set_git_dir: handle feeding gitdir to itself
[git.git] / xdiff / xemit.c
blob8c88dbde3827ce9d1b5e4f95287513514b80fac1
1 /*
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>
23 #include "xinclude.h"
25 static long xdl_get_rec(xdfile_t *xdf, long ri, char const **rec) {
27 *rec = xdf->recs[ri]->ptr;
29 return xdf->recs[ri]->size;
33 static int xdl_emit_record(xdfile_t *xdf, long ri, char const *pre, xdemitcb_t *ecb) {
34 long size, psize = strlen(pre);
35 char const *rec;
37 size = xdl_get_rec(xdf, ri, &rec);
38 if (xdl_emit_diffrec(rec, size, pre, psize, ecb) < 0) {
40 return -1;
43 return 0;
48 * Starting at the passed change atom, find the latest change atom to be included
49 * inside the differential hunk according to the specified configuration.
50 * Also advance xscr if the first changes must be discarded.
52 xdchange_t *xdl_get_hunk(xdchange_t **xscr, xdemitconf_t const *xecfg)
54 xdchange_t *xch, *xchp, *lxch;
55 long max_common = 2 * xecfg->ctxlen + xecfg->interhunkctxlen;
56 long max_ignorable = xecfg->ctxlen;
57 unsigned long ignored = 0; /* number of ignored blank lines */
59 /* remove ignorable changes that are too far before other changes */
60 for (xchp = *xscr; xchp && xchp->ignore; xchp = xchp->next) {
61 xch = xchp->next;
63 if (xch == NULL ||
64 xch->i1 - (xchp->i1 + xchp->chg1) >= max_ignorable)
65 *xscr = xch;
68 if (*xscr == NULL)
69 return NULL;
71 lxch = *xscr;
73 for (xchp = *xscr, xch = xchp->next; xch; xchp = xch, xch = xch->next) {
74 long distance = xch->i1 - (xchp->i1 + xchp->chg1);
75 if (distance > max_common)
76 break;
78 if (distance < max_ignorable && (!xch->ignore || lxch == xchp)) {
79 lxch = xch;
80 ignored = 0;
81 } else if (distance < max_ignorable && xch->ignore) {
82 ignored += xch->chg2;
83 } else if (lxch != xchp &&
84 xch->i1 + ignored - (lxch->i1 + lxch->chg1) > max_common) {
85 break;
86 } else if (!xch->ignore) {
87 lxch = xch;
88 ignored = 0;
89 } else {
90 ignored += xch->chg2;
94 return lxch;
98 static long def_ff(const char *rec, long len, char *buf, long sz, void *priv)
100 if (len > 0 &&
101 (isalpha((unsigned char)*rec) || /* identifier? */
102 *rec == '_' || /* also identifier? */
103 *rec == '$')) { /* identifiers from VMS and other esoterico */
104 if (len > sz)
105 len = sz;
106 while (0 < len && isspace((unsigned char)rec[len - 1]))
107 len--;
108 memcpy(buf, rec, len);
109 return len;
111 return -1;
114 static long match_func_rec(xdfile_t *xdf, xdemitconf_t const *xecfg, long ri,
115 char *buf, long sz)
117 const char *rec;
118 long len = xdl_get_rec(xdf, ri, &rec);
119 if (!xecfg->find_func)
120 return def_ff(rec, len, buf, sz, xecfg->find_func_priv);
121 return xecfg->find_func(rec, len, buf, sz, xecfg->find_func_priv);
124 struct func_line {
125 long len;
126 char buf[80];
129 static long get_func_line(xdfenv_t *xe, xdemitconf_t const *xecfg,
130 struct func_line *func_line, long start, long limit)
132 long l, size, step = (start > limit) ? -1 : 1;
133 char *buf, dummy[1];
135 buf = func_line ? func_line->buf : dummy;
136 size = func_line ? sizeof(func_line->buf) : sizeof(dummy);
138 for (l = start; l != limit && 0 <= l && l < xe->xdf1.nrec; l += step) {
139 long len = match_func_rec(&xe->xdf1, xecfg, l, buf, size);
140 if (len >= 0) {
141 if (func_line)
142 func_line->len = len;
143 return l;
146 return -1;
149 static int is_empty_rec(xdfile_t *xdf, long ri)
151 const char *rec;
152 long len = xdl_get_rec(xdf, ri, &rec);
154 while (len > 0 && XDL_ISSPACE(*rec)) {
155 rec++;
156 len--;
158 return !len;
161 int xdl_emit_diff(xdfenv_t *xe, xdchange_t *xscr, xdemitcb_t *ecb,
162 xdemitconf_t const *xecfg) {
163 long s1, s2, e1, e2, lctx;
164 xdchange_t *xch, *xche;
165 long funclineprev = -1;
166 struct func_line func_line = { 0 };
168 for (xch = xscr; xch; xch = xche->next) {
169 xche = xdl_get_hunk(&xch, xecfg);
170 if (!xch)
171 break;
173 s1 = XDL_MAX(xch->i1 - xecfg->ctxlen, 0);
174 s2 = XDL_MAX(xch->i2 - xecfg->ctxlen, 0);
176 if (xecfg->flags & XDL_EMIT_FUNCCONTEXT) {
177 long fs1, i1 = xch->i1;
179 /* Appended chunk? */
180 if (i1 >= xe->xdf1.nrec) {
181 char dummy[1];
182 long i2 = xch->i2;
185 * We don't need additional context if
186 * a whole function was added.
188 while (i2 < xe->xdf2.nrec) {
189 if (match_func_rec(&xe->xdf2, xecfg, i2,
190 dummy, sizeof(dummy)) >= 0)
191 goto post_context_calculation;
192 i2++;
196 * Otherwise get more context from the
197 * pre-image.
199 i1 = xe->xdf1.nrec - 1;
202 fs1 = get_func_line(xe, xecfg, NULL, i1, -1);
203 if (fs1 < 0)
204 fs1 = 0;
205 if (fs1 < s1) {
206 s2 -= s1 - fs1;
207 s1 = fs1;
211 post_context_calculation:
212 lctx = xecfg->ctxlen;
213 lctx = XDL_MIN(lctx, xe->xdf1.nrec - (xche->i1 + xche->chg1));
214 lctx = XDL_MIN(lctx, xe->xdf2.nrec - (xche->i2 + xche->chg2));
216 e1 = xche->i1 + xche->chg1 + lctx;
217 e2 = xche->i2 + xche->chg2 + lctx;
219 if (xecfg->flags & XDL_EMIT_FUNCCONTEXT) {
220 long fe1 = get_func_line(xe, xecfg, NULL,
221 xche->i1 + xche->chg1,
222 xe->xdf1.nrec);
223 while (fe1 > 0 && is_empty_rec(&xe->xdf1, fe1 - 1))
224 fe1--;
225 if (fe1 < 0)
226 fe1 = xe->xdf1.nrec;
227 if (fe1 > e1) {
228 e2 += fe1 - e1;
229 e1 = fe1;
233 * Overlap with next change? Then include it
234 * in the current hunk and start over to find
235 * its new end.
237 if (xche->next) {
238 long l = XDL_MIN(xche->next->i1,
239 xe->xdf1.nrec - 1);
240 if (l - xecfg->ctxlen <= e1 ||
241 get_func_line(xe, xecfg, NULL, l, e1) < 0) {
242 xche = xche->next;
243 goto post_context_calculation;
249 * Emit current hunk header.
252 if (xecfg->flags & XDL_EMIT_FUNCNAMES) {
253 get_func_line(xe, xecfg, &func_line,
254 s1 - 1, funclineprev);
255 funclineprev = s1 - 1;
257 if (xdl_emit_hunk_hdr(s1 + 1, e1 - s1, s2 + 1, e2 - s2,
258 func_line.buf, func_line.len, ecb) < 0)
259 return -1;
262 * Emit pre-context.
264 for (; s2 < xch->i2; s2++)
265 if (xdl_emit_record(&xe->xdf2, s2, " ", ecb) < 0)
266 return -1;
268 for (s1 = xch->i1, s2 = xch->i2;; xch = xch->next) {
270 * Merge previous with current change atom.
272 for (; s1 < xch->i1 && s2 < xch->i2; s1++, s2++)
273 if (xdl_emit_record(&xe->xdf2, s2, " ", ecb) < 0)
274 return -1;
277 * Removes lines from the first file.
279 for (s1 = xch->i1; s1 < xch->i1 + xch->chg1; s1++)
280 if (xdl_emit_record(&xe->xdf1, s1, "-", ecb) < 0)
281 return -1;
284 * Adds lines from the second file.
286 for (s2 = xch->i2; s2 < xch->i2 + xch->chg2; s2++)
287 if (xdl_emit_record(&xe->xdf2, s2, "+", ecb) < 0)
288 return -1;
290 if (xch == xche)
291 break;
292 s1 = xch->i1 + xch->chg1;
293 s2 = xch->i2 + xch->chg2;
297 * Emit post-context.
299 for (s2 = xche->i2 + xche->chg2; s2 < e2; s2++)
300 if (xdl_emit_record(&xe->xdf2, s2, " ", ecb) < 0)
301 return -1;
304 return 0;