gunixmounts.h 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. /* GIO - GLib Input, Output and Streaming Library
  2. *
  3. * Copyright (C) 2006-2007 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, see <http://www.gnu.org/licenses/>.
  17. *
  18. * Author: Alexander Larsson <alexl@redhat.com>
  19. */
  20. #ifndef __G_UNIX_MOUNTS_H__
  21. #define __G_UNIX_MOUNTS_H__
  22. #include <gio/gio.h>
  23. G_BEGIN_DECLS
  24. /**
  25. * GUnixMountEntry:
  26. *
  27. * Defines a Unix mount entry (e.g. <filename>/media/cdrom</filename>).
  28. * This corresponds roughly to a mtab entry.
  29. **/
  30. typedef struct _GUnixMountEntry GUnixMountEntry;
  31. /**
  32. * GUnixMountPoint:
  33. *
  34. * Defines a Unix mount point (e.g. <filename>/dev</filename>).
  35. * This corresponds roughly to a fstab entry.
  36. **/
  37. typedef struct _GUnixMountPoint GUnixMountPoint;
  38. /**
  39. * GUnixMountMonitor:
  40. *
  41. * Watches #GUnixMounts for changes.
  42. **/
  43. typedef struct _GUnixMountMonitor GUnixMountMonitor;
  44. typedef struct _GUnixMountMonitorClass GUnixMountMonitorClass;
  45. #define G_TYPE_UNIX_MOUNT_MONITOR (g_unix_mount_monitor_get_type ())
  46. #define G_UNIX_MOUNT_MONITOR(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_UNIX_MOUNT_MONITOR, GUnixMountMonitor))
  47. #define G_UNIX_MOUNT_MONITOR_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), G_TYPE_UNIX_MOUNT_MONITOR, GUnixMountMonitorClass))
  48. #define G_IS_UNIX_MOUNT_MONITOR(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_UNIX_MOUNT_MONITOR))
  49. #define G_IS_UNIX_MOUNT_MONITOR_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_UNIX_MOUNT_MONITOR))
  50. G_DEFINE_AUTOPTR_CLEANUP_FUNC(GUnixMountMonitor, g_object_unref)
  51. GLIB_AVAILABLE_IN_ALL
  52. void g_unix_mount_free (GUnixMountEntry *mount_entry);
  53. GLIB_AVAILABLE_IN_ALL
  54. void g_unix_mount_point_free (GUnixMountPoint *mount_point);
  55. GLIB_AVAILABLE_IN_ALL
  56. gint g_unix_mount_compare (GUnixMountEntry *mount1,
  57. GUnixMountEntry *mount2);
  58. GLIB_AVAILABLE_IN_ALL
  59. const char * g_unix_mount_get_mount_path (GUnixMountEntry *mount_entry);
  60. GLIB_AVAILABLE_IN_ALL
  61. const char * g_unix_mount_get_device_path (GUnixMountEntry *mount_entry);
  62. GLIB_AVAILABLE_IN_ALL
  63. const char * g_unix_mount_get_fs_type (GUnixMountEntry *mount_entry);
  64. GLIB_AVAILABLE_IN_ALL
  65. gboolean g_unix_mount_is_readonly (GUnixMountEntry *mount_entry);
  66. GLIB_AVAILABLE_IN_ALL
  67. gboolean g_unix_mount_is_system_internal (GUnixMountEntry *mount_entry);
  68. GLIB_AVAILABLE_IN_ALL
  69. gboolean g_unix_mount_guess_can_eject (GUnixMountEntry *mount_entry);
  70. GLIB_AVAILABLE_IN_ALL
  71. gboolean g_unix_mount_guess_should_display (GUnixMountEntry *mount_entry);
  72. GLIB_AVAILABLE_IN_ALL
  73. char * g_unix_mount_guess_name (GUnixMountEntry *mount_entry);
  74. GLIB_AVAILABLE_IN_ALL
  75. GIcon * g_unix_mount_guess_icon (GUnixMountEntry *mount_entry);
  76. GLIB_AVAILABLE_IN_ALL
  77. GIcon * g_unix_mount_guess_symbolic_icon (GUnixMountEntry *mount_entry);
  78. GLIB_AVAILABLE_IN_ALL
  79. gint g_unix_mount_point_compare (GUnixMountPoint *mount1,
  80. GUnixMountPoint *mount2);
  81. GLIB_AVAILABLE_IN_ALL
  82. const char * g_unix_mount_point_get_mount_path (GUnixMountPoint *mount_point);
  83. GLIB_AVAILABLE_IN_ALL
  84. const char * g_unix_mount_point_get_device_path (GUnixMountPoint *mount_point);
  85. GLIB_AVAILABLE_IN_ALL
  86. const char * g_unix_mount_point_get_fs_type (GUnixMountPoint *mount_point);
  87. GLIB_AVAILABLE_IN_2_32
  88. const char * g_unix_mount_point_get_options (GUnixMountPoint *mount_point);
  89. GLIB_AVAILABLE_IN_ALL
  90. gboolean g_unix_mount_point_is_readonly (GUnixMountPoint *mount_point);
  91. GLIB_AVAILABLE_IN_ALL
  92. gboolean g_unix_mount_point_is_user_mountable (GUnixMountPoint *mount_point);
  93. GLIB_AVAILABLE_IN_ALL
  94. gboolean g_unix_mount_point_is_loopback (GUnixMountPoint *mount_point);
  95. GLIB_AVAILABLE_IN_ALL
  96. gboolean g_unix_mount_point_guess_can_eject (GUnixMountPoint *mount_point);
  97. GLIB_AVAILABLE_IN_ALL
  98. char * g_unix_mount_point_guess_name (GUnixMountPoint *mount_point);
  99. GLIB_AVAILABLE_IN_ALL
  100. GIcon * g_unix_mount_point_guess_icon (GUnixMountPoint *mount_point);
  101. GLIB_AVAILABLE_IN_ALL
  102. GIcon * g_unix_mount_point_guess_symbolic_icon (GUnixMountPoint *mount_point);
  103. GLIB_AVAILABLE_IN_ALL
  104. GList * g_unix_mount_points_get (guint64 *time_read);
  105. GLIB_AVAILABLE_IN_ALL
  106. GList * g_unix_mounts_get (guint64 *time_read);
  107. GLIB_AVAILABLE_IN_ALL
  108. GUnixMountEntry *g_unix_mount_at (const char *mount_path,
  109. guint64 *time_read);
  110. GLIB_AVAILABLE_IN_ALL
  111. gboolean g_unix_mounts_changed_since (guint64 time);
  112. GLIB_AVAILABLE_IN_ALL
  113. gboolean g_unix_mount_points_changed_since (guint64 time);
  114. GLIB_AVAILABLE_IN_ALL
  115. GType g_unix_mount_monitor_get_type (void) G_GNUC_CONST;
  116. GLIB_AVAILABLE_IN_2_44
  117. GUnixMountMonitor *g_unix_mount_monitor_get (void);
  118. GLIB_DEPRECATED_IN_2_44_FOR(g_unix_mount_monitor_get)
  119. GUnixMountMonitor *g_unix_mount_monitor_new (void);
  120. GLIB_DEPRECATED_IN_2_44
  121. void g_unix_mount_monitor_set_rate_limit (GUnixMountMonitor *mount_monitor,
  122. int limit_msec);
  123. GLIB_AVAILABLE_IN_ALL
  124. gboolean g_unix_is_mount_path_system_internal (const char *mount_path);
  125. G_END_DECLS
  126. #endif /* __G_UNIX_MOUNTS_H__ */