1 /* -*- mode: C; c-file-style: "gnu" -*- */
2 /* xdgmimealias.c: Private file. Datastructure for storing the aliases.
4 * More info can be found at http://www.freedesktop.org/standards/
6 * Copyright (C) 2004 Red Hat, Inc.
7 * Copyright (C) 2004 Matthias Clasen <mclasen@redhat.com>
9 * Licensed under the Academic Free License version 2.0
10 * Or under the following terms:
12 * This library is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU Lesser General Public
14 * License as published by the Free Software Foundation; either
15 * version 2 of the License, or (at your option) any later version.
17 * This library is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 * Lesser General Public License for more details.
22 * You should have received a copy of the GNU Lesser General Public
23 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
30 #include "xdgmimealias.h"
31 #include "xdgmimeint.h"
46 typedef struct XdgAlias XdgAlias;
56 struct XdgAlias *aliases;
61 _xdg_mime_alias_list_new (void)
65 list = malloc (sizeof (XdgAliasList));
74 _xdg_mime_alias_list_free (XdgAliasList *list)
80 for (i = 0; i < list->n_aliases; i++)
82 free (list->aliases[i].alias);
83 free (list->aliases[i].mime_type);
91 alias_entry_cmp (const void *v1, const void *v2)
93 return strcmp (((XdgAlias *)v1)->alias, ((XdgAlias *)v2)->alias);
97 _xdg_mime_alias_list_lookup (XdgAliasList *list,
103 if (list->n_aliases > 0)
105 key.alias = (char *)alias;
106 key.mime_type = NULL;
108 entry = bsearch (&key, list->aliases, list->n_aliases,
109 sizeof (XdgAlias), alias_entry_cmp);
111 return entry->mime_type;
118 _xdg_mime_alias_read_from_file (XdgAliasList *list,
119 const char *file_name)
125 file = fopen (file_name, "r");
130 /* FIXME: Not UTF-8 safe. Doesn't work if lines are greater than 255 chars.
132 alloc = list->n_aliases + 16;
133 list->aliases = realloc (list->aliases, alloc * sizeof (XdgAlias));
134 while (fgets (line, 255, file) != NULL)
140 sep = strchr (line, ' ');
144 sep[strlen (sep) -1] = '\000';
145 if (list->n_aliases == alloc)
148 list->aliases = realloc (list->aliases,
149 alloc * sizeof (XdgAlias));
151 list->aliases[list->n_aliases].alias = strdup (line);
152 list->aliases[list->n_aliases].mime_type = strdup (sep);
155 list->aliases = realloc (list->aliases,
156 list->n_aliases * sizeof (XdgAlias));
160 if (list->n_aliases > 1)
161 qsort (list->aliases, list->n_aliases,
162 sizeof (XdgAlias), alias_entry_cmp);
166 #ifdef NOT_USED_IN_GIO
169 _xdg_mime_alias_list_dump (XdgAliasList *list)
175 for (i = 0; i < list->n_aliases; i++)
178 list->aliases[i].alias,
179 list->aliases[i].mime_type);