2007-11-26 17:13:05 +01:00
|
|
|
/* GIO - GLib Input, Output and Streaming Library
|
|
|
|
*
|
|
|
|
* Copyright (C) 2006-2007 Red Hat, Inc.
|
|
|
|
* Copyright © 2007 Ryan Lortie
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General
|
|
|
|
* Public License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place, Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*
|
|
|
|
* Author: Alexander Larsson <alexl@redhat.com>
|
|
|
|
*/
|
|
|
|
|
2008-06-22 17:10:51 +02:00
|
|
|
#include "config.h"
|
2007-11-26 17:13:05 +01:00
|
|
|
|
|
|
|
#include <errno.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <sys/wait.h>
|
|
|
|
|
2007-12-27 05:23:57 +01:00
|
|
|
#ifdef HAVE_CRT_EXTERNS_H
|
|
|
|
#include <crt_externs.h>
|
|
|
|
#endif
|
|
|
|
|
2007-11-26 17:13:05 +01:00
|
|
|
#include "gcontenttypeprivate.h"
|
|
|
|
#include "gdesktopappinfo.h"
|
2008-07-01 08:32:35 +02:00
|
|
|
#include "gfile.h"
|
2007-11-26 17:13:05 +01:00
|
|
|
#include "gioerror.h"
|
|
|
|
#include "gthemedicon.h"
|
|
|
|
#include "gfileicon.h"
|
|
|
|
#include <glib/gstdio.h>
|
|
|
|
#include "glibintl.h"
|
2008-01-29 16:11:54 +01:00
|
|
|
#include "giomodule-priv.h"
|
2008-07-01 08:32:35 +02:00
|
|
|
#include "gappinfo.h"
|
2007-11-26 17:13:05 +01:00
|
|
|
|
2007-11-28 13:39:07 +01:00
|
|
|
#include "gioalias.h"
|
|
|
|
|
2007-12-18 03:52:11 +01:00
|
|
|
/**
|
|
|
|
* SECTION:gdesktopappinfo
|
|
|
|
* @short_description: Application information from desktop files
|
2010-05-09 05:28:17 +02:00
|
|
|
* @include: gio/gdesktopappinfo.h
|
|
|
|
*
|
2007-12-18 03:52:11 +01:00
|
|
|
* #GDesktopAppInfo is an implementation of #GAppInfo based on
|
|
|
|
* desktop files.
|
2010-05-09 05:28:17 +02:00
|
|
|
*
|
|
|
|
* Note that <filename><gio/gdesktopappinfo.h></filename> belongs to
|
|
|
|
* the UNIX-specific GIO interfaces, thus you have to use the
|
2009-01-08 02:32:15 +01:00
|
|
|
* <filename>gio-unix-2.0.pc</filename> pkg-config file when using it.
|
2008-12-31 08:47:19 +01:00
|
|
|
*/
|
2007-12-18 03:52:11 +01:00
|
|
|
|
2010-05-09 05:28:17 +02:00
|
|
|
#define DEFAULT_APPLICATIONS_GROUP "Default Applications"
|
|
|
|
#define ADDED_ASSOCIATIONS_GROUP "Added Associations"
|
|
|
|
#define REMOVED_ASSOCIATIONS_GROUP "Removed Associations"
|
2007-11-26 17:13:05 +01:00
|
|
|
#define MIME_CACHE_GROUP "MIME Cache"
|
2009-11-18 23:37:47 +01:00
|
|
|
#define FULL_NAME_KEY "X-GNOME-FullName"
|
2007-11-26 17:13:05 +01:00
|
|
|
|
2008-01-29 15:07:07 +01:00
|
|
|
static void g_desktop_app_info_iface_init (GAppInfoIface *iface);
|
2008-10-13 12:02:30 +02:00
|
|
|
static GList * get_all_desktop_entries_for_mime_type (const char *base_mime_type,
|
|
|
|
const char **except);
|
2008-01-29 15:07:07 +01:00
|
|
|
static void mime_info_cache_reload (const char *dir);
|
|
|
|
static gboolean g_desktop_app_info_ensure_saved (GDesktopAppInfo *info,
|
|
|
|
GError **error);
|
2007-11-26 17:13:05 +01:00
|
|
|
|
2007-12-30 06:21:05 +01:00
|
|
|
/**
|
|
|
|
* GDesktopAppInfo:
|
|
|
|
*
|
|
|
|
* Information about an installed application from a desktop file.
|
|
|
|
*/
|
2007-11-26 17:13:05 +01:00
|
|
|
struct _GDesktopAppInfo
|
|
|
|
{
|
|
|
|
GObject parent_instance;
|
|
|
|
|
|
|
|
char *desktop_id;
|
|
|
|
char *filename;
|
|
|
|
|
|
|
|
char *name;
|
|
|
|
/* FIXME: what about GenericName ? */
|
2009-11-18 23:37:47 +01:00
|
|
|
char *fullname;
|
2007-11-26 17:13:05 +01:00
|
|
|
char *comment;
|
|
|
|
char *icon_name;
|
|
|
|
GIcon *icon;
|
|
|
|
char **only_show_in;
|
|
|
|
char **not_show_in;
|
|
|
|
char *try_exec;
|
|
|
|
char *exec;
|
|
|
|
char *binary;
|
|
|
|
char *path;
|
|
|
|
|
|
|
|
guint nodisplay : 1;
|
|
|
|
guint hidden : 1;
|
|
|
|
guint terminal : 1;
|
|
|
|
guint startup_notify : 1;
|
2009-02-26 15:59:16 +01:00
|
|
|
guint no_fuse : 1;
|
2007-11-26 17:13:05 +01:00
|
|
|
/* FIXME: what about StartupWMClass ? */
|
|
|
|
};
|
|
|
|
|
|
|
|
G_DEFINE_TYPE_WITH_CODE (GDesktopAppInfo, g_desktop_app_info, G_TYPE_OBJECT,
|
|
|
|
G_IMPLEMENT_INTERFACE (G_TYPE_APP_INFO,
|
|
|
|
g_desktop_app_info_iface_init))
|
|
|
|
|
|
|
|
static gpointer
|
|
|
|
search_path_init (gpointer data)
|
|
|
|
{
|
|
|
|
char **args = NULL;
|
|
|
|
const char * const *data_dirs;
|
|
|
|
const char *user_data_dir;
|
|
|
|
int i, length, j;
|
|
|
|
|
|
|
|
data_dirs = g_get_system_data_dirs ();
|
|
|
|
length = g_strv_length ((char **) data_dirs);
|
|
|
|
|
|
|
|
args = g_new (char *, length + 2);
|
|
|
|
|
|
|
|
j = 0;
|
|
|
|
user_data_dir = g_get_user_data_dir ();
|
|
|
|
args[j++] = g_build_filename (user_data_dir, "applications", NULL);
|
|
|
|
for (i = 0; i < length; i++)
|
|
|
|
args[j++] = g_build_filename (data_dirs[i],
|
|
|
|
"applications", NULL);
|
|
|
|
args[j++] = NULL;
|
|
|
|
|
|
|
|
return args;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const char * const *
|
|
|
|
get_applications_search_path (void)
|
|
|
|
{
|
|
|
|
static GOnce once_init = G_ONCE_INIT;
|
|
|
|
return g_once (&once_init, search_path_init, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
g_desktop_app_info_finalize (GObject *object)
|
|
|
|
{
|
|
|
|
GDesktopAppInfo *info;
|
|
|
|
|
|
|
|
info = G_DESKTOP_APP_INFO (object);
|
|
|
|
|
|
|
|
g_free (info->desktop_id);
|
|
|
|
g_free (info->filename);
|
|
|
|
g_free (info->name);
|
2009-11-18 23:37:47 +01:00
|
|
|
g_free (info->fullname);
|
2007-11-26 17:13:05 +01:00
|
|
|
g_free (info->comment);
|
|
|
|
g_free (info->icon_name);
|
|
|
|
if (info->icon)
|
|
|
|
g_object_unref (info->icon);
|
|
|
|
g_strfreev (info->only_show_in);
|
|
|
|
g_strfreev (info->not_show_in);
|
|
|
|
g_free (info->try_exec);
|
|
|
|
g_free (info->exec);
|
|
|
|
g_free (info->binary);
|
|
|
|
g_free (info->path);
|
|
|
|
|
|
|
|
G_OBJECT_CLASS (g_desktop_app_info_parent_class)->finalize (object);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
g_desktop_app_info_class_init (GDesktopAppInfoClass *klass)
|
|
|
|
{
|
|
|
|
GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
|
|
|
|
|
|
|
|
gobject_class->finalize = g_desktop_app_info_finalize;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
g_desktop_app_info_init (GDesktopAppInfo *local)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2008-01-29 15:07:07 +01:00
|
|
|
static char *
|
|
|
|
binary_from_exec (const char *exec)
|
|
|
|
{
|
2008-01-30 12:27:02 +01:00
|
|
|
const char *p, *start;
|
2008-01-29 15:07:07 +01:00
|
|
|
|
|
|
|
p = exec;
|
|
|
|
while (*p == ' ')
|
|
|
|
p++;
|
|
|
|
start = p;
|
|
|
|
while (*p != ' ' && *p != 0)
|
|
|
|
p++;
|
|
|
|
|
|
|
|
return g_strndup (start, p - start);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2007-11-26 17:13:05 +01:00
|
|
|
/**
|
2008-07-02 18:23:23 +02:00
|
|
|
* g_desktop_app_info_new_from_keyfile:
|
|
|
|
* @key_file: an opened #GKeyFile
|
2007-11-26 17:13:05 +01:00
|
|
|
*
|
2007-12-17 08:04:51 +01:00
|
|
|
* Creates a new #GDesktopAppInfo.
|
|
|
|
*
|
2007-11-26 17:13:05 +01:00
|
|
|
* Returns: a new #GDesktopAppInfo or %NULL on error.
|
2008-07-02 18:23:23 +02:00
|
|
|
*
|
|
|
|
* Since: 2.18
|
2007-11-26 17:13:05 +01:00
|
|
|
**/
|
|
|
|
GDesktopAppInfo *
|
2008-07-02 18:23:23 +02:00
|
|
|
g_desktop_app_info_new_from_keyfile (GKeyFile *key_file)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GDesktopAppInfo *info;
|
|
|
|
char *start_group;
|
|
|
|
char *type;
|
|
|
|
char *try_exec;
|
|
|
|
|
|
|
|
start_group = g_key_file_get_start_group (key_file);
|
|
|
|
if (start_group == NULL || strcmp (start_group, G_KEY_FILE_DESKTOP_GROUP) != 0)
|
|
|
|
{
|
|
|
|
g_free (start_group);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
g_free (start_group);
|
|
|
|
|
|
|
|
type = g_key_file_get_string (key_file,
|
|
|
|
G_KEY_FILE_DESKTOP_GROUP,
|
|
|
|
G_KEY_FILE_DESKTOP_KEY_TYPE,
|
|
|
|
NULL);
|
|
|
|
if (type == NULL || strcmp (type, G_KEY_FILE_DESKTOP_TYPE_APPLICATION) != 0)
|
|
|
|
{
|
|
|
|
g_free (type);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
g_free (type);
|
|
|
|
|
|
|
|
try_exec = g_key_file_get_string (key_file,
|
|
|
|
G_KEY_FILE_DESKTOP_GROUP,
|
|
|
|
G_KEY_FILE_DESKTOP_KEY_TRY_EXEC,
|
|
|
|
NULL);
|
2008-04-16 18:48:23 +02:00
|
|
|
if (try_exec && try_exec[0] != '\0')
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
char *t;
|
|
|
|
t = g_find_program_in_path (try_exec);
|
|
|
|
if (t == NULL)
|
|
|
|
{
|
|
|
|
g_free (try_exec);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
g_free (t);
|
|
|
|
}
|
|
|
|
|
|
|
|
info = g_object_new (G_TYPE_DESKTOP_APP_INFO, NULL);
|
2008-07-02 18:23:23 +02:00
|
|
|
info->filename = NULL;
|
2007-11-26 17:13:05 +01:00
|
|
|
|
|
|
|
info->name = g_key_file_get_locale_string (key_file, G_KEY_FILE_DESKTOP_GROUP, G_KEY_FILE_DESKTOP_KEY_NAME, NULL, NULL);
|
2009-11-18 23:37:47 +01:00
|
|
|
info->fullname = g_key_file_get_locale_string (key_file, G_KEY_FILE_DESKTOP_GROUP, FULL_NAME_KEY, NULL, NULL);
|
2007-11-26 17:13:05 +01:00
|
|
|
info->comment = g_key_file_get_locale_string (key_file, G_KEY_FILE_DESKTOP_GROUP, G_KEY_FILE_DESKTOP_KEY_COMMENT, NULL, NULL);
|
|
|
|
info->nodisplay = g_key_file_get_boolean (key_file, G_KEY_FILE_DESKTOP_GROUP, G_KEY_FILE_DESKTOP_KEY_NO_DISPLAY, NULL) != FALSE;
|
|
|
|
info->icon_name = g_key_file_get_locale_string (key_file, G_KEY_FILE_DESKTOP_GROUP, G_KEY_FILE_DESKTOP_KEY_ICON, NULL, NULL);
|
|
|
|
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);
|
|
|
|
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);
|
|
|
|
info->try_exec = try_exec;
|
|
|
|
info->exec = g_key_file_get_string (key_file, G_KEY_FILE_DESKTOP_GROUP, G_KEY_FILE_DESKTOP_KEY_EXEC, NULL);
|
|
|
|
info->path = g_key_file_get_string (key_file, G_KEY_FILE_DESKTOP_GROUP, G_KEY_FILE_DESKTOP_KEY_PATH, NULL);
|
|
|
|
info->terminal = g_key_file_get_boolean (key_file, G_KEY_FILE_DESKTOP_GROUP, G_KEY_FILE_DESKTOP_KEY_TERMINAL, NULL) != FALSE;
|
|
|
|
info->startup_notify = g_key_file_get_boolean (key_file, G_KEY_FILE_DESKTOP_GROUP, G_KEY_FILE_DESKTOP_KEY_STARTUP_NOTIFY, NULL) != FALSE;
|
2009-02-26 15:59:16 +01:00
|
|
|
info->no_fuse = g_key_file_get_boolean (key_file, G_KEY_FILE_DESKTOP_GROUP, "X-GIO-NoFuse", NULL) != FALSE;
|
2007-11-26 17:13:05 +01:00
|
|
|
info->hidden = g_key_file_get_boolean (key_file, G_KEY_FILE_DESKTOP_GROUP, G_KEY_FILE_DESKTOP_KEY_HIDDEN, NULL) != FALSE;
|
2008-01-22 15:15:51 +01:00
|
|
|
|
2007-11-26 17:13:05 +01:00
|
|
|
info->icon = NULL;
|
|
|
|
if (info->icon_name)
|
|
|
|
{
|
|
|
|
if (g_path_is_absolute (info->icon_name))
|
|
|
|
{
|
|
|
|
GFile *file;
|
|
|
|
|
|
|
|
file = g_file_new_for_path (info->icon_name);
|
|
|
|
info->icon = g_file_icon_new (file);
|
|
|
|
g_object_unref (file);
|
|
|
|
}
|
|
|
|
else
|
2008-11-28 09:28:39 +01:00
|
|
|
{
|
|
|
|
char *p;
|
|
|
|
|
|
|
|
/* Work around a common mistake in desktop files */
|
|
|
|
if ((p = strrchr (info->icon_name, '.')) != NULL &&
|
|
|
|
(strcmp (p, ".png") == 0 ||
|
|
|
|
strcmp (p, ".xpm") == 0 ||
|
|
|
|
strcmp (p, ".svg") == 0))
|
|
|
|
*p = 0;
|
|
|
|
|
|
|
|
info->icon = g_themed_icon_new (info->icon_name);
|
|
|
|
}
|
2007-11-26 17:13:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (info->exec)
|
2008-01-29 15:07:07 +01:00
|
|
|
info->binary = binary_from_exec (info->exec);
|
2007-11-26 17:13:05 +01:00
|
|
|
|
2008-09-15 18:26:38 +02:00
|
|
|
if (info->path && info->path[0] == '\0')
|
|
|
|
{
|
|
|
|
g_free (info->path);
|
2008-09-16 11:13:19 +02:00
|
|
|
info->path = NULL;
|
2008-09-15 18:26:38 +02:00
|
|
|
}
|
|
|
|
|
2007-11-26 17:13:05 +01:00
|
|
|
return info;
|
|
|
|
}
|
|
|
|
|
2008-07-02 18:23:23 +02:00
|
|
|
/**
|
|
|
|
* g_desktop_app_info_new_from_filename:
|
2008-09-14 01:47:41 +02:00
|
|
|
* @filename: the path of a desktop file, in the GLib filename encoding
|
2008-07-02 18:23:23 +02:00
|
|
|
*
|
|
|
|
* Creates a new #GDesktopAppInfo.
|
|
|
|
*
|
|
|
|
* Returns: a new #GDesktopAppInfo or %NULL on error.
|
|
|
|
**/
|
|
|
|
GDesktopAppInfo *
|
|
|
|
g_desktop_app_info_new_from_filename (const char *filename)
|
|
|
|
{
|
|
|
|
GKeyFile *key_file;
|
|
|
|
GDesktopAppInfo *info = NULL;
|
|
|
|
|
|
|
|
key_file = g_key_file_new ();
|
|
|
|
|
|
|
|
if (g_key_file_load_from_file (key_file,
|
|
|
|
filename,
|
|
|
|
G_KEY_FILE_NONE,
|
|
|
|
NULL))
|
|
|
|
{
|
|
|
|
info = g_desktop_app_info_new_from_keyfile (key_file);
|
|
|
|
if (info)
|
|
|
|
info->filename = g_strdup (filename);
|
|
|
|
}
|
|
|
|
|
|
|
|
g_key_file_free (key_file);
|
|
|
|
|
|
|
|
return info;
|
|
|
|
}
|
|
|
|
|
2007-11-26 17:13:05 +01:00
|
|
|
/**
|
|
|
|
* g_desktop_app_info_new:
|
2007-12-12 13:19:02 +01:00
|
|
|
* @desktop_id: the desktop file id
|
2007-11-26 17:13:05 +01:00
|
|
|
*
|
2009-01-19 23:58:38 +01:00
|
|
|
* Creates a new #GDesktopAppInfo based on a desktop file id.
|
|
|
|
*
|
|
|
|
* A desktop file id is the basename of the desktop file, including the
|
|
|
|
* .desktop extension. GIO is looking for a desktop file with this name
|
|
|
|
* in the <filename>applications</filename> subdirectories of the XDG data
|
|
|
|
* directories (i.e. the directories specified in the
|
|
|
|
* <envar>XDG_DATA_HOME</envar> and <envar>XDG_DATA_DIRS</envar> environment
|
|
|
|
* variables). GIO also supports the prefix-to-subdirectory mapping that is
|
|
|
|
* described in the <ulink url="http://standards.freedesktop.org/menu-spec/latest/">Menu Spec</ulink>
|
|
|
|
* (i.e. a desktop id of kde-foo.desktop will match
|
|
|
|
* <filename>/usr/share/applications/kde/foo.desktop</filename>).
|
2007-12-17 08:04:51 +01:00
|
|
|
*
|
2007-12-12 13:19:02 +01:00
|
|
|
* Returns: a new #GDesktopAppInfo, or %NULL if no desktop file with that id
|
2009-01-19 23:58:38 +01:00
|
|
|
*/
|
2007-11-26 17:13:05 +01:00
|
|
|
GDesktopAppInfo *
|
2007-12-10 19:51:21 +01:00
|
|
|
g_desktop_app_info_new (const char *desktop_id)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GDesktopAppInfo *appinfo;
|
|
|
|
const char * const *dirs;
|
2008-01-22 17:16:32 +01:00
|
|
|
char *basename;
|
2007-11-26 17:13:05 +01:00
|
|
|
int i;
|
|
|
|
|
|
|
|
dirs = get_applications_search_path ();
|
|
|
|
|
2008-01-22 17:16:32 +01:00
|
|
|
basename = g_strdup (desktop_id);
|
|
|
|
|
2007-11-26 17:13:05 +01:00
|
|
|
for (i = 0; dirs[i] != NULL; i++)
|
|
|
|
{
|
|
|
|
char *filename;
|
|
|
|
char *p;
|
|
|
|
|
|
|
|
filename = g_build_filename (dirs[i], desktop_id, NULL);
|
2007-12-10 19:51:21 +01:00
|
|
|
appinfo = g_desktop_app_info_new_from_filename (filename);
|
2007-11-26 17:13:05 +01:00
|
|
|
g_free (filename);
|
|
|
|
if (appinfo != NULL)
|
2008-01-22 17:16:32 +01:00
|
|
|
goto found;
|
2007-11-26 17:13:05 +01:00
|
|
|
|
|
|
|
p = basename;
|
|
|
|
while ((p = strchr (p, '-')) != NULL)
|
|
|
|
{
|
|
|
|
*p = '/';
|
|
|
|
|
|
|
|
filename = g_build_filename (dirs[i], basename, NULL);
|
2007-12-10 19:51:21 +01:00
|
|
|
appinfo = g_desktop_app_info_new_from_filename (filename);
|
2007-11-26 17:13:05 +01:00
|
|
|
g_free (filename);
|
|
|
|
if (appinfo != NULL)
|
2008-01-22 17:16:32 +01:00
|
|
|
goto found;
|
2007-11-26 17:13:05 +01:00
|
|
|
*p = '-';
|
|
|
|
p++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-01-22 17:16:32 +01:00
|
|
|
g_free (basename);
|
2007-11-26 17:13:05 +01:00
|
|
|
return NULL;
|
|
|
|
|
|
|
|
found:
|
2008-01-22 17:16:32 +01:00
|
|
|
g_free (basename);
|
|
|
|
|
2007-11-26 17:13:05 +01:00
|
|
|
appinfo->desktop_id = g_strdup (desktop_id);
|
|
|
|
|
2007-12-10 19:51:21 +01:00
|
|
|
if (g_desktop_app_info_get_is_hidden (appinfo))
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
g_object_unref (appinfo);
|
|
|
|
appinfo = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return appinfo;
|
|
|
|
}
|
|
|
|
|
|
|
|
static GAppInfo *
|
|
|
|
g_desktop_app_info_dup (GAppInfo *appinfo)
|
|
|
|
{
|
|
|
|
GDesktopAppInfo *info = G_DESKTOP_APP_INFO (appinfo);
|
|
|
|
GDesktopAppInfo *new_info;
|
|
|
|
|
|
|
|
new_info = g_object_new (G_TYPE_DESKTOP_APP_INFO, NULL);
|
|
|
|
|
|
|
|
new_info->filename = g_strdup (info->filename);
|
|
|
|
new_info->desktop_id = g_strdup (info->desktop_id);
|
|
|
|
|
|
|
|
new_info->name = g_strdup (info->name);
|
2009-11-18 23:37:47 +01:00
|
|
|
new_info->fullname = g_strdup (info->fullname);
|
2007-11-26 17:13:05 +01:00
|
|
|
new_info->comment = g_strdup (info->comment);
|
|
|
|
new_info->nodisplay = info->nodisplay;
|
|
|
|
new_info->icon_name = g_strdup (info->icon_name);
|
2009-05-04 21:32:35 +02:00
|
|
|
if (info->icon)
|
|
|
|
new_info->icon = g_object_ref (info->icon);
|
2007-11-26 17:13:05 +01:00
|
|
|
new_info->only_show_in = g_strdupv (info->only_show_in);
|
|
|
|
new_info->not_show_in = g_strdupv (info->not_show_in);
|
|
|
|
new_info->try_exec = g_strdup (info->try_exec);
|
|
|
|
new_info->exec = g_strdup (info->exec);
|
|
|
|
new_info->binary = g_strdup (info->binary);
|
|
|
|
new_info->path = g_strdup (info->path);
|
|
|
|
new_info->hidden = info->hidden;
|
|
|
|
new_info->terminal = info->terminal;
|
|
|
|
new_info->startup_notify = info->startup_notify;
|
|
|
|
|
|
|
|
return G_APP_INFO (new_info);
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
g_desktop_app_info_equal (GAppInfo *appinfo1,
|
|
|
|
GAppInfo *appinfo2)
|
|
|
|
{
|
|
|
|
GDesktopAppInfo *info1 = G_DESKTOP_APP_INFO (appinfo1);
|
|
|
|
GDesktopAppInfo *info2 = G_DESKTOP_APP_INFO (appinfo2);
|
|
|
|
|
|
|
|
if (info1->desktop_id == NULL ||
|
|
|
|
info2->desktop_id == NULL)
|
2008-02-01 13:02:52 +01:00
|
|
|
return info1 == info2;
|
2007-11-26 17:13:05 +01:00
|
|
|
|
|
|
|
return strcmp (info1->desktop_id, info2->desktop_id) == 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const char *
|
|
|
|
g_desktop_app_info_get_id (GAppInfo *appinfo)
|
|
|
|
{
|
|
|
|
GDesktopAppInfo *info = G_DESKTOP_APP_INFO (appinfo);
|
|
|
|
|
|
|
|
return info->desktop_id;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const char *
|
|
|
|
g_desktop_app_info_get_name (GAppInfo *appinfo)
|
|
|
|
{
|
|
|
|
GDesktopAppInfo *info = G_DESKTOP_APP_INFO (appinfo);
|
|
|
|
|
|
|
|
if (info->name == NULL)
|
|
|
|
return _("Unnamed");
|
|
|
|
return info->name;
|
|
|
|
}
|
|
|
|
|
2009-11-18 23:37:47 +01:00
|
|
|
static const char *
|
|
|
|
g_desktop_app_info_get_display_name (GAppInfo *appinfo)
|
|
|
|
{
|
|
|
|
GDesktopAppInfo *info = G_DESKTOP_APP_INFO (appinfo);
|
|
|
|
|
|
|
|
if (info->fullname == NULL)
|
|
|
|
return g_desktop_app_info_get_name (appinfo);
|
|
|
|
return info->fullname;
|
|
|
|
}
|
|
|
|
|
2007-11-26 17:13:05 +01:00
|
|
|
/**
|
|
|
|
* g_desktop_app_info_get_is_hidden:
|
2007-12-12 13:19:02 +01:00
|
|
|
* @info: a #GDesktopAppInfo.
|
|
|
|
*
|
|
|
|
* A desktop file is hidden if the Hidden key in it is
|
|
|
|
* set to True.
|
|
|
|
*
|
2007-11-26 17:13:05 +01:00
|
|
|
* Returns: %TRUE if hidden, %FALSE otherwise.
|
|
|
|
**/
|
|
|
|
gboolean
|
2007-12-10 19:51:21 +01:00
|
|
|
g_desktop_app_info_get_is_hidden (GDesktopAppInfo *info)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
return info->hidden;
|
|
|
|
}
|
|
|
|
|
2010-03-14 00:11:31 +01:00
|
|
|
/**
|
|
|
|
* g_desktop_app_info_get_filename:
|
|
|
|
* @info: a #GDesktopAppInfo
|
|
|
|
*
|
|
|
|
* When @info was created from a known filename, return it. In some
|
|
|
|
* situations such as the #GDesktopAppInfo returned from
|
|
|
|
* g_desktop_app_info_new_from_keyfile(), this function will return %NULL.
|
|
|
|
*
|
|
|
|
* Returns: The full path to the file for @info, or %NULL if not known.
|
|
|
|
* Since: 2.24
|
|
|
|
*/
|
|
|
|
const char *
|
|
|
|
g_desktop_app_info_get_filename (GDesktopAppInfo *info)
|
|
|
|
{
|
|
|
|
return info->filename;
|
|
|
|
}
|
|
|
|
|
2007-11-26 17:13:05 +01:00
|
|
|
static const char *
|
|
|
|
g_desktop_app_info_get_description (GAppInfo *appinfo)
|
|
|
|
{
|
|
|
|
GDesktopAppInfo *info = G_DESKTOP_APP_INFO (appinfo);
|
|
|
|
|
|
|
|
return info->comment;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const char *
|
|
|
|
g_desktop_app_info_get_executable (GAppInfo *appinfo)
|
|
|
|
{
|
|
|
|
GDesktopAppInfo *info = G_DESKTOP_APP_INFO (appinfo);
|
|
|
|
|
|
|
|
return info->binary;
|
|
|
|
}
|
|
|
|
|
2008-11-29 00:16:45 +01:00
|
|
|
static const char *
|
|
|
|
g_desktop_app_info_get_commandline (GAppInfo *appinfo)
|
|
|
|
{
|
|
|
|
GDesktopAppInfo *info = G_DESKTOP_APP_INFO (appinfo);
|
|
|
|
|
|
|
|
return info->exec;
|
|
|
|
}
|
|
|
|
|
2007-11-26 17:13:05 +01:00
|
|
|
static GIcon *
|
|
|
|
g_desktop_app_info_get_icon (GAppInfo *appinfo)
|
|
|
|
{
|
|
|
|
GDesktopAppInfo *info = G_DESKTOP_APP_INFO (appinfo);
|
|
|
|
|
|
|
|
return info->icon;
|
|
|
|
}
|
|
|
|
|
|
|
|
static char *
|
2008-01-30 12:27:02 +01:00
|
|
|
expand_macro_single (char macro, char *uri)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
2008-01-30 12:27:02 +01:00
|
|
|
GFile *file;
|
2007-11-26 17:13:05 +01:00
|
|
|
char *result = NULL;
|
2008-09-21 02:00:18 +02:00
|
|
|
char *path, *name;
|
2007-11-26 17:13:05 +01:00
|
|
|
|
2008-01-30 12:27:02 +01:00
|
|
|
file = g_file_new_for_uri (uri);
|
2007-11-26 17:13:05 +01:00
|
|
|
path = g_file_get_path (file);
|
2008-01-30 12:27:02 +01:00
|
|
|
g_object_unref (file);
|
2007-11-26 17:13:05 +01:00
|
|
|
|
|
|
|
switch (macro)
|
|
|
|
{
|
|
|
|
case 'u':
|
|
|
|
case 'U':
|
|
|
|
result = g_shell_quote (uri);
|
|
|
|
break;
|
|
|
|
case 'f':
|
|
|
|
case 'F':
|
|
|
|
if (path)
|
|
|
|
result = g_shell_quote (path);
|
|
|
|
break;
|
|
|
|
case 'd':
|
|
|
|
case 'D':
|
|
|
|
if (path)
|
2008-09-21 02:00:18 +02:00
|
|
|
{
|
|
|
|
name = g_path_get_dirname (path);
|
|
|
|
result = g_shell_quote (name);
|
|
|
|
g_free (name);
|
|
|
|
}
|
2007-11-26 17:13:05 +01:00
|
|
|
break;
|
|
|
|
case 'n':
|
|
|
|
case 'N':
|
|
|
|
if (path)
|
2008-09-21 02:00:18 +02:00
|
|
|
{
|
|
|
|
name = g_path_get_basename (path);
|
|
|
|
result = g_shell_quote (name);
|
|
|
|
g_free (name);
|
|
|
|
}
|
2007-11-26 17:13:05 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
g_free (path);
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2007-11-29 08:17:59 +01:00
|
|
|
expand_macro (char macro,
|
|
|
|
GString *exec,
|
|
|
|
GDesktopAppInfo *info,
|
2008-01-30 12:27:02 +01:00
|
|
|
GList **uri_list)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
2008-01-30 12:27:02 +01:00
|
|
|
GList *uris = *uri_list;
|
2007-11-26 17:13:05 +01:00
|
|
|
char *expanded;
|
2008-10-01 19:46:57 +02:00
|
|
|
gboolean force_file_uri;
|
|
|
|
char force_file_uri_macro;
|
2009-03-03 20:02:16 +01:00
|
|
|
char *uri;
|
2008-10-01 19:46:57 +02:00
|
|
|
|
2007-11-26 17:13:05 +01:00
|
|
|
g_return_if_fail (exec != NULL);
|
2008-10-01 19:46:57 +02:00
|
|
|
|
|
|
|
/* On %u and %U, pass POSIX file path pointing to the URI via
|
|
|
|
* the FUSE mount in ~/.gvfs. Note that if the FUSE daemon isn't
|
|
|
|
* running or the URI doesn't have a POSIX file path via FUSE
|
|
|
|
* we'll just pass the URI.
|
|
|
|
*/
|
2009-02-26 15:59:16 +01:00
|
|
|
force_file_uri_macro = macro;
|
|
|
|
force_file_uri = FALSE;
|
|
|
|
if (!info->no_fuse)
|
2008-10-01 19:46:57 +02:00
|
|
|
{
|
2009-02-26 15:59:16 +01:00
|
|
|
switch (macro)
|
|
|
|
{
|
|
|
|
case 'u':
|
|
|
|
force_file_uri_macro = 'f';
|
|
|
|
force_file_uri = TRUE;
|
|
|
|
break;
|
|
|
|
case 'U':
|
|
|
|
force_file_uri_macro = 'F';
|
|
|
|
force_file_uri = TRUE;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2008-10-01 19:46:57 +02:00
|
|
|
}
|
|
|
|
|
2007-11-26 17:13:05 +01:00
|
|
|
switch (macro)
|
|
|
|
{
|
|
|
|
case 'u':
|
|
|
|
case 'f':
|
|
|
|
case 'd':
|
|
|
|
case 'n':
|
2008-01-30 12:27:02 +01:00
|
|
|
if (uris)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
2009-03-03 20:02:16 +01:00
|
|
|
uri = uris->data;
|
|
|
|
if (!force_file_uri ||
|
|
|
|
/* Pass URI if it contains an anchor */
|
|
|
|
strchr (uri, '#') != NULL)
|
2008-10-01 19:46:57 +02:00
|
|
|
{
|
2009-03-03 20:02:16 +01:00
|
|
|
expanded = expand_macro_single (macro, uri);
|
2008-10-01 19:46:57 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2009-03-03 20:02:16 +01:00
|
|
|
expanded = expand_macro_single (force_file_uri_macro, uri);
|
2008-10-01 19:46:57 +02:00
|
|
|
if (expanded == NULL)
|
2009-03-03 20:02:16 +01:00
|
|
|
expanded = expand_macro_single (macro, uri);
|
2008-10-01 19:46:57 +02:00
|
|
|
}
|
|
|
|
|
2007-11-26 17:13:05 +01:00
|
|
|
if (expanded)
|
|
|
|
{
|
|
|
|
g_string_append (exec, expanded);
|
|
|
|
g_free (expanded);
|
|
|
|
}
|
2008-01-30 12:27:02 +01:00
|
|
|
uris = uris->next;
|
2007-11-26 17:13:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'U':
|
|
|
|
case 'F':
|
|
|
|
case 'D':
|
|
|
|
case 'N':
|
2008-01-30 12:27:02 +01:00
|
|
|
while (uris)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
2009-03-03 20:02:16 +01:00
|
|
|
uri = uris->data;
|
|
|
|
|
|
|
|
if (!force_file_uri ||
|
|
|
|
/* Pass URI if it contains an anchor */
|
|
|
|
strchr (uri, '#') != NULL)
|
2008-10-01 19:46:57 +02:00
|
|
|
{
|
2009-03-03 20:02:16 +01:00
|
|
|
expanded = expand_macro_single (macro, uri);
|
2008-10-01 19:46:57 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2009-03-03 20:02:16 +01:00
|
|
|
expanded = expand_macro_single (force_file_uri_macro, uri);
|
2008-10-01 19:46:57 +02:00
|
|
|
if (expanded == NULL)
|
2009-03-03 20:02:16 +01:00
|
|
|
expanded = expand_macro_single (macro, uri);
|
2008-10-01 19:46:57 +02:00
|
|
|
}
|
|
|
|
|
2007-11-26 17:13:05 +01:00
|
|
|
if (expanded)
|
|
|
|
{
|
|
|
|
g_string_append (exec, expanded);
|
|
|
|
g_free (expanded);
|
|
|
|
}
|
|
|
|
|
2008-01-30 12:27:02 +01:00
|
|
|
uris = uris->next;
|
2007-11-26 17:13:05 +01:00
|
|
|
|
2008-01-30 12:27:02 +01:00
|
|
|
if (uris != NULL && expanded)
|
2007-11-26 17:13:05 +01:00
|
|
|
g_string_append_c (exec, ' ');
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'i':
|
|
|
|
if (info->icon_name)
|
|
|
|
{
|
|
|
|
g_string_append (exec, "--icon ");
|
|
|
|
g_string_append (exec, info->icon_name);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'c':
|
|
|
|
if (info->name)
|
|
|
|
g_string_append (exec, info->name);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'k':
|
|
|
|
if (info->filename)
|
|
|
|
g_string_append (exec, info->filename);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'm': /* deprecated */
|
|
|
|
break;
|
|
|
|
|
|
|
|
case '%':
|
|
|
|
g_string_append_c (exec, '%');
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2008-01-30 12:27:02 +01:00
|
|
|
*uri_list = uris;
|
2007-11-26 17:13:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
2007-11-29 08:17:59 +01:00
|
|
|
expand_application_parameters (GDesktopAppInfo *info,
|
2008-01-30 12:27:02 +01:00
|
|
|
GList **uris,
|
2007-11-29 08:17:59 +01:00
|
|
|
int *argc,
|
|
|
|
char ***argv,
|
|
|
|
GError **error)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
2008-01-30 12:27:02 +01:00
|
|
|
GList *uri_list = *uris;
|
2007-11-26 17:13:05 +01:00
|
|
|
const char *p = info->exec;
|
2010-01-06 00:18:55 +01:00
|
|
|
GString *expanded_exec;
|
2007-11-26 17:13:05 +01:00
|
|
|
gboolean res;
|
2010-01-06 00:18:55 +01:00
|
|
|
|
2007-11-26 17:13:05 +01:00
|
|
|
if (info->exec == NULL)
|
|
|
|
{
|
2008-06-16 18:53:58 +02:00
|
|
|
g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_FAILED,
|
|
|
|
_("Desktop file didn't specify Exec field"));
|
2007-11-26 17:13:05 +01:00
|
|
|
return FALSE;
|
|
|
|
}
|
2010-01-06 00:18:55 +01:00
|
|
|
|
|
|
|
expanded_exec = g_string_new (NULL);
|
|
|
|
|
2007-11-26 17:13:05 +01:00
|
|
|
while (*p)
|
|
|
|
{
|
|
|
|
if (p[0] == '%' && p[1] != '\0')
|
|
|
|
{
|
2008-01-30 12:27:02 +01:00
|
|
|
expand_macro (p[1], expanded_exec, info, uris);
|
2007-11-26 17:13:05 +01:00
|
|
|
p++;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
g_string_append_c (expanded_exec, *p);
|
2010-01-06 00:18:55 +01:00
|
|
|
|
2007-11-26 17:13:05 +01:00
|
|
|
p++;
|
|
|
|
}
|
2010-01-06 00:18:55 +01:00
|
|
|
|
2007-11-26 17:13:05 +01:00
|
|
|
/* No file substitutions */
|
2008-01-30 12:27:02 +01:00
|
|
|
if (uri_list == *uris && uri_list != NULL)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
/* If there is no macro default to %f. This is also what KDE does */
|
|
|
|
g_string_append_c (expanded_exec, ' ');
|
2008-01-30 12:27:02 +01:00
|
|
|
expand_macro ('f', expanded_exec, info, uris);
|
2007-11-26 17:13:05 +01:00
|
|
|
}
|
2010-01-06 00:18:55 +01:00
|
|
|
|
2007-11-26 17:13:05 +01:00
|
|
|
res = g_shell_parse_argv (expanded_exec->str, argc, argv, error);
|
|
|
|
g_string_free (expanded_exec, TRUE);
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
2007-11-29 08:17:59 +01:00
|
|
|
prepend_terminal_to_vector (int *argc,
|
2007-11-26 17:13:05 +01:00
|
|
|
char ***argv)
|
|
|
|
{
|
|
|
|
#ifndef G_OS_WIN32
|
|
|
|
char **real_argv;
|
|
|
|
int real_argc;
|
|
|
|
int i, j;
|
|
|
|
char **term_argv = NULL;
|
|
|
|
int term_argc = 0;
|
|
|
|
char *check;
|
|
|
|
char **the_argv;
|
|
|
|
|
|
|
|
g_return_val_if_fail (argc != NULL, FALSE);
|
|
|
|
g_return_val_if_fail (argv != NULL, FALSE);
|
|
|
|
|
|
|
|
/* sanity */
|
|
|
|
if(*argv == NULL)
|
|
|
|
*argc = 0;
|
|
|
|
|
|
|
|
the_argv = *argv;
|
|
|
|
|
|
|
|
/* compute size if not given */
|
|
|
|
if (*argc < 0)
|
|
|
|
{
|
|
|
|
for (i = 0; the_argv[i] != NULL; i++)
|
|
|
|
;
|
|
|
|
*argc = i;
|
|
|
|
}
|
|
|
|
|
|
|
|
term_argc = 2;
|
|
|
|
term_argv = g_new0 (char *, 3);
|
|
|
|
|
|
|
|
check = g_find_program_in_path ("gnome-terminal");
|
|
|
|
if (check != NULL)
|
|
|
|
{
|
|
|
|
term_argv[0] = check;
|
|
|
|
/* Note that gnome-terminal takes -x and
|
|
|
|
* as -e in gnome-terminal is broken we use that. */
|
|
|
|
term_argv[1] = g_strdup ("-x");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (check == NULL)
|
|
|
|
check = g_find_program_in_path ("nxterm");
|
|
|
|
if (check == NULL)
|
|
|
|
check = g_find_program_in_path ("color-xterm");
|
|
|
|
if (check == NULL)
|
|
|
|
check = g_find_program_in_path ("rxvt");
|
|
|
|
if (check == NULL)
|
|
|
|
check = g_find_program_in_path ("xterm");
|
|
|
|
if (check == NULL)
|
|
|
|
check = g_find_program_in_path ("dtterm");
|
|
|
|
if (check == NULL)
|
|
|
|
{
|
|
|
|
check = g_strdup ("xterm");
|
|
|
|
g_warning ("couldn't find a terminal, falling back to xterm");
|
|
|
|
}
|
|
|
|
term_argv[0] = check;
|
|
|
|
term_argv[1] = g_strdup ("-e");
|
|
|
|
}
|
|
|
|
|
|
|
|
real_argc = term_argc + *argc;
|
|
|
|
real_argv = g_new (char *, real_argc + 1);
|
|
|
|
|
|
|
|
for (i = 0; i < term_argc; i++)
|
|
|
|
real_argv[i] = term_argv[i];
|
|
|
|
|
|
|
|
for (j = 0; j < *argc; j++, i++)
|
|
|
|
real_argv[i] = (char *)the_argv[j];
|
|
|
|
|
|
|
|
real_argv[i] = NULL;
|
|
|
|
|
|
|
|
g_free (*argv);
|
|
|
|
*argv = real_argv;
|
|
|
|
*argc = real_argc;
|
|
|
|
|
|
|
|
/* we use g_free here as we sucked all the inner strings
|
|
|
|
* out from it into real_argv */
|
|
|
|
g_free (term_argv);
|
|
|
|
return TRUE;
|
|
|
|
#else
|
|
|
|
return FALSE;
|
|
|
|
#endif /* G_OS_WIN32 */
|
|
|
|
}
|
|
|
|
|
|
|
|
static GList *
|
2008-01-30 12:27:02 +01:00
|
|
|
uri_list_segment_to_files (GList *start,
|
|
|
|
GList *end)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GList *res;
|
2008-01-30 12:27:02 +01:00
|
|
|
GFile *file;
|
2007-11-26 17:13:05 +01:00
|
|
|
|
|
|
|
res = NULL;
|
|
|
|
while (start != NULL && start != end)
|
|
|
|
{
|
2008-01-30 12:27:02 +01:00
|
|
|
file = g_file_new_for_uri ((char *)start->data);
|
|
|
|
res = g_list_prepend (res, file);
|
2007-11-26 17:13:05 +01:00
|
|
|
start = start->next;
|
|
|
|
}
|
|
|
|
|
|
|
|
return g_list_reverse (res);
|
|
|
|
}
|
|
|
|
|
2009-06-10 22:20:51 +02:00
|
|
|
typedef struct
|
|
|
|
{
|
2009-06-12 15:57:12 +02:00
|
|
|
char *display;
|
|
|
|
char *sn_id;
|
2010-06-07 19:25:39 +02:00
|
|
|
char *desktop_file;
|
2009-06-10 22:20:51 +02:00
|
|
|
} ChildSetupData;
|
2007-12-25 03:07:48 +01:00
|
|
|
|
2009-06-10 22:20:51 +02:00
|
|
|
static void
|
|
|
|
child_setup (gpointer user_data)
|
|
|
|
{
|
|
|
|
ChildSetupData *data = user_data;
|
|
|
|
|
|
|
|
if (data->display)
|
|
|
|
g_setenv ("DISPLAY", data->display, TRUE);
|
|
|
|
|
|
|
|
if (data->sn_id)
|
|
|
|
g_setenv ("DESKTOP_STARTUP_ID", data->sn_id, TRUE);
|
2010-06-07 19:25:39 +02:00
|
|
|
|
|
|
|
if (data->desktop_file)
|
|
|
|
{
|
|
|
|
gchar pid[20];
|
|
|
|
|
|
|
|
g_setenv ("GIO_LAUNCHED_DESKTOP_FILE", data->desktop_file, TRUE);
|
|
|
|
|
|
|
|
g_snprintf (pid, 20, "%d", getpid ());
|
|
|
|
g_setenv ("GIO_LAUNCHED_DESKTOP_FILE_PID", pid, TRUE);
|
|
|
|
}
|
2009-06-10 22:20:51 +02:00
|
|
|
}
|
2007-12-25 03:07:48 +01:00
|
|
|
|
2007-11-26 17:13:05 +01:00
|
|
|
static gboolean
|
2008-01-30 12:27:02 +01:00
|
|
|
g_desktop_app_info_launch_uris (GAppInfo *appinfo,
|
|
|
|
GList *uris,
|
|
|
|
GAppLaunchContext *launch_context,
|
|
|
|
GError **error)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GDesktopAppInfo *info = G_DESKTOP_APP_INFO (appinfo);
|
|
|
|
gboolean completed = FALSE;
|
2008-01-30 12:27:02 +01:00
|
|
|
GList *old_uris;
|
2007-11-26 17:13:05 +01:00
|
|
|
GList *launched_files;
|
|
|
|
char **argv;
|
|
|
|
int argc;
|
2009-06-10 22:20:51 +02:00
|
|
|
ChildSetupData data;
|
2007-11-26 17:13:05 +01:00
|
|
|
|
|
|
|
g_return_val_if_fail (appinfo != NULL, FALSE);
|
|
|
|
|
|
|
|
argv = NULL;
|
2009-06-10 22:20:51 +02:00
|
|
|
|
|
|
|
do
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
2008-01-30 12:27:02 +01:00
|
|
|
old_uris = uris;
|
|
|
|
if (!expand_application_parameters (info, &uris,
|
2007-11-26 17:13:05 +01:00
|
|
|
&argc, &argv, error))
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
if (info->terminal && !prepend_terminal_to_vector (&argc, &argv))
|
|
|
|
{
|
2008-06-16 18:53:58 +02:00
|
|
|
g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_FAILED,
|
|
|
|
_("Unable to find terminal required for application"));
|
2007-11-26 17:13:05 +01:00
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
2009-06-10 22:20:51 +02:00
|
|
|
data.display = NULL;
|
|
|
|
data.sn_id = NULL;
|
2010-06-07 19:25:39 +02:00
|
|
|
data.desktop_file = info->filename;
|
2009-06-10 22:20:51 +02:00
|
|
|
|
2007-11-26 17:13:05 +01:00
|
|
|
if (launch_context)
|
|
|
|
{
|
2008-01-30 12:27:02 +01:00
|
|
|
launched_files = uri_list_segment_to_files (old_uris, uris);
|
2007-11-26 17:13:05 +01:00
|
|
|
|
2009-06-10 22:20:51 +02:00
|
|
|
data.display = g_app_launch_context_get_display (launch_context,
|
|
|
|
appinfo,
|
|
|
|
launched_files);
|
2007-11-26 17:13:05 +01:00
|
|
|
|
2009-06-10 22:20:51 +02:00
|
|
|
if (info->startup_notify)
|
|
|
|
data.sn_id = g_app_launch_context_get_startup_notify_id (launch_context,
|
|
|
|
appinfo,
|
|
|
|
launched_files);
|
2008-01-30 12:27:02 +01:00
|
|
|
g_list_foreach (launched_files, (GFunc)g_object_unref, NULL);
|
2007-11-26 17:13:05 +01:00
|
|
|
g_list_free (launched_files);
|
|
|
|
}
|
2009-06-10 22:20:51 +02:00
|
|
|
|
|
|
|
if (!g_spawn_async (info->path,
|
2007-11-26 17:13:05 +01:00
|
|
|
argv,
|
2009-06-10 22:20:51 +02:00
|
|
|
NULL,
|
|
|
|
G_SPAWN_SEARCH_PATH,
|
|
|
|
child_setup,
|
|
|
|
&data,
|
|
|
|
NULL,
|
2007-11-26 17:13:05 +01:00
|
|
|
error))
|
|
|
|
{
|
2009-06-10 22:20:51 +02:00
|
|
|
if (data.sn_id)
|
|
|
|
g_app_launch_context_launch_failed (launch_context, data.sn_id);
|
|
|
|
|
|
|
|
g_free (data.sn_id);
|
|
|
|
g_free (data.display);
|
|
|
|
|
2007-11-26 17:13:05 +01:00
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
2009-06-10 22:20:51 +02:00
|
|
|
g_free (data.sn_id);
|
|
|
|
g_free (data.display);
|
|
|
|
|
2007-11-26 17:13:05 +01:00
|
|
|
g_strfreev (argv);
|
|
|
|
argv = NULL;
|
|
|
|
}
|
2008-01-30 12:27:02 +01:00
|
|
|
while (uris != NULL);
|
2007-11-26 17:13:05 +01:00
|
|
|
|
|
|
|
completed = TRUE;
|
|
|
|
|
|
|
|
out:
|
|
|
|
g_strfreev (argv);
|
|
|
|
|
|
|
|
return completed;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
g_desktop_app_info_supports_uris (GAppInfo *appinfo)
|
|
|
|
{
|
|
|
|
GDesktopAppInfo *info = G_DESKTOP_APP_INFO (appinfo);
|
2007-12-22 19:15:57 +01:00
|
|
|
|
|
|
|
return info->exec &&
|
|
|
|
((strstr (info->exec, "%u") != NULL) ||
|
|
|
|
(strstr (info->exec, "%U") != NULL));
|
2007-11-26 17:13:05 +01:00
|
|
|
}
|
|
|
|
|
2008-01-04 11:51:56 +01:00
|
|
|
static gboolean
|
|
|
|
g_desktop_app_info_supports_files (GAppInfo *appinfo)
|
|
|
|
{
|
|
|
|
GDesktopAppInfo *info = G_DESKTOP_APP_INFO (appinfo);
|
|
|
|
|
|
|
|
return info->exec &&
|
|
|
|
((strstr (info->exec, "%f") != NULL) ||
|
|
|
|
(strstr (info->exec, "%F") != NULL));
|
|
|
|
}
|
|
|
|
|
2007-11-26 17:13:05 +01:00
|
|
|
static gboolean
|
2008-01-30 12:27:02 +01:00
|
|
|
g_desktop_app_info_launch (GAppInfo *appinfo,
|
|
|
|
GList *files,
|
|
|
|
GAppLaunchContext *launch_context,
|
|
|
|
GError **error)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
2008-01-30 12:27:02 +01:00
|
|
|
GList *uris;
|
|
|
|
char *uri;
|
2007-11-26 17:13:05 +01:00
|
|
|
gboolean res;
|
|
|
|
|
2008-01-30 12:27:02 +01:00
|
|
|
uris = NULL;
|
|
|
|
while (files)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
2008-01-30 12:27:02 +01:00
|
|
|
uri = g_file_get_uri (files->data);
|
|
|
|
uris = g_list_prepend (uris, uri);
|
|
|
|
files = files->next;
|
2007-11-26 17:13:05 +01:00
|
|
|
}
|
|
|
|
|
2008-01-30 12:27:02 +01:00
|
|
|
uris = g_list_reverse (uris);
|
2007-11-26 17:13:05 +01:00
|
|
|
|
2008-01-30 12:27:02 +01:00
|
|
|
res = g_desktop_app_info_launch_uris (appinfo, uris, launch_context, error);
|
2007-11-26 17:13:05 +01:00
|
|
|
|
2008-01-30 12:27:02 +01:00
|
|
|
g_list_foreach (uris, (GFunc)g_free, NULL);
|
|
|
|
g_list_free (uris);
|
2007-11-26 17:13:05 +01:00
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2008-01-04 11:51:56 +01:00
|
|
|
G_LOCK_DEFINE_STATIC (g_desktop_env);
|
|
|
|
static gchar *g_desktop_env = NULL;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_desktop_app_info_set_desktop_env:
|
|
|
|
* @desktop_env: a string specifying what desktop this is
|
|
|
|
*
|
|
|
|
* Sets the name of the desktop that the application is running in.
|
|
|
|
* This is used by g_app_info_should_show() to evaluate the
|
|
|
|
* <literal>OnlyShowIn</literal> and <literal>NotShowIn</literal>
|
|
|
|
* desktop entry fields.
|
|
|
|
*
|
|
|
|
* The <ulink url="http://standards.freedesktop.org/menu-spec/latest/">Desktop
|
|
|
|
* Menu specification</ulink> recognizes the following:
|
|
|
|
* <simplelist>
|
|
|
|
* <member>GNOME</member>
|
|
|
|
* <member>KDE</member>
|
|
|
|
* <member>ROX</member>
|
|
|
|
* <member>XFCE</member>
|
|
|
|
* <member>Old</member>
|
|
|
|
* </simplelist>
|
|
|
|
*
|
|
|
|
* Should be called only once; subsequent calls are ignored.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
g_desktop_app_info_set_desktop_env (const gchar *desktop_env)
|
|
|
|
{
|
|
|
|
G_LOCK (g_desktop_env);
|
|
|
|
if (!g_desktop_env)
|
|
|
|
g_desktop_env = g_strdup (desktop_env);
|
|
|
|
G_UNLOCK (g_desktop_env);
|
|
|
|
}
|
|
|
|
|
2007-11-26 17:13:05 +01:00
|
|
|
static gboolean
|
2008-01-04 11:51:56 +01:00
|
|
|
g_desktop_app_info_should_show (GAppInfo *appinfo)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GDesktopAppInfo *info = G_DESKTOP_APP_INFO (appinfo);
|
|
|
|
gboolean found;
|
2008-01-04 11:51:56 +01:00
|
|
|
const gchar *desktop_env;
|
2007-11-26 17:13:05 +01:00
|
|
|
int i;
|
|
|
|
|
|
|
|
if (info->nodisplay)
|
|
|
|
return FALSE;
|
|
|
|
|
2008-01-04 11:51:56 +01:00
|
|
|
G_LOCK (g_desktop_env);
|
|
|
|
desktop_env = g_desktop_env;
|
|
|
|
G_UNLOCK (g_desktop_env);
|
|
|
|
|
2007-11-26 17:13:05 +01:00
|
|
|
if (info->only_show_in)
|
|
|
|
{
|
|
|
|
if (desktop_env == NULL)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
found = FALSE;
|
|
|
|
for (i = 0; info->only_show_in[i] != NULL; i++)
|
|
|
|
{
|
|
|
|
if (strcmp (info->only_show_in[i], desktop_env) == 0)
|
|
|
|
{
|
|
|
|
found = TRUE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!found)
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (info->not_show_in && desktop_env)
|
|
|
|
{
|
|
|
|
for (i = 0; info->not_show_in[i] != NULL; i++)
|
|
|
|
{
|
|
|
|
if (strcmp (info->not_show_in[i], desktop_env) == 0)
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
typedef enum {
|
|
|
|
APP_DIR,
|
|
|
|
MIMETYPE_DIR
|
|
|
|
} DirType;
|
|
|
|
|
|
|
|
static char *
|
2007-11-29 08:17:59 +01:00
|
|
|
ensure_dir (DirType type,
|
|
|
|
GError **error)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
char *path, *display_name;
|
Save errno before calling other funcs that potentially alter it. Bug
* gio/gdesktopappinfo.c: (ensure_dir):
* gio/glocalfile.c: (g_local_file_query_filesystem_info),
(g_local_file_read), (g_local_file_delete), (g_local_file_trash),
(g_local_file_move):
* gio/glocalfileinfo.c: (set_xattr), (_g_local_file_info_get),
(_g_local_file_info_get_from_fd), (set_unix_mode),
(set_unix_uid_gid), (set_symlink), (set_mtime_atime):
* gio/glocalfileinputstream.c: (g_local_file_input_stream_read),
(g_local_file_input_stream_skip),
(g_local_file_input_stream_close),
(g_local_file_input_stream_seek):
* gio/glocalfileoutputstream.c:
(g_local_file_output_stream_write),
(g_local_file_output_stream_close),
(g_local_file_output_stream_seek),
(g_local_file_output_stream_truncate), (copy_file_data),
(handle_overwrite_open):
* gio/gunixinputstream.c: (g_unix_input_stream_read),
(g_unix_input_stream_close), (read_async_cb), (close_async_cb):
* gio/gunixoutputstream.c: (g_unix_output_stream_write),
(g_unix_output_stream_close), (write_async_cb), (close_async_cb):
Save
errno before calling other funcs that potentially alter it. Bug
#514766.
svn path=/trunk/; revision=6466
2008-02-06 16:10:08 +01:00
|
|
|
int errsv;
|
2007-11-26 17:13:05 +01:00
|
|
|
|
|
|
|
if (type == APP_DIR)
|
2007-11-29 08:17:59 +01:00
|
|
|
path = g_build_filename (g_get_user_data_dir (), "applications", NULL);
|
2007-11-26 17:13:05 +01:00
|
|
|
else
|
2007-11-29 08:17:59 +01:00
|
|
|
path = g_build_filename (g_get_user_data_dir (), "mime", "packages", NULL);
|
2007-11-26 17:13:05 +01:00
|
|
|
|
|
|
|
errno = 0;
|
|
|
|
if (g_mkdir_with_parents (path, 0700) == 0)
|
|
|
|
return path;
|
|
|
|
|
Save errno before calling other funcs that potentially alter it. Bug
* gio/gdesktopappinfo.c: (ensure_dir):
* gio/glocalfile.c: (g_local_file_query_filesystem_info),
(g_local_file_read), (g_local_file_delete), (g_local_file_trash),
(g_local_file_move):
* gio/glocalfileinfo.c: (set_xattr), (_g_local_file_info_get),
(_g_local_file_info_get_from_fd), (set_unix_mode),
(set_unix_uid_gid), (set_symlink), (set_mtime_atime):
* gio/glocalfileinputstream.c: (g_local_file_input_stream_read),
(g_local_file_input_stream_skip),
(g_local_file_input_stream_close),
(g_local_file_input_stream_seek):
* gio/glocalfileoutputstream.c:
(g_local_file_output_stream_write),
(g_local_file_output_stream_close),
(g_local_file_output_stream_seek),
(g_local_file_output_stream_truncate), (copy_file_data),
(handle_overwrite_open):
* gio/gunixinputstream.c: (g_unix_input_stream_read),
(g_unix_input_stream_close), (read_async_cb), (close_async_cb):
* gio/gunixoutputstream.c: (g_unix_output_stream_write),
(g_unix_output_stream_close), (write_async_cb), (close_async_cb):
Save
errno before calling other funcs that potentially alter it. Bug
#514766.
svn path=/trunk/; revision=6466
2008-02-06 16:10:08 +01:00
|
|
|
errsv = errno;
|
2007-11-26 17:13:05 +01:00
|
|
|
display_name = g_filename_display_name (path);
|
|
|
|
if (type == APP_DIR)
|
Save errno before calling other funcs that potentially alter it. Bug
* gio/gdesktopappinfo.c: (ensure_dir):
* gio/glocalfile.c: (g_local_file_query_filesystem_info),
(g_local_file_read), (g_local_file_delete), (g_local_file_trash),
(g_local_file_move):
* gio/glocalfileinfo.c: (set_xattr), (_g_local_file_info_get),
(_g_local_file_info_get_from_fd), (set_unix_mode),
(set_unix_uid_gid), (set_symlink), (set_mtime_atime):
* gio/glocalfileinputstream.c: (g_local_file_input_stream_read),
(g_local_file_input_stream_skip),
(g_local_file_input_stream_close),
(g_local_file_input_stream_seek):
* gio/glocalfileoutputstream.c:
(g_local_file_output_stream_write),
(g_local_file_output_stream_close),
(g_local_file_output_stream_seek),
(g_local_file_output_stream_truncate), (copy_file_data),
(handle_overwrite_open):
* gio/gunixinputstream.c: (g_unix_input_stream_read),
(g_unix_input_stream_close), (read_async_cb), (close_async_cb):
* gio/gunixoutputstream.c: (g_unix_output_stream_write),
(g_unix_output_stream_close), (write_async_cb), (close_async_cb):
Save
errno before calling other funcs that potentially alter it. Bug
#514766.
svn path=/trunk/; revision=6466
2008-02-06 16:10:08 +01:00
|
|
|
g_set_error (error, G_IO_ERROR, g_io_error_from_errno (errsv),
|
2007-11-29 08:17:59 +01:00
|
|
|
_("Can't create user application configuration folder %s: %s"),
|
Save errno before calling other funcs that potentially alter it. Bug
* gio/gdesktopappinfo.c: (ensure_dir):
* gio/glocalfile.c: (g_local_file_query_filesystem_info),
(g_local_file_read), (g_local_file_delete), (g_local_file_trash),
(g_local_file_move):
* gio/glocalfileinfo.c: (set_xattr), (_g_local_file_info_get),
(_g_local_file_info_get_from_fd), (set_unix_mode),
(set_unix_uid_gid), (set_symlink), (set_mtime_atime):
* gio/glocalfileinputstream.c: (g_local_file_input_stream_read),
(g_local_file_input_stream_skip),
(g_local_file_input_stream_close),
(g_local_file_input_stream_seek):
* gio/glocalfileoutputstream.c:
(g_local_file_output_stream_write),
(g_local_file_output_stream_close),
(g_local_file_output_stream_seek),
(g_local_file_output_stream_truncate), (copy_file_data),
(handle_overwrite_open):
* gio/gunixinputstream.c: (g_unix_input_stream_read),
(g_unix_input_stream_close), (read_async_cb), (close_async_cb):
* gio/gunixoutputstream.c: (g_unix_output_stream_write),
(g_unix_output_stream_close), (write_async_cb), (close_async_cb):
Save
errno before calling other funcs that potentially alter it. Bug
#514766.
svn path=/trunk/; revision=6466
2008-02-06 16:10:08 +01:00
|
|
|
display_name, g_strerror (errsv));
|
2007-11-26 17:13:05 +01:00
|
|
|
else
|
Save errno before calling other funcs that potentially alter it. Bug
* gio/gdesktopappinfo.c: (ensure_dir):
* gio/glocalfile.c: (g_local_file_query_filesystem_info),
(g_local_file_read), (g_local_file_delete), (g_local_file_trash),
(g_local_file_move):
* gio/glocalfileinfo.c: (set_xattr), (_g_local_file_info_get),
(_g_local_file_info_get_from_fd), (set_unix_mode),
(set_unix_uid_gid), (set_symlink), (set_mtime_atime):
* gio/glocalfileinputstream.c: (g_local_file_input_stream_read),
(g_local_file_input_stream_skip),
(g_local_file_input_stream_close),
(g_local_file_input_stream_seek):
* gio/glocalfileoutputstream.c:
(g_local_file_output_stream_write),
(g_local_file_output_stream_close),
(g_local_file_output_stream_seek),
(g_local_file_output_stream_truncate), (copy_file_data),
(handle_overwrite_open):
* gio/gunixinputstream.c: (g_unix_input_stream_read),
(g_unix_input_stream_close), (read_async_cb), (close_async_cb):
* gio/gunixoutputstream.c: (g_unix_output_stream_write),
(g_unix_output_stream_close), (write_async_cb), (close_async_cb):
Save
errno before calling other funcs that potentially alter it. Bug
#514766.
svn path=/trunk/; revision=6466
2008-02-06 16:10:08 +01:00
|
|
|
g_set_error (error, G_IO_ERROR, g_io_error_from_errno (errsv),
|
2007-11-29 08:17:59 +01:00
|
|
|
_("Can't create user MIME configuration folder %s: %s"),
|
Save errno before calling other funcs that potentially alter it. Bug
* gio/gdesktopappinfo.c: (ensure_dir):
* gio/glocalfile.c: (g_local_file_query_filesystem_info),
(g_local_file_read), (g_local_file_delete), (g_local_file_trash),
(g_local_file_move):
* gio/glocalfileinfo.c: (set_xattr), (_g_local_file_info_get),
(_g_local_file_info_get_from_fd), (set_unix_mode),
(set_unix_uid_gid), (set_symlink), (set_mtime_atime):
* gio/glocalfileinputstream.c: (g_local_file_input_stream_read),
(g_local_file_input_stream_skip),
(g_local_file_input_stream_close),
(g_local_file_input_stream_seek):
* gio/glocalfileoutputstream.c:
(g_local_file_output_stream_write),
(g_local_file_output_stream_close),
(g_local_file_output_stream_seek),
(g_local_file_output_stream_truncate), (copy_file_data),
(handle_overwrite_open):
* gio/gunixinputstream.c: (g_unix_input_stream_read),
(g_unix_input_stream_close), (read_async_cb), (close_async_cb):
* gio/gunixoutputstream.c: (g_unix_output_stream_write),
(g_unix_output_stream_close), (write_async_cb), (close_async_cb):
Save
errno before calling other funcs that potentially alter it. Bug
#514766.
svn path=/trunk/; revision=6466
2008-02-06 16:10:08 +01:00
|
|
|
display_name, g_strerror (errsv));
|
2007-11-26 17:13:05 +01:00
|
|
|
|
|
|
|
g_free (display_name);
|
|
|
|
g_free (path);
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
2008-02-06 11:57:27 +01:00
|
|
|
update_mimeapps_list (const char *desktop_id,
|
|
|
|
const char *content_type,
|
2008-10-13 12:02:30 +02:00
|
|
|
gboolean add_as_default,
|
|
|
|
gboolean add_non_default,
|
2008-02-06 11:57:27 +01:00
|
|
|
gboolean remove,
|
|
|
|
GError **error)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
char *dirname, *filename;
|
|
|
|
GKeyFile *key_file;
|
|
|
|
gboolean load_succeeded, res;
|
2008-10-13 12:02:30 +02:00
|
|
|
char **old_list, **list;
|
|
|
|
GList *system_list, *l;
|
2007-11-26 17:13:05 +01:00
|
|
|
gsize length, data_size;
|
|
|
|
char *data;
|
2008-09-26 21:57:36 +02:00
|
|
|
int i, j, k;
|
|
|
|
char **content_types;
|
2007-11-26 17:13:05 +01:00
|
|
|
|
2008-01-25 13:06:14 +01:00
|
|
|
/* Don't add both at start and end */
|
2008-10-13 12:02:30 +02:00
|
|
|
g_assert (!(add_as_default && add_non_default));
|
2008-01-25 13:06:14 +01:00
|
|
|
|
2007-11-26 17:13:05 +01:00
|
|
|
dirname = ensure_dir (APP_DIR, error);
|
|
|
|
if (!dirname)
|
|
|
|
return FALSE;
|
|
|
|
|
2008-02-06 11:57:27 +01:00
|
|
|
filename = g_build_filename (dirname, "mimeapps.list", NULL);
|
2007-11-26 17:13:05 +01:00
|
|
|
g_free (dirname);
|
|
|
|
|
|
|
|
key_file = g_key_file_new ();
|
|
|
|
load_succeeded = g_key_file_load_from_file (key_file, filename, G_KEY_FILE_NONE, NULL);
|
2008-02-06 11:57:27 +01:00
|
|
|
if (!load_succeeded || !g_key_file_has_group (key_file, ADDED_ASSOCIATIONS_GROUP))
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
g_key_file_free (key_file);
|
|
|
|
key_file = g_key_file_new ();
|
|
|
|
}
|
|
|
|
|
2008-09-26 21:57:36 +02:00
|
|
|
if (content_type)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
2008-09-26 21:57:36 +02:00
|
|
|
content_types = g_new (char *, 2);
|
|
|
|
content_types[0] = g_strdup (content_type);
|
|
|
|
content_types[1] = NULL;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
content_types = g_key_file_get_keys (key_file, ADDED_ASSOCIATIONS_GROUP, NULL, NULL);
|
2007-11-26 17:13:05 +01:00
|
|
|
}
|
|
|
|
|
2008-09-26 21:57:36 +02:00
|
|
|
for (k = 0; content_types && content_types[k]; k++)
|
|
|
|
{
|
|
|
|
/* Add to the right place in the list */
|
|
|
|
|
|
|
|
length = 0;
|
|
|
|
old_list = g_key_file_get_string_list (key_file, ADDED_ASSOCIATIONS_GROUP,
|
|
|
|
content_types[k], &length, NULL);
|
2007-11-26 17:13:05 +01:00
|
|
|
|
2008-09-26 21:57:36 +02:00
|
|
|
list = g_new (char *, 1 + length + 1);
|
2008-01-25 13:06:14 +01:00
|
|
|
|
2008-09-26 21:57:36 +02:00
|
|
|
i = 0;
|
2008-10-13 12:02:30 +02:00
|
|
|
if (add_as_default)
|
2008-09-26 21:57:36 +02:00
|
|
|
list[i++] = g_strdup (desktop_id);
|
|
|
|
if (old_list)
|
|
|
|
{
|
|
|
|
for (j = 0; old_list[j] != NULL; j++)
|
|
|
|
{
|
|
|
|
if (g_strcmp0 (old_list[j], desktop_id) != 0)
|
|
|
|
list[i++] = g_strdup (old_list[j]);
|
2008-10-13 12:02:30 +02:00
|
|
|
else if (add_non_default)
|
|
|
|
{
|
2009-02-23 05:30:06 +01:00
|
|
|
/* If adding as non-default, and it's already in,
|
2008-10-13 12:02:30 +02:00
|
|
|
don't change order of desktop ids */
|
|
|
|
add_non_default = FALSE;
|
|
|
|
list[i++] = g_strdup (old_list[j]);
|
|
|
|
}
|
2008-09-26 21:57:36 +02:00
|
|
|
}
|
|
|
|
}
|
2008-10-13 12:02:30 +02:00
|
|
|
|
|
|
|
if (add_non_default)
|
|
|
|
{
|
|
|
|
/* We're adding as non-default, and it wasn't already in the list,
|
|
|
|
so we add at the end. But to avoid listing the app before the
|
|
|
|
current system default (thus changing the default) we have to
|
|
|
|
add the current list of (not yet listed) apps before it. */
|
|
|
|
|
|
|
|
list[i] = NULL; /* Terminate current list so we can use it */
|
2009-01-05 17:57:55 +01:00
|
|
|
system_list = get_all_desktop_entries_for_mime_type (content_type, (const char **)list);
|
2008-10-13 12:02:30 +02:00
|
|
|
|
|
|
|
list = g_renew (char *, list, 1 + length + g_list_length (system_list) + 1);
|
|
|
|
|
|
|
|
for (l = system_list; l != NULL; l = l->next)
|
|
|
|
{
|
|
|
|
list[i++] = l->data; /* no strdup, taking ownership */
|
|
|
|
if (g_strcmp0 (l->data, desktop_id) == 0)
|
|
|
|
add_non_default = FALSE;
|
|
|
|
}
|
|
|
|
g_list_free (system_list);
|
|
|
|
|
|
|
|
if (add_non_default)
|
|
|
|
list[i++] = g_strdup (desktop_id);
|
|
|
|
}
|
|
|
|
|
2008-09-26 21:57:36 +02:00
|
|
|
list[i] = NULL;
|
2008-01-25 13:06:14 +01:00
|
|
|
|
2008-09-26 21:57:36 +02:00
|
|
|
g_strfreev (old_list);
|
2008-01-25 13:06:14 +01:00
|
|
|
|
2008-09-26 21:57:36 +02:00
|
|
|
if (list[0] == NULL || desktop_id == NULL)
|
|
|
|
g_key_file_remove_key (key_file,
|
|
|
|
ADDED_ASSOCIATIONS_GROUP,
|
|
|
|
content_types[k],
|
|
|
|
NULL);
|
|
|
|
else
|
|
|
|
g_key_file_set_string_list (key_file,
|
|
|
|
ADDED_ASSOCIATIONS_GROUP,
|
|
|
|
content_types[k],
|
|
|
|
(const char * const *)list, i);
|
|
|
|
|
|
|
|
g_strfreev (list);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (content_type)
|
2008-01-25 13:06:14 +01:00
|
|
|
{
|
2008-09-26 21:57:36 +02:00
|
|
|
/* reuse the list from above */
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
g_strfreev (content_types);
|
|
|
|
content_types = g_key_file_get_keys (key_file, REMOVED_ASSOCIATIONS_GROUP, NULL, NULL);
|
2008-01-25 13:06:14 +01:00
|
|
|
}
|
2008-09-26 21:57:36 +02:00
|
|
|
|
|
|
|
for (k = 0; content_types && content_types[k]; k++)
|
|
|
|
{
|
|
|
|
/* Remove from removed associations group (unless remove) */
|
2008-01-25 13:06:14 +01:00
|
|
|
|
2008-09-26 21:57:36 +02:00
|
|
|
length = 0;
|
|
|
|
old_list = g_key_file_get_string_list (key_file, REMOVED_ASSOCIATIONS_GROUP,
|
|
|
|
content_types[k], &length, NULL);
|
2008-01-25 13:06:14 +01:00
|
|
|
|
2008-09-26 21:57:36 +02:00
|
|
|
list = g_new (char *, 1 + length + 1);
|
|
|
|
|
|
|
|
i = 0;
|
|
|
|
if (remove)
|
|
|
|
list[i++] = g_strdup (desktop_id);
|
|
|
|
if (old_list)
|
|
|
|
{
|
|
|
|
for (j = 0; old_list[j] != NULL; j++)
|
|
|
|
{
|
|
|
|
if (g_strcmp0 (old_list[j], desktop_id) != 0)
|
|
|
|
list[i++] = g_strdup (old_list[j]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
list[i] = NULL;
|
|
|
|
|
|
|
|
g_strfreev (old_list);
|
2008-01-25 13:06:14 +01:00
|
|
|
|
2008-09-26 21:57:36 +02:00
|
|
|
if (list[0] == NULL || desktop_id == NULL)
|
|
|
|
g_key_file_remove_key (key_file,
|
|
|
|
REMOVED_ASSOCIATIONS_GROUP,
|
|
|
|
content_types[k],
|
|
|
|
NULL);
|
|
|
|
else
|
|
|
|
g_key_file_set_string_list (key_file,
|
|
|
|
REMOVED_ASSOCIATIONS_GROUP,
|
|
|
|
content_types[k],
|
|
|
|
(const char * const *)list, i);
|
2008-01-25 13:06:14 +01:00
|
|
|
|
2008-09-26 21:57:36 +02:00
|
|
|
g_strfreev (list);
|
|
|
|
}
|
2007-11-26 17:13:05 +01:00
|
|
|
|
2008-09-26 21:57:36 +02:00
|
|
|
g_strfreev (content_types);
|
|
|
|
|
2007-11-26 17:13:05 +01:00
|
|
|
data = g_key_file_to_data (key_file, &data_size, error);
|
|
|
|
g_key_file_free (key_file);
|
|
|
|
|
|
|
|
res = g_file_set_contents (filename, data, data_size, error);
|
|
|
|
|
|
|
|
mime_info_cache_reload (NULL);
|
|
|
|
|
|
|
|
g_free (filename);
|
|
|
|
g_free (data);
|
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
g_desktop_app_info_set_as_default_for_type (GAppInfo *appinfo,
|
|
|
|
const char *content_type,
|
|
|
|
GError **error)
|
|
|
|
{
|
|
|
|
GDesktopAppInfo *info = G_DESKTOP_APP_INFO (appinfo);
|
|
|
|
|
2008-01-29 15:07:07 +01:00
|
|
|
if (!g_desktop_app_info_ensure_saved (info, error))
|
|
|
|
return FALSE;
|
|
|
|
|
2008-02-06 11:57:27 +01:00
|
|
|
return update_mimeapps_list (info->desktop_id, content_type, TRUE, FALSE, FALSE, error);
|
2007-11-26 17:13:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
update_program_done (GPid pid,
|
|
|
|
gint status,
|
|
|
|
gpointer data)
|
|
|
|
{
|
|
|
|
/* Did the application exit correctly */
|
|
|
|
if (WIFEXITED (status) &&
|
|
|
|
WEXITSTATUS (status) == 0)
|
|
|
|
{
|
|
|
|
/* Here we could clean out any caches in use */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
run_update_command (char *command,
|
|
|
|
char *subdir)
|
|
|
|
{
|
|
|
|
char *argv[3] = {
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
};
|
|
|
|
GPid pid = 0;
|
|
|
|
GError *error = NULL;
|
|
|
|
|
|
|
|
argv[0] = command;
|
|
|
|
argv[1] = g_build_filename (g_get_user_data_dir (), subdir, NULL);
|
|
|
|
|
|
|
|
if (g_spawn_async ("/", argv,
|
|
|
|
NULL, /* envp */
|
|
|
|
G_SPAWN_SEARCH_PATH |
|
|
|
|
G_SPAWN_STDOUT_TO_DEV_NULL |
|
|
|
|
G_SPAWN_STDERR_TO_DEV_NULL |
|
|
|
|
G_SPAWN_DO_NOT_REAP_CHILD,
|
|
|
|
NULL, NULL, /* No setup function */
|
|
|
|
&pid,
|
2008-10-05 02:33:43 +02:00
|
|
|
&error))
|
2007-11-26 17:13:05 +01:00
|
|
|
g_child_watch_add (pid, update_program_done, NULL);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* If we get an error at this point, it's quite likely the user doesn't
|
|
|
|
* have an installed copy of either 'update-mime-database' or
|
|
|
|
* 'update-desktop-database'. I don't think we want to popup an error
|
|
|
|
* dialog at this point, so we just do a g_warning to give the user a
|
|
|
|
* chance of debugging it.
|
|
|
|
*/
|
|
|
|
g_warning ("%s", error->message);
|
|
|
|
}
|
|
|
|
|
|
|
|
g_free (argv[1]);
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
2007-11-29 08:17:59 +01:00
|
|
|
g_desktop_app_info_set_as_default_for_extension (GAppInfo *appinfo,
|
|
|
|
const char *extension,
|
|
|
|
GError **error)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
char *filename, *basename, *mimetype;
|
|
|
|
char *dirname;
|
|
|
|
gboolean res;
|
|
|
|
|
2008-01-29 15:07:07 +01:00
|
|
|
if (!g_desktop_app_info_ensure_saved (G_DESKTOP_APP_INFO (appinfo), error))
|
|
|
|
return FALSE;
|
|
|
|
|
2007-11-26 17:13:05 +01:00
|
|
|
dirname = ensure_dir (MIMETYPE_DIR, error);
|
|
|
|
if (!dirname)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
basename = g_strdup_printf ("user-extension-%s.xml", extension);
|
|
|
|
filename = g_build_filename (dirname, basename, NULL);
|
|
|
|
g_free (basename);
|
|
|
|
g_free (dirname);
|
|
|
|
|
|
|
|
mimetype = g_strdup_printf ("application/x-extension-%s", extension);
|
|
|
|
|
2007-11-30 06:11:25 +01:00
|
|
|
if (!g_file_test (filename, G_FILE_TEST_EXISTS))
|
|
|
|
{
|
|
|
|
char *contents;
|
|
|
|
|
|
|
|
contents =
|
|
|
|
g_strdup_printf ("<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"
|
|
|
|
"<mime-info xmlns=\"http://www.freedesktop.org/standards/shared-mime-info\">\n"
|
|
|
|
" <mime-type type=\"%s\">\n"
|
|
|
|
" <comment>%s document</comment>\n"
|
|
|
|
" <glob pattern=\"*.%s\"/>\n"
|
|
|
|
" </mime-type>\n"
|
|
|
|
"</mime-info>\n", mimetype, extension, extension);
|
|
|
|
|
|
|
|
g_file_set_contents (filename, contents, -1, NULL);
|
|
|
|
g_free (contents);
|
|
|
|
|
|
|
|
run_update_command ("update-mime-database", "mime");
|
|
|
|
}
|
2007-11-26 17:13:05 +01:00
|
|
|
g_free (filename);
|
|
|
|
|
|
|
|
res = g_desktop_app_info_set_as_default_for_type (appinfo,
|
|
|
|
mimetype,
|
|
|
|
error);
|
|
|
|
|
|
|
|
g_free (mimetype);
|
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
2007-11-29 08:17:59 +01:00
|
|
|
g_desktop_app_info_add_supports_type (GAppInfo *appinfo,
|
|
|
|
const char *content_type,
|
|
|
|
GError **error)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GDesktopAppInfo *info = G_DESKTOP_APP_INFO (appinfo);
|
|
|
|
|
2008-01-29 15:07:07 +01:00
|
|
|
if (!g_desktop_app_info_ensure_saved (G_DESKTOP_APP_INFO (info), error))
|
|
|
|
return FALSE;
|
|
|
|
|
2008-02-06 11:57:27 +01:00
|
|
|
return update_mimeapps_list (info->desktop_id, content_type, FALSE, TRUE, FALSE, error);
|
2007-11-26 17:13:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
2007-11-29 08:17:59 +01:00
|
|
|
g_desktop_app_info_can_remove_supports_type (GAppInfo *appinfo)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
2008-01-25 13:06:14 +01:00
|
|
|
return TRUE;
|
2007-11-26 17:13:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
2007-11-29 08:17:59 +01:00
|
|
|
g_desktop_app_info_remove_supports_type (GAppInfo *appinfo,
|
|
|
|
const char *content_type,
|
|
|
|
GError **error)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GDesktopAppInfo *info = G_DESKTOP_APP_INFO (appinfo);
|
|
|
|
|
2008-01-29 15:07:07 +01:00
|
|
|
if (!g_desktop_app_info_ensure_saved (G_DESKTOP_APP_INFO (info), error))
|
|
|
|
return FALSE;
|
|
|
|
|
2008-02-06 11:57:27 +01:00
|
|
|
return update_mimeapps_list (info->desktop_id, content_type, FALSE, FALSE, TRUE, error);
|
2007-11-26 17:13:05 +01:00
|
|
|
}
|
|
|
|
|
2008-01-29 15:07:07 +01:00
|
|
|
static gboolean
|
2008-11-28 08:27:13 +01:00
|
|
|
g_desktop_app_info_ensure_saved (GDesktopAppInfo *info,
|
|
|
|
GError **error)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GKeyFile *key_file;
|
|
|
|
char *dirname;
|
2008-01-30 12:27:02 +01:00
|
|
|
char *filename;
|
2007-11-26 17:13:05 +01:00
|
|
|
char *data, *desktop_id;
|
|
|
|
gsize data_size;
|
|
|
|
int fd;
|
|
|
|
gboolean res;
|
2008-01-29 15:07:07 +01:00
|
|
|
|
|
|
|
if (info->filename != NULL)
|
|
|
|
return TRUE;
|
2007-11-26 17:13:05 +01:00
|
|
|
|
2008-01-29 15:07:07 +01:00
|
|
|
/* This is only used for object created with
|
|
|
|
* g_app_info_create_from_commandline. All other
|
|
|
|
* object should have a filename
|
|
|
|
*/
|
|
|
|
|
2007-11-26 17:13:05 +01:00
|
|
|
dirname = ensure_dir (APP_DIR, error);
|
|
|
|
if (!dirname)
|
2008-01-29 15:07:07 +01:00
|
|
|
return FALSE;
|
2007-11-26 17:13:05 +01:00
|
|
|
|
|
|
|
key_file = g_key_file_new ();
|
|
|
|
|
|
|
|
g_key_file_set_string (key_file, G_KEY_FILE_DESKTOP_GROUP,
|
|
|
|
"Encoding", "UTF-8");
|
|
|
|
g_key_file_set_string (key_file, G_KEY_FILE_DESKTOP_GROUP,
|
|
|
|
G_KEY_FILE_DESKTOP_KEY_VERSION, "1.0");
|
|
|
|
g_key_file_set_string (key_file, G_KEY_FILE_DESKTOP_GROUP,
|
|
|
|
G_KEY_FILE_DESKTOP_KEY_TYPE,
|
|
|
|
G_KEY_FILE_DESKTOP_TYPE_APPLICATION);
|
2008-01-29 15:07:07 +01:00
|
|
|
if (info->terminal)
|
2007-11-26 17:13:05 +01:00
|
|
|
g_key_file_set_boolean (key_file, G_KEY_FILE_DESKTOP_GROUP,
|
|
|
|
G_KEY_FILE_DESKTOP_KEY_TERMINAL, TRUE);
|
|
|
|
|
|
|
|
g_key_file_set_string (key_file, G_KEY_FILE_DESKTOP_GROUP,
|
2008-01-29 15:07:07 +01:00
|
|
|
G_KEY_FILE_DESKTOP_KEY_EXEC, info->exec);
|
2007-11-26 17:13:05 +01:00
|
|
|
|
|
|
|
g_key_file_set_string (key_file, G_KEY_FILE_DESKTOP_GROUP,
|
2008-01-29 15:07:07 +01:00
|
|
|
G_KEY_FILE_DESKTOP_KEY_NAME, info->name);
|
2007-11-26 17:13:05 +01:00
|
|
|
|
2009-11-18 23:37:47 +01:00
|
|
|
if (info->fullname != NULL)
|
|
|
|
g_key_file_set_string (key_file, G_KEY_FILE_DESKTOP_GROUP,
|
|
|
|
FULL_NAME_KEY, info->fullname);
|
|
|
|
|
2007-11-26 17:13:05 +01:00
|
|
|
g_key_file_set_string (key_file, G_KEY_FILE_DESKTOP_GROUP,
|
2008-01-29 15:07:07 +01:00
|
|
|
G_KEY_FILE_DESKTOP_KEY_COMMENT, info->comment);
|
2007-11-26 17:13:05 +01:00
|
|
|
|
|
|
|
g_key_file_set_boolean (key_file, G_KEY_FILE_DESKTOP_GROUP,
|
|
|
|
G_KEY_FILE_DESKTOP_KEY_NO_DISPLAY, TRUE);
|
|
|
|
|
|
|
|
data = g_key_file_to_data (key_file, &data_size, NULL);
|
|
|
|
g_key_file_free (key_file);
|
|
|
|
|
2008-01-29 15:07:07 +01:00
|
|
|
desktop_id = g_strdup_printf ("userapp-%s-XXXXXX.desktop", info->name);
|
2007-11-26 17:13:05 +01:00
|
|
|
filename = g_build_filename (dirname, desktop_id, NULL);
|
|
|
|
g_free (desktop_id);
|
|
|
|
g_free (dirname);
|
|
|
|
|
|
|
|
fd = g_mkstemp (filename);
|
|
|
|
if (fd == -1)
|
|
|
|
{
|
|
|
|
char *display_name;
|
|
|
|
|
|
|
|
display_name = g_filename_display_name (filename);
|
|
|
|
g_set_error (error, G_IO_ERROR, G_IO_ERROR_FAILED,
|
|
|
|
_("Can't create user desktop file %s"), display_name);
|
|
|
|
g_free (display_name);
|
|
|
|
g_free (filename);
|
|
|
|
g_free (data);
|
2008-01-29 15:07:07 +01:00
|
|
|
return FALSE;
|
2007-11-26 17:13:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
desktop_id = g_path_get_basename (filename);
|
|
|
|
|
|
|
|
close (fd);
|
|
|
|
|
|
|
|
res = g_file_set_contents (filename, data, data_size, error);
|
|
|
|
if (!res)
|
|
|
|
{
|
|
|
|
g_free (desktop_id);
|
|
|
|
g_free (filename);
|
2008-01-29 15:07:07 +01:00
|
|
|
return FALSE;
|
2007-11-26 17:13:05 +01:00
|
|
|
}
|
|
|
|
|
2008-01-29 15:07:07 +01:00
|
|
|
info->filename = filename;
|
|
|
|
info->desktop_id = desktop_id;
|
|
|
|
|
2007-11-26 17:13:05 +01:00
|
|
|
run_update_command ("update-desktop-database", "applications");
|
|
|
|
|
2008-01-29 15:07:07 +01:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2008-09-26 21:57:36 +02:00
|
|
|
static gboolean
|
|
|
|
g_desktop_app_info_can_delete (GAppInfo *appinfo)
|
|
|
|
{
|
|
|
|
GDesktopAppInfo *info = G_DESKTOP_APP_INFO (appinfo);
|
|
|
|
|
|
|
|
if (info->filename)
|
2008-11-28 08:27:13 +01:00
|
|
|
{
|
|
|
|
if (strstr (info->filename, "/userapp-"))
|
|
|
|
return g_access (info->filename, W_OK) == 0;
|
|
|
|
}
|
2008-09-26 21:57:36 +02:00
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
g_desktop_app_info_delete (GAppInfo *appinfo)
|
|
|
|
{
|
|
|
|
GDesktopAppInfo *info = G_DESKTOP_APP_INFO (appinfo);
|
|
|
|
|
|
|
|
if (info->filename)
|
|
|
|
{
|
|
|
|
if (g_remove (info->filename) == 0)
|
|
|
|
{
|
|
|
|
update_mimeapps_list (info->desktop_id, NULL, FALSE, FALSE, FALSE, NULL);
|
|
|
|
|
|
|
|
g_free (info->filename);
|
|
|
|
info->filename = NULL;
|
|
|
|
g_free (info->desktop_id);
|
|
|
|
info->desktop_id = NULL;
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2008-01-29 15:07:07 +01:00
|
|
|
/**
|
|
|
|
* g_app_info_create_from_commandline:
|
|
|
|
* @commandline: the commandline to use
|
|
|
|
* @application_name: the application name, or %NULL to use @commandline
|
|
|
|
* @flags: flags that can specify details of the created #GAppInfo
|
|
|
|
* @error: a #GError location to store the error occuring, %NULL to ignore.
|
|
|
|
*
|
|
|
|
* Creates a new #GAppInfo from the given information.
|
|
|
|
*
|
|
|
|
* Returns: new #GAppInfo for given command.
|
|
|
|
**/
|
|
|
|
GAppInfo *
|
|
|
|
g_app_info_create_from_commandline (const char *commandline,
|
|
|
|
const char *application_name,
|
|
|
|
GAppInfoCreateFlags flags,
|
|
|
|
GError **error)
|
|
|
|
{
|
|
|
|
char **split;
|
|
|
|
char *basename;
|
|
|
|
GDesktopAppInfo *info;
|
|
|
|
|
2009-11-19 16:58:43 +01:00
|
|
|
g_return_val_if_fail (commandline, NULL);
|
|
|
|
|
2008-01-29 15:07:07 +01:00
|
|
|
info = g_object_new (G_TYPE_DESKTOP_APP_INFO, NULL);
|
|
|
|
|
|
|
|
info->filename = NULL;
|
|
|
|
info->desktop_id = NULL;
|
|
|
|
|
|
|
|
info->terminal = flags & G_APP_INFO_CREATE_NEEDS_TERMINAL;
|
|
|
|
info->startup_notify = FALSE;
|
|
|
|
info->hidden = FALSE;
|
2008-01-29 16:47:27 +01:00
|
|
|
if (flags & G_APP_INFO_CREATE_SUPPORTS_URIS)
|
|
|
|
info->exec = g_strconcat (commandline, " %u", NULL);
|
|
|
|
else
|
|
|
|
info->exec = g_strconcat (commandline, " %f", NULL);
|
2008-01-29 15:07:07 +01:00
|
|
|
info->nodisplay = TRUE;
|
|
|
|
info->binary = binary_from_exec (info->exec);
|
|
|
|
|
|
|
|
if (application_name)
|
|
|
|
info->name = g_strdup (application_name);
|
2007-11-26 17:13:05 +01:00
|
|
|
else
|
2008-01-29 15:07:07 +01:00
|
|
|
{
|
|
|
|
/* FIXME: this should be more robust. Maybe g_shell_parse_argv and use argv[0] */
|
|
|
|
split = g_strsplit (commandline, " ", 2);
|
2009-11-19 16:58:43 +01:00
|
|
|
basename = split[0] ? g_path_get_basename (split[0]) : NULL;
|
2008-01-29 15:07:07 +01:00
|
|
|
g_strfreev (split);
|
|
|
|
info->name = basename;
|
|
|
|
if (info->name == NULL)
|
|
|
|
info->name = g_strdup ("custom");
|
|
|
|
}
|
2008-04-09 16:53:05 +02:00
|
|
|
info->comment = g_strdup_printf (_("Custom definition for %s"), info->name);
|
2007-11-26 17:13:05 +01:00
|
|
|
|
|
|
|
return G_APP_INFO (info);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
g_desktop_app_info_iface_init (GAppInfoIface *iface)
|
|
|
|
{
|
|
|
|
iface->dup = g_desktop_app_info_dup;
|
|
|
|
iface->equal = g_desktop_app_info_equal;
|
|
|
|
iface->get_id = g_desktop_app_info_get_id;
|
|
|
|
iface->get_name = g_desktop_app_info_get_name;
|
|
|
|
iface->get_description = g_desktop_app_info_get_description;
|
|
|
|
iface->get_executable = g_desktop_app_info_get_executable;
|
|
|
|
iface->get_icon = g_desktop_app_info_get_icon;
|
|
|
|
iface->launch = g_desktop_app_info_launch;
|
|
|
|
iface->supports_uris = g_desktop_app_info_supports_uris;
|
2008-01-04 11:51:56 +01:00
|
|
|
iface->supports_files = g_desktop_app_info_supports_files;
|
2007-11-26 17:13:05 +01:00
|
|
|
iface->launch_uris = g_desktop_app_info_launch_uris;
|
|
|
|
iface->should_show = g_desktop_app_info_should_show;
|
|
|
|
iface->set_as_default_for_type = g_desktop_app_info_set_as_default_for_type;
|
|
|
|
iface->set_as_default_for_extension = g_desktop_app_info_set_as_default_for_extension;
|
|
|
|
iface->add_supports_type = g_desktop_app_info_add_supports_type;
|
|
|
|
iface->can_remove_supports_type = g_desktop_app_info_can_remove_supports_type;
|
|
|
|
iface->remove_supports_type = g_desktop_app_info_remove_supports_type;
|
2008-09-26 21:57:36 +02:00
|
|
|
iface->can_delete = g_desktop_app_info_can_delete;
|
|
|
|
iface->do_delete = g_desktop_app_info_delete;
|
2008-11-29 00:16:45 +01:00
|
|
|
iface->get_commandline = g_desktop_app_info_get_commandline;
|
2009-11-18 23:37:47 +01:00
|
|
|
iface->get_display_name = g_desktop_app_info_get_display_name;
|
2007-11-26 17:13:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
2007-11-29 08:17:59 +01:00
|
|
|
app_info_in_list (GAppInfo *info,
|
|
|
|
GList *list)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
2007-11-29 08:17:59 +01:00
|
|
|
while (list != NULL)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
2007-11-29 08:17:59 +01:00
|
|
|
if (g_app_info_equal (info, list->data))
|
2007-11-26 17:13:05 +01:00
|
|
|
return TRUE;
|
2007-11-29 08:17:59 +01:00
|
|
|
list = list->next;
|
2007-11-26 17:13:05 +01:00
|
|
|
}
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_app_info_get_all_for_type:
|
2007-11-28 07:01:13 +01:00
|
|
|
* @content_type: the content type to find a #GAppInfo for
|
2007-11-26 17:13:05 +01:00
|
|
|
*
|
2009-09-13 03:42:33 +02:00
|
|
|
* Gets a list of all #GAppInfo<!-- -->s for a given content type.
|
2007-11-28 05:29:02 +01:00
|
|
|
*
|
2009-09-13 03:42:33 +02:00
|
|
|
* Returns: #GList of #GAppInfo<!-- -->s for given @content_type
|
2008-01-10 14:25:41 +01:00
|
|
|
* or %NULL on error.
|
2007-11-26 17:13:05 +01:00
|
|
|
**/
|
|
|
|
GList *
|
|
|
|
g_app_info_get_all_for_type (const char *content_type)
|
|
|
|
{
|
|
|
|
GList *desktop_entries, *l;
|
|
|
|
GList *infos;
|
|
|
|
GDesktopAppInfo *info;
|
2008-01-10 14:25:41 +01:00
|
|
|
|
|
|
|
g_return_val_if_fail (content_type != NULL, NULL);
|
2007-11-26 17:13:05 +01:00
|
|
|
|
2008-10-13 12:02:30 +02:00
|
|
|
desktop_entries = get_all_desktop_entries_for_mime_type (content_type, NULL);
|
2007-11-26 17:13:05 +01:00
|
|
|
|
|
|
|
infos = NULL;
|
|
|
|
for (l = desktop_entries; l != NULL; l = l->next)
|
|
|
|
{
|
|
|
|
char *desktop_entry = l->data;
|
|
|
|
|
2007-12-10 19:51:21 +01:00
|
|
|
info = g_desktop_app_info_new (desktop_entry);
|
2007-11-26 17:13:05 +01:00
|
|
|
if (info)
|
|
|
|
{
|
|
|
|
if (app_info_in_list (G_APP_INFO (info), infos))
|
|
|
|
g_object_unref (info);
|
|
|
|
else
|
|
|
|
infos = g_list_prepend (infos, info);
|
|
|
|
}
|
|
|
|
g_free (desktop_entry);
|
|
|
|
}
|
|
|
|
|
|
|
|
g_list_free (desktop_entries);
|
|
|
|
|
|
|
|
return g_list_reverse (infos);
|
|
|
|
}
|
|
|
|
|
2008-09-26 21:57:36 +02:00
|
|
|
/**
|
|
|
|
* g_app_info_reset_type_associations:
|
2008-10-24 05:52:02 +02:00
|
|
|
* @content_type: a content type
|
2008-09-26 21:57:36 +02:00
|
|
|
*
|
|
|
|
* Removes all changes to the type associations done by
|
|
|
|
* g_app_info_set_as_default_for_type(),
|
|
|
|
* g_app_info_set_as_default_for_extension(),
|
2009-09-13 03:42:33 +02:00
|
|
|
* g_app_info_add_supports_type() or g_app_info_remove_supports_type().
|
2008-09-26 21:57:36 +02:00
|
|
|
*
|
|
|
|
* Since: 2.20
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
g_app_info_reset_type_associations (const char *content_type)
|
|
|
|
{
|
|
|
|
update_mimeapps_list (NULL, content_type, FALSE, FALSE, FALSE, NULL);
|
|
|
|
}
|
2007-11-26 17:13:05 +01:00
|
|
|
|
|
|
|
/**
|
2007-11-28 05:29:02 +01:00
|
|
|
* g_app_info_get_default_for_type:
|
2007-11-28 07:01:13 +01:00
|
|
|
* @content_type: the content type to find a #GAppInfo for
|
|
|
|
* @must_support_uris: if %TRUE, the #GAppInfo is expected to
|
|
|
|
* support URIs
|
2007-11-26 17:13:05 +01:00
|
|
|
*
|
2009-09-13 03:42:33 +02:00
|
|
|
* Gets the #GAppInfo that corresponds to a given content type.
|
2007-11-28 05:29:02 +01:00
|
|
|
*
|
2008-01-10 14:25:41 +01:00
|
|
|
* Returns: #GAppInfo for given @content_type or %NULL on error.
|
2007-11-26 17:13:05 +01:00
|
|
|
**/
|
|
|
|
GAppInfo *
|
|
|
|
g_app_info_get_default_for_type (const char *content_type,
|
2007-11-29 08:17:59 +01:00
|
|
|
gboolean must_support_uris)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GList *desktop_entries, *l;
|
|
|
|
GAppInfo *info;
|
2008-01-10 14:25:41 +01:00
|
|
|
|
|
|
|
g_return_val_if_fail (content_type != NULL, NULL);
|
2007-11-26 17:13:05 +01:00
|
|
|
|
2008-10-13 12:02:30 +02:00
|
|
|
desktop_entries = get_all_desktop_entries_for_mime_type (content_type, NULL);
|
2007-11-26 17:13:05 +01:00
|
|
|
|
|
|
|
info = NULL;
|
|
|
|
for (l = desktop_entries; l != NULL; l = l->next)
|
|
|
|
{
|
|
|
|
char *desktop_entry = l->data;
|
|
|
|
|
2007-12-10 19:51:21 +01:00
|
|
|
info = (GAppInfo *)g_desktop_app_info_new (desktop_entry);
|
2007-11-26 17:13:05 +01:00
|
|
|
if (info)
|
|
|
|
{
|
|
|
|
if (must_support_uris && !g_app_info_supports_uris (info))
|
|
|
|
{
|
|
|
|
g_object_unref (info);
|
|
|
|
info = NULL;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
g_list_foreach (desktop_entries, (GFunc)g_free, NULL);
|
|
|
|
g_list_free (desktop_entries);
|
|
|
|
|
|
|
|
return info;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_app_info_get_default_for_uri_scheme:
|
2007-12-09 16:51:12 +01:00
|
|
|
* @uri_scheme: a string containing a URI scheme.
|
|
|
|
*
|
2007-12-22 19:15:57 +01:00
|
|
|
* Gets the default application for launching applications
|
2008-02-11 08:12:56 +01:00
|
|
|
* using this URI scheme. A URI scheme is the initial part
|
|
|
|
* of the URI, up to but not including the ':', e.g. "http",
|
|
|
|
* "ftp" or "sip".
|
2007-11-26 17:13:05 +01:00
|
|
|
*
|
2008-02-01 12:21:01 +01:00
|
|
|
* Returns: #GAppInfo for given @uri_scheme or %NULL on error.
|
2007-11-26 17:13:05 +01:00
|
|
|
**/
|
|
|
|
GAppInfo *
|
|
|
|
g_app_info_get_default_for_uri_scheme (const char *uri_scheme)
|
|
|
|
{
|
2008-01-29 13:18:48 +01:00
|
|
|
static gsize lookup = 0;
|
|
|
|
|
|
|
|
if (g_once_init_enter (&lookup))
|
|
|
|
{
|
|
|
|
gsize setup_value = 1;
|
|
|
|
GDesktopAppInfoLookup *lookup_instance;
|
|
|
|
const char *use_this;
|
|
|
|
GIOExtensionPoint *ep;
|
|
|
|
GIOExtension *extension;
|
|
|
|
GList *l;
|
|
|
|
|
|
|
|
use_this = g_getenv ("GIO_USE_URI_ASSOCIATION");
|
|
|
|
|
|
|
|
/* Ensure vfs in modules loaded */
|
|
|
|
_g_io_modules_ensure_loaded ();
|
|
|
|
|
|
|
|
ep = g_io_extension_point_lookup (G_DESKTOP_APP_INFO_LOOKUP_EXTENSION_POINT_NAME);
|
|
|
|
|
|
|
|
lookup_instance = NULL;
|
|
|
|
if (use_this)
|
|
|
|
{
|
|
|
|
extension = g_io_extension_point_get_extension_by_name (ep, use_this);
|
|
|
|
if (extension)
|
|
|
|
lookup_instance = g_object_new (g_io_extension_get_type (extension), NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (lookup_instance == NULL)
|
|
|
|
{
|
|
|
|
for (l = g_io_extension_point_get_extensions (ep); l != NULL; l = l->next)
|
|
|
|
{
|
|
|
|
extension = l->data;
|
|
|
|
lookup_instance = g_object_new (g_io_extension_get_type (extension), NULL);
|
|
|
|
if (lookup_instance != NULL)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (lookup_instance != NULL)
|
|
|
|
setup_value = (gsize)lookup_instance;
|
|
|
|
|
|
|
|
g_once_init_leave (&lookup, setup_value);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (lookup == 1)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
return g_desktop_app_info_lookup_get_default_for_uri_scheme (G_DESKTOP_APP_INFO_LOOKUP (lookup),
|
|
|
|
uri_scheme);
|
2007-11-26 17:13:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
2007-11-29 08:17:59 +01:00
|
|
|
get_apps_from_dir (GHashTable *apps,
|
|
|
|
const char *dirname,
|
|
|
|
const char *prefix)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GDir *dir;
|
|
|
|
const char *basename;
|
|
|
|
char *filename, *subprefix, *desktop_id;
|
|
|
|
gboolean hidden;
|
|
|
|
GDesktopAppInfo *appinfo;
|
|
|
|
|
|
|
|
dir = g_dir_open (dirname, 0, NULL);
|
|
|
|
if (dir)
|
|
|
|
{
|
|
|
|
while ((basename = g_dir_read_name (dir)) != NULL)
|
|
|
|
{
|
|
|
|
filename = g_build_filename (dirname, basename, NULL);
|
|
|
|
if (g_str_has_suffix (basename, ".desktop"))
|
|
|
|
{
|
|
|
|
desktop_id = g_strconcat (prefix, basename, NULL);
|
|
|
|
|
|
|
|
/* Use _extended so we catch NULLs too (hidden) */
|
|
|
|
if (!g_hash_table_lookup_extended (apps, desktop_id, NULL, NULL))
|
|
|
|
{
|
2007-12-10 19:51:21 +01:00
|
|
|
appinfo = g_desktop_app_info_new_from_filename (filename);
|
2009-09-07 08:50:51 +02:00
|
|
|
hidden = FALSE;
|
2007-11-26 17:13:05 +01:00
|
|
|
|
2008-01-04 11:51:56 +01:00
|
|
|
if (appinfo && g_desktop_app_info_get_is_hidden (appinfo))
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
g_object_unref (appinfo);
|
|
|
|
appinfo = NULL;
|
|
|
|
hidden = TRUE;
|
|
|
|
}
|
|
|
|
|
2008-01-04 11:51:56 +01:00
|
|
|
if (appinfo || hidden)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
g_hash_table_insert (apps, g_strdup (desktop_id), appinfo);
|
|
|
|
|
|
|
|
if (appinfo)
|
|
|
|
{
|
|
|
|
/* Reuse instead of strdup here */
|
|
|
|
appinfo->desktop_id = desktop_id;
|
|
|
|
desktop_id = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
g_free (desktop_id);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (g_file_test (filename, G_FILE_TEST_IS_DIR))
|
|
|
|
{
|
|
|
|
subprefix = g_strconcat (prefix, basename, "-", NULL);
|
|
|
|
get_apps_from_dir (apps, filename, subprefix);
|
|
|
|
g_free (subprefix);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
g_free (filename);
|
|
|
|
}
|
|
|
|
g_dir_close (dir);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_app_info_get_all:
|
2007-12-09 16:51:12 +01:00
|
|
|
*
|
2008-01-04 11:51:56 +01:00
|
|
|
* Gets a list of all of the applications currently registered
|
|
|
|
* on this system.
|
|
|
|
*
|
|
|
|
* For desktop files, this includes applications that have
|
2008-01-06 09:04:39 +01:00
|
|
|
* <literal>NoDisplay=true</literal> set or are excluded from
|
2008-01-04 11:51:56 +01:00
|
|
|
* display by means of <literal>OnlyShowIn</literal> or
|
|
|
|
* <literal>NotShowIn</literal>. See g_app_info_should_show().
|
|
|
|
* The returned list does not include applications which have
|
|
|
|
* the <literal>Hidden</literal> key set.
|
2007-11-26 17:13:05 +01:00
|
|
|
*
|
2007-12-09 16:51:12 +01:00
|
|
|
* Returns: a newly allocated #GList of references to #GAppInfo<!---->s.
|
2007-11-26 17:13:05 +01:00
|
|
|
**/
|
|
|
|
GList *
|
|
|
|
g_app_info_get_all (void)
|
|
|
|
{
|
|
|
|
const char * const *dirs;
|
|
|
|
GHashTable *apps;
|
2007-12-15 05:39:26 +01:00
|
|
|
GHashTableIter iter;
|
2007-12-22 19:15:57 +01:00
|
|
|
gpointer value;
|
2007-11-26 17:13:05 +01:00
|
|
|
int i;
|
|
|
|
GList *infos;
|
|
|
|
|
|
|
|
dirs = get_applications_search_path ();
|
|
|
|
|
|
|
|
apps = g_hash_table_new_full (g_str_hash, g_str_equal,
|
|
|
|
g_free, NULL);
|
|
|
|
|
|
|
|
|
|
|
|
for (i = 0; dirs[i] != NULL; i++)
|
|
|
|
get_apps_from_dir (apps, dirs[i], "");
|
|
|
|
|
|
|
|
|
|
|
|
infos = NULL;
|
2007-12-15 05:39:26 +01:00
|
|
|
g_hash_table_iter_init (&iter, apps);
|
2007-12-22 19:15:57 +01:00
|
|
|
while (g_hash_table_iter_next (&iter, NULL, &value))
|
2007-12-31 02:47:59 +01:00
|
|
|
{
|
|
|
|
if (value)
|
|
|
|
infos = g_list_prepend (infos, value);
|
|
|
|
}
|
2007-11-26 17:13:05 +01:00
|
|
|
|
|
|
|
g_hash_table_destroy (apps);
|
|
|
|
|
|
|
|
return g_list_reverse (infos);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Cacheing of mimeinfo.cache and defaults.list files */
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
char *path;
|
|
|
|
GHashTable *mime_info_cache_map;
|
|
|
|
GHashTable *defaults_list_map;
|
2008-02-06 11:57:27 +01:00
|
|
|
GHashTable *mimeapps_list_added_map;
|
|
|
|
GHashTable *mimeapps_list_removed_map;
|
2007-11-26 17:13:05 +01:00
|
|
|
time_t mime_info_cache_timestamp;
|
|
|
|
time_t defaults_list_timestamp;
|
2008-02-06 11:57:27 +01:00
|
|
|
time_t mimeapps_list_timestamp;
|
2007-11-26 17:13:05 +01:00
|
|
|
} MimeInfoCacheDir;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
GList *dirs; /* mimeinfo.cache and defaults.list */
|
|
|
|
GHashTable *global_defaults_cache; /* global results of defaults.list lookup and validation */
|
|
|
|
time_t last_stat_time;
|
|
|
|
guint should_ping_mime_monitor : 1;
|
|
|
|
} MimeInfoCache;
|
|
|
|
|
|
|
|
static MimeInfoCache *mime_info_cache = NULL;
|
|
|
|
G_LOCK_DEFINE_STATIC (mime_info_cache);
|
|
|
|
|
2007-11-29 08:17:59 +01:00
|
|
|
static void mime_info_cache_dir_add_desktop_entries (MimeInfoCacheDir *dir,
|
|
|
|
const char *mime_type,
|
|
|
|
char **new_desktop_file_ids);
|
2007-11-26 17:13:05 +01:00
|
|
|
|
|
|
|
static MimeInfoCache * mime_info_cache_new (void);
|
|
|
|
|
|
|
|
static void
|
2007-11-29 08:17:59 +01:00
|
|
|
destroy_info_cache_value (gpointer key,
|
|
|
|
GList *value,
|
|
|
|
gpointer data)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
g_list_foreach (value, (GFunc)g_free, NULL);
|
|
|
|
g_list_free (value);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
destroy_info_cache_map (GHashTable *info_cache_map)
|
|
|
|
{
|
|
|
|
g_hash_table_foreach (info_cache_map, (GHFunc)destroy_info_cache_value, NULL);
|
|
|
|
g_hash_table_destroy (info_cache_map);
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
mime_info_cache_dir_out_of_date (MimeInfoCacheDir *dir,
|
2007-11-29 08:17:59 +01:00
|
|
|
const char *cache_file,
|
|
|
|
time_t *timestamp)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
struct stat buf;
|
|
|
|
char *filename;
|
|
|
|
|
|
|
|
filename = g_build_filename (dir->path, cache_file, NULL);
|
|
|
|
|
|
|
|
if (g_stat (filename, &buf) < 0)
|
|
|
|
{
|
|
|
|
g_free (filename);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
g_free (filename);
|
|
|
|
|
|
|
|
if (buf.st_mtime != *timestamp)
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Call with lock held */
|
|
|
|
static gboolean
|
|
|
|
remove_all (gpointer key,
|
|
|
|
gpointer value,
|
|
|
|
gpointer user_data)
|
|
|
|
{
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
mime_info_cache_blow_global_cache (void)
|
|
|
|
{
|
|
|
|
g_hash_table_foreach_remove (mime_info_cache->global_defaults_cache,
|
|
|
|
remove_all, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
mime_info_cache_dir_init (MimeInfoCacheDir *dir)
|
|
|
|
{
|
|
|
|
GError *load_error;
|
|
|
|
GKeyFile *key_file;
|
|
|
|
gchar *filename, **mime_types;
|
|
|
|
int i;
|
|
|
|
struct stat buf;
|
|
|
|
|
|
|
|
load_error = NULL;
|
|
|
|
mime_types = NULL;
|
|
|
|
|
|
|
|
if (dir->mime_info_cache_map != NULL &&
|
|
|
|
!mime_info_cache_dir_out_of_date (dir, "mimeinfo.cache",
|
|
|
|
&dir->mime_info_cache_timestamp))
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (dir->mime_info_cache_map != NULL)
|
|
|
|
destroy_info_cache_map (dir->mime_info_cache_map);
|
|
|
|
|
|
|
|
dir->mime_info_cache_map = g_hash_table_new_full (g_str_hash, g_str_equal,
|
|
|
|
(GDestroyNotify) g_free,
|
|
|
|
NULL);
|
|
|
|
|
|
|
|
key_file = g_key_file_new ();
|
|
|
|
|
|
|
|
filename = g_build_filename (dir->path, "mimeinfo.cache", NULL);
|
|
|
|
|
|
|
|
if (g_stat (filename, &buf) < 0)
|
|
|
|
goto error;
|
|
|
|
|
|
|
|
if (dir->mime_info_cache_timestamp > 0)
|
|
|
|
mime_info_cache->should_ping_mime_monitor = TRUE;
|
|
|
|
|
|
|
|
dir->mime_info_cache_timestamp = buf.st_mtime;
|
|
|
|
|
|
|
|
g_key_file_load_from_file (key_file, filename, G_KEY_FILE_NONE, &load_error);
|
|
|
|
|
|
|
|
g_free (filename);
|
|
|
|
filename = NULL;
|
|
|
|
|
|
|
|
if (load_error != NULL)
|
|
|
|
goto error;
|
|
|
|
|
|
|
|
mime_types = g_key_file_get_keys (key_file, MIME_CACHE_GROUP,
|
|
|
|
NULL, &load_error);
|
|
|
|
|
|
|
|
if (load_error != NULL)
|
|
|
|
goto error;
|
|
|
|
|
|
|
|
for (i = 0; mime_types[i] != NULL; i++)
|
|
|
|
{
|
|
|
|
gchar **desktop_file_ids;
|
|
|
|
char *unaliased_type;
|
|
|
|
desktop_file_ids = g_key_file_get_string_list (key_file,
|
|
|
|
MIME_CACHE_GROUP,
|
|
|
|
mime_types[i],
|
|
|
|
NULL,
|
|
|
|
NULL);
|
|
|
|
|
|
|
|
if (desktop_file_ids == NULL)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
unaliased_type = _g_unix_content_type_unalias (mime_types[i]);
|
|
|
|
mime_info_cache_dir_add_desktop_entries (dir,
|
|
|
|
unaliased_type,
|
|
|
|
desktop_file_ids);
|
|
|
|
g_free (unaliased_type);
|
|
|
|
|
|
|
|
g_strfreev (desktop_file_ids);
|
|
|
|
}
|
|
|
|
|
|
|
|
g_strfreev (mime_types);
|
|
|
|
g_key_file_free (key_file);
|
|
|
|
|
|
|
|
return;
|
|
|
|
error:
|
|
|
|
g_free (filename);
|
|
|
|
g_key_file_free (key_file);
|
|
|
|
|
|
|
|
if (mime_types != NULL)
|
|
|
|
g_strfreev (mime_types);
|
|
|
|
|
|
|
|
if (load_error)
|
|
|
|
g_error_free (load_error);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
mime_info_cache_dir_init_defaults_list (MimeInfoCacheDir *dir)
|
|
|
|
{
|
|
|
|
GKeyFile *key_file;
|
|
|
|
GError *load_error;
|
|
|
|
gchar *filename, **mime_types;
|
|
|
|
char *unaliased_type;
|
|
|
|
char **desktop_file_ids;
|
|
|
|
int i;
|
|
|
|
struct stat buf;
|
|
|
|
|
|
|
|
load_error = NULL;
|
|
|
|
mime_types = NULL;
|
|
|
|
|
|
|
|
if (dir->defaults_list_map != NULL &&
|
|
|
|
!mime_info_cache_dir_out_of_date (dir, "defaults.list",
|
|
|
|
&dir->defaults_list_timestamp))
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (dir->defaults_list_map != NULL)
|
|
|
|
g_hash_table_destroy (dir->defaults_list_map);
|
|
|
|
dir->defaults_list_map = g_hash_table_new_full (g_str_hash, g_str_equal,
|
|
|
|
g_free, (GDestroyNotify)g_strfreev);
|
2008-01-25 13:06:14 +01:00
|
|
|
|
2007-11-26 17:13:05 +01:00
|
|
|
|
|
|
|
key_file = g_key_file_new ();
|
|
|
|
|
|
|
|
filename = g_build_filename (dir->path, "defaults.list", NULL);
|
|
|
|
if (g_stat (filename, &buf) < 0)
|
|
|
|
goto error;
|
|
|
|
|
|
|
|
if (dir->defaults_list_timestamp > 0)
|
|
|
|
mime_info_cache->should_ping_mime_monitor = TRUE;
|
|
|
|
|
|
|
|
dir->defaults_list_timestamp = buf.st_mtime;
|
|
|
|
|
|
|
|
g_key_file_load_from_file (key_file, filename, G_KEY_FILE_NONE, &load_error);
|
|
|
|
g_free (filename);
|
|
|
|
filename = NULL;
|
|
|
|
|
|
|
|
if (load_error != NULL)
|
|
|
|
goto error;
|
|
|
|
|
|
|
|
mime_types = g_key_file_get_keys (key_file, DEFAULT_APPLICATIONS_GROUP,
|
2008-01-25 13:06:14 +01:00
|
|
|
NULL, NULL);
|
|
|
|
if (mime_types != NULL)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
2008-01-25 13:06:14 +01:00
|
|
|
for (i = 0; mime_types[i] != NULL; i++)
|
|
|
|
{
|
|
|
|
desktop_file_ids = g_key_file_get_string_list (key_file,
|
|
|
|
DEFAULT_APPLICATIONS_GROUP,
|
|
|
|
mime_types[i],
|
|
|
|
NULL,
|
|
|
|
NULL);
|
|
|
|
if (desktop_file_ids == NULL)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
unaliased_type = _g_unix_content_type_unalias (mime_types[i]);
|
|
|
|
g_hash_table_replace (dir->defaults_list_map,
|
|
|
|
unaliased_type,
|
|
|
|
desktop_file_ids);
|
|
|
|
}
|
|
|
|
|
|
|
|
g_strfreev (mime_types);
|
|
|
|
}
|
2007-11-26 17:13:05 +01:00
|
|
|
|
2008-02-06 11:57:27 +01:00
|
|
|
g_key_file_free (key_file);
|
|
|
|
return;
|
|
|
|
|
|
|
|
error:
|
|
|
|
g_free (filename);
|
|
|
|
g_key_file_free (key_file);
|
|
|
|
|
|
|
|
if (mime_types != NULL)
|
|
|
|
g_strfreev (mime_types);
|
|
|
|
|
|
|
|
if (load_error)
|
|
|
|
g_error_free (load_error);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
mime_info_cache_dir_init_mimeapps_list (MimeInfoCacheDir *dir)
|
|
|
|
{
|
|
|
|
GKeyFile *key_file;
|
|
|
|
GError *load_error;
|
|
|
|
gchar *filename, **mime_types;
|
|
|
|
char *unaliased_type;
|
|
|
|
char **desktop_file_ids;
|
|
|
|
int i;
|
|
|
|
struct stat buf;
|
|
|
|
|
|
|
|
load_error = NULL;
|
|
|
|
mime_types = NULL;
|
|
|
|
|
|
|
|
if (dir->mimeapps_list_added_map != NULL &&
|
|
|
|
!mime_info_cache_dir_out_of_date (dir, "mimeapps.list",
|
|
|
|
&dir->mimeapps_list_timestamp))
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (dir->mimeapps_list_added_map != NULL)
|
|
|
|
g_hash_table_destroy (dir->mimeapps_list_added_map);
|
|
|
|
dir->mimeapps_list_added_map = g_hash_table_new_full (g_str_hash, g_str_equal,
|
|
|
|
g_free, (GDestroyNotify)g_strfreev);
|
|
|
|
|
|
|
|
if (dir->mimeapps_list_removed_map != NULL)
|
|
|
|
g_hash_table_destroy (dir->mimeapps_list_removed_map);
|
|
|
|
dir->mimeapps_list_removed_map = g_hash_table_new_full (g_str_hash, g_str_equal,
|
|
|
|
g_free, (GDestroyNotify)g_strfreev);
|
|
|
|
|
|
|
|
key_file = g_key_file_new ();
|
|
|
|
|
|
|
|
filename = g_build_filename (dir->path, "mimeapps.list", NULL);
|
|
|
|
if (g_stat (filename, &buf) < 0)
|
|
|
|
goto error;
|
|
|
|
|
|
|
|
if (dir->mimeapps_list_timestamp > 0)
|
|
|
|
mime_info_cache->should_ping_mime_monitor = TRUE;
|
|
|
|
|
|
|
|
dir->mimeapps_list_timestamp = buf.st_mtime;
|
|
|
|
|
|
|
|
g_key_file_load_from_file (key_file, filename, G_KEY_FILE_NONE, &load_error);
|
|
|
|
g_free (filename);
|
|
|
|
filename = NULL;
|
|
|
|
|
|
|
|
if (load_error != NULL)
|
|
|
|
goto error;
|
|
|
|
|
|
|
|
mime_types = g_key_file_get_keys (key_file, ADDED_ASSOCIATIONS_GROUP,
|
|
|
|
NULL, NULL);
|
|
|
|
if (mime_types != NULL)
|
|
|
|
{
|
|
|
|
for (i = 0; mime_types[i] != NULL; i++)
|
|
|
|
{
|
|
|
|
desktop_file_ids = g_key_file_get_string_list (key_file,
|
|
|
|
ADDED_ASSOCIATIONS_GROUP,
|
|
|
|
mime_types[i],
|
|
|
|
NULL,
|
|
|
|
NULL);
|
|
|
|
if (desktop_file_ids == NULL)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
unaliased_type = _g_unix_content_type_unalias (mime_types[i]);
|
|
|
|
g_hash_table_replace (dir->mimeapps_list_added_map,
|
|
|
|
unaliased_type,
|
|
|
|
desktop_file_ids);
|
|
|
|
}
|
|
|
|
|
|
|
|
g_strfreev (mime_types);
|
|
|
|
}
|
|
|
|
|
2008-01-25 13:06:14 +01:00
|
|
|
mime_types = g_key_file_get_keys (key_file, REMOVED_ASSOCIATIONS_GROUP,
|
|
|
|
NULL, NULL);
|
|
|
|
if (mime_types != NULL)
|
|
|
|
{
|
|
|
|
for (i = 0; mime_types[i] != NULL; i++)
|
|
|
|
{
|
|
|
|
desktop_file_ids = g_key_file_get_string_list (key_file,
|
|
|
|
REMOVED_ASSOCIATIONS_GROUP,
|
|
|
|
mime_types[i],
|
|
|
|
NULL,
|
|
|
|
NULL);
|
|
|
|
if (desktop_file_ids == NULL)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
unaliased_type = _g_unix_content_type_unalias (mime_types[i]);
|
2008-02-06 11:57:27 +01:00
|
|
|
g_hash_table_replace (dir->mimeapps_list_removed_map,
|
2008-01-25 13:06:14 +01:00
|
|
|
unaliased_type,
|
|
|
|
desktop_file_ids);
|
|
|
|
}
|
|
|
|
|
|
|
|
g_strfreev (mime_types);
|
2007-11-26 17:13:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
g_key_file_free (key_file);
|
|
|
|
return;
|
2008-01-25 13:06:14 +01:00
|
|
|
|
2007-11-26 17:13:05 +01:00
|
|
|
error:
|
|
|
|
g_free (filename);
|
|
|
|
g_key_file_free (key_file);
|
|
|
|
|
|
|
|
if (mime_types != NULL)
|
|
|
|
g_strfreev (mime_types);
|
|
|
|
|
|
|
|
if (load_error)
|
|
|
|
g_error_free (load_error);
|
|
|
|
}
|
|
|
|
|
|
|
|
static MimeInfoCacheDir *
|
|
|
|
mime_info_cache_dir_new (const char *path)
|
|
|
|
{
|
|
|
|
MimeInfoCacheDir *dir;
|
|
|
|
|
|
|
|
dir = g_new0 (MimeInfoCacheDir, 1);
|
|
|
|
dir->path = g_strdup (path);
|
|
|
|
|
|
|
|
return dir;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
mime_info_cache_dir_free (MimeInfoCacheDir *dir)
|
|
|
|
{
|
|
|
|
if (dir == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (dir->mime_info_cache_map != NULL)
|
|
|
|
{
|
|
|
|
destroy_info_cache_map (dir->mime_info_cache_map);
|
|
|
|
dir->mime_info_cache_map = NULL;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if (dir->defaults_list_map != NULL)
|
|
|
|
{
|
|
|
|
g_hash_table_destroy (dir->defaults_list_map);
|
|
|
|
dir->defaults_list_map = NULL;
|
|
|
|
}
|
|
|
|
|
2008-02-06 11:57:27 +01:00
|
|
|
if (dir->mimeapps_list_added_map != NULL)
|
|
|
|
{
|
|
|
|
g_hash_table_destroy (dir->mimeapps_list_added_map);
|
|
|
|
dir->mimeapps_list_added_map = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (dir->mimeapps_list_removed_map != NULL)
|
2008-01-25 13:06:14 +01:00
|
|
|
{
|
2008-02-06 11:57:27 +01:00
|
|
|
g_hash_table_destroy (dir->mimeapps_list_removed_map);
|
|
|
|
dir->mimeapps_list_removed_map = NULL;
|
2008-01-25 13:06:14 +01:00
|
|
|
}
|
|
|
|
|
2007-11-26 17:13:05 +01:00
|
|
|
g_free (dir);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2007-11-29 08:17:59 +01:00
|
|
|
mime_info_cache_dir_add_desktop_entries (MimeInfoCacheDir *dir,
|
|
|
|
const char *mime_type,
|
|
|
|
char **new_desktop_file_ids)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GList *desktop_file_ids;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
desktop_file_ids = g_hash_table_lookup (dir->mime_info_cache_map,
|
|
|
|
mime_type);
|
|
|
|
|
|
|
|
for (i = 0; new_desktop_file_ids[i] != NULL; i++)
|
|
|
|
{
|
2009-11-16 00:22:03 +01:00
|
|
|
if (!g_list_find_custom (desktop_file_ids, new_desktop_file_ids[i], (GCompareFunc) strcmp))
|
2007-11-26 17:13:05 +01:00
|
|
|
desktop_file_ids = g_list_append (desktop_file_ids,
|
|
|
|
g_strdup (new_desktop_file_ids[i]));
|
|
|
|
}
|
|
|
|
|
|
|
|
g_hash_table_insert (dir->mime_info_cache_map, g_strdup (mime_type), desktop_file_ids);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
mime_info_cache_init_dir_lists (void)
|
|
|
|
{
|
|
|
|
const char * const *dirs;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
mime_info_cache = mime_info_cache_new ();
|
|
|
|
|
|
|
|
dirs = get_applications_search_path ();
|
|
|
|
|
|
|
|
for (i = 0; dirs[i] != NULL; i++)
|
|
|
|
{
|
|
|
|
MimeInfoCacheDir *dir;
|
|
|
|
|
|
|
|
dir = mime_info_cache_dir_new (dirs[i]);
|
|
|
|
|
|
|
|
if (dir != NULL)
|
|
|
|
{
|
|
|
|
mime_info_cache_dir_init (dir);
|
|
|
|
mime_info_cache_dir_init_defaults_list (dir);
|
2008-02-06 11:57:27 +01:00
|
|
|
mime_info_cache_dir_init_mimeapps_list (dir);
|
2007-11-26 17:13:05 +01:00
|
|
|
|
|
|
|
mime_info_cache->dirs = g_list_append (mime_info_cache->dirs, dir);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
mime_info_cache_update_dir_lists (void)
|
|
|
|
{
|
|
|
|
GList *tmp;
|
|
|
|
|
|
|
|
tmp = mime_info_cache->dirs;
|
|
|
|
|
|
|
|
while (tmp != NULL)
|
|
|
|
{
|
|
|
|
MimeInfoCacheDir *dir = (MimeInfoCacheDir *) tmp->data;
|
|
|
|
|
|
|
|
/* No need to do this if we had file monitors... */
|
|
|
|
mime_info_cache_blow_global_cache ();
|
|
|
|
mime_info_cache_dir_init (dir);
|
|
|
|
mime_info_cache_dir_init_defaults_list (dir);
|
2008-02-06 11:57:27 +01:00
|
|
|
mime_info_cache_dir_init_mimeapps_list (dir);
|
2007-11-26 17:13:05 +01:00
|
|
|
|
|
|
|
tmp = tmp->next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
mime_info_cache_init (void)
|
|
|
|
{
|
2008-02-06 11:57:27 +01:00
|
|
|
G_LOCK (mime_info_cache);
|
|
|
|
if (mime_info_cache == NULL)
|
|
|
|
mime_info_cache_init_dir_lists ();
|
|
|
|
else
|
|
|
|
{
|
|
|
|
time_t now;
|
|
|
|
|
|
|
|
time (&now);
|
|
|
|
if (now >= mime_info_cache->last_stat_time + 10)
|
|
|
|
{
|
|
|
|
mime_info_cache_update_dir_lists ();
|
|
|
|
mime_info_cache->last_stat_time = now;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mime_info_cache->should_ping_mime_monitor)
|
|
|
|
{
|
|
|
|
/* g_idle_add (emit_mime_changed, NULL); */
|
|
|
|
mime_info_cache->should_ping_mime_monitor = FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
G_UNLOCK (mime_info_cache);
|
2007-11-26 17:13:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static MimeInfoCache *
|
|
|
|
mime_info_cache_new (void)
|
|
|
|
{
|
|
|
|
MimeInfoCache *cache;
|
|
|
|
|
|
|
|
cache = g_new0 (MimeInfoCache, 1);
|
|
|
|
|
|
|
|
cache->global_defaults_cache = g_hash_table_new_full (g_str_hash, g_str_equal,
|
|
|
|
(GDestroyNotify) g_free,
|
|
|
|
(GDestroyNotify) g_free);
|
|
|
|
return cache;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
mime_info_cache_free (MimeInfoCache *cache)
|
|
|
|
{
|
|
|
|
if (cache == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
g_list_foreach (cache->dirs,
|
|
|
|
(GFunc) mime_info_cache_dir_free,
|
|
|
|
NULL);
|
|
|
|
g_list_free (cache->dirs);
|
|
|
|
g_hash_table_destroy (cache->global_defaults_cache);
|
|
|
|
g_free (cache);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* mime_info_cache_reload:
|
|
|
|
* @dir: directory path which needs reloading.
|
|
|
|
*
|
|
|
|
* Reload the mime information for the @dir.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
mime_info_cache_reload (const char *dir)
|
|
|
|
{
|
|
|
|
/* FIXME: just reload the dir that needs reloading,
|
|
|
|
* don't blow the whole cache
|
|
|
|
*/
|
|
|
|
if (mime_info_cache != NULL)
|
|
|
|
{
|
|
|
|
G_LOCK (mime_info_cache);
|
|
|
|
mime_info_cache_free (mime_info_cache);
|
|
|
|
mime_info_cache = NULL;
|
|
|
|
G_UNLOCK (mime_info_cache);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static GList *
|
2007-11-29 08:17:59 +01:00
|
|
|
append_desktop_entry (GList *list,
|
2008-01-25 13:06:14 +01:00
|
|
|
const char *desktop_entry,
|
|
|
|
GList *removed_entries)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
/* Add if not already in list, and valid */
|
2008-01-25 13:06:14 +01:00
|
|
|
if (!g_list_find_custom (list, desktop_entry, (GCompareFunc) strcmp) &&
|
|
|
|
!g_list_find_custom (removed_entries, desktop_entry, (GCompareFunc) strcmp))
|
2007-11-26 17:13:05 +01:00
|
|
|
list = g_list_prepend (list, g_strdup (desktop_entry));
|
|
|
|
|
|
|
|
return list;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* get_all_desktop_entries_for_mime_type:
|
|
|
|
* @mime_type: a mime type.
|
2008-10-13 12:02:30 +02:00
|
|
|
* @except: NULL or a strv list
|
2007-11-26 17:13:05 +01:00
|
|
|
*
|
2007-12-22 19:15:57 +01:00
|
|
|
* Returns all the desktop ids for @mime_type. The desktop files
|
2007-11-26 17:13:05 +01:00
|
|
|
* are listed in an order so that default applications are listed before
|
|
|
|
* non-default ones, and handlers for inherited mimetypes are listed
|
|
|
|
* after the base ones.
|
|
|
|
*
|
2008-10-13 12:02:30 +02:00
|
|
|
* Optionally doesn't list the desktop ids given in the @except
|
|
|
|
*
|
2007-12-22 19:15:57 +01:00
|
|
|
* Return value: a #GList containing the desktop ids which claim
|
|
|
|
* to handle @mime_type.
|
2007-11-26 17:13:05 +01:00
|
|
|
*/
|
|
|
|
static GList *
|
2008-10-13 12:02:30 +02:00
|
|
|
get_all_desktop_entries_for_mime_type (const char *base_mime_type,
|
|
|
|
const char **except)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
2008-01-25 13:06:14 +01:00
|
|
|
GList *desktop_entries, *removed_entries, *list, *dir_list, *tmp;
|
2007-11-26 17:13:05 +01:00
|
|
|
MimeInfoCacheDir *dir;
|
|
|
|
char *mime_type;
|
|
|
|
char **mime_types;
|
|
|
|
char **default_entries;
|
2008-01-25 13:06:14 +01:00
|
|
|
char **removed_associations;
|
2008-07-28 20:58:34 +02:00
|
|
|
int i, j, k;
|
|
|
|
GPtrArray *array;
|
|
|
|
char **anc;
|
2007-11-26 17:13:05 +01:00
|
|
|
|
|
|
|
mime_info_cache_init ();
|
|
|
|
|
2008-07-28 20:58:34 +02:00
|
|
|
/* collect all ancestors */
|
2007-11-26 17:13:05 +01:00
|
|
|
mime_types = _g_unix_content_type_get_parents (base_mime_type);
|
2008-07-28 20:58:34 +02:00
|
|
|
array = g_ptr_array_new ();
|
|
|
|
for (i = 0; mime_types[i]; i++)
|
2008-08-01 23:18:02 +02:00
|
|
|
g_ptr_array_add (array, mime_types[i]);
|
2008-07-28 20:58:34 +02:00
|
|
|
g_free (mime_types);
|
|
|
|
for (i = 0; i < array->len; i++)
|
|
|
|
{
|
|
|
|
anc = _g_unix_content_type_get_parents (g_ptr_array_index (array, i));
|
|
|
|
for (j = 0; anc[j]; j++)
|
|
|
|
{
|
|
|
|
for (k = 0; k < array->len; k++)
|
|
|
|
{
|
|
|
|
if (strcmp (anc[j], g_ptr_array_index (array, k)) == 0)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (k == array->len) /* not found */
|
|
|
|
g_ptr_array_add (array, g_strdup (anc[j]));
|
|
|
|
}
|
|
|
|
g_strfreev (anc);
|
|
|
|
}
|
|
|
|
g_ptr_array_add (array, NULL);
|
2008-09-26 18:00:17 +02:00
|
|
|
mime_types = (char **)g_ptr_array_free (array, FALSE);
|
2008-07-28 20:58:34 +02:00
|
|
|
|
2007-11-26 17:13:05 +01:00
|
|
|
G_LOCK (mime_info_cache);
|
|
|
|
|
2008-01-25 13:06:14 +01:00
|
|
|
removed_entries = NULL;
|
2007-11-26 17:13:05 +01:00
|
|
|
desktop_entries = NULL;
|
2008-10-13 12:02:30 +02:00
|
|
|
|
|
|
|
for (i = 0; except != NULL && except[i] != NULL; i++)
|
|
|
|
removed_entries = g_list_prepend (removed_entries, g_strdup (except[i]));
|
|
|
|
|
2007-11-26 17:13:05 +01:00
|
|
|
for (i = 0; mime_types[i] != NULL; i++)
|
|
|
|
{
|
|
|
|
mime_type = mime_types[i];
|
|
|
|
|
|
|
|
/* Go through all apps listed as defaults */
|
|
|
|
for (dir_list = mime_info_cache->dirs;
|
|
|
|
dir_list != NULL;
|
|
|
|
dir_list = dir_list->next)
|
|
|
|
{
|
|
|
|
dir = dir_list->data;
|
2008-02-06 11:57:27 +01:00
|
|
|
|
|
|
|
/* First added associations from mimeapps.list */
|
|
|
|
default_entries = g_hash_table_lookup (dir->mimeapps_list_added_map, mime_type);
|
2007-11-26 17:13:05 +01:00
|
|
|
for (j = 0; default_entries != NULL && default_entries[j] != NULL; j++)
|
2008-01-25 13:06:14 +01:00
|
|
|
desktop_entries = append_desktop_entry (desktop_entries, default_entries[j], removed_entries);
|
|
|
|
|
2008-07-28 20:58:34 +02:00
|
|
|
/* Then removed associations from mimeapps.list */
|
2008-02-06 11:57:27 +01:00
|
|
|
removed_associations = g_hash_table_lookup (dir->mimeapps_list_removed_map, mime_type);
|
2008-01-25 13:06:14 +01:00
|
|
|
for (j = 0; removed_associations != NULL && removed_associations[j] != NULL; j++)
|
|
|
|
removed_entries = append_desktop_entry (removed_entries, removed_associations[j], NULL);
|
2008-02-06 11:57:27 +01:00
|
|
|
|
|
|
|
/* Then system defaults (or old per-user config) (using removed associations from this dir or earlier) */
|
|
|
|
default_entries = g_hash_table_lookup (dir->defaults_list_map, mime_type);
|
|
|
|
for (j = 0; default_entries != NULL && default_entries[j] != NULL; j++)
|
|
|
|
desktop_entries = append_desktop_entry (desktop_entries, default_entries[j], removed_entries);
|
2007-11-26 17:13:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Go through all entries that support the mimetype */
|
|
|
|
for (dir_list = mime_info_cache->dirs;
|
|
|
|
dir_list != NULL;
|
2007-11-30 06:11:25 +01:00
|
|
|
dir_list = dir_list->next)
|
|
|
|
{
|
|
|
|
dir = dir_list->data;
|
2007-11-26 17:13:05 +01:00
|
|
|
|
2007-11-30 06:11:25 +01:00
|
|
|
list = g_hash_table_lookup (dir->mime_info_cache_map, mime_type);
|
|
|
|
for (tmp = list; tmp != NULL; tmp = tmp->next)
|
2008-01-25 13:06:14 +01:00
|
|
|
desktop_entries = append_desktop_entry (desktop_entries, tmp->data, removed_entries);
|
2007-11-30 06:11:25 +01:00
|
|
|
}
|
2007-11-26 17:13:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
G_UNLOCK (mime_info_cache);
|
|
|
|
|
|
|
|
g_strfreev (mime_types);
|
2008-01-25 13:06:14 +01:00
|
|
|
|
2008-10-13 12:02:30 +02:00
|
|
|
g_list_foreach (removed_entries, (GFunc)g_free, NULL);
|
2008-01-25 13:06:14 +01:00
|
|
|
g_list_free (removed_entries);
|
2007-11-26 17:13:05 +01:00
|
|
|
|
|
|
|
desktop_entries = g_list_reverse (desktop_entries);
|
|
|
|
|
|
|
|
return desktop_entries;
|
|
|
|
}
|
2007-11-28 13:39:07 +01:00
|
|
|
|
2008-01-29 13:18:48 +01:00
|
|
|
/* GDesktopAppInfoLookup interface: */
|
|
|
|
|
2009-12-01 10:42:58 +01:00
|
|
|
typedef GDesktopAppInfoLookupIface GDesktopAppInfoLookupInterface;
|
|
|
|
G_DEFINE_INTERFACE (GDesktopAppInfoLookup, g_desktop_app_info_lookup, G_TYPE_OBJECT)
|
2008-01-29 13:18:48 +01:00
|
|
|
|
|
|
|
static void
|
2009-12-01 10:42:58 +01:00
|
|
|
g_desktop_app_info_lookup_default_init (GDesktopAppInfoLookupInterface *iface)
|
2008-01-29 13:18:48 +01:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2008-02-11 08:12:56 +01:00
|
|
|
/**
|
|
|
|
* g_desktop_app_info_lookup_get_default_for_uri_scheme:
|
|
|
|
* @lookup: a #GDesktopAppInfoLookup
|
|
|
|
* @uri_scheme: a string containing a URI scheme.
|
|
|
|
*
|
|
|
|
* Gets the default application for launching applications
|
2008-02-11 09:47:17 +01:00
|
|
|
* using this URI scheme for a particular GDesktopAppInfoLookup
|
|
|
|
* implementation.
|
2008-02-11 08:12:56 +01:00
|
|
|
*
|
2008-02-11 09:47:17 +01:00
|
|
|
* The GDesktopAppInfoLookup interface and this function is used
|
|
|
|
* to implement g_app_info_get_default_for_uri_scheme() backends
|
|
|
|
* in a GIO module. There is no reason for applications to use it
|
|
|
|
* directly. Applications should use g_app_info_get_default_for_uri_scheme().
|
2008-02-11 08:12:56 +01:00
|
|
|
*
|
|
|
|
* Returns: #GAppInfo for given @uri_scheme or %NULL on error.
|
|
|
|
*/
|
2008-01-29 13:18:48 +01:00
|
|
|
GAppInfo *
|
|
|
|
g_desktop_app_info_lookup_get_default_for_uri_scheme (GDesktopAppInfoLookup *lookup,
|
2008-02-11 08:12:56 +01:00
|
|
|
const char *uri_scheme)
|
2008-01-29 13:18:48 +01:00
|
|
|
{
|
|
|
|
GDesktopAppInfoLookupIface *iface;
|
|
|
|
|
2008-03-06 10:53:35 +01:00
|
|
|
g_return_val_if_fail (G_IS_DESKTOP_APP_INFO_LOOKUP (lookup), NULL);
|
2008-01-29 13:18:48 +01:00
|
|
|
|
|
|
|
iface = G_DESKTOP_APP_INFO_LOOKUP_GET_IFACE (lookup);
|
|
|
|
|
|
|
|
return (* iface->get_default_for_uri_scheme) (lookup, uri_scheme);
|
|
|
|
}
|
|
|
|
|
2007-11-28 13:39:07 +01:00
|
|
|
#define __G_DESKTOP_APP_INFO_C__
|
|
|
|
#include "gioaliasdef.c"
|