mirror of https://gitee.com/openkylin/gvfs.git
176 lines
5.2 KiB
C
176 lines
5.2 KiB
C
|
/* GIO - GLib Input, Output and Streaming Library
|
||
|
*
|
||
|
* Copyright (C) 2006-2007 Red Hat, Inc.
|
||
|
*
|
||
|
* 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., 51 Franklin Street, Fifth Floor,
|
||
|
* Boston, MA 02110-1301, USA.
|
||
|
*
|
||
|
* Author: Alexander Larsson <alexl@redhat.com>
|
||
|
*/
|
||
|
|
||
|
#include <config.h>
|
||
|
|
||
|
#include <unistd.h>
|
||
|
#include <sys/types.h>
|
||
|
#include <sys/socket.h>
|
||
|
#include <sys/un.h>
|
||
|
|
||
|
#include <glib.h>
|
||
|
#include <glib/gi18n.h>
|
||
|
#include "gvfsjobmove.h"
|
||
|
#include "gvfsjobsetattribute.h"
|
||
|
|
||
|
G_DEFINE_TYPE (GVfsJobSetAttribute, g_vfs_job_set_attribute, G_VFS_TYPE_JOB_DBUS)
|
||
|
|
||
|
static void run (GVfsJob *job);
|
||
|
static gboolean try (GVfsJob *job);
|
||
|
static void create_reply (GVfsJob *job,
|
||
|
GVfsDBusMount *object,
|
||
|
GDBusMethodInvocation *invocation);
|
||
|
|
||
|
static void
|
||
|
g_vfs_job_set_attribute_finalize (GObject *object)
|
||
|
{
|
||
|
GVfsJobSetAttribute *job;
|
||
|
|
||
|
job = G_VFS_JOB_SET_ATTRIBUTE (object);
|
||
|
|
||
|
g_free (job->filename);
|
||
|
g_free (job->attribute);
|
||
|
_g_dbus_attribute_value_destroy (job->type,
|
||
|
&job->value);
|
||
|
|
||
|
if (G_OBJECT_CLASS (g_vfs_job_set_attribute_parent_class)->finalize)
|
||
|
(*G_OBJECT_CLASS (g_vfs_job_set_attribute_parent_class)->finalize) (object);
|
||
|
}
|
||
|
|
||
|
static void
|
||
|
g_vfs_job_set_attribute_class_init (GVfsJobSetAttributeClass *klass)
|
||
|
{
|
||
|
GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
|
||
|
GVfsJobClass *job_class = G_VFS_JOB_CLASS (klass);
|
||
|
GVfsJobDBusClass *job_dbus_class = G_VFS_JOB_DBUS_CLASS (klass);
|
||
|
|
||
|
gobject_class->finalize = g_vfs_job_set_attribute_finalize;
|
||
|
job_class->run = run;
|
||
|
job_class->try = try;
|
||
|
job_dbus_class->create_reply = create_reply;
|
||
|
}
|
||
|
|
||
|
static void
|
||
|
g_vfs_job_set_attribute_init (GVfsJobSetAttribute *job)
|
||
|
{
|
||
|
job->type = G_FILE_ATTRIBUTE_TYPE_INVALID;
|
||
|
}
|
||
|
|
||
|
gboolean
|
||
|
g_vfs_job_set_attribute_new_handle (GVfsDBusMount *object,
|
||
|
GDBusMethodInvocation *invocation,
|
||
|
const gchar *arg_path_data,
|
||
|
guint arg_flags,
|
||
|
GVariant *arg_attribute,
|
||
|
GVfsBackend *backend)
|
||
|
{
|
||
|
GVfsJobSetAttribute *job;
|
||
|
gchar *attribute;
|
||
|
GFileAttributeType type;
|
||
|
GDBusAttributeValue value;
|
||
|
|
||
|
if (g_vfs_backend_invocation_first_handler (object, invocation, backend))
|
||
|
return TRUE;
|
||
|
|
||
|
if (! _g_dbus_get_file_attribute (arg_attribute, &attribute, NULL, &type, &value))
|
||
|
{
|
||
|
g_dbus_method_invocation_return_error_literal (invocation,
|
||
|
G_IO_ERROR,
|
||
|
G_IO_ERROR_INVALID_ARGUMENT,
|
||
|
_("Invalid dbus message"));
|
||
|
return TRUE;
|
||
|
}
|
||
|
|
||
|
job = g_object_new (G_VFS_TYPE_JOB_SET_ATTRIBUTE,
|
||
|
"object", object,
|
||
|
"invocation", invocation,
|
||
|
NULL);
|
||
|
|
||
|
job->backend = backend;
|
||
|
job->filename = g_strdup (arg_path_data);
|
||
|
job->attribute = attribute;
|
||
|
job->value = value;
|
||
|
job->type = type;
|
||
|
job->flags = arg_flags;
|
||
|
|
||
|
g_vfs_job_source_new_job (G_VFS_JOB_SOURCE (backend), G_VFS_JOB (job));
|
||
|
g_object_unref (job);
|
||
|
|
||
|
return TRUE;
|
||
|
}
|
||
|
|
||
|
static void
|
||
|
run (GVfsJob *job)
|
||
|
{
|
||
|
GVfsJobSetAttribute *op_job = G_VFS_JOB_SET_ATTRIBUTE (job);
|
||
|
GVfsBackendClass *class = G_VFS_BACKEND_GET_CLASS (op_job->backend);
|
||
|
|
||
|
if (class->set_attribute == NULL)
|
||
|
{
|
||
|
g_vfs_job_failed (job, G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED,
|
||
|
_("Operation not supported"));
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
class->set_attribute (op_job->backend,
|
||
|
op_job,
|
||
|
op_job->filename,
|
||
|
op_job->attribute,
|
||
|
op_job->type,
|
||
|
_g_dbus_attribute_as_pointer (op_job->type, &op_job->value),
|
||
|
op_job->flags);
|
||
|
}
|
||
|
|
||
|
static gboolean
|
||
|
try (GVfsJob *job)
|
||
|
{
|
||
|
GVfsJobSetAttribute *op_job = G_VFS_JOB_SET_ATTRIBUTE (job);
|
||
|
GVfsBackendClass *class = G_VFS_BACKEND_GET_CLASS (op_job->backend);
|
||
|
|
||
|
if (g_vfs_backend_get_readonly_lockdown (op_job->backend))
|
||
|
{
|
||
|
g_vfs_job_failed (job, G_IO_ERROR, G_IO_ERROR_PERMISSION_DENIED,
|
||
|
_("Filesystem is read-only"));
|
||
|
return TRUE;
|
||
|
}
|
||
|
|
||
|
if (class->try_set_attribute == NULL)
|
||
|
return FALSE;
|
||
|
|
||
|
return class->try_set_attribute (op_job->backend,
|
||
|
op_job,
|
||
|
op_job->filename,
|
||
|
op_job->attribute,
|
||
|
op_job->type,
|
||
|
_g_dbus_attribute_as_pointer (op_job->type, &op_job->value),
|
||
|
op_job->flags);
|
||
|
}
|
||
|
|
||
|
/* Might be called on an i/o thread */
|
||
|
static void
|
||
|
create_reply (GVfsJob *job,
|
||
|
GVfsDBusMount *object,
|
||
|
GDBusMethodInvocation *invocation)
|
||
|
{
|
||
|
gvfs_dbus_mount_complete_set_attribute (object, invocation);
|
||
|
}
|