Add g_desktop_app_info_search()
[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  *         Ryan Lortie <desrt@desrt.ca>
23  */
24
25 /* Prelude {{{1 */
26
27 #include "config.h"
28
29 #include <errno.h>
30 #include <string.h>
31 #include <unistd.h>
32
33 #ifdef HAVE_CRT_EXTERNS_H
34 #include <crt_externs.h>
35 #endif
36
37 #include "gcontenttypeprivate.h"
38 #include "gdesktopappinfo.h"
39 #ifdef G_OS_UNIX
40 #include "glib-unix.h"
41 #endif
42 #include "gfile.h"
43 #include "gioerror.h"
44 #include "gthemedicon.h"
45 #include "gfileicon.h"
46 #include <glib/gstdio.h>
47 #include "glibintl.h"
48 #include "giomodule-priv.h"
49 #include "gappinfo.h"
50 #include "gappinfoprivate.h"
51 #include "glocaldirectorymonitor.h"
52
53
54 /**
55  * SECTION:gdesktopappinfo
56  * @title: GDesktopAppInfo
57  * @short_description: Application information from desktop files
58  * @include: gio/gdesktopappinfo.h
59  *
60  * #GDesktopAppInfo is an implementation of #GAppInfo based on
61  * desktop files.
62  *
63  * Note that <filename>&lt;gio/gdesktopappinfo.h&gt;</filename> belongs to
64  * the UNIX-specific GIO interfaces, thus you have to use the
65  * <filename>gio-unix-2.0.pc</filename> pkg-config file when using it.
66  */
67
68 #define DEFAULT_APPLICATIONS_GROUP  "Default Applications"
69 #define ADDED_ASSOCIATIONS_GROUP    "Added Associations"
70 #define REMOVED_ASSOCIATIONS_GROUP  "Removed Associations"
71 #define MIME_CACHE_GROUP            "MIME Cache"
72 #define GENERIC_NAME_KEY            "GenericName"
73 #define FULL_NAME_KEY               "X-GNOME-FullName"
74 #define KEYWORDS_KEY                "Keywords"
75 #define STARTUP_WM_CLASS_KEY        "StartupWMClass"
76
77 enum {
78   PROP_0,
79   PROP_FILENAME
80 };
81
82 static void     g_desktop_app_info_iface_init         (GAppInfoIface    *iface);
83 static GList *  get_all_desktop_entries_for_mime_type (const char       *base_mime_type,
84                                                        const char      **except,
85                                                        gboolean          include_fallback,
86                                                        char            **explicit_default);
87 static void     mime_info_cache_reload                (const char       *dir);
88 static gboolean g_desktop_app_info_ensure_saved       (GDesktopAppInfo  *info,
89                                                        GError          **error);
90
91 /**
92  * GDesktopAppInfo:
93  *
94  * Information about an installed application from a desktop file.
95  */
96 struct _GDesktopAppInfo
97 {
98   GObject parent_instance;
99
100   char *desktop_id;
101   char *filename;
102   char *app_id;
103
104   GKeyFile *keyfile;
105
106   char *name;
107   char *generic_name;
108   char *fullname;
109   char *comment;
110   char *icon_name;
111   GIcon *icon;
112   char **keywords;
113   char **only_show_in;
114   char **not_show_in;
115   char *try_exec;
116   char *exec;
117   char *binary;
118   char *path;
119   char *categories;
120   char *startup_wm_class;
121   char **mime_types;
122   char **actions;
123
124   guint nodisplay       : 1;
125   guint hidden          : 1;
126   guint terminal        : 1;
127   guint startup_notify  : 1;
128   guint no_fuse         : 1;
129 };
130
131 typedef enum {
132   UPDATE_MIME_NONE = 1 << 0,
133   UPDATE_MIME_SET_DEFAULT = 1 << 1,
134   UPDATE_MIME_SET_NON_DEFAULT = 1 << 2,
135   UPDATE_MIME_REMOVE = 1 << 3,
136   UPDATE_MIME_SET_LAST_USED = 1 << 4,
137 } UpdateMimeFlags;
138
139 G_DEFINE_TYPE_WITH_CODE (GDesktopAppInfo, g_desktop_app_info, G_TYPE_OBJECT,
140                          G_IMPLEMENT_INTERFACE (G_TYPE_APP_INFO, g_desktop_app_info_iface_init))
141
142 G_LOCK_DEFINE_STATIC (g_desktop_env);
143 static gchar *g_desktop_env = NULL;
144
145 /* DesktopFileDir implementation {{{1 */
146
147 typedef struct
148 {
149   gchar                      *path;
150   GLocalDirectoryMonitor     *monitor;
151   GHashTable                 *app_names;
152   gboolean                    is_setup;
153   GHashTable                 *memory_index;
154 } DesktopFileDir;
155
156 static DesktopFileDir *desktop_file_dirs;
157 static guint           n_desktop_file_dirs;
158 static GMutex          desktop_file_dir_lock;
159
160 /* Monitor 'changed' signal handler {{{2 */
161 static void desktop_file_dir_reset (DesktopFileDir *dir);
162
163 static void
164 desktop_file_dir_changed (GFileMonitor      *monitor,
165                           GFile             *file,
166                           GFile             *other_file,
167                           GFileMonitorEvent  event_type,
168                           gpointer           user_data)
169 {
170   DesktopFileDir *dir = user_data;
171
172   /* We are not interested in receiving notifications forever just
173    * because someone asked about one desktop file once.
174    *
175    * After we receive the first notification, reset the dir, destroying
176    * the monitor.  We will take this as a hint, next time that we are
177    * asked, that we need to check if everything is up to date.
178    */
179   g_mutex_lock (&desktop_file_dir_lock);
180
181   desktop_file_dir_reset (dir);
182
183   g_mutex_unlock (&desktop_file_dir_lock);
184
185   /* Notify anyone else who may be interested */
186   g_app_info_monitor_fire ();
187 }
188
189 /* Internal utility functions {{{2 */
190
191 /*< internal >
192  * desktop_file_dir_app_name_is_masked:
193  * @dir: a #DesktopFileDir
194  * @app_name: an application ID
195  *
196  * Checks if @app_name is masked for @dir.
197  *
198  * An application is masked if a similarly-named desktop file exists in
199  * a desktop file directory with higher precedence.  Masked desktop
200  * files should be ignored.
201  */
202 static gboolean
203 desktop_file_dir_app_name_is_masked (DesktopFileDir *dir,
204                                      const gchar    *app_name)
205 {
206   while (dir > desktop_file_dirs)
207     {
208       dir--;
209
210       if (dir->app_names && g_hash_table_contains (dir->app_names, app_name))
211         return TRUE;
212     }
213
214   return FALSE;
215 }
216
217 /*< internal >
218  * add_to_table_if_appropriate:
219  * @apps: a string to GDesktopAppInfo hash table
220  * @app_name: the name of the application
221  * @info: a #GDesktopAppInfo, or NULL
222  *
223  * If @info is non-%NULL and non-hidden, then add it to @apps, using
224  * @app_name as a key.
225  *
226  * If @info is non-%NULL then this function will consume the passed-in
227  * reference.
228  */
229 static void
230 add_to_table_if_appropriate (GHashTable      *apps,
231                              const gchar     *app_name,
232                              GDesktopAppInfo *info)
233 {
234   if (!info)
235     return;
236
237   if (info->hidden)
238     {
239       g_object_unref (info);
240       return;
241     }
242
243   g_free (info->desktop_id);
244   info->desktop_id = g_strdup (app_name);
245
246   g_hash_table_insert (apps, g_strdup (info->desktop_id), info);
247 }
248
249 enum
250 {
251   DESKTOP_KEY_Comment,
252   DESKTOP_KEY_GenericName,
253   DESKTOP_KEY_Keywords,
254   DESKTOP_KEY_Name,
255   DESKTOP_KEY_X_GNOME_FullName,
256
257   N_DESKTOP_KEYS
258 };
259
260 const gchar desktop_key_match_category[N_DESKTOP_KEYS] = {
261   /* Note: lower numbers are a better match.
262    *
263    * In case we want two keys to match at the same level, we can just
264    * use the same number for the two different keys.
265    */
266   [DESKTOP_KEY_Name]             = 1,
267   [DESKTOP_KEY_GenericName]      = 2,
268   [DESKTOP_KEY_Keywords]         = 3,
269   [DESKTOP_KEY_X_GNOME_FullName] = 4,
270   [DESKTOP_KEY_Comment]          = 5
271 };
272
273 static gchar *
274 desktop_key_get_name (guint key_id)
275 {
276   switch (key_id)
277     {
278     case DESKTOP_KEY_Comment:
279       return "Comment";
280     case DESKTOP_KEY_GenericName:
281       return "GenericName";
282     case DESKTOP_KEY_Keywords:
283       return "Keywords";
284     case DESKTOP_KEY_Name:
285       return "Name";
286     case DESKTOP_KEY_X_GNOME_FullName:
287       return "X-GNOME-FullName";
288     default:
289       g_assert_not_reached ();
290     }
291 }
292
293 /* Search global state {{{2
294  *
295  * We only ever search under a global lock, so we can use (and reuse)
296  * some global data to reduce allocations made while searching.
297  *
298  * In short, we keep around arrays of results that we expand as needed
299  * (and never shrink).
300  *
301  * static_token_results: this is where we append the results for each
302  *     token within a given desktop directory, as we handle it (which is
303  *     a union of all matches for this term)
304  *
305  * static_search_results: this is where we build the complete results
306  *     for a single directory (which is an intersection of the matches
307  *     found for each term)
308  *
309  * static_total_results: this is where we build the complete results
310  *     across all directories (which is a union of the matches found in
311  *     each directory)
312  *
313  * The app_names that enter these tables are always pointer-unique (in
314  * the sense that string equality is the same as pointer equality).
315  * This can be guaranteed for two reasons:
316  *
317  *   - we mask appids so that a given appid will only ever appear within
318  *     the highest-precedence directory that contains it.  We never
319  *     return search results from a lower-level directory if a desktop
320  *     file exists in a higher-level one.
321  *
322  *   - within a given directory, the string is unique because it's the
323  *     key in the hashtable of all app_ids for that directory.
324  *
325  * We perform a merging of the results in merge_token_results().  This
326  * works by ordering the two lists and moving through each of them (at
327  * the same time) looking for common elements, rejecting uncommon ones.
328  * "Order" here need not mean any particular thing, as long as it is
329  * some order.  Because of the uniqueness of our strings, we can use
330  * pointer order.  That's what's going on in compare_results() below.
331  */
332 struct search_result
333 {
334   const gchar *app_name;
335   gint         category;
336 };
337
338 static struct search_result *static_token_results;
339 static gint                  static_token_results_size;
340 static gint                  static_token_results_allocated;
341 static struct search_result *static_search_results;
342 static gint                  static_search_results_size;
343 static gint                  static_search_results_allocated;
344 static struct search_result *static_total_results;
345 static gint                  static_total_results_size;
346 static gint                  static_total_results_allocated;
347
348 /* And some functions for performing nice operations against it */
349 static gint
350 compare_results (gconstpointer a,
351                  gconstpointer b)
352 {
353   const struct search_result *ra = a;
354   const struct search_result *rb = b;
355
356   if (ra->app_name < rb->app_name)
357     return -1;
358
359   else if (ra->app_name > rb->app_name)
360     return 1;
361
362   else
363     return ra->category - rb->category;
364 }
365
366 static gint
367 compare_categories (gconstpointer a,
368                     gconstpointer b)
369 {
370   const struct search_result *ra = a;
371   const struct search_result *rb = b;
372
373   return ra->category - rb->category;
374 }
375
376 static void
377 add_token_result (const gchar *app_name,
378                   guint16      category)
379 {
380   if G_UNLIKELY (static_token_results_size == static_token_results_allocated)
381     {
382       static_token_results_allocated = MAX (16, static_token_results_allocated * 2);
383       static_token_results = g_renew (struct search_result, static_token_results, static_token_results_allocated);
384     }
385
386   static_token_results[static_token_results_size].app_name = app_name;
387   static_token_results[static_token_results_size].category = category;
388   static_token_results_size++;
389 }
390
391 static void
392 merge_token_results (gboolean first)
393 {
394   qsort (static_token_results, static_token_results_size, sizeof (struct search_result), compare_results);
395
396   /* If this is the first token then we are basically merging a list with
397    * itself -- we only perform de-duplication.
398    *
399    * If this is not the first token then we are doing a real merge.
400    */
401   if (first)
402     {
403       const gchar *last_name = NULL;
404       gint i;
405
406       /* We must de-duplicate, but we do so by taking the best category
407        * in each case.
408        *
409        * The final list can be as large as the input here, so make sure
410        * we have enough room (even if it's too much room).
411        */
412
413       if G_UNLIKELY (static_search_results_allocated < static_token_results_size)
414         {
415           static_search_results_allocated = static_token_results_allocated;
416           static_search_results = g_renew (struct search_result,
417                                            static_search_results,
418                                            static_search_results_allocated);
419         }
420
421       for (i = 0; i < static_token_results_size; i++)
422         {
423           /* The list is sorted so that the best match for a given id
424            * will be at the front, so once we have copied an id, skip
425            * the rest of the entries for the same id.
426            */
427           if (static_token_results[i].app_name == last_name)
428             continue;
429
430           last_name = static_token_results[i].app_name;
431
432           static_search_results[static_search_results_size++] = static_token_results[i];
433         }
434     }
435   else
436     {
437       const gchar *last_name = NULL;
438       gint i, j = 0;
439       gint k = 0;
440
441       /* We only ever remove items from the results list, so no need to
442        * resize to ensure that we have enough room.
443        */
444       for (i = 0; i < static_token_results_size; i++)
445         {
446           if (static_token_results[i].app_name == last_name)
447             continue;
448
449           last_name = static_token_results[i].app_name;
450
451           /* Now we only want to have a result in static_search_results
452            * if we already have it there *and* we have it in
453            * static_token_results as well.  The category will be the
454            * lesser of the two.
455            *
456            * Skip past the results in static_search_results that are not
457            * going to be matches.
458            */
459           while (k < static_search_results_size &&
460                  static_search_results[k].app_name < static_token_results[i].app_name)
461             k++;
462
463           if (k < static_search_results_size &&
464               static_search_results[k].app_name == static_token_results[i].app_name)
465             {
466               /* We have a match.
467                *
468                * Category should be the worse of the two (ie:
469                * numerically larger).
470                */
471               static_search_results[j].app_name = static_search_results[k].app_name;
472               static_search_results[j].category = MAX (static_search_results[k].category,
473                                                        static_token_results[i].category);
474               j++;
475             }
476         }
477
478       static_search_results_size = j;
479     }
480
481   /* Clear it out for next time... */
482   static_token_results_size = 0;
483 }
484
485 static void
486 reset_total_search_results (void)
487 {
488   static_total_results_size = 0;
489 }
490
491 static void
492 sort_total_search_results (void)
493 {
494   qsort (static_total_results, static_total_results_size, sizeof (struct search_result), compare_categories);
495 }
496
497 static void
498 merge_directory_results (void)
499 {
500   if G_UNLIKELY (static_total_results_size + static_search_results_size > static_total_results_allocated)
501     {
502       static_total_results_allocated = MAX (16, static_total_results_allocated);
503       while (static_total_results_allocated < static_total_results_size + static_search_results_size)
504         static_total_results_allocated *= 2;
505       static_total_results = g_renew (struct search_result, static_total_results, static_total_results_allocated);
506     }
507
508   memcpy (static_total_results + static_total_results_size,
509           static_search_results,
510           static_search_results_size * sizeof (struct search_result));
511
512   static_total_results_size += static_search_results_size;
513
514   /* Clear it out for next time... */
515   static_search_results_size = 0;
516 }
517
518
519 /* Support for unindexed DesktopFileDirs {{{2 */
520 static void
521 get_apps_from_dir (GHashTable **apps,
522                    const char  *dirname,
523                    const char  *prefix)
524 {
525   const char *basename;
526   GDir *dir;
527
528   dir = g_dir_open (dirname, 0, NULL);
529
530   if (dir == NULL)
531     return;
532
533   while ((basename = g_dir_read_name (dir)) != NULL)
534     {
535       gchar *filename;
536
537       filename = g_build_filename (dirname, basename, NULL);
538
539       if (g_str_has_suffix (basename, ".desktop"))
540         {
541           gchar *app_name;
542
543           app_name = g_strconcat (prefix, basename, NULL);
544
545           if (*apps == NULL)
546             *apps = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, g_free);
547
548           g_hash_table_insert (*apps, app_name, g_strdup (filename));
549         }
550       else if (g_file_test (filename, G_FILE_TEST_IS_DIR))
551         {
552           gchar *subprefix;
553
554           subprefix = g_strconcat (prefix, basename, "-", NULL);
555           get_apps_from_dir (apps, filename, subprefix);
556           g_free (subprefix);
557         }
558
559       g_free (filename);
560     }
561
562   g_dir_close (dir);
563 }
564
565 static void
566 desktop_file_dir_unindexed_init (DesktopFileDir *dir)
567 {
568   get_apps_from_dir (&dir->app_names, dir->path, "");
569 }
570
571 static GDesktopAppInfo *
572 desktop_file_dir_unindexed_get_app (DesktopFileDir *dir,
573                                     const gchar    *desktop_id)
574 {
575   const gchar *filename;
576
577   filename = g_hash_table_lookup (dir->app_names, desktop_id);
578
579   if (!filename)
580     return NULL;
581
582   return g_desktop_app_info_new_from_filename (filename);
583 }
584
585 static void
586 desktop_file_dir_unindexed_get_all (DesktopFileDir *dir,
587                                     GHashTable     *apps)
588 {
589   GHashTableIter iter;
590   gpointer app_name;
591   gpointer filename;
592
593   if (dir->app_names == NULL)
594     return;
595
596   g_hash_table_iter_init (&iter, dir->app_names);
597   while (g_hash_table_iter_next (&iter, &app_name, &filename))
598     {
599       if (desktop_file_dir_app_name_is_masked (dir, app_name))
600         continue;
601
602       add_to_table_if_appropriate (apps, app_name, g_desktop_app_info_new_from_filename (filename));
603     }
604 }
605
606 typedef struct _MemoryIndexEntry MemoryIndexEntry;
607 typedef GHashTable MemoryIndex;
608
609 struct _MemoryIndexEntry
610 {
611   const gchar      *app_name; /* pointer to the hashtable key */
612   gint              match_category;
613   MemoryIndexEntry *next;
614 };
615
616 static void
617 memory_index_entry_free (gpointer data)
618 {
619   MemoryIndexEntry *mie = data;
620
621   while (mie)
622     {
623       MemoryIndexEntry *next = mie->next;
624
625       g_slice_free (MemoryIndexEntry, mie);
626       mie = next;
627     }
628 }
629
630 static void
631 memory_index_add_token (MemoryIndex *mi,
632                         const gchar *token,
633                         gint         match_category,
634                         const gchar *app_name)
635 {
636   MemoryIndexEntry *mie, *first;
637
638   mie = g_slice_new (MemoryIndexEntry);
639   mie->app_name = app_name;
640   mie->match_category = match_category;
641
642   first = g_hash_table_lookup (mi, token);
643
644   if (first)
645     {
646       mie->next = first->next;
647       first->next = mie;
648     }
649   else
650     {
651       mie->next = NULL;
652       g_hash_table_insert (mi, g_strdup (token), mie);
653     }
654 }
655
656 static void
657 memory_index_add_string (MemoryIndex *mi,
658                          const gchar *string,
659                          gint         match_category,
660                          const gchar *app_name)
661 {
662   gchar **tokens, **alternates;
663   gint i;
664
665   tokens = g_str_tokenize_and_fold (string, NULL, &alternates);
666
667   for (i = 0; tokens[i]; i++)
668     memory_index_add_token (mi, tokens[i], match_category, app_name);
669
670   for (i = 0; alternates[i]; i++)
671     memory_index_add_token (mi, alternates[i], match_category, app_name);
672
673   g_strfreev (alternates);
674   g_strfreev (tokens);
675 }
676
677 static MemoryIndex *
678 memory_index_new (void)
679 {
680   return g_hash_table_new_full (g_str_hash, g_str_equal, g_free, memory_index_entry_free);
681 }
682
683 static void
684 desktop_file_dir_unindexed_setup_search (DesktopFileDir *dir)
685 {
686   GHashTableIter iter;
687   gpointer app, path;
688
689   dir->memory_index = memory_index_new ();
690
691   /* Nothing to search? */
692   if (dir->app_names == NULL)
693     return;
694
695   g_hash_table_iter_init (&iter, dir->app_names);
696   while (g_hash_table_iter_next (&iter, &app, &path))
697     {
698       GKeyFile *key_file;
699
700       if (desktop_file_dir_app_name_is_masked (dir, app))
701         continue;
702
703       key_file = g_key_file_new ();
704
705       if (g_key_file_load_from_file (key_file, path, G_KEY_FILE_NONE, NULL) &&
706           !g_key_file_get_boolean (key_file, "Desktop Entry", "Hidden", NULL))
707         {
708           /* Index the interesting keys... */
709           gint i;
710
711           for (i = 0; i < G_N_ELEMENTS (desktop_key_match_category); i++)
712             {
713               gchar *value;
714
715               if (!desktop_key_match_category[i])
716                 continue;
717
718               value = g_key_file_get_locale_string (key_file, "Desktop Entry", desktop_key_get_name (i), NULL, NULL);
719
720               if (value)
721                 memory_index_add_string (dir->memory_index, value, desktop_key_match_category[i], app);
722
723               g_free (value);
724             }
725         }
726
727       g_key_file_free (key_file);
728     }
729 }
730
731 static void
732 desktop_file_dir_unindexed_search (DesktopFileDir  *dir,
733                                    const gchar     *search_token)
734 {
735   GHashTableIter iter;
736   gpointer key, value;
737
738   if (!dir->memory_index)
739     desktop_file_dir_unindexed_setup_search (dir);
740
741   g_hash_table_iter_init (&iter, dir->memory_index);
742   while (g_hash_table_iter_next (&iter, &key, &value))
743     {
744       MemoryIndexEntry *mie = value;
745
746       if (!g_str_has_prefix (key, search_token))
747         continue;
748
749       while (mie)
750         {
751           add_token_result (mie->app_name, mie->match_category);
752           mie = mie->next;
753         }
754     }
755 }
756
757 /* DesktopFileDir "API" {{{2 */
758
759 /*< internal >
760  * desktop_file_dir_create:
761  * @array: the #GArray to add a new item to
762  * @data_dir: an XDG_DATA_DIR
763  *
764  * Creates a #DesktopFileDir for the corresponding @data_dir, adding it
765  * to @array.
766  */
767 static void
768 desktop_file_dir_create (GArray      *array,
769                          const gchar *data_dir)
770 {
771   DesktopFileDir dir = { 0, };
772
773   dir.path = g_build_filename (data_dir, "applications", NULL);
774
775   g_array_append_val (array, dir);
776 }
777
778 /*< internal >
779  * desktop_file_dir_reset:
780  * @dir: a #DesktopFileDir
781  *
782  * Cleans up @dir, releasing most resources that it was using.
783  */
784 static void
785 desktop_file_dir_reset (DesktopFileDir *dir)
786 {
787   if (dir->monitor)
788     {
789       g_signal_handlers_disconnect_by_func (dir->monitor, desktop_file_dir_changed, dir);
790       g_object_unref (dir->monitor);
791       dir->monitor = NULL;
792     }
793
794   if (dir->app_names)
795     {
796       g_hash_table_unref (dir->app_names);
797       dir->app_names = NULL;
798     }
799
800   if (dir->memory_index)
801     {
802       g_hash_table_unref (dir->memory_index);
803       dir->memory_index = NULL;
804     }
805
806   dir->is_setup = FALSE;
807 }
808
809 /*< internal >
810  * desktop_file_dir_init:
811  * @dir: a #DesktopFileDir
812  *
813  * Does initial setup for @dir
814  *
815  * You should only call this if @dir is not already setup.
816  */
817 static void
818 desktop_file_dir_init (DesktopFileDir *dir)
819 {
820   g_assert (!dir->is_setup);
821
822   g_assert (!dir->monitor);
823   dir->monitor = g_local_directory_monitor_new_in_worker (dir->path, G_FILE_MONITOR_NONE, NULL);
824
825   if (dir->monitor)
826     {
827       g_signal_connect (dir->monitor, "changed", G_CALLBACK (desktop_file_dir_changed), dir);
828       g_local_directory_monitor_start (dir->monitor);
829     }
830
831   desktop_file_dir_unindexed_init (dir);
832
833   dir->is_setup = TRUE;
834 }
835
836 /*< internal >
837  * desktop_file_dir_get_app:
838  * @dir: a DesktopFileDir
839  * @desktop_id: the desktop ID to load
840  *
841  * Creates the #GDesktopAppInfo for the given @desktop_id if it exists
842  * within @dir, even if it is hidden.
843  *
844  * This function does not check if @desktop_id would be masked by a
845  * directory with higher precedence.  The caller must do so.
846  */
847 static GDesktopAppInfo *
848 desktop_file_dir_get_app (DesktopFileDir *dir,
849                           const gchar    *desktop_id)
850 {
851   if (!dir->app_names)
852     return NULL;
853
854   return desktop_file_dir_unindexed_get_app (dir, desktop_id);
855 }
856
857 /*< internal >
858  * desktop_file_dir_get_all:
859  * @dir: a DesktopFileDir
860  * @apps: a #GHashTable<string, GDesktopAppInfo>
861  *
862  * Loads all desktop files in @dir and adds them to @apps, careful to
863  * ensure we don't add any files masked by a similarly-named file in a
864  * higher-precedence directory.
865  */
866 static void
867 desktop_file_dir_get_all (DesktopFileDir *dir,
868                           GHashTable     *apps)
869 {
870   desktop_file_dir_unindexed_get_all (dir, apps);
871 }
872
873 /*< internal >
874  * desktop_file_dir_search:
875  * @dir: a #DesktopFilEDir
876  * @term: a normalised and casefolded search term
877  *
878  * Finds the names of applications in @dir that match @term.
879  */
880 static void
881 desktop_file_dir_search (DesktopFileDir *dir,
882                          const gchar    *search_token)
883 {
884   desktop_file_dir_unindexed_search (dir, search_token);
885 }
886
887 /* Lock/unlock and global setup API {{{2 */
888
889 static void
890 desktop_file_dirs_lock (void)
891 {
892   gint i;
893
894   g_mutex_lock (&desktop_file_dir_lock);
895
896   if (desktop_file_dirs == NULL)
897     {
898       const char * const *data_dirs;
899       GArray *tmp;
900       gint i;
901
902       tmp = g_array_new (FALSE, FALSE, sizeof (DesktopFileDir));
903
904       /* Highest priority: the user's ~/.local/share/applications */
905       desktop_file_dir_create (tmp, g_get_user_data_dir ());
906
907       /* Following that, XDG_DATA_DIRS/applications, in order */
908       data_dirs = g_get_system_data_dirs ();
909       for (i = 0; data_dirs[i]; i++)
910         desktop_file_dir_create (tmp, data_dirs[i]);
911
912       desktop_file_dirs = (DesktopFileDir *) tmp->data;
913       n_desktop_file_dirs = tmp->len;
914
915       g_array_free (tmp, FALSE);
916     }
917
918   for (i = 0; i < n_desktop_file_dirs; i++)
919     if (!desktop_file_dirs[i].is_setup)
920       desktop_file_dir_init (&desktop_file_dirs[i]);
921 }
922
923 static void
924 desktop_file_dirs_unlock (void)
925 {
926   g_mutex_unlock (&desktop_file_dir_lock);
927 }
928
929 static void
930 desktop_file_dirs_refresh (void)
931 {
932   desktop_file_dirs_lock ();
933   desktop_file_dirs_unlock ();
934 }
935
936 static void
937 desktop_file_dirs_invalidate_user (void)
938 {
939   g_mutex_lock (&desktop_file_dir_lock);
940
941   if (n_desktop_file_dirs)
942     desktop_file_dir_reset (&desktop_file_dirs[0]);
943
944   g_mutex_unlock (&desktop_file_dir_lock);
945 }
946
947 /* GDesktopAppInfo implementation {{{1 */
948 /* GObject implementation {{{2 */
949 static void
950 g_desktop_app_info_finalize (GObject *object)
951 {
952   GDesktopAppInfo *info;
953
954   info = G_DESKTOP_APP_INFO (object);
955
956   g_free (info->desktop_id);
957   g_free (info->filename);
958
959   if (info->keyfile)
960     g_key_file_unref (info->keyfile);
961
962   g_free (info->name);
963   g_free (info->generic_name);
964   g_free (info->fullname);
965   g_free (info->comment);
966   g_free (info->icon_name);
967   if (info->icon)
968     g_object_unref (info->icon);
969   g_strfreev (info->keywords);
970   g_strfreev (info->only_show_in);
971   g_strfreev (info->not_show_in);
972   g_free (info->try_exec);
973   g_free (info->exec);
974   g_free (info->binary);
975   g_free (info->path);
976   g_free (info->categories);
977   g_free (info->startup_wm_class);
978   g_strfreev (info->mime_types);
979   g_free (info->app_id);
980   g_strfreev (info->actions);
981
982   G_OBJECT_CLASS (g_desktop_app_info_parent_class)->finalize (object);
983 }
984
985 static void
986 g_desktop_app_info_set_property (GObject      *object,
987                                  guint         prop_id,
988                                  const GValue *value,
989                                  GParamSpec   *pspec)
990 {
991   GDesktopAppInfo *self = G_DESKTOP_APP_INFO (object);
992
993   switch (prop_id)
994     {
995     case PROP_FILENAME:
996       self->filename = g_value_dup_string (value);
997       break;
998
999     default:
1000       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
1001       break;
1002     }
1003 }
1004
1005 static void
1006 g_desktop_app_info_get_property (GObject    *object,
1007                                  guint       prop_id,
1008                                  GValue     *value,
1009                                  GParamSpec *pspec)
1010 {
1011   GDesktopAppInfo *self = G_DESKTOP_APP_INFO (object);
1012
1013   switch (prop_id)
1014     {
1015     case PROP_FILENAME:
1016       g_value_set_string (value, self->filename);
1017       break;
1018     default:
1019       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
1020       break;
1021     }
1022 }
1023
1024 static void
1025 g_desktop_app_info_class_init (GDesktopAppInfoClass *klass)
1026 {
1027   GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
1028
1029   gobject_class->get_property = g_desktop_app_info_get_property;
1030   gobject_class->set_property = g_desktop_app_info_set_property;
1031   gobject_class->finalize = g_desktop_app_info_finalize;
1032
1033   /**
1034    * GDesktopAppInfo:filename:
1035    *
1036    * The origin filename of this #GDesktopAppInfo
1037    */
1038   g_object_class_install_property (gobject_class,
1039                                    PROP_FILENAME,
1040                                    g_param_spec_string ("filename", "Filename", "", NULL,
1041                                                         G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY));
1042 }
1043
1044 static void
1045 g_desktop_app_info_init (GDesktopAppInfo *local)
1046 {
1047 }
1048
1049 /* Construction... {{{2 */
1050
1051 /*< internal >
1052  * binary_from_exec:
1053  * @exec: an exec line
1054  *
1055  * Returns the first word in an exec line (ie: the binary name).
1056  *
1057  * If @exec is "  progname --foo %F" then returns "progname".
1058  */
1059 static char *
1060 binary_from_exec (const char *exec)
1061 {
1062   const char *p, *start;
1063
1064   p = exec;
1065   while (*p == ' ')
1066     p++;
1067   start = p;
1068   while (*p != ' ' && *p != 0)
1069     p++;
1070
1071   return g_strndup (start, p - start);
1072 }
1073
1074 static gboolean
1075 g_desktop_app_info_load_from_keyfile (GDesktopAppInfo *info,
1076                                       GKeyFile        *key_file)
1077 {
1078   char *start_group;
1079   char *type;
1080   char *try_exec;
1081   char *exec;
1082   gboolean bus_activatable;
1083
1084   start_group = g_key_file_get_start_group (key_file);
1085   if (start_group == NULL || strcmp (start_group, G_KEY_FILE_DESKTOP_GROUP) != 0)
1086     {
1087       g_free (start_group);
1088       return FALSE;
1089     }
1090   g_free (start_group);
1091
1092   type = g_key_file_get_string (key_file,
1093                                 G_KEY_FILE_DESKTOP_GROUP,
1094                                 G_KEY_FILE_DESKTOP_KEY_TYPE,
1095                                 NULL);
1096   if (type == NULL || strcmp (type, G_KEY_FILE_DESKTOP_TYPE_APPLICATION) != 0)
1097     {
1098       g_free (type);
1099       return FALSE;
1100     }
1101   g_free (type);
1102
1103   try_exec = g_key_file_get_string (key_file,
1104                                     G_KEY_FILE_DESKTOP_GROUP,
1105                                     G_KEY_FILE_DESKTOP_KEY_TRY_EXEC,
1106                                     NULL);
1107   if (try_exec && try_exec[0] != '\0')
1108     {
1109       char *t;
1110       t = g_find_program_in_path (try_exec);
1111       if (t == NULL)
1112         {
1113           g_free (try_exec);
1114           return FALSE;
1115         }
1116       g_free (t);
1117     }
1118
1119   exec = g_key_file_get_string (key_file,
1120                                 G_KEY_FILE_DESKTOP_GROUP,
1121                                 G_KEY_FILE_DESKTOP_KEY_EXEC,
1122                                 NULL);
1123   if (exec && exec[0] != '\0')
1124     {
1125       gint argc;
1126       char **argv;
1127       if (!g_shell_parse_argv (exec, &argc, &argv, NULL))
1128         {
1129           g_free (exec);
1130           g_free (try_exec);
1131           return FALSE;
1132         }
1133       else
1134         {
1135           char *t;
1136           t = g_find_program_in_path (argv[0]);
1137           g_strfreev (argv);
1138
1139           if (t == NULL)
1140             {
1141               g_free (exec);
1142               g_free (try_exec);
1143               return FALSE;
1144             }
1145           g_free (t);
1146         }
1147     }
1148
1149   info->name = g_key_file_get_locale_string (key_file, G_KEY_FILE_DESKTOP_GROUP, G_KEY_FILE_DESKTOP_KEY_NAME, NULL, NULL);
1150   info->generic_name = g_key_file_get_locale_string (key_file, G_KEY_FILE_DESKTOP_GROUP, GENERIC_NAME_KEY, NULL, NULL);
1151   info->fullname = g_key_file_get_locale_string (key_file, G_KEY_FILE_DESKTOP_GROUP, FULL_NAME_KEY, NULL, NULL);
1152   info->keywords = g_key_file_get_locale_string_list (key_file, G_KEY_FILE_DESKTOP_GROUP, KEYWORDS_KEY, NULL, NULL, NULL);
1153   info->comment = g_key_file_get_locale_string (key_file, G_KEY_FILE_DESKTOP_GROUP, G_KEY_FILE_DESKTOP_KEY_COMMENT, NULL, NULL);
1154   info->nodisplay = g_key_file_get_boolean (key_file, G_KEY_FILE_DESKTOP_GROUP, G_KEY_FILE_DESKTOP_KEY_NO_DISPLAY, NULL) != FALSE;
1155   info->icon_name =  g_key_file_get_locale_string (key_file, G_KEY_FILE_DESKTOP_GROUP, G_KEY_FILE_DESKTOP_KEY_ICON, NULL, NULL);
1156   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);
1157   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);
1158   info->try_exec = try_exec;
1159   info->exec = exec;
1160   info->path = g_key_file_get_string (key_file, G_KEY_FILE_DESKTOP_GROUP, G_KEY_FILE_DESKTOP_KEY_PATH, NULL);
1161   info->terminal = g_key_file_get_boolean (key_file, G_KEY_FILE_DESKTOP_GROUP, G_KEY_FILE_DESKTOP_KEY_TERMINAL, NULL) != FALSE;
1162   info->startup_notify = g_key_file_get_boolean (key_file, G_KEY_FILE_DESKTOP_GROUP, G_KEY_FILE_DESKTOP_KEY_STARTUP_NOTIFY, NULL) != FALSE;
1163   info->no_fuse = g_key_file_get_boolean (key_file, G_KEY_FILE_DESKTOP_GROUP, "X-GIO-NoFuse", NULL) != FALSE;
1164   info->hidden = g_key_file_get_boolean (key_file, G_KEY_FILE_DESKTOP_GROUP, G_KEY_FILE_DESKTOP_KEY_HIDDEN, NULL) != FALSE;
1165   info->categories = g_key_file_get_string (key_file, G_KEY_FILE_DESKTOP_GROUP, G_KEY_FILE_DESKTOP_KEY_CATEGORIES, NULL);
1166   info->startup_wm_class = g_key_file_get_string (key_file, G_KEY_FILE_DESKTOP_GROUP, STARTUP_WM_CLASS_KEY, NULL);
1167   info->mime_types = g_key_file_get_string_list (key_file, G_KEY_FILE_DESKTOP_GROUP, G_KEY_FILE_DESKTOP_KEY_MIME_TYPE, NULL, NULL);
1168   bus_activatable = g_key_file_get_boolean (key_file, G_KEY_FILE_DESKTOP_GROUP, G_KEY_FILE_DESKTOP_KEY_DBUS_ACTIVATABLE, NULL);
1169   info->actions = g_key_file_get_string_list (key_file, G_KEY_FILE_DESKTOP_GROUP, G_KEY_FILE_DESKTOP_KEY_ACTIONS, NULL, NULL);
1170
1171   /* Remove the special-case: no Actions= key just means 0 extra actions */
1172   if (info->actions == NULL)
1173     info->actions = g_new0 (gchar *, 0 + 1);
1174
1175   info->icon = NULL;
1176   if (info->icon_name)
1177     {
1178       if (g_path_is_absolute (info->icon_name))
1179         {
1180           GFile *file;
1181
1182           file = g_file_new_for_path (info->icon_name);
1183           info->icon = g_file_icon_new (file);
1184           g_object_unref (file);
1185         }
1186       else
1187         {
1188           char *p;
1189
1190           /* Work around a common mistake in desktop files */
1191           if ((p = strrchr (info->icon_name, '.')) != NULL &&
1192               (strcmp (p, ".png") == 0 ||
1193                strcmp (p, ".xpm") == 0 ||
1194                strcmp (p, ".svg") == 0))
1195             *p = 0;
1196
1197           info->icon = g_themed_icon_new (info->icon_name);
1198         }
1199     }
1200
1201   if (info->exec)
1202     info->binary = binary_from_exec (info->exec);
1203
1204   if (info->path && info->path[0] == '\0')
1205     {
1206       g_free (info->path);
1207       info->path = NULL;
1208     }
1209
1210   /* Can only be DBusActivatable if we know the filename, which means
1211    * that this won't work for the load-from-keyfile case.
1212    */
1213   if (bus_activatable && info->filename)
1214     {
1215       gchar *basename;
1216       gchar *last_dot;
1217
1218       basename = g_path_get_basename (info->filename);
1219       last_dot = strrchr (basename, '.');
1220
1221       if (last_dot && g_str_equal (last_dot, ".desktop"))
1222         {
1223           *last_dot = '\0';
1224
1225           if (g_dbus_is_interface_name (basename))
1226             info->app_id = g_strdup (basename);
1227         }
1228
1229       g_free (basename);
1230     }
1231
1232   info->keyfile = g_key_file_ref (key_file);
1233
1234   return TRUE;
1235 }
1236
1237 static gboolean
1238 g_desktop_app_info_load_file (GDesktopAppInfo *self)
1239 {
1240   GKeyFile *key_file;
1241   gboolean retval = FALSE;
1242
1243   g_return_val_if_fail (self->filename != NULL, FALSE);
1244
1245   self->desktop_id = g_path_get_basename (self->filename);
1246
1247   key_file = g_key_file_new ();
1248
1249   if (g_key_file_load_from_file (key_file, self->filename, G_KEY_FILE_NONE, NULL))
1250     retval = g_desktop_app_info_load_from_keyfile (self, key_file);
1251
1252   g_key_file_unref (key_file);
1253   return retval;
1254 }
1255
1256 /**
1257  * g_desktop_app_info_new_from_keyfile:
1258  * @key_file: an opened #GKeyFile
1259  *
1260  * Creates a new #GDesktopAppInfo.
1261  *
1262  * Returns: a new #GDesktopAppInfo or %NULL on error.
1263  *
1264  * Since: 2.18
1265  **/
1266 GDesktopAppInfo *
1267 g_desktop_app_info_new_from_keyfile (GKeyFile *key_file)
1268 {
1269   GDesktopAppInfo *info;
1270
1271   info = g_object_new (G_TYPE_DESKTOP_APP_INFO, NULL);
1272   info->filename = NULL;
1273   if (!g_desktop_app_info_load_from_keyfile (info, key_file))
1274     {
1275       g_object_unref (info);
1276       return NULL;
1277     }
1278   return info;
1279 }
1280
1281 /**
1282  * g_desktop_app_info_new_from_filename:
1283  * @filename: the path of a desktop file, in the GLib filename encoding
1284  *
1285  * Creates a new #GDesktopAppInfo.
1286  *
1287  * Returns: a new #GDesktopAppInfo or %NULL on error.
1288  **/
1289 GDesktopAppInfo *
1290 g_desktop_app_info_new_from_filename (const char *filename)
1291 {
1292   GDesktopAppInfo *info = NULL;
1293
1294   info = g_object_new (G_TYPE_DESKTOP_APP_INFO, "filename", filename, NULL);
1295   if (!g_desktop_app_info_load_file (info))
1296     {
1297       g_object_unref (info);
1298       return NULL;
1299     }
1300   return info;
1301 }
1302
1303 /**
1304  * g_desktop_app_info_new:
1305  * @desktop_id: the desktop file id
1306  *
1307  * Creates a new #GDesktopAppInfo based on a desktop file id.
1308  *
1309  * A desktop file id is the basename of the desktop file, including the
1310  * .desktop extension. GIO is looking for a desktop file with this name
1311  * in the <filename>applications</filename> subdirectories of the XDG data
1312  * directories (i.e. the directories specified in the
1313  * <envar>XDG_DATA_HOME</envar> and <envar>XDG_DATA_DIRS</envar> environment
1314  * variables). GIO also supports the prefix-to-subdirectory mapping that is
1315  * described in the <ulink url="http://standards.freedesktop.org/menu-spec/latest/">Menu Spec</ulink>
1316  * (i.e. a desktop id of kde-foo.desktop will match
1317  * <filename>/usr/share/applications/kde/foo.desktop</filename>).
1318  *
1319  * Returns: a new #GDesktopAppInfo, or %NULL if no desktop file with that id
1320  */
1321 GDesktopAppInfo *
1322 g_desktop_app_info_new (const char *desktop_id)
1323 {
1324   GDesktopAppInfo *appinfo = NULL;
1325   guint i;
1326
1327   desktop_file_dirs_lock ();
1328
1329   for (i = 0; i < n_desktop_file_dirs; i++)
1330     {
1331       appinfo = desktop_file_dir_get_app (&desktop_file_dirs[i], desktop_id);
1332
1333       if (appinfo)
1334         break;
1335     }
1336
1337   desktop_file_dirs_unlock ();
1338
1339   if (appinfo == NULL)
1340     return NULL;
1341
1342   g_free (appinfo->desktop_id);
1343   appinfo->desktop_id = g_strdup (desktop_id);
1344
1345   if (g_desktop_app_info_get_is_hidden (appinfo))
1346     {
1347       g_object_unref (appinfo);
1348       appinfo = NULL;
1349     }
1350
1351   return appinfo;
1352 }
1353
1354 static GAppInfo *
1355 g_desktop_app_info_dup (GAppInfo *appinfo)
1356 {
1357   GDesktopAppInfo *info = G_DESKTOP_APP_INFO (appinfo);
1358   GDesktopAppInfo *new_info;
1359
1360   new_info = g_object_new (G_TYPE_DESKTOP_APP_INFO, NULL);
1361
1362   new_info->filename = g_strdup (info->filename);
1363   new_info->desktop_id = g_strdup (info->desktop_id);
1364
1365   if (info->keyfile)
1366     new_info->keyfile = g_key_file_ref (info->keyfile);
1367
1368   new_info->name = g_strdup (info->name);
1369   new_info->generic_name = g_strdup (info->generic_name);
1370   new_info->fullname = g_strdup (info->fullname);
1371   new_info->keywords = g_strdupv (info->keywords);
1372   new_info->comment = g_strdup (info->comment);
1373   new_info->nodisplay = info->nodisplay;
1374   new_info->icon_name = g_strdup (info->icon_name);
1375   if (info->icon)
1376     new_info->icon = g_object_ref (info->icon);
1377   new_info->only_show_in = g_strdupv (info->only_show_in);
1378   new_info->not_show_in = g_strdupv (info->not_show_in);
1379   new_info->try_exec = g_strdup (info->try_exec);
1380   new_info->exec = g_strdup (info->exec);
1381   new_info->binary = g_strdup (info->binary);
1382   new_info->path = g_strdup (info->path);
1383   new_info->app_id = g_strdup (info->app_id);
1384   new_info->hidden = info->hidden;
1385   new_info->terminal = info->terminal;
1386   new_info->startup_notify = info->startup_notify;
1387
1388   return G_APP_INFO (new_info);
1389 }
1390
1391 /* GAppInfo interface implementation functions {{{2 */
1392
1393 static gboolean
1394 g_desktop_app_info_equal (GAppInfo *appinfo1,
1395                           GAppInfo *appinfo2)
1396 {
1397   GDesktopAppInfo *info1 = G_DESKTOP_APP_INFO (appinfo1);
1398   GDesktopAppInfo *info2 = G_DESKTOP_APP_INFO (appinfo2);
1399
1400   if (info1->desktop_id == NULL ||
1401       info2->desktop_id == NULL)
1402     return info1 == info2;
1403
1404   return strcmp (info1->desktop_id, info2->desktop_id) == 0;
1405 }
1406
1407 static const char *
1408 g_desktop_app_info_get_id (GAppInfo *appinfo)
1409 {
1410   GDesktopAppInfo *info = G_DESKTOP_APP_INFO (appinfo);
1411
1412   return info->desktop_id;
1413 }
1414
1415 static const char *
1416 g_desktop_app_info_get_name (GAppInfo *appinfo)
1417 {
1418   GDesktopAppInfo *info = G_DESKTOP_APP_INFO (appinfo);
1419
1420   if (info->name == NULL)
1421     return _("Unnamed");
1422   return info->name;
1423 }
1424
1425 static const char *
1426 g_desktop_app_info_get_display_name (GAppInfo *appinfo)
1427 {
1428   GDesktopAppInfo *info = G_DESKTOP_APP_INFO (appinfo);
1429
1430   if (info->fullname == NULL)
1431     return g_desktop_app_info_get_name (appinfo);
1432   return info->fullname;
1433 }
1434
1435 /**
1436  * g_desktop_app_info_get_is_hidden:
1437  * @info: a #GDesktopAppInfo.
1438  *
1439  * A desktop file is hidden if the Hidden key in it is
1440  * set to True.
1441  *
1442  * Returns: %TRUE if hidden, %FALSE otherwise.
1443  **/
1444 gboolean
1445 g_desktop_app_info_get_is_hidden (GDesktopAppInfo *info)
1446 {
1447   return info->hidden;
1448 }
1449
1450 /**
1451  * g_desktop_app_info_get_filename:
1452  * @info: a #GDesktopAppInfo
1453  *
1454  * When @info was created from a known filename, return it.  In some
1455  * situations such as the #GDesktopAppInfo returned from
1456  * g_desktop_app_info_new_from_keyfile(), this function will return %NULL.
1457  *
1458  * Returns: The full path to the file for @info, or %NULL if not known.
1459  * Since: 2.24
1460  */
1461 const char *
1462 g_desktop_app_info_get_filename (GDesktopAppInfo *info)
1463 {
1464   return info->filename;
1465 }
1466
1467 static const char *
1468 g_desktop_app_info_get_description (GAppInfo *appinfo)
1469 {
1470   GDesktopAppInfo *info = G_DESKTOP_APP_INFO (appinfo);
1471
1472   return info->comment;
1473 }
1474
1475 static const char *
1476 g_desktop_app_info_get_executable (GAppInfo *appinfo)
1477 {
1478   GDesktopAppInfo *info = G_DESKTOP_APP_INFO (appinfo);
1479
1480   return info->binary;
1481 }
1482
1483 static const char *
1484 g_desktop_app_info_get_commandline (GAppInfo *appinfo)
1485 {
1486   GDesktopAppInfo *info = G_DESKTOP_APP_INFO (appinfo);
1487
1488   return info->exec;
1489 }
1490
1491 static GIcon *
1492 g_desktop_app_info_get_icon (GAppInfo *appinfo)
1493 {
1494   GDesktopAppInfo *info = G_DESKTOP_APP_INFO (appinfo);
1495
1496   return info->icon;
1497 }
1498
1499 /**
1500  * g_desktop_app_info_get_categories:
1501  * @info: a #GDesktopAppInfo
1502  *
1503  * Gets the categories from the desktop file.
1504  *
1505  * Returns: The unparsed Categories key from the desktop file;
1506  *     i.e. no attempt is made to split it by ';' or validate it.
1507  */
1508 const char *
1509 g_desktop_app_info_get_categories (GDesktopAppInfo *info)
1510 {
1511   return info->categories;
1512 }
1513
1514 /**
1515  * g_desktop_app_info_get_keywords:
1516  * @info: a #GDesktopAppInfo
1517  *
1518  * Gets the keywords from the desktop file.
1519  *
1520  * Returns: (transfer none): The value of the Keywords key
1521  *
1522  * Since: 2.32
1523  */
1524 const char * const *
1525 g_desktop_app_info_get_keywords (GDesktopAppInfo *info)
1526 {
1527   return (const char * const *)info->keywords;
1528 }
1529
1530 /**
1531  * g_desktop_app_info_get_generic_name:
1532  * @info: a #GDesktopAppInfo
1533  *
1534  * Gets the generic name from the destkop file.
1535  *
1536  * Returns: The value of the GenericName key
1537  */
1538 const char *
1539 g_desktop_app_info_get_generic_name (GDesktopAppInfo *info)
1540 {
1541   return info->generic_name;
1542 }
1543
1544 /**
1545  * g_desktop_app_info_get_nodisplay:
1546  * @info: a #GDesktopAppInfo
1547  *
1548  * Gets the value of the NoDisplay key, which helps determine if the
1549  * application info should be shown in menus. See
1550  * #G_KEY_FILE_DESKTOP_KEY_NO_DISPLAY and g_app_info_should_show().
1551  *
1552  * Returns: The value of the NoDisplay key
1553  *
1554  * Since: 2.30
1555  */
1556 gboolean
1557 g_desktop_app_info_get_nodisplay (GDesktopAppInfo *info)
1558 {
1559   return info->nodisplay;
1560 }
1561
1562 /**
1563  * g_desktop_app_info_get_show_in:
1564  * @info: a #GDesktopAppInfo
1565  * @desktop_env: a string specifying a desktop name
1566  *
1567  * Checks if the application info should be shown in menus that list available
1568  * applications for a specific name of the desktop, based on the
1569  * <literal>OnlyShowIn</literal> and <literal>NotShowIn</literal> keys.
1570  *
1571  * If @desktop_env is %NULL, then the name of the desktop set with
1572  * g_desktop_app_info_set_desktop_env() is used.
1573  *
1574  * Note that g_app_info_should_show() for @info will include this check (with
1575  * %NULL for @desktop_env) as well as additional checks.
1576  *
1577  * Returns: %TRUE if the @info should be shown in @desktop_env according to the
1578  * <literal>OnlyShowIn</literal> and <literal>NotShowIn</literal> keys, %FALSE
1579  * otherwise.
1580  *
1581  * Since: 2.30
1582  */
1583 gboolean
1584 g_desktop_app_info_get_show_in (GDesktopAppInfo *info,
1585                                 const gchar     *desktop_env)
1586 {
1587   gboolean found;
1588   int i;
1589
1590   g_return_val_if_fail (G_IS_DESKTOP_APP_INFO (info), FALSE);
1591
1592   if (!desktop_env) {
1593     G_LOCK (g_desktop_env);
1594     desktop_env = g_desktop_env;
1595     G_UNLOCK (g_desktop_env);
1596   }
1597
1598   if (info->only_show_in)
1599     {
1600       if (desktop_env == NULL)
1601         return FALSE;
1602
1603       found = FALSE;
1604       for (i = 0; info->only_show_in[i] != NULL; i++)
1605         {
1606           if (strcmp (info->only_show_in[i], desktop_env) == 0)
1607             {
1608               found = TRUE;
1609               break;
1610             }
1611         }
1612       if (!found)
1613         return FALSE;
1614     }
1615
1616   if (info->not_show_in && desktop_env)
1617     {
1618       for (i = 0; info->not_show_in[i] != NULL; i++)
1619         {
1620           if (strcmp (info->not_show_in[i], desktop_env) == 0)
1621             return FALSE;
1622         }
1623     }
1624
1625   return TRUE;
1626 }
1627
1628 /* Launching... {{{2 */
1629
1630 static char *
1631 expand_macro_single (char macro, char *uri)
1632 {
1633   GFile *file;
1634   char *result = NULL;
1635   char *path = NULL;
1636   char *name;
1637
1638   file = g_file_new_for_uri (uri);
1639
1640   switch (macro)
1641     {
1642     case 'u':
1643     case 'U':
1644       result = g_shell_quote (uri);
1645       break;
1646     case 'f':
1647     case 'F':
1648       path = g_file_get_path (file);
1649       if (path)
1650         result = g_shell_quote (path);
1651       break;
1652     case 'd':
1653     case 'D':
1654       path = g_file_get_path (file);
1655       if (path)
1656         {
1657           name = g_path_get_dirname (path);
1658           result = g_shell_quote (name);
1659           g_free (name);
1660         }
1661       break;
1662     case 'n':
1663     case 'N':
1664       path = g_file_get_path (file);
1665       if (path)
1666         {
1667           name = g_path_get_basename (path);
1668           result = g_shell_quote (name);
1669           g_free (name);
1670         }
1671       break;
1672     }
1673
1674   g_object_unref (file);
1675   g_free (path);
1676
1677   return result;
1678 }
1679
1680 static void
1681 expand_macro (char              macro,
1682               GString          *exec,
1683               GDesktopAppInfo  *info,
1684               GList           **uri_list)
1685 {
1686   GList *uris = *uri_list;
1687   char *expanded;
1688   gboolean force_file_uri;
1689   char force_file_uri_macro;
1690   char *uri;
1691
1692   g_return_if_fail (exec != NULL);
1693
1694   /* On %u and %U, pass POSIX file path pointing to the URI via
1695    * the FUSE mount in ~/.gvfs. Note that if the FUSE daemon isn't
1696    * running or the URI doesn't have a POSIX file path via FUSE
1697    * we'll just pass the URI.
1698    */
1699   force_file_uri_macro = macro;
1700   force_file_uri = FALSE;
1701   if (!info->no_fuse)
1702     {
1703       switch (macro)
1704         {
1705         case 'u':
1706           force_file_uri_macro = 'f';
1707           force_file_uri = TRUE;
1708           break;
1709         case 'U':
1710           force_file_uri_macro = 'F';
1711           force_file_uri = TRUE;
1712           break;
1713         default:
1714           break;
1715         }
1716     }
1717
1718   switch (macro)
1719     {
1720     case 'u':
1721     case 'f':
1722     case 'd':
1723     case 'n':
1724       if (uris)
1725         {
1726           uri = uris->data;
1727           if (!force_file_uri ||
1728               /* Pass URI if it contains an anchor */
1729               strchr (uri, '#') != NULL)
1730             {
1731               expanded = expand_macro_single (macro, uri);
1732             }
1733           else
1734             {
1735               expanded = expand_macro_single (force_file_uri_macro, uri);
1736               if (expanded == NULL)
1737                 expanded = expand_macro_single (macro, uri);
1738             }
1739
1740           if (expanded)
1741             {
1742               g_string_append (exec, expanded);
1743               g_free (expanded);
1744             }
1745           uris = uris->next;
1746         }
1747
1748       break;
1749
1750     case 'U':
1751     case 'F':
1752     case 'D':
1753     case 'N':
1754       while (uris)
1755         {
1756           uri = uris->data;
1757
1758           if (!force_file_uri ||
1759               /* Pass URI if it contains an anchor */
1760               strchr (uri, '#') != NULL)
1761             {
1762               expanded = expand_macro_single (macro, uri);
1763             }
1764           else
1765             {
1766               expanded = expand_macro_single (force_file_uri_macro, uri);
1767               if (expanded == NULL)
1768                 expanded = expand_macro_single (macro, uri);
1769             }
1770
1771           if (expanded)
1772             {
1773               g_string_append (exec, expanded);
1774               g_free (expanded);
1775             }
1776
1777           uris = uris->next;
1778
1779           if (uris != NULL && expanded)
1780             g_string_append_c (exec, ' ');
1781         }
1782
1783       break;
1784
1785     case 'i':
1786       if (info->icon_name)
1787         {
1788           g_string_append (exec, "--icon ");
1789           expanded = g_shell_quote (info->icon_name);
1790           g_string_append (exec, expanded);
1791           g_free (expanded);
1792         }
1793       break;
1794
1795     case 'c':
1796       if (info->name)
1797         {
1798           expanded = g_shell_quote (info->name);
1799           g_string_append (exec, expanded);
1800           g_free (expanded);
1801         }
1802       break;
1803
1804     case 'k':
1805       if (info->filename)
1806         {
1807           expanded = g_shell_quote (info->filename);
1808           g_string_append (exec, expanded);
1809           g_free (expanded);
1810         }
1811       break;
1812
1813     case 'm': /* deprecated */
1814       break;
1815
1816     case '%':
1817       g_string_append_c (exec, '%');
1818       break;
1819     }
1820
1821   *uri_list = uris;
1822 }
1823
1824 static gboolean
1825 expand_application_parameters (GDesktopAppInfo   *info,
1826                                const gchar       *exec_line,
1827                                GList            **uris,
1828                                int               *argc,
1829                                char            ***argv,
1830                                GError           **error)
1831 {
1832   GList *uri_list = *uris;
1833   const char *p = exec_line;
1834   GString *expanded_exec;
1835   gboolean res;
1836
1837   if (exec_line == NULL)
1838     {
1839       g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_FAILED,
1840                            _("Desktop file didn't specify Exec field"));
1841       return FALSE;
1842     }
1843
1844   expanded_exec = g_string_new (NULL);
1845
1846   while (*p)
1847     {
1848       if (p[0] == '%' && p[1] != '\0')
1849         {
1850           expand_macro (p[1], expanded_exec, info, uris);
1851           p++;
1852         }
1853       else
1854         g_string_append_c (expanded_exec, *p);
1855
1856       p++;
1857     }
1858
1859   /* No file substitutions */
1860   if (uri_list == *uris && uri_list != NULL)
1861     {
1862       /* If there is no macro default to %f. This is also what KDE does */
1863       g_string_append_c (expanded_exec, ' ');
1864       expand_macro ('f', expanded_exec, info, uris);
1865     }
1866
1867   res = g_shell_parse_argv (expanded_exec->str, argc, argv, error);
1868   g_string_free (expanded_exec, TRUE);
1869   return res;
1870 }
1871
1872 static gboolean
1873 prepend_terminal_to_vector (int    *argc,
1874                             char ***argv)
1875 {
1876 #ifndef G_OS_WIN32
1877   char **real_argv;
1878   int real_argc;
1879   int i, j;
1880   char **term_argv = NULL;
1881   int term_argc = 0;
1882   char *check;
1883   char **the_argv;
1884
1885   g_return_val_if_fail (argc != NULL, FALSE);
1886   g_return_val_if_fail (argv != NULL, FALSE);
1887
1888   /* sanity */
1889   if(*argv == NULL)
1890     *argc = 0;
1891
1892   the_argv = *argv;
1893
1894   /* compute size if not given */
1895   if (*argc < 0)
1896     {
1897       for (i = 0; the_argv[i] != NULL; i++)
1898         ;
1899       *argc = i;
1900     }
1901
1902   term_argc = 2;
1903   term_argv = g_new0 (char *, 3);
1904
1905   check = g_find_program_in_path ("gnome-terminal");
1906   if (check != NULL)
1907     {
1908       term_argv[0] = check;
1909       /* Note that gnome-terminal takes -x and
1910        * as -e in gnome-terminal is broken we use that. */
1911       term_argv[1] = g_strdup ("-x");
1912     }
1913   else
1914     {
1915       if (check == NULL)
1916         check = g_find_program_in_path ("nxterm");
1917       if (check == NULL)
1918         check = g_find_program_in_path ("color-xterm");
1919       if (check == NULL)
1920         check = g_find_program_in_path ("rxvt");
1921       if (check == NULL)
1922         check = g_find_program_in_path ("xterm");
1923       if (check == NULL)
1924         check = g_find_program_in_path ("dtterm");
1925       if (check == NULL)
1926         {
1927           check = g_strdup ("xterm");
1928           g_warning ("couldn't find a terminal, falling back to xterm");
1929         }
1930       term_argv[0] = check;
1931       term_argv[1] = g_strdup ("-e");
1932     }
1933
1934   real_argc = term_argc + *argc;
1935   real_argv = g_new (char *, real_argc + 1);
1936
1937   for (i = 0; i < term_argc; i++)
1938     real_argv[i] = term_argv[i];
1939
1940   for (j = 0; j < *argc; j++, i++)
1941     real_argv[i] = (char *)the_argv[j];
1942
1943   real_argv[i] = NULL;
1944
1945   g_free (*argv);
1946   *argv = real_argv;
1947   *argc = real_argc;
1948
1949   /* we use g_free here as we sucked all the inner strings
1950    * out from it into real_argv */
1951   g_free (term_argv);
1952   return TRUE;
1953 #else
1954   return FALSE;
1955 #endif /* G_OS_WIN32 */
1956 }
1957
1958 static GList *
1959 create_files_for_uris (GList *uris)
1960 {
1961   GList *res;
1962   GList *iter;
1963
1964   res = NULL;
1965
1966   for (iter = uris; iter; iter = iter->next)
1967     {
1968       GFile *file = g_file_new_for_uri ((char *)iter->data);
1969       res = g_list_prepend (res, file);
1970     }
1971
1972   return g_list_reverse (res);
1973 }
1974
1975 typedef struct
1976 {
1977   GSpawnChildSetupFunc user_setup;
1978   gpointer user_setup_data;
1979
1980   char *pid_envvar;
1981 } ChildSetupData;
1982
1983 static void
1984 child_setup (gpointer user_data)
1985 {
1986   ChildSetupData *data = user_data;
1987
1988   if (data->pid_envvar)
1989     {
1990       pid_t pid = getpid ();
1991       char buf[20];
1992       int i;
1993
1994       /* Write the pid into the space already reserved for it in the
1995        * environment array. We can't use sprintf because it might
1996        * malloc, so we do it by hand. It's simplest to write the pid
1997        * out backwards first, then copy it over.
1998        */
1999       for (i = 0; pid; i++, pid /= 10)
2000         buf[i] = (pid % 10) + '0';
2001       for (i--; i >= 0; i--)
2002         *(data->pid_envvar++) = buf[i];
2003       *data->pid_envvar = '\0';
2004     }
2005
2006   if (data->user_setup)
2007     data->user_setup (data->user_setup_data);
2008 }
2009
2010 static void
2011 notify_desktop_launch (GDBusConnection  *session_bus,
2012                        GDesktopAppInfo  *info,
2013                        long              pid,
2014                        const char       *display,
2015                        const char       *sn_id,
2016                        GList            *uris)
2017 {
2018   GDBusMessage *msg;
2019   GVariantBuilder uri_variant;
2020   GVariantBuilder extras_variant;
2021   GList *iter;
2022   const char *desktop_file_id;
2023   const char *gio_desktop_file;
2024
2025   if (session_bus == NULL)
2026     return;
2027
2028   g_variant_builder_init (&uri_variant, G_VARIANT_TYPE ("as"));
2029   for (iter = uris; iter; iter = iter->next)
2030     g_variant_builder_add (&uri_variant, "s", iter->data);
2031
2032   g_variant_builder_init (&extras_variant, G_VARIANT_TYPE ("a{sv}"));
2033   if (sn_id != NULL && g_utf8_validate (sn_id, -1, NULL))
2034     g_variant_builder_add (&extras_variant, "{sv}",
2035                            "startup-id",
2036                            g_variant_new ("s",
2037                                           sn_id));
2038   gio_desktop_file = g_getenv ("GIO_LAUNCHED_DESKTOP_FILE");
2039   if (gio_desktop_file != NULL)
2040     g_variant_builder_add (&extras_variant, "{sv}",
2041                            "origin-desktop-file",
2042                            g_variant_new_bytestring (gio_desktop_file));
2043   if (g_get_prgname () != NULL)
2044     g_variant_builder_add (&extras_variant, "{sv}",
2045                            "origin-prgname",
2046                            g_variant_new_bytestring (g_get_prgname ()));
2047   g_variant_builder_add (&extras_variant, "{sv}",
2048                          "origin-pid",
2049                          g_variant_new ("x",
2050                                         (gint64)getpid ()));
2051
2052   if (info->filename)
2053     desktop_file_id = info->filename;
2054   else if (info->desktop_id)
2055     desktop_file_id = info->desktop_id;
2056   else
2057     desktop_file_id = "";
2058
2059   msg = g_dbus_message_new_signal ("/org/gtk/gio/DesktopAppInfo",
2060                                    "org.gtk.gio.DesktopAppInfo",
2061                                    "Launched");
2062   g_dbus_message_set_body (msg, g_variant_new ("(@aysxasa{sv})",
2063                                                g_variant_new_bytestring (desktop_file_id),
2064                                                display ? display : "",
2065                                                (gint64)pid,
2066                                                &uri_variant,
2067                                                &extras_variant));
2068   g_dbus_connection_send_message (session_bus,
2069                                   msg, 0,
2070                                   NULL,
2071                                   NULL);
2072   g_object_unref (msg);
2073 }
2074
2075 #define _SPAWN_FLAGS_DEFAULT (G_SPAWN_SEARCH_PATH)
2076
2077 static gboolean
2078 g_desktop_app_info_launch_uris_with_spawn (GDesktopAppInfo            *info,
2079                                            GDBusConnection            *session_bus,
2080                                            const gchar                *exec_line,
2081                                            GList                      *uris,
2082                                            GAppLaunchContext          *launch_context,
2083                                            GSpawnFlags                 spawn_flags,
2084                                            GSpawnChildSetupFunc        user_setup,
2085                                            gpointer                    user_setup_data,
2086                                            GDesktopAppLaunchCallback   pid_callback,
2087                                            gpointer                    pid_callback_data,
2088                                            GError                    **error)
2089 {
2090   gboolean completed = FALSE;
2091   GList *old_uris;
2092   char **argv, **envp;
2093   int argc;
2094   ChildSetupData data;
2095
2096   g_return_val_if_fail (info != NULL, FALSE);
2097
2098   argv = NULL;
2099
2100   if (launch_context)
2101     envp = g_app_launch_context_get_environment (launch_context);
2102   else
2103     envp = g_get_environ ();
2104
2105   do
2106     {
2107       GPid pid;
2108       GList *launched_uris;
2109       GList *iter;
2110       char *display, *sn_id;
2111
2112       old_uris = uris;
2113       if (!expand_application_parameters (info, exec_line, &uris, &argc, &argv, error))
2114         goto out;
2115
2116       /* Get the subset of URIs we're launching with this process */
2117       launched_uris = NULL;
2118       for (iter = old_uris; iter != NULL && iter != uris; iter = iter->next)
2119         launched_uris = g_list_prepend (launched_uris, iter->data);
2120       launched_uris = g_list_reverse (launched_uris);
2121
2122       if (info->terminal && !prepend_terminal_to_vector (&argc, &argv))
2123         {
2124           g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_FAILED,
2125                                _("Unable to find terminal required for application"));
2126           goto out;
2127         }
2128
2129       data.user_setup = user_setup;
2130       data.user_setup_data = user_setup_data;
2131
2132       if (info->filename)
2133         {
2134           envp = g_environ_setenv (envp,
2135                                    "GIO_LAUNCHED_DESKTOP_FILE",
2136                                    info->filename,
2137                                    TRUE);
2138           envp = g_environ_setenv (envp,
2139                                    "GIO_LAUNCHED_DESKTOP_FILE_PID",
2140                                    "XXXXXXXXXXXXXXXXXXXX", /* filled in child_setup */
2141                                    TRUE);
2142           data.pid_envvar = (char *)g_environ_getenv (envp, "GIO_LAUNCHED_DESKTOP_FILE_PID");
2143         }
2144       else
2145         {
2146           data.pid_envvar = NULL;
2147         }
2148
2149       display = NULL;
2150       sn_id = NULL;
2151       if (launch_context)
2152         {
2153           GList *launched_files = create_files_for_uris (launched_uris);
2154
2155           display = g_app_launch_context_get_display (launch_context,
2156                                                       G_APP_INFO (info),
2157                                                       launched_files);
2158           if (display)
2159             envp = g_environ_setenv (envp, "DISPLAY", display, TRUE);
2160
2161           if (info->startup_notify)
2162             {
2163               sn_id = g_app_launch_context_get_startup_notify_id (launch_context,
2164                                                                   G_APP_INFO (info),
2165                                                                   launched_files);
2166               envp = g_environ_setenv (envp, "DESKTOP_STARTUP_ID", sn_id, TRUE);
2167             }
2168
2169           g_list_free_full (launched_files, g_object_unref);
2170         }
2171
2172       if (!g_spawn_async (info->path,
2173                           argv,
2174                           envp,
2175                           spawn_flags,
2176                           child_setup,
2177                           &data,
2178                           &pid,
2179                           error))
2180         {
2181           if (sn_id)
2182             g_app_launch_context_launch_failed (launch_context, sn_id);
2183
2184           g_free (display);
2185           g_free (sn_id);
2186           g_list_free (launched_uris);
2187
2188           goto out;
2189         }
2190
2191       if (pid_callback != NULL)
2192         pid_callback (info, pid, pid_callback_data);
2193
2194       if (launch_context != NULL)
2195         {
2196           GVariantBuilder builder;
2197           GVariant *platform_data;
2198
2199           g_variant_builder_init (&builder, G_VARIANT_TYPE_ARRAY);
2200           g_variant_builder_add (&builder, "{sv}", "pid", g_variant_new_int32 (pid));
2201           if (sn_id)
2202             g_variant_builder_add (&builder, "{sv}", "startup-notification-id", g_variant_new_string (sn_id));
2203           platform_data = g_variant_ref_sink (g_variant_builder_end (&builder));
2204           g_signal_emit_by_name (launch_context, "launched", info, platform_data);
2205           g_variant_unref (platform_data);
2206         }
2207
2208       notify_desktop_launch (session_bus,
2209                              info,
2210                              pid,
2211                              display,
2212                              sn_id,
2213                              launched_uris);
2214
2215       g_free (display);
2216       g_free (sn_id);
2217       g_list_free (launched_uris);
2218
2219       g_strfreev (argv);
2220       argv = NULL;
2221     }
2222   while (uris != NULL);
2223
2224   completed = TRUE;
2225
2226  out:
2227   g_strfreev (argv);
2228   g_strfreev (envp);
2229
2230   return completed;
2231 }
2232
2233 static gchar *
2234 object_path_from_appid (const gchar *app_id)
2235 {
2236   gchar *path;
2237   gint i, n;
2238
2239   n = strlen (app_id);
2240   path = g_malloc (n + 2);
2241
2242   path[0] = '/';
2243
2244   for (i = 0; i < n; i++)
2245     if (app_id[i] != '.')
2246       path[i + 1] = app_id[i];
2247     else
2248       path[i + 1] = '/';
2249
2250   path[i + 1] = '\0';
2251
2252   return path;
2253 }
2254
2255 static GVariant *
2256 g_desktop_app_info_make_platform_data (GDesktopAppInfo   *info,
2257                                        GList             *uris,
2258                                        GAppLaunchContext *launch_context)
2259 {
2260   GVariantBuilder builder;
2261
2262   g_variant_builder_init (&builder, G_VARIANT_TYPE_VARDICT);
2263
2264   if (launch_context)
2265     {
2266       GList *launched_files = create_files_for_uris (uris);
2267
2268       if (info->startup_notify)
2269         {
2270           gchar *sn_id;
2271
2272           sn_id = g_app_launch_context_get_startup_notify_id (launch_context, G_APP_INFO (info), launched_files);
2273           g_variant_builder_add (&builder, "{sv}", "desktop-startup-id", g_variant_new_take_string (sn_id));
2274         }
2275
2276       g_list_free_full (launched_files, g_object_unref);
2277     }
2278
2279   return g_variant_builder_end (&builder);
2280 }
2281
2282 static gboolean
2283 g_desktop_app_info_launch_uris_with_dbus (GDesktopAppInfo    *info,
2284                                           GDBusConnection    *session_bus,
2285                                           GList              *uris,
2286                                           GAppLaunchContext  *launch_context)
2287 {
2288   GVariantBuilder builder;
2289   gchar *object_path;
2290
2291   g_return_val_if_fail (info != NULL, FALSE);
2292
2293   g_variant_builder_init (&builder, G_VARIANT_TYPE_TUPLE);
2294
2295   if (uris)
2296     {
2297       GList *iter;
2298
2299       g_variant_builder_open (&builder, G_VARIANT_TYPE_STRING_ARRAY);
2300       for (iter = uris; iter; iter = iter->next)
2301         g_variant_builder_add (&builder, "s", iter->data);
2302       g_variant_builder_close (&builder);
2303     }
2304
2305   g_variant_builder_add_value (&builder, g_desktop_app_info_make_platform_data (info, uris, launch_context));
2306
2307   /* This is non-blocking API.  Similar to launching via fork()/exec()
2308    * we don't wait around to see if the program crashed during startup.
2309    * This is what startup-notification's job is...
2310    */
2311   object_path = object_path_from_appid (info->app_id);
2312   g_dbus_connection_call (session_bus, info->app_id, object_path, "org.freedesktop.Application",
2313                           uris ? "Open" : "Activate", g_variant_builder_end (&builder),
2314                           NULL, G_DBUS_CALL_FLAGS_NONE, -1, NULL, NULL, NULL);
2315   g_free (object_path);
2316
2317   return TRUE;
2318 }
2319
2320 static gboolean
2321 g_desktop_app_info_launch_uris_internal (GAppInfo                   *appinfo,
2322                                          GList                      *uris,
2323                                          GAppLaunchContext          *launch_context,
2324                                          GSpawnFlags                 spawn_flags,
2325                                          GSpawnChildSetupFunc        user_setup,
2326                                          gpointer                    user_setup_data,
2327                                          GDesktopAppLaunchCallback   pid_callback,
2328                                          gpointer                    pid_callback_data,
2329                                          GError                     **error)
2330 {
2331   GDesktopAppInfo *info = G_DESKTOP_APP_INFO (appinfo);
2332   GDBusConnection *session_bus;
2333   gboolean success = TRUE;
2334
2335   session_bus = g_bus_get_sync (G_BUS_TYPE_SESSION, NULL, NULL);
2336
2337   if (session_bus && info->app_id)
2338     g_desktop_app_info_launch_uris_with_dbus (info, session_bus, uris, launch_context);
2339   else
2340     success = g_desktop_app_info_launch_uris_with_spawn (info, session_bus, info->exec, uris, launch_context,
2341                                                          spawn_flags, user_setup, user_setup_data,
2342                                                          pid_callback, pid_callback_data, error);
2343
2344   if (session_bus != NULL)
2345     {
2346       /* This asynchronous flush holds a reference until it completes,
2347        * which ensures that the following unref won't immediately kill
2348        * the connection if we were the initial owner.
2349        */
2350       g_dbus_connection_flush (session_bus, NULL, NULL, NULL);
2351       g_object_unref (session_bus);
2352     }
2353
2354   return success;
2355 }
2356
2357 static gboolean
2358 g_desktop_app_info_launch_uris (GAppInfo           *appinfo,
2359                                 GList              *uris,
2360                                 GAppLaunchContext  *launch_context,
2361                                 GError            **error)
2362 {
2363   return g_desktop_app_info_launch_uris_internal (appinfo, uris,
2364                                                   launch_context,
2365                                                   _SPAWN_FLAGS_DEFAULT,
2366                                                   NULL, NULL, NULL, NULL,
2367                                                   error);
2368 }
2369
2370 static gboolean
2371 g_desktop_app_info_supports_uris (GAppInfo *appinfo)
2372 {
2373   GDesktopAppInfo *info = G_DESKTOP_APP_INFO (appinfo);
2374
2375   return info->exec &&
2376     ((strstr (info->exec, "%u") != NULL) ||
2377      (strstr (info->exec, "%U") != NULL));
2378 }
2379
2380 static gboolean
2381 g_desktop_app_info_supports_files (GAppInfo *appinfo)
2382 {
2383   GDesktopAppInfo *info = G_DESKTOP_APP_INFO (appinfo);
2384
2385   return info->exec &&
2386     ((strstr (info->exec, "%f") != NULL) ||
2387      (strstr (info->exec, "%F") != NULL));
2388 }
2389
2390 static gboolean
2391 g_desktop_app_info_launch (GAppInfo           *appinfo,
2392                            GList              *files,
2393                            GAppLaunchContext  *launch_context,
2394                            GError            **error)
2395 {
2396   GList *uris;
2397   char *uri;
2398   gboolean res;
2399
2400   uris = NULL;
2401   while (files)
2402     {
2403       uri = g_file_get_uri (files->data);
2404       uris = g_list_prepend (uris, uri);
2405       files = files->next;
2406     }
2407
2408   uris = g_list_reverse (uris);
2409
2410   res = g_desktop_app_info_launch_uris (appinfo, uris, launch_context, error);
2411
2412   g_list_free_full (uris, g_free);
2413
2414   return res;
2415 }
2416
2417 /**
2418  * g_desktop_app_info_launch_uris_as_manager:
2419  * @appinfo: a #GDesktopAppInfo
2420  * @uris: (element-type utf8): List of URIs
2421  * @launch_context: a #GAppLaunchContext
2422  * @spawn_flags: #GSpawnFlags, used for each process
2423  * @user_setup: (scope call): a #GSpawnChildSetupFunc, used once for
2424  *     each process.
2425  * @user_setup_data: (closure user_setup): User data for @user_setup
2426  * @pid_callback: (scope call): Callback for child processes
2427  * @pid_callback_data: (closure pid_callback): User data for @callback
2428  * @error: return location for a #GError, or %NULL
2429  *
2430  * This function performs the equivalent of g_app_info_launch_uris(),
2431  * but is intended primarily for operating system components that
2432  * launch applications.  Ordinary applications should use
2433  * g_app_info_launch_uris().
2434  *
2435  * If the application is launched via traditional UNIX fork()/exec()
2436  * then @spawn_flags, @user_setup and @user_setup_data are used for the
2437  * call to g_spawn_async().  Additionally, @pid_callback (with
2438  * @pid_callback_data) will be called to inform about the PID of the
2439  * created process.
2440  *
2441  * If application launching occurs via some other mechanism (eg: D-Bus
2442  * activation) then @spawn_flags, @user_setup, @user_setup_data,
2443  * @pid_callback and @pid_callback_data are ignored.
2444  *
2445  * Returns: %TRUE on successful launch, %FALSE otherwise.
2446  */
2447 gboolean
2448 g_desktop_app_info_launch_uris_as_manager (GDesktopAppInfo            *appinfo,
2449                                            GList                      *uris,
2450                                            GAppLaunchContext          *launch_context,
2451                                            GSpawnFlags                 spawn_flags,
2452                                            GSpawnChildSetupFunc        user_setup,
2453                                            gpointer                    user_setup_data,
2454                                            GDesktopAppLaunchCallback   pid_callback,
2455                                            gpointer                    pid_callback_data,
2456                                            GError                    **error)
2457 {
2458   return g_desktop_app_info_launch_uris_internal ((GAppInfo*)appinfo,
2459                                                   uris,
2460                                                   launch_context,
2461                                                   spawn_flags,
2462                                                   user_setup,
2463                                                   user_setup_data,
2464                                                   pid_callback,
2465                                                   pid_callback_data,
2466                                                   error);
2467 }
2468
2469 /* OnlyShowIn API support {{{2 */
2470
2471 /**
2472  * g_desktop_app_info_set_desktop_env:
2473  * @desktop_env: a string specifying what desktop this is
2474  *
2475  * Sets the name of the desktop that the application is running in.
2476  * This is used by g_app_info_should_show() and
2477  * g_desktop_app_info_get_show_in() to evaluate the
2478  * <literal>OnlyShowIn</literal> and <literal>NotShowIn</literal>
2479  * desktop entry fields.
2480  *
2481  * The <ulink url="http://standards.freedesktop.org/menu-spec/latest/">Desktop
2482  * Menu specification</ulink> recognizes the following:
2483  * <simplelist>
2484  *   <member>GNOME</member>
2485  *   <member>KDE</member>
2486  *   <member>ROX</member>
2487  *   <member>XFCE</member>
2488  *   <member>LXDE</member>
2489  *   <member>Unity</member>
2490  *   <member>Old</member>
2491  * </simplelist>
2492  *
2493  * Should be called only once; subsequent calls are ignored.
2494  */
2495 void
2496 g_desktop_app_info_set_desktop_env (const gchar *desktop_env)
2497 {
2498   G_LOCK (g_desktop_env);
2499   if (!g_desktop_env)
2500     g_desktop_env = g_strdup (desktop_env);
2501   G_UNLOCK (g_desktop_env);
2502 }
2503
2504 static gboolean
2505 g_desktop_app_info_should_show (GAppInfo *appinfo)
2506 {
2507   GDesktopAppInfo *info = G_DESKTOP_APP_INFO (appinfo);
2508
2509   if (info->nodisplay)
2510     return FALSE;
2511
2512   return g_desktop_app_info_get_show_in (info, NULL);
2513 }
2514
2515 /* mime types/default apps support {{{2 */
2516
2517 typedef enum {
2518   APP_DIR,
2519   MIMETYPE_DIR
2520 } DirType;
2521
2522 static char *
2523 ensure_dir (DirType   type,
2524             GError  **error)
2525 {
2526   char *path, *display_name;
2527   int errsv;
2528
2529   if (type == APP_DIR)
2530     path = g_build_filename (g_get_user_data_dir (), "applications", NULL);
2531   else
2532     path = g_build_filename (g_get_user_data_dir (), "mime", "packages", NULL);
2533
2534   errno = 0;
2535   if (g_mkdir_with_parents (path, 0700) == 0)
2536     return path;
2537
2538   errsv = errno;
2539   display_name = g_filename_display_name (path);
2540   if (type == APP_DIR)
2541     g_set_error (error, G_IO_ERROR, g_io_error_from_errno (errsv),
2542                  _("Can't create user application configuration folder %s: %s"),
2543                  display_name, g_strerror (errsv));
2544   else
2545     g_set_error (error, G_IO_ERROR, g_io_error_from_errno (errsv),
2546                  _("Can't create user MIME configuration folder %s: %s"),
2547                  display_name, g_strerror (errsv));
2548
2549   g_free (display_name);
2550   g_free (path);
2551
2552   return NULL;
2553 }
2554
2555 static gboolean
2556 update_mimeapps_list (const char  *desktop_id,
2557                       const char  *content_type,
2558                       UpdateMimeFlags flags,
2559                       GError     **error)
2560 {
2561   char *dirname, *filename, *string;
2562   GKeyFile *key_file;
2563   gboolean load_succeeded, res;
2564   char **old_list, **list;
2565   gsize length, data_size;
2566   char *data;
2567   int i, j, k;
2568   char **content_types;
2569
2570   /* Don't add both at start and end */
2571   g_assert (!((flags & UPDATE_MIME_SET_DEFAULT) &&
2572               (flags & UPDATE_MIME_SET_NON_DEFAULT)));
2573
2574   dirname = ensure_dir (APP_DIR, error);
2575   if (!dirname)
2576     return FALSE;
2577
2578   filename = g_build_filename (dirname, "mimeapps.list", NULL);
2579   g_free (dirname);
2580
2581   key_file = g_key_file_new ();
2582   load_succeeded = g_key_file_load_from_file (key_file, filename, G_KEY_FILE_NONE, NULL);
2583   if (!load_succeeded ||
2584       (!g_key_file_has_group (key_file, ADDED_ASSOCIATIONS_GROUP) &&
2585        !g_key_file_has_group (key_file, REMOVED_ASSOCIATIONS_GROUP) &&
2586        !g_key_file_has_group (key_file, DEFAULT_APPLICATIONS_GROUP)))
2587     {
2588       g_key_file_free (key_file);
2589       key_file = g_key_file_new ();
2590     }
2591
2592   if (content_type)
2593     {
2594       content_types = g_new (char *, 2);
2595       content_types[0] = g_strdup (content_type);
2596       content_types[1] = NULL;
2597     }
2598   else
2599     {
2600       content_types = g_key_file_get_keys (key_file, DEFAULT_APPLICATIONS_GROUP, NULL, NULL);
2601     }
2602
2603   for (k = 0; content_types && content_types[k]; k++)
2604     {
2605       /* set as default, if requested so */
2606       string = g_key_file_get_string (key_file,
2607                                       DEFAULT_APPLICATIONS_GROUP,
2608                                       content_types[k],
2609                                       NULL);
2610
2611       if (g_strcmp0 (string, desktop_id) != 0 &&
2612           (flags & UPDATE_MIME_SET_DEFAULT))
2613         {
2614           g_free (string);
2615           string = g_strdup (desktop_id);
2616
2617           /* add in the non-default list too, if it's not already there */
2618           flags |= UPDATE_MIME_SET_NON_DEFAULT;
2619         }
2620
2621       if (string == NULL || desktop_id == NULL)
2622         g_key_file_remove_key (key_file,
2623                                DEFAULT_APPLICATIONS_GROUP,
2624                                content_types[k],
2625                                NULL);
2626       else
2627         g_key_file_set_string (key_file,
2628                                DEFAULT_APPLICATIONS_GROUP,
2629                                content_types[k],
2630                                string);
2631
2632       g_free (string);
2633     }
2634
2635   if (content_type)
2636     {
2637       /* reuse the list from above */
2638     }
2639   else
2640     {
2641       g_strfreev (content_types);
2642       content_types = g_key_file_get_keys (key_file, ADDED_ASSOCIATIONS_GROUP, NULL, NULL);
2643     }
2644
2645   for (k = 0; content_types && content_types[k]; k++)
2646     {
2647       /* Add to the right place in the list */
2648
2649       length = 0;
2650       old_list = g_key_file_get_string_list (key_file, ADDED_ASSOCIATIONS_GROUP,
2651                                              content_types[k], &length, NULL);
2652
2653       list = g_new (char *, 1 + length + 1);
2654
2655       i = 0;
2656
2657       /* if we're adding a last-used hint, just put the application in front of the list */
2658       if (flags & UPDATE_MIME_SET_LAST_USED)
2659         {
2660           /* avoid adding this again as non-default later */
2661           if (flags & UPDATE_MIME_SET_NON_DEFAULT)
2662             flags ^= UPDATE_MIME_SET_NON_DEFAULT;
2663
2664           list[i++] = g_strdup (desktop_id);
2665         }
2666
2667       if (old_list)
2668         {
2669           for (j = 0; old_list[j] != NULL; j++)
2670             {
2671               if (g_strcmp0 (old_list[j], desktop_id) != 0)
2672                 {
2673                   /* rewrite other entries if they're different from the new one */
2674                   list[i++] = g_strdup (old_list[j]);
2675                 }
2676               else if (flags & UPDATE_MIME_SET_NON_DEFAULT)
2677                 {
2678                   /* we encountered an old entry which is equal to the one we're adding as non-default,
2679                    * don't change its position in the list.
2680                    */
2681                   flags ^= UPDATE_MIME_SET_NON_DEFAULT;
2682                   list[i++] = g_strdup (old_list[j]);
2683                 }
2684             }
2685         }
2686
2687       /* add it at the end of the list */
2688       if (flags & UPDATE_MIME_SET_NON_DEFAULT)
2689         list[i++] = g_strdup (desktop_id);
2690
2691       list[i] = NULL;
2692
2693       g_strfreev (old_list);
2694
2695       if (list[0] == NULL || desktop_id == NULL)
2696         g_key_file_remove_key (key_file,
2697                                ADDED_ASSOCIATIONS_GROUP,
2698                                content_types[k],
2699                                NULL);
2700       else
2701         g_key_file_set_string_list (key_file,
2702                                     ADDED_ASSOCIATIONS_GROUP,
2703                                     content_types[k],
2704                                     (const char * const *)list, i);
2705
2706       g_strfreev (list);
2707     }
2708
2709   if (content_type)
2710     {
2711       /* reuse the list from above */
2712     }
2713   else
2714     {
2715       g_strfreev (content_types);
2716       content_types = g_key_file_get_keys (key_file, REMOVED_ASSOCIATIONS_GROUP, NULL, NULL);
2717     }
2718
2719   for (k = 0; content_types && content_types[k]; k++)
2720     {
2721       /* Remove from removed associations group (unless remove) */
2722
2723       length = 0;
2724       old_list = g_key_file_get_string_list (key_file, REMOVED_ASSOCIATIONS_GROUP,
2725                                              content_types[k], &length, NULL);
2726
2727       list = g_new (char *, 1 + length + 1);
2728
2729       i = 0;
2730       if (flags & UPDATE_MIME_REMOVE)
2731         list[i++] = g_strdup (desktop_id);
2732       if (old_list)
2733         {
2734           for (j = 0; old_list[j] != NULL; j++)
2735             {
2736               if (g_strcmp0 (old_list[j], desktop_id) != 0)
2737                 list[i++] = g_strdup (old_list[j]);
2738             }
2739         }
2740       list[i] = NULL;
2741
2742       g_strfreev (old_list);
2743
2744       if (list[0] == NULL || desktop_id == NULL)
2745         g_key_file_remove_key (key_file,
2746                                REMOVED_ASSOCIATIONS_GROUP,
2747                                content_types[k],
2748                                NULL);
2749       else
2750         g_key_file_set_string_list (key_file,
2751                                     REMOVED_ASSOCIATIONS_GROUP,
2752                                     content_types[k],
2753                                     (const char * const *)list, i);
2754
2755       g_strfreev (list);
2756     }
2757
2758   g_strfreev (content_types);
2759
2760   data = g_key_file_to_data (key_file, &data_size, error);
2761   g_key_file_free (key_file);
2762
2763   res = g_file_set_contents (filename, data, data_size, error);
2764
2765   mime_info_cache_reload (NULL);
2766
2767   g_free (filename);
2768   g_free (data);
2769
2770   return res;
2771 }
2772
2773 static gboolean
2774 g_desktop_app_info_set_as_last_used_for_type (GAppInfo    *appinfo,
2775                                               const char  *content_type,
2776                                               GError     **error)
2777 {
2778   GDesktopAppInfo *info = G_DESKTOP_APP_INFO (appinfo);
2779
2780   if (!g_desktop_app_info_ensure_saved (info, error))
2781     return FALSE;
2782
2783   if (!info->desktop_id)
2784     {
2785       g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_FAILED,
2786                            _("Application information lacks an identifier"));
2787       return FALSE;
2788     }
2789
2790   /* both add support for the content type and set as last used */
2791   return update_mimeapps_list (info->desktop_id, content_type,
2792                                UPDATE_MIME_SET_NON_DEFAULT |
2793                                UPDATE_MIME_SET_LAST_USED,
2794                                error);
2795 }
2796
2797 static gboolean
2798 g_desktop_app_info_set_as_default_for_type (GAppInfo    *appinfo,
2799                                             const char  *content_type,
2800                                             GError     **error)
2801 {
2802   GDesktopAppInfo *info = G_DESKTOP_APP_INFO (appinfo);
2803
2804   if (!g_desktop_app_info_ensure_saved (info, error))
2805     return FALSE;
2806
2807   if (!info->desktop_id)
2808     {
2809       g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_FAILED,
2810                            _("Application information lacks an identifier"));
2811       return FALSE;
2812     }
2813
2814   return update_mimeapps_list (info->desktop_id, content_type,
2815                                UPDATE_MIME_SET_DEFAULT,
2816                                error);
2817 }
2818
2819 static void
2820 update_program_done (GPid     pid,
2821                      gint     status,
2822                      gpointer data)
2823 {
2824   /* Did the application exit correctly */
2825   if (g_spawn_check_exit_status (status, NULL))
2826     {
2827       /* Here we could clean out any caches in use */
2828     }
2829 }
2830
2831 static void
2832 run_update_command (char *command,
2833                     char *subdir)
2834 {
2835         char *argv[3] = {
2836                 NULL,
2837                 NULL,
2838                 NULL,
2839         };
2840         GPid pid = 0;
2841         GError *error = NULL;
2842
2843         argv[0] = command;
2844         argv[1] = g_build_filename (g_get_user_data_dir (), subdir, NULL);
2845
2846         if (g_spawn_async ("/", argv,
2847                            NULL,       /* envp */
2848                            G_SPAWN_SEARCH_PATH |
2849                            G_SPAWN_STDOUT_TO_DEV_NULL |
2850                            G_SPAWN_STDERR_TO_DEV_NULL |
2851                            G_SPAWN_DO_NOT_REAP_CHILD,
2852                            NULL, NULL, /* No setup function */
2853                            &pid,
2854                            &error))
2855           g_child_watch_add (pid, update_program_done, NULL);
2856         else
2857           {
2858             /* If we get an error at this point, it's quite likely the user doesn't
2859              * have an installed copy of either 'update-mime-database' or
2860              * 'update-desktop-database'.  I don't think we want to popup an error
2861              * dialog at this point, so we just do a g_warning to give the user a
2862              * chance of debugging it.
2863              */
2864             g_warning ("%s", error->message);
2865           }
2866
2867         g_free (argv[1]);
2868 }
2869
2870 static gboolean
2871 g_desktop_app_info_set_as_default_for_extension (GAppInfo    *appinfo,
2872                                                  const char  *extension,
2873                                                  GError     **error)
2874 {
2875   char *filename, *basename, *mimetype;
2876   char *dirname;
2877   gboolean res;
2878
2879   if (!g_desktop_app_info_ensure_saved (G_DESKTOP_APP_INFO (appinfo), error))
2880     return FALSE;
2881
2882   dirname = ensure_dir (MIMETYPE_DIR, error);
2883   if (!dirname)
2884     return FALSE;
2885
2886   basename = g_strdup_printf ("user-extension-%s.xml", extension);
2887   filename = g_build_filename (dirname, basename, NULL);
2888   g_free (basename);
2889   g_free (dirname);
2890
2891   mimetype = g_strdup_printf ("application/x-extension-%s", extension);
2892
2893   if (!g_file_test (filename, G_FILE_TEST_EXISTS))
2894     {
2895       char *contents;
2896
2897       contents =
2898         g_strdup_printf ("<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"
2899                          "<mime-info xmlns=\"http://www.freedesktop.org/standards/shared-mime-info\">\n"
2900                          " <mime-type type=\"%s\">\n"
2901                          "  <comment>%s document</comment>\n"
2902                          "  <glob pattern=\"*.%s\"/>\n"
2903                          " </mime-type>\n"
2904                          "</mime-info>\n", mimetype, extension, extension);
2905
2906       g_file_set_contents (filename, contents, -1, NULL);
2907       g_free (contents);
2908
2909       run_update_command ("update-mime-database", "mime");
2910     }
2911   g_free (filename);
2912
2913   res = g_desktop_app_info_set_as_default_for_type (appinfo,
2914                                                     mimetype,
2915                                                     error);
2916
2917   g_free (mimetype);
2918
2919   return res;
2920 }
2921
2922 static gboolean
2923 g_desktop_app_info_add_supports_type (GAppInfo    *appinfo,
2924                                       const char  *content_type,
2925                                       GError     **error)
2926 {
2927   GDesktopAppInfo *info = G_DESKTOP_APP_INFO (appinfo);
2928
2929   if (!g_desktop_app_info_ensure_saved (G_DESKTOP_APP_INFO (info), error))
2930     return FALSE;
2931
2932   return update_mimeapps_list (info->desktop_id, content_type,
2933                                UPDATE_MIME_SET_NON_DEFAULT,
2934                                error);
2935 }
2936
2937 static gboolean
2938 g_desktop_app_info_can_remove_supports_type (GAppInfo *appinfo)
2939 {
2940   return TRUE;
2941 }
2942
2943 static gboolean
2944 g_desktop_app_info_remove_supports_type (GAppInfo    *appinfo,
2945                                          const char  *content_type,
2946                                          GError     **error)
2947 {
2948   GDesktopAppInfo *info = G_DESKTOP_APP_INFO (appinfo);
2949
2950   if (!g_desktop_app_info_ensure_saved (G_DESKTOP_APP_INFO (info), error))
2951     return FALSE;
2952
2953   return update_mimeapps_list (info->desktop_id, content_type,
2954                                UPDATE_MIME_REMOVE,
2955                                error);
2956 }
2957
2958 static const char **
2959 g_desktop_app_info_get_supported_types (GAppInfo *appinfo)
2960 {
2961   GDesktopAppInfo *info = G_DESKTOP_APP_INFO (appinfo);
2962
2963   return (const char**) info->mime_types;
2964 }
2965
2966 /* Saving and deleting {{{2 */
2967
2968 static gboolean
2969 g_desktop_app_info_ensure_saved (GDesktopAppInfo  *info,
2970                                  GError          **error)
2971 {
2972   GKeyFile *key_file;
2973   char *dirname;
2974   char *filename;
2975   char *data, *desktop_id;
2976   gsize data_size;
2977   int fd;
2978   gboolean res;
2979
2980   if (info->filename != NULL)
2981     return TRUE;
2982
2983   /* This is only used for object created with
2984    * g_app_info_create_from_commandline. All other
2985    * object should have a filename
2986    */
2987
2988   dirname = ensure_dir (APP_DIR, error);
2989   if (!dirname)
2990     return FALSE;
2991
2992   key_file = g_key_file_new ();
2993
2994   g_key_file_set_string (key_file, G_KEY_FILE_DESKTOP_GROUP,
2995                          "Encoding", "UTF-8");
2996   g_key_file_set_string (key_file, G_KEY_FILE_DESKTOP_GROUP,
2997                          G_KEY_FILE_DESKTOP_KEY_VERSION, "1.0");
2998   g_key_file_set_string (key_file, G_KEY_FILE_DESKTOP_GROUP,
2999                          G_KEY_FILE_DESKTOP_KEY_TYPE,
3000                          G_KEY_FILE_DESKTOP_TYPE_APPLICATION);
3001   if (info->terminal)
3002     g_key_file_set_boolean (key_file, G_KEY_FILE_DESKTOP_GROUP,
3003                             G_KEY_FILE_DESKTOP_KEY_TERMINAL, TRUE);
3004   if (info->nodisplay)
3005     g_key_file_set_boolean (key_file, G_KEY_FILE_DESKTOP_GROUP,
3006                             G_KEY_FILE_DESKTOP_KEY_NO_DISPLAY, TRUE);
3007
3008   g_key_file_set_string (key_file, G_KEY_FILE_DESKTOP_GROUP,
3009                          G_KEY_FILE_DESKTOP_KEY_EXEC, info->exec);
3010
3011   g_key_file_set_string (key_file, G_KEY_FILE_DESKTOP_GROUP,
3012                          G_KEY_FILE_DESKTOP_KEY_NAME, info->name);
3013
3014   if (info->generic_name != NULL)
3015     g_key_file_set_string (key_file, G_KEY_FILE_DESKTOP_GROUP,
3016                            GENERIC_NAME_KEY, info->generic_name);
3017
3018   if (info->fullname != NULL)
3019     g_key_file_set_string (key_file, G_KEY_FILE_DESKTOP_GROUP,
3020                            FULL_NAME_KEY, info->fullname);
3021
3022   g_key_file_set_string (key_file, G_KEY_FILE_DESKTOP_GROUP,
3023                          G_KEY_FILE_DESKTOP_KEY_COMMENT, info->comment);
3024
3025   g_key_file_set_boolean (key_file, G_KEY_FILE_DESKTOP_GROUP,
3026                           G_KEY_FILE_DESKTOP_KEY_NO_DISPLAY, TRUE);
3027
3028   data = g_key_file_to_data (key_file, &data_size, NULL);
3029   g_key_file_free (key_file);
3030
3031   desktop_id = g_strdup_printf ("userapp-%s-XXXXXX.desktop", info->name);
3032   filename = g_build_filename (dirname, desktop_id, NULL);
3033   g_free (desktop_id);
3034   g_free (dirname);
3035
3036   fd = g_mkstemp (filename);
3037   if (fd == -1)
3038     {
3039       char *display_name;
3040
3041       display_name = g_filename_display_name (filename);
3042       g_set_error (error, G_IO_ERROR, G_IO_ERROR_FAILED,
3043                    _("Can't create user desktop file %s"), display_name);
3044       g_free (display_name);
3045       g_free (filename);
3046       g_free (data);
3047       return FALSE;
3048     }
3049
3050   desktop_id = g_path_get_basename (filename);
3051
3052   /* FIXME - actually handle error */
3053   (void) g_close (fd, NULL);
3054
3055   res = g_file_set_contents (filename, data, data_size, error);
3056   g_free (data);
3057   if (!res)
3058     {
3059       g_free (desktop_id);
3060       g_free (filename);
3061       return FALSE;
3062     }
3063
3064   info->filename = filename;
3065   info->desktop_id = desktop_id;
3066
3067   run_update_command ("update-desktop-database", "applications");
3068
3069   /* We just dropped a file in the user's desktop file directory.  Save
3070    * the monitor the bother of having to notice it and invalidate
3071    * immediately.
3072    *
3073    * This means that calls directly following this will be able to see
3074    * the results immediately.
3075    */
3076   desktop_file_dirs_invalidate_user ();
3077
3078   return TRUE;
3079 }
3080
3081 static gboolean
3082 g_desktop_app_info_can_delete (GAppInfo *appinfo)
3083 {
3084   GDesktopAppInfo *info = G_DESKTOP_APP_INFO (appinfo);
3085
3086   if (info->filename)
3087     {
3088       if (strstr (info->filename, "/userapp-"))
3089         return g_access (info->filename, W_OK) == 0;
3090     }
3091
3092   return FALSE;
3093 }
3094
3095 static gboolean
3096 g_desktop_app_info_delete (GAppInfo *appinfo)
3097 {
3098   GDesktopAppInfo *info = G_DESKTOP_APP_INFO (appinfo);
3099
3100   if (info->filename)
3101     {
3102       if (g_remove (info->filename) == 0)
3103         {
3104           update_mimeapps_list (info->desktop_id, NULL,
3105                                 UPDATE_MIME_NONE,
3106                                 NULL);
3107
3108           g_free (info->filename);
3109           info->filename = NULL;
3110           g_free (info->desktop_id);
3111           info->desktop_id = NULL;
3112
3113           return TRUE;
3114         }
3115     }
3116
3117   return FALSE;
3118 }
3119
3120 /* Create for commandline {{{2 */
3121 /**
3122  * g_app_info_create_from_commandline:
3123  * @commandline: the commandline to use
3124  * @application_name: (allow-none): the application name, or %NULL to use @commandline
3125  * @flags: flags that can specify details of the created #GAppInfo
3126  * @error: a #GError location to store the error occurring, %NULL to ignore.
3127  *
3128  * Creates a new #GAppInfo from the given information.
3129  *
3130  * Note that for @commandline, the quoting rules of the Exec key of the
3131  * <ulink url="http://freedesktop.org/Standards/desktop-entry-spec">freedesktop.org Desktop
3132  * Entry Specification</ulink> are applied. For example, if the @commandline contains
3133  * percent-encoded URIs, the percent-character must be doubled in order to prevent it from
3134  * being swallowed by Exec key unquoting. See the specification for exact quoting rules.
3135  *
3136  * Returns: (transfer full): new #GAppInfo for given command.
3137  **/
3138 GAppInfo *
3139 g_app_info_create_from_commandline (const char           *commandline,
3140                                     const char           *application_name,
3141                                     GAppInfoCreateFlags   flags,
3142                                     GError              **error)
3143 {
3144   char **split;
3145   char *basename;
3146   GDesktopAppInfo *info;
3147
3148   g_return_val_if_fail (commandline, NULL);
3149
3150   info = g_object_new (G_TYPE_DESKTOP_APP_INFO, NULL);
3151
3152   info->filename = NULL;
3153   info->desktop_id = NULL;
3154
3155   info->terminal = (flags & G_APP_INFO_CREATE_NEEDS_TERMINAL) != 0;
3156   info->startup_notify = (flags & G_APP_INFO_CREATE_SUPPORTS_STARTUP_NOTIFICATION) != 0;
3157   info->hidden = FALSE;
3158   if ((flags & G_APP_INFO_CREATE_SUPPORTS_URIS) != 0)
3159     info->exec = g_strconcat (commandline, " %u", NULL);
3160   else
3161     info->exec = g_strconcat (commandline, " %f", NULL);
3162   info->nodisplay = TRUE;
3163   info->binary = binary_from_exec (info->exec);
3164
3165   if (application_name)
3166     info->name = g_strdup (application_name);
3167   else
3168     {
3169       /* FIXME: this should be more robust. Maybe g_shell_parse_argv and use argv[0] */
3170       split = g_strsplit (commandline, " ", 2);
3171       basename = split[0] ? g_path_get_basename (split[0]) : NULL;
3172       g_strfreev (split);
3173       info->name = basename;
3174       if (info->name == NULL)
3175         info->name = g_strdup ("custom");
3176     }
3177   info->comment = g_strdup_printf (_("Custom definition for %s"), info->name);
3178
3179   return G_APP_INFO (info);
3180 }
3181
3182 /* GAppInfo interface init */
3183
3184 static void
3185 g_desktop_app_info_iface_init (GAppInfoIface *iface)
3186 {
3187   iface->dup = g_desktop_app_info_dup;
3188   iface->equal = g_desktop_app_info_equal;
3189   iface->get_id = g_desktop_app_info_get_id;
3190   iface->get_name = g_desktop_app_info_get_name;
3191   iface->get_description = g_desktop_app_info_get_description;
3192   iface->get_executable = g_desktop_app_info_get_executable;
3193   iface->get_icon = g_desktop_app_info_get_icon;
3194   iface->launch = g_desktop_app_info_launch;
3195   iface->supports_uris = g_desktop_app_info_supports_uris;
3196   iface->supports_files = g_desktop_app_info_supports_files;
3197   iface->launch_uris = g_desktop_app_info_launch_uris;
3198   iface->should_show = g_desktop_app_info_should_show;
3199   iface->set_as_default_for_type = g_desktop_app_info_set_as_default_for_type;
3200   iface->set_as_default_for_extension = g_desktop_app_info_set_as_default_for_extension;
3201   iface->add_supports_type = g_desktop_app_info_add_supports_type;
3202   iface->can_remove_supports_type = g_desktop_app_info_can_remove_supports_type;
3203   iface->remove_supports_type = g_desktop_app_info_remove_supports_type;
3204   iface->can_delete = g_desktop_app_info_can_delete;
3205   iface->do_delete = g_desktop_app_info_delete;
3206   iface->get_commandline = g_desktop_app_info_get_commandline;
3207   iface->get_display_name = g_desktop_app_info_get_display_name;
3208   iface->set_as_last_used_for_type = g_desktop_app_info_set_as_last_used_for_type;
3209   iface->get_supported_types = g_desktop_app_info_get_supported_types;
3210 }
3211
3212 /* Recommended applications {{{2 */
3213
3214 static gboolean
3215 app_info_in_list (GAppInfo *info,
3216                   GList    *list)
3217 {
3218   while (list != NULL)
3219     {
3220       if (g_app_info_equal (info, list->data))
3221         return TRUE;
3222       list = list->next;
3223     }
3224   return FALSE;
3225 }
3226
3227 /**
3228  * g_app_info_get_recommended_for_type:
3229  * @content_type: the content type to find a #GAppInfo for
3230  *
3231  * Gets a list of recommended #GAppInfos for a given content type, i.e.
3232  * those applications which claim to support the given content type exactly,
3233  * and not by MIME type subclassing.
3234  * Note that the first application of the list is the last used one, i.e.
3235  * the last one for which g_app_info_set_as_last_used_for_type() has been
3236  * called.
3237  *
3238  * Returns: (element-type GAppInfo) (transfer full): #GList of #GAppInfos
3239  *     for given @content_type or %NULL on error.
3240  *
3241  * Since: 2.28
3242  **/
3243 GList *
3244 g_app_info_get_recommended_for_type (const gchar *content_type)
3245 {
3246   GList *desktop_entries, *l;
3247   GList *infos;
3248   GDesktopAppInfo *info;
3249
3250   g_return_val_if_fail (content_type != NULL, NULL);
3251
3252   desktop_entries = get_all_desktop_entries_for_mime_type (content_type, NULL, FALSE, NULL);
3253
3254   infos = NULL;
3255   for (l = desktop_entries; l != NULL; l = l->next)
3256     {
3257       char *desktop_entry = l->data;
3258
3259       info = g_desktop_app_info_new (desktop_entry);
3260       if (info)
3261         {
3262           if (app_info_in_list (G_APP_INFO (info), infos))
3263             g_object_unref (info);
3264           else
3265             infos = g_list_prepend (infos, info);
3266         }
3267       g_free (desktop_entry);
3268     }
3269
3270   g_list_free (desktop_entries);
3271
3272   return g_list_reverse (infos);
3273 }
3274
3275 /**
3276  * g_app_info_get_fallback_for_type:
3277  * @content_type: the content type to find a #GAppInfo for
3278  *
3279  * Gets a list of fallback #GAppInfos for a given content type, i.e.
3280  * those applications which claim to support the given content type
3281  * by MIME type subclassing and not directly.
3282  *
3283  * Returns: (element-type GAppInfo) (transfer full): #GList of #GAppInfos
3284  *     for given @content_type or %NULL on error.
3285  *
3286  * Since: 2.28
3287  **/
3288 GList *
3289 g_app_info_get_fallback_for_type (const gchar *content_type)
3290 {
3291   GList *desktop_entries, *l;
3292   GList *infos, *recommended_infos;
3293   GDesktopAppInfo *info;
3294
3295   g_return_val_if_fail (content_type != NULL, NULL);
3296
3297   desktop_entries = get_all_desktop_entries_for_mime_type (content_type, NULL, TRUE, NULL);
3298   recommended_infos = g_app_info_get_recommended_for_type (content_type);
3299
3300   infos = NULL;
3301   for (l = desktop_entries; l != NULL; l = l->next)
3302     {
3303       char *desktop_entry = l->data;
3304
3305       info = g_desktop_app_info_new (desktop_entry);
3306       if (info)
3307         {
3308           if (app_info_in_list (G_APP_INFO (info), infos) ||
3309               app_info_in_list (G_APP_INFO (info), recommended_infos))
3310             g_object_unref (info);
3311           else
3312             infos = g_list_prepend (infos, info);
3313         }
3314       g_free (desktop_entry);
3315     }
3316
3317   g_list_free (desktop_entries);
3318   g_list_free_full (recommended_infos, g_object_unref);
3319
3320   return g_list_reverse (infos);
3321 }
3322
3323 /**
3324  * g_app_info_get_all_for_type:
3325  * @content_type: the content type to find a #GAppInfo for
3326  *
3327  * Gets a list of all #GAppInfos for a given content type,
3328  * including the recommended and fallback #GAppInfos. See
3329  * g_app_info_get_recommended_for_type() and
3330  * g_app_info_get_fallback_for_type().
3331  *
3332  * Returns: (element-type GAppInfo) (transfer full): #GList of #GAppInfos
3333  *     for given @content_type or %NULL on error.
3334  **/
3335 GList *
3336 g_app_info_get_all_for_type (const char *content_type)
3337 {
3338   GList *desktop_entries, *l;
3339   GList *infos;
3340   char *user_default = NULL;
3341   GDesktopAppInfo *info;
3342
3343   g_return_val_if_fail (content_type != NULL, NULL);
3344
3345   desktop_entries = get_all_desktop_entries_for_mime_type (content_type, NULL, TRUE, &user_default);
3346   infos = NULL;
3347
3348   /* put the user default in front of the list, for compatibility */
3349   if (user_default != NULL)
3350     {
3351       info = g_desktop_app_info_new (user_default);
3352
3353       if (info != NULL)
3354         infos = g_list_prepend (infos, info);
3355     }
3356
3357   g_free (user_default);
3358
3359   for (l = desktop_entries; l != NULL; l = l->next)
3360     {
3361       char *desktop_entry = l->data;
3362
3363       info = g_desktop_app_info_new (desktop_entry);
3364       if (info)
3365         {
3366           if (app_info_in_list (G_APP_INFO (info), infos))
3367             g_object_unref (info);
3368           else
3369             infos = g_list_prepend (infos, info);
3370         }
3371       g_free (desktop_entry);
3372     }
3373
3374   g_list_free (desktop_entries);
3375
3376   return g_list_reverse (infos);
3377 }
3378
3379 /**
3380  * g_app_info_reset_type_associations:
3381  * @content_type: a content type
3382  *
3383  * Removes all changes to the type associations done by
3384  * g_app_info_set_as_default_for_type(),
3385  * g_app_info_set_as_default_for_extension(),
3386  * g_app_info_add_supports_type() or
3387  * g_app_info_remove_supports_type().
3388  *
3389  * Since: 2.20
3390  */
3391 void
3392 g_app_info_reset_type_associations (const char *content_type)
3393 {
3394   update_mimeapps_list (NULL, content_type,
3395                         UPDATE_MIME_NONE,
3396                         NULL);
3397 }
3398
3399 /**
3400  * g_app_info_get_default_for_type:
3401  * @content_type: the content type to find a #GAppInfo for
3402  * @must_support_uris: if %TRUE, the #GAppInfo is expected to
3403  *     support URIs
3404  *
3405  * Gets the default #GAppInfo for a given content type.
3406  *
3407  * Returns: (transfer full): #GAppInfo for given @content_type or
3408  *     %NULL on error.
3409  */
3410 GAppInfo *
3411 g_app_info_get_default_for_type (const char *content_type,
3412                                  gboolean    must_support_uris)
3413 {
3414   GList *desktop_entries, *l;
3415   char *user_default = NULL;
3416   GAppInfo *info;
3417
3418   g_return_val_if_fail (content_type != NULL, NULL);
3419
3420   desktop_entries = get_all_desktop_entries_for_mime_type (content_type, NULL, TRUE, &user_default);
3421
3422   info = NULL;
3423
3424   if (user_default != NULL)
3425     {
3426       info = (GAppInfo *) g_desktop_app_info_new (user_default);
3427
3428       if (info)
3429         {
3430           if (must_support_uris && !g_app_info_supports_uris (info))
3431             {
3432               g_object_unref (info);
3433               info = NULL;
3434             }
3435         }
3436     }
3437
3438   g_free (user_default);
3439
3440   if (info != NULL)
3441     {
3442       g_list_free_full (desktop_entries, g_free);
3443       return info;
3444     }
3445
3446   /* pick the first from the other list that matches our URI
3447    * requirements.
3448    */
3449   for (l = desktop_entries; l != NULL; l = l->next)
3450     {
3451       char *desktop_entry = l->data;
3452
3453       info = (GAppInfo *)g_desktop_app_info_new (desktop_entry);
3454       if (info)
3455         {
3456           if (must_support_uris && !g_app_info_supports_uris (info))
3457             {
3458               g_object_unref (info);
3459               info = NULL;
3460             }
3461           else
3462             break;
3463         }
3464     }
3465
3466   g_list_free_full (desktop_entries, g_free);
3467
3468   return info;
3469 }
3470
3471 /**
3472  * g_app_info_get_default_for_uri_scheme:
3473  * @uri_scheme: a string containing a URI scheme.
3474  *
3475  * Gets the default application for handling URIs with
3476  * the given URI scheme. A URI scheme is the initial part
3477  * of the URI, up to but not including the ':', e.g. "http",
3478  * "ftp" or "sip".
3479  *
3480  * Returns: (transfer full): #GAppInfo for given @uri_scheme or %NULL on error.
3481  */
3482 GAppInfo *
3483 g_app_info_get_default_for_uri_scheme (const char *uri_scheme)
3484 {
3485   GAppInfo *app_info;
3486   char *content_type, *scheme_down;
3487
3488   scheme_down = g_ascii_strdown (uri_scheme, -1);
3489   content_type = g_strdup_printf ("x-scheme-handler/%s", scheme_down);
3490   g_free (scheme_down);
3491   app_info = g_app_info_get_default_for_type (content_type, FALSE);
3492   g_free (content_type);
3493
3494   return app_info;
3495 }
3496
3497 /* "Get all" API {{{2 */
3498
3499 /**
3500  * g_desktop_app_info_search:
3501  * @search_string: the search string to use
3502  *
3503  * Searches desktop files for ones that match @search_string.
3504  *
3505  * The return value is an array of strvs.  Each strv contains a list of
3506  * applications that matched @search_string with an equal score.  The
3507  * outer list is sorted by score so that the first strv contains the
3508  * best-matching applications, and so on.
3509  *
3510  * Returns: (array zero-terminated=1) (element-type GStrv) (transfer full): a
3511  *   list of strvs.  Free each item with g_strfreev() and free the outer
3512  *   list with g_free().
3513  */
3514 gchar ***
3515 g_desktop_app_info_search (const gchar *search_string)
3516 {
3517   gchar **search_tokens;
3518   gint last_category = -1;
3519   gchar ***results;
3520   gint n_categories = 0;
3521   gint start_of_category;
3522   gint i, j;
3523
3524   search_tokens = g_str_tokenize_and_fold (search_string, NULL, NULL);
3525
3526   desktop_file_dirs_lock ();
3527
3528   reset_total_search_results ();
3529
3530   for (i = 0; i < n_desktop_file_dirs; i++)
3531     {
3532       for (j = 0; search_tokens[j]; j++)
3533         {
3534           desktop_file_dir_search (&desktop_file_dirs[i], search_tokens[j]);
3535           merge_token_results (j == 0);
3536         }
3537       merge_directory_results ();
3538     }
3539
3540   sort_total_search_results ();
3541
3542   /* Count the total number of unique categories */
3543   for (i = 0; i < static_total_results_size; i++)
3544     if (static_total_results[i].category != last_category)
3545       {
3546         last_category = static_total_results[i].category;
3547         n_categories++;
3548       }
3549
3550   results = g_new (gchar **, n_categories + 1);
3551
3552   /* Start loading into the results list */
3553   start_of_category = 0;
3554   for (i = 0; i < n_categories; i++)
3555     {
3556       gint n_items_in_category = 0;
3557       gint this_category;
3558       gint j;
3559
3560       this_category = static_total_results[start_of_category].category;
3561
3562       while (start_of_category + n_items_in_category < static_total_results_size &&
3563              static_total_results[start_of_category + n_items_in_category].category == this_category)
3564         n_items_in_category++;
3565
3566       results[i] = g_new (gchar *, n_items_in_category + 1);
3567       for (j = 0; j < n_items_in_category; j++)
3568         results[i][j] = g_strdup (static_total_results[start_of_category + j].app_name);
3569       results[i][j] = NULL;
3570
3571       start_of_category += n_items_in_category;
3572     }
3573   results[i] = NULL;
3574
3575   desktop_file_dirs_unlock ();
3576
3577   g_strfreev (search_tokens);
3578
3579   return results;
3580 }
3581
3582 /**
3583  * g_app_info_get_all:
3584  *
3585  * Gets a list of all of the applications currently registered
3586  * on this system.
3587  *
3588  * For desktop files, this includes applications that have
3589  * <literal>NoDisplay=true</literal> set or are excluded from
3590  * display by means of <literal>OnlyShowIn</literal> or
3591  * <literal>NotShowIn</literal>. See g_app_info_should_show().
3592  * The returned list does not include applications which have
3593  * the <literal>Hidden</literal> key set.
3594  *
3595  * Returns: (element-type GAppInfo) (transfer full): a newly allocated #GList of references to #GAppInfo<!---->s.
3596  **/
3597 GList *
3598 g_app_info_get_all (void)
3599 {
3600   GHashTable *apps;
3601   GHashTableIter iter;
3602   gpointer value;
3603   int i;
3604   GList *infos;
3605
3606   apps = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, NULL);
3607
3608   desktop_file_dirs_lock ();
3609
3610   for (i = 0; i < n_desktop_file_dirs; i++)
3611     desktop_file_dir_get_all (&desktop_file_dirs[i], apps);
3612
3613   desktop_file_dirs_unlock ();
3614
3615   infos = NULL;
3616   g_hash_table_iter_init (&iter, apps);
3617   while (g_hash_table_iter_next (&iter, NULL, &value))
3618     {
3619       if (value)
3620         infos = g_list_prepend (infos, value);
3621     }
3622
3623   g_hash_table_destroy (apps);
3624
3625   return infos;
3626 }
3627
3628 /* Caching of mimeinfo.cache and defaults.list files {{{2 */
3629
3630 typedef struct {
3631   char *path;
3632   GHashTable *mime_info_cache_map;
3633   GHashTable *defaults_list_map;
3634   GHashTable *mimeapps_list_added_map;
3635   GHashTable *mimeapps_list_removed_map;
3636   GHashTable *mimeapps_list_defaults_map;
3637   time_t mime_info_cache_timestamp;
3638   time_t defaults_list_timestamp;
3639   time_t mimeapps_list_timestamp;
3640 } MimeInfoCacheDir;
3641
3642 typedef struct {
3643   GList *dirs;                       /* mimeinfo.cache and defaults.list */
3644   time_t last_stat_time;
3645 } MimeInfoCache;
3646
3647 static MimeInfoCache *mime_info_cache = NULL;
3648 G_LOCK_DEFINE_STATIC (mime_info_cache);
3649
3650 static void mime_info_cache_dir_add_desktop_entries (MimeInfoCacheDir  *dir,
3651                                                      const char        *mime_type,
3652                                                      char             **new_desktop_file_ids);
3653
3654 static MimeInfoCache * mime_info_cache_new (void);
3655
3656 static void
3657 destroy_info_cache_value (gpointer  key,
3658                           GList    *value,
3659                           gpointer  data)
3660 {
3661   g_list_free_full (value, g_free);
3662 }
3663
3664 static void
3665 destroy_info_cache_map (GHashTable *info_cache_map)
3666 {
3667   g_hash_table_foreach (info_cache_map, (GHFunc)destroy_info_cache_value, NULL);
3668   g_hash_table_destroy (info_cache_map);
3669 }
3670
3671 static gboolean
3672 mime_info_cache_dir_out_of_date (MimeInfoCacheDir *dir,
3673                                  const char       *cache_file,
3674                                  time_t           *timestamp)
3675 {
3676   struct stat buf;
3677   char *filename;
3678
3679   filename = g_build_filename (dir->path, cache_file, NULL);
3680
3681   if (g_stat (filename, &buf) < 0)
3682     {
3683       g_free (filename);
3684       return TRUE;
3685     }
3686   g_free (filename);
3687
3688   if (buf.st_mtime != *timestamp)
3689     return TRUE;
3690
3691   return FALSE;
3692 }
3693
3694 /* Call with lock held */
3695 static void
3696 mime_info_cache_dir_init (MimeInfoCacheDir *dir)
3697 {
3698   GError *load_error;
3699   GKeyFile *key_file;
3700   gchar *filename, **mime_types;
3701   int i;
3702   struct stat buf;
3703
3704   load_error = NULL;
3705   mime_types = NULL;
3706
3707   if (dir->mime_info_cache_map != NULL &&
3708       !mime_info_cache_dir_out_of_date (dir, "mimeinfo.cache",
3709                                         &dir->mime_info_cache_timestamp))
3710     return;
3711
3712   if (dir->mime_info_cache_map != NULL)
3713     destroy_info_cache_map (dir->mime_info_cache_map);
3714
3715   dir->mime_info_cache_map = g_hash_table_new_full (g_str_hash, g_str_equal,
3716                                                     (GDestroyNotify) g_free,
3717                                                     NULL);
3718
3719   key_file = g_key_file_new ();
3720
3721   filename = g_build_filename (dir->path, "mimeinfo.cache", NULL);
3722
3723   if (g_stat (filename, &buf) < 0)
3724     goto error;
3725
3726   dir->mime_info_cache_timestamp = buf.st_mtime;
3727
3728   g_key_file_load_from_file (key_file, filename, G_KEY_FILE_NONE, &load_error);
3729
3730   g_free (filename);
3731   filename = NULL;
3732
3733   if (load_error != NULL)
3734     goto error;
3735
3736   mime_types = g_key_file_get_keys (key_file, MIME_CACHE_GROUP,
3737                                     NULL, &load_error);
3738
3739   if (load_error != NULL)
3740     goto error;
3741
3742   for (i = 0; mime_types[i] != NULL; i++)
3743     {
3744       gchar **desktop_file_ids;
3745       char *unaliased_type;
3746       desktop_file_ids = g_key_file_get_string_list (key_file,
3747                                                      MIME_CACHE_GROUP,
3748                                                      mime_types[i],
3749                                                      NULL,
3750                                                      NULL);
3751
3752       if (desktop_file_ids == NULL)
3753         continue;
3754
3755       unaliased_type = _g_unix_content_type_unalias (mime_types[i]);
3756       mime_info_cache_dir_add_desktop_entries (dir,
3757                                                unaliased_type,
3758                                                desktop_file_ids);
3759       g_free (unaliased_type);
3760
3761       g_strfreev (desktop_file_ids);
3762     }
3763
3764   g_strfreev (mime_types);
3765   g_key_file_free (key_file);
3766
3767   return;
3768  error:
3769   g_free (filename);
3770   g_key_file_free (key_file);
3771
3772   if (mime_types != NULL)
3773     g_strfreev (mime_types);
3774
3775   if (load_error)
3776     g_error_free (load_error);
3777 }
3778
3779 static void
3780 mime_info_cache_dir_init_defaults_list (MimeInfoCacheDir *dir)
3781 {
3782   GKeyFile *key_file;
3783   GError *load_error;
3784   gchar *filename, **mime_types;
3785   char *unaliased_type;
3786   char **desktop_file_ids;
3787   int i;
3788   struct stat buf;
3789
3790   load_error = NULL;
3791   mime_types = NULL;
3792
3793   if (dir->defaults_list_map != NULL &&
3794       !mime_info_cache_dir_out_of_date (dir, "defaults.list",
3795                                         &dir->defaults_list_timestamp))
3796     return;
3797
3798   if (dir->defaults_list_map != NULL)
3799     g_hash_table_destroy (dir->defaults_list_map);
3800   dir->defaults_list_map = g_hash_table_new_full (g_str_hash, g_str_equal,
3801                                                   g_free, (GDestroyNotify)g_strfreev);
3802
3803
3804   key_file = g_key_file_new ();
3805
3806   filename = g_build_filename (dir->path, "defaults.list", NULL);
3807   if (g_stat (filename, &buf) < 0)
3808     goto error;
3809
3810   dir->defaults_list_timestamp = buf.st_mtime;
3811
3812   g_key_file_load_from_file (key_file, filename, G_KEY_FILE_NONE, &load_error);
3813   g_free (filename);
3814   filename = NULL;
3815
3816   if (load_error != NULL)
3817     goto error;
3818
3819   mime_types = g_key_file_get_keys (key_file, DEFAULT_APPLICATIONS_GROUP,
3820                                     NULL, NULL);
3821   if (mime_types != NULL)
3822     {
3823       for (i = 0; mime_types[i] != NULL; i++)
3824         {
3825           desktop_file_ids = g_key_file_get_string_list (key_file,
3826                                                          DEFAULT_APPLICATIONS_GROUP,
3827                                                          mime_types[i],
3828                                                          NULL,
3829                                                          NULL);
3830           if (desktop_file_ids == NULL)
3831             continue;
3832
3833           unaliased_type = _g_unix_content_type_unalias (mime_types[i]);
3834           g_hash_table_replace (dir->defaults_list_map,
3835                                 unaliased_type,
3836                                 desktop_file_ids);
3837         }
3838
3839       g_strfreev (mime_types);
3840     }
3841
3842   g_key_file_free (key_file);
3843   return;
3844
3845  error:
3846   g_free (filename);
3847   g_key_file_free (key_file);
3848
3849   if (mime_types != NULL)
3850     g_strfreev (mime_types);
3851
3852   if (load_error)
3853     g_error_free (load_error);
3854 }
3855
3856 static void
3857 mime_info_cache_dir_init_mimeapps_list (MimeInfoCacheDir *dir)
3858 {
3859   GKeyFile *key_file;
3860   GError *load_error;
3861   gchar *filename, **mime_types;
3862   char *unaliased_type;
3863   char **desktop_file_ids;
3864   char *desktop_id;
3865   int i;
3866   struct stat buf;
3867
3868   load_error = NULL;
3869   mime_types = NULL;
3870
3871   if (dir->mimeapps_list_added_map != NULL &&
3872       !mime_info_cache_dir_out_of_date (dir, "mimeapps.list",
3873                                         &dir->mimeapps_list_timestamp))
3874     return;
3875
3876   if (dir->mimeapps_list_added_map != NULL)
3877     g_hash_table_destroy (dir->mimeapps_list_added_map);
3878   dir->mimeapps_list_added_map = g_hash_table_new_full (g_str_hash, g_str_equal,
3879                                                         g_free, (GDestroyNotify)g_strfreev);
3880
3881   if (dir->mimeapps_list_removed_map != NULL)
3882     g_hash_table_destroy (dir->mimeapps_list_removed_map);
3883   dir->mimeapps_list_removed_map = g_hash_table_new_full (g_str_hash, g_str_equal,
3884                                                           g_free, (GDestroyNotify)g_strfreev);
3885
3886   if (dir->mimeapps_list_defaults_map != NULL)
3887     g_hash_table_destroy (dir->mimeapps_list_defaults_map);
3888   dir->mimeapps_list_defaults_map = g_hash_table_new_full (g_str_hash, g_str_equal,
3889                                                            g_free, g_free);
3890
3891   key_file = g_key_file_new ();
3892
3893   filename = g_build_filename (dir->path, "mimeapps.list", NULL);
3894   if (g_stat (filename, &buf) < 0)
3895     goto error;
3896
3897   dir->mimeapps_list_timestamp = buf.st_mtime;
3898
3899   g_key_file_load_from_file (key_file, filename, G_KEY_FILE_NONE, &load_error);
3900   g_free (filename);
3901   filename = NULL;
3902
3903   if (load_error != NULL)
3904     goto error;
3905
3906   mime_types = g_key_file_get_keys (key_file, ADDED_ASSOCIATIONS_GROUP,
3907                                     NULL, NULL);
3908   if (mime_types != NULL)
3909     {
3910       for (i = 0; mime_types[i] != NULL; i++)
3911         {
3912           desktop_file_ids = g_key_file_get_string_list (key_file,
3913                                                          ADDED_ASSOCIATIONS_GROUP,
3914                                                          mime_types[i],
3915                                                          NULL,
3916                                                          NULL);
3917           if (desktop_file_ids == NULL)
3918             continue;
3919
3920           unaliased_type = _g_unix_content_type_unalias (mime_types[i]);
3921           g_hash_table_replace (dir->mimeapps_list_added_map,
3922                                 unaliased_type,
3923                                 desktop_file_ids);
3924         }
3925
3926       g_strfreev (mime_types);
3927     }
3928
3929   mime_types = g_key_file_get_keys (key_file, REMOVED_ASSOCIATIONS_GROUP,
3930                                     NULL, NULL);
3931   if (mime_types != NULL)
3932     {
3933       for (i = 0; mime_types[i] != NULL; i++)
3934         {
3935           desktop_file_ids = g_key_file_get_string_list (key_file,
3936                                                          REMOVED_ASSOCIATIONS_GROUP,
3937                                                          mime_types[i],
3938                                                          NULL,
3939                                                          NULL);
3940           if (desktop_file_ids == NULL)
3941             continue;
3942
3943           unaliased_type = _g_unix_content_type_unalias (mime_types[i]);
3944           g_hash_table_replace (dir->mimeapps_list_removed_map,
3945                                 unaliased_type,
3946                                 desktop_file_ids);
3947         }
3948
3949       g_strfreev (mime_types);
3950     }
3951
3952   mime_types = g_key_file_get_keys (key_file, DEFAULT_APPLICATIONS_GROUP,
3953                                     NULL, NULL);
3954   if (mime_types != NULL)
3955     {
3956       for (i = 0; mime_types[i] != NULL; i++)
3957         {
3958           desktop_id = g_key_file_get_string (key_file,
3959                                               DEFAULT_APPLICATIONS_GROUP,
3960                                               mime_types[i],
3961                                               NULL);
3962           if (desktop_id == NULL)
3963             continue;
3964
3965           unaliased_type = _g_unix_content_type_unalias (mime_types[i]);
3966           g_hash_table_replace (dir->mimeapps_list_defaults_map,
3967                                 unaliased_type,
3968                                 desktop_id);
3969         }
3970
3971       g_strfreev (mime_types);
3972     }
3973
3974   g_key_file_free (key_file);
3975   return;
3976
3977  error:
3978   g_free (filename);
3979   g_key_file_free (key_file);
3980
3981   if (mime_types != NULL)
3982     g_strfreev (mime_types);
3983
3984   if (load_error)
3985     g_error_free (load_error);
3986 }
3987
3988 static MimeInfoCacheDir *
3989 mime_info_cache_dir_new (const char *path)
3990 {
3991   MimeInfoCacheDir *dir;
3992
3993   dir = g_new0 (MimeInfoCacheDir, 1);
3994   dir->path = g_strdup (path);
3995
3996   return dir;
3997 }
3998
3999 static void
4000 mime_info_cache_dir_free (MimeInfoCacheDir *dir)
4001 {
4002   if (dir == NULL)
4003     return;
4004
4005   if (dir->mime_info_cache_map != NULL)
4006     {
4007       destroy_info_cache_map (dir->mime_info_cache_map);
4008       dir->mime_info_cache_map = NULL;
4009
4010   }
4011
4012   if (dir->defaults_list_map != NULL)
4013     {
4014       g_hash_table_destroy (dir->defaults_list_map);
4015       dir->defaults_list_map = NULL;
4016     }
4017
4018   if (dir->mimeapps_list_added_map != NULL)
4019     {
4020       g_hash_table_destroy (dir->mimeapps_list_added_map);
4021       dir->mimeapps_list_added_map = NULL;
4022     }
4023
4024   if (dir->mimeapps_list_removed_map != NULL)
4025     {
4026       g_hash_table_destroy (dir->mimeapps_list_removed_map);
4027       dir->mimeapps_list_removed_map = NULL;
4028     }
4029
4030   if (dir->mimeapps_list_defaults_map != NULL)
4031     {
4032       g_hash_table_destroy (dir->mimeapps_list_defaults_map);
4033       dir->mimeapps_list_defaults_map = NULL;
4034     }
4035
4036   g_free (dir);
4037 }
4038
4039 static void
4040 mime_info_cache_dir_add_desktop_entries (MimeInfoCacheDir  *dir,
4041                                          const char        *mime_type,
4042                                          char             **new_desktop_file_ids)
4043 {
4044   GList *desktop_file_ids;
4045   int i;
4046
4047   desktop_file_ids = g_hash_table_lookup (dir->mime_info_cache_map,
4048                                           mime_type);
4049
4050   for (i = 0; new_desktop_file_ids[i] != NULL; i++)
4051     {
4052       if (!g_list_find_custom (desktop_file_ids, new_desktop_file_ids[i], (GCompareFunc) strcmp))
4053         desktop_file_ids = g_list_append (desktop_file_ids,
4054                                           g_strdup (new_desktop_file_ids[i]));
4055     }
4056
4057   g_hash_table_insert (dir->mime_info_cache_map, g_strdup (mime_type), desktop_file_ids);
4058 }
4059
4060 static void
4061 mime_info_cache_init_dir_lists (void)
4062 {
4063   int i;
4064
4065   mime_info_cache = mime_info_cache_new ();
4066
4067   desktop_file_dirs_refresh ();
4068
4069   for (i = 0; i < n_desktop_file_dirs; i++)
4070     {
4071       MimeInfoCacheDir *dir;
4072
4073       dir = mime_info_cache_dir_new (desktop_file_dirs[i].path);
4074
4075       if (dir != NULL)
4076         {
4077           mime_info_cache_dir_init (dir);
4078           mime_info_cache_dir_init_defaults_list (dir);
4079           mime_info_cache_dir_init_mimeapps_list (dir);
4080
4081           mime_info_cache->dirs = g_list_append (mime_info_cache->dirs, dir);
4082         }
4083     }
4084 }
4085
4086 static void
4087 mime_info_cache_update_dir_lists (void)
4088 {
4089   GList *tmp;
4090
4091   tmp = mime_info_cache->dirs;
4092
4093   while (tmp != NULL)
4094     {
4095       MimeInfoCacheDir *dir = (MimeInfoCacheDir *) tmp->data;
4096
4097       /* No need to do this if we had file monitors... */
4098       mime_info_cache_dir_init (dir);
4099       mime_info_cache_dir_init_defaults_list (dir);
4100       mime_info_cache_dir_init_mimeapps_list (dir);
4101
4102       tmp = tmp->next;
4103     }
4104 }
4105
4106 static void
4107 mime_info_cache_init (void)
4108 {
4109   G_LOCK (mime_info_cache);
4110   if (mime_info_cache == NULL)
4111     mime_info_cache_init_dir_lists ();
4112   else
4113     {
4114       time_t now;
4115
4116       time (&now);
4117       if (now >= mime_info_cache->last_stat_time + 10)
4118         {
4119           mime_info_cache_update_dir_lists ();
4120           mime_info_cache->last_stat_time = now;
4121         }
4122     }
4123
4124   G_UNLOCK (mime_info_cache);
4125 }
4126
4127 static MimeInfoCache *
4128 mime_info_cache_new (void)
4129 {
4130   MimeInfoCache *cache;
4131
4132   cache = g_new0 (MimeInfoCache, 1);
4133
4134   return cache;
4135 }
4136
4137 static void
4138 mime_info_cache_free (MimeInfoCache *cache)
4139 {
4140   if (cache == NULL)
4141     return;
4142
4143   g_list_free_full (cache->dirs, (GDestroyNotify) mime_info_cache_dir_free);
4144   g_free (cache);
4145 }
4146
4147 /**
4148  * mime_info_cache_reload:
4149  * @dir: directory path which needs reloading.
4150  *
4151  * Reload the mime information for the @dir.
4152  */
4153 static void
4154 mime_info_cache_reload (const char *dir)
4155 {
4156   /* FIXME: just reload the dir that needs reloading,
4157    * don't blow the whole cache
4158    */
4159   if (mime_info_cache != NULL)
4160     {
4161       G_LOCK (mime_info_cache);
4162       mime_info_cache_free (mime_info_cache);
4163       mime_info_cache = NULL;
4164       G_UNLOCK (mime_info_cache);
4165     }
4166 }
4167
4168 static GList *
4169 append_desktop_entry (GList      *list,
4170                       const char *desktop_entry,
4171                       GList      *removed_entries)
4172 {
4173   /* Add if not already in list, and valid */
4174   if (!g_list_find_custom (list, desktop_entry, (GCompareFunc) strcmp) &&
4175       !g_list_find_custom (removed_entries, desktop_entry, (GCompareFunc) strcmp))
4176     list = g_list_prepend (list, g_strdup (desktop_entry));
4177
4178   return list;
4179 }
4180
4181 /**
4182  * get_all_desktop_entries_for_mime_type:
4183  * @mime_type: a mime type.
4184  * @except: NULL or a strv list
4185  *
4186  * Returns all the desktop ids for @mime_type. The desktop files
4187  * are listed in an order so that default applications are listed before
4188  * non-default ones, and handlers for inherited mimetypes are listed
4189  * after the base ones.
4190  *
4191  * Optionally doesn't list the desktop ids given in the @except
4192  *
4193  * Return value: a #GList containing the desktop ids which claim
4194  *    to handle @mime_type.
4195  */
4196 static GList *
4197 get_all_desktop_entries_for_mime_type (const char  *base_mime_type,
4198                                        const char **except,
4199                                        gboolean     include_fallback,
4200                                        char       **explicit_default)
4201 {
4202   GList *desktop_entries, *removed_entries, *list, *dir_list, *tmp;
4203   MimeInfoCacheDir *dir;
4204   char *mime_type, *default_entry = NULL;
4205   char *old_default_entry = NULL;
4206   const char *entry;
4207   char **mime_types;
4208   char **default_entries;
4209   char **removed_associations;
4210   gboolean already_found_handler;
4211   int i, j, k;
4212   GPtrArray *array;
4213   char **anc;
4214
4215   mime_info_cache_init ();
4216
4217   if (include_fallback)
4218     {
4219       /* collect all ancestors */
4220       mime_types = _g_unix_content_type_get_parents (base_mime_type);
4221       array = g_ptr_array_new ();
4222       for (i = 0; mime_types[i]; i++)
4223         g_ptr_array_add (array, mime_types[i]);
4224       g_free (mime_types);
4225       for (i = 0; i < array->len; i++)
4226         {
4227           anc = _g_unix_content_type_get_parents (g_ptr_array_index (array, i));
4228           for (j = 0; anc[j]; j++)
4229             {
4230               for (k = 0; k < array->len; k++)
4231                 {
4232                   if (strcmp (anc[j], g_ptr_array_index (array, k)) == 0)
4233                     break;
4234                 }
4235               if (k == array->len) /* not found */
4236                 g_ptr_array_add (array, g_strdup (anc[j]));
4237             }
4238           g_strfreev (anc);
4239         }
4240       g_ptr_array_add (array, NULL);
4241       mime_types = (char **)g_ptr_array_free (array, FALSE);
4242     }
4243   else
4244     {
4245       mime_types = g_malloc0 (2 * sizeof (gchar *));
4246       mime_types[0] = g_strdup (base_mime_type);
4247       mime_types[1] = NULL;
4248     }
4249
4250   G_LOCK (mime_info_cache);
4251
4252   removed_entries = NULL;
4253   desktop_entries = NULL;
4254
4255   for (i = 0; except != NULL && except[i] != NULL; i++)
4256     removed_entries = g_list_prepend (removed_entries, g_strdup (except[i]));
4257
4258   for (i = 0; mime_types[i] != NULL; i++)
4259     {
4260       mime_type = mime_types[i];
4261
4262       /* This is true if we already found a handler for a more specific
4263          mimetype. If its set we ignore any defaults for the less specific
4264          mimetypes. */
4265       already_found_handler = (desktop_entries != NULL);
4266
4267       /* Go through all apps listed in user and system dirs */
4268       for (dir_list = mime_info_cache->dirs;
4269            dir_list != NULL;
4270            dir_list = dir_list->next)
4271         {
4272           dir = dir_list->data;
4273
4274           /* Pick the explicit default application if we got no result earlier
4275            * (ie, for more specific mime types)
4276            */
4277           if (!already_found_handler)
4278             {
4279               entry = g_hash_table_lookup (dir->mimeapps_list_defaults_map, mime_type);
4280
4281               if (entry != NULL)
4282                 {
4283                   /* Save the default entry if it's the first one we encounter */
4284                   if (default_entry == NULL)
4285                     default_entry = g_strdup (entry);
4286                 }
4287             }
4288
4289           /* Then added associations from mimeapps.list */
4290           default_entries = g_hash_table_lookup (dir->mimeapps_list_added_map, mime_type);
4291           for (j = 0; default_entries != NULL && default_entries[j] != NULL; j++)
4292             desktop_entries = append_desktop_entry (desktop_entries, default_entries[j], removed_entries);
4293
4294           /* Then removed associations from mimeapps.list */
4295           removed_associations = g_hash_table_lookup (dir->mimeapps_list_removed_map, mime_type);
4296           for (j = 0; removed_associations != NULL && removed_associations[j] != NULL; j++)
4297             removed_entries = append_desktop_entry (removed_entries, removed_associations[j], NULL);
4298
4299           /* Then system defaults (or old per-user config) (using removed associations from this dir or earlier) */
4300           default_entries = g_hash_table_lookup (dir->defaults_list_map, mime_type);
4301           for (j = 0; default_entries != NULL && default_entries[j] != NULL; j++)
4302             {
4303               if (default_entry == NULL && old_default_entry == NULL && !already_found_handler)
4304                 old_default_entry = g_strdup (default_entries[j]);
4305
4306               desktop_entries = append_desktop_entry (desktop_entries, default_entries[j], removed_entries);
4307             }
4308         }
4309
4310       /* Go through all entries that support the mimetype */
4311       for (dir_list = mime_info_cache->dirs;
4312            dir_list != NULL;
4313            dir_list = dir_list->next)
4314         {
4315           dir = dir_list->data;
4316
4317           list = g_hash_table_lookup (dir->mime_info_cache_map, mime_type);
4318           for (tmp = list; tmp != NULL; tmp = tmp->next)
4319             desktop_entries = append_desktop_entry (desktop_entries, tmp->data, removed_entries);
4320         }
4321     }
4322
4323   G_UNLOCK (mime_info_cache);
4324
4325   g_strfreev (mime_types);
4326
4327   /* If we have no default from mimeapps.list, take it from
4328    * defaults.list intead.
4329    *
4330    * If we do have a default from mimeapps.list, free any one that came
4331    * from defaults.list.
4332    */
4333   if (default_entry == NULL)
4334     default_entry = old_default_entry;
4335   else
4336     g_free (old_default_entry);
4337
4338   if (explicit_default != NULL)
4339     *explicit_default = default_entry;
4340   else
4341     g_free (default_entry);
4342
4343   g_list_free_full (removed_entries, g_free);
4344
4345   desktop_entries = g_list_reverse (desktop_entries);
4346
4347   return desktop_entries;
4348 }
4349
4350 /* GDesktopAppInfoLookup interface {{{2 */
4351
4352 G_GNUC_BEGIN_IGNORE_DEPRECATIONS
4353
4354 typedef GDesktopAppInfoLookupIface GDesktopAppInfoLookupInterface;
4355 G_DEFINE_INTERFACE (GDesktopAppInfoLookup, g_desktop_app_info_lookup, G_TYPE_OBJECT)
4356
4357 static void
4358 g_desktop_app_info_lookup_default_init (GDesktopAppInfoLookupInterface *iface)
4359 {
4360 }
4361
4362 /* "Get for mime type" APIs {{{2 */
4363
4364 /**
4365  * g_desktop_app_info_lookup_get_default_for_uri_scheme:
4366  * @lookup: a #GDesktopAppInfoLookup
4367  * @uri_scheme: a string containing a URI scheme.
4368  *
4369  * Gets the default application for launching applications
4370  * using this URI scheme for a particular GDesktopAppInfoLookup
4371  * implementation.
4372  *
4373  * The GDesktopAppInfoLookup interface and this function is used
4374  * to implement g_app_info_get_default_for_uri_scheme() backends
4375  * in a GIO module. There is no reason for applications to use it
4376  * directly. Applications should use g_app_info_get_default_for_uri_scheme().
4377  *
4378  * Returns: (transfer full): #GAppInfo for given @uri_scheme or %NULL on error.
4379  *
4380  * Deprecated: The #GDesktopAppInfoLookup interface is deprecated and unused by gio.
4381  */
4382 GAppInfo *
4383 g_desktop_app_info_lookup_get_default_for_uri_scheme (GDesktopAppInfoLookup *lookup,
4384                                                       const char            *uri_scheme)
4385 {
4386   GDesktopAppInfoLookupIface *iface;
4387
4388   g_return_val_if_fail (G_IS_DESKTOP_APP_INFO_LOOKUP (lookup), NULL);
4389
4390   iface = G_DESKTOP_APP_INFO_LOOKUP_GET_IFACE (lookup);
4391
4392   return (* iface->get_default_for_uri_scheme) (lookup, uri_scheme);
4393 }
4394
4395 G_GNUC_END_IGNORE_DEPRECATIONS
4396
4397 /* Misc getter APIs {{{2 */
4398
4399 /**
4400  * g_desktop_app_info_get_startup_wm_class:
4401  * @info: a #GDesktopAppInfo that supports startup notify
4402  *
4403  * Retrieves the StartupWMClass field from @info. This represents the
4404  * WM_CLASS property of the main window of the application, if launched
4405  * through @info.
4406  *
4407  * Returns: (transfer none): the startup WM class, or %NULL if none is set
4408  * in the desktop file.
4409  *
4410  * Since: 2.34
4411  */
4412 const char *
4413 g_desktop_app_info_get_startup_wm_class (GDesktopAppInfo *info)
4414 {
4415   g_return_val_if_fail (G_IS_DESKTOP_APP_INFO (info), NULL);
4416
4417   return info->startup_wm_class;
4418 }
4419
4420 /**
4421  * g_desktop_app_info_get_string:
4422  * @info: a #GDesktopAppInfo
4423  * @key: the key to look up
4424  *
4425  * Looks up a string value in the keyfile backing @info.
4426  *
4427  * The @key is looked up in the "Desktop Entry" group.
4428  *
4429  * Returns: a newly allocated string, or %NULL if the key
4430  *     is not found
4431  *
4432  * Since: 2.36
4433  */
4434 char *
4435 g_desktop_app_info_get_string (GDesktopAppInfo *info,
4436                                const char      *key)
4437 {
4438   g_return_val_if_fail (G_IS_DESKTOP_APP_INFO (info), NULL);
4439
4440   return g_key_file_get_string (info->keyfile,
4441                                 G_KEY_FILE_DESKTOP_GROUP, key, NULL);
4442 }
4443
4444 /**
4445  * g_desktop_app_info_get_boolean:
4446  * @info: a #GDesktopAppInfo
4447  * @key: the key to look up
4448  *
4449  * Looks up a boolean value in the keyfile backing @info.
4450  *
4451  * The @key is looked up in the "Desktop Entry" group.
4452  *
4453  * Returns: the boolean value, or %FALSE if the key
4454  *     is not found
4455  *
4456  * Since: 2.36
4457  */
4458 gboolean
4459 g_desktop_app_info_get_boolean (GDesktopAppInfo *info,
4460                                 const char      *key)
4461 {
4462   g_return_val_if_fail (G_IS_DESKTOP_APP_INFO (info), FALSE);
4463
4464   return g_key_file_get_boolean (info->keyfile,
4465                                  G_KEY_FILE_DESKTOP_GROUP, key, NULL);
4466 }
4467
4468 /**
4469  * g_desktop_app_info_has_key:
4470  * @info: a #GDesktopAppInfo
4471  * @key: the key to look up
4472  *
4473  * Returns whether @key exists in the "Desktop Entry" group
4474  * of the keyfile backing @info.
4475  *
4476  * Returns: %TRUE if the @key exists
4477  *
4478  * Since: 2.26
4479  */
4480 gboolean
4481 g_desktop_app_info_has_key (GDesktopAppInfo *info,
4482                             const char      *key)
4483 {
4484   g_return_val_if_fail (G_IS_DESKTOP_APP_INFO (info), FALSE);
4485
4486   return g_key_file_has_key (info->keyfile,
4487                              G_KEY_FILE_DESKTOP_GROUP, key, NULL);
4488 }
4489
4490 /* Desktop actions support {{{2 */
4491
4492 /**
4493  * g_desktop_app_info_list_actions:
4494  * @info: a #GDesktopAppInfo
4495  *
4496  * Returns the list of "additional application actions" supported on the
4497  * desktop file, as per the desktop file specification.
4498  *
4499  * As per the specification, this is the list of actions that are
4500  * explicitly listed in the "Actions" key of the [Desktop Entry] group.
4501  *
4502  * Returns: (array zero-terminated=1) (element-type utf8) (transfer none): a list of strings, always non-%NULL
4503  *
4504  * Since: 2.38
4505  **/
4506 const gchar * const *
4507 g_desktop_app_info_list_actions (GDesktopAppInfo *info)
4508 {
4509   g_return_val_if_fail (G_IS_DESKTOP_APP_INFO (info), NULL);
4510
4511   return (const gchar **) info->actions;
4512 }
4513
4514 static gboolean
4515 app_info_has_action (GDesktopAppInfo *info,
4516                      const gchar     *action_name)
4517 {
4518   gint i;
4519
4520   for (i = 0; info->actions[i]; i++)
4521     if (g_str_equal (info->actions[i], action_name))
4522       return TRUE;
4523
4524   return FALSE;
4525 }
4526
4527 /**
4528  * g_desktop_app_info_get_action_name:
4529  * @info: a #GDesktopAppInfo
4530  * @action_name: the name of the action as from
4531  *   g_desktop_app_info_list_actions()
4532  *
4533  * Gets the user-visible display name of the "additional application
4534  * action" specified by @action_name.
4535  *
4536  * This corresponds to the "Name" key within the keyfile group for the
4537  * action.
4538  *
4539  * Returns: (transfer full): the locale-specific action name
4540  *
4541  * Since: 2.38
4542  */
4543 gchar *
4544 g_desktop_app_info_get_action_name (GDesktopAppInfo *info,
4545                                     const gchar     *action_name)
4546 {
4547   gchar *group_name;
4548   gchar *result;
4549
4550   g_return_val_if_fail (G_IS_DESKTOP_APP_INFO (info), NULL);
4551   g_return_val_if_fail (action_name != NULL, NULL);
4552   g_return_val_if_fail (app_info_has_action (info, action_name), NULL);
4553
4554   group_name = g_strdup_printf ("Desktop Action %s", action_name);
4555   result = g_key_file_get_locale_string (info->keyfile, group_name, "Name", NULL, NULL);
4556   g_free (group_name);
4557
4558   /* The spec says that the Name field must be given.
4559    *
4560    * If it's not, let's follow the behaviour of our get_name()
4561    * implementation above and never return %NULL.
4562    */
4563   if (result == NULL)
4564     result = g_strdup (_("Unnamed"));
4565
4566   return result;
4567 }
4568
4569 /**
4570  * g_desktop_app_info_launch_action:
4571  * @info: a #GDesktopAppInfo
4572  * @action_name: the name of the action as from
4573  *   g_desktop_app_info_list_actions()
4574  * @launch_context: (allow-none): a #GAppLaunchContext
4575  *
4576  * Activates the named application action.
4577  *
4578  * You may only call this function on action names that were
4579  * returned from g_desktop_app_info_list_actions().
4580  *
4581  * Note that if the main entry of the desktop file indicates that the
4582  * application supports startup notification, and @launch_context is
4583  * non-%NULL, then startup notification will be used when activating the
4584  * action (and as such, invocation of the action on the receiving side
4585  * must signal the end of startup notification when it is completed).
4586  * This is the expected behaviour of applications declaring additional
4587  * actions, as per the desktop file specification.
4588  *
4589  * As with g_app_info_launch() there is no way to detect failures that
4590  * occur while using this function.
4591  *
4592  * Since: 2.38
4593  */
4594 void
4595 g_desktop_app_info_launch_action (GDesktopAppInfo   *info,
4596                                   const gchar       *action_name,
4597                                   GAppLaunchContext *launch_context)
4598 {
4599   GDBusConnection *session_bus;
4600
4601   g_return_if_fail (G_IS_DESKTOP_APP_INFO (info));
4602   g_return_if_fail (action_name != NULL);
4603   g_return_if_fail (app_info_has_action (info, action_name));
4604
4605   session_bus = g_bus_get_sync (G_BUS_TYPE_SESSION, NULL, NULL);
4606
4607   if (session_bus && info->app_id)
4608     {
4609       gchar *object_path;
4610
4611       object_path = object_path_from_appid (info->app_id);
4612       g_dbus_connection_call (session_bus, info->app_id, object_path,
4613                               "org.freedesktop.Application", "ActivateAction",
4614                               g_variant_new ("(sav@a{sv})", action_name, NULL,
4615                                              g_desktop_app_info_make_platform_data (info, NULL, launch_context)),
4616                               NULL, G_DBUS_CALL_FLAGS_NONE, -1, NULL, NULL, NULL);
4617       g_free (object_path);
4618     }
4619   else
4620     {
4621       gchar *group_name;
4622       gchar *exec_line;
4623
4624       group_name = g_strdup_printf ("Desktop Action %s", action_name);
4625       exec_line = g_key_file_get_string (info->keyfile, group_name, "Exec", NULL);
4626       g_free (group_name);
4627
4628       if (exec_line)
4629         g_desktop_app_info_launch_uris_with_spawn (info, session_bus, exec_line, NULL, launch_context,
4630                                                    _SPAWN_FLAGS_DEFAULT, NULL, NULL, NULL, NULL, NULL);
4631     }
4632
4633   if (session_bus != NULL)
4634     {
4635       g_dbus_connection_flush (session_bus, NULL, NULL, NULL);
4636       g_object_unref (session_bus);
4637     }
4638 }
4639 /* Epilogue {{{1 */
4640
4641 /* vim:set foldmethod=marker: */