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 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General
18 * Public License along with this library; if not, write to the
19 * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
20 * Boston, MA 02111-1307, USA.
22 * Author: Alexander Larsson <alexl@redhat.com>
23 * David Zeuthen <davidz@redhat.com>
31 #include "gunixvolumemonitor.h"
32 #include "gunixmounts.h"
33 #include "gunixmount.h"
34 #include "gunixvolume.h"
35 #include "gmountprivate.h"
40 struct _GUnixVolumeMonitor {
41 GNativeVolumeMonitor parent;
43 GUnixMountMonitor *mount_monitor;
45 GList *last_mountpoints;
52 static void mountpoints_changed (GUnixMountMonitor *mount_monitor,
54 static void mounts_changed (GUnixMountMonitor *mount_monitor,
56 static void update_volumes (GUnixVolumeMonitor *monitor);
57 static void update_mounts (GUnixVolumeMonitor *monitor);
59 #define g_unix_volume_monitor_get_type _g_unix_volume_monitor_get_type
60 G_DEFINE_TYPE (GUnixVolumeMonitor, g_unix_volume_monitor, G_TYPE_NATIVE_VOLUME_MONITOR);
63 g_unix_volume_monitor_finalize (GObject *object)
65 GUnixVolumeMonitor *monitor;
67 monitor = G_UNIX_VOLUME_MONITOR (object);
69 g_signal_handlers_disconnect_by_func (monitor->mount_monitor, mountpoints_changed, monitor);
70 g_signal_handlers_disconnect_by_func (monitor->mount_monitor, mounts_changed, monitor);
72 g_object_unref (monitor->mount_monitor);
74 g_list_foreach (monitor->last_mountpoints, (GFunc)g_unix_mount_point_free, NULL);
75 g_list_free (monitor->last_mountpoints);
76 g_list_foreach (monitor->last_mounts, (GFunc)g_unix_mount_free, NULL);
77 g_list_free (monitor->last_mounts);
79 g_list_foreach (monitor->volumes, (GFunc)g_object_unref, NULL);
80 g_list_free (monitor->volumes);
81 g_list_foreach (monitor->mounts, (GFunc)g_object_unref, NULL);
82 g_list_free (monitor->mounts);
84 if (G_OBJECT_CLASS (g_unix_volume_monitor_parent_class)->finalize)
85 (*G_OBJECT_CLASS (g_unix_volume_monitor_parent_class)->finalize) (object);
89 get_mounts (GVolumeMonitor *volume_monitor)
91 GUnixVolumeMonitor *monitor;
94 monitor = G_UNIX_VOLUME_MONITOR (volume_monitor);
96 l = g_list_copy (monitor->mounts);
97 g_list_foreach (l, (GFunc)g_object_ref, NULL);
103 get_volumes (GVolumeMonitor *volume_monitor)
105 GUnixVolumeMonitor *monitor;
108 monitor = G_UNIX_VOLUME_MONITOR (volume_monitor);
110 l = g_list_copy (monitor->volumes);
111 g_list_foreach (l, (GFunc)g_object_ref, NULL);
117 get_connected_drives (GVolumeMonitor *volume_monitor)
123 get_volume_for_uuid (GVolumeMonitor *volume_monitor, const char *uuid)
129 get_mount_for_uuid (GVolumeMonitor *volume_monitor, const char *uuid)
141 get_mount_for_mount_path (const char *mount_path,
142 GCancellable *cancellable)
144 GUnixMountEntry *mount_entry;
147 mount_entry = g_unix_mount_at (mount_path, NULL);
149 /* TODO: Set mountable volume? */
150 mount = _g_unix_mount_new (NULL, mount_entry, NULL);
152 return G_MOUNT (mount);
156 g_unix_volume_monitor_class_init (GUnixVolumeMonitorClass *klass)
158 GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
159 GVolumeMonitorClass *monitor_class = G_VOLUME_MONITOR_CLASS (klass);
160 GNativeVolumeMonitorClass *native_class = G_NATIVE_VOLUME_MONITOR_CLASS (klass);
162 gobject_class->finalize = g_unix_volume_monitor_finalize;
164 monitor_class->get_mounts = get_mounts;
165 monitor_class->get_volumes = get_volumes;
166 monitor_class->get_connected_drives = get_connected_drives;
167 monitor_class->get_volume_for_uuid = get_volume_for_uuid;
168 monitor_class->get_mount_for_uuid = get_mount_for_uuid;
170 native_class->priority = 0;
171 native_class->name = "unix";
172 native_class->is_supported = is_supported;
173 native_class->get_mount_for_mount_path = get_mount_for_mount_path;
177 mountpoints_changed (GUnixMountMonitor *mount_monitor,
180 GUnixVolumeMonitor *unix_monitor = user_data;
182 /* Update both to make sure volumes are created before mounts */
183 update_volumes (unix_monitor);
184 update_mounts (unix_monitor);
188 mounts_changed (GUnixMountMonitor *mount_monitor,
191 GUnixVolumeMonitor *unix_monitor = user_data;
193 /* Update both to make sure volumes are created before mounts */
194 update_volumes (unix_monitor);
195 update_mounts (unix_monitor);
199 g_unix_volume_monitor_init (GUnixVolumeMonitor *unix_monitor)
202 unix_monitor->mount_monitor = g_unix_mount_monitor_new ();
204 g_signal_connect (unix_monitor->mount_monitor,
205 "mounts_changed", G_CALLBACK (mounts_changed),
208 g_signal_connect (unix_monitor->mount_monitor,
209 "mountpoints_changed", G_CALLBACK (mountpoints_changed),
212 update_volumes (unix_monitor);
213 update_mounts (unix_monitor);
217 * g_unix_volume_monitor_new:
219 * Returns: a new #GVolumeMonitor.
222 _g_unix_volume_monitor_new (void)
224 GUnixVolumeMonitor *monitor;
226 monitor = g_object_new (G_TYPE_UNIX_VOLUME_MONITOR, NULL);
228 return G_VOLUME_MONITOR (monitor);
232 diff_sorted_lists (GList *list1,
234 GCompareFunc compare,
240 *added = *removed = NULL;
242 while (list1 != NULL &&
245 order = (*compare) (list1->data, list2->data);
248 *removed = g_list_prepend (*removed, list1->data);
253 *added = g_list_prepend (*added, list2->data);
263 while (list1 != NULL)
265 *removed = g_list_prepend (*removed, list1->data);
268 while (list2 != NULL)
270 *added = g_list_prepend (*added, list2->data);
276 * _g_unix_volume_monitor_lookup_volume_for_mount_path:
280 * Returns: #GUnixVolume for the given @mount_path.
283 _g_unix_volume_monitor_lookup_volume_for_mount_path (GUnixVolumeMonitor *monitor,
284 const char *mount_path)
288 for (l = monitor->volumes; l != NULL; l = l->next)
290 GUnixVolume *volume = l->data;
292 if (_g_unix_volume_has_mount_path (volume, mount_path))
300 find_mount_by_mountpath (GUnixVolumeMonitor *monitor,
301 const char *mount_path)
305 for (l = monitor->mounts; l != NULL; l = l->next)
307 GUnixMount *mount = l->data;
309 if (_g_unix_mount_has_mount_path (mount, mount_path))
317 update_volumes (GUnixVolumeMonitor *monitor)
319 GList *new_mountpoints;
320 GList *removed, *added;
324 new_mountpoints = g_unix_mount_points_get (NULL);
326 new_mountpoints = g_list_sort (new_mountpoints, (GCompareFunc) g_unix_mount_point_compare);
328 diff_sorted_lists (monitor->last_mountpoints,
329 new_mountpoints, (GCompareFunc) g_unix_mount_point_compare,
332 for (l = removed; l != NULL; l = l->next)
334 GUnixMountPoint *mountpoint = l->data;
336 volume = _g_unix_volume_monitor_lookup_volume_for_mount_path (monitor,
337 g_unix_mount_point_get_mount_path (mountpoint));
340 _g_unix_volume_disconnected (volume);
341 monitor->volumes = g_list_remove (monitor->volumes, volume);
342 g_signal_emit_by_name (monitor, "volume_removed", volume);
343 g_object_unref (volume);
347 for (l = added; l != NULL; l = l->next)
349 GUnixMountPoint *mountpoint = l->data;
351 volume = _g_unix_volume_new (G_VOLUME_MONITOR (monitor), mountpoint);
354 monitor->volumes = g_list_prepend (monitor->volumes, volume);
355 g_signal_emit_by_name (monitor, "volume_added", volume);
360 g_list_free (removed);
361 g_list_foreach (monitor->last_mountpoints,
362 (GFunc)g_unix_mount_point_free, NULL);
363 g_list_free (monitor->last_mountpoints);
364 monitor->last_mountpoints = new_mountpoints;
368 update_mounts (GUnixVolumeMonitor *monitor)
371 GList *removed, *added;
375 const char *mount_path;
377 new_mounts = g_unix_mounts_get (NULL);
379 new_mounts = g_list_sort (new_mounts, (GCompareFunc) g_unix_mount_compare);
381 diff_sorted_lists (monitor->last_mounts,
382 new_mounts, (GCompareFunc) g_unix_mount_compare,
385 for (l = removed; l != NULL; l = l->next)
387 GUnixMountEntry *mount_entry = l->data;
389 mount = find_mount_by_mountpath (monitor, g_unix_mount_get_mount_path (mount_entry));
392 _g_unix_mount_unmounted (mount);
393 monitor->mounts = g_list_remove (monitor->mounts, mount);
394 g_signal_emit_by_name (monitor, "mount_removed", mount);
395 g_object_unref (mount);
399 for (l = added; l != NULL; l = l->next)
401 GUnixMountEntry *mount_entry = l->data;
403 mount_path = g_unix_mount_get_mount_path (mount_entry);
405 volume = _g_unix_volume_monitor_lookup_volume_for_mount_path (monitor, mount_path);
406 mount = _g_unix_mount_new (G_VOLUME_MONITOR (monitor), mount_entry, volume);
409 monitor->mounts = g_list_prepend (monitor->mounts, mount);
410 g_signal_emit_by_name (monitor, "mount_added", mount);
415 g_list_free (removed);
416 g_list_foreach (monitor->last_mounts,
417 (GFunc)g_unix_mount_free, NULL);
418 g_list_free (monitor->last_mounts);
419 monitor->last_mounts = new_mounts;