Coverage Report

Created: 2025-07-23 08:13

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