Update.
[glibc.git] / dirent / dirent.h
blobe286498f060e7bf0837ebbd065ec7f3d91deb7bb
1 /* Copyright (C) 1991,92,93,94,95,96,97,98 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Library General Public License as
6 published by the Free Software Foundation; either version 2 of the
7 License, or (at your option) any later version.
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Library General Public License for more details.
14 You should have received a copy of the GNU Library General Public
15 License along with the GNU C Library; see the file COPYING.LIB. If not,
16 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 Boston, MA 02111-1307, USA. */
20 * POSIX Standard: 5.1.2 Directory Operations <dirent.h>
23 #ifndef _DIRENT_H
24 #define _DIRENT_H 1
26 #include <features.h>
28 __BEGIN_DECLS
30 #include <bits/types.h>
32 /* This file defines `struct dirent'.
34 It defines the macro `_DIRENT_HAVE_D_NAMLEN' iff there is a `d_namlen'
35 member that gives the length of `d_name'.
37 It defines the macro `_DIRENT_HAVE_D_RECLEN' iff there is a `d_reclen'
38 member that gives the size of the entire directory entry.
40 It defines the macro `_DIRENT_HAVE_D_OFF' iff there is a `d_off'
41 member that gives the file offset of the next directory entry.
43 It defines the macro `_DIRENT_HAVE_D_TYPE' iff there is a `d_type'
44 member that gives the type of the file.
47 #include <bits/dirent.h>
49 #if (defined __USE_BSD || defined __USE_MISC) && !defined d_fileno
50 # define d_ino d_fileno /* Backward compatibility. */
51 #endif
53 /* These macros extract size information from a `struct dirent *'.
54 They may evaluate their argument multiple times, so it must not
55 have side effects. Each of these may involve a relatively costly
56 call to `strlen' on some systems, so these values should be cached.
58 _D_EXACT_NAMLEN (DP) returns the length of DP->d_name, not including
59 its terminating null character.
61 _D_ALLOC_NAMLEN (DP) returns a size at least (_D_EXACT_NAMLEN (DP) + 1);
62 that is, the allocation size needed to hold the DP->d_name string.
63 Use this macro when you don't need the exact length, just an upper bound.
64 This macro is less likely to require calling `strlen' than _D_EXACT_NAMLEN.
67 #ifdef _DIRENT_HAVE_D_NAMLEN
68 # define _D_EXACT_NAMLEN(d) ((d)->d_namlen)
69 # define _D_ALLOC_NAMLEN(d) (_D_EXACT_NAMLEN (d) + 1)
70 #else
71 # define _D_EXACT_NAMLEN(d) (strlen ((d)->d_name))
72 # ifdef _DIRENT_HAVE_D_RECLEN
73 # define _D_ALLOC_NAMLEN(d) (((char *) (d) + (d)->d_reclen) - &(d)->d_name[0])
74 # else
75 # define _D_ALLOC_NAMLEN(d) (sizeof (d)->d_name > 1 ? sizeof (d)->d_name : \
76 _D_EXACT_NAMLEN (d) + 1)
77 # endif
78 #endif
81 #ifdef __USE_BSD
82 /* File types for `d_type'. */
83 enum
85 DT_UNKNOWN = 0,
86 # define DT_UNKNOWN DT_UNKNOWN
87 DT_FIFO = 1,
88 # define DT_FIFO DT_FIFO
89 DT_CHR = 2,
90 # define DT_CHR DT_CHR
91 DT_DIR = 4,
92 # define DT_DIR DT_DIR
93 DT_BLK = 6,
94 # define DT_BLK DT_BLK
95 DT_REG = 8,
96 # define DT_REG DT_REG
97 DT_LNK = 10,
98 # define DT_LNK DT_LNK
99 DT_SOCK = 12
100 # define DT_SOCK DT_SOCK
103 /* Convert between stat structure types and directory types. */
104 # define IFTODT(mode) (((mode) & 0170000) >> 12)
105 # define DTTOIF(dirtype) ((dirtype) << 12)
106 #endif
109 /* This is the data type of directory stream objects.
110 The actual structure is opaque to users. */
111 typedef struct __dirstream DIR;
113 /* Open a directory stream on NAME.
114 Return a DIR stream on the directory, or NULL if it could not be opened. */
115 extern DIR *opendir __P ((__const char *__name));
117 /* Close the directory stream DIRP.
118 Return 0 if successful, -1 if not. */
119 extern int closedir __P ((DIR *__dirp));
121 /* Read a directory entry from DIRP. Return a pointer to a `struct
122 dirent' describing the entry, or NULL for EOF or error. The
123 storage returned may be overwritten by a later readdir call on the
124 same DIR stream.
126 If the Large File Support API is selected we have to use the
127 appropriate interface. */
128 #ifndef __USE_FILE_OFFSET64
129 extern struct dirent *readdir __P ((DIR *__dirp));
130 #else
131 # ifdef __REDIRECT
132 extern struct dirent *__REDIRECT (readdir, __P ((DIR *__dirp)), readdir64);
133 # else
134 # define readdir readdir64
135 # endif
136 #endif
138 #ifdef __USE_LARGEFILE64
139 extern struct dirent64 *readdir64 __P ((DIR *__dirp));
140 #endif
142 #if defined __USE_POSIX || defined __USE_MISC
143 /* Reentrant version of `readdir'. Return in RESULT a pointer to the
144 next entry. */
145 # ifndef __USE_FILE_OFFSET64
146 extern int readdir_r __P ((DIR *__dirp, struct dirent *__entry,
147 struct dirent **__result));
148 # else
149 # ifdef __REDIRECT
150 extern int __REDIRECT (readdir_r, __P ((DIR *__dirp, struct dirent *__entry,
151 struct dirent **__result)),
152 readdir64_r);
153 # else
154 # define readdir_r readdir64_r
155 # endif
156 # endif
158 # ifdef __USE_LARGEFILE64
159 extern int readdir64_r __P ((DIR *__dirp, struct dirent64 *__entry,
160 struct dirent64 **__result));
161 # endif
162 #endif /* POSIX or misc */
164 /* Rewind DIRP to the beginning of the directory. */
165 extern void rewinddir __P ((DIR *__dirp));
167 #if defined __USE_BSD || defined __USE_MISC || defined __USE_XOPEN
168 # include <bits/types.h>
170 /* Seek to position POS on DIRP. */
171 extern void seekdir __P ((DIR *__dirp, __off_t __pos));
173 /* Return the current position of DIRP. */
174 extern __off_t telldir __P ((DIR *__dirp));
175 #endif
177 #if defined __USE_BSD || defined __USE_MISC
179 /* Return the file descriptor used by DIRP. */
180 extern int dirfd __P ((DIR *__dirp));
182 # if defined __OPTIMIZE__ && defined _DIR_dirfd
183 # define dirfd(dirp) _DIR_dirfd (dirp)
184 # endif
186 # ifndef MAXNAMLEN
187 /* Get the definitions of the POSIX.1 limits. */
188 # include <bits/posix1_lim.h>
190 /* `MAXNAMLEN' is the BSD name for what POSIX calls `NAME_MAX'. */
191 # ifdef NAME_MAX
192 # define MAXNAMLEN NAME_MAX
193 # else
194 # define MAXNAMLEN 255
195 # endif
196 # endif
198 # define __need_size_t
199 # include <stddef.h>
201 /* Scan the directory DIR, calling SELECTOR on each directory entry.
202 Entries for which SELECT returns nonzero are individually malloc'd,
203 sorted using qsort with CMP, and collected in a malloc'd array in
204 *NAMELIST. Returns the number of entries selected, or -1 on error. */
205 # ifndef __USE_FILE_OFFSET64
206 extern int scandir __P ((__const char *__dir, struct dirent ***__namelist,
207 int (*__selector) (__const struct dirent *),
208 int (*__cmp) (__const __ptr_t, __const __ptr_t)));
209 # else
210 # ifdef __REDIRECT
211 extern int __REDIRECT (scandir,
212 __P ((__const char *__dir,
213 struct dirent ***__namelist,
214 int (*__selector) (__const struct dirent *),
215 int (*__cmp) (__const __ptr_t, __const __ptr_t))),
216 scandir64);
217 # else
218 # define scandir scandir64
219 # endif
220 # endif
222 # if defined __USE_GNU && defined __USE_LARGEFILE64
223 /* This function is like `scandir' but it uses the 64bit dirent structure.
224 Please note that the CMP function must now work with struct dirent64 **. */
225 extern int scandir64 __P ((__const char *__dir, struct dirent64 ***__namelist,
226 int (*__selector) (__const struct dirent64 *),
227 int (*__cmp) (__const __ptr_t, __const __ptr_t)));
228 # endif
230 /* Function to compare two `struct dirent's alphabetically. */
231 # ifndef __USE_FILE_OFFSET64
232 extern int alphasort __P ((__const __ptr_t __e1, __const __ptr_t __e2));
233 # else
234 # ifdef __REDIRECT
235 extern int __REDIRECT (alphasort,
236 __P ((__const __ptr_t __e1, __const __ptr_t __e2)),
237 alphasort64);
238 # else
239 # define alphasort alphasort64
240 # endif
241 # endif
243 # if defined __USE_GNU && defined __USE_LARGEFILE64
244 extern int alphasort64 __P ((__const __ptr_t __e1, __const __ptr_t __e2));
245 # endif
247 # ifdef __USE_GNU
248 /* Function to compare two `struct dirent's by name & version. */
249 # ifndef __USE_FILE_OFFSET64
250 extern int versionsort __P ((__const __ptr_t __e1, __const __ptr_t __e2));
251 # else
252 # ifdef __REDIRECT
253 extern int __REDIRECT (versionsort,
254 __P ((__const __ptr_t __e1, __const __ptr_t __e2)),
255 versionsort64);
256 # else
257 # define versionsort versionsort64
258 # endif
259 # endif
261 # ifdef __USE_LARGEFILE64
262 extern int versionsort64 __P ((__const __ptr_t __e1, __const __ptr_t __e2));
263 # endif
264 # endif
266 /* Read directory entries from FD into BUF, reading at most NBYTES.
267 Reading starts at offset *BASEP, and *BASEP is updated with the new
268 position after reading. Returns the number of bytes read; zero when at
269 end of directory; or -1 for errors. */
270 extern __ssize_t getdirentries __P ((int __fd, char *__buf,
271 size_t __nbytes, __off_t *__basep));
274 #endif /* Use BSD or misc. */
276 __END_DECLS
278 #endif /* dirent.h */