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