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>
28 static long xdl_get_rec(xdfile_t *xdf, long ri, char const **rec);
29 static int xdl_emit_record(xdfile_t *xdf, long ri, char const *pre, xdemitcb_t *ecb);
30 static xdchange_t *xdl_get_hunk(xdchange_t *xscr, xdemitconf_t const *xecfg);
35 static long xdl_get_rec(xdfile_t *xdf, long ri, char const **rec) {
37 *rec = xdf->recs[ri]->ptr;
39 return xdf->recs[ri]->size;
43 static int xdl_emit_record(xdfile_t *xdf, long ri, char const *pre, xdemitcb_t *ecb) {
44 long size, psize = strlen(pre);
47 size = xdl_get_rec(xdf, ri, &rec);
48 if (xdl_emit_diffrec(rec, size, pre, psize, ecb) < 0) {
58 * Starting at the passed change atom, find the latest change atom to be included
59 * inside the differential hunk according to the specified configuration.
61 static xdchange_t *xdl_get_hunk(xdchange_t *xscr, xdemitconf_t const *xecfg) {
62 xdchange_t *xch, *xchp;
64 for (xchp = xscr, xch = xscr->next; xch; xchp = xch, xch = xch->next)
65 if (xch->i1 - (xchp->i1 + xchp->chg1) > 2 * xecfg->ctxlen)
72 int xdl_emit_diff(xdfenv_t *xe, xdchange_t *xscr, xdemitcb_t *ecb,
73 xdemitconf_t const *xecfg) {
74 long s1, s2, e1, e2, lctx;
75 xdchange_t *xch, *xche;
77 for (xch = xche = xscr; xch; xch = xche->next) {
78 xche = xdl_get_hunk(xch, xecfg);
80 s1 = XDL_MAX(xch->i1 - xecfg->ctxlen, 0);
81 s2 = XDL_MAX(xch->i2 - xecfg->ctxlen, 0);
84 lctx = XDL_MIN(lctx, xe->xdf1.nrec - (xche->i1 + xche->chg1));
85 lctx = XDL_MIN(lctx, xe->xdf2.nrec - (xche->i2 + xche->chg2));
87 e1 = xche->i1 + xche->chg1 + lctx;
88 e2 = xche->i2 + xche->chg2 + lctx;
91 * Emit current hunk header.
93 if (xdl_emit_hunk_hdr(s1 + 1, e1 - s1, s2 + 1, e2 - s2, ecb) < 0)
99 for (; s1 < xch->i1; s1++)
100 if (xdl_emit_record(&xe->xdf1, s1, " ", ecb) < 0)
103 for (s1 = xch->i1, s2 = xch->i2;; xch = xch->next) {
105 * Merge previous with current change atom.
107 for (; s1 < xch->i1 && s2 < xch->i2; s1++, s2++)
108 if (xdl_emit_record(&xe->xdf1, s1, " ", ecb) < 0)
112 * Removes lines from the first file.
114 for (s1 = xch->i1; s1 < xch->i1 + xch->chg1; s1++)
115 if (xdl_emit_record(&xe->xdf1, s1, "-", ecb) < 0)
119 * Adds lines from the second file.
121 for (s2 = xch->i2; s2 < xch->i2 + xch->chg2; s2++)
122 if (xdl_emit_record(&xe->xdf2, s2, "+", ecb) < 0)
127 s1 = xch->i1 + xch->chg1;
128 s2 = xch->i2 + xch->chg2;
134 for (s1 = xche->i1 + xche->chg1; s1 < e1; s1++)
135 if (xdl_emit_record(&xe->xdf1, s1, " ", ecb) < 0)