Fix the -Werror=format-nonliteral fixes for older GCCs
[platform/upstream/glib.git] / glib / gmarkup.c
1 /* gmarkup.c - Simple XML-like parser
2  *
3  *  Copyright 2000, 2003 Red Hat, Inc.
4  *  Copyright 2007, 2008 Ryan Lortie <desrt@desrt.ca>
5  *
6  * GLib is free software; you can redistribute it and/or modify it
7  * under the terms of the GNU Lesser General Public License as
8  * published by the Free Software Foundation; either version 2 of the
9  * License, or (at your option) any later version.
10  *
11  * GLib 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.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with GLib; see the file COPYING.LIB.  If not,
18  * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19  *   Boston, MA 02111-1307, USA.
20  */
21
22 #include "config.h"
23
24 #include <stdarg.h>
25 #include <string.h>
26 #include <stdio.h>
27 #include <stdlib.h>
28 #include <errno.h>
29
30 #include "gmarkup.h"
31
32 #include "gatomic.h"
33 #include "gslice.h"
34 #include "galloca.h"
35 #include "gstrfuncs.h"
36 #include "gstring.h"
37 #include "gtestutils.h"
38 #include "glibintl.h"
39 #include "gthread.h"
40
41 /**
42  * SECTION:markup
43  * @Title: Simple XML Subset Parser
44  * @Short_description: parses a subset of XML
45  * @See_also: <ulink url="http://www.w3.org/TR/REC-xml/">XML
46  *     Specification</ulink>
47  *
48  * The "GMarkup" parser is intended to parse a simple markup format
49  * that's a subset of XML. This is a small, efficient, easy-to-use
50  * parser. It should not be used if you expect to interoperate with
51  * other applications generating full-scale XML. However, it's very
52  * useful for application data files, config files, etc. where you
53  * know your application will be the only one writing the file.
54  * Full-scale XML parsers should be able to parse the subset used by
55  * GMarkup, so you can easily migrate to full-scale XML at a later
56  * time if the need arises.
57  *
58  * GMarkup is not guaranteed to signal an error on all invalid XML;
59  * the parser may accept documents that an XML parser would not.
60  * However, XML documents which are not well-formed<footnote
61  * id="wellformed">Being wellformed is a weaker condition than being
62  * valid. See the <ulink url="http://www.w3.org/TR/REC-xml/">XML
63  * specification</ulink> for definitions of these terms.</footnote>
64  * are not considered valid GMarkup documents.
65  *
66  * Simplifications to XML include:
67  * <itemizedlist>
68  * <listitem>Only UTF-8 encoding is allowed</listitem>
69  * <listitem>No user-defined entities</listitem>
70  * <listitem>Processing instructions, comments and the doctype declaration
71  * are "passed through" but are not interpreted in any way</listitem>
72  * <listitem>No DTD or validation.</listitem>
73  * </itemizedlist>
74  *
75  * The markup format does support:
76  * <itemizedlist>
77  * <listitem>Elements</listitem>
78  * <listitem>Attributes</listitem>
79  * <listitem>5 standard entities:
80  *   <literal>&amp;amp; &amp;lt; &amp;gt; &amp;quot; &amp;apos;</literal>
81  * </listitem>
82  * <listitem>Character references</listitem>
83  * <listitem>Sections marked as CDATA</listitem>
84  * </itemizedlist>
85  */
86
87 G_DEFINE_QUARK (g-markup-error-quark, g_markup_error)
88
89 typedef enum
90 {
91   STATE_START,
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,
102   STATE_INSIDE_TEXT,
103   STATE_AFTER_CLOSE_TAG_SLASH,
104   STATE_INSIDE_CLOSE_TAG_NAME,
105   STATE_AFTER_CLOSE_TAG_NAME,
106   STATE_INSIDE_PASSTHROUGH,
107   STATE_ERROR
108 } GMarkupParseState;
109
110 typedef struct
111 {
112   const char *prev_element;
113   const GMarkupParser *prev_parser;
114   gpointer prev_user_data;
115 } GMarkupRecursionTracker;
116
117 struct _GMarkupParseContext
118 {
119   const GMarkupParser *parser;
120
121   volatile gint ref_count;
122
123   GMarkupParseFlags flags;
124
125   gint line_number;
126   gint char_number;
127
128   GMarkupParseState state;
129
130   gpointer user_data;
131   GDestroyNotify dnotify;
132
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.
136    */
137   GString *partial_chunk;
138   GSList *spare_chunks;
139
140   GSList *tag_stack;
141   GSList *tag_stack_gstr;
142   GSList *spare_list_nodes;
143
144   GString **attr_names;
145   GString **attr_values;
146   gint cur_attr;
147   gint alloc_attrs;
148
149   const gchar *current_text;
150   gssize       current_text_len;
151   const gchar *current_text_end;
152
153   /* used to save the start of the last interesting thingy */
154   const gchar *start;
155
156   const gchar *iter;
157
158   guint document_empty : 1;
159   guint parsing : 1;
160   guint awaiting_pop : 1;
161   gint balance;
162
163   /* subparser support */
164   GSList *subparser_stack; /* (GMarkupRecursionTracker *) */
165   const char *subparser_element;
166   gpointer held_user_data;
167 };
168
169 /*
170  * Helpers to reduce our allocation overhead, we have
171  * a well defined allocation lifecycle.
172  */
173 static GSList *
174 get_list_node (GMarkupParseContext *context, gpointer data)
175 {
176   GSList *node;
177   if (context->spare_list_nodes != NULL)
178     {
179       node = context->spare_list_nodes;
180       context->spare_list_nodes = g_slist_remove_link (context->spare_list_nodes, node);
181     }
182   else
183     node = g_slist_alloc();
184   node->data = data;
185   return node;
186 }
187
188 static void
189 free_list_node (GMarkupParseContext *context, GSList *node)
190 {
191   node->data = NULL;
192   context->spare_list_nodes = g_slist_concat (node, context->spare_list_nodes);
193 }
194
195 static inline void
196 string_blank (GString *string)
197 {
198   string->str[0] = '\0';
199   string->len = 0;
200 }
201
202 /**
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
209  *
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).
215  *
216  * Return value: a new #GMarkupParseContext
217  **/
218 GMarkupParseContext *
219 g_markup_parse_context_new (const GMarkupParser *parser,
220                             GMarkupParseFlags    flags,
221                             gpointer             user_data,
222                             GDestroyNotify       user_data_dnotify)
223 {
224   GMarkupParseContext *context;
225
226   g_return_val_if_fail (parser != NULL, NULL);
227
228   context = g_new (GMarkupParseContext, 1);
229
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;
235
236   context->line_number = 1;
237   context->char_number = 1;
238
239   context->partial_chunk = NULL;
240   context->spare_chunks = NULL;
241   context->spare_list_nodes = NULL;
242
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;
250
251   context->current_text = NULL;
252   context->current_text_len = -1;
253   context->current_text_end = NULL;
254
255   context->start = NULL;
256   context->iter = NULL;
257
258   context->document_empty = TRUE;
259   context->parsing = FALSE;
260
261   context->awaiting_pop = FALSE;
262   context->subparser_stack = NULL;
263   context->subparser_element = NULL;
264
265   /* this is only looked at if awaiting_pop = TRUE.  initialise anyway. */
266   context->held_user_data = NULL;
267
268   context->balance = 0;
269
270   return context;
271 }
272
273 /**
274  * g_markup_parse_context_ref:
275  * @context: a #GMarkupParseContext
276  *
277  * Increases the reference count of @context.
278  *
279  * Returns: the same @context
280  *
281  * Since: 2.36
282  **/
283 GMarkupParseContext *
284 g_markup_parse_context_ref (GMarkupParseContext *context)
285 {
286   g_return_val_if_fail (context != NULL, NULL);
287   g_return_val_if_fail (context->ref_count > 0, NULL);
288
289   g_atomic_int_inc (&context->ref_count);
290
291   return context;
292 }
293
294 /**
295  * g_markup_parse_context_unref:
296  * @context: a #GMarkupParseContext
297  *
298  * Decreases the reference count of @context.  When its reference count
299  * drops to 0, it is freed.
300  *
301  * Since: 2.36
302  **/
303 void
304 g_markup_parse_context_unref (GMarkupParseContext *context)
305 {
306   g_return_if_fail (context != NULL);
307   g_return_if_fail (context->ref_count > 0);
308
309   if (g_atomic_int_dec_and_test (&context->ref_count))
310     g_markup_parse_context_free (context);
311 }
312
313 static void
314 string_full_free (gpointer ptr)
315 {
316   g_string_free (ptr, TRUE);
317 }
318
319 static void clear_attributes (GMarkupParseContext *context);
320
321 /**
322  * g_markup_parse_context_free:
323  * @context: a #GMarkupParseContext
324  *
325  * Frees a #GMarkupParseContext.
326  *
327  * This function can't be called from inside one of the
328  * #GMarkupParser functions or while a subparser is pushed.
329  */
330 void
331 g_markup_parse_context_free (GMarkupParseContext *context)
332 {
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);
337
338   if (context->dnotify)
339     (* context->dnotify) (context->user_data);
340
341   clear_attributes (context);
342   g_free (context->attr_names);
343   g_free (context->attr_values);
344
345   g_slist_free_full (context->tag_stack_gstr, string_full_free);
346   g_slist_free (context->tag_stack);
347
348   g_slist_free_full (context->spare_chunks, string_full_free);
349   g_slist_free (context->spare_list_nodes);
350
351   if (context->partial_chunk)
352     g_string_free (context->partial_chunk, TRUE);
353
354   g_free (context);
355 }
356
357 static void pop_subparser_stack (GMarkupParseContext *context);
358
359 static void
360 mark_error (GMarkupParseContext *context,
361             GError              *error)
362 {
363   context->state = STATE_ERROR;
364
365   if (context->parser->error)
366     (*context->parser->error) (context, error, context->user_data);
367
368   /* report the error all the way up to free all the user-data */
369   while (context->subparser_stack)
370     {
371       pop_subparser_stack (context);
372       context->awaiting_pop = FALSE; /* already been freed */
373
374       if (context->parser->error)
375         (*context->parser->error) (context, error, context->user_data);
376     }
377 }
378
379 static void
380 set_error (GMarkupParseContext  *context,
381            GError              **error,
382            GMarkupError          code,
383            const gchar          *format,
384            ...) G_GNUC_PRINTF (4, 5);
385
386 static void
387 set_error_literal (GMarkupParseContext  *context,
388                    GError              **error,
389                    GMarkupError          code,
390                    const gchar          *message)
391 {
392   GError *tmp_error;
393
394   tmp_error = g_error_new_literal (G_MARKUP_ERROR, code, message);
395
396   g_prefix_error (&tmp_error,
397                   _("Error on line %d char %d: "),
398                   context->line_number,
399                   context->char_number);
400
401   mark_error (context, tmp_error);
402
403   g_propagate_error (error, tmp_error);
404 }
405
406 G_GNUC_PRINTF(4, 5)
407 static void
408 set_error (GMarkupParseContext  *context,
409            GError              **error,
410            GMarkupError          code,
411            const gchar          *format,
412            ...)
413 {
414   gchar *s;
415   gchar *s_valid;
416   va_list args;
417
418   va_start (args, format);
419   s = g_strdup_vprintf (format, args);
420   va_end (args);
421
422   /* Make sure that the GError message is valid UTF-8
423    * even if it is complaining about invalid UTF-8 in the markup
424    */
425   s_valid = _g_utf8_make_valid (s);
426   set_error_literal (context, error, code, s);
427
428   g_free (s);
429   g_free (s_valid);
430 }
431
432 static void
433 propagate_error (GMarkupParseContext  *context,
434                  GError              **dest,
435                  GError               *src)
436 {
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);
442
443   mark_error (context, src);
444
445   g_propagate_error (dest, src);
446 }
447
448 #define IS_COMMON_NAME_END_CHAR(c) \
449   ((c) == '=' || (c) == '/' || (c) == '>' || (c) == ' ')
450
451 static gboolean
452 slow_name_validate (GMarkupParseContext  *context,
453                     const gchar          *name,
454                     GError              **error)
455 {
456   const gchar *p = name;
457
458   if (!g_utf8_validate (name, strlen (name), NULL))
459     {
460       set_error (context, error, G_MARKUP_ERROR_BAD_UTF8,
461                  _("Invalid UTF-8 encoded text in name - not valid '%s'"), name);
462       return FALSE;
463     }
464
465   if (!(g_ascii_isalpha (*p) ||
466         (!IS_COMMON_NAME_END_CHAR (*p) &&
467          (*p == '_' ||
468           *p == ':' ||
469           g_unichar_isalpha (g_utf8_get_char (p))))))
470     {
471       set_error (context, error, G_MARKUP_ERROR_PARSE,
472                  _("'%s' is not a valid name"), name);
473       return FALSE;
474     }
475
476   for (p = g_utf8_next_char (name); *p != '\0'; p = g_utf8_next_char (p))
477     {
478       /* is_name_char */
479       if (!(g_ascii_isalnum (*p) ||
480             (!IS_COMMON_NAME_END_CHAR (*p) &&
481              (*p == '.' ||
482               *p == '-' ||
483               *p == '_' ||
484               *p == ':' ||
485               g_unichar_isalpha (g_utf8_get_char (p))))))
486         {
487           set_error (context, error, G_MARKUP_ERROR_PARSE,
488                      _("'%s' is not a valid name: '%c'"), name, *p);
489           return FALSE;
490         }
491     }
492   return TRUE;
493 }
494
495 /*
496  * Use me for elements, attributes etc.
497  */
498 static gboolean
499 name_validate (GMarkupParseContext  *context,
500                const gchar          *name,
501                GError              **error)
502 {
503   char mask;
504   const char *p;
505
506   /* name start char */
507   p = name;
508   if (G_UNLIKELY (IS_COMMON_NAME_END_CHAR (*p) ||
509                   !(g_ascii_isalpha (*p) || *p == '_' || *p == ':')))
510     goto slow_validate;
511
512   for (mask = *p++; *p != '\0'; p++)
513     {
514       mask |= *p;
515
516       /* is_name_char */
517       if (G_UNLIKELY (!(g_ascii_isalnum (*p) ||
518                         (!IS_COMMON_NAME_END_CHAR (*p) &&
519                          (*p == '.' ||
520                           *p == '-' ||
521                           *p == '_' ||
522                           *p == ':')))))
523         goto slow_validate;
524     }
525
526   if (mask & 0x80) /* un-common / non-ascii */
527     goto slow_validate;
528
529   return TRUE;
530
531  slow_validate:
532   return slow_name_validate (context, name, error);
533 }
534
535 static gboolean
536 text_validate (GMarkupParseContext  *context,
537                const gchar          *p,
538                gint                  len,
539                GError              **error)
540 {
541   if (!g_utf8_validate (p, len, NULL))
542     {
543       set_error (context, error, G_MARKUP_ERROR_BAD_UTF8,
544                  _("Invalid UTF-8 encoded text in name - not valid '%s'"), p);
545       return FALSE;
546     }
547   else
548     return TRUE;
549 }
550
551 static gchar*
552 char_str (gunichar c,
553           gchar   *buf)
554 {
555   memset (buf, 0, 8);
556   g_unichar_to_utf8 (c, buf);
557   return buf;
558 }
559
560 static gchar*
561 utf8_str (const gchar *utf8,
562           gchar       *buf)
563 {
564   char_str (g_utf8_get_char (utf8), buf);
565   return buf;
566 }
567
568 G_GNUC_PRINTF(5, 6)
569 static void
570 set_unescape_error (GMarkupParseContext  *context,
571                     GError              **error,
572                     const gchar          *remaining_text,
573                     GMarkupError          code,
574                     const gchar          *format,
575                     ...)
576 {
577   GError *tmp_error;
578   gchar *s;
579   va_list args;
580   gint remaining_newlines;
581   const gchar *p;
582
583   remaining_newlines = 0;
584   p = remaining_text;
585   while (*p != '\0')
586     {
587       if (*p == '\n')
588         ++remaining_newlines;
589       ++p;
590     }
591
592   va_start (args, format);
593   s = g_strdup_vprintf (format, args);
594   va_end (args);
595
596   tmp_error = g_error_new (G_MARKUP_ERROR,
597                            code,
598                            _("Error on line %d: %s"),
599                            context->line_number - remaining_newlines,
600                            s);
601
602   g_free (s);
603
604   mark_error (context, tmp_error);
605
606   g_propagate_error (error, tmp_error);
607 }
608
609 /*
610  * re-write the GString in-place, unescaping anything that escaped.
611  * most XML does not contain entities, or escaping.
612  */
613 static gboolean
614 unescape_gstring_inplace (GMarkupParseContext  *context,
615                           GString              *string,
616                           gboolean             *is_ascii,
617                           GError              **error)
618 {
619   char mask, *to;
620   int line_num = 1;
621   const char *from;
622   gboolean normalize_attribute;
623
624   *is_ascii = FALSE;
625
626   /* are we unescaping an attribute or not ? */
627   if (context->state == STATE_INSIDE_ATTRIBUTE_VALUE_SQ ||
628       context->state == STATE_INSIDE_ATTRIBUTE_VALUE_DQ)
629     normalize_attribute = TRUE;
630   else
631     normalize_attribute = FALSE;
632
633   /*
634    * Meeks' theorum: unescaping can only shrink text.
635    * for &lt; etc. this is obvious, for &#xffff; more
636    * thought is required, but this is patently so.
637    */
638   mask = 0;
639   for (from = to = string->str; *from != '\0'; from++, to++)
640     {
641       *to = *from;
642
643       mask |= *to;
644       if (*to == '\n')
645         line_num++;
646       if (normalize_attribute && (*to == '\t' || *to == '\n'))
647         *to = ' ';
648       if (*to == '\r')
649         {
650           *to = normalize_attribute ? ' ' : '\n';
651           if (from[1] == '\n')
652             from++;
653         }
654       if (*from == '&')
655         {
656           from++;
657           if (*from == '#')
658             {
659               gboolean is_hex = FALSE;
660               gulong l;
661               gchar *end = NULL;
662
663               from++;
664
665               if (*from == 'x')
666                 {
667                   is_hex = TRUE;
668                   from++;
669                 }
670
671               /* digit is between start and p */
672               errno = 0;
673               if (is_hex)
674                 l = strtoul (from, &end, 16);
675               else
676                 l = strtoul (from, &end, 10);
677
678               if (end == from || errno != 0)
679                 {
680                   set_unescape_error (context, error,
681                                       from, G_MARKUP_ERROR_PARSE,
682                                       _("Failed to parse '%-.*s', which "
683                                         "should have been a digit "
684                                         "inside a character reference "
685                                         "(&#234; for example) - perhaps "
686                                         "the digit is too large"),
687                                       (int)(end - from), from);
688                   return FALSE;
689                 }
690               else if (*end != ';')
691                 {
692                   set_unescape_error (context, error,
693                                       from, G_MARKUP_ERROR_PARSE,
694                                       _("Character reference did not end with a "
695                                         "semicolon; "
696                                         "most likely you used an ampersand "
697                                         "character without intending to start "
698                                         "an entity - escape ampersand as &amp;"));
699                   return FALSE;
700                 }
701               else
702                 {
703                   /* characters XML 1.1 permits */
704                   if ((0 < l && l <= 0xD7FF) ||
705                       (0xE000 <= l && l <= 0xFFFD) ||
706                       (0x10000 <= l && l <= 0x10FFFF))
707                     {
708                       gchar buf[8];
709                       char_str (l, buf);
710                       strcpy (to, buf);
711                       to += strlen (buf) - 1;
712                       from = end;
713                       if (l >= 0x80) /* not ascii */
714                         mask |= 0x80;
715                     }
716                   else
717                     {
718                       set_unescape_error (context, error,
719                                           from, G_MARKUP_ERROR_PARSE,
720                                           _("Character reference '%-.*s' does not "
721                                             "encode a permitted character"),
722                                           (int)(end - from), from);
723                       return FALSE;
724                     }
725                 }
726             }
727
728           else if (strncmp (from, "lt;", 3) == 0)
729             {
730               *to = '<';
731               from += 2;
732             }
733           else if (strncmp (from, "gt;", 3) == 0)
734             {
735               *to = '>';
736               from += 2;
737             }
738           else if (strncmp (from, "amp;", 4) == 0)
739             {
740               *to = '&';
741               from += 3;
742             }
743           else if (strncmp (from, "quot;", 5) == 0)
744             {
745               *to = '"';
746               from += 4;
747             }
748           else if (strncmp (from, "apos;", 5) == 0)
749             {
750               *to = '\'';
751               from += 4;
752             }
753           else
754             {
755               if (*from == ';')
756                 set_unescape_error (context, error,
757                                     from, G_MARKUP_ERROR_PARSE,
758                                     _("Empty entity '&;' seen; valid "
759                                       "entities are: &amp; &quot; &lt; &gt; &apos;"));
760               else
761                 {
762                   const char *end = strchr (from, ';');
763                   if (end)
764                     set_unescape_error (context, error,
765                                         from, G_MARKUP_ERROR_PARSE,
766                                         _("Entity name '%-.*s' is not known"),
767                                         (int)(end - from), from);
768                   else
769                     set_unescape_error (context, error,
770                                         from, G_MARKUP_ERROR_PARSE,
771                                         _("Entity did not end with a semicolon; "
772                                           "most likely you used an ampersand "
773                                           "character without intending to start "
774                                           "an entity - escape ampersand as &amp;"));
775                 }
776               return FALSE;
777             }
778         }
779     }
780
781   g_assert (to - string->str <= string->len);
782   if (to - string->str != string->len)
783     g_string_truncate (string, to - string->str);
784
785   *is_ascii = !(mask & 0x80);
786
787   return TRUE;
788 }
789
790 static inline gboolean
791 advance_char (GMarkupParseContext *context)
792 {
793   context->iter++;
794   context->char_number++;
795
796   if (G_UNLIKELY (context->iter == context->current_text_end))
797       return FALSE;
798
799   else if (G_UNLIKELY (*context->iter == '\n'))
800     {
801       context->line_number++;
802       context->char_number = 1;
803     }
804
805   return TRUE;
806 }
807
808 static inline gboolean
809 xml_isspace (char c)
810 {
811   return c == ' ' || c == '\t' || c == '\n' || c == '\r';
812 }
813
814 static void
815 skip_spaces (GMarkupParseContext *context)
816 {
817   do
818     {
819       if (!xml_isspace (*context->iter))
820         return;
821     }
822   while (advance_char (context));
823 }
824
825 static void
826 advance_to_name_end (GMarkupParseContext *context)
827 {
828   do
829     {
830       if (IS_COMMON_NAME_END_CHAR (*(context->iter)))
831         return;
832       if (xml_isspace (*(context->iter)))
833         return;
834     }
835   while (advance_char (context));
836 }
837
838 static void
839 release_chunk (GMarkupParseContext *context, GString *str)
840 {
841   GSList *node;
842   if (!str)
843     return;
844   if (str->allocated_len > 256)
845     { /* large strings are unusual and worth freeing */
846       g_string_free (str, TRUE);
847       return;
848     }
849   string_blank (str);
850   node = get_list_node (context, str);
851   context->spare_chunks = g_slist_concat (node, context->spare_chunks);
852 }
853
854 static void
855 add_to_partial (GMarkupParseContext *context,
856                 const gchar         *text_start,
857                 const gchar         *text_end)
858 {
859   if (context->partial_chunk == NULL)
860     { /* allocate a new chunk to parse into */
861
862       if (context->spare_chunks != NULL)
863         {
864           GSList *node = context->spare_chunks;
865           context->spare_chunks = g_slist_remove_link (context->spare_chunks, node);
866           context->partial_chunk = node->data;
867           free_list_node (context, node);
868         }
869       else
870         context->partial_chunk = g_string_sized_new (MAX (28, text_end - text_start));
871     }
872
873   if (text_start != text_end)
874     g_string_insert_len (context->partial_chunk, -1,
875                          text_start, text_end - text_start);
876 }
877
878 static inline void
879 truncate_partial (GMarkupParseContext *context)
880 {
881   if (context->partial_chunk != NULL)
882     string_blank (context->partial_chunk);
883 }
884
885 static inline const gchar*
886 current_element (GMarkupParseContext *context)
887 {
888   return context->tag_stack->data;
889 }
890
891 static void
892 pop_subparser_stack (GMarkupParseContext *context)
893 {
894   GMarkupRecursionTracker *tracker;
895
896   g_assert (context->subparser_stack);
897
898   tracker = context->subparser_stack->data;
899
900   context->awaiting_pop = TRUE;
901   context->held_user_data = context->user_data;
902
903   context->user_data = tracker->prev_user_data;
904   context->parser = tracker->prev_parser;
905   context->subparser_element = tracker->prev_element;
906   g_slice_free (GMarkupRecursionTracker, tracker);
907
908   context->subparser_stack = g_slist_delete_link (context->subparser_stack,
909                                                   context->subparser_stack);
910 }
911
912 static void
913 push_partial_as_tag (GMarkupParseContext *context)
914 {
915   GString *str = context->partial_chunk;
916   /* sadly, this is exported by gmarkup_get_element_stack as-is */
917   context->tag_stack = g_slist_concat (get_list_node (context, str->str), context->tag_stack);
918   context->tag_stack_gstr = g_slist_concat (get_list_node (context, str), context->tag_stack_gstr);
919   context->partial_chunk = NULL;
920 }
921
922 static void
923 pop_tag (GMarkupParseContext *context)
924 {
925   GSList *nodea, *nodeb;
926
927   nodea = context->tag_stack;
928   nodeb = context->tag_stack_gstr;
929   release_chunk (context, nodeb->data);
930   context->tag_stack = g_slist_remove_link (context->tag_stack, nodea);
931   context->tag_stack_gstr = g_slist_remove_link (context->tag_stack_gstr, nodeb);
932   free_list_node (context, nodea);
933   free_list_node (context, nodeb);
934 }
935
936 static void
937 possibly_finish_subparser (GMarkupParseContext *context)
938 {
939   if (current_element (context) == context->subparser_element)
940     pop_subparser_stack (context);
941 }
942
943 static void
944 ensure_no_outstanding_subparser (GMarkupParseContext *context)
945 {
946   if (context->awaiting_pop)
947     g_critical ("During the first end_element call after invoking a "
948                 "subparser you must pop the subparser stack and handle "
949                 "the freeing of the subparser user_data.  This can be "
950                 "done by calling the end function of the subparser.  "
951                 "Very probably, your program just leaked memory.");
952
953   /* let valgrind watch the pointer disappear... */
954   context->held_user_data = NULL;
955   context->awaiting_pop = FALSE;
956 }
957
958 static const gchar*
959 current_attribute (GMarkupParseContext *context)
960 {
961   g_assert (context->cur_attr >= 0);
962   return context->attr_names[context->cur_attr]->str;
963 }
964
965 static void
966 add_attribute (GMarkupParseContext *context, GString *str)
967 {
968   if (context->cur_attr + 2 >= context->alloc_attrs)
969     {
970       context->alloc_attrs += 5; /* silly magic number */
971       context->attr_names = g_realloc (context->attr_names, sizeof(GString*)*context->alloc_attrs);
972       context->attr_values = g_realloc (context->attr_values, sizeof(GString*)*context->alloc_attrs);
973     }
974   context->cur_attr++;
975   context->attr_names[context->cur_attr] = str;
976   context->attr_values[context->cur_attr] = NULL;
977   context->attr_names[context->cur_attr+1] = NULL;
978   context->attr_values[context->cur_attr+1] = NULL;
979 }
980
981 static void
982 clear_attributes (GMarkupParseContext *context)
983 {
984   /* Go ahead and free the attributes. */
985   for (; context->cur_attr >= 0; context->cur_attr--)
986     {
987       int pos = context->cur_attr;
988       release_chunk (context, context->attr_names[pos]);
989       release_chunk (context, context->attr_values[pos]);
990       context->attr_names[pos] = context->attr_values[pos] = NULL;
991     }
992   g_assert (context->cur_attr == -1);
993   g_assert (context->attr_names == NULL ||
994             context->attr_names[0] == NULL);
995   g_assert (context->attr_values == NULL ||
996             context->attr_values[0] == NULL);
997 }
998
999 /* This has to be a separate function to ensure the alloca's
1000  * are unwound on exit - otherwise we grow & blow the stack
1001  * with large documents
1002  */
1003 static inline void
1004 emit_start_element (GMarkupParseContext  *context,
1005                     GError              **error)
1006 {
1007   int i;
1008   const gchar *start_name;
1009   const gchar **attr_names;
1010   const gchar **attr_values;
1011   GError *tmp_error;
1012
1013   attr_names = g_newa (const gchar *, context->cur_attr + 2);
1014   attr_values = g_newa (const gchar *, context->cur_attr + 2);
1015   for (i = 0; i < context->cur_attr + 1; i++)
1016     {
1017       attr_names[i] = context->attr_names[i]->str;
1018       attr_values[i] = context->attr_values[i]->str;
1019     }
1020   attr_names[i] = NULL;
1021   attr_values[i] = NULL;
1022
1023   /* Call user callback for element start */
1024   tmp_error = NULL;
1025   start_name = current_element (context);
1026
1027   if (context->parser->start_element &&
1028       name_validate (context, start_name, error))
1029     (* context->parser->start_element) (context,
1030                                         start_name,
1031                                         (const gchar **)attr_names,
1032                                         (const gchar **)attr_values,
1033                                         context->user_data,
1034                                         &tmp_error);
1035   clear_attributes (context);
1036
1037   if (tmp_error != NULL)
1038     propagate_error (context, error, tmp_error);
1039 }
1040
1041 /**
1042  * g_markup_parse_context_parse:
1043  * @context: a #GMarkupParseContext
1044  * @text: chunk of text to parse
1045  * @text_len: length of @text in bytes
1046  * @error: return location for a #GError
1047  *
1048  * Feed some data to the #GMarkupParseContext.
1049  *
1050  * The data need not be valid UTF-8; an error will be signaled if
1051  * it's invalid. The data need not be an entire document; you can
1052  * feed a document into the parser incrementally, via multiple calls
1053  * to this function. Typically, as you receive data from a network
1054  * connection or file, you feed each received chunk of data into this
1055  * function, aborting the process if an error occurs. Once an error
1056  * is reported, no further data may be fed to the #GMarkupParseContext;
1057  * all errors are fatal.
1058  *
1059  * Return value: %FALSE if an error occurred, %TRUE on success
1060  */
1061 gboolean
1062 g_markup_parse_context_parse (GMarkupParseContext  *context,
1063                               const gchar          *text,
1064                               gssize                text_len,
1065                               GError              **error)
1066 {
1067   g_return_val_if_fail (context != NULL, FALSE);
1068   g_return_val_if_fail (text != NULL, FALSE);
1069   g_return_val_if_fail (context->state != STATE_ERROR, FALSE);
1070   g_return_val_if_fail (!context->parsing, FALSE);
1071
1072   if (text_len < 0)
1073     text_len = strlen (text);
1074
1075   if (text_len == 0)
1076     return TRUE;
1077
1078   context->parsing = TRUE;
1079
1080
1081   context->current_text = text;
1082   context->current_text_len = text_len;
1083   context->current_text_end = context->current_text + text_len;
1084   context->iter = context->current_text;
1085   context->start = context->iter;
1086
1087   while (context->iter != context->current_text_end)
1088     {
1089       switch (context->state)
1090         {
1091         case STATE_START:
1092           /* Possible next state: AFTER_OPEN_ANGLE */
1093
1094           g_assert (context->tag_stack == NULL);
1095
1096           /* whitespace is ignored outside of any elements */
1097           skip_spaces (context);
1098
1099           if (context->iter != context->current_text_end)
1100             {
1101               if (*context->iter == '<')
1102                 {
1103                   /* Move after the open angle */
1104                   advance_char (context);
1105
1106                   context->state = STATE_AFTER_OPEN_ANGLE;
1107
1108                   /* this could start a passthrough */
1109                   context->start = context->iter;
1110
1111                   /* document is now non-empty */
1112                   context->document_empty = FALSE;
1113                 }
1114               else
1115                 {
1116                   set_error_literal (context,
1117                                      error,
1118                                      G_MARKUP_ERROR_PARSE,
1119                                      _("Document must begin with an element (e.g. <book>)"));
1120                 }
1121             }
1122           break;
1123
1124         case STATE_AFTER_OPEN_ANGLE:
1125           /* Possible next states: INSIDE_OPEN_TAG_NAME,
1126            *  AFTER_CLOSE_TAG_SLASH, INSIDE_PASSTHROUGH
1127            */
1128           if (*context->iter == '?' ||
1129               *context->iter == '!')
1130             {
1131               /* include < in the passthrough */
1132               const gchar *openangle = "<";
1133               add_to_partial (context, openangle, openangle + 1);
1134               context->start = context->iter;
1135               context->balance = 1;
1136               context->state = STATE_INSIDE_PASSTHROUGH;
1137             }
1138           else if (*context->iter == '/')
1139             {
1140               /* move after it */
1141               advance_char (context);
1142
1143               context->state = STATE_AFTER_CLOSE_TAG_SLASH;
1144             }
1145           else if (!IS_COMMON_NAME_END_CHAR (*(context->iter)))
1146             {
1147               context->state = STATE_INSIDE_OPEN_TAG_NAME;
1148
1149               /* start of tag name */
1150               context->start = context->iter;
1151             }
1152           else
1153             {
1154               gchar buf[8];
1155
1156               set_error (context,
1157                          error,
1158                          G_MARKUP_ERROR_PARSE,
1159                          _("'%s' is not a valid character following "
1160                            "a '<' character; it may not begin an "
1161                            "element name"),
1162                          utf8_str (context->iter, buf));
1163             }
1164           break;
1165
1166           /* The AFTER_CLOSE_ANGLE state is actually sort of
1167            * broken, because it doesn't correspond to a range
1168            * of characters in the input stream as the others do,
1169            * and thus makes things harder to conceptualize
1170            */
1171         case STATE_AFTER_CLOSE_ANGLE:
1172           /* Possible next states: INSIDE_TEXT, STATE_START */
1173           if (context->tag_stack == NULL)
1174             {
1175               context->start = NULL;
1176               context->state = STATE_START;
1177             }
1178           else
1179             {
1180               context->start = context->iter;
1181               context->state = STATE_INSIDE_TEXT;
1182             }
1183           break;
1184
1185         case STATE_AFTER_ELISION_SLASH:
1186           /* Possible next state: AFTER_CLOSE_ANGLE */
1187
1188           {
1189             /* We need to pop the tag stack and call the end_element
1190              * function, since this is the close tag
1191              */
1192             GError *tmp_error = NULL;
1193
1194             g_assert (context->tag_stack != NULL);
1195
1196             possibly_finish_subparser (context);
1197
1198             tmp_error = NULL;
1199             if (context->parser->end_element)
1200               (* context->parser->end_element) (context,
1201                                                 current_element (context),
1202                                                 context->user_data,
1203                                                 &tmp_error);
1204
1205             ensure_no_outstanding_subparser (context);
1206
1207             if (tmp_error)
1208               {
1209                 mark_error (context, tmp_error);
1210                 g_propagate_error (error, tmp_error);
1211               }
1212             else
1213               {
1214                 if (*context->iter == '>')
1215                   {
1216                     /* move after the close angle */
1217                     advance_char (context);
1218                     context->state = STATE_AFTER_CLOSE_ANGLE;
1219                   }
1220                 else
1221                   {
1222                     gchar buf[8];
1223
1224                     set_error (context,
1225                                error,
1226                                G_MARKUP_ERROR_PARSE,
1227                                _("Odd character '%s', expected a '>' character "
1228                                  "to end the empty-element tag '%s'"),
1229                                utf8_str (context->iter, buf),
1230                                current_element (context));
1231                   }
1232               }
1233             pop_tag (context);
1234           }
1235           break;
1236
1237         case STATE_INSIDE_OPEN_TAG_NAME:
1238           /* Possible next states: BETWEEN_ATTRIBUTES */
1239
1240           /* if there's a partial chunk then it's the first part of the
1241            * tag name. If there's a context->start then it's the start
1242            * of the tag name in current_text, the partial chunk goes
1243            * before that start though.
1244            */
1245           advance_to_name_end (context);
1246
1247           if (context->iter == context->current_text_end)
1248             {
1249               /* The name hasn't necessarily ended. Merge with
1250                * partial chunk, leave state unchanged.
1251                */
1252               add_to_partial (context, context->start, context->iter);
1253             }
1254           else
1255             {
1256               /* The name has ended. Combine it with the partial chunk
1257                * if any; push it on the stack; enter next state.
1258                */
1259               add_to_partial (context, context->start, context->iter);
1260               push_partial_as_tag (context);
1261
1262               context->state = STATE_BETWEEN_ATTRIBUTES;
1263               context->start = NULL;
1264             }
1265           break;
1266
1267         case STATE_INSIDE_ATTRIBUTE_NAME:
1268           /* Possible next states: AFTER_ATTRIBUTE_NAME */
1269
1270           advance_to_name_end (context);
1271           add_to_partial (context, context->start, context->iter);
1272
1273           /* read the full name, if we enter the equals sign state
1274            * then add the attribute to the list (without the value),
1275            * otherwise store a partial chunk to be prepended later.
1276            */
1277           if (context->iter != context->current_text_end)
1278             context->state = STATE_AFTER_ATTRIBUTE_NAME;
1279           break;
1280
1281         case STATE_AFTER_ATTRIBUTE_NAME:
1282           /* Possible next states: AFTER_ATTRIBUTE_EQUALS_SIGN */
1283
1284           skip_spaces (context);
1285
1286           if (context->iter != context->current_text_end)
1287             {
1288               /* The name has ended. Combine it with the partial chunk
1289                * if any; push it on the stack; enter next state.
1290                */
1291               if (!name_validate (context, context->partial_chunk->str, error))
1292                 break;
1293
1294               add_attribute (context, context->partial_chunk);
1295
1296               context->partial_chunk = NULL;
1297               context->start = NULL;
1298
1299               if (*context->iter == '=')
1300                 {
1301                   advance_char (context);
1302                   context->state = STATE_AFTER_ATTRIBUTE_EQUALS_SIGN;
1303                 }
1304               else
1305                 {
1306                   gchar buf[8];
1307
1308                   set_error (context,
1309                              error,
1310                              G_MARKUP_ERROR_PARSE,
1311                              _("Odd character '%s', expected a '=' after "
1312                                "attribute name '%s' of element '%s'"),
1313                              utf8_str (context->iter, buf),
1314                              current_attribute (context),
1315                              current_element (context));
1316
1317                 }
1318             }
1319           break;
1320
1321         case STATE_BETWEEN_ATTRIBUTES:
1322           /* Possible next states: AFTER_CLOSE_ANGLE,
1323            * AFTER_ELISION_SLASH, INSIDE_ATTRIBUTE_NAME
1324            */
1325           skip_spaces (context);
1326
1327           if (context->iter != context->current_text_end)
1328             {
1329               if (*context->iter == '/')
1330                 {
1331                   advance_char (context);
1332                   context->state = STATE_AFTER_ELISION_SLASH;
1333                 }
1334               else if (*context->iter == '>')
1335                 {
1336                   advance_char (context);
1337                   context->state = STATE_AFTER_CLOSE_ANGLE;
1338                 }
1339               else if (!IS_COMMON_NAME_END_CHAR (*(context->iter)))
1340                 {
1341                   context->state = STATE_INSIDE_ATTRIBUTE_NAME;
1342                   /* start of attribute name */
1343                   context->start = context->iter;
1344                 }
1345               else
1346                 {
1347                   gchar buf[8];
1348
1349                   set_error (context,
1350                              error,
1351                              G_MARKUP_ERROR_PARSE,
1352                              _("Odd character '%s', expected a '>' or '/' "
1353                                "character to end the start tag of "
1354                                "element '%s', or optionally an attribute; "
1355                                "perhaps you used an invalid character in "
1356                                "an attribute name"),
1357                              utf8_str (context->iter, buf),
1358                              current_element (context));
1359                 }
1360
1361               /* If we're done with attributes, invoke
1362                * the start_element callback
1363                */
1364               if (context->state == STATE_AFTER_ELISION_SLASH ||
1365                   context->state == STATE_AFTER_CLOSE_ANGLE)
1366                 emit_start_element (context, error);
1367             }
1368           break;
1369
1370         case STATE_AFTER_ATTRIBUTE_EQUALS_SIGN:
1371           /* Possible next state: INSIDE_ATTRIBUTE_VALUE_[SQ/DQ] */
1372
1373           skip_spaces (context);
1374
1375           if (context->iter != context->current_text_end)
1376             {
1377               if (*context->iter == '"')
1378                 {
1379                   advance_char (context);
1380                   context->state = STATE_INSIDE_ATTRIBUTE_VALUE_DQ;
1381                   context->start = context->iter;
1382                 }
1383               else if (*context->iter == '\'')
1384                 {
1385                   advance_char (context);
1386                   context->state = STATE_INSIDE_ATTRIBUTE_VALUE_SQ;
1387                   context->start = context->iter;
1388                 }
1389               else
1390                 {
1391                   gchar buf[8];
1392
1393                   set_error (context,
1394                              error,
1395                              G_MARKUP_ERROR_PARSE,
1396                              _("Odd character '%s', expected an open quote mark "
1397                                "after the equals sign when giving value for "
1398                                "attribute '%s' of element '%s'"),
1399                              utf8_str (context->iter, buf),
1400                              current_attribute (context),
1401                              current_element (context));
1402                 }
1403             }
1404           break;
1405
1406         case STATE_INSIDE_ATTRIBUTE_VALUE_SQ:
1407         case STATE_INSIDE_ATTRIBUTE_VALUE_DQ:
1408           /* Possible next states: BETWEEN_ATTRIBUTES */
1409           {
1410             gchar delim;
1411
1412             if (context->state == STATE_INSIDE_ATTRIBUTE_VALUE_SQ)
1413               {
1414                 delim = '\'';
1415               }
1416             else
1417               {
1418                 delim = '"';
1419               }
1420
1421             do
1422               {
1423                 if (*context->iter == delim)
1424                   break;
1425               }
1426             while (advance_char (context));
1427           }
1428           if (context->iter == context->current_text_end)
1429             {
1430               /* The value hasn't necessarily ended. Merge with
1431                * partial chunk, leave state unchanged.
1432                */
1433               add_to_partial (context, context->start, context->iter);
1434             }
1435           else
1436             {
1437               gboolean is_ascii;
1438               /* The value has ended at the quote mark. Combine it
1439                * with the partial chunk if any; set it for the current
1440                * attribute.
1441                */
1442               add_to_partial (context, context->start, context->iter);
1443
1444               g_assert (context->cur_attr >= 0);
1445
1446               if (unescape_gstring_inplace (context, context->partial_chunk, &is_ascii, error) &&
1447                   (is_ascii || text_validate (context, context->partial_chunk->str,
1448                                               context->partial_chunk->len, error)))
1449                 {
1450                   /* success, advance past quote and set state. */
1451                   context->attr_values[context->cur_attr] = context->partial_chunk;
1452                   context->partial_chunk = NULL;
1453                   advance_char (context);
1454                   context->state = STATE_BETWEEN_ATTRIBUTES;
1455                   context->start = NULL;
1456                 }
1457
1458               truncate_partial (context);
1459             }
1460           break;
1461
1462         case STATE_INSIDE_TEXT:
1463           /* Possible next states: AFTER_OPEN_ANGLE */
1464           do
1465             {
1466               if (*context->iter == '<')
1467                 break;
1468             }
1469           while (advance_char (context));
1470
1471           /* The text hasn't necessarily ended. Merge with
1472            * partial chunk, leave state unchanged.
1473            */
1474
1475           add_to_partial (context, context->start, context->iter);
1476
1477           if (context->iter != context->current_text_end)
1478             {
1479               gboolean is_ascii;
1480
1481               /* The text has ended at the open angle. Call the text
1482                * callback.
1483                */
1484               if (unescape_gstring_inplace (context, context->partial_chunk, &is_ascii, error) &&
1485                   (is_ascii || text_validate (context, context->partial_chunk->str,
1486                                               context->partial_chunk->len, error)))
1487                 {
1488                   GError *tmp_error = NULL;
1489
1490                   if (context->parser->text)
1491                     (*context->parser->text) (context,
1492                                               context->partial_chunk->str,
1493                                               context->partial_chunk->len,
1494                                               context->user_data,
1495                                               &tmp_error);
1496
1497                   if (tmp_error == NULL)
1498                     {
1499                       /* advance past open angle and set state. */
1500                       advance_char (context);
1501                       context->state = STATE_AFTER_OPEN_ANGLE;
1502                       /* could begin a passthrough */
1503                       context->start = context->iter;
1504                     }
1505                   else
1506                     propagate_error (context, error, tmp_error);
1507                 }
1508
1509               truncate_partial (context);
1510             }
1511           break;
1512
1513         case STATE_AFTER_CLOSE_TAG_SLASH:
1514           /* Possible next state: INSIDE_CLOSE_TAG_NAME */
1515           if (!IS_COMMON_NAME_END_CHAR (*(context->iter)))
1516             {
1517               context->state = STATE_INSIDE_CLOSE_TAG_NAME;
1518
1519               /* start of tag name */
1520               context->start = context->iter;
1521             }
1522           else
1523             {
1524               gchar buf[8];
1525
1526               set_error (context,
1527                          error,
1528                          G_MARKUP_ERROR_PARSE,
1529                          _("'%s' is not a valid character following "
1530                            "the characters '</'; '%s' may not begin an "
1531                            "element name"),
1532                          utf8_str (context->iter, buf),
1533                          utf8_str (context->iter, buf));
1534             }
1535           break;
1536
1537         case STATE_INSIDE_CLOSE_TAG_NAME:
1538           /* Possible next state: AFTER_CLOSE_TAG_NAME */
1539           advance_to_name_end (context);
1540           add_to_partial (context, context->start, context->iter);
1541
1542           if (context->iter != context->current_text_end)
1543             context->state = STATE_AFTER_CLOSE_TAG_NAME;
1544           break;
1545
1546         case STATE_AFTER_CLOSE_TAG_NAME:
1547           /* Possible next state: AFTER_CLOSE_TAG_SLASH */
1548
1549           skip_spaces (context);
1550
1551           if (context->iter != context->current_text_end)
1552             {
1553               GString *close_name;
1554
1555               close_name = context->partial_chunk;
1556               context->partial_chunk = NULL;
1557
1558               if (*context->iter != '>')
1559                 {
1560                   gchar buf[8];
1561
1562                   set_error (context,
1563                              error,
1564                              G_MARKUP_ERROR_PARSE,
1565                              _("'%s' is not a valid character following "
1566                                "the close element name '%s'; the allowed "
1567                                "character is '>'"),
1568                              utf8_str (context->iter, buf),
1569                              close_name->str);
1570                 }
1571               else if (context->tag_stack == NULL)
1572                 {
1573                   set_error (context,
1574                              error,
1575                              G_MARKUP_ERROR_PARSE,
1576                              _("Element '%s' was closed, no element "
1577                                "is currently open"),
1578                              close_name->str);
1579                 }
1580               else if (strcmp (close_name->str, current_element (context)) != 0)
1581                 {
1582                   set_error (context,
1583                              error,
1584                              G_MARKUP_ERROR_PARSE,
1585                              _("Element '%s' was closed, but the currently "
1586                                "open element is '%s'"),
1587                              close_name->str,
1588                              current_element (context));
1589                 }
1590               else
1591                 {
1592                   GError *tmp_error;
1593                   advance_char (context);
1594                   context->state = STATE_AFTER_CLOSE_ANGLE;
1595                   context->start = NULL;
1596
1597                   possibly_finish_subparser (context);
1598
1599                   /* call the end_element callback */
1600                   tmp_error = NULL;
1601                   if (context->parser->end_element)
1602                     (* context->parser->end_element) (context,
1603                                                       close_name->str,
1604                                                       context->user_data,
1605                                                       &tmp_error);
1606
1607                   ensure_no_outstanding_subparser (context);
1608                   pop_tag (context);
1609
1610                   if (tmp_error)
1611                     propagate_error (context, error, tmp_error);
1612                 }
1613               context->partial_chunk = close_name;
1614               truncate_partial (context);
1615             }
1616           break;
1617
1618         case STATE_INSIDE_PASSTHROUGH:
1619           /* Possible next state: AFTER_CLOSE_ANGLE */
1620           do
1621             {
1622               if (*context->iter == '<')
1623                 context->balance++;
1624               if (*context->iter == '>')
1625                 {
1626                   gchar *str;
1627                   gsize len;
1628
1629                   context->balance--;
1630                   add_to_partial (context, context->start, context->iter);
1631                   context->start = context->iter;
1632
1633                   str = context->partial_chunk->str;
1634                   len = context->partial_chunk->len;
1635
1636                   if (str[1] == '?' && str[len - 1] == '?')
1637                     break;
1638                   if (strncmp (str, "<!--", 4) == 0 &&
1639                       strcmp (str + len - 2, "--") == 0)
1640                     break;
1641                   if (strncmp (str, "<![CDATA[", 9) == 0 &&
1642                       strcmp (str + len - 2, "]]") == 0)
1643                     break;
1644                   if (strncmp (str, "<!DOCTYPE", 9) == 0 &&
1645                       context->balance == 0)
1646                     break;
1647                 }
1648             }
1649           while (advance_char (context));
1650
1651           if (context->iter == context->current_text_end)
1652             {
1653               /* The passthrough hasn't necessarily ended. Merge with
1654                * partial chunk, leave state unchanged.
1655                */
1656                add_to_partial (context, context->start, context->iter);
1657             }
1658           else
1659             {
1660               /* The passthrough has ended at the close angle. Combine
1661                * it with the partial chunk if any. Call the passthrough
1662                * callback. Note that the open/close angles are
1663                * included in the text of the passthrough.
1664                */
1665               GError *tmp_error = NULL;
1666
1667               advance_char (context); /* advance past close angle */
1668               add_to_partial (context, context->start, context->iter);
1669
1670               if (context->flags & G_MARKUP_TREAT_CDATA_AS_TEXT &&
1671                   strncmp (context->partial_chunk->str, "<![CDATA[", 9) == 0)
1672                 {
1673                   if (context->parser->text &&
1674                       text_validate (context,
1675                                      context->partial_chunk->str + 9,
1676                                      context->partial_chunk->len - 12,
1677                                      error))
1678                     (*context->parser->text) (context,
1679                                               context->partial_chunk->str + 9,
1680                                               context->partial_chunk->len - 12,
1681                                               context->user_data,
1682                                               &tmp_error);
1683                 }
1684               else if (context->parser->passthrough &&
1685                        text_validate (context,
1686                                       context->partial_chunk->str,
1687                                       context->partial_chunk->len,
1688                                       error))
1689                 (*context->parser->passthrough) (context,
1690                                                  context->partial_chunk->str,
1691                                                  context->partial_chunk->len,
1692                                                  context->user_data,
1693                                                  &tmp_error);
1694
1695               truncate_partial (context);
1696
1697               if (tmp_error == NULL)
1698                 {
1699                   context->state = STATE_AFTER_CLOSE_ANGLE;
1700                   context->start = context->iter; /* could begin text */
1701                 }
1702               else
1703                 propagate_error (context, error, tmp_error);
1704             }
1705           break;
1706
1707         case STATE_ERROR:
1708           goto finished;
1709           break;
1710
1711         default:
1712           g_assert_not_reached ();
1713           break;
1714         }
1715     }
1716
1717  finished:
1718   context->parsing = FALSE;
1719
1720   return context->state != STATE_ERROR;
1721 }
1722
1723 /**
1724  * g_markup_parse_context_end_parse:
1725  * @context: a #GMarkupParseContext
1726  * @error: return location for a #GError
1727  *
1728  * Signals to the #GMarkupParseContext that all data has been
1729  * fed into the parse context with g_markup_parse_context_parse().
1730  *
1731  * This function reports an error if the document isn't complete,
1732  * for example if elements are still open.
1733  *
1734  * Return value: %TRUE on success, %FALSE if an error was set
1735  */
1736 gboolean
1737 g_markup_parse_context_end_parse (GMarkupParseContext  *context,
1738                                   GError              **error)
1739 {
1740   g_return_val_if_fail (context != NULL, FALSE);
1741   g_return_val_if_fail (!context->parsing, FALSE);
1742   g_return_val_if_fail (context->state != STATE_ERROR, FALSE);
1743
1744   if (context->partial_chunk != NULL)
1745     {
1746       g_string_free (context->partial_chunk, TRUE);
1747       context->partial_chunk = NULL;
1748     }
1749
1750   if (context->document_empty)
1751     {
1752       set_error_literal (context, error, G_MARKUP_ERROR_EMPTY,
1753                          _("Document was empty or contained only whitespace"));
1754       return FALSE;
1755     }
1756
1757   context->parsing = TRUE;
1758
1759   switch (context->state)
1760     {
1761     case STATE_START:
1762       /* Nothing to do */
1763       break;
1764
1765     case STATE_AFTER_OPEN_ANGLE:
1766       set_error_literal (context, error, G_MARKUP_ERROR_PARSE,
1767                          _("Document ended unexpectedly just after an open angle bracket '<'"));
1768       break;
1769
1770     case STATE_AFTER_CLOSE_ANGLE:
1771       if (context->tag_stack != NULL)
1772         {
1773           /* Error message the same as for INSIDE_TEXT */
1774           set_error (context, error, G_MARKUP_ERROR_PARSE,
1775                      _("Document ended unexpectedly with elements still open - "
1776                        "'%s' was the last element opened"),
1777                      current_element (context));
1778         }
1779       break;
1780
1781     case STATE_AFTER_ELISION_SLASH:
1782       set_error (context, error, G_MARKUP_ERROR_PARSE,
1783                  _("Document ended unexpectedly, expected to see a close angle "
1784                    "bracket ending the tag <%s/>"), current_element (context));
1785       break;
1786
1787     case STATE_INSIDE_OPEN_TAG_NAME:
1788       set_error_literal (context, error, G_MARKUP_ERROR_PARSE,
1789                          _("Document ended unexpectedly inside an element name"));
1790       break;
1791
1792     case STATE_INSIDE_ATTRIBUTE_NAME:
1793     case STATE_AFTER_ATTRIBUTE_NAME:
1794       set_error_literal (context, error, G_MARKUP_ERROR_PARSE,
1795                          _("Document ended unexpectedly inside an attribute name"));
1796       break;
1797
1798     case STATE_BETWEEN_ATTRIBUTES:
1799       set_error_literal (context, error, G_MARKUP_ERROR_PARSE,
1800                          _("Document ended unexpectedly inside an element-opening "
1801                            "tag."));
1802       break;
1803
1804     case STATE_AFTER_ATTRIBUTE_EQUALS_SIGN:
1805       set_error_literal (context, error, G_MARKUP_ERROR_PARSE,
1806                          _("Document ended unexpectedly after the equals sign "
1807                            "following an attribute name; no attribute value"));
1808       break;
1809
1810     case STATE_INSIDE_ATTRIBUTE_VALUE_SQ:
1811     case STATE_INSIDE_ATTRIBUTE_VALUE_DQ:
1812       set_error_literal (context, error, G_MARKUP_ERROR_PARSE,
1813                          _("Document ended unexpectedly while inside an attribute "
1814                            "value"));
1815       break;
1816
1817     case STATE_INSIDE_TEXT:
1818       g_assert (context->tag_stack != NULL);
1819       set_error (context, error, G_MARKUP_ERROR_PARSE,
1820                  _("Document ended unexpectedly with elements still open - "
1821                    "'%s' was the last element opened"),
1822                  current_element (context));
1823       break;
1824
1825     case STATE_AFTER_CLOSE_TAG_SLASH:
1826     case STATE_INSIDE_CLOSE_TAG_NAME:
1827     case STATE_AFTER_CLOSE_TAG_NAME:
1828       set_error (context, error, G_MARKUP_ERROR_PARSE,
1829                  _("Document ended unexpectedly inside the close tag for "
1830                    "element '%s'"), current_element (context));
1831       break;
1832
1833     case STATE_INSIDE_PASSTHROUGH:
1834       set_error_literal (context, error, G_MARKUP_ERROR_PARSE,
1835                          _("Document ended unexpectedly inside a comment or "
1836                            "processing instruction"));
1837       break;
1838
1839     case STATE_ERROR:
1840     default:
1841       g_assert_not_reached ();
1842       break;
1843     }
1844
1845   context->parsing = FALSE;
1846
1847   return context->state != STATE_ERROR;
1848 }
1849
1850 /**
1851  * g_markup_parse_context_get_element:
1852  * @context: a #GMarkupParseContext
1853  *
1854  * Retrieves the name of the currently open element.
1855  *
1856  * If called from the start_element or end_element handlers this will
1857  * give the element_name as passed to those functions. For the parent
1858  * elements, see g_markup_parse_context_get_element_stack().
1859  *
1860  * Returns: the name of the currently open element, or %NULL
1861  *
1862  * Since: 2.2
1863  */
1864 const gchar *
1865 g_markup_parse_context_get_element (GMarkupParseContext *context)
1866 {
1867   g_return_val_if_fail (context != NULL, NULL);
1868
1869   if (context->tag_stack == NULL)
1870     return NULL;
1871   else
1872     return current_element (context);
1873 }
1874
1875 /**
1876  * g_markup_parse_context_get_element_stack:
1877  * @context: a #GMarkupParseContext
1878  *
1879  * Retrieves the element stack from the internal state of the parser.
1880  *
1881  * The returned #GSList is a list of strings where the first item is
1882  * the currently open tag (as would be returned by
1883  * g_markup_parse_context_get_element()) and the next item is its
1884  * immediate parent.
1885  *
1886  * This function is intended to be used in the start_element and
1887  * end_element handlers where g_markup_parse_context_get_element()
1888  * would merely return the name of the element that is being
1889  * processed.
1890  *
1891  * Returns: the element stack, which must not be modified
1892  *
1893  * Since: 2.16
1894  */
1895 const GSList *
1896 g_markup_parse_context_get_element_stack (GMarkupParseContext *context)
1897 {
1898   g_return_val_if_fail (context != NULL, NULL);
1899   return context->tag_stack;
1900 }
1901
1902 /**
1903  * g_markup_parse_context_get_position:
1904  * @context: a #GMarkupParseContext
1905  * @line_number: (allow-none): return location for a line number, or %NULL
1906  * @char_number: (allow-none): return location for a char-on-line number, or %NULL
1907  *
1908  * Retrieves the current line number and the number of the character on
1909  * that line. Intended for use in error messages; there are no strict
1910  * semantics for what constitutes the "current" line number other than
1911  * "the best number we could come up with for error messages."
1912  */
1913 void
1914 g_markup_parse_context_get_position (GMarkupParseContext *context,
1915                                      gint                *line_number,
1916                                      gint                *char_number)
1917 {
1918   g_return_if_fail (context != NULL);
1919
1920   if (line_number)
1921     *line_number = context->line_number;
1922
1923   if (char_number)
1924     *char_number = context->char_number;
1925 }
1926
1927 /**
1928  * g_markup_parse_context_get_user_data:
1929  * @context: a #GMarkupParseContext
1930  *
1931  * Returns the user_data associated with @context.
1932  *
1933  * This will either be the user_data that was provided to
1934  * g_markup_parse_context_new() or to the most recent call
1935  * of g_markup_parse_context_push().
1936  *
1937  * Returns: the provided user_data. The returned data belongs to
1938  *     the markup context and will be freed when
1939  *     g_markup_parse_context_free() is called.
1940  *
1941  * Since: 2.18
1942  */
1943 gpointer
1944 g_markup_parse_context_get_user_data (GMarkupParseContext *context)
1945 {
1946   return context->user_data;
1947 }
1948
1949 /**
1950  * g_markup_parse_context_push:
1951  * @context: a #GMarkupParseContext
1952  * @parser: a #GMarkupParser
1953  * @user_data: user data to pass to #GMarkupParser functions
1954  *
1955  * Temporarily redirects markup data to a sub-parser.
1956  *
1957  * This function may only be called from the start_element handler of
1958  * a #GMarkupParser. It must be matched with a corresponding call to
1959  * g_markup_parse_context_pop() in the matching end_element handler
1960  * (except in the case that the parser aborts due to an error).
1961  *
1962  * All tags, text and other data between the matching tags is
1963  * redirected to the subparser given by @parser. @user_data is used
1964  * as the user_data for that parser. @user_data is also passed to the
1965  * error callback in the event that an error occurs. This includes
1966  * errors that occur in subparsers of the subparser.
1967  *
1968  * The end tag matching the start tag for which this call was made is
1969  * handled by the previous parser (which is given its own user_data)
1970  * which is why g_markup_parse_context_pop() is provided to allow "one
1971  * last access" to the @user_data provided to this function. In the
1972  * case of error, the @user_data provided here is passed directly to
1973  * the error callback of the subparser and g_markup_parse_context_pop()
1974  * should not be called. In either case, if @user_data was allocated
1975  * then it ought to be freed from both of these locations.
1976  *
1977  * This function is not intended to be directly called by users
1978  * interested in invoking subparsers. Instead, it is intended to be
1979  * used by the subparsers themselves to implement a higher-level
1980  * interface.
1981  *
1982  * As an example, see the following implementation of a simple
1983  * parser that counts the number of tags encountered.
1984  *
1985  * |[
1986  * typedef struct
1987  * {
1988  *   gint tag_count;
1989  * } CounterData;
1990  *
1991  * static void
1992  * counter_start_element (GMarkupParseContext  *context,
1993  *                        const gchar          *element_name,
1994  *                        const gchar         **attribute_names,
1995  *                        const gchar         **attribute_values,
1996  *                        gpointer              user_data,
1997  *                        GError              **error)
1998  * {
1999  *   CounterData *data = user_data;
2000  *
2001  *   data->tag_count++;
2002  * }
2003  *
2004  * static void
2005  * counter_error (GMarkupParseContext *context,
2006  *                GError              *error,
2007  *                gpointer             user_data)
2008  * {
2009  *   CounterData *data = user_data;
2010  *
2011  *   g_slice_free (CounterData, data);
2012  * }
2013  *
2014  * static GMarkupParser counter_subparser =
2015  * {
2016  *   counter_start_element,
2017  *   NULL,
2018  *   NULL,
2019  *   NULL,
2020  *   counter_error
2021  * };
2022  * ]|
2023  *
2024  * In order to allow this parser to be easily used as a subparser, the
2025  * following interface is provided:
2026  *
2027  * |[
2028  * void
2029  * start_counting (GMarkupParseContext *context)
2030  * {
2031  *   CounterData *data = g_slice_new (CounterData);
2032  *
2033  *   data->tag_count = 0;
2034  *   g_markup_parse_context_push (context, &counter_subparser, data);
2035  * }
2036  *
2037  * gint
2038  * end_counting (GMarkupParseContext *context)
2039  * {
2040  *   CounterData *data = g_markup_parse_context_pop (context);
2041  *   int result;
2042  *
2043  *   result = data->tag_count;
2044  *   g_slice_free (CounterData, data);
2045  *
2046  *   return result;
2047  * }
2048  * ]|
2049  *
2050  * The subparser would then be used as follows:
2051  *
2052  * |[
2053  * static void start_element (context, element_name, ...)
2054  * {
2055  *   if (strcmp (element_name, "count-these") == 0)
2056  *     start_counting (context);
2057  *
2058  *   /&ast; else, handle other tags... &ast;/
2059  * }
2060  *
2061  * static void end_element (context, element_name, ...)
2062  * {
2063  *   if (strcmp (element_name, "count-these") == 0)
2064  *     g_print ("Counted %d tags\n", end_counting (context));
2065  *
2066  *   /&ast; else, handle other tags... &ast;/
2067  * }
2068  * ]|
2069  *
2070  * Since: 2.18
2071  **/
2072 void
2073 g_markup_parse_context_push (GMarkupParseContext *context,
2074                              const GMarkupParser *parser,
2075                              gpointer             user_data)
2076 {
2077   GMarkupRecursionTracker *tracker;
2078
2079   tracker = g_slice_new (GMarkupRecursionTracker);
2080   tracker->prev_element = context->subparser_element;
2081   tracker->prev_parser = context->parser;
2082   tracker->prev_user_data = context->user_data;
2083
2084   context->subparser_element = current_element (context);
2085   context->parser = parser;
2086   context->user_data = user_data;
2087
2088   context->subparser_stack = g_slist_prepend (context->subparser_stack,
2089                                               tracker);
2090 }
2091
2092 /**
2093  * g_markup_parse_context_pop:
2094  * @context: a #GMarkupParseContext
2095  *
2096  * Completes the process of a temporary sub-parser redirection.
2097  *
2098  * This function exists to collect the user_data allocated by a
2099  * matching call to g_markup_parse_context_push(). It must be called
2100  * in the end_element handler corresponding to the start_element
2101  * handler during which g_markup_parse_context_push() was called.
2102  * You must not call this function from the error callback -- the
2103  * @user_data is provided directly to the callback in that case.
2104  *
2105  * This function is not intended to be directly called by users
2106  * interested in invoking subparsers. Instead, it is intended to
2107  * be used by the subparsers themselves to implement a higher-level
2108  * interface.
2109  *
2110  * Returns: the user data passed to g_markup_parse_context_push()
2111  *
2112  * Since: 2.18
2113  */
2114 gpointer
2115 g_markup_parse_context_pop (GMarkupParseContext *context)
2116 {
2117   gpointer user_data;
2118
2119   if (!context->awaiting_pop)
2120     possibly_finish_subparser (context);
2121
2122   g_assert (context->awaiting_pop);
2123
2124   context->awaiting_pop = FALSE;
2125
2126   /* valgrind friendliness */
2127   user_data = context->held_user_data;
2128   context->held_user_data = NULL;
2129
2130   return user_data;
2131 }
2132
2133 static void
2134 append_escaped_text (GString     *str,
2135                      const gchar *text,
2136                      gssize       length)
2137 {
2138   const gchar *p;
2139   const gchar *end;
2140   gunichar c;
2141
2142   p = text;
2143   end = text + length;
2144
2145   while (p != end)
2146     {
2147       const gchar *next;
2148       next = g_utf8_next_char (p);
2149
2150       switch (*p)
2151         {
2152         case '&':
2153           g_string_append (str, "&amp;");
2154           break;
2155
2156         case '<':
2157           g_string_append (str, "&lt;");
2158           break;
2159
2160         case '>':
2161           g_string_append (str, "&gt;");
2162           break;
2163
2164         case '\'':
2165           g_string_append (str, "&apos;");
2166           break;
2167
2168         case '"':
2169           g_string_append (str, "&quot;");
2170           break;
2171
2172         default:
2173           c = g_utf8_get_char (p);
2174           if ((0x1 <= c && c <= 0x8) ||
2175               (0xb <= c && c  <= 0xc) ||
2176               (0xe <= c && c <= 0x1f) ||
2177               (0x7f <= c && c <= 0x84) ||
2178               (0x86 <= c && c <= 0x9f))
2179             g_string_append_printf (str, "&#x%x;", c);
2180           else
2181             g_string_append_len (str, p, next - p);
2182           break;
2183         }
2184
2185       p = next;
2186     }
2187 }
2188
2189 /**
2190  * g_markup_escape_text:
2191  * @text: some valid UTF-8 text
2192  * @length: length of @text in bytes, or -1 if the text is nul-terminated
2193  *
2194  * Escapes text so that the markup parser will parse it verbatim.
2195  * Less than, greater than, ampersand, etc. are replaced with the
2196  * corresponding entities. This function would typically be used
2197  * when writing out a file to be parsed with the markup parser.
2198  *
2199  * Note that this function doesn't protect whitespace and line endings
2200  * from being processed according to the XML rules for normalization
2201  * of line endings and attribute values.
2202  *
2203  * Note also that this function will produce character references in
2204  * the range of &amp;#x1; ... &amp;#x1f; for all control sequences
2205  * except for tabstop, newline and carriage return.  The character
2206  * references in this range are not valid XML 1.0, but they are
2207  * valid XML 1.1 and will be accepted by the GMarkup parser.
2208  *
2209  * Return value: a newly allocated string with the escaped text
2210  */
2211 gchar*
2212 g_markup_escape_text (const gchar *text,
2213                       gssize       length)
2214 {
2215   GString *str;
2216
2217   g_return_val_if_fail (text != NULL, NULL);
2218
2219   if (length < 0)
2220     length = strlen (text);
2221
2222   /* prealloc at least as long as original text */
2223   str = g_string_sized_new (length);
2224   append_escaped_text (str, text, length);
2225
2226   return g_string_free (str, FALSE);
2227 }
2228
2229 /*
2230  * find_conversion:
2231  * @format: a printf-style format string
2232  * @after: location to store a pointer to the character after
2233  *     the returned conversion. On a %NULL return, returns the
2234  *     pointer to the trailing NUL in the string
2235  *
2236  * Find the next conversion in a printf-style format string.
2237  * Partially based on code from printf-parser.c,
2238  * Copyright (C) 1999-2000, 2002-2003 Free Software Foundation, Inc.
2239  *
2240  * Return value: pointer to the next conversion in @format,
2241  *  or %NULL, if none.
2242  */
2243 static const char *
2244 find_conversion (const char  *format,
2245                  const char **after)
2246 {
2247   const char *start = format;
2248   const char *cp;
2249
2250   while (*start != '\0' && *start != '%')
2251     start++;
2252
2253   if (*start == '\0')
2254     {
2255       *after = start;
2256       return NULL;
2257     }
2258
2259   cp = start + 1;
2260
2261   if (*cp == '\0')
2262     {
2263       *after = cp;
2264       return NULL;
2265     }
2266
2267   /* Test for positional argument.  */
2268   if (*cp >= '0' && *cp <= '9')
2269     {
2270       const char *np;
2271
2272       for (np = cp; *np >= '0' && *np <= '9'; np++)
2273         ;
2274       if (*np == '$')
2275         cp = np + 1;
2276     }
2277
2278   /* Skip the flags.  */
2279   for (;;)
2280     {
2281       if (*cp == '\'' ||
2282           *cp == '-' ||
2283           *cp == '+' ||
2284           *cp == ' ' ||
2285           *cp == '#' ||
2286           *cp == '0')
2287         cp++;
2288       else
2289         break;
2290     }
2291
2292   /* Skip the field width.  */
2293   if (*cp == '*')
2294     {
2295       cp++;
2296
2297       /* Test for positional argument.  */
2298       if (*cp >= '0' && *cp <= '9')
2299         {
2300           const char *np;
2301
2302           for (np = cp; *np >= '0' && *np <= '9'; np++)
2303             ;
2304           if (*np == '$')
2305             cp = np + 1;
2306         }
2307     }
2308   else
2309     {
2310       for (; *cp >= '0' && *cp <= '9'; cp++)
2311         ;
2312     }
2313
2314   /* Skip the precision.  */
2315   if (*cp == '.')
2316     {
2317       cp++;
2318       if (*cp == '*')
2319         {
2320           /* Test for positional argument.  */
2321           if (*cp >= '0' && *cp <= '9')
2322             {
2323               const char *np;
2324
2325               for (np = cp; *np >= '0' && *np <= '9'; np++)
2326                 ;
2327               if (*np == '$')
2328                 cp = np + 1;
2329             }
2330         }
2331       else
2332         {
2333           for (; *cp >= '0' && *cp <= '9'; cp++)
2334             ;
2335         }
2336     }
2337
2338   /* Skip argument type/size specifiers.  */
2339   while (*cp == 'h' ||
2340          *cp == 'L' ||
2341          *cp == 'l' ||
2342          *cp == 'j' ||
2343          *cp == 'z' ||
2344          *cp == 'Z' ||
2345          *cp == 't')
2346     cp++;
2347
2348   /* Skip the conversion character.  */
2349   cp++;
2350
2351   *after = cp;
2352   return start;
2353 }
2354
2355 /**
2356  * g_markup_vprintf_escaped:
2357  * @format: printf() style format string
2358  * @args: variable argument list, similar to vprintf()
2359  *
2360  * Formats the data in @args according to @format, escaping
2361  * all string and character arguments in the fashion
2362  * of g_markup_escape_text(). See g_markup_printf_escaped().
2363  *
2364  * Return value: newly allocated result from formatting
2365  *  operation. Free with g_free().
2366  *
2367  * Since: 2.4
2368  */
2369 #pragma GCC diagnostic push
2370 #pragma GCC diagnostic ignored "-Wformat-nonliteral"
2371
2372 gchar *
2373 g_markup_vprintf_escaped (const gchar *format,
2374                           va_list      args)
2375 {
2376   GString *format1;
2377   GString *format2;
2378   GString *result = NULL;
2379   gchar *output1 = NULL;
2380   gchar *output2 = NULL;
2381   const char *p, *op1, *op2;
2382   va_list args2;
2383
2384   /* The technique here, is that we make two format strings that
2385    * have the identical conversions in the identical order to the
2386    * original strings, but differ in the text in-between. We
2387    * then use the normal g_strdup_vprintf() to format the arguments
2388    * with the two new format strings. By comparing the results,
2389    * we can figure out what segments of the output come from
2390    * the original format string, and what from the arguments,
2391    * and thus know what portions of the string to escape.
2392    *
2393    * For instance, for:
2394    *
2395    *  g_markup_printf_escaped ("%s ate %d apples", "Susan & Fred", 5);
2396    *
2397    * We form the two format strings "%sX%dX" and %sY%sY". The results
2398    * of formatting with those two strings are
2399    *
2400    * "%sX%dX" => "Susan & FredX5X"
2401    * "%sY%dY" => "Susan & FredY5Y"
2402    *
2403    * To find the span of the first argument, we find the first position
2404    * where the two arguments differ, which tells us that the first
2405    * argument formatted to "Susan & Fred". We then escape that
2406    * to "Susan &amp; Fred" and join up with the intermediate portions
2407    * of the format string and the second argument to get
2408    * "Susan &amp; Fred ate 5 apples".
2409    */
2410
2411   /* Create the two modified format strings
2412    */
2413   format1 = g_string_new (NULL);
2414   format2 = g_string_new (NULL);
2415   p = format;
2416   while (TRUE)
2417     {
2418       const char *after;
2419       const char *conv = find_conversion (p, &after);
2420       if (!conv)
2421         break;
2422
2423       g_string_append_len (format1, conv, after - conv);
2424       g_string_append_c (format1, 'X');
2425       g_string_append_len (format2, conv, after - conv);
2426       g_string_append_c (format2, 'Y');
2427
2428       p = after;
2429     }
2430
2431   /* Use them to format the arguments
2432    */
2433   G_VA_COPY (args2, args);
2434
2435   output1 = g_strdup_vprintf (format1->str, args);
2436
2437   if (!output1)
2438     {
2439       va_end (args2);
2440       goto cleanup;
2441     }
2442
2443   output2 = g_strdup_vprintf (format2->str, args2);
2444   va_end (args2);
2445   if (!output2)
2446     goto cleanup;
2447   result = g_string_new (NULL);
2448
2449   /* Iterate through the original format string again,
2450    * copying the non-conversion portions and the escaped
2451    * converted arguments to the output string.
2452    */
2453   op1 = output1;
2454   op2 = output2;
2455   p = format;
2456   while (TRUE)
2457     {
2458       const char *after;
2459       const char *output_start;
2460       const char *conv = find_conversion (p, &after);
2461       char *escaped;
2462
2463       if (!conv)        /* The end, after points to the trailing \0 */
2464         {
2465           g_string_append_len (result, p, after - p);
2466           break;
2467         }
2468
2469       g_string_append_len (result, p, conv - p);
2470       output_start = op1;
2471       while (*op1 == *op2)
2472         {
2473           op1++;
2474           op2++;
2475         }
2476
2477       escaped = g_markup_escape_text (output_start, op1 - output_start);
2478       g_string_append (result, escaped);
2479       g_free (escaped);
2480
2481       p = after;
2482       op1++;
2483       op2++;
2484     }
2485
2486  cleanup:
2487   g_string_free (format1, TRUE);
2488   g_string_free (format2, TRUE);
2489   g_free (output1);
2490   g_free (output2);
2491
2492   if (result)
2493     return g_string_free (result, FALSE);
2494   else
2495     return NULL;
2496 }
2497
2498 #pragma GCC diagnostic pop
2499
2500 /**
2501  * g_markup_printf_escaped:
2502  * @format: printf() style format string
2503  * @...: the arguments to insert in the format string
2504  *
2505  * Formats arguments according to @format, escaping
2506  * all string and character arguments in the fashion
2507  * of g_markup_escape_text(). This is useful when you
2508  * want to insert literal strings into XML-style markup
2509  * output, without having to worry that the strings
2510  * might themselves contain markup.
2511  *
2512  * |[
2513  * const char *store = "Fortnum &amp; Mason";
2514  * const char *item = "Tea";
2515  * char *output;
2516  * &nbsp;
2517  * output = g_markup_printf_escaped ("&lt;purchase&gt;"
2518  *                                   "&lt;store&gt;&percnt;s&lt;/store&gt;"
2519  *                                   "&lt;item&gt;&percnt;s&lt;/item&gt;"
2520  *                                   "&lt;/purchase&gt;",
2521  *                                   store, item);
2522  * ]|
2523  *
2524  * Return value: newly allocated result from formatting
2525  *    operation. Free with g_free().
2526  *
2527  * Since: 2.4
2528  */
2529 gchar *
2530 g_markup_printf_escaped (const gchar *format, ...)
2531 {
2532   char *result;
2533   va_list args;
2534
2535   va_start (args, format);
2536   result = g_markup_vprintf_escaped (format, args);
2537   va_end (args);
2538
2539   return result;
2540 }
2541
2542 static gboolean
2543 g_markup_parse_boolean (const char  *string,
2544                         gboolean    *value)
2545 {
2546   char const * const falses[] = { "false", "f", "no", "n", "0" };
2547   char const * const trues[] = { "true", "t", "yes", "y", "1" };
2548   int i;
2549
2550   for (i = 0; i < G_N_ELEMENTS (falses); i++)
2551     {
2552       if (g_ascii_strcasecmp (string, falses[i]) == 0)
2553         {
2554           if (value != NULL)
2555             *value = FALSE;
2556
2557           return TRUE;
2558         }
2559     }
2560
2561   for (i = 0; i < G_N_ELEMENTS (trues); i++)
2562     {
2563       if (g_ascii_strcasecmp (string, trues[i]) == 0)
2564         {
2565           if (value != NULL)
2566             *value = TRUE;
2567
2568           return TRUE;
2569         }
2570     }
2571
2572   return FALSE;
2573 }
2574
2575 /**
2576  * GMarkupCollectType:
2577  * @G_MARKUP_COLLECT_INVALID: used to terminate the list of attributes
2578  *     to collect
2579  * @G_MARKUP_COLLECT_STRING: collect the string pointer directly from
2580  *     the attribute_values[] array. Expects a parameter of type (const
2581  *     char **). If %G_MARKUP_COLLECT_OPTIONAL is specified and the
2582  *     attribute isn't present then the pointer will be set to %NULL
2583  * @G_MARKUP_COLLECT_STRDUP: as with %G_MARKUP_COLLECT_STRING, but
2584  *     expects a parameter of type (char **) and g_strdup()s the
2585  *     returned pointer. The pointer must be freed with g_free()
2586  * @G_MARKUP_COLLECT_BOOLEAN: expects a parameter of type (gboolean *)
2587  *     and parses the attribute value as a boolean. Sets %FALSE if the
2588  *     attribute isn't present. Valid boolean values consist of
2589  *     (case-insensitive) "false", "f", "no", "n", "0" and "true", "t",
2590  *     "yes", "y", "1"
2591  * @G_MARKUP_COLLECT_TRISTATE: as with %G_MARKUP_COLLECT_BOOLEAN, but
2592  *     in the case of a missing attribute a value is set that compares
2593  *     equal to neither %FALSE nor %TRUE G_MARKUP_COLLECT_OPTIONAL is
2594  *     implied
2595  * @G_MARKUP_COLLECT_OPTIONAL: can be bitwise ORed with the other fields.
2596  *     If present, allows the attribute not to appear. A default value
2597  *     is set depending on what value type is used
2598  *
2599  * A mixed enumerated type and flags field. You must specify one type
2600  * (string, strdup, boolean, tristate).  Additionally, you may  optionally
2601  * bitwise OR the type with the flag %G_MARKUP_COLLECT_OPTIONAL.
2602  *
2603  * It is likely that this enum will be extended in the future to
2604  * support other types.
2605  */
2606
2607 /**
2608  * g_markup_collect_attributes:
2609  * @element_name: the current tag name
2610  * @attribute_names: the attribute names
2611  * @attribute_values: the attribute values
2612  * @error: a pointer to a #GError or %NULL
2613  * @first_type: the #GMarkupCollectType of the first attribute
2614  * @first_attr: the name of the first attribute
2615  * @...: a pointer to the storage location of the first attribute
2616  *     (or %NULL), followed by more types names and pointers, ending
2617  *     with %G_MARKUP_COLLECT_INVALID
2618  *
2619  * Collects the attributes of the element from the data passed to the
2620  * #GMarkupParser start_element function, dealing with common error
2621  * conditions and supporting boolean values.
2622  *
2623  * This utility function is not required to write a parser but can save
2624  * a lot of typing.
2625  *
2626  * The @element_name, @attribute_names, @attribute_values and @error
2627  * parameters passed to the start_element callback should be passed
2628  * unmodified to this function.
2629  *
2630  * Following these arguments is a list of "supported" attributes to collect.
2631  * It is an error to specify multiple attributes with the same name. If any
2632  * attribute not in the list appears in the @attribute_names array then an
2633  * unknown attribute error will result.
2634  *
2635  * The #GMarkupCollectType field allows specifying the type of collection
2636  * to perform and if a given attribute must appear or is optional.
2637  *
2638  * The attribute name is simply the name of the attribute to collect.
2639  *
2640  * The pointer should be of the appropriate type (see the descriptions
2641  * under #GMarkupCollectType) and may be %NULL in case a particular
2642  * attribute is to be allowed but ignored.
2643  *
2644  * This function deals with issuing errors for missing attributes
2645  * (of type %G_MARKUP_ERROR_MISSING_ATTRIBUTE), unknown attributes
2646  * (of type %G_MARKUP_ERROR_UNKNOWN_ATTRIBUTE) and duplicate
2647  * attributes (of type %G_MARKUP_ERROR_INVALID_CONTENT) as well
2648  * as parse errors for boolean-valued attributes (again of type
2649  * %G_MARKUP_ERROR_INVALID_CONTENT). In all of these cases %FALSE
2650  * will be returned and @error will be set as appropriate.
2651  *
2652  * Return value: %TRUE if successful
2653  *
2654  * Since: 2.16
2655  **/
2656 gboolean
2657 g_markup_collect_attributes (const gchar         *element_name,
2658                              const gchar        **attribute_names,
2659                              const gchar        **attribute_values,
2660                              GError             **error,
2661                              GMarkupCollectType   first_type,
2662                              const gchar         *first_attr,
2663                              ...)
2664 {
2665   GMarkupCollectType type;
2666   const gchar *attr;
2667   guint64 collected;
2668   int written;
2669   va_list ap;
2670   int i;
2671
2672   type = first_type;
2673   attr = first_attr;
2674   collected = 0;
2675   written = 0;
2676
2677   va_start (ap, first_attr);
2678   while (type != G_MARKUP_COLLECT_INVALID)
2679     {
2680       gboolean mandatory;
2681       const gchar *value;
2682
2683       mandatory = !(type & G_MARKUP_COLLECT_OPTIONAL);
2684       type &= (G_MARKUP_COLLECT_OPTIONAL - 1);
2685
2686       /* tristate records a value != TRUE and != FALSE
2687        * for the case where the attribute is missing
2688        */
2689       if (type == G_MARKUP_COLLECT_TRISTATE)
2690         mandatory = FALSE;
2691
2692       for (i = 0; attribute_names[i]; i++)
2693         if (i >= 40 || !(collected & (G_GUINT64_CONSTANT(1) << i)))
2694           if (!strcmp (attribute_names[i], attr))
2695             break;
2696
2697       /* ISO C99 only promises that the user can pass up to 127 arguments.
2698        * Subtracting the first 4 arguments plus the final NULL and dividing
2699        * by 3 arguments per collected attribute, we are left with a maximum
2700        * number of supported attributes of (127 - 5) / 3 = 40.
2701        *
2702        * In reality, nobody is ever going to call us with anywhere close to
2703        * 40 attributes to collect, so it is safe to assume that if i > 40
2704        * then the user has given some invalid or repeated arguments.  These
2705        * problems will be caught and reported at the end of the function.
2706        *
2707        * We know at this point that we have an error, but we don't know
2708        * what error it is, so just continue...
2709        */
2710       if (i < 40)
2711         collected |= (G_GUINT64_CONSTANT(1) << i);
2712
2713       value = attribute_values[i];
2714
2715       if (value == NULL && mandatory)
2716         {
2717           g_set_error (error, G_MARKUP_ERROR,
2718                        G_MARKUP_ERROR_MISSING_ATTRIBUTE,
2719                        "element '%s' requires attribute '%s'",
2720                        element_name, attr);
2721
2722           va_end (ap);
2723           goto failure;
2724         }
2725
2726       switch (type)
2727         {
2728         case G_MARKUP_COLLECT_STRING:
2729           {
2730             const char **str_ptr;
2731
2732             str_ptr = va_arg (ap, const char **);
2733
2734             if (str_ptr != NULL)
2735               *str_ptr = value;
2736           }
2737           break;
2738
2739         case G_MARKUP_COLLECT_STRDUP:
2740           {
2741             char **str_ptr;
2742
2743             str_ptr = va_arg (ap, char **);
2744
2745             if (str_ptr != NULL)
2746               *str_ptr = g_strdup (value);
2747           }
2748           break;
2749
2750         case G_MARKUP_COLLECT_BOOLEAN:
2751         case G_MARKUP_COLLECT_TRISTATE:
2752           if (value == NULL)
2753             {
2754               gboolean *bool_ptr;
2755
2756               bool_ptr = va_arg (ap, gboolean *);
2757
2758               if (bool_ptr != NULL)
2759                 {
2760                   if (type == G_MARKUP_COLLECT_TRISTATE)
2761                     /* constructivists rejoice!
2762                      * neither false nor true...
2763                      */
2764                     *bool_ptr = -1;
2765
2766                   else /* G_MARKUP_COLLECT_BOOLEAN */
2767                     *bool_ptr = FALSE;
2768                 }
2769             }
2770           else
2771             {
2772               if (!g_markup_parse_boolean (value, va_arg (ap, gboolean *)))
2773                 {
2774                   g_set_error (error, G_MARKUP_ERROR,
2775                                G_MARKUP_ERROR_INVALID_CONTENT,
2776                                "element '%s', attribute '%s', value '%s' "
2777                                "cannot be parsed as a boolean value",
2778                                element_name, attr, value);
2779
2780                   va_end (ap);
2781                   goto failure;
2782                 }
2783             }
2784
2785           break;
2786
2787         default:
2788           g_assert_not_reached ();
2789         }
2790
2791       type = va_arg (ap, GMarkupCollectType);
2792       attr = va_arg (ap, const char *);
2793       written++;
2794     }
2795   va_end (ap);
2796
2797   /* ensure we collected all the arguments */
2798   for (i = 0; attribute_names[i]; i++)
2799     if ((collected & (G_GUINT64_CONSTANT(1) << i)) == 0)
2800       {
2801         /* attribute not collected:  could be caused by two things.
2802          *
2803          * 1) it doesn't exist in our list of attributes
2804          * 2) it existed but was matched by a duplicate attribute earlier
2805          *
2806          * find out.
2807          */
2808         int j;
2809
2810         for (j = 0; j < i; j++)
2811           if (strcmp (attribute_names[i], attribute_names[j]) == 0)
2812             /* duplicate! */
2813             break;
2814
2815         /* j is now the first occurrence of attribute_names[i] */
2816         if (i == j)
2817           g_set_error (error, G_MARKUP_ERROR,
2818                        G_MARKUP_ERROR_UNKNOWN_ATTRIBUTE,
2819                        "attribute '%s' invalid for element '%s'",
2820                        attribute_names[i], element_name);
2821         else
2822           g_set_error (error, G_MARKUP_ERROR,
2823                        G_MARKUP_ERROR_INVALID_CONTENT,
2824                        "attribute '%s' given multiple times for element '%s'",
2825                        attribute_names[i], element_name);
2826
2827         goto failure;
2828       }
2829
2830   return TRUE;
2831
2832 failure:
2833   /* replay the above to free allocations */
2834   type = first_type;
2835   attr = first_attr;
2836
2837   va_start (ap, first_attr);
2838   while (type != G_MARKUP_COLLECT_INVALID)
2839     {
2840       gpointer ptr;
2841
2842       ptr = va_arg (ap, gpointer);
2843
2844       if (ptr != NULL)
2845         {
2846           switch (type & (G_MARKUP_COLLECT_OPTIONAL - 1))
2847             {
2848             case G_MARKUP_COLLECT_STRDUP:
2849               if (written)
2850                 g_free (*(char **) ptr);
2851
2852             case G_MARKUP_COLLECT_STRING:
2853               *(char **) ptr = NULL;
2854               break;
2855
2856             case G_MARKUP_COLLECT_BOOLEAN:
2857               *(gboolean *) ptr = FALSE;
2858               break;
2859
2860             case G_MARKUP_COLLECT_TRISTATE:
2861               *(gboolean *) ptr = -1;
2862               break;
2863             }
2864         }
2865
2866       type = va_arg (ap, GMarkupCollectType);
2867       attr = va_arg (ap, const char *);
2868     }
2869   va_end (ap);
2870
2871   return FALSE;
2872 }