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>
33 #include "gunixvolume.h"
34 #include "gunixmount.h"
35 #include "gunixmounts.h"
36 #include "gthemedicon.h"
38 #include "gvolumemonitor.h"
49 GVolumeMonitor *volume_monitor;
50 GUnixMount *mount; /* owned by volume monitor */
57 char *identifier_type;
64 static void g_unix_volume_volume_iface_init (GVolumeIface *iface);
66 #define g_unix_volume_get_type _g_unix_volume_get_type
67 G_DEFINE_TYPE_WITH_CODE (GUnixVolume, g_unix_volume, G_TYPE_OBJECT,
68 G_IMPLEMENT_INTERFACE (G_TYPE_VOLUME,
69 g_unix_volume_volume_iface_init))
72 g_unix_volume_finalize (GObject *object)
76 volume = G_UNIX_VOLUME (object);
78 if (volume->volume_monitor != NULL)
79 g_object_unref (volume->volume_monitor);
82 _g_unix_mount_unset_volume (volume->mount, volume);
84 g_object_unref (volume->icon);
85 g_object_unref (volume->symbolic_icon);
86 g_free (volume->name);
87 g_free (volume->mount_path);
88 g_free (volume->device_path);
89 g_free (volume->identifier);
90 g_free (volume->identifier_type);
92 G_OBJECT_CLASS (g_unix_volume_parent_class)->finalize (object);
96 g_unix_volume_class_init (GUnixVolumeClass *klass)
98 GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
100 gobject_class->finalize = g_unix_volume_finalize;
104 g_unix_volume_init (GUnixVolume *unix_volume)
109 _g_unix_volume_new (GVolumeMonitor *volume_monitor,
110 GUnixMountPoint *mountpoint)
114 if (!(g_unix_mount_point_is_user_mountable (mountpoint) ||
115 g_str_has_prefix (g_unix_mount_point_get_device_path (mountpoint), "/vol/")) ||
116 g_unix_mount_point_is_loopback (mountpoint))
119 volume = g_object_new (G_TYPE_UNIX_VOLUME, NULL);
120 volume->volume_monitor = volume_monitor != NULL ? g_object_ref (volume_monitor) : NULL;
121 volume->mount_path = g_strdup (g_unix_mount_point_get_mount_path (mountpoint));
122 volume->device_path = g_strdup (g_unix_mount_point_get_device_path (mountpoint));
123 volume->can_eject = g_unix_mount_point_guess_can_eject (mountpoint);
125 volume->name = g_unix_mount_point_guess_name (mountpoint);
126 volume->icon = g_unix_mount_point_guess_icon (mountpoint);
127 volume->symbolic_icon = g_unix_mount_point_guess_symbolic_icon (mountpoint);
130 if (strcmp (g_unix_mount_point_get_fs_type (mountpoint), "nfs") == 0)
132 volume->identifier_type = g_strdup (G_VOLUME_IDENTIFIER_KIND_NFS_MOUNT);
133 volume->identifier = g_strdup (volume->device_path);
135 else if (g_str_has_prefix (volume->device_path, "LABEL="))
137 volume->identifier_type = g_strdup (G_VOLUME_IDENTIFIER_KIND_LABEL);
138 volume->identifier = g_strdup (volume->device_path + 6);
140 else if (g_str_has_prefix (volume->device_path, "UUID="))
142 volume->identifier_type = g_strdup (G_VOLUME_IDENTIFIER_KIND_UUID);
143 volume->identifier = g_strdup (volume->device_path + 5);
145 else if (g_path_is_absolute (volume->device_path))
147 volume->identifier_type = g_strdup (G_VOLUME_IDENTIFIER_KIND_UNIX_DEVICE);
148 volume->identifier = g_strdup (volume->device_path);
155 _g_unix_volume_disconnected (GUnixVolume *volume)
159 _g_unix_mount_unset_volume (volume->mount, volume);
160 volume->mount = NULL;
165 _g_unix_volume_set_mount (GUnixVolume *volume,
168 if (volume->mount == mount)
172 _g_unix_mount_unset_volume (volume->mount, volume);
174 volume->mount = mount;
176 /* TODO: Emit changed in idle to avoid locking issues */
177 g_signal_emit_by_name (volume, "changed");
178 if (volume->volume_monitor != NULL)
179 g_signal_emit_by_name (volume->volume_monitor, "volume-changed", volume);
183 _g_unix_volume_unset_mount (GUnixVolume *volume,
186 if (volume->mount == mount)
188 volume->mount = NULL;
189 /* TODO: Emit changed in idle to avoid locking issues */
190 g_signal_emit_by_name (volume, "changed");
191 if (volume->volume_monitor != NULL)
192 g_signal_emit_by_name (volume->volume_monitor, "volume-changed", volume);
197 g_unix_volume_get_icon (GVolume *volume)
199 GUnixVolume *unix_volume = G_UNIX_VOLUME (volume);
200 return g_object_ref (unix_volume->icon);
204 g_unix_volume_get_symbolic_icon (GVolume *volume)
206 GUnixVolume *unix_volume = G_UNIX_VOLUME (volume);
207 return g_object_ref (unix_volume->symbolic_icon);
211 g_unix_volume_get_name (GVolume *volume)
213 GUnixVolume *unix_volume = G_UNIX_VOLUME (volume);
214 return g_strdup (unix_volume->name);
218 g_unix_volume_get_uuid (GVolume *volume)
224 g_unix_volume_can_mount (GVolume *volume)
230 g_unix_volume_can_eject (GVolume *volume)
232 GUnixVolume *unix_volume = G_UNIX_VOLUME (volume);
233 return unix_volume->can_eject;
237 g_unix_volume_should_automount (GVolume *volume)
239 /* We automount all local volumes because we don't even
240 * make the internal stuff visible
246 g_unix_volume_get_drive (GVolume *volume)
252 g_unix_volume_get_mount (GVolume *volume)
254 GUnixVolume *unix_volume = G_UNIX_VOLUME (volume);
256 if (unix_volume->mount != NULL)
257 return g_object_ref (G_MOUNT (unix_volume->mount));
264 _g_unix_volume_has_mount_path (GUnixVolume *volume,
265 const char *mount_path)
267 return strcmp (volume->mount_path, mount_path) == 0;
271 eject_mount_done (GObject *source,
272 GAsyncResult *result,
275 GSubprocess *subprocess = G_SUBPROCESS (source);
276 GTask *task = user_data;
277 GError *error = NULL;
279 GUnixVolume *unix_volume;
281 if (!g_subprocess_communicate_utf8_finish (subprocess, result, NULL, &stderr_str, &error))
283 g_task_return_error (task, error);
284 g_error_free (error);
286 else /* successful communication */
288 if (!g_subprocess_get_successful (subprocess))
289 /* ...but bad exit code */
290 g_task_return_new_error_literal (task, G_IO_ERROR, G_IO_ERROR_FAILED, stderr_str);
293 /* ...and successful exit code */
294 unix_volume = G_UNIX_VOLUME (g_task_get_source_object (task));
295 _g_unix_volume_monitor_update (G_UNIX_VOLUME_MONITOR (unix_volume->volume_monitor));
296 g_task_return_boolean (task, TRUE);
302 g_object_unref (task);
306 eject_mount_do (GVolume *volume,
307 GCancellable *cancellable,
308 GAsyncReadyCallback callback,
310 const gchar * const *argv,
311 const gchar *task_name)
313 GSubprocess *subprocess;
314 GError *error = NULL;
317 task = g_task_new (volume, cancellable, callback, user_data);
318 g_task_set_source_tag (task, eject_mount_do);
319 g_task_set_name (task, task_name);
321 if (g_task_return_error_if_cancelled (task))
323 g_object_unref (task);
327 subprocess = g_subprocess_newv (argv, G_SUBPROCESS_FLAGS_STDOUT_SILENCE | G_SUBPROCESS_FLAGS_STDERR_PIPE, &error);
328 g_assert_no_error (error);
330 g_subprocess_communicate_utf8_async (subprocess, NULL,
331 g_task_get_cancellable (task),
332 eject_mount_done, task);
336 g_unix_volume_mount (GVolume *volume,
337 GMountMountFlags flags,
338 GMountOperation *mount_operation,
339 GCancellable *cancellable,
340 GAsyncReadyCallback callback,
343 GUnixVolume *unix_volume = G_UNIX_VOLUME (volume);
344 const gchar *argv[] = { "mount", NULL, NULL };
346 if (unix_volume->mount_path != NULL)
347 argv[1] = unix_volume->mount_path;
349 argv[1] = unix_volume->device_path;
351 eject_mount_do (volume, cancellable, callback, user_data, argv, "[gio] mount volume");
355 g_unix_volume_mount_finish (GVolume *volume,
356 GAsyncResult *result,
359 g_return_val_if_fail (g_task_is_valid (result, volume), FALSE);
361 return g_task_propagate_boolean (G_TASK (result), error);
365 g_unix_volume_eject (GVolume *volume,
366 GMountUnmountFlags flags,
367 GCancellable *cancellable,
368 GAsyncReadyCallback callback,
371 GUnixVolume *unix_volume = G_UNIX_VOLUME (volume);
372 const gchar *argv[] = { "eject", NULL, NULL };
374 argv[1] = unix_volume->device_path;
376 eject_mount_do (volume, cancellable, callback, user_data, argv, "[gio] eject volume");
380 g_unix_volume_eject_finish (GVolume *volume,
381 GAsyncResult *result,
384 g_return_val_if_fail (g_task_is_valid (result, volume), FALSE);
386 return g_task_propagate_boolean (G_TASK (result), error);
390 g_unix_volume_get_identifier (GVolume *volume,
393 GUnixVolume *unix_volume = G_UNIX_VOLUME (volume);
395 if (unix_volume->identifier_type != NULL &&
396 strcmp (kind, unix_volume->identifier_type) == 0)
397 return g_strdup (unix_volume->identifier);
403 g_unix_volume_enumerate_identifiers (GVolume *volume)
405 GUnixVolume *unix_volume = G_UNIX_VOLUME (volume);
408 if (unix_volume->identifier_type)
410 res = g_new (gchar *, 2);
411 res[0] = g_strdup (unix_volume->identifier_type);
416 res = g_new (gchar *, 1);
424 g_unix_volume_volume_iface_init (GVolumeIface *iface)
426 iface->get_name = g_unix_volume_get_name;
427 iface->get_icon = g_unix_volume_get_icon;
428 iface->get_symbolic_icon = g_unix_volume_get_symbolic_icon;
429 iface->get_uuid = g_unix_volume_get_uuid;
430 iface->get_drive = g_unix_volume_get_drive;
431 iface->get_mount = g_unix_volume_get_mount;
432 iface->can_mount = g_unix_volume_can_mount;
433 iface->can_eject = g_unix_volume_can_eject;
434 iface->should_automount = g_unix_volume_should_automount;
435 iface->mount_fn = g_unix_volume_mount;
436 iface->mount_finish = g_unix_volume_mount_finish;
437 iface->eject = g_unix_volume_eject;
438 iface->eject_finish = g_unix_volume_eject_finish;
439 iface->get_identifier = g_unix_volume_get_identifier;
440 iface->enumerate_identifiers = g_unix_volume_enumerate_identifiers;