Release version 0.0.15
[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   int fd;
537
538   if (file_name == NULL)
539     return NULL;
540   if (! _xdg_utf8_validate (file_name))
541     return NULL;
542
543   xdg_mime_init ();
544
545   if (_caches)
546     return _xdg_mime_cache_get_mime_type_for_file (file_name, statbuf);
547
548   base_name = _xdg_get_base_name (file_name);
549   n = _xdg_glob_hash_lookup_file_name (global_hash, base_name, mime_types, 5);
550
551   if (n == 1)
552     return mime_types[0];
553
554   file = fopen (file_name, "r");
555   if (file == NULL)
556     {
557       free (data);
558       return XDG_MIME_TYPE_UNKNOWN;
559     }
560
561   if (!statbuf)
562     {
563       fd = fileno(file);
564       if (fstat (fd, &buf) != 0)
565         return XDG_MIME_TYPE_UNKNOWN;
566
567       statbuf = &buf;
568     }
569
570   if (!S_ISREG (statbuf->st_mode))
571     return XDG_MIME_TYPE_UNKNOWN;
572
573   /* FIXME: Need to make sure that max_extent isn't totally broken.  This could
574    * be large and need getting from a stream instead of just reading it all
575    * in. */
576   max_extent = _xdg_mime_magic_get_buffer_extents (global_magic);
577   data = malloc (max_extent);
578   if (data == NULL)
579     return XDG_MIME_TYPE_UNKNOWN;
580         
581   bytes_read = fread (data, 1, max_extent, file);
582   if (ferror (file))
583     {
584       free (data);
585       fclose (file);
586       return XDG_MIME_TYPE_UNKNOWN;
587     }
588
589   mime_type = _xdg_mime_magic_lookup_data (global_magic, data, bytes_read, NULL,
590                                            mime_types, n);
591
592   free (data);
593   fclose (file);
594
595   if (mime_type)
596     return mime_type;
597
598   return XDG_MIME_TYPE_UNKNOWN;
599 }
600
601 API const char *
602 xdg_mime_get_mime_type_from_file_name (const char *file_name)
603 {
604   const char *mime_type;
605
606   xdg_mime_init ();
607
608   if (_caches)
609     return _xdg_mime_cache_get_mime_type_from_file_name (file_name);
610
611   if (_xdg_glob_hash_lookup_file_name (global_hash, file_name, &mime_type, 1))
612     return mime_type;
613   else
614     return XDG_MIME_TYPE_UNKNOWN;
615 }
616
617 int
618 xdg_mime_get_mime_types_from_file_name (const char *file_name,
619                                         const char  *mime_types[],
620                                         int          n_mime_types)
621 {
622   xdg_mime_init ();
623   
624   if (_caches)
625     return _xdg_mime_cache_get_mime_types_from_file_name (file_name, mime_types, n_mime_types);
626   
627   return _xdg_glob_hash_lookup_file_name (global_hash, file_name, mime_types, n_mime_types);
628 }
629
630 int
631 xdg_mime_is_valid_mime_type (const char *mime_type)
632 {
633   /* FIXME: We should make this a better test
634    */
635   return _xdg_utf8_validate (mime_type);
636 }
637
638 void
639 xdg_mime_shutdown (void)
640 {
641   XdgCallbackList *list;
642
643   /* FIXME: Need to make this (and the whole library) thread safe */
644   if (dir_time_list)
645     {
646       xdg_dir_time_list_free (dir_time_list);
647       dir_time_list = NULL;
648     }
649         
650   if (global_hash)
651     {
652       _xdg_glob_hash_free (global_hash);
653       global_hash = NULL;
654     }
655   if (global_magic)
656     {
657       _xdg_mime_magic_free (global_magic);
658       global_magic = NULL;
659     }
660
661   if (alias_list)
662     {
663       _xdg_mime_alias_list_free (alias_list);
664       alias_list = NULL;
665     }
666
667   if (parent_list)
668     {
669       _xdg_mime_parent_list_free (parent_list);
670       parent_list = NULL;
671     }
672
673   if (icon_list)
674     {
675       _xdg_mime_icon_list_free (icon_list);
676       icon_list = NULL;
677     }
678
679   if (generic_icon_list)
680     {
681       _xdg_mime_icon_list_free (generic_icon_list);
682       generic_icon_list = NULL;
683     }
684   
685   if (_caches)
686     {
687       int i;
688
689       for (i = 0; i < n_caches; i++)
690         _xdg_mime_cache_unref (_caches[i]);
691       free (_caches);
692       _caches = NULL;
693       n_caches = 0;
694     }
695
696   for (list = callback_list; list; list = list->next)
697     (list->callback) (list->data);
698
699   need_reread = TRUE;
700 }
701
702 int
703 xdg_mime_get_max_buffer_extents (void)
704 {
705   xdg_mime_init ();
706   
707   if (_caches)
708     return _xdg_mime_cache_get_max_buffer_extents ();
709
710   return _xdg_mime_magic_get_buffer_extents (global_magic);
711 }
712
713 const char *
714 _xdg_mime_unalias_mime_type (const char *mime_type)
715 {
716   const char *lookup;
717
718   if (_caches)
719     return _xdg_mime_cache_unalias_mime_type (mime_type);
720
721   if ((lookup = _xdg_mime_alias_list_lookup (alias_list, mime_type)) != NULL)
722     return lookup;
723
724   return mime_type;
725 }
726
727 API const char *
728 xdg_mime_unalias_mime_type (const char *mime_type)
729 {
730   xdg_mime_init ();
731
732   return _xdg_mime_unalias_mime_type (mime_type);
733 }
734
735 int
736 _xdg_mime_mime_type_equal (const char *mime_a,
737                            const char *mime_b)
738 {
739   const char *unalias_a, *unalias_b;
740
741   unalias_a = _xdg_mime_unalias_mime_type (mime_a);
742   unalias_b = _xdg_mime_unalias_mime_type (mime_b);
743
744   if (strcmp (unalias_a, unalias_b) == 0)
745     return 1;
746
747   return 0;
748 }
749
750 int
751 xdg_mime_mime_type_equal (const char *mime_a,
752                           const char *mime_b)
753 {
754   xdg_mime_init ();
755
756   return _xdg_mime_mime_type_equal (mime_a, mime_b);
757 }
758
759 int
760 xdg_mime_media_type_equal (const char *mime_a,
761                            const char *mime_b)
762 {
763   char *sep;
764
765   sep = strchr (mime_a, '/');
766   
767   if (sep && strncmp (mime_a, mime_b, sep - mime_a + 1) == 0)
768     return 1;
769
770   return 0;
771 }
772
773 #if 1
774 static int
775 xdg_mime_is_super_type (const char *mime)
776 {
777   int length;
778   const char *type;
779
780   length = strlen (mime);
781   type = &(mime[length - 2]);
782
783   if (strcmp (type, "/*") == 0)
784     return 1;
785
786   return 0;
787 }
788 #endif
789
790 int
791 _xdg_mime_mime_type_subclass (const char *mime,
792                               const char *base)
793 {
794   const char *umime, *ubase;
795   const char **parents;
796
797   if (_caches)
798     return _xdg_mime_cache_mime_type_subclass (mime, base);
799
800   umime = _xdg_mime_unalias_mime_type (mime);
801   ubase = _xdg_mime_unalias_mime_type (base);
802
803   if (strcmp (umime, ubase) == 0)
804     return 1;
805
806 #if 1  
807   /* Handle supertypes */
808   if (xdg_mime_is_super_type (ubase) &&
809       xdg_mime_media_type_equal (umime, ubase))
810     return 1;
811 #endif
812
813   /*  Handle special cases text/plain and application/octet-stream */
814   if (strcmp (ubase, "text/plain") == 0 && 
815       strncmp (umime, "text/", 5) == 0)
816     return 1;
817
818   if (strcmp (ubase, "application/octet-stream") == 0)
819     return 1;
820   
821   parents = _xdg_mime_parent_list_lookup (parent_list, umime);
822   for (; parents && *parents; parents++)
823     {
824       if (_xdg_mime_mime_type_subclass (*parents, ubase))
825         return 1;
826     }
827
828   return 0;
829 }
830
831 int
832 xdg_mime_mime_type_subclass (const char *mime,
833                              const char *base)
834 {
835   xdg_mime_init ();
836
837   return _xdg_mime_mime_type_subclass (mime, base);
838 }
839
840 char **
841 xdg_mime_list_mime_parents (const char *mime)
842 {
843   const char **parents;
844   char **result;
845   int i, n;
846
847   if (_caches)
848     return _xdg_mime_cache_list_mime_parents (mime);
849
850   parents = xdg_mime_get_mime_parents (mime);
851
852   if (!parents)
853     return NULL;
854
855   for (i = 0; parents[i]; i++) ;
856   
857   n = (i + 1) * sizeof (char *);
858   result = (char **) malloc (n);
859   memcpy (result, parents, n);
860
861   return result;
862 }
863
864 const char **
865 xdg_mime_get_mime_parents (const char *mime)
866 {
867   const char *umime;
868
869   xdg_mime_init ();
870
871   umime = _xdg_mime_unalias_mime_type (mime);
872
873   return _xdg_mime_parent_list_lookup (parent_list, umime);
874 }
875
876 void 
877 xdg_mime_dump (void)
878 {
879   xdg_mime_init();
880
881   printf ("*** ALIASES ***\n\n");
882   _xdg_mime_alias_list_dump (alias_list);
883   printf ("\n*** PARENTS ***\n\n");
884   _xdg_mime_parent_list_dump (parent_list);
885   printf ("\n*** CACHE ***\n\n");
886   _xdg_glob_hash_dump (global_hash);
887   printf ("\n*** GLOBS ***\n\n");
888   _xdg_glob_hash_dump (global_hash);
889   printf ("\n*** GLOBS REVERSE TREE ***\n\n");
890   _xdg_mime_cache_glob_dump ();
891 }
892
893
894 /* Registers a function to be called every time the mime database reloads its files
895  */
896 int
897 xdg_mime_register_reload_callback (XdgMimeCallback  callback,
898                                    void            *data,
899                                    XdgMimeDestroy   destroy)
900 {
901   XdgCallbackList *list_el;
902   static int callback_id = 1;
903
904   /* Make a new list element */
905   list_el = calloc (1, sizeof (XdgCallbackList));
906   list_el->callback_id = callback_id;
907   list_el->callback = callback;
908   list_el->data = data;
909   list_el->destroy = destroy;
910   list_el->next = callback_list;
911   if (list_el->next)
912     list_el->next->prev = list_el;
913
914   callback_list = list_el;
915   callback_id ++;
916
917   return callback_id - 1;
918 }
919
920 void
921 xdg_mime_remove_callback (int callback_id)
922 {
923   XdgCallbackList *list;
924
925   for (list = callback_list; list; list = list->next)
926     {
927       if (list->callback_id == callback_id)
928         {
929           if (list->next)
930             list->next = list->prev;
931
932           if (list->prev)
933             list->prev->next = list->next;
934           else
935             callback_list = list->next;
936
937           /* invoke the destroy handler */
938           (list->destroy) (list->data);
939           free (list);
940           return;
941         }
942     }
943 }
944
945 API const char *
946 xdg_mime_get_icon (const char *mime)
947 {
948   xdg_mime_init ();
949   
950   if (_caches)
951     return _xdg_mime_cache_get_icon (mime);
952
953   return _xdg_mime_icon_list_lookup (icon_list, mime);
954 }
955
956 API const char *
957 xdg_mime_get_generic_icon (const char *mime)
958 {
959   xdg_mime_init ();
960   
961   if (_caches)
962     return _xdg_mime_cache_get_generic_icon (mime);
963
964   return _xdg_mime_icon_list_lookup (generic_icon_list, mime);
965 }