Imported Upstream version 2.67.3
[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           gsize 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   guint 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   guint 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: (nullable) (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: (nullable): 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 desktop file.
2221  *
2222  * Returns: (nullable): 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       gsize j;
2775       const gchar * const wrapper_argv[] =
2776         {
2777           "/bin/sh",
2778           "-e",
2779           "-u",
2780           "-c", "export GIO_LAUNCHED_DESKTOP_FILE_PID=$$; exec \"$@\"",
2781           "sh",  /* argv[0] for sh */
2782         };
2783
2784       old_uris = dup_uris;
2785       if (!expand_application_parameters (info, exec_line, &dup_uris, &argc, &argv, error))
2786         goto out;
2787
2788       /* Get the subset of URIs we're launching with this process */
2789       launched_uris = NULL;
2790       for (iter = old_uris; iter != NULL && iter != dup_uris; iter = iter->next)
2791         launched_uris = g_list_prepend (launched_uris, iter->data);
2792       launched_uris = g_list_reverse (launched_uris);
2793
2794       if (info->terminal && !prepend_terminal_to_vector (&argc, &argv))
2795         {
2796           g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_FAILED,
2797                                _("Unable to find terminal required for application"));
2798           goto out;
2799         }
2800
2801       if (info->filename)
2802         envp = g_environ_setenv (envp,
2803                                  "GIO_LAUNCHED_DESKTOP_FILE",
2804                                  info->filename,
2805                                  TRUE);
2806
2807       sn_id = NULL;
2808       if (launch_context)
2809         {
2810           GList *launched_files = create_files_for_uris (launched_uris);
2811
2812           if (info->startup_notify)
2813             {
2814               sn_id = g_app_launch_context_get_startup_notify_id (launch_context,
2815                                                                   G_APP_INFO (info),
2816                                                                   launched_files);
2817               if (sn_id)
2818                 envp = g_environ_setenv (envp, "DESKTOP_STARTUP_ID", sn_id, TRUE);
2819             }
2820
2821           g_list_free_full (launched_files, g_object_unref);
2822         }
2823
2824       /* Wrap the @argv in a command which will set the
2825        * `GIO_LAUNCHED_DESKTOP_FILE_PID` environment variable. We can’t set this
2826        * in @envp along with `GIO_LAUNCHED_DESKTOP_FILE` because we need to know
2827        * the PID of the new forked process. We can’t use setenv() between fork()
2828        * and exec() because we’d rather use posix_spawn() for speed.
2829        *
2830        * `sh` should be available on all the platforms that `GDesktopAppInfo`
2831        * currently supports (since they are all POSIX). If additional platforms
2832        * need to be supported in future, it will probably have to be replaced
2833        * with a wrapper program (grep the GLib git history for
2834        * `gio-launch-desktop` for an example of this which could be
2835        * resurrected). */
2836       wrapped_argv = g_new (char *, argc + G_N_ELEMENTS (wrapper_argv) + 1);
2837
2838       for (j = 0; j < G_N_ELEMENTS (wrapper_argv); j++)
2839         wrapped_argv[j] = g_strdup (wrapper_argv[j]);
2840       for (i = 0; i < argc; i++)
2841         wrapped_argv[i + G_N_ELEMENTS (wrapper_argv)] = g_steal_pointer (&argv[i]);
2842
2843       wrapped_argv[i + G_N_ELEMENTS (wrapper_argv)] = NULL;
2844       g_free (argv);
2845       argv = NULL;
2846
2847       if (!g_spawn_async_with_fds (info->path,
2848                                    wrapped_argv,
2849                                    envp,
2850                                    spawn_flags,
2851                                    user_setup,
2852                                    user_setup_data,
2853                                    &pid,
2854                                    stdin_fd,
2855                                    stdout_fd,
2856                                    stderr_fd,
2857                                    error))
2858         {
2859           if (sn_id)
2860             g_app_launch_context_launch_failed (launch_context, sn_id);
2861
2862           g_free (sn_id);
2863           g_list_free (launched_uris);
2864
2865           goto out;
2866         }
2867
2868       if (pid_callback != NULL)
2869         pid_callback (info, pid, pid_callback_data);
2870
2871       if (launch_context != NULL)
2872         {
2873           GVariantBuilder builder;
2874           GVariant *platform_data;
2875
2876           g_variant_builder_init (&builder, G_VARIANT_TYPE_ARRAY);
2877           g_variant_builder_add (&builder, "{sv}", "pid", g_variant_new_int32 (pid));
2878           if (sn_id)
2879             g_variant_builder_add (&builder, "{sv}", "startup-notification-id", g_variant_new_string (sn_id));
2880           platform_data = g_variant_ref_sink (g_variant_builder_end (&builder));
2881           g_signal_emit_by_name (launch_context, "launched", info, platform_data);
2882           g_variant_unref (platform_data);
2883         }
2884
2885       notify_desktop_launch (session_bus,
2886                              info,
2887                              pid,
2888                              NULL,
2889                              sn_id,
2890                              launched_uris);
2891
2892       g_free (sn_id);
2893       g_list_free (launched_uris);
2894
2895       g_strfreev (wrapped_argv);
2896       wrapped_argv = NULL;
2897     }
2898   while (dup_uris != NULL);
2899
2900   completed = TRUE;
2901
2902  out:
2903   g_strfreev (argv);
2904   g_strfreev (envp);
2905
2906   return completed;
2907 }
2908
2909 static gchar *
2910 object_path_from_appid (const gchar *appid)
2911 {
2912   gchar *appid_path, *iter;
2913
2914   appid_path = g_strconcat ("/", appid, NULL);
2915   for (iter = appid_path; *iter; iter++)
2916     {
2917       if (*iter == '.')
2918         *iter = '/';
2919
2920       if (*iter == '-')
2921         *iter = '_';
2922     }
2923
2924   return appid_path;
2925 }
2926
2927 static GVariant *
2928 g_desktop_app_info_make_platform_data (GDesktopAppInfo   *info,
2929                                        GList             *uris,
2930                                        GAppLaunchContext *launch_context)
2931 {
2932   GVariantBuilder builder;
2933
2934   g_variant_builder_init (&builder, G_VARIANT_TYPE_VARDICT);
2935
2936   if (launch_context)
2937     {
2938       GList *launched_files = create_files_for_uris (uris);
2939
2940       if (info->startup_notify)
2941         {
2942           gchar *sn_id;
2943
2944           sn_id = g_app_launch_context_get_startup_notify_id (launch_context, G_APP_INFO (info), launched_files);
2945           if (sn_id)
2946             g_variant_builder_add (&builder, "{sv}", "desktop-startup-id", g_variant_new_take_string (sn_id));
2947         }
2948
2949       g_list_free_full (launched_files, g_object_unref);
2950     }
2951
2952   return g_variant_builder_end (&builder);
2953 }
2954
2955 static void
2956 launch_uris_with_dbus (GDesktopAppInfo    *info,
2957                        GDBusConnection    *session_bus,
2958                        GList              *uris,
2959                        GAppLaunchContext  *launch_context,
2960                        GCancellable       *cancellable,
2961                        GAsyncReadyCallback callback,
2962                        gpointer            user_data)
2963 {
2964   GVariantBuilder builder;
2965   gchar *object_path;
2966
2967   g_variant_builder_init (&builder, G_VARIANT_TYPE_TUPLE);
2968
2969   if (uris)
2970     {
2971       GList *iter;
2972
2973       g_variant_builder_open (&builder, G_VARIANT_TYPE_STRING_ARRAY);
2974       for (iter = uris; iter; iter = iter->next)
2975         g_variant_builder_add (&builder, "s", iter->data);
2976       g_variant_builder_close (&builder);
2977     }
2978
2979   g_variant_builder_add_value (&builder, g_desktop_app_info_make_platform_data (info, uris, launch_context));
2980
2981   object_path = object_path_from_appid (info->app_id);
2982   g_dbus_connection_call (session_bus, info->app_id, object_path, "org.freedesktop.Application",
2983                           uris ? "Open" : "Activate", g_variant_builder_end (&builder),
2984                           NULL, G_DBUS_CALL_FLAGS_NONE, -1,
2985                           cancellable, callback, user_data);
2986   g_free (object_path);
2987 }
2988
2989 static gboolean
2990 g_desktop_app_info_launch_uris_with_dbus (GDesktopAppInfo    *info,
2991                                           GDBusConnection    *session_bus,
2992                                           GList              *uris,
2993                                           GAppLaunchContext  *launch_context,
2994                                           GCancellable       *cancellable,
2995                                           GAsyncReadyCallback callback,
2996                                           gpointer            user_data)
2997 {
2998   GList *ruris = uris;
2999   char *app_id = NULL;
3000
3001   g_return_val_if_fail (info != NULL, FALSE);
3002
3003 #ifdef G_OS_UNIX
3004   app_id = g_desktop_app_info_get_string (info, "X-Flatpak");
3005   if (app_id && *app_id)
3006     {
3007       ruris = g_document_portal_add_documents (uris, app_id, NULL);
3008       if (ruris == NULL)
3009         ruris = uris;
3010     }
3011 #endif
3012
3013   launch_uris_with_dbus (info, session_bus, ruris, launch_context,
3014                          cancellable, callback, user_data);
3015
3016   if (ruris != uris)
3017     g_list_free_full (ruris, g_free);
3018
3019   g_free (app_id);
3020
3021   return TRUE;
3022 }
3023
3024 static gboolean
3025 g_desktop_app_info_launch_uris_internal (GAppInfo                   *appinfo,
3026                                          GList                      *uris,
3027                                          GAppLaunchContext          *launch_context,
3028                                          GSpawnFlags                 spawn_flags,
3029                                          GSpawnChildSetupFunc        user_setup,
3030                                          gpointer                    user_setup_data,
3031                                          GDesktopAppLaunchCallback   pid_callback,
3032                                          gpointer                    pid_callback_data,
3033                                          gint                        stdin_fd,
3034                                          gint                        stdout_fd,
3035                                          gint                        stderr_fd,
3036                                          GError                     **error)
3037 {
3038   GDesktopAppInfo *info = G_DESKTOP_APP_INFO (appinfo);
3039   GDBusConnection *session_bus;
3040   gboolean success = TRUE;
3041
3042   session_bus = g_bus_get_sync (G_BUS_TYPE_SESSION, NULL, NULL);
3043
3044   if (session_bus && info->app_id)
3045     /* This is non-blocking API. Similar to launching via fork()/exec()
3046      * we don't wait around to see if the program crashed during startup.
3047      * This is what startup-notification's job is...
3048      */
3049     g_desktop_app_info_launch_uris_with_dbus (info, session_bus, uris, launch_context,
3050                                               NULL, NULL, NULL);
3051   else
3052     success = g_desktop_app_info_launch_uris_with_spawn (info, session_bus, info->exec, uris, launch_context,
3053                                                          spawn_flags, user_setup, user_setup_data,
3054                                                          pid_callback, pid_callback_data,
3055                                                          stdin_fd, stdout_fd, stderr_fd, error);
3056
3057   if (session_bus != NULL)
3058     {
3059       /* This asynchronous flush holds a reference until it completes,
3060        * which ensures that the following unref won't immediately kill
3061        * the connection if we were the initial owner.
3062        */
3063       g_dbus_connection_flush (session_bus, NULL, NULL, NULL);
3064       g_object_unref (session_bus);
3065     }
3066
3067   return success;
3068 }
3069
3070 static gboolean
3071 g_desktop_app_info_launch_uris (GAppInfo           *appinfo,
3072                                 GList              *uris,
3073                                 GAppLaunchContext  *launch_context,
3074                                 GError            **error)
3075 {
3076   return g_desktop_app_info_launch_uris_internal (appinfo, uris,
3077                                                   launch_context,
3078                                                   _SPAWN_FLAGS_DEFAULT,
3079                                                   NULL, NULL, NULL, NULL,
3080                                                   -1, -1, -1,
3081                                                   error);
3082 }
3083
3084 typedef struct
3085 {
3086   GAppInfo *appinfo;
3087   GList *uris;
3088   GAppLaunchContext *context;
3089 } LaunchUrisData;
3090
3091 static void
3092 launch_uris_data_free (LaunchUrisData *data)
3093 {
3094   g_clear_object (&data->context);
3095   g_list_free_full (data->uris, g_free);
3096   g_free (data);
3097 }
3098
3099 static void
3100 launch_uris_with_dbus_cb (GObject      *object,
3101                           GAsyncResult *result,
3102                           gpointer      user_data)
3103 {
3104   GTask *task = G_TASK (user_data);
3105   GError *error = NULL;
3106
3107   g_dbus_connection_call_finish (G_DBUS_CONNECTION (object), result, &error);
3108   if (error != NULL)
3109     {
3110       g_dbus_error_strip_remote_error (error);
3111       g_task_return_error (task, g_steal_pointer (&error));
3112     }
3113   else
3114     g_task_return_boolean (task, TRUE);
3115
3116   g_object_unref (task);
3117 }
3118
3119 static void
3120 launch_uris_flush_cb (GObject      *object,
3121                       GAsyncResult *result,
3122                       gpointer      user_data)
3123 {
3124   GTask *task = G_TASK (user_data);
3125
3126   g_dbus_connection_flush_finish (G_DBUS_CONNECTION (object), result, NULL);
3127   g_task_return_boolean (task, TRUE);
3128   g_object_unref (task);
3129 }
3130
3131 static void
3132 launch_uris_bus_get_cb (GObject      *object,
3133                         GAsyncResult *result,
3134                         gpointer      user_data)
3135 {
3136   GTask *task = G_TASK (user_data);
3137   GDesktopAppInfo *info = G_DESKTOP_APP_INFO (g_task_get_source_object (task));
3138   LaunchUrisData *data = g_task_get_task_data (task);
3139   GCancellable *cancellable = g_task_get_cancellable (task);
3140   GDBusConnection *session_bus;
3141   GError *error = NULL;
3142
3143   session_bus = g_bus_get_finish (result, NULL);
3144
3145   if (session_bus && info->app_id)
3146     {
3147       /* FIXME: The g_document_portal_add_documents() function, which is called
3148        * from the g_desktop_app_info_launch_uris_with_dbus() function, still
3149        * uses blocking calls.
3150        */
3151       g_desktop_app_info_launch_uris_with_dbus (info, session_bus,
3152                                                 data->uris, data->context,
3153                                                 cancellable,
3154                                                 launch_uris_with_dbus_cb,
3155                                                 g_steal_pointer (&task));
3156     }
3157   else
3158     {
3159       /* FIXME: The D-Bus message from the notify_desktop_launch() function
3160        * can be still lost even if flush is called later. See:
3161        * https://gitlab.freedesktop.org/dbus/dbus/issues/72
3162        */
3163       g_desktop_app_info_launch_uris_with_spawn (info, session_bus, info->exec,
3164                                                  data->uris, data->context,
3165                                                  _SPAWN_FLAGS_DEFAULT, NULL,
3166                                                  NULL, NULL, NULL, -1, -1, -1,
3167                                                  &error);
3168       if (error != NULL)
3169         {
3170           g_task_return_error (task, g_steal_pointer (&error));
3171           g_object_unref (task);
3172         }
3173       else
3174         g_dbus_connection_flush (session_bus,
3175                                  cancellable,
3176                                  launch_uris_flush_cb,
3177                                  g_steal_pointer (&task));
3178     }
3179
3180   g_clear_object (&session_bus);
3181 }
3182
3183 static void
3184 g_desktop_app_info_launch_uris_async (GAppInfo           *appinfo,
3185                                       GList              *uris,
3186                                       GAppLaunchContext  *context,
3187                                       GCancellable       *cancellable,
3188                                       GAsyncReadyCallback callback,
3189                                       gpointer            user_data)
3190 {
3191   GTask *task;
3192   LaunchUrisData *data;
3193
3194   task = g_task_new (appinfo, cancellable, callback, user_data);
3195   g_task_set_source_tag (task, g_desktop_app_info_launch_uris_async);
3196
3197   data = g_new0 (LaunchUrisData, 1);
3198   data->uris = g_list_copy_deep (uris, (GCopyFunc) g_strdup, NULL);
3199   data->context = (context != NULL) ? g_object_ref (context) : NULL;
3200   g_task_set_task_data (task, g_steal_pointer (&data), (GDestroyNotify) launch_uris_data_free);
3201
3202   g_bus_get (G_BUS_TYPE_SESSION, cancellable, launch_uris_bus_get_cb, task);
3203 }
3204
3205 static gboolean
3206 g_desktop_app_info_launch_uris_finish (GAppInfo     *appinfo,
3207                                        GAsyncResult *result,
3208                                        GError      **error)
3209 {
3210   g_return_val_if_fail (g_task_is_valid (result, appinfo), FALSE);
3211
3212   return g_task_propagate_boolean (G_TASK (result), error);
3213 }
3214
3215 static gboolean
3216 g_desktop_app_info_supports_uris (GAppInfo *appinfo)
3217 {
3218   GDesktopAppInfo *info = G_DESKTOP_APP_INFO (appinfo);
3219
3220   return info->exec &&
3221     ((strstr (info->exec, "%u") != NULL) ||
3222      (strstr (info->exec, "%U") != NULL));
3223 }
3224
3225 static gboolean
3226 g_desktop_app_info_supports_files (GAppInfo *appinfo)
3227 {
3228   GDesktopAppInfo *info = G_DESKTOP_APP_INFO (appinfo);
3229
3230   return info->exec &&
3231     ((strstr (info->exec, "%f") != NULL) ||
3232      (strstr (info->exec, "%F") != NULL));
3233 }
3234
3235 static gboolean
3236 g_desktop_app_info_launch (GAppInfo           *appinfo,
3237                            GList              *files,
3238                            GAppLaunchContext  *launch_context,
3239                            GError            **error)
3240 {
3241   GList *uris;
3242   char *uri;
3243   gboolean res;
3244
3245   uris = NULL;
3246   while (files)
3247     {
3248       uri = g_file_get_uri (files->data);
3249       uris = g_list_prepend (uris, uri);
3250       files = files->next;
3251     }
3252
3253   uris = g_list_reverse (uris);
3254
3255   res = g_desktop_app_info_launch_uris (appinfo, uris, launch_context, error);
3256
3257   g_list_free_full (uris, g_free);
3258
3259   return res;
3260 }
3261
3262 /**
3263  * g_desktop_app_info_launch_uris_as_manager_with_fds:
3264  * @appinfo: a #GDesktopAppInfo
3265  * @uris: (element-type utf8): List of URIs
3266  * @launch_context: (nullable): a #GAppLaunchContext
3267  * @spawn_flags: #GSpawnFlags, used for each process
3268  * @user_setup: (scope async) (nullable): a #GSpawnChildSetupFunc, used once
3269  *     for each process.
3270  * @user_setup_data: (closure user_setup) (nullable): User data for @user_setup
3271  * @pid_callback: (scope call) (nullable): Callback for child processes
3272  * @pid_callback_data: (closure pid_callback) (nullable): User data for @callback
3273  * @stdin_fd: file descriptor to use for child's stdin, or -1
3274  * @stdout_fd: file descriptor to use for child's stdout, or -1
3275  * @stderr_fd: file descriptor to use for child's stderr, or -1
3276  * @error: return location for a #GError, or %NULL
3277  *
3278  * Equivalent to g_desktop_app_info_launch_uris_as_manager() but allows
3279  * you to pass in file descriptors for the stdin, stdout and stderr streams
3280  * of the launched process.
3281  *
3282  * If application launching occurs via some non-spawn mechanism (e.g. D-Bus
3283  * activation) then @stdin_fd, @stdout_fd and @stderr_fd are ignored.
3284  *
3285  * Returns: %TRUE on successful launch, %FALSE otherwise.
3286  *
3287  * Since: 2.58
3288  */
3289 gboolean
3290 g_desktop_app_info_launch_uris_as_manager_with_fds (GDesktopAppInfo            *appinfo,
3291                                                     GList                      *uris,
3292                                                     GAppLaunchContext          *launch_context,
3293                                                     GSpawnFlags                 spawn_flags,
3294                                                     GSpawnChildSetupFunc        user_setup,
3295                                                     gpointer                    user_setup_data,
3296                                                     GDesktopAppLaunchCallback   pid_callback,
3297                                                     gpointer                    pid_callback_data,
3298                                                     gint                        stdin_fd,
3299                                                     gint                        stdout_fd,
3300                                                     gint                        stderr_fd,
3301                                                     GError                    **error)
3302 {
3303   return g_desktop_app_info_launch_uris_internal ((GAppInfo*)appinfo,
3304                                                   uris,
3305                                                   launch_context,
3306                                                   spawn_flags,
3307                                                   user_setup,
3308                                                   user_setup_data,
3309                                                   pid_callback,
3310                                                   pid_callback_data,
3311                                                   stdin_fd,
3312                                                   stdout_fd,
3313                                                   stderr_fd,
3314                                                   error);
3315 }
3316
3317 /**
3318  * g_desktop_app_info_launch_uris_as_manager:
3319  * @appinfo: a #GDesktopAppInfo
3320  * @uris: (element-type utf8): List of URIs
3321  * @launch_context: (nullable): a #GAppLaunchContext
3322  * @spawn_flags: #GSpawnFlags, used for each process
3323  * @user_setup: (scope async) (nullable): a #GSpawnChildSetupFunc, used once
3324  *     for each process.
3325  * @user_setup_data: (closure user_setup) (nullable): User data for @user_setup
3326  * @pid_callback: (scope call) (nullable): Callback for child processes
3327  * @pid_callback_data: (closure pid_callback) (nullable): User data for @callback
3328  * @error: return location for a #GError, or %NULL
3329  *
3330  * This function performs the equivalent of g_app_info_launch_uris(),
3331  * but is intended primarily for operating system components that
3332  * launch applications.  Ordinary applications should use
3333  * g_app_info_launch_uris().
3334  *
3335  * If the application is launched via GSpawn, then @spawn_flags, @user_setup
3336  * and @user_setup_data are used for the call to g_spawn_async().
3337  * Additionally, @pid_callback (with @pid_callback_data) will be called to
3338  * inform about the PID of the created process. See g_spawn_async_with_pipes()
3339  * for information on certain parameter conditions that can enable an
3340  * optimized posix_spawn() codepath to be used.
3341  *
3342  * If application launching occurs via some other mechanism (eg: D-Bus
3343  * activation) then @spawn_flags, @user_setup, @user_setup_data,
3344  * @pid_callback and @pid_callback_data are ignored.
3345  *
3346  * Returns: %TRUE on successful launch, %FALSE otherwise.
3347  */
3348 gboolean
3349 g_desktop_app_info_launch_uris_as_manager (GDesktopAppInfo            *appinfo,
3350                                            GList                      *uris,
3351                                            GAppLaunchContext          *launch_context,
3352                                            GSpawnFlags                 spawn_flags,
3353                                            GSpawnChildSetupFunc        user_setup,
3354                                            gpointer                    user_setup_data,
3355                                            GDesktopAppLaunchCallback   pid_callback,
3356                                            gpointer                    pid_callback_data,
3357                                            GError                    **error)
3358 {
3359   return g_desktop_app_info_launch_uris_as_manager_with_fds (appinfo,
3360                                                              uris,
3361                                                              launch_context,
3362                                                              spawn_flags,
3363                                                              user_setup,
3364                                                              user_setup_data,
3365                                                              pid_callback,
3366                                                              pid_callback_data,
3367                                                              -1, -1, -1,
3368                                                              error);
3369 }
3370
3371 /* OnlyShowIn API support {{{2 */
3372
3373 /**
3374  * g_desktop_app_info_set_desktop_env:
3375  * @desktop_env: a string specifying what desktop this is
3376  *
3377  * Sets the name of the desktop that the application is running in.
3378  * This is used by g_app_info_should_show() and
3379  * g_desktop_app_info_get_show_in() to evaluate the
3380  * `OnlyShowIn` and `NotShowIn`
3381  * desktop entry fields.
3382  *
3383  * Should be called only once; subsequent calls are ignored.
3384  *
3385  * Deprecated:2.42:do not use this API.  Since 2.42 the value of the
3386  * `XDG_CURRENT_DESKTOP` environment variable will be used.
3387  */
3388 void
3389 g_desktop_app_info_set_desktop_env (const gchar *desktop_env)
3390 {
3391   get_current_desktops (desktop_env);
3392 }
3393
3394 static gboolean
3395 g_desktop_app_info_should_show (GAppInfo *appinfo)
3396 {
3397   GDesktopAppInfo *info = G_DESKTOP_APP_INFO (appinfo);
3398
3399   if (info->nodisplay)
3400     return FALSE;
3401
3402   return g_desktop_app_info_get_show_in (info, NULL);
3403 }
3404
3405 /* mime types/default apps support {{{2 */
3406
3407 typedef enum {
3408   CONF_DIR,
3409   APP_DIR,
3410   MIMETYPE_DIR
3411 } DirType;
3412
3413 static char *
3414 ensure_dir (DirType   type,
3415             GError  **error)
3416 {
3417   char *path, *display_name;
3418   int errsv;
3419
3420   switch (type)
3421     {
3422     case CONF_DIR:
3423       path = g_build_filename (g_get_user_config_dir (), NULL);
3424       break;
3425
3426     case APP_DIR:
3427       path = g_build_filename (g_get_user_data_dir (), "applications", NULL);
3428       break;
3429
3430     case MIMETYPE_DIR:
3431       path = g_build_filename (g_get_user_data_dir (), "mime", "packages", NULL);
3432       break;
3433
3434     default:
3435       g_assert_not_reached ();
3436     }
3437
3438   g_debug ("%s: Ensuring %s", G_STRFUNC, path);
3439
3440   errno = 0;
3441   if (g_mkdir_with_parents (path, 0700) == 0)
3442     return path;
3443
3444   errsv = errno;
3445   display_name = g_filename_display_name (path);
3446   if (type == APP_DIR)
3447     g_set_error (error, G_IO_ERROR, g_io_error_from_errno (errsv),
3448                  _("Can’t create user application configuration folder %s: %s"),
3449                  display_name, g_strerror (errsv));
3450   else
3451     g_set_error (error, G_IO_ERROR, g_io_error_from_errno (errsv),
3452                  _("Can’t create user MIME configuration folder %s: %s"),
3453                  display_name, g_strerror (errsv));
3454
3455   g_free (display_name);
3456   g_free (path);
3457
3458   return NULL;
3459 }
3460
3461 static gboolean
3462 update_mimeapps_list (const char  *desktop_id,
3463                       const char  *content_type,
3464                       UpdateMimeFlags flags,
3465                       GError     **error)
3466 {
3467   char *dirname, *filename, *string;
3468   GKeyFile *key_file;
3469   gboolean load_succeeded, res;
3470   char **old_list, **list;
3471   gsize length, data_size;
3472   char *data;
3473   int i, j, k;
3474   char **content_types;
3475
3476   /* Don't add both at start and end */
3477   g_assert (!((flags & UPDATE_MIME_SET_DEFAULT) &&
3478               (flags & UPDATE_MIME_SET_NON_DEFAULT)));
3479
3480   dirname = ensure_dir (CONF_DIR, error);
3481   if (!dirname)
3482     return FALSE;
3483
3484   filename = g_build_filename (dirname, "mimeapps.list", NULL);
3485   g_free (dirname);
3486
3487   key_file = g_key_file_new ();
3488   load_succeeded = g_key_file_load_from_file (key_file, filename, G_KEY_FILE_NONE, NULL);
3489   if (!load_succeeded ||
3490       (!g_key_file_has_group (key_file, ADDED_ASSOCIATIONS_GROUP) &&
3491        !g_key_file_has_group (key_file, REMOVED_ASSOCIATIONS_GROUP) &&
3492        !g_key_file_has_group (key_file, DEFAULT_APPLICATIONS_GROUP)))
3493     {
3494       g_key_file_free (key_file);
3495       key_file = g_key_file_new ();
3496     }
3497
3498   if (content_type)
3499     {
3500       content_types = g_new (char *, 2);
3501       content_types[0] = g_strdup (content_type);
3502       content_types[1] = NULL;
3503     }
3504   else
3505     {
3506       content_types = g_key_file_get_keys (key_file, DEFAULT_APPLICATIONS_GROUP, NULL, NULL);
3507     }
3508
3509   for (k = 0; content_types && content_types[k]; k++)
3510     {
3511       /* set as default, if requested so */
3512       string = g_key_file_get_string (key_file,
3513                                       DEFAULT_APPLICATIONS_GROUP,
3514                                       content_types[k],
3515                                       NULL);
3516
3517       if (g_strcmp0 (string, desktop_id) != 0 &&
3518           (flags & UPDATE_MIME_SET_DEFAULT))
3519         {
3520           g_free (string);
3521           string = g_strdup (desktop_id);
3522
3523           /* add in the non-default list too, if it's not already there */
3524           flags |= UPDATE_MIME_SET_NON_DEFAULT;
3525         }
3526
3527       if (string == NULL || desktop_id == NULL)
3528         g_key_file_remove_key (key_file,
3529                                DEFAULT_APPLICATIONS_GROUP,
3530                                content_types[k],
3531                                NULL);
3532       else
3533         g_key_file_set_string (key_file,
3534                                DEFAULT_APPLICATIONS_GROUP,
3535                                content_types[k],
3536                                string);
3537
3538       g_free (string);
3539     }
3540
3541   if (content_type)
3542     {
3543       /* reuse the list from above */
3544     }
3545   else
3546     {
3547       g_strfreev (content_types);
3548       content_types = g_key_file_get_keys (key_file, ADDED_ASSOCIATIONS_GROUP, NULL, NULL);
3549     }
3550
3551   for (k = 0; content_types && content_types[k]; k++)
3552     {
3553       /* Add to the right place in the list */
3554
3555       length = 0;
3556       old_list = g_key_file_get_string_list (key_file, ADDED_ASSOCIATIONS_GROUP,
3557                                              content_types[k], &length, NULL);
3558
3559       list = g_new (char *, 1 + length + 1);
3560
3561       i = 0;
3562
3563       /* if we're adding a last-used hint, just put the application in front of the list */
3564       if (flags & UPDATE_MIME_SET_LAST_USED)
3565         {
3566           /* avoid adding this again as non-default later */
3567           if (flags & UPDATE_MIME_SET_NON_DEFAULT)
3568             flags ^= UPDATE_MIME_SET_NON_DEFAULT;
3569
3570           list[i++] = g_strdup (desktop_id);
3571         }
3572
3573       if (old_list)
3574         {
3575           for (j = 0; old_list[j] != NULL; j++)
3576             {
3577               if (g_strcmp0 (old_list[j], desktop_id) != 0)
3578                 {
3579                   /* rewrite other entries if they're different from the new one */
3580                   list[i++] = g_strdup (old_list[j]);
3581                 }
3582               else if (flags & UPDATE_MIME_SET_NON_DEFAULT)
3583                 {
3584                   /* we encountered an old entry which is equal to the one we're adding as non-default,
3585                    * don't change its position in the list.
3586                    */
3587                   flags ^= UPDATE_MIME_SET_NON_DEFAULT;
3588                   list[i++] = g_strdup (old_list[j]);
3589                 }
3590             }
3591         }
3592
3593       /* add it at the end of the list */
3594       if (flags & UPDATE_MIME_SET_NON_DEFAULT)
3595         list[i++] = g_strdup (desktop_id);
3596
3597       list[i] = NULL;
3598
3599       g_strfreev (old_list);
3600
3601       if (list[0] == NULL || desktop_id == NULL)
3602         g_key_file_remove_key (key_file,
3603                                ADDED_ASSOCIATIONS_GROUP,
3604                                content_types[k],
3605                                NULL);
3606       else
3607         g_key_file_set_string_list (key_file,
3608                                     ADDED_ASSOCIATIONS_GROUP,
3609                                     content_types[k],
3610                                     (const char * const *)list, i);
3611
3612       g_strfreev (list);
3613     }
3614
3615   if (content_type)
3616     {
3617       /* reuse the list from above */
3618     }
3619   else
3620     {
3621       g_strfreev (content_types);
3622       content_types = g_key_file_get_keys (key_file, REMOVED_ASSOCIATIONS_GROUP, NULL, NULL);
3623     }
3624
3625   for (k = 0; content_types && content_types[k]; k++)
3626     {
3627       /* Remove from removed associations group (unless remove) */
3628
3629       length = 0;
3630       old_list = g_key_file_get_string_list (key_file, REMOVED_ASSOCIATIONS_GROUP,
3631                                              content_types[k], &length, NULL);
3632
3633       list = g_new (char *, 1 + length + 1);
3634
3635       i = 0;
3636       if (flags & UPDATE_MIME_REMOVE)
3637         list[i++] = g_strdup (desktop_id);
3638       if (old_list)
3639         {
3640           for (j = 0; old_list[j] != NULL; j++)
3641             {
3642               if (g_strcmp0 (old_list[j], desktop_id) != 0)
3643                 list[i++] = g_strdup (old_list[j]);
3644             }
3645         }
3646       list[i] = NULL;
3647
3648       g_strfreev (old_list);
3649
3650       if (list[0] == NULL || desktop_id == NULL)
3651         g_key_file_remove_key (key_file,
3652                                REMOVED_ASSOCIATIONS_GROUP,
3653                                content_types[k],
3654                                NULL);
3655       else
3656         g_key_file_set_string_list (key_file,
3657                                     REMOVED_ASSOCIATIONS_GROUP,
3658                                     content_types[k],
3659                                     (const char * const *)list, i);
3660
3661       g_strfreev (list);
3662     }
3663
3664   g_strfreev (content_types);
3665
3666   data = g_key_file_to_data (key_file, &data_size, error);
3667   g_key_file_free (key_file);
3668
3669   res = g_file_set_contents_full (filename, data, data_size,
3670                                   G_FILE_SET_CONTENTS_CONSISTENT | G_FILE_SET_CONTENTS_ONLY_EXISTING,
3671                                   0600, error);
3672
3673   desktop_file_dirs_invalidate_user_config ();
3674
3675   g_free (filename);
3676   g_free (data);
3677
3678   return res;
3679 }
3680
3681 static gboolean
3682 g_desktop_app_info_set_as_last_used_for_type (GAppInfo    *appinfo,
3683                                               const char  *content_type,
3684                                               GError     **error)
3685 {
3686   GDesktopAppInfo *info = G_DESKTOP_APP_INFO (appinfo);
3687
3688   if (!g_desktop_app_info_ensure_saved (info, error))
3689     return FALSE;
3690
3691   if (!info->desktop_id)
3692     {
3693       g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_FAILED,
3694                            _("Application information lacks an identifier"));
3695       return FALSE;
3696     }
3697
3698   /* both add support for the content type and set as last used */
3699   return update_mimeapps_list (info->desktop_id, content_type,
3700                                UPDATE_MIME_SET_NON_DEFAULT |
3701                                UPDATE_MIME_SET_LAST_USED,
3702                                error);
3703 }
3704
3705 static gboolean
3706 g_desktop_app_info_set_as_default_for_type (GAppInfo    *appinfo,
3707                                             const char  *content_type,
3708                                             GError     **error)
3709 {
3710   GDesktopAppInfo *info = G_DESKTOP_APP_INFO (appinfo);
3711
3712   if (!g_desktop_app_info_ensure_saved (info, error))
3713     return FALSE;
3714
3715   if (!info->desktop_id)
3716     {
3717       g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_FAILED,
3718                            _("Application information lacks an identifier"));
3719       return FALSE;
3720     }
3721
3722   return update_mimeapps_list (info->desktop_id, content_type,
3723                                UPDATE_MIME_SET_DEFAULT,
3724                                error);
3725 }
3726
3727 static void
3728 update_program_done (GPid     pid,
3729                      gint     status,
3730                      gpointer data)
3731 {
3732   /* Did the application exit correctly */
3733   if (g_spawn_check_exit_status (status, NULL))
3734     {
3735       /* Here we could clean out any caches in use */
3736     }
3737 }
3738
3739 static void
3740 run_update_command (char *command,
3741                     char *subdir)
3742 {
3743         char *argv[3] = {
3744                 NULL,
3745                 NULL,
3746                 NULL,
3747         };
3748         GPid pid = 0;
3749         GError *error = NULL;
3750
3751         argv[0] = command;
3752         argv[1] = g_build_filename (g_get_user_data_dir (), subdir, NULL);
3753
3754         if (g_spawn_async ("/", argv,
3755                            NULL,       /* envp */
3756                            G_SPAWN_SEARCH_PATH |
3757                            G_SPAWN_STDOUT_TO_DEV_NULL |
3758                            G_SPAWN_STDERR_TO_DEV_NULL |
3759                            G_SPAWN_DO_NOT_REAP_CHILD,
3760                            NULL, NULL, /* No setup function */
3761                            &pid,
3762                            &error))
3763           g_child_watch_add (pid, update_program_done, NULL);
3764         else
3765           {
3766             /* If we get an error at this point, it's quite likely the user doesn't
3767              * have an installed copy of either 'update-mime-database' or
3768              * 'update-desktop-database'.  I don't think we want to popup an error
3769              * dialog at this point, so we just do a g_warning to give the user a
3770              * chance of debugging it.
3771              */
3772             g_warning ("%s", error->message);
3773             g_error_free (error);
3774           }
3775
3776         g_free (argv[1]);
3777 }
3778
3779 static gboolean
3780 g_desktop_app_info_set_as_default_for_extension (GAppInfo    *appinfo,
3781                                                  const char  *extension,
3782                                                  GError     **error)
3783 {
3784   char *filename, *basename, *mimetype;
3785   char *dirname;
3786   gboolean res;
3787
3788   if (!g_desktop_app_info_ensure_saved (G_DESKTOP_APP_INFO (appinfo), error))
3789     return FALSE;
3790
3791   dirname = ensure_dir (MIMETYPE_DIR, error);
3792   if (!dirname)
3793     return FALSE;
3794
3795   basename = g_strdup_printf ("user-extension-%s.xml", extension);
3796   filename = g_build_filename (dirname, basename, NULL);
3797   g_free (basename);
3798   g_free (dirname);
3799
3800   mimetype = g_strdup_printf ("application/x-extension-%s", extension);
3801
3802   if (!g_file_test (filename, G_FILE_TEST_EXISTS))
3803     {
3804       char *contents;
3805
3806       contents =
3807         g_strdup_printf ("<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"
3808                          "<mime-info xmlns=\"http://www.freedesktop.org/standards/shared-mime-info\">\n"
3809                          " <mime-type type=\"%s\">\n"
3810                          "  <comment>%s document</comment>\n"
3811                          "  <glob pattern=\"*.%s\"/>\n"
3812                          " </mime-type>\n"
3813                          "</mime-info>\n", mimetype, extension, extension);
3814
3815       g_file_set_contents_full (filename, contents, -1,
3816                                 G_FILE_SET_CONTENTS_CONSISTENT | G_FILE_SET_CONTENTS_ONLY_EXISTING,
3817                                 0600, NULL);
3818       g_free (contents);
3819
3820       run_update_command ("update-mime-database", "mime");
3821     }
3822   g_free (filename);
3823
3824   res = g_desktop_app_info_set_as_default_for_type (appinfo,
3825                                                     mimetype,
3826                                                     error);
3827
3828   g_free (mimetype);
3829
3830   return res;
3831 }
3832
3833 static gboolean
3834 g_desktop_app_info_add_supports_type (GAppInfo    *appinfo,
3835                                       const char  *content_type,
3836                                       GError     **error)
3837 {
3838   GDesktopAppInfo *info = G_DESKTOP_APP_INFO (appinfo);
3839
3840   if (!g_desktop_app_info_ensure_saved (G_DESKTOP_APP_INFO (info), error))
3841     return FALSE;
3842
3843   return update_mimeapps_list (info->desktop_id, content_type,
3844                                UPDATE_MIME_SET_NON_DEFAULT,
3845                                error);
3846 }
3847
3848 static gboolean
3849 g_desktop_app_info_can_remove_supports_type (GAppInfo *appinfo)
3850 {
3851   return TRUE;
3852 }
3853
3854 static gboolean
3855 g_desktop_app_info_remove_supports_type (GAppInfo    *appinfo,
3856                                          const char  *content_type,
3857                                          GError     **error)
3858 {
3859   GDesktopAppInfo *info = G_DESKTOP_APP_INFO (appinfo);
3860
3861   if (!g_desktop_app_info_ensure_saved (G_DESKTOP_APP_INFO (info), error))
3862     return FALSE;
3863
3864   return update_mimeapps_list (info->desktop_id, content_type,
3865                                UPDATE_MIME_REMOVE,
3866                                error);
3867 }
3868
3869 static const char **
3870 g_desktop_app_info_get_supported_types (GAppInfo *appinfo)
3871 {
3872   GDesktopAppInfo *info = G_DESKTOP_APP_INFO (appinfo);
3873
3874   return (const char**) info->mime_types;
3875 }
3876
3877 /* Saving and deleting {{{2 */
3878
3879 static gboolean
3880 g_desktop_app_info_ensure_saved (GDesktopAppInfo  *info,
3881                                  GError          **error)
3882 {
3883   GKeyFile *key_file;
3884   char *dirname;
3885   char *filename;
3886   char *data, *desktop_id;
3887   gsize data_size;
3888   int fd;
3889   gboolean res;
3890
3891   if (info->filename != NULL)
3892     return TRUE;
3893
3894   /* This is only used for object created with
3895    * g_app_info_create_from_commandline. All other
3896    * object should have a filename
3897    */
3898
3899   dirname = ensure_dir (APP_DIR, error);
3900   if (!dirname)
3901     return FALSE;
3902
3903   key_file = g_key_file_new ();
3904
3905   g_key_file_set_string (key_file, G_KEY_FILE_DESKTOP_GROUP,
3906                          "Encoding", "UTF-8");
3907   g_key_file_set_string (key_file, G_KEY_FILE_DESKTOP_GROUP,
3908                          G_KEY_FILE_DESKTOP_KEY_VERSION, "1.0");
3909   g_key_file_set_string (key_file, G_KEY_FILE_DESKTOP_GROUP,
3910                          G_KEY_FILE_DESKTOP_KEY_TYPE,
3911                          G_KEY_FILE_DESKTOP_TYPE_APPLICATION);
3912   if (info->terminal)
3913     g_key_file_set_boolean (key_file, G_KEY_FILE_DESKTOP_GROUP,
3914                             G_KEY_FILE_DESKTOP_KEY_TERMINAL, TRUE);
3915   if (info->nodisplay)
3916     g_key_file_set_boolean (key_file, G_KEY_FILE_DESKTOP_GROUP,
3917                             G_KEY_FILE_DESKTOP_KEY_NO_DISPLAY, TRUE);
3918
3919   g_key_file_set_string (key_file, G_KEY_FILE_DESKTOP_GROUP,
3920                          G_KEY_FILE_DESKTOP_KEY_EXEC, info->exec);
3921
3922   g_key_file_set_string (key_file, G_KEY_FILE_DESKTOP_GROUP,
3923                          G_KEY_FILE_DESKTOP_KEY_NAME, info->name);
3924
3925   if (info->generic_name != NULL)
3926     g_key_file_set_string (key_file, G_KEY_FILE_DESKTOP_GROUP,
3927                            GENERIC_NAME_KEY, info->generic_name);
3928
3929   if (info->fullname != NULL)
3930     g_key_file_set_string (key_file, G_KEY_FILE_DESKTOP_GROUP,
3931                            FULL_NAME_KEY, info->fullname);
3932
3933   g_key_file_set_string (key_file, G_KEY_FILE_DESKTOP_GROUP,
3934                          G_KEY_FILE_DESKTOP_KEY_COMMENT, info->comment);
3935
3936   g_key_file_set_boolean (key_file, G_KEY_FILE_DESKTOP_GROUP,
3937                           G_KEY_FILE_DESKTOP_KEY_NO_DISPLAY, TRUE);
3938
3939   data = g_key_file_to_data (key_file, &data_size, NULL);
3940   g_key_file_free (key_file);
3941
3942   desktop_id = g_strdup_printf ("userapp-%s-XXXXXX.desktop", info->name);
3943   filename = g_build_filename (dirname, desktop_id, NULL);
3944   g_free (desktop_id);
3945   g_free (dirname);
3946
3947   fd = g_mkstemp (filename);
3948   if (fd == -1)
3949     {
3950       char *display_name;
3951
3952       display_name = g_filename_display_name (filename);
3953       g_set_error (error, G_IO_ERROR, G_IO_ERROR_FAILED,
3954                    _("Can’t create user desktop file %s"), display_name);
3955       g_free (display_name);
3956       g_free (filename);
3957       g_free (data);
3958       return FALSE;
3959     }
3960
3961   desktop_id = g_path_get_basename (filename);
3962
3963   /* FIXME - actually handle error */
3964   (void) g_close (fd, NULL);
3965
3966   res = g_file_set_contents_full (filename, data, data_size,
3967                                   G_FILE_SET_CONTENTS_CONSISTENT | G_FILE_SET_CONTENTS_ONLY_EXISTING,
3968                                   0600, error);
3969   g_free (data);
3970   if (!res)
3971     {
3972       g_free (desktop_id);
3973       g_free (filename);
3974       return FALSE;
3975     }
3976
3977   info->filename = filename;
3978   info->desktop_id = desktop_id;
3979
3980   run_update_command ("update-desktop-database", "applications");
3981
3982   /* We just dropped a file in the user's desktop file directory.  Save
3983    * the monitor the bother of having to notice it and invalidate
3984    * immediately.
3985    *
3986    * This means that calls directly following this will be able to see
3987    * the results immediately.
3988    */
3989   desktop_file_dirs_invalidate_user_data ();
3990
3991   return TRUE;
3992 }
3993
3994 static gboolean
3995 g_desktop_app_info_can_delete (GAppInfo *appinfo)
3996 {
3997   GDesktopAppInfo *info = G_DESKTOP_APP_INFO (appinfo);
3998
3999   if (info->filename)
4000     {
4001       if (strstr (info->filename, "/userapp-"))
4002         return g_access (info->filename, W_OK) == 0;
4003     }
4004
4005   return FALSE;
4006 }
4007
4008 static gboolean
4009 g_desktop_app_info_delete (GAppInfo *appinfo)
4010 {
4011   GDesktopAppInfo *info = G_DESKTOP_APP_INFO (appinfo);
4012
4013   if (info->filename)
4014     {
4015       if (g_remove (info->filename) == 0)
4016         {
4017           update_mimeapps_list (info->desktop_id, NULL,
4018                                 UPDATE_MIME_NONE,
4019                                 NULL);
4020
4021           g_free (info->filename);
4022           info->filename = NULL;
4023           g_free (info->desktop_id);
4024           info->desktop_id = NULL;
4025
4026           return TRUE;
4027         }
4028     }
4029
4030   return FALSE;
4031 }
4032
4033 /* Create for commandline {{{2 */
4034 /**
4035  * g_app_info_create_from_commandline:
4036  * @commandline: (type filename): the commandline to use
4037  * @application_name: (nullable): the application name, or %NULL to use @commandline
4038  * @flags: flags that can specify details of the created #GAppInfo
4039  * @error: a #GError location to store the error occurring, %NULL to ignore.
4040  *
4041  * Creates a new #GAppInfo from the given information.
4042  *
4043  * Note that for @commandline, the quoting rules of the Exec key of the
4044  * [freedesktop.org Desktop Entry Specification](http://freedesktop.org/Standards/desktop-entry-spec)
4045  * are applied. For example, if the @commandline contains
4046  * percent-encoded URIs, the percent-character must be doubled in order to prevent it from
4047  * being swallowed by Exec key unquoting. See the specification for exact quoting rules.
4048  *
4049  * Returns: (transfer full): new #GAppInfo for given command.
4050  **/
4051 GAppInfo *
4052 g_app_info_create_from_commandline (const char           *commandline,
4053                                     const char           *application_name,
4054                                     GAppInfoCreateFlags   flags,
4055                                     GError              **error)
4056 {
4057   char **split;
4058   char *basename;
4059   GDesktopAppInfo *info;
4060
4061   g_return_val_if_fail (commandline, NULL);
4062
4063   info = g_object_new (G_TYPE_DESKTOP_APP_INFO, NULL);
4064
4065   info->filename = NULL;
4066   info->desktop_id = NULL;
4067
4068   info->terminal = (flags & G_APP_INFO_CREATE_NEEDS_TERMINAL) != 0;
4069   info->startup_notify = (flags & G_APP_INFO_CREATE_SUPPORTS_STARTUP_NOTIFICATION) != 0;
4070   info->hidden = FALSE;
4071   if ((flags & G_APP_INFO_CREATE_SUPPORTS_URIS) != 0)
4072     info->exec = g_strconcat (commandline, " %u", NULL);
4073   else
4074     info->exec = g_strconcat (commandline, " %f", NULL);
4075   info->nodisplay = TRUE;
4076   info->binary = binary_from_exec (info->exec);
4077
4078   if (application_name)
4079     info->name = g_strdup (application_name);
4080   else
4081     {
4082       /* FIXME: this should be more robust. Maybe g_shell_parse_argv and use argv[0] */
4083       split = g_strsplit (commandline, " ", 2);
4084       basename = split[0] ? g_path_get_basename (split[0]) : NULL;
4085       g_strfreev (split);
4086       info->name = basename;
4087       if (info->name == NULL)
4088         info->name = g_strdup ("custom");
4089     }
4090   info->comment = g_strdup_printf (_("Custom definition for %s"), info->name);
4091
4092   return G_APP_INFO (info);
4093 }
4094
4095 /* GAppInfo interface init */
4096
4097 static void
4098 g_desktop_app_info_iface_init (GAppInfoIface *iface)
4099 {
4100   iface->dup = g_desktop_app_info_dup;
4101   iface->equal = g_desktop_app_info_equal;
4102   iface->get_id = g_desktop_app_info_get_id;
4103   iface->get_name = g_desktop_app_info_get_name;
4104   iface->get_description = g_desktop_app_info_get_description;
4105   iface->get_executable = g_desktop_app_info_get_executable;
4106   iface->get_icon = g_desktop_app_info_get_icon;
4107   iface->launch = g_desktop_app_info_launch;
4108   iface->supports_uris = g_desktop_app_info_supports_uris;
4109   iface->supports_files = g_desktop_app_info_supports_files;
4110   iface->launch_uris = g_desktop_app_info_launch_uris;
4111   iface->launch_uris_async = g_desktop_app_info_launch_uris_async;
4112   iface->launch_uris_finish = g_desktop_app_info_launch_uris_finish;
4113   iface->should_show = g_desktop_app_info_should_show;
4114   iface->set_as_default_for_type = g_desktop_app_info_set_as_default_for_type;
4115   iface->set_as_default_for_extension = g_desktop_app_info_set_as_default_for_extension;
4116   iface->add_supports_type = g_desktop_app_info_add_supports_type;
4117   iface->can_remove_supports_type = g_desktop_app_info_can_remove_supports_type;
4118   iface->remove_supports_type = g_desktop_app_info_remove_supports_type;
4119   iface->can_delete = g_desktop_app_info_can_delete;
4120   iface->do_delete = g_desktop_app_info_delete;
4121   iface->get_commandline = g_desktop_app_info_get_commandline;
4122   iface->get_display_name = g_desktop_app_info_get_display_name;
4123   iface->set_as_last_used_for_type = g_desktop_app_info_set_as_last_used_for_type;
4124   iface->get_supported_types = g_desktop_app_info_get_supported_types;
4125 }
4126
4127 /* Recommended applications {{{2 */
4128
4129 /* Converts content_type into a list of itself with all of its parent
4130  * types (if include_fallback is enabled) or just returns a single-item
4131  * list with the unaliased content type.
4132  */
4133 static gchar **
4134 get_list_of_mimetypes (const gchar *content_type,
4135                        gboolean     include_fallback)
4136 {
4137   gchar *unaliased;
4138   GPtrArray *array;
4139
4140   array = g_ptr_array_new ();
4141   unaliased = _g_unix_content_type_unalias (content_type);
4142   g_ptr_array_add (array, unaliased);
4143
4144   if (include_fallback)
4145     {
4146       guint i;
4147
4148       /* Iterate the array as we grow it, until we have nothing more to add */
4149       for (i = 0; i < array->len; i++)
4150         {
4151           gchar **parents = _g_unix_content_type_get_parents (g_ptr_array_index (array, i));
4152           gint j;
4153
4154           for (j = 0; parents[j]; j++)
4155             /* Don't add duplicates */
4156             if (!array_contains (array, parents[j]))
4157               g_ptr_array_add (array, parents[j]);
4158             else
4159               g_free (parents[j]);
4160
4161           /* We already stole or freed each element.  Free the container. */
4162           g_free (parents);
4163         }
4164     }
4165
4166   g_ptr_array_add (array, NULL);
4167
4168   return (gchar **) g_ptr_array_free (array, FALSE);
4169 }
4170
4171 static gchar **
4172 g_desktop_app_info_get_desktop_ids_for_content_type (const gchar *content_type,
4173                                                      gboolean     include_fallback)
4174 {
4175   GPtrArray *hits, *blocklist;
4176   gchar **types;
4177   guint i, j;
4178
4179   hits = g_ptr_array_new ();
4180   blocklist = g_ptr_array_new ();
4181
4182   types = get_list_of_mimetypes (content_type, include_fallback);
4183
4184   desktop_file_dirs_lock ();
4185
4186   for (i = 0; types[i]; i++)
4187     for (j = 0; j < desktop_file_dirs->len; j++)
4188       desktop_file_dir_mime_lookup (g_ptr_array_index (desktop_file_dirs, j), types[i], hits, blocklist);
4189
4190   /* We will keep the hits past unlocking, so we must dup them */
4191   for (i = 0; i < hits->len; i++)
4192     hits->pdata[i] = g_strdup (hits->pdata[i]);
4193
4194   desktop_file_dirs_unlock ();
4195
4196   g_ptr_array_add (hits, NULL);
4197
4198   g_ptr_array_free (blocklist, TRUE);
4199   g_strfreev (types);
4200
4201   return (gchar **) g_ptr_array_free (hits, FALSE);
4202 }
4203
4204 /**
4205  * g_app_info_get_recommended_for_type:
4206  * @content_type: the content type to find a #GAppInfo for
4207  *
4208  * Gets a list of recommended #GAppInfos for a given content type, i.e.
4209  * those applications which claim to support the given content type exactly,
4210  * and not by MIME type subclassing.
4211  * Note that the first application of the list is the last used one, i.e.
4212  * the last one for which g_app_info_set_as_last_used_for_type() has been
4213  * called.
4214  *
4215  * Returns: (element-type GAppInfo) (transfer full): #GList of #GAppInfos
4216  *     for given @content_type or %NULL on error.
4217  *
4218  * Since: 2.28
4219  **/
4220 GList *
4221 g_app_info_get_recommended_for_type (const gchar *content_type)
4222 {
4223   gchar **desktop_ids;
4224   GList *infos;
4225   gint i;
4226
4227   g_return_val_if_fail (content_type != NULL, NULL);
4228
4229   desktop_ids = g_desktop_app_info_get_desktop_ids_for_content_type (content_type, FALSE);
4230
4231   infos = NULL;
4232   for (i = 0; desktop_ids[i]; i++)
4233     {
4234       GDesktopAppInfo *info;
4235
4236       info = g_desktop_app_info_new (desktop_ids[i]);
4237       if (info)
4238         infos = g_list_prepend (infos, info);
4239     }
4240
4241   g_strfreev (desktop_ids);
4242
4243   return g_list_reverse (infos);
4244 }
4245
4246 /**
4247  * g_app_info_get_fallback_for_type:
4248  * @content_type: the content type to find a #GAppInfo for
4249  *
4250  * Gets a list of fallback #GAppInfos for a given content type, i.e.
4251  * those applications which claim to support the given content type
4252  * by MIME type subclassing and not directly.
4253  *
4254  * Returns: (element-type GAppInfo) (transfer full): #GList of #GAppInfos
4255  *     for given @content_type or %NULL on error.
4256  *
4257  * Since: 2.28
4258  **/
4259 GList *
4260 g_app_info_get_fallback_for_type (const gchar *content_type)
4261 {
4262   gchar **recommended_ids;
4263   gchar **all_ids;
4264   GList *infos;
4265   gint i;
4266
4267   g_return_val_if_fail (content_type != NULL, NULL);
4268
4269   recommended_ids = g_desktop_app_info_get_desktop_ids_for_content_type (content_type, FALSE);
4270   all_ids = g_desktop_app_info_get_desktop_ids_for_content_type (content_type, TRUE);
4271
4272   infos = NULL;
4273   for (i = 0; all_ids[i]; i++)
4274     {
4275       GDesktopAppInfo *info;
4276       gint j;
4277
4278       /* Don't return the ones on the recommended list */
4279       for (j = 0; recommended_ids[j]; j++)
4280         if (g_str_equal (all_ids[i], recommended_ids[j]))
4281           break;
4282
4283       if (recommended_ids[j])
4284         continue;
4285
4286       info = g_desktop_app_info_new (all_ids[i]);
4287
4288       if (info)
4289         infos = g_list_prepend (infos, info);
4290     }
4291
4292   g_strfreev (recommended_ids);
4293   g_strfreev (all_ids);
4294
4295   return g_list_reverse (infos);
4296 }
4297
4298 /**
4299  * g_app_info_get_all_for_type:
4300  * @content_type: the content type to find a #GAppInfo for
4301  *
4302  * Gets a list of all #GAppInfos for a given content type,
4303  * including the recommended and fallback #GAppInfos. See
4304  * g_app_info_get_recommended_for_type() and
4305  * g_app_info_get_fallback_for_type().
4306  *
4307  * Returns: (element-type GAppInfo) (transfer full): #GList of #GAppInfos
4308  *     for given @content_type or %NULL on error.
4309  **/
4310 GList *
4311 g_app_info_get_all_for_type (const char *content_type)
4312 {
4313   gchar **desktop_ids;
4314   GList *infos;
4315   gint i;
4316
4317   g_return_val_if_fail (content_type != NULL, NULL);
4318
4319   desktop_ids = g_desktop_app_info_get_desktop_ids_for_content_type (content_type, TRUE);
4320
4321   infos = NULL;
4322   for (i = 0; desktop_ids[i]; i++)
4323     {
4324       GDesktopAppInfo *info;
4325
4326       info = g_desktop_app_info_new (desktop_ids[i]);
4327       if (info)
4328         infos = g_list_prepend (infos, info);
4329     }
4330
4331   g_strfreev (desktop_ids);
4332
4333   return g_list_reverse (infos);
4334 }
4335
4336 /**
4337  * g_app_info_reset_type_associations:
4338  * @content_type: a content type
4339  *
4340  * Removes all changes to the type associations done by
4341  * g_app_info_set_as_default_for_type(),
4342  * g_app_info_set_as_default_for_extension(),
4343  * g_app_info_add_supports_type() or
4344  * g_app_info_remove_supports_type().
4345  *
4346  * Since: 2.20
4347  */
4348 void
4349 g_app_info_reset_type_associations (const char *content_type)
4350 {
4351   update_mimeapps_list (NULL, content_type,
4352                         UPDATE_MIME_NONE,
4353                         NULL);
4354 }
4355
4356 /**
4357  * g_app_info_get_default_for_type:
4358  * @content_type: the content type to find a #GAppInfo for
4359  * @must_support_uris: if %TRUE, the #GAppInfo is expected to
4360  *     support URIs
4361  *
4362  * Gets the default #GAppInfo for a given content type.
4363  *
4364  * Returns: (transfer full) (nullable): #GAppInfo for given @content_type or
4365  *     %NULL on error.
4366  */
4367 GAppInfo *
4368 g_app_info_get_default_for_type (const char *content_type,
4369                                  gboolean    must_support_uris)
4370 {
4371   GPtrArray *blocklist;
4372   GPtrArray *results;
4373   GAppInfo *info;
4374   gchar **types;
4375   guint i, j, k;
4376
4377   g_return_val_if_fail (content_type != NULL, NULL);
4378
4379   types = get_list_of_mimetypes (content_type, TRUE);
4380
4381   blocklist = g_ptr_array_new ();
4382   results = g_ptr_array_new ();
4383   info = NULL;
4384
4385   desktop_file_dirs_lock ();
4386
4387   for (i = 0; types[i]; i++)
4388     {
4389       /* Collect all the default apps for this type */
4390       for (j = 0; j < desktop_file_dirs->len; j++)
4391         desktop_file_dir_default_lookup (g_ptr_array_index (desktop_file_dirs, j), types[i], results);
4392
4393       /* Consider the associations as well... */
4394       for (j = 0; j < desktop_file_dirs->len; j++)
4395         desktop_file_dir_mime_lookup (g_ptr_array_index (desktop_file_dirs, j), types[i], results, blocklist);
4396
4397       /* (If any), see if one of those apps is installed... */
4398       for (j = 0; j < results->len; j++)
4399         {
4400           const gchar *desktop_id = g_ptr_array_index (results, j);
4401
4402           for (k = 0; k < desktop_file_dirs->len; k++)
4403             {
4404               info = (GAppInfo *) desktop_file_dir_get_app (g_ptr_array_index (desktop_file_dirs, k), desktop_id);
4405
4406               if (info)
4407                 {
4408                   if (!must_support_uris || g_app_info_supports_uris (info))
4409                     goto out;
4410
4411                   g_clear_object (&info);
4412                 }
4413             }
4414         }
4415
4416       /* Reset the list, ready to try again with the next (parent)
4417        * mimetype, but keep the blocklist in place.
4418        */
4419       g_ptr_array_set_size (results, 0);
4420     }
4421
4422 out:
4423   desktop_file_dirs_unlock ();
4424
4425   g_ptr_array_unref (blocklist);
4426   g_ptr_array_unref (results);
4427   g_strfreev (types);
4428
4429   return info;
4430 }
4431
4432 /**
4433  * g_app_info_get_default_for_uri_scheme:
4434  * @uri_scheme: a string containing a URI scheme.
4435  *
4436  * Gets the default application for handling URIs with
4437  * the given URI scheme. A URI scheme is the initial part
4438  * of the URI, up to but not including the ':', e.g. "http",
4439  * "ftp" or "sip".
4440  *
4441  * Returns: (transfer full) (nullable): #GAppInfo for given @uri_scheme or
4442  *     %NULL on error.
4443  */
4444 GAppInfo *
4445 g_app_info_get_default_for_uri_scheme (const char *uri_scheme)
4446 {
4447   GAppInfo *app_info;
4448   char *content_type, *scheme_down;
4449
4450   scheme_down = g_ascii_strdown (uri_scheme, -1);
4451   content_type = g_strdup_printf ("x-scheme-handler/%s", scheme_down);
4452   g_free (scheme_down);
4453   app_info = g_app_info_get_default_for_type (content_type, FALSE);
4454   g_free (content_type);
4455
4456   return app_info;
4457 }
4458
4459 /* "Get all" API {{{2 */
4460
4461 /**
4462  * g_desktop_app_info_get_implementations:
4463  * @interface: the name of the interface
4464  *
4465  * Gets all applications that implement @interface.
4466  *
4467  * An application implements an interface if that interface is listed in
4468  * the Implements= line of the desktop file of the application.
4469  *
4470  * Returns: (element-type GDesktopAppInfo) (transfer full): a list of #GDesktopAppInfo
4471  * objects.
4472  *
4473  * Since: 2.42
4474  **/
4475 GList *
4476 g_desktop_app_info_get_implementations (const gchar *interface)
4477 {
4478   GList *result = NULL;
4479   GList **ptr;
4480   guint i;
4481
4482   desktop_file_dirs_lock ();
4483
4484   for (i = 0; i < desktop_file_dirs->len; i++)
4485     desktop_file_dir_get_implementations (g_ptr_array_index (desktop_file_dirs, i), &result, interface);
4486
4487   desktop_file_dirs_unlock ();
4488
4489   ptr = &result;
4490   while (*ptr)
4491     {
4492       gchar *name = (*ptr)->data;
4493       GDesktopAppInfo *app;
4494
4495       app = g_desktop_app_info_new (name);
4496       g_free (name);
4497
4498       if (app)
4499         {
4500           (*ptr)->data = app;
4501           ptr = &(*ptr)->next;
4502         }
4503       else
4504         *ptr = g_list_delete_link (*ptr, *ptr);
4505     }
4506
4507   return result;
4508 }
4509
4510 /**
4511  * g_desktop_app_info_search:
4512  * @search_string: the search string to use
4513  *
4514  * Searches desktop files for ones that match @search_string.
4515  *
4516  * The return value is an array of strvs.  Each strv contains a list of
4517  * applications that matched @search_string with an equal score.  The
4518  * outer list is sorted by score so that the first strv contains the
4519  * best-matching applications, and so on.
4520  * The algorithm for determining matches is undefined and may change at
4521  * any time.
4522  *
4523  * None of the search results are subjected to the normal validation
4524  * checks performed by g_desktop_app_info_new() (for example, checking that
4525  * the executable referenced by a result exists), and so it is possible for
4526  * g_desktop_app_info_new() to return %NULL when passed an app ID returned by
4527  * this function. It is expected that calling code will do this when
4528  * subsequently creating a #GDesktopAppInfo for each result.
4529  *
4530  * Returns: (array zero-terminated=1) (element-type GStrv) (transfer full): a
4531  *   list of strvs.  Free each item with g_strfreev() and free the outer
4532  *   list with g_free().
4533  */
4534 gchar ***
4535 g_desktop_app_info_search (const gchar *search_string)
4536 {
4537   gchar **search_tokens;
4538   gint last_category = -1;
4539   gchar ***results;
4540   gint n_categories = 0;
4541   gint start_of_category;
4542   gint i, j;
4543   guint k;
4544
4545   search_tokens = g_str_tokenize_and_fold (search_string, NULL, NULL);
4546
4547   desktop_file_dirs_lock ();
4548
4549   reset_total_search_results ();
4550
4551   for (k = 0; k < desktop_file_dirs->len; k++)
4552     {
4553       for (j = 0; search_tokens[j]; j++)
4554         {
4555           desktop_file_dir_search (g_ptr_array_index (desktop_file_dirs, k), search_tokens[j]);
4556           merge_token_results (j == 0);
4557         }
4558       merge_directory_results ();
4559     }
4560
4561   sort_total_search_results ();
4562
4563   /* Count the total number of unique categories */
4564   for (i = 0; i < static_total_results_size; i++)
4565     if (static_total_results[i].category != last_category)
4566       {
4567         last_category = static_total_results[i].category;
4568         n_categories++;
4569       }
4570
4571   results = g_new (gchar **, n_categories + 1);
4572
4573   /* Start loading into the results list */
4574   start_of_category = 0;
4575   for (i = 0; i < n_categories; i++)
4576     {
4577       gint n_items_in_category = 0;
4578       gint this_category;
4579       gint j;
4580
4581       this_category = static_total_results[start_of_category].category;
4582
4583       while (start_of_category + n_items_in_category < static_total_results_size &&
4584              static_total_results[start_of_category + n_items_in_category].category == this_category)
4585         n_items_in_category++;
4586
4587       results[i] = g_new (gchar *, n_items_in_category + 1);
4588       for (j = 0; j < n_items_in_category; j++)
4589         results[i][j] = g_strdup (static_total_results[start_of_category + j].app_name);
4590       results[i][j] = NULL;
4591
4592       start_of_category += n_items_in_category;
4593     }
4594   results[i] = NULL;
4595
4596   desktop_file_dirs_unlock ();
4597
4598   g_strfreev (search_tokens);
4599
4600   return results;
4601 }
4602
4603 /**
4604  * g_app_info_get_all:
4605  *
4606  * Gets a list of all of the applications currently registered
4607  * on this system.
4608  *
4609  * For desktop files, this includes applications that have
4610  * `NoDisplay=true` set or are excluded from display by means
4611  * of `OnlyShowIn` or `NotShowIn`. See g_app_info_should_show().
4612  * The returned list does not include applications which have
4613  * the `Hidden` key set.
4614  *
4615  * Returns: (element-type GAppInfo) (transfer full): a newly allocated #GList of references to #GAppInfos.
4616  **/
4617 GList *
4618 g_app_info_get_all (void)
4619 {
4620   GHashTable *apps;
4621   GHashTableIter iter;
4622   gpointer value;
4623   guint i;
4624   GList *infos;
4625
4626   apps = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, NULL);
4627
4628   desktop_file_dirs_lock ();
4629
4630   for (i = 0; i < desktop_file_dirs->len; i++)
4631     desktop_file_dir_get_all (g_ptr_array_index (desktop_file_dirs, i), apps);
4632
4633   desktop_file_dirs_unlock ();
4634
4635   infos = NULL;
4636   g_hash_table_iter_init (&iter, apps);
4637   while (g_hash_table_iter_next (&iter, NULL, &value))
4638     {
4639       if (value)
4640         infos = g_list_prepend (infos, value);
4641     }
4642
4643   g_hash_table_destroy (apps);
4644
4645   return infos;
4646 }
4647
4648 /* GDesktopAppInfoLookup interface {{{2 */
4649
4650 /**
4651  * GDesktopAppInfoLookup:
4652  *
4653  * #GDesktopAppInfoLookup is an opaque data structure and can only be accessed
4654  * using the following functions.
4655  *
4656  * Deprecated: 2.28: The #GDesktopAppInfoLookup interface is deprecated and
4657  *    unused by GIO.
4658  **/
4659
4660 G_GNUC_BEGIN_IGNORE_DEPRECATIONS
4661
4662 typedef GDesktopAppInfoLookupIface GDesktopAppInfoLookupInterface;
4663 G_DEFINE_INTERFACE (GDesktopAppInfoLookup, g_desktop_app_info_lookup, G_TYPE_OBJECT)
4664
4665 static void
4666 g_desktop_app_info_lookup_default_init (GDesktopAppInfoLookupInterface *iface)
4667 {
4668 }
4669
4670 /* "Get for mime type" APIs {{{2 */
4671
4672 /**
4673  * g_desktop_app_info_lookup_get_default_for_uri_scheme:
4674  * @lookup: a #GDesktopAppInfoLookup
4675  * @uri_scheme: a string containing a URI scheme.
4676  *
4677  * Gets the default application for launching applications
4678  * using this URI scheme for a particular #GDesktopAppInfoLookup
4679  * implementation.
4680  *
4681  * The #GDesktopAppInfoLookup interface and this function is used
4682  * to implement g_app_info_get_default_for_uri_scheme() backends
4683  * in a GIO module. There is no reason for applications to use it
4684  * directly. Applications should use g_app_info_get_default_for_uri_scheme().
4685  *
4686  * Returns: (transfer full) (nullable): #GAppInfo for given @uri_scheme or
4687  *    %NULL on error.
4688  *
4689  * Deprecated: 2.28: The #GDesktopAppInfoLookup interface is deprecated and
4690  *    unused by GIO.
4691  */
4692 GAppInfo *
4693 g_desktop_app_info_lookup_get_default_for_uri_scheme (GDesktopAppInfoLookup *lookup,
4694                                                       const char            *uri_scheme)
4695 {
4696   GDesktopAppInfoLookupIface *iface;
4697
4698   g_return_val_if_fail (G_IS_DESKTOP_APP_INFO_LOOKUP (lookup), NULL);
4699
4700   iface = G_DESKTOP_APP_INFO_LOOKUP_GET_IFACE (lookup);
4701
4702   return (* iface->get_default_for_uri_scheme) (lookup, uri_scheme);
4703 }
4704
4705 G_GNUC_END_IGNORE_DEPRECATIONS
4706
4707 /* Misc getter APIs {{{2 */
4708
4709 /**
4710  * g_desktop_app_info_get_startup_wm_class:
4711  * @info: a #GDesktopAppInfo that supports startup notify
4712  *
4713  * Retrieves the StartupWMClass field from @info. This represents the
4714  * WM_CLASS property of the main window of the application, if launched
4715  * through @info.
4716  *
4717  * Returns: (nullable) (transfer none): the startup WM class, or %NULL if none is set
4718  * in the desktop file.
4719  *
4720  * Since: 2.34
4721  */
4722 const char *
4723 g_desktop_app_info_get_startup_wm_class (GDesktopAppInfo *info)
4724 {
4725   g_return_val_if_fail (G_IS_DESKTOP_APP_INFO (info), NULL);
4726
4727   return info->startup_wm_class;
4728 }
4729
4730 /**
4731  * g_desktop_app_info_get_string:
4732  * @info: a #GDesktopAppInfo
4733  * @key: the key to look up
4734  *
4735  * Looks up a string value in the keyfile backing @info.
4736  *
4737  * The @key is looked up in the "Desktop Entry" group.
4738  *
4739  * Returns: (nullable): a newly allocated string, or %NULL if the key
4740  *     is not found
4741  *
4742  * Since: 2.36
4743  */
4744 char *
4745 g_desktop_app_info_get_string (GDesktopAppInfo *info,
4746                                const char      *key)
4747 {
4748   g_return_val_if_fail (G_IS_DESKTOP_APP_INFO (info), NULL);
4749
4750   return g_key_file_get_string (info->keyfile,
4751                                 G_KEY_FILE_DESKTOP_GROUP, key, NULL);
4752 }
4753
4754 /**
4755  * g_desktop_app_info_get_locale_string:
4756  * @info: a #GDesktopAppInfo
4757  * @key: the key to look up
4758  *
4759  * Looks up a localized string value in the keyfile backing @info
4760  * translated to the current locale.
4761  *
4762  * The @key is looked up in the "Desktop Entry" group.
4763  *
4764  * Returns: (nullable): a newly allocated string, or %NULL if the key
4765  *     is not found
4766  *
4767  * Since: 2.56
4768  */
4769 char *
4770 g_desktop_app_info_get_locale_string (GDesktopAppInfo *info,
4771                                       const char      *key)
4772 {
4773   g_return_val_if_fail (G_IS_DESKTOP_APP_INFO (info), NULL);
4774   g_return_val_if_fail (key != NULL && *key != '\0', NULL);
4775
4776   return g_key_file_get_locale_string (info->keyfile,
4777                                        G_KEY_FILE_DESKTOP_GROUP,
4778                                        key, NULL, NULL);
4779 }
4780
4781 /**
4782  * g_desktop_app_info_get_boolean:
4783  * @info: a #GDesktopAppInfo
4784  * @key: the key to look up
4785  *
4786  * Looks up a boolean value in the keyfile backing @info.
4787  *
4788  * The @key is looked up in the "Desktop Entry" group.
4789  *
4790  * Returns: the boolean value, or %FALSE if the key
4791  *     is not found
4792  *
4793  * Since: 2.36
4794  */
4795 gboolean
4796 g_desktop_app_info_get_boolean (GDesktopAppInfo *info,
4797                                 const char      *key)
4798 {
4799   g_return_val_if_fail (G_IS_DESKTOP_APP_INFO (info), FALSE);
4800
4801   return g_key_file_get_boolean (info->keyfile,
4802                                  G_KEY_FILE_DESKTOP_GROUP, key, NULL);
4803 }
4804
4805 /**
4806  * g_desktop_app_info_get_string_list:
4807  * @info: a #GDesktopAppInfo
4808  * @key: the key to look up
4809  * @length: (out) (optional): return location for the number of returned strings, or %NULL
4810  *
4811  * Looks up a string list value in the keyfile backing @info.
4812  *
4813  * The @key is looked up in the "Desktop Entry" group.
4814  *
4815  * Returns: (array zero-terminated=1 length=length) (element-type utf8) (transfer full):
4816  *  a %NULL-terminated string array or %NULL if the specified
4817  *  key cannot be found. The array should be freed with g_strfreev().
4818  *
4819  * Since: 2.60
4820  */
4821 gchar **
4822 g_desktop_app_info_get_string_list (GDesktopAppInfo *info,
4823                                     const char      *key,
4824                                     gsize           *length)
4825 {
4826   g_return_val_if_fail (G_IS_DESKTOP_APP_INFO (info), NULL);
4827
4828   return g_key_file_get_string_list (info->keyfile,
4829                                      G_KEY_FILE_DESKTOP_GROUP, key, length, NULL);
4830 }
4831
4832 /**
4833  * g_desktop_app_info_has_key:
4834  * @info: a #GDesktopAppInfo
4835  * @key: the key to look up
4836  *
4837  * Returns whether @key exists in the "Desktop Entry" group
4838  * of the keyfile backing @info.
4839  *
4840  * Returns: %TRUE if the @key exists
4841  *
4842  * Since: 2.36
4843  */
4844 gboolean
4845 g_desktop_app_info_has_key (GDesktopAppInfo *info,
4846                             const char      *key)
4847 {
4848   g_return_val_if_fail (G_IS_DESKTOP_APP_INFO (info), FALSE);
4849
4850   return g_key_file_has_key (info->keyfile,
4851                              G_KEY_FILE_DESKTOP_GROUP, key, NULL);
4852 }
4853
4854 /* Desktop actions support {{{2 */
4855
4856 /**
4857  * g_desktop_app_info_list_actions:
4858  * @info: a #GDesktopAppInfo
4859  *
4860  * Returns the list of "additional application actions" supported on the
4861  * desktop file, as per the desktop file specification.
4862  *
4863  * As per the specification, this is the list of actions that are
4864  * explicitly listed in the "Actions" key of the [Desktop Entry] group.
4865  *
4866  * Returns: (array zero-terminated=1) (element-type utf8) (transfer none): a list of strings, always non-%NULL
4867  *
4868  * Since: 2.38
4869  **/
4870 const gchar * const *
4871 g_desktop_app_info_list_actions (GDesktopAppInfo *info)
4872 {
4873   g_return_val_if_fail (G_IS_DESKTOP_APP_INFO (info), NULL);
4874
4875   return (const gchar **) info->actions;
4876 }
4877
4878 static gboolean
4879 app_info_has_action (GDesktopAppInfo *info,
4880                      const gchar     *action_name)
4881 {
4882   gint i;
4883
4884   for (i = 0; info->actions[i]; i++)
4885     if (g_str_equal (info->actions[i], action_name))
4886       return TRUE;
4887
4888   return FALSE;
4889 }
4890
4891 /**
4892  * g_desktop_app_info_get_action_name:
4893  * @info: a #GDesktopAppInfo
4894  * @action_name: the name of the action as from
4895  *   g_desktop_app_info_list_actions()
4896  *
4897  * Gets the user-visible display name of the "additional application
4898  * action" specified by @action_name.
4899  *
4900  * This corresponds to the "Name" key within the keyfile group for the
4901  * action.
4902  *
4903  * Returns: (transfer full): the locale-specific action name
4904  *
4905  * Since: 2.38
4906  */
4907 gchar *
4908 g_desktop_app_info_get_action_name (GDesktopAppInfo *info,
4909                                     const gchar     *action_name)
4910 {
4911   gchar *group_name;
4912   gchar *result;
4913
4914   g_return_val_if_fail (G_IS_DESKTOP_APP_INFO (info), NULL);
4915   g_return_val_if_fail (action_name != NULL, NULL);
4916   g_return_val_if_fail (app_info_has_action (info, action_name), NULL);
4917
4918   group_name = g_strdup_printf ("Desktop Action %s", action_name);
4919   result = g_key_file_get_locale_string (info->keyfile, group_name, "Name", NULL, NULL);
4920   g_free (group_name);
4921
4922   /* The spec says that the Name field must be given.
4923    *
4924    * If it's not, let's follow the behaviour of our get_name()
4925    * implementation above and never return %NULL.
4926    */
4927   if (result == NULL)
4928     result = g_strdup (_("Unnamed"));
4929
4930   return result;
4931 }
4932
4933 /**
4934  * g_desktop_app_info_launch_action:
4935  * @info: a #GDesktopAppInfo
4936  * @action_name: the name of the action as from
4937  *   g_desktop_app_info_list_actions()
4938  * @launch_context: (nullable): a #GAppLaunchContext
4939  *
4940  * Activates the named application action.
4941  *
4942  * You may only call this function on action names that were
4943  * returned from g_desktop_app_info_list_actions().
4944  *
4945  * Note that if the main entry of the desktop file indicates that the
4946  * application supports startup notification, and @launch_context is
4947  * non-%NULL, then startup notification will be used when activating the
4948  * action (and as such, invocation of the action on the receiving side
4949  * must signal the end of startup notification when it is completed).
4950  * This is the expected behaviour of applications declaring additional
4951  * actions, as per the desktop file specification.
4952  *
4953  * As with g_app_info_launch() there is no way to detect failures that
4954  * occur while using this function.
4955  *
4956  * Since: 2.38
4957  */
4958 void
4959 g_desktop_app_info_launch_action (GDesktopAppInfo   *info,
4960                                   const gchar       *action_name,
4961                                   GAppLaunchContext *launch_context)
4962 {
4963   GDBusConnection *session_bus;
4964
4965   g_return_if_fail (G_IS_DESKTOP_APP_INFO (info));
4966   g_return_if_fail (action_name != NULL);
4967   g_return_if_fail (app_info_has_action (info, action_name));
4968
4969   session_bus = g_bus_get_sync (G_BUS_TYPE_SESSION, NULL, NULL);
4970
4971   if (session_bus && info->app_id)
4972     {
4973       gchar *object_path;
4974
4975       object_path = object_path_from_appid (info->app_id);
4976       g_dbus_connection_call (session_bus, info->app_id, object_path,
4977                               "org.freedesktop.Application", "ActivateAction",
4978                               g_variant_new ("(sav@a{sv})", action_name, NULL,
4979                                              g_desktop_app_info_make_platform_data (info, NULL, launch_context)),
4980                               NULL, G_DBUS_CALL_FLAGS_NONE, -1, NULL, NULL, NULL);
4981       g_free (object_path);
4982     }
4983   else
4984     {
4985       gchar *group_name;
4986       gchar *exec_line;
4987
4988       group_name = g_strdup_printf ("Desktop Action %s", action_name);
4989       exec_line = g_key_file_get_string (info->keyfile, group_name, "Exec", NULL);
4990       g_free (group_name);
4991
4992       if (exec_line)
4993         g_desktop_app_info_launch_uris_with_spawn (info, session_bus, exec_line, NULL, launch_context,
4994                                                    _SPAWN_FLAGS_DEFAULT, NULL, NULL, NULL, NULL,
4995                                                    -1, -1, -1, NULL);
4996
4997       g_free (exec_line);
4998     }
4999
5000   if (session_bus != NULL)
5001     {
5002       g_dbus_connection_flush (session_bus, NULL, NULL, NULL);
5003       g_object_unref (session_bus);
5004     }
5005 }
5006 /* Epilogue {{{1 */
5007
5008 /* vim:set foldmethod=marker: */