3 /* Read, sort and compare two directories. Used for GNU DIFF.
5 Copyright (C) 1988, 1989, 1992, 1993, 1994, 1995, 1998, 2001, 2002
6 Free Software Foundation, Inc.
8 This file is part of GNU DIFF.
10 GNU DIFF is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 2, or (at your option)
15 GNU DIFF is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License
21 along with this program; see the file COPYING.
22 If not, write to the Free Software Foundation,
23 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
31 /* Read the directory named by DIR and store into DIRDATA a sorted vector
32 of filenames for its contents. DIR->desc == -1 means this directory is
33 known to be nonexistent, so set DIRDATA to an empty vector.
34 Return -1 (setting errno) if error, 0 otherwise. */
38 size_t nnames
; /* Number of names. */
39 char const **names
; /* Sorted names of files in dir, followed by 0. */
40 char *data
; /* Allocated storage for file names. */
43 /* Whether file names in directories should be compared with strcoll. */
44 static bool locale_specific_sorting
;
46 /* Where to go if strcoll fails. */
47 static jmp_buf failed_strcoll
;
49 static bool dir_loop (struct comparison
const *, int);
50 static int compare_names_for_qsort (void const *, void const *);
53 /* Read a directory and get its vector of names. */
56 dir_read (struct file_data
const *dir
, struct dirdata
*dirdata
)
58 register struct dirent
*next
;
61 /* Address of block containing the files that are described. */
64 /* Number of files in directory. */
67 /* Allocated and used storage for file name data. */
69 size_t data_alloc
, data_used
;
78 /* Open the directory and check for errors. */
79 register DIR *reading
= opendir (dir
->name
);
83 /* Initialize the table of filenames. */
87 dirdata
->data
= data
= xmalloc (data_alloc
);
89 /* Read the directory entries, and insert the subfiles
90 into the `data' table. */
92 while ((errno
= 0, (next
= readdir (reading
)) != 0))
94 char *d_name
= next
->d_name
;
95 size_t d_size
= NAMLEN (next
) + 1;
97 /* Ignore "." and "..". */
99 && (d_name
[1] == 0 || (d_name
[1] == '.' && d_name
[2] == 0)))
102 if (excluded_filename (excluded
, d_name
))
105 while (data_alloc
< data_used
+ d_size
)
107 if (PTRDIFF_MAX
/ 2 <= data_alloc
)
109 dirdata
->data
= data
= xrealloc (data
, data_alloc
*= 2);
112 memcpy (data
+ data_used
, d_name
, d_size
);
126 if (closedir (reading
) != 0)
131 /* Create the `names' table from the `data' table. */
132 if (PTRDIFF_MAX
/ sizeof *names
- 1 <= nnames
)
134 dirdata
->names
= names
= xmalloc ((nnames
+ 1) * sizeof *names
);
135 dirdata
->nnames
= nnames
;
136 for (i
= 0; i
< nnames
; i
++)
139 data
+= strlen (data
) + 1;
145 /* Compare file names, returning a value compatible with strcmp. */
148 compare_names (char const *name1
, char const *name2
)
150 if (ignore_file_name_case
)
152 int r
= strcasecmp (name1
, name2
);
157 if (locale_specific_sorting
)
161 r
= strcoll (name1
, name2
);
164 error (0, errno
, _("cannot compare file names `%s' and `%s'"),
166 longjmp (failed_strcoll
, 1);
172 return file_name_cmp (name1
, name2
);
175 /* A wrapper for compare_names suitable as an argument for qsort. */
178 compare_names_for_qsort (void const *file1
, void const *file2
)
180 char const *const *f1
= file1
;
181 char const *const *f2
= file2
;
182 return compare_names (*f1
, *f2
);
185 /* Compare the contents of two directories named in CMP.
186 This is a top-level routine; it does everything necessary for diff
189 CMP->file[0].desc == -1 says directory CMP->file[0] doesn't exist,
190 but pretend it is empty. Likewise for CMP->file[1].
192 HANDLE_FILE is a caller-provided subroutine called to handle each file.
193 It gets three operands: CMP, name of file in dir 0, name of file in dir 1.
194 These names are relative to the original working directory.
196 For a file that appears in only one of the dirs, one of the name-args
197 to HANDLE_FILE is zero.
199 Returns the maximum of all the values returned by HANDLE_FILE,
200 or EXIT_TROUBLE if trouble is encountered in opening files. */
203 diff_dirs (struct comparison
const *cmp
,
204 int (*handle_file
) (struct comparison
const *,
205 char const *, char const *))
207 struct dirdata dirdata
[2];
208 int volatile val
= EXIT_SUCCESS
;
211 if ((cmp
->file
[0].desc
== -1 || dir_loop (cmp
, 0))
212 && (cmp
->file
[1].desc
== -1 || dir_loop (cmp
, 1)))
214 error (0, 0, "%s: recursive directory loop",
215 cmp
->file
[cmp
->file
[0].desc
== -1].name
);
219 /* Get contents of both dirs. */
220 for (i
= 0; i
< 2; i
++)
221 if (! dir_read (&cmp
->file
[i
], &dirdata
[i
]))
223 perror_with_name (cmp
->file
[i
].name
);
227 if (val
== EXIT_SUCCESS
)
229 char const **volatile names
[2];
230 names
[0] = dirdata
[0].names
;
231 names
[1] = dirdata
[1].names
;
233 /* Use locale-specific sorting if possible, else native byte order. */
234 locale_specific_sorting
= 1;
235 if (setjmp (failed_strcoll
))
236 locale_specific_sorting
= 0;
238 /* Sort the directories. */
239 for (i
= 0; i
< 2; i
++)
240 qsort (names
[i
], dirdata
[i
].nnames
, sizeof *dirdata
[i
].names
,
241 compare_names_for_qsort
);
243 /* If `-S name' was given, and this is the topmost level of comparison,
244 ignore all file names less than the specified starting name. */
246 if (starting_file
&& ! cmp
->parent
)
248 while (*names
[0] && compare_names (*names
[0], starting_file
) < 0)
250 while (*names
[1] && compare_names (*names
[1], starting_file
) < 0)
254 /* Loop while files remain in one or both dirs. */
255 while (*names
[0] || *names
[1])
257 /* Compare next name in dir 0 with next name in dir 1.
259 pretend the "next name" in that dir is very large. */
260 int nameorder
= (!*names
[0] ? 1 : !*names
[1] ? -1
261 : compare_names (*names
[0], *names
[1]));
262 int v1
= (*handle_file
) (cmp
,
263 0 < nameorder
? 0 : *names
[0]++,
264 nameorder
< 0 ? 0 : *names
[1]++);
270 for (i
= 0; i
< 2; i
++)
272 if (dirdata
[i
].names
)
273 free (dirdata
[i
].names
);
275 free (dirdata
[i
].data
);
281 /* Return nonzero if CMP is looping recursively in argument I. */
284 dir_loop (struct comparison
const *cmp
, int i
)
286 struct comparison
const *p
= cmp
;
287 while ((p
= p
->parent
))
288 if (0 < same_file (&p
->file
[i
].stat
, &cmp
->file
[i
].stat
))