mirror of
https://gitlab.gnome.org/GNOME/nautilus
synced 2024-11-05 16:04:31 +00:00
1004 lines
23 KiB
C
1004 lines
23 KiB
C
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
|
|
|
|
/* nautilus-file-utilities.c - implementation of file manipulation routines.
|
|
|
|
Copyright (C) 1999, 2000, 2001 Eazel, Inc.
|
|
|
|
The Gnome Library is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU Library General Public License as
|
|
published by the Free Software Foundation; either version 2 of the
|
|
License, or (at your option) any later version.
|
|
|
|
The Gnome 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
|
|
Library General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Library General Public
|
|
License along with the Gnome Library; see the file COPYING.LIB. If not,
|
|
write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
Boston, MA 02111-1307, USA.
|
|
|
|
Authors: John Sullivan <sullivan@eazel.com>
|
|
*/
|
|
|
|
#include <config.h>
|
|
#include "nautilus-file-utilities.h"
|
|
|
|
#include "nautilus-global-preferences.h"
|
|
#include "nautilus-lib-self-check-functions.h"
|
|
#include "nautilus-metadata.h"
|
|
#include "nautilus-file.h"
|
|
#include "nautilus-file-operations.h"
|
|
#include "nautilus-search-directory.h"
|
|
#include "nautilus-signaller.h"
|
|
#include <eel/eel-glib-extensions.h>
|
|
#include <eel/eel-stock-dialogs.h>
|
|
#include <eel/eel-string.h>
|
|
#include <eel/eel-debug.h>
|
|
#include <glib.h>
|
|
#include <glib/gi18n.h>
|
|
#include <glib/gstdio.h>
|
|
#include <gio/gio.h>
|
|
#include <unistd.h>
|
|
#include <stdlib.h>
|
|
|
|
#define NAUTILUS_USER_DIRECTORY_NAME "nautilus"
|
|
#define DEFAULT_NAUTILUS_DIRECTORY_MODE (0755)
|
|
|
|
#define DESKTOP_DIRECTORY_NAME "Desktop"
|
|
#define LEGACY_DESKTOP_DIRECTORY_NAME ".gnome-desktop"
|
|
#define DEFAULT_DESKTOP_DIRECTORY_MODE (0755)
|
|
|
|
static void update_xdg_dir_cache (void);
|
|
static void schedule_user_dirs_changed (void);
|
|
static void desktop_dir_changed (void);
|
|
|
|
char *
|
|
nautilus_compute_title_for_location (GFile *location)
|
|
{
|
|
NautilusFile *file;
|
|
char *title;
|
|
|
|
/* TODO-gio: This doesn't really work all that great if the
|
|
info about the file isn't known atm... */
|
|
|
|
if (nautilus_is_home_directory (location)) {
|
|
return g_strdup (_("Home"));
|
|
}
|
|
|
|
title = NULL;
|
|
if (location) {
|
|
file = nautilus_file_get (location);
|
|
title = nautilus_file_get_description (file);
|
|
if (title == NULL) {
|
|
title = nautilus_file_get_display_name (file);
|
|
}
|
|
nautilus_file_unref (file);
|
|
}
|
|
|
|
if (title == NULL) {
|
|
title = g_file_get_basename (location);
|
|
}
|
|
|
|
return title;
|
|
}
|
|
|
|
|
|
/**
|
|
* nautilus_get_user_directory:
|
|
*
|
|
* Get the path for the directory containing nautilus settings.
|
|
*
|
|
* Return value: the directory path.
|
|
**/
|
|
char *
|
|
nautilus_get_user_directory (void)
|
|
{
|
|
char *user_directory = NULL;
|
|
|
|
user_directory = g_build_filename (g_get_user_config_dir (),
|
|
NAUTILUS_USER_DIRECTORY_NAME,
|
|
NULL);
|
|
|
|
if (!g_file_test (user_directory, G_FILE_TEST_EXISTS)) {
|
|
g_mkdir (user_directory, DEFAULT_NAUTILUS_DIRECTORY_MODE);
|
|
/* FIXME bugzilla.gnome.org 41286:
|
|
* How should we handle the case where this mkdir fails?
|
|
* Note that nautilus_application_startup will refuse to launch if this
|
|
* directory doesn't get created, so that case is OK. But the directory
|
|
* could be deleted after Nautilus was launched, and perhaps
|
|
* there is some bad side-effect of not handling that case.
|
|
*/
|
|
}
|
|
|
|
return user_directory;
|
|
}
|
|
|
|
/**
|
|
* nautilus_get_accel_map_file:
|
|
*
|
|
* Get the path for the filename containing nautilus accelerator map.
|
|
* The filename need not exist.
|
|
*
|
|
* Return value: the filename path
|
|
**/
|
|
char *
|
|
nautilus_get_accel_map_file (void)
|
|
{
|
|
return g_build_filename (g_get_user_config_dir (), "nautilus", "accels", NULL);
|
|
}
|
|
|
|
/**
|
|
* nautilus_get_scripts_directory_path:
|
|
*
|
|
* Get the path for the directory containing nautilus scripts.
|
|
*
|
|
* Return value: the directory path containing nautilus scripts
|
|
**/
|
|
char *
|
|
nautilus_get_scripts_directory_path (void)
|
|
{
|
|
return g_build_filename (g_get_user_data_dir (), "nautilus", "scripts", NULL);
|
|
}
|
|
|
|
typedef struct {
|
|
char *type;
|
|
char *path;
|
|
NautilusFile *file;
|
|
} XdgDirEntry;
|
|
|
|
|
|
static XdgDirEntry *
|
|
parse_xdg_dirs (const char *config_file)
|
|
{
|
|
GArray *array;
|
|
char *config_file_free = NULL;
|
|
XdgDirEntry dir;
|
|
char *data;
|
|
char **lines;
|
|
char *p, *d;
|
|
int i;
|
|
char *type_start, *type_end;
|
|
char *value, *unescaped;
|
|
gboolean relative;
|
|
|
|
array = g_array_new (TRUE, TRUE, sizeof (XdgDirEntry));
|
|
|
|
if (config_file == NULL)
|
|
{
|
|
config_file_free = g_build_filename (g_get_user_config_dir (),
|
|
"user-dirs.dirs", NULL);
|
|
config_file = (const char *)config_file_free;
|
|
}
|
|
|
|
if (g_file_get_contents (config_file, &data, NULL, NULL))
|
|
{
|
|
lines = g_strsplit (data, "\n", 0);
|
|
g_free (data);
|
|
for (i = 0; lines[i] != NULL; i++)
|
|
{
|
|
p = lines[i];
|
|
while (g_ascii_isspace (*p))
|
|
p++;
|
|
|
|
if (*p == '#')
|
|
continue;
|
|
|
|
value = strchr (p, '=');
|
|
if (value == NULL)
|
|
continue;
|
|
*value++ = 0;
|
|
|
|
g_strchug (g_strchomp (p));
|
|
if (!g_str_has_prefix (p, "XDG_"))
|
|
continue;
|
|
if (!g_str_has_suffix (p, "_DIR"))
|
|
continue;
|
|
type_start = p + 4;
|
|
type_end = p + strlen (p) - 4;
|
|
|
|
while (g_ascii_isspace (*value))
|
|
value++;
|
|
|
|
if (*value != '"')
|
|
continue;
|
|
value++;
|
|
|
|
relative = FALSE;
|
|
if (g_str_has_prefix (value, "$HOME"))
|
|
{
|
|
relative = TRUE;
|
|
value += 5;
|
|
while (*value == '/')
|
|
value++;
|
|
}
|
|
else if (*value != '/')
|
|
continue;
|
|
|
|
d = unescaped = g_malloc (strlen (value) + 1);
|
|
while (*value && *value != '"')
|
|
{
|
|
if ((*value == '\\') && (*(value + 1) != 0))
|
|
value++;
|
|
*d++ = *value++;
|
|
}
|
|
*d = 0;
|
|
|
|
*type_end = 0;
|
|
dir.type = g_strdup (type_start);
|
|
if (relative)
|
|
{
|
|
dir.path = g_build_filename (g_get_home_dir (), unescaped, NULL);
|
|
g_free (unescaped);
|
|
}
|
|
else
|
|
dir.path = unescaped;
|
|
|
|
g_array_append_val (array, dir);
|
|
}
|
|
|
|
g_strfreev (lines);
|
|
}
|
|
|
|
g_free (config_file_free);
|
|
|
|
return (XdgDirEntry *)g_array_free (array, FALSE);
|
|
}
|
|
|
|
static XdgDirEntry *cached_xdg_dirs = NULL;
|
|
static GFileMonitor *cached_xdg_dirs_monitor = NULL;
|
|
|
|
static void
|
|
xdg_dir_changed (NautilusFile *file,
|
|
XdgDirEntry *dir)
|
|
{
|
|
GFile *location, *dir_location;
|
|
char *path;
|
|
|
|
location = nautilus_file_get_location (file);
|
|
dir_location = g_file_new_for_path (dir->path);
|
|
if (!g_file_equal (location, dir_location)) {
|
|
path = g_file_get_path (location);
|
|
|
|
if (path) {
|
|
char *argv[5];
|
|
int i;
|
|
|
|
g_free (dir->path);
|
|
dir->path = path;
|
|
|
|
i = 0;
|
|
argv[i++] = "xdg-user-dirs-update";
|
|
argv[i++] = "--set";
|
|
argv[i++] = dir->type;
|
|
argv[i++] = dir->path;
|
|
argv[i++] = NULL;
|
|
|
|
/* We do this sync, to avoid possible race-conditions
|
|
if multiple dirs change at the same time. Its
|
|
blocking the main thread, but these updates should
|
|
be very rare and very fast. */
|
|
g_spawn_sync (NULL,
|
|
argv, NULL,
|
|
G_SPAWN_SEARCH_PATH |
|
|
G_SPAWN_STDOUT_TO_DEV_NULL |
|
|
G_SPAWN_STDERR_TO_DEV_NULL,
|
|
NULL, NULL,
|
|
NULL, NULL, NULL, NULL);
|
|
g_reload_user_special_dirs_cache ();
|
|
schedule_user_dirs_changed ();
|
|
desktop_dir_changed ();
|
|
/* Icon might have changed */
|
|
nautilus_file_invalidate_attributes (file, NAUTILUS_FILE_ATTRIBUTE_INFO);
|
|
}
|
|
}
|
|
g_object_unref (location);
|
|
g_object_unref (dir_location);
|
|
}
|
|
|
|
static void
|
|
xdg_dir_cache_changed_cb (GFileMonitor *monitor,
|
|
GFile *file,
|
|
GFile *other_file,
|
|
GFileMonitorEvent event_type)
|
|
{
|
|
if (event_type == G_FILE_MONITOR_EVENT_CHANGED ||
|
|
event_type == G_FILE_MONITOR_EVENT_CREATED) {
|
|
update_xdg_dir_cache ();
|
|
}
|
|
}
|
|
|
|
static int user_dirs_changed_tag = 0;
|
|
|
|
static gboolean
|
|
emit_user_dirs_changed_idle (gpointer data)
|
|
{
|
|
g_signal_emit_by_name (nautilus_signaller_get_current (),
|
|
"user_dirs_changed");
|
|
user_dirs_changed_tag = 0;
|
|
return FALSE;
|
|
}
|
|
|
|
static void
|
|
schedule_user_dirs_changed (void)
|
|
{
|
|
if (user_dirs_changed_tag == 0) {
|
|
user_dirs_changed_tag = g_idle_add (emit_user_dirs_changed_idle, NULL);
|
|
}
|
|
}
|
|
|
|
static void
|
|
unschedule_user_dirs_changed (void)
|
|
{
|
|
if (user_dirs_changed_tag != 0) {
|
|
g_source_remove (user_dirs_changed_tag);
|
|
user_dirs_changed_tag = 0;
|
|
}
|
|
}
|
|
|
|
static void
|
|
free_xdg_dir_cache (void)
|
|
{
|
|
int i;
|
|
|
|
if (cached_xdg_dirs != NULL) {
|
|
for (i = 0; cached_xdg_dirs[i].type != NULL; i++) {
|
|
if (cached_xdg_dirs[i].file != NULL) {
|
|
nautilus_file_monitor_remove (cached_xdg_dirs[i].file,
|
|
&cached_xdg_dirs[i]);
|
|
g_signal_handlers_disconnect_by_func (cached_xdg_dirs[i].file,
|
|
G_CALLBACK (xdg_dir_changed),
|
|
&cached_xdg_dirs[i]);
|
|
nautilus_file_unref (cached_xdg_dirs[i].file);
|
|
}
|
|
g_free (cached_xdg_dirs[i].type);
|
|
g_free (cached_xdg_dirs[i].path);
|
|
}
|
|
g_free (cached_xdg_dirs);
|
|
}
|
|
}
|
|
|
|
static void
|
|
destroy_xdg_dir_cache (void)
|
|
{
|
|
free_xdg_dir_cache ();
|
|
unschedule_user_dirs_changed ();
|
|
desktop_dir_changed ();
|
|
|
|
if (cached_xdg_dirs_monitor != NULL) {
|
|
g_object_unref (cached_xdg_dirs_monitor);
|
|
cached_xdg_dirs_monitor = NULL;
|
|
}
|
|
}
|
|
|
|
static void
|
|
update_xdg_dir_cache (void)
|
|
{
|
|
GFile *file;
|
|
char *config_file, *uri;
|
|
int i;
|
|
|
|
free_xdg_dir_cache ();
|
|
g_reload_user_special_dirs_cache ();
|
|
schedule_user_dirs_changed ();
|
|
desktop_dir_changed ();
|
|
|
|
cached_xdg_dirs = parse_xdg_dirs (NULL);
|
|
|
|
for (i = 0 ; cached_xdg_dirs[i].type != NULL; i++) {
|
|
cached_xdg_dirs[i].file = NULL;
|
|
if (strcmp (cached_xdg_dirs[i].path, g_get_home_dir ()) != 0) {
|
|
uri = g_filename_to_uri (cached_xdg_dirs[i].path, NULL, NULL);
|
|
cached_xdg_dirs[i].file = nautilus_file_get_by_uri (uri);
|
|
nautilus_file_monitor_add (cached_xdg_dirs[i].file,
|
|
&cached_xdg_dirs[i],
|
|
NAUTILUS_FILE_ATTRIBUTE_INFO);
|
|
g_signal_connect (cached_xdg_dirs[i].file,
|
|
"changed", G_CALLBACK (xdg_dir_changed), &cached_xdg_dirs[i]);
|
|
g_free (uri);
|
|
}
|
|
}
|
|
|
|
if (cached_xdg_dirs_monitor == NULL) {
|
|
config_file = g_build_filename (g_get_user_config_dir (),
|
|
"user-dirs.dirs", NULL);
|
|
file = g_file_new_for_path (config_file);
|
|
cached_xdg_dirs_monitor = g_file_monitor_file (file, 0, NULL, NULL);
|
|
g_signal_connect (cached_xdg_dirs_monitor, "changed",
|
|
G_CALLBACK (xdg_dir_cache_changed_cb), NULL);
|
|
g_object_unref (file);
|
|
g_free (config_file);
|
|
|
|
eel_debug_call_at_shutdown (destroy_xdg_dir_cache);
|
|
}
|
|
}
|
|
|
|
char *
|
|
nautilus_get_xdg_dir (const char *type)
|
|
{
|
|
int i;
|
|
|
|
if (cached_xdg_dirs == NULL) {
|
|
update_xdg_dir_cache ();
|
|
}
|
|
|
|
for (i = 0 ; cached_xdg_dirs != NULL && cached_xdg_dirs[i].type != NULL; i++) {
|
|
if (strcmp (cached_xdg_dirs[i].type, type) == 0) {
|
|
return g_strdup (cached_xdg_dirs[i].path);
|
|
}
|
|
}
|
|
if (strcmp ("DESKTOP", type) == 0) {
|
|
return g_build_filename (g_get_home_dir (), DESKTOP_DIRECTORY_NAME, NULL);
|
|
}
|
|
if (strcmp ("TEMPLATES", type) == 0) {
|
|
return g_build_filename (g_get_home_dir (), "Templates", NULL);
|
|
}
|
|
|
|
return g_strdup (g_get_home_dir ());
|
|
}
|
|
|
|
static char *
|
|
get_desktop_path (void)
|
|
{
|
|
return nautilus_get_xdg_dir ("DESKTOP");
|
|
}
|
|
|
|
/**
|
|
* nautilus_get_desktop_directory:
|
|
*
|
|
* Get the path for the directory containing files on the desktop.
|
|
*
|
|
* Return value: the directory path.
|
|
**/
|
|
char *
|
|
nautilus_get_desktop_directory (void)
|
|
{
|
|
char *desktop_directory;
|
|
|
|
desktop_directory = get_desktop_path ();
|
|
|
|
/* Don't try to create a home directory */
|
|
if (!g_file_test (desktop_directory, G_FILE_TEST_EXISTS)) {
|
|
g_mkdir (desktop_directory, DEFAULT_DESKTOP_DIRECTORY_MODE);
|
|
/* FIXME bugzilla.gnome.org 41286:
|
|
* How should we handle the case where this mkdir fails?
|
|
* Note that nautilus_application_startup will refuse to launch if this
|
|
* directory doesn't get created, so that case is OK. But the directory
|
|
* could be deleted after Nautilus was launched, and perhaps
|
|
* there is some bad side-effect of not handling that case.
|
|
*/
|
|
}
|
|
|
|
return desktop_directory;
|
|
}
|
|
|
|
GFile *
|
|
nautilus_get_desktop_location (void)
|
|
{
|
|
char *desktop_directory;
|
|
GFile *res;
|
|
|
|
desktop_directory = get_desktop_path ();
|
|
|
|
res = g_file_new_for_path (desktop_directory);
|
|
g_free (desktop_directory);
|
|
return res;
|
|
}
|
|
|
|
/**
|
|
* nautilus_get_desktop_directory_uri:
|
|
*
|
|
* Get the uri for the directory containing files on the desktop.
|
|
*
|
|
* Return value: the directory path.
|
|
**/
|
|
char *
|
|
nautilus_get_desktop_directory_uri (void)
|
|
{
|
|
char *desktop_path;
|
|
char *desktop_uri;
|
|
|
|
desktop_path = nautilus_get_desktop_directory ();
|
|
desktop_uri = g_filename_to_uri (desktop_path, NULL, NULL);
|
|
g_free (desktop_path);
|
|
|
|
return desktop_uri;
|
|
}
|
|
|
|
char *
|
|
nautilus_get_home_directory_uri (void)
|
|
{
|
|
return g_filename_to_uri (g_get_home_dir (), NULL, NULL);
|
|
}
|
|
|
|
|
|
gboolean
|
|
nautilus_should_use_templates_directory (void)
|
|
{
|
|
char *dir;
|
|
gboolean res;
|
|
|
|
dir = nautilus_get_xdg_dir ("TEMPLATES");
|
|
res = strcmp (dir, g_get_home_dir ()) != 0;
|
|
g_free (dir);
|
|
return res;
|
|
}
|
|
|
|
char *
|
|
nautilus_get_templates_directory (void)
|
|
{
|
|
return nautilus_get_xdg_dir ("TEMPLATES");
|
|
}
|
|
|
|
void
|
|
nautilus_create_templates_directory (void)
|
|
{
|
|
char *dir;
|
|
|
|
dir = nautilus_get_templates_directory ();
|
|
if (!g_file_test (dir, G_FILE_TEST_EXISTS)) {
|
|
g_mkdir (dir, DEFAULT_NAUTILUS_DIRECTORY_MODE);
|
|
}
|
|
g_free (dir);
|
|
}
|
|
|
|
char *
|
|
nautilus_get_templates_directory_uri (void)
|
|
{
|
|
char *directory, *uri;
|
|
|
|
directory = nautilus_get_templates_directory ();
|
|
uri = g_filename_to_uri (directory, NULL, NULL);
|
|
g_free (directory);
|
|
return uri;
|
|
}
|
|
|
|
char *
|
|
nautilus_get_searches_directory (void)
|
|
{
|
|
char *user_dir;
|
|
char *searches_dir;
|
|
|
|
user_dir = nautilus_get_user_directory ();
|
|
searches_dir = g_build_filename (user_dir, "searches", NULL);
|
|
g_free (user_dir);
|
|
|
|
if (!g_file_test (searches_dir, G_FILE_TEST_EXISTS))
|
|
g_mkdir (searches_dir, DEFAULT_NAUTILUS_DIRECTORY_MODE);
|
|
|
|
return searches_dir;
|
|
}
|
|
|
|
/* These need to be reset to NULL when desktop_is_home_dir changes */
|
|
static GFile *desktop_dir = NULL;
|
|
static GFile *desktop_dir_dir = NULL;
|
|
static char *desktop_dir_filename = NULL;
|
|
|
|
|
|
static void
|
|
desktop_dir_changed (void)
|
|
{
|
|
if (desktop_dir) {
|
|
g_object_unref (desktop_dir);
|
|
}
|
|
if (desktop_dir_dir) {
|
|
g_object_unref (desktop_dir_dir);
|
|
}
|
|
g_free (desktop_dir_filename);
|
|
desktop_dir = NULL;
|
|
desktop_dir_dir = NULL;
|
|
desktop_dir_filename = NULL;
|
|
}
|
|
|
|
static void
|
|
update_desktop_dir (void)
|
|
{
|
|
char *path;
|
|
char *dirname;
|
|
|
|
path = get_desktop_path ();
|
|
desktop_dir = g_file_new_for_path (path);
|
|
|
|
dirname = g_path_get_dirname (path);
|
|
desktop_dir_dir = g_file_new_for_path (dirname);
|
|
g_free (dirname);
|
|
desktop_dir_filename = g_path_get_basename (path);
|
|
g_free (path);
|
|
}
|
|
|
|
gboolean
|
|
nautilus_is_home_directory_file (GFile *dir,
|
|
const char *filename)
|
|
{
|
|
char *dirname;
|
|
static GFile *home_dir_dir = NULL;
|
|
static char *home_dir_filename = NULL;
|
|
|
|
if (home_dir_dir == NULL) {
|
|
dirname = g_path_get_dirname (g_get_home_dir ());
|
|
home_dir_dir = g_file_new_for_path (dirname);
|
|
g_free (dirname);
|
|
home_dir_filename = g_path_get_basename (g_get_home_dir ());
|
|
}
|
|
|
|
return (g_file_equal (dir, home_dir_dir) &&
|
|
strcmp (filename, home_dir_filename) == 0);
|
|
}
|
|
|
|
gboolean
|
|
nautilus_is_home_directory (GFile *dir)
|
|
{
|
|
static GFile *home_dir = NULL;
|
|
|
|
if (home_dir == NULL) {
|
|
home_dir = g_file_new_for_path (g_get_home_dir ());
|
|
}
|
|
|
|
return g_file_equal (dir, home_dir);
|
|
}
|
|
|
|
gboolean
|
|
nautilus_is_root_directory (GFile *dir)
|
|
{
|
|
static GFile *root_dir = NULL;
|
|
|
|
if (root_dir == NULL) {
|
|
root_dir = g_file_new_for_path ("/");
|
|
}
|
|
|
|
return g_file_equal (dir, root_dir);
|
|
}
|
|
|
|
|
|
gboolean
|
|
nautilus_is_desktop_directory_file (GFile *dir,
|
|
const char *file)
|
|
{
|
|
|
|
if (desktop_dir == NULL) {
|
|
update_desktop_dir ();
|
|
}
|
|
|
|
return (g_file_equal (dir, desktop_dir_dir) &&
|
|
strcmp (file, desktop_dir_filename) == 0);
|
|
}
|
|
|
|
gboolean
|
|
nautilus_is_desktop_directory (GFile *dir)
|
|
{
|
|
|
|
if (desktop_dir == NULL) {
|
|
update_desktop_dir ();
|
|
}
|
|
|
|
return g_file_equal (dir, desktop_dir);
|
|
}
|
|
|
|
char *
|
|
nautilus_ensure_unique_file_name (const char *directory_uri,
|
|
const char *base_name,
|
|
const char *extension)
|
|
{
|
|
GFileInfo *info;
|
|
char *filename;
|
|
GFile *dir, *child;
|
|
int copy;
|
|
char *res;
|
|
|
|
dir = g_file_new_for_uri (directory_uri);
|
|
|
|
info = g_file_query_info (dir, G_FILE_ATTRIBUTE_STANDARD_TYPE, 0, NULL, NULL);
|
|
if (info == NULL) {
|
|
g_object_unref (dir);
|
|
return NULL;
|
|
}
|
|
g_object_unref (info);
|
|
|
|
filename = g_strdup_printf ("%s%s",
|
|
base_name,
|
|
extension);
|
|
child = g_file_get_child (dir, filename);
|
|
g_free (filename);
|
|
|
|
copy = 1;
|
|
while ((info = g_file_query_info (child, G_FILE_ATTRIBUTE_STANDARD_TYPE, 0, NULL, NULL)) != NULL) {
|
|
g_object_unref (info);
|
|
g_object_unref (child);
|
|
|
|
filename = g_strdup_printf ("%s-%d%s",
|
|
base_name,
|
|
copy,
|
|
extension);
|
|
child = g_file_get_child (dir, filename);
|
|
g_free (filename);
|
|
|
|
copy++;
|
|
}
|
|
|
|
res = g_file_get_uri (child);
|
|
g_object_unref (child);
|
|
g_object_unref (dir);
|
|
|
|
return res;
|
|
}
|
|
|
|
GFile *
|
|
nautilus_find_existing_uri_in_hierarchy (GFile *location)
|
|
{
|
|
GFileInfo *info;
|
|
GFile *tmp;
|
|
|
|
g_assert (location != NULL);
|
|
|
|
location = g_object_ref (location);
|
|
while (location != NULL) {
|
|
info = g_file_query_info (location,
|
|
G_FILE_ATTRIBUTE_STANDARD_NAME,
|
|
0, NULL, NULL);
|
|
g_object_unref (info);
|
|
if (info != NULL) {
|
|
return location;
|
|
}
|
|
tmp = location;
|
|
location = g_file_get_parent (location);
|
|
g_object_unref (tmp);
|
|
}
|
|
|
|
return location;
|
|
}
|
|
|
|
gboolean
|
|
nautilus_is_file_roller_installed (void)
|
|
{
|
|
static int installed = - 1;
|
|
|
|
if (installed < 0) {
|
|
if (g_find_program_in_path ("file-roller")) {
|
|
installed = 1;
|
|
} else {
|
|
installed = 0;
|
|
}
|
|
}
|
|
|
|
return installed > 0 ? TRUE : FALSE;
|
|
}
|
|
|
|
/* Returns TRUE if the file is in XDG_DATA_DIRS. This is used for
|
|
deciding if a desktop file is "trusted" based on the path */
|
|
gboolean
|
|
nautilus_is_in_system_dir (GFile *file)
|
|
{
|
|
const char * const * data_dirs;
|
|
char *path;
|
|
int i;
|
|
gboolean res;
|
|
|
|
if (!g_file_is_native (file)) {
|
|
return FALSE;
|
|
}
|
|
|
|
path = g_file_get_path (file);
|
|
|
|
res = FALSE;
|
|
|
|
data_dirs = g_get_system_data_dirs ();
|
|
for (i = 0; path != NULL && data_dirs[i] != NULL; i++) {
|
|
if (g_str_has_prefix (path, data_dirs[i])) {
|
|
res = TRUE;
|
|
break;
|
|
}
|
|
|
|
}
|
|
|
|
return res;
|
|
}
|
|
|
|
GHashTable *
|
|
nautilus_trashed_files_get_original_directories (GList *files,
|
|
GList **unhandled_files)
|
|
{
|
|
GHashTable *directories;
|
|
NautilusFile *file, *original_file, *original_dir;
|
|
GList *l, *m;
|
|
|
|
directories = NULL;
|
|
|
|
if (unhandled_files != NULL) {
|
|
*unhandled_files = NULL;
|
|
}
|
|
|
|
for (l = files; l != NULL; l = l->next) {
|
|
file = NAUTILUS_FILE (l->data);
|
|
original_file = nautilus_file_get_trash_original_file (file);
|
|
|
|
original_dir = NULL;
|
|
if (original_file != NULL) {
|
|
original_dir = nautilus_file_get_parent (original_file);
|
|
}
|
|
|
|
if (original_dir != NULL) {
|
|
if (directories == NULL) {
|
|
directories = g_hash_table_new_full (g_direct_hash, g_direct_equal,
|
|
(GDestroyNotify) nautilus_file_unref,
|
|
(GDestroyNotify) nautilus_file_list_unref);
|
|
}
|
|
nautilus_file_ref (original_dir);
|
|
m = g_hash_table_lookup (directories, original_dir);
|
|
if (m != NULL) {
|
|
g_hash_table_steal (directories, original_dir);
|
|
nautilus_file_unref (original_dir);
|
|
}
|
|
m = g_list_append (m, nautilus_file_ref (file));
|
|
g_hash_table_insert (directories, original_dir, m);
|
|
} else if (unhandled_files != NULL) {
|
|
*unhandled_files = g_list_append (*unhandled_files, nautilus_file_ref (file));
|
|
}
|
|
|
|
if (original_file != NULL) {
|
|
nautilus_file_unref (original_file);
|
|
}
|
|
|
|
if (original_dir != NULL) {
|
|
nautilus_file_unref (original_dir);
|
|
}
|
|
}
|
|
|
|
return directories;
|
|
}
|
|
|
|
static GList *
|
|
locations_from_file_list (GList *file_list)
|
|
{
|
|
NautilusFile *file;
|
|
GList *l, *ret;
|
|
|
|
ret = NULL;
|
|
|
|
for (l = file_list; l != NULL; l = l->next) {
|
|
file = NAUTILUS_FILE (l->data);
|
|
ret = g_list_prepend (ret, nautilus_file_get_location (file));
|
|
}
|
|
|
|
return g_list_reverse (ret);
|
|
}
|
|
|
|
void
|
|
nautilus_restore_files_from_trash (GList *files,
|
|
GtkWindow *parent_window)
|
|
{
|
|
NautilusFile *file, *original_dir;
|
|
GHashTable *original_dirs_hash;
|
|
GList *original_dirs, *unhandled_files;
|
|
GFile *original_dir_location;
|
|
GList *locations, *l;
|
|
char *message, *file_name;
|
|
|
|
original_dirs_hash = nautilus_trashed_files_get_original_directories (files, &unhandled_files);
|
|
|
|
for (l = unhandled_files; l != NULL; l = l->next) {
|
|
file = NAUTILUS_FILE (l->data);
|
|
file_name = nautilus_file_get_display_name (file);
|
|
message = g_strdup_printf (_("Could not determine original location of \"%s\" "), file_name);
|
|
g_free (file_name);
|
|
|
|
eel_show_warning_dialog (message,
|
|
_("The item cannot be restored from trash"),
|
|
parent_window);
|
|
g_free (message);
|
|
}
|
|
|
|
if (original_dirs_hash != NULL) {
|
|
original_dirs = g_hash_table_get_keys (original_dirs_hash);
|
|
for (l = original_dirs; l != NULL; l = l->next) {
|
|
original_dir = NAUTILUS_FILE (l->data);
|
|
original_dir_location = nautilus_file_get_location (original_dir);
|
|
|
|
files = g_hash_table_lookup (original_dirs_hash, original_dir);
|
|
locations = locations_from_file_list (files);
|
|
|
|
nautilus_file_operations_move
|
|
(locations, NULL,
|
|
original_dir_location,
|
|
parent_window,
|
|
NULL, NULL);
|
|
|
|
g_list_free_full (locations, g_object_unref);
|
|
g_object_unref (original_dir_location);
|
|
}
|
|
|
|
g_list_free (original_dirs);
|
|
g_hash_table_destroy (original_dirs_hash);
|
|
}
|
|
|
|
nautilus_file_list_unref (unhandled_files);
|
|
}
|
|
|
|
typedef struct {
|
|
NautilusMountGetContent callback;
|
|
gpointer user_data;
|
|
} GetContentTypesData;
|
|
|
|
static void
|
|
get_types_cb (GObject *source_object,
|
|
GAsyncResult *res,
|
|
gpointer user_data)
|
|
{
|
|
GetContentTypesData *data;
|
|
char **types;
|
|
|
|
data = user_data;
|
|
types = g_mount_guess_content_type_finish (G_MOUNT (source_object), res, NULL);
|
|
|
|
g_object_set_data_full (source_object,
|
|
"nautilus-content-type-cache",
|
|
g_strdupv (types),
|
|
(GDestroyNotify)g_strfreev);
|
|
|
|
if (data->callback) {
|
|
data->callback ((const char **) types, data->user_data);
|
|
}
|
|
g_strfreev (types);
|
|
g_slice_free (GetContentTypesData, data);
|
|
}
|
|
|
|
void
|
|
nautilus_get_x_content_types_for_mount_async (GMount *mount,
|
|
NautilusMountGetContent callback,
|
|
GCancellable *cancellable,
|
|
gpointer user_data)
|
|
{
|
|
char **cached;
|
|
GetContentTypesData *data;
|
|
|
|
if (mount == NULL) {
|
|
if (callback) {
|
|
callback (NULL, user_data);
|
|
}
|
|
return;
|
|
}
|
|
|
|
cached = g_object_get_data (G_OBJECT (mount), "nautilus-content-type-cache");
|
|
if (cached != NULL) {
|
|
if (callback) {
|
|
callback ((const char **) cached, user_data);
|
|
}
|
|
return;
|
|
}
|
|
|
|
data = g_slice_new0 (GetContentTypesData);
|
|
data->callback = callback;
|
|
data->user_data = user_data;
|
|
|
|
g_mount_guess_content_type (mount,
|
|
FALSE,
|
|
cancellable,
|
|
get_types_cb,
|
|
data);
|
|
}
|
|
|
|
char **
|
|
nautilus_get_cached_x_content_types_for_mount (GMount *mount)
|
|
{
|
|
char **cached;
|
|
|
|
if (mount == NULL) {
|
|
return NULL;
|
|
}
|
|
|
|
cached = g_object_get_data (G_OBJECT (mount), "nautilus-content-type-cache");
|
|
if (cached != NULL) {
|
|
return g_strdupv (cached);
|
|
}
|
|
|
|
return NULL;
|
|
}
|
|
|
|
#if !defined (NAUTILUS_OMIT_SELF_CHECK)
|
|
|
|
void
|
|
nautilus_self_check_file_utilities (void)
|
|
{
|
|
}
|
|
|
|
#endif /* !NAUTILUS_OMIT_SELF_CHECK */
|