gio/*: Use g_list_free_full() convenience function
[platform/upstream/glib.git] / gio / gdesktopappinfo.c
1 /* GIO - GLib Input, Output and Streaming Library
2  *
3  * Copyright (C) 2006-2007 Red Hat, Inc.
4  * Copyright © 2007 Ryan Lortie
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General
17  * Public License along with this library; if not, write to the
18  * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
19  * Boston, MA 02111-1307, USA.
20  *
21  * Author: Alexander Larsson <alexl@redhat.com>
22  */
23
24 #include "config.h"
25
26 #include <errno.h>
27 #include <string.h>
28 #include <unistd.h>
29 #include <sys/wait.h>
30
31 #ifdef HAVE_CRT_EXTERNS_H
32 #include <crt_externs.h>
33 #endif
34
35 #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 X-GNOME-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
1296       display = NULL;
1297       sn_id = NULL;
1298       if (launch_context)
1299         {
1300           GList *launched_files = create_files_for_uris (launched_uris);
1301
1302           display = g_app_launch_context_get_display (launch_context,
1303                                                       appinfo,
1304                                                       launched_files);
1305           envp = g_environ_setenv (envp, "DISPLAY", display, TRUE);
1306
1307           if (info->startup_notify)
1308             {
1309               sn_id = g_app_launch_context_get_startup_notify_id (launch_context,
1310                                                                   appinfo,
1311                                                                   launched_files);
1312               envp = g_environ_setenv (envp, "DESKTOP_STARTUP_ID", sn_id, TRUE);
1313             }
1314
1315           g_list_free_full (launched_files, g_object_unref);
1316         }
1317
1318       if (!g_spawn_async (info->path,
1319                           argv,
1320                           envp,
1321                           spawn_flags,
1322                           child_setup,
1323                           &data,
1324                           &pid,
1325                           error))
1326         {
1327           if (sn_id)
1328             g_app_launch_context_launch_failed (launch_context, sn_id);
1329
1330           g_free (display);
1331           g_free (sn_id);
1332           g_list_free (launched_uris);
1333
1334           goto out;
1335         }
1336
1337       if (pid_callback != NULL)
1338         pid_callback (info, pid, pid_callback_data);
1339
1340       notify_desktop_launch (session_bus,
1341                              info,
1342                              pid,
1343                              display,
1344                              sn_id,
1345                              launched_uris);
1346
1347       g_free (display);
1348       g_free (sn_id);
1349       g_list_free (launched_uris);
1350
1351       g_strfreev (argv);
1352       argv = NULL;
1353     }
1354   while (uris != NULL);
1355
1356   /* TODO - need to handle the process exiting immediately
1357    * after launching an app.  See http://bugzilla.gnome.org/606960
1358    */
1359   if (session_bus != NULL)
1360     {
1361       /* This asynchronous flush holds a reference until it completes,
1362        * which ensures that the following unref won't immediately kill
1363        * the connection if we were the initial owner.
1364        */
1365       g_dbus_connection_flush (session_bus, NULL, NULL, NULL);
1366       g_object_unref (session_bus);
1367     }
1368
1369   completed = TRUE;
1370
1371  out:
1372   g_strfreev (argv);
1373   g_strfreev (envp);
1374
1375   return completed;
1376 }
1377
1378 static gboolean
1379 g_desktop_app_info_launch_uris (GAppInfo           *appinfo,
1380                                 GList              *uris,
1381                                 GAppLaunchContext  *launch_context,
1382                                 GError            **error)
1383 {
1384   return _g_desktop_app_info_launch_uris_internal (appinfo, uris,
1385                                                    launch_context,
1386                                                    _SPAWN_FLAGS_DEFAULT,
1387                                                    NULL, NULL, NULL, NULL,
1388                                                    error);
1389 }
1390
1391 static gboolean
1392 g_desktop_app_info_supports_uris (GAppInfo *appinfo)
1393 {
1394   GDesktopAppInfo *info = G_DESKTOP_APP_INFO (appinfo);
1395  
1396   return info->exec && 
1397     ((strstr (info->exec, "%u") != NULL) ||
1398      (strstr (info->exec, "%U") != NULL));
1399 }
1400
1401 static gboolean
1402 g_desktop_app_info_supports_files (GAppInfo *appinfo)
1403 {
1404   GDesktopAppInfo *info = G_DESKTOP_APP_INFO (appinfo);
1405  
1406   return info->exec && 
1407     ((strstr (info->exec, "%f") != NULL) ||
1408      (strstr (info->exec, "%F") != NULL));
1409 }
1410
1411 static gboolean
1412 g_desktop_app_info_launch (GAppInfo           *appinfo,
1413                            GList              *files,
1414                            GAppLaunchContext  *launch_context,
1415                            GError            **error)
1416 {
1417   GList *uris;
1418   char *uri;
1419   gboolean res;
1420
1421   uris = NULL;
1422   while (files)
1423     {
1424       uri = g_file_get_uri (files->data);
1425       uris = g_list_prepend (uris, uri);
1426       files = files->next;
1427     }
1428   
1429   uris = g_list_reverse (uris);
1430   
1431   res = g_desktop_app_info_launch_uris (appinfo, uris, launch_context, error);
1432   
1433   g_list_free_full (uris, g_free);
1434   
1435   return res;
1436 }
1437
1438 /**
1439  * g_desktop_app_info_launch_uris_as_manager:
1440  * @appinfo: a #GDesktopAppInfo
1441  * @uris: (element-type utf8): List of URIs
1442  * @launch_context: a #GAppLaunchContext
1443  * @spawn_flags: #GSpawnFlags, used for each process
1444  * @user_setup: (scope call): a #GSpawnChildSetupFunc, used once for
1445  *     each process.
1446  * @user_setup_data: (closure user_setup): User data for @user_setup
1447  * @pid_callback: (scope call): Callback for child processes
1448  * @pid_callback_data: (closure pid_callback): User data for @callback
1449  * @error: return location for a #GError, or %NULL
1450  *
1451  * This function performs the equivalent of g_app_info_launch_uris(),
1452  * but is intended primarily for operating system components that
1453  * launch applications.  Ordinary applications should use
1454  * g_app_info_launch_uris().
1455  *
1456  * In contrast to g_app_info_launch_uris(), all processes created will
1457  * always be run directly as children as if by the UNIX fork()/exec()
1458  * calls.
1459  *
1460  * This guarantee allows additional control over the exact environment
1461  * of the child processes, which is provided via a setup function
1462  * @user_setup, as well as the process identifier of each child process
1463  * via @pid_callback. See g_spawn_async() for more information about the
1464  * semantics of the @user_setup function.
1465  *
1466  * Returns: %TRUE on successful launch, %FALSE otherwise.
1467  */
1468 gboolean
1469 g_desktop_app_info_launch_uris_as_manager (GDesktopAppInfo            *appinfo,
1470                                            GList                      *uris,
1471                                            GAppLaunchContext          *launch_context,
1472                                            GSpawnFlags                 spawn_flags,
1473                                            GSpawnChildSetupFunc        user_setup,
1474                                            gpointer                    user_setup_data,
1475                                            GDesktopAppLaunchCallback   pid_callback,
1476                                            gpointer                    pid_callback_data,
1477                                            GError                    **error)
1478 {
1479   return _g_desktop_app_info_launch_uris_internal ((GAppInfo*)appinfo,
1480                                                    uris,
1481                                                    launch_context,
1482                                                    spawn_flags,
1483                                                    user_setup,
1484                                                    user_setup_data,
1485                                                    pid_callback,
1486                                                    pid_callback_data,
1487                                                    error);
1488 }
1489
1490 /**
1491  * g_desktop_app_info_set_desktop_env:
1492  * @desktop_env: a string specifying what desktop this is
1493  *
1494  * Sets the name of the desktop that the application is running in.
1495  * This is used by g_app_info_should_show() and
1496  * g_desktop_app_info_get_show_in() to evaluate the
1497  * <literal>OnlyShowIn</literal> and <literal>NotShowIn</literal>
1498  * desktop entry fields.
1499  *
1500  * The <ulink url="http://standards.freedesktop.org/menu-spec/latest/">Desktop
1501  * Menu specification</ulink> recognizes the following:
1502  * <simplelist>
1503  *   <member>GNOME</member>
1504  *   <member>KDE</member>
1505  *   <member>ROX</member>
1506  *   <member>XFCE</member>
1507  *   <member>LXDE</member>
1508  *   <member>Unity</member>
1509  *   <member>Old</member>
1510  * </simplelist>
1511  *
1512  * Should be called only once; subsequent calls are ignored.
1513  */
1514 void
1515 g_desktop_app_info_set_desktop_env (const gchar *desktop_env)
1516 {
1517   G_LOCK (g_desktop_env);
1518   if (!g_desktop_env)
1519     g_desktop_env = g_strdup (desktop_env);
1520   G_UNLOCK (g_desktop_env);
1521 }
1522
1523 static gboolean
1524 g_desktop_app_info_should_show (GAppInfo *appinfo)
1525 {
1526   GDesktopAppInfo *info = G_DESKTOP_APP_INFO (appinfo);
1527
1528   if (info->nodisplay)
1529     return FALSE;
1530
1531   return g_desktop_app_info_get_show_in (info, NULL);
1532 }
1533
1534 typedef enum {
1535   APP_DIR,
1536   MIMETYPE_DIR
1537 } DirType;
1538
1539 static char *
1540 ensure_dir (DirType   type,
1541             GError  **error)
1542 {
1543   char *path, *display_name;
1544   int errsv;
1545
1546   if (type == APP_DIR)
1547     path = g_build_filename (g_get_user_data_dir (), "applications", NULL);
1548   else
1549     path = g_build_filename (g_get_user_data_dir (), "mime", "packages", NULL);
1550
1551   errno = 0;
1552   if (g_mkdir_with_parents (path, 0700) == 0)
1553     return path;
1554
1555   errsv = errno;
1556   display_name = g_filename_display_name (path);
1557   if (type == APP_DIR)
1558     g_set_error (error, G_IO_ERROR, g_io_error_from_errno (errsv),
1559                  _("Can't create user application configuration folder %s: %s"),
1560                  display_name, g_strerror (errsv));
1561   else
1562     g_set_error (error, G_IO_ERROR, g_io_error_from_errno (errsv),
1563                  _("Can't create user MIME configuration folder %s: %s"),
1564                  display_name, g_strerror (errsv));
1565
1566   g_free (display_name);
1567   g_free (path);
1568
1569   return NULL;
1570 }
1571
1572 static gboolean
1573 update_mimeapps_list (const char  *desktop_id, 
1574                       const char  *content_type,
1575                       UpdateMimeFlags flags,
1576                       GError     **error)
1577 {
1578   char *dirname, *filename, *string;
1579   GKeyFile *key_file;
1580   gboolean load_succeeded, res;
1581   char **old_list, **list;
1582   gsize length, data_size;
1583   char *data;
1584   int i, j, k;
1585   char **content_types;
1586
1587   /* Don't add both at start and end */
1588   g_assert (!((flags & UPDATE_MIME_SET_DEFAULT) &&
1589               (flags & UPDATE_MIME_SET_NON_DEFAULT)));
1590
1591   dirname = ensure_dir (APP_DIR, error);
1592   if (!dirname)
1593     return FALSE;
1594
1595   filename = g_build_filename (dirname, "mimeapps.list", NULL);
1596   g_free (dirname);
1597
1598   key_file = g_key_file_new ();
1599   load_succeeded = g_key_file_load_from_file (key_file, filename, G_KEY_FILE_NONE, NULL);
1600   if (!load_succeeded ||
1601       (!g_key_file_has_group (key_file, ADDED_ASSOCIATIONS_GROUP) &&
1602        !g_key_file_has_group (key_file, REMOVED_ASSOCIATIONS_GROUP) &&
1603        !g_key_file_has_group (key_file, DEFAULT_APPLICATIONS_GROUP)))
1604     {
1605       g_key_file_free (key_file);
1606       key_file = g_key_file_new ();
1607     }
1608
1609   if (content_type)
1610     {
1611       content_types = g_new (char *, 2);
1612       content_types[0] = g_strdup (content_type);
1613       content_types[1] = NULL;
1614     }
1615   else
1616     {
1617       content_types = g_key_file_get_keys (key_file, DEFAULT_APPLICATIONS_GROUP, NULL, NULL);
1618     }
1619
1620   for (k = 0; content_types && content_types[k]; k++)
1621     {
1622       /* set as default, if requested so */
1623       string = g_key_file_get_string (key_file,
1624                                       DEFAULT_APPLICATIONS_GROUP,
1625                                       content_types[k],
1626                                       NULL);
1627
1628       if (g_strcmp0 (string, desktop_id) != 0 &&
1629           (flags & UPDATE_MIME_SET_DEFAULT))
1630         {
1631           g_free (string);
1632           string = g_strdup (desktop_id);
1633
1634           /* add in the non-default list too, if it's not already there */
1635           flags |= UPDATE_MIME_SET_NON_DEFAULT;
1636         }
1637
1638       if (string == NULL || desktop_id == NULL)
1639         g_key_file_remove_key (key_file,
1640                                DEFAULT_APPLICATIONS_GROUP,
1641                                content_types[k],
1642                                NULL);
1643       else
1644         g_key_file_set_string (key_file,
1645                                DEFAULT_APPLICATIONS_GROUP,
1646                                content_types[k],
1647                                string);
1648
1649       g_free (string);
1650     }
1651
1652   if (content_type)
1653     {
1654       /* reuse the list from above */
1655     }
1656   else
1657     {
1658       g_strfreev (content_types);
1659       content_types = g_key_file_get_keys (key_file, ADDED_ASSOCIATIONS_GROUP, NULL, NULL);
1660     }
1661   
1662   for (k = 0; content_types && content_types[k]; k++)
1663     { 
1664       /* Add to the right place in the list */
1665   
1666       length = 0;
1667       old_list = g_key_file_get_string_list (key_file, ADDED_ASSOCIATIONS_GROUP,
1668                                              content_types[k], &length, NULL);
1669
1670       list = g_new (char *, 1 + length + 1);
1671
1672       i = 0;
1673
1674       /* if we're adding a last-used hint, just put the application in front of the list */
1675       if (flags & UPDATE_MIME_SET_LAST_USED)
1676         {
1677           /* avoid adding this again as non-default later */
1678           if (flags & UPDATE_MIME_SET_NON_DEFAULT)
1679             flags ^= UPDATE_MIME_SET_NON_DEFAULT;
1680
1681           list[i++] = g_strdup (desktop_id);
1682         }
1683
1684       if (old_list)
1685         {
1686           for (j = 0; old_list[j] != NULL; j++)
1687             {
1688               if (g_strcmp0 (old_list[j], desktop_id) != 0)
1689                 {
1690                   /* rewrite other entries if they're different from the new one */
1691                   list[i++] = g_strdup (old_list[j]);
1692                 }
1693               else if (flags & UPDATE_MIME_SET_NON_DEFAULT)
1694                 {
1695                   /* we encountered an old entry which is equal to the one we're adding as non-default,
1696                    * don't change its position in the list.
1697                    */
1698                   flags ^= UPDATE_MIME_SET_NON_DEFAULT;
1699                   list[i++] = g_strdup (old_list[j]);
1700                 }
1701             }
1702         }
1703
1704       /* add it at the end of the list */
1705       if (flags & UPDATE_MIME_SET_NON_DEFAULT)
1706         list[i++] = g_strdup (desktop_id);
1707
1708       list[i] = NULL;
1709   
1710       g_strfreev (old_list);
1711
1712       if (list[0] == NULL || desktop_id == NULL)
1713         g_key_file_remove_key (key_file,
1714                                ADDED_ASSOCIATIONS_GROUP,
1715                                content_types[k],
1716                                NULL);
1717       else
1718         g_key_file_set_string_list (key_file,
1719                                     ADDED_ASSOCIATIONS_GROUP,
1720                                     content_types[k],
1721                                     (const char * const *)list, i);
1722
1723       g_strfreev (list);
1724     }
1725   
1726   if (content_type)
1727     {
1728       /* reuse the list from above */
1729     }
1730   else
1731     {
1732       g_strfreev (content_types);
1733       content_types = g_key_file_get_keys (key_file, REMOVED_ASSOCIATIONS_GROUP, NULL, NULL);
1734     }
1735
1736   for (k = 0; content_types && content_types[k]; k++) 
1737     {
1738       /* Remove from removed associations group (unless remove) */
1739   
1740       length = 0;
1741       old_list = g_key_file_get_string_list (key_file, REMOVED_ASSOCIATIONS_GROUP,
1742                                              content_types[k], &length, NULL);
1743
1744       list = g_new (char *, 1 + length + 1);
1745
1746       i = 0;
1747       if (flags & UPDATE_MIME_REMOVE)
1748         list[i++] = g_strdup (desktop_id);
1749       if (old_list)
1750         {
1751           for (j = 0; old_list[j] != NULL; j++)
1752             {
1753               if (g_strcmp0 (old_list[j], desktop_id) != 0)
1754                 list[i++] = g_strdup (old_list[j]);
1755             }
1756         }
1757       list[i] = NULL;
1758   
1759       g_strfreev (old_list);
1760
1761       if (list[0] == NULL || desktop_id == NULL)
1762         g_key_file_remove_key (key_file,
1763                                REMOVED_ASSOCIATIONS_GROUP,
1764                                content_types[k],
1765                                NULL);
1766       else
1767         g_key_file_set_string_list (key_file,
1768                                     REMOVED_ASSOCIATIONS_GROUP,
1769                                     content_types[k],
1770                                     (const char * const *)list, i);
1771
1772       g_strfreev (list);
1773     }
1774
1775   g_strfreev (content_types);
1776
1777   data = g_key_file_to_data (key_file, &data_size, error);
1778   g_key_file_free (key_file);
1779
1780   res = g_file_set_contents (filename, data, data_size, error);
1781
1782   mime_info_cache_reload (NULL);
1783
1784   g_free (filename);
1785   g_free (data);
1786
1787   return res;
1788 }
1789
1790 static gboolean
1791 g_desktop_app_info_set_as_last_used_for_type (GAppInfo    *appinfo,
1792                                               const char  *content_type,
1793                                               GError     **error)
1794 {
1795   GDesktopAppInfo *info = G_DESKTOP_APP_INFO (appinfo);
1796
1797   if (!g_desktop_app_info_ensure_saved (info, error))
1798     return FALSE;
1799
1800   if (!info->desktop_id)
1801     {
1802       g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_FAILED,
1803                            _("Application information lacks an identifier"));
1804       return FALSE;
1805     }
1806
1807   /* both add support for the content type and set as last used */
1808   return update_mimeapps_list (info->desktop_id, content_type,
1809                                UPDATE_MIME_SET_NON_DEFAULT |
1810                                UPDATE_MIME_SET_LAST_USED,
1811                                error);
1812 }
1813
1814 static gboolean
1815 g_desktop_app_info_set_as_default_for_type (GAppInfo    *appinfo,
1816                                             const char  *content_type,
1817                                             GError     **error)
1818 {
1819   GDesktopAppInfo *info = G_DESKTOP_APP_INFO (appinfo);
1820
1821   if (!g_desktop_app_info_ensure_saved (info, error))
1822     return FALSE;
1823
1824   if (!info->desktop_id)
1825     {
1826       g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_FAILED,
1827                            _("Application information lacks an identifier"));
1828       return FALSE;
1829     }
1830
1831   return update_mimeapps_list (info->desktop_id, content_type,
1832                                UPDATE_MIME_SET_DEFAULT,
1833                                error);
1834 }
1835
1836 static void
1837 update_program_done (GPid     pid,
1838                      gint     status,
1839                      gpointer data)
1840 {
1841   /* Did the application exit correctly */
1842   if (WIFEXITED (status) &&
1843       WEXITSTATUS (status) == 0)
1844     {
1845       /* Here we could clean out any caches in use */
1846     }
1847 }
1848
1849 static void
1850 run_update_command (char *command,
1851                     char *subdir)
1852 {
1853         char *argv[3] = {
1854                 NULL,
1855                 NULL,
1856                 NULL,
1857         };
1858         GPid pid = 0;
1859         GError *error = NULL;
1860
1861         argv[0] = command;
1862         argv[1] = g_build_filename (g_get_user_data_dir (), subdir, NULL);
1863
1864         if (g_spawn_async ("/", argv,
1865                            NULL,       /* envp */
1866                            G_SPAWN_SEARCH_PATH |
1867                            G_SPAWN_STDOUT_TO_DEV_NULL |
1868                            G_SPAWN_STDERR_TO_DEV_NULL |
1869                            G_SPAWN_DO_NOT_REAP_CHILD,
1870                            NULL, NULL, /* No setup function */
1871                            &pid,
1872                            &error)) 
1873           g_child_watch_add (pid, update_program_done, NULL);
1874         else
1875           {
1876             /* If we get an error at this point, it's quite likely the user doesn't
1877              * have an installed copy of either 'update-mime-database' or
1878              * 'update-desktop-database'.  I don't think we want to popup an error
1879              * dialog at this point, so we just do a g_warning to give the user a
1880              * chance of debugging it.
1881              */
1882             g_warning ("%s", error->message);
1883           }
1884         
1885         g_free (argv[1]);
1886 }
1887
1888 static gboolean
1889 g_desktop_app_info_set_as_default_for_extension (GAppInfo    *appinfo,
1890                                                  const char  *extension,
1891                                                  GError     **error)
1892 {
1893   char *filename, *basename, *mimetype;
1894   char *dirname;
1895   gboolean res;
1896
1897   if (!g_desktop_app_info_ensure_saved (G_DESKTOP_APP_INFO (appinfo), error))
1898     return FALSE;  
1899   
1900   dirname = ensure_dir (MIMETYPE_DIR, error);
1901   if (!dirname)
1902     return FALSE;
1903   
1904   basename = g_strdup_printf ("user-extension-%s.xml", extension);
1905   filename = g_build_filename (dirname, basename, NULL);
1906   g_free (basename);
1907   g_free (dirname);
1908
1909   mimetype = g_strdup_printf ("application/x-extension-%s", extension);
1910   
1911   if (!g_file_test (filename, G_FILE_TEST_EXISTS)) 
1912     {
1913       char *contents;
1914
1915       contents =
1916         g_strdup_printf ("<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"
1917                          "<mime-info xmlns=\"http://www.freedesktop.org/standards/shared-mime-info\">\n"
1918                          " <mime-type type=\"%s\">\n"
1919                          "  <comment>%s document</comment>\n"
1920                          "  <glob pattern=\"*.%s\"/>\n"
1921                          " </mime-type>\n"
1922                          "</mime-info>\n", mimetype, extension, extension);
1923
1924       g_file_set_contents (filename, contents, -1, NULL);
1925       g_free (contents);
1926
1927       run_update_command ("update-mime-database", "mime");
1928     }
1929   g_free (filename);
1930   
1931   res = g_desktop_app_info_set_as_default_for_type (appinfo,
1932                                                     mimetype,
1933                                                     error);
1934
1935   g_free (mimetype);
1936   
1937   return res;
1938 }
1939
1940 static gboolean
1941 g_desktop_app_info_add_supports_type (GAppInfo    *appinfo,
1942                                       const char  *content_type,
1943                                       GError     **error)
1944 {
1945   GDesktopAppInfo *info = G_DESKTOP_APP_INFO (appinfo);
1946
1947   if (!g_desktop_app_info_ensure_saved (G_DESKTOP_APP_INFO (info), error))
1948     return FALSE;  
1949   
1950   return update_mimeapps_list (info->desktop_id, content_type,
1951                                UPDATE_MIME_SET_NON_DEFAULT,
1952                                error);
1953 }
1954
1955 static gboolean
1956 g_desktop_app_info_can_remove_supports_type (GAppInfo *appinfo)
1957 {
1958   return TRUE;
1959 }
1960
1961 static gboolean
1962 g_desktop_app_info_remove_supports_type (GAppInfo    *appinfo,
1963                                          const char  *content_type,
1964                                          GError     **error)
1965 {
1966   GDesktopAppInfo *info = G_DESKTOP_APP_INFO (appinfo);
1967
1968   if (!g_desktop_app_info_ensure_saved (G_DESKTOP_APP_INFO (info), error))
1969     return FALSE;
1970   
1971   return update_mimeapps_list (info->desktop_id, content_type,
1972                                UPDATE_MIME_REMOVE,
1973                                error);
1974 }
1975
1976 static gboolean
1977 g_desktop_app_info_ensure_saved (GDesktopAppInfo  *info,
1978                                  GError          **error)
1979 {
1980   GKeyFile *key_file;
1981   char *dirname;
1982   char *filename;
1983   char *data, *desktop_id;
1984   gsize data_size;
1985   int fd;
1986   gboolean res;
1987   
1988   if (info->filename != NULL)
1989     return TRUE;
1990
1991   /* This is only used for object created with
1992    * g_app_info_create_from_commandline. All other
1993    * object should have a filename
1994    */
1995   
1996   dirname = ensure_dir (APP_DIR, error);
1997   if (!dirname)
1998     return FALSE;
1999   
2000   key_file = g_key_file_new ();
2001
2002   g_key_file_set_string (key_file, G_KEY_FILE_DESKTOP_GROUP,
2003                          "Encoding", "UTF-8");
2004   g_key_file_set_string (key_file, G_KEY_FILE_DESKTOP_GROUP,
2005                          G_KEY_FILE_DESKTOP_KEY_VERSION, "1.0");
2006   g_key_file_set_string (key_file, G_KEY_FILE_DESKTOP_GROUP,
2007                          G_KEY_FILE_DESKTOP_KEY_TYPE,
2008                          G_KEY_FILE_DESKTOP_TYPE_APPLICATION);
2009   if (info->terminal) 
2010     g_key_file_set_boolean (key_file, G_KEY_FILE_DESKTOP_GROUP,
2011                             G_KEY_FILE_DESKTOP_KEY_TERMINAL, TRUE);
2012   if (info->nodisplay)
2013     g_key_file_set_boolean (key_file, G_KEY_FILE_DESKTOP_GROUP,
2014                             G_KEY_FILE_DESKTOP_KEY_NO_DISPLAY, TRUE);
2015
2016   g_key_file_set_string (key_file, G_KEY_FILE_DESKTOP_GROUP,
2017                          G_KEY_FILE_DESKTOP_KEY_EXEC, info->exec);
2018
2019   g_key_file_set_string (key_file, G_KEY_FILE_DESKTOP_GROUP,
2020                          G_KEY_FILE_DESKTOP_KEY_NAME, info->name);
2021
2022   if (info->generic_name != NULL)
2023     g_key_file_set_string (key_file, G_KEY_FILE_DESKTOP_GROUP,
2024                            GENERIC_NAME_KEY, info->generic_name);
2025
2026   if (info->fullname != NULL)
2027     g_key_file_set_string (key_file, G_KEY_FILE_DESKTOP_GROUP,
2028                            FULL_NAME_KEY, info->fullname);
2029
2030   g_key_file_set_string (key_file, G_KEY_FILE_DESKTOP_GROUP,
2031                          G_KEY_FILE_DESKTOP_KEY_COMMENT, info->comment);
2032   
2033   g_key_file_set_boolean (key_file, G_KEY_FILE_DESKTOP_GROUP,
2034                           G_KEY_FILE_DESKTOP_KEY_NO_DISPLAY, TRUE);
2035
2036   data = g_key_file_to_data (key_file, &data_size, NULL);
2037   g_key_file_free (key_file);
2038
2039   desktop_id = g_strdup_printf ("userapp-%s-XXXXXX.desktop", info->name);
2040   filename = g_build_filename (dirname, desktop_id, NULL);
2041   g_free (desktop_id);
2042   g_free (dirname);
2043   
2044   fd = g_mkstemp (filename);
2045   if (fd == -1)
2046     {
2047       char *display_name;
2048
2049       display_name = g_filename_display_name (filename);
2050       g_set_error (error, G_IO_ERROR, G_IO_ERROR_FAILED,
2051                    _("Can't create user desktop file %s"), display_name);
2052       g_free (display_name);
2053       g_free (filename);
2054       g_free (data);
2055       return FALSE;
2056     }
2057
2058   desktop_id = g_path_get_basename (filename);
2059
2060   close (fd);
2061   
2062   res = g_file_set_contents (filename, data, data_size, error);
2063   if (!res)
2064     {
2065       g_free (desktop_id);
2066       g_free (filename);
2067       return FALSE;
2068     }
2069
2070   info->filename = filename;
2071   info->desktop_id = desktop_id;
2072   
2073   run_update_command ("update-desktop-database", "applications");
2074   
2075   return TRUE;
2076 }
2077
2078 static gboolean
2079 g_desktop_app_info_can_delete (GAppInfo *appinfo)
2080 {
2081   GDesktopAppInfo *info = G_DESKTOP_APP_INFO (appinfo);
2082
2083   if (info->filename)
2084     {
2085       if (strstr (info->filename, "/userapp-"))
2086         return g_access (info->filename, W_OK) == 0;
2087     }
2088
2089   return FALSE;
2090 }
2091
2092 static gboolean
2093 g_desktop_app_info_delete (GAppInfo *appinfo)
2094 {
2095   GDesktopAppInfo *info = G_DESKTOP_APP_INFO (appinfo);
2096   
2097   if (info->filename)
2098     { 
2099       if (g_remove (info->filename) == 0)
2100         {
2101           update_mimeapps_list (info->desktop_id, NULL,
2102                                 UPDATE_MIME_NONE,
2103                                 NULL);
2104
2105           g_free (info->filename);
2106           info->filename = NULL;
2107           g_free (info->desktop_id);
2108           info->desktop_id = NULL;
2109
2110           return TRUE;
2111         }
2112     }
2113
2114   return FALSE;
2115 }
2116
2117 /**
2118  * g_app_info_create_from_commandline:
2119  * @commandline: the commandline to use
2120  * @application_name: (allow-none): the application name, or %NULL to use @commandline
2121  * @flags: flags that can specify details of the created #GAppInfo
2122  * @error: a #GError location to store the error occurring, %NULL to ignore.
2123  *
2124  * Creates a new #GAppInfo from the given information.
2125  *
2126  * Returns: (transfer full): new #GAppInfo for given command.
2127  **/
2128 GAppInfo *
2129 g_app_info_create_from_commandline (const char           *commandline,
2130                                     const char           *application_name,
2131                                     GAppInfoCreateFlags   flags,
2132                                     GError              **error)
2133 {
2134   char **split;
2135   char *basename;
2136   GDesktopAppInfo *info;
2137
2138   g_return_val_if_fail (commandline, NULL);
2139
2140   info = g_object_new (G_TYPE_DESKTOP_APP_INFO, NULL);
2141
2142   info->filename = NULL;
2143   info->desktop_id = NULL;
2144   
2145   info->terminal = (flags & G_APP_INFO_CREATE_NEEDS_TERMINAL) != 0;
2146   info->startup_notify = (flags & G_APP_INFO_CREATE_SUPPORTS_STARTUP_NOTIFICATION) != 0;
2147   info->hidden = FALSE;
2148   if ((flags & G_APP_INFO_CREATE_SUPPORTS_URIS) != 0)
2149     info->exec = g_strconcat (commandline, " %u", NULL);
2150   else
2151     info->exec = g_strconcat (commandline, " %f", NULL);
2152   info->nodisplay = TRUE;
2153   info->binary = binary_from_exec (info->exec);
2154   
2155   if (application_name)
2156     info->name = g_strdup (application_name);
2157   else
2158     {
2159       /* FIXME: this should be more robust. Maybe g_shell_parse_argv and use argv[0] */
2160       split = g_strsplit (commandline, " ", 2);
2161       basename = split[0] ? g_path_get_basename (split[0]) : NULL;
2162       g_strfreev (split);
2163       info->name = basename;
2164       if (info->name == NULL)
2165         info->name = g_strdup ("custom");
2166     }
2167   info->comment = g_strdup_printf (_("Custom definition for %s"), info->name);
2168   
2169   return G_APP_INFO (info);
2170 }
2171
2172 static void
2173 g_desktop_app_info_iface_init (GAppInfoIface *iface)
2174 {
2175   iface->dup = g_desktop_app_info_dup;
2176   iface->equal = g_desktop_app_info_equal;
2177   iface->get_id = g_desktop_app_info_get_id;
2178   iface->get_name = g_desktop_app_info_get_name;
2179   iface->get_description = g_desktop_app_info_get_description;
2180   iface->get_executable = g_desktop_app_info_get_executable;
2181   iface->get_icon = g_desktop_app_info_get_icon;
2182   iface->launch = g_desktop_app_info_launch;
2183   iface->supports_uris = g_desktop_app_info_supports_uris;
2184   iface->supports_files = g_desktop_app_info_supports_files;
2185   iface->launch_uris = g_desktop_app_info_launch_uris;
2186   iface->should_show = g_desktop_app_info_should_show;
2187   iface->set_as_default_for_type = g_desktop_app_info_set_as_default_for_type;
2188   iface->set_as_default_for_extension = g_desktop_app_info_set_as_default_for_extension;
2189   iface->add_supports_type = g_desktop_app_info_add_supports_type;
2190   iface->can_remove_supports_type = g_desktop_app_info_can_remove_supports_type;
2191   iface->remove_supports_type = g_desktop_app_info_remove_supports_type;
2192   iface->can_delete = g_desktop_app_info_can_delete;
2193   iface->do_delete = g_desktop_app_info_delete;
2194   iface->get_commandline = g_desktop_app_info_get_commandline;
2195   iface->get_display_name = g_desktop_app_info_get_display_name;
2196   iface->set_as_last_used_for_type = g_desktop_app_info_set_as_last_used_for_type;
2197 }
2198
2199 static gboolean
2200 app_info_in_list (GAppInfo *info, 
2201                   GList    *list)
2202 {
2203   while (list != NULL)
2204     {
2205       if (g_app_info_equal (info, list->data))
2206         return TRUE;
2207       list = list->next;
2208     }
2209   return FALSE;
2210 }
2211
2212 /**
2213  * g_app_info_get_recommended_for_type:
2214  * @content_type: the content type to find a #GAppInfo for
2215  * 
2216  * Gets a list of recommended #GAppInfos for a given content type, i.e.
2217  * those applications which claim to support the given content type exactly,
2218  * and not by MIME type subclassing.
2219  * Note that the first application of the list is the last used one, i.e.
2220  * the last one for which g_app_info_set_as_last_used_for_type() has been
2221  * called.
2222  *
2223  * Returns: (element-type GAppInfo) (transfer full): #GList of #GAppInfos
2224  *     for given @content_type or %NULL on error.
2225  *
2226  * Since: 2.28
2227  **/
2228 GList *
2229 g_app_info_get_recommended_for_type (const gchar *content_type)
2230 {
2231   GList *desktop_entries, *l;
2232   GList *infos;
2233   GDesktopAppInfo *info;
2234
2235   g_return_val_if_fail (content_type != NULL, NULL);
2236
2237   desktop_entries = get_all_desktop_entries_for_mime_type (content_type, NULL, FALSE, NULL);
2238
2239   infos = NULL;
2240   for (l = desktop_entries; l != NULL; l = l->next)
2241     {
2242       char *desktop_entry = l->data;
2243
2244       info = g_desktop_app_info_new (desktop_entry);
2245       if (info)
2246         {
2247           if (app_info_in_list (G_APP_INFO (info), infos))
2248             g_object_unref (info);
2249           else
2250             infos = g_list_prepend (infos, info);
2251         }
2252       g_free (desktop_entry);
2253     }
2254
2255   g_list_free (desktop_entries);
2256
2257   return g_list_reverse (infos);
2258 }
2259
2260 /**
2261  * g_app_info_get_fallback_for_type:
2262  * @content_type: the content type to find a #GAppInfo for
2263  * 
2264  * Gets a list of fallback #GAppInfos for a given content type, i.e.
2265  * those applications which claim to support the given content type
2266  * by MIME type subclassing and not directly.
2267  *
2268  * Returns: (element-type GAppInfo) (transfer full): #GList of #GAppInfos
2269  *     for given @content_type or %NULL on error.
2270  *
2271  * Since: 2.28
2272  **/
2273 GList *
2274 g_app_info_get_fallback_for_type (const gchar *content_type)
2275 {
2276   GList *desktop_entries, *l;
2277   GList *infos, *recommended_infos;
2278   GDesktopAppInfo *info;
2279
2280   g_return_val_if_fail (content_type != NULL, NULL);
2281
2282   desktop_entries = get_all_desktop_entries_for_mime_type (content_type, NULL, TRUE, NULL);
2283   recommended_infos = g_app_info_get_recommended_for_type (content_type);
2284
2285   infos = NULL;
2286   for (l = desktop_entries; l != NULL; l = l->next)
2287     {
2288       char *desktop_entry = l->data;
2289
2290       info = g_desktop_app_info_new (desktop_entry);
2291       if (info)
2292         {
2293           if (app_info_in_list (G_APP_INFO (info), infos) ||
2294               app_info_in_list (G_APP_INFO (info), recommended_infos))
2295             g_object_unref (info);
2296           else
2297             infos = g_list_prepend (infos, info);
2298         }
2299       g_free (desktop_entry);
2300     }
2301
2302   g_list_free (desktop_entries);
2303   g_list_free_full (recommended_infos, g_object_unref);
2304
2305   return g_list_reverse (infos);
2306 }
2307
2308 /**
2309  * g_app_info_get_all_for_type:
2310  * @content_type: the content type to find a #GAppInfo for
2311  *
2312  * Gets a list of all #GAppInfos for a given content type,
2313  * including the recommended and fallback #GAppInfos. See
2314  * g_app_info_get_recommended_for_type() and
2315  * g_app_info_get_fallback_for_type().
2316  *
2317  * Returns: (element-type GAppInfo) (transfer full): #GList of #GAppInfos
2318  *     for given @content_type or %NULL on error.
2319  **/
2320 GList *
2321 g_app_info_get_all_for_type (const char *content_type)
2322 {
2323   GList *desktop_entries, *l;
2324   GList *infos;
2325   char *user_default = NULL;
2326   GDesktopAppInfo *info;
2327
2328   g_return_val_if_fail (content_type != NULL, NULL);
2329   
2330   desktop_entries = get_all_desktop_entries_for_mime_type (content_type, NULL, TRUE, &user_default);
2331   infos = NULL;
2332
2333   /* put the user default in front of the list, for compatibility */
2334   if (user_default != NULL)
2335     {
2336       info = g_desktop_app_info_new (user_default);
2337
2338       if (info != NULL)
2339         infos = g_list_prepend (infos, info);
2340     }
2341
2342   g_free (user_default);
2343
2344   for (l = desktop_entries; l != NULL; l = l->next)
2345     {
2346       char *desktop_entry = l->data;
2347
2348       info = g_desktop_app_info_new (desktop_entry);
2349       if (info)
2350         {
2351           if (app_info_in_list (G_APP_INFO (info), infos))
2352             g_object_unref (info);
2353           else
2354             infos = g_list_prepend (infos, info);
2355         }
2356       g_free (desktop_entry);
2357     }
2358
2359   g_list_free (desktop_entries);
2360   
2361   return g_list_reverse (infos);
2362 }
2363
2364 /**
2365  * g_app_info_reset_type_associations:
2366  * @content_type: a content type
2367  *
2368  * Removes all changes to the type associations done by
2369  * g_app_info_set_as_default_for_type(),
2370  * g_app_info_set_as_default_for_extension(),
2371  * g_app_info_add_supports_type() or
2372  * g_app_info_remove_supports_type().
2373  *
2374  * Since: 2.20
2375  */
2376 void
2377 g_app_info_reset_type_associations (const char *content_type)
2378 {
2379   update_mimeapps_list (NULL, content_type,
2380                         UPDATE_MIME_NONE,
2381                         NULL);
2382 }
2383
2384 /**
2385  * g_app_info_get_default_for_type:
2386  * @content_type: the content type to find a #GAppInfo for
2387  * @must_support_uris: if %TRUE, the #GAppInfo is expected to
2388  *     support URIs
2389  *
2390  * Gets the default #GAppInfo for a given content type.
2391  *
2392  * Returns: (transfer full): #GAppInfo for given @content_type or
2393  *     %NULL on error.
2394  */
2395 GAppInfo *
2396 g_app_info_get_default_for_type (const char *content_type,
2397                                  gboolean    must_support_uris)
2398 {
2399   GList *desktop_entries, *l;
2400   char *user_default = NULL;
2401   GAppInfo *info;
2402
2403   g_return_val_if_fail (content_type != NULL, NULL);
2404   
2405   desktop_entries = get_all_desktop_entries_for_mime_type (content_type, NULL, TRUE, &user_default);
2406
2407   info = NULL;
2408
2409   if (user_default != NULL)
2410     {
2411       info = (GAppInfo *) g_desktop_app_info_new (user_default);
2412
2413       if (info)
2414         {
2415           if (must_support_uris && !g_app_info_supports_uris (info))
2416             {
2417               g_object_unref (info);
2418               info = NULL;
2419             }
2420         }
2421     }
2422
2423   g_free (user_default);
2424
2425   if (info != NULL)
2426     {
2427       g_list_free_full (desktop_entries, g_free);
2428       return info;
2429     }
2430
2431   /* pick the first from the other list that matches our URI
2432    * requirements.
2433    */
2434   for (l = desktop_entries; l != NULL; l = l->next)
2435     {
2436       char *desktop_entry = l->data;
2437
2438       info = (GAppInfo *)g_desktop_app_info_new (desktop_entry);
2439       if (info)
2440         {
2441           if (must_support_uris && !g_app_info_supports_uris (info))
2442             {
2443               g_object_unref (info);
2444               info = NULL;
2445             }
2446           else
2447             break;
2448         }
2449     }
2450   
2451   g_list_free_full (desktop_entries, g_free);
2452
2453   return info;
2454 }
2455
2456 /**
2457  * g_app_info_get_default_for_uri_scheme:
2458  * @uri_scheme: a string containing a URI scheme.
2459  *
2460  * Gets the default application for handling URIs with
2461  * the given URI scheme. A URI scheme is the initial part
2462  * of the URI, up to but not including the ':', e.g. "http",
2463  * "ftp" or "sip".
2464  *
2465  * Returns: (transfer full): #GAppInfo for given @uri_scheme or %NULL on error.
2466  */
2467 GAppInfo *
2468 g_app_info_get_default_for_uri_scheme (const char *uri_scheme)
2469 {
2470   GAppInfo *app_info;
2471   char *content_type, *scheme_down;
2472
2473   scheme_down = g_ascii_strdown (uri_scheme, -1);
2474   content_type = g_strdup_printf ("x-scheme-handler/%s", scheme_down);
2475   g_free (scheme_down);
2476   app_info = g_app_info_get_default_for_type (content_type, FALSE);
2477   g_free (content_type);
2478
2479   return app_info;
2480 }
2481
2482 static void
2483 get_apps_from_dir (GHashTable *apps, 
2484                    const char *dirname, 
2485                    const char *prefix)
2486 {
2487   GDir *dir;
2488   const char *basename;
2489   char *filename, *subprefix, *desktop_id;
2490   gboolean hidden;
2491   GDesktopAppInfo *appinfo;
2492   
2493   dir = g_dir_open (dirname, 0, NULL);
2494   if (dir)
2495     {
2496       while ((basename = g_dir_read_name (dir)) != NULL)
2497         {
2498           filename = g_build_filename (dirname, basename, NULL);
2499           if (g_str_has_suffix (basename, ".desktop"))
2500             {
2501               desktop_id = g_strconcat (prefix, basename, NULL);
2502
2503               /* Use _extended so we catch NULLs too (hidden) */
2504               if (!g_hash_table_lookup_extended (apps, desktop_id, NULL, NULL))
2505                 {
2506                   appinfo = g_desktop_app_info_new_from_filename (filename);
2507                   hidden = FALSE;
2508
2509                   if (appinfo && g_desktop_app_info_get_is_hidden (appinfo))
2510                     {
2511                       g_object_unref (appinfo);
2512                       appinfo = NULL;
2513                       hidden = TRUE;
2514                     }
2515                                       
2516                   if (appinfo || hidden)
2517                     {
2518                       g_hash_table_insert (apps, g_strdup (desktop_id), appinfo);
2519
2520                       if (appinfo)
2521                         {
2522                           /* Reuse instead of strdup here */
2523                           appinfo->desktop_id = desktop_id;
2524                           desktop_id = NULL;
2525                         }
2526                     }
2527                 }
2528               g_free (desktop_id);
2529             }
2530           else
2531             {
2532               if (g_file_test (filename, G_FILE_TEST_IS_DIR))
2533                 {
2534                   subprefix = g_strconcat (prefix, basename, "-", NULL);
2535                   get_apps_from_dir (apps, filename, subprefix);
2536                   g_free (subprefix);
2537                 }
2538             }
2539           g_free (filename);
2540         }
2541       g_dir_close (dir);
2542     }
2543 }
2544
2545
2546 /**
2547  * g_app_info_get_all:
2548  *
2549  * Gets a list of all of the applications currently registered 
2550  * on this system.
2551  * 
2552  * For desktop files, this includes applications that have 
2553  * <literal>NoDisplay=true</literal> set or are excluded from 
2554  * display by means of <literal>OnlyShowIn</literal> or
2555  * <literal>NotShowIn</literal>. See g_app_info_should_show().
2556  * The returned list does not include applications which have
2557  * the <literal>Hidden</literal> key set. 
2558  * 
2559  * Returns: (element-type GAppInfo) (transfer full): a newly allocated #GList of references to #GAppInfo<!---->s.
2560  **/
2561 GList *
2562 g_app_info_get_all (void)
2563 {
2564   const char * const *dirs;
2565   GHashTable *apps;
2566   GHashTableIter iter;
2567   gpointer value;
2568   int i;
2569   GList *infos;
2570
2571   dirs = get_applications_search_path ();
2572
2573   apps = g_hash_table_new_full (g_str_hash, g_str_equal,
2574                                 g_free, NULL);
2575
2576   
2577   for (i = 0; dirs[i] != NULL; i++)
2578     get_apps_from_dir (apps, dirs[i], "");
2579
2580
2581   infos = NULL;
2582   g_hash_table_iter_init (&iter, apps);
2583   while (g_hash_table_iter_next (&iter, NULL, &value))
2584     {
2585       if (value)
2586         infos = g_list_prepend (infos, value);
2587     }
2588
2589   g_hash_table_destroy (apps);
2590
2591   return g_list_reverse (infos);
2592 }
2593
2594 /* Cacheing of mimeinfo.cache and defaults.list files */
2595
2596 typedef struct {
2597   char *path;
2598   GHashTable *mime_info_cache_map;
2599   GHashTable *defaults_list_map;
2600   GHashTable *mimeapps_list_added_map;
2601   GHashTable *mimeapps_list_removed_map;
2602   GHashTable *mimeapps_list_defaults_map;
2603   time_t mime_info_cache_timestamp;
2604   time_t defaults_list_timestamp;
2605   time_t mimeapps_list_timestamp;
2606 } MimeInfoCacheDir;
2607
2608 typedef struct {
2609   GList *dirs;                       /* mimeinfo.cache and defaults.list */
2610   GHashTable *global_defaults_cache; /* global results of defaults.list lookup and validation */
2611   time_t last_stat_time;
2612   guint should_ping_mime_monitor : 1;
2613 } MimeInfoCache;
2614
2615 static MimeInfoCache *mime_info_cache = NULL;
2616 G_LOCK_DEFINE_STATIC (mime_info_cache);
2617
2618 static void mime_info_cache_dir_add_desktop_entries (MimeInfoCacheDir  *dir,
2619                                                      const char        *mime_type,
2620                                                      char             **new_desktop_file_ids);
2621
2622 static MimeInfoCache * mime_info_cache_new (void);
2623
2624 static void
2625 destroy_info_cache_value (gpointer  key, 
2626                           GList    *value, 
2627                           gpointer  data)
2628 {
2629   g_list_free_full (value, g_free);
2630 }
2631
2632 static void
2633 destroy_info_cache_map (GHashTable *info_cache_map)
2634 {
2635   g_hash_table_foreach (info_cache_map, (GHFunc)destroy_info_cache_value, NULL);
2636   g_hash_table_destroy (info_cache_map);
2637 }
2638
2639 static gboolean
2640 mime_info_cache_dir_out_of_date (MimeInfoCacheDir *dir,
2641                                  const char       *cache_file,
2642                                  time_t           *timestamp)
2643 {
2644   struct stat buf;
2645   char *filename;
2646   
2647   filename = g_build_filename (dir->path, cache_file, NULL);
2648   
2649   if (g_stat (filename, &buf) < 0)
2650     {
2651       g_free (filename);
2652       return TRUE;
2653     }
2654   g_free (filename);
2655
2656   if (buf.st_mtime != *timestamp) 
2657     return TRUE;
2658   
2659   return FALSE;
2660 }
2661
2662 /* Call with lock held */
2663 static gboolean
2664 remove_all (gpointer  key,
2665             gpointer  value,
2666             gpointer  user_data)
2667 {
2668   return TRUE;
2669 }
2670
2671
2672 static void
2673 mime_info_cache_blow_global_cache (void)
2674 {
2675   g_hash_table_foreach_remove (mime_info_cache->global_defaults_cache,
2676                                remove_all, NULL);
2677 }
2678
2679 static void
2680 mime_info_cache_dir_init (MimeInfoCacheDir *dir)
2681 {
2682   GError *load_error;
2683   GKeyFile *key_file;
2684   gchar *filename, **mime_types;
2685   int i;
2686   struct stat buf;
2687   
2688   load_error = NULL;
2689   mime_types = NULL;
2690   
2691   if (dir->mime_info_cache_map != NULL &&
2692       !mime_info_cache_dir_out_of_date (dir, "mimeinfo.cache",
2693                                         &dir->mime_info_cache_timestamp))
2694     return;
2695   
2696   if (dir->mime_info_cache_map != NULL)
2697     destroy_info_cache_map (dir->mime_info_cache_map);
2698   
2699   dir->mime_info_cache_map = g_hash_table_new_full (g_str_hash, g_str_equal,
2700                                                     (GDestroyNotify) g_free,
2701                                                     NULL);
2702   
2703   key_file = g_key_file_new ();
2704   
2705   filename = g_build_filename (dir->path, "mimeinfo.cache", NULL);
2706   
2707   if (g_stat (filename, &buf) < 0)
2708     goto error;
2709   
2710   if (dir->mime_info_cache_timestamp > 0) 
2711     mime_info_cache->should_ping_mime_monitor = TRUE;
2712   
2713   dir->mime_info_cache_timestamp = buf.st_mtime;
2714   
2715   g_key_file_load_from_file (key_file, filename, G_KEY_FILE_NONE, &load_error);
2716   
2717   g_free (filename);
2718   filename = NULL;
2719   
2720   if (load_error != NULL)
2721     goto error;
2722   
2723   mime_types = g_key_file_get_keys (key_file, MIME_CACHE_GROUP,
2724                                     NULL, &load_error);
2725   
2726   if (load_error != NULL)
2727     goto error;
2728   
2729   for (i = 0; mime_types[i] != NULL; i++)
2730     {
2731       gchar **desktop_file_ids;
2732       char *unaliased_type;
2733       desktop_file_ids = g_key_file_get_string_list (key_file,
2734                                                      MIME_CACHE_GROUP,
2735                                                      mime_types[i],
2736                                                      NULL,
2737                                                      NULL);
2738       
2739       if (desktop_file_ids == NULL)
2740         continue;
2741
2742       unaliased_type = _g_unix_content_type_unalias (mime_types[i]);
2743       mime_info_cache_dir_add_desktop_entries (dir,
2744                                                unaliased_type,
2745                                                desktop_file_ids);
2746       g_free (unaliased_type);
2747     
2748       g_strfreev (desktop_file_ids);
2749     }
2750   
2751   g_strfreev (mime_types);
2752   g_key_file_free (key_file);
2753   
2754   return;
2755  error:
2756   g_free (filename);
2757   g_key_file_free (key_file);
2758   
2759   if (mime_types != NULL)
2760     g_strfreev (mime_types);
2761   
2762   if (load_error)
2763     g_error_free (load_error);
2764 }
2765
2766 static void
2767 mime_info_cache_dir_init_defaults_list (MimeInfoCacheDir *dir)
2768 {
2769   GKeyFile *key_file;
2770   GError *load_error;
2771   gchar *filename, **mime_types;
2772   char *unaliased_type;
2773   char **desktop_file_ids;
2774   int i;
2775   struct stat buf;
2776
2777   load_error = NULL;
2778   mime_types = NULL;
2779
2780   if (dir->defaults_list_map != NULL &&
2781       !mime_info_cache_dir_out_of_date (dir, "defaults.list",
2782                                         &dir->defaults_list_timestamp))
2783     return;
2784   
2785   if (dir->defaults_list_map != NULL)
2786     g_hash_table_destroy (dir->defaults_list_map);
2787   dir->defaults_list_map = g_hash_table_new_full (g_str_hash, g_str_equal,
2788                                                   g_free, (GDestroyNotify)g_strfreev);
2789   
2790
2791   key_file = g_key_file_new ();
2792   
2793   filename = g_build_filename (dir->path, "defaults.list", NULL);
2794   if (g_stat (filename, &buf) < 0)
2795     goto error;
2796
2797   if (dir->defaults_list_timestamp > 0) 
2798     mime_info_cache->should_ping_mime_monitor = TRUE;
2799
2800   dir->defaults_list_timestamp = buf.st_mtime;
2801
2802   g_key_file_load_from_file (key_file, filename, G_KEY_FILE_NONE, &load_error);
2803   g_free (filename);
2804   filename = NULL;
2805
2806   if (load_error != NULL)
2807     goto error;
2808
2809   mime_types = g_key_file_get_keys (key_file, DEFAULT_APPLICATIONS_GROUP,
2810                                     NULL, NULL);
2811   if (mime_types != NULL)
2812     {
2813       for (i = 0; mime_types[i] != NULL; i++)
2814         {
2815           desktop_file_ids = g_key_file_get_string_list (key_file,
2816                                                          DEFAULT_APPLICATIONS_GROUP,
2817                                                          mime_types[i],
2818                                                          NULL,
2819                                                          NULL);
2820           if (desktop_file_ids == NULL)
2821             continue;
2822           
2823           unaliased_type = _g_unix_content_type_unalias (mime_types[i]);
2824           g_hash_table_replace (dir->defaults_list_map,
2825                                 unaliased_type,
2826                                 desktop_file_ids);
2827         }
2828       
2829       g_strfreev (mime_types);
2830     }
2831
2832   g_key_file_free (key_file);
2833   return;
2834   
2835  error:
2836   g_free (filename);
2837   g_key_file_free (key_file);
2838   
2839   if (mime_types != NULL)
2840     g_strfreev (mime_types);
2841   
2842   if (load_error)
2843     g_error_free (load_error);
2844 }
2845
2846 static void
2847 mime_info_cache_dir_init_mimeapps_list (MimeInfoCacheDir *dir)
2848 {
2849   GKeyFile *key_file;
2850   GError *load_error;
2851   gchar *filename, **mime_types;
2852   char *unaliased_type;
2853   char **desktop_file_ids;
2854   char *desktop_id;
2855   int i;
2856   struct stat buf;
2857
2858   load_error = NULL;
2859   mime_types = NULL;
2860
2861   if (dir->mimeapps_list_added_map != NULL &&
2862       !mime_info_cache_dir_out_of_date (dir, "mimeapps.list",
2863                                         &dir->mimeapps_list_timestamp))
2864     return;
2865   
2866   if (dir->mimeapps_list_added_map != NULL)
2867     g_hash_table_destroy (dir->mimeapps_list_added_map);
2868   dir->mimeapps_list_added_map = g_hash_table_new_full (g_str_hash, g_str_equal,
2869                                                         g_free, (GDestroyNotify)g_strfreev);
2870   
2871   if (dir->mimeapps_list_removed_map != NULL)
2872     g_hash_table_destroy (dir->mimeapps_list_removed_map);
2873   dir->mimeapps_list_removed_map = g_hash_table_new_full (g_str_hash, g_str_equal,
2874                                                           g_free, (GDestroyNotify)g_strfreev);
2875
2876   if (dir->mimeapps_list_defaults_map != NULL)
2877     g_hash_table_destroy (dir->mimeapps_list_defaults_map);
2878   dir->mimeapps_list_defaults_map = g_hash_table_new_full (g_str_hash, g_str_equal,
2879                                                            g_free, g_free);
2880
2881   key_file = g_key_file_new ();
2882   
2883   filename = g_build_filename (dir->path, "mimeapps.list", NULL);
2884   if (g_stat (filename, &buf) < 0)
2885     goto error;
2886
2887   if (dir->mimeapps_list_timestamp > 0) 
2888     mime_info_cache->should_ping_mime_monitor = TRUE;
2889
2890   dir->mimeapps_list_timestamp = buf.st_mtime;
2891
2892   g_key_file_load_from_file (key_file, filename, G_KEY_FILE_NONE, &load_error);
2893   g_free (filename);
2894   filename = NULL;
2895
2896   if (load_error != NULL)
2897     goto error;
2898
2899   mime_types = g_key_file_get_keys (key_file, ADDED_ASSOCIATIONS_GROUP,
2900                                     NULL, NULL);
2901   if (mime_types != NULL)
2902     {
2903       for (i = 0; mime_types[i] != NULL; i++)
2904         {
2905           desktop_file_ids = g_key_file_get_string_list (key_file,
2906                                                          ADDED_ASSOCIATIONS_GROUP,
2907                                                          mime_types[i],
2908                                                          NULL,
2909                                                          NULL);
2910           if (desktop_file_ids == NULL)
2911             continue;
2912           
2913           unaliased_type = _g_unix_content_type_unalias (mime_types[i]);
2914           g_hash_table_replace (dir->mimeapps_list_added_map,
2915                                 unaliased_type,
2916                                 desktop_file_ids);
2917         }
2918       
2919       g_strfreev (mime_types);
2920     }
2921
2922   mime_types = g_key_file_get_keys (key_file, REMOVED_ASSOCIATIONS_GROUP,
2923                                     NULL, NULL);
2924   if (mime_types != NULL)
2925     {
2926       for (i = 0; mime_types[i] != NULL; i++)
2927         {
2928           desktop_file_ids = g_key_file_get_string_list (key_file,
2929                                                          REMOVED_ASSOCIATIONS_GROUP,
2930                                                          mime_types[i],
2931                                                          NULL,
2932                                                          NULL);
2933           if (desktop_file_ids == NULL)
2934             continue;
2935           
2936           unaliased_type = _g_unix_content_type_unalias (mime_types[i]);
2937           g_hash_table_replace (dir->mimeapps_list_removed_map,
2938                                 unaliased_type,
2939                                 desktop_file_ids);
2940         }
2941       
2942       g_strfreev (mime_types);
2943     }
2944
2945   mime_types = g_key_file_get_keys (key_file, DEFAULT_APPLICATIONS_GROUP,
2946                                     NULL, NULL);
2947   if (mime_types != NULL)
2948     {
2949       for (i = 0; mime_types[i] != NULL; i++)
2950         {
2951           desktop_id = g_key_file_get_string (key_file,
2952                                               DEFAULT_APPLICATIONS_GROUP,
2953                                               mime_types[i],
2954                                               NULL);
2955           if (desktop_id == NULL)
2956             continue;
2957
2958           unaliased_type = _g_unix_content_type_unalias (mime_types[i]);
2959           g_hash_table_replace (dir->mimeapps_list_defaults_map,
2960                                 unaliased_type,
2961                                 desktop_id);
2962         }
2963
2964       g_strfreev (mime_types);
2965     }
2966
2967   g_key_file_free (key_file);
2968   return;
2969   
2970  error:
2971   g_free (filename);
2972   g_key_file_free (key_file);
2973   
2974   if (mime_types != NULL)
2975     g_strfreev (mime_types);
2976   
2977   if (load_error)
2978     g_error_free (load_error);
2979 }
2980
2981 static MimeInfoCacheDir *
2982 mime_info_cache_dir_new (const char *path)
2983 {
2984   MimeInfoCacheDir *dir;
2985
2986   dir = g_new0 (MimeInfoCacheDir, 1);
2987   dir->path = g_strdup (path);
2988   
2989   return dir;
2990 }
2991
2992 static void
2993 mime_info_cache_dir_free (MimeInfoCacheDir *dir)
2994 {
2995   if (dir == NULL)
2996     return;
2997   
2998   if (dir->mime_info_cache_map != NULL)
2999     {
3000       destroy_info_cache_map (dir->mime_info_cache_map);
3001       dir->mime_info_cache_map = NULL;
3002       
3003   }
3004   
3005   if (dir->defaults_list_map != NULL)
3006     {
3007       g_hash_table_destroy (dir->defaults_list_map);
3008       dir->defaults_list_map = NULL;
3009     }
3010   
3011   if (dir->mimeapps_list_added_map != NULL)
3012     {
3013       g_hash_table_destroy (dir->mimeapps_list_added_map);
3014       dir->mimeapps_list_added_map = NULL;
3015     }
3016   
3017   if (dir->mimeapps_list_removed_map != NULL)
3018     {
3019       g_hash_table_destroy (dir->mimeapps_list_removed_map);
3020       dir->mimeapps_list_removed_map = NULL;
3021     }
3022
3023   if (dir->mimeapps_list_defaults_map != NULL)
3024     {
3025       g_hash_table_destroy (dir->mimeapps_list_defaults_map);
3026       dir->mimeapps_list_defaults_map = NULL;
3027     }
3028
3029   g_free (dir);
3030 }
3031
3032 static void
3033 mime_info_cache_dir_add_desktop_entries (MimeInfoCacheDir  *dir,
3034                                          const char        *mime_type,
3035                                          char             **new_desktop_file_ids)
3036 {
3037   GList *desktop_file_ids;
3038   int i;
3039   
3040   desktop_file_ids = g_hash_table_lookup (dir->mime_info_cache_map,
3041                                           mime_type);
3042   
3043   for (i = 0; new_desktop_file_ids[i] != NULL; i++)
3044     {
3045       if (!g_list_find_custom (desktop_file_ids, new_desktop_file_ids[i], (GCompareFunc) strcmp))
3046         desktop_file_ids = g_list_append (desktop_file_ids,
3047                                           g_strdup (new_desktop_file_ids[i]));
3048     }
3049   
3050   g_hash_table_insert (dir->mime_info_cache_map, g_strdup (mime_type), desktop_file_ids);
3051 }
3052
3053 static void
3054 mime_info_cache_init_dir_lists (void)
3055 {
3056   const char * const *dirs;
3057   int i;
3058   
3059   mime_info_cache = mime_info_cache_new ();
3060   
3061   dirs = get_applications_search_path ();
3062   
3063   for (i = 0; dirs[i] != NULL; i++)
3064     {
3065       MimeInfoCacheDir *dir;
3066       
3067       dir = mime_info_cache_dir_new (dirs[i]);
3068       
3069       if (dir != NULL)
3070         {
3071           mime_info_cache_dir_init (dir);
3072           mime_info_cache_dir_init_defaults_list (dir);
3073           mime_info_cache_dir_init_mimeapps_list (dir);
3074           
3075           mime_info_cache->dirs = g_list_append (mime_info_cache->dirs, dir);
3076         }
3077     }
3078 }
3079
3080 static void
3081 mime_info_cache_update_dir_lists (void)
3082 {
3083   GList *tmp;
3084   
3085   tmp = mime_info_cache->dirs;
3086   
3087   while (tmp != NULL)
3088     {
3089       MimeInfoCacheDir *dir = (MimeInfoCacheDir *) tmp->data;
3090
3091       /* No need to do this if we had file monitors... */
3092       mime_info_cache_blow_global_cache ();
3093       mime_info_cache_dir_init (dir);
3094       mime_info_cache_dir_init_defaults_list (dir);
3095       mime_info_cache_dir_init_mimeapps_list (dir);
3096       
3097       tmp = tmp->next;
3098     }
3099 }
3100
3101 static void
3102 mime_info_cache_init (void)
3103 {
3104   G_LOCK (mime_info_cache);
3105   if (mime_info_cache == NULL)
3106     mime_info_cache_init_dir_lists ();
3107   else
3108     {
3109       time_t now;
3110       
3111       time (&now);
3112       if (now >= mime_info_cache->last_stat_time + 10)
3113         {
3114           mime_info_cache_update_dir_lists ();
3115           mime_info_cache->last_stat_time = now;
3116         }
3117     }
3118   
3119   if (mime_info_cache->should_ping_mime_monitor)
3120     {
3121       /* g_idle_add (emit_mime_changed, NULL); */
3122       mime_info_cache->should_ping_mime_monitor = FALSE;
3123     }
3124   
3125   G_UNLOCK (mime_info_cache);
3126 }
3127
3128 static MimeInfoCache *
3129 mime_info_cache_new (void)
3130 {
3131   MimeInfoCache *cache;
3132   
3133   cache = g_new0 (MimeInfoCache, 1);
3134   
3135   cache->global_defaults_cache = g_hash_table_new_full (g_str_hash, g_str_equal,
3136                                                         (GDestroyNotify) g_free,
3137                                                         (GDestroyNotify) g_free);
3138   return cache;
3139 }
3140
3141 static void
3142 mime_info_cache_free (MimeInfoCache *cache)
3143 {
3144   if (cache == NULL)
3145     return;
3146   
3147   g_list_free_full (cache->dirs, (GDestroyNotify) mime_info_cache_dir_free);
3148   g_hash_table_destroy (cache->global_defaults_cache);
3149   g_free (cache);
3150 }
3151
3152 /**
3153  * mime_info_cache_reload:
3154  * @dir: directory path which needs reloading.
3155  * 
3156  * Reload the mime information for the @dir.
3157  */
3158 static void
3159 mime_info_cache_reload (const char *dir)
3160 {
3161   /* FIXME: just reload the dir that needs reloading,
3162    * don't blow the whole cache
3163    */
3164   if (mime_info_cache != NULL)
3165     {
3166       G_LOCK (mime_info_cache);
3167       mime_info_cache_free (mime_info_cache);
3168       mime_info_cache = NULL;
3169       G_UNLOCK (mime_info_cache);
3170     }
3171 }
3172
3173 static GList *
3174 append_desktop_entry (GList      *list, 
3175                       const char *desktop_entry,
3176                       GList      *removed_entries)
3177 {
3178   /* Add if not already in list, and valid */
3179   if (!g_list_find_custom (list, desktop_entry, (GCompareFunc) strcmp) &&
3180       !g_list_find_custom (removed_entries, desktop_entry, (GCompareFunc) strcmp))
3181     list = g_list_prepend (list, g_strdup (desktop_entry));
3182   
3183   return list;
3184 }
3185
3186 /**
3187  * get_all_desktop_entries_for_mime_type:
3188  * @mime_type: a mime type.
3189  * @except: NULL or a strv list
3190  *
3191  * Returns all the desktop ids for @mime_type. The desktop files
3192  * are listed in an order so that default applications are listed before
3193  * non-default ones, and handlers for inherited mimetypes are listed
3194  * after the base ones.
3195  *
3196  * Optionally doesn't list the desktop ids given in the @except 
3197  *
3198  * Return value: a #GList containing the desktop ids which claim
3199  *    to handle @mime_type.
3200  */
3201 static GList *
3202 get_all_desktop_entries_for_mime_type (const char  *base_mime_type,
3203                                        const char **except,
3204                                        gboolean     include_fallback,
3205                                        char       **explicit_default)
3206 {
3207   GList *desktop_entries, *removed_entries, *list, *dir_list, *tmp;
3208   MimeInfoCacheDir *dir;
3209   char *mime_type, *default_entry = NULL;
3210   char *old_default_entry = NULL;
3211   const char *entry;
3212   char **mime_types;
3213   char **default_entries;
3214   char **removed_associations;
3215   int i, j, k;
3216   GPtrArray *array;
3217   char **anc;
3218   
3219   mime_info_cache_init ();
3220
3221   if (include_fallback)
3222     {
3223       /* collect all ancestors */
3224       mime_types = _g_unix_content_type_get_parents (base_mime_type);
3225       array = g_ptr_array_new ();
3226       for (i = 0; mime_types[i]; i++)
3227         g_ptr_array_add (array, mime_types[i]);
3228       g_free (mime_types);
3229       for (i = 0; i < array->len; i++)
3230         {
3231           anc = _g_unix_content_type_get_parents (g_ptr_array_index (array, i));
3232           for (j = 0; anc[j]; j++)
3233             {
3234               for (k = 0; k < array->len; k++)
3235                 {
3236                   if (strcmp (anc[j], g_ptr_array_index (array, k)) == 0)
3237                     break;
3238                 }
3239               if (k == array->len) /* not found */
3240                 g_ptr_array_add (array, g_strdup (anc[j]));
3241             }
3242           g_strfreev (anc);
3243         }
3244       g_ptr_array_add (array, NULL);
3245       mime_types = (char **)g_ptr_array_free (array, FALSE);
3246     }
3247   else
3248     {
3249       mime_types = g_malloc0 (2 * sizeof (gchar *));
3250       mime_types[0] = g_strdup (base_mime_type);
3251       mime_types[1] = NULL;
3252     }
3253
3254   G_LOCK (mime_info_cache);
3255   
3256   removed_entries = NULL;
3257   desktop_entries = NULL;
3258
3259   for (i = 0; except != NULL && except[i] != NULL; i++)
3260     removed_entries = g_list_prepend (removed_entries, g_strdup (except[i]));
3261   
3262   for (i = 0; mime_types[i] != NULL; i++)
3263     {
3264       mime_type = mime_types[i];
3265
3266       /* Go through all apps listed in user and system dirs */
3267       for (dir_list = mime_info_cache->dirs;
3268            dir_list != NULL;
3269            dir_list = dir_list->next)
3270         {
3271           dir = dir_list->data;
3272
3273           /* Pick the explicit default application if we got no result earlier
3274            * (ie, for more specific mime types)
3275            */
3276           if (desktop_entries == NULL)
3277             {
3278               entry = g_hash_table_lookup (dir->mimeapps_list_defaults_map, mime_type);
3279
3280               if (entry != NULL)
3281                 {
3282                   /* Save the default entry if it's the first one we encounter */
3283                   if (default_entry == NULL)
3284                     default_entry = g_strdup (entry);
3285                 }
3286             }
3287
3288           /* Then added associations from mimeapps.list */
3289           default_entries = g_hash_table_lookup (dir->mimeapps_list_added_map, mime_type);
3290           for (j = 0; default_entries != NULL && default_entries[j] != NULL; j++)
3291             desktop_entries = append_desktop_entry (desktop_entries, default_entries[j], removed_entries);
3292
3293           /* Then removed associations from mimeapps.list */
3294           removed_associations = g_hash_table_lookup (dir->mimeapps_list_removed_map, mime_type);
3295           for (j = 0; removed_associations != NULL && removed_associations[j] != NULL; j++)
3296             removed_entries = append_desktop_entry (removed_entries, removed_associations[j], NULL);
3297
3298           /* Then system defaults (or old per-user config) (using removed associations from this dir or earlier) */
3299           default_entries = g_hash_table_lookup (dir->defaults_list_map, mime_type);
3300           for (j = 0; default_entries != NULL && default_entries[j] != NULL; j++)
3301             {
3302               if (default_entry == NULL && old_default_entry == NULL)
3303                 old_default_entry = g_strdup (default_entries[j]);
3304
3305               desktop_entries = append_desktop_entry (desktop_entries, default_entries[j], removed_entries);
3306             }
3307         }
3308
3309       /* Go through all entries that support the mimetype */
3310       for (dir_list = mime_info_cache->dirs;
3311            dir_list != NULL;
3312            dir_list = dir_list->next) 
3313         {
3314           dir = dir_list->data;
3315         
3316           list = g_hash_table_lookup (dir->mime_info_cache_map, mime_type);
3317           for (tmp = list; tmp != NULL; tmp = tmp->next)
3318             desktop_entries = append_desktop_entry (desktop_entries, tmp->data, removed_entries);
3319         }
3320     }
3321   
3322   G_UNLOCK (mime_info_cache);
3323
3324   g_strfreev (mime_types);
3325
3326   /* If we have no default from mimeapps.list, take it from
3327    * defaults.list intead.
3328    *
3329    * If we do have a default from mimeapps.list, free any one that came
3330    * from defaults.list.
3331    */
3332   if (default_entry == NULL)
3333     default_entry = old_default_entry;
3334   else
3335     g_free (old_default_entry);
3336
3337   if (explicit_default != NULL)
3338     *explicit_default = default_entry;
3339   else
3340     g_free (default_entry);
3341
3342   g_list_free_full (removed_entries, g_free);
3343
3344   desktop_entries = g_list_reverse (desktop_entries);
3345   
3346   return desktop_entries;
3347 }
3348
3349 /* GDesktopAppInfoLookup interface: */
3350
3351 typedef GDesktopAppInfoLookupIface GDesktopAppInfoLookupInterface;
3352 G_DEFINE_INTERFACE (GDesktopAppInfoLookup, g_desktop_app_info_lookup, G_TYPE_OBJECT)
3353
3354 static void
3355 g_desktop_app_info_lookup_default_init (GDesktopAppInfoLookupInterface *iface)
3356 {
3357 }
3358
3359 /**
3360  * g_desktop_app_info_lookup_get_default_for_uri_scheme:
3361  * @lookup: a #GDesktopAppInfoLookup
3362  * @uri_scheme: a string containing a URI scheme.
3363  *
3364  * Gets the default application for launching applications 
3365  * using this URI scheme for a particular GDesktopAppInfoLookup
3366  * implementation.
3367  *
3368  * The GDesktopAppInfoLookup interface and this function is used
3369  * to implement g_app_info_get_default_for_uri_scheme() backends
3370  * in a GIO module. There is no reason for applications to use it
3371  * directly. Applications should use g_app_info_get_default_for_uri_scheme().
3372  * 
3373  * Returns: (transfer full): #GAppInfo for given @uri_scheme or %NULL on error.
3374  *
3375  * Deprecated: The #GDesktopAppInfoLookup interface is deprecated and unused by gio.
3376  */
3377 GAppInfo *
3378 g_desktop_app_info_lookup_get_default_for_uri_scheme (GDesktopAppInfoLookup *lookup,
3379                                                       const char            *uri_scheme)
3380 {
3381   GDesktopAppInfoLookupIface *iface;
3382   
3383   g_return_val_if_fail (G_IS_DESKTOP_APP_INFO_LOOKUP (lookup), NULL);
3384
3385   iface = G_DESKTOP_APP_INFO_LOOKUP_GET_IFACE (lookup);
3386
3387   return (* iface->get_default_for_uri_scheme) (lookup, uri_scheme);
3388 }