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