blob: 63a22c630e521969b08c8ecb1ce9fa3e0f3ff513 [file] [log] [blame]
Linus Torvalds34435462006-03-24 20:13:22 -08001/*
2 * LibXDiff by Davide Libenzi ( File Differential Library )
3 * Copyright (C) 2003 Davide Libenzi
4 *
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
9 *
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
14 *
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 *
19 * Davide Libenzi <davidel@xmailserver.org>
20 *
21 */
22
23#include "xinclude.h"
24
25
Linus Torvalds34435462006-03-24 20:13:22 -080026#define XDL_KPDIS_RUN 4
Davide Libenzica557af2006-04-03 18:47:55 -070027#define XDL_MAX_EQLIMIT 1024
Davide Libenzi9b28d552008-11-07 21:24:33 -080028#define XDL_SIMSCAN_WINDOW 100
Tay Ray Chuan86abba82011-07-12 14:10:27 +080029#define XDL_GUESS_NLINES1 256
30#define XDL_GUESS_NLINES2 20
Linus Torvalds34435462006-03-24 20:13:22 -080031
32
33typedef struct s_xdlclass {
34 struct s_xdlclass *next;
35 unsigned long ha;
36 char const *line;
37 long size;
38 long idx;
Tay Ray Chuan27af01d2011-08-17 09:53:57 +080039 long len1, len2;
Linus Torvalds34435462006-03-24 20:13:22 -080040} xdlclass_t;
41
42typedef struct s_xdlclassifier {
43 unsigned int hbits;
44 long hsize;
45 xdlclass_t **rchash;
46 chastore_t ncha;
Tay Ray Chuan27af01d2011-08-17 09:53:57 +080047 xdlclass_t **rcrecs;
48 long alloc;
Linus Torvalds34435462006-03-24 20:13:22 -080049 long count;
Johannes Schindelin0d21efa2006-06-14 17:40:23 +020050 long flags;
Linus Torvalds34435462006-03-24 20:13:22 -080051} xdlclassifier_t;
52
53
54
55
Johannes Schindelin0d21efa2006-06-14 17:40:23 +020056static int xdl_init_classifier(xdlclassifier_t *cf, long size, long flags);
Linus Torvalds34435462006-03-24 20:13:22 -080057static void xdl_free_classifier(xdlclassifier_t *cf);
Tay Ray Chuan27af01d2011-08-17 09:53:57 +080058static int xdl_classify_record(unsigned int pass, xdlclassifier_t *cf, xrecord_t **rhash,
59 unsigned int hbits, xrecord_t *rec);
60static int xdl_prepare_ctx(unsigned int pass, mmfile_t *mf, long narec, xpparam_t const *xpp,
Linus Torvalds34435462006-03-24 20:13:22 -080061 xdlclassifier_t *cf, xdfile_t *xdf);
62static void xdl_free_ctx(xdfile_t *xdf);
63static int xdl_clean_mmatch(char const *dis, long i, long s, long e);
Tay Ray Chuan27af01d2011-08-17 09:53:57 +080064static int xdl_cleanup_records(xdlclassifier_t *cf, xdfile_t *xdf1, xdfile_t *xdf2);
Linus Torvalds34435462006-03-24 20:13:22 -080065static int xdl_trim_ends(xdfile_t *xdf1, xdfile_t *xdf2);
Tay Ray Chuan27af01d2011-08-17 09:53:57 +080066static int xdl_optimize_ctxs(xdlclassifier_t *cf, xdfile_t *xdf1, xdfile_t *xdf2);
Linus Torvalds34435462006-03-24 20:13:22 -080067
68
69
70
Johannes Schindelin0d21efa2006-06-14 17:40:23 +020071static int xdl_init_classifier(xdlclassifier_t *cf, long size, long flags) {
Johannes Schindelin0d21efa2006-06-14 17:40:23 +020072 cf->flags = flags;
73
Linus Torvalds34435462006-03-24 20:13:22 -080074 cf->hbits = xdl_hashbits((unsigned int) size);
75 cf->hsize = 1 << cf->hbits;
76
77 if (xdl_cha_init(&cf->ncha, sizeof(xdlclass_t), size / 4 + 1) < 0) {
78
79 return -1;
80 }
81 if (!(cf->rchash = (xdlclass_t **) xdl_malloc(cf->hsize * sizeof(xdlclass_t *)))) {
82
83 xdl_cha_free(&cf->ncha);
84 return -1;
85 }
Tay Ray Chuan452f4fa2011-07-07 12:23:55 +080086 memset(cf->rchash, 0, cf->hsize * sizeof(xdlclass_t *));
Linus Torvalds34435462006-03-24 20:13:22 -080087
Tay Ray Chuan27af01d2011-08-17 09:53:57 +080088 cf->alloc = size;
89 if (!(cf->rcrecs = (xdlclass_t **) xdl_malloc(cf->alloc * sizeof(xdlclass_t *)))) {
90
91 xdl_free(cf->rchash);
92 xdl_cha_free(&cf->ncha);
93 return -1;
94 }
95
Linus Torvalds34435462006-03-24 20:13:22 -080096 cf->count = 0;
97
98 return 0;
99}
100
101
102static void xdl_free_classifier(xdlclassifier_t *cf) {
103
Tay Ray Chuan27af01d2011-08-17 09:53:57 +0800104 xdl_free(cf->rcrecs);
Linus Torvalds34435462006-03-24 20:13:22 -0800105 xdl_free(cf->rchash);
106 xdl_cha_free(&cf->ncha);
107}
108
109
Tay Ray Chuan27af01d2011-08-17 09:53:57 +0800110static int xdl_classify_record(unsigned int pass, xdlclassifier_t *cf, xrecord_t **rhash,
111 unsigned int hbits, xrecord_t *rec) {
Linus Torvalds34435462006-03-24 20:13:22 -0800112 long hi;
113 char const *line;
114 xdlclass_t *rcrec;
Tay Ray Chuan27af01d2011-08-17 09:53:57 +0800115 xdlclass_t **rcrecs;
Linus Torvalds34435462006-03-24 20:13:22 -0800116
117 line = rec->ptr;
118 hi = (long) XDL_HASHLONG(rec->ha, cf->hbits);
119 for (rcrec = cf->rchash[hi]; rcrec; rcrec = rcrec->next)
Johannes Schindelin0d21efa2006-06-14 17:40:23 +0200120 if (rcrec->ha == rec->ha &&
121 xdl_recmatch(rcrec->line, rcrec->size,
122 rec->ptr, rec->size, cf->flags))
Linus Torvalds34435462006-03-24 20:13:22 -0800123 break;
124
125 if (!rcrec) {
126 if (!(rcrec = xdl_cha_alloc(&cf->ncha))) {
127
128 return -1;
129 }
130 rcrec->idx = cf->count++;
Tay Ray Chuan27af01d2011-08-17 09:53:57 +0800131 if (cf->count > cf->alloc) {
132 cf->alloc *= 2;
133 if (!(rcrecs = (xdlclass_t **) xdl_realloc(cf->rcrecs, cf->alloc * sizeof(xdlclass_t *)))) {
134
135 return -1;
136 }
137 cf->rcrecs = rcrecs;
138 }
139 cf->rcrecs[rcrec->idx] = rcrec;
Linus Torvalds34435462006-03-24 20:13:22 -0800140 rcrec->line = line;
141 rcrec->size = rec->size;
142 rcrec->ha = rec->ha;
Tay Ray Chuan27af01d2011-08-17 09:53:57 +0800143 rcrec->len1 = rcrec->len2 = 0;
Linus Torvalds34435462006-03-24 20:13:22 -0800144 rcrec->next = cf->rchash[hi];
145 cf->rchash[hi] = rcrec;
146 }
147
Tay Ray Chuan27af01d2011-08-17 09:53:57 +0800148 (pass == 1) ? rcrec->len1++ : rcrec->len2++;
149
Linus Torvalds34435462006-03-24 20:13:22 -0800150 rec->ha = (unsigned long) rcrec->idx;
151
152 hi = (long) XDL_HASHLONG(rec->ha, hbits);
153 rec->next = rhash[hi];
154 rhash[hi] = rec;
155
156 return 0;
157}
158
159
Tay Ray Chuan27af01d2011-08-17 09:53:57 +0800160static int xdl_prepare_ctx(unsigned int pass, mmfile_t *mf, long narec, xpparam_t const *xpp,
Linus Torvalds34435462006-03-24 20:13:22 -0800161 xdlclassifier_t *cf, xdfile_t *xdf) {
162 unsigned int hbits;
Tay Ray Chuan452f4fa2011-07-07 12:23:55 +0800163 long nrec, hsize, bsize;
Linus Torvalds34435462006-03-24 20:13:22 -0800164 unsigned long hav;
165 char const *blk, *cur, *top, *prev;
166 xrecord_t *crec;
167 xrecord_t **recs, **rrecs;
168 xrecord_t **rhash;
169 unsigned long *ha;
170 char *rchg;
171 long *rindex;
172
Tay Ray Chuan159607a2011-07-07 12:23:56 +0800173 ha = NULL;
174 rindex = NULL;
175 rchg = NULL;
176 rhash = NULL;
177 recs = NULL;
Linus Torvalds34435462006-03-24 20:13:22 -0800178
Tay Ray Chuan159607a2011-07-07 12:23:56 +0800179 if (xdl_cha_init(&xdf->rcha, sizeof(xrecord_t), narec / 4 + 1) < 0)
180 goto abort;
181 if (!(recs = (xrecord_t **) xdl_malloc(narec * sizeof(xrecord_t *))))
182 goto abort;
Linus Torvalds34435462006-03-24 20:13:22 -0800183
Junio C Hamano307ab202012-02-19 15:36:55 -0800184 if (XDF_DIFF_ALG(xpp->flags) == XDF_HISTOGRAM_DIFF)
Tay Ray Chuan9f37c272011-07-12 14:10:26 +0800185 hbits = hsize = 0;
186 else {
187 hbits = xdl_hashbits((unsigned int) narec);
188 hsize = 1 << hbits;
189 if (!(rhash = (xrecord_t **) xdl_malloc(hsize * sizeof(xrecord_t *))))
190 goto abort;
191 memset(rhash, 0, hsize * sizeof(xrecord_t *));
Linus Torvalds34435462006-03-24 20:13:22 -0800192 }
Linus Torvalds34435462006-03-24 20:13:22 -0800193
194 nrec = 0;
195 if ((cur = blk = xdl_mmfile_first(mf, &bsize)) != NULL) {
Tay Ray Chuan739864b2011-08-01 12:20:07 +0800196 for (top = blk + bsize; cur < top; ) {
Linus Torvalds34435462006-03-24 20:13:22 -0800197 prev = cur;
Johannes Schindelin0d21efa2006-06-14 17:40:23 +0200198 hav = xdl_hash_record(&cur, top, xpp->flags);
Linus Torvalds34435462006-03-24 20:13:22 -0800199 if (nrec >= narec) {
200 narec *= 2;
Tay Ray Chuan159607a2011-07-07 12:23:56 +0800201 if (!(rrecs = (xrecord_t **) xdl_realloc(recs, narec * sizeof(xrecord_t *))))
202 goto abort;
Linus Torvalds34435462006-03-24 20:13:22 -0800203 recs = rrecs;
204 }
Tay Ray Chuan159607a2011-07-07 12:23:56 +0800205 if (!(crec = xdl_cha_alloc(&xdf->rcha)))
206 goto abort;
Linus Torvalds34435462006-03-24 20:13:22 -0800207 crec->ptr = prev;
208 crec->size = (long) (cur - prev);
209 crec->ha = hav;
210 recs[nrec++] = crec;
211
Junio C Hamano307ab202012-02-19 15:36:55 -0800212 if ((XDF_DIFF_ALG(xpp->flags) != XDF_HISTOGRAM_DIFF) &&
213 xdl_classify_record(pass, cf, rhash, hbits, crec) < 0)
Tay Ray Chuan159607a2011-07-07 12:23:56 +0800214 goto abort;
Linus Torvalds34435462006-03-24 20:13:22 -0800215 }
216 }
217
Tay Ray Chuan159607a2011-07-07 12:23:56 +0800218 if (!(rchg = (char *) xdl_malloc((nrec + 2) * sizeof(char))))
219 goto abort;
Linus Torvalds34435462006-03-24 20:13:22 -0800220 memset(rchg, 0, (nrec + 2) * sizeof(char));
221
Tay Ray Chuan159607a2011-07-07 12:23:56 +0800222 if (!(rindex = (long *) xdl_malloc((nrec + 1) * sizeof(long))))
223 goto abort;
224 if (!(ha = (unsigned long *) xdl_malloc((nrec + 1) * sizeof(unsigned long))))
225 goto abort;
Linus Torvalds34435462006-03-24 20:13:22 -0800226
227 xdf->nrec = nrec;
228 xdf->recs = recs;
229 xdf->hbits = hbits;
230 xdf->rhash = rhash;
231 xdf->rchg = rchg + 1;
232 xdf->rindex = rindex;
233 xdf->nreff = 0;
234 xdf->ha = ha;
235 xdf->dstart = 0;
236 xdf->dend = nrec - 1;
237
238 return 0;
Tay Ray Chuan159607a2011-07-07 12:23:56 +0800239
240abort:
241 xdl_free(ha);
242 xdl_free(rindex);
243 xdl_free(rchg);
244 xdl_free(rhash);
245 xdl_free(recs);
246 xdl_cha_free(&xdf->rcha);
247 return -1;
Linus Torvalds34435462006-03-24 20:13:22 -0800248}
249
250
251static void xdl_free_ctx(xdfile_t *xdf) {
252
253 xdl_free(xdf->rhash);
254 xdl_free(xdf->rindex);
255 xdl_free(xdf->rchg - 1);
256 xdl_free(xdf->ha);
257 xdl_free(xdf->recs);
258 xdl_cha_free(&xdf->rcha);
259}
260
261
262int xdl_prepare_env(mmfile_t *mf1, mmfile_t *mf2, xpparam_t const *xpp,
263 xdfenv_t *xe) {
Tay Ray Chuan86abba82011-07-12 14:10:27 +0800264 long enl1, enl2, sample;
Linus Torvalds34435462006-03-24 20:13:22 -0800265 xdlclassifier_t cf;
266
Tay Ray Chuan2738bc32011-08-31 12:48:46 +0800267 memset(&cf, 0, sizeof(cf));
268
Tay Ray Chuan86abba82011-07-12 14:10:27 +0800269 /*
270 * For histogram diff, we can afford a smaller sample size and
271 * thus a poorer estimate of the number of lines, as the hash
272 * table (rhash) won't be filled up/grown. The number of lines
273 * (nrecs) will be updated correctly anyway by
274 * xdl_prepare_ctx().
275 */
Junio C Hamano307ab202012-02-19 15:36:55 -0800276 sample = (XDF_DIFF_ALG(xpp->flags) == XDF_HISTOGRAM_DIFF
277 ? XDL_GUESS_NLINES2 : XDL_GUESS_NLINES1);
Linus Torvalds34435462006-03-24 20:13:22 -0800278
Tay Ray Chuan86abba82011-07-12 14:10:27 +0800279 enl1 = xdl_guess_lines(mf1, sample) + 1;
280 enl2 = xdl_guess_lines(mf2, sample) + 1;
Linus Torvalds34435462006-03-24 20:13:22 -0800281
Junio C Hamano307ab202012-02-19 15:36:55 -0800282 if (XDF_DIFF_ALG(xpp->flags) != XDF_HISTOGRAM_DIFF &&
283 xdl_init_classifier(&cf, enl1 + enl2 + 1, xpp->flags) < 0)
Linus Torvalds34435462006-03-24 20:13:22 -0800284 return -1;
Linus Torvalds34435462006-03-24 20:13:22 -0800285
Tay Ray Chuan27af01d2011-08-17 09:53:57 +0800286 if (xdl_prepare_ctx(1, mf1, enl1, xpp, &cf, &xe->xdf1) < 0) {
Linus Torvalds34435462006-03-24 20:13:22 -0800287
288 xdl_free_classifier(&cf);
289 return -1;
290 }
Tay Ray Chuan27af01d2011-08-17 09:53:57 +0800291 if (xdl_prepare_ctx(2, mf2, enl2, xpp, &cf, &xe->xdf2) < 0) {
Linus Torvalds34435462006-03-24 20:13:22 -0800292
293 xdl_free_ctx(&xe->xdf1);
294 xdl_free_classifier(&cf);
295 return -1;
296 }
297
Junio C Hamano307ab202012-02-19 15:36:55 -0800298 if ((XDF_DIFF_ALG(xpp->flags) != XDF_PATIENCE_DIFF) &&
299 (XDF_DIFF_ALG(xpp->flags) != XDF_HISTOGRAM_DIFF) &&
300 xdl_optimize_ctxs(&cf, &xe->xdf1, &xe->xdf2) < 0) {
Linus Torvalds34435462006-03-24 20:13:22 -0800301
302 xdl_free_ctx(&xe->xdf2);
303 xdl_free_ctx(&xe->xdf1);
304 return -1;
305 }
306
Junio C Hamanob14b9692011-08-17 17:17:16 -0700307 if (!(xpp->flags & XDF_HISTOGRAM_DIFF))
308 xdl_free_classifier(&cf);
Tay Ray Chuan27af01d2011-08-17 09:53:57 +0800309
Linus Torvalds34435462006-03-24 20:13:22 -0800310 return 0;
311}
312
313
314void xdl_free_env(xdfenv_t *xe) {
315
316 xdl_free_ctx(&xe->xdf2);
317 xdl_free_ctx(&xe->xdf1);
318}
319
320
321static int xdl_clean_mmatch(char const *dis, long i, long s, long e) {
Davide Libenzica557af2006-04-03 18:47:55 -0700322 long r, rdis0, rpdis0, rdis1, rpdis1;
Linus Torvalds34435462006-03-24 20:13:22 -0800323
Davide Libenzica557af2006-04-03 18:47:55 -0700324 /*
Davide Libenzi9b28d552008-11-07 21:24:33 -0800325 * Limits the window the is examined during the similar-lines
326 * scan. The loops below stops when dis[i - r] == 1 (line that
327 * has no match), but there are corner cases where the loop
328 * proceed all the way to the extremities by causing huge
329 * performance penalties in case of big files.
330 */
331 if (i - s > XDL_SIMSCAN_WINDOW)
332 s = i - XDL_SIMSCAN_WINDOW;
333 if (e - i > XDL_SIMSCAN_WINDOW)
334 e = i + XDL_SIMSCAN_WINDOW;
335
336 /*
Davide Libenzica557af2006-04-03 18:47:55 -0700337 * Scans the lines before 'i' to find a run of lines that either
338 * have no match (dis[j] == 0) or have multiple matches (dis[j] > 1).
339 * Note that we always call this function with dis[i] > 1, so the
340 * current line (i) is already a multimatch line.
341 */
342 for (r = 1, rdis0 = 0, rpdis0 = 1; (i - r) >= s; r++) {
Linus Torvalds34435462006-03-24 20:13:22 -0800343 if (!dis[i - r])
Davide Libenzica557af2006-04-03 18:47:55 -0700344 rdis0++;
Linus Torvalds34435462006-03-24 20:13:22 -0800345 else if (dis[i - r] == 2)
Davide Libenzica557af2006-04-03 18:47:55 -0700346 rpdis0++;
Linus Torvalds34435462006-03-24 20:13:22 -0800347 else
348 break;
349 }
Davide Libenzica557af2006-04-03 18:47:55 -0700350 /*
351 * If the run before the line 'i' found only multimatch lines, we
352 * return 0 and hence we don't make the current line (i) discarded.
353 * We want to discard multimatch lines only when they appear in the
354 * middle of runs with nomatch lines (dis[j] == 0).
355 */
356 if (rdis0 == 0)
357 return 0;
358 for (r = 1, rdis1 = 0, rpdis1 = 1; (i + r) <= e; r++) {
Linus Torvalds34435462006-03-24 20:13:22 -0800359 if (!dis[i + r])
Davide Libenzica557af2006-04-03 18:47:55 -0700360 rdis1++;
Linus Torvalds34435462006-03-24 20:13:22 -0800361 else if (dis[i + r] == 2)
Davide Libenzica557af2006-04-03 18:47:55 -0700362 rpdis1++;
Linus Torvalds34435462006-03-24 20:13:22 -0800363 else
364 break;
365 }
Davide Libenzica557af2006-04-03 18:47:55 -0700366 /*
367 * If the run after the line 'i' found only multimatch lines, we
368 * return 0 and hence we don't make the current line (i) discarded.
369 */
370 if (rdis1 == 0)
371 return 0;
372 rdis1 += rdis0;
373 rpdis1 += rpdis0;
Linus Torvalds34435462006-03-24 20:13:22 -0800374
Davide Libenzica557af2006-04-03 18:47:55 -0700375 return rpdis1 * XDL_KPDIS_RUN < (rpdis1 + rdis1);
Linus Torvalds34435462006-03-24 20:13:22 -0800376}
377
378
379/*
380 * Try to reduce the problem complexity, discard records that have no
381 * matches on the other file. Also, lines that have multiple matches
382 * might be potentially discarded if they happear in a run of discardable.
383 */
Tay Ray Chuan27af01d2011-08-17 09:53:57 +0800384static int xdl_cleanup_records(xdlclassifier_t *cf, xdfile_t *xdf1, xdfile_t *xdf2) {
René Scharfec5aa9062011-09-25 21:39:08 +0800385 long i, nm, nreff, mlim;
Linus Torvalds34435462006-03-24 20:13:22 -0800386 xrecord_t **recs;
Tay Ray Chuan27af01d2011-08-17 09:53:57 +0800387 xdlclass_t *rcrec;
Linus Torvalds34435462006-03-24 20:13:22 -0800388 char *dis, *dis1, *dis2;
389
Davide Libenzica557af2006-04-03 18:47:55 -0700390 if (!(dis = (char *) xdl_malloc(xdf1->nrec + xdf2->nrec + 2))) {
Linus Torvalds34435462006-03-24 20:13:22 -0800391
392 return -1;
393 }
Davide Libenzica557af2006-04-03 18:47:55 -0700394 memset(dis, 0, xdf1->nrec + xdf2->nrec + 2);
Linus Torvalds34435462006-03-24 20:13:22 -0800395 dis1 = dis;
396 dis2 = dis1 + xdf1->nrec + 1;
397
René Scharfec5aa9062011-09-25 21:39:08 +0800398 if ((mlim = xdl_bogosqrt(xdf1->nrec)) > XDL_MAX_EQLIMIT)
399 mlim = XDL_MAX_EQLIMIT;
Linus Torvalds34435462006-03-24 20:13:22 -0800400 for (i = xdf1->dstart, recs = &xdf1->recs[xdf1->dstart]; i <= xdf1->dend; i++, recs++) {
Tay Ray Chuan27af01d2011-08-17 09:53:57 +0800401 rcrec = cf->rcrecs[(*recs)->ha];
402 nm = rcrec ? rcrec->len2 : 0;
René Scharfec5aa9062011-09-25 21:39:08 +0800403 dis1[i] = (nm == 0) ? 0: (nm >= mlim) ? 2: 1;
Linus Torvalds34435462006-03-24 20:13:22 -0800404 }
405
René Scharfec5aa9062011-09-25 21:39:08 +0800406 if ((mlim = xdl_bogosqrt(xdf2->nrec)) > XDL_MAX_EQLIMIT)
407 mlim = XDL_MAX_EQLIMIT;
Linus Torvalds34435462006-03-24 20:13:22 -0800408 for (i = xdf2->dstart, recs = &xdf2->recs[xdf2->dstart]; i <= xdf2->dend; i++, recs++) {
Tay Ray Chuan27af01d2011-08-17 09:53:57 +0800409 rcrec = cf->rcrecs[(*recs)->ha];
410 nm = rcrec ? rcrec->len1 : 0;
René Scharfec5aa9062011-09-25 21:39:08 +0800411 dis2[i] = (nm == 0) ? 0: (nm >= mlim) ? 2: 1;
Linus Torvalds34435462006-03-24 20:13:22 -0800412 }
413
414 for (nreff = 0, i = xdf1->dstart, recs = &xdf1->recs[xdf1->dstart];
415 i <= xdf1->dend; i++, recs++) {
416 if (dis1[i] == 1 ||
417 (dis1[i] == 2 && !xdl_clean_mmatch(dis1, i, xdf1->dstart, xdf1->dend))) {
418 xdf1->rindex[nreff] = i;
419 xdf1->ha[nreff] = (*recs)->ha;
420 nreff++;
421 } else
422 xdf1->rchg[i] = 1;
423 }
424 xdf1->nreff = nreff;
425
426 for (nreff = 0, i = xdf2->dstart, recs = &xdf2->recs[xdf2->dstart];
427 i <= xdf2->dend; i++, recs++) {
428 if (dis2[i] == 1 ||
429 (dis2[i] == 2 && !xdl_clean_mmatch(dis2, i, xdf2->dstart, xdf2->dend))) {
430 xdf2->rindex[nreff] = i;
431 xdf2->ha[nreff] = (*recs)->ha;
432 nreff++;
433 } else
434 xdf2->rchg[i] = 1;
435 }
436 xdf2->nreff = nreff;
437
438 xdl_free(dis);
439
440 return 0;
441}
442
443
444/*
445 * Early trim initial and terminal matching records.
446 */
447static int xdl_trim_ends(xdfile_t *xdf1, xdfile_t *xdf2) {
448 long i, lim;
449 xrecord_t **recs1, **recs2;
450
451 recs1 = xdf1->recs;
452 recs2 = xdf2->recs;
453 for (i = 0, lim = XDL_MIN(xdf1->nrec, xdf2->nrec); i < lim;
454 i++, recs1++, recs2++)
455 if ((*recs1)->ha != (*recs2)->ha)
456 break;
457
458 xdf1->dstart = xdf2->dstart = i;
459
460 recs1 = xdf1->recs + xdf1->nrec - 1;
461 recs2 = xdf2->recs + xdf2->nrec - 1;
462 for (lim -= i, i = 0; i < lim; i++, recs1--, recs2--)
463 if ((*recs1)->ha != (*recs2)->ha)
464 break;
465
466 xdf1->dend = xdf1->nrec - i - 1;
467 xdf2->dend = xdf2->nrec - i - 1;
468
469 return 0;
470}
471
472
Tay Ray Chuan27af01d2011-08-17 09:53:57 +0800473static int xdl_optimize_ctxs(xdlclassifier_t *cf, xdfile_t *xdf1, xdfile_t *xdf2) {
Linus Torvalds34435462006-03-24 20:13:22 -0800474
475 if (xdl_trim_ends(xdf1, xdf2) < 0 ||
Tay Ray Chuan27af01d2011-08-17 09:53:57 +0800476 xdl_cleanup_records(cf, xdf1, xdf2) < 0) {
Linus Torvalds34435462006-03-24 20:13:22 -0800477
478 return -1;
479 }
480
481 return 0;
482}