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