/* 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 */ #include #include #include #include #include #include "gdaemonvolumemonitor.h" #include "gdaemonmount.h" #include "gvfsdaemondbus.h" #include "gdaemonfile.h" #include "gmountsource.h" #include "gmountoperationdbus.h" #include /* Protects all fields of GDaemonMount that can change which at this point is just foreign_volume */ G_LOCK_DEFINE_STATIC(daemon_mount); struct _GDaemonMount { GObject parent; GMountInfo *mount_info; GVolumeMonitor *volume_monitor; }; static void g_daemon_mount_mount_iface_init (GMountIface *iface); G_DEFINE_TYPE_WITH_CODE (GDaemonMount, g_daemon_mount, G_TYPE_OBJECT, G_IMPLEMENT_INTERFACE (G_TYPE_MOUNT, g_daemon_mount_mount_iface_init)) static void g_daemon_mount_finalize (GObject *object) { GDaemonMount *mount; mount = G_DAEMON_MOUNT (object); if (mount->volume_monitor != NULL) g_object_remove_weak_pointer (G_OBJECT (mount->volume_monitor), (gpointer) &(mount->volume_monitor)); g_mount_info_unref (mount->mount_info); if (G_OBJECT_CLASS (g_daemon_mount_parent_class)->finalize) (*G_OBJECT_CLASS (g_daemon_mount_parent_class)->finalize) (object); } static void g_daemon_mount_class_init (GDaemonMountClass *klass) { GObjectClass *gobject_class = G_OBJECT_CLASS (klass); gobject_class->finalize = g_daemon_mount_finalize; } static void g_daemon_mount_init (GDaemonMount *daemon_mount) { } GDaemonMount * g_daemon_mount_new (GMountInfo *mount_info, GVolumeMonitor *volume_monitor) { GDaemonMount *mount; mount = g_object_new (G_TYPE_DAEMON_MOUNT, NULL); mount->mount_info = g_mount_info_ref (mount_info); mount->volume_monitor = volume_monitor; g_object_set_data (G_OBJECT (mount), "g-stable-name", (gpointer) mount_info->stable_name); if (mount->volume_monitor != NULL) g_object_add_weak_pointer (G_OBJECT (volume_monitor), (gpointer) &(mount->volume_monitor)); return mount; } GMountInfo * g_daemon_mount_get_mount_info (GDaemonMount *mount) { return mount->mount_info; } static GFile * g_daemon_mount_get_root (GMount *mount) { GDaemonMount *daemon_mount = G_DAEMON_MOUNT (mount); return g_daemon_file_new (daemon_mount->mount_info->mount_spec, daemon_mount->mount_info->mount_spec->mount_prefix); } static GIcon * g_daemon_mount_get_icon (GMount *mount) { GDaemonMount *daemon_mount = G_DAEMON_MOUNT (mount); return g_object_ref (daemon_mount->mount_info->icon); } static GIcon * g_daemon_mount_get_symbolic_icon (GMount *mount) { GDaemonMount *daemon_mount = G_DAEMON_MOUNT (mount); return g_object_ref (daemon_mount->mount_info->symbolic_icon); } static char * g_daemon_mount_get_name (GMount *mount) { GDaemonMount *daemon_mount = G_DAEMON_MOUNT (mount); return g_strdup (daemon_mount->mount_info->display_name); } static GFile * g_daemon_mount_get_default_location (GMount *mount) { GDaemonMount *daemon_mount = G_DAEMON_MOUNT (mount); const char *location = daemon_mount->mount_info->default_location; if (location == NULL || location[0] == '\0') location = daemon_mount->mount_info->mount_spec->mount_prefix; return g_daemon_file_new (daemon_mount->mount_info->mount_spec, location); } static char * g_daemon_mount_get_uuid (GMount *mount) { return NULL; } static GVolume * g_daemon_mount_get_volume (GMount *mount) { return NULL; } static GDrive * g_daemon_mount_get_drive (GMount *mount) { return NULL; } static gboolean g_daemon_mount_can_unmount (GMount *mount) { return TRUE; } static gboolean g_daemon_mount_can_eject (GMount *mount) { return FALSE; } typedef struct { GMount *mount; GCancellable *cancellable; GSimpleAsyncResult *result; GMountInfo *mount_info; GMountOperation *mount_operation; GMountUnmountFlags flags; GDBusConnection *connection; GVfsDBusMount *proxy; gulong cancelled_tag; } AsyncProxyCreate; static void async_proxy_create_free (AsyncProxyCreate *data) { g_clear_object (&data->mount); g_clear_object (&data->result); g_clear_object (&data->cancellable); g_clear_object (&data->mount_operation); g_clear_object (&data->connection); g_clear_object (&data->proxy); g_free (data); } static void unmount_reply (GVfsDBusMount *proxy, GAsyncResult *res, gpointer user_data) { AsyncProxyCreate *data = user_data; GError *error = NULL; if (! gvfs_dbus_mount_call_unmount_finish (proxy, res, &error)) { _g_simple_async_result_take_error_stripped (data->result, error); } _g_simple_async_result_complete_with_cancellable (data->result, data->cancellable); _g_dbus_async_unsubscribe_cancellable (data->cancellable, data->cancelled_tag); async_proxy_create_free (data); } static void async_proxy_new_cb (GObject *source_object, GAsyncResult *res, gpointer user_data) { AsyncProxyCreate *data = user_data; GVfsDBusMount *proxy; GError *error = NULL; GMountSource *mount_source; proxy = gvfs_dbus_mount_proxy_new_finish (res, &error); if (proxy == NULL) { _g_simple_async_result_take_error_stripped (data->result, error); _g_simple_async_result_complete_with_cancellable (data->result, data->cancellable); async_proxy_create_free (data); return; } data->proxy = proxy; _g_dbus_connect_vfs_filters (data->connection); mount_source = g_mount_operation_dbus_wrap (data->mount_operation, _g_daemon_vfs_get_async_bus ()); gvfs_dbus_mount_call_unmount (proxy, g_mount_source_get_dbus_id (mount_source), g_mount_source_get_obj_path (mount_source), data->flags, data->cancellable, (GAsyncReadyCallback) unmount_reply, data); data->cancelled_tag = _g_dbus_async_subscribe_cancellable (data->connection, data->cancellable); g_object_unref (mount_source); } static void async_construct_proxy (GDBusConnection *connection, AsyncProxyCreate *data) { data->connection = g_object_ref (connection); gvfs_dbus_mount_proxy_new (connection, G_DBUS_PROXY_FLAGS_DO_NOT_LOAD_PROPERTIES | G_DBUS_PROXY_FLAGS_DO_NOT_CONNECT_SIGNALS, data->mount_info->dbus_id, data->mount_info->object_path, data->cancellable, async_proxy_new_cb, data); } static void bus_get_cb (GObject *source_object, GAsyncResult *res, gpointer user_data) { AsyncProxyCreate *data = user_data; GDBusConnection *connection; GError *error = NULL; connection = g_bus_get_finish (res, &error); if (connection == NULL) { _g_simple_async_result_take_error_stripped (data->result, error); _g_simple_async_result_complete_with_cancellable (data->result, data->cancellable); async_proxy_create_free (data); return; } async_construct_proxy (connection, data); } static void async_got_connection_cb (GDBusConnection *connection, GError *io_error, gpointer callback_data) { AsyncProxyCreate *data = callback_data; if (connection == NULL) { /* TODO: we should probably test if we really want a session bus; * for now, this code is on par with the old dbus code */ g_bus_get (G_BUS_TYPE_SESSION, data->cancellable, bus_get_cb, data); return; } async_construct_proxy (connection, data); } static void g_daemon_mount_unmount_with_operation (GMount *mount, GMountUnmountFlags flags, GMountOperation *mount_operation, GCancellable *cancellable, GAsyncReadyCallback callback, gpointer user_data) { GDaemonMount *daemon_mount = G_DAEMON_MOUNT (mount); AsyncProxyCreate *data; data = g_new0 (AsyncProxyCreate, 1); data->mount = g_object_ref (mount); data->mount_info = daemon_mount->mount_info; data->flags = flags; if (mount_operation) data->mount_operation = g_object_ref (mount_operation); if (cancellable) data->cancellable = g_object_ref (cancellable); data->result = g_simple_async_result_new (G_OBJECT (mount), callback, user_data, g_daemon_mount_unmount_with_operation); _g_dbus_connection_get_for_async (data->mount_info->dbus_id, async_got_connection_cb, data, data->cancellable); } static gboolean g_daemon_mount_unmount_with_operation_finish (GMount *mount, GAsyncResult *result, GError **error) { return TRUE; } static void g_daemon_mount_unmount (GMount *mount, GMountUnmountFlags flags, GCancellable *cancellable, GAsyncReadyCallback callback, gpointer user_data) { g_daemon_mount_unmount_with_operation (mount, flags, NULL, cancellable, callback, user_data); } static gboolean g_daemon_mount_unmount_finish (GMount *mount, GAsyncResult *result, GError **error) { return g_daemon_mount_unmount_with_operation_finish (mount, result, error); } static char ** g_daemon_mount_guess_content_type_sync (GMount *mount, gboolean force_rescan, GCancellable *cancellable, GError **error) { GDaemonMount *daemon_mount = G_DAEMON_MOUNT (mount); char **result; G_LOCK (daemon_mount); if (daemon_mount->mount_info->x_content_types != NULL && strlen (daemon_mount->mount_info->x_content_types) > 0) result = g_strsplit (daemon_mount->mount_info->x_content_types, " ", 0); else result = g_new0 (char *, 1); G_UNLOCK (daemon_mount); return result; } static void g_daemon_mount_guess_content_type (GMount *mount, gboolean force_rescan, GCancellable *cancellable, GAsyncReadyCallback callback, gpointer user_data) { GSimpleAsyncResult *simple; simple = g_simple_async_result_new (G_OBJECT (mount), callback, user_data, NULL); g_simple_async_result_complete_in_idle (simple); g_object_unref (simple); } static char ** g_daemon_mount_guess_content_type_finish (GMount *mount, GAsyncResult *result, GError **error) { return g_daemon_mount_guess_content_type_sync (mount, FALSE, NULL, error); } static void g_daemon_mount_mount_iface_init (GMountIface *iface) { iface->get_root = g_daemon_mount_get_root; iface->get_name = g_daemon_mount_get_name; iface->get_icon = g_daemon_mount_get_icon; iface->get_symbolic_icon = g_daemon_mount_get_symbolic_icon; iface->get_uuid = g_daemon_mount_get_uuid; iface->get_volume = g_daemon_mount_get_volume; iface->get_drive = g_daemon_mount_get_drive; iface->get_default_location = g_daemon_mount_get_default_location; iface->can_unmount = g_daemon_mount_can_unmount; iface->can_eject = g_daemon_mount_can_eject; iface->unmount = g_daemon_mount_unmount; iface->unmount_finish = g_daemon_mount_unmount_finish; iface->unmount_with_operation = g_daemon_mount_unmount_with_operation; iface->unmount_with_operation_finish = g_daemon_mount_unmount_with_operation_finish; iface->guess_content_type = g_daemon_mount_guess_content_type; iface->guess_content_type_finish = g_daemon_mount_guess_content_type_finish; iface->guess_content_type_sync = g_daemon_mount_guess_content_type_sync; }