1 /* GIO - GLib Input, Output and Streaming Library
3 * Copyright (C) 2006-2007 Red Hat, Inc.
5 * SPDX-License-Identifier: LGPL-2.1-or-later
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General
18 * Public License along with this library; if not, see <http://www.gnu.org/licenses/>.
20 * Author: Alexander Larsson <alexl@redhat.com>
23 #ifndef __G_FILE_ENUMERATOR_H__
24 #define __G_FILE_ENUMERATOR_H__
26 #if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION)
27 #error "Only <gio/gio.h> can be included directly."
30 #include <gio/giotypes.h>
34 #define G_TYPE_FILE_ENUMERATOR (g_file_enumerator_get_type ())
35 #define G_FILE_ENUMERATOR(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_FILE_ENUMERATOR, GFileEnumerator))
36 #define G_FILE_ENUMERATOR_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), G_TYPE_FILE_ENUMERATOR, GFileEnumeratorClass))
37 #define G_IS_FILE_ENUMERATOR(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_FILE_ENUMERATOR))
38 #define G_IS_FILE_ENUMERATOR_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_FILE_ENUMERATOR))
39 #define G_FILE_ENUMERATOR_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), G_TYPE_FILE_ENUMERATOR, GFileEnumeratorClass))
41 typedef struct _GFileEnumeratorClass GFileEnumeratorClass;
42 typedef struct _GFileEnumeratorPrivate GFileEnumeratorPrivate;
44 struct _GFileEnumerator
46 GObject parent_instance;
49 GFileEnumeratorPrivate *priv;
52 struct _GFileEnumeratorClass
54 GObjectClass parent_class;
58 GFileInfo * (* next_file) (GFileEnumerator *enumerator,
59 GCancellable *cancellable,
61 gboolean (* close_fn) (GFileEnumerator *enumerator,
62 GCancellable *cancellable,
65 void (* next_files_async) (GFileEnumerator *enumerator,
68 GCancellable *cancellable,
69 GAsyncReadyCallback callback,
71 GList * (* next_files_finish) (GFileEnumerator *enumerator,
74 void (* close_async) (GFileEnumerator *enumerator,
76 GCancellable *cancellable,
77 GAsyncReadyCallback callback,
79 gboolean (* close_finish) (GFileEnumerator *enumerator,
84 /* Padding for future expansion */
85 void (*_g_reserved1) (void);
86 void (*_g_reserved2) (void);
87 void (*_g_reserved3) (void);
88 void (*_g_reserved4) (void);
89 void (*_g_reserved5) (void);
90 void (*_g_reserved6) (void);
91 void (*_g_reserved7) (void);
95 GType g_file_enumerator_get_type (void) G_GNUC_CONST;
98 GFileInfo *g_file_enumerator_next_file (GFileEnumerator *enumerator,
99 GCancellable *cancellable,
102 gboolean g_file_enumerator_close (GFileEnumerator *enumerator,
103 GCancellable *cancellable,
106 void g_file_enumerator_next_files_async (GFileEnumerator *enumerator,
109 GCancellable *cancellable,
110 GAsyncReadyCallback callback,
113 GList * g_file_enumerator_next_files_finish (GFileEnumerator *enumerator,
114 GAsyncResult *result,
117 void g_file_enumerator_close_async (GFileEnumerator *enumerator,
119 GCancellable *cancellable,
120 GAsyncReadyCallback callback,
123 gboolean g_file_enumerator_close_finish (GFileEnumerator *enumerator,
124 GAsyncResult *result,
127 gboolean g_file_enumerator_is_closed (GFileEnumerator *enumerator);
129 gboolean g_file_enumerator_has_pending (GFileEnumerator *enumerator);
131 void g_file_enumerator_set_pending (GFileEnumerator *enumerator,
134 GFile * g_file_enumerator_get_container (GFileEnumerator *enumerator);
135 GIO_AVAILABLE_IN_2_36
136 GFile * g_file_enumerator_get_child (GFileEnumerator *enumerator,
139 GIO_AVAILABLE_IN_2_44
140 gboolean g_file_enumerator_iterate (GFileEnumerator *direnum,
141 GFileInfo **out_info,
143 GCancellable *cancellable,
149 #endif /* __G_FILE_ENUMERATOR_H__ */