blob: d324f99d8713c1501f94eb9eb0bf30df8238b01b [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001/* vim:set ts=8 sts=4 sw=4:
2 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
9
10/*
Bram Moolenaar5cc6a6e2009-01-22 19:48:55 +000011 * diff.c: code for diff'ing two, three or four buffers.
Bram Moolenaar071d4272004-06-13 20:20:40 +000012 */
13
14#include "vim.h"
15
16#if defined(FEAT_DIFF) || defined(PROTO)
17
Bram Moolenaar071d4272004-06-13 20:20:40 +000018static int diff_busy = FALSE; /* ex_diffgetput() is busy */
19
20/* flags obtained from the 'diffopt' option */
21#define DIFF_FILLER 1 /* display filler lines */
22#define DIFF_ICASE 2 /* ignore case */
23#define DIFF_IWHITE 4 /* ignore change in white space */
Bram Moolenaarc4675a12006-03-15 22:50:30 +000024#define DIFF_HORIZONTAL 8 /* horizontal splits */
25#define DIFF_VERTICAL 16 /* vertical splits */
Bram Moolenaar071d4272004-06-13 20:20:40 +000026static int diff_flags = DIFF_FILLER;
27
28#define LBUFLEN 50 /* length of line in diff file */
29
30static int diff_a_works = MAYBE; /* TRUE when "diff -a" works, FALSE when it
31 doesn't work, MAYBE when not checked yet */
32#if defined(MSWIN) || defined(MSDOS)
33static int diff_bin_works = MAYBE; /* TRUE when "diff --binary" works, FALSE
34 when it doesn't work, MAYBE when not
35 checked yet */
36#endif
37
38static int diff_buf_idx __ARGS((buf_T *buf));
Bram Moolenaar49d7bf12006-02-17 21:45:41 +000039static int diff_buf_idx_tp __ARGS((buf_T *buf, tabpage_T *tp));
40static void diff_mark_adjust_tp __ARGS((tabpage_T *tp, int idx, linenr_T line1, linenr_T line2, long amount, long amount_after));
41static void diff_check_unchanged __ARGS((tabpage_T *tp, diff_T *dp));
42static int diff_check_sanity __ARGS((tabpage_T *tp, diff_T *dp));
Bram Moolenaar071d4272004-06-13 20:20:40 +000043static void diff_redraw __ARGS((int dofold));
44static int diff_write __ARGS((buf_T *buf, char_u *fname));
45static void diff_file __ARGS((char_u *tmp_orig, char_u *tmp_new, char_u *tmp_diff));
Bram Moolenaar071d4272004-06-13 20:20:40 +000046static int diff_equal_entry __ARGS((diff_T *dp, int idx1, int idx2));
47static int diff_cmp __ARGS((char_u *s1, char_u *s2));
48#ifdef FEAT_FOLDING
49static void diff_fold_update __ARGS((diff_T *dp, int skip_idx));
50#endif
51static void diff_read __ARGS((int idx_orig, int idx_new, char_u *fname));
52static void diff_copy_entry __ARGS((diff_T *dprev, diff_T *dp, int idx_orig, int idx_new));
Bram Moolenaar49d7bf12006-02-17 21:45:41 +000053static diff_T *diff_alloc_new __ARGS((tabpage_T *tp, diff_T *dprev, diff_T *dp));
Bram Moolenaar071d4272004-06-13 20:20:40 +000054
55#ifndef USE_CR
56# define tag_fgets vim_fgets
57#endif
58
59/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000060 * Called when deleting or unloading a buffer: No longer make a diff with it.
Bram Moolenaar071d4272004-06-13 20:20:40 +000061 */
62 void
63diff_buf_delete(buf)
64 buf_T *buf;
65{
66 int i;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +000067 tabpage_T *tp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000068
Bram Moolenaar49d7bf12006-02-17 21:45:41 +000069 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next)
Bram Moolenaar071d4272004-06-13 20:20:40 +000070 {
Bram Moolenaar49d7bf12006-02-17 21:45:41 +000071 i = diff_buf_idx_tp(buf, tp);
72 if (i != DB_COUNT)
73 {
74 tp->tp_diffbuf[i] = NULL;
75 tp->tp_diff_invalid = TRUE;
Bram Moolenaar5d55c0f2008-11-30 14:16:57 +000076 if (tp == curtab)
77 diff_redraw(TRUE);
Bram Moolenaar49d7bf12006-02-17 21:45:41 +000078 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000079 }
80}
81
82/*
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +000083 * Check if the current buffer should be added to or removed from the list of
84 * diff buffers.
85 */
86 void
87diff_buf_adjust(win)
88 win_T *win;
89{
90 win_T *wp;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +000091 int i;
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +000092
93 if (!win->w_p_diff)
94 {
95 /* When there is no window showing a diff for this buffer, remove
96 * it from the diffs. */
97 for (wp = firstwin; wp != NULL; wp = wp->w_next)
98 if (wp->w_buffer == win->w_buffer && wp->w_p_diff)
99 break;
100 if (wp == NULL)
Bram Moolenaar49d7bf12006-02-17 21:45:41 +0000101 {
102 i = diff_buf_idx(win->w_buffer);
103 if (i != DB_COUNT)
104 {
105 curtab->tp_diffbuf[i] = NULL;
106 curtab->tp_diff_invalid = TRUE;
Bram Moolenaar5d55c0f2008-11-30 14:16:57 +0000107 diff_redraw(TRUE);
Bram Moolenaar49d7bf12006-02-17 21:45:41 +0000108 }
109 }
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000110 }
111 else
112 diff_buf_add(win->w_buffer);
113}
114
115/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000116 * Add a buffer to make diffs for.
Bram Moolenaar49d7bf12006-02-17 21:45:41 +0000117 * Call this when a new buffer is being edited in the current window where
118 * 'diff' is set.
Bram Moolenaar5cc6a6e2009-01-22 19:48:55 +0000119 * Marks the current buffer as being part of the diff and requiring updating.
Bram Moolenaar49d7bf12006-02-17 21:45:41 +0000120 * This must be done before any autocmd, because a command may use info
121 * about the screen contents.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000122 */
123 void
124diff_buf_add(buf)
125 buf_T *buf;
126{
127 int i;
128
129 if (diff_buf_idx(buf) != DB_COUNT)
130 return; /* It's already there. */
131
132 for (i = 0; i < DB_COUNT; ++i)
Bram Moolenaar49d7bf12006-02-17 21:45:41 +0000133 if (curtab->tp_diffbuf[i] == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000134 {
Bram Moolenaar49d7bf12006-02-17 21:45:41 +0000135 curtab->tp_diffbuf[i] = buf;
136 curtab->tp_diff_invalid = TRUE;
Bram Moolenaar5d55c0f2008-11-30 14:16:57 +0000137 diff_redraw(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000138 return;
139 }
140
141 EMSGN(_("E96: Can not diff more than %ld buffers"), DB_COUNT);
142}
143
144/*
Bram Moolenaar49d7bf12006-02-17 21:45:41 +0000145 * Find buffer "buf" in the list of diff buffers for the current tab page.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000146 * Return its index or DB_COUNT if not found.
147 */
148 static int
149diff_buf_idx(buf)
150 buf_T *buf;
151{
152 int idx;
153
154 for (idx = 0; idx < DB_COUNT; ++idx)
Bram Moolenaar49d7bf12006-02-17 21:45:41 +0000155 if (curtab->tp_diffbuf[idx] == buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000156 break;
157 return idx;
158}
159
160/*
Bram Moolenaar49d7bf12006-02-17 21:45:41 +0000161 * Find buffer "buf" in the list of diff buffers for tab page "tp".
162 * Return its index or DB_COUNT if not found.
163 */
164 static int
165diff_buf_idx_tp(buf, tp)
166 buf_T *buf;
167 tabpage_T *tp;
168{
169 int idx;
170
171 for (idx = 0; idx < DB_COUNT; ++idx)
172 if (tp->tp_diffbuf[idx] == buf)
173 break;
174 return idx;
175}
176
177/*
178 * Mark the diff info involving buffer "buf" as invalid, it will be updated
179 * when info is requested.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000180 */
181 void
Bram Moolenaar49d7bf12006-02-17 21:45:41 +0000182diff_invalidate(buf)
183 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000184{
Bram Moolenaar49d7bf12006-02-17 21:45:41 +0000185 tabpage_T *tp;
186 int i;
187
188 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000189 {
Bram Moolenaar49d7bf12006-02-17 21:45:41 +0000190 i = diff_buf_idx_tp(buf, tp);
191 if (i != DB_COUNT)
192 {
193 tp->tp_diff_invalid = TRUE;
194 if (tp == curtab)
195 diff_redraw(TRUE);
196 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000197 }
198}
199
200/*
Bram Moolenaar49d7bf12006-02-17 21:45:41 +0000201 * Called by mark_adjust(): update line numbers in "curbuf".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000202 */
203 void
204diff_mark_adjust(line1, line2, amount, amount_after)
205 linenr_T line1;
206 linenr_T line2;
207 long amount;
208 long amount_after;
209{
Bram Moolenaar49d7bf12006-02-17 21:45:41 +0000210 int idx;
211 tabpage_T *tp;
212
213 /* Handle all tab pages that use the current buffer in a diff. */
214 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next)
215 {
216 idx = diff_buf_idx_tp(curbuf, tp);
217 if (idx != DB_COUNT)
218 diff_mark_adjust_tp(tp, idx, line1, line2, amount, amount_after);
219 }
220}
221
222/*
223 * Update line numbers in tab page "tp" for "curbuf" with index "idx".
224 * This attempts to update the changes as much as possible:
225 * When inserting/deleting lines outside of existing change blocks, create a
226 * new change block and update the line numbers in following blocks.
227 * When inserting/deleting lines in existing change blocks, update them.
228 */
229 static void
230diff_mark_adjust_tp(tp, idx, line1, line2, amount, amount_after)
231 tabpage_T *tp;
232 int idx;
233 linenr_T line1;
234 linenr_T line2;
235 long amount;
236 long amount_after;
237{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000238 diff_T *dp;
239 diff_T *dprev;
240 diff_T *dnext;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000241 int i;
242 int inserted, deleted;
243 int n, off;
244 linenr_T last;
245 linenr_T lnum_deleted = line1; /* lnum of remaining deletion */
246 int check_unchanged;
247
Bram Moolenaar071d4272004-06-13 20:20:40 +0000248 if (line2 == MAXLNUM)
249 {
250 /* mark_adjust(99, MAXLNUM, 9, 0): insert lines */
251 inserted = amount;
252 deleted = 0;
253 }
254 else if (amount_after > 0)
255 {
256 /* mark_adjust(99, 98, MAXLNUM, 9): a change that inserts lines*/
257 inserted = amount_after;
258 deleted = 0;
259 }
260 else
261 {
262 /* mark_adjust(98, 99, MAXLNUM, -2): delete lines */
263 inserted = 0;
264 deleted = -amount_after;
265 }
266
267 dprev = NULL;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +0000268 dp = tp->tp_first_diff;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000269 for (;;)
270 {
271 /* If the change is after the previous diff block and before the next
272 * diff block, thus not touching an existing change, create a new diff
273 * block. Don't do this when ex_diffgetput() is busy. */
274 if ((dp == NULL || dp->df_lnum[idx] - 1 > line2
275 || (line2 == MAXLNUM && dp->df_lnum[idx] > line1))
276 && (dprev == NULL
277 || dprev->df_lnum[idx] + dprev->df_count[idx] < line1)
278 && !diff_busy)
279 {
Bram Moolenaar49d7bf12006-02-17 21:45:41 +0000280 dnext = diff_alloc_new(tp, dprev, dp);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000281 if (dnext == NULL)
282 return;
283
284 dnext->df_lnum[idx] = line1;
285 dnext->df_count[idx] = inserted;
286 for (i = 0; i < DB_COUNT; ++i)
Bram Moolenaar49d7bf12006-02-17 21:45:41 +0000287 if (tp->tp_diffbuf[i] != NULL && i != idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000288 {
289 if (dprev == NULL)
290 dnext->df_lnum[i] = line1;
291 else
292 dnext->df_lnum[i] = line1
293 + (dprev->df_lnum[i] + dprev->df_count[i])
294 - (dprev->df_lnum[idx] + dprev->df_count[idx]);
295 dnext->df_count[i] = deleted;
296 }
297 }
298
299 /* if at end of the list, quit */
300 if (dp == NULL)
301 break;
302
303 /*
304 * Check for these situations:
305 * 1 2 3
306 * 1 2 3
307 * line1 2 3 4 5
308 * 2 3 4 5
309 * 2 3 4 5
310 * line2 2 3 4 5
311 * 3 5 6
312 * 3 5 6
313 */
314 /* compute last line of this change */
315 last = dp->df_lnum[idx] + dp->df_count[idx] - 1;
316
317 /* 1. change completely above line1: nothing to do */
318 if (last >= line1 - 1)
319 {
320 /* 6. change below line2: only adjust for amount_after; also when
321 * "deleted" became zero when deleted all lines between two diffs */
322 if (dp->df_lnum[idx] - (deleted + inserted != 0) > line2)
323 {
324 if (amount_after == 0)
325 break; /* nothing left to change */
326 dp->df_lnum[idx] += amount_after;
327 }
328 else
329 {
330 check_unchanged = FALSE;
331
332 /* 2. 3. 4. 5.: inserted/deleted lines touching this diff. */
333 if (deleted > 0)
334 {
335 if (dp->df_lnum[idx] >= line1)
336 {
337 off = dp->df_lnum[idx] - lnum_deleted;
338 if (last <= line2)
339 {
340 /* 4. delete all lines of diff */
341 if (dp->df_next != NULL
342 && dp->df_next->df_lnum[idx] - 1 <= line2)
343 {
344 /* delete continues in next diff, only do
345 * lines until that one */
346 n = dp->df_next->df_lnum[idx] - lnum_deleted;
347 deleted -= n;
348 n -= dp->df_count[idx];
349 lnum_deleted = dp->df_next->df_lnum[idx];
350 }
351 else
352 n = deleted - dp->df_count[idx];
353 dp->df_count[idx] = 0;
354 }
355 else
356 {
357 /* 5. delete lines at or just before top of diff */
358 n = off;
359 dp->df_count[idx] -= line2 - dp->df_lnum[idx] + 1;
360 check_unchanged = TRUE;
361 }
362 dp->df_lnum[idx] = line1;
363 }
364 else
365 {
366 off = 0;
367 if (last < line2)
368 {
369 /* 2. delete at end of of diff */
370 dp->df_count[idx] -= last - lnum_deleted + 1;
371 if (dp->df_next != NULL
372 && dp->df_next->df_lnum[idx] - 1 <= line2)
373 {
374 /* delete continues in next diff, only do
375 * lines until that one */
376 n = dp->df_next->df_lnum[idx] - 1 - last;
377 deleted -= dp->df_next->df_lnum[idx]
378 - lnum_deleted;
379 lnum_deleted = dp->df_next->df_lnum[idx];
380 }
381 else
382 n = line2 - last;
383 check_unchanged = TRUE;
384 }
385 else
386 {
387 /* 3. delete lines inside the diff */
388 n = 0;
389 dp->df_count[idx] -= deleted;
390 }
391 }
392
393 for (i = 0; i < DB_COUNT; ++i)
Bram Moolenaar49d7bf12006-02-17 21:45:41 +0000394 if (tp->tp_diffbuf[i] != NULL && i != idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000395 {
396 dp->df_lnum[i] -= off;
397 dp->df_count[i] += n;
398 }
399 }
400 else
401 {
402 if (dp->df_lnum[idx] <= line1)
403 {
404 /* inserted lines somewhere in this diff */
405 dp->df_count[idx] += inserted;
406 check_unchanged = TRUE;
407 }
408 else
409 /* inserted lines somewhere above this diff */
410 dp->df_lnum[idx] += inserted;
411 }
412
413 if (check_unchanged)
414 /* Check if inserted lines are equal, may reduce the
415 * size of the diff. TODO: also check for equal lines
416 * in the middle and perhaps split the block. */
Bram Moolenaar49d7bf12006-02-17 21:45:41 +0000417 diff_check_unchanged(tp, dp);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000418 }
419 }
420
421 /* check if this block touches the previous one, may merge them. */
422 if (dprev != NULL && dprev->df_lnum[idx] + dprev->df_count[idx]
423 == dp->df_lnum[idx])
424 {
425 for (i = 0; i < DB_COUNT; ++i)
Bram Moolenaar49d7bf12006-02-17 21:45:41 +0000426 if (tp->tp_diffbuf[i] != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000427 dprev->df_count[i] += dp->df_count[i];
428 dprev->df_next = dp->df_next;
429 vim_free(dp);
430 dp = dprev->df_next;
431 }
432 else
433 {
434 /* Advance to next entry. */
435 dprev = dp;
436 dp = dp->df_next;
437 }
438 }
439
440 dprev = NULL;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +0000441 dp = tp->tp_first_diff;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000442 while (dp != NULL)
443 {
444 /* All counts are zero, remove this entry. */
445 for (i = 0; i < DB_COUNT; ++i)
Bram Moolenaar49d7bf12006-02-17 21:45:41 +0000446 if (tp->tp_diffbuf[i] != NULL && dp->df_count[i] != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000447 break;
448 if (i == DB_COUNT)
449 {
450 dnext = dp->df_next;
451 vim_free(dp);
452 dp = dnext;
453 if (dprev == NULL)
Bram Moolenaar49d7bf12006-02-17 21:45:41 +0000454 tp->tp_first_diff = dnext;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000455 else
456 dprev->df_next = dnext;
457 }
458 else
459 {
460 /* Advance to next entry. */
461 dprev = dp;
462 dp = dp->df_next;
463 }
464
465 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000466
Bram Moolenaar49d7bf12006-02-17 21:45:41 +0000467 if (tp == curtab)
468 {
469 diff_redraw(TRUE);
470
471 /* Need to recompute the scroll binding, may remove or add filler
472 * lines (e.g., when adding lines above w_topline). But it's slow when
473 * making many changes, postpone until redrawing. */
474 diff_need_scrollbind = TRUE;
475 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000476}
477
478/*
479 * Allocate a new diff block and link it between "dprev" and "dp".
480 */
481 static diff_T *
Bram Moolenaar49d7bf12006-02-17 21:45:41 +0000482diff_alloc_new(tp, dprev, dp)
483 tabpage_T *tp;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000484 diff_T *dprev;
485 diff_T *dp;
486{
487 diff_T *dnew;
488
489 dnew = (diff_T *)alloc((unsigned)sizeof(diff_T));
490 if (dnew != NULL)
491 {
492 dnew->df_next = dp;
493 if (dprev == NULL)
Bram Moolenaar49d7bf12006-02-17 21:45:41 +0000494 tp->tp_first_diff = dnew;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000495 else
496 dprev->df_next = dnew;
497 }
498 return dnew;
499}
500
501/*
502 * Check if the diff block "dp" can be made smaller for lines at the start and
503 * end that are equal. Called after inserting lines.
504 * This may result in a change where all buffers have zero lines, the caller
505 * must take care of removing it.
506 */
507 static void
Bram Moolenaar49d7bf12006-02-17 21:45:41 +0000508diff_check_unchanged(tp, dp)
509 tabpage_T *tp;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000510 diff_T *dp;
511{
512 int i_org;
513 int i_new;
514 int off_org, off_new;
515 char_u *line_org;
516 int dir = FORWARD;
517
518 /* Find the first buffers, use it as the original, compare the other
519 * buffer lines against this one. */
520 for (i_org = 0; i_org < DB_COUNT; ++i_org)
Bram Moolenaar49d7bf12006-02-17 21:45:41 +0000521 if (tp->tp_diffbuf[i_org] != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000522 break;
523 if (i_org == DB_COUNT) /* safety check */
524 return;
525
Bram Moolenaar49d7bf12006-02-17 21:45:41 +0000526 if (diff_check_sanity(tp, dp) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000527 return;
528
529 /* First check lines at the top, then at the bottom. */
530 off_org = 0;
531 off_new = 0;
532 for (;;)
533 {
534 /* Repeat until a line is found which is different or the number of
535 * lines has become zero. */
536 while (dp->df_count[i_org] > 0)
537 {
538 /* Copy the line, the next ml_get() will invalidate it. */
539 if (dir == BACKWARD)
540 off_org = dp->df_count[i_org] - 1;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +0000541 line_org = vim_strsave(ml_get_buf(tp->tp_diffbuf[i_org],
Bram Moolenaar071d4272004-06-13 20:20:40 +0000542 dp->df_lnum[i_org] + off_org, FALSE));
543 if (line_org == NULL)
544 return;
545 for (i_new = i_org + 1; i_new < DB_COUNT; ++i_new)
546 {
Bram Moolenaar49d7bf12006-02-17 21:45:41 +0000547 if (tp->tp_diffbuf[i_new] == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000548 continue;
549 if (dir == BACKWARD)
550 off_new = dp->df_count[i_new] - 1;
551 /* if other buffer doesn't have this line, it was inserted */
552 if (off_new < 0 || off_new >= dp->df_count[i_new])
553 break;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +0000554 if (diff_cmp(line_org, ml_get_buf(tp->tp_diffbuf[i_new],
Bram Moolenaar071d4272004-06-13 20:20:40 +0000555 dp->df_lnum[i_new] + off_new, FALSE)) != 0)
556 break;
557 }
558 vim_free(line_org);
559
560 /* Stop when a line isn't equal in all diff buffers. */
561 if (i_new != DB_COUNT)
562 break;
563
564 /* Line matched in all buffers, remove it from the diff. */
565 for (i_new = i_org; i_new < DB_COUNT; ++i_new)
Bram Moolenaar49d7bf12006-02-17 21:45:41 +0000566 if (tp->tp_diffbuf[i_new] != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000567 {
568 if (dir == FORWARD)
569 ++dp->df_lnum[i_new];
570 --dp->df_count[i_new];
571 }
572 }
573 if (dir == BACKWARD)
574 break;
575 dir = BACKWARD;
576 }
577}
578
579/*
580 * Check if a diff block doesn't contain invalid line numbers.
581 * This can happen when the diff program returns invalid results.
582 */
583 static int
Bram Moolenaar49d7bf12006-02-17 21:45:41 +0000584diff_check_sanity(tp, dp)
585 tabpage_T *tp;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000586 diff_T *dp;
587{
588 int i;
589
590 for (i = 0; i < DB_COUNT; ++i)
Bram Moolenaar49d7bf12006-02-17 21:45:41 +0000591 if (tp->tp_diffbuf[i] != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000592 if (dp->df_lnum[i] + dp->df_count[i] - 1
Bram Moolenaar49d7bf12006-02-17 21:45:41 +0000593 > tp->tp_diffbuf[i]->b_ml.ml_line_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000594 return FAIL;
595 return OK;
596}
597
598/*
Bram Moolenaar49d7bf12006-02-17 21:45:41 +0000599 * Mark all diff buffers in the current tab page for redraw.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000600 */
601 static void
602diff_redraw(dofold)
603 int dofold; /* also recompute the folds */
604{
605 win_T *wp;
606 int n;
607
608 for (wp = firstwin; wp != NULL; wp = wp->w_next)
609 if (wp->w_p_diff)
610 {
Bram Moolenaar60f83772006-03-12 21:52:47 +0000611 redraw_win_later(wp, SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000612#ifdef FEAT_FOLDING
613 if (dofold && foldmethodIsDiff(wp))
614 foldUpdateAll(wp);
615#endif
616 /* A change may have made filler lines invalid, need to take care
617 * of that for other windows. */
Bram Moolenaara80888d2012-10-21 22:18:21 +0200618 n = diff_check(wp, wp->w_topline);
619 if ((wp != curwin && wp->w_topfill > 0) || n > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000620 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000621 if (wp->w_topfill > n)
622 wp->w_topfill = (n < 0 ? 0 : n);
Bram Moolenaara80888d2012-10-21 22:18:21 +0200623 else if (n > 0 && n > wp->w_topfill)
624 wp->w_topfill = n;
Bram Moolenaar846a2ff2014-05-28 11:35:37 +0200625 check_topfill(wp, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000626 }
627 }
628}
629
630/*
631 * Write buffer "buf" to file "name".
632 * Always use 'fileformat' set to "unix".
633 * Return FAIL for failure
634 */
635 static int
636diff_write(buf, fname)
637 buf_T *buf;
638 char_u *fname;
639{
640 int r;
641 char_u *save_ff;
642
643 save_ff = buf->b_p_ff;
644 buf->b_p_ff = vim_strsave((char_u *)FF_UNIX);
645 r = buf_write(buf, fname, NULL, (linenr_T)1, buf->b_ml.ml_line_count,
646 NULL, FALSE, FALSE, FALSE, TRUE);
647 free_string_option(buf->b_p_ff);
648 buf->b_p_ff = save_ff;
649 return r;
650}
651
652/*
653 * Completely update the diffs for the buffers involved.
654 * This uses the ordinary "diff" command.
655 * The buffers are written to a file, also for unmodified buffers (the file
656 * could have been produced by autocommands, e.g. the netrw plugin).
657 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000658 void
659ex_diffupdate(eap)
Bram Moolenaar0c094b92009-05-14 20:20:33 +0000660 exarg_T *eap UNUSED; /* can be NULL */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000661{
662 buf_T *buf;
663 int idx_orig;
664 int idx_new;
665 char_u *tmp_orig;
666 char_u *tmp_new;
667 char_u *tmp_diff;
668 FILE *fd;
669 int ok;
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +0000670 int io_error = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000671
672 /* Delete all diffblocks. */
Bram Moolenaar49d7bf12006-02-17 21:45:41 +0000673 diff_clear(curtab);
674 curtab->tp_diff_invalid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000675
676 /* Use the first buffer as the original text. */
677 for (idx_orig = 0; idx_orig < DB_COUNT; ++idx_orig)
Bram Moolenaar49d7bf12006-02-17 21:45:41 +0000678 if (curtab->tp_diffbuf[idx_orig] != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000679 break;
680 if (idx_orig == DB_COUNT)
681 return;
682
683 /* Only need to do something when there is another buffer. */
684 for (idx_new = idx_orig + 1; idx_new < DB_COUNT; ++idx_new)
Bram Moolenaar49d7bf12006-02-17 21:45:41 +0000685 if (curtab->tp_diffbuf[idx_new] != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000686 break;
687 if (idx_new == DB_COUNT)
688 return;
689
690 /* We need three temp file names. */
691 tmp_orig = vim_tempname('o');
692 tmp_new = vim_tempname('n');
693 tmp_diff = vim_tempname('d');
694 if (tmp_orig == NULL || tmp_new == NULL || tmp_diff == NULL)
695 goto theend;
696
697 /*
698 * Do a quick test if "diff" really works. Otherwise it looks like there
699 * are no differences. Can't use the return value, it's non-zero when
700 * there are differences.
701 * May try twice, first with "-a" and then without.
702 */
703 for (;;)
704 {
705 ok = FALSE;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +0000706 fd = mch_fopen((char *)tmp_orig, "w");
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +0000707 if (fd == NULL)
708 io_error = TRUE;
709 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000710 {
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +0000711 if (fwrite("line1\n", (size_t)6, (size_t)1, fd) != 1)
712 io_error = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000713 fclose(fd);
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +0000714 fd = mch_fopen((char *)tmp_new, "w");
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +0000715 if (fd == NULL)
716 io_error = TRUE;
717 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000718 {
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +0000719 if (fwrite("line2\n", (size_t)6, (size_t)1, fd) != 1)
720 io_error = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000721 fclose(fd);
722 diff_file(tmp_orig, tmp_new, tmp_diff);
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +0000723 fd = mch_fopen((char *)tmp_diff, "r");
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +0000724 if (fd == NULL)
725 io_error = TRUE;
726 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000727 {
728 char_u linebuf[LBUFLEN];
729
730 for (;;)
731 {
732 /* There must be a line that contains "1c1". */
733 if (tag_fgets(linebuf, LBUFLEN, fd))
734 break;
735 if (STRNCMP(linebuf, "1c1", 3) == 0)
736 ok = TRUE;
737 }
738 fclose(fd);
739 }
740 mch_remove(tmp_diff);
741 mch_remove(tmp_new);
742 }
743 mch_remove(tmp_orig);
744 }
745
746#ifdef FEAT_EVAL
747 /* When using 'diffexpr' break here. */
748 if (*p_dex != NUL)
749 break;
750#endif
751
752#if defined(MSWIN) || defined(MSDOS)
753 /* If the "-a" argument works, also check if "--binary" works. */
754 if (ok && diff_a_works == MAYBE && diff_bin_works == MAYBE)
755 {
756 diff_a_works = TRUE;
757 diff_bin_works = TRUE;
758 continue;
759 }
760 if (!ok && diff_a_works == TRUE && diff_bin_works == TRUE)
761 {
762 /* Tried --binary, but it failed. "-a" works though. */
763 diff_bin_works = FALSE;
764 ok = TRUE;
765 }
766#endif
767
768 /* If we checked if "-a" works already, break here. */
769 if (diff_a_works != MAYBE)
770 break;
771 diff_a_works = ok;
772
773 /* If "-a" works break here, otherwise retry without "-a". */
774 if (ok)
775 break;
776 }
777 if (!ok)
778 {
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +0000779 if (io_error)
780 EMSG(_("E810: Cannot read or write temp files"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000781 EMSG(_("E97: Cannot create diffs"));
782 diff_a_works = MAYBE;
783#if defined(MSWIN) || defined(MSDOS)
784 diff_bin_works = MAYBE;
785#endif
786 goto theend;
787 }
788
Bram Moolenaarbd1d5602012-05-18 18:47:17 +0200789 /* :diffupdate! */
790 if (eap != NULL && eap->forceit)
791 for (idx_new = idx_orig; idx_new < DB_COUNT; ++idx_new)
792 {
793 buf = curtab->tp_diffbuf[idx_new];
794 if (buf_valid(buf))
795 buf_check_timestamp(buf, FALSE);
796 }
797
Bram Moolenaar071d4272004-06-13 20:20:40 +0000798 /* Write the first buffer to a tempfile. */
Bram Moolenaar49d7bf12006-02-17 21:45:41 +0000799 buf = curtab->tp_diffbuf[idx_orig];
Bram Moolenaar071d4272004-06-13 20:20:40 +0000800 if (diff_write(buf, tmp_orig) == FAIL)
801 goto theend;
802
803 /* Make a difference between the first buffer and every other. */
804 for (idx_new = idx_orig + 1; idx_new < DB_COUNT; ++idx_new)
805 {
Bram Moolenaar49d7bf12006-02-17 21:45:41 +0000806 buf = curtab->tp_diffbuf[idx_new];
Bram Moolenaar071d4272004-06-13 20:20:40 +0000807 if (buf == NULL)
808 continue;
809 if (diff_write(buf, tmp_new) == FAIL)
810 continue;
811 diff_file(tmp_orig, tmp_new, tmp_diff);
812
813 /* Read the diff output and add each entry to the diff list. */
814 diff_read(idx_orig, idx_new, tmp_diff);
815 mch_remove(tmp_diff);
816 mch_remove(tmp_new);
817 }
818 mch_remove(tmp_orig);
819
Bram Moolenaar60a44dc2007-10-19 16:58:12 +0000820 /* force updating cursor position on screen */
821 curwin->w_valid_cursor.lnum = 0;
822
Bram Moolenaar071d4272004-06-13 20:20:40 +0000823 diff_redraw(TRUE);
824
825theend:
826 vim_free(tmp_orig);
827 vim_free(tmp_new);
828 vim_free(tmp_diff);
829}
830
831/*
832 * Make a diff between files "tmp_orig" and "tmp_new", results in "tmp_diff".
833 */
834 static void
835diff_file(tmp_orig, tmp_new, tmp_diff)
836 char_u *tmp_orig;
837 char_u *tmp_new;
838 char_u *tmp_diff;
839{
840 char_u *cmd;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +0000841 size_t len;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000842
843#ifdef FEAT_EVAL
844 if (*p_dex != NUL)
845 /* Use 'diffexpr' to generate the diff file. */
846 eval_diff(tmp_orig, tmp_new, tmp_diff);
847 else
848#endif
849 {
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +0000850 len = STRLEN(tmp_orig) + STRLEN(tmp_new)
851 + STRLEN(tmp_diff) + STRLEN(p_srr) + 27;
852 cmd = alloc((unsigned)len);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000853 if (cmd != NULL)
854 {
Bram Moolenaar95fb60a2005-03-08 22:29:20 +0000855 /* We don't want $DIFF_OPTIONS to get in the way. */
856 if (getenv("DIFF_OPTIONS"))
857 vim_setenv((char_u *)"DIFF_OPTIONS", (char_u *)"");
858
Bram Moolenaar071d4272004-06-13 20:20:40 +0000859 /* Build the diff command and execute it. Always use -a, binary
860 * differences are of no use. Ignore errors, diff returns
861 * non-zero when differences have been found. */
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +0000862 vim_snprintf((char *)cmd, len, "diff %s%s%s%s%s %s",
Bram Moolenaar071d4272004-06-13 20:20:40 +0000863 diff_a_works == FALSE ? "" : "-a ",
864#if defined(MSWIN) || defined(MSDOS)
865 diff_bin_works == TRUE ? "--binary " : "",
866#else
867 "",
868#endif
869 (diff_flags & DIFF_IWHITE) ? "-b " : "",
870 (diff_flags & DIFF_ICASE) ? "-i " : "",
871 tmp_orig, tmp_new);
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +0000872 append_redir(cmd, (int)len, p_srr, tmp_diff);
Bram Moolenaar7fc904b2006-04-13 20:37:35 +0000873#ifdef FEAT_AUTOCMD
Bram Moolenaar78ab3312007-09-29 12:16:41 +0000874 block_autocmds(); /* Avoid ShellCmdPost stuff */
Bram Moolenaar7fc904b2006-04-13 20:37:35 +0000875#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000876 (void)call_shell(cmd, SHELL_FILTER|SHELL_SILENT|SHELL_DOOUT);
Bram Moolenaar7fc904b2006-04-13 20:37:35 +0000877#ifdef FEAT_AUTOCMD
Bram Moolenaar78ab3312007-09-29 12:16:41 +0000878 unblock_autocmds();
Bram Moolenaar7fc904b2006-04-13 20:37:35 +0000879#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000880 vim_free(cmd);
881 }
882 }
883}
884
885/*
886 * Create a new version of a file from the current buffer and a diff file.
887 * The buffer is written to a file, also for unmodified buffers (the file
888 * could have been produced by autocommands, e.g. the netrw plugin).
889 */
890 void
891ex_diffpatch(eap)
892 exarg_T *eap;
893{
894 char_u *tmp_orig; /* name of original temp file */
895 char_u *tmp_new; /* name of patched temp file */
896 char_u *buf = NULL;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +0000897 size_t buflen;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000898 win_T *old_curwin = curwin;
899 char_u *newname = NULL; /* name of patched file buffer */
900#ifdef UNIX
901 char_u dirbuf[MAXPATHL];
902 char_u *fullname = NULL;
903#endif
904#ifdef FEAT_BROWSE
905 char_u *browseFile = NULL;
906 int browse_flag = cmdmod.browse;
907#endif
Bram Moolenaar6ec0a6c2009-07-22 14:23:13 +0000908 struct stat st;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000909
910#ifdef FEAT_BROWSE
911 if (cmdmod.browse)
912 {
Bram Moolenaar7171abe2004-10-11 10:06:20 +0000913 browseFile = do_browse(0, (char_u *)_("Patch file"),
Bram Moolenaar071d4272004-06-13 20:20:40 +0000914 eap->arg, NULL, NULL, BROWSE_FILTER_ALL_FILES, NULL);
915 if (browseFile == NULL)
916 return; /* operation cancelled */
917 eap->arg = browseFile;
918 cmdmod.browse = FALSE; /* don't let do_ecmd() browse again */
919 }
920#endif
921
922 /* We need two temp file names. */
923 tmp_orig = vim_tempname('o');
924 tmp_new = vim_tempname('n');
925 if (tmp_orig == NULL || tmp_new == NULL)
926 goto theend;
927
928 /* Write the current buffer to "tmp_orig". */
929 if (buf_write(curbuf, tmp_orig, NULL,
930 (linenr_T)1, curbuf->b_ml.ml_line_count,
931 NULL, FALSE, FALSE, FALSE, TRUE) == FAIL)
932 goto theend;
933
934#ifdef UNIX
935 /* Get the absolute path of the patchfile, changing directory below. */
936 fullname = FullName_save(eap->arg, FALSE);
937#endif
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +0000938 buflen = STRLEN(tmp_orig) + (
Bram Moolenaar071d4272004-06-13 20:20:40 +0000939# ifdef UNIX
940 fullname != NULL ? STRLEN(fullname) :
941# endif
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +0000942 STRLEN(eap->arg)) + STRLEN(tmp_new) + 16;
943 buf = alloc((unsigned)buflen);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000944 if (buf == NULL)
945 goto theend;
946
947#ifdef UNIX
Bram Moolenaar5cc6a6e2009-01-22 19:48:55 +0000948 /* Temporarily chdir to /tmp, to avoid patching files in the current
Bram Moolenaar071d4272004-06-13 20:20:40 +0000949 * directory when the patch file contains more than one patch. When we
950 * have our own temp dir use that instead, it will be cleaned up when we
951 * exit (any .rej files created). Don't change directory if we can't
952 * return to the current. */
953 if (mch_dirname(dirbuf, MAXPATHL) != OK || mch_chdir((char *)dirbuf) != 0)
954 dirbuf[0] = NUL;
955 else
956 {
957# ifdef TEMPDIRNAMES
958 if (vim_tempdir != NULL)
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +0000959 ignored = mch_chdir((char *)vim_tempdir);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000960 else
961# endif
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +0000962 ignored = mch_chdir("/tmp");
Bram Moolenaar071d4272004-06-13 20:20:40 +0000963 shorten_fnames(TRUE);
964 }
965#endif
966
967#ifdef FEAT_EVAL
968 if (*p_pex != NUL)
969 /* Use 'patchexpr' to generate the new file. */
970 eval_patch(tmp_orig,
971# ifdef UNIX
972 fullname != NULL ? fullname :
973# endif
974 eap->arg, tmp_new);
975 else
976#endif
977 {
978 /* Build the patch command and execute it. Ignore errors. Switch to
979 * cooked mode to allow the user to respond to prompts. */
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +0000980 vim_snprintf((char *)buf, buflen, "patch -o %s %s < \"%s\"",
981 tmp_new, tmp_orig,
Bram Moolenaar071d4272004-06-13 20:20:40 +0000982# ifdef UNIX
983 fullname != NULL ? fullname :
984# endif
985 eap->arg);
Bram Moolenaar7fc904b2006-04-13 20:37:35 +0000986#ifdef FEAT_AUTOCMD
Bram Moolenaar78ab3312007-09-29 12:16:41 +0000987 block_autocmds(); /* Avoid ShellCmdPost stuff */
Bram Moolenaar7fc904b2006-04-13 20:37:35 +0000988#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000989 (void)call_shell(buf, SHELL_FILTER | SHELL_COOKED);
Bram Moolenaar7fc904b2006-04-13 20:37:35 +0000990#ifdef FEAT_AUTOCMD
Bram Moolenaar78ab3312007-09-29 12:16:41 +0000991 unblock_autocmds();
Bram Moolenaar7fc904b2006-04-13 20:37:35 +0000992#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000993 }
994
995#ifdef UNIX
996 if (dirbuf[0] != NUL)
997 {
998 if (mch_chdir((char *)dirbuf) != 0)
999 EMSG(_(e_prev_dir));
1000 shorten_fnames(TRUE);
1001 }
1002#endif
1003
1004 /* patch probably has written over the screen */
1005 redraw_later(CLEAR);
1006
1007 /* Delete any .orig or .rej file created. */
1008 STRCPY(buf, tmp_new);
1009 STRCAT(buf, ".orig");
1010 mch_remove(buf);
1011 STRCPY(buf, tmp_new);
1012 STRCAT(buf, ".rej");
1013 mch_remove(buf);
1014
Bram Moolenaar6ec0a6c2009-07-22 14:23:13 +00001015 /* Only continue if the output file was created. */
1016 if (mch_stat((char *)tmp_new, &st) < 0 || st.st_size == 0)
1017 EMSG(_("E816: Cannot read patch output"));
1018 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001019 {
Bram Moolenaar6ec0a6c2009-07-22 14:23:13 +00001020 if (curbuf->b_fname != NULL)
1021 {
1022 newname = vim_strnsave(curbuf->b_fname,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001023 (int)(STRLEN(curbuf->b_fname) + 4));
Bram Moolenaar6ec0a6c2009-07-22 14:23:13 +00001024 if (newname != NULL)
1025 STRCAT(newname, ".new");
1026 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001027
1028#ifdef FEAT_GUI
Bram Moolenaar6ec0a6c2009-07-22 14:23:13 +00001029 need_mouse_correct = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001030#endif
Bram Moolenaar6ec0a6c2009-07-22 14:23:13 +00001031 /* don't use a new tab page, each tab page has its own diffs */
1032 cmdmod.tab = 0;
Bram Moolenaar80a94a52006-02-23 21:26:58 +00001033
Bram Moolenaar6ec0a6c2009-07-22 14:23:13 +00001034 if (win_split(0, (diff_flags & DIFF_VERTICAL) ? WSP_VERT : 0) != FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001035 {
Bram Moolenaar6ec0a6c2009-07-22 14:23:13 +00001036 /* Pretend it was a ":split fname" command */
1037 eap->cmdidx = CMD_split;
1038 eap->arg = tmp_new;
1039 do_exedit(eap, old_curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001040
Bram Moolenaar6ec0a6c2009-07-22 14:23:13 +00001041 /* check that split worked and editing tmp_new */
1042 if (curwin != old_curwin && win_valid(old_curwin))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001043 {
Bram Moolenaar6ec0a6c2009-07-22 14:23:13 +00001044 /* Set 'diff', 'scrollbind' on and 'wrap' off. */
1045 diff_win_options(curwin, TRUE);
1046 diff_win_options(old_curwin, TRUE);
1047
1048 if (newname != NULL)
1049 {
1050 /* do a ":file filename.new" on the patched buffer */
1051 eap->arg = newname;
1052 ex_file(eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001053
1054#ifdef FEAT_AUTOCMD
Bram Moolenaar6ec0a6c2009-07-22 14:23:13 +00001055 /* Do filetype detection with the new name. */
1056 if (au_has_group((char_u *)"filetypedetect"))
1057 do_cmdline_cmd((char_u *)":doau filetypedetect BufRead");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001058#endif
Bram Moolenaar6ec0a6c2009-07-22 14:23:13 +00001059 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001060 }
1061 }
1062 }
1063
1064theend:
1065 if (tmp_orig != NULL)
1066 mch_remove(tmp_orig);
1067 vim_free(tmp_orig);
1068 if (tmp_new != NULL)
1069 mch_remove(tmp_new);
1070 vim_free(tmp_new);
1071 vim_free(newname);
1072 vim_free(buf);
1073#ifdef UNIX
1074 vim_free(fullname);
1075#endif
1076#ifdef FEAT_BROWSE
1077 vim_free(browseFile);
1078 cmdmod.browse = browse_flag;
1079#endif
1080}
1081
1082/*
1083 * Split the window and edit another file, setting options to show the diffs.
1084 */
1085 void
1086ex_diffsplit(eap)
1087 exarg_T *eap;
1088{
1089 win_T *old_curwin = curwin;
1090
1091#ifdef FEAT_GUI
1092 need_mouse_correct = TRUE;
1093#endif
Bram Moolenaar80a94a52006-02-23 21:26:58 +00001094 /* don't use a new tab page, each tab page has its own diffs */
1095 cmdmod.tab = 0;
1096
Bram Moolenaarc4675a12006-03-15 22:50:30 +00001097 if (win_split(0, (diff_flags & DIFF_VERTICAL) ? WSP_VERT : 0) != FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001098 {
1099 /* Pretend it was a ":split fname" command */
1100 eap->cmdidx = CMD_split;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001101 curwin->w_p_diff = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001102 do_exedit(eap, old_curwin);
1103
1104 if (curwin != old_curwin) /* split must have worked */
1105 {
1106 /* Set 'diff', 'scrollbind' on and 'wrap' off. */
1107 diff_win_options(curwin, TRUE);
1108 diff_win_options(old_curwin, TRUE);
1109 }
1110 }
1111}
1112
1113/*
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02001114 * Set options to show diffs for the current window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001115 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001116 void
1117ex_diffthis(eap)
Bram Moolenaar0c094b92009-05-14 20:20:33 +00001118 exarg_T *eap UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001119{
1120 /* Set 'diff', 'scrollbind' on and 'wrap' off. */
1121 diff_win_options(curwin, TRUE);
1122}
1123
1124/*
1125 * Set options in window "wp" for diff mode.
1126 */
1127 void
1128diff_win_options(wp, addbuf)
1129 win_T *wp;
1130 int addbuf; /* Add buffer to diff. */
1131{
Bram Moolenaarf4d7f942010-02-24 14:34:19 +01001132# ifdef FEAT_FOLDING
1133 win_T *old_curwin = curwin;
1134
1135 /* close the manually opened folds */
1136 curwin = wp;
1137 newFoldLevel();
1138 curwin = old_curwin;
1139# endif
1140
Bram Moolenaar071d4272004-06-13 20:20:40 +00001141 wp->w_p_diff = TRUE;
Bram Moolenaara87aa802013-07-03 15:47:03 +02001142
Bram Moolenaar3368ea22010-09-21 16:56:35 +02001143 /* Use 'scrollbind' and 'cursorbind' when available */
1144#ifdef FEAT_SCROLLBIND
Bram Moolenaara87aa802013-07-03 15:47:03 +02001145 if (!wp->w_p_diff_saved)
1146 wp->w_p_scb_save = wp->w_p_scb;
Bram Moolenaar3368ea22010-09-21 16:56:35 +02001147 wp->w_p_scb = TRUE;
1148#endif
Bram Moolenaar860cae12010-06-05 23:22:07 +02001149#ifdef FEAT_CURSORBIND
Bram Moolenaara87aa802013-07-03 15:47:03 +02001150 if (!wp->w_p_diff_saved)
1151 wp->w_p_crb_save = wp->w_p_crb;
Bram Moolenaar860cae12010-06-05 23:22:07 +02001152 wp->w_p_crb = TRUE;
1153#endif
Bram Moolenaara87aa802013-07-03 15:47:03 +02001154 if (!wp->w_p_diff_saved)
1155 wp->w_p_wrap_save = wp->w_p_wrap;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001156 wp->w_p_wrap = FALSE;
1157# ifdef FEAT_FOLDING
Bram Moolenaarf4d7f942010-02-24 14:34:19 +01001158 curwin = wp;
1159 curbuf = curwin->w_buffer;
Bram Moolenaara87aa802013-07-03 15:47:03 +02001160 if (!wp->w_p_diff_saved)
1161 wp->w_p_fdm_save = vim_strsave(wp->w_p_fdm);
Bram Moolenaarf4d7f942010-02-24 14:34:19 +01001162 set_string_option_direct((char_u *)"fdm", -1, (char_u *)"diff",
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00001163 OPT_LOCAL|OPT_FREE, 0);
Bram Moolenaarf4d7f942010-02-24 14:34:19 +01001164 curwin = old_curwin;
1165 curbuf = curwin->w_buffer;
Bram Moolenaara87aa802013-07-03 15:47:03 +02001166 if (!wp->w_p_diff_saved)
1167 {
1168 wp->w_p_fdc_save = wp->w_p_fdc;
1169 wp->w_p_fen_save = wp->w_p_fen;
1170 wp->w_p_fdl_save = wp->w_p_fdl;
1171 }
Bram Moolenaarf4d7f942010-02-24 14:34:19 +01001172 wp->w_p_fdc = diff_foldcolumn;
1173 wp->w_p_fen = TRUE;
1174 wp->w_p_fdl = 0;
1175 foldUpdateAll(wp);
1176 /* make sure topline is not halfway a fold */
1177 changed_window_setting_win(wp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001178# endif
1179#ifdef FEAT_SCROLLBIND
1180 if (vim_strchr(p_sbo, 'h') == NULL)
1181 do_cmdline_cmd((char_u *)"set sbo+=hor");
1182#endif
Bram Moolenaara87aa802013-07-03 15:47:03 +02001183 /* Saved the current values, to be restored in ex_diffoff(). */
1184 wp->w_p_diff_saved = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001185
1186 if (addbuf)
1187 diff_buf_add(wp->w_buffer);
1188 redraw_win_later(wp, NOT_VALID);
1189}
1190
1191/*
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001192 * Set options not to show diffs. For the current window or all windows.
Bram Moolenaarf740b292006-02-16 22:11:02 +00001193 * Only in the current tab page.
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001194 */
1195 void
1196ex_diffoff(eap)
1197 exarg_T *eap;
1198{
1199 win_T *wp;
1200 win_T *old_curwin = curwin;
1201#ifdef FEAT_SCROLLBIND
1202 int diffwin = FALSE;
1203#endif
1204
1205 for (wp = firstwin; wp != NULL; wp = wp->w_next)
1206 {
Bram Moolenaar00462ff2013-09-20 20:13:53 +02001207 if (eap->forceit ? wp->w_p_diff : wp == curwin)
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001208 {
Bram Moolenaara87aa802013-07-03 15:47:03 +02001209 /* Set 'diff', 'scrollbind' off and 'wrap' on. If option values
1210 * were saved in diff_win_options() restore them. */
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001211 wp->w_p_diff = FALSE;
Bram Moolenaara87aa802013-07-03 15:47:03 +02001212
1213#ifdef FEAT_SCROLLBIND
1214 if (wp->w_p_scb)
1215 wp->w_p_scb = wp->w_p_diff_saved ? wp->w_p_scb_save : FALSE;
1216#endif
1217#ifdef FEAT_CURSORBIND
1218 if (wp->w_p_crb)
1219 wp->w_p_crb = wp->w_p_diff_saved ? wp->w_p_crb_save : FALSE;
1220#endif
1221 if (!wp->w_p_wrap)
1222 wp->w_p_wrap = wp->w_p_diff_saved ? wp->w_p_wrap_save : TRUE;
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001223#ifdef FEAT_FOLDING
1224 curwin = wp;
1225 curbuf = curwin->w_buffer;
Bram Moolenaara87aa802013-07-03 15:47:03 +02001226 if (wp->w_p_diff_saved)
1227 {
1228 free_string_option(wp->w_p_fdm);
1229 wp->w_p_fdm = wp->w_p_fdm_save;
1230 wp->w_p_fdm_save = empty_option;
1231 }
1232 else
1233 set_string_option_direct((char_u *)"fdm", -1,
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00001234 (char_u *)"manual", OPT_LOCAL|OPT_FREE, 0);
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001235 curwin = old_curwin;
1236 curbuf = curwin->w_buffer;
Bram Moolenaara87aa802013-07-03 15:47:03 +02001237 if (wp->w_p_fdc == diff_foldcolumn)
1238 wp->w_p_fdc = wp->w_p_diff_saved ? wp->w_p_fdc_save : 0;
Bram Moolenaara87aa802013-07-03 15:47:03 +02001239 if (wp->w_p_fdl == 0 && wp->w_p_diff_saved)
1240 wp->w_p_fdl = wp->w_p_fdl_save;
Bram Moolenaar33ca6bf2013-07-17 13:43:39 +02001241
1242 if (wp->w_p_fen)
1243 {
1244 /* Only restore 'foldenable' when 'foldmethod' is not
1245 * "manual", otherwise we continue to show the diff folds. */
1246 if (foldmethodIsManual(wp) || !wp->w_p_diff_saved)
1247 wp->w_p_fen = FALSE;
1248 else
1249 wp->w_p_fen = wp->w_p_fen_save;
1250 }
1251
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001252 foldUpdateAll(wp);
1253 /* make sure topline is not halfway a fold */
1254 changed_window_setting_win(wp);
1255#endif
Bram Moolenaara87aa802013-07-03 15:47:03 +02001256 /* Note: 'sbo' is not restored, it's a global option. */
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001257 diff_buf_adjust(wp);
Bram Moolenaara87aa802013-07-03 15:47:03 +02001258
1259 wp->w_p_diff_saved = FALSE;
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001260 }
1261#ifdef FEAT_SCROLLBIND
1262 diffwin |= wp->w_p_diff;
1263#endif
1264 }
1265
1266#ifdef FEAT_SCROLLBIND
1267 /* Remove "hor" from from 'scrollopt' if there are no diff windows left. */
1268 if (!diffwin && vim_strchr(p_sbo, 'h') != NULL)
1269 do_cmdline_cmd((char_u *)"set sbo-=hor");
1270#endif
1271}
1272
1273/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001274 * Read the diff output and add each entry to the diff list.
1275 */
1276 static void
1277diff_read(idx_orig, idx_new, fname)
1278 int idx_orig; /* idx of original file */
1279 int idx_new; /* idx of new file */
1280 char_u *fname; /* name of diff output file */
1281{
1282 FILE *fd;
1283 diff_T *dprev = NULL;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00001284 diff_T *dp = curtab->tp_first_diff;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001285 diff_T *dn, *dpl;
1286 long f1, l1, f2, l2;
1287 char_u linebuf[LBUFLEN]; /* only need to hold the diff line */
1288 int difftype;
1289 char_u *p;
1290 long off;
1291 int i;
1292 linenr_T lnum_orig, lnum_new;
1293 long count_orig, count_new;
1294 int notset = TRUE; /* block "*dp" not set yet */
1295
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00001296 fd = mch_fopen((char *)fname, "r");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001297 if (fd == NULL)
1298 {
1299 EMSG(_("E98: Cannot read diff output"));
1300 return;
1301 }
1302
1303 for (;;)
1304 {
1305 if (tag_fgets(linebuf, LBUFLEN, fd))
1306 break; /* end of file */
1307 if (!isdigit(*linebuf))
1308 continue; /* not the start of a diff block */
1309
1310 /* This line must be one of three formats:
1311 * {first}[,{last}]c{first}[,{last}]
1312 * {first}a{first}[,{last}]
1313 * {first}[,{last}]d{first}
1314 */
1315 p = linebuf;
1316 f1 = getdigits(&p);
1317 if (*p == ',')
1318 {
1319 ++p;
1320 l1 = getdigits(&p);
1321 }
1322 else
1323 l1 = f1;
1324 if (*p != 'a' && *p != 'c' && *p != 'd')
1325 continue; /* invalid diff format */
1326 difftype = *p++;
1327 f2 = getdigits(&p);
1328 if (*p == ',')
1329 {
1330 ++p;
1331 l2 = getdigits(&p);
1332 }
1333 else
1334 l2 = f2;
1335 if (l1 < f1 || l2 < f2)
1336 continue; /* invalid line range */
1337
1338 if (difftype == 'a')
1339 {
1340 lnum_orig = f1 + 1;
1341 count_orig = 0;
1342 }
1343 else
1344 {
1345 lnum_orig = f1;
1346 count_orig = l1 - f1 + 1;
1347 }
1348 if (difftype == 'd')
1349 {
1350 lnum_new = f2 + 1;
1351 count_new = 0;
1352 }
1353 else
1354 {
1355 lnum_new = f2;
1356 count_new = l2 - f2 + 1;
1357 }
1358
1359 /* Go over blocks before the change, for which orig and new are equal.
1360 * Copy blocks from orig to new. */
1361 while (dp != NULL
1362 && lnum_orig > dp->df_lnum[idx_orig] + dp->df_count[idx_orig])
1363 {
1364 if (notset)
1365 diff_copy_entry(dprev, dp, idx_orig, idx_new);
1366 dprev = dp;
1367 dp = dp->df_next;
1368 notset = TRUE;
1369 }
1370
1371 if (dp != NULL
1372 && lnum_orig <= dp->df_lnum[idx_orig] + dp->df_count[idx_orig]
1373 && lnum_orig + count_orig >= dp->df_lnum[idx_orig])
1374 {
1375 /* New block overlaps with existing block(s).
1376 * First find last block that overlaps. */
1377 for (dpl = dp; dpl->df_next != NULL; dpl = dpl->df_next)
1378 if (lnum_orig + count_orig < dpl->df_next->df_lnum[idx_orig])
1379 break;
1380
1381 /* If the newly found block starts before the old one, set the
1382 * start back a number of lines. */
1383 off = dp->df_lnum[idx_orig] - lnum_orig;
1384 if (off > 0)
1385 {
1386 for (i = idx_orig; i < idx_new; ++i)
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00001387 if (curtab->tp_diffbuf[i] != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001388 dp->df_lnum[i] -= off;
1389 dp->df_lnum[idx_new] = lnum_new;
1390 dp->df_count[idx_new] = count_new;
1391 }
1392 else if (notset)
1393 {
1394 /* new block inside existing one, adjust new block */
1395 dp->df_lnum[idx_new] = lnum_new + off;
1396 dp->df_count[idx_new] = count_new - off;
1397 }
1398 else
1399 /* second overlap of new block with existing block */
Bram Moolenaarbb8f88b2008-01-18 16:40:00 +00001400 dp->df_count[idx_new] += count_new - count_orig
1401 + dpl->df_lnum[idx_orig] + dpl->df_count[idx_orig]
1402 - (dp->df_lnum[idx_orig] + dp->df_count[idx_orig]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001403
1404 /* Adjust the size of the block to include all the lines to the
1405 * end of the existing block or the new diff, whatever ends last. */
1406 off = (lnum_orig + count_orig)
1407 - (dpl->df_lnum[idx_orig] + dpl->df_count[idx_orig]);
1408 if (off < 0)
1409 {
1410 /* new change ends in existing block, adjust the end if not
1411 * done already */
1412 if (notset)
1413 dp->df_count[idx_new] += -off;
1414 off = 0;
1415 }
Bram Moolenaard4b96bc2007-10-19 15:33:39 +00001416 for (i = idx_orig; i < idx_new; ++i)
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00001417 if (curtab->tp_diffbuf[i] != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001418 dp->df_count[i] = dpl->df_lnum[i] + dpl->df_count[i]
1419 - dp->df_lnum[i] + off;
1420
1421 /* Delete the diff blocks that have been merged into one. */
1422 dn = dp->df_next;
1423 dp->df_next = dpl->df_next;
1424 while (dn != dp->df_next)
1425 {
1426 dpl = dn->df_next;
1427 vim_free(dn);
1428 dn = dpl;
1429 }
1430 }
1431 else
1432 {
1433 /* Allocate a new diffblock. */
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00001434 dp = diff_alloc_new(curtab, dprev, dp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001435 if (dp == NULL)
Bram Moolenaareb3593b2006-04-22 22:33:57 +00001436 goto done;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001437
1438 dp->df_lnum[idx_orig] = lnum_orig;
1439 dp->df_count[idx_orig] = count_orig;
1440 dp->df_lnum[idx_new] = lnum_new;
1441 dp->df_count[idx_new] = count_new;
1442
1443 /* Set values for other buffers, these must be equal to the
1444 * original buffer, otherwise there would have been a change
1445 * already. */
1446 for (i = idx_orig + 1; i < idx_new; ++i)
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00001447 if (curtab->tp_diffbuf[i] != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001448 diff_copy_entry(dprev, dp, idx_orig, i);
1449 }
1450 notset = FALSE; /* "*dp" has been set */
1451 }
1452
1453 /* for remaining diff blocks orig and new are equal */
1454 while (dp != NULL)
1455 {
1456 if (notset)
1457 diff_copy_entry(dprev, dp, idx_orig, idx_new);
1458 dprev = dp;
1459 dp = dp->df_next;
1460 notset = TRUE;
1461 }
1462
Bram Moolenaareb3593b2006-04-22 22:33:57 +00001463done:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001464 fclose(fd);
1465}
1466
1467/*
1468 * Copy an entry at "dp" from "idx_orig" to "idx_new".
1469 */
1470 static void
1471diff_copy_entry(dprev, dp, idx_orig, idx_new)
1472 diff_T *dprev;
1473 diff_T *dp;
1474 int idx_orig;
1475 int idx_new;
1476{
1477 long off;
1478
1479 if (dprev == NULL)
1480 off = 0;
1481 else
1482 off = (dprev->df_lnum[idx_orig] + dprev->df_count[idx_orig])
1483 - (dprev->df_lnum[idx_new] + dprev->df_count[idx_new]);
1484 dp->df_lnum[idx_new] = dp->df_lnum[idx_orig] - off;
1485 dp->df_count[idx_new] = dp->df_count[idx_orig];
1486}
1487
1488/*
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00001489 * Clear the list of diffblocks for tab page "tp".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001490 */
Bram Moolenaarea408852005-06-25 22:49:46 +00001491 void
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00001492diff_clear(tp)
1493 tabpage_T *tp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001494{
1495 diff_T *p, *next_p;
1496
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00001497 for (p = tp->tp_first_diff; p != NULL; p = next_p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001498 {
1499 next_p = p->df_next;
1500 vim_free(p);
1501 }
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00001502 tp->tp_first_diff = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001503}
1504
1505/*
1506 * Check diff status for line "lnum" in buffer "buf":
1507 * Returns 0 for nothing special
1508 * Returns -1 for a line that should be highlighted as changed.
1509 * Returns -2 for a line that should be highlighted as added/deleted.
1510 * Returns > 0 for inserting that many filler lines above it (never happens
1511 * when 'diffopt' doesn't contain "filler").
1512 * This should only be used for windows where 'diff' is set.
1513 */
1514 int
1515diff_check(wp, lnum)
1516 win_T *wp;
1517 linenr_T lnum;
1518{
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00001519 int idx; /* index in tp_diffbuf[] for this buffer */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001520 diff_T *dp;
1521 int maxcount;
1522 int i;
1523 buf_T *buf = wp->w_buffer;
1524 int cmp;
1525
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00001526 if (curtab->tp_diff_invalid)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001527 ex_diffupdate(NULL); /* update after a big change */
1528
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00001529 if (curtab->tp_first_diff == NULL || !wp->w_p_diff) /* no diffs at all */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001530 return 0;
1531
1532 /* safety check: "lnum" must be a buffer line */
1533 if (lnum < 1 || lnum > buf->b_ml.ml_line_count + 1)
1534 return 0;
1535
1536 idx = diff_buf_idx(buf);
1537 if (idx == DB_COUNT)
1538 return 0; /* no diffs for buffer "buf" */
1539
1540#ifdef FEAT_FOLDING
1541 /* A closed fold never has filler lines. */
1542 if (hasFoldingWin(wp, lnum, NULL, NULL, TRUE, NULL))
1543 return 0;
1544#endif
1545
1546 /* search for a change that includes "lnum" in the list of diffblocks. */
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00001547 for (dp = curtab->tp_first_diff; dp != NULL; dp = dp->df_next)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001548 if (lnum <= dp->df_lnum[idx] + dp->df_count[idx])
1549 break;
1550 if (dp == NULL || lnum < dp->df_lnum[idx])
1551 return 0;
1552
1553 if (lnum < dp->df_lnum[idx] + dp->df_count[idx])
1554 {
1555 int zero = FALSE;
1556
1557 /* Changed or inserted line. If the other buffers have a count of
1558 * zero, the lines were inserted. If the other buffers have the same
1559 * count, check if the lines are identical. */
1560 cmp = FALSE;
1561 for (i = 0; i < DB_COUNT; ++i)
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00001562 if (i != idx && curtab->tp_diffbuf[i] != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001563 {
1564 if (dp->df_count[i] == 0)
1565 zero = TRUE;
1566 else
1567 {
1568 if (dp->df_count[i] != dp->df_count[idx])
1569 return -1; /* nr of lines changed. */
1570 cmp = TRUE;
1571 }
1572 }
1573 if (cmp)
1574 {
1575 /* Compare all lines. If they are equal the lines were inserted
1576 * in some buffers, deleted in others, but not changed. */
1577 for (i = 0; i < DB_COUNT; ++i)
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00001578 if (i != idx && curtab->tp_diffbuf[i] != NULL && dp->df_count[i] != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001579 if (!diff_equal_entry(dp, idx, i))
1580 return -1;
1581 }
1582 /* If there is no buffer with zero lines then there is no difference
1583 * any longer. Happens when making a change (or undo) that removes
1584 * the difference. Can't remove the entry here, we might be halfway
1585 * updating the window. Just report the text as unchanged. Other
1586 * windows might still show the change though. */
1587 if (zero == FALSE)
1588 return 0;
1589 return -2;
1590 }
1591
1592 /* If 'diffopt' doesn't contain "filler", return 0. */
1593 if (!(diff_flags & DIFF_FILLER))
1594 return 0;
1595
1596 /* Insert filler lines above the line just below the change. Will return
1597 * 0 when this buf had the max count. */
1598 maxcount = 0;
1599 for (i = 0; i < DB_COUNT; ++i)
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00001600 if (curtab->tp_diffbuf[i] != NULL && dp->df_count[i] > maxcount)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001601 maxcount = dp->df_count[i];
1602 return maxcount - dp->df_count[idx];
1603}
1604
1605/*
1606 * Compare two entries in diff "*dp" and return TRUE if they are equal.
1607 */
1608 static int
1609diff_equal_entry(dp, idx1, idx2)
1610 diff_T *dp;
1611 int idx1;
1612 int idx2;
1613{
1614 int i;
1615 char_u *line;
1616 int cmp;
1617
1618 if (dp->df_count[idx1] != dp->df_count[idx2])
1619 return FALSE;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00001620 if (diff_check_sanity(curtab, dp) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001621 return FALSE;
1622 for (i = 0; i < dp->df_count[idx1]; ++i)
1623 {
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00001624 line = vim_strsave(ml_get_buf(curtab->tp_diffbuf[idx1],
Bram Moolenaar071d4272004-06-13 20:20:40 +00001625 dp->df_lnum[idx1] + i, FALSE));
1626 if (line == NULL)
1627 return FALSE;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00001628 cmp = diff_cmp(line, ml_get_buf(curtab->tp_diffbuf[idx2],
Bram Moolenaar071d4272004-06-13 20:20:40 +00001629 dp->df_lnum[idx2] + i, FALSE));
1630 vim_free(line);
1631 if (cmp != 0)
1632 return FALSE;
1633 }
1634 return TRUE;
1635}
1636
1637/*
1638 * Compare strings "s1" and "s2" according to 'diffopt'.
1639 * Return non-zero when they are different.
1640 */
1641 static int
1642diff_cmp(s1, s2)
1643 char_u *s1;
1644 char_u *s2;
1645{
1646 char_u *p1, *p2;
1647#ifdef FEAT_MBYTE
1648 int l;
1649#endif
1650
1651 if ((diff_flags & (DIFF_ICASE | DIFF_IWHITE)) == 0)
1652 return STRCMP(s1, s2);
1653 if ((diff_flags & DIFF_ICASE) && !(diff_flags & DIFF_IWHITE))
1654 return MB_STRICMP(s1, s2);
1655
1656 /* Ignore white space changes and possibly ignore case. */
1657 p1 = s1;
1658 p2 = s2;
1659 while (*p1 != NUL && *p2 != NUL)
1660 {
1661 if (vim_iswhite(*p1) && vim_iswhite(*p2))
1662 {
1663 p1 = skipwhite(p1);
1664 p2 = skipwhite(p2);
1665 }
1666 else
1667 {
1668#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001669 l = (*mb_ptr2len)(p1);
1670 if (l != (*mb_ptr2len)(p2))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001671 break;
1672 if (l > 1)
1673 {
1674 if (STRNCMP(p1, p2, l) != 0
1675 && (!enc_utf8
1676 || !(diff_flags & DIFF_ICASE)
1677 || utf_fold(utf_ptr2char(p1))
1678 != utf_fold(utf_ptr2char(p2))))
1679 break;
1680 p1 += l;
1681 p2 += l;
1682 }
1683 else
1684#endif
1685 {
1686 if (*p1 != *p2 && (!(diff_flags & DIFF_ICASE)
1687 || TOLOWER_LOC(*p1) != TOLOWER_LOC(*p2)))
1688 break;
1689 ++p1;
1690 ++p2;
1691 }
1692 }
1693 }
1694
1695 /* Ignore trailing white space. */
1696 p1 = skipwhite(p1);
1697 p2 = skipwhite(p2);
1698 if (*p1 != NUL || *p2 != NUL)
1699 return 1;
1700 return 0;
1701}
1702
1703/*
1704 * Return the number of filler lines above "lnum".
1705 */
1706 int
1707diff_check_fill(wp, lnum)
1708 win_T *wp;
1709 linenr_T lnum;
1710{
1711 int n;
1712
1713 /* be quick when there are no filler lines */
1714 if (!(diff_flags & DIFF_FILLER))
1715 return 0;
1716 n = diff_check(wp, lnum);
1717 if (n <= 0)
1718 return 0;
1719 return n;
1720}
1721
1722/*
1723 * Set the topline of "towin" to match the position in "fromwin", so that they
1724 * show the same diff'ed lines.
1725 */
1726 void
1727diff_set_topline(fromwin, towin)
1728 win_T *fromwin;
1729 win_T *towin;
1730{
Bram Moolenaarbb8f88b2008-01-18 16:40:00 +00001731 buf_T *frombuf = fromwin->w_buffer;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001732 linenr_T lnum = fromwin->w_topline;
Bram Moolenaarbb8f88b2008-01-18 16:40:00 +00001733 int fromidx;
1734 int toidx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001735 diff_T *dp;
Bram Moolenaarbb8f88b2008-01-18 16:40:00 +00001736 int max_count;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001737 int i;
1738
Bram Moolenaarbb8f88b2008-01-18 16:40:00 +00001739 fromidx = diff_buf_idx(frombuf);
1740 if (fromidx == DB_COUNT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001741 return; /* safety check */
1742
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00001743 if (curtab->tp_diff_invalid)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001744 ex_diffupdate(NULL); /* update after a big change */
1745
1746 towin->w_topfill = 0;
1747
1748 /* search for a change that includes "lnum" in the list of diffblocks. */
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00001749 for (dp = curtab->tp_first_diff; dp != NULL; dp = dp->df_next)
Bram Moolenaarbb8f88b2008-01-18 16:40:00 +00001750 if (lnum <= dp->df_lnum[fromidx] + dp->df_count[fromidx])
Bram Moolenaar071d4272004-06-13 20:20:40 +00001751 break;
1752 if (dp == NULL)
1753 {
1754 /* After last change, compute topline relative to end of file; no
1755 * filler lines. */
1756 towin->w_topline = towin->w_buffer->b_ml.ml_line_count
Bram Moolenaarbb8f88b2008-01-18 16:40:00 +00001757 - (frombuf->b_ml.ml_line_count - lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001758 }
1759 else
1760 {
1761 /* Find index for "towin". */
Bram Moolenaarbb8f88b2008-01-18 16:40:00 +00001762 toidx = diff_buf_idx(towin->w_buffer);
1763 if (toidx == DB_COUNT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001764 return; /* safety check */
1765
Bram Moolenaarbb8f88b2008-01-18 16:40:00 +00001766 towin->w_topline = lnum + (dp->df_lnum[toidx] - dp->df_lnum[fromidx]);
1767 if (lnum >= dp->df_lnum[fromidx])
Bram Moolenaar071d4272004-06-13 20:20:40 +00001768 {
Bram Moolenaarbb8f88b2008-01-18 16:40:00 +00001769 /* Inside a change: compute filler lines. With three or more
1770 * buffers we need to know the largest count. */
1771 max_count = 0;
1772 for (i = 0; i < DB_COUNT; ++i)
1773 if (curtab->tp_diffbuf[i] != NULL
1774 && max_count < dp->df_count[i])
1775 max_count = dp->df_count[i];
1776
1777 if (dp->df_count[toidx] == dp->df_count[fromidx])
1778 {
1779 /* same number of lines: use same filler count */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001780 towin->w_topfill = fromwin->w_topfill;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001781 }
Bram Moolenaarbb8f88b2008-01-18 16:40:00 +00001782 else if (dp->df_count[toidx] > dp->df_count[fromidx])
Bram Moolenaar071d4272004-06-13 20:20:40 +00001783 {
Bram Moolenaarbb8f88b2008-01-18 16:40:00 +00001784 if (lnum == dp->df_lnum[fromidx] + dp->df_count[fromidx])
Bram Moolenaar071d4272004-06-13 20:20:40 +00001785 {
Bram Moolenaarbb8f88b2008-01-18 16:40:00 +00001786 /* more lines in towin and fromwin doesn't show diff
1787 * lines, only filler lines */
1788 if (max_count - fromwin->w_topfill >= dp->df_count[toidx])
1789 {
1790 /* towin also only shows filler lines */
1791 towin->w_topline = dp->df_lnum[toidx]
1792 + dp->df_count[toidx];
1793 towin->w_topfill = fromwin->w_topfill;
1794 }
1795 else
1796 /* towin still has some diff lines to show */
1797 towin->w_topline = dp->df_lnum[toidx]
1798 + max_count - fromwin->w_topfill;
1799 }
1800 }
1801 else if (towin->w_topline >= dp->df_lnum[toidx]
1802 + dp->df_count[toidx])
1803 {
1804 /* less lines in towin and no diff lines to show: compute
1805 * filler lines */
1806 towin->w_topline = dp->df_lnum[toidx] + dp->df_count[toidx];
1807 if (diff_flags & DIFF_FILLER)
1808 {
1809 if (lnum == dp->df_lnum[fromidx] + dp->df_count[fromidx])
1810 /* fromwin is also out of diff lines */
1811 towin->w_topfill = fromwin->w_topfill;
1812 else
1813 /* fromwin has some diff lines */
1814 towin->w_topfill = dp->df_lnum[fromidx]
1815 + max_count - lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001816 }
1817 }
1818 }
1819 }
1820
1821 /* safety check (if diff info gets outdated strange things may happen) */
1822 towin->w_botfill = FALSE;
1823 if (towin->w_topline > towin->w_buffer->b_ml.ml_line_count)
1824 {
1825 towin->w_topline = towin->w_buffer->b_ml.ml_line_count;
1826 towin->w_botfill = TRUE;
1827 }
1828 if (towin->w_topline < 1)
1829 {
1830 towin->w_topline = 1;
1831 towin->w_topfill = 0;
1832 }
1833
1834 /* When w_topline changes need to recompute w_botline and cursor position */
1835 invalidate_botline_win(towin);
1836 changed_line_abv_curs_win(towin);
1837
1838 check_topfill(towin, FALSE);
1839#ifdef FEAT_FOLDING
1840 (void)hasFoldingWin(towin, towin->w_topline, &towin->w_topline,
1841 NULL, TRUE, NULL);
1842#endif
1843}
1844
1845/*
1846 * This is called when 'diffopt' is changed.
1847 */
1848 int
1849diffopt_changed()
1850{
1851 char_u *p;
1852 int diff_context_new = 6;
1853 int diff_flags_new = 0;
Bram Moolenaarc4675a12006-03-15 22:50:30 +00001854 int diff_foldcolumn_new = 2;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00001855 tabpage_T *tp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001856
1857 p = p_dip;
1858 while (*p != NUL)
1859 {
1860 if (STRNCMP(p, "filler", 6) == 0)
1861 {
1862 p += 6;
1863 diff_flags_new |= DIFF_FILLER;
1864 }
1865 else if (STRNCMP(p, "context:", 8) == 0 && VIM_ISDIGIT(p[8]))
1866 {
1867 p += 8;
1868 diff_context_new = getdigits(&p);
1869 }
1870 else if (STRNCMP(p, "icase", 5) == 0)
1871 {
1872 p += 5;
1873 diff_flags_new |= DIFF_ICASE;
1874 }
1875 else if (STRNCMP(p, "iwhite", 6) == 0)
1876 {
1877 p += 6;
1878 diff_flags_new |= DIFF_IWHITE;
1879 }
Bram Moolenaarc4675a12006-03-15 22:50:30 +00001880 else if (STRNCMP(p, "horizontal", 10) == 0)
1881 {
1882 p += 10;
1883 diff_flags_new |= DIFF_HORIZONTAL;
1884 }
1885 else if (STRNCMP(p, "vertical", 8) == 0)
1886 {
1887 p += 8;
1888 diff_flags_new |= DIFF_VERTICAL;
1889 }
1890 else if (STRNCMP(p, "foldcolumn:", 11) == 0 && VIM_ISDIGIT(p[11]))
1891 {
1892 p += 11;
1893 diff_foldcolumn_new = getdigits(&p);
1894 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001895 if (*p != ',' && *p != NUL)
1896 return FAIL;
1897 if (*p == ',')
1898 ++p;
1899 }
1900
Bram Moolenaarc4675a12006-03-15 22:50:30 +00001901 /* Can't have both "horizontal" and "vertical". */
1902 if ((diff_flags_new & DIFF_HORIZONTAL) && (diff_flags_new & DIFF_VERTICAL))
1903 return FAIL;
1904
Bram Moolenaar071d4272004-06-13 20:20:40 +00001905 /* If "icase" or "iwhite" was added or removed, need to update the diff. */
1906 if (diff_flags != diff_flags_new)
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00001907 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next)
1908 tp->tp_diff_invalid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001909
1910 diff_flags = diff_flags_new;
1911 diff_context = diff_context_new;
Bram Moolenaarc4675a12006-03-15 22:50:30 +00001912 diff_foldcolumn = diff_foldcolumn_new;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001913
1914 diff_redraw(TRUE);
1915
1916 /* recompute the scroll binding with the new option value, may
1917 * remove or add filler lines */
1918 check_scrollbind((linenr_T)0, 0L);
1919
1920 return OK;
1921}
1922
1923/*
Bram Moolenaarc4675a12006-03-15 22:50:30 +00001924 * Return TRUE if 'diffopt' contains "horizontal".
1925 */
1926 int
1927diffopt_horizontal()
1928{
1929 return (diff_flags & DIFF_HORIZONTAL) != 0;
1930}
1931
1932/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001933 * Find the difference within a changed line.
1934 * Returns TRUE if the line was added, no other buffer has it.
1935 */
1936 int
1937diff_find_change(wp, lnum, startp, endp)
1938 win_T *wp;
1939 linenr_T lnum;
1940 int *startp; /* first char of the change */
1941 int *endp; /* last char of the change */
1942{
1943 char_u *line_org;
1944 char_u *line_new;
1945 int i;
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00001946 int si_org, si_new;
1947 int ei_org, ei_new;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001948 diff_T *dp;
1949 int idx;
1950 int off;
1951 int added = TRUE;
1952
1953 /* Make a copy of the line, the next ml_get() will invalidate it. */
1954 line_org = vim_strsave(ml_get_buf(wp->w_buffer, lnum, FALSE));
1955 if (line_org == NULL)
1956 return FALSE;
1957
1958 idx = diff_buf_idx(wp->w_buffer);
1959 if (idx == DB_COUNT) /* cannot happen */
Bram Moolenaarfa3491a2007-02-20 02:49:19 +00001960 {
1961 vim_free(line_org);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001962 return FALSE;
Bram Moolenaarfa3491a2007-02-20 02:49:19 +00001963 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001964
1965 /* search for a change that includes "lnum" in the list of diffblocks. */
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00001966 for (dp = curtab->tp_first_diff; dp != NULL; dp = dp->df_next)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001967 if (lnum <= dp->df_lnum[idx] + dp->df_count[idx])
1968 break;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00001969 if (dp == NULL || diff_check_sanity(curtab, dp) == FAIL)
Bram Moolenaarfa3491a2007-02-20 02:49:19 +00001970 {
1971 vim_free(line_org);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001972 return FALSE;
Bram Moolenaarfa3491a2007-02-20 02:49:19 +00001973 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001974
1975 off = lnum - dp->df_lnum[idx];
1976
1977 for (i = 0; i < DB_COUNT; ++i)
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00001978 if (curtab->tp_diffbuf[i] != NULL && i != idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001979 {
1980 /* Skip lines that are not in the other change (filler lines). */
1981 if (off >= dp->df_count[i])
1982 continue;
1983 added = FALSE;
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00001984 line_new = ml_get_buf(curtab->tp_diffbuf[i],
1985 dp->df_lnum[i] + off, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001986
1987 /* Search for start of difference */
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00001988 si_org = si_new = 0;
1989 while (line_org[si_org] != NUL)
1990 {
1991 if ((diff_flags & DIFF_IWHITE)
1992 && vim_iswhite(line_org[si_org])
1993 && vim_iswhite(line_new[si_new]))
1994 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001995 si_org = (int)(skipwhite(line_org + si_org) - line_org);
1996 si_new = (int)(skipwhite(line_new + si_new) - line_new);
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00001997 }
1998 else
1999 {
2000 if (line_org[si_org] != line_new[si_new])
2001 break;
2002 ++si_org;
2003 ++si_new;
2004 }
2005 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002006#ifdef FEAT_MBYTE
2007 if (has_mbyte)
2008 {
2009 /* Move back to first byte of character in both lines (may
2010 * have "nn^" in line_org and "n^ in line_new). */
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00002011 si_org -= (*mb_head_off)(line_org, line_org + si_org);
2012 si_new -= (*mb_head_off)(line_new, line_new + si_new);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002013 }
2014#endif
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00002015 if (*startp > si_org)
2016 *startp = si_org;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002017
2018 /* Search for end of difference, if any. */
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00002019 if (line_org[si_org] != NUL || line_new[si_new] != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002020 {
2021 ei_org = (int)STRLEN(line_org);
2022 ei_new = (int)STRLEN(line_new);
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00002023 while (ei_org >= *startp && ei_new >= si_new
2024 && ei_org >= 0 && ei_new >= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002025 {
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00002026 if ((diff_flags & DIFF_IWHITE)
2027 && vim_iswhite(line_org[ei_org])
2028 && vim_iswhite(line_new[ei_new]))
2029 {
2030 while (ei_org >= *startp
2031 && vim_iswhite(line_org[ei_org]))
2032 --ei_org;
2033 while (ei_new >= si_new
2034 && vim_iswhite(line_new[ei_new]))
2035 --ei_new;
2036 }
2037 else
2038 {
2039 if (line_org[ei_org] != line_new[ei_new])
2040 break;
2041 --ei_org;
2042 --ei_new;
2043 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002044 }
2045 if (*endp < ei_org)
2046 *endp = ei_org;
2047 }
2048 }
2049
2050 vim_free(line_org);
2051 return added;
2052}
2053
2054#if defined(FEAT_FOLDING) || defined(PROTO)
2055/*
2056 * Return TRUE if line "lnum" is not close to a diff block, this line should
2057 * be in a fold.
2058 * Return FALSE if there are no diff blocks at all in this window.
2059 */
2060 int
2061diff_infold(wp, lnum)
2062 win_T *wp;
2063 linenr_T lnum;
2064{
2065 int i;
2066 int idx = -1;
2067 int other = FALSE;
2068 diff_T *dp;
2069
2070 /* Return if 'diff' isn't set. */
2071 if (!wp->w_p_diff)
2072 return FALSE;
2073
2074 for (i = 0; i < DB_COUNT; ++i)
2075 {
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002076 if (curtab->tp_diffbuf[i] == wp->w_buffer)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002077 idx = i;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002078 else if (curtab->tp_diffbuf[i] != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002079 other = TRUE;
2080 }
2081
2082 /* return here if there are no diffs in the window */
2083 if (idx == -1 || !other)
2084 return FALSE;
2085
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002086 if (curtab->tp_diff_invalid)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002087 ex_diffupdate(NULL); /* update after a big change */
2088
2089 /* Return if there are no diff blocks. All lines will be folded. */
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002090 if (curtab->tp_first_diff == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002091 return TRUE;
2092
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002093 for (dp = curtab->tp_first_diff; dp != NULL; dp = dp->df_next)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002094 {
2095 /* If this change is below the line there can't be any further match. */
2096 if (dp->df_lnum[idx] - diff_context > lnum)
2097 break;
2098 /* If this change ends before the line we have a match. */
2099 if (dp->df_lnum[idx] + dp->df_count[idx] + diff_context > lnum)
2100 return FALSE;
2101 }
2102 return TRUE;
2103}
2104#endif
2105
2106/*
2107 * "dp" and "do" commands.
2108 */
2109 void
2110nv_diffgetput(put)
2111 int put;
2112{
2113 exarg_T ea;
2114
2115 ea.arg = (char_u *)"";
2116 if (put)
2117 ea.cmdidx = CMD_diffput;
2118 else
2119 ea.cmdidx = CMD_diffget;
2120 ea.addr_count = 0;
2121 ea.line1 = curwin->w_cursor.lnum;
2122 ea.line2 = curwin->w_cursor.lnum;
2123 ex_diffgetput(&ea);
2124}
2125
2126/*
2127 * ":diffget"
2128 * ":diffput"
2129 */
2130 void
2131ex_diffgetput(eap)
2132 exarg_T *eap;
2133{
2134 linenr_T lnum;
2135 int count;
2136 linenr_T off = 0;
2137 diff_T *dp;
2138 diff_T *dprev;
2139 diff_T *dfree;
2140 int idx_cur;
2141 int idx_other;
2142 int idx_from;
2143 int idx_to;
2144 int i;
2145 int added;
2146 char_u *p;
2147 aco_save_T aco;
2148 buf_T *buf;
2149 int start_skip, end_skip;
2150 int new_count;
Bram Moolenaar280f1262006-01-30 00:14:18 +00002151 int buf_empty;
Bram Moolenaar602eb742007-02-20 03:43:38 +00002152 int found_not_ma = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002153
2154 /* Find the current buffer in the list of diff buffers. */
2155 idx_cur = diff_buf_idx(curbuf);
2156 if (idx_cur == DB_COUNT)
2157 {
2158 EMSG(_("E99: Current buffer is not in diff mode"));
2159 return;
2160 }
2161
2162 if (*eap->arg == NUL)
2163 {
2164 /* No argument: Find the other buffer in the list of diff buffers. */
2165 for (idx_other = 0; idx_other < DB_COUNT; ++idx_other)
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002166 if (curtab->tp_diffbuf[idx_other] != curbuf
Bram Moolenaar602eb742007-02-20 03:43:38 +00002167 && curtab->tp_diffbuf[idx_other] != NULL)
2168 {
2169 if (eap->cmdidx != CMD_diffput
2170 || curtab->tp_diffbuf[idx_other]->b_p_ma)
2171 break;
2172 found_not_ma = TRUE;
2173 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002174 if (idx_other == DB_COUNT)
2175 {
Bram Moolenaar602eb742007-02-20 03:43:38 +00002176 if (found_not_ma)
2177 EMSG(_("E793: No other buffer in diff mode is modifiable"));
2178 else
2179 EMSG(_("E100: No other buffer in diff mode"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002180 return;
2181 }
2182
2183 /* Check that there isn't a third buffer in the list */
2184 for (i = idx_other + 1; i < DB_COUNT; ++i)
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002185 if (curtab->tp_diffbuf[i] != curbuf
2186 && curtab->tp_diffbuf[i] != NULL
2187 && (eap->cmdidx != CMD_diffput || curtab->tp_diffbuf[i]->b_p_ma))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002188 {
2189 EMSG(_("E101: More than two buffers in diff mode, don't know which one to use"));
2190 return;
2191 }
2192 }
2193 else
2194 {
2195 /* Buffer number or pattern given. Ignore trailing white space. */
2196 p = eap->arg + STRLEN(eap->arg);
2197 while (p > eap->arg && vim_iswhite(p[-1]))
2198 --p;
2199 for (i = 0; vim_isdigit(eap->arg[i]) && eap->arg + i < p; ++i)
2200 ;
2201 if (eap->arg + i == p) /* digits only */
2202 i = atol((char *)eap->arg);
2203 else
2204 {
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002205 i = buflist_findpat(eap->arg, p, FALSE, TRUE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002206 if (i < 0)
2207 return; /* error message already given */
2208 }
2209 buf = buflist_findnr(i);
2210 if (buf == NULL)
2211 {
2212 EMSG2(_("E102: Can't find buffer \"%s\""), eap->arg);
2213 return;
2214 }
Bram Moolenaar5cc6a6e2009-01-22 19:48:55 +00002215 if (buf == curbuf)
2216 return; /* nothing to do */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002217 idx_other = diff_buf_idx(buf);
2218 if (idx_other == DB_COUNT)
2219 {
2220 EMSG2(_("E103: Buffer \"%s\" is not in diff mode"), eap->arg);
2221 return;
2222 }
2223 }
2224
2225 diff_busy = TRUE;
2226
2227 /* When no range given include the line above or below the cursor. */
2228 if (eap->addr_count == 0)
2229 {
2230 /* Make it possible that ":diffget" on the last line gets line below
2231 * the cursor line when there is no difference above the cursor. */
2232 if (eap->cmdidx == CMD_diffget
2233 && eap->line1 == curbuf->b_ml.ml_line_count
2234 && diff_check(curwin, eap->line1) == 0
2235 && (eap->line1 == 1 || diff_check(curwin, eap->line1 - 1) == 0))
2236 ++eap->line2;
2237 else if (eap->line1 > 0)
2238 --eap->line1;
2239 }
2240
2241 if (eap->cmdidx == CMD_diffget)
2242 {
2243 idx_from = idx_other;
2244 idx_to = idx_cur;
2245 }
2246 else
2247 {
2248 idx_from = idx_cur;
2249 idx_to = idx_other;
2250 /* Need to make the other buffer the current buffer to be able to make
2251 * changes in it. */
2252 /* set curwin/curbuf to buf and save a few things */
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002253 aucmd_prepbuf(&aco, curtab->tp_diffbuf[idx_other]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002254 }
2255
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002256 /* May give the warning for a changed buffer here, which can trigger the
2257 * FileChangedRO autocommand, which may do nasty things and mess
2258 * everything up. */
2259 if (!curbuf->b_changed)
2260 {
2261 change_warning(0);
2262 if (diff_buf_idx(curbuf) != idx_to)
2263 {
2264 EMSG(_("E787: Buffer changed unexpectedly"));
2265 return;
2266 }
2267 }
2268
Bram Moolenaar071d4272004-06-13 20:20:40 +00002269 dprev = NULL;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002270 for (dp = curtab->tp_first_diff; dp != NULL; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002271 {
2272 if (dp->df_lnum[idx_cur] > eap->line2 + off)
2273 break; /* past the range that was specified */
2274
2275 dfree = NULL;
2276 lnum = dp->df_lnum[idx_to];
2277 count = dp->df_count[idx_to];
2278 if (dp->df_lnum[idx_cur] + dp->df_count[idx_cur] > eap->line1 + off
2279 && u_save(lnum - 1, lnum + count) != FAIL)
2280 {
2281 /* Inside the specified range and saving for undo worked. */
2282 start_skip = 0;
2283 end_skip = 0;
2284 if (eap->addr_count > 0)
2285 {
2286 /* A range was specified: check if lines need to be skipped. */
2287 start_skip = eap->line1 + off - dp->df_lnum[idx_cur];
2288 if (start_skip > 0)
2289 {
2290 /* range starts below start of current diff block */
2291 if (start_skip > count)
2292 {
2293 lnum += count;
2294 count = 0;
2295 }
2296 else
2297 {
2298 count -= start_skip;
2299 lnum += start_skip;
2300 }
2301 }
2302 else
2303 start_skip = 0;
2304
2305 end_skip = dp->df_lnum[idx_cur] + dp->df_count[idx_cur] - 1
2306 - (eap->line2 + off);
2307 if (end_skip > 0)
2308 {
2309 /* range ends above end of current/from diff block */
2310 if (idx_cur == idx_from) /* :diffput */
2311 {
2312 i = dp->df_count[idx_cur] - start_skip - end_skip;
2313 if (count > i)
2314 count = i;
2315 }
2316 else /* :diffget */
2317 {
2318 count -= end_skip;
2319 end_skip = dp->df_count[idx_from] - start_skip - count;
2320 if (end_skip < 0)
2321 end_skip = 0;
2322 }
2323 }
2324 else
2325 end_skip = 0;
2326 }
2327
Bram Moolenaare962c672014-10-15 12:56:49 +02002328 buf_empty = bufempty();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002329 added = 0;
2330 for (i = 0; i < count; ++i)
2331 {
Bram Moolenaar280f1262006-01-30 00:14:18 +00002332 /* remember deleting the last line of the buffer */
2333 buf_empty = curbuf->b_ml.ml_line_count == 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002334 ml_delete(lnum, FALSE);
2335 --added;
2336 }
2337 for (i = 0; i < dp->df_count[idx_from] - start_skip - end_skip; ++i)
2338 {
2339 linenr_T nr;
2340
2341 nr = dp->df_lnum[idx_from] + start_skip + i;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002342 if (nr > curtab->tp_diffbuf[idx_from]->b_ml.ml_line_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002343 break;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002344 p = vim_strsave(ml_get_buf(curtab->tp_diffbuf[idx_from],
2345 nr, FALSE));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002346 if (p != NULL)
2347 {
2348 ml_append(lnum + i - 1, p, 0, FALSE);
2349 vim_free(p);
2350 ++added;
Bram Moolenaar280f1262006-01-30 00:14:18 +00002351 if (buf_empty && curbuf->b_ml.ml_line_count == 2)
2352 {
2353 /* Added the first line into an empty buffer, need to
2354 * delete the dummy empty line. */
2355 buf_empty = FALSE;
2356 ml_delete((linenr_T)2, FALSE);
2357 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002358 }
2359 }
2360 new_count = dp->df_count[idx_to] + added;
2361 dp->df_count[idx_to] = new_count;
2362
2363 if (start_skip == 0 && end_skip == 0)
2364 {
2365 /* Check if there are any other buffers and if the diff is
2366 * equal in them. */
2367 for (i = 0; i < DB_COUNT; ++i)
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002368 if (curtab->tp_diffbuf[i] != NULL && i != idx_from
2369 && i != idx_to
Bram Moolenaar071d4272004-06-13 20:20:40 +00002370 && !diff_equal_entry(dp, idx_from, i))
2371 break;
2372 if (i == DB_COUNT)
2373 {
2374 /* delete the diff entry, the buffers are now equal here */
2375 dfree = dp;
2376 dp = dp->df_next;
2377 if (dprev == NULL)
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002378 curtab->tp_first_diff = dp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002379 else
2380 dprev->df_next = dp;
2381 }
2382 }
2383
2384 /* Adjust marks. This will change the following entries! */
2385 if (added != 0)
2386 {
2387 mark_adjust(lnum, lnum + count - 1, (long)MAXLNUM, (long)added);
2388 if (curwin->w_cursor.lnum >= lnum)
2389 {
2390 /* Adjust the cursor position if it's in/after the changed
2391 * lines. */
2392 if (curwin->w_cursor.lnum >= lnum + count)
2393 curwin->w_cursor.lnum += added;
2394 else if (added < 0)
2395 curwin->w_cursor.lnum = lnum;
2396 }
2397 }
2398 changed_lines(lnum, 0, lnum + count, (long)added);
2399
2400 if (dfree != NULL)
2401 {
2402 /* Diff is deleted, update folds in other windows. */
2403#ifdef FEAT_FOLDING
2404 diff_fold_update(dfree, idx_to);
2405#endif
2406 vim_free(dfree);
2407 }
2408 else
2409 /* mark_adjust() may have changed the count in a wrong way */
2410 dp->df_count[idx_to] = new_count;
2411
2412 /* When changing the current buffer, keep track of line numbers */
2413 if (idx_cur == idx_to)
2414 off += added;
2415 }
2416
2417 /* If before the range or not deleted, go to next diff. */
2418 if (dfree == NULL)
2419 {
2420 dprev = dp;
2421 dp = dp->df_next;
2422 }
2423 }
2424
2425 /* restore curwin/curbuf and a few other things */
Bram Moolenaara9d52e32010-07-31 16:44:19 +02002426 if (eap->cmdidx != CMD_diffget)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002427 {
2428 /* Syncing undo only works for the current buffer, but we change
2429 * another buffer. Sync undo if the command was typed. This isn't
2430 * 100% right when ":diffput" is used in a function or mapping. */
2431 if (KeyTyped)
Bram Moolenaar779b74b2006-04-10 14:55:34 +00002432 u_sync(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002433 aucmd_restbuf(&aco);
2434 }
2435
2436 diff_busy = FALSE;
2437
2438 /* Check that the cursor is on a valid character and update it's position.
2439 * When there were filler lines the topline has become invalid. */
2440 check_cursor();
2441 changed_line_abv_curs();
2442
2443 /* Also need to redraw the other buffers. */
2444 diff_redraw(FALSE);
2445}
2446
2447#ifdef FEAT_FOLDING
2448/*
2449 * Update folds for all diff buffers for entry "dp".
2450 * Skip buffer with index "skip_idx".
2451 * When there are no diffs, all folds are removed.
2452 */
2453 static void
2454diff_fold_update(dp, skip_idx)
2455 diff_T *dp;
2456 int skip_idx;
2457{
2458 int i;
2459 win_T *wp;
2460
2461 for (wp = firstwin; wp != NULL; wp = wp->w_next)
2462 for (i = 0; i < DB_COUNT; ++i)
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002463 if (curtab->tp_diffbuf[i] == wp->w_buffer && i != skip_idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002464 foldUpdate(wp, dp->df_lnum[i],
2465 dp->df_lnum[i] + dp->df_count[i]);
2466}
2467#endif
2468
2469/*
2470 * Return TRUE if buffer "buf" is in diff-mode.
2471 */
2472 int
2473diff_mode_buf(buf)
2474 buf_T *buf;
2475{
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002476 tabpage_T *tp;
2477
2478 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next)
2479 if (diff_buf_idx_tp(buf, tp) != DB_COUNT)
2480 return TRUE;
2481 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002482}
2483
2484/*
2485 * Move "count" times in direction "dir" to the next diff block.
2486 * Return FAIL if there isn't such a diff block.
2487 */
2488 int
2489diff_move_to(dir, count)
2490 int dir;
2491 long count;
2492{
2493 int idx;
2494 linenr_T lnum = curwin->w_cursor.lnum;
2495 diff_T *dp;
2496
2497 idx = diff_buf_idx(curbuf);
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002498 if (idx == DB_COUNT || curtab->tp_first_diff == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002499 return FAIL;
2500
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002501 if (curtab->tp_diff_invalid)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002502 ex_diffupdate(NULL); /* update after a big change */
2503
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002504 if (curtab->tp_first_diff == NULL) /* no diffs today */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002505 return FAIL;
2506
2507 while (--count >= 0)
2508 {
2509 /* Check if already before first diff. */
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002510 if (dir == BACKWARD && lnum <= curtab->tp_first_diff->df_lnum[idx])
Bram Moolenaar071d4272004-06-13 20:20:40 +00002511 break;
2512
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002513 for (dp = curtab->tp_first_diff; ; dp = dp->df_next)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002514 {
2515 if (dp == NULL)
2516 break;
2517 if ((dir == FORWARD && lnum < dp->df_lnum[idx])
2518 || (dir == BACKWARD
2519 && (dp->df_next == NULL
2520 || lnum <= dp->df_next->df_lnum[idx])))
2521 {
2522 lnum = dp->df_lnum[idx];
2523 break;
2524 }
2525 }
2526 }
2527
2528 /* don't end up past the end of the file */
2529 if (lnum > curbuf->b_ml.ml_line_count)
2530 lnum = curbuf->b_ml.ml_line_count;
2531
2532 /* When the cursor didn't move at all we fail. */
2533 if (lnum == curwin->w_cursor.lnum)
2534 return FAIL;
2535
2536 setpcmark();
2537 curwin->w_cursor.lnum = lnum;
2538 curwin->w_cursor.col = 0;
2539
2540 return OK;
2541}
2542
Bram Moolenaar860cae12010-06-05 23:22:07 +02002543#if defined(FEAT_CURSORBIND) || defined(PROTO)
2544 linenr_T
2545diff_get_corresponding_line(buf1, lnum1, buf2, lnum3)
2546 buf_T *buf1;
2547 linenr_T lnum1;
2548 buf_T *buf2;
2549 linenr_T lnum3;
2550{
2551 int idx1;
2552 int idx2;
2553 diff_T *dp;
2554 int baseline = 0;
2555 linenr_T lnum2;
2556
2557 idx1 = diff_buf_idx(buf1);
2558 idx2 = diff_buf_idx(buf2);
2559 if (idx1 == DB_COUNT || idx2 == DB_COUNT || curtab->tp_first_diff == NULL)
2560 return lnum1;
2561
2562 if (curtab->tp_diff_invalid)
2563 ex_diffupdate(NULL); /* update after a big change */
2564
2565 if (curtab->tp_first_diff == NULL) /* no diffs today */
2566 return lnum1;
2567
2568 for (dp = curtab->tp_first_diff; dp != NULL; dp = dp->df_next)
2569 {
2570 if (dp->df_lnum[idx1] > lnum1)
2571 {
2572 lnum2 = lnum1 - baseline;
2573 /* don't end up past the end of the file */
2574 if (lnum2 > buf2->b_ml.ml_line_count)
2575 lnum2 = buf2->b_ml.ml_line_count;
2576
2577 return lnum2;
2578 }
2579 else if ((dp->df_lnum[idx1] + dp->df_count[idx1]) > lnum1)
2580 {
2581 /* Inside the diffblock */
2582 baseline = lnum1 - dp->df_lnum[idx1];
2583 if (baseline > dp->df_count[idx2])
2584 baseline = dp->df_count[idx2];
2585
2586 return dp->df_lnum[idx2] + baseline;
2587 }
2588 else if ( (dp->df_lnum[idx1] == lnum1)
2589 && (dp->df_count[idx1] == 0)
2590 && (dp->df_lnum[idx2] <= lnum3)
2591 && ((dp->df_lnum[idx2] + dp->df_count[idx2]) > lnum3))
2592 /*
2593 * Special case: if the cursor is just after a zero-count
2594 * block (i.e. all filler) and the target cursor is already
2595 * inside the corresponding block, leave the target cursor
2596 * unmoved. This makes repeated CTRL-W W operations work
2597 * as expected.
2598 */
2599 return lnum3;
2600 baseline = (dp->df_lnum[idx1] + dp->df_count[idx1])
2601 - (dp->df_lnum[idx2] + dp->df_count[idx2]);
2602 }
2603
2604 /* If we get here then the cursor is after the last diff */
2605 lnum2 = lnum1 - baseline;
2606 /* don't end up past the end of the file */
2607 if (lnum2 > buf2->b_ml.ml_line_count)
2608 lnum2 = buf2->b_ml.ml_line_count;
2609
2610 return lnum2;
2611}
2612#endif
2613
Bram Moolenaar071d4272004-06-13 20:20:40 +00002614#if defined(FEAT_FOLDING) || defined(PROTO)
2615/*
2616 * For line "lnum" in the current window find the equivalent lnum in window
2617 * "wp", compensating for inserted/deleted lines.
2618 */
2619 linenr_T
2620diff_lnum_win(lnum, wp)
2621 linenr_T lnum;
2622 win_T *wp;
2623{
2624 diff_T *dp;
2625 int idx;
2626 int i;
2627 linenr_T n;
2628
2629 idx = diff_buf_idx(curbuf);
2630 if (idx == DB_COUNT) /* safety check */
2631 return (linenr_T)0;
2632
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002633 if (curtab->tp_diff_invalid)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002634 ex_diffupdate(NULL); /* update after a big change */
2635
2636 /* search for a change that includes "lnum" in the list of diffblocks. */
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002637 for (dp = curtab->tp_first_diff; dp != NULL; dp = dp->df_next)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002638 if (lnum <= dp->df_lnum[idx] + dp->df_count[idx])
2639 break;
2640
2641 /* When after the last change, compute relative to the last line number. */
2642 if (dp == NULL)
2643 return wp->w_buffer->b_ml.ml_line_count
2644 - (curbuf->b_ml.ml_line_count - lnum);
2645
2646 /* Find index for "wp". */
2647 i = diff_buf_idx(wp->w_buffer);
2648 if (i == DB_COUNT) /* safety check */
2649 return (linenr_T)0;
2650
2651 n = lnum + (dp->df_lnum[i] - dp->df_lnum[idx]);
2652 if (n > dp->df_lnum[i] + dp->df_count[i])
2653 n = dp->df_lnum[i] + dp->df_count[i];
2654 return n;
2655}
2656#endif
2657
2658#endif /* FEAT_DIFF */