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_FILE_ENUMERATOR_H__
22 #define __G_FILE_ENUMERATOR_H__
24 #if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION)
25 #error "Only <gio/gio.h> can be included directly."
28 #include <gio/giotypes.h>
32 #define G_TYPE_FILE_ENUMERATOR (g_file_enumerator_get_type ())
33 #define G_FILE_ENUMERATOR(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_FILE_ENUMERATOR, GFileEnumerator))
34 #define G_FILE_ENUMERATOR_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), G_TYPE_FILE_ENUMERATOR, GFileEnumeratorClass))
35 #define G_IS_FILE_ENUMERATOR(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_FILE_ENUMERATOR))
36 #define G_IS_FILE_ENUMERATOR_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_FILE_ENUMERATOR))
37 #define G_FILE_ENUMERATOR_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), G_TYPE_FILE_ENUMERATOR, GFileEnumeratorClass))
42 * A per matched file iterator.
44 typedef struct _GFileEnumeratorClass GFileEnumeratorClass
;
45 typedef struct _GFileEnumeratorPrivate GFileEnumeratorPrivate
;
47 struct _GFileEnumerator
49 GObject parent_instance
;
52 GFileEnumeratorPrivate
*priv
;
55 struct _GFileEnumeratorClass
57 GObjectClass parent_class
;
61 GFileInfo
* (* next_file
) (GFileEnumerator
*enumerator
,
62 GCancellable
*cancellable
,
64 gboolean (* close_fn
) (GFileEnumerator
*enumerator
,
65 GCancellable
*cancellable
,
68 void (* next_files_async
) (GFileEnumerator
*enumerator
,
71 GCancellable
*cancellable
,
72 GAsyncReadyCallback callback
,
74 GList
* (* next_files_finish
) (GFileEnumerator
*enumerator
,
77 void (* close_async
) (GFileEnumerator
*enumerator
,
79 GCancellable
*cancellable
,
80 GAsyncReadyCallback callback
,
82 gboolean (* close_finish
) (GFileEnumerator
*enumerator
,
87 /* Padding for future expansion */
88 void (*_g_reserved1
) (void);
89 void (*_g_reserved2
) (void);
90 void (*_g_reserved3
) (void);
91 void (*_g_reserved4
) (void);
92 void (*_g_reserved5
) (void);
93 void (*_g_reserved6
) (void);
94 void (*_g_reserved7
) (void);
98 GType
g_file_enumerator_get_type (void) G_GNUC_CONST
;
100 GLIB_AVAILABLE_IN_ALL
101 GFileInfo
*g_file_enumerator_next_file (GFileEnumerator
*enumerator
,
102 GCancellable
*cancellable
,
104 GLIB_AVAILABLE_IN_ALL
105 gboolean
g_file_enumerator_close (GFileEnumerator
*enumerator
,
106 GCancellable
*cancellable
,
108 GLIB_AVAILABLE_IN_ALL
109 void g_file_enumerator_next_files_async (GFileEnumerator
*enumerator
,
112 GCancellable
*cancellable
,
113 GAsyncReadyCallback callback
,
115 GLIB_AVAILABLE_IN_ALL
116 GList
* g_file_enumerator_next_files_finish (GFileEnumerator
*enumerator
,
117 GAsyncResult
*result
,
119 GLIB_AVAILABLE_IN_ALL
120 void g_file_enumerator_close_async (GFileEnumerator
*enumerator
,
122 GCancellable
*cancellable
,
123 GAsyncReadyCallback callback
,
125 GLIB_AVAILABLE_IN_ALL
126 gboolean
g_file_enumerator_close_finish (GFileEnumerator
*enumerator
,
127 GAsyncResult
*result
,
129 GLIB_AVAILABLE_IN_ALL
130 gboolean
g_file_enumerator_is_closed (GFileEnumerator
*enumerator
);
131 GLIB_AVAILABLE_IN_ALL
132 gboolean
g_file_enumerator_has_pending (GFileEnumerator
*enumerator
);
133 GLIB_AVAILABLE_IN_ALL
134 void g_file_enumerator_set_pending (GFileEnumerator
*enumerator
,
136 GLIB_AVAILABLE_IN_ALL
137 GFile
* g_file_enumerator_get_container (GFileEnumerator
*enumerator
);
138 GLIB_AVAILABLE_IN_2_36
139 GFile
* g_file_enumerator_get_child (GFileEnumerator
*enumerator
,
142 GLIB_AVAILABLE_IN_2_44
143 gboolean
g_file_enumerator_iterate (GFileEnumerator
*direnum
,
144 GFileInfo
**out_info
,
146 GCancellable
*cancellable
,
152 #endif /* __G_FILE_ENUMERATOR_H__ */