summaryrefslogtreecommitdiff
path: root/daemon/gvfsjobqueryinfo.c
diff options
context:
space:
mode:
Diffstat (limited to 'daemon/gvfsjobqueryinfo.c')
-rw-r--r--daemon/gvfsjobqueryinfo.c201
1 files changed, 0 insertions, 201 deletions
diff --git a/daemon/gvfsjobqueryinfo.c b/daemon/gvfsjobqueryinfo.c
deleted file mode 100644
index 78bf1607..00000000
--- a/daemon/gvfsjobqueryinfo.c
+++ /dev/null
@@ -1,201 +0,0 @@
-/* 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., 59 Temple Place, Suite 330,
- * Boston, MA 02111-1307, 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 <dbus/dbus.h>
-#include <glib/gi18n.h>
-#include "gvfsjobqueryinfo.h"
-#include "gdbusutils.h"
-#include "gvfsdaemonprotocol.h"
-
-G_DEFINE_TYPE (GVfsJobQueryInfo, g_vfs_job_query_info, G_VFS_TYPE_JOB_DBUS)
-
-static void run (GVfsJob *job);
-static gboolean try (GVfsJob *job);
-static DBusMessage *create_reply (GVfsJob *job,
- DBusConnection *connection,
- DBusMessage *message);
-
-static void
-g_vfs_job_query_info_finalize (GObject *object)
-{
- GVfsJobQueryInfo *job;
-
- job = G_VFS_JOB_QUERY_INFO (object);
-
- g_object_unref (job->file_info);
-
- g_free (job->filename);
- g_free (job->attributes);
- g_file_attribute_matcher_unref (job->attribute_matcher);
- g_free (job->uri);
-
- if (G_OBJECT_CLASS (g_vfs_job_query_info_parent_class)->finalize)
- (*G_OBJECT_CLASS (g_vfs_job_query_info_parent_class)->finalize) (object);
-}
-
-static void
-g_vfs_job_query_info_class_init (GVfsJobQueryInfoClass *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_query_info_finalize;
- job_class->run = run;
- job_class->try = try;
- job_dbus_class->create_reply = create_reply;
-}
-
-static void
-g_vfs_job_query_info_init (GVfsJobQueryInfo *job)
-{
-}
-
-GVfsJob *
-g_vfs_job_query_info_new (DBusConnection *connection,
- DBusMessage *message,
- GVfsBackend *backend)
-{
- GVfsJobQueryInfo *job;
- DBusMessage *reply;
- DBusError derror;
- int path_len;
- const char *path_data;
- char *attributes;
- char *uri;
- dbus_uint32_t flags;
- DBusMessageIter iter;
-
- dbus_message_iter_init (message, &iter);
-
- dbus_error_init (&derror);
- if (!_g_dbus_message_iter_get_args (&iter, &derror,
- DBUS_TYPE_ARRAY, DBUS_TYPE_BYTE,
- &path_data, &path_len,
- DBUS_TYPE_STRING, &attributes,
- DBUS_TYPE_UINT32, &flags,
- 0))
- {
- reply = dbus_message_new_error (message,
- derror.name,
- derror.message);
- dbus_error_free (&derror);
-
- dbus_connection_send (connection, reply, NULL);
- return NULL;
- }
-
- /* Optional uri arg for thumbnail info */
- if (!_g_dbus_message_iter_get_args (&iter, NULL,
- DBUS_TYPE_STRING, &uri,
- 0))
- uri = NULL;
-
- job = g_object_new (G_VFS_TYPE_JOB_QUERY_INFO,
- "message", message,
- "connection", connection,
- NULL);
-
- job->filename = g_strndup (path_data, path_len);
- job->backend = backend;
- job->attributes = g_strdup (attributes);
- job->attribute_matcher = g_file_attribute_matcher_new (attributes);
- job->flags = flags;
- job->uri = g_strdup (uri);
-
- job->file_info = g_file_info_new ();
- g_file_info_set_attribute_mask (job->file_info, job->attribute_matcher);
-
- return G_VFS_JOB (job);
-}
-
-static void
-run (GVfsJob *job)
-{
- GVfsJobQueryInfo *op_job = G_VFS_JOB_QUERY_INFO (job);
- GVfsBackendClass *class = G_VFS_BACKEND_GET_CLASS (op_job->backend);
-
- if (class->query_info == NULL)
- {
- g_vfs_job_failed (job, G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED,
- _("Operation not supported by backend"));
- return;
- }
-
- class->query_info (op_job->backend,
- op_job,
- op_job->filename,
- op_job->flags,
- op_job->file_info,
- op_job->attribute_matcher);
-}
-
-static gboolean
-try (GVfsJob *job)
-{
- GVfsJobQueryInfo *op_job = G_VFS_JOB_QUERY_INFO (job);
- GVfsBackendClass *class = G_VFS_BACKEND_GET_CLASS (op_job->backend);
-
- if (class->try_query_info == NULL)
- return FALSE;
-
- return class->try_query_info (op_job->backend,
- op_job,
- op_job->filename,
- op_job->flags,
- op_job->file_info,
- op_job->attribute_matcher);
-}
-
-/* Might be called on an i/o thread */
-static DBusMessage *
-create_reply (GVfsJob *job,
- DBusConnection *connection,
- DBusMessage *message)
-{
- GVfsJobQueryInfo *op_job = G_VFS_JOB_QUERY_INFO (job);
- DBusMessage *reply;
- DBusMessageIter iter;
-
- reply = dbus_message_new_method_return (message);
-
- dbus_message_iter_init_append (reply, &iter);
-
- g_vfs_backend_add_auto_info (op_job->backend,
- op_job->attribute_matcher,
- op_job->file_info,
- op_job->uri);
-
- _g_dbus_append_file_info (&iter,
- op_job->file_info);
-
- return reply;
-}