First public contribution.
1 /* -*- mode: C; c-file-style: "gnu" -*- */
2 /* desktop-file.c .desktop file parser
4 * Copyright (C) 2003 CodeFactory AB
5 * Copyright (C) 2003 Red Hat Inc.
6 * Portion Copyright © 2008 Nokia Corporation and/or its subsidiary(-ies). All rights reserved.
7 * Licensed under the Academic Free License version 2.1
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
25 #include <dbus/dbus-sysdeps.h>
26 #include <dbus/dbus-internals.h>
28 #include "dbus-sysdeps.h"
29 #include "dbus-internals.h"
30 #endif //__SYMBIAN32__
31 #include "desktop-file.h"
45 BusDesktopFileLine *lines;
46 int n_allocated_lines;
47 } BusDesktopFileSection;
52 BusDesktopFileSection *sections;
53 int n_allocated_sections;
57 * Parser for service files.
61 DBusString data; /**< The data from the file */
63 BusDesktopFile *desktop_file; /**< The resulting object */
64 int current_section; /**< The current section being parsed */
66 int pos; /**< Current position */
67 int len; /**< Length */
68 int line_num; /**< Current line number */
70 } BusDesktopFileParser;
72 #define VALID_KEY_CHAR 1
73 #define VALID_LOCALE_CHAR 2
74 unsigned char valid[256] = {
75 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 ,
76 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 ,
77 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x3 , 0x2 , 0x0 ,
78 0x3 , 0x3 , 0x3 , 0x3 , 0x3 , 0x3 , 0x3 , 0x3 , 0x3 , 0x3 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 ,
79 0x0 , 0x3 , 0x3 , 0x3 , 0x3 , 0x3 , 0x3 , 0x3 , 0x3 , 0x3 , 0x3 , 0x3 , 0x3 , 0x3 , 0x3 , 0x3 ,
80 0x3 , 0x3 , 0x3 , 0x3 , 0x3 , 0x3 , 0x3 , 0x3 , 0x3 , 0x3 , 0x3 , 0x0 , 0x0 , 0x0 , 0x0 , 0x2 ,
81 0x0 , 0x3 , 0x3 , 0x3 , 0x3 , 0x3 , 0x3 , 0x3 , 0x3 , 0x3 , 0x3 , 0x3 , 0x3 , 0x3 , 0x3 , 0x3 ,
82 0x3 , 0x3 , 0x3 , 0x3 , 0x3 , 0x3 , 0x3 , 0x3 , 0x3 , 0x3 , 0x3 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 ,
83 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 ,
84 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 ,
85 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 ,
86 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 ,
87 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 ,
88 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 ,
89 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 ,
90 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 , 0x0 ,
93 static void report_error (BusDesktopFileParser *parser,
95 const char *error_name,
99 parser_free (BusDesktopFileParser *parser)
101 bus_desktop_file_free (parser->desktop_file);
103 _dbus_string_free (&parser->data);
107 bus_desktop_file_line_free (BusDesktopFileLine *line)
109 dbus_free (line->key);
110 dbus_free (line->value);
114 bus_desktop_file_section_free (BusDesktopFileSection *section)
118 for (i = 0; i < section->n_lines; i++)
119 bus_desktop_file_line_free (§ion->lines[i]);
121 dbus_free (section->lines);
122 dbus_free (section->section_name);
126 bus_desktop_file_free (BusDesktopFile *desktop_file)
130 for (i = 0; i < desktop_file->n_sections; i++)
131 bus_desktop_file_section_free (&desktop_file->sections[i]);
132 dbus_free (desktop_file->sections);
134 dbus_free (desktop_file);
138 grow_lines_in_section (BusDesktopFileSection *section)
140 BusDesktopFileLine *lines;
144 if (section->n_allocated_lines == 0)
147 new_n_lines = section->n_allocated_lines*2;
149 lines = dbus_realloc (section->lines,
150 sizeof (BusDesktopFileLine) * new_n_lines);
155 section->lines = lines;
156 section->n_allocated_lines = new_n_lines;
162 grow_sections (BusDesktopFile *desktop_file)
165 BusDesktopFileSection *sections;
167 if (desktop_file->n_allocated_sections == 0)
170 new_n_sections = desktop_file->n_allocated_sections*2;
172 sections = dbus_realloc (desktop_file->sections,
173 sizeof (BusDesktopFileSection) * new_n_sections);
174 if (sections == NULL)
177 desktop_file->sections = sections;
179 desktop_file->n_allocated_sections = new_n_sections;
185 unescape_string (BusDesktopFileParser *parser,
186 const DBusString *str,
193 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
195 /* len + 1 is enough, because unescaping never makes the
198 retval = dbus_malloc (end_pos - pos + 1);
207 while (pos < end_pos)
209 if (_dbus_string_get_byte (str, pos) == 0)
211 /* Found an embedded null */
213 report_error (parser, "Text to be unescaped contains embedded nul",
214 BUS_DESKTOP_PARSE_ERROR_INVALID_ESCAPES, error);
218 if (_dbus_string_get_byte (str, pos) == '\\')
224 /* Escape at end of string */
226 report_error (parser, "Text to be unescaped ended in \\",
227 BUS_DESKTOP_PARSE_ERROR_INVALID_ESCAPES, error);
231 switch (_dbus_string_get_byte (str, pos))
249 /* Invalid escape code */
251 report_error (parser, "Text to be unescaped had invalid escape sequence",
252 BUS_DESKTOP_PARSE_ERROR_INVALID_ESCAPES, error);
259 *q++ =_dbus_string_get_byte (str, pos);
270 static BusDesktopFileSection*
271 new_section (BusDesktopFile *desktop_file,
277 if (desktop_file->n_allocated_sections == desktop_file->n_sections)
279 if (!grow_sections (desktop_file))
283 name_copy = _dbus_strdup (name);
284 if (name_copy == NULL)
287 n = desktop_file->n_sections;
288 desktop_file->sections[n].section_name = name_copy;
290 desktop_file->sections[n].n_lines = 0;
291 desktop_file->sections[n].lines = NULL;
292 desktop_file->sections[n].n_allocated_lines = 0;
294 if (!grow_lines_in_section (&desktop_file->sections[n]))
296 dbus_free (desktop_file->sections[n].section_name);
297 desktop_file->sections[n].section_name = NULL;
301 desktop_file->n_sections += 1;
303 return &desktop_file->sections[n];
306 static BusDesktopFileSection*
307 open_section (BusDesktopFileParser *parser,
310 BusDesktopFileSection *section;
312 section = new_section (parser->desktop_file, name);
316 parser->current_section = parser->desktop_file->n_sections - 1;
317 _dbus_assert (&parser->desktop_file->sections[parser->current_section] == section);
322 static BusDesktopFileLine *
323 new_line (BusDesktopFileParser *parser)
325 BusDesktopFileSection *section;
326 BusDesktopFileLine *line;
328 section = &parser->desktop_file->sections[parser->current_section];
330 if (section->n_allocated_lines == section->n_lines)
332 if (!grow_lines_in_section (section))
336 line = §ion->lines[section->n_lines++];
338 memset (line, 0, sizeof (BusDesktopFileLine));
344 is_blank_line (BusDesktopFileParser *parser)
351 c = _dbus_string_get_byte (&parser->data, p);
353 while (c && c != '\n')
355 if (!(c == ' ' || c == '\t' || c == '\n' || c == '\r' || c == '\f'))
359 c = _dbus_string_get_byte (&parser->data, p);
366 parse_comment_or_blank (BusDesktopFileParser *parser)
374 if (!_dbus_string_find_eol (&parser->data, parser->pos, &line_end, &eol_len))
375 line_end = parser->len;
377 if (!_dbus_string_find (&parser->data, parser->pos, "\n", &line_end))
378 line_end = parser->len;
381 if (line_end == parser->len)
382 parser->pos = parser->len;
385 parser->pos = line_end + eol_len;
387 parser->pos = line_end + 1;
390 parser->line_num += 1;
394 is_valid_section_name (const char *name)
396 /* 5. Group names may contain all ASCII characters except for control characters and '[' and ']'. */
400 if (!((*name >= 'A' && *name <= 'Z') || (*name >= 'a' || *name <= 'z') ||
401 *name == '\n' || *name == '\t'))
411 parse_section_start (BusDesktopFileParser *parser, DBusError *error)
419 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
422 if (!_dbus_string_find_eol (&parser->data, parser->pos, &line_end, &eol_len))
423 line_end = parser->len;
425 if (!_dbus_string_find (&parser->data, parser->pos, "\n", &line_end))
426 line_end = parser->len;
427 #endif //__SYMBIAN32__
429 if (line_end - parser->pos <= 2 ||
430 _dbus_string_get_byte (&parser->data, line_end - 1) != ']')
432 report_error (parser, "Invalid syntax for section header", BUS_DESKTOP_PARSE_ERROR_INVALID_SYNTAX, error);
433 parser_free (parser);
437 section_name = unescape_string (parser,
438 &parser->data, parser->pos + 1, line_end - 1,
441 if (section_name == NULL)
443 parser_free (parser);
447 if (!is_valid_section_name (section_name))
449 report_error (parser, "Invalid characters in section name", BUS_DESKTOP_PARSE_ERROR_INVALID_CHARS, error);
450 parser_free (parser);
451 dbus_free (section_name);
455 if (open_section (parser, section_name) == NULL)
457 dbus_free (section_name);
458 parser_free (parser);
463 if (line_end == parser->len)
464 parser->pos = parser->len;
467 parser->pos = line_end + eol_len;
469 parser->pos = line_end + 1;
472 parser->line_num += 1;
474 dbus_free (section_name);
480 parse_key_value (BusDesktopFileParser *parser, DBusError *error)
483 int key_start, key_end;
488 BusDesktopFileLine *line;
493 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
496 if (!_dbus_string_find_eol (&parser->data, parser->pos, &line_end, &eol_len))
497 line_end = parser->len;
499 if (!_dbus_string_find (&parser->data, parser->pos, "\n", &line_end))
500 line_end = parser->len;
505 while (p < line_end &&
506 (valid[_dbus_string_get_byte (&parser->data, p)] & VALID_KEY_CHAR))
510 if (key_start == key_end)
512 report_error (parser, "Empty key name", BUS_DESKTOP_PARSE_ERROR_INVALID_SYNTAX, error);
513 parser_free (parser);
517 /* We ignore locales for now */
518 if (p < line_end && _dbus_string_get_byte (&parser->data, p) == '[')
520 if (line_end == parser->len)
521 parser->pos = parser->len;
524 parser->pos = line_end + eol_len;
526 parser->pos = line_end + 1;
529 parser->line_num += 1;
534 /* Skip space before '=' */
535 while (p < line_end && _dbus_string_get_byte (&parser->data, p) == ' ')
538 if (p < line_end && _dbus_string_get_byte (&parser->data, p) != '=')
540 report_error (parser, "Invalid characters in key name", BUS_DESKTOP_PARSE_ERROR_INVALID_CHARS, error);
541 parser_free (parser);
547 report_error (parser, "No '=' in key/value pair", BUS_DESKTOP_PARSE_ERROR_INVALID_SYNTAX, error);
548 parser_free (parser);
555 /* Skip space after '=' */
556 while (p < line_end && _dbus_string_get_byte (&parser->data, p) == ' ')
561 value = unescape_string (parser, &parser->data, value_start, line_end, error);
564 parser_free (parser);
568 line = new_line (parser);
572 parser_free (parser);
577 if (!_dbus_string_init (&key))
580 parser_free (parser);
585 if (!_dbus_string_copy_len (&parser->data, key_start, key_end - key_start,
588 _dbus_string_free (&key);
590 parser_free (parser);
595 if (!_dbus_string_steal_data (&key, &tmp))
597 _dbus_string_free (&key);
599 parser_free (parser);
604 _dbus_string_free (&key);
609 if (line_end == parser->len)
610 parser->pos = parser->len;
612 parser->pos = line_end + 1;
614 parser->line_num += 1;
620 report_error (BusDesktopFileParser *parser,
622 const char *error_name,
625 const char *section_name = NULL;
627 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
629 if (parser->current_section != -1)
630 section_name = parser->desktop_file->sections[parser->current_section].section_name;
633 dbus_set_error (error, error_name,
634 "Error in section %s at line %d: %s\n", section_name, parser->line_num, message);
636 dbus_set_error (error, error_name,
637 "Error at line %d: %s\n", parser->line_num, message);
642 dump_desktop_file (BusDesktopFile *file)
646 for (i = 0; i < file->n_sections; i++)
650 printf ("[%s]\n", file->sections[i].section_name);
652 for (j = 0; j < file->sections[i].n_lines; j++)
654 printf ("%s=%s\n", file->sections[i].lines[j].key,
655 file->sections[i].lines[j].value);
662 bus_desktop_file_load (DBusString *filename,
666 BusDesktopFileParser parser;
669 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
671 /* Clearly there's a race here, but it's just to make it unlikely
672 * that we do something silly, we still handle doing it below.
674 if (!_dbus_stat (filename, &sb, error))
677 if (sb.size > _DBUS_ONE_KILOBYTE * 128)
679 dbus_set_error (error, DBUS_ERROR_FAILED,
680 "Desktop file size (%ld bytes) is too large", (long) sb.size);
684 if (!_dbus_string_init (&str))
690 if (!_dbus_file_get_contents (&str, filename, error))
692 _dbus_string_free (&str);
696 if (!_dbus_string_validate_utf8 (&str, 0, _dbus_string_get_length (&str)))
698 _dbus_string_free (&str);
699 dbus_set_error (error, DBUS_ERROR_FAILED,
704 parser.desktop_file = dbus_new0 (BusDesktopFile, 1);
705 if (parser.desktop_file == NULL)
707 _dbus_string_free (&str);
715 parser.len = _dbus_string_get_length (&parser.data);
716 parser.current_section = -1;
718 while (parser.pos < parser.len)
720 if (_dbus_string_get_byte (&parser.data, parser.pos) == '[')
722 if (!parse_section_start (&parser, error))
727 else if (is_blank_line (&parser) ||
728 _dbus_string_get_byte (&parser.data, parser.pos) == '#')
729 parse_comment_or_blank (&parser);
732 if (!parse_key_value (&parser, error))
739 _dbus_string_free (&parser.data);
741 return parser.desktop_file;
744 static BusDesktopFileSection *
745 lookup_section (BusDesktopFile *desktop_file,
746 const char *section_name)
748 BusDesktopFileSection *section;
751 if (section_name == NULL)
754 for (i = 0; i < desktop_file->n_sections; i ++)
756 section = &desktop_file->sections[i];
758 if (strcmp (section->section_name, section_name) == 0)
765 static BusDesktopFileLine *
766 lookup_line (BusDesktopFile *desktop_file,
767 BusDesktopFileSection *section,
770 BusDesktopFileLine *line;
773 for (i = 0; i < section->n_lines; i++)
775 line = §ion->lines[i];
777 if (strcmp (line->key, keyname) == 0)
785 bus_desktop_file_get_raw (BusDesktopFile *desktop_file,
786 const char *section_name,
790 BusDesktopFileSection *section;
791 BusDesktopFileLine *line;
795 section = lookup_section (desktop_file, section_name);
800 line = lookup_line (desktop_file,
813 bus_desktop_file_get_string (BusDesktopFile *desktop_file,
821 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
825 if (!bus_desktop_file_get_raw (desktop_file, section, keyname, &raw))
827 dbus_set_error (error, DBUS_ERROR_FAILED,
828 "No \"%s\" key in .service file\n", keyname);
832 *val = _dbus_strdup (raw);