gspawn: Make error codes on Windows more specific
[glib.git] / gio / gunixmounts.h
bloba392d497f15b073cc6eec9f8c27ca9688351ba13
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>
21 #ifndef __G_UNIX_MOUNTS_H__
22 #define __G_UNIX_MOUNTS_H__
24 #include <gio/gio.h>
26 G_BEGIN_DECLS
28 /**
29 * GUnixMountEntry:
31 * Defines a Unix mount entry (e.g. <filename>/media/cdrom</filename>).
32 * This corresponds roughly to a mtab entry.
33 **/
34 typedef struct _GUnixMountEntry GUnixMountEntry;
36 #define G_TYPE_UNIX_MOUNT_ENTRY (g_unix_mount_entry_get_type ())
37 GLIB_AVAILABLE_IN_2_54
38 GType g_unix_mount_entry_get_type (void) G_GNUC_CONST;
40 /**
41 * GUnixMountPoint:
43 * Defines a Unix mount point (e.g. <filename>/dev</filename>).
44 * This corresponds roughly to a fstab entry.
45 **/
46 typedef struct _GUnixMountPoint GUnixMountPoint;
48 #define G_TYPE_UNIX_MOUNT_POINT (g_unix_mount_point_get_type ())
49 GLIB_AVAILABLE_IN_2_54
50 GType g_unix_mount_point_get_type (void) G_GNUC_CONST;
52 /**
53 * GUnixMountMonitor:
55 * Watches #GUnixMounts for changes.
56 **/
57 typedef struct _GUnixMountMonitor GUnixMountMonitor;
58 typedef struct _GUnixMountMonitorClass GUnixMountMonitorClass;
60 #define G_TYPE_UNIX_MOUNT_MONITOR (g_unix_mount_monitor_get_type ())
61 #define G_UNIX_MOUNT_MONITOR(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_UNIX_MOUNT_MONITOR, GUnixMountMonitor))
62 #define G_UNIX_MOUNT_MONITOR_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), G_TYPE_UNIX_MOUNT_MONITOR, GUnixMountMonitorClass))
63 #define G_IS_UNIX_MOUNT_MONITOR(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_UNIX_MOUNT_MONITOR))
64 #define G_IS_UNIX_MOUNT_MONITOR_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_UNIX_MOUNT_MONITOR))
65 G_DEFINE_AUTOPTR_CLEANUP_FUNC(GUnixMountMonitor, g_object_unref)
67 GLIB_AVAILABLE_IN_ALL
68 void g_unix_mount_free (GUnixMountEntry *mount_entry);
69 GLIB_AVAILABLE_IN_2_54
70 GUnixMountEntry *g_unix_mount_copy (GUnixMountEntry *mount_entry);
71 GLIB_AVAILABLE_IN_ALL
72 void g_unix_mount_point_free (GUnixMountPoint *mount_point);
73 GLIB_AVAILABLE_IN_2_54
74 GUnixMountPoint *g_unix_mount_point_copy (GUnixMountPoint *mount_point);
75 GLIB_AVAILABLE_IN_ALL
76 gint g_unix_mount_compare (GUnixMountEntry *mount1,
77 GUnixMountEntry *mount2);
78 GLIB_AVAILABLE_IN_ALL
79 const char * g_unix_mount_get_mount_path (GUnixMountEntry *mount_entry);
80 GLIB_AVAILABLE_IN_ALL
81 const char * g_unix_mount_get_device_path (GUnixMountEntry *mount_entry);
82 GLIB_AVAILABLE_IN_ALL
83 const char * g_unix_mount_get_fs_type (GUnixMountEntry *mount_entry);
84 GLIB_AVAILABLE_IN_2_58
85 const char * g_unix_mount_get_options (GUnixMountEntry *mount_entry);
86 GLIB_AVAILABLE_IN_ALL
87 gboolean g_unix_mount_is_readonly (GUnixMountEntry *mount_entry);
88 GLIB_AVAILABLE_IN_ALL
89 gboolean g_unix_mount_is_system_internal (GUnixMountEntry *mount_entry);
90 GLIB_AVAILABLE_IN_ALL
91 gboolean g_unix_mount_guess_can_eject (GUnixMountEntry *mount_entry);
92 GLIB_AVAILABLE_IN_ALL
93 gboolean g_unix_mount_guess_should_display (GUnixMountEntry *mount_entry);
94 GLIB_AVAILABLE_IN_ALL
95 char * g_unix_mount_guess_name (GUnixMountEntry *mount_entry);
96 GLIB_AVAILABLE_IN_ALL
97 GIcon * g_unix_mount_guess_icon (GUnixMountEntry *mount_entry);
98 GLIB_AVAILABLE_IN_ALL
99 GIcon * g_unix_mount_guess_symbolic_icon (GUnixMountEntry *mount_entry);
101 G_DEFINE_AUTOPTR_CLEANUP_FUNC(GUnixMountEntry, g_unix_mount_free)
102 G_DEFINE_AUTOPTR_CLEANUP_FUNC(GUnixMountPoint, g_unix_mount_point_free)
104 GLIB_AVAILABLE_IN_ALL
105 gint g_unix_mount_point_compare (GUnixMountPoint *mount1,
106 GUnixMountPoint *mount2);
107 GLIB_AVAILABLE_IN_ALL
108 const char * g_unix_mount_point_get_mount_path (GUnixMountPoint *mount_point);
109 GLIB_AVAILABLE_IN_ALL
110 const char * g_unix_mount_point_get_device_path (GUnixMountPoint *mount_point);
111 GLIB_AVAILABLE_IN_ALL
112 const char * g_unix_mount_point_get_fs_type (GUnixMountPoint *mount_point);
113 GLIB_AVAILABLE_IN_2_32
114 const char * g_unix_mount_point_get_options (GUnixMountPoint *mount_point);
115 GLIB_AVAILABLE_IN_ALL
116 gboolean g_unix_mount_point_is_readonly (GUnixMountPoint *mount_point);
117 GLIB_AVAILABLE_IN_ALL
118 gboolean g_unix_mount_point_is_user_mountable (GUnixMountPoint *mount_point);
119 GLIB_AVAILABLE_IN_ALL
120 gboolean g_unix_mount_point_is_loopback (GUnixMountPoint *mount_point);
121 GLIB_AVAILABLE_IN_ALL
122 gboolean g_unix_mount_point_guess_can_eject (GUnixMountPoint *mount_point);
123 GLIB_AVAILABLE_IN_ALL
124 char * g_unix_mount_point_guess_name (GUnixMountPoint *mount_point);
125 GLIB_AVAILABLE_IN_ALL
126 GIcon * g_unix_mount_point_guess_icon (GUnixMountPoint *mount_point);
127 GLIB_AVAILABLE_IN_ALL
128 GIcon * g_unix_mount_point_guess_symbolic_icon (GUnixMountPoint *mount_point);
131 GLIB_AVAILABLE_IN_ALL
132 GList * g_unix_mount_points_get (guint64 *time_read);
133 GLIB_AVAILABLE_IN_ALL
134 GList * g_unix_mounts_get (guint64 *time_read);
135 GLIB_AVAILABLE_IN_ALL
136 GUnixMountEntry *g_unix_mount_at (const char *mount_path,
137 guint64 *time_read);
138 GLIB_AVAILABLE_IN_2_52
139 GUnixMountEntry *g_unix_mount_for (const char *file_path,
140 guint64 *time_read);
141 GLIB_AVAILABLE_IN_ALL
142 gboolean g_unix_mounts_changed_since (guint64 time);
143 GLIB_AVAILABLE_IN_ALL
144 gboolean g_unix_mount_points_changed_since (guint64 time);
146 GLIB_AVAILABLE_IN_ALL
147 GType g_unix_mount_monitor_get_type (void) G_GNUC_CONST;
148 GLIB_AVAILABLE_IN_2_44
149 GUnixMountMonitor *g_unix_mount_monitor_get (void);
150 GLIB_DEPRECATED_IN_2_44_FOR(g_unix_mount_monitor_get)
151 GUnixMountMonitor *g_unix_mount_monitor_new (void);
152 GLIB_DEPRECATED_IN_2_44
153 void g_unix_mount_monitor_set_rate_limit (GUnixMountMonitor *mount_monitor,
154 int limit_msec);
156 GLIB_AVAILABLE_IN_ALL
157 gboolean g_unix_is_mount_path_system_internal (const char *mount_path);
158 GLIB_AVAILABLE_IN_2_56
159 gboolean g_unix_is_system_fs_type (const char *fs_type);
160 GLIB_AVAILABLE_IN_2_56
161 gboolean g_unix_is_system_device_path (const char *device_path);
163 G_END_DECLS
165 #endif /* __G_UNIX_MOUNTS_H__ */