1 /* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
3 /* GIO - GLib Input, Output and Streaming Library
5 * Copyright (C) 2006-2007 Red Hat, Inc.
7 * SPDX-License-Identifier: LGPL-2.1-or-later
9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public
11 * License as published by the Free Software Foundation; either
12 * version 2.1 of the License, or (at your option) any later version.
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
19 * You should have received a copy of the GNU Lesser General
20 * Public License along with this library; if not, see <http://www.gnu.org/licenses/>.
22 * Author: Alexander Larsson <alexl@redhat.com>
23 * David Zeuthen <davidz@redhat.com>
31 #include "gunionvolumemonitor.h"
32 #include "gmountprivate.h"
33 #include "giomodule-priv.h"
35 #include "gunixvolumemonitor.h"
37 #include "gnativevolumemonitor.h"
42 struct _GUnionVolumeMonitor {
43 GVolumeMonitor parent;
48 static void g_union_volume_monitor_remove_monitor (GUnionVolumeMonitor *union_monitor,
49 GVolumeMonitor *child_monitor);
52 #define g_union_volume_monitor_get_type _g_union_volume_monitor_get_type
53 G_DEFINE_TYPE (GUnionVolumeMonitor, g_union_volume_monitor, G_TYPE_VOLUME_MONITOR)
55 static GRecMutex the_volume_monitor_mutex;
57 static GUnionVolumeMonitor *the_volume_monitor = NULL;
60 g_union_volume_monitor_finalize (GObject *object)
62 GUnionVolumeMonitor *monitor;
63 GVolumeMonitor *child_monitor;
65 monitor = G_UNION_VOLUME_MONITOR (object);
67 while (monitor->monitors != NULL)
69 child_monitor = monitor->monitors->data;
70 g_union_volume_monitor_remove_monitor (monitor,
72 g_object_unref (child_monitor);
75 G_OBJECT_CLASS (g_union_volume_monitor_parent_class)->finalize (object);
79 g_union_volume_monitor_dispose (GObject *object)
81 GUnionVolumeMonitor *monitor;
82 GVolumeMonitor *child_monitor;
85 monitor = G_UNION_VOLUME_MONITOR (object);
87 g_rec_mutex_lock (&the_volume_monitor_mutex);
88 the_volume_monitor = NULL;
90 for (l = monitor->monitors; l != NULL; l = l->next)
92 child_monitor = l->data;
93 g_object_run_dispose (G_OBJECT (child_monitor));
96 g_rec_mutex_unlock (&the_volume_monitor_mutex);
98 G_OBJECT_CLASS (g_union_volume_monitor_parent_class)->dispose (object);
102 get_mounts (GVolumeMonitor *volume_monitor)
104 GUnionVolumeMonitor *monitor;
105 GVolumeMonitor *child_monitor;
109 monitor = G_UNION_VOLUME_MONITOR (volume_monitor);
113 g_rec_mutex_lock (&the_volume_monitor_mutex);
115 for (l = monitor->monitors; l != NULL; l = l->next)
117 child_monitor = l->data;
119 res = g_list_concat (res, g_volume_monitor_get_mounts (child_monitor));
122 g_rec_mutex_unlock (&the_volume_monitor_mutex);
128 get_volumes (GVolumeMonitor *volume_monitor)
130 GUnionVolumeMonitor *monitor;
131 GVolumeMonitor *child_monitor;
135 monitor = G_UNION_VOLUME_MONITOR (volume_monitor);
139 g_rec_mutex_lock (&the_volume_monitor_mutex);
141 for (l = monitor->monitors; l != NULL; l = l->next)
143 child_monitor = l->data;
145 res = g_list_concat (res, g_volume_monitor_get_volumes (child_monitor));
148 g_rec_mutex_unlock (&the_volume_monitor_mutex);
154 get_connected_drives (GVolumeMonitor *volume_monitor)
156 GUnionVolumeMonitor *monitor;
157 GVolumeMonitor *child_monitor;
161 monitor = G_UNION_VOLUME_MONITOR (volume_monitor);
165 g_rec_mutex_lock (&the_volume_monitor_mutex);
167 for (l = monitor->monitors; l != NULL; l = l->next)
169 child_monitor = l->data;
171 res = g_list_concat (res, g_volume_monitor_get_connected_drives (child_monitor));
174 g_rec_mutex_unlock (&the_volume_monitor_mutex);
180 get_volume_for_uuid (GVolumeMonitor *volume_monitor, const char *uuid)
182 GUnionVolumeMonitor *monitor;
183 GVolumeMonitor *child_monitor;
187 monitor = G_UNION_VOLUME_MONITOR (volume_monitor);
191 g_rec_mutex_lock (&the_volume_monitor_mutex);
193 for (l = monitor->monitors; l != NULL; l = l->next)
195 child_monitor = l->data;
197 volume = g_volume_monitor_get_volume_for_uuid (child_monitor, uuid);
203 g_rec_mutex_unlock (&the_volume_monitor_mutex);
209 get_mount_for_uuid (GVolumeMonitor *volume_monitor, const char *uuid)
211 GUnionVolumeMonitor *monitor;
212 GVolumeMonitor *child_monitor;
216 monitor = G_UNION_VOLUME_MONITOR (volume_monitor);
220 g_rec_mutex_lock (&the_volume_monitor_mutex);
222 for (l = monitor->monitors; l != NULL; l = l->next)
224 child_monitor = l->data;
226 mount = g_volume_monitor_get_mount_for_uuid (child_monitor, uuid);
232 g_rec_mutex_unlock (&the_volume_monitor_mutex);
238 g_union_volume_monitor_class_init (GUnionVolumeMonitorClass *klass)
240 GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
241 GVolumeMonitorClass *monitor_class = G_VOLUME_MONITOR_CLASS (klass);
243 gobject_class->finalize = g_union_volume_monitor_finalize;
244 gobject_class->dispose = g_union_volume_monitor_dispose;
246 monitor_class->get_connected_drives = get_connected_drives;
247 monitor_class->get_volumes = get_volumes;
248 monitor_class->get_mounts = get_mounts;
249 monitor_class->get_volume_for_uuid = get_volume_for_uuid;
250 monitor_class->get_mount_for_uuid = get_mount_for_uuid;
254 child_volume_added (GVolumeMonitor *child_monitor,
255 GVolume *child_volume,
256 GUnionVolumeMonitor *union_monitor)
258 g_signal_emit_by_name (union_monitor,
264 child_volume_removed (GVolumeMonitor *child_monitor,
265 GVolume *child_volume,
266 GUnionVolumeMonitor *union_monitor)
268 g_signal_emit_by_name (union_monitor,
274 child_volume_changed (GVolumeMonitor *child_monitor,
275 GVolume *child_volume,
276 GUnionVolumeMonitor *union_monitor)
278 g_signal_emit_by_name (union_monitor,
284 child_mount_added (GVolumeMonitor *child_monitor,
286 GUnionVolumeMonitor *union_monitor)
288 g_signal_emit_by_name (union_monitor,
294 child_mount_removed (GVolumeMonitor *child_monitor,
296 GUnionVolumeMonitor *union_monitor)
298 g_signal_emit_by_name (union_monitor,
304 child_mount_pre_unmount (GVolumeMonitor *child_monitor,
306 GUnionVolumeMonitor *union_monitor)
308 g_signal_emit_by_name (union_monitor,
315 child_mount_changed (GVolumeMonitor *child_monitor,
317 GUnionVolumeMonitor *union_monitor)
319 g_signal_emit_by_name (union_monitor,
325 child_drive_connected (GVolumeMonitor *child_monitor,
327 GUnionVolumeMonitor *union_monitor)
329 g_signal_emit_by_name (union_monitor,
335 child_drive_disconnected (GVolumeMonitor *child_monitor,
337 GUnionVolumeMonitor *union_monitor)
339 g_signal_emit_by_name (union_monitor,
340 "drive-disconnected",
345 child_drive_changed (GVolumeMonitor *child_monitor,
347 GUnionVolumeMonitor *union_monitor)
349 g_signal_emit_by_name (union_monitor,
355 child_drive_eject_button (GVolumeMonitor *child_monitor,
357 GUnionVolumeMonitor *union_monitor)
359 g_signal_emit_by_name (union_monitor,
360 "drive-eject-button",
365 child_drive_stop_button (GVolumeMonitor *child_monitor,
367 GUnionVolumeMonitor *union_monitor)
369 g_signal_emit_by_name (union_monitor,
375 g_union_volume_monitor_add_monitor (GUnionVolumeMonitor *union_monitor,
376 GVolumeMonitor *volume_monitor)
378 if (g_list_find (union_monitor->monitors, volume_monitor))
381 union_monitor->monitors =
382 g_list_prepend (union_monitor->monitors,
383 g_object_ref (volume_monitor));
385 g_signal_connect (volume_monitor, "volume-added", (GCallback)child_volume_added, union_monitor);
386 g_signal_connect (volume_monitor, "volume-removed", (GCallback)child_volume_removed, union_monitor);
387 g_signal_connect (volume_monitor, "volume-changed", (GCallback)child_volume_changed, union_monitor);
388 g_signal_connect (volume_monitor, "mount-added", (GCallback)child_mount_added, union_monitor);
389 g_signal_connect (volume_monitor, "mount-removed", (GCallback)child_mount_removed, union_monitor);
390 g_signal_connect (volume_monitor, "mount-pre-unmount", (GCallback)child_mount_pre_unmount, union_monitor);
391 g_signal_connect (volume_monitor, "mount-changed", (GCallback)child_mount_changed, union_monitor);
392 g_signal_connect (volume_monitor, "drive-connected", (GCallback)child_drive_connected, union_monitor);
393 g_signal_connect (volume_monitor, "drive-disconnected", (GCallback)child_drive_disconnected, union_monitor);
394 g_signal_connect (volume_monitor, "drive-changed", (GCallback)child_drive_changed, union_monitor);
395 g_signal_connect (volume_monitor, "drive-eject-button", (GCallback)child_drive_eject_button, union_monitor);
396 g_signal_connect (volume_monitor, "drive-stop-button", (GCallback)child_drive_stop_button, union_monitor);
400 g_union_volume_monitor_remove_monitor (GUnionVolumeMonitor *union_monitor,
401 GVolumeMonitor *child_monitor)
405 l = g_list_find (union_monitor->monitors, child_monitor);
409 union_monitor->monitors = g_list_delete_link (union_monitor->monitors, l);
411 g_signal_handlers_disconnect_by_func (child_monitor, child_volume_added, union_monitor);
412 g_signal_handlers_disconnect_by_func (child_monitor, child_volume_removed, union_monitor);
413 g_signal_handlers_disconnect_by_func (child_monitor, child_volume_changed, union_monitor);
414 g_signal_handlers_disconnect_by_func (child_monitor, child_mount_added, union_monitor);
415 g_signal_handlers_disconnect_by_func (child_monitor, child_mount_removed, union_monitor);
416 g_signal_handlers_disconnect_by_func (child_monitor, child_mount_pre_unmount, union_monitor);
417 g_signal_handlers_disconnect_by_func (child_monitor, child_mount_changed, union_monitor);
418 g_signal_handlers_disconnect_by_func (child_monitor, child_drive_connected, union_monitor);
419 g_signal_handlers_disconnect_by_func (child_monitor, child_drive_disconnected, union_monitor);
420 g_signal_handlers_disconnect_by_func (child_monitor, child_drive_changed, union_monitor);
421 g_signal_handlers_disconnect_by_func (child_monitor, child_drive_eject_button, union_monitor);
422 g_signal_handlers_disconnect_by_func (child_monitor, child_drive_stop_button, union_monitor);
426 get_default_native_class (gpointer data)
428 return _g_io_module_get_default_type (G_NATIVE_VOLUME_MONITOR_EXTENSION_POINT_NAME,
429 "GIO_USE_VOLUME_MONITOR",
430 G_STRUCT_OFFSET (GVolumeMonitorClass, is_supported));
433 /* We return the class, with a ref taken.
434 * This way we avoid unloading the class/module
435 * between selecting the type and creating the
436 * instance on the first call.
438 static GNativeVolumeMonitorClass *
439 get_native_class (void)
441 static GOnce once_init = G_ONCE_INIT;
442 GTypeClass *type_class;
445 g_once (&once_init, (GThreadFunc)get_default_native_class, &type_class);
447 if (type_class == NULL && once_init.retval != GUINT_TO_POINTER(G_TYPE_INVALID))
448 type_class = g_type_class_ref ((GType)once_init.retval);
450 return (GNativeVolumeMonitorClass *)type_class;
454 g_union_volume_monitor_init (GUnionVolumeMonitor *union_monitor)
459 populate_union_monitor (GUnionVolumeMonitor *union_monitor)
461 GVolumeMonitor *monitor;
462 GNativeVolumeMonitorClass *native_class;
463 GVolumeMonitorClass *klass;
464 GIOExtensionPoint *ep;
465 GIOExtension *extension;
468 native_class = get_native_class ();
470 if (native_class != NULL)
472 monitor = g_object_new (G_TYPE_FROM_CLASS (native_class), NULL);
473 g_union_volume_monitor_add_monitor (union_monitor, monitor);
474 g_object_unref (monitor);
475 g_type_class_unref (native_class);
478 ep = g_io_extension_point_lookup (G_VOLUME_MONITOR_EXTENSION_POINT_NAME);
479 for (l = g_io_extension_point_get_extensions (ep); l != NULL; l = l->next)
483 klass = G_VOLUME_MONITOR_CLASS (g_io_extension_ref_class (extension));
484 if (klass->is_supported == NULL || klass->is_supported())
486 monitor = g_object_new (g_io_extension_get_type (extension), NULL);
487 g_union_volume_monitor_add_monitor (union_monitor, monitor);
488 g_object_unref (monitor);
490 g_type_class_unref (klass);
494 static GUnionVolumeMonitor *
495 g_union_volume_monitor_new (void)
497 GUnionVolumeMonitor *monitor;
499 monitor = g_object_new (G_TYPE_UNION_VOLUME_MONITOR, NULL);
505 * g_volume_monitor_get:
507 * Gets the volume monitor used by gio.
509 * Returns: (transfer full): a reference to the #GVolumeMonitor used by gio. Call
510 * g_object_unref() when done with it.
513 g_volume_monitor_get (void)
517 g_rec_mutex_lock (&the_volume_monitor_mutex);
519 if (the_volume_monitor)
520 vm = G_VOLUME_MONITOR (g_object_ref (the_volume_monitor));
523 the_volume_monitor = g_union_volume_monitor_new ();
524 populate_union_monitor (the_volume_monitor);
525 vm = G_VOLUME_MONITOR (the_volume_monitor);
528 g_rec_mutex_unlock (&the_volume_monitor_mutex);
534 _g_mount_get_for_mount_path (const gchar *mount_path,
535 GCancellable *cancellable)
537 GNativeVolumeMonitorClass *klass;
540 klass = get_native_class ();
546 if (klass->get_mount_for_mount_path)
547 mount = klass->get_mount_for_mount_path (mount_path, cancellable);
549 /* TODO: How do we know this succeeded? Keep in mind that the native
550 * volume monitor may fail (e.g. not being able to connect to
551 * udisks). Is the get_mount_for_mount_path() method allowed to
552 * return NULL? Seems like it is ... probably the method needs
553 * to take a boolean and write if it succeeds or not.. Messy.
557 g_type_class_unref (klass);
563 * g_volume_monitor_adopt_orphan_mount:
564 * @mount: a #GMount object to find a parent for
566 * This function should be called by any #GVolumeMonitor
567 * implementation when a new #GMount object is created that is not
568 * associated with a #GVolume object. It must be called just before
569 * emitting the @mount_added signal.
571 * If the return value is not %NULL, the caller must associate the
572 * returned #GVolume object with the #GMount. This involves returning
573 * it in its g_mount_get_volume() implementation. The caller must
574 * also listen for the "removed" signal on the returned object
575 * and give up its reference when handling that signal
577 * Similarly, if implementing g_volume_monitor_adopt_orphan_mount(),
578 * the implementor must take a reference to @mount and return it in
579 * its g_volume_get_mount() implemented. Also, the implementor must
580 * listen for the "unmounted" signal on @mount and give up its
581 * reference upon handling that signal.
583 * There are two main use cases for this function.
585 * One is when implementing a user space file system driver that reads
586 * blocks of a block device that is already represented by the native
587 * volume monitor (for example a CD Audio file system driver). Such
588 * a driver will generate its own #GMount object that needs to be
589 * associated with the #GVolume object that represents the volume.
591 * The other is for implementing a #GVolumeMonitor whose sole purpose
592 * is to return #GVolume objects representing entries in the users
593 * "favorite servers" list or similar.
595 * Returns: (transfer full): the #GVolume object that is the parent for @mount or %NULL
596 * if no wants to adopt the #GMount.
598 * Deprecated: 2.20: Instead of using this function, #GVolumeMonitor
599 * implementations should instead create shadow mounts with the URI of
600 * the mount they intend to adopt. See the proxy volume monitor in
601 * gvfs for an example of this. Also see g_mount_is_shadowed(),
602 * g_mount_shadow() and g_mount_unshadow() functions.
605 g_volume_monitor_adopt_orphan_mount (GMount *mount)
607 GVolumeMonitor *child_monitor;
608 GVolumeMonitorClass *child_monitor_class;
612 g_return_val_if_fail (mount != NULL, NULL);
614 if (the_volume_monitor == NULL)
619 g_rec_mutex_lock (&the_volume_monitor_mutex);
621 for (l = the_volume_monitor->monitors; l != NULL; l = l->next)
623 child_monitor = l->data;
624 child_monitor_class = G_VOLUME_MONITOR_GET_CLASS (child_monitor);
626 if (child_monitor_class->adopt_orphan_mount != NULL)
628 volume = child_monitor_class->adopt_orphan_mount (mount, child_monitor);
634 g_rec_mutex_unlock (&the_volume_monitor_mutex);