Initial commit
[platform/upstream/glib2.0.git] / gio / gmount.h
1 /* GIO - GLib Input, Output and Streaming Library
2  *
3  * Copyright (C) 2006-2008 Red Hat, Inc.
4  *
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.
9  *
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.
14  *
15  * You should have received a copy of the GNU Lesser General
16  * Public License along with this library; if not, write to the
17  * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
18  * Boston, MA 02111-1307, USA.
19  *
20  * Author: Alexander Larsson <alexl@redhat.com>
21  *         David Zeuthen <davidz@redhat.com>
22  */
23
24 #if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION)
25 #error "Only <gio/gio.h> can be included directly."
26 #endif
27
28 #ifndef __G_MOUNT_H__
29 #define __G_MOUNT_H__
30
31 #include <gio/giotypes.h>
32
33 G_BEGIN_DECLS
34
35 #define G_TYPE_MOUNT            (g_mount_get_type ())
36 #define G_MOUNT(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), G_TYPE_MOUNT, GMount))
37 #define G_IS_MOUNT(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), G_TYPE_MOUNT))
38 #define G_MOUNT_GET_IFACE(obj)  (G_TYPE_INSTANCE_GET_INTERFACE ((obj), G_TYPE_MOUNT, GMountIface))
39
40 typedef struct _GMountIface    GMountIface;
41
42 /**
43  * GMountIface:
44  * @g_iface: The parent interface.
45  * @changed: Changed signal that is emitted when the mount's state has changed.
46  * @unmounted: The unmounted signal that is emitted when the #GMount have been unmounted. If the recipient is holding references to the object they should release them so the object can be finalized.
47  * @pre_unmount: The pre_unmout signal that is emitted when the #GMount will soon be emitted. If the recipient is somehow holding the mount open by keeping an open file on it it should close the file.
48  * @get_root: Gets a #GFile to the root directory of the #GMount.
49  * @get_name: Gets a string containing the name of the #GMount.
50  * @get_icon: Gets a #GIcon for the #GMount.
51  * @get_uuid: Gets the UUID for the #GMount. The reference is typically based on the file system UUID for the mount in question and should be considered an opaque string. Returns %NULL if there is no UUID available.
52  * @get_volume: Gets a #GVolume the mount is located on. Returns %NULL if the #GMount is not associated with a #GVolume.
53  * @get_drive: Gets a #GDrive the volume of the mount is located on. Returns %NULL if the #GMount is not associated with a #GDrive or a #GVolume. This is convenience method for getting the #GVolume and using that to get the #GDrive.
54  * @can_unmount: Checks if a #GMount can be unmounted.
55  * @can_eject: Checks if a #GMount can be ejected.
56  * @unmount: Starts unmounting a #GMount.
57  * @unmount_finish: Finishes an unmounting operation.
58  * @eject: Starts ejecting a #GMount.
59  * @eject_finish: Finishes an eject operation.
60  * @remount: Starts remounting a #GMount.
61  * @remount_finish: Finishes a remounting operation.
62  * @guess_content_type: Starts guessing the type of the content of a #GMount.
63  *     See g_mount_guess_content_type() for more information on content
64  *     type guessing. This operation was added in 2.18.
65  * @guess_content_type_finish: Finishes a contenet type guessing operation. Added in 2.18.
66  * @guess_content_type_sync: Synchronous variant of @guess_content_type. Added in 2.18
67  * @unmount_with_operation: Starts unmounting a #GMount using a #GMountOperation. Since 2.22.
68  * @unmount_with_operation_finish: Finishes an unmounting operation using a #GMountOperation. Since 2.22.
69  * @eject_with_operation: Starts ejecting a #GMount using a #GMountOperation. Since 2.22.
70  * @eject_with_operation_finish: Finishes an eject operation using a #GMountOperation. Since 2.22.
71  * @get_default_location: Gets a #GFile indication a start location that can be use as the entry point for this mount. Since 2.24.
72  *
73  * Interface for implementing operations for mounts.
74  **/
75 struct _GMountIface
76 {
77   GTypeInterface g_iface;
78
79   /* signals */
80
81   void        (* changed)                   (GMount              *mount);
82   void        (* unmounted)                 (GMount              *mount);
83
84   /* Virtual Table */
85
86   GFile     * (* get_root)                  (GMount              *mount);
87   char      * (* get_name)                  (GMount              *mount);
88   GIcon     * (* get_icon)                  (GMount              *mount);
89   char      * (* get_uuid)                  (GMount              *mount);
90   GVolume   * (* get_volume)                (GMount              *mount);
91   GDrive    * (* get_drive)                 (GMount              *mount);
92   gboolean    (* can_unmount)               (GMount              *mount);
93   gboolean    (* can_eject)                 (GMount              *mount);
94
95   void        (* unmount)                   (GMount              *mount,
96                                              GMountUnmountFlags   flags,
97                                              GCancellable        *cancellable,
98                                              GAsyncReadyCallback  callback,
99                                              gpointer             user_data);
100   gboolean    (* unmount_finish)            (GMount              *mount,
101                                              GAsyncResult        *result,
102                                              GError             **error);
103
104   void        (* eject)                     (GMount              *mount,
105                                              GMountUnmountFlags   flags,
106                                              GCancellable        *cancellable,
107                                              GAsyncReadyCallback  callback,
108                                              gpointer             user_data);
109   gboolean    (* eject_finish)              (GMount              *mount,
110                                              GAsyncResult        *result,
111                                              GError             **error);
112
113   void        (* remount)                   (GMount              *mount,
114                                              GMountMountFlags     flags,
115                                              GMountOperation     *mount_operation,
116                                              GCancellable        *cancellable,
117                                              GAsyncReadyCallback  callback,
118                                              gpointer             user_data);
119   gboolean    (* remount_finish)            (GMount              *mount,
120                                              GAsyncResult        *result,
121                                              GError             **error);
122
123   void        (* guess_content_type)        (GMount              *mount,
124                                              gboolean             force_rescan,
125                                              GCancellable        *cancellable,
126                                              GAsyncReadyCallback  callback,
127                                              gpointer             user_data);
128   gchar    ** (* guess_content_type_finish) (GMount              *mount,
129                                              GAsyncResult        *result,
130                                              GError             **error);
131   gchar    ** (* guess_content_type_sync)   (GMount              *mount,
132                                              gboolean             force_rescan,
133                                              GCancellable        *cancellable,
134                                              GError             **error);
135
136   /* Signal, not VFunc */
137   void        (* pre_unmount)               (GMount              *mount);
138
139   void        (* unmount_with_operation)    (GMount              *mount,
140                                              GMountUnmountFlags   flags,
141                                              GMountOperation     *mount_operation,
142                                              GCancellable        *cancellable,
143                                              GAsyncReadyCallback  callback,
144                                              gpointer             user_data);
145   gboolean    (* unmount_with_operation_finish) (GMount          *mount,
146                                              GAsyncResult        *result,
147                                              GError             **error);
148
149   void        (* eject_with_operation)      (GMount              *mount,
150                                              GMountUnmountFlags   flags,
151                                              GMountOperation     *mount_operation,
152                                              GCancellable        *cancellable,
153                                              GAsyncReadyCallback  callback,
154                                              gpointer             user_data);
155   gboolean    (* eject_with_operation_finish) (GMount            *mount,
156                                              GAsyncResult        *result,
157                                              GError             **error);
158   GFile     * (* get_default_location)      (GMount              *mount);
159 };
160
161 GType       g_mount_get_type                  (void) G_GNUC_CONST;
162
163 GFile     * g_mount_get_root                  (GMount              *mount);
164 GFile     * g_mount_get_default_location      (GMount              *mount);
165 char      * g_mount_get_name                  (GMount              *mount);
166 GIcon     * g_mount_get_icon                  (GMount              *mount);
167 char      * g_mount_get_uuid                  (GMount              *mount);
168 GVolume   * g_mount_get_volume                (GMount              *mount);
169 GDrive    * g_mount_get_drive                 (GMount              *mount);
170 gboolean    g_mount_can_unmount               (GMount              *mount);
171 gboolean    g_mount_can_eject                 (GMount              *mount);
172
173 #ifndef G_DISABLE_DEPRECATED
174 void        g_mount_unmount                   (GMount              *mount,
175                                                GMountUnmountFlags   flags,
176                                                GCancellable        *cancellable,
177                                                GAsyncReadyCallback  callback,
178                                                gpointer             user_data);
179 gboolean    g_mount_unmount_finish            (GMount              *mount,
180                                                GAsyncResult        *result,
181                                                GError             **error);
182
183 void        g_mount_eject                     (GMount              *mount,
184                                                GMountUnmountFlags   flags,
185                                                GCancellable        *cancellable,
186                                                GAsyncReadyCallback  callback,
187                                                gpointer             user_data);
188 gboolean    g_mount_eject_finish              (GMount              *mount,
189                                                GAsyncResult        *result,
190                                                GError             **error);
191 #endif
192
193 void        g_mount_remount                   (GMount              *mount,
194                                                GMountMountFlags     flags,
195                                                GMountOperation     *mount_operation,
196                                                GCancellable        *cancellable,
197                                                GAsyncReadyCallback  callback,
198                                                gpointer             user_data);
199 gboolean    g_mount_remount_finish            (GMount              *mount,
200                                                GAsyncResult        *result,
201                                                GError             **error);
202
203 void        g_mount_guess_content_type        (GMount              *mount,
204                                                gboolean             force_rescan,
205                                                GCancellable        *cancellable,
206                                                GAsyncReadyCallback  callback,
207                                                gpointer             user_data);
208 gchar    ** g_mount_guess_content_type_finish (GMount              *mount,
209                                                GAsyncResult        *result,
210                                                GError             **error);
211 gchar    ** g_mount_guess_content_type_sync   (GMount              *mount,
212                                                gboolean             force_rescan,
213                                                GCancellable        *cancellable,
214                                                GError             **error);
215
216 gboolean    g_mount_is_shadowed               (GMount              *mount);
217 void        g_mount_shadow                    (GMount              *mount);
218 void        g_mount_unshadow                  (GMount              *mount);
219
220 void        g_mount_unmount_with_operation    (GMount              *mount,
221                                                GMountUnmountFlags   flags,
222                                                GMountOperation     *mount_operation,
223                                                GCancellable        *cancellable,
224                                                GAsyncReadyCallback  callback,
225                                                gpointer             user_data);
226 gboolean    g_mount_unmount_with_operation_finish (GMount          *mount,
227                                                GAsyncResult        *result,
228                                                GError             **error);
229
230 void        g_mount_eject_with_operation      (GMount              *mount,
231                                                GMountUnmountFlags   flags,
232                                                GMountOperation     *mount_operation,
233                                                GCancellable        *cancellable,
234                                                GAsyncReadyCallback  callback,
235                                                gpointer             user_data);
236 gboolean    g_mount_eject_with_operation_finish (GMount            *mount,
237                                                GAsyncResult        *result,
238                                                GError             **error);
239
240 G_END_DECLS
241
242 #endif /* __G_MOUNT_H__ */