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 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.
616 * Returns: a newly allocated string containing the
617 * requested identfier, or %NULL if the #GDrive
618 * doesn't have this kind of identifier.
621 g_drive_get_identifier (GDrive
*drive
,
626 g_return_val_if_fail (G_IS_DRIVE (drive
), NULL
);
627 g_return_val_if_fail (kind
!= NULL
, NULL
);
629 iface
= G_DRIVE_GET_IFACE (drive
);
631 if (iface
->get_identifier
== NULL
)
634 return (* iface
->get_identifier
) (drive
, kind
);
638 * g_drive_enumerate_identifiers:
641 * Gets the kinds of identifiers that @drive has.
642 * Use g_drive_get_identifier() to obtain the identifiers
645 * Returns: (transfer full) (array zero-terminated=1): a %NULL-terminated
646 * array of strings containing kinds of identifiers. Use g_strfreev()
650 g_drive_enumerate_identifiers (GDrive
*drive
)
654 g_return_val_if_fail (G_IS_DRIVE (drive
), NULL
);
655 iface
= G_DRIVE_GET_IFACE (drive
);
657 if (iface
->enumerate_identifiers
== NULL
)
660 return (* iface
->enumerate_identifiers
) (drive
);
664 * g_drive_get_start_stop_type:
667 * Gets a hint about how a drive can be started/stopped.
669 * Returns: A value from the #GDriveStartStopType enumeration.
674 g_drive_get_start_stop_type (GDrive
*drive
)
678 g_return_val_if_fail (G_IS_DRIVE (drive
), FALSE
);
680 iface
= G_DRIVE_GET_IFACE (drive
);
682 if (iface
->get_start_stop_type
== NULL
)
683 return G_DRIVE_START_STOP_TYPE_UNKNOWN
;
685 return (* iface
->get_start_stop_type
) (drive
);
693 * Checks if a drive can be started.
695 * Returns: %TRUE if the @drive can be started, %FALSE otherwise.
700 g_drive_can_start (GDrive
*drive
)
704 g_return_val_if_fail (G_IS_DRIVE (drive
), FALSE
);
706 iface
= G_DRIVE_GET_IFACE (drive
);
708 if (iface
->can_start
== NULL
)
711 return (* iface
->can_start
) (drive
);
715 * g_drive_can_start_degraded:
718 * Checks if a drive can be started degraded.
720 * Returns: %TRUE if the @drive can be started degraded, %FALSE otherwise.
725 g_drive_can_start_degraded (GDrive
*drive
)
729 g_return_val_if_fail (G_IS_DRIVE (drive
), FALSE
);
731 iface
= G_DRIVE_GET_IFACE (drive
);
733 if (iface
->can_start_degraded
== NULL
)
736 return (* iface
->can_start_degraded
) (drive
);
742 * @flags: flags affecting the start operation.
743 * @mount_operation: (nullable): a #GMountOperation or %NULL to avoid
745 * @cancellable: (nullable): optional #GCancellable object, %NULL to ignore.
746 * @callback: (nullable): a #GAsyncReadyCallback, or %NULL.
747 * @user_data: user data to pass to @callback
749 * Asynchronously starts a drive.
751 * When the operation is finished, @callback will be called.
752 * You can then call g_drive_start_finish() to obtain the
753 * result of the operation.
758 g_drive_start (GDrive
*drive
,
759 GDriveStartFlags flags
,
760 GMountOperation
*mount_operation
,
761 GCancellable
*cancellable
,
762 GAsyncReadyCallback callback
,
767 g_return_if_fail (G_IS_DRIVE (drive
));
769 iface
= G_DRIVE_GET_IFACE (drive
);
771 if (iface
->start
== NULL
)
773 g_task_report_new_error (drive
, callback
, user_data
,
775 G_IO_ERROR
, G_IO_ERROR_NOT_SUPPORTED
,
776 _("drive doesn’t implement start"));
780 (* iface
->start
) (drive
, flags
, mount_operation
, cancellable
, callback
, user_data
);
784 * g_drive_start_finish:
786 * @result: a #GAsyncResult.
787 * @error: a #GError, or %NULL
789 * Finishes starting a drive.
791 * Returns: %TRUE if the drive has been started successfully,
797 g_drive_start_finish (GDrive
*drive
,
798 GAsyncResult
*result
,
803 g_return_val_if_fail (G_IS_DRIVE (drive
), FALSE
);
804 g_return_val_if_fail (G_IS_ASYNC_RESULT (result
), FALSE
);
806 if (g_async_result_legacy_propagate_error (result
, error
))
808 else if (g_async_result_is_tagged (result
, g_drive_start
))
809 return g_task_propagate_boolean (G_TASK (result
), error
);
811 iface
= G_DRIVE_GET_IFACE (drive
);
813 return (* iface
->start_finish
) (drive
, result
, error
);
820 * Checks if a drive can be stopped.
822 * Returns: %TRUE if the @drive can be stopped, %FALSE otherwise.
827 g_drive_can_stop (GDrive
*drive
)
831 g_return_val_if_fail (G_IS_DRIVE (drive
), FALSE
);
833 iface
= G_DRIVE_GET_IFACE (drive
);
835 if (iface
->can_stop
== NULL
)
838 return (* iface
->can_stop
) (drive
);
844 * @flags: flags affecting the unmount if required for stopping.
845 * @mount_operation: (nullable): a #GMountOperation or %NULL to avoid
847 * @cancellable: (nullable): optional #GCancellable object, %NULL to ignore.
848 * @callback: (nullable): a #GAsyncReadyCallback, or %NULL.
849 * @user_data: user data to pass to @callback
851 * Asynchronously stops a drive.
853 * When the operation is finished, @callback will be called.
854 * You can then call g_drive_stop_finish() to obtain the
855 * result of the operation.
860 g_drive_stop (GDrive
*drive
,
861 GMountUnmountFlags flags
,
862 GMountOperation
*mount_operation
,
863 GCancellable
*cancellable
,
864 GAsyncReadyCallback callback
,
869 g_return_if_fail (G_IS_DRIVE (drive
));
871 iface
= G_DRIVE_GET_IFACE (drive
);
873 if (iface
->stop
== NULL
)
875 g_task_report_new_error (drive
, callback
, user_data
,
877 G_IO_ERROR
, G_IO_ERROR_NOT_SUPPORTED
,
878 _("drive doesn’t implement stop"));
882 (* iface
->stop
) (drive
, flags
, mount_operation
, cancellable
, callback
, user_data
);
886 * g_drive_stop_finish:
888 * @result: a #GAsyncResult.
889 * @error: a #GError, or %NULL
891 * Finishes stopping a drive.
893 * Returns: %TRUE if the drive has been stopped successfully,
899 g_drive_stop_finish (GDrive
*drive
,
900 GAsyncResult
*result
,
905 g_return_val_if_fail (G_IS_DRIVE (drive
), FALSE
);
906 g_return_val_if_fail (G_IS_ASYNC_RESULT (result
), FALSE
);
908 if (g_async_result_legacy_propagate_error (result
, error
))
910 else if (g_async_result_is_tagged (result
, g_drive_start
))
911 return g_task_propagate_boolean (G_TASK (result
), error
);
913 iface
= G_DRIVE_GET_IFACE (drive
);
915 return (* iface
->stop_finish
) (drive
, result
, error
);
919 * g_drive_get_sort_key:
922 * Gets the sort key for @drive, if any.
924 * Returns: Sorting key for @drive or %NULL if no such key is available.
929 g_drive_get_sort_key (GDrive
*drive
)
931 const gchar
*ret
= NULL
;
934 g_return_val_if_fail (G_IS_DRIVE (drive
), NULL
);
936 iface
= G_DRIVE_GET_IFACE (drive
);
937 if (iface
->get_sort_key
!= NULL
)
938 ret
= iface
->get_sort_key (drive
);