* lib/getloadavg.c: Use __VMS, not VMS.
[gnulib.git] / lib / savedir.c
1 /* savedir.c -- save the list of files in a directory in a string
2
3    Copyright 1990, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006 Free
4    Software Foundation, Inc.
5
6    This program is free software; you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 2, or (at your option)
9    any later version.
10
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15
16    You should have received a copy of the GNU General Public License
17    along with this program; if not, write to the Free Software Foundation,
18    Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
19
20 /* Written by David MacKenzie <djm@gnu.ai.mit.edu>. */
21
22 #ifdef HAVE_CONFIG_H
23 # include <config.h>
24 #endif
25
26 #include "savedir.h"
27
28 #include <sys/types.h>
29
30 #include <errno.h>
31
32 #if HAVE_DIRENT_H
33 # include <dirent.h>
34 #else
35 # define dirent direct
36 # include <ndir.h>
37 #endif
38
39 #include <stddef.h>
40 #include <stdlib.h>
41 #include <string.h>
42
43 #include "openat.h"
44 #include "xalloc.h"
45
46 #ifndef NAME_SIZE_DEFAULT
47 # define NAME_SIZE_DEFAULT 512
48 #endif
49
50 /* Return a freshly allocated string containing the file names
51    in directory DIRP, separated by '\0' characters;
52    the end is marked by two '\0' characters in a row.
53    Return NULL (setting errno) if DIRP cannot be read or closed.
54    If DIRP is NULL, return NULL without affecting errno.  */
55
56 static char *
57 savedirstream (DIR *dirp)
58 {
59   char *name_space;
60   size_t allocated = NAME_SIZE_DEFAULT;
61   size_t used = 0;
62   int save_errno;
63
64   if (dirp == NULL)
65     return NULL;
66
67   name_space = xmalloc (allocated);
68
69   for (;;)
70     {
71       struct dirent const *dp;
72       char const *entry;
73
74       errno = 0;
75       dp = readdir (dirp);
76       if (! dp)
77         break;
78
79       /* Skip "", ".", and "..".  "" is returned by at least one buggy
80          implementation: Solaris 2.4 readdir on NFS file systems.  */
81       entry = dp->d_name;
82       if (entry[entry[0] != '.' ? 0 : entry[1] != '.' ? 1 : 2] != '\0')
83         {
84           size_t entry_size = strlen (entry) + 1;
85           if (used + entry_size < used)
86             xalloc_die ();
87           if (allocated <= used + entry_size)
88             {
89               do
90                 {
91                   if (2 * allocated < allocated)
92                     xalloc_die ();
93                   allocated *= 2;
94                 }
95               while (allocated <= used + entry_size);
96
97               name_space = xrealloc (name_space, allocated);
98             }
99           memcpy (name_space + used, entry, entry_size);
100           used += entry_size;
101         }
102     }
103   name_space[used] = '\0';
104   save_errno = errno;
105   if (closedir (dirp) != 0)
106     save_errno = errno;
107   if (save_errno != 0)
108     {
109       free (name_space);
110       errno = save_errno;
111       return NULL;
112     }
113   return name_space;
114 }
115
116 /* Return a freshly allocated string containing the file names
117    in directory DIR, separated by '\0' characters;
118    the end is marked by two '\0' characters in a row.
119    Return NULL (setting errno) if DIR cannot be opened, read, or closed.  */
120
121 char *
122 savedir (char const *dir)
123 {
124   return savedirstream (opendir (dir));
125 }
126
127 /* Return a freshly allocated string containing the file names
128    in directory FD, separated by '\0' characters;
129    the end is marked by two '\0' characters in a row.
130    Return NULL (setting errno) if FD cannot be read or closed.  */
131
132 char *
133 fdsavedir (int fd)
134 {
135   return savedirstream (fdopendir (fd));
136 }