2 * LibXDiff by Davide Libenzi ( File Differential Library )
3 * Copyright (C) 2003 Davide Libenzi
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.
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.
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
19 * Davide Libenzi <davidel@xmailserver.org>
27 #define XDL_KPDIS_RUN 4
28 #define XDL_MAX_EQLIMIT 1024
32 typedef struct s_xdlclass {
33 struct s_xdlclass *next;
40 typedef struct s_xdlclassifier {
52 static int xdl_init_classifier(xdlclassifier_t *cf, long size, long flags);
53 static void xdl_free_classifier(xdlclassifier_t *cf);
54 static int xdl_classify_record(xdlclassifier_t *cf, xrecord_t **rhash, unsigned int hbits,
56 static int xdl_prepare_ctx(mmfile_t *mf, long narec, xpparam_t const *xpp,
57 xdlclassifier_t *cf, xdfile_t *xdf);
58 static void xdl_free_ctx(xdfile_t *xdf);
59 static int xdl_clean_mmatch(char const *dis, long i, long s, long e);
60 static int xdl_cleanup_records(xdfile_t *xdf1, xdfile_t *xdf2);
61 static int xdl_trim_ends(xdfile_t *xdf1, xdfile_t *xdf2);
62 static int xdl_optimize_ctxs(xdfile_t *xdf1, xdfile_t *xdf2);
67 static int xdl_init_classifier(xdlclassifier_t *cf, long size, long flags) {
72 cf->hbits = xdl_hashbits((unsigned int) size);
73 cf->hsize = 1 << cf->hbits;
75 if (xdl_cha_init(&cf->ncha, sizeof(xdlclass_t), size / 4 + 1) < 0) {
79 if (!(cf->rchash = (xdlclass_t **) xdl_malloc(cf->hsize * sizeof(xdlclass_t *)))) {
81 xdl_cha_free(&cf->ncha);
84 for (i = 0; i < cf->hsize; i++)
93 static void xdl_free_classifier(xdlclassifier_t *cf) {
96 xdl_cha_free(&cf->ncha);
100 static int xdl_classify_record(xdlclassifier_t *cf, xrecord_t **rhash, unsigned int hbits,
107 hi = (long) XDL_HASHLONG(rec->ha, cf->hbits);
108 for (rcrec = cf->rchash[hi]; rcrec; rcrec = rcrec->next)
109 if (rcrec->ha == rec->ha &&
110 xdl_recmatch(rcrec->line, rcrec->size,
111 rec->ptr, rec->size, cf->flags))
115 if (!(rcrec = xdl_cha_alloc(&cf->ncha))) {
119 rcrec->idx = cf->count++;
121 rcrec->size = rec->size;
123 rcrec->next = cf->rchash[hi];
124 cf->rchash[hi] = rcrec;
127 rec->ha = (unsigned long) rcrec->idx;
129 hi = (long) XDL_HASHLONG(rec->ha, hbits);
130 rec->next = rhash[hi];
137 static int xdl_prepare_ctx(mmfile_t *mf, long narec, xpparam_t const *xpp,
138 xdlclassifier_t *cf, xdfile_t *xdf) {
140 long i, nrec, hsize, bsize;
142 char const *blk, *cur, *top, *prev;
144 xrecord_t **recs, **rrecs;
150 if (xdl_cha_init(&xdf->rcha, sizeof(xrecord_t), narec / 4 + 1) < 0) {
154 if (!(recs = (xrecord_t **) xdl_malloc(narec * sizeof(xrecord_t *)))) {
156 xdl_cha_free(&xdf->rcha);
160 hbits = xdl_hashbits((unsigned int) narec);
162 if (!(rhash = (xrecord_t **) xdl_malloc(hsize * sizeof(xrecord_t *)))) {
165 xdl_cha_free(&xdf->rcha);
168 for (i = 0; i < hsize; i++)
172 if ((cur = blk = xdl_mmfile_first(mf, &bsize)) != NULL) {
173 for (top = blk + bsize;;) {
175 if (!(cur = blk = xdl_mmfile_next(mf, &bsize)))
180 hav = xdl_hash_record(&cur, top, xpp->flags);
183 if (!(rrecs = (xrecord_t **) xdl_realloc(recs, narec * sizeof(xrecord_t *)))) {
187 xdl_cha_free(&xdf->rcha);
192 if (!(crec = xdl_cha_alloc(&xdf->rcha))) {
196 xdl_cha_free(&xdf->rcha);
200 crec->size = (long) (cur - prev);
204 if (xdl_classify_record(cf, rhash, hbits, crec) < 0) {
208 xdl_cha_free(&xdf->rcha);
214 if (!(rchg = (char *) xdl_malloc((nrec + 2) * sizeof(char)))) {
218 xdl_cha_free(&xdf->rcha);
221 memset(rchg, 0, (nrec + 2) * sizeof(char));
223 if (!(rindex = (long *) xdl_malloc((nrec + 1) * sizeof(long)))) {
228 xdl_cha_free(&xdf->rcha);
231 if (!(ha = (unsigned long *) xdl_malloc((nrec + 1) * sizeof(unsigned long)))) {
237 xdl_cha_free(&xdf->rcha);
245 xdf->rchg = rchg + 1;
246 xdf->rindex = rindex;
250 xdf->dend = nrec - 1;
256 static void xdl_free_ctx(xdfile_t *xdf) {
258 xdl_free(xdf->rhash);
259 xdl_free(xdf->rindex);
260 xdl_free(xdf->rchg - 1);
263 xdl_cha_free(&xdf->rcha);
267 int xdl_prepare_env(mmfile_t *mf1, mmfile_t *mf2, xpparam_t const *xpp,
272 enl1 = xdl_guess_lines(mf1) + 1;
273 enl2 = xdl_guess_lines(mf2) + 1;
275 if (xdl_init_classifier(&cf, enl1 + enl2 + 1, xpp->flags) < 0) {
280 if (xdl_prepare_ctx(mf1, enl1, xpp, &cf, &xe->xdf1) < 0) {
282 xdl_free_classifier(&cf);
285 if (xdl_prepare_ctx(mf2, enl2, xpp, &cf, &xe->xdf2) < 0) {
287 xdl_free_ctx(&xe->xdf1);
288 xdl_free_classifier(&cf);
292 xdl_free_classifier(&cf);
294 if (xdl_optimize_ctxs(&xe->xdf1, &xe->xdf2) < 0) {
296 xdl_free_ctx(&xe->xdf2);
297 xdl_free_ctx(&xe->xdf1);
305 void xdl_free_env(xdfenv_t *xe) {
307 xdl_free_ctx(&xe->xdf2);
308 xdl_free_ctx(&xe->xdf1);
312 static int xdl_clean_mmatch(char const *dis, long i, long s, long e) {
313 long r, rdis0, rpdis0, rdis1, rpdis1;
316 * Scans the lines before 'i' to find a run of lines that either
317 * have no match (dis[j] == 0) or have multiple matches (dis[j] > 1).
318 * Note that we always call this function with dis[i] > 1, so the
319 * current line (i) is already a multimatch line.
321 for (r = 1, rdis0 = 0, rpdis0 = 1; (i - r) >= s; r++) {
324 else if (dis[i - r] == 2)
330 * If the run before the line 'i' found only multimatch lines, we
331 * return 0 and hence we don't make the current line (i) discarded.
332 * We want to discard multimatch lines only when they appear in the
333 * middle of runs with nomatch lines (dis[j] == 0).
337 for (r = 1, rdis1 = 0, rpdis1 = 1; (i + r) <= e; r++) {
340 else if (dis[i + r] == 2)
346 * If the run after the line 'i' found only multimatch lines, we
347 * return 0 and hence we don't make the current line (i) discarded.
354 return rpdis1 * XDL_KPDIS_RUN < (rpdis1 + rdis1);
359 * Try to reduce the problem complexity, discard records that have no
360 * matches on the other file. Also, lines that have multiple matches
361 * might be potentially discarded if they happear in a run of discardable.
363 static int xdl_cleanup_records(xdfile_t *xdf1, xdfile_t *xdf2) {
364 long i, nm, rhi, nreff, mlim;
368 char *dis, *dis1, *dis2;
370 if (!(dis = (char *) xdl_malloc(xdf1->nrec + xdf2->nrec + 2))) {
374 memset(dis, 0, xdf1->nrec + xdf2->nrec + 2);
376 dis2 = dis1 + xdf1->nrec + 1;
378 if ((mlim = xdl_bogosqrt(xdf1->nrec)) > XDL_MAX_EQLIMIT)
379 mlim = XDL_MAX_EQLIMIT;
380 for (i = xdf1->dstart, recs = &xdf1->recs[xdf1->dstart]; i <= xdf1->dend; i++, recs++) {
382 rhi = (long) XDL_HASHLONG(hav, xdf2->hbits);
383 for (nm = 0, rec = xdf2->rhash[rhi]; rec; rec = rec->next)
384 if (rec->ha == hav && ++nm == mlim)
386 dis1[i] = (nm == 0) ? 0: (nm >= mlim) ? 2: 1;
389 if ((mlim = xdl_bogosqrt(xdf2->nrec)) > XDL_MAX_EQLIMIT)
390 mlim = XDL_MAX_EQLIMIT;
391 for (i = xdf2->dstart, recs = &xdf2->recs[xdf2->dstart]; i <= xdf2->dend; i++, recs++) {
393 rhi = (long) XDL_HASHLONG(hav, xdf1->hbits);
394 for (nm = 0, rec = xdf1->rhash[rhi]; rec; rec = rec->next)
395 if (rec->ha == hav && ++nm == mlim)
397 dis2[i] = (nm == 0) ? 0: (nm >= mlim) ? 2: 1;
400 for (nreff = 0, i = xdf1->dstart, recs = &xdf1->recs[xdf1->dstart];
401 i <= xdf1->dend; i++, recs++) {
403 (dis1[i] == 2 && !xdl_clean_mmatch(dis1, i, xdf1->dstart, xdf1->dend))) {
404 xdf1->rindex[nreff] = i;
405 xdf1->ha[nreff] = (*recs)->ha;
412 for (nreff = 0, i = xdf2->dstart, recs = &xdf2->recs[xdf2->dstart];
413 i <= xdf2->dend; i++, recs++) {
415 (dis2[i] == 2 && !xdl_clean_mmatch(dis2, i, xdf2->dstart, xdf2->dend))) {
416 xdf2->rindex[nreff] = i;
417 xdf2->ha[nreff] = (*recs)->ha;
431 * Early trim initial and terminal matching records.
433 static int xdl_trim_ends(xdfile_t *xdf1, xdfile_t *xdf2) {
435 xrecord_t **recs1, **recs2;
439 for (i = 0, lim = XDL_MIN(xdf1->nrec, xdf2->nrec); i < lim;
440 i++, recs1++, recs2++)
441 if ((*recs1)->ha != (*recs2)->ha)
444 xdf1->dstart = xdf2->dstart = i;
446 recs1 = xdf1->recs + xdf1->nrec - 1;
447 recs2 = xdf2->recs + xdf2->nrec - 1;
448 for (lim -= i, i = 0; i < lim; i++, recs1--, recs2--)
449 if ((*recs1)->ha != (*recs2)->ha)
452 xdf1->dend = xdf1->nrec - i - 1;
453 xdf2->dend = xdf2->nrec - i - 1;
459 static int xdl_optimize_ctxs(xdfile_t *xdf1, xdfile_t *xdf2) {
461 if (xdl_trim_ends(xdf1, xdf2) < 0 ||
462 xdl_cleanup_records(xdf1, xdf2) < 0) {