1 /* gmarkup.c - Simple XML-like parser
3 * Copyright 2000, 2003 Red Hat, Inc.
4 * Copyright 2007, 2008 Ryan Lortie <desrt@desrt.ca>
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library 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 GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public License
17 * along with this library; if not, see <http://www.gnu.org/licenses/>.
33 #include "gstrfuncs.h"
35 #include "gtestutils.h"
41 * @Title: Simple XML Subset Parser
42 * @Short_description: parses a subset of XML
43 * @See_also: [XML Specification](http://www.w3.org/TR/REC-xml/)
45 * The "GMarkup" parser is intended to parse a simple markup format
46 * that's a subset of XML. This is a small, efficient, easy-to-use
47 * parser. It should not be used if you expect to interoperate with
48 * other applications generating full-scale XML. However, it's very
49 * useful for application data files, config files, etc. where you
50 * know your application will be the only one writing the file.
51 * Full-scale XML parsers should be able to parse the subset used by
52 * GMarkup, so you can easily migrate to full-scale XML at a later
53 * time if the need arises.
55 * GMarkup is not guaranteed to signal an error on all invalid XML;
56 * the parser may accept documents that an XML parser would not.
57 * However, XML documents which are not well-formed (which is a
58 * weaker condition than being valid. See the
59 * [XML specification](http://www.w3.org/TR/REC-xml/)
60 * for definitions of these terms.) are not considered valid GMarkup
63 * Simplifications to XML include:
65 * - Only UTF-8 encoding is allowed
67 * - No user-defined entities
69 * - Processing instructions, comments and the doctype declaration
70 * are "passed through" but are not interpreted in any way
72 * - No DTD or validation
74 * The markup format does support:
80 * - 5 standard entities: & < > " '
82 * - Character references
84 * - Sections marked as CDATA
87 G_DEFINE_QUARK (g
-markup
-error
-quark
, g_markup_error
)
92 STATE_AFTER_OPEN_ANGLE
,
93 STATE_AFTER_CLOSE_ANGLE
,
94 STATE_AFTER_ELISION_SLASH
, /* the slash that obviates need for end element */
95 STATE_INSIDE_OPEN_TAG_NAME
,
96 STATE_INSIDE_ATTRIBUTE_NAME
,
97 STATE_AFTER_ATTRIBUTE_NAME
,
98 STATE_BETWEEN_ATTRIBUTES
,
99 STATE_AFTER_ATTRIBUTE_EQUALS_SIGN
,
100 STATE_INSIDE_ATTRIBUTE_VALUE_SQ
,
101 STATE_INSIDE_ATTRIBUTE_VALUE_DQ
,
103 STATE_AFTER_CLOSE_TAG_SLASH
,
104 STATE_INSIDE_CLOSE_TAG_NAME
,
105 STATE_AFTER_CLOSE_TAG_NAME
,
106 STATE_INSIDE_PASSTHROUGH
,
112 const char *prev_element
;
113 const GMarkupParser
*prev_parser
;
114 gpointer prev_user_data
;
115 } GMarkupRecursionTracker
;
117 struct _GMarkupParseContext
119 const GMarkupParser
*parser
;
121 volatile gint ref_count
;
123 GMarkupParseFlags flags
;
128 GMarkupParseState state
;
131 GDestroyNotify dnotify
;
133 /* A piece of character data or an element that
134 * hasn't "ended" yet so we haven't yet called
135 * the callback for it.
137 GString
*partial_chunk
;
138 GSList
*spare_chunks
;
141 GSList
*tag_stack_gstr
;
142 GSList
*spare_list_nodes
;
144 GString
**attr_names
;
145 GString
**attr_values
;
149 const gchar
*current_text
;
150 gssize current_text_len
;
151 const gchar
*current_text_end
;
153 /* used to save the start of the last interesting thingy */
158 guint document_empty
: 1;
160 guint awaiting_pop
: 1;
163 /* subparser support */
164 GSList
*subparser_stack
; /* (GMarkupRecursionTracker *) */
165 const char *subparser_element
;
166 gpointer held_user_data
;
170 * Helpers to reduce our allocation overhead, we have
171 * a well defined allocation lifecycle.
174 get_list_node (GMarkupParseContext
*context
, gpointer data
)
177 if (context
->spare_list_nodes
!= NULL
)
179 node
= context
->spare_list_nodes
;
180 context
->spare_list_nodes
= g_slist_remove_link (context
->spare_list_nodes
, node
);
183 node
= g_slist_alloc();
189 free_list_node (GMarkupParseContext
*context
, GSList
*node
)
192 context
->spare_list_nodes
= g_slist_concat (node
, context
->spare_list_nodes
);
196 string_blank (GString
*string
)
198 string
->str
[0] = '\0';
203 * g_markup_parse_context_new:
204 * @parser: a #GMarkupParser
205 * @flags: one or more #GMarkupParseFlags
206 * @user_data: user data to pass to #GMarkupParser functions
207 * @user_data_dnotify: user data destroy notifier called when
208 * the parse context is freed
210 * Creates a new parse context. A parse context is used to parse
211 * marked-up documents. You can feed any number of documents into
212 * a context, as long as no errors occur; once an error occurs,
213 * the parse context can't continue to parse text (you have to
214 * free it and create a new parse context).
216 * Returns: a new #GMarkupParseContext
218 GMarkupParseContext
*
219 g_markup_parse_context_new (const GMarkupParser
*parser
,
220 GMarkupParseFlags flags
,
222 GDestroyNotify user_data_dnotify
)
224 GMarkupParseContext
*context
;
226 g_return_val_if_fail (parser
!= NULL
, NULL
);
228 context
= g_new (GMarkupParseContext
, 1);
230 context
->ref_count
= 1;
231 context
->parser
= parser
;
232 context
->flags
= flags
;
233 context
->user_data
= user_data
;
234 context
->dnotify
= user_data_dnotify
;
236 context
->line_number
= 1;
237 context
->char_number
= 1;
239 context
->partial_chunk
= NULL
;
240 context
->spare_chunks
= NULL
;
241 context
->spare_list_nodes
= NULL
;
243 context
->state
= STATE_START
;
244 context
->tag_stack
= NULL
;
245 context
->tag_stack_gstr
= NULL
;
246 context
->attr_names
= NULL
;
247 context
->attr_values
= NULL
;
248 context
->cur_attr
= -1;
249 context
->alloc_attrs
= 0;
251 context
->current_text
= NULL
;
252 context
->current_text_len
= -1;
253 context
->current_text_end
= NULL
;
255 context
->start
= NULL
;
256 context
->iter
= NULL
;
258 context
->document_empty
= TRUE
;
259 context
->parsing
= FALSE
;
261 context
->awaiting_pop
= FALSE
;
262 context
->subparser_stack
= NULL
;
263 context
->subparser_element
= NULL
;
265 /* this is only looked at if awaiting_pop = TRUE. initialise anyway. */
266 context
->held_user_data
= NULL
;
268 context
->balance
= 0;
274 * g_markup_parse_context_ref:
275 * @context: a #GMarkupParseContext
277 * Increases the reference count of @context.
279 * Returns: the same @context
283 GMarkupParseContext
*
284 g_markup_parse_context_ref (GMarkupParseContext
*context
)
286 g_return_val_if_fail (context
!= NULL
, NULL
);
287 g_return_val_if_fail (context
->ref_count
> 0, NULL
);
289 g_atomic_int_inc (&context
->ref_count
);
295 * g_markup_parse_context_unref:
296 * @context: a #GMarkupParseContext
298 * Decreases the reference count of @context. When its reference count
299 * drops to 0, it is freed.
304 g_markup_parse_context_unref (GMarkupParseContext
*context
)
306 g_return_if_fail (context
!= NULL
);
307 g_return_if_fail (context
->ref_count
> 0);
309 if (g_atomic_int_dec_and_test (&context
->ref_count
))
310 g_markup_parse_context_free (context
);
314 string_full_free (gpointer ptr
)
316 g_string_free (ptr
, TRUE
);
319 static void clear_attributes (GMarkupParseContext
*context
);
322 * g_markup_parse_context_free:
323 * @context: a #GMarkupParseContext
325 * Frees a #GMarkupParseContext.
327 * This function can't be called from inside one of the
328 * #GMarkupParser functions or while a subparser is pushed.
331 g_markup_parse_context_free (GMarkupParseContext
*context
)
333 g_return_if_fail (context
!= NULL
);
334 g_return_if_fail (!context
->parsing
);
335 g_return_if_fail (!context
->subparser_stack
);
336 g_return_if_fail (!context
->awaiting_pop
);
338 if (context
->dnotify
)
339 (* context
->dnotify
) (context
->user_data
);
341 clear_attributes (context
);
342 g_free (context
->attr_names
);
343 g_free (context
->attr_values
);
345 g_slist_free_full (context
->tag_stack_gstr
, string_full_free
);
346 g_slist_free (context
->tag_stack
);
348 g_slist_free_full (context
->spare_chunks
, string_full_free
);
349 g_slist_free (context
->spare_list_nodes
);
351 if (context
->partial_chunk
)
352 g_string_free (context
->partial_chunk
, TRUE
);
357 static void pop_subparser_stack (GMarkupParseContext
*context
);
360 mark_error (GMarkupParseContext
*context
,
363 context
->state
= STATE_ERROR
;
365 if (context
->parser
->error
)
366 (*context
->parser
->error
) (context
, error
, context
->user_data
);
368 /* report the error all the way up to free all the user-data */
369 while (context
->subparser_stack
)
371 pop_subparser_stack (context
);
372 context
->awaiting_pop
= FALSE
; /* already been freed */
374 if (context
->parser
->error
)
375 (*context
->parser
->error
) (context
, error
, context
->user_data
);
380 set_error (GMarkupParseContext
*context
,
384 ...) G_GNUC_PRINTF (4, 5);
387 set_error_literal (GMarkupParseContext
*context
,
390 const gchar
*message
)
394 tmp_error
= g_error_new_literal (G_MARKUP_ERROR
, code
, message
);
396 g_prefix_error (&tmp_error
,
397 _("Error on line %d char %d: "),
398 context
->line_number
,
399 context
->char_number
);
401 mark_error (context
, tmp_error
);
403 g_propagate_error (error
, tmp_error
);
408 set_error (GMarkupParseContext
*context
,
418 va_start (args
, format
);
419 s
= g_strdup_vprintf (format
, args
);
422 /* Make sure that the GError message is valid UTF-8
423 * even if it is complaining about invalid UTF-8 in the markup
425 s_valid
= g_utf8_make_valid (s
, -1);
426 set_error_literal (context
, error
, code
, s
);
433 propagate_error (GMarkupParseContext
*context
,
437 if (context
->flags
& G_MARKUP_PREFIX_ERROR_POSITION
)
438 g_prefix_error (&src
,
439 _("Error on line %d char %d: "),
440 context
->line_number
,
441 context
->char_number
);
443 mark_error (context
, src
);
445 g_propagate_error (dest
, src
);
448 #define IS_COMMON_NAME_END_CHAR(c) \
449 ((c) == '=' || (c) == '/' || (c) == '>' || (c) == ' ')
452 slow_name_validate (GMarkupParseContext
*context
,
456 const gchar
*p
= name
;
458 if (!g_utf8_validate (name
, strlen (name
), NULL
))
460 set_error (context
, error
, G_MARKUP_ERROR_BAD_UTF8
,
461 _("Invalid UTF-8 encoded text in name — not valid “%s”"), name
);
465 if (!(g_ascii_isalpha (*p
) ||
466 (!IS_COMMON_NAME_END_CHAR (*p
) &&
469 g_unichar_isalpha (g_utf8_get_char (p
))))))
471 set_error (context
, error
, G_MARKUP_ERROR_PARSE
,
472 _("“%s” is not a valid name"), name
);
476 for (p
= g_utf8_next_char (name
); *p
!= '\0'; p
= g_utf8_next_char (p
))
479 if (!(g_ascii_isalnum (*p
) ||
480 (!IS_COMMON_NAME_END_CHAR (*p
) &&
485 g_unichar_isalpha (g_utf8_get_char (p
))))))
487 set_error (context
, error
, G_MARKUP_ERROR_PARSE
,
488 _("“%s” is not a valid name: “%c”"), name
, *p
);
496 * Use me for elements, attributes etc.
499 name_validate (GMarkupParseContext
*context
,
506 /* name start char */
508 if (G_UNLIKELY (IS_COMMON_NAME_END_CHAR (*p
) ||
509 !(g_ascii_isalpha (*p
) || *p
== '_' || *p
== ':')))
512 for (mask
= *p
++; *p
!= '\0'; p
++)
517 if (G_UNLIKELY (!(g_ascii_isalnum (*p
) ||
518 (!IS_COMMON_NAME_END_CHAR (*p
) &&
526 if (mask
& 0x80) /* un-common / non-ascii */
532 return slow_name_validate (context
, name
, error
);
536 text_validate (GMarkupParseContext
*context
,
541 if (!g_utf8_validate (p
, len
, NULL
))
543 set_error (context
, error
, G_MARKUP_ERROR_BAD_UTF8
,
544 _("Invalid UTF-8 encoded text in name — not valid “%s”"), p
);
552 char_str (gunichar c
,
556 g_unichar_to_utf8 (c
, buf
);
561 utf8_str (const gchar
*utf8
,
564 char_str (g_utf8_get_char (utf8
), buf
);
570 set_unescape_error (GMarkupParseContext
*context
,
572 const gchar
*remaining_text
,
580 gint remaining_newlines
;
583 remaining_newlines
= 0;
588 ++remaining_newlines
;
592 va_start (args
, format
);
593 s
= g_strdup_vprintf (format
, args
);
596 tmp_error
= g_error_new (G_MARKUP_ERROR
,
598 _("Error on line %d: %s"),
599 context
->line_number
- remaining_newlines
,
604 mark_error (context
, tmp_error
);
606 g_propagate_error (error
, tmp_error
);
610 * re-write the GString in-place, unescaping anything that escaped.
611 * most XML does not contain entities, or escaping.
614 unescape_gstring_inplace (GMarkupParseContext
*context
,
621 gboolean normalize_attribute
;
625 /* are we unescaping an attribute or not ? */
626 if (context
->state
== STATE_INSIDE_ATTRIBUTE_VALUE_SQ
||
627 context
->state
== STATE_INSIDE_ATTRIBUTE_VALUE_DQ
)
628 normalize_attribute
= TRUE
;
630 normalize_attribute
= FALSE
;
633 * Meeks' theorem: unescaping can only shrink text.
634 * for < etc. this is obvious, for  more
635 * thought is required, but this is patently so.
638 for (from
= to
= string
->str
; *from
!= '\0'; from
++, to
++)
643 if (normalize_attribute
&& (*to
== '\t' || *to
== '\n'))
647 *to
= normalize_attribute
? ' ' : '\n';
669 l
= strtoul (from
, &end
, base
);
671 if (end
== from
|| errno
!= 0)
673 set_unescape_error (context
, error
,
674 from
, G_MARKUP_ERROR_PARSE
,
675 _("Failed to parse “%-.*s”, which "
676 "should have been a digit "
677 "inside a character reference "
678 "(ê for example) — perhaps "
679 "the digit is too large"),
680 (int)(end
- from
), from
);
683 else if (*end
!= ';')
685 set_unescape_error (context
, error
,
686 from
, G_MARKUP_ERROR_PARSE
,
687 _("Character reference did not end with a "
689 "most likely you used an ampersand "
690 "character without intending to start "
691 "an entity — escape ampersand as &"));
696 /* characters XML 1.1 permits */
697 if ((0 < l
&& l
<= 0xD7FF) ||
698 (0xE000 <= l
&& l
<= 0xFFFD) ||
699 (0x10000 <= l
&& l
<= 0x10FFFF))
704 to
+= strlen (buf
) - 1;
706 if (l
>= 0x80) /* not ascii */
711 set_unescape_error (context
, error
,
712 from
, G_MARKUP_ERROR_PARSE
,
713 _("Character reference “%-.*s” does not "
714 "encode a permitted character"),
715 (int)(end
- from
), from
);
721 else if (strncmp (from
, "lt;", 3) == 0)
726 else if (strncmp (from
, "gt;", 3) == 0)
731 else if (strncmp (from
, "amp;", 4) == 0)
736 else if (strncmp (from
, "quot;", 5) == 0)
741 else if (strncmp (from
, "apos;", 5) == 0)
749 set_unescape_error (context
, error
,
750 from
, G_MARKUP_ERROR_PARSE
,
751 _("Empty entity “&;” seen; valid "
752 "entities are: & " < > '"));
755 const char *end
= strchr (from
, ';');
757 set_unescape_error (context
, error
,
758 from
, G_MARKUP_ERROR_PARSE
,
759 _("Entity name “%-.*s” is not known"),
760 (int)(end
- from
), from
);
762 set_unescape_error (context
, error
,
763 from
, G_MARKUP_ERROR_PARSE
,
764 _("Entity did not end with a semicolon; "
765 "most likely you used an ampersand "
766 "character without intending to start "
767 "an entity — escape ampersand as &"));
774 g_assert (to
- string
->str
<= string
->len
);
775 if (to
- string
->str
!= string
->len
)
776 g_string_truncate (string
, to
- string
->str
);
778 *is_ascii
= !(mask
& 0x80);
783 static inline gboolean
784 advance_char (GMarkupParseContext
*context
)
787 context
->char_number
++;
789 if (G_UNLIKELY (context
->iter
== context
->current_text_end
))
792 else if (G_UNLIKELY (*context
->iter
== '\n'))
794 context
->line_number
++;
795 context
->char_number
= 1;
801 static inline gboolean
804 return c
== ' ' || c
== '\t' || c
== '\n' || c
== '\r';
808 skip_spaces (GMarkupParseContext
*context
)
812 if (!xml_isspace (*context
->iter
))
815 while (advance_char (context
));
819 advance_to_name_end (GMarkupParseContext
*context
)
823 if (IS_COMMON_NAME_END_CHAR (*(context
->iter
)))
825 if (xml_isspace (*(context
->iter
)))
828 while (advance_char (context
));
832 release_chunk (GMarkupParseContext
*context
, GString
*str
)
837 if (str
->allocated_len
> 256)
838 { /* large strings are unusual and worth freeing */
839 g_string_free (str
, TRUE
);
843 node
= get_list_node (context
, str
);
844 context
->spare_chunks
= g_slist_concat (node
, context
->spare_chunks
);
848 add_to_partial (GMarkupParseContext
*context
,
849 const gchar
*text_start
,
850 const gchar
*text_end
)
852 if (context
->partial_chunk
== NULL
)
853 { /* allocate a new chunk to parse into */
855 if (context
->spare_chunks
!= NULL
)
857 GSList
*node
= context
->spare_chunks
;
858 context
->spare_chunks
= g_slist_remove_link (context
->spare_chunks
, node
);
859 context
->partial_chunk
= node
->data
;
860 free_list_node (context
, node
);
863 context
->partial_chunk
= g_string_sized_new (MAX (28, text_end
- text_start
));
866 if (text_start
!= text_end
)
867 g_string_insert_len (context
->partial_chunk
, -1,
868 text_start
, text_end
- text_start
);
872 truncate_partial (GMarkupParseContext
*context
)
874 if (context
->partial_chunk
!= NULL
)
875 string_blank (context
->partial_chunk
);
878 static inline const gchar
*
879 current_element (GMarkupParseContext
*context
)
881 return context
->tag_stack
->data
;
885 pop_subparser_stack (GMarkupParseContext
*context
)
887 GMarkupRecursionTracker
*tracker
;
889 g_assert (context
->subparser_stack
);
891 tracker
= context
->subparser_stack
->data
;
893 context
->awaiting_pop
= TRUE
;
894 context
->held_user_data
= context
->user_data
;
896 context
->user_data
= tracker
->prev_user_data
;
897 context
->parser
= tracker
->prev_parser
;
898 context
->subparser_element
= tracker
->prev_element
;
899 g_slice_free (GMarkupRecursionTracker
, tracker
);
901 context
->subparser_stack
= g_slist_delete_link (context
->subparser_stack
,
902 context
->subparser_stack
);
906 push_partial_as_tag (GMarkupParseContext
*context
)
908 GString
*str
= context
->partial_chunk
;
909 /* sadly, this is exported by gmarkup_get_element_stack as-is */
910 context
->tag_stack
= g_slist_concat (get_list_node (context
, str
->str
), context
->tag_stack
);
911 context
->tag_stack_gstr
= g_slist_concat (get_list_node (context
, str
), context
->tag_stack_gstr
);
912 context
->partial_chunk
= NULL
;
916 pop_tag (GMarkupParseContext
*context
)
918 GSList
*nodea
, *nodeb
;
920 nodea
= context
->tag_stack
;
921 nodeb
= context
->tag_stack_gstr
;
922 release_chunk (context
, nodeb
->data
);
923 context
->tag_stack
= g_slist_remove_link (context
->tag_stack
, nodea
);
924 context
->tag_stack_gstr
= g_slist_remove_link (context
->tag_stack_gstr
, nodeb
);
925 free_list_node (context
, nodea
);
926 free_list_node (context
, nodeb
);
930 possibly_finish_subparser (GMarkupParseContext
*context
)
932 if (current_element (context
) == context
->subparser_element
)
933 pop_subparser_stack (context
);
937 ensure_no_outstanding_subparser (GMarkupParseContext
*context
)
939 if (context
->awaiting_pop
)
940 g_critical ("During the first end_element call after invoking a "
941 "subparser you must pop the subparser stack and handle "
942 "the freeing of the subparser user_data. This can be "
943 "done by calling the end function of the subparser. "
944 "Very probably, your program just leaked memory.");
946 /* let valgrind watch the pointer disappear... */
947 context
->held_user_data
= NULL
;
948 context
->awaiting_pop
= FALSE
;
952 current_attribute (GMarkupParseContext
*context
)
954 g_assert (context
->cur_attr
>= 0);
955 return context
->attr_names
[context
->cur_attr
]->str
;
959 add_attribute (GMarkupParseContext
*context
, GString
*str
)
961 if (context
->cur_attr
+ 2 >= context
->alloc_attrs
)
963 context
->alloc_attrs
+= 5; /* silly magic number */
964 context
->attr_names
= g_realloc (context
->attr_names
, sizeof(GString
*)*context
->alloc_attrs
);
965 context
->attr_values
= g_realloc (context
->attr_values
, sizeof(GString
*)*context
->alloc_attrs
);
968 context
->attr_names
[context
->cur_attr
] = str
;
969 context
->attr_values
[context
->cur_attr
] = NULL
;
970 context
->attr_names
[context
->cur_attr
+1] = NULL
;
971 context
->attr_values
[context
->cur_attr
+1] = NULL
;
975 clear_attributes (GMarkupParseContext
*context
)
977 /* Go ahead and free the attributes. */
978 for (; context
->cur_attr
>= 0; context
->cur_attr
--)
980 int pos
= context
->cur_attr
;
981 release_chunk (context
, context
->attr_names
[pos
]);
982 release_chunk (context
, context
->attr_values
[pos
]);
983 context
->attr_names
[pos
] = context
->attr_values
[pos
] = NULL
;
985 g_assert (context
->cur_attr
== -1);
986 g_assert (context
->attr_names
== NULL
||
987 context
->attr_names
[0] == NULL
);
988 g_assert (context
->attr_values
== NULL
||
989 context
->attr_values
[0] == NULL
);
992 /* This has to be a separate function to ensure the alloca's
993 * are unwound on exit - otherwise we grow & blow the stack
994 * with large documents
997 emit_start_element (GMarkupParseContext
*context
,
1001 const gchar
*start_name
;
1002 const gchar
**attr_names
;
1003 const gchar
**attr_values
;
1006 /* In case we want to ignore qualified tags and we see that we have
1007 * one here, we push a subparser. This will ignore all tags inside of
1008 * the qualified tag.
1010 * We deal with the end of the subparser from emit_end_element.
1012 if ((context
->flags
& G_MARKUP_IGNORE_QUALIFIED
) && strchr (current_element (context
), ':'))
1014 static const GMarkupParser ignore_parser
;
1015 g_markup_parse_context_push (context
, &ignore_parser
, NULL
);
1016 clear_attributes (context
);
1020 attr_names
= g_newa (const gchar
*, context
->cur_attr
+ 2);
1021 attr_values
= g_newa (const gchar
*, context
->cur_attr
+ 2);
1022 for (i
= 0; i
< context
->cur_attr
+ 1; i
++)
1024 /* Possibly omit qualified attribute names from the list */
1025 if ((context
->flags
& G_MARKUP_IGNORE_QUALIFIED
) && strchr (context
->attr_names
[i
]->str
, ':'))
1028 attr_names
[j
] = context
->attr_names
[i
]->str
;
1029 attr_values
[j
] = context
->attr_values
[i
]->str
;
1032 attr_names
[j
] = NULL
;
1033 attr_values
[j
] = NULL
;
1035 /* Call user callback for element start */
1037 start_name
= current_element (context
);
1039 if (context
->parser
->start_element
&&
1040 name_validate (context
, start_name
, error
))
1041 (* context
->parser
->start_element
) (context
,
1043 (const gchar
**)attr_names
,
1044 (const gchar
**)attr_values
,
1047 clear_attributes (context
);
1049 if (tmp_error
!= NULL
)
1050 propagate_error (context
, error
, tmp_error
);
1054 emit_end_element (GMarkupParseContext
*context
,
1057 /* We need to pop the tag stack and call the end_element
1058 * function, since this is the close tag
1060 GError
*tmp_error
= NULL
;
1062 g_assert (context
->tag_stack
!= NULL
);
1064 possibly_finish_subparser (context
);
1066 /* We might have just returned from our ignore subparser */
1067 if ((context
->flags
& G_MARKUP_IGNORE_QUALIFIED
) && strchr (current_element (context
), ':'))
1069 g_markup_parse_context_pop (context
);
1075 if (context
->parser
->end_element
)
1076 (* context
->parser
->end_element
) (context
,
1077 current_element (context
),
1081 ensure_no_outstanding_subparser (context
);
1085 mark_error (context
, tmp_error
);
1086 g_propagate_error (error
, tmp_error
);
1093 * g_markup_parse_context_parse:
1094 * @context: a #GMarkupParseContext
1095 * @text: chunk of text to parse
1096 * @text_len: length of @text in bytes
1097 * @error: return location for a #GError
1099 * Feed some data to the #GMarkupParseContext.
1101 * The data need not be valid UTF-8; an error will be signaled if
1102 * it's invalid. The data need not be an entire document; you can
1103 * feed a document into the parser incrementally, via multiple calls
1104 * to this function. Typically, as you receive data from a network
1105 * connection or file, you feed each received chunk of data into this
1106 * function, aborting the process if an error occurs. Once an error
1107 * is reported, no further data may be fed to the #GMarkupParseContext;
1108 * all errors are fatal.
1110 * Returns: %FALSE if an error occurred, %TRUE on success
1113 g_markup_parse_context_parse (GMarkupParseContext
*context
,
1118 g_return_val_if_fail (context
!= NULL
, FALSE
);
1119 g_return_val_if_fail (text
!= NULL
, FALSE
);
1120 g_return_val_if_fail (context
->state
!= STATE_ERROR
, FALSE
);
1121 g_return_val_if_fail (!context
->parsing
, FALSE
);
1124 text_len
= strlen (text
);
1129 context
->parsing
= TRUE
;
1132 context
->current_text
= text
;
1133 context
->current_text_len
= text_len
;
1134 context
->current_text_end
= context
->current_text
+ text_len
;
1135 context
->iter
= context
->current_text
;
1136 context
->start
= context
->iter
;
1138 while (context
->iter
!= context
->current_text_end
)
1140 switch (context
->state
)
1143 /* Possible next state: AFTER_OPEN_ANGLE */
1145 g_assert (context
->tag_stack
== NULL
);
1147 /* whitespace is ignored outside of any elements */
1148 skip_spaces (context
);
1150 if (context
->iter
!= context
->current_text_end
)
1152 if (*context
->iter
== '<')
1154 /* Move after the open angle */
1155 advance_char (context
);
1157 context
->state
= STATE_AFTER_OPEN_ANGLE
;
1159 /* this could start a passthrough */
1160 context
->start
= context
->iter
;
1162 /* document is now non-empty */
1163 context
->document_empty
= FALSE
;
1167 set_error_literal (context
,
1169 G_MARKUP_ERROR_PARSE
,
1170 _("Document must begin with an element (e.g. <book>)"));
1175 case STATE_AFTER_OPEN_ANGLE
:
1176 /* Possible next states: INSIDE_OPEN_TAG_NAME,
1177 * AFTER_CLOSE_TAG_SLASH, INSIDE_PASSTHROUGH
1179 if (*context
->iter
== '?' ||
1180 *context
->iter
== '!')
1182 /* include < in the passthrough */
1183 const gchar
*openangle
= "<";
1184 add_to_partial (context
, openangle
, openangle
+ 1);
1185 context
->start
= context
->iter
;
1186 context
->balance
= 1;
1187 context
->state
= STATE_INSIDE_PASSTHROUGH
;
1189 else if (*context
->iter
== '/')
1192 advance_char (context
);
1194 context
->state
= STATE_AFTER_CLOSE_TAG_SLASH
;
1196 else if (!IS_COMMON_NAME_END_CHAR (*(context
->iter
)))
1198 context
->state
= STATE_INSIDE_OPEN_TAG_NAME
;
1200 /* start of tag name */
1201 context
->start
= context
->iter
;
1209 G_MARKUP_ERROR_PARSE
,
1210 _("“%s” is not a valid character following "
1211 "a “<” character; it may not begin an "
1213 utf8_str (context
->iter
, buf
));
1217 /* The AFTER_CLOSE_ANGLE state is actually sort of
1218 * broken, because it doesn't correspond to a range
1219 * of characters in the input stream as the others do,
1220 * and thus makes things harder to conceptualize
1222 case STATE_AFTER_CLOSE_ANGLE
:
1223 /* Possible next states: INSIDE_TEXT, STATE_START */
1224 if (context
->tag_stack
== NULL
)
1226 context
->start
= NULL
;
1227 context
->state
= STATE_START
;
1231 context
->start
= context
->iter
;
1232 context
->state
= STATE_INSIDE_TEXT
;
1236 case STATE_AFTER_ELISION_SLASH
:
1237 /* Possible next state: AFTER_CLOSE_ANGLE */
1238 if (*context
->iter
== '>')
1240 /* move after the close angle */
1241 advance_char (context
);
1242 context
->state
= STATE_AFTER_CLOSE_ANGLE
;
1243 emit_end_element (context
, error
);
1251 G_MARKUP_ERROR_PARSE
,
1252 _("Odd character “%s”, expected a “>” character "
1253 "to end the empty-element tag “%s”"),
1254 utf8_str (context
->iter
, buf
),
1255 current_element (context
));
1259 case STATE_INSIDE_OPEN_TAG_NAME
:
1260 /* Possible next states: BETWEEN_ATTRIBUTES */
1262 /* if there's a partial chunk then it's the first part of the
1263 * tag name. If there's a context->start then it's the start
1264 * of the tag name in current_text, the partial chunk goes
1265 * before that start though.
1267 advance_to_name_end (context
);
1269 if (context
->iter
== context
->current_text_end
)
1271 /* The name hasn't necessarily ended. Merge with
1272 * partial chunk, leave state unchanged.
1274 add_to_partial (context
, context
->start
, context
->iter
);
1278 /* The name has ended. Combine it with the partial chunk
1279 * if any; push it on the stack; enter next state.
1281 add_to_partial (context
, context
->start
, context
->iter
);
1282 push_partial_as_tag (context
);
1284 context
->state
= STATE_BETWEEN_ATTRIBUTES
;
1285 context
->start
= NULL
;
1289 case STATE_INSIDE_ATTRIBUTE_NAME
:
1290 /* Possible next states: AFTER_ATTRIBUTE_NAME */
1292 advance_to_name_end (context
);
1293 add_to_partial (context
, context
->start
, context
->iter
);
1295 /* read the full name, if we enter the equals sign state
1296 * then add the attribute to the list (without the value),
1297 * otherwise store a partial chunk to be prepended later.
1299 if (context
->iter
!= context
->current_text_end
)
1300 context
->state
= STATE_AFTER_ATTRIBUTE_NAME
;
1303 case STATE_AFTER_ATTRIBUTE_NAME
:
1304 /* Possible next states: AFTER_ATTRIBUTE_EQUALS_SIGN */
1306 skip_spaces (context
);
1308 if (context
->iter
!= context
->current_text_end
)
1310 /* The name has ended. Combine it with the partial chunk
1311 * if any; push it on the stack; enter next state.
1313 if (!name_validate (context
, context
->partial_chunk
->str
, error
))
1316 add_attribute (context
, context
->partial_chunk
);
1318 context
->partial_chunk
= NULL
;
1319 context
->start
= NULL
;
1321 if (*context
->iter
== '=')
1323 advance_char (context
);
1324 context
->state
= STATE_AFTER_ATTRIBUTE_EQUALS_SIGN
;
1332 G_MARKUP_ERROR_PARSE
,
1333 _("Odd character “%s”, expected a “=” after "
1334 "attribute name “%s” of element “%s”"),
1335 utf8_str (context
->iter
, buf
),
1336 current_attribute (context
),
1337 current_element (context
));
1343 case STATE_BETWEEN_ATTRIBUTES
:
1344 /* Possible next states: AFTER_CLOSE_ANGLE,
1345 * AFTER_ELISION_SLASH, INSIDE_ATTRIBUTE_NAME
1347 skip_spaces (context
);
1349 if (context
->iter
!= context
->current_text_end
)
1351 if (*context
->iter
== '/')
1353 advance_char (context
);
1354 context
->state
= STATE_AFTER_ELISION_SLASH
;
1356 else if (*context
->iter
== '>')
1358 advance_char (context
);
1359 context
->state
= STATE_AFTER_CLOSE_ANGLE
;
1361 else if (!IS_COMMON_NAME_END_CHAR (*(context
->iter
)))
1363 context
->state
= STATE_INSIDE_ATTRIBUTE_NAME
;
1364 /* start of attribute name */
1365 context
->start
= context
->iter
;
1373 G_MARKUP_ERROR_PARSE
,
1374 _("Odd character “%s”, expected a “>” or “/” "
1375 "character to end the start tag of "
1376 "element “%s”, or optionally an attribute; "
1377 "perhaps you used an invalid character in "
1378 "an attribute name"),
1379 utf8_str (context
->iter
, buf
),
1380 current_element (context
));
1383 /* If we're done with attributes, invoke
1384 * the start_element callback
1386 if (context
->state
== STATE_AFTER_ELISION_SLASH
||
1387 context
->state
== STATE_AFTER_CLOSE_ANGLE
)
1388 emit_start_element (context
, error
);
1392 case STATE_AFTER_ATTRIBUTE_EQUALS_SIGN
:
1393 /* Possible next state: INSIDE_ATTRIBUTE_VALUE_[SQ/DQ] */
1395 skip_spaces (context
);
1397 if (context
->iter
!= context
->current_text_end
)
1399 if (*context
->iter
== '"')
1401 advance_char (context
);
1402 context
->state
= STATE_INSIDE_ATTRIBUTE_VALUE_DQ
;
1403 context
->start
= context
->iter
;
1405 else if (*context
->iter
== '\'')
1407 advance_char (context
);
1408 context
->state
= STATE_INSIDE_ATTRIBUTE_VALUE_SQ
;
1409 context
->start
= context
->iter
;
1417 G_MARKUP_ERROR_PARSE
,
1418 _("Odd character “%s”, expected an open quote mark "
1419 "after the equals sign when giving value for "
1420 "attribute “%s” of element “%s”"),
1421 utf8_str (context
->iter
, buf
),
1422 current_attribute (context
),
1423 current_element (context
));
1428 case STATE_INSIDE_ATTRIBUTE_VALUE_SQ
:
1429 case STATE_INSIDE_ATTRIBUTE_VALUE_DQ
:
1430 /* Possible next states: BETWEEN_ATTRIBUTES */
1434 if (context
->state
== STATE_INSIDE_ATTRIBUTE_VALUE_SQ
)
1445 if (*context
->iter
== delim
)
1448 while (advance_char (context
));
1450 if (context
->iter
== context
->current_text_end
)
1452 /* The value hasn't necessarily ended. Merge with
1453 * partial chunk, leave state unchanged.
1455 add_to_partial (context
, context
->start
, context
->iter
);
1460 /* The value has ended at the quote mark. Combine it
1461 * with the partial chunk if any; set it for the current
1464 add_to_partial (context
, context
->start
, context
->iter
);
1466 g_assert (context
->cur_attr
>= 0);
1468 if (unescape_gstring_inplace (context
, context
->partial_chunk
, &is_ascii
, error
) &&
1469 (is_ascii
|| text_validate (context
, context
->partial_chunk
->str
,
1470 context
->partial_chunk
->len
, error
)))
1472 /* success, advance past quote and set state. */
1473 context
->attr_values
[context
->cur_attr
] = context
->partial_chunk
;
1474 context
->partial_chunk
= NULL
;
1475 advance_char (context
);
1476 context
->state
= STATE_BETWEEN_ATTRIBUTES
;
1477 context
->start
= NULL
;
1480 truncate_partial (context
);
1484 case STATE_INSIDE_TEXT
:
1485 /* Possible next states: AFTER_OPEN_ANGLE */
1488 if (*context
->iter
== '<')
1491 while (advance_char (context
));
1493 /* The text hasn't necessarily ended. Merge with
1494 * partial chunk, leave state unchanged.
1497 add_to_partial (context
, context
->start
, context
->iter
);
1499 if (context
->iter
!= context
->current_text_end
)
1503 /* The text has ended at the open angle. Call the text
1506 if (unescape_gstring_inplace (context
, context
->partial_chunk
, &is_ascii
, error
) &&
1507 (is_ascii
|| text_validate (context
, context
->partial_chunk
->str
,
1508 context
->partial_chunk
->len
, error
)))
1510 GError
*tmp_error
= NULL
;
1512 if (context
->parser
->text
)
1513 (*context
->parser
->text
) (context
,
1514 context
->partial_chunk
->str
,
1515 context
->partial_chunk
->len
,
1519 if (tmp_error
== NULL
)
1521 /* advance past open angle and set state. */
1522 advance_char (context
);
1523 context
->state
= STATE_AFTER_OPEN_ANGLE
;
1524 /* could begin a passthrough */
1525 context
->start
= context
->iter
;
1528 propagate_error (context
, error
, tmp_error
);
1531 truncate_partial (context
);
1535 case STATE_AFTER_CLOSE_TAG_SLASH
:
1536 /* Possible next state: INSIDE_CLOSE_TAG_NAME */
1537 if (!IS_COMMON_NAME_END_CHAR (*(context
->iter
)))
1539 context
->state
= STATE_INSIDE_CLOSE_TAG_NAME
;
1541 /* start of tag name */
1542 context
->start
= context
->iter
;
1550 G_MARKUP_ERROR_PARSE
,
1551 _("“%s” is not a valid character following "
1552 "the characters “</”; “%s” may not begin an "
1554 utf8_str (context
->iter
, buf
),
1555 utf8_str (context
->iter
, buf
));
1559 case STATE_INSIDE_CLOSE_TAG_NAME
:
1560 /* Possible next state: AFTER_CLOSE_TAG_NAME */
1561 advance_to_name_end (context
);
1562 add_to_partial (context
, context
->start
, context
->iter
);
1564 if (context
->iter
!= context
->current_text_end
)
1565 context
->state
= STATE_AFTER_CLOSE_TAG_NAME
;
1568 case STATE_AFTER_CLOSE_TAG_NAME
:
1569 /* Possible next state: AFTER_CLOSE_TAG_SLASH */
1571 skip_spaces (context
);
1573 if (context
->iter
!= context
->current_text_end
)
1575 GString
*close_name
;
1577 close_name
= context
->partial_chunk
;
1578 context
->partial_chunk
= NULL
;
1580 if (*context
->iter
!= '>')
1586 G_MARKUP_ERROR_PARSE
,
1587 _("“%s” is not a valid character following "
1588 "the close element name “%s”; the allowed "
1589 "character is “>”"),
1590 utf8_str (context
->iter
, buf
),
1593 else if (context
->tag_stack
== NULL
)
1597 G_MARKUP_ERROR_PARSE
,
1598 _("Element “%s” was closed, no element "
1599 "is currently open"),
1602 else if (strcmp (close_name
->str
, current_element (context
)) != 0)
1606 G_MARKUP_ERROR_PARSE
,
1607 _("Element “%s” was closed, but the currently "
1608 "open element is “%s”"),
1610 current_element (context
));
1614 advance_char (context
);
1615 context
->state
= STATE_AFTER_CLOSE_ANGLE
;
1616 context
->start
= NULL
;
1618 emit_end_element (context
, error
);
1620 context
->partial_chunk
= close_name
;
1621 truncate_partial (context
);
1625 case STATE_INSIDE_PASSTHROUGH
:
1626 /* Possible next state: AFTER_CLOSE_ANGLE */
1629 if (*context
->iter
== '<')
1631 if (*context
->iter
== '>')
1637 add_to_partial (context
, context
->start
, context
->iter
);
1638 context
->start
= context
->iter
;
1640 str
= context
->partial_chunk
->str
;
1641 len
= context
->partial_chunk
->len
;
1643 if (str
[1] == '?' && str
[len
- 1] == '?')
1645 if (strncmp (str
, "<!--", 4) == 0 &&
1646 strcmp (str
+ len
- 2, "--") == 0)
1648 if (strncmp (str
, "<![CDATA[", 9) == 0 &&
1649 strcmp (str
+ len
- 2, "]]") == 0)
1651 if (strncmp (str
, "<!DOCTYPE", 9) == 0 &&
1652 context
->balance
== 0)
1656 while (advance_char (context
));
1658 if (context
->iter
== context
->current_text_end
)
1660 /* The passthrough hasn't necessarily ended. Merge with
1661 * partial chunk, leave state unchanged.
1663 add_to_partial (context
, context
->start
, context
->iter
);
1667 /* The passthrough has ended at the close angle. Combine
1668 * it with the partial chunk if any. Call the passthrough
1669 * callback. Note that the open/close angles are
1670 * included in the text of the passthrough.
1672 GError
*tmp_error
= NULL
;
1674 advance_char (context
); /* advance past close angle */
1675 add_to_partial (context
, context
->start
, context
->iter
);
1677 if (context
->flags
& G_MARKUP_TREAT_CDATA_AS_TEXT
&&
1678 strncmp (context
->partial_chunk
->str
, "<![CDATA[", 9) == 0)
1680 if (context
->parser
->text
&&
1681 text_validate (context
,
1682 context
->partial_chunk
->str
+ 9,
1683 context
->partial_chunk
->len
- 12,
1685 (*context
->parser
->text
) (context
,
1686 context
->partial_chunk
->str
+ 9,
1687 context
->partial_chunk
->len
- 12,
1691 else if (context
->parser
->passthrough
&&
1692 text_validate (context
,
1693 context
->partial_chunk
->str
,
1694 context
->partial_chunk
->len
,
1696 (*context
->parser
->passthrough
) (context
,
1697 context
->partial_chunk
->str
,
1698 context
->partial_chunk
->len
,
1702 truncate_partial (context
);
1704 if (tmp_error
== NULL
)
1706 context
->state
= STATE_AFTER_CLOSE_ANGLE
;
1707 context
->start
= context
->iter
; /* could begin text */
1710 propagate_error (context
, error
, tmp_error
);
1719 g_assert_not_reached ();
1725 context
->parsing
= FALSE
;
1727 return context
->state
!= STATE_ERROR
;
1731 * g_markup_parse_context_end_parse:
1732 * @context: a #GMarkupParseContext
1733 * @error: return location for a #GError
1735 * Signals to the #GMarkupParseContext that all data has been
1736 * fed into the parse context with g_markup_parse_context_parse().
1738 * This function reports an error if the document isn't complete,
1739 * for example if elements are still open.
1741 * Returns: %TRUE on success, %FALSE if an error was set
1744 g_markup_parse_context_end_parse (GMarkupParseContext
*context
,
1747 g_return_val_if_fail (context
!= NULL
, FALSE
);
1748 g_return_val_if_fail (!context
->parsing
, FALSE
);
1749 g_return_val_if_fail (context
->state
!= STATE_ERROR
, FALSE
);
1751 if (context
->partial_chunk
!= NULL
)
1753 g_string_free (context
->partial_chunk
, TRUE
);
1754 context
->partial_chunk
= NULL
;
1757 if (context
->document_empty
)
1759 set_error_literal (context
, error
, G_MARKUP_ERROR_EMPTY
,
1760 _("Document was empty or contained only whitespace"));
1764 context
->parsing
= TRUE
;
1766 switch (context
->state
)
1772 case STATE_AFTER_OPEN_ANGLE
:
1773 set_error_literal (context
, error
, G_MARKUP_ERROR_PARSE
,
1774 _("Document ended unexpectedly just after an open angle bracket “<”"));
1777 case STATE_AFTER_CLOSE_ANGLE
:
1778 if (context
->tag_stack
!= NULL
)
1780 /* Error message the same as for INSIDE_TEXT */
1781 set_error (context
, error
, G_MARKUP_ERROR_PARSE
,
1782 _("Document ended unexpectedly with elements still open — "
1783 "“%s” was the last element opened"),
1784 current_element (context
));
1788 case STATE_AFTER_ELISION_SLASH
:
1789 set_error (context
, error
, G_MARKUP_ERROR_PARSE
,
1790 _("Document ended unexpectedly, expected to see a close angle "
1791 "bracket ending the tag <%s/>"), current_element (context
));
1794 case STATE_INSIDE_OPEN_TAG_NAME
:
1795 set_error_literal (context
, error
, G_MARKUP_ERROR_PARSE
,
1796 _("Document ended unexpectedly inside an element name"));
1799 case STATE_INSIDE_ATTRIBUTE_NAME
:
1800 case STATE_AFTER_ATTRIBUTE_NAME
:
1801 set_error_literal (context
, error
, G_MARKUP_ERROR_PARSE
,
1802 _("Document ended unexpectedly inside an attribute name"));
1805 case STATE_BETWEEN_ATTRIBUTES
:
1806 set_error_literal (context
, error
, G_MARKUP_ERROR_PARSE
,
1807 _("Document ended unexpectedly inside an element-opening "
1811 case STATE_AFTER_ATTRIBUTE_EQUALS_SIGN
:
1812 set_error_literal (context
, error
, G_MARKUP_ERROR_PARSE
,
1813 _("Document ended unexpectedly after the equals sign "
1814 "following an attribute name; no attribute value"));
1817 case STATE_INSIDE_ATTRIBUTE_VALUE_SQ
:
1818 case STATE_INSIDE_ATTRIBUTE_VALUE_DQ
:
1819 set_error_literal (context
, error
, G_MARKUP_ERROR_PARSE
,
1820 _("Document ended unexpectedly while inside an attribute "
1824 case STATE_INSIDE_TEXT
:
1825 g_assert (context
->tag_stack
!= NULL
);
1826 set_error (context
, error
, G_MARKUP_ERROR_PARSE
,
1827 _("Document ended unexpectedly with elements still open — "
1828 "“%s” was the last element opened"),
1829 current_element (context
));
1832 case STATE_AFTER_CLOSE_TAG_SLASH
:
1833 case STATE_INSIDE_CLOSE_TAG_NAME
:
1834 case STATE_AFTER_CLOSE_TAG_NAME
:
1835 set_error (context
, error
, G_MARKUP_ERROR_PARSE
,
1836 _("Document ended unexpectedly inside the close tag for "
1837 "element “%s”"), current_element (context
));
1840 case STATE_INSIDE_PASSTHROUGH
:
1841 set_error_literal (context
, error
, G_MARKUP_ERROR_PARSE
,
1842 _("Document ended unexpectedly inside a comment or "
1843 "processing instruction"));
1848 g_assert_not_reached ();
1852 context
->parsing
= FALSE
;
1854 return context
->state
!= STATE_ERROR
;
1858 * g_markup_parse_context_get_element:
1859 * @context: a #GMarkupParseContext
1861 * Retrieves the name of the currently open element.
1863 * If called from the start_element or end_element handlers this will
1864 * give the element_name as passed to those functions. For the parent
1865 * elements, see g_markup_parse_context_get_element_stack().
1867 * Returns: the name of the currently open element, or %NULL
1872 g_markup_parse_context_get_element (GMarkupParseContext
*context
)
1874 g_return_val_if_fail (context
!= NULL
, NULL
);
1876 if (context
->tag_stack
== NULL
)
1879 return current_element (context
);
1883 * g_markup_parse_context_get_element_stack:
1884 * @context: a #GMarkupParseContext
1886 * Retrieves the element stack from the internal state of the parser.
1888 * The returned #GSList is a list of strings where the first item is
1889 * the currently open tag (as would be returned by
1890 * g_markup_parse_context_get_element()) and the next item is its
1893 * This function is intended to be used in the start_element and
1894 * end_element handlers where g_markup_parse_context_get_element()
1895 * would merely return the name of the element that is being
1898 * Returns: the element stack, which must not be modified
1903 g_markup_parse_context_get_element_stack (GMarkupParseContext
*context
)
1905 g_return_val_if_fail (context
!= NULL
, NULL
);
1906 return context
->tag_stack
;
1910 * g_markup_parse_context_get_position:
1911 * @context: a #GMarkupParseContext
1912 * @line_number: (nullable): return location for a line number, or %NULL
1913 * @char_number: (nullable): return location for a char-on-line number, or %NULL
1915 * Retrieves the current line number and the number of the character on
1916 * that line. Intended for use in error messages; there are no strict
1917 * semantics for what constitutes the "current" line number other than
1918 * "the best number we could come up with for error messages."
1921 g_markup_parse_context_get_position (GMarkupParseContext
*context
,
1925 g_return_if_fail (context
!= NULL
);
1928 *line_number
= context
->line_number
;
1931 *char_number
= context
->char_number
;
1935 * g_markup_parse_context_get_user_data:
1936 * @context: a #GMarkupParseContext
1938 * Returns the user_data associated with @context.
1940 * This will either be the user_data that was provided to
1941 * g_markup_parse_context_new() or to the most recent call
1942 * of g_markup_parse_context_push().
1944 * Returns: the provided user_data. The returned data belongs to
1945 * the markup context and will be freed when
1946 * g_markup_parse_context_free() is called.
1951 g_markup_parse_context_get_user_data (GMarkupParseContext
*context
)
1953 return context
->user_data
;
1957 * g_markup_parse_context_push:
1958 * @context: a #GMarkupParseContext
1959 * @parser: a #GMarkupParser
1960 * @user_data: user data to pass to #GMarkupParser functions
1962 * Temporarily redirects markup data to a sub-parser.
1964 * This function may only be called from the start_element handler of
1965 * a #GMarkupParser. It must be matched with a corresponding call to
1966 * g_markup_parse_context_pop() in the matching end_element handler
1967 * (except in the case that the parser aborts due to an error).
1969 * All tags, text and other data between the matching tags is
1970 * redirected to the subparser given by @parser. @user_data is used
1971 * as the user_data for that parser. @user_data is also passed to the
1972 * error callback in the event that an error occurs. This includes
1973 * errors that occur in subparsers of the subparser.
1975 * The end tag matching the start tag for which this call was made is
1976 * handled by the previous parser (which is given its own user_data)
1977 * which is why g_markup_parse_context_pop() is provided to allow "one
1978 * last access" to the @user_data provided to this function. In the
1979 * case of error, the @user_data provided here is passed directly to
1980 * the error callback of the subparser and g_markup_parse_context_pop()
1981 * should not be called. In either case, if @user_data was allocated
1982 * then it ought to be freed from both of these locations.
1984 * This function is not intended to be directly called by users
1985 * interested in invoking subparsers. Instead, it is intended to be
1986 * used by the subparsers themselves to implement a higher-level
1989 * As an example, see the following implementation of a simple
1990 * parser that counts the number of tags encountered.
1992 * |[<!-- language="C" -->
1999 * counter_start_element (GMarkupParseContext *context,
2000 * const gchar *element_name,
2001 * const gchar **attribute_names,
2002 * const gchar **attribute_values,
2003 * gpointer user_data,
2006 * CounterData *data = user_data;
2008 * data->tag_count++;
2012 * counter_error (GMarkupParseContext *context,
2014 * gpointer user_data)
2016 * CounterData *data = user_data;
2018 * g_slice_free (CounterData, data);
2021 * static GMarkupParser counter_subparser =
2023 * counter_start_element,
2031 * In order to allow this parser to be easily used as a subparser, the
2032 * following interface is provided:
2034 * |[<!-- language="C" -->
2036 * start_counting (GMarkupParseContext *context)
2038 * CounterData *data = g_slice_new (CounterData);
2040 * data->tag_count = 0;
2041 * g_markup_parse_context_push (context, &counter_subparser, data);
2045 * end_counting (GMarkupParseContext *context)
2047 * CounterData *data = g_markup_parse_context_pop (context);
2050 * result = data->tag_count;
2051 * g_slice_free (CounterData, data);
2057 * The subparser would then be used as follows:
2059 * |[<!-- language="C" -->
2060 * static void start_element (context, element_name, ...)
2062 * if (strcmp (element_name, "count-these") == 0)
2063 * start_counting (context);
2065 * // else, handle other tags...
2068 * static void end_element (context, element_name, ...)
2070 * if (strcmp (element_name, "count-these") == 0)
2071 * g_print ("Counted %d tags\n", end_counting (context));
2073 * // else, handle other tags...
2080 g_markup_parse_context_push (GMarkupParseContext
*context
,
2081 const GMarkupParser
*parser
,
2084 GMarkupRecursionTracker
*tracker
;
2086 tracker
= g_slice_new (GMarkupRecursionTracker
);
2087 tracker
->prev_element
= context
->subparser_element
;
2088 tracker
->prev_parser
= context
->parser
;
2089 tracker
->prev_user_data
= context
->user_data
;
2091 context
->subparser_element
= current_element (context
);
2092 context
->parser
= parser
;
2093 context
->user_data
= user_data
;
2095 context
->subparser_stack
= g_slist_prepend (context
->subparser_stack
,
2100 * g_markup_parse_context_pop:
2101 * @context: a #GMarkupParseContext
2103 * Completes the process of a temporary sub-parser redirection.
2105 * This function exists to collect the user_data allocated by a
2106 * matching call to g_markup_parse_context_push(). It must be called
2107 * in the end_element handler corresponding to the start_element
2108 * handler during which g_markup_parse_context_push() was called.
2109 * You must not call this function from the error callback -- the
2110 * @user_data is provided directly to the callback in that case.
2112 * This function is not intended to be directly called by users
2113 * interested in invoking subparsers. Instead, it is intended to
2114 * be used by the subparsers themselves to implement a higher-level
2117 * Returns: the user data passed to g_markup_parse_context_push()
2122 g_markup_parse_context_pop (GMarkupParseContext
*context
)
2126 if (!context
->awaiting_pop
)
2127 possibly_finish_subparser (context
);
2129 g_assert (context
->awaiting_pop
);
2131 context
->awaiting_pop
= FALSE
;
2133 /* valgrind friendliness */
2134 user_data
= context
->held_user_data
;
2135 context
->held_user_data
= NULL
;
2141 append_escaped_text (GString
*str
,
2150 end
= text
+ length
;
2155 next
= g_utf8_next_char (p
);
2160 g_string_append (str
, "&");
2164 g_string_append (str
, "<");
2168 g_string_append (str
, ">");
2172 g_string_append (str
, "'");
2176 g_string_append (str
, """);
2180 c
= g_utf8_get_char (p
);
2181 if ((0x1 <= c
&& c
<= 0x8) ||
2182 (0xb <= c
&& c
<= 0xc) ||
2183 (0xe <= c
&& c
<= 0x1f) ||
2184 (0x7f <= c
&& c
<= 0x84) ||
2185 (0x86 <= c
&& c
<= 0x9f))
2186 g_string_append_printf (str
, "&#x%x;", c
);
2188 g_string_append_len (str
, p
, next
- p
);
2197 * g_markup_escape_text:
2198 * @text: some valid UTF-8 text
2199 * @length: length of @text in bytes, or -1 if the text is nul-terminated
2201 * Escapes text so that the markup parser will parse it verbatim.
2202 * Less than, greater than, ampersand, etc. are replaced with the
2203 * corresponding entities. This function would typically be used
2204 * when writing out a file to be parsed with the markup parser.
2206 * Note that this function doesn't protect whitespace and line endings
2207 * from being processed according to the XML rules for normalization
2208 * of line endings and attribute values.
2210 * Note also that this function will produce character references in
2211 * the range of  ...  for all control sequences
2212 * except for tabstop, newline and carriage return. The character
2213 * references in this range are not valid XML 1.0, but they are
2214 * valid XML 1.1 and will be accepted by the GMarkup parser.
2216 * Returns: a newly allocated string with the escaped text
2219 g_markup_escape_text (const gchar
*text
,
2224 g_return_val_if_fail (text
!= NULL
, NULL
);
2227 length
= strlen (text
);
2229 /* prealloc at least as long as original text */
2230 str
= g_string_sized_new (length
);
2231 append_escaped_text (str
, text
, length
);
2233 return g_string_free (str
, FALSE
);
2238 * @format: a printf-style format string
2239 * @after: location to store a pointer to the character after
2240 * the returned conversion. On a %NULL return, returns the
2241 * pointer to the trailing NUL in the string
2243 * Find the next conversion in a printf-style format string.
2244 * Partially based on code from printf-parser.c,
2245 * Copyright (C) 1999-2000, 2002-2003 Free Software Foundation, Inc.
2247 * Returns: pointer to the next conversion in @format,
2248 * or %NULL, if none.
2251 find_conversion (const char *format
,
2254 const char *start
= format
;
2257 while (*start
!= '\0' && *start
!= '%')
2274 /* Test for positional argument. */
2275 if (*cp
>= '0' && *cp
<= '9')
2279 for (np
= cp
; *np
>= '0' && *np
<= '9'; np
++)
2285 /* Skip the flags. */
2299 /* Skip the field width. */
2304 /* Test for positional argument. */
2305 if (*cp
>= '0' && *cp
<= '9')
2309 for (np
= cp
; *np
>= '0' && *np
<= '9'; np
++)
2317 for (; *cp
>= '0' && *cp
<= '9'; cp
++)
2321 /* Skip the precision. */
2327 /* Test for positional argument. */
2328 if (*cp
>= '0' && *cp
<= '9')
2332 for (np
= cp
; *np
>= '0' && *np
<= '9'; np
++)
2340 for (; *cp
>= '0' && *cp
<= '9'; cp
++)
2345 /* Skip argument type/size specifiers. */
2346 while (*cp
== 'h' ||
2355 /* Skip the conversion character. */
2363 * g_markup_vprintf_escaped:
2364 * @format: printf() style format string
2365 * @args: variable argument list, similar to vprintf()
2367 * Formats the data in @args according to @format, escaping
2368 * all string and character arguments in the fashion
2369 * of g_markup_escape_text(). See g_markup_printf_escaped().
2371 * Returns: newly allocated result from formatting
2372 * operation. Free with g_free().
2376 #pragma GCC diagnostic push
2377 #pragma GCC diagnostic ignored "-Wformat-nonliteral"
2380 g_markup_vprintf_escaped (const gchar
*format
,
2385 GString
*result
= NULL
;
2386 gchar
*output1
= NULL
;
2387 gchar
*output2
= NULL
;
2388 const char *p
, *op1
, *op2
;
2391 /* The technique here, is that we make two format strings that
2392 * have the identical conversions in the identical order to the
2393 * original strings, but differ in the text in-between. We
2394 * then use the normal g_strdup_vprintf() to format the arguments
2395 * with the two new format strings. By comparing the results,
2396 * we can figure out what segments of the output come from
2397 * the original format string, and what from the arguments,
2398 * and thus know what portions of the string to escape.
2400 * For instance, for:
2402 * g_markup_printf_escaped ("%s ate %d apples", "Susan & Fred", 5);
2404 * We form the two format strings "%sX%dX" and %sY%sY". The results
2405 * of formatting with those two strings are
2407 * "%sX%dX" => "Susan & FredX5X"
2408 * "%sY%dY" => "Susan & FredY5Y"
2410 * To find the span of the first argument, we find the first position
2411 * where the two arguments differ, which tells us that the first
2412 * argument formatted to "Susan & Fred". We then escape that
2413 * to "Susan & Fred" and join up with the intermediate portions
2414 * of the format string and the second argument to get
2415 * "Susan & Fred ate 5 apples".
2418 /* Create the two modified format strings
2420 format1
= g_string_new (NULL
);
2421 format2
= g_string_new (NULL
);
2426 const char *conv
= find_conversion (p
, &after
);
2430 g_string_append_len (format1
, conv
, after
- conv
);
2431 g_string_append_c (format1
, 'X');
2432 g_string_append_len (format2
, conv
, after
- conv
);
2433 g_string_append_c (format2
, 'Y');
2438 /* Use them to format the arguments
2440 G_VA_COPY (args2
, args
);
2442 output1
= g_strdup_vprintf (format1
->str
, args
);
2450 output2
= g_strdup_vprintf (format2
->str
, args2
);
2454 result
= g_string_new (NULL
);
2456 /* Iterate through the original format string again,
2457 * copying the non-conversion portions and the escaped
2458 * converted arguments to the output string.
2466 const char *output_start
;
2467 const char *conv
= find_conversion (p
, &after
);
2470 if (!conv
) /* The end, after points to the trailing \0 */
2472 g_string_append_len (result
, p
, after
- p
);
2476 g_string_append_len (result
, p
, conv
- p
);
2478 while (*op1
== *op2
)
2484 escaped
= g_markup_escape_text (output_start
, op1
- output_start
);
2485 g_string_append (result
, escaped
);
2494 g_string_free (format1
, TRUE
);
2495 g_string_free (format2
, TRUE
);
2500 return g_string_free (result
, FALSE
);
2505 #pragma GCC diagnostic pop
2508 * g_markup_printf_escaped:
2509 * @format: printf() style format string
2510 * @...: the arguments to insert in the format string
2512 * Formats arguments according to @format, escaping
2513 * all string and character arguments in the fashion
2514 * of g_markup_escape_text(). This is useful when you
2515 * want to insert literal strings into XML-style markup
2516 * output, without having to worry that the strings
2517 * might themselves contain markup.
2519 * |[<!-- language="C" -->
2520 * const char *store = "Fortnum & Mason";
2521 * const char *item = "Tea";
2524 * output = g_markup_printf_escaped ("<purchase>"
2525 * "<store>%s</store>"
2531 * Returns: newly allocated result from formatting
2532 * operation. Free with g_free().
2537 g_markup_printf_escaped (const gchar
*format
, ...)
2542 va_start (args
, format
);
2543 result
= g_markup_vprintf_escaped (format
, args
);
2550 g_markup_parse_boolean (const char *string
,
2553 char const * const falses
[] = { "false", "f", "no", "n", "0" };
2554 char const * const trues
[] = { "true", "t", "yes", "y", "1" };
2557 for (i
= 0; i
< G_N_ELEMENTS (falses
); i
++)
2559 if (g_ascii_strcasecmp (string
, falses
[i
]) == 0)
2568 for (i
= 0; i
< G_N_ELEMENTS (trues
); i
++)
2570 if (g_ascii_strcasecmp (string
, trues
[i
]) == 0)
2583 * GMarkupCollectType:
2584 * @G_MARKUP_COLLECT_INVALID: used to terminate the list of attributes
2586 * @G_MARKUP_COLLECT_STRING: collect the string pointer directly from
2587 * the attribute_values[] array. Expects a parameter of type (const
2588 * char **). If %G_MARKUP_COLLECT_OPTIONAL is specified and the
2589 * attribute isn't present then the pointer will be set to %NULL
2590 * @G_MARKUP_COLLECT_STRDUP: as with %G_MARKUP_COLLECT_STRING, but
2591 * expects a parameter of type (char **) and g_strdup()s the
2592 * returned pointer. The pointer must be freed with g_free()
2593 * @G_MARKUP_COLLECT_BOOLEAN: expects a parameter of type (gboolean *)
2594 * and parses the attribute value as a boolean. Sets %FALSE if the
2595 * attribute isn't present. Valid boolean values consist of
2596 * (case-insensitive) "false", "f", "no", "n", "0" and "true", "t",
2598 * @G_MARKUP_COLLECT_TRISTATE: as with %G_MARKUP_COLLECT_BOOLEAN, but
2599 * in the case of a missing attribute a value is set that compares
2600 * equal to neither %FALSE nor %TRUE G_MARKUP_COLLECT_OPTIONAL is
2602 * @G_MARKUP_COLLECT_OPTIONAL: can be bitwise ORed with the other fields.
2603 * If present, allows the attribute not to appear. A default value
2604 * is set depending on what value type is used
2606 * A mixed enumerated type and flags field. You must specify one type
2607 * (string, strdup, boolean, tristate). Additionally, you may optionally
2608 * bitwise OR the type with the flag %G_MARKUP_COLLECT_OPTIONAL.
2610 * It is likely that this enum will be extended in the future to
2611 * support other types.
2615 * g_markup_collect_attributes:
2616 * @element_name: the current tag name
2617 * @attribute_names: the attribute names
2618 * @attribute_values: the attribute values
2619 * @error: a pointer to a #GError or %NULL
2620 * @first_type: the #GMarkupCollectType of the first attribute
2621 * @first_attr: the name of the first attribute
2622 * @...: a pointer to the storage location of the first attribute
2623 * (or %NULL), followed by more types names and pointers, ending
2624 * with %G_MARKUP_COLLECT_INVALID
2626 * Collects the attributes of the element from the data passed to the
2627 * #GMarkupParser start_element function, dealing with common error
2628 * conditions and supporting boolean values.
2630 * This utility function is not required to write a parser but can save
2633 * The @element_name, @attribute_names, @attribute_values and @error
2634 * parameters passed to the start_element callback should be passed
2635 * unmodified to this function.
2637 * Following these arguments is a list of "supported" attributes to collect.
2638 * It is an error to specify multiple attributes with the same name. If any
2639 * attribute not in the list appears in the @attribute_names array then an
2640 * unknown attribute error will result.
2642 * The #GMarkupCollectType field allows specifying the type of collection
2643 * to perform and if a given attribute must appear or is optional.
2645 * The attribute name is simply the name of the attribute to collect.
2647 * The pointer should be of the appropriate type (see the descriptions
2648 * under #GMarkupCollectType) and may be %NULL in case a particular
2649 * attribute is to be allowed but ignored.
2651 * This function deals with issuing errors for missing attributes
2652 * (of type %G_MARKUP_ERROR_MISSING_ATTRIBUTE), unknown attributes
2653 * (of type %G_MARKUP_ERROR_UNKNOWN_ATTRIBUTE) and duplicate
2654 * attributes (of type %G_MARKUP_ERROR_INVALID_CONTENT) as well
2655 * as parse errors for boolean-valued attributes (again of type
2656 * %G_MARKUP_ERROR_INVALID_CONTENT). In all of these cases %FALSE
2657 * will be returned and @error will be set as appropriate.
2659 * Returns: %TRUE if successful
2664 g_markup_collect_attributes (const gchar
*element_name
,
2665 const gchar
**attribute_names
,
2666 const gchar
**attribute_values
,
2668 GMarkupCollectType first_type
,
2669 const gchar
*first_attr
,
2672 GMarkupCollectType type
;
2684 va_start (ap
, first_attr
);
2685 while (type
!= G_MARKUP_COLLECT_INVALID
)
2690 mandatory
= !(type
& G_MARKUP_COLLECT_OPTIONAL
);
2691 type
&= (G_MARKUP_COLLECT_OPTIONAL
- 1);
2693 /* tristate records a value != TRUE and != FALSE
2694 * for the case where the attribute is missing
2696 if (type
== G_MARKUP_COLLECT_TRISTATE
)
2699 for (i
= 0; attribute_names
[i
]; i
++)
2700 if (i
>= 40 || !(collected
& (G_GUINT64_CONSTANT(1) << i
)))
2701 if (!strcmp (attribute_names
[i
], attr
))
2704 /* ISO C99 only promises that the user can pass up to 127 arguments.
2705 * Subtracting the first 4 arguments plus the final NULL and dividing
2706 * by 3 arguments per collected attribute, we are left with a maximum
2707 * number of supported attributes of (127 - 5) / 3 = 40.
2709 * In reality, nobody is ever going to call us with anywhere close to
2710 * 40 attributes to collect, so it is safe to assume that if i > 40
2711 * then the user has given some invalid or repeated arguments. These
2712 * problems will be caught and reported at the end of the function.
2714 * We know at this point that we have an error, but we don't know
2715 * what error it is, so just continue...
2718 collected
|= (G_GUINT64_CONSTANT(1) << i
);
2720 value
= attribute_values
[i
];
2722 if (value
== NULL
&& mandatory
)
2724 g_set_error (error
, G_MARKUP_ERROR
,
2725 G_MARKUP_ERROR_MISSING_ATTRIBUTE
,
2726 "element '%s' requires attribute '%s'",
2727 element_name
, attr
);
2735 case G_MARKUP_COLLECT_STRING
:
2737 const char **str_ptr
;
2739 str_ptr
= va_arg (ap
, const char **);
2741 if (str_ptr
!= NULL
)
2746 case G_MARKUP_COLLECT_STRDUP
:
2750 str_ptr
= va_arg (ap
, char **);
2752 if (str_ptr
!= NULL
)
2753 *str_ptr
= g_strdup (value
);
2757 case G_MARKUP_COLLECT_BOOLEAN
:
2758 case G_MARKUP_COLLECT_TRISTATE
:
2763 bool_ptr
= va_arg (ap
, gboolean
*);
2765 if (bool_ptr
!= NULL
)
2767 if (type
== G_MARKUP_COLLECT_TRISTATE
)
2768 /* constructivists rejoice!
2769 * neither false nor true...
2773 else /* G_MARKUP_COLLECT_BOOLEAN */
2779 if (!g_markup_parse_boolean (value
, va_arg (ap
, gboolean
*)))
2781 g_set_error (error
, G_MARKUP_ERROR
,
2782 G_MARKUP_ERROR_INVALID_CONTENT
,
2783 "element '%s', attribute '%s', value '%s' "
2784 "cannot be parsed as a boolean value",
2785 element_name
, attr
, value
);
2795 g_assert_not_reached ();
2798 type
= va_arg (ap
, GMarkupCollectType
);
2799 attr
= va_arg (ap
, const char *);
2804 /* ensure we collected all the arguments */
2805 for (i
= 0; attribute_names
[i
]; i
++)
2806 if ((collected
& (G_GUINT64_CONSTANT(1) << i
)) == 0)
2808 /* attribute not collected: could be caused by two things.
2810 * 1) it doesn't exist in our list of attributes
2811 * 2) it existed but was matched by a duplicate attribute earlier
2817 for (j
= 0; j
< i
; j
++)
2818 if (strcmp (attribute_names
[i
], attribute_names
[j
]) == 0)
2822 /* j is now the first occurrence of attribute_names[i] */
2824 g_set_error (error
, G_MARKUP_ERROR
,
2825 G_MARKUP_ERROR_UNKNOWN_ATTRIBUTE
,
2826 "attribute '%s' invalid for element '%s'",
2827 attribute_names
[i
], element_name
);
2829 g_set_error (error
, G_MARKUP_ERROR
,
2830 G_MARKUP_ERROR_INVALID_CONTENT
,
2831 "attribute '%s' given multiple times for element '%s'",
2832 attribute_names
[i
], element_name
);
2840 /* replay the above to free allocations */
2844 va_start (ap
, first_attr
);
2845 while (type
!= G_MARKUP_COLLECT_INVALID
)
2849 ptr
= va_arg (ap
, gpointer
);
2853 switch (type
& (G_MARKUP_COLLECT_OPTIONAL
- 1))
2855 case G_MARKUP_COLLECT_STRDUP
:
2857 g_free (*(char **) ptr
);
2859 case G_MARKUP_COLLECT_STRING
:
2860 *(char **) ptr
= NULL
;
2863 case G_MARKUP_COLLECT_BOOLEAN
:
2864 *(gboolean
*) ptr
= FALSE
;
2867 case G_MARKUP_COLLECT_TRISTATE
:
2868 *(gboolean
*) ptr
= -1;
2873 type
= va_arg (ap
, GMarkupCollectType
);
2874 attr
= va_arg (ap
, const char *);