dirent.h 9.7 KB

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