joachim99@52
|
1 /* File I/O for GNU DIFF.
|
joachim99@52
|
2
|
joachim99@52
|
3 Modified for KDiff3 by Joachim Eibl 2003.
|
joachim99@52
|
4
|
joachim99@52
|
5 Copyright (C) 1988, 1989, 1992, 1993, 1994, 1995, 1998, 2001, 2002
|
joachim99@52
|
6 Free Software Foundation, Inc.
|
joachim99@52
|
7
|
joachim99@52
|
8 This file is part of GNU DIFF.
|
joachim99@52
|
9
|
joachim99@52
|
10 GNU DIFF is free software; you can redistribute it and/or modify
|
joachim99@52
|
11 it under the terms of the GNU General Public License as published by
|
joachim99@52
|
12 the Free Software Foundation; either version 2, or (at your option)
|
joachim99@52
|
13 any later version.
|
joachim99@52
|
14
|
joachim99@52
|
15 GNU DIFF is distributed in the hope that it will be useful,
|
joachim99@52
|
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
|
joachim99@52
|
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
joachim99@52
|
18 GNU General Public License for more details.
|
joachim99@52
|
19
|
joachim99@52
|
20 You should have received a copy of the GNU General Public License
|
joachim99@52
|
21 along with this program; see the file COPYING.
|
joachim99@52
|
22 If not, write to the Free Software Foundation,
|
joachim99@52
|
23 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
joachim99@52
|
24
|
joachim99@52
|
25 #include "gnudiff_diff.h"
|
joachim99@52
|
26 #include <stdlib.h>
|
joachim99@52
|
27 #include "gnudiff_xalloc.h"
|
joachim99@52
|
28
|
joachim99@52
|
29 namespace GnuDiff
|
joachim99@52
|
30 {
|
joachim99@52
|
31
|
joachim99@52
|
32 /* Rotate an unsigned value to the left. */
|
joachim99@52
|
33 #define ROL(v, n) ((v) << (n) | (v) >> (sizeof (v) * CHAR_BIT - (n)))
|
joachim99@52
|
34
|
joachim99@52
|
35 /* Given a hash value and a new character, return a new hash value. */
|
joachim99@52
|
36 #define HASH(h, c) ((c) + ROL (h, 7))
|
joachim99@52
|
37
|
joachim99@52
|
38 /* The type of a hash value. */
|
joachim99@52
|
39 typedef size_t hash_value;
|
joachim99@52
|
40 verify (hash_value_is_unsigned, ! TYPE_SIGNED (hash_value));
|
joachim99@52
|
41
|
joachim99@52
|
42 /* Lines are put into equivalence classes of lines that match in lines_differ.
|
joachim99@52
|
43 Each equivalence class is represented by one of these structures,
|
joachim99@52
|
44 but only while the classes are being computed.
|
joachim99@52
|
45 Afterward, each class is represented by a number. */
|
joachim99@52
|
46 struct equivclass
|
joachim99@52
|
47 {
|
joachim99@52
|
48 lin next; /* Next item in this bucket. */
|
joachim99@52
|
49 hash_value hash; /* Hash of lines in this class. */
|
joachim99@52
|
50 char const *line; /* A line that fits this class. */
|
joachim99@52
|
51 size_t length; /* That line's length, not counting its newline. */
|
joachim99@52
|
52 };
|
joachim99@52
|
53
|
joachim99@52
|
54 /* Hash-table: array of buckets, each being a chain of equivalence classes.
|
joachim99@52
|
55 buckets[-1] is reserved for incomplete lines. */
|
joachim99@52
|
56 static lin *buckets;
|
joachim99@52
|
57
|
joachim99@52
|
58 /* Number of buckets in the hash table array, not counting buckets[-1]. */
|
joachim99@52
|
59 static size_t nbuckets;
|
joachim99@52
|
60
|
joachim99@52
|
61 /* Array in which the equivalence classes are allocated.
|
joachim99@52
|
62 The bucket-chains go through the elements in this array.
|
joachim99@52
|
63 The number of an equivalence class is its index in this array. */
|
joachim99@52
|
64 static struct equivclass *equivs;
|
joachim99@52
|
65
|
joachim99@52
|
66 /* Index of first free element in the array `equivs'. */
|
joachim99@52
|
67 static lin equivs_index;
|
joachim99@52
|
68
|
joachim99@52
|
69 /* Number of elements allocated in the array `equivs'. */
|
joachim99@52
|
70 static lin equivs_alloc;
|
joachim99@52
|
71
|
joachim99@52
|
72
|
joachim99@52
|
73 /* Check for binary files and compare them for exact identity. */
|
joachim99@52
|
74
|
joachim99@52
|
75 /* Return 1 if BUF contains a non text character.
|
joachim99@52
|
76 SIZE is the number of characters in BUF. */
|
joachim99@52
|
77
|
joachim99@52
|
78 #define binary_file_p(buf, size) (memchr (buf, 0, size) != 0)
|
joachim99@52
|
79
|
joachim99@52
|
80
|
joachim99@52
|
81 /* Split the file into lines, simultaneously computing the equivalence
|
joachim99@52
|
82 class for each line. */
|
joachim99@52
|
83
|
joachim99@52
|
84 static void
|
joachim99@52
|
85 find_and_hash_each_line (struct file_data *current)
|
joachim99@52
|
86 {
|
joachim99@52
|
87 hash_value h;
|
joachim99@52
|
88 unsigned char const *p = (unsigned char const *) current->prefix_end;
|
joachim99@52
|
89 unsigned char c;
|
joachim99@52
|
90 lin i, *bucket;
|
joachim99@52
|
91 size_t length;
|
joachim99@52
|
92
|
joachim99@52
|
93 /* Cache often-used quantities in local variables to help the compiler. */
|
joachim99@52
|
94 char const **linbuf = current->linbuf;
|
joachim99@52
|
95 lin alloc_lines = current->alloc_lines;
|
joachim99@52
|
96 lin line = 0;
|
joachim99@52
|
97 lin linbuf_base = current->linbuf_base;
|
joachim99@52
|
98 lin *cureqs = (lin*)xmalloc (alloc_lines * sizeof *cureqs);
|
joachim99@52
|
99 struct equivclass *eqs = equivs;
|
joachim99@52
|
100 lin eqs_index = equivs_index;
|
joachim99@52
|
101 lin eqs_alloc = equivs_alloc;
|
joachim99@52
|
102 char const *suffix_begin = current->suffix_begin;
|
joachim99@52
|
103 char const *bufend = FILE_BUFFER (current) + current->buffered;
|
joachim99@52
|
104 bool diff_length_compare_anyway =
|
joachim99@52
|
105 ignore_white_space != IGNORE_NO_WHITE_SPACE || bIgnoreNumbers;
|
joachim99@52
|
106 bool same_length_diff_contents_compare_anyway =
|
joachim99@52
|
107 diff_length_compare_anyway | ignore_case;
|
joachim99@52
|
108
|
joachim99@52
|
109 while ((char const *) p < suffix_begin)
|
joachim99@52
|
110 {
|
joachim99@52
|
111 char const *ip = (char const *) p;
|
joachim99@52
|
112
|
joachim99@52
|
113 h = 0;
|
joachim99@52
|
114
|
joachim99@52
|
115 /* Hash this line until we find a newline. */
|
joachim99@52
|
116 if (ignore_case)
|
joachim99@52
|
117 switch (ignore_white_space)
|
joachim99@52
|
118 {
|
joachim99@52
|
119 case IGNORE_ALL_SPACE:
|
joachim99@52
|
120 while ((c = *p++) != '\n')
|
joachim99@52
|
121 if (! (ISSPACE (c) || bIgnoreNumbers && (isdigit( c ) || c=='-' || c=='.' ) ))
|
joachim99@52
|
122 h = HASH (h, TOLOWER (c));
|
joachim99@52
|
123 break;
|
joachim99@52
|
124
|
joachim99@52
|
125 case IGNORE_SPACE_CHANGE:
|
joachim99@52
|
126 while ((c = *p++) != '\n')
|
joachim99@52
|
127 {
|
joachim99@52
|
128 if (ISSPACE (c))
|
joachim99@52
|
129 {
|
joachim99@52
|
130 do
|
joachim99@52
|
131 if ((c = *p++) == '\n')
|
joachim99@52
|
132 goto hashing_done;
|
joachim99@52
|
133 while (ISSPACE (c));
|
joachim99@52
|
134
|
joachim99@52
|
135 h = HASH (h, ' ');
|
joachim99@52
|
136 }
|
joachim99@52
|
137
|
joachim99@52
|
138 /* C is now the first non-space. */
|
joachim99@52
|
139 h = HASH (h, TOLOWER (c));
|
joachim99@52
|
140 }
|
joachim99@52
|
141 break;
|
joachim99@52
|
142
|
joachim99@52
|
143 case IGNORE_TAB_EXPANSION:
|
joachim99@52
|
144 {
|
joachim99@52
|
145 size_t column = 0;
|
joachim99@52
|
146 while ((c = *p++) != '\n')
|
joachim99@52
|
147 {
|
joachim99@52
|
148 int repetitions = 1;
|
joachim99@52
|
149
|
joachim99@52
|
150 switch (c)
|
joachim99@52
|
151 {
|
joachim99@52
|
152 case '\b':
|
joachim99@52
|
153 column -= 0 < column;
|
joachim99@52
|
154 break;
|
joachim99@52
|
155
|
joachim99@52
|
156 case '\t':
|
joachim99@52
|
157 c = ' ';
|
joachim99@52
|
158 repetitions = TAB_WIDTH - column % TAB_WIDTH;
|
joachim99@52
|
159 column += repetitions;
|
joachim99@52
|
160 break;
|
joachim99@52
|
161
|
joachim99@52
|
162 case '\r':
|
joachim99@52
|
163 column = 0;
|
joachim99@52
|
164 break;
|
joachim99@52
|
165
|
joachim99@52
|
166 default:
|
joachim99@52
|
167 c = TOLOWER (c);
|
joachim99@52
|
168 column++;
|
joachim99@52
|
169 break;
|
joachim99@52
|
170 }
|
joachim99@52
|
171
|
joachim99@52
|
172 do
|
joachim99@52
|
173 h = HASH (h, c);
|
joachim99@52
|
174 while (--repetitions != 0);
|
joachim99@52
|
175 }
|
joachim99@52
|
176 }
|
joachim99@52
|
177 break;
|
joachim99@52
|
178
|
joachim99@52
|
179 default:
|
joachim99@52
|
180 while ((c = *p++) != '\n')
|
joachim99@52
|
181 h = HASH (h, TOLOWER (c));
|
joachim99@52
|
182 break;
|
joachim99@52
|
183 }
|
joachim99@52
|
184 else
|
joachim99@52
|
185 switch (ignore_white_space)
|
joachim99@52
|
186 {
|
joachim99@52
|
187 case IGNORE_ALL_SPACE:
|
joachim99@52
|
188 while ((c = *p++) != '\n')
|
joachim99@52
|
189 if (! (ISSPACE (c)|| bIgnoreNumbers && (isdigit( c ) || c=='-' || c=='.' ) ))
|
joachim99@52
|
190 h = HASH (h, c);
|
joachim99@52
|
191 break;
|
joachim99@52
|
192
|
joachim99@52
|
193 case IGNORE_SPACE_CHANGE:
|
joachim99@52
|
194 while ((c = *p++) != '\n')
|
joachim99@52
|
195 {
|
joachim99@52
|
196 if (ISSPACE (c))
|
joachim99@52
|
197 {
|
joachim99@52
|
198 do
|
joachim99@52
|
199 if ((c = *p++) == '\n')
|
joachim99@52
|
200 goto hashing_done;
|
joachim99@52
|
201 while (ISSPACE (c));
|
joachim99@52
|
202
|
joachim99@52
|
203 h = HASH (h, ' ');
|
joachim99@52
|
204 }
|
joachim99@52
|
205
|
joachim99@52
|
206 /* C is now the first non-space. */
|
joachim99@52
|
207 h = HASH (h, c);
|
joachim99@52
|
208 }
|
joachim99@52
|
209 break;
|
joachim99@52
|
210
|
joachim99@52
|
211 case IGNORE_TAB_EXPANSION:
|
joachim99@52
|
212 {
|
joachim99@52
|
213 size_t column = 0;
|
joachim99@52
|
214 while ((c = *p++) != '\n')
|
joachim99@52
|
215 {
|
joachim99@52
|
216 int repetitions = 1;
|
joachim99@52
|
217
|
joachim99@52
|
218 switch (c)
|
joachim99@52
|
219 {
|
joachim99@52
|
220 case '\b':
|
joachim99@52
|
221 column -= 0 < column;
|
joachim99@52
|
222 break;
|
joachim99@52
|
223
|
joachim99@52
|
224 case '\t':
|
joachim99@52
|
225 c = ' ';
|
joachim99@52
|
226 repetitions = TAB_WIDTH - column % TAB_WIDTH;
|
joachim99@52
|
227 column += repetitions;
|
joachim99@52
|
228 break;
|
joachim99@52
|
229
|
joachim99@52
|
230 case '\r':
|
joachim99@52
|
231 column = 0;
|
joachim99@52
|
232 break;
|
joachim99@52
|
233
|
joachim99@52
|
234 default:
|
joachim99@52
|
235 column++;
|
joachim99@52
|
236 break;
|
joachim99@52
|
237 }
|
joachim99@52
|
238
|
joachim99@52
|
239 do
|
joachim99@52
|
240 h = HASH (h, c);
|
joachim99@52
|
241 while (--repetitions != 0);
|
joachim99@52
|
242 }
|
joachim99@52
|
243 }
|
joachim99@52
|
244 break;
|
joachim99@52
|
245
|
joachim99@52
|
246 default:
|
joachim99@52
|
247 while ((c = *p++) != '\n')
|
joachim99@52
|
248 h = HASH (h, c);
|
joachim99@52
|
249 break;
|
joachim99@52
|
250 }
|
joachim99@52
|
251
|
joachim99@52
|
252 hashing_done:;
|
joachim99@52
|
253
|
joachim99@52
|
254 bucket = &buckets[h % nbuckets];
|
joachim99@52
|
255 length = (char const *) p - ip - 1;
|
joachim99@52
|
256
|
joachim99@52
|
257 if ((char const *) p == bufend
|
joachim99@52
|
258 && current->missing_newline
|
joachim99@52
|
259 && ROBUST_OUTPUT_STYLE (output_style))
|
joachim99@52
|
260 {
|
joachim99@52
|
261 /* This line is incomplete. If this is significant,
|
joachim99@52
|
262 put the line into buckets[-1]. */
|
joachim99@52
|
263 if (ignore_white_space < IGNORE_SPACE_CHANGE)
|
joachim99@52
|
264 bucket = &buckets[-1];
|
joachim99@52
|
265
|
joachim99@52
|
266 /* Omit the inserted newline when computing linbuf later. */
|
joachim99@52
|
267 p--;
|
joachim99@52
|
268 bufend = suffix_begin = (char const *) p;
|
joachim99@52
|
269 }
|
joachim99@52
|
270
|
joachim99@52
|
271 for (i = *bucket; ; i = eqs[i].next)
|
joachim99@52
|
272 if (!i)
|
joachim99@52
|
273 {
|
joachim99@52
|
274 /* Create a new equivalence class in this bucket. */
|
joachim99@52
|
275 i = eqs_index++;
|
joachim99@52
|
276 if (i == eqs_alloc)
|
joachim99@52
|
277 {
|
joachim99@52
|
278 if ((int)(PTRDIFF_MAX / (2 * sizeof *eqs)) <= eqs_alloc)
|
joachim99@52
|
279 xalloc_die ();
|
joachim99@52
|
280 eqs_alloc *= 2;
|
joachim99@52
|
281 eqs = (equivclass*)xrealloc (eqs, eqs_alloc * sizeof *eqs);
|
joachim99@52
|
282 }
|
joachim99@52
|
283 eqs[i].next = *bucket;
|
joachim99@52
|
284 eqs[i].hash = h;
|
joachim99@52
|
285 eqs[i].line = ip;
|
joachim99@52
|
286 eqs[i].length = length;
|
joachim99@52
|
287 *bucket = i;
|
joachim99@52
|
288 break;
|
joachim99@52
|
289 }
|
joachim99@52
|
290 else if (eqs[i].hash == h)
|
joachim99@52
|
291 {
|
joachim99@52
|
292 char const *eqline = eqs[i].line;
|
joachim99@52
|
293
|
joachim99@52
|
294 /* Reuse existing class if lines_differ reports the lines
|
joachim99@52
|
295 equal. */
|
joachim99@52
|
296 if (eqs[i].length == length)
|
joachim99@52
|
297 {
|
joachim99@52
|
298 /* Reuse existing equivalence class if the lines are identical.
|
joachim99@52
|
299 This detects the common case of exact identity
|
joachim99@52
|
300 faster than lines_differ would. */
|
joachim99@52
|
301 if (memcmp (eqline, ip, length) == 0)
|
joachim99@52
|
302 break;
|
joachim99@52
|
303 if (!same_length_diff_contents_compare_anyway)
|
joachim99@52
|
304 continue;
|
joachim99@52
|
305 }
|
joachim99@52
|
306 else if (!diff_length_compare_anyway)
|
joachim99@52
|
307 continue;
|
joachim99@52
|
308
|
joachim99@52
|
309 if (! lines_differ (eqline, ip))
|
joachim99@52
|
310 break;
|
joachim99@52
|
311 }
|
joachim99@52
|
312
|
joachim99@52
|
313 /* Maybe increase the size of the line table. */
|
joachim99@52
|
314 if (line == alloc_lines)
|
joachim99@52
|
315 {
|
joachim99@52
|
316 /* Double (alloc_lines - linbuf_base) by adding to alloc_lines. */
|
joachim99@52
|
317 if ((int)(PTRDIFF_MAX / 3) <= alloc_lines
|
joachim99@52
|
318 || (int)(PTRDIFF_MAX / sizeof *cureqs) <= 2 * alloc_lines - linbuf_base
|
joachim99@52
|
319 || (int)(PTRDIFF_MAX / sizeof *linbuf) <= alloc_lines - linbuf_base)
|
joachim99@52
|
320 xalloc_die ();
|
joachim99@52
|
321 alloc_lines = 2 * alloc_lines - linbuf_base;
|
joachim99@52
|
322 cureqs =(lin*) xrealloc (cureqs, alloc_lines * sizeof *cureqs);
|
joachim99@52
|
323 linbuf += linbuf_base;
|
joachim99@52
|
324 linbuf = (const char**) xrealloc (linbuf,
|
joachim99@52
|
325 (alloc_lines - linbuf_base) * sizeof *linbuf);
|
joachim99@52
|
326 linbuf -= linbuf_base;
|
joachim99@52
|
327 }
|
joachim99@52
|
328 linbuf[line] = ip;
|
joachim99@52
|
329 cureqs[line] = i;
|
joachim99@52
|
330 ++line;
|
joachim99@52
|
331 }
|
joachim99@52
|
332
|
joachim99@52
|
333 current->buffered_lines = line;
|
joachim99@52
|
334
|
joachim99@52
|
335 for (i = 0; ; i++)
|
joachim99@52
|
336 {
|
joachim99@52
|
337 /* Record the line start for lines in the suffix that we care about.
|
joachim99@52
|
338 Record one more line start than lines,
|
joachim99@52
|
339 so that we can compute the length of any buffered line. */
|
joachim99@52
|
340 if (line == alloc_lines)
|
joachim99@52
|
341 {
|
joachim99@52
|
342 /* Double (alloc_lines - linbuf_base) by adding to alloc_lines. */
|
joachim99@52
|
343 if ((int)(PTRDIFF_MAX / 3) <= alloc_lines
|
joachim99@52
|
344 || (int)(PTRDIFF_MAX / sizeof *cureqs) <= 2 * alloc_lines - linbuf_base
|
joachim99@52
|
345 || (int)(PTRDIFF_MAX / sizeof *linbuf) <= alloc_lines - linbuf_base)
|
joachim99@52
|
346 xalloc_die ();
|
joachim99@52
|
347 alloc_lines = 2 * alloc_lines - linbuf_base;
|
joachim99@52
|
348 linbuf += linbuf_base;
|
joachim99@52
|
349 linbuf = (const char**)xrealloc (linbuf,
|
joachim99@52
|
350 (alloc_lines - linbuf_base) * sizeof *linbuf);
|
joachim99@52
|
351 linbuf -= linbuf_base;
|
joachim99@52
|
352 }
|
joachim99@52
|
353 linbuf[line] = (char const *) p;
|
joachim99@52
|
354
|
joachim99@52
|
355 if ((char const *) p == bufend)
|
joachim99@52
|
356 break;
|
joachim99@52
|
357
|
joachim99@52
|
358 if (context <= i && no_diff_means_no_output)
|
joachim99@52
|
359 break;
|
joachim99@52
|
360
|
joachim99@52
|
361 line++;
|
joachim99@52
|
362
|
joachim99@52
|
363 while (*p++ != '\n')
|
joachim99@52
|
364 continue;
|
joachim99@52
|
365 }
|
joachim99@52
|
366
|
joachim99@52
|
367 /* Done with cache in local variables. */
|
joachim99@52
|
368 current->linbuf = linbuf;
|
joachim99@52
|
369 current->valid_lines = line;
|
joachim99@52
|
370 current->alloc_lines = alloc_lines;
|
joachim99@52
|
371 current->equivs = cureqs;
|
joachim99@52
|
372 equivs = eqs;
|
joachim99@52
|
373 equivs_alloc = eqs_alloc;
|
joachim99@52
|
374 equivs_index = eqs_index;
|
joachim99@52
|
375 }
|
joachim99@52
|
376
|
joachim99@52
|
377 /* Prepare the text. Make sure the text end is initialized.
|
joachim99@52
|
378 Make sure text ends in a newline,
|
joachim99@52
|
379 but remember that we had to add one.
|
joachim99@52
|
380 Strip trailing CRs, if that was requested. */
|
joachim99@52
|
381
|
joachim99@52
|
382 static void
|
joachim99@52
|
383 prepare_text (struct file_data *current)
|
joachim99@52
|
384 {
|
joachim99@52
|
385 size_t buffered = current->buffered;
|
joachim99@52
|
386 char *p = FILE_BUFFER (current);
|
joachim99@52
|
387 char *dst;
|
joachim99@52
|
388
|
joachim99@52
|
389 if (buffered == 0 || p[buffered - 1] == '\n')
|
joachim99@52
|
390 current->missing_newline = 0;
|
joachim99@52
|
391 else
|
joachim99@52
|
392 {
|
joachim99@52
|
393 p[buffered++] = '\n';
|
joachim99@52
|
394 current->missing_newline = 1;
|
joachim99@52
|
395 }
|
joachim99@52
|
396
|
joachim99@52
|
397 if (!p)
|
joachim99@52
|
398 return;
|
joachim99@52
|
399
|
joachim99@52
|
400 /* Don't use uninitialized storage when planting or using sentinels. */
|
joachim99@52
|
401 memset (p + buffered, 0, sizeof (word));
|
joachim99@52
|
402
|
joachim99@52
|
403 if (strip_trailing_cr && (dst = (char*)memchr (p, '\r', buffered)))
|
joachim99@52
|
404 {
|
joachim99@52
|
405 char const *src = dst;
|
joachim99@52
|
406 char const *srclim = p + buffered;
|
joachim99@52
|
407
|
joachim99@52
|
408 do
|
joachim99@52
|
409 dst += ! ((*dst = *src++) == '\r' && *src == '\n');
|
joachim99@52
|
410 while (src < srclim);
|
joachim99@52
|
411
|
joachim99@52
|
412 buffered -= src - dst;
|
joachim99@52
|
413 }
|
joachim99@52
|
414
|
joachim99@52
|
415 current->buffered = buffered;
|
joachim99@52
|
416 }
|
joachim99@52
|
417
|
joachim99@52
|
418 /* We have found N lines in a buffer of size S; guess the
|
joachim99@52
|
419 proportionate number of lines that will be found in a buffer of
|
joachim99@52
|
420 size T. However, do not guess a number of lines so large that the
|
joachim99@52
|
421 resulting line table might cause overflow in size calculations. */
|
joachim99@52
|
422 static lin
|
joachim99@52
|
423 guess_lines (lin n, size_t s, size_t t)
|
joachim99@52
|
424 {
|
joachim99@52
|
425 size_t guessed_bytes_per_line = n < 10 ? 32 : s / (n - 1);
|
joachim99@52
|
426 lin guessed_lines = MAX (1, t / guessed_bytes_per_line);
|
joachim99@52
|
427 return MIN (guessed_lines, (int)(PTRDIFF_MAX / (2 * sizeof (char *) + 1) - 5)) + 5;
|
joachim99@52
|
428 }
|
joachim99@52
|
429
|
joachim99@52
|
430 /* Given a vector of two file_data objects, find the identical
|
joachim99@52
|
431 prefixes and suffixes of each object. */
|
joachim99@52
|
432
|
joachim99@52
|
433 static void
|
joachim99@52
|
434 find_identical_ends (struct file_data filevec[])
|
joachim99@52
|
435 {
|
joachim99@52
|
436 word *w0, *w1;
|
joachim99@52
|
437 char *p0, *p1, *buffer0, *buffer1;
|
joachim99@52
|
438 char const *end0, *beg0;
|
joachim99@52
|
439 char const **linbuf0, **linbuf1;
|
joachim99@52
|
440 lin i, lines;
|
joachim99@52
|
441 size_t n0, n1;
|
joachim99@52
|
442 lin alloc_lines0, alloc_lines1;
|
joachim99@52
|
443 lin buffered_prefix, prefix_count, prefix_mask;
|
joachim99@52
|
444 lin middle_guess, suffix_guess;
|
joachim99@52
|
445
|
joachim99@52
|
446 prepare_text (&filevec[0]);
|
joachim99@52
|
447 prepare_text (&filevec[1]);
|
joachim99@52
|
448
|
joachim99@52
|
449 /* Find identical prefix. */
|
joachim99@52
|
450
|
joachim99@52
|
451 w0 = filevec[0].buffer;
|
joachim99@52
|
452 w1 = filevec[1].buffer;
|
joachim99@52
|
453 p0 = buffer0 = (char *) w0;
|
joachim99@52
|
454 p1 = buffer1 = (char *) w1;
|
joachim99@52
|
455 n0 = filevec[0].buffered;
|
joachim99@52
|
456 n1 = filevec[1].buffered;
|
joachim99@52
|
457
|
joachim99@52
|
458 if (p0 == p1)
|
joachim99@52
|
459 /* The buffers are the same; sentinels won't work. */
|
joachim99@52
|
460 p0 = p1 += n1;
|
joachim99@52
|
461 else
|
joachim99@52
|
462 {
|
joachim99@52
|
463 /* Insert end sentinels, in this case characters that are guaranteed
|
joachim99@52
|
464 to make the equality test false, and thus terminate the loop. */
|
joachim99@52
|
465
|
joachim99@52
|
466 if (n0 < n1)
|
joachim99@52
|
467 p0[n0] = ~p1[n0];
|
joachim99@52
|
468 else
|
joachim99@52
|
469 p1[n1] = ~p0[n1];
|
joachim99@52
|
470
|
joachim99@52
|
471 /* Loop until first mismatch, or to the sentinel characters. */
|
joachim99@52
|
472
|
joachim99@52
|
473 /* Compare a word at a time for speed. */
|
joachim99@52
|
474 while (*w0 == *w1)
|
joachim99@52
|
475 w0++, w1++;
|
joachim99@52
|
476
|
joachim99@52
|
477 /* Do the last few bytes of comparison a byte at a time. */
|
joachim99@52
|
478 p0 = (char *) w0;
|
joachim99@52
|
479 p1 = (char *) w1;
|
joachim99@52
|
480 while (*p0 == *p1)
|
joachim99@52
|
481 p0++, p1++;
|
joachim99@52
|
482
|
joachim99@52
|
483 /* Don't mistakenly count missing newline as part of prefix. */
|
joachim99@52
|
484 if (ROBUST_OUTPUT_STYLE (output_style)
|
joachim99@52
|
485 && ((buffer0 + n0 - filevec[0].missing_newline < p0)
|
joachim99@52
|
486 !=
|
joachim99@52
|
487 (buffer1 + n1 - filevec[1].missing_newline < p1)))
|
joachim99@52
|
488 p0--, p1--;
|
joachim99@52
|
489 }
|
joachim99@52
|
490
|
joachim99@52
|
491 /* Now P0 and P1 point at the first nonmatching characters. */
|
joachim99@52
|
492
|
joachim99@52
|
493 /* Skip back to last line-beginning in the prefix,
|
joachim99@52
|
494 and then discard up to HORIZON_LINES lines from the prefix. */
|
joachim99@52
|
495 i = horizon_lines;
|
joachim99@52
|
496 while (p0 != buffer0 && (p0[-1] != '\n' || i--))
|
joachim99@52
|
497 p0--, p1--;
|
joachim99@52
|
498
|
joachim99@52
|
499 /* Record the prefix. */
|
joachim99@52
|
500 filevec[0].prefix_end = p0;
|
joachim99@52
|
501 filevec[1].prefix_end = p1;
|
joachim99@52
|
502
|
joachim99@52
|
503 /* Find identical suffix. */
|
joachim99@52
|
504
|
joachim99@52
|
505 /* P0 and P1 point beyond the last chars not yet compared. */
|
joachim99@52
|
506 p0 = buffer0 + n0;
|
joachim99@52
|
507 p1 = buffer1 + n1;
|
joachim99@52
|
508
|
joachim99@52
|
509 if (! ROBUST_OUTPUT_STYLE (output_style)
|
joachim99@52
|
510 || filevec[0].missing_newline == filevec[1].missing_newline)
|
joachim99@52
|
511 {
|
joachim99@52
|
512 end0 = p0; /* Addr of last char in file 0. */
|
joachim99@52
|
513
|
joachim99@52
|
514 /* Get value of P0 at which we should stop scanning backward:
|
joachim99@52
|
515 this is when either P0 or P1 points just past the last char
|
joachim99@52
|
516 of the identical prefix. */
|
joachim99@52
|
517 beg0 = filevec[0].prefix_end + (n0 < n1 ? 0 : n0 - n1);
|
joachim99@52
|
518
|
joachim99@52
|
519 /* Scan back until chars don't match or we reach that point. */
|
joachim99@52
|
520 for (; p0 != beg0; p0--, p1--)
|
joachim99@52
|
521 if (*p0 != *p1)
|
joachim99@52
|
522 {
|
joachim99@52
|
523 /* Point at the first char of the matching suffix. */
|
joachim99@52
|
524 beg0 = p0;
|
joachim99@52
|
525 break;
|
joachim99@52
|
526 }
|
joachim99@52
|
527
|
joachim99@52
|
528 /* Are we at a line-beginning in both files? If not, add the rest of
|
joachim99@52
|
529 this line to the main body. Discard up to HORIZON_LINES lines from
|
joachim99@52
|
530 the identical suffix. Also, discard one extra line,
|
joachim99@52
|
531 because shift_boundaries may need it. */
|
joachim99@52
|
532 i = horizon_lines + !((buffer0 == p0 || p0[-1] == '\n')
|
joachim99@52
|
533 &&
|
joachim99@52
|
534 (buffer1 == p1 || p1[-1] == '\n'));
|
joachim99@52
|
535 while (i-- && p0 != end0)
|
joachim99@52
|
536 while (*p0++ != '\n')
|
joachim99@52
|
537 continue;
|
joachim99@52
|
538
|
joachim99@52
|
539 p1 += p0 - beg0;
|
joachim99@52
|
540 }
|
joachim99@52
|
541
|
joachim99@52
|
542 /* Record the suffix. */
|
joachim99@52
|
543 filevec[0].suffix_begin = p0;
|
joachim99@52
|
544 filevec[1].suffix_begin = p1;
|
joachim99@52
|
545
|
joachim99@52
|
546 /* Calculate number of lines of prefix to save.
|
joachim99@52
|
547
|
joachim99@52
|
548 prefix_count == 0 means save the whole prefix;
|
joachim99@52
|
549 we need this for options like -D that output the whole file,
|
joachim99@52
|
550 or for enormous contexts (to avoid worrying about arithmetic overflow).
|
joachim99@52
|
551 We also need it for options like -F that output some preceding line;
|
joachim99@52
|
552 at least we will need to find the last few lines,
|
joachim99@52
|
553 but since we don't know how many, it's easiest to find them all.
|
joachim99@52
|
554
|
joachim99@52
|
555 Otherwise, prefix_count != 0. Save just prefix_count lines at start
|
joachim99@52
|
556 of the line buffer; they'll be moved to the proper location later.
|
joachim99@52
|
557 Handle 1 more line than the context says (because we count 1 too many),
|
joachim99@52
|
558 rounded up to the next power of 2 to speed index computation. */
|
joachim99@52
|
559
|
joachim99@52
|
560 if (no_diff_means_no_output
|
joachim99@52
|
561 && context < int(LIN_MAX / 4) && context < int(n0))
|
joachim99@52
|
562 {
|
joachim99@52
|
563 middle_guess = guess_lines (0, 0, p0 - filevec[0].prefix_end);
|
joachim99@52
|
564 suffix_guess = guess_lines (0, 0, buffer0 + n0 - p0);
|
joachim99@52
|
565 for (prefix_count = 1; prefix_count <= context; prefix_count *= 2)
|
joachim99@52
|
566 continue;
|
joachim99@52
|
567 alloc_lines0 = (prefix_count + middle_guess
|
joachim99@52
|
568 + MIN (context, suffix_guess));
|
joachim99@52
|
569 }
|
joachim99@52
|
570 else
|
joachim99@52
|
571 {
|
joachim99@52
|
572 prefix_count = 0;
|
joachim99@52
|
573 alloc_lines0 = guess_lines (0, 0, n0);
|
joachim99@52
|
574 }
|
joachim99@52
|
575
|
joachim99@52
|
576 prefix_mask = prefix_count - 1;
|
joachim99@52
|
577 lines = 0;
|
joachim99@52
|
578 linbuf0 = (const char**) xmalloc (alloc_lines0 * sizeof *linbuf0);
|
joachim99@52
|
579 p0 = buffer0;
|
joachim99@52
|
580
|
joachim99@52
|
581 /* If the prefix is needed, find the prefix lines. */
|
joachim99@52
|
582 if (! (no_diff_means_no_output
|
joachim99@52
|
583 && filevec[0].prefix_end == p0
|
joachim99@52
|
584 && filevec[1].prefix_end == p1))
|
joachim99@52
|
585 {
|
joachim99@52
|
586 end0 = filevec[0].prefix_end;
|
joachim99@52
|
587 while (p0 != end0)
|
joachim99@52
|
588 {
|
joachim99@52
|
589 lin l = lines++ & prefix_mask;
|
joachim99@52
|
590 if (l == alloc_lines0)
|
joachim99@52
|
591 {
|
joachim99@52
|
592 if (int(PTRDIFF_MAX / (2 * sizeof *linbuf0)) <= alloc_lines0)
|
joachim99@52
|
593 xalloc_die ();
|
joachim99@52
|
594 alloc_lines0 *= 2;
|
joachim99@52
|
595 linbuf0 = (const char**) xrealloc (linbuf0, alloc_lines0 * sizeof *linbuf0);
|
joachim99@52
|
596 }
|
joachim99@52
|
597 linbuf0[l] = p0;
|
joachim99@52
|
598 while (*p0++ != '\n')
|
joachim99@52
|
599 continue;
|
joachim99@52
|
600 }
|
joachim99@52
|
601 }
|
joachim99@52
|
602 buffered_prefix = prefix_count && context < lines ? context : lines;
|
joachim99@52
|
603
|
joachim99@52
|
604 /* Allocate line buffer 1. */
|
joachim99@52
|
605
|
joachim99@52
|
606 middle_guess = guess_lines (lines, p0 - buffer0, p1 - filevec[1].prefix_end);
|
joachim99@52
|
607 suffix_guess = guess_lines (lines, p0 - buffer0, buffer1 + n1 - p1);
|
joachim99@52
|
608 alloc_lines1 = buffered_prefix + middle_guess + MIN (context, suffix_guess);
|
joachim99@52
|
609 if (alloc_lines1 < buffered_prefix
|
joachim99@52
|
610 || int(PTRDIFF_MAX / sizeof *linbuf1) <= alloc_lines1)
|
joachim99@52
|
611 xalloc_die ();
|
joachim99@52
|
612 linbuf1 = (const char**)xmalloc (alloc_lines1 * sizeof *linbuf1);
|
joachim99@52
|
613
|
joachim99@52
|
614 if (buffered_prefix != lines)
|
joachim99@52
|
615 {
|
joachim99@52
|
616 /* Rotate prefix lines to proper location. */
|
joachim99@52
|
617 for (i = 0; i < buffered_prefix; i++)
|
joachim99@52
|
618 linbuf1[i] = linbuf0[(lines - context + i) & prefix_mask];
|
joachim99@52
|
619 for (i = 0; i < buffered_prefix; i++)
|
joachim99@52
|
620 linbuf0[i] = linbuf1[i];
|
joachim99@52
|
621 }
|
joachim99@52
|
622
|
joachim99@52
|
623 /* Initialize line buffer 1 from line buffer 0. */
|
joachim99@52
|
624 for (i = 0; i < buffered_prefix; i++)
|
joachim99@52
|
625 linbuf1[i] = linbuf0[i] - buffer0 + buffer1;
|
joachim99@52
|
626
|
joachim99@52
|
627 /* Record the line buffer, adjusted so that
|
joachim99@52
|
628 linbuf[0] points at the first differing line. */
|
joachim99@52
|
629 filevec[0].linbuf = linbuf0 + buffered_prefix;
|
joachim99@52
|
630 filevec[1].linbuf = linbuf1 + buffered_prefix;
|
joachim99@52
|
631 filevec[0].linbuf_base = filevec[1].linbuf_base = - buffered_prefix;
|
joachim99@52
|
632 filevec[0].alloc_lines = alloc_lines0 - buffered_prefix;
|
joachim99@52
|
633 filevec[1].alloc_lines = alloc_lines1 - buffered_prefix;
|
joachim99@52
|
634 filevec[0].prefix_lines = filevec[1].prefix_lines = lines;
|
joachim99@52
|
635 }
|
joachim99@52
|
636
|
joachim99@52
|
637 /* If 1 < k, then (2**k - prime_offset[k]) is the largest prime less
|
joachim99@52
|
638 than 2**k. This table is derived from Chris K. Caldwell's list
|
joachim99@52
|
639 <http://www.utm.edu/research/primes/lists/2small/>. */
|
joachim99@52
|
640
|
joachim99@52
|
641 static unsigned char const prime_offset[] =
|
joachim99@52
|
642 {
|
joachim99@52
|
643 0, 0, 1, 1, 3, 1, 3, 1, 5, 3, 3, 9, 3, 1, 3, 19, 15, 1, 5, 1, 3, 9, 3,
|
joachim99@52
|
644 15, 3, 39, 5, 39, 57, 3, 35, 1, 5, 9, 41, 31, 5, 25, 45, 7, 87, 21,
|
joachim99@52
|
645 11, 57, 17, 55, 21, 115, 59, 81, 27, 129, 47, 111, 33, 55, 5, 13, 27,
|
joachim99@52
|
646 55, 93, 1, 57, 25
|
joachim99@52
|
647 };
|
joachim99@52
|
648
|
joachim99@52
|
649 /* Verify that this host's size_t is not too wide for the above table. */
|
joachim99@52
|
650
|
joachim99@52
|
651 verify (enough_prime_offsets,
|
joachim99@52
|
652 sizeof (size_t) * CHAR_BIT <= sizeof prime_offset);
|
joachim99@52
|
653
|
joachim99@52
|
654 /* Given a vector of two file_data objects, read the file associated
|
joachim99@52
|
655 with each one, and build the table of equivalence classes.
|
joachim99@52
|
656 Return nonzero if either file appears to be a binary file.
|
joachim99@52
|
657 If PRETEND_BINARY is nonzero, pretend they are binary regardless. */
|
joachim99@52
|
658
|
joachim99@52
|
659 bool
|
joachim99@52
|
660 read_files (struct file_data filevec[], bool /*pretend_binary*/)
|
joachim99@52
|
661 {
|
joachim99@52
|
662 int i;
|
joachim99@52
|
663
|
joachim99@52
|
664 find_identical_ends (filevec);
|
joachim99@52
|
665
|
joachim99@52
|
666 equivs_alloc = filevec[0].alloc_lines + filevec[1].alloc_lines + 1;
|
joachim99@52
|
667 if (int(PTRDIFF_MAX / sizeof *equivs) <= equivs_alloc)
|
joachim99@52
|
668 xalloc_die ();
|
joachim99@52
|
669 equivs = (equivclass*)xmalloc (equivs_alloc * sizeof *equivs);
|
joachim99@52
|
670 /* Equivalence class 0 is permanently safe for lines that were not
|
joachim99@52
|
671 hashed. Real equivalence classes start at 1. */
|
joachim99@52
|
672 equivs_index = 1;
|
joachim99@52
|
673
|
joachim99@52
|
674 /* Allocate (one plus) a prime number of hash buckets. Use a prime
|
joachim99@52
|
675 number between 1/3 and 2/3 of the value of equiv_allocs,
|
joachim99@52
|
676 approximately. */
|
joachim99@52
|
677 for (i = 9; 1 << i < equivs_alloc / 3; i++)
|
joachim99@52
|
678 continue;
|
joachim99@52
|
679 nbuckets = ((size_t) 1 << i) - prime_offset[i];
|
joachim99@52
|
680 if (PTRDIFF_MAX / sizeof *buckets <= nbuckets)
|
joachim99@52
|
681 xalloc_die ();
|
joachim99@52
|
682 buckets = (lin*)zalloc ((nbuckets + 1) * sizeof *buckets);
|
joachim99@52
|
683 buckets++;
|
joachim99@52
|
684
|
joachim99@52
|
685 for (i = 0; i < 2; i++)
|
joachim99@52
|
686 find_and_hash_each_line (&filevec[i]);
|
joachim99@52
|
687
|
joachim99@52
|
688 filevec[0].equiv_max = filevec[1].equiv_max = equivs_index;
|
joachim99@52
|
689
|
joachim99@52
|
690 free (equivs);
|
joachim99@52
|
691 free (buckets - 1);
|
joachim99@52
|
692
|
joachim99@52
|
693 return 0;
|
joachim99@52
|
694 }
|
joachim99@52
|
695
|
joachim99@52
|
696 } // namespace GnuDiff
|