gvfs.h 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  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_VFS_H__
  21. #define __G_VFS_H__
  22. #if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION)
  23. #error "Only <gio/gio.h> can be included directly."
  24. #endif
  25. #include <gio/giotypes.h>
  26. G_BEGIN_DECLS
  27. #define G_TYPE_VFS (g_vfs_get_type ())
  28. #define G_VFS(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_VFS, GVfs))
  29. #define G_VFS_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), G_TYPE_VFS, GVfsClass))
  30. #define G_VFS_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), G_TYPE_VFS, GVfsClass))
  31. #define G_IS_VFS(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_VFS))
  32. #define G_IS_VFS_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_VFS))
  33. /**
  34. * G_VFS_EXTENSION_POINT_NAME:
  35. *
  36. * Extension point for #GVfs functionality.
  37. * See [Extending GIO][extending-gio].
  38. */
  39. #define G_VFS_EXTENSION_POINT_NAME "gio-vfs"
  40. /**
  41. * GVfs:
  42. *
  43. * Virtual File System object.
  44. **/
  45. typedef struct _GVfsClass GVfsClass;
  46. struct _GVfs
  47. {
  48. GObject parent_instance;
  49. };
  50. struct _GVfsClass
  51. {
  52. GObjectClass parent_class;
  53. /* Virtual Table */
  54. gboolean (* is_active) (GVfs *vfs);
  55. GFile * (* get_file_for_path) (GVfs *vfs,
  56. const char *path);
  57. GFile * (* get_file_for_uri) (GVfs *vfs,
  58. const char *uri);
  59. const gchar * const * (* get_supported_uri_schemes) (GVfs *vfs);
  60. GFile * (* parse_name) (GVfs *vfs,
  61. const char *parse_name);
  62. /*< private >*/
  63. void (* local_file_add_info) (GVfs *vfs,
  64. const char *filename,
  65. guint64 device,
  66. GFileAttributeMatcher *attribute_matcher,
  67. GFileInfo *info,
  68. GCancellable *cancellable,
  69. gpointer *extra_data,
  70. GDestroyNotify *free_extra_data);
  71. void (* add_writable_namespaces) (GVfs *vfs,
  72. GFileAttributeInfoList *list);
  73. gboolean (* local_file_set_attributes) (GVfs *vfs,
  74. const char *filename,
  75. GFileInfo *info,
  76. GFileQueryInfoFlags flags,
  77. GCancellable *cancellable,
  78. GError **error);
  79. void (* local_file_removed) (GVfs *vfs,
  80. const char *filename);
  81. void (* local_file_moved) (GVfs *vfs,
  82. const char *source,
  83. const char *dest);
  84. GIcon * (* deserialize_icon) (GVfs *vfs,
  85. GVariant *value);
  86. /* Padding for future expansion */
  87. void (*_g_reserved1) (void);
  88. void (*_g_reserved2) (void);
  89. void (*_g_reserved3) (void);
  90. void (*_g_reserved4) (void);
  91. void (*_g_reserved5) (void);
  92. void (*_g_reserved6) (void);
  93. };
  94. GLIB_AVAILABLE_IN_ALL
  95. GType g_vfs_get_type (void) G_GNUC_CONST;
  96. GLIB_AVAILABLE_IN_ALL
  97. gboolean g_vfs_is_active (GVfs *vfs);
  98. GLIB_AVAILABLE_IN_ALL
  99. GFile * g_vfs_get_file_for_path (GVfs *vfs,
  100. const char *path);
  101. GLIB_AVAILABLE_IN_ALL
  102. GFile * g_vfs_get_file_for_uri (GVfs *vfs,
  103. const char *uri);
  104. GLIB_AVAILABLE_IN_ALL
  105. const gchar* const * g_vfs_get_supported_uri_schemes (GVfs *vfs);
  106. GLIB_AVAILABLE_IN_ALL
  107. GFile * g_vfs_parse_name (GVfs *vfs,
  108. const char *parse_name);
  109. GLIB_AVAILABLE_IN_ALL
  110. GVfs * g_vfs_get_default (void);
  111. GLIB_AVAILABLE_IN_ALL
  112. GVfs * g_vfs_get_local (void);
  113. G_END_DECLS
  114. #endif /* __G_VFS_H__ */