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