Fix static analysis issues
[platform/core/appfw/xdgmime.git] / xdgmime / src / xdgmime.c
1 /* -*- mode: C; c-file-style: "gnu" -*- */
2 /* xdgmime.c: XDG Mime Spec mime resolver.  Based on version 0.11 of the spec.
3  *
4  * More info can be found at http://www.freedesktop.org/standards/
5  * 
6  * Copyright (C) 2003,2004  Red Hat, Inc.
7  * Copyright (C) 2003,2004  Jonathan Blandford <jrb@alum.mit.edu>
8  *
9  * Licensed under the Academic Free License version 2.0
10  * Or under the following terms:
11  * 
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.
16  *
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.
21  *
22  * You should have received a copy of the GNU Lesser General Public
23  * License along with this library; if not, write to the
24  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
25  * Boston, MA 02111-1307, USA.
26  */
27
28 #ifdef HAVE_CONFIG_H
29 #include <config.h>
30 #endif
31
32 #include "xdgmime.h"
33 #include "xdgmimeint.h"
34 #include "xdgmimeglob.h"
35 #include "xdgmimemagic.h"
36 #include "xdgmimealias.h"
37 #include "xdgmimeicon.h"
38 #include "xdgmimeparent.h"
39 #include "xdgmimecache.h"
40 #include <stdio.h>
41 #include <string.h>
42 #include <sys/stat.h>
43 #include <sys/types.h>
44 #include <sys/time.h>
45 #include <unistd.h>
46 #include <assert.h>
47
48 #ifndef API
49 #define API __attribute__ ((visibility("default")))
50 #endif
51
52 typedef struct XdgDirTimeList XdgDirTimeList;
53 typedef struct XdgCallbackList XdgCallbackList;
54
55 static int need_reread = TRUE;
56 static time_t last_stat_time = 0;
57
58 static XdgGlobHash *global_hash = NULL;
59 static XdgMimeMagic *global_magic = NULL;
60 static XdgAliasList *alias_list = NULL;
61 static XdgParentList *parent_list = NULL;
62 static XdgDirTimeList *dir_time_list = NULL;
63 static XdgCallbackList *callback_list = NULL;
64 static XdgIconList *icon_list = NULL;
65 static XdgIconList *generic_icon_list = NULL;
66
67 XdgMimeCache **_caches = NULL;
68 static int n_caches = 0;
69
70 const char xdg_mime_type_unknown[] = "application/octet-stream";
71
72
73 enum
74 {
75   XDG_CHECKED_UNCHECKED,
76   XDG_CHECKED_VALID,
77   XDG_CHECKED_INVALID
78 };
79
80 struct XdgDirTimeList
81 {
82   time_t mtime;
83   char *directory_name;
84   int checked;
85   XdgDirTimeList *next;
86 };
87
88 struct XdgCallbackList
89 {
90   XdgCallbackList *next;
91   XdgCallbackList *prev;
92   int              callback_id;
93   XdgMimeCallback  callback;
94   void            *data;
95   XdgMimeDestroy   destroy;
96 };
97
98 /* Function called by xdg_run_command_on_dirs.  If it returns TRUE, further
99  * directories aren't looked at */
100 typedef int (*XdgDirectoryFunc) (const char *directory,
101                                  void       *user_data);
102
103 static void
104 xdg_dir_time_list_add (char   *file_name, 
105                        time_t  mtime)
106 {
107   XdgDirTimeList *list;
108
109   for (list = dir_time_list; list; list = list->next) 
110     {
111       if (strcmp (list->directory_name, file_name) == 0)
112         {
113           free (file_name);
114           return;
115         }
116     }
117   
118   list = calloc (1, sizeof (XdgDirTimeList));
119   list->checked = XDG_CHECKED_UNCHECKED;
120   list->directory_name = file_name;
121   list->mtime = mtime;
122   list->next = dir_time_list;
123   dir_time_list = list;
124 }
125  
126 static void
127 xdg_dir_time_list_free (XdgDirTimeList *list)
128 {
129   XdgDirTimeList *next;
130
131   while (list)
132     {
133       next = list->next;
134       free (list->directory_name);
135       free (list);
136       list = next;
137     }
138 }
139
140 static int
141 xdg_mime_init_from_directory (const char *directory)
142 {
143   char *file_name;
144   struct stat st;
145
146   assert (directory != NULL);
147
148   file_name = malloc (strlen (directory) + strlen ("/mime/mime.cache") + 1);
149   if (file_name == NULL)
150       return TRUE;
151
152   strcpy (file_name, directory); strcat (file_name, "/mime/mime.cache");
153   if (stat (file_name, &st) == 0)
154     {
155       XdgMimeCache *cache = _xdg_mime_cache_new_from_file (file_name);
156
157       if (cache != NULL)
158         {
159           xdg_dir_time_list_add (file_name, st.st_mtime);
160
161           XdgMimeCache **tmp_caches = realloc (_caches, sizeof (XdgMimeCache *) * (n_caches + 2));
162           if (tmp_caches != NULL)
163             {
164               _caches = tmp_caches;
165               _caches[n_caches] = cache;
166               _caches[n_caches + 1] = NULL;
167               n_caches++;
168
169               return FALSE;
170             }
171           else
172             {
173               free(cache);
174               return TRUE;
175             }
176         }
177     }
178   free (file_name);
179
180   file_name = malloc (strlen (directory) + strlen ("/mime/globs2") + 1);
181   if (file_name == NULL)
182     return TRUE;
183
184   strcpy (file_name, directory); strcat (file_name, "/mime/globs2");
185   if (stat (file_name, &st) == 0)
186     {
187       _xdg_mime_glob_read_from_file (global_hash, file_name, TRUE);
188       xdg_dir_time_list_add (file_name, st.st_mtime);
189     }
190   else
191     {
192       free (file_name);
193       file_name = malloc (strlen (directory) + strlen ("/mime/globs") + 1);
194       if (file_name == NULL)
195         return TRUE;
196
197       strcpy (file_name, directory); strcat (file_name, "/mime/globs");
198       if (stat (file_name, &st) == 0)
199         {
200           _xdg_mime_glob_read_from_file (global_hash, file_name, FALSE);
201           xdg_dir_time_list_add (file_name, st.st_mtime);
202         }
203       else
204         {
205           free (file_name);
206         }
207     }
208
209   file_name = malloc (strlen (directory) + strlen ("/mime/magic") + 1);
210   if (file_name == NULL)
211     return TRUE;
212
213   strcpy (file_name, directory); strcat (file_name, "/mime/magic");
214   if (stat (file_name, &st) == 0)
215     {
216       _xdg_mime_magic_read_from_file (global_magic, file_name);
217       xdg_dir_time_list_add (file_name, st.st_mtime);
218     }
219   else
220     {
221       free (file_name);
222     }
223
224   file_name = malloc (strlen (directory) + strlen ("/mime/aliases") + 1);
225   if (file_name == NULL)
226     return TRUE;
227
228   strcpy (file_name, directory); strcat (file_name, "/mime/aliases");
229   _xdg_mime_alias_read_from_file (alias_list, file_name);
230   free (file_name);
231
232   file_name = malloc (strlen (directory) + strlen ("/mime/subclasses") + 1);
233   if (file_name == NULL)
234     return TRUE;
235
236   strcpy (file_name, directory); strcat (file_name, "/mime/subclasses");
237   _xdg_mime_parent_read_from_file (parent_list, file_name);
238   free (file_name);
239
240   file_name = malloc (strlen (directory) + strlen ("/mime/icons") + 1);
241   if (file_name == NULL)
242     return TRUE;
243
244   strcpy (file_name, directory); strcat (file_name, "/mime/icons");
245   _xdg_mime_icon_read_from_file (icon_list, file_name);
246   free (file_name);
247
248   file_name = malloc (strlen (directory) + strlen ("/mime/generic-icons") + 1);
249   if (file_name == NULL)
250     return TRUE;
251
252   strcpy (file_name, directory); strcat (file_name, "/mime/generic-icons");
253   _xdg_mime_icon_read_from_file (generic_icon_list, file_name);
254   free (file_name);
255
256   return FALSE; /* Keep processing */
257 }
258
259 /* Runs a command on all the directories in the search path */
260 static void
261 xdg_run_command_on_dirs (XdgDirectoryFunc  func,
262                          void             *user_data)
263 {
264   const char *xdg_data_home;
265   const char *xdg_data_dirs;
266   const char *ptr;
267
268   xdg_data_home = getenv ("XDG_DATA_HOME");
269   if (xdg_data_home)
270     {
271       if ((func) (xdg_data_home, user_data))
272         return;
273     }
274   else
275     {
276       const char *home;
277
278       home = getenv ("HOME");
279       if (home != NULL)
280         {
281           char *guessed_xdg_home;
282           int stop_processing;
283
284           guessed_xdg_home = malloc (strlen (home) + strlen ("/.local/share/") + 1);
285           strcpy (guessed_xdg_home, home);
286           strcat (guessed_xdg_home, "/.local/share/");
287           stop_processing = (func) (guessed_xdg_home, user_data);
288           free (guessed_xdg_home);
289
290           if (stop_processing)
291             return;
292         }
293     }
294
295   xdg_data_dirs = getenv ("XDG_DATA_DIRS");
296   if (xdg_data_dirs == NULL)
297     xdg_data_dirs = "/usr/local/share/:/usr/share/";
298
299   ptr = xdg_data_dirs;
300
301   while (*ptr != '\000')
302     {
303       const char *end_ptr;
304       char *dir;
305       int len;
306       int stop_processing;
307
308       end_ptr = ptr;
309       while (*end_ptr != ':' && *end_ptr != '\000')
310         end_ptr ++;
311
312       if (end_ptr == ptr)
313         {
314           ptr++;
315           continue;
316         }
317
318       if (*end_ptr == ':')
319         len = end_ptr - ptr;
320       else
321         len = end_ptr - ptr + 1;
322       dir = malloc (len + 1);
323       strncpy (dir, ptr, len);
324       dir[len] = '\0';
325       stop_processing = (func) (dir, user_data);
326       free (dir);
327
328       if (stop_processing)
329         return;
330
331       ptr = end_ptr;
332     }
333 }
334
335 /* Checks file_path to make sure it has the same mtime as last time it was
336  * checked.  If it has a different mtime, or if the file doesn't exist, it
337  * returns FALSE.
338  *
339  * FIXME: This doesn't protect against permission changes.
340  */
341 static int
342 xdg_check_file (const char *file_path,
343                 int        *exists)
344 {
345   struct stat st;
346
347   /* If the file exists */
348   if (stat (file_path, &st) == 0)
349     {
350       XdgDirTimeList *list;
351
352       if (exists)
353         *exists = TRUE;
354
355       for (list = dir_time_list; list; list = list->next)
356         {
357           if (! strcmp (list->directory_name, file_path))
358             {
359               if (st.st_mtime == list->mtime)
360                 list->checked = XDG_CHECKED_VALID;
361               else 
362                 list->checked = XDG_CHECKED_INVALID;
363
364               return (list->checked != XDG_CHECKED_VALID);
365             }
366         }
367       return TRUE;
368     }
369
370   if (exists)
371     *exists = FALSE;
372
373   return FALSE;
374 }
375
376 static int
377 xdg_check_dir (const char *directory,
378                int        *invalid_dir_list)
379 {
380   int invalid, exists;
381   char *file_name;
382
383   assert (directory != NULL);
384
385   /* Check the mime.cache file */
386   file_name = malloc (strlen (directory) + strlen ("/mime/mime.cache") + 1);
387   strcpy (file_name, directory); strcat (file_name, "/mime/mime.cache");
388   invalid = xdg_check_file (file_name, &exists);
389   free (file_name);
390   if (invalid)
391     {
392       *invalid_dir_list = TRUE;
393       return TRUE;
394     }
395   else if (exists)
396     {
397       return FALSE;
398     }
399
400   /* Check the globs file */
401   file_name = malloc (strlen (directory) + strlen ("/mime/globs") + 1);
402   strcpy (file_name, directory); strcat (file_name, "/mime/globs");
403   invalid = xdg_check_file (file_name, NULL);
404   free (file_name);
405   if (invalid)
406     {
407       *invalid_dir_list = TRUE;
408       return TRUE;
409     }
410
411   /* Check the magic file */
412   file_name = malloc (strlen (directory) + strlen ("/mime/magic") + 1);
413   strcpy (file_name, directory); strcat (file_name, "/mime/magic");
414   invalid = xdg_check_file (file_name, NULL);
415   free (file_name);
416   if (invalid)
417     {
418       *invalid_dir_list = TRUE;
419       return TRUE;
420     }
421
422   return FALSE; /* Keep processing */
423 }
424
425 /* Walks through all the mime files stat()ing them to see if they've changed.
426  * Returns TRUE if they have. */
427 static int
428 xdg_check_dirs (void)
429 {
430   XdgDirTimeList *list;
431   int invalid_dir_list = FALSE;
432
433   for (list = dir_time_list; list; list = list->next)
434     list->checked = XDG_CHECKED_UNCHECKED;
435
436   xdg_run_command_on_dirs ((XdgDirectoryFunc) xdg_check_dir,
437                            &invalid_dir_list);
438
439   if (invalid_dir_list)
440     return TRUE;
441
442   for (list = dir_time_list; list; list = list->next)
443     {
444       if (list->checked != XDG_CHECKED_VALID)
445         return TRUE;
446     }
447
448   return FALSE;
449 }
450
451 /* We want to avoid stat()ing on every single mime call, so we only look for
452  * newer files every 5 seconds.  This will return TRUE if we need to reread the
453  * mime data from disk.
454  */
455 static int
456 xdg_check_time_and_dirs (void)
457 {
458   struct timeval tv;
459   time_t current_time;
460   int retval = FALSE;
461
462   gettimeofday (&tv, NULL);
463   current_time = tv.tv_sec;
464
465   if (current_time >= last_stat_time + 5)
466     {
467       retval = xdg_check_dirs ();
468       last_stat_time = current_time;
469     }
470
471   return retval;
472 }
473
474 /* Called in every public function.  It reloads the hash function if need be.
475  */
476 static void
477 xdg_mime_init (void)
478 {
479   if (xdg_check_time_and_dirs ())
480     {
481       xdg_mime_shutdown ();
482     }
483
484   if (need_reread)
485     {
486       global_hash = _xdg_glob_hash_new ();
487       global_magic = _xdg_mime_magic_new ();
488       alias_list = _xdg_mime_alias_list_new ();
489       parent_list = _xdg_mime_parent_list_new ();
490       icon_list = _xdg_mime_icon_list_new ();
491       generic_icon_list = _xdg_mime_icon_list_new ();
492
493       xdg_run_command_on_dirs ((XdgDirectoryFunc) xdg_mime_init_from_directory,
494                                NULL);
495
496       need_reread = FALSE;
497     }
498 }
499
500 API const char *
501 xdg_mime_get_mime_type_for_data (const void *data,
502                                  size_t      len,
503                                  int        *result_prio)
504 {
505   const char *mime_type;
506
507   xdg_mime_init ();
508
509   if (_caches)
510     return _xdg_mime_cache_get_mime_type_for_data (data, len, result_prio);
511
512   mime_type = _xdg_mime_magic_lookup_data (global_magic, data, len, result_prio, NULL, 0);
513
514   if (mime_type)
515     return mime_type;
516
517   return XDG_MIME_TYPE_UNKNOWN;
518 }
519
520 API const char *
521 xdg_mime_get_mime_type_for_file (const char  *file_name,
522                                  struct stat *statbuf)
523 {
524   const char *mime_type;
525   /* currently, only a few globs occur twice, and none
526    * more often, so 5 seems plenty.
527    */
528   const char *mime_types[5];
529   FILE *file;
530   unsigned char *data;
531   int max_extent;
532   int bytes_read;
533   struct stat buf;
534   const char *base_name;
535   int n;
536
537   if (file_name == NULL)
538     return NULL;
539   if (! _xdg_utf8_validate (file_name))
540     return NULL;
541
542   xdg_mime_init ();
543
544   if (_caches)
545     return _xdg_mime_cache_get_mime_type_for_file (file_name, statbuf);
546
547   base_name = _xdg_get_base_name (file_name);
548   n = _xdg_glob_hash_lookup_file_name (global_hash, base_name, mime_types, 5);
549
550   if (n == 1)
551     return mime_types[0];
552
553   if (!statbuf)
554     {
555       if (stat (file_name, &buf) != 0)
556         return XDG_MIME_TYPE_UNKNOWN;
557
558       statbuf = &buf;
559     }
560
561   if (!S_ISREG (statbuf->st_mode))
562     return XDG_MIME_TYPE_UNKNOWN;
563
564   /* FIXME: Need to make sure that max_extent isn't totally broken.  This could
565    * be large and need getting from a stream instead of just reading it all
566    * in. */
567   max_extent = _xdg_mime_magic_get_buffer_extents (global_magic);
568   data = malloc (max_extent);
569   if (data == NULL)
570     return XDG_MIME_TYPE_UNKNOWN;
571         
572   file = fopen (file_name, "r");
573   if (file == NULL)
574     {
575       free (data);
576       return XDG_MIME_TYPE_UNKNOWN;
577     }
578
579   bytes_read = fread (data, 1, max_extent, file);
580   if (ferror (file))
581     {
582       free (data);
583       fclose (file);
584       return XDG_MIME_TYPE_UNKNOWN;
585     }
586
587   mime_type = _xdg_mime_magic_lookup_data (global_magic, data, bytes_read, NULL,
588                                            mime_types, n);
589
590   free (data);
591   fclose (file);
592
593   if (mime_type)
594     return mime_type;
595
596   return XDG_MIME_TYPE_UNKNOWN;
597 }
598
599 API const char *
600 xdg_mime_get_mime_type_from_file_name (const char *file_name)
601 {
602   const char *mime_type;
603
604   xdg_mime_init ();
605
606   if (_caches)
607     return _xdg_mime_cache_get_mime_type_from_file_name (file_name);
608
609   if (_xdg_glob_hash_lookup_file_name (global_hash, file_name, &mime_type, 1))
610     return mime_type;
611   else
612     return XDG_MIME_TYPE_UNKNOWN;
613 }
614
615 int
616 xdg_mime_get_mime_types_from_file_name (const char *file_name,
617                                         const char  *mime_types[],
618                                         int          n_mime_types)
619 {
620   xdg_mime_init ();
621   
622   if (_caches)
623     return _xdg_mime_cache_get_mime_types_from_file_name (file_name, mime_types, n_mime_types);
624   
625   return _xdg_glob_hash_lookup_file_name (global_hash, file_name, mime_types, n_mime_types);
626 }
627
628 int
629 xdg_mime_is_valid_mime_type (const char *mime_type)
630 {
631   /* FIXME: We should make this a better test
632    */
633   return _xdg_utf8_validate (mime_type);
634 }
635
636 void
637 xdg_mime_shutdown (void)
638 {
639   XdgCallbackList *list;
640
641   /* FIXME: Need to make this (and the whole library) thread safe */
642   if (dir_time_list)
643     {
644       xdg_dir_time_list_free (dir_time_list);
645       dir_time_list = NULL;
646     }
647         
648   if (global_hash)
649     {
650       _xdg_glob_hash_free (global_hash);
651       global_hash = NULL;
652     }
653   if (global_magic)
654     {
655       _xdg_mime_magic_free (global_magic);
656       global_magic = NULL;
657     }
658
659   if (alias_list)
660     {
661       _xdg_mime_alias_list_free (alias_list);
662       alias_list = NULL;
663     }
664
665   if (parent_list)
666     {
667       _xdg_mime_parent_list_free (parent_list);
668       parent_list = NULL;
669     }
670
671   if (icon_list)
672     {
673       _xdg_mime_icon_list_free (icon_list);
674       icon_list = NULL;
675     }
676
677   if (generic_icon_list)
678     {
679       _xdg_mime_icon_list_free (generic_icon_list);
680       generic_icon_list = NULL;
681     }
682   
683   if (_caches)
684     {
685       int i;
686
687       for (i = 0; i < n_caches; i++)
688         _xdg_mime_cache_unref (_caches[i]);
689       free (_caches);
690       _caches = NULL;
691       n_caches = 0;
692     }
693
694   for (list = callback_list; list; list = list->next)
695     (list->callback) (list->data);
696
697   need_reread = TRUE;
698 }
699
700 int
701 xdg_mime_get_max_buffer_extents (void)
702 {
703   xdg_mime_init ();
704   
705   if (_caches)
706     return _xdg_mime_cache_get_max_buffer_extents ();
707
708   return _xdg_mime_magic_get_buffer_extents (global_magic);
709 }
710
711 const char *
712 _xdg_mime_unalias_mime_type (const char *mime_type)
713 {
714   const char *lookup;
715
716   if (_caches)
717     return _xdg_mime_cache_unalias_mime_type (mime_type);
718
719   if ((lookup = _xdg_mime_alias_list_lookup (alias_list, mime_type)) != NULL)
720     return lookup;
721
722   return mime_type;
723 }
724
725 API const char *
726 xdg_mime_unalias_mime_type (const char *mime_type)
727 {
728   xdg_mime_init ();
729
730   return _xdg_mime_unalias_mime_type (mime_type);
731 }
732
733 int
734 _xdg_mime_mime_type_equal (const char *mime_a,
735                            const char *mime_b)
736 {
737   const char *unalias_a, *unalias_b;
738
739   unalias_a = _xdg_mime_unalias_mime_type (mime_a);
740   unalias_b = _xdg_mime_unalias_mime_type (mime_b);
741
742   if (strcmp (unalias_a, unalias_b) == 0)
743     return 1;
744
745   return 0;
746 }
747
748 int
749 xdg_mime_mime_type_equal (const char *mime_a,
750                           const char *mime_b)
751 {
752   xdg_mime_init ();
753
754   return _xdg_mime_mime_type_equal (mime_a, mime_b);
755 }
756
757 int
758 xdg_mime_media_type_equal (const char *mime_a,
759                            const char *mime_b)
760 {
761   char *sep;
762
763   sep = strchr (mime_a, '/');
764   
765   if (sep && strncmp (mime_a, mime_b, sep - mime_a + 1) == 0)
766     return 1;
767
768   return 0;
769 }
770
771 #if 1
772 static int
773 xdg_mime_is_super_type (const char *mime)
774 {
775   int length;
776   const char *type;
777
778   length = strlen (mime);
779   type = &(mime[length - 2]);
780
781   if (strcmp (type, "/*") == 0)
782     return 1;
783
784   return 0;
785 }
786 #endif
787
788 int
789 _xdg_mime_mime_type_subclass (const char *mime,
790                               const char *base)
791 {
792   const char *umime, *ubase;
793   const char **parents;
794
795   if (_caches)
796     return _xdg_mime_cache_mime_type_subclass (mime, base);
797
798   umime = _xdg_mime_unalias_mime_type (mime);
799   ubase = _xdg_mime_unalias_mime_type (base);
800
801   if (strcmp (umime, ubase) == 0)
802     return 1;
803
804 #if 1  
805   /* Handle supertypes */
806   if (xdg_mime_is_super_type (ubase) &&
807       xdg_mime_media_type_equal (umime, ubase))
808     return 1;
809 #endif
810
811   /*  Handle special cases text/plain and application/octet-stream */
812   if (strcmp (ubase, "text/plain") == 0 && 
813       strncmp (umime, "text/", 5) == 0)
814     return 1;
815
816   if (strcmp (ubase, "application/octet-stream") == 0)
817     return 1;
818   
819   parents = _xdg_mime_parent_list_lookup (parent_list, umime);
820   for (; parents && *parents; parents++)
821     {
822       if (_xdg_mime_mime_type_subclass (*parents, ubase))
823         return 1;
824     }
825
826   return 0;
827 }
828
829 int
830 xdg_mime_mime_type_subclass (const char *mime,
831                              const char *base)
832 {
833   xdg_mime_init ();
834
835   return _xdg_mime_mime_type_subclass (mime, base);
836 }
837
838 char **
839 xdg_mime_list_mime_parents (const char *mime)
840 {
841   const char **parents;
842   char **result;
843   int i, n;
844
845   if (_caches)
846     return _xdg_mime_cache_list_mime_parents (mime);
847
848   parents = xdg_mime_get_mime_parents (mime);
849
850   if (!parents)
851     return NULL;
852
853   for (i = 0; parents[i]; i++) ;
854   
855   n = (i + 1) * sizeof (char *);
856   result = (char **) malloc (n);
857   memcpy (result, parents, n);
858
859   return result;
860 }
861
862 const char **
863 xdg_mime_get_mime_parents (const char *mime)
864 {
865   const char *umime;
866
867   xdg_mime_init ();
868
869   umime = _xdg_mime_unalias_mime_type (mime);
870
871   return _xdg_mime_parent_list_lookup (parent_list, umime);
872 }
873
874 void 
875 xdg_mime_dump (void)
876 {
877   xdg_mime_init();
878
879   printf ("*** ALIASES ***\n\n");
880   _xdg_mime_alias_list_dump (alias_list);
881   printf ("\n*** PARENTS ***\n\n");
882   _xdg_mime_parent_list_dump (parent_list);
883   printf ("\n*** CACHE ***\n\n");
884   _xdg_glob_hash_dump (global_hash);
885   printf ("\n*** GLOBS ***\n\n");
886   _xdg_glob_hash_dump (global_hash);
887   printf ("\n*** GLOBS REVERSE TREE ***\n\n");
888   _xdg_mime_cache_glob_dump ();
889 }
890
891
892 /* Registers a function to be called every time the mime database reloads its files
893  */
894 int
895 xdg_mime_register_reload_callback (XdgMimeCallback  callback,
896                                    void            *data,
897                                    XdgMimeDestroy   destroy)
898 {
899   XdgCallbackList *list_el;
900   static int callback_id = 1;
901
902   /* Make a new list element */
903   list_el = calloc (1, sizeof (XdgCallbackList));
904   list_el->callback_id = callback_id;
905   list_el->callback = callback;
906   list_el->data = data;
907   list_el->destroy = destroy;
908   list_el->next = callback_list;
909   if (list_el->next)
910     list_el->next->prev = list_el;
911
912   callback_list = list_el;
913   callback_id ++;
914
915   return callback_id - 1;
916 }
917
918 void
919 xdg_mime_remove_callback (int callback_id)
920 {
921   XdgCallbackList *list;
922
923   for (list = callback_list; list; list = list->next)
924     {
925       if (list->callback_id == callback_id)
926         {
927           if (list->next)
928             list->next = list->prev;
929
930           if (list->prev)
931             list->prev->next = list->next;
932           else
933             callback_list = list->next;
934
935           /* invoke the destroy handler */
936           (list->destroy) (list->data);
937           free (list);
938           return;
939         }
940     }
941 }
942
943 API const char *
944 xdg_mime_get_icon (const char *mime)
945 {
946   xdg_mime_init ();
947   
948   if (_caches)
949     return _xdg_mime_cache_get_icon (mime);
950
951   return _xdg_mime_icon_list_lookup (icon_list, mime);
952 }
953
954 API const char *
955 xdg_mime_get_generic_icon (const char *mime)
956 {
957   xdg_mime_init ();
958   
959   if (_caches)
960     return _xdg_mime_cache_get_generic_icon (mime);
961
962   return _xdg_mime_icon_list_lookup (generic_icon_list, mime);
963 }