1 /* GIO - GLib Input, Output and Streaming Library
3 * Copyright (C) 2006-2007 Red Hat, Inc.
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General
16 * Public License along with this library; if not, see <http://www.gnu.org/licenses/>.
18 * Author: Alexander Larsson <alexl@redhat.com>
19 * David Zeuthen <davidz@redhat.com>
25 #include "gthemedicon.h"
26 #include "gasyncresult.h"
33 * @short_description: Drive management
36 * #GDrive - this represent a piece of hardware connected to the machine.
37 * It's generally only created for removable hardware or hardware with
40 * #GDrive is a container class for #GVolume objects that stem from
41 * the same piece of media. As such, #GDrive abstracts a drive with
42 * (or without) removable media and provides operations for querying
43 * whether media is available, determining whether media change is
44 * automatically detected and ejecting the media.
46 * If the #GDrive reports that media isn't automatically detected, one
47 * can poll for media; typically one should not do this periodically
48 * as a poll for media operation is potententially expensive and may
49 * spin up the drive creating noise.
51 * #GDrive supports starting and stopping drives with authentication
52 * support for the former. This can be used to support a diverse set
53 * of use cases including connecting/disconnecting iSCSI devices,
54 * powering down external disk enclosures and starting/stopping
55 * multi-disk devices such as RAID devices. Note that the actual
56 * semantics and side-effects of starting/stopping a #GDrive may vary
57 * according to implementation. To choose the correct verbs in e.g. a
58 * file manager, use g_drive_get_start_stop_type().
60 * For porting from GnomeVFS note that there is no equivalent of
61 * #GDrive in that API.
64 typedef GDriveIface GDriveInterface
;
65 G_DEFINE_INTERFACE(GDrive
, g_drive
, G_TYPE_OBJECT
)
68 g_drive_default_init (GDriveInterface
*iface
)
74 * Emitted when the drive's state has changed.
76 g_signal_new (I_("changed"),
79 G_STRUCT_OFFSET (GDriveIface
, changed
),
81 g_cclosure_marshal_VOID__VOID
,
85 * GDrive::disconnected:
88 * This signal is emitted when the #GDrive have been
89 * disconnected. If the recipient is holding references to the
90 * object they should release them so the object can be
93 g_signal_new (I_("disconnected"),
96 G_STRUCT_OFFSET (GDriveIface
, disconnected
),
98 g_cclosure_marshal_VOID__VOID
,
102 * GDrive::eject-button:
105 * Emitted when the physical eject button (if any) of a drive has
108 g_signal_new (I_("eject-button"),
111 G_STRUCT_OFFSET (GDriveIface
, eject_button
),
113 g_cclosure_marshal_VOID__VOID
,
117 * GDrive::stop-button:
120 * Emitted when the physical stop button (if any) of a drive has
125 g_signal_new (I_("stop-button"),
128 G_STRUCT_OFFSET (GDriveIface
, stop_button
),
130 g_cclosure_marshal_VOID__VOID
,
138 * Gets the name of @drive.
140 * Returns: a string containing @drive's name. The returned
141 * string should be freed when no longer needed.
144 g_drive_get_name (GDrive
*drive
)
148 g_return_val_if_fail (G_IS_DRIVE (drive
), NULL
);
150 iface
= G_DRIVE_GET_IFACE (drive
);
152 return (* iface
->get_name
) (drive
);
159 * Gets the icon for @drive.
161 * Returns: (transfer full): #GIcon for the @drive.
162 * Free the returned object with g_object_unref().
165 g_drive_get_icon (GDrive
*drive
)
169 g_return_val_if_fail (G_IS_DRIVE (drive
), NULL
);
171 iface
= G_DRIVE_GET_IFACE (drive
);
173 return (* iface
->get_icon
) (drive
);
177 * g_drive_get_symbolic_icon:
180 * Gets the icon for @drive.
182 * Returns: (transfer full): symbolic #GIcon for the @drive.
183 * Free the returned object with g_object_unref().
188 g_drive_get_symbolic_icon (GDrive
*drive
)
193 g_return_val_if_fail (G_IS_DRIVE (drive
), NULL
);
195 iface
= G_DRIVE_GET_IFACE (drive
);
197 if (iface
->get_symbolic_icon
!= NULL
)
198 ret
= iface
->get_symbolic_icon (drive
);
200 ret
= g_themed_icon_new_with_default_fallbacks ("drive-removable-media-symbolic");
206 * g_drive_has_volumes:
209 * Check if @drive has any mountable volumes.
211 * Returns: %TRUE if the @drive contains volumes, %FALSE otherwise.
214 g_drive_has_volumes (GDrive
*drive
)
218 g_return_val_if_fail (G_IS_DRIVE (drive
), FALSE
);
220 iface
= G_DRIVE_GET_IFACE (drive
);
222 return (* iface
->has_volumes
) (drive
);
226 * g_drive_get_volumes:
229 * Get a list of mountable volumes for @drive.
231 * The returned list should be freed with g_list_free(), after
232 * its elements have been unreffed with g_object_unref().
234 * Returns: (element-type GVolume) (transfer full): #GList containing any #GVolume objects on the given @drive.
237 g_drive_get_volumes (GDrive
*drive
)
241 g_return_val_if_fail (G_IS_DRIVE (drive
), NULL
);
243 iface
= G_DRIVE_GET_IFACE (drive
);
245 return (* iface
->get_volumes
) (drive
);
249 * g_drive_is_media_check_automatic:
252 * Checks if @drive is capabable of automatically detecting media changes.
254 * Returns: %TRUE if the @drive is capabable of automatically detecting
255 * media changes, %FALSE otherwise.
258 g_drive_is_media_check_automatic (GDrive
*drive
)
262 g_return_val_if_fail (G_IS_DRIVE (drive
), FALSE
);
264 iface
= G_DRIVE_GET_IFACE (drive
);
266 return (* iface
->is_media_check_automatic
) (drive
);
270 * g_drive_is_removable:
273 * Checks if the #GDrive and/or its media is considered removable by the user.
274 * See g_drive_is_media_removable().
276 * Returns: %TRUE if @drive and/or its media is considered removable, %FALSE otherwise.
281 g_drive_is_removable (GDrive
*drive
)
285 g_return_val_if_fail (G_IS_DRIVE (drive
), FALSE
);
287 iface
= G_DRIVE_GET_IFACE (drive
);
288 if (iface
->is_removable
!= NULL
)
289 return iface
->is_removable (drive
);
295 * g_drive_is_media_removable:
298 * Checks if the @drive supports removable media.
300 * Returns: %TRUE if @drive supports removable media, %FALSE otherwise.
303 g_drive_is_media_removable (GDrive
*drive
)
307 g_return_val_if_fail (G_IS_DRIVE (drive
), FALSE
);
309 iface
= G_DRIVE_GET_IFACE (drive
);
311 return (* iface
->is_media_removable
) (drive
);
318 * Checks if the @drive has media. Note that the OS may not be polling
319 * the drive for media changes; see g_drive_is_media_check_automatic()
322 * Returns: %TRUE if @drive has media, %FALSE otherwise.
325 g_drive_has_media (GDrive
*drive
)
329 g_return_val_if_fail (G_IS_DRIVE (drive
), FALSE
);
331 iface
= G_DRIVE_GET_IFACE (drive
);
333 return (* iface
->has_media
) (drive
);
340 * Checks if a drive can be ejected.
342 * Returns: %TRUE if the @drive can be ejected, %FALSE otherwise.
345 g_drive_can_eject (GDrive
*drive
)
349 g_return_val_if_fail (G_IS_DRIVE (drive
), FALSE
);
351 iface
= G_DRIVE_GET_IFACE (drive
);
353 if (iface
->can_eject
== NULL
)
356 return (* iface
->can_eject
) (drive
);
360 * g_drive_can_poll_for_media:
363 * Checks if a drive can be polled for media changes.
365 * Returns: %TRUE if the @drive can be polled for media changes,
369 g_drive_can_poll_for_media (GDrive
*drive
)
373 g_return_val_if_fail (G_IS_DRIVE (drive
), FALSE
);
375 iface
= G_DRIVE_GET_IFACE (drive
);
377 if (iface
->poll_for_media
== NULL
)
380 return (* iface
->can_poll_for_media
) (drive
);
386 * @flags: flags affecting the unmount if required for eject
387 * @cancellable: (nullable): optional #GCancellable object, %NULL to ignore.
388 * @callback: (nullable): a #GAsyncReadyCallback, or %NULL.
389 * @user_data: user data to pass to @callback
391 * Asynchronously ejects a drive.
393 * When the operation is finished, @callback will be called.
394 * You can then call g_drive_eject_finish() to obtain the
395 * result of the operation.
397 * Deprecated: 2.22: Use g_drive_eject_with_operation() instead.
400 g_drive_eject (GDrive
*drive
,
401 GMountUnmountFlags flags
,
402 GCancellable
*cancellable
,
403 GAsyncReadyCallback callback
,
408 g_return_if_fail (G_IS_DRIVE (drive
));
410 iface
= G_DRIVE_GET_IFACE (drive
);
412 if (iface
->eject
== NULL
)
414 g_task_report_new_error (drive
, callback
, user_data
,
415 g_drive_eject_with_operation
,
416 G_IO_ERROR
, G_IO_ERROR_NOT_SUPPORTED
,
417 _("drive doesn’t implement eject"));
421 (* iface
->eject
) (drive
, flags
, cancellable
, callback
, user_data
);
425 * g_drive_eject_finish:
427 * @result: a #GAsyncResult.
428 * @error: a #GError, or %NULL
430 * Finishes ejecting a drive.
432 * Returns: %TRUE if the drive has been ejected successfully,
435 * Deprecated: 2.22: Use g_drive_eject_with_operation_finish() instead.
438 g_drive_eject_finish (GDrive
*drive
,
439 GAsyncResult
*result
,
444 g_return_val_if_fail (G_IS_DRIVE (drive
), FALSE
);
445 g_return_val_if_fail (G_IS_ASYNC_RESULT (result
), FALSE
);
447 if (g_async_result_legacy_propagate_error (result
, error
))
449 else if (g_async_result_is_tagged (result
, g_drive_eject_with_operation
))
450 return g_task_propagate_boolean (G_TASK (result
), error
);
452 iface
= G_DRIVE_GET_IFACE (drive
);
454 return (* iface
->eject_finish
) (drive
, result
, error
);
458 * g_drive_eject_with_operation:
460 * @flags: flags affecting the unmount if required for eject
461 * @mount_operation: (nullable): a #GMountOperation or %NULL to avoid
463 * @cancellable: (nullable): optional #GCancellable object, %NULL to ignore.
464 * @callback: (nullable): a #GAsyncReadyCallback, or %NULL.
465 * @user_data: user data passed to @callback.
467 * Ejects a drive. This is an asynchronous operation, and is
468 * finished by calling g_drive_eject_with_operation_finish() with the @drive
469 * and #GAsyncResult data returned in the @callback.
474 g_drive_eject_with_operation (GDrive
*drive
,
475 GMountUnmountFlags flags
,
476 GMountOperation
*mount_operation
,
477 GCancellable
*cancellable
,
478 GAsyncReadyCallback callback
,
483 g_return_if_fail (G_IS_DRIVE (drive
));
485 iface
= G_DRIVE_GET_IFACE (drive
);
487 if (iface
->eject
== NULL
&& iface
->eject_with_operation
== NULL
)
489 g_task_report_new_error (drive
, callback
, user_data
,
490 g_drive_eject_with_operation
,
491 G_IO_ERROR
, G_IO_ERROR_NOT_SUPPORTED
,
492 /* Translators: This is an error
493 * message for drive objects that
494 * don't implement any of eject or eject_with_operation. */
495 _("drive doesn’t implement eject or eject_with_operation"));
499 if (iface
->eject_with_operation
!= NULL
)
500 (* iface
->eject_with_operation
) (drive
, flags
, mount_operation
, cancellable
, callback
, user_data
);
502 (* iface
->eject
) (drive
, flags
, cancellable
, callback
, user_data
);
506 * g_drive_eject_with_operation_finish:
508 * @result: a #GAsyncResult.
509 * @error: a #GError location to store the error occurring, or %NULL to
512 * Finishes ejecting a drive. If any errors occurred during the operation,
513 * @error will be set to contain the errors and %FALSE will be returned.
515 * Returns: %TRUE if the drive was successfully ejected. %FALSE otherwise.
520 g_drive_eject_with_operation_finish (GDrive
*drive
,
521 GAsyncResult
*result
,
526 g_return_val_if_fail (G_IS_DRIVE (drive
), FALSE
);
527 g_return_val_if_fail (G_IS_ASYNC_RESULT (result
), FALSE
);
529 if (g_async_result_legacy_propagate_error (result
, error
))
531 else if (g_async_result_is_tagged (result
, g_drive_eject_with_operation
))
532 return g_task_propagate_boolean (G_TASK (result
), error
);
534 iface
= G_DRIVE_GET_IFACE (drive
);
535 if (iface
->eject_with_operation_finish
!= NULL
)
536 return (* iface
->eject_with_operation_finish
) (drive
, result
, error
);
538 return (* iface
->eject_finish
) (drive
, result
, error
);
542 * g_drive_poll_for_media:
544 * @cancellable: (nullable): optional #GCancellable object, %NULL to ignore.
545 * @callback: (nullable): a #GAsyncReadyCallback, or %NULL.
546 * @user_data: user data to pass to @callback
548 * Asynchronously polls @drive to see if media has been inserted or removed.
550 * When the operation is finished, @callback will be called.
551 * You can then call g_drive_poll_for_media_finish() to obtain the
552 * result of the operation.
555 g_drive_poll_for_media (GDrive
*drive
,
556 GCancellable
*cancellable
,
557 GAsyncReadyCallback callback
,
562 g_return_if_fail (G_IS_DRIVE (drive
));
564 iface
= G_DRIVE_GET_IFACE (drive
);
566 if (iface
->poll_for_media
== NULL
)
568 g_task_report_new_error (drive
, callback
, user_data
,
569 g_drive_poll_for_media
,
570 G_IO_ERROR
, G_IO_ERROR_NOT_SUPPORTED
,
571 _("drive doesn’t implement polling for media"));
575 (* iface
->poll_for_media
) (drive
, cancellable
, callback
, user_data
);
579 * g_drive_poll_for_media_finish:
581 * @result: a #GAsyncResult.
582 * @error: a #GError, or %NULL
584 * Finishes an operation started with g_drive_poll_for_media() on a drive.
586 * Returns: %TRUE if the drive has been poll_for_mediaed successfully,
590 g_drive_poll_for_media_finish (GDrive
*drive
,
591 GAsyncResult
*result
,
596 g_return_val_if_fail (G_IS_DRIVE (drive
), FALSE
);
597 g_return_val_if_fail (G_IS_ASYNC_RESULT (result
), FALSE
);
599 if (g_async_result_legacy_propagate_error (result
, error
))
601 else if (g_async_result_is_tagged (result
, g_drive_poll_for_media
))
602 return g_task_propagate_boolean (G_TASK (result
), error
);
604 iface
= G_DRIVE_GET_IFACE (drive
);
606 return (* iface
->poll_for_media_finish
) (drive
, result
, error
);
610 * g_drive_get_identifier:
612 * @kind: the kind of identifier to return
614 * Gets the identifier of the given kind for @drive. The only
615 * identifier currently available is
616 * #G_DRIVE_IDENTIFIER_KIND_UNIX_DEVICE.
618 * Returns: (nullable) (transfer full): a newly allocated string containing the
619 * requested identifier, or %NULL if the #GDrive
620 * doesn't have this kind of identifier.
623 g_drive_get_identifier (GDrive
*drive
,
628 g_return_val_if_fail (G_IS_DRIVE (drive
), NULL
);
629 g_return_val_if_fail (kind
!= NULL
, NULL
);
631 iface
= G_DRIVE_GET_IFACE (drive
);
633 if (iface
->get_identifier
== NULL
)
636 return (* iface
->get_identifier
) (drive
, kind
);
640 * g_drive_enumerate_identifiers:
643 * Gets the kinds of identifiers that @drive has.
644 * Use g_drive_get_identifier() to obtain the identifiers
647 * Returns: (transfer full) (array zero-terminated=1): a %NULL-terminated
648 * array of strings containing kinds of identifiers. Use g_strfreev()
652 g_drive_enumerate_identifiers (GDrive
*drive
)
656 g_return_val_if_fail (G_IS_DRIVE (drive
), NULL
);
657 iface
= G_DRIVE_GET_IFACE (drive
);
659 if (iface
->enumerate_identifiers
== NULL
)
662 return (* iface
->enumerate_identifiers
) (drive
);
666 * g_drive_get_start_stop_type:
669 * Gets a hint about how a drive can be started/stopped.
671 * Returns: A value from the #GDriveStartStopType enumeration.
676 g_drive_get_start_stop_type (GDrive
*drive
)
680 g_return_val_if_fail (G_IS_DRIVE (drive
), FALSE
);
682 iface
= G_DRIVE_GET_IFACE (drive
);
684 if (iface
->get_start_stop_type
== NULL
)
685 return G_DRIVE_START_STOP_TYPE_UNKNOWN
;
687 return (* iface
->get_start_stop_type
) (drive
);
695 * Checks if a drive can be started.
697 * Returns: %TRUE if the @drive can be started, %FALSE otherwise.
702 g_drive_can_start (GDrive
*drive
)
706 g_return_val_if_fail (G_IS_DRIVE (drive
), FALSE
);
708 iface
= G_DRIVE_GET_IFACE (drive
);
710 if (iface
->can_start
== NULL
)
713 return (* iface
->can_start
) (drive
);
717 * g_drive_can_start_degraded:
720 * Checks if a drive can be started degraded.
722 * Returns: %TRUE if the @drive can be started degraded, %FALSE otherwise.
727 g_drive_can_start_degraded (GDrive
*drive
)
731 g_return_val_if_fail (G_IS_DRIVE (drive
), FALSE
);
733 iface
= G_DRIVE_GET_IFACE (drive
);
735 if (iface
->can_start_degraded
== NULL
)
738 return (* iface
->can_start_degraded
) (drive
);
744 * @flags: flags affecting the start operation.
745 * @mount_operation: (nullable): a #GMountOperation or %NULL to avoid
747 * @cancellable: (nullable): optional #GCancellable object, %NULL to ignore.
748 * @callback: (nullable): a #GAsyncReadyCallback, or %NULL.
749 * @user_data: user data to pass to @callback
751 * Asynchronously starts a drive.
753 * When the operation is finished, @callback will be called.
754 * You can then call g_drive_start_finish() to obtain the
755 * result of the operation.
760 g_drive_start (GDrive
*drive
,
761 GDriveStartFlags flags
,
762 GMountOperation
*mount_operation
,
763 GCancellable
*cancellable
,
764 GAsyncReadyCallback callback
,
769 g_return_if_fail (G_IS_DRIVE (drive
));
771 iface
= G_DRIVE_GET_IFACE (drive
);
773 if (iface
->start
== NULL
)
775 g_task_report_new_error (drive
, callback
, user_data
,
777 G_IO_ERROR
, G_IO_ERROR_NOT_SUPPORTED
,
778 _("drive doesn’t implement start"));
782 (* iface
->start
) (drive
, flags
, mount_operation
, cancellable
, callback
, user_data
);
786 * g_drive_start_finish:
788 * @result: a #GAsyncResult.
789 * @error: a #GError, or %NULL
791 * Finishes starting a drive.
793 * Returns: %TRUE if the drive has been started successfully,
799 g_drive_start_finish (GDrive
*drive
,
800 GAsyncResult
*result
,
805 g_return_val_if_fail (G_IS_DRIVE (drive
), FALSE
);
806 g_return_val_if_fail (G_IS_ASYNC_RESULT (result
), FALSE
);
808 if (g_async_result_legacy_propagate_error (result
, error
))
810 else if (g_async_result_is_tagged (result
, g_drive_start
))
811 return g_task_propagate_boolean (G_TASK (result
), error
);
813 iface
= G_DRIVE_GET_IFACE (drive
);
815 return (* iface
->start_finish
) (drive
, result
, error
);
822 * Checks if a drive can be stopped.
824 * Returns: %TRUE if the @drive can be stopped, %FALSE otherwise.
829 g_drive_can_stop (GDrive
*drive
)
833 g_return_val_if_fail (G_IS_DRIVE (drive
), FALSE
);
835 iface
= G_DRIVE_GET_IFACE (drive
);
837 if (iface
->can_stop
== NULL
)
840 return (* iface
->can_stop
) (drive
);
846 * @flags: flags affecting the unmount if required for stopping.
847 * @mount_operation: (nullable): a #GMountOperation or %NULL to avoid
849 * @cancellable: (nullable): optional #GCancellable object, %NULL to ignore.
850 * @callback: (nullable): a #GAsyncReadyCallback, or %NULL.
851 * @user_data: user data to pass to @callback
853 * Asynchronously stops a drive.
855 * When the operation is finished, @callback will be called.
856 * You can then call g_drive_stop_finish() to obtain the
857 * result of the operation.
862 g_drive_stop (GDrive
*drive
,
863 GMountUnmountFlags flags
,
864 GMountOperation
*mount_operation
,
865 GCancellable
*cancellable
,
866 GAsyncReadyCallback callback
,
871 g_return_if_fail (G_IS_DRIVE (drive
));
873 iface
= G_DRIVE_GET_IFACE (drive
);
875 if (iface
->stop
== NULL
)
877 g_task_report_new_error (drive
, callback
, user_data
,
879 G_IO_ERROR
, G_IO_ERROR_NOT_SUPPORTED
,
880 _("drive doesn’t implement stop"));
884 (* iface
->stop
) (drive
, flags
, mount_operation
, cancellable
, callback
, user_data
);
888 * g_drive_stop_finish:
890 * @result: a #GAsyncResult.
891 * @error: a #GError, or %NULL
893 * Finishes stopping a drive.
895 * Returns: %TRUE if the drive has been stopped successfully,
901 g_drive_stop_finish (GDrive
*drive
,
902 GAsyncResult
*result
,
907 g_return_val_if_fail (G_IS_DRIVE (drive
), FALSE
);
908 g_return_val_if_fail (G_IS_ASYNC_RESULT (result
), FALSE
);
910 if (g_async_result_legacy_propagate_error (result
, error
))
912 else if (g_async_result_is_tagged (result
, g_drive_start
))
913 return g_task_propagate_boolean (G_TASK (result
), error
);
915 iface
= G_DRIVE_GET_IFACE (drive
);
917 return (* iface
->stop_finish
) (drive
, result
, error
);
921 * g_drive_get_sort_key:
924 * Gets the sort key for @drive, if any.
926 * Returns: (nullable): Sorting key for @drive or %NULL if no such key is available.
931 g_drive_get_sort_key (GDrive
*drive
)
933 const gchar
*ret
= NULL
;
936 g_return_val_if_fail (G_IS_DRIVE (drive
), NULL
);
938 iface
= G_DRIVE_GET_IFACE (drive
);
939 if (iface
->get_sort_key
!= NULL
)
940 ret
= iface
->get_sort_key (drive
);