Merge remote branch 'gvdb/master'
[platform/upstream/glib.git] / gio / gdesktopappinfo.c
1 /* GIO - GLib Input, Output and Streaming Library
2  * 
3  * Copyright (C) 2006-2007 Red Hat, Inc.
4  * Copyright © 2007 Ryan Lortie
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General
17  * Public License along with this library; if not, write to the
18  * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
19  * Boston, MA 02111-1307, USA.
20  *
21  * Author: Alexander Larsson <alexl@redhat.com>
22  */
23
24 #include "config.h"
25
26 #include <errno.h>
27 #include <string.h>
28 #include <unistd.h>
29 #include <sys/wait.h>
30
31 #ifdef HAVE_CRT_EXTERNS_H
32 #include <crt_externs.h>
33 #endif
34
35 #undef G_DISABLE_DEPRECATED
36
37 #include "gcontenttypeprivate.h"
38 #include "gdesktopappinfo.h"
39 #include "gfile.h"
40 #include "gioerror.h"
41 #include "gthemedicon.h"
42 #include "gfileicon.h"
43 #include <glib/gstdio.h>
44 #include "glibintl.h"
45 #include "giomodule-priv.h"
46 #include "gappinfo.h"
47
48
49 /**
50  * SECTION:gdesktopappinfo
51  * @title: GDesktopAppInfo
52  * @short_description: Application information from desktop files
53  * @include: gio/gdesktopappinfo.h
54  *
55  * #GDesktopAppInfo is an implementation of #GAppInfo based on
56  * desktop files.
57  *
58  * Note that <filename>&lt;gio/gdesktopappinfo.h&gt;</filename> belongs to
59  * the UNIX-specific GIO interfaces, thus you have to use the
60  * <filename>gio-unix-2.0.pc</filename> pkg-config file when using it.
61  */
62
63 #define DEFAULT_APPLICATIONS_GROUP  "Default Applications"
64 #define ADDED_ASSOCIATIONS_GROUP    "Added Associations"
65 #define REMOVED_ASSOCIATIONS_GROUP  "Removed Associations"
66 #define MIME_CACHE_GROUP            "MIME Cache"
67 #define FULL_NAME_KEY               "X-GNOME-FullName"
68
69 static void     g_desktop_app_info_iface_init         (GAppInfoIface    *iface);
70 static GList *  get_all_desktop_entries_for_mime_type (const char       *base_mime_type,
71                                                        const char      **except,
72                                                        gboolean          include_fallback,
73                                                        char            **explicit_default);
74 static void     mime_info_cache_reload                (const char       *dir);
75 static gboolean g_desktop_app_info_ensure_saved       (GDesktopAppInfo  *info,
76                                                        GError          **error);
77
78 /**
79  * GDesktopAppInfo:
80  * 
81  * Information about an installed application from a desktop file.
82  */
83 struct _GDesktopAppInfo
84 {
85   GObject parent_instance;
86
87   char *desktop_id;
88   char *filename;
89
90   char *name;
91   /* FIXME: what about GenericName ? */
92   char *fullname;
93   char *comment;
94   char *icon_name;
95   GIcon *icon;
96   char **only_show_in;
97   char **not_show_in;
98   char *try_exec;
99   char *exec;
100   char *binary;
101   char *path;
102
103   guint nodisplay       : 1;
104   guint hidden          : 1;
105   guint terminal        : 1;
106   guint startup_notify  : 1;
107   guint no_fuse         : 1;
108   /* FIXME: what about StartupWMClass ? */
109 };
110
111 typedef enum {
112   UPDATE_MIME_NONE = 1 << 0,
113   UPDATE_MIME_SET_DEFAULT = 1 << 1,
114   UPDATE_MIME_SET_NON_DEFAULT = 1 << 2,
115   UPDATE_MIME_REMOVE = 1 << 3,
116   UPDATE_MIME_SET_LAST_USED = 1 << 4,
117 } UpdateMimeFlags;
118
119 G_DEFINE_TYPE_WITH_CODE (GDesktopAppInfo, g_desktop_app_info, G_TYPE_OBJECT,
120                          G_IMPLEMENT_INTERFACE (G_TYPE_APP_INFO,
121                                                 g_desktop_app_info_iface_init))
122
123 static gpointer
124 search_path_init (gpointer data)
125 {
126   char **args = NULL;
127   const char * const *data_dirs;
128   const char *user_data_dir;
129   int i, length, j;
130
131   data_dirs = g_get_system_data_dirs ();
132   length = g_strv_length ((char **) data_dirs);
133   
134   args = g_new (char *, length + 2);
135   
136   j = 0;
137   user_data_dir = g_get_user_data_dir ();
138   args[j++] = g_build_filename (user_data_dir, "applications", NULL);
139   for (i = 0; i < length; i++)
140     args[j++] = g_build_filename (data_dirs[i],
141                                   "applications", NULL);
142   args[j++] = NULL;
143   
144   return args;
145 }
146   
147 static const char * const *
148 get_applications_search_path (void)
149 {
150   static GOnce once_init = G_ONCE_INIT;
151   return g_once (&once_init, search_path_init, NULL);
152 }
153
154 static void
155 g_desktop_app_info_finalize (GObject *object)
156 {
157   GDesktopAppInfo *info;
158
159   info = G_DESKTOP_APP_INFO (object);
160
161   g_free (info->desktop_id);
162   g_free (info->filename);
163   g_free (info->name);
164   g_free (info->fullname);
165   g_free (info->comment);
166   g_free (info->icon_name);
167   if (info->icon)
168     g_object_unref (info->icon);
169   g_strfreev (info->only_show_in);
170   g_strfreev (info->not_show_in);
171   g_free (info->try_exec);
172   g_free (info->exec);
173   g_free (info->binary);
174   g_free (info->path);
175   
176   G_OBJECT_CLASS (g_desktop_app_info_parent_class)->finalize (object);
177 }
178
179 static void
180 g_desktop_app_info_class_init (GDesktopAppInfoClass *klass)
181 {
182   GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
183   
184   gobject_class->finalize = g_desktop_app_info_finalize;
185 }
186
187 static void
188 g_desktop_app_info_init (GDesktopAppInfo *local)
189 {
190 }
191
192 static char *
193 binary_from_exec (const char *exec)
194 {
195   const char *p, *start;
196   
197   p = exec;
198   while (*p == ' ')
199     p++;
200   start = p;
201   while (*p != ' ' && *p != 0)
202     p++;
203   
204   return g_strndup (start, p - start);
205   
206 }
207
208 /**
209  * g_desktop_app_info_new_from_keyfile:
210  * @key_file: an opened #GKeyFile
211  * 
212  * Creates a new #GDesktopAppInfo.
213  *
214  * Returns: a new #GDesktopAppInfo or %NULL on error.
215  *
216  * Since: 2.18
217  **/
218 GDesktopAppInfo *
219 g_desktop_app_info_new_from_keyfile (GKeyFile *key_file)
220 {
221   GDesktopAppInfo *info;
222   char *start_group;
223   char *type;
224   char *try_exec;
225   
226   start_group = g_key_file_get_start_group (key_file);
227   if (start_group == NULL || strcmp (start_group, G_KEY_FILE_DESKTOP_GROUP) != 0)
228     {
229       g_free (start_group);
230       return NULL;
231     }
232   g_free (start_group);
233
234   type = g_key_file_get_string (key_file,
235                                 G_KEY_FILE_DESKTOP_GROUP,
236                                 G_KEY_FILE_DESKTOP_KEY_TYPE,
237                                 NULL);
238   if (type == NULL || strcmp (type, G_KEY_FILE_DESKTOP_TYPE_APPLICATION) != 0)
239     {
240       g_free (type);
241       return NULL;
242     }
243   g_free (type);
244
245   try_exec = g_key_file_get_string (key_file,
246                                     G_KEY_FILE_DESKTOP_GROUP,
247                                     G_KEY_FILE_DESKTOP_KEY_TRY_EXEC,
248                                     NULL);
249   if (try_exec && try_exec[0] != '\0')
250     {
251       char *t;
252       t = g_find_program_in_path (try_exec);
253       if (t == NULL)
254         {
255           g_free (try_exec);
256           return NULL;
257         }
258       g_free (t);
259     }
260
261   info = g_object_new (G_TYPE_DESKTOP_APP_INFO, NULL);
262   info->filename = NULL;
263
264   info->name = g_key_file_get_locale_string (key_file, G_KEY_FILE_DESKTOP_GROUP, G_KEY_FILE_DESKTOP_KEY_NAME, NULL, NULL);
265   info->fullname = g_key_file_get_locale_string (key_file, G_KEY_FILE_DESKTOP_GROUP, FULL_NAME_KEY, NULL, NULL);
266   info->comment = g_key_file_get_locale_string (key_file, G_KEY_FILE_DESKTOP_GROUP, G_KEY_FILE_DESKTOP_KEY_COMMENT, NULL, NULL);
267   info->nodisplay = g_key_file_get_boolean (key_file, G_KEY_FILE_DESKTOP_GROUP, G_KEY_FILE_DESKTOP_KEY_NO_DISPLAY, NULL) != FALSE;
268   info->icon_name =  g_key_file_get_locale_string (key_file, G_KEY_FILE_DESKTOP_GROUP, G_KEY_FILE_DESKTOP_KEY_ICON, NULL, NULL);
269   info->only_show_in = g_key_file_get_string_list (key_file, G_KEY_FILE_DESKTOP_GROUP, G_KEY_FILE_DESKTOP_KEY_ONLY_SHOW_IN, NULL, NULL);
270   info->not_show_in = g_key_file_get_string_list (key_file, G_KEY_FILE_DESKTOP_GROUP, G_KEY_FILE_DESKTOP_KEY_NOT_SHOW_IN, NULL, NULL);
271   info->try_exec = try_exec;
272   info->exec = g_key_file_get_string (key_file, G_KEY_FILE_DESKTOP_GROUP, G_KEY_FILE_DESKTOP_KEY_EXEC, NULL);
273   info->path = g_key_file_get_string (key_file, G_KEY_FILE_DESKTOP_GROUP, G_KEY_FILE_DESKTOP_KEY_PATH, NULL);
274   info->terminal = g_key_file_get_boolean (key_file, G_KEY_FILE_DESKTOP_GROUP, G_KEY_FILE_DESKTOP_KEY_TERMINAL, NULL) != FALSE;
275   info->startup_notify = g_key_file_get_boolean (key_file, G_KEY_FILE_DESKTOP_GROUP, G_KEY_FILE_DESKTOP_KEY_STARTUP_NOTIFY, NULL) != FALSE;
276   info->no_fuse = g_key_file_get_boolean (key_file, G_KEY_FILE_DESKTOP_GROUP, "X-GIO-NoFuse", NULL) != FALSE;
277   info->hidden = g_key_file_get_boolean (key_file, G_KEY_FILE_DESKTOP_GROUP, G_KEY_FILE_DESKTOP_KEY_HIDDEN, NULL) != FALSE;
278   
279   info->icon = NULL;
280   if (info->icon_name)
281     {
282       if (g_path_is_absolute (info->icon_name))
283         {
284           GFile *file;
285           
286           file = g_file_new_for_path (info->icon_name);
287           info->icon = g_file_icon_new (file);
288           g_object_unref (file);
289         }
290       else
291         {
292           char *p;
293
294           /* Work around a common mistake in desktop files */    
295           if ((p = strrchr (info->icon_name, '.')) != NULL &&
296               (strcmp (p, ".png") == 0 ||
297                strcmp (p, ".xpm") == 0 ||
298                strcmp (p, ".svg") == 0)) 
299             *p = 0;
300
301           info->icon = g_themed_icon_new (info->icon_name);
302         }
303     }
304   
305   if (info->exec)
306     info->binary = binary_from_exec (info->exec);
307   
308   if (info->path && info->path[0] == '\0')
309     {
310       g_free (info->path);
311       info->path = NULL;
312     }
313
314   return info;
315 }
316
317 /**
318  * g_desktop_app_info_new_from_filename:
319  * @filename: the path of a desktop file, in the GLib filename encoding
320  * 
321  * Creates a new #GDesktopAppInfo.
322  *
323  * Returns: a new #GDesktopAppInfo or %NULL on error.
324  **/
325 GDesktopAppInfo *
326 g_desktop_app_info_new_from_filename (const char *filename)
327 {
328   GKeyFile *key_file;
329   GDesktopAppInfo *info = NULL;
330
331   key_file = g_key_file_new ();
332   
333   if (g_key_file_load_from_file (key_file,
334                                  filename,
335                                  G_KEY_FILE_NONE,
336                                  NULL))
337     {
338       info = g_desktop_app_info_new_from_keyfile (key_file);
339       if (info)
340         info->filename = g_strdup (filename);
341     }  
342
343   g_key_file_free (key_file);
344
345   return info;
346 }
347
348 /**
349  * g_desktop_app_info_new:
350  * @desktop_id: the desktop file id
351  * 
352  * Creates a new #GDesktopAppInfo based on a desktop file id. 
353  *
354  * A desktop file id is the basename of the desktop file, including the 
355  * .desktop extension. GIO is looking for a desktop file with this name 
356  * in the <filename>applications</filename> subdirectories of the XDG data
357  * directories (i.e. the directories specified in the 
358  * <envar>XDG_DATA_HOME</envar> and <envar>XDG_DATA_DIRS</envar> environment 
359  * variables). GIO also supports the prefix-to-subdirectory mapping that is
360  * described in the <ulink url="http://standards.freedesktop.org/menu-spec/latest/">Menu Spec</ulink> 
361  * (i.e. a desktop id of kde-foo.desktop will match
362  * <filename>/usr/share/applications/kde/foo.desktop</filename>).
363  * 
364  * Returns: a new #GDesktopAppInfo, or %NULL if no desktop file with that id
365  */
366 GDesktopAppInfo *
367 g_desktop_app_info_new (const char *desktop_id)
368 {
369   GDesktopAppInfo *appinfo;
370   const char * const *dirs;
371   char *basename;
372   int i;
373
374   dirs = get_applications_search_path ();
375
376   basename = g_strdup (desktop_id);
377   
378   for (i = 0; dirs[i] != NULL; i++)
379     {
380       char *filename;
381       char *p;
382
383       filename = g_build_filename (dirs[i], desktop_id, NULL);
384       appinfo = g_desktop_app_info_new_from_filename (filename);
385       g_free (filename);
386       if (appinfo != NULL)
387         goto found;
388
389       p = basename;
390       while ((p = strchr (p, '-')) != NULL)
391         {
392           *p = '/';
393           
394           filename = g_build_filename (dirs[i], basename, NULL);
395           appinfo = g_desktop_app_info_new_from_filename (filename);
396           g_free (filename);
397           if (appinfo != NULL)
398             goto found;
399           *p = '-';
400           p++;
401         }
402     }
403   
404   g_free (basename);
405   return NULL;
406
407  found:
408   g_free (basename);
409   
410   appinfo->desktop_id = g_strdup (desktop_id);
411
412   if (g_desktop_app_info_get_is_hidden (appinfo))
413     {
414       g_object_unref (appinfo);
415       appinfo = NULL;
416     }
417   
418   return appinfo;
419 }
420
421 static GAppInfo *
422 g_desktop_app_info_dup (GAppInfo *appinfo)
423 {
424   GDesktopAppInfo *info = G_DESKTOP_APP_INFO (appinfo);
425   GDesktopAppInfo *new_info;
426   
427   new_info = g_object_new (G_TYPE_DESKTOP_APP_INFO, NULL);
428
429   new_info->filename = g_strdup (info->filename);
430   new_info->desktop_id = g_strdup (info->desktop_id);
431   
432   new_info->name = g_strdup (info->name);
433   new_info->fullname = g_strdup (info->fullname);
434   new_info->comment = g_strdup (info->comment);
435   new_info->nodisplay = info->nodisplay;
436   new_info->icon_name = g_strdup (info->icon_name);
437   if (info->icon)
438     new_info->icon = g_object_ref (info->icon);
439   new_info->only_show_in = g_strdupv (info->only_show_in);
440   new_info->not_show_in = g_strdupv (info->not_show_in);
441   new_info->try_exec = g_strdup (info->try_exec);
442   new_info->exec = g_strdup (info->exec);
443   new_info->binary = g_strdup (info->binary);
444   new_info->path = g_strdup (info->path);
445   new_info->hidden = info->hidden;
446   new_info->terminal = info->terminal;
447   new_info->startup_notify = info->startup_notify;
448   
449   return G_APP_INFO (new_info);
450 }
451
452 static gboolean
453 g_desktop_app_info_equal (GAppInfo *appinfo1,
454                           GAppInfo *appinfo2)
455 {
456   GDesktopAppInfo *info1 = G_DESKTOP_APP_INFO (appinfo1);
457   GDesktopAppInfo *info2 = G_DESKTOP_APP_INFO (appinfo2);
458
459   if (info1->desktop_id == NULL ||
460       info2->desktop_id == NULL)
461     return info1 == info2;
462
463   return strcmp (info1->desktop_id, info2->desktop_id) == 0;
464 }
465
466 static const char *
467 g_desktop_app_info_get_id (GAppInfo *appinfo)
468 {
469   GDesktopAppInfo *info = G_DESKTOP_APP_INFO (appinfo);
470
471   return info->desktop_id;
472 }
473
474 static const char *
475 g_desktop_app_info_get_name (GAppInfo *appinfo)
476 {
477   GDesktopAppInfo *info = G_DESKTOP_APP_INFO (appinfo);
478
479   if (info->name == NULL)
480     return _("Unnamed");
481   return info->name;
482 }
483
484 static const char *
485 g_desktop_app_info_get_display_name (GAppInfo *appinfo)
486 {
487   GDesktopAppInfo *info = G_DESKTOP_APP_INFO (appinfo);
488
489   if (info->fullname == NULL)
490     return g_desktop_app_info_get_name (appinfo);
491   return info->fullname;
492 }
493
494 /**
495  * g_desktop_app_info_get_is_hidden:
496  * @info: a #GDesktopAppInfo.
497  *
498  * A desktop file is hidden if the Hidden key in it is
499  * set to True.
500  *
501  * Returns: %TRUE if hidden, %FALSE otherwise. 
502  **/
503 gboolean
504 g_desktop_app_info_get_is_hidden (GDesktopAppInfo *info)
505 {
506   return info->hidden;
507 }
508
509 /**
510  * g_desktop_app_info_get_filename:
511  * @info: a #GDesktopAppInfo
512  *
513  * When @info was created from a known filename, return it.  In some
514  * situations such as the #GDesktopAppInfo returned from
515  * g_desktop_app_info_new_from_keyfile(), this function will return %NULL.
516  *
517  * Returns: The full path to the file for @info, or %NULL if not known.
518  * Since: 2.24
519  */
520 const char *
521 g_desktop_app_info_get_filename (GDesktopAppInfo *info)
522 {
523   return info->filename;
524 }
525
526 static const char *
527 g_desktop_app_info_get_description (GAppInfo *appinfo)
528 {
529   GDesktopAppInfo *info = G_DESKTOP_APP_INFO (appinfo);
530   
531   return info->comment;
532 }
533
534 static const char *
535 g_desktop_app_info_get_executable (GAppInfo *appinfo)
536 {
537   GDesktopAppInfo *info = G_DESKTOP_APP_INFO (appinfo);
538   
539   return info->binary;
540 }
541
542 static const char *
543 g_desktop_app_info_get_commandline (GAppInfo *appinfo)
544 {
545   GDesktopAppInfo *info = G_DESKTOP_APP_INFO (appinfo);
546   
547   return info->exec;
548 }
549
550 static GIcon *
551 g_desktop_app_info_get_icon (GAppInfo *appinfo)
552 {
553   GDesktopAppInfo *info = G_DESKTOP_APP_INFO (appinfo);
554
555   return info->icon;
556 }
557
558 static char *
559 expand_macro_single (char macro, char *uri)
560 {
561   GFile *file;
562   char *result = NULL;
563   char *path, *name;
564
565   file = g_file_new_for_uri (uri);
566   path = g_file_get_path (file);
567   g_object_unref (file);
568   
569   switch (macro)
570     {
571     case 'u':
572     case 'U':   
573       result = g_shell_quote (uri);
574       break;
575     case 'f':
576     case 'F':
577       if (path)
578         result = g_shell_quote (path);
579       break;
580     case 'd':
581     case 'D':
582       if (path)
583         {
584           name = g_path_get_dirname (path);
585           result = g_shell_quote (name);
586           g_free (name);
587         }
588       break;
589     case 'n':
590     case 'N':
591       if (path)
592         {
593           name = g_path_get_basename (path);
594           result = g_shell_quote (name);
595           g_free (name);
596         }
597       break;
598     }
599
600   g_free (path);
601   
602   return result;
603 }
604
605 static void
606 expand_macro (char              macro, 
607               GString          *exec, 
608               GDesktopAppInfo  *info, 
609               GList           **uri_list)
610 {
611   GList *uris = *uri_list;
612   char *expanded;
613   gboolean force_file_uri;
614   char force_file_uri_macro;
615   char *uri;
616
617   g_return_if_fail (exec != NULL);
618
619   /* On %u and %U, pass POSIX file path pointing to the URI via
620    * the FUSE mount in ~/.gvfs. Note that if the FUSE daemon isn't
621    * running or the URI doesn't have a POSIX file path via FUSE
622    * we'll just pass the URI.
623    */
624   force_file_uri_macro = macro;
625   force_file_uri = FALSE;
626   if (!info->no_fuse)
627     {
628       switch (macro)
629         {
630         case 'u':
631           force_file_uri_macro = 'f';
632           force_file_uri = TRUE;
633           break;
634         case 'U':
635           force_file_uri_macro = 'F';
636           force_file_uri = TRUE;
637           break;
638         default:
639           break;
640         }
641     }
642
643   switch (macro)
644     {
645     case 'u':
646     case 'f':
647     case 'd':
648     case 'n':
649       if (uris)
650         {
651           uri = uris->data;
652           if (!force_file_uri ||
653               /* Pass URI if it contains an anchor */
654               strchr (uri, '#') != NULL)
655             {
656               expanded = expand_macro_single (macro, uri);
657             }
658           else
659             {
660               expanded = expand_macro_single (force_file_uri_macro, uri);
661               if (expanded == NULL)
662                 expanded = expand_macro_single (macro, uri);
663             }
664
665           if (expanded)
666             {
667               g_string_append (exec, expanded);
668               g_free (expanded);
669             }
670           uris = uris->next;
671         }
672
673       break;
674
675     case 'U':   
676     case 'F':
677     case 'D':
678     case 'N':
679       while (uris)
680         {
681           uri = uris->data;
682           
683           if (!force_file_uri ||
684               /* Pass URI if it contains an anchor */
685               strchr (uri, '#') != NULL)
686             {
687               expanded = expand_macro_single (macro, uri);
688             }
689           else
690             {
691               expanded = expand_macro_single (force_file_uri_macro, uri);
692               if (expanded == NULL)
693                 expanded = expand_macro_single (macro, uri);
694             }
695
696           if (expanded)
697             {
698               g_string_append (exec, expanded);
699               g_free (expanded);
700             }
701           
702           uris = uris->next;
703           
704           if (uris != NULL && expanded)
705             g_string_append_c (exec, ' ');
706         }
707
708       break;
709
710     case 'i':
711       if (info->icon_name)
712         {
713           g_string_append (exec, "--icon ");
714           expanded = g_shell_quote (info->icon_name);
715           g_string_append (exec, expanded);
716           g_free (expanded);
717         }
718       break;
719
720     case 'c':
721       if (info->name) 
722         {
723           expanded = g_shell_quote (info->name);
724           g_string_append (exec, expanded);
725           g_free (expanded);
726         }
727       break;
728
729     case 'k':
730       if (info->filename) 
731         {
732           expanded = g_shell_quote (info->filename);
733           g_string_append (exec, expanded);
734           g_free (expanded);
735         }
736       break;
737
738     case 'm': /* deprecated */
739       break;
740
741     case '%':
742       g_string_append_c (exec, '%');
743       break;
744     }
745   
746   *uri_list = uris;
747 }
748
749 static gboolean
750 expand_application_parameters (GDesktopAppInfo   *info,
751                                GList            **uris,
752                                int               *argc,
753                                char            ***argv,
754                                GError           **error)
755 {
756   GList *uri_list = *uris;
757   const char *p = info->exec;
758   GString *expanded_exec;
759   gboolean res;
760
761   if (info->exec == NULL)
762     {
763       g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_FAILED,
764                            _("Desktop file didn't specify Exec field"));
765       return FALSE;
766     }
767
768   expanded_exec = g_string_new (NULL);
769
770   while (*p)
771     {
772       if (p[0] == '%' && p[1] != '\0')
773         {
774           expand_macro (p[1], expanded_exec, info, uris);
775           p++;
776         }
777       else
778         g_string_append_c (expanded_exec, *p);
779
780       p++;
781     }
782
783   /* No file substitutions */
784   if (uri_list == *uris && uri_list != NULL)
785     {
786       /* If there is no macro default to %f. This is also what KDE does */
787       g_string_append_c (expanded_exec, ' ');
788       expand_macro ('f', expanded_exec, info, uris);
789     }
790
791   res = g_shell_parse_argv (expanded_exec->str, argc, argv, error);
792   g_string_free (expanded_exec, TRUE);
793   return res;
794 }
795
796 static gboolean
797 prepend_terminal_to_vector (int    *argc,
798                             char ***argv)
799 {
800 #ifndef G_OS_WIN32
801   char **real_argv;
802   int real_argc;
803   int i, j;
804   char **term_argv = NULL;
805   int term_argc = 0;
806   char *check;
807   char **the_argv;
808   
809   g_return_val_if_fail (argc != NULL, FALSE);
810   g_return_val_if_fail (argv != NULL, FALSE);
811         
812   /* sanity */
813   if(*argv == NULL)
814     *argc = 0;
815   
816   the_argv = *argv;
817
818   /* compute size if not given */
819   if (*argc < 0)
820     {
821       for (i = 0; the_argv[i] != NULL; i++)
822         ;
823       *argc = i;
824     }
825   
826   term_argc = 2;
827   term_argv = g_new0 (char *, 3);
828
829   check = g_find_program_in_path ("gnome-terminal");
830   if (check != NULL)
831     {
832       term_argv[0] = check;
833       /* Note that gnome-terminal takes -x and
834        * as -e in gnome-terminal is broken we use that. */
835       term_argv[1] = g_strdup ("-x");
836     }
837   else
838     {
839       if (check == NULL)
840         check = g_find_program_in_path ("nxterm");
841       if (check == NULL)
842         check = g_find_program_in_path ("color-xterm");
843       if (check == NULL)
844         check = g_find_program_in_path ("rxvt");
845       if (check == NULL)
846         check = g_find_program_in_path ("xterm");
847       if (check == NULL)
848         check = g_find_program_in_path ("dtterm");
849       if (check == NULL)
850         {
851           check = g_strdup ("xterm");
852           g_warning ("couldn't find a terminal, falling back to xterm");
853         }
854       term_argv[0] = check;
855       term_argv[1] = g_strdup ("-e");
856     }
857
858   real_argc = term_argc + *argc;
859   real_argv = g_new (char *, real_argc + 1);
860   
861   for (i = 0; i < term_argc; i++)
862     real_argv[i] = term_argv[i];
863   
864   for (j = 0; j < *argc; j++, i++)
865     real_argv[i] = (char *)the_argv[j];
866   
867   real_argv[i] = NULL;
868   
869   g_free (*argv);
870   *argv = real_argv;
871   *argc = real_argc;
872   
873   /* we use g_free here as we sucked all the inner strings
874    * out from it into real_argv */
875   g_free (term_argv);
876   return TRUE;
877 #else
878   return FALSE;
879 #endif /* G_OS_WIN32 */
880 }
881
882 static GList *
883 create_files_for_uris (GList *uris)
884 {
885   GList *res;
886   GList *iter;
887
888   res = NULL;
889
890   for (iter = uris; iter; iter = iter->next)
891     {
892       GFile *file = g_file_new_for_uri ((char *)iter->data);
893       res = g_list_prepend (res, file);
894     }
895
896   return g_list_reverse (res);
897 }
898
899 typedef struct
900 {
901   GSpawnChildSetupFunc user_setup;
902   gpointer user_setup_data;
903   char *display;
904   char *sn_id;
905   char *desktop_file;
906 } ChildSetupData;
907
908 static void
909 child_setup (gpointer user_data)
910 {
911   ChildSetupData *data = user_data;
912
913   if (data->display)
914     g_setenv ("DISPLAY", data->display, TRUE);
915
916   if (data->sn_id)
917     g_setenv ("DESKTOP_STARTUP_ID", data->sn_id, TRUE);
918
919   if (data->desktop_file)
920     {
921       gchar pid[20];
922
923       g_setenv ("GIO_LAUNCHED_DESKTOP_FILE", data->desktop_file, TRUE);
924
925       g_snprintf (pid, 20, "%ld", (long)getpid ());
926       g_setenv ("GIO_LAUNCHED_DESKTOP_FILE_PID", pid, TRUE);
927     }
928
929   if (data->user_setup)
930     data->user_setup (data->user_setup_data);
931 }
932
933 static void
934 notify_desktop_launch (GDBusConnection  *session_bus,
935                        GDesktopAppInfo  *info,
936                        long              pid,
937                        const char       *display,
938                        const char       *sn_id,
939                        GList            *uris)
940 {
941   GDBusMessage *msg;
942   GVariantBuilder uri_variant;
943   GVariantBuilder extras_variant;
944   GList *iter;
945   const char *desktop_file_id;
946
947   if (session_bus == NULL)
948     return;
949
950   g_variant_builder_init (&uri_variant, G_VARIANT_TYPE ("as"));
951   for (iter = uris; iter; iter = iter->next)
952     g_variant_builder_add (&uri_variant, "s", iter->data);
953
954   g_variant_builder_init (&extras_variant, G_VARIANT_TYPE ("a{sv}"));
955   if (sn_id != NULL && g_utf8_validate (sn_id, -1, NULL))
956     g_variant_builder_add (&extras_variant, "{sv}",
957                            "startup-id",
958                            g_variant_new ("s",
959                                           sn_id));
960
961   if (info->filename)
962     desktop_file_id = info->filename;
963   else if (info->desktop_id)
964     desktop_file_id = info->desktop_id;
965   else
966     desktop_file_id = "";
967   
968   msg = g_dbus_message_new_signal ("/org/gtk/gio/DesktopAppInfo",
969                                    "org.gtk.gio.DesktopAppInfo",
970                                    "Launched");
971   g_dbus_message_set_body (msg, g_variant_new ("(@aysxasa{sv})",
972                                                g_variant_new_bytestring (desktop_file_id),
973                                                display ? display : "",
974                                                (gint64)pid,
975                                                &uri_variant,
976                                                &extras_variant));
977   g_dbus_connection_send_message (session_bus,
978                                   msg, 0,
979                                   NULL,
980                                   NULL);
981   g_object_unref (msg);
982 }
983
984 #define _SPAWN_FLAGS_DEFAULT (G_SPAWN_SEARCH_PATH)
985
986 static gboolean
987 _g_desktop_app_info_launch_uris_internal (GAppInfo                   *appinfo,
988                                           GList                      *uris,
989                                           GAppLaunchContext          *launch_context,
990                                           GSpawnFlags                 spawn_flags,
991                                           GSpawnChildSetupFunc        user_setup,
992                                           gpointer                    user_setup_data,
993                                           GDesktopAppLaunchCallback   pid_callback,
994                                           gpointer                    pid_callback_data,
995                                           GError                     **error)
996 {
997   GDesktopAppInfo *info = G_DESKTOP_APP_INFO (appinfo);
998   GDBusConnection *session_bus;
999   gboolean completed = FALSE;
1000   GList *old_uris;
1001   char **argv;
1002   int argc;
1003   ChildSetupData data;
1004
1005   g_return_val_if_fail (appinfo != NULL, FALSE);
1006
1007   argv = NULL;
1008
1009   session_bus = g_bus_get_sync (G_BUS_TYPE_SESSION, NULL, NULL);
1010
1011   do
1012     {
1013       GPid pid;
1014       GList *launched_uris;
1015       GList *iter;
1016
1017       old_uris = uris;
1018       if (!expand_application_parameters (info, &uris,
1019                                           &argc, &argv, error))
1020         goto out;
1021
1022       /* Get the subset of URIs we're launching with this process */
1023       launched_uris = NULL;
1024       for (iter = old_uris; iter != NULL && iter != uris; iter = iter->next)
1025         launched_uris = g_list_prepend (launched_uris, iter->data);
1026       launched_uris = g_list_reverse (launched_uris);
1027       
1028       if (info->terminal && !prepend_terminal_to_vector (&argc, &argv))
1029         {
1030           g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_FAILED,
1031                                _("Unable to find terminal required for application"));
1032           goto out;
1033         }
1034
1035       data.user_setup = user_setup;
1036       data.user_setup_data = user_setup_data;
1037       data.display = NULL;
1038       data.sn_id = NULL;
1039       data.desktop_file = info->filename;
1040
1041       if (launch_context)
1042         {
1043           GList *launched_files = create_files_for_uris (launched_uris);
1044
1045           data.display = g_app_launch_context_get_display (launch_context,
1046                                                            appinfo,
1047                                                            launched_files);
1048
1049           if (info->startup_notify)
1050             data.sn_id = g_app_launch_context_get_startup_notify_id (launch_context,
1051                                                                      appinfo,
1052                                                                      launched_files);
1053           g_list_foreach (launched_files, (GFunc)g_object_unref, NULL);
1054           g_list_free (launched_files);
1055         }
1056
1057       if (!g_spawn_async (info->path,
1058                           argv,
1059                           NULL,
1060                           spawn_flags,
1061                           child_setup,
1062                           &data,
1063                           &pid,
1064                           error))
1065         {
1066           if (data.sn_id)
1067             g_app_launch_context_launch_failed (launch_context, data.sn_id);
1068
1069           g_free (data.sn_id);
1070           g_free (data.display);
1071           g_list_free (launched_uris);
1072
1073           goto out;
1074         }
1075
1076       if (pid_callback != NULL)
1077         pid_callback (info, pid, pid_callback_data);
1078
1079       notify_desktop_launch (session_bus,
1080                              info,
1081                              pid,
1082                              data.display,
1083                              data.sn_id,
1084                              launched_uris);
1085
1086       g_free (data.sn_id);
1087       g_free (data.display);
1088       g_list_free (launched_uris);
1089
1090       g_strfreev (argv);
1091       argv = NULL;
1092     }
1093   while (uris != NULL);
1094
1095   /* TODO - need to handle the process exiting immediately
1096    * after launching an app.  See http://bugzilla.gnome.org/606960
1097    */
1098   if (session_bus != NULL)
1099     g_object_unref (session_bus);
1100
1101   completed = TRUE;
1102
1103  out:
1104   g_strfreev (argv);
1105
1106   return completed;
1107 }
1108
1109 static gboolean
1110 g_desktop_app_info_launch_uris (GAppInfo           *appinfo,
1111                                 GList              *uris,
1112                                 GAppLaunchContext  *launch_context,
1113                                 GError            **error)
1114 {
1115   return _g_desktop_app_info_launch_uris_internal (appinfo, uris,
1116                                                    launch_context,
1117                                                    _SPAWN_FLAGS_DEFAULT,
1118                                                    NULL, NULL, NULL, NULL,
1119                                                    error);
1120 }
1121
1122 static gboolean
1123 g_desktop_app_info_supports_uris (GAppInfo *appinfo)
1124 {
1125   GDesktopAppInfo *info = G_DESKTOP_APP_INFO (appinfo);
1126  
1127   return info->exec && 
1128     ((strstr (info->exec, "%u") != NULL) ||
1129      (strstr (info->exec, "%U") != NULL));
1130 }
1131
1132 static gboolean
1133 g_desktop_app_info_supports_files (GAppInfo *appinfo)
1134 {
1135   GDesktopAppInfo *info = G_DESKTOP_APP_INFO (appinfo);
1136  
1137   return info->exec && 
1138     ((strstr (info->exec, "%f") != NULL) ||
1139      (strstr (info->exec, "%F") != NULL));
1140 }
1141
1142 static gboolean
1143 g_desktop_app_info_launch (GAppInfo           *appinfo,
1144                            GList              *files,
1145                            GAppLaunchContext  *launch_context,
1146                            GError            **error)
1147 {
1148   GList *uris;
1149   char *uri;
1150   gboolean res;
1151
1152   uris = NULL;
1153   while (files)
1154     {
1155       uri = g_file_get_uri (files->data);
1156       uris = g_list_prepend (uris, uri);
1157       files = files->next;
1158     }
1159   
1160   uris = g_list_reverse (uris);
1161   
1162   res = g_desktop_app_info_launch_uris (appinfo, uris, launch_context, error);
1163   
1164   g_list_foreach  (uris, (GFunc)g_free, NULL);
1165   g_list_free (uris);
1166   
1167   return res;
1168 }
1169
1170 /**
1171  * g_desktop_app_info_launch_uris_as_manager:
1172  * @appinfo: a #GDesktopAppInfo
1173  * @uris: (element-type utf8): List of URIs
1174  * @launch_context: a #GAppLaunchContext
1175  * @spawn_flags: #GSpawnFlags, used for each process
1176  * @user_setup: (scope call): a #GSpawnChildSetupFunc, used once for
1177  *     each process.
1178  * @user_setup_data: (closure user_setup): User data for @user_setup
1179  * @pid_callback: (scope call): Callback for child processes
1180  * @pid_callback_data: (closure pid_callback): User data for @callback
1181  * @error: a #GError
1182  *
1183  * This function performs the equivalent of g_app_info_launch_uris(),
1184  * but is intended primarily for operating system components that
1185  * launch applications.  Ordinary applications should use
1186  * g_app_info_launch_uris().
1187  *
1188  * In contrast to g_app_info_launch_uris(), all processes created will
1189  * always be run directly as children as if by the UNIX fork()/exec()
1190  * calls.
1191  *
1192  * This guarantee allows additional control over the exact environment
1193  * of the child processes, which is provided via a setup function
1194  * @setup, as well as the process identifier of each child process via
1195  * @pid_callback.  See g_spawn_async() for more information about the
1196  * semantics of the @setup function.
1197  */
1198 gboolean
1199 g_desktop_app_info_launch_uris_as_manager (GDesktopAppInfo            *appinfo,
1200                                            GList                      *uris,
1201                                            GAppLaunchContext          *launch_context,
1202                                            GSpawnFlags                 spawn_flags,
1203                                            GSpawnChildSetupFunc        user_setup,
1204                                            gpointer                    user_setup_data,
1205                                            GDesktopAppLaunchCallback   pid_callback,
1206                                            gpointer                    pid_callback_data,
1207                                            GError                    **error)
1208 {
1209   return _g_desktop_app_info_launch_uris_internal ((GAppInfo*)appinfo,
1210                                                    uris,
1211                                                    launch_context,
1212                                                    spawn_flags,
1213                                                    user_setup,
1214                                                    user_setup_data,
1215                                                    pid_callback,
1216                                                    pid_callback_data,
1217                                                    error);
1218 }
1219
1220 G_LOCK_DEFINE_STATIC (g_desktop_env);
1221 static gchar *g_desktop_env = NULL;
1222
1223 /**
1224  * g_desktop_app_info_set_desktop_env:
1225  * @desktop_env: a string specifying what desktop this is
1226  *
1227  * Sets the name of the desktop that the application is running in.
1228  * This is used by g_app_info_should_show() to evaluate the
1229  * <literal>OnlyShowIn</literal> and <literal>NotShowIn</literal>
1230  * desktop entry fields.
1231  *
1232  * The <ulink url="http://standards.freedesktop.org/menu-spec/latest/">Desktop 
1233  * Menu specification</ulink> recognizes the following:
1234  * <simplelist>
1235  *   <member>GNOME</member>
1236  *   <member>KDE</member>
1237  *   <member>ROX</member>
1238  *   <member>XFCE</member>
1239  *   <member>Old</member> 
1240  * </simplelist>
1241  *
1242  * Should be called only once; subsequent calls are ignored.
1243  */
1244 void
1245 g_desktop_app_info_set_desktop_env (const gchar *desktop_env)
1246 {
1247   G_LOCK (g_desktop_env);
1248   if (!g_desktop_env)
1249     g_desktop_env = g_strdup (desktop_env);
1250   G_UNLOCK (g_desktop_env);
1251 }
1252
1253 static gboolean
1254 g_desktop_app_info_should_show (GAppInfo *appinfo)
1255 {
1256   GDesktopAppInfo *info = G_DESKTOP_APP_INFO (appinfo);
1257   gboolean found;
1258   const gchar *desktop_env;
1259   int i;
1260
1261   if (info->nodisplay)
1262     return FALSE;
1263
1264   G_LOCK (g_desktop_env);
1265   desktop_env = g_desktop_env;
1266   G_UNLOCK (g_desktop_env);
1267
1268   if (info->only_show_in)
1269     {
1270       if (desktop_env == NULL)
1271         return FALSE;
1272       
1273       found = FALSE;
1274       for (i = 0; info->only_show_in[i] != NULL; i++)
1275         {
1276           if (strcmp (info->only_show_in[i], desktop_env) == 0)
1277             {
1278               found = TRUE;
1279               break;
1280             }
1281         }
1282       if (!found)
1283         return FALSE;
1284     }
1285
1286   if (info->not_show_in && desktop_env)
1287     {
1288       for (i = 0; info->not_show_in[i] != NULL; i++)
1289         {
1290           if (strcmp (info->not_show_in[i], desktop_env) == 0)
1291             return FALSE;
1292         }
1293     }
1294   
1295   return TRUE;
1296 }
1297
1298 typedef enum {
1299   APP_DIR,
1300   MIMETYPE_DIR
1301 } DirType;
1302
1303 static char *
1304 ensure_dir (DirType   type,
1305             GError  **error)
1306 {
1307   char *path, *display_name;
1308   int errsv;
1309
1310   if (type == APP_DIR)
1311     path = g_build_filename (g_get_user_data_dir (), "applications", NULL);
1312   else
1313     path = g_build_filename (g_get_user_data_dir (), "mime", "packages", NULL);
1314
1315   errno = 0;
1316   if (g_mkdir_with_parents (path, 0700) == 0)
1317     return path;
1318
1319   errsv = errno;
1320   display_name = g_filename_display_name (path);
1321   if (type == APP_DIR)
1322     g_set_error (error, G_IO_ERROR, g_io_error_from_errno (errsv),
1323                  _("Can't create user application configuration folder %s: %s"),
1324                  display_name, g_strerror (errsv));
1325   else
1326     g_set_error (error, G_IO_ERROR, g_io_error_from_errno (errsv),
1327                  _("Can't create user MIME configuration folder %s: %s"),
1328                  display_name, g_strerror (errsv));
1329
1330   g_free (display_name);
1331   g_free (path);
1332
1333   return NULL;
1334 }
1335
1336 static gboolean
1337 update_mimeapps_list (const char  *desktop_id, 
1338                       const char  *content_type,
1339                       UpdateMimeFlags flags,
1340                       GError     **error)
1341 {
1342   char *dirname, *filename, *string;
1343   GKeyFile *key_file;
1344   gboolean load_succeeded, res, explicit_default;
1345   char **old_list, **list;
1346   GList *system_list;
1347   gsize length, data_size;
1348   char *data;
1349   int i, j, k;
1350   char **content_types;
1351
1352   /* Don't add both at start and end */
1353   g_assert (!((flags & UPDATE_MIME_SET_DEFAULT) &&
1354               (flags & UPDATE_MIME_SET_NON_DEFAULT)));
1355
1356   dirname = ensure_dir (APP_DIR, error);
1357   if (!dirname)
1358     return FALSE;
1359
1360   filename = g_build_filename (dirname, "mimeapps.list", NULL);
1361   g_free (dirname);
1362
1363   key_file = g_key_file_new ();
1364   load_succeeded = g_key_file_load_from_file (key_file, filename, G_KEY_FILE_NONE, NULL);
1365   if (!load_succeeded || !g_key_file_has_group (key_file, ADDED_ASSOCIATIONS_GROUP))
1366     {
1367       g_key_file_free (key_file);
1368       key_file = g_key_file_new ();
1369     }
1370
1371   if (content_type)
1372     {
1373       content_types = g_new (char *, 2);
1374       content_types[0] = g_strdup (content_type);
1375       content_types[1] = NULL;
1376     }
1377   else
1378     {
1379       content_types = g_key_file_get_keys (key_file, DEFAULT_APPLICATIONS_GROUP, NULL, NULL);
1380     }
1381
1382   explicit_default = FALSE;
1383
1384   for (k = 0; content_types && content_types[k]; k++)
1385     {
1386       /* set as default, if requested so */
1387       string = g_key_file_get_string (key_file,
1388                                       DEFAULT_APPLICATIONS_GROUP,
1389                                       content_types[k],
1390                                       NULL);
1391
1392       if (g_strcmp0 (string, desktop_id) != 0 &&
1393           (flags & UPDATE_MIME_SET_DEFAULT))
1394         {
1395           g_free (string);
1396           string = g_strdup (desktop_id);
1397
1398           /* add in the non-default list too, if it's not already there */
1399           flags |= UPDATE_MIME_SET_NON_DEFAULT;
1400         }
1401
1402       if (string == NULL || desktop_id == NULL)
1403         g_key_file_remove_key (key_file,
1404                                DEFAULT_APPLICATIONS_GROUP,
1405                                content_types[k],
1406                                NULL);
1407       else
1408         {
1409           g_key_file_set_string (key_file,
1410                                  DEFAULT_APPLICATIONS_GROUP,
1411                                  content_types[k],
1412                                  string);
1413
1414           explicit_default = TRUE;
1415         }
1416
1417       g_free (string);
1418     }
1419
1420   if (content_type)
1421     {
1422       /* reuse the list from above */
1423     }
1424   else
1425     {
1426       g_strfreev (content_types);
1427       content_types = g_key_file_get_keys (key_file, ADDED_ASSOCIATIONS_GROUP, NULL, NULL);
1428     }
1429   
1430   for (k = 0; content_types && content_types[k]; k++)
1431     { 
1432       /* Add to the right place in the list */
1433   
1434       length = 0;
1435       old_list = g_key_file_get_string_list (key_file, ADDED_ASSOCIATIONS_GROUP,
1436                                              content_types[k], &length, NULL);
1437
1438       list = g_new (char *, 1 + length + 1);
1439
1440       i = 0;
1441
1442       /* if we're adding a last-used hint, just put the application in front of the list */
1443       if (flags & UPDATE_MIME_SET_LAST_USED)
1444         {
1445           /* avoid adding this again as non-default later */
1446           if (flags & UPDATE_MIME_SET_NON_DEFAULT)
1447             flags ^= UPDATE_MIME_SET_NON_DEFAULT;
1448
1449           list[i++] = g_strdup (desktop_id);
1450         }
1451
1452       if (old_list)
1453         {
1454           for (j = 0; old_list[j] != NULL; j++)
1455             {
1456               if (g_strcmp0 (old_list[j], desktop_id) != 0)
1457                 {
1458                   /* rewrite other entries if they're different from the new one */
1459                   list[i++] = g_strdup (old_list[j]);
1460                 }
1461               else if (flags & UPDATE_MIME_SET_NON_DEFAULT)
1462                 {
1463                   /* we encountered an old entry which is equal to the one we're adding as non-default,
1464                    * don't change its position in the list.
1465                    */
1466                   flags ^= UPDATE_MIME_SET_NON_DEFAULT;
1467                   list[i++] = g_strdup (old_list[j]);
1468                 }
1469             }
1470         }
1471
1472       /* add it at the end of the list */
1473       if (flags & UPDATE_MIME_SET_NON_DEFAULT)
1474         list[i++] = g_strdup (desktop_id);
1475
1476       list[i] = NULL;
1477   
1478       g_strfreev (old_list);
1479
1480       if (list[0] == NULL || desktop_id == NULL)
1481         g_key_file_remove_key (key_file,
1482                                ADDED_ASSOCIATIONS_GROUP,
1483                                content_types[k],
1484                                NULL);
1485       else
1486         {
1487           g_key_file_set_string_list (key_file,
1488                                       ADDED_ASSOCIATIONS_GROUP,
1489                                       content_types[k],
1490                                       (const char * const *)list, i);
1491
1492           /* if we had no explicit default set, we should add the system default to the
1493            * list, to avoid overriding it with applications from this list.
1494            */
1495           if (!explicit_default)
1496             {
1497               system_list = get_all_desktop_entries_for_mime_type (content_type, (const char **) list, FALSE, NULL);
1498
1499               if (system_list != NULL)
1500                 {
1501                   string = system_list->data;
1502
1503                   g_key_file_set_string (key_file,
1504                                          DEFAULT_APPLICATIONS_GROUP,
1505                                          content_types[k],
1506                                          string);
1507                 }
1508
1509               g_list_free_full (system_list, g_free);
1510             }
1511         }
1512    
1513       g_strfreev (list);
1514     }
1515   
1516   if (content_type)
1517     {
1518       /* reuse the list from above */
1519     }
1520   else
1521     {
1522       g_strfreev (content_types);
1523       content_types = g_key_file_get_keys (key_file, REMOVED_ASSOCIATIONS_GROUP, NULL, NULL);
1524     }
1525
1526   for (k = 0; content_types && content_types[k]; k++) 
1527     {
1528       /* Remove from removed associations group (unless remove) */
1529   
1530       length = 0;
1531       old_list = g_key_file_get_string_list (key_file, REMOVED_ASSOCIATIONS_GROUP,
1532                                              content_types[k], &length, NULL);
1533
1534       list = g_new (char *, 1 + length + 1);
1535
1536       i = 0;
1537       if (flags & UPDATE_MIME_REMOVE)
1538         list[i++] = g_strdup (desktop_id);
1539       if (old_list)
1540         {
1541           for (j = 0; old_list[j] != NULL; j++)
1542             {
1543               if (g_strcmp0 (old_list[j], desktop_id) != 0)
1544                 list[i++] = g_strdup (old_list[j]);
1545             }
1546         }
1547       list[i] = NULL;
1548   
1549       g_strfreev (old_list);
1550
1551       if (list[0] == NULL || desktop_id == NULL)
1552         g_key_file_remove_key (key_file,
1553                                REMOVED_ASSOCIATIONS_GROUP,
1554                                content_types[k],
1555                                NULL);
1556       else
1557         g_key_file_set_string_list (key_file,
1558                                     REMOVED_ASSOCIATIONS_GROUP,
1559                                     content_types[k],
1560                                     (const char * const *)list, i);
1561
1562       g_strfreev (list);
1563     }
1564
1565   g_strfreev (content_types);  
1566
1567   data = g_key_file_to_data (key_file, &data_size, error);
1568   g_key_file_free (key_file);
1569   
1570   res = g_file_set_contents (filename, data, data_size, error);
1571
1572   mime_info_cache_reload (NULL);
1573                           
1574   g_free (filename);
1575   g_free (data);
1576   
1577   return res;
1578 }
1579
1580 static gboolean
1581 g_desktop_app_info_set_as_last_used_for_type (GAppInfo    *appinfo,
1582                                               const char  *content_type,
1583                                               GError     **error)
1584 {
1585   GDesktopAppInfo *info = G_DESKTOP_APP_INFO (appinfo);
1586
1587   if (!g_desktop_app_info_ensure_saved (info, error))
1588     return FALSE;
1589
1590   /* both add support for the content type and set as last used */
1591   return update_mimeapps_list (info->desktop_id, content_type,
1592                                UPDATE_MIME_SET_NON_DEFAULT |
1593                                UPDATE_MIME_SET_LAST_USED,
1594                                error);
1595 }
1596
1597 static gboolean
1598 g_desktop_app_info_set_as_default_for_type (GAppInfo    *appinfo,
1599                                             const char  *content_type,
1600                                             GError     **error)
1601 {
1602   GDesktopAppInfo *info = G_DESKTOP_APP_INFO (appinfo);
1603
1604   if (!g_desktop_app_info_ensure_saved (info, error))
1605     return FALSE;  
1606   
1607   return update_mimeapps_list (info->desktop_id, content_type,
1608                                UPDATE_MIME_SET_DEFAULT,
1609                                error);
1610 }
1611
1612 static void
1613 update_program_done (GPid     pid,
1614                      gint     status,
1615                      gpointer data)
1616 {
1617   /* Did the application exit correctly */
1618   if (WIFEXITED (status) &&
1619       WEXITSTATUS (status) == 0)
1620     {
1621       /* Here we could clean out any caches in use */
1622     }
1623 }
1624
1625 static void
1626 run_update_command (char *command,
1627                     char *subdir)
1628 {
1629         char *argv[3] = {
1630                 NULL,
1631                 NULL,
1632                 NULL,
1633         };
1634         GPid pid = 0;
1635         GError *error = NULL;
1636
1637         argv[0] = command;
1638         argv[1] = g_build_filename (g_get_user_data_dir (), subdir, NULL);
1639
1640         if (g_spawn_async ("/", argv,
1641                            NULL,       /* envp */
1642                            G_SPAWN_SEARCH_PATH |
1643                            G_SPAWN_STDOUT_TO_DEV_NULL |
1644                            G_SPAWN_STDERR_TO_DEV_NULL |
1645                            G_SPAWN_DO_NOT_REAP_CHILD,
1646                            NULL, NULL, /* No setup function */
1647                            &pid,
1648                            &error)) 
1649           g_child_watch_add (pid, update_program_done, NULL);
1650         else
1651           {
1652             /* If we get an error at this point, it's quite likely the user doesn't
1653              * have an installed copy of either 'update-mime-database' or
1654              * 'update-desktop-database'.  I don't think we want to popup an error
1655              * dialog at this point, so we just do a g_warning to give the user a
1656              * chance of debugging it.
1657              */
1658             g_warning ("%s", error->message);
1659           }
1660         
1661         g_free (argv[1]);
1662 }
1663
1664 static gboolean
1665 g_desktop_app_info_set_as_default_for_extension (GAppInfo    *appinfo,
1666                                                  const char  *extension,
1667                                                  GError     **error)
1668 {
1669   char *filename, *basename, *mimetype;
1670   char *dirname;
1671   gboolean res;
1672
1673   if (!g_desktop_app_info_ensure_saved (G_DESKTOP_APP_INFO (appinfo), error))
1674     return FALSE;  
1675   
1676   dirname = ensure_dir (MIMETYPE_DIR, error);
1677   if (!dirname)
1678     return FALSE;
1679   
1680   basename = g_strdup_printf ("user-extension-%s.xml", extension);
1681   filename = g_build_filename (dirname, basename, NULL);
1682   g_free (basename);
1683   g_free (dirname);
1684
1685   mimetype = g_strdup_printf ("application/x-extension-%s", extension);
1686   
1687   if (!g_file_test (filename, G_FILE_TEST_EXISTS)) 
1688     {
1689       char *contents;
1690
1691       contents =
1692         g_strdup_printf ("<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"
1693                          "<mime-info xmlns=\"http://www.freedesktop.org/standards/shared-mime-info\">\n"
1694                          " <mime-type type=\"%s\">\n"
1695                          "  <comment>%s document</comment>\n"
1696                          "  <glob pattern=\"*.%s\"/>\n"
1697                          " </mime-type>\n"
1698                          "</mime-info>\n", mimetype, extension, extension);
1699
1700       g_file_set_contents (filename, contents, -1, NULL);
1701       g_free (contents);
1702
1703       run_update_command ("update-mime-database", "mime");
1704     }
1705   g_free (filename);
1706   
1707   res = g_desktop_app_info_set_as_default_for_type (appinfo,
1708                                                     mimetype,
1709                                                     error);
1710
1711   g_free (mimetype);
1712   
1713   return res;
1714 }
1715
1716 static gboolean
1717 g_desktop_app_info_add_supports_type (GAppInfo    *appinfo,
1718                                       const char  *content_type,
1719                                       GError     **error)
1720 {
1721   GDesktopAppInfo *info = G_DESKTOP_APP_INFO (appinfo);
1722
1723   if (!g_desktop_app_info_ensure_saved (G_DESKTOP_APP_INFO (info), error))
1724     return FALSE;  
1725   
1726   return update_mimeapps_list (info->desktop_id, content_type,
1727                                UPDATE_MIME_SET_NON_DEFAULT,
1728                                error);
1729 }
1730
1731 static gboolean
1732 g_desktop_app_info_can_remove_supports_type (GAppInfo *appinfo)
1733 {
1734   return TRUE;
1735 }
1736
1737 static gboolean
1738 g_desktop_app_info_remove_supports_type (GAppInfo    *appinfo,
1739                                          const char  *content_type,
1740                                          GError     **error)
1741 {
1742   GDesktopAppInfo *info = G_DESKTOP_APP_INFO (appinfo);
1743
1744   if (!g_desktop_app_info_ensure_saved (G_DESKTOP_APP_INFO (info), error))
1745     return FALSE;
1746   
1747   return update_mimeapps_list (info->desktop_id, content_type,
1748                                UPDATE_MIME_REMOVE,
1749                                error);
1750 }
1751
1752 static gboolean
1753 g_desktop_app_info_ensure_saved (GDesktopAppInfo  *info,
1754                                  GError          **error)
1755 {
1756   GKeyFile *key_file;
1757   char *dirname;
1758   char *filename;
1759   char *data, *desktop_id;
1760   gsize data_size;
1761   int fd;
1762   gboolean res;
1763   
1764   if (info->filename != NULL)
1765     return TRUE;
1766
1767   /* This is only used for object created with
1768    * g_app_info_create_from_commandline. All other
1769    * object should have a filename
1770    */
1771   
1772   dirname = ensure_dir (APP_DIR, error);
1773   if (!dirname)
1774     return FALSE;
1775   
1776   key_file = g_key_file_new ();
1777
1778   g_key_file_set_string (key_file, G_KEY_FILE_DESKTOP_GROUP,
1779                          "Encoding", "UTF-8");
1780   g_key_file_set_string (key_file, G_KEY_FILE_DESKTOP_GROUP,
1781                          G_KEY_FILE_DESKTOP_KEY_VERSION, "1.0");
1782   g_key_file_set_string (key_file, G_KEY_FILE_DESKTOP_GROUP,
1783                          G_KEY_FILE_DESKTOP_KEY_TYPE,
1784                          G_KEY_FILE_DESKTOP_TYPE_APPLICATION);
1785   if (info->terminal) 
1786     g_key_file_set_boolean (key_file, G_KEY_FILE_DESKTOP_GROUP,
1787                             G_KEY_FILE_DESKTOP_KEY_TERMINAL, TRUE);
1788
1789   g_key_file_set_string (key_file, G_KEY_FILE_DESKTOP_GROUP,
1790                          G_KEY_FILE_DESKTOP_KEY_EXEC, info->exec);
1791
1792   g_key_file_set_string (key_file, G_KEY_FILE_DESKTOP_GROUP,
1793                          G_KEY_FILE_DESKTOP_KEY_NAME, info->name);
1794
1795   if (info->fullname != NULL)
1796     g_key_file_set_string (key_file, G_KEY_FILE_DESKTOP_GROUP,
1797                            FULL_NAME_KEY, info->fullname);
1798
1799   g_key_file_set_string (key_file, G_KEY_FILE_DESKTOP_GROUP,
1800                          G_KEY_FILE_DESKTOP_KEY_COMMENT, info->comment);
1801   
1802   g_key_file_set_boolean (key_file, G_KEY_FILE_DESKTOP_GROUP,
1803                           G_KEY_FILE_DESKTOP_KEY_NO_DISPLAY, TRUE);
1804
1805   data = g_key_file_to_data (key_file, &data_size, NULL);
1806   g_key_file_free (key_file);
1807
1808   desktop_id = g_strdup_printf ("userapp-%s-XXXXXX.desktop", info->name);
1809   filename = g_build_filename (dirname, desktop_id, NULL);
1810   g_free (desktop_id);
1811   g_free (dirname);
1812   
1813   fd = g_mkstemp (filename);
1814   if (fd == -1)
1815     {
1816       char *display_name;
1817
1818       display_name = g_filename_display_name (filename);
1819       g_set_error (error, G_IO_ERROR, G_IO_ERROR_FAILED,
1820                    _("Can't create user desktop file %s"), display_name);
1821       g_free (display_name);
1822       g_free (filename);
1823       g_free (data);
1824       return FALSE;
1825     }
1826
1827   desktop_id = g_path_get_basename (filename);
1828
1829   close (fd);
1830   
1831   res = g_file_set_contents (filename, data, data_size, error);
1832   if (!res)
1833     {
1834       g_free (desktop_id);
1835       g_free (filename);
1836       return FALSE;
1837     }
1838
1839   info->filename = filename;
1840   info->desktop_id = desktop_id;
1841   
1842   run_update_command ("update-desktop-database", "applications");
1843   
1844   return TRUE;
1845 }
1846
1847 static gboolean
1848 g_desktop_app_info_can_delete (GAppInfo *appinfo)
1849 {
1850   GDesktopAppInfo *info = G_DESKTOP_APP_INFO (appinfo);
1851
1852   if (info->filename)
1853     {
1854       if (strstr (info->filename, "/userapp-"))
1855         return g_access (info->filename, W_OK) == 0;
1856     }
1857
1858   return FALSE;
1859 }
1860
1861 static gboolean
1862 g_desktop_app_info_delete (GAppInfo *appinfo)
1863 {
1864   GDesktopAppInfo *info = G_DESKTOP_APP_INFO (appinfo);
1865   
1866   if (info->filename)
1867     { 
1868       if (g_remove (info->filename) == 0)
1869         {
1870           update_mimeapps_list (info->desktop_id, NULL,
1871                                 UPDATE_MIME_NONE,
1872                                 NULL);
1873
1874           g_free (info->filename);
1875           info->filename = NULL;
1876           g_free (info->desktop_id);
1877           info->desktop_id = NULL;
1878
1879           return TRUE;
1880         }
1881     }
1882
1883   return FALSE;
1884 }
1885
1886 /**
1887  * g_app_info_create_from_commandline:
1888  * @commandline: the commandline to use
1889  * @application_name: (allow-none): the application name, or %NULL to use @commandline
1890  * @flags: flags that can specify details of the created #GAppInfo
1891  * @error: a #GError location to store the error occuring, %NULL to ignore.
1892  *
1893  * Creates a new #GAppInfo from the given information.
1894  *
1895  * Returns: (transfer full): new #GAppInfo for given command.
1896  **/
1897 GAppInfo *
1898 g_app_info_create_from_commandline (const char           *commandline,
1899                                     const char           *application_name,
1900                                     GAppInfoCreateFlags   flags,
1901                                     GError              **error)
1902 {
1903   char **split;
1904   char *basename;
1905   GDesktopAppInfo *info;
1906
1907   g_return_val_if_fail (commandline, NULL);
1908
1909   info = g_object_new (G_TYPE_DESKTOP_APP_INFO, NULL);
1910
1911   info->filename = NULL;
1912   info->desktop_id = NULL;
1913   
1914   info->terminal = flags & G_APP_INFO_CREATE_NEEDS_TERMINAL;
1915   info->startup_notify = flags & G_APP_INFO_CREATE_SUPPORTS_STARTUP_NOTIFICATION;
1916   info->hidden = FALSE;
1917   if (flags & G_APP_INFO_CREATE_SUPPORTS_URIS)
1918     info->exec = g_strconcat (commandline, " %u", NULL);
1919   else
1920     info->exec = g_strconcat (commandline, " %f", NULL);
1921   info->nodisplay = TRUE;
1922   info->binary = binary_from_exec (info->exec);
1923   
1924   if (application_name)
1925     info->name = g_strdup (application_name);
1926   else
1927     {
1928       /* FIXME: this should be more robust. Maybe g_shell_parse_argv and use argv[0] */
1929       split = g_strsplit (commandline, " ", 2);
1930       basename = split[0] ? g_path_get_basename (split[0]) : NULL;
1931       g_strfreev (split);
1932       info->name = basename;
1933       if (info->name == NULL)
1934         info->name = g_strdup ("custom");
1935     }
1936   info->comment = g_strdup_printf (_("Custom definition for %s"), info->name);
1937   
1938   return G_APP_INFO (info);
1939 }
1940
1941 static void
1942 g_desktop_app_info_iface_init (GAppInfoIface *iface)
1943 {
1944   iface->dup = g_desktop_app_info_dup;
1945   iface->equal = g_desktop_app_info_equal;
1946   iface->get_id = g_desktop_app_info_get_id;
1947   iface->get_name = g_desktop_app_info_get_name;
1948   iface->get_description = g_desktop_app_info_get_description;
1949   iface->get_executable = g_desktop_app_info_get_executable;
1950   iface->get_icon = g_desktop_app_info_get_icon;
1951   iface->launch = g_desktop_app_info_launch;
1952   iface->supports_uris = g_desktop_app_info_supports_uris;
1953   iface->supports_files = g_desktop_app_info_supports_files;
1954   iface->launch_uris = g_desktop_app_info_launch_uris;
1955   iface->should_show = g_desktop_app_info_should_show;
1956   iface->set_as_default_for_type = g_desktop_app_info_set_as_default_for_type;
1957   iface->set_as_default_for_extension = g_desktop_app_info_set_as_default_for_extension;
1958   iface->add_supports_type = g_desktop_app_info_add_supports_type;
1959   iface->can_remove_supports_type = g_desktop_app_info_can_remove_supports_type;
1960   iface->remove_supports_type = g_desktop_app_info_remove_supports_type;
1961   iface->can_delete = g_desktop_app_info_can_delete;
1962   iface->do_delete = g_desktop_app_info_delete;
1963   iface->get_commandline = g_desktop_app_info_get_commandline;
1964   iface->get_display_name = g_desktop_app_info_get_display_name;
1965   iface->set_as_last_used_for_type = g_desktop_app_info_set_as_last_used_for_type;
1966 }
1967
1968 static gboolean
1969 app_info_in_list (GAppInfo *info, 
1970                   GList    *list)
1971 {
1972   while (list != NULL)
1973     {
1974       if (g_app_info_equal (info, list->data))
1975         return TRUE;
1976       list = list->next;
1977     }
1978   return FALSE;
1979 }
1980
1981 /**
1982  * g_app_info_get_recommended_for_type:
1983  * @content_type: the content type to find a #GAppInfo for
1984  * 
1985  * Gets a list of recommended #GAppInfos for a given content type, i.e.
1986  * those applications which claim to support the given content type exactly,
1987  * and not by MIME type subclassing.
1988  * Note that the first application of the list is the last used one, i.e.
1989  * the last one for which #g_app_info_set_as_last_used_for_type has been
1990  * called.
1991  *
1992  * Returns: (element-type GAppInfo) (transfer full): #GList of #GAppInfos
1993  *     for given @content_type or %NULL on error.
1994  *
1995  * Since: 2.28
1996  **/
1997 GList *
1998 g_app_info_get_recommended_for_type (const gchar *content_type)
1999 {
2000   GList *desktop_entries, *l;
2001   GList *infos;
2002   GDesktopAppInfo *info;
2003
2004   g_return_val_if_fail (content_type != NULL, NULL);
2005
2006   desktop_entries = get_all_desktop_entries_for_mime_type (content_type, NULL, FALSE, NULL);
2007
2008   infos = NULL;
2009   for (l = desktop_entries; l != NULL; l = l->next)
2010     {
2011       char *desktop_entry = l->data;
2012
2013       info = g_desktop_app_info_new (desktop_entry);
2014       if (info)
2015         {
2016           if (app_info_in_list (G_APP_INFO (info), infos))
2017             g_object_unref (info);
2018           else
2019             infos = g_list_prepend (infos, info);
2020         }
2021       g_free (desktop_entry);
2022     }
2023
2024   g_list_free (desktop_entries);
2025
2026   return g_list_reverse (infos);
2027 }
2028
2029 /**
2030  * g_app_info_get_fallback_for_type:
2031  * @content_type: the content type to find a #GAppInfo for
2032  * 
2033  * Gets a list of fallback #GAppInfos for a given content type, i.e.
2034  * those applications which claim to support the given content type
2035  * by MIME type subclassing and not directly.
2036  *
2037  * Returns: (element-type GAppInfo) (transfer full): #GList of #GAppInfos
2038  *     for given @content_type or %NULL on error.
2039  *
2040  * Since: 2.28
2041  **/
2042 GList *
2043 g_app_info_get_fallback_for_type (const gchar *content_type)
2044 {
2045   GList *desktop_entries, *l;
2046   GList *infos, *recommended_infos;
2047   GDesktopAppInfo *info;
2048
2049   g_return_val_if_fail (content_type != NULL, NULL);
2050
2051   desktop_entries = get_all_desktop_entries_for_mime_type (content_type, NULL, TRUE, NULL);
2052   recommended_infos = g_app_info_get_recommended_for_type (content_type);
2053
2054   infos = NULL;
2055   for (l = desktop_entries; l != NULL; l = l->next)
2056     {
2057       char *desktop_entry = l->data;
2058
2059       info = g_desktop_app_info_new (desktop_entry);
2060       if (info)
2061         {
2062           if (app_info_in_list (G_APP_INFO (info), infos) ||
2063               app_info_in_list (G_APP_INFO (info), recommended_infos))
2064             g_object_unref (info);
2065           else
2066             infos = g_list_prepend (infos, info);
2067         }
2068       g_free (desktop_entry);
2069     }
2070
2071   g_list_free (desktop_entries);
2072   g_list_free_full (recommended_infos, g_object_unref);
2073
2074   return g_list_reverse (infos);
2075 }
2076
2077 /**
2078  * g_app_info_get_all_for_type:
2079  * @content_type: the content type to find a #GAppInfo for
2080  * 
2081  * Gets a list of all #GAppInfos for a given content type.
2082  *
2083  * Returns: (element-type GAppInfo) (transfer full): #GList of #GAppInfos
2084  *     for given @content_type or %NULL on error.
2085  **/
2086 GList *
2087 g_app_info_get_all_for_type (const char *content_type)
2088 {
2089   GList *desktop_entries, *l;
2090   GList *infos;
2091   char *user_default = NULL;
2092   GDesktopAppInfo *info;
2093
2094   g_return_val_if_fail (content_type != NULL, NULL);
2095   
2096   desktop_entries = get_all_desktop_entries_for_mime_type (content_type, NULL, TRUE, &user_default);
2097   infos = NULL;
2098
2099   /* put the user default in front of the list, for compatibility */
2100   if (user_default != NULL)
2101     {
2102       info = g_desktop_app_info_new (user_default);
2103
2104       if (info != NULL)
2105         infos = g_list_prepend (infos, info);
2106     }
2107
2108   g_free (user_default);
2109
2110   for (l = desktop_entries; l != NULL; l = l->next)
2111     {
2112       char *desktop_entry = l->data;
2113
2114       info = g_desktop_app_info_new (desktop_entry);
2115       if (info)
2116         {
2117           if (app_info_in_list (G_APP_INFO (info), infos))
2118             g_object_unref (info);
2119           else
2120             infos = g_list_prepend (infos, info);
2121         }
2122       g_free (desktop_entry);
2123     }
2124
2125   g_list_free (desktop_entries);
2126   
2127   return g_list_reverse (infos);
2128 }
2129
2130 /**
2131  * g_app_info_reset_type_associations:
2132  * @content_type: a content type 
2133  *
2134  * Removes all changes to the type associations done by
2135  * g_app_info_set_as_default_for_type(), 
2136  * g_app_info_set_as_default_for_extension(), 
2137  * g_app_info_add_supports_type() or g_app_info_remove_supports_type().
2138  *
2139  * Since: 2.20
2140  */
2141 void
2142 g_app_info_reset_type_associations (const char *content_type)
2143 {
2144   update_mimeapps_list (NULL, content_type,
2145                         UPDATE_MIME_NONE,
2146                         NULL);
2147 }
2148
2149 /**
2150  * g_app_info_get_default_for_type:
2151  * @content_type: the content type to find a #GAppInfo for
2152  * @must_support_uris: if %TRUE, the #GAppInfo is expected to
2153  *     support URIs
2154  * 
2155  * Gets the #GAppInfo that corresponds to a given content type.
2156  *
2157  * Returns: (transfer full): #GAppInfo for given @content_type or
2158  *     %NULL on error.
2159  **/
2160 GAppInfo *
2161 g_app_info_get_default_for_type (const char *content_type,
2162                                  gboolean    must_support_uris)
2163 {
2164   GList *desktop_entries, *l;
2165   char *user_default = NULL;
2166   GAppInfo *info;
2167
2168   g_return_val_if_fail (content_type != NULL, NULL);
2169   
2170   desktop_entries = get_all_desktop_entries_for_mime_type (content_type, NULL, TRUE, &user_default);
2171
2172   info = NULL;
2173
2174   if (user_default != NULL)
2175     {
2176       info = (GAppInfo *) g_desktop_app_info_new (user_default);
2177
2178       if (info)
2179         {
2180           if (must_support_uris && !g_app_info_supports_uris (info))
2181             {
2182               g_object_unref (info);
2183               info = NULL;
2184             }
2185         }
2186     }
2187
2188   g_free (user_default);
2189
2190   if (info != NULL)
2191     {
2192       g_list_free_full (desktop_entries, g_free);
2193       return info;
2194     }
2195
2196   /* pick the first from the other list that matches our URI
2197    * requirements.
2198    */
2199   for (l = desktop_entries; l != NULL; l = l->next)
2200     {
2201       char *desktop_entry = l->data;
2202
2203       info = (GAppInfo *)g_desktop_app_info_new (desktop_entry);
2204       if (info)
2205         {
2206           if (must_support_uris && !g_app_info_supports_uris (info))
2207             {
2208               g_object_unref (info);
2209               info = NULL;
2210             }
2211           else
2212             break;
2213         }
2214     }
2215   
2216   g_list_free_full (desktop_entries, g_free);
2217
2218   return info;
2219 }
2220
2221 /**
2222  * g_app_info_get_default_for_uri_scheme:
2223  * @uri_scheme: a string containing a URI scheme.
2224  *
2225  * Gets the default application for launching applications 
2226  * using this URI scheme. A URI scheme is the initial part 
2227  * of the URI, up to but not including the ':', e.g. "http", 
2228  * "ftp" or "sip".
2229  * 
2230  * Returns: (transfer full): #GAppInfo for given @uri_scheme or %NULL on error.
2231  **/
2232 GAppInfo *
2233 g_app_info_get_default_for_uri_scheme (const char *uri_scheme)
2234 {
2235   GAppInfo *app_info;
2236   char *content_type, *scheme_down;
2237
2238   scheme_down = g_ascii_strdown (uri_scheme, -1);
2239   content_type = g_strdup_printf ("x-scheme-handler/%s", scheme_down);
2240   g_free (scheme_down);
2241   app_info = g_app_info_get_default_for_type (content_type, FALSE);
2242   g_free (content_type);
2243
2244   return app_info;
2245 }
2246
2247 static void
2248 get_apps_from_dir (GHashTable *apps, 
2249                    const char *dirname, 
2250                    const char *prefix)
2251 {
2252   GDir *dir;
2253   const char *basename;
2254   char *filename, *subprefix, *desktop_id;
2255   gboolean hidden;
2256   GDesktopAppInfo *appinfo;
2257   
2258   dir = g_dir_open (dirname, 0, NULL);
2259   if (dir)
2260     {
2261       while ((basename = g_dir_read_name (dir)) != NULL)
2262         {
2263           filename = g_build_filename (dirname, basename, NULL);
2264           if (g_str_has_suffix (basename, ".desktop"))
2265             {
2266               desktop_id = g_strconcat (prefix, basename, NULL);
2267
2268               /* Use _extended so we catch NULLs too (hidden) */
2269               if (!g_hash_table_lookup_extended (apps, desktop_id, NULL, NULL))
2270                 {
2271                   appinfo = g_desktop_app_info_new_from_filename (filename);
2272                   hidden = FALSE;
2273
2274                   if (appinfo && g_desktop_app_info_get_is_hidden (appinfo))
2275                     {
2276                       g_object_unref (appinfo);
2277                       appinfo = NULL;
2278                       hidden = TRUE;
2279                     }
2280                                       
2281                   if (appinfo || hidden)
2282                     {
2283                       g_hash_table_insert (apps, g_strdup (desktop_id), appinfo);
2284
2285                       if (appinfo)
2286                         {
2287                           /* Reuse instead of strdup here */
2288                           appinfo->desktop_id = desktop_id;
2289                           desktop_id = NULL;
2290                         }
2291                     }
2292                 }
2293               g_free (desktop_id);
2294             }
2295           else
2296             {
2297               if (g_file_test (filename, G_FILE_TEST_IS_DIR))
2298                 {
2299                   subprefix = g_strconcat (prefix, basename, "-", NULL);
2300                   get_apps_from_dir (apps, filename, subprefix);
2301                   g_free (subprefix);
2302                 }
2303             }
2304           g_free (filename);
2305         }
2306       g_dir_close (dir);
2307     }
2308 }
2309
2310
2311 /**
2312  * g_app_info_get_all:
2313  *
2314  * Gets a list of all of the applications currently registered 
2315  * on this system.
2316  * 
2317  * For desktop files, this includes applications that have 
2318  * <literal>NoDisplay=true</literal> set or are excluded from 
2319  * display by means of <literal>OnlyShowIn</literal> or
2320  * <literal>NotShowIn</literal>. See g_app_info_should_show().
2321  * The returned list does not include applications which have
2322  * the <literal>Hidden</literal> key set. 
2323  * 
2324  * Returns: (element-type GAppInfo) (transfer full): a newly allocated #GList of references to #GAppInfo<!---->s.
2325  **/
2326 GList *
2327 g_app_info_get_all (void)
2328 {
2329   const char * const *dirs;
2330   GHashTable *apps;
2331   GHashTableIter iter;
2332   gpointer value;
2333   int i;
2334   GList *infos;
2335
2336   dirs = get_applications_search_path ();
2337
2338   apps = g_hash_table_new_full (g_str_hash, g_str_equal,
2339                                 g_free, NULL);
2340
2341   
2342   for (i = 0; dirs[i] != NULL; i++)
2343     get_apps_from_dir (apps, dirs[i], "");
2344
2345
2346   infos = NULL;
2347   g_hash_table_iter_init (&iter, apps);
2348   while (g_hash_table_iter_next (&iter, NULL, &value))
2349     {
2350       if (value)
2351         infos = g_list_prepend (infos, value);
2352     }
2353
2354   g_hash_table_destroy (apps);
2355
2356   return g_list_reverse (infos);
2357 }
2358
2359 /* Cacheing of mimeinfo.cache and defaults.list files */
2360
2361 typedef struct {
2362   char *path;
2363   GHashTable *mime_info_cache_map;
2364   GHashTable *defaults_list_map;
2365   GHashTable *mimeapps_list_added_map;
2366   GHashTable *mimeapps_list_removed_map;
2367   GHashTable *mimeapps_list_defaults_map;
2368   time_t mime_info_cache_timestamp;
2369   time_t defaults_list_timestamp;
2370   time_t mimeapps_list_timestamp;
2371 } MimeInfoCacheDir;
2372
2373 typedef struct {
2374   GList *dirs;                       /* mimeinfo.cache and defaults.list */
2375   GHashTable *global_defaults_cache; /* global results of defaults.list lookup and validation */
2376   time_t last_stat_time;
2377   guint should_ping_mime_monitor : 1;
2378 } MimeInfoCache;
2379
2380 static MimeInfoCache *mime_info_cache = NULL;
2381 G_LOCK_DEFINE_STATIC (mime_info_cache);
2382
2383 static void mime_info_cache_dir_add_desktop_entries (MimeInfoCacheDir  *dir,
2384                                                      const char        *mime_type,
2385                                                      char             **new_desktop_file_ids);
2386
2387 static MimeInfoCache * mime_info_cache_new (void);
2388
2389 static void
2390 destroy_info_cache_value (gpointer  key, 
2391                           GList    *value, 
2392                           gpointer  data)
2393 {
2394   g_list_foreach (value, (GFunc)g_free, NULL);
2395   g_list_free (value);
2396 }
2397
2398 static void
2399 destroy_info_cache_map (GHashTable *info_cache_map)
2400 {
2401   g_hash_table_foreach (info_cache_map, (GHFunc)destroy_info_cache_value, NULL);
2402   g_hash_table_destroy (info_cache_map);
2403 }
2404
2405 static gboolean
2406 mime_info_cache_dir_out_of_date (MimeInfoCacheDir *dir,
2407                                  const char       *cache_file,
2408                                  time_t           *timestamp)
2409 {
2410   struct stat buf;
2411   char *filename;
2412   
2413   filename = g_build_filename (dir->path, cache_file, NULL);
2414   
2415   if (g_stat (filename, &buf) < 0)
2416     {
2417       g_free (filename);
2418       return TRUE;
2419     }
2420   g_free (filename);
2421
2422   if (buf.st_mtime != *timestamp) 
2423     return TRUE;
2424   
2425   return FALSE;
2426 }
2427
2428 /* Call with lock held */
2429 static gboolean
2430 remove_all (gpointer  key,
2431             gpointer  value,
2432             gpointer  user_data)
2433 {
2434   return TRUE;
2435 }
2436
2437
2438 static void
2439 mime_info_cache_blow_global_cache (void)
2440 {
2441   g_hash_table_foreach_remove (mime_info_cache->global_defaults_cache,
2442                                remove_all, NULL);
2443 }
2444
2445 static void
2446 mime_info_cache_dir_init (MimeInfoCacheDir *dir)
2447 {
2448   GError *load_error;
2449   GKeyFile *key_file;
2450   gchar *filename, **mime_types;
2451   int i;
2452   struct stat buf;
2453   
2454   load_error = NULL;
2455   mime_types = NULL;
2456   
2457   if (dir->mime_info_cache_map != NULL &&
2458       !mime_info_cache_dir_out_of_date (dir, "mimeinfo.cache",
2459                                         &dir->mime_info_cache_timestamp))
2460     return;
2461   
2462   if (dir->mime_info_cache_map != NULL)
2463     destroy_info_cache_map (dir->mime_info_cache_map);
2464   
2465   dir->mime_info_cache_map = g_hash_table_new_full (g_str_hash, g_str_equal,
2466                                                     (GDestroyNotify) g_free,
2467                                                     NULL);
2468   
2469   key_file = g_key_file_new ();
2470   
2471   filename = g_build_filename (dir->path, "mimeinfo.cache", NULL);
2472   
2473   if (g_stat (filename, &buf) < 0)
2474     goto error;
2475   
2476   if (dir->mime_info_cache_timestamp > 0) 
2477     mime_info_cache->should_ping_mime_monitor = TRUE;
2478   
2479   dir->mime_info_cache_timestamp = buf.st_mtime;
2480   
2481   g_key_file_load_from_file (key_file, filename, G_KEY_FILE_NONE, &load_error);
2482   
2483   g_free (filename);
2484   filename = NULL;
2485   
2486   if (load_error != NULL)
2487     goto error;
2488   
2489   mime_types = g_key_file_get_keys (key_file, MIME_CACHE_GROUP,
2490                                     NULL, &load_error);
2491   
2492   if (load_error != NULL)
2493     goto error;
2494   
2495   for (i = 0; mime_types[i] != NULL; i++)
2496     {
2497       gchar **desktop_file_ids;
2498       char *unaliased_type;
2499       desktop_file_ids = g_key_file_get_string_list (key_file,
2500                                                      MIME_CACHE_GROUP,
2501                                                      mime_types[i],
2502                                                      NULL,
2503                                                      NULL);
2504       
2505       if (desktop_file_ids == NULL)
2506         continue;
2507
2508       unaliased_type = _g_unix_content_type_unalias (mime_types[i]);
2509       mime_info_cache_dir_add_desktop_entries (dir,
2510                                                unaliased_type,
2511                                                desktop_file_ids);
2512       g_free (unaliased_type);
2513     
2514       g_strfreev (desktop_file_ids);
2515     }
2516   
2517   g_strfreev (mime_types);
2518   g_key_file_free (key_file);
2519   
2520   return;
2521  error:
2522   g_free (filename);
2523   g_key_file_free (key_file);
2524   
2525   if (mime_types != NULL)
2526     g_strfreev (mime_types);
2527   
2528   if (load_error)
2529     g_error_free (load_error);
2530 }
2531
2532 static void
2533 mime_info_cache_dir_init_defaults_list (MimeInfoCacheDir *dir)
2534 {
2535   GKeyFile *key_file;
2536   GError *load_error;
2537   gchar *filename, **mime_types;
2538   char *unaliased_type;
2539   char **desktop_file_ids;
2540   int i;
2541   struct stat buf;
2542
2543   load_error = NULL;
2544   mime_types = NULL;
2545
2546   if (dir->defaults_list_map != NULL &&
2547       !mime_info_cache_dir_out_of_date (dir, "defaults.list",
2548                                         &dir->defaults_list_timestamp))
2549     return;
2550   
2551   if (dir->defaults_list_map != NULL)
2552     g_hash_table_destroy (dir->defaults_list_map);
2553   dir->defaults_list_map = g_hash_table_new_full (g_str_hash, g_str_equal,
2554                                                   g_free, (GDestroyNotify)g_strfreev);
2555   
2556
2557   key_file = g_key_file_new ();
2558   
2559   filename = g_build_filename (dir->path, "defaults.list", NULL);
2560   if (g_stat (filename, &buf) < 0)
2561     goto error;
2562
2563   if (dir->defaults_list_timestamp > 0) 
2564     mime_info_cache->should_ping_mime_monitor = TRUE;
2565
2566   dir->defaults_list_timestamp = buf.st_mtime;
2567
2568   g_key_file_load_from_file (key_file, filename, G_KEY_FILE_NONE, &load_error);
2569   g_free (filename);
2570   filename = NULL;
2571
2572   if (load_error != NULL)
2573     goto error;
2574
2575   mime_types = g_key_file_get_keys (key_file, DEFAULT_APPLICATIONS_GROUP,
2576                                     NULL, NULL);
2577   if (mime_types != NULL)
2578     {
2579       for (i = 0; mime_types[i] != NULL; i++)
2580         {
2581           desktop_file_ids = g_key_file_get_string_list (key_file,
2582                                                          DEFAULT_APPLICATIONS_GROUP,
2583                                                          mime_types[i],
2584                                                          NULL,
2585                                                          NULL);
2586           if (desktop_file_ids == NULL)
2587             continue;
2588           
2589           unaliased_type = _g_unix_content_type_unalias (mime_types[i]);
2590           g_hash_table_replace (dir->defaults_list_map,
2591                                 unaliased_type,
2592                                 desktop_file_ids);
2593         }
2594       
2595       g_strfreev (mime_types);
2596     }
2597
2598   g_key_file_free (key_file);
2599   return;
2600   
2601  error:
2602   g_free (filename);
2603   g_key_file_free (key_file);
2604   
2605   if (mime_types != NULL)
2606     g_strfreev (mime_types);
2607   
2608   if (load_error)
2609     g_error_free (load_error);
2610 }
2611
2612 static void
2613 mime_info_cache_dir_init_mimeapps_list (MimeInfoCacheDir *dir)
2614 {
2615   GKeyFile *key_file;
2616   GError *load_error;
2617   gchar *filename, **mime_types;
2618   char *unaliased_type;
2619   char **desktop_file_ids;
2620   char *desktop_id;
2621   int i;
2622   struct stat buf;
2623
2624   load_error = NULL;
2625   mime_types = NULL;
2626
2627   if (dir->mimeapps_list_added_map != NULL &&
2628       !mime_info_cache_dir_out_of_date (dir, "mimeapps.list",
2629                                         &dir->mimeapps_list_timestamp))
2630     return;
2631   
2632   if (dir->mimeapps_list_added_map != NULL)
2633     g_hash_table_destroy (dir->mimeapps_list_added_map);
2634   dir->mimeapps_list_added_map = g_hash_table_new_full (g_str_hash, g_str_equal,
2635                                                         g_free, (GDestroyNotify)g_strfreev);
2636   
2637   if (dir->mimeapps_list_removed_map != NULL)
2638     g_hash_table_destroy (dir->mimeapps_list_removed_map);
2639   dir->mimeapps_list_removed_map = g_hash_table_new_full (g_str_hash, g_str_equal,
2640                                                           g_free, (GDestroyNotify)g_strfreev);
2641
2642   if (dir->mimeapps_list_defaults_map != NULL)
2643     g_hash_table_destroy (dir->mimeapps_list_defaults_map);
2644   dir->mimeapps_list_defaults_map = g_hash_table_new_full (g_str_hash, g_str_equal,
2645                                                            g_free, g_free);
2646
2647   key_file = g_key_file_new ();
2648   
2649   filename = g_build_filename (dir->path, "mimeapps.list", NULL);
2650   if (g_stat (filename, &buf) < 0)
2651     goto error;
2652
2653   if (dir->mimeapps_list_timestamp > 0) 
2654     mime_info_cache->should_ping_mime_monitor = TRUE;
2655
2656   dir->mimeapps_list_timestamp = buf.st_mtime;
2657
2658   g_key_file_load_from_file (key_file, filename, G_KEY_FILE_NONE, &load_error);
2659   g_free (filename);
2660   filename = NULL;
2661
2662   if (load_error != NULL)
2663     goto error;
2664
2665   mime_types = g_key_file_get_keys (key_file, ADDED_ASSOCIATIONS_GROUP,
2666                                     NULL, NULL);
2667   if (mime_types != NULL)
2668     {
2669       for (i = 0; mime_types[i] != NULL; i++)
2670         {
2671           desktop_file_ids = g_key_file_get_string_list (key_file,
2672                                                          ADDED_ASSOCIATIONS_GROUP,
2673                                                          mime_types[i],
2674                                                          NULL,
2675                                                          NULL);
2676           if (desktop_file_ids == NULL)
2677             continue;
2678           
2679           unaliased_type = _g_unix_content_type_unalias (mime_types[i]);
2680           g_hash_table_replace (dir->mimeapps_list_added_map,
2681                                 unaliased_type,
2682                                 desktop_file_ids);
2683         }
2684       
2685       g_strfreev (mime_types);
2686     }
2687
2688   mime_types = g_key_file_get_keys (key_file, REMOVED_ASSOCIATIONS_GROUP,
2689                                     NULL, NULL);
2690   if (mime_types != NULL)
2691     {
2692       for (i = 0; mime_types[i] != NULL; i++)
2693         {
2694           desktop_file_ids = g_key_file_get_string_list (key_file,
2695                                                          REMOVED_ASSOCIATIONS_GROUP,
2696                                                          mime_types[i],
2697                                                          NULL,
2698                                                          NULL);
2699           if (desktop_file_ids == NULL)
2700             continue;
2701           
2702           unaliased_type = _g_unix_content_type_unalias (mime_types[i]);
2703           g_hash_table_replace (dir->mimeapps_list_removed_map,
2704                                 unaliased_type,
2705                                 desktop_file_ids);
2706         }
2707       
2708       g_strfreev (mime_types);
2709     }
2710
2711   mime_types = g_key_file_get_keys (key_file, DEFAULT_APPLICATIONS_GROUP,
2712                                     NULL, NULL);
2713   if (mime_types != NULL)
2714     {
2715       for (i = 0; mime_types[i] != NULL; i++)
2716         {
2717           desktop_id = g_key_file_get_string (key_file,
2718                                               DEFAULT_APPLICATIONS_GROUP,
2719                                               mime_types[i],
2720                                               NULL);
2721           if (desktop_id == NULL)
2722             continue;
2723
2724           unaliased_type = _g_unix_content_type_unalias (mime_types[i]);
2725           g_hash_table_replace (dir->mimeapps_list_defaults_map,
2726                                 unaliased_type,
2727                                 desktop_id);
2728         }
2729
2730       g_strfreev (mime_types);
2731     }
2732
2733   g_key_file_free (key_file);
2734   return;
2735   
2736  error:
2737   g_free (filename);
2738   g_key_file_free (key_file);
2739   
2740   if (mime_types != NULL)
2741     g_strfreev (mime_types);
2742   
2743   if (load_error)
2744     g_error_free (load_error);
2745 }
2746
2747 static MimeInfoCacheDir *
2748 mime_info_cache_dir_new (const char *path)
2749 {
2750   MimeInfoCacheDir *dir;
2751
2752   dir = g_new0 (MimeInfoCacheDir, 1);
2753   dir->path = g_strdup (path);
2754   
2755   return dir;
2756 }
2757
2758 static void
2759 mime_info_cache_dir_free (MimeInfoCacheDir *dir)
2760 {
2761   if (dir == NULL)
2762     return;
2763   
2764   if (dir->mime_info_cache_map != NULL)
2765     {
2766       destroy_info_cache_map (dir->mime_info_cache_map);
2767       dir->mime_info_cache_map = NULL;
2768       
2769   }
2770   
2771   if (dir->defaults_list_map != NULL)
2772     {
2773       g_hash_table_destroy (dir->defaults_list_map);
2774       dir->defaults_list_map = NULL;
2775     }
2776   
2777   if (dir->mimeapps_list_added_map != NULL)
2778     {
2779       g_hash_table_destroy (dir->mimeapps_list_added_map);
2780       dir->mimeapps_list_added_map = NULL;
2781     }
2782   
2783   if (dir->mimeapps_list_removed_map != NULL)
2784     {
2785       g_hash_table_destroy (dir->mimeapps_list_removed_map);
2786       dir->mimeapps_list_removed_map = NULL;
2787     }
2788
2789   if (dir->mimeapps_list_defaults_map != NULL)
2790     {
2791       g_hash_table_destroy (dir->mimeapps_list_defaults_map);
2792       dir->mimeapps_list_defaults_map = NULL;
2793     }
2794
2795   g_free (dir);
2796 }
2797
2798 static void
2799 mime_info_cache_dir_add_desktop_entries (MimeInfoCacheDir  *dir,
2800                                          const char        *mime_type,
2801                                          char             **new_desktop_file_ids)
2802 {
2803   GList *desktop_file_ids;
2804   int i;
2805   
2806   desktop_file_ids = g_hash_table_lookup (dir->mime_info_cache_map,
2807                                           mime_type);
2808   
2809   for (i = 0; new_desktop_file_ids[i] != NULL; i++)
2810     {
2811       if (!g_list_find_custom (desktop_file_ids, new_desktop_file_ids[i], (GCompareFunc) strcmp))
2812         desktop_file_ids = g_list_append (desktop_file_ids,
2813                                           g_strdup (new_desktop_file_ids[i]));
2814     }
2815   
2816   g_hash_table_insert (dir->mime_info_cache_map, g_strdup (mime_type), desktop_file_ids);
2817 }
2818
2819 static void
2820 mime_info_cache_init_dir_lists (void)
2821 {
2822   const char * const *dirs;
2823   int i;
2824   
2825   mime_info_cache = mime_info_cache_new ();
2826   
2827   dirs = get_applications_search_path ();
2828   
2829   for (i = 0; dirs[i] != NULL; i++)
2830     {
2831       MimeInfoCacheDir *dir;
2832       
2833       dir = mime_info_cache_dir_new (dirs[i]);
2834       
2835       if (dir != NULL)
2836         {
2837           mime_info_cache_dir_init (dir);
2838           mime_info_cache_dir_init_defaults_list (dir);
2839           mime_info_cache_dir_init_mimeapps_list (dir);
2840           
2841           mime_info_cache->dirs = g_list_append (mime_info_cache->dirs, dir);
2842         }
2843     }
2844 }
2845
2846 static void
2847 mime_info_cache_update_dir_lists (void)
2848 {
2849   GList *tmp;
2850   
2851   tmp = mime_info_cache->dirs;
2852   
2853   while (tmp != NULL)
2854     {
2855       MimeInfoCacheDir *dir = (MimeInfoCacheDir *) tmp->data;
2856
2857       /* No need to do this if we had file monitors... */
2858       mime_info_cache_blow_global_cache ();
2859       mime_info_cache_dir_init (dir);
2860       mime_info_cache_dir_init_defaults_list (dir);
2861       mime_info_cache_dir_init_mimeapps_list (dir);
2862       
2863       tmp = tmp->next;
2864     }
2865 }
2866
2867 static void
2868 mime_info_cache_init (void)
2869 {
2870   G_LOCK (mime_info_cache);
2871   if (mime_info_cache == NULL)
2872     mime_info_cache_init_dir_lists ();
2873   else
2874     {
2875       time_t now;
2876       
2877       time (&now);
2878       if (now >= mime_info_cache->last_stat_time + 10)
2879         {
2880           mime_info_cache_update_dir_lists ();
2881           mime_info_cache->last_stat_time = now;
2882         }
2883     }
2884   
2885   if (mime_info_cache->should_ping_mime_monitor)
2886     {
2887       /* g_idle_add (emit_mime_changed, NULL); */
2888       mime_info_cache->should_ping_mime_monitor = FALSE;
2889     }
2890   
2891   G_UNLOCK (mime_info_cache);
2892 }
2893
2894 static MimeInfoCache *
2895 mime_info_cache_new (void)
2896 {
2897   MimeInfoCache *cache;
2898   
2899   cache = g_new0 (MimeInfoCache, 1);
2900   
2901   cache->global_defaults_cache = g_hash_table_new_full (g_str_hash, g_str_equal,
2902                                                         (GDestroyNotify) g_free,
2903                                                         (GDestroyNotify) g_free);
2904   return cache;
2905 }
2906
2907 static void
2908 mime_info_cache_free (MimeInfoCache *cache)
2909 {
2910   if (cache == NULL)
2911     return;
2912   
2913   g_list_foreach (cache->dirs,
2914                   (GFunc) mime_info_cache_dir_free,
2915                   NULL);
2916   g_list_free (cache->dirs);
2917   g_hash_table_destroy (cache->global_defaults_cache);
2918   g_free (cache);
2919 }
2920
2921 /**
2922  * mime_info_cache_reload:
2923  * @dir: directory path which needs reloading.
2924  * 
2925  * Reload the mime information for the @dir.
2926  */
2927 static void
2928 mime_info_cache_reload (const char *dir)
2929 {
2930   /* FIXME: just reload the dir that needs reloading,
2931    * don't blow the whole cache
2932    */
2933   if (mime_info_cache != NULL)
2934     {
2935       G_LOCK (mime_info_cache);
2936       mime_info_cache_free (mime_info_cache);
2937       mime_info_cache = NULL;
2938       G_UNLOCK (mime_info_cache);
2939     }
2940 }
2941
2942 static GList *
2943 append_desktop_entry (GList      *list, 
2944                       const char *desktop_entry,
2945                       GList      *removed_entries)
2946 {
2947   /* Add if not already in list, and valid */
2948   if (!g_list_find_custom (list, desktop_entry, (GCompareFunc) strcmp) &&
2949       !g_list_find_custom (removed_entries, desktop_entry, (GCompareFunc) strcmp))
2950     list = g_list_prepend (list, g_strdup (desktop_entry));
2951   
2952   return list;
2953 }
2954
2955 /**
2956  * get_all_desktop_entries_for_mime_type:
2957  * @mime_type: a mime type.
2958  * @except: NULL or a strv list
2959  *
2960  * Returns all the desktop ids for @mime_type. The desktop files
2961  * are listed in an order so that default applications are listed before
2962  * non-default ones, and handlers for inherited mimetypes are listed
2963  * after the base ones.
2964  *
2965  * Optionally doesn't list the desktop ids given in the @except 
2966  *
2967  * Return value: a #GList containing the desktop ids which claim
2968  *    to handle @mime_type.
2969  */
2970 static GList *
2971 get_all_desktop_entries_for_mime_type (const char  *base_mime_type,
2972                                        const char **except,
2973                                        gboolean     include_fallback,
2974                                        char       **explicit_default)
2975 {
2976   GList *desktop_entries, *removed_entries, *list, *dir_list, *tmp;
2977   MimeInfoCacheDir *dir;
2978   char *mime_type, *default_entry = NULL;
2979   const char *entry;
2980   char **mime_types;
2981   char **default_entries;
2982   char **removed_associations;
2983   int i, j, k;
2984   GPtrArray *array;
2985   char **anc;
2986   
2987   mime_info_cache_init ();
2988
2989   if (include_fallback)
2990     {
2991       /* collect all ancestors */
2992       mime_types = _g_unix_content_type_get_parents (base_mime_type);
2993       array = g_ptr_array_new ();
2994       for (i = 0; mime_types[i]; i++)
2995         g_ptr_array_add (array, mime_types[i]);
2996       g_free (mime_types);
2997       for (i = 0; i < array->len; i++)
2998         {
2999           anc = _g_unix_content_type_get_parents (g_ptr_array_index (array, i));
3000           for (j = 0; anc[j]; j++)
3001             {
3002               for (k = 0; k < array->len; k++)
3003                 {
3004                   if (strcmp (anc[j], g_ptr_array_index (array, k)) == 0)
3005                     break;
3006                 }
3007               if (k == array->len) /* not found */
3008                 g_ptr_array_add (array, g_strdup (anc[j]));
3009             }
3010           g_strfreev (anc);
3011         }
3012       g_ptr_array_add (array, NULL);
3013       mime_types = (char **)g_ptr_array_free (array, FALSE);
3014     }
3015   else
3016     {
3017       mime_types = g_malloc0 (2 * sizeof (gchar *));
3018       mime_types[0] = g_strdup (base_mime_type);
3019       mime_types[1] = NULL;
3020     }
3021
3022   G_LOCK (mime_info_cache);
3023   
3024   removed_entries = NULL;
3025   desktop_entries = NULL;
3026
3027   for (i = 0; except != NULL && except[i] != NULL; i++)
3028     removed_entries = g_list_prepend (removed_entries, g_strdup (except[i]));
3029   
3030   for (i = 0; mime_types[i] != NULL; i++)
3031     {
3032       mime_type = mime_types[i];
3033
3034       /* Go through all apps listed in user and system dirs */
3035       for (dir_list = mime_info_cache->dirs;
3036            dir_list != NULL;
3037            dir_list = dir_list->next)
3038         {
3039           dir = dir_list->data;
3040
3041           /* Pick the explicit default application */
3042           entry = g_hash_table_lookup (dir->mimeapps_list_defaults_map, mime_type);
3043
3044           if (entry != NULL)
3045             {
3046               /* Save the default entry if it's the first one we encounter */
3047               if (default_entry == NULL)
3048                 default_entry = g_strdup (entry);
3049             }
3050
3051           /* Then added associations from mimeapps.list */
3052           default_entries = g_hash_table_lookup (dir->mimeapps_list_added_map, mime_type);
3053           for (j = 0; default_entries != NULL && default_entries[j] != NULL; j++)
3054             desktop_entries = append_desktop_entry (desktop_entries, default_entries[j], removed_entries);
3055
3056           /* Then removed associations from mimeapps.list */
3057           removed_associations = g_hash_table_lookup (dir->mimeapps_list_removed_map, mime_type);
3058           for (j = 0; removed_associations != NULL && removed_associations[j] != NULL; j++)
3059             removed_entries = append_desktop_entry (removed_entries, removed_associations[j], NULL);
3060
3061           /* Then system defaults (or old per-user config) (using removed associations from this dir or earlier) */
3062           default_entries = g_hash_table_lookup (dir->defaults_list_map, mime_type);
3063           for (j = 0; default_entries != NULL && default_entries[j] != NULL; j++)
3064             desktop_entries = append_desktop_entry (desktop_entries, default_entries[j], removed_entries);
3065         }
3066
3067       /* Go through all entries that support the mimetype */
3068       for (dir_list = mime_info_cache->dirs;
3069            dir_list != NULL;
3070            dir_list = dir_list->next) 
3071         {
3072           dir = dir_list->data;
3073         
3074           list = g_hash_table_lookup (dir->mime_info_cache_map, mime_type);
3075           for (tmp = list; tmp != NULL; tmp = tmp->next)
3076             desktop_entries = append_desktop_entry (desktop_entries, tmp->data, removed_entries);
3077         }
3078     }
3079   
3080   G_UNLOCK (mime_info_cache);
3081
3082   g_strfreev (mime_types);
3083
3084   if (explicit_default != NULL)
3085     *explicit_default = default_entry;
3086   else
3087     g_free (default_entry);
3088
3089   g_list_foreach (removed_entries, (GFunc)g_free, NULL);
3090   g_list_free (removed_entries);
3091
3092   desktop_entries = g_list_reverse (desktop_entries);
3093   
3094   return desktop_entries;
3095 }
3096
3097 /* GDesktopAppInfoLookup interface: */
3098
3099 typedef GDesktopAppInfoLookupIface GDesktopAppInfoLookupInterface;
3100 G_DEFINE_INTERFACE (GDesktopAppInfoLookup, g_desktop_app_info_lookup, G_TYPE_OBJECT)
3101
3102 static void
3103 g_desktop_app_info_lookup_default_init (GDesktopAppInfoLookupInterface *iface)
3104 {
3105 }
3106
3107 /**
3108  * g_desktop_app_info_lookup_get_default_for_uri_scheme:
3109  * @lookup: a #GDesktopAppInfoLookup
3110  * @uri_scheme: a string containing a URI scheme.
3111  *
3112  * Gets the default application for launching applications 
3113  * using this URI scheme for a particular GDesktopAppInfoLookup
3114  * implementation.
3115  *
3116  * The GDesktopAppInfoLookup interface and this function is used
3117  * to implement g_app_info_get_default_for_uri_scheme() backends
3118  * in a GIO module. There is no reason for applications to use it
3119  * directly. Applications should use g_app_info_get_default_for_uri_scheme().
3120  * 
3121  * Returns: (transfer full): #GAppInfo for given @uri_scheme or %NULL on error.
3122  *
3123  * Deprecated: The #GDesktopAppInfoLookup interface is deprecated and unused by gio.
3124  */
3125 GAppInfo *
3126 g_desktop_app_info_lookup_get_default_for_uri_scheme (GDesktopAppInfoLookup *lookup,
3127                                                       const char            *uri_scheme)
3128 {
3129   GDesktopAppInfoLookupIface *iface;
3130   
3131   g_return_val_if_fail (G_IS_DESKTOP_APP_INFO_LOOKUP (lookup), NULL);
3132
3133   iface = G_DESKTOP_APP_INFO_LOOKUP_GET_IFACE (lookup);
3134
3135   return (* iface->get_default_for_uri_scheme) (lookup, uri_scheme);
3136 }