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