Coverage Report

Created: 2025-08-26 06:56

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