]> git.proxmox.com Git - libgit2.git/blob - src/xdiff/xemit.c
Merge branch 'portable-zu'
[libgit2.git] / src / xdiff / xemit.c
1 /*
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
26
27
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
31
32
33
34 static long xdl_get_rec(xdfile_t *xdf, long ri, char const **rec) {
35
36 *rec = xdf->recs[ri]->ptr;
37
38 return xdf->recs[ri]->size;
39 }
40
41
42 static int xdl_emit_record(xdfile_t *xdf, long ri, char const *pre, xdemitcb_t *ecb) {
43 long size, psize = (long)strlen(pre);
44 char const *rec;
45
46 size = xdl_get_rec(xdf, ri, &rec);
47 if (xdl_emit_diffrec(rec, size, pre, psize, ecb) < 0) {
48
49 return -1;
50 }
51
52 return 0;
53 }
54
55
56 /*
57 * Starting at the passed change atom, find the latest change atom to be included
58 * inside the differential hunk according to the specified configuration.
59 * Also advance xscr if the first changes must be discarded.
60 */
61 xdchange_t *xdl_get_hunk(xdchange_t **xscr, xdemitconf_t const *xecfg)
62 {
63 xdchange_t *xch, *xchp, *lxch;
64 long max_common = 2 * xecfg->ctxlen + xecfg->interhunkctxlen;
65 long max_ignorable = xecfg->ctxlen;
66 unsigned long ignored = 0; /* number of ignored blank lines */
67
68 /* remove ignorable changes that are too far before other changes */
69 for (xchp = *xscr; xchp && xchp->ignore; xchp = xchp->next) {
70 xch = xchp->next;
71
72 if (xch == NULL ||
73 xch->i1 - (xchp->i1 + xchp->chg1) >= max_ignorable)
74 *xscr = xch;
75 }
76
77 if (*xscr == NULL)
78 return NULL;
79
80 lxch = *xscr;
81
82 for (xchp = *xscr, xch = xchp->next; xch; xchp = xch, xch = xch->next) {
83 long distance = xch->i1 - (xchp->i1 + xchp->chg1);
84 if (distance > max_common)
85 break;
86
87 if (distance < max_ignorable && (!xch->ignore || lxch == xchp)) {
88 lxch = xch;
89 ignored = 0;
90 } else if (distance < max_ignorable && xch->ignore) {
91 ignored += xch->chg2;
92 } else if (lxch != xchp &&
93 xch->i1 + ignored - (lxch->i1 + lxch->chg1) > (unsigned long)max_common) {
94 break;
95 } else if (!xch->ignore) {
96 lxch = xch;
97 ignored = 0;
98 } else {
99 ignored += xch->chg2;
100 }
101 }
102
103 return lxch;
104 }
105
106
107 static long def_ff(const char *rec, long len, char *buf, long sz, void *priv)
108 {
109 (void)priv;
110
111 if (len > 0 &&
112 (isalpha((unsigned char)*rec) || /* identifier? */
113 *rec == '_' || /* also identifier? */
114 *rec == '$')) { /* identifiers from VMS and other esoterico */
115 if (len > sz)
116 len = sz;
117 while (0 < len && isspace((unsigned char)rec[len - 1]))
118 len--;
119 memcpy(buf, rec, len);
120 return len;
121 }
122 return -1;
123 }
124
125 static int xdl_emit_common(xdfenv_t *xe, xdchange_t *xscr, xdemitcb_t *ecb,
126 xdemitconf_t const *xecfg) {
127 xdfile_t *xdf = &xe->xdf2;
128 const char *rchg = xdf->rchg;
129 long ix;
130
131 (void)xscr;
132 (void)xecfg;
133
134 for (ix = 0; ix < xdf->nrec; ix++) {
135 if (rchg[ix])
136 continue;
137 if (xdl_emit_record(xdf, ix, "", ecb))
138 return -1;
139 }
140 return 0;
141 }
142
143 struct func_line {
144 long len;
145 char buf[80];
146 };
147
148 static long get_func_line(xdfenv_t *xe, xdemitconf_t const *xecfg,
149 struct func_line *func_line, long start, long limit)
150 {
151 find_func_t ff = xecfg->find_func ? xecfg->find_func : def_ff;
152 long l, size, step = (start > limit) ? -1 : 1;
153 char *buf, dummy[1];
154
155 buf = func_line ? func_line->buf : dummy;
156 size = func_line ? sizeof(func_line->buf) : sizeof(dummy);
157
158 for (l = start; l != limit && 0 <= l && l < xe->xdf1.nrec; l += step) {
159 const char *rec;
160 long reclen = xdl_get_rec(&xe->xdf1, l, &rec);
161 long len = ff(rec, reclen, buf, size, xecfg->find_func_priv);
162 if (len >= 0) {
163 if (func_line)
164 func_line->len = len;
165 return l;
166 }
167 }
168 return -1;
169 }
170
171 int xdl_emit_diff(xdfenv_t *xe, xdchange_t *xscr, xdemitcb_t *ecb,
172 xdemitconf_t const *xecfg) {
173 long s1, s2, e1, e2, lctx;
174 xdchange_t *xch, *xche;
175 long funclineprev = -1;
176 struct func_line func_line = { 0 };
177
178 if (xecfg->flags & XDL_EMIT_COMMON)
179 return xdl_emit_common(xe, xscr, ecb, xecfg);
180
181 for (xch = xscr; xch; xch = xche->next) {
182 xche = xdl_get_hunk(&xch, xecfg);
183 if (!xch)
184 break;
185
186 s1 = XDL_MAX(xch->i1 - xecfg->ctxlen, 0);
187 s2 = XDL_MAX(xch->i2 - xecfg->ctxlen, 0);
188
189 if (xecfg->flags & XDL_EMIT_FUNCCONTEXT) {
190 long fs1 = get_func_line(xe, xecfg, NULL, xch->i1, -1);
191 if (fs1 < 0)
192 fs1 = 0;
193 if (fs1 < s1) {
194 s2 -= s1 - fs1;
195 s1 = fs1;
196 }
197 }
198
199 again:
200 lctx = xecfg->ctxlen;
201 lctx = XDL_MIN(lctx, xe->xdf1.nrec - (xche->i1 + xche->chg1));
202 lctx = XDL_MIN(lctx, xe->xdf2.nrec - (xche->i2 + xche->chg2));
203
204 e1 = xche->i1 + xche->chg1 + lctx;
205 e2 = xche->i2 + xche->chg2 + lctx;
206
207 if (xecfg->flags & XDL_EMIT_FUNCCONTEXT) {
208 long fe1 = get_func_line(xe, xecfg, NULL,
209 xche->i1 + xche->chg1,
210 xe->xdf1.nrec);
211 if (fe1 < 0)
212 fe1 = xe->xdf1.nrec;
213 if (fe1 > e1) {
214 e2 += fe1 - e1;
215 e1 = fe1;
216 }
217
218 /*
219 * Overlap with next change? Then include it
220 * in the current hunk and start over to find
221 * its new end.
222 */
223 if (xche->next) {
224 long l = xche->next->i1;
225 if (l <= e1 ||
226 get_func_line(xe, xecfg, NULL, l, e1) < 0) {
227 xche = xche->next;
228 goto again;
229 }
230 }
231 }
232
233 /*
234 * Emit current hunk header.
235 */
236
237 if (xecfg->flags & XDL_EMIT_FUNCNAMES) {
238 get_func_line(xe, xecfg, &func_line,
239 s1 - 1, funclineprev);
240 funclineprev = s1 - 1;
241 }
242 if (xdl_emit_hunk_hdr(s1 + 1, e1 - s1, s2 + 1, e2 - s2,
243 func_line.buf, func_line.len, ecb) < 0)
244 return -1;
245
246 /*
247 * Emit pre-context.
248 */
249 for (; s2 < xch->i2; s2++)
250 if (xdl_emit_record(&xe->xdf2, s2, " ", ecb) < 0)
251 return -1;
252
253 for (s1 = xch->i1, s2 = xch->i2;; xch = xch->next) {
254 /*
255 * Merge previous with current change atom.
256 */
257 for (; s1 < xch->i1 && s2 < xch->i2; s1++, s2++)
258 if (xdl_emit_record(&xe->xdf2, s2, " ", ecb) < 0)
259 return -1;
260
261 /*
262 * Removes lines from the first file.
263 */
264 for (s1 = xch->i1; s1 < xch->i1 + xch->chg1; s1++)
265 if (xdl_emit_record(&xe->xdf1, s1, "-", ecb) < 0)
266 return -1;
267
268 /*
269 * Adds lines from the second file.
270 */
271 for (s2 = xch->i2; s2 < xch->i2 + xch->chg2; s2++)
272 if (xdl_emit_record(&xe->xdf2, s2, "+", ecb) < 0)
273 return -1;
274
275 if (xch == xche)
276 break;
277 s1 = xch->i1 + xch->chg1;
278 s2 = xch->i2 + xch->chg2;
279 }
280
281 /*
282 * Emit post-context.
283 */
284 for (s2 = xche->i2 + xche->chg2; s2 < e2; s2++)
285 if (xdl_emit_record(&xe->xdf2, s2, " ", ecb) < 0)
286 return -1;
287 }
288
289 return 0;
290 }