Partly revert "gio: Add filename type annotations"
[glib.git] / gio / glocalfileenumerator.c
blob8f0d091e2c55e1fda0245cd2b3863e54c67914cf
1 /* GIO - GLib Input, Output and Streaming Library
2 *
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 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 #include "config.h"
23 #include <glib.h>
24 #include <glocalfileenumerator.h>
25 #include <glocalfileinfo.h>
26 #include <glocalfile.h>
27 #include <gioerror.h>
28 #include <string.h>
29 #include <stdlib.h>
30 #include "glibintl.h"
33 #define CHUNK_SIZE 1000
35 #ifdef G_OS_WIN32
36 #define USE_GDIR
37 #endif
39 #ifndef USE_GDIR
41 #include <sys/types.h>
42 #include <dirent.h>
43 #include <errno.h>
45 typedef struct {
46 char *name;
47 long inode;
48 GFileType type;
49 } DirEntry;
51 #endif
53 struct _GLocalFileEnumerator
55 GFileEnumerator parent;
57 GFileAttributeMatcher *matcher;
58 GFileAttributeMatcher *reduced_matcher;
59 char *filename;
60 char *attributes;
61 GFileQueryInfoFlags flags;
63 gboolean got_parent_info;
64 GLocalParentFileInfo parent_info;
66 #ifdef USE_GDIR
67 GDir *dir;
68 #else
69 DIR *dir;
70 DirEntry *entries;
71 int entries_pos;
72 gboolean at_end;
73 #endif
75 gboolean follow_symlinks;
78 #define g_local_file_enumerator_get_type _g_local_file_enumerator_get_type
79 G_DEFINE_TYPE (GLocalFileEnumerator, g_local_file_enumerator, G_TYPE_FILE_ENUMERATOR);
81 static GFileInfo *g_local_file_enumerator_next_file (GFileEnumerator *enumerator,
82 GCancellable *cancellable,
83 GError **error);
84 static gboolean g_local_file_enumerator_close (GFileEnumerator *enumerator,
85 GCancellable *cancellable,
86 GError **error);
89 static void
90 free_entries (GLocalFileEnumerator *local)
92 #ifndef USE_GDIR
93 int i;
95 if (local->entries != NULL)
97 for (i = 0; local->entries[i].name != NULL; i++)
98 g_free (local->entries[i].name);
100 g_free (local->entries);
102 #endif
105 static void
106 g_local_file_enumerator_finalize (GObject *object)
108 GLocalFileEnumerator *local;
110 local = G_LOCAL_FILE_ENUMERATOR (object);
112 if (local->got_parent_info)
113 _g_local_file_info_free_parent_info (&local->parent_info);
114 g_free (local->filename);
115 g_file_attribute_matcher_unref (local->matcher);
116 g_file_attribute_matcher_unref (local->reduced_matcher);
117 if (local->dir)
119 #ifdef USE_GDIR
120 g_dir_close (local->dir);
121 #else
122 closedir (local->dir);
123 #endif
124 local->dir = NULL;
127 free_entries (local);
129 G_OBJECT_CLASS (g_local_file_enumerator_parent_class)->finalize (object);
133 static void
134 g_local_file_enumerator_class_init (GLocalFileEnumeratorClass *klass)
136 GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
137 GFileEnumeratorClass *enumerator_class = G_FILE_ENUMERATOR_CLASS (klass);
139 gobject_class->finalize = g_local_file_enumerator_finalize;
141 enumerator_class->next_file = g_local_file_enumerator_next_file;
142 enumerator_class->close_fn = g_local_file_enumerator_close;
145 static void
146 g_local_file_enumerator_init (GLocalFileEnumerator *local)
150 #ifdef USE_GDIR
151 static void
152 convert_file_to_io_error (GError **error,
153 GError *file_error)
155 int new_code;
157 if (file_error == NULL)
158 return;
160 new_code = G_IO_ERROR_FAILED;
162 if (file_error->domain == G_FILE_ERROR)
164 switch (file_error->code)
166 case G_FILE_ERROR_NOENT:
167 new_code = G_IO_ERROR_NOT_FOUND;
168 break;
169 case G_FILE_ERROR_ACCES:
170 new_code = G_IO_ERROR_PERMISSION_DENIED;
171 break;
172 case G_FILE_ERROR_NOTDIR:
173 new_code = G_IO_ERROR_NOT_DIRECTORY;
174 break;
175 case G_FILE_ERROR_MFILE:
176 new_code = G_IO_ERROR_TOO_MANY_OPEN_FILES;
177 break;
178 default:
179 break;
183 g_set_error_literal (error, G_IO_ERROR,
184 new_code,
185 file_error->message);
187 #else
188 static GFileAttributeMatcher *
189 g_file_attribute_matcher_subtract_attributes (GFileAttributeMatcher *matcher,
190 const char * attributes)
192 GFileAttributeMatcher *result, *tmp;
194 tmp = g_file_attribute_matcher_new (attributes);
195 result = g_file_attribute_matcher_subtract (matcher, tmp);
196 g_file_attribute_matcher_unref (tmp);
198 return result;
200 #endif
202 GFileEnumerator *
203 _g_local_file_enumerator_new (GLocalFile *file,
204 const char *attributes,
205 GFileQueryInfoFlags flags,
206 GCancellable *cancellable,
207 GError **error)
209 GLocalFileEnumerator *local;
210 char *filename = g_file_get_path (G_FILE (file));
212 #ifdef USE_GDIR
213 GError *dir_error;
214 GDir *dir;
216 dir_error = NULL;
217 dir = g_dir_open (filename, 0, error != NULL ? &dir_error : NULL);
218 if (dir == NULL)
220 if (error != NULL)
222 convert_file_to_io_error (error, dir_error);
223 g_error_free (dir_error);
225 g_free (filename);
226 return NULL;
228 #else
229 DIR *dir;
230 int errsv;
232 dir = opendir (filename);
233 if (dir == NULL)
235 gchar *utf8_filename;
236 errsv = errno;
238 utf8_filename = g_filename_to_utf8 (filename, -1, NULL, NULL, NULL);
239 g_set_error (error, G_IO_ERROR,
240 g_io_error_from_errno (errsv),
241 "Error opening directory '%s': %s",
242 utf8_filename, g_strerror (errsv));
243 g_free (utf8_filename);
244 g_free (filename);
245 return NULL;
248 #endif
250 local = g_object_new (G_TYPE_LOCAL_FILE_ENUMERATOR,
251 "container", file,
252 NULL);
254 local->dir = dir;
255 local->filename = filename;
256 local->matcher = g_file_attribute_matcher_new (attributes);
257 #ifndef USE_GDIR
258 local->reduced_matcher = g_file_attribute_matcher_subtract_attributes (local->matcher,
259 G_LOCAL_FILE_INFO_NOSTAT_ATTRIBUTES","
260 "standard::type");
261 #endif
262 local->flags = flags;
264 return G_FILE_ENUMERATOR (local);
267 #ifndef USE_GDIR
268 static int
269 sort_by_inode (const void *_a, const void *_b)
271 const DirEntry *a, *b;
273 a = _a;
274 b = _b;
275 return a->inode - b->inode;
278 #ifdef HAVE_STRUCT_DIRENT_D_TYPE
279 static GFileType
280 file_type_from_dirent (char d_type)
282 switch (d_type)
284 case DT_BLK:
285 case DT_CHR:
286 case DT_FIFO:
287 case DT_SOCK:
288 return G_FILE_TYPE_SPECIAL;
289 case DT_DIR:
290 return G_FILE_TYPE_DIRECTORY;
291 case DT_LNK:
292 return G_FILE_TYPE_SYMBOLIC_LINK;
293 case DT_REG:
294 return G_FILE_TYPE_REGULAR;
295 case DT_UNKNOWN:
296 default:
297 return G_FILE_TYPE_UNKNOWN;
300 #endif
302 static const char *
303 next_file_helper (GLocalFileEnumerator *local, GFileType *file_type)
305 struct dirent *entry;
306 const char *filename;
307 int i;
309 if (local->at_end)
310 return NULL;
312 if (local->entries == NULL ||
313 (local->entries[local->entries_pos].name == NULL))
315 if (local->entries == NULL)
316 local->entries = g_new (DirEntry, CHUNK_SIZE + 1);
317 else
319 /* Restart by clearing old names */
320 for (i = 0; local->entries[i].name != NULL; i++)
321 g_free (local->entries[i].name);
324 for (i = 0; i < CHUNK_SIZE; i++)
326 entry = readdir (local->dir);
327 while (entry
328 && (0 == strcmp (entry->d_name, ".") ||
329 0 == strcmp (entry->d_name, "..")))
330 entry = readdir (local->dir);
332 if (entry)
334 local->entries[i].name = g_strdup (entry->d_name);
335 local->entries[i].inode = entry->d_ino;
336 #if HAVE_STRUCT_DIRENT_D_TYPE
337 local->entries[i].type = file_type_from_dirent (entry->d_type);
338 #else
339 local->entries[i].type = G_FILE_TYPE_UNKNOWN;
340 #endif
342 else
343 break;
345 local->entries[i].name = NULL;
346 local->entries_pos = 0;
348 qsort (local->entries, i, sizeof (DirEntry), sort_by_inode);
351 filename = local->entries[local->entries_pos].name;
352 if (filename == NULL)
353 local->at_end = TRUE;
355 *file_type = local->entries[local->entries_pos].type;
357 local->entries_pos++;
359 return filename;
362 #endif
364 static GFileInfo *
365 g_local_file_enumerator_next_file (GFileEnumerator *enumerator,
366 GCancellable *cancellable,
367 GError **error)
369 GLocalFileEnumerator *local = G_LOCAL_FILE_ENUMERATOR (enumerator);
370 const char *filename;
371 char *path;
372 GFileInfo *info;
373 GError *my_error;
374 GFileType file_type;
376 if (!local->got_parent_info)
378 _g_local_file_info_get_parent_info (local->filename, local->matcher, &local->parent_info);
379 local->got_parent_info = TRUE;
382 next_file:
384 #ifdef USE_GDIR
385 filename = g_dir_read_name (local->dir);
386 file_type = G_FILE_TYPE_UNKNOWN;
387 #else
388 filename = next_file_helper (local, &file_type);
389 #endif
391 if (filename == NULL)
392 return NULL;
394 my_error = NULL;
395 path = g_build_filename (local->filename, filename, NULL);
396 if (file_type == G_FILE_TYPE_UNKNOWN ||
397 (file_type == G_FILE_TYPE_SYMBOLIC_LINK && !(local->flags & G_FILE_QUERY_INFO_NOFOLLOW_SYMLINKS)))
399 info = _g_local_file_info_get (filename, path,
400 local->matcher,
401 local->flags,
402 &local->parent_info,
403 &my_error);
405 else
407 info = _g_local_file_info_get (filename, path,
408 local->reduced_matcher,
409 local->flags,
410 &local->parent_info,
411 &my_error);
412 if (info)
414 _g_local_file_info_get_nostat (info, filename, path, local->matcher);
415 g_file_info_set_file_type (info, file_type);
416 if (file_type == G_FILE_TYPE_SYMBOLIC_LINK)
417 g_file_info_set_is_symlink (info, TRUE);
420 g_free (path);
422 if (info == NULL)
424 /* Failed to get info */
425 /* If the file does not exist there might have been a race where
426 * the file was removed between the readdir and the stat, so we
427 * ignore the file. */
428 if (g_error_matches (my_error, G_IO_ERROR, G_IO_ERROR_NOT_FOUND))
430 g_error_free (my_error);
431 goto next_file;
433 else
434 g_propagate_error (error, my_error);
437 return info;
440 static gboolean
441 g_local_file_enumerator_close (GFileEnumerator *enumerator,
442 GCancellable *cancellable,
443 GError **error)
445 GLocalFileEnumerator *local = G_LOCAL_FILE_ENUMERATOR (enumerator);
447 if (local->dir)
449 #ifdef USE_GDIR
450 g_dir_close (local->dir);
451 #else
452 closedir (local->dir);
453 #endif
454 local->dir = NULL;
457 return TRUE;