blob: 0bf0ef2cfaa6b8a84f502beb60da461344b3de5f [file] [log] [blame]
Bram Moolenaaredf3f972016-08-29 22:49:24 +02001/* vi:set ts=8 sts=4 sw=4 noet:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002 *
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 Moolenaare828b762018-09-10 17:51:58 +020012 *
13 * There are three ways to diff:
14 * - Shell out to an external diff program, using files.
15 * - Use the compiled-in xdiff library.
16 * - Let 'diffexpr' do the work, using files.
Bram Moolenaar071d4272004-06-13 20:20:40 +000017 */
18
19#include "vim.h"
Bram Moolenaare828b762018-09-10 17:51:58 +020020#include "xdiff/xdiff.h"
Bram Moolenaar071d4272004-06-13 20:20:40 +000021
22#if defined(FEAT_DIFF) || defined(PROTO)
23
Bram Moolenaar071d4272004-06-13 20:20:40 +000024static int diff_busy = FALSE; /* ex_diffgetput() is busy */
25
26/* flags obtained from the 'diffopt' option */
Bram Moolenaare828b762018-09-10 17:51:58 +020027#define DIFF_FILLER 1 // display filler lines
28#define DIFF_ICASE 2 // ignore case
29#define DIFF_IWHITE 4 // ignore change in white space
30#define DIFF_HORIZONTAL 8 // horizontal splits
31#define DIFF_VERTICAL 16 // vertical splits
32#define DIFF_HIDDEN_OFF 32 // diffoff when hidden
33#define DIFF_INTERNAL 64 // use internal xdiff algorithm
Bram Moolenaar274cea32018-09-12 18:00:12 +020034static int diff_flags = DIFF_INTERNAL | DIFF_FILLER;
Bram Moolenaar071d4272004-06-13 20:20:40 +000035
Bram Moolenaare828b762018-09-10 17:51:58 +020036static long diff_algorithm = 0;
37
Bram Moolenaar071d4272004-06-13 20:20:40 +000038#define LBUFLEN 50 /* length of line in diff file */
39
40static int diff_a_works = MAYBE; /* TRUE when "diff -a" works, FALSE when it
41 doesn't work, MAYBE when not checked yet */
Bram Moolenaar48e330a2016-02-23 14:53:34 +010042#if defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000043static int diff_bin_works = MAYBE; /* TRUE when "diff --binary" works, FALSE
44 when it doesn't work, MAYBE when not
45 checked yet */
46#endif
47
Bram Moolenaare828b762018-09-10 17:51:58 +020048// used for diff input
49typedef struct {
50 char_u *din_fname; // used for external diff
51 mmfile_t din_mmfile; // used for internal diff
52} diffin_T;
53
54// used for diff result
55typedef struct {
56 char_u *dout_fname; // used for external diff
57 garray_T dout_ga; // used for internal diff
58} diffout_T;
59
60// two diff inputs and one result
61typedef struct {
62 diffin_T dio_orig; // original file input
63 diffin_T dio_new; // new file input
64 diffout_T dio_diff; // diff result
65 int dio_internal; // using internal diff
66} diffio_T;
67
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010068static int diff_buf_idx(buf_T *buf);
69static int diff_buf_idx_tp(buf_T *buf, tabpage_T *tp);
70static void diff_mark_adjust_tp(tabpage_T *tp, int idx, linenr_T line1, linenr_T line2, long amount, long amount_after);
71static void diff_check_unchanged(tabpage_T *tp, diff_T *dp);
72static int diff_check_sanity(tabpage_T *tp, diff_T *dp);
73static void diff_redraw(int dofold);
Bram Moolenaare828b762018-09-10 17:51:58 +020074static int check_external_diff(diffio_T *diffio);
75static int diff_file(diffio_T *diffio);
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010076static int diff_equal_entry(diff_T *dp, int idx1, int idx2);
77static int diff_cmp(char_u *s1, char_u *s2);
Bram Moolenaar071d4272004-06-13 20:20:40 +000078#ifdef FEAT_FOLDING
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010079static void diff_fold_update(diff_T *dp, int skip_idx);
Bram Moolenaar071d4272004-06-13 20:20:40 +000080#endif
Bram Moolenaare828b762018-09-10 17:51:58 +020081static void diff_read(int idx_orig, int idx_new, diffout_T *fname);
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010082static void diff_copy_entry(diff_T *dprev, diff_T *dp, int idx_orig, int idx_new);
83static diff_T *diff_alloc_new(tabpage_T *tp, diff_T *dprev, diff_T *dp);
Bram Moolenaare828b762018-09-10 17:51:58 +020084static int parse_diff_ed(char_u *line, linenr_T *lnum_orig, long *count_orig, linenr_T *lnum_new, long *count_new);
85static int parse_diff_unified(char_u *line, linenr_T *lnum_orig, long *count_orig, linenr_T *lnum_new, long *count_new);
86static int xdiff_out(void *priv, mmbuffer_t *mb, int nbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000087
88#ifndef USE_CR
89# define tag_fgets vim_fgets
90#endif
91
92/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000093 * Called when deleting or unloading a buffer: No longer make a diff with it.
Bram Moolenaar071d4272004-06-13 20:20:40 +000094 */
95 void
Bram Moolenaar7454a062016-01-30 15:14:10 +010096diff_buf_delete(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +000097{
98 int i;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +000099 tabpage_T *tp;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000100
Bram Moolenaar29323592016-07-24 22:04:11 +0200101 FOR_ALL_TABPAGES(tp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000102 {
Bram Moolenaar49d7bf12006-02-17 21:45:41 +0000103 i = diff_buf_idx_tp(buf, tp);
104 if (i != DB_COUNT)
105 {
106 tp->tp_diffbuf[i] = NULL;
107 tp->tp_diff_invalid = TRUE;
Bram Moolenaar5d55c0f2008-11-30 14:16:57 +0000108 if (tp == curtab)
109 diff_redraw(TRUE);
Bram Moolenaar49d7bf12006-02-17 21:45:41 +0000110 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000111 }
112}
113
114/*
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000115 * Check if the current buffer should be added to or removed from the list of
116 * diff buffers.
117 */
118 void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100119diff_buf_adjust(win_T *win)
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000120{
121 win_T *wp;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +0000122 int i;
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000123
124 if (!win->w_p_diff)
125 {
126 /* When there is no window showing a diff for this buffer, remove
127 * it from the diffs. */
Bram Moolenaar29323592016-07-24 22:04:11 +0200128 FOR_ALL_WINDOWS(wp)
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000129 if (wp->w_buffer == win->w_buffer && wp->w_p_diff)
130 break;
131 if (wp == NULL)
Bram Moolenaar49d7bf12006-02-17 21:45:41 +0000132 {
133 i = diff_buf_idx(win->w_buffer);
134 if (i != DB_COUNT)
135 {
136 curtab->tp_diffbuf[i] = NULL;
137 curtab->tp_diff_invalid = TRUE;
Bram Moolenaar5d55c0f2008-11-30 14:16:57 +0000138 diff_redraw(TRUE);
Bram Moolenaar49d7bf12006-02-17 21:45:41 +0000139 }
140 }
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000141 }
142 else
143 diff_buf_add(win->w_buffer);
144}
145
146/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000147 * Add a buffer to make diffs for.
Bram Moolenaar49d7bf12006-02-17 21:45:41 +0000148 * Call this when a new buffer is being edited in the current window where
149 * 'diff' is set.
Bram Moolenaar5cc6a6e2009-01-22 19:48:55 +0000150 * Marks the current buffer as being part of the diff and requiring updating.
Bram Moolenaar49d7bf12006-02-17 21:45:41 +0000151 * This must be done before any autocmd, because a command may use info
152 * about the screen contents.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000153 */
154 void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100155diff_buf_add(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000156{
157 int i;
158
159 if (diff_buf_idx(buf) != DB_COUNT)
160 return; /* It's already there. */
161
162 for (i = 0; i < DB_COUNT; ++i)
Bram Moolenaar49d7bf12006-02-17 21:45:41 +0000163 if (curtab->tp_diffbuf[i] == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000164 {
Bram Moolenaar49d7bf12006-02-17 21:45:41 +0000165 curtab->tp_diffbuf[i] = buf;
166 curtab->tp_diff_invalid = TRUE;
Bram Moolenaar5d55c0f2008-11-30 14:16:57 +0000167 diff_redraw(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000168 return;
169 }
170
Bram Moolenaar89eaa412016-07-31 14:17:27 +0200171 EMSGN(_("E96: Cannot diff more than %ld buffers"), DB_COUNT);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000172}
173
174/*
Bram Moolenaar25ea0542017-02-03 23:16:28 +0100175 * Remove all buffers to make diffs for.
176 */
177 static void
178diff_buf_clear(void)
179{
180 int i;
181
182 for (i = 0; i < DB_COUNT; ++i)
183 if (curtab->tp_diffbuf[i] != NULL)
184 {
185 curtab->tp_diffbuf[i] = NULL;
186 curtab->tp_diff_invalid = TRUE;
187 diff_redraw(TRUE);
188 }
189}
190
191/*
Bram Moolenaar49d7bf12006-02-17 21:45:41 +0000192 * Find buffer "buf" in the list of diff buffers for the current tab page.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000193 * Return its index or DB_COUNT if not found.
194 */
195 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100196diff_buf_idx(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000197{
198 int idx;
199
200 for (idx = 0; idx < DB_COUNT; ++idx)
Bram Moolenaar49d7bf12006-02-17 21:45:41 +0000201 if (curtab->tp_diffbuf[idx] == buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000202 break;
203 return idx;
204}
205
206/*
Bram Moolenaar49d7bf12006-02-17 21:45:41 +0000207 * Find buffer "buf" in the list of diff buffers for tab page "tp".
208 * Return its index or DB_COUNT if not found.
209 */
210 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100211diff_buf_idx_tp(buf_T *buf, tabpage_T *tp)
Bram Moolenaar49d7bf12006-02-17 21:45:41 +0000212{
213 int idx;
214
215 for (idx = 0; idx < DB_COUNT; ++idx)
216 if (tp->tp_diffbuf[idx] == buf)
217 break;
218 return idx;
219}
220
221/*
222 * Mark the diff info involving buffer "buf" as invalid, it will be updated
223 * when info is requested.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000224 */
225 void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100226diff_invalidate(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000227{
Bram Moolenaar49d7bf12006-02-17 21:45:41 +0000228 tabpage_T *tp;
229 int i;
230
Bram Moolenaar29323592016-07-24 22:04:11 +0200231 FOR_ALL_TABPAGES(tp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000232 {
Bram Moolenaar49d7bf12006-02-17 21:45:41 +0000233 i = diff_buf_idx_tp(buf, tp);
234 if (i != DB_COUNT)
235 {
236 tp->tp_diff_invalid = TRUE;
237 if (tp == curtab)
238 diff_redraw(TRUE);
239 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000240 }
241}
242
243/*
Bram Moolenaar49d7bf12006-02-17 21:45:41 +0000244 * Called by mark_adjust(): update line numbers in "curbuf".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000245 */
246 void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100247diff_mark_adjust(
248 linenr_T line1,
249 linenr_T line2,
250 long amount,
251 long amount_after)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000252{
Bram Moolenaar49d7bf12006-02-17 21:45:41 +0000253 int idx;
254 tabpage_T *tp;
255
256 /* Handle all tab pages that use the current buffer in a diff. */
Bram Moolenaar29323592016-07-24 22:04:11 +0200257 FOR_ALL_TABPAGES(tp)
Bram Moolenaar49d7bf12006-02-17 21:45:41 +0000258 {
259 idx = diff_buf_idx_tp(curbuf, tp);
260 if (idx != DB_COUNT)
261 diff_mark_adjust_tp(tp, idx, line1, line2, amount, amount_after);
262 }
263}
264
265/*
266 * Update line numbers in tab page "tp" for "curbuf" with index "idx".
267 * This attempts to update the changes as much as possible:
268 * When inserting/deleting lines outside of existing change blocks, create a
269 * new change block and update the line numbers in following blocks.
270 * When inserting/deleting lines in existing change blocks, update them.
271 */
272 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100273diff_mark_adjust_tp(
274 tabpage_T *tp,
275 int idx,
276 linenr_T line1,
277 linenr_T line2,
278 long amount,
279 long amount_after)
Bram Moolenaar49d7bf12006-02-17 21:45:41 +0000280{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000281 diff_T *dp;
282 diff_T *dprev;
283 diff_T *dnext;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000284 int i;
285 int inserted, deleted;
286 int n, off;
287 linenr_T last;
288 linenr_T lnum_deleted = line1; /* lnum of remaining deletion */
289 int check_unchanged;
290
Bram Moolenaar071d4272004-06-13 20:20:40 +0000291 if (line2 == MAXLNUM)
292 {
293 /* mark_adjust(99, MAXLNUM, 9, 0): insert lines */
294 inserted = amount;
295 deleted = 0;
296 }
297 else if (amount_after > 0)
298 {
299 /* mark_adjust(99, 98, MAXLNUM, 9): a change that inserts lines*/
300 inserted = amount_after;
301 deleted = 0;
302 }
303 else
304 {
305 /* mark_adjust(98, 99, MAXLNUM, -2): delete lines */
306 inserted = 0;
307 deleted = -amount_after;
308 }
309
310 dprev = NULL;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +0000311 dp = tp->tp_first_diff;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000312 for (;;)
313 {
314 /* If the change is after the previous diff block and before the next
315 * diff block, thus not touching an existing change, create a new diff
316 * block. Don't do this when ex_diffgetput() is busy. */
317 if ((dp == NULL || dp->df_lnum[idx] - 1 > line2
318 || (line2 == MAXLNUM && dp->df_lnum[idx] > line1))
319 && (dprev == NULL
320 || dprev->df_lnum[idx] + dprev->df_count[idx] < line1)
321 && !diff_busy)
322 {
Bram Moolenaar49d7bf12006-02-17 21:45:41 +0000323 dnext = diff_alloc_new(tp, dprev, dp);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000324 if (dnext == NULL)
325 return;
326
327 dnext->df_lnum[idx] = line1;
328 dnext->df_count[idx] = inserted;
329 for (i = 0; i < DB_COUNT; ++i)
Bram Moolenaar49d7bf12006-02-17 21:45:41 +0000330 if (tp->tp_diffbuf[i] != NULL && i != idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000331 {
332 if (dprev == NULL)
333 dnext->df_lnum[i] = line1;
334 else
335 dnext->df_lnum[i] = line1
336 + (dprev->df_lnum[i] + dprev->df_count[i])
337 - (dprev->df_lnum[idx] + dprev->df_count[idx]);
338 dnext->df_count[i] = deleted;
339 }
340 }
341
342 /* if at end of the list, quit */
343 if (dp == NULL)
344 break;
345
346 /*
347 * Check for these situations:
348 * 1 2 3
349 * 1 2 3
350 * line1 2 3 4 5
351 * 2 3 4 5
352 * 2 3 4 5
353 * line2 2 3 4 5
354 * 3 5 6
355 * 3 5 6
356 */
357 /* compute last line of this change */
358 last = dp->df_lnum[idx] + dp->df_count[idx] - 1;
359
360 /* 1. change completely above line1: nothing to do */
361 if (last >= line1 - 1)
362 {
363 /* 6. change below line2: only adjust for amount_after; also when
364 * "deleted" became zero when deleted all lines between two diffs */
365 if (dp->df_lnum[idx] - (deleted + inserted != 0) > line2)
366 {
367 if (amount_after == 0)
368 break; /* nothing left to change */
369 dp->df_lnum[idx] += amount_after;
370 }
371 else
372 {
373 check_unchanged = FALSE;
374
375 /* 2. 3. 4. 5.: inserted/deleted lines touching this diff. */
376 if (deleted > 0)
377 {
378 if (dp->df_lnum[idx] >= line1)
379 {
380 off = dp->df_lnum[idx] - lnum_deleted;
381 if (last <= line2)
382 {
383 /* 4. delete all lines of diff */
384 if (dp->df_next != NULL
385 && dp->df_next->df_lnum[idx] - 1 <= line2)
386 {
387 /* delete continues in next diff, only do
388 * lines until that one */
389 n = dp->df_next->df_lnum[idx] - lnum_deleted;
390 deleted -= n;
391 n -= dp->df_count[idx];
392 lnum_deleted = dp->df_next->df_lnum[idx];
393 }
394 else
395 n = deleted - dp->df_count[idx];
396 dp->df_count[idx] = 0;
397 }
398 else
399 {
400 /* 5. delete lines at or just before top of diff */
401 n = off;
402 dp->df_count[idx] -= line2 - dp->df_lnum[idx] + 1;
403 check_unchanged = TRUE;
404 }
405 dp->df_lnum[idx] = line1;
406 }
407 else
408 {
409 off = 0;
410 if (last < line2)
411 {
412 /* 2. delete at end of of diff */
413 dp->df_count[idx] -= last - lnum_deleted + 1;
414 if (dp->df_next != NULL
415 && dp->df_next->df_lnum[idx] - 1 <= line2)
416 {
417 /* delete continues in next diff, only do
418 * lines until that one */
419 n = dp->df_next->df_lnum[idx] - 1 - last;
420 deleted -= dp->df_next->df_lnum[idx]
421 - lnum_deleted;
422 lnum_deleted = dp->df_next->df_lnum[idx];
423 }
424 else
425 n = line2 - last;
426 check_unchanged = TRUE;
427 }
428 else
429 {
430 /* 3. delete lines inside the diff */
431 n = 0;
432 dp->df_count[idx] -= deleted;
433 }
434 }
435
436 for (i = 0; i < DB_COUNT; ++i)
Bram Moolenaar49d7bf12006-02-17 21:45:41 +0000437 if (tp->tp_diffbuf[i] != NULL && i != idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000438 {
439 dp->df_lnum[i] -= off;
440 dp->df_count[i] += n;
441 }
442 }
443 else
444 {
445 if (dp->df_lnum[idx] <= line1)
446 {
447 /* inserted lines somewhere in this diff */
448 dp->df_count[idx] += inserted;
449 check_unchanged = TRUE;
450 }
451 else
452 /* inserted lines somewhere above this diff */
453 dp->df_lnum[idx] += inserted;
454 }
455
456 if (check_unchanged)
457 /* Check if inserted lines are equal, may reduce the
458 * size of the diff. TODO: also check for equal lines
459 * in the middle and perhaps split the block. */
Bram Moolenaar49d7bf12006-02-17 21:45:41 +0000460 diff_check_unchanged(tp, dp);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000461 }
462 }
463
464 /* check if this block touches the previous one, may merge them. */
465 if (dprev != NULL && dprev->df_lnum[idx] + dprev->df_count[idx]
466 == dp->df_lnum[idx])
467 {
468 for (i = 0; i < DB_COUNT; ++i)
Bram Moolenaar49d7bf12006-02-17 21:45:41 +0000469 if (tp->tp_diffbuf[i] != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000470 dprev->df_count[i] += dp->df_count[i];
471 dprev->df_next = dp->df_next;
472 vim_free(dp);
473 dp = dprev->df_next;
474 }
475 else
476 {
477 /* Advance to next entry. */
478 dprev = dp;
479 dp = dp->df_next;
480 }
481 }
482
483 dprev = NULL;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +0000484 dp = tp->tp_first_diff;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000485 while (dp != NULL)
486 {
487 /* All counts are zero, remove this entry. */
488 for (i = 0; i < DB_COUNT; ++i)
Bram Moolenaar49d7bf12006-02-17 21:45:41 +0000489 if (tp->tp_diffbuf[i] != NULL && dp->df_count[i] != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000490 break;
491 if (i == DB_COUNT)
492 {
493 dnext = dp->df_next;
494 vim_free(dp);
495 dp = dnext;
496 if (dprev == NULL)
Bram Moolenaar49d7bf12006-02-17 21:45:41 +0000497 tp->tp_first_diff = dnext;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000498 else
499 dprev->df_next = dnext;
500 }
501 else
502 {
503 /* Advance to next entry. */
504 dprev = dp;
505 dp = dp->df_next;
506 }
507
508 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000509
Bram Moolenaar49d7bf12006-02-17 21:45:41 +0000510 if (tp == curtab)
511 {
512 diff_redraw(TRUE);
513
514 /* Need to recompute the scroll binding, may remove or add filler
515 * lines (e.g., when adding lines above w_topline). But it's slow when
516 * making many changes, postpone until redrawing. */
517 diff_need_scrollbind = TRUE;
518 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000519}
520
521/*
522 * Allocate a new diff block and link it between "dprev" and "dp".
523 */
524 static diff_T *
Bram Moolenaar7454a062016-01-30 15:14:10 +0100525diff_alloc_new(tabpage_T *tp, diff_T *dprev, diff_T *dp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000526{
527 diff_T *dnew;
528
529 dnew = (diff_T *)alloc((unsigned)sizeof(diff_T));
530 if (dnew != NULL)
531 {
532 dnew->df_next = dp;
533 if (dprev == NULL)
Bram Moolenaar49d7bf12006-02-17 21:45:41 +0000534 tp->tp_first_diff = dnew;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000535 else
536 dprev->df_next = dnew;
537 }
538 return dnew;
539}
540
541/*
542 * Check if the diff block "dp" can be made smaller for lines at the start and
543 * end that are equal. Called after inserting lines.
544 * This may result in a change where all buffers have zero lines, the caller
545 * must take care of removing it.
546 */
547 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100548diff_check_unchanged(tabpage_T *tp, diff_T *dp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000549{
550 int i_org;
551 int i_new;
552 int off_org, off_new;
553 char_u *line_org;
554 int dir = FORWARD;
555
556 /* Find the first buffers, use it as the original, compare the other
557 * buffer lines against this one. */
558 for (i_org = 0; i_org < DB_COUNT; ++i_org)
Bram Moolenaar49d7bf12006-02-17 21:45:41 +0000559 if (tp->tp_diffbuf[i_org] != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000560 break;
561 if (i_org == DB_COUNT) /* safety check */
562 return;
563
Bram Moolenaar49d7bf12006-02-17 21:45:41 +0000564 if (diff_check_sanity(tp, dp) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000565 return;
566
567 /* First check lines at the top, then at the bottom. */
568 off_org = 0;
569 off_new = 0;
570 for (;;)
571 {
572 /* Repeat until a line is found which is different or the number of
573 * lines has become zero. */
574 while (dp->df_count[i_org] > 0)
575 {
576 /* Copy the line, the next ml_get() will invalidate it. */
577 if (dir == BACKWARD)
578 off_org = dp->df_count[i_org] - 1;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +0000579 line_org = vim_strsave(ml_get_buf(tp->tp_diffbuf[i_org],
Bram Moolenaar071d4272004-06-13 20:20:40 +0000580 dp->df_lnum[i_org] + off_org, FALSE));
581 if (line_org == NULL)
582 return;
583 for (i_new = i_org + 1; i_new < DB_COUNT; ++i_new)
584 {
Bram Moolenaar49d7bf12006-02-17 21:45:41 +0000585 if (tp->tp_diffbuf[i_new] == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000586 continue;
587 if (dir == BACKWARD)
588 off_new = dp->df_count[i_new] - 1;
589 /* if other buffer doesn't have this line, it was inserted */
590 if (off_new < 0 || off_new >= dp->df_count[i_new])
591 break;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +0000592 if (diff_cmp(line_org, ml_get_buf(tp->tp_diffbuf[i_new],
Bram Moolenaar071d4272004-06-13 20:20:40 +0000593 dp->df_lnum[i_new] + off_new, FALSE)) != 0)
594 break;
595 }
596 vim_free(line_org);
597
598 /* Stop when a line isn't equal in all diff buffers. */
599 if (i_new != DB_COUNT)
600 break;
601
602 /* Line matched in all buffers, remove it from the diff. */
603 for (i_new = i_org; i_new < DB_COUNT; ++i_new)
Bram Moolenaar49d7bf12006-02-17 21:45:41 +0000604 if (tp->tp_diffbuf[i_new] != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000605 {
606 if (dir == FORWARD)
607 ++dp->df_lnum[i_new];
608 --dp->df_count[i_new];
609 }
610 }
611 if (dir == BACKWARD)
612 break;
613 dir = BACKWARD;
614 }
615}
616
617/*
618 * Check if a diff block doesn't contain invalid line numbers.
619 * This can happen when the diff program returns invalid results.
620 */
621 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +0100622diff_check_sanity(tabpage_T *tp, diff_T *dp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000623{
624 int i;
625
626 for (i = 0; i < DB_COUNT; ++i)
Bram Moolenaar49d7bf12006-02-17 21:45:41 +0000627 if (tp->tp_diffbuf[i] != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000628 if (dp->df_lnum[i] + dp->df_count[i] - 1
Bram Moolenaar49d7bf12006-02-17 21:45:41 +0000629 > tp->tp_diffbuf[i]->b_ml.ml_line_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000630 return FAIL;
631 return OK;
632}
633
634/*
Bram Moolenaar49d7bf12006-02-17 21:45:41 +0000635 * Mark all diff buffers in the current tab page for redraw.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000636 */
637 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +0100638diff_redraw(
639 int dofold) /* also recompute the folds */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000640{
641 win_T *wp;
642 int n;
643
Bram Moolenaar29323592016-07-24 22:04:11 +0200644 FOR_ALL_WINDOWS(wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000645 if (wp->w_p_diff)
646 {
Bram Moolenaar60f83772006-03-12 21:52:47 +0000647 redraw_win_later(wp, SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000648#ifdef FEAT_FOLDING
649 if (dofold && foldmethodIsDiff(wp))
650 foldUpdateAll(wp);
651#endif
652 /* A change may have made filler lines invalid, need to take care
653 * of that for other windows. */
Bram Moolenaara80888d2012-10-21 22:18:21 +0200654 n = diff_check(wp, wp->w_topline);
655 if ((wp != curwin && wp->w_topfill > 0) || n > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000656 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000657 if (wp->w_topfill > n)
658 wp->w_topfill = (n < 0 ? 0 : n);
Bram Moolenaara80888d2012-10-21 22:18:21 +0200659 else if (n > 0 && n > wp->w_topfill)
660 wp->w_topfill = n;
Bram Moolenaar846a2ff2014-05-28 11:35:37 +0200661 check_topfill(wp, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000662 }
663 }
664}
665
Bram Moolenaare828b762018-09-10 17:51:58 +0200666 static void
667clear_diffin(diffin_T *din)
668{
669 if (din->din_fname == NULL)
670 {
671 vim_free(din->din_mmfile.ptr);
672 din->din_mmfile.ptr = NULL;
673 }
674 else
675 mch_remove(din->din_fname);
676}
677
678 static void
679clear_diffout(diffout_T *dout)
680{
681 if (dout->dout_fname == NULL)
682 ga_clear_strings(&dout->dout_ga);
683 else
684 mch_remove(dout->dout_fname);
685}
686
Bram Moolenaar071d4272004-06-13 20:20:40 +0000687/*
Bram Moolenaare828b762018-09-10 17:51:58 +0200688 * Write buffer "buf" to a memory buffer.
689 * Return FAIL for failure.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000690 */
691 static int
Bram Moolenaare828b762018-09-10 17:51:58 +0200692diff_write_buffer(buf_T *buf, diffin_T *din)
693{
694 linenr_T lnum;
695 char_u *s;
696 long len = 0;
697 char_u *ptr;
698
699 // xdiff requires one big block of memory with all the text.
700 for (lnum = 1; lnum <= buf->b_ml.ml_line_count; ++lnum)
701 len += STRLEN(ml_get_buf(buf, lnum, FALSE)) + 1;
702 ptr = lalloc(len, TRUE);
703 if (ptr == NULL)
704 {
705 // Allocating memory failed. This can happen, because we try to read
706 // the whole buffer text into memory. Set the failed flag, the diff
707 // will be retried with external diff. The flag is never reset.
708 buf->b_diff_failed = TRUE;
709 if (p_verbose > 0)
710 {
711 verbose_enter();
712 smsg((char_u *)
713 _("Not enough memory to use internal diff for buffer \"%s\""),
714 buf->b_fname);
715 verbose_leave();
716 }
717 return FAIL;
718 }
719 din->din_mmfile.ptr = (char *)ptr;
720 din->din_mmfile.size = len;
721
722 len = 0;
723 for (lnum = 1; lnum <= buf->b_ml.ml_line_count; ++lnum)
724 {
725 for (s = ml_get_buf(buf, lnum, FALSE); *s != NUL; )
726 {
727 if (diff_flags & DIFF_ICASE)
728 {
729 int c;
730
731 // xdiff doesn't support ignoring case, fold-case the text.
732#ifdef FEAT_MBYTE
733 int orig_len;
734 char_u cbuf[MB_MAXBYTES + 1];
735
736 c = PTR2CHAR(s);
737 c = enc_utf8 ? utf_fold(c) : MB_TOLOWER(c);
738 orig_len = MB_PTR2LEN(s);
739 if (mb_char2bytes(c, cbuf) != orig_len)
740 // TODO: handle byte length difference
741 mch_memmove(ptr + len, s, orig_len);
742 else
743 mch_memmove(ptr + len, cbuf, orig_len);
744
745 s += orig_len;
746 len += orig_len;
747#else
748 c = *s++;
749 ptr[len++] = TOLOWER_LOC(c);
750#endif
751 }
752 else
753 ptr[len++] = *s++;
754 }
755 ptr[len++] = NL;
756 }
757 return OK;
758}
759
760/*
761 * Write buffer "buf" to file or memory buffer.
762 * Return FAIL for failure.
763 */
764 static int
765diff_write(buf_T *buf, diffin_T *din)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000766{
767 int r;
768 char_u *save_ff;
769
Bram Moolenaare828b762018-09-10 17:51:58 +0200770 if (din->din_fname == NULL)
771 return diff_write_buffer(buf, din);
772
773 // Always use 'fileformat' set to "unix".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000774 save_ff = buf->b_p_ff;
775 buf->b_p_ff = vim_strsave((char_u *)FF_UNIX);
Bram Moolenaare828b762018-09-10 17:51:58 +0200776 r = buf_write(buf, din->din_fname, NULL,
777 (linenr_T)1, buf->b_ml.ml_line_count,
778 NULL, FALSE, FALSE, FALSE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000779 free_string_option(buf->b_p_ff);
780 buf->b_p_ff = save_ff;
781 return r;
782}
783
784/*
Bram Moolenaare828b762018-09-10 17:51:58 +0200785 * Update the diffs for all buffers involved.
786 */
787 static void
788diff_try_update(
789 diffio_T *dio,
790 int idx_orig,
791 exarg_T *eap) // "eap" can be NULL
792{
793 buf_T *buf;
794 int idx_new;
795
796 if (dio->dio_internal)
797 {
798 ga_init2(&dio->dio_diff.dout_ga, sizeof(char *), 1000);
799 }
800 else
801 {
802 // We need three temp file names.
803 dio->dio_orig.din_fname = vim_tempname('o', TRUE);
804 dio->dio_new.din_fname = vim_tempname('n', TRUE);
805 dio->dio_diff.dout_fname = vim_tempname('d', TRUE);
806 if (dio->dio_orig.din_fname == NULL
807 || dio->dio_new.din_fname == NULL
808 || dio->dio_diff.dout_fname == NULL)
809 goto theend;
810 }
811
812 // Check external diff is actually working.
813 if (!dio->dio_internal && check_external_diff(dio) == FAIL)
814 goto theend;
815
816 // :diffupdate!
817 if (eap != NULL && eap->forceit)
818 for (idx_new = idx_orig; idx_new < DB_COUNT; ++idx_new)
819 {
820 buf = curtab->tp_diffbuf[idx_new];
821 if (buf_valid(buf))
822 buf_check_timestamp(buf, FALSE);
823 }
824
825 // Write the first buffer to a tempfile or mmfile_t.
826 buf = curtab->tp_diffbuf[idx_orig];
827 if (diff_write(buf, &dio->dio_orig) == FAIL)
828 goto theend;
829
830 // Make a difference between the first buffer and every other.
831 for (idx_new = idx_orig + 1; idx_new < DB_COUNT; ++idx_new)
832 {
833 buf = curtab->tp_diffbuf[idx_new];
834 if (buf == NULL || buf->b_ml.ml_mfp == NULL)
835 continue; // skip buffer that isn't loaded
836
837 // Write the other buffer and diff with the first one.
838 if (diff_write(buf, &dio->dio_new) == FAIL)
839 continue;
840 if (diff_file(dio) == FAIL)
841 continue;
842
843 // Read the diff output and add each entry to the diff list.
844 diff_read(idx_orig, idx_new, &dio->dio_diff);
845
846 clear_diffin(&dio->dio_new);
847 clear_diffout(&dio->dio_diff);
848 }
849 clear_diffin(&dio->dio_orig);
850
851theend:
852 vim_free(dio->dio_orig.din_fname);
853 vim_free(dio->dio_new.din_fname);
854 vim_free(dio->dio_diff.dout_fname);
855}
856
857/*
858 * Return TRUE if the options are set to use the internal diff library.
859 * Note that if the internal diff failed for one of the buffers, the external
860 * diff will be used anyway.
861 */
862 static int
863diff_internal(void)
864{
865 return (diff_flags & DIFF_INTERNAL) != 0 && *p_dex == NUL;
866}
867
868/*
869 * Return TRUE if the internal diff failed for one of the diff buffers.
870 */
871 static int
872diff_internal_failed(void)
873{
874 int idx;
875
876 // Only need to do something when there is another buffer.
877 for (idx = 0; idx < DB_COUNT; ++idx)
878 if (curtab->tp_diffbuf[idx] != NULL
879 && curtab->tp_diffbuf[idx]->b_diff_failed)
880 return TRUE;
881 return FALSE;
882}
883
884/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000885 * Completely update the diffs for the buffers involved.
886 * This uses the ordinary "diff" command.
887 * The buffers are written to a file, also for unmodified buffers (the file
888 * could have been produced by autocommands, e.g. the netrw plugin).
889 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000890 void
Bram Moolenaare828b762018-09-10 17:51:58 +0200891ex_diffupdate(exarg_T *eap) // "eap" can be NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000892{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000893 int idx_orig;
894 int idx_new;
Bram Moolenaare828b762018-09-10 17:51:58 +0200895 diffio_T diffio;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000896
Bram Moolenaare828b762018-09-10 17:51:58 +0200897 // Delete all diffblocks.
Bram Moolenaar49d7bf12006-02-17 21:45:41 +0000898 diff_clear(curtab);
899 curtab->tp_diff_invalid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000900
Bram Moolenaare828b762018-09-10 17:51:58 +0200901 // Use the first buffer as the original text.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000902 for (idx_orig = 0; idx_orig < DB_COUNT; ++idx_orig)
Bram Moolenaar49d7bf12006-02-17 21:45:41 +0000903 if (curtab->tp_diffbuf[idx_orig] != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000904 break;
905 if (idx_orig == DB_COUNT)
906 return;
907
Bram Moolenaare828b762018-09-10 17:51:58 +0200908 // Only need to do something when there is another buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000909 for (idx_new = idx_orig + 1; idx_new < DB_COUNT; ++idx_new)
Bram Moolenaar49d7bf12006-02-17 21:45:41 +0000910 if (curtab->tp_diffbuf[idx_new] != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000911 break;
912 if (idx_new == DB_COUNT)
913 return;
914
Bram Moolenaare828b762018-09-10 17:51:58 +0200915 // Only use the internal method if it did not fail for one of the buffers.
916 vim_memset(&diffio, 0, sizeof(diffio));
917 diffio.dio_internal = diff_internal() && !diff_internal_failed();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000918
Bram Moolenaare828b762018-09-10 17:51:58 +0200919 diff_try_update(&diffio, idx_orig, eap);
920 if (diffio.dio_internal && diff_internal_failed())
921 {
922 // Internal diff failed, use external diff instead.
923 vim_memset(&diffio, 0, sizeof(diffio));
924 diff_try_update(&diffio, idx_orig, eap);
925 }
926
927 // force updating cursor position on screen
928 curwin->w_valid_cursor.lnum = 0;
929
930 diff_redraw(TRUE);
931}
932
933/*
934 * Do a quick test if "diff" really works. Otherwise it looks like there
935 * are no differences. Can't use the return value, it's non-zero when
936 * there are differences.
937 */
938 static int
939check_external_diff(diffio_T *diffio)
940{
941 FILE *fd;
942 int ok;
943 int io_error = FALSE;
944
945 // May try twice, first with "-a" and then without.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000946 for (;;)
947 {
948 ok = FALSE;
Bram Moolenaare828b762018-09-10 17:51:58 +0200949 fd = mch_fopen((char *)diffio->dio_orig.din_fname, "w");
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +0000950 if (fd == NULL)
951 io_error = TRUE;
952 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000953 {
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +0000954 if (fwrite("line1\n", (size_t)6, (size_t)1, fd) != 1)
955 io_error = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000956 fclose(fd);
Bram Moolenaare828b762018-09-10 17:51:58 +0200957 fd = mch_fopen((char *)diffio->dio_new.din_fname, "w");
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +0000958 if (fd == NULL)
959 io_error = TRUE;
960 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000961 {
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +0000962 if (fwrite("line2\n", (size_t)6, (size_t)1, fd) != 1)
963 io_error = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000964 fclose(fd);
Bram Moolenaare828b762018-09-10 17:51:58 +0200965 fd = NULL;
966 if (diff_file(diffio) == OK)
967 fd = mch_fopen((char *)diffio->dio_diff.dout_fname, "r");
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +0000968 if (fd == NULL)
969 io_error = TRUE;
970 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000971 {
972 char_u linebuf[LBUFLEN];
973
974 for (;;)
975 {
976 /* There must be a line that contains "1c1". */
977 if (tag_fgets(linebuf, LBUFLEN, fd))
978 break;
979 if (STRNCMP(linebuf, "1c1", 3) == 0)
980 ok = TRUE;
981 }
982 fclose(fd);
983 }
Bram Moolenaare828b762018-09-10 17:51:58 +0200984 mch_remove(diffio->dio_diff.dout_fname);
985 mch_remove(diffio->dio_new.din_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000986 }
Bram Moolenaare828b762018-09-10 17:51:58 +0200987 mch_remove(diffio->dio_orig.din_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000988 }
989
990#ifdef FEAT_EVAL
991 /* When using 'diffexpr' break here. */
992 if (*p_dex != NUL)
993 break;
994#endif
995
Bram Moolenaar48e330a2016-02-23 14:53:34 +0100996#if defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000997 /* If the "-a" argument works, also check if "--binary" works. */
998 if (ok && diff_a_works == MAYBE && diff_bin_works == MAYBE)
999 {
1000 diff_a_works = TRUE;
1001 diff_bin_works = TRUE;
1002 continue;
1003 }
1004 if (!ok && diff_a_works == TRUE && diff_bin_works == TRUE)
1005 {
1006 /* Tried --binary, but it failed. "-a" works though. */
1007 diff_bin_works = FALSE;
1008 ok = TRUE;
1009 }
1010#endif
1011
1012 /* If we checked if "-a" works already, break here. */
1013 if (diff_a_works != MAYBE)
1014 break;
1015 diff_a_works = ok;
1016
1017 /* If "-a" works break here, otherwise retry without "-a". */
1018 if (ok)
1019 break;
1020 }
1021 if (!ok)
1022 {
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00001023 if (io_error)
1024 EMSG(_("E810: Cannot read or write temp files"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001025 EMSG(_("E97: Cannot create diffs"));
1026 diff_a_works = MAYBE;
Bram Moolenaar48e330a2016-02-23 14:53:34 +01001027#if defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001028 diff_bin_works = MAYBE;
1029#endif
Bram Moolenaare828b762018-09-10 17:51:58 +02001030 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001031 }
Bram Moolenaare828b762018-09-10 17:51:58 +02001032 return OK;
1033}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001034
Bram Moolenaare828b762018-09-10 17:51:58 +02001035/*
1036 * Invoke the xdiff function.
1037 */
1038 static int
1039diff_file_internal(diffio_T *diffio)
1040{
1041 xpparam_t param;
1042 xdemitconf_t emit_cfg;
1043 xdemitcb_t emit_cb;
Bram Moolenaarbd1d5602012-05-18 18:47:17 +02001044
Bram Moolenaare828b762018-09-10 17:51:58 +02001045 vim_memset(&param, 0, sizeof(param));
1046 vim_memset(&emit_cfg, 0, sizeof(emit_cfg));
1047 vim_memset(&emit_cb, 0, sizeof(emit_cb));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001048
Bram Moolenaare828b762018-09-10 17:51:58 +02001049 param.flags = diff_algorithm;
1050
1051 if (diff_flags & DIFF_IWHITE)
1052 param.flags |= XDF_IGNORE_WHITESPACE_CHANGE;
1053
1054 emit_cfg.ctxlen = 0; // don't need any diff_context here
1055 emit_cb.priv = &diffio->dio_diff;
1056 emit_cb.outf = xdiff_out;
1057 if (xdl_diff(&diffio->dio_orig.din_mmfile,
1058 &diffio->dio_new.din_mmfile,
1059 &param, &emit_cfg, &emit_cb) < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001060 {
Bram Moolenaare828b762018-09-10 17:51:58 +02001061 EMSG(_("E960: Problem creating the internal diff"));
1062 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001063 }
Bram Moolenaare828b762018-09-10 17:51:58 +02001064 return OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001065}
1066
1067/*
1068 * Make a diff between files "tmp_orig" and "tmp_new", results in "tmp_diff".
Bram Moolenaare828b762018-09-10 17:51:58 +02001069 * return OK or FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001070 */
Bram Moolenaare828b762018-09-10 17:51:58 +02001071 static int
1072diff_file(diffio_T *dio)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001073{
1074 char_u *cmd;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001075 size_t len;
Bram Moolenaare828b762018-09-10 17:51:58 +02001076 char_u *tmp_orig = dio->dio_orig.din_fname;
1077 char_u *tmp_new = dio->dio_new.din_fname;
1078 char_u *tmp_diff = dio->dio_diff.dout_fname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001079
1080#ifdef FEAT_EVAL
1081 if (*p_dex != NUL)
Bram Moolenaare828b762018-09-10 17:51:58 +02001082 {
1083 // Use 'diffexpr' to generate the diff file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001084 eval_diff(tmp_orig, tmp_new, tmp_diff);
Bram Moolenaare828b762018-09-10 17:51:58 +02001085 return OK;
1086 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001087 else
1088#endif
Bram Moolenaare828b762018-09-10 17:51:58 +02001089 // Use xdiff for generating the diff.
1090 if (dio->dio_internal)
1091 {
1092 return diff_file_internal(dio);
1093 }
1094 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001095 {
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001096 len = STRLEN(tmp_orig) + STRLEN(tmp_new)
1097 + STRLEN(tmp_diff) + STRLEN(p_srr) + 27;
1098 cmd = alloc((unsigned)len);
Bram Moolenaare828b762018-09-10 17:51:58 +02001099 if (cmd == NULL)
1100 return FAIL;
Bram Moolenaar95fb60a2005-03-08 22:29:20 +00001101
Bram Moolenaare828b762018-09-10 17:51:58 +02001102 // We don't want $DIFF_OPTIONS to get in the way.
1103 if (getenv("DIFF_OPTIONS"))
1104 vim_setenv((char_u *)"DIFF_OPTIONS", (char_u *)"");
1105
1106 // Build the diff command and execute it. Always use -a, binary
1107 // differences are of no use. Ignore errors, diff returns
1108 // non-zero when differences have been found.
1109 vim_snprintf((char *)cmd, len, "diff %s%s%s%s%s %s",
1110 diff_a_works == FALSE ? "" : "-a ",
Bram Moolenaar48e330a2016-02-23 14:53:34 +01001111#if defined(MSWIN)
Bram Moolenaare828b762018-09-10 17:51:58 +02001112 diff_bin_works == TRUE ? "--binary " : "",
Bram Moolenaar071d4272004-06-13 20:20:40 +00001113#else
Bram Moolenaare828b762018-09-10 17:51:58 +02001114 "",
Bram Moolenaar071d4272004-06-13 20:20:40 +00001115#endif
Bram Moolenaare828b762018-09-10 17:51:58 +02001116 (diff_flags & DIFF_IWHITE) ? "-b " : "",
1117 (diff_flags & DIFF_ICASE) ? "-i " : "",
1118 tmp_orig, tmp_new);
1119 append_redir(cmd, (int)len, p_srr, tmp_diff);
1120 block_autocmds(); // avoid ShellCmdPost stuff
1121 (void)call_shell(cmd, SHELL_FILTER|SHELL_SILENT|SHELL_DOOUT);
1122 unblock_autocmds();
1123 vim_free(cmd);
1124 return OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001125 }
1126}
1127
1128/*
1129 * Create a new version of a file from the current buffer and a diff file.
1130 * The buffer is written to a file, also for unmodified buffers (the file
1131 * could have been produced by autocommands, e.g. the netrw plugin).
1132 */
1133 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001134ex_diffpatch(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001135{
1136 char_u *tmp_orig; /* name of original temp file */
1137 char_u *tmp_new; /* name of patched temp file */
1138 char_u *buf = NULL;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001139 size_t buflen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001140 win_T *old_curwin = curwin;
1141 char_u *newname = NULL; /* name of patched file buffer */
1142#ifdef UNIX
1143 char_u dirbuf[MAXPATHL];
1144 char_u *fullname = NULL;
1145#endif
1146#ifdef FEAT_BROWSE
1147 char_u *browseFile = NULL;
1148 int browse_flag = cmdmod.browse;
1149#endif
Bram Moolenaar8767f522016-07-01 17:17:39 +02001150 stat_T st;
Bram Moolenaara95ab322017-03-11 19:21:53 +01001151 char_u *esc_name = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001152
1153#ifdef FEAT_BROWSE
1154 if (cmdmod.browse)
1155 {
Bram Moolenaar7171abe2004-10-11 10:06:20 +00001156 browseFile = do_browse(0, (char_u *)_("Patch file"),
Bram Moolenaarc36651b2018-04-29 12:22:56 +02001157 eap->arg, NULL, NULL,
1158 (char_u *)_(BROWSE_FILTER_ALL_FILES), NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001159 if (browseFile == NULL)
1160 return; /* operation cancelled */
1161 eap->arg = browseFile;
1162 cmdmod.browse = FALSE; /* don't let do_ecmd() browse again */
1163 }
1164#endif
1165
1166 /* We need two temp file names. */
Bram Moolenaare5c421c2015-03-31 13:33:08 +02001167 tmp_orig = vim_tempname('o', FALSE);
1168 tmp_new = vim_tempname('n', FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001169 if (tmp_orig == NULL || tmp_new == NULL)
1170 goto theend;
1171
1172 /* Write the current buffer to "tmp_orig". */
1173 if (buf_write(curbuf, tmp_orig, NULL,
1174 (linenr_T)1, curbuf->b_ml.ml_line_count,
1175 NULL, FALSE, FALSE, FALSE, TRUE) == FAIL)
1176 goto theend;
1177
1178#ifdef UNIX
1179 /* Get the absolute path of the patchfile, changing directory below. */
1180 fullname = FullName_save(eap->arg, FALSE);
1181#endif
Bram Moolenaara95ab322017-03-11 19:21:53 +01001182 esc_name = vim_strsave_shellescape(
Bram Moolenaar071d4272004-06-13 20:20:40 +00001183# ifdef UNIX
Bram Moolenaara95ab322017-03-11 19:21:53 +01001184 fullname != NULL ? fullname :
Bram Moolenaar071d4272004-06-13 20:20:40 +00001185# endif
Bram Moolenaara95ab322017-03-11 19:21:53 +01001186 eap->arg, TRUE, TRUE);
1187 if (esc_name == NULL)
1188 goto theend;
1189 buflen = STRLEN(tmp_orig) + STRLEN(esc_name) + STRLEN(tmp_new) + 16;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001190 buf = alloc((unsigned)buflen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001191 if (buf == NULL)
1192 goto theend;
1193
1194#ifdef UNIX
Bram Moolenaar5cc6a6e2009-01-22 19:48:55 +00001195 /* Temporarily chdir to /tmp, to avoid patching files in the current
Bram Moolenaar071d4272004-06-13 20:20:40 +00001196 * directory when the patch file contains more than one patch. When we
1197 * have our own temp dir use that instead, it will be cleaned up when we
1198 * exit (any .rej files created). Don't change directory if we can't
1199 * return to the current. */
1200 if (mch_dirname(dirbuf, MAXPATHL) != OK || mch_chdir((char *)dirbuf) != 0)
1201 dirbuf[0] = NUL;
1202 else
1203 {
1204# ifdef TEMPDIRNAMES
1205 if (vim_tempdir != NULL)
Bram Moolenaar42335f52018-09-13 15:33:43 +02001206 vim_ignored = mch_chdir((char *)vim_tempdir);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001207 else
1208# endif
Bram Moolenaar42335f52018-09-13 15:33:43 +02001209 vim_ignored = mch_chdir("/tmp");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001210 shorten_fnames(TRUE);
1211 }
1212#endif
1213
1214#ifdef FEAT_EVAL
1215 if (*p_pex != NUL)
1216 /* Use 'patchexpr' to generate the new file. */
1217 eval_patch(tmp_orig,
1218# ifdef UNIX
1219 fullname != NULL ? fullname :
1220# endif
1221 eap->arg, tmp_new);
1222 else
1223#endif
1224 {
1225 /* Build the patch command and execute it. Ignore errors. Switch to
1226 * cooked mode to allow the user to respond to prompts. */
Bram Moolenaara95ab322017-03-11 19:21:53 +01001227 vim_snprintf((char *)buf, buflen, "patch -o %s %s < %s",
1228 tmp_new, tmp_orig, esc_name);
Bram Moolenaar78ab3312007-09-29 12:16:41 +00001229 block_autocmds(); /* Avoid ShellCmdPost stuff */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001230 (void)call_shell(buf, SHELL_FILTER | SHELL_COOKED);
Bram Moolenaar78ab3312007-09-29 12:16:41 +00001231 unblock_autocmds();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001232 }
1233
1234#ifdef UNIX
1235 if (dirbuf[0] != NUL)
1236 {
1237 if (mch_chdir((char *)dirbuf) != 0)
1238 EMSG(_(e_prev_dir));
1239 shorten_fnames(TRUE);
1240 }
1241#endif
1242
1243 /* patch probably has written over the screen */
1244 redraw_later(CLEAR);
1245
1246 /* Delete any .orig or .rej file created. */
1247 STRCPY(buf, tmp_new);
1248 STRCAT(buf, ".orig");
1249 mch_remove(buf);
1250 STRCPY(buf, tmp_new);
1251 STRCAT(buf, ".rej");
1252 mch_remove(buf);
1253
Bram Moolenaar6ec0a6c2009-07-22 14:23:13 +00001254 /* Only continue if the output file was created. */
1255 if (mch_stat((char *)tmp_new, &st) < 0 || st.st_size == 0)
1256 EMSG(_("E816: Cannot read patch output"));
1257 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001258 {
Bram Moolenaar6ec0a6c2009-07-22 14:23:13 +00001259 if (curbuf->b_fname != NULL)
1260 {
1261 newname = vim_strnsave(curbuf->b_fname,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001262 (int)(STRLEN(curbuf->b_fname) + 4));
Bram Moolenaar6ec0a6c2009-07-22 14:23:13 +00001263 if (newname != NULL)
1264 STRCAT(newname, ".new");
1265 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001266
1267#ifdef FEAT_GUI
Bram Moolenaar6ec0a6c2009-07-22 14:23:13 +00001268 need_mouse_correct = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001269#endif
Bram Moolenaar6ec0a6c2009-07-22 14:23:13 +00001270 /* don't use a new tab page, each tab page has its own diffs */
1271 cmdmod.tab = 0;
Bram Moolenaar80a94a52006-02-23 21:26:58 +00001272
Bram Moolenaar6ec0a6c2009-07-22 14:23:13 +00001273 if (win_split(0, (diff_flags & DIFF_VERTICAL) ? WSP_VERT : 0) != FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001274 {
Bram Moolenaar6ec0a6c2009-07-22 14:23:13 +00001275 /* Pretend it was a ":split fname" command */
1276 eap->cmdidx = CMD_split;
1277 eap->arg = tmp_new;
1278 do_exedit(eap, old_curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001279
Bram Moolenaar6ec0a6c2009-07-22 14:23:13 +00001280 /* check that split worked and editing tmp_new */
1281 if (curwin != old_curwin && win_valid(old_curwin))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001282 {
Bram Moolenaar6ec0a6c2009-07-22 14:23:13 +00001283 /* Set 'diff', 'scrollbind' on and 'wrap' off. */
1284 diff_win_options(curwin, TRUE);
1285 diff_win_options(old_curwin, TRUE);
1286
1287 if (newname != NULL)
1288 {
1289 /* do a ":file filename.new" on the patched buffer */
1290 eap->arg = newname;
1291 ex_file(eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001292
Bram Moolenaar6ec0a6c2009-07-22 14:23:13 +00001293 /* Do filetype detection with the new name. */
1294 if (au_has_group((char_u *)"filetypedetect"))
1295 do_cmdline_cmd((char_u *)":doau filetypedetect BufRead");
Bram Moolenaar6ec0a6c2009-07-22 14:23:13 +00001296 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001297 }
1298 }
1299 }
1300
1301theend:
1302 if (tmp_orig != NULL)
1303 mch_remove(tmp_orig);
1304 vim_free(tmp_orig);
1305 if (tmp_new != NULL)
1306 mch_remove(tmp_new);
1307 vim_free(tmp_new);
1308 vim_free(newname);
1309 vim_free(buf);
1310#ifdef UNIX
1311 vim_free(fullname);
1312#endif
Bram Moolenaara95ab322017-03-11 19:21:53 +01001313 vim_free(esc_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001314#ifdef FEAT_BROWSE
1315 vim_free(browseFile);
1316 cmdmod.browse = browse_flag;
1317#endif
1318}
1319
1320/*
1321 * Split the window and edit another file, setting options to show the diffs.
1322 */
1323 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001324ex_diffsplit(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001325{
1326 win_T *old_curwin = curwin;
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001327 bufref_T old_curbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001328
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001329 set_bufref(&old_curbuf, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001330#ifdef FEAT_GUI
1331 need_mouse_correct = TRUE;
1332#endif
Bram Moolenaar46328f92016-08-28 15:39:57 +02001333 /* Need to compute w_fraction when no redraw happened yet. */
1334 validate_cursor();
1335 set_fraction(curwin);
1336
Bram Moolenaar80a94a52006-02-23 21:26:58 +00001337 /* don't use a new tab page, each tab page has its own diffs */
1338 cmdmod.tab = 0;
1339
Bram Moolenaarc4675a12006-03-15 22:50:30 +00001340 if (win_split(0, (diff_flags & DIFF_VERTICAL) ? WSP_VERT : 0) != FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001341 {
1342 /* Pretend it was a ":split fname" command */
1343 eap->cmdidx = CMD_split;
Bram Moolenaar4be06f92005-07-29 22:36:03 +00001344 curwin->w_p_diff = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001345 do_exedit(eap, old_curwin);
1346
1347 if (curwin != old_curwin) /* split must have worked */
1348 {
1349 /* Set 'diff', 'scrollbind' on and 'wrap' off. */
1350 diff_win_options(curwin, TRUE);
Bram Moolenaarf29a82d2015-12-17 15:03:55 +01001351 if (win_valid(old_curwin))
1352 {
1353 diff_win_options(old_curwin, TRUE);
1354
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001355 if (bufref_valid(&old_curbuf))
Bram Moolenaarf29a82d2015-12-17 15:03:55 +01001356 /* Move the cursor position to that of the old window. */
1357 curwin->w_cursor.lnum = diff_get_corresponding_line(
Bram Moolenaar025e3e02016-10-18 14:50:18 +02001358 old_curbuf.br_buf, old_curwin->w_cursor.lnum);
Bram Moolenaarf29a82d2015-12-17 15:03:55 +01001359 }
Bram Moolenaar46328f92016-08-28 15:39:57 +02001360 /* Now that lines are folded scroll to show the cursor at the same
1361 * relative position. */
1362 scroll_to_fraction(curwin, curwin->w_height);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001363 }
1364 }
1365}
1366
1367/*
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02001368 * Set options to show diffs for the current window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001369 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001370 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001371ex_diffthis(exarg_T *eap UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001372{
1373 /* Set 'diff', 'scrollbind' on and 'wrap' off. */
1374 diff_win_options(curwin, TRUE);
1375}
1376
Bram Moolenaar04f62f82017-07-19 18:18:39 +02001377 static void
1378set_diff_option(win_T *wp, int value)
1379{
1380 win_T *old_curwin = curwin;
1381
1382 curwin = wp;
1383 curbuf = curwin->w_buffer;
1384 ++curbuf_lock;
1385 set_option_value((char_u *)"diff", (long)value, NULL, OPT_LOCAL);
1386 --curbuf_lock;
1387 curwin = old_curwin;
1388 curbuf = curwin->w_buffer;
1389}
1390
Bram Moolenaar071d4272004-06-13 20:20:40 +00001391/*
1392 * Set options in window "wp" for diff mode.
1393 */
1394 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001395diff_win_options(
1396 win_T *wp,
1397 int addbuf) /* Add buffer to diff. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001398{
Bram Moolenaarf4d7f942010-02-24 14:34:19 +01001399# ifdef FEAT_FOLDING
1400 win_T *old_curwin = curwin;
1401
1402 /* close the manually opened folds */
1403 curwin = wp;
1404 newFoldLevel();
1405 curwin = old_curwin;
1406# endif
1407
Bram Moolenaar3368ea22010-09-21 16:56:35 +02001408 /* Use 'scrollbind' and 'cursorbind' when available */
Bram Moolenaar43929962015-07-03 15:06:56 +02001409 if (!wp->w_p_diff)
Bram Moolenaara87aa802013-07-03 15:47:03 +02001410 wp->w_p_scb_save = wp->w_p_scb;
Bram Moolenaar3368ea22010-09-21 16:56:35 +02001411 wp->w_p_scb = TRUE;
Bram Moolenaar43929962015-07-03 15:06:56 +02001412 if (!wp->w_p_diff)
Bram Moolenaara87aa802013-07-03 15:47:03 +02001413 wp->w_p_crb_save = wp->w_p_crb;
Bram Moolenaar860cae12010-06-05 23:22:07 +02001414 wp->w_p_crb = TRUE;
Bram Moolenaar43929962015-07-03 15:06:56 +02001415 if (!wp->w_p_diff)
Bram Moolenaara87aa802013-07-03 15:47:03 +02001416 wp->w_p_wrap_save = wp->w_p_wrap;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001417 wp->w_p_wrap = FALSE;
1418# ifdef FEAT_FOLDING
Bram Moolenaarf4d7f942010-02-24 14:34:19 +01001419 curwin = wp;
1420 curbuf = curwin->w_buffer;
Bram Moolenaar43929962015-07-03 15:06:56 +02001421 if (!wp->w_p_diff)
1422 {
1423 if (wp->w_p_diff_saved)
1424 free_string_option(wp->w_p_fdm_save);
Bram Moolenaara87aa802013-07-03 15:47:03 +02001425 wp->w_p_fdm_save = vim_strsave(wp->w_p_fdm);
Bram Moolenaar43929962015-07-03 15:06:56 +02001426 }
Bram Moolenaarf4d7f942010-02-24 14:34:19 +01001427 set_string_option_direct((char_u *)"fdm", -1, (char_u *)"diff",
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00001428 OPT_LOCAL|OPT_FREE, 0);
Bram Moolenaarf4d7f942010-02-24 14:34:19 +01001429 curwin = old_curwin;
1430 curbuf = curwin->w_buffer;
Bram Moolenaar43929962015-07-03 15:06:56 +02001431 if (!wp->w_p_diff)
Bram Moolenaara87aa802013-07-03 15:47:03 +02001432 {
1433 wp->w_p_fdc_save = wp->w_p_fdc;
1434 wp->w_p_fen_save = wp->w_p_fen;
1435 wp->w_p_fdl_save = wp->w_p_fdl;
1436 }
Bram Moolenaarf4d7f942010-02-24 14:34:19 +01001437 wp->w_p_fdc = diff_foldcolumn;
1438 wp->w_p_fen = TRUE;
1439 wp->w_p_fdl = 0;
1440 foldUpdateAll(wp);
1441 /* make sure topline is not halfway a fold */
1442 changed_window_setting_win(wp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001443# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001444 if (vim_strchr(p_sbo, 'h') == NULL)
1445 do_cmdline_cmd((char_u *)"set sbo+=hor");
Bram Moolenaar04f62f82017-07-19 18:18:39 +02001446 /* Save the current values, to be restored in ex_diffoff(). */
Bram Moolenaara87aa802013-07-03 15:47:03 +02001447 wp->w_p_diff_saved = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001448
Bram Moolenaar04f62f82017-07-19 18:18:39 +02001449 set_diff_option(wp, TRUE);
Bram Moolenaar43929962015-07-03 15:06:56 +02001450
Bram Moolenaar071d4272004-06-13 20:20:40 +00001451 if (addbuf)
1452 diff_buf_add(wp->w_buffer);
1453 redraw_win_later(wp, NOT_VALID);
1454}
1455
1456/*
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001457 * Set options not to show diffs. For the current window or all windows.
Bram Moolenaarf740b292006-02-16 22:11:02 +00001458 * Only in the current tab page.
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001459 */
1460 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001461ex_diffoff(exarg_T *eap)
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001462{
1463 win_T *wp;
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001464 int diffwin = FALSE;
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001465
Bram Moolenaar29323592016-07-24 22:04:11 +02001466 FOR_ALL_WINDOWS(wp)
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001467 {
Bram Moolenaar00462ff2013-09-20 20:13:53 +02001468 if (eap->forceit ? wp->w_p_diff : wp == curwin)
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001469 {
Bram Moolenaar43929962015-07-03 15:06:56 +02001470 /* Set 'diff' off. If option values were saved in
1471 * diff_win_options(), restore the ones whose settings seem to have
1472 * been left over from diff mode. */
Bram Moolenaar04f62f82017-07-19 18:18:39 +02001473 set_diff_option(wp, FALSE);
Bram Moolenaara87aa802013-07-03 15:47:03 +02001474
Bram Moolenaara87aa802013-07-03 15:47:03 +02001475 if (wp->w_p_diff_saved)
1476 {
Bram Moolenaar33ca6bf2013-07-17 13:43:39 +02001477
Bram Moolenaar43929962015-07-03 15:06:56 +02001478 if (wp->w_p_scb)
1479 wp->w_p_scb = wp->w_p_scb_save;
Bram Moolenaar43929962015-07-03 15:06:56 +02001480 if (wp->w_p_crb)
1481 wp->w_p_crb = wp->w_p_crb_save;
Bram Moolenaar43929962015-07-03 15:06:56 +02001482 if (!wp->w_p_wrap)
1483 wp->w_p_wrap = wp->w_p_wrap_save;
1484#ifdef FEAT_FOLDING
1485 free_string_option(wp->w_p_fdm);
Bram Moolenaar79a213d2017-05-16 13:15:18 +02001486 wp->w_p_fdm = vim_strsave(
1487 *wp->w_p_fdm_save ? wp->w_p_fdm_save : (char_u*)"manual");
Bram Moolenaar43929962015-07-03 15:06:56 +02001488
1489 if (wp->w_p_fdc == diff_foldcolumn)
1490 wp->w_p_fdc = wp->w_p_fdc_save;
1491 if (wp->w_p_fdl == 0)
1492 wp->w_p_fdl = wp->w_p_fdl_save;
1493
Bram Moolenaar33ca6bf2013-07-17 13:43:39 +02001494 /* Only restore 'foldenable' when 'foldmethod' is not
1495 * "manual", otherwise we continue to show the diff folds. */
Bram Moolenaar43929962015-07-03 15:06:56 +02001496 if (wp->w_p_fen)
1497 wp->w_p_fen = foldmethodIsManual(wp) ? FALSE
1498 : wp->w_p_fen_save;
1499
1500 foldUpdateAll(wp);
Bram Moolenaar43929962015-07-03 15:06:56 +02001501#endif
Bram Moolenaar33ca6bf2013-07-17 13:43:39 +02001502 }
Bram Moolenaare67d5462016-08-27 22:40:42 +02001503 /* remove filler lines */
1504 wp->w_topfill = 0;
1505
1506 /* make sure topline is not halfway a fold and cursor is
1507 * invalidated */
1508 changed_window_setting_win(wp);
Bram Moolenaar33ca6bf2013-07-17 13:43:39 +02001509
Bram Moolenaara87aa802013-07-03 15:47:03 +02001510 /* Note: 'sbo' is not restored, it's a global option. */
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001511 diff_buf_adjust(wp);
1512 }
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001513 diffwin |= wp->w_p_diff;
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001514 }
1515
Bram Moolenaar25ea0542017-02-03 23:16:28 +01001516 /* Also remove hidden buffers from the list. */
1517 if (eap->forceit)
1518 diff_buf_clear();
1519
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001520 /* Remove "hor" from from 'scrollopt' if there are no diff windows left. */
1521 if (!diffwin && vim_strchr(p_sbo, 'h') != NULL)
1522 do_cmdline_cmd((char_u *)"set sbo-=hor");
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001523}
1524
1525/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001526 * Read the diff output and add each entry to the diff list.
1527 */
1528 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001529diff_read(
Bram Moolenaare828b762018-09-10 17:51:58 +02001530 int idx_orig, // idx of original file
1531 int idx_new, // idx of new file
1532 diffout_T *dout) // diff output
Bram Moolenaar071d4272004-06-13 20:20:40 +00001533{
Bram Moolenaare828b762018-09-10 17:51:58 +02001534 FILE *fd = NULL;
1535 int line_idx = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001536 diff_T *dprev = NULL;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00001537 diff_T *dp = curtab->tp_first_diff;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001538 diff_T *dn, *dpl;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001539 char_u linebuf[LBUFLEN]; /* only need to hold the diff line */
Bram Moolenaare828b762018-09-10 17:51:58 +02001540 char_u *line;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001541 long off;
1542 int i;
1543 linenr_T lnum_orig, lnum_new;
1544 long count_orig, count_new;
1545 int notset = TRUE; /* block "*dp" not set yet */
Bram Moolenaare828b762018-09-10 17:51:58 +02001546 enum {
1547 DIFF_ED,
1548 DIFF_UNIFIED,
1549 DIFF_NONE
1550 } diffstyle = DIFF_NONE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001551
Bram Moolenaare828b762018-09-10 17:51:58 +02001552 if (dout->dout_fname == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001553 {
Bram Moolenaare828b762018-09-10 17:51:58 +02001554 diffstyle = DIFF_UNIFIED;
1555 }
1556 else
1557 {
1558 fd = mch_fopen((char *)dout->dout_fname, "r");
1559 if (fd == NULL)
1560 {
1561 EMSG(_("E98: Cannot read diff output"));
1562 return;
1563 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001564 }
1565
1566 for (;;)
1567 {
Bram Moolenaare828b762018-09-10 17:51:58 +02001568 if (fd == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001569 {
Bram Moolenaare828b762018-09-10 17:51:58 +02001570 if (line_idx >= dout->dout_ga.ga_len)
1571 break; // did last line
1572 line = ((char_u **)dout->dout_ga.ga_data)[line_idx++];
Bram Moolenaar071d4272004-06-13 20:20:40 +00001573 }
1574 else
1575 {
Bram Moolenaare828b762018-09-10 17:51:58 +02001576 if (tag_fgets(linebuf, LBUFLEN, fd))
1577 break; // end of file
1578 line = linebuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001579 }
1580
Bram Moolenaare828b762018-09-10 17:51:58 +02001581 if (diffstyle == DIFF_NONE)
1582 {
1583 // Determine diff style.
1584 // ed like diff looks like this:
1585 // {first}[,{last}]c{first}[,{last}]
1586 // {first}a{first}[,{last}]
1587 // {first}[,{last}]d{first}
1588 //
1589 // unified diff looks like this:
1590 // --- file1 2018-03-20 13:23:35.783153140 +0100
1591 // +++ file2 2018-03-20 13:23:41.183156066 +0100
1592 // @@ -1,3 +1,5 @@
1593 if (isdigit(*line))
1594 diffstyle = DIFF_ED;
1595 else if ((STRNCMP(line, "@@ ", 3) == 0))
1596 diffstyle = DIFF_UNIFIED;
1597 else if ((STRNCMP(line, "--- ", 4) == 0)
1598 && (tag_fgets(linebuf, LBUFLEN, fd) == 0)
1599 && (STRNCMP(line, "+++ ", 4) == 0)
1600 && (tag_fgets(linebuf, LBUFLEN, fd) == 0)
1601 && (STRNCMP(line, "@@ ", 3) == 0))
1602 diffstyle = DIFF_UNIFIED;
Bram Moolenaar3b8defd2018-09-13 13:03:11 +02001603 else
1604 // Format not recognized yet, skip over this line. Cygwin diff
1605 // may put a warning at the start of the file.
1606 continue;
Bram Moolenaare828b762018-09-10 17:51:58 +02001607 }
1608
1609 if (diffstyle == DIFF_ED)
1610 {
1611 if (!isdigit(*line))
1612 continue; // not the start of a diff block
1613 if (parse_diff_ed(line, &lnum_orig, &count_orig,
1614 &lnum_new, &count_new) == FAIL)
1615 continue;
1616 }
1617 else if (diffstyle == DIFF_UNIFIED)
1618 {
1619 if (STRNCMP(line, "@@ ", 3) != 0)
1620 continue; // not the start of a diff block
1621 if (parse_diff_unified(line, &lnum_orig, &count_orig,
1622 &lnum_new, &count_new) == FAIL)
1623 continue;
1624 }
1625 else
1626 {
1627 EMSG(_("E959: Invalid diff format."));
1628 break;
1629 }
1630
1631 // Go over blocks before the change, for which orig and new are equal.
1632 // Copy blocks from orig to new.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001633 while (dp != NULL
1634 && lnum_orig > dp->df_lnum[idx_orig] + dp->df_count[idx_orig])
1635 {
1636 if (notset)
1637 diff_copy_entry(dprev, dp, idx_orig, idx_new);
1638 dprev = dp;
1639 dp = dp->df_next;
1640 notset = TRUE;
1641 }
1642
1643 if (dp != NULL
1644 && lnum_orig <= dp->df_lnum[idx_orig] + dp->df_count[idx_orig]
1645 && lnum_orig + count_orig >= dp->df_lnum[idx_orig])
1646 {
Bram Moolenaare828b762018-09-10 17:51:58 +02001647 // New block overlaps with existing block(s).
1648 // First find last block that overlaps.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001649 for (dpl = dp; dpl->df_next != NULL; dpl = dpl->df_next)
1650 if (lnum_orig + count_orig < dpl->df_next->df_lnum[idx_orig])
1651 break;
1652
Bram Moolenaare828b762018-09-10 17:51:58 +02001653 // If the newly found block starts before the old one, set the
1654 // start back a number of lines.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001655 off = dp->df_lnum[idx_orig] - lnum_orig;
1656 if (off > 0)
1657 {
1658 for (i = idx_orig; i < idx_new; ++i)
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00001659 if (curtab->tp_diffbuf[i] != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001660 dp->df_lnum[i] -= off;
1661 dp->df_lnum[idx_new] = lnum_new;
1662 dp->df_count[idx_new] = count_new;
1663 }
1664 else if (notset)
1665 {
Bram Moolenaare828b762018-09-10 17:51:58 +02001666 // new block inside existing one, adjust new block
Bram Moolenaar071d4272004-06-13 20:20:40 +00001667 dp->df_lnum[idx_new] = lnum_new + off;
1668 dp->df_count[idx_new] = count_new - off;
1669 }
1670 else
Bram Moolenaare828b762018-09-10 17:51:58 +02001671 // second overlap of new block with existing block
Bram Moolenaarbb8f88b2008-01-18 16:40:00 +00001672 dp->df_count[idx_new] += count_new - count_orig
1673 + dpl->df_lnum[idx_orig] + dpl->df_count[idx_orig]
1674 - (dp->df_lnum[idx_orig] + dp->df_count[idx_orig]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001675
Bram Moolenaare828b762018-09-10 17:51:58 +02001676 // Adjust the size of the block to include all the lines to the
1677 // end of the existing block or the new diff, whatever ends last.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001678 off = (lnum_orig + count_orig)
1679 - (dpl->df_lnum[idx_orig] + dpl->df_count[idx_orig]);
1680 if (off < 0)
1681 {
Bram Moolenaare828b762018-09-10 17:51:58 +02001682 // new change ends in existing block, adjust the end if not
1683 // done already
Bram Moolenaar071d4272004-06-13 20:20:40 +00001684 if (notset)
1685 dp->df_count[idx_new] += -off;
1686 off = 0;
1687 }
Bram Moolenaard4b96bc2007-10-19 15:33:39 +00001688 for (i = idx_orig; i < idx_new; ++i)
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00001689 if (curtab->tp_diffbuf[i] != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001690 dp->df_count[i] = dpl->df_lnum[i] + dpl->df_count[i]
1691 - dp->df_lnum[i] + off;
1692
Bram Moolenaare828b762018-09-10 17:51:58 +02001693 // Delete the diff blocks that have been merged into one.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001694 dn = dp->df_next;
1695 dp->df_next = dpl->df_next;
1696 while (dn != dp->df_next)
1697 {
1698 dpl = dn->df_next;
1699 vim_free(dn);
1700 dn = dpl;
1701 }
1702 }
1703 else
1704 {
Bram Moolenaare828b762018-09-10 17:51:58 +02001705 // Allocate a new diffblock.
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00001706 dp = diff_alloc_new(curtab, dprev, dp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001707 if (dp == NULL)
Bram Moolenaareb3593b2006-04-22 22:33:57 +00001708 goto done;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001709
1710 dp->df_lnum[idx_orig] = lnum_orig;
1711 dp->df_count[idx_orig] = count_orig;
1712 dp->df_lnum[idx_new] = lnum_new;
1713 dp->df_count[idx_new] = count_new;
1714
Bram Moolenaare828b762018-09-10 17:51:58 +02001715 // Set values for other buffers, these must be equal to the
1716 // original buffer, otherwise there would have been a change
1717 // already.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001718 for (i = idx_orig + 1; i < idx_new; ++i)
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00001719 if (curtab->tp_diffbuf[i] != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001720 diff_copy_entry(dprev, dp, idx_orig, i);
1721 }
Bram Moolenaare828b762018-09-10 17:51:58 +02001722 notset = FALSE; // "*dp" has been set
Bram Moolenaar071d4272004-06-13 20:20:40 +00001723 }
1724
Bram Moolenaare828b762018-09-10 17:51:58 +02001725 // for remaining diff blocks orig and new are equal
Bram Moolenaar071d4272004-06-13 20:20:40 +00001726 while (dp != NULL)
1727 {
1728 if (notset)
1729 diff_copy_entry(dprev, dp, idx_orig, idx_new);
1730 dprev = dp;
1731 dp = dp->df_next;
1732 notset = TRUE;
1733 }
1734
Bram Moolenaareb3593b2006-04-22 22:33:57 +00001735done:
Bram Moolenaare828b762018-09-10 17:51:58 +02001736 if (fd != NULL)
1737 fclose(fd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001738}
1739
1740/*
1741 * Copy an entry at "dp" from "idx_orig" to "idx_new".
1742 */
1743 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001744diff_copy_entry(
1745 diff_T *dprev,
1746 diff_T *dp,
1747 int idx_orig,
1748 int idx_new)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001749{
1750 long off;
1751
1752 if (dprev == NULL)
1753 off = 0;
1754 else
1755 off = (dprev->df_lnum[idx_orig] + dprev->df_count[idx_orig])
1756 - (dprev->df_lnum[idx_new] + dprev->df_count[idx_new]);
1757 dp->df_lnum[idx_new] = dp->df_lnum[idx_orig] - off;
1758 dp->df_count[idx_new] = dp->df_count[idx_orig];
1759}
1760
1761/*
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00001762 * Clear the list of diffblocks for tab page "tp".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001763 */
Bram Moolenaarea408852005-06-25 22:49:46 +00001764 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01001765diff_clear(tabpage_T *tp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001766{
1767 diff_T *p, *next_p;
1768
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00001769 for (p = tp->tp_first_diff; p != NULL; p = next_p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001770 {
1771 next_p = p->df_next;
1772 vim_free(p);
1773 }
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00001774 tp->tp_first_diff = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001775}
1776
1777/*
1778 * Check diff status for line "lnum" in buffer "buf":
1779 * Returns 0 for nothing special
1780 * Returns -1 for a line that should be highlighted as changed.
1781 * Returns -2 for a line that should be highlighted as added/deleted.
1782 * Returns > 0 for inserting that many filler lines above it (never happens
1783 * when 'diffopt' doesn't contain "filler").
1784 * This should only be used for windows where 'diff' is set.
1785 */
1786 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01001787diff_check(win_T *wp, linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001788{
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00001789 int idx; /* index in tp_diffbuf[] for this buffer */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001790 diff_T *dp;
1791 int maxcount;
1792 int i;
1793 buf_T *buf = wp->w_buffer;
1794 int cmp;
1795
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00001796 if (curtab->tp_diff_invalid)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001797 ex_diffupdate(NULL); /* update after a big change */
1798
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00001799 if (curtab->tp_first_diff == NULL || !wp->w_p_diff) /* no diffs at all */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001800 return 0;
1801
1802 /* safety check: "lnum" must be a buffer line */
1803 if (lnum < 1 || lnum > buf->b_ml.ml_line_count + 1)
1804 return 0;
1805
1806 idx = diff_buf_idx(buf);
1807 if (idx == DB_COUNT)
1808 return 0; /* no diffs for buffer "buf" */
1809
1810#ifdef FEAT_FOLDING
1811 /* A closed fold never has filler lines. */
1812 if (hasFoldingWin(wp, lnum, NULL, NULL, TRUE, NULL))
1813 return 0;
1814#endif
1815
1816 /* search for a change that includes "lnum" in the list of diffblocks. */
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00001817 for (dp = curtab->tp_first_diff; dp != NULL; dp = dp->df_next)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001818 if (lnum <= dp->df_lnum[idx] + dp->df_count[idx])
1819 break;
1820 if (dp == NULL || lnum < dp->df_lnum[idx])
1821 return 0;
1822
1823 if (lnum < dp->df_lnum[idx] + dp->df_count[idx])
1824 {
1825 int zero = FALSE;
1826
1827 /* Changed or inserted line. If the other buffers have a count of
1828 * zero, the lines were inserted. If the other buffers have the same
1829 * count, check if the lines are identical. */
1830 cmp = FALSE;
1831 for (i = 0; i < DB_COUNT; ++i)
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00001832 if (i != idx && curtab->tp_diffbuf[i] != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001833 {
1834 if (dp->df_count[i] == 0)
1835 zero = TRUE;
1836 else
1837 {
1838 if (dp->df_count[i] != dp->df_count[idx])
1839 return -1; /* nr of lines changed. */
1840 cmp = TRUE;
1841 }
1842 }
1843 if (cmp)
1844 {
1845 /* Compare all lines. If they are equal the lines were inserted
1846 * in some buffers, deleted in others, but not changed. */
1847 for (i = 0; i < DB_COUNT; ++i)
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001848 if (i != idx && curtab->tp_diffbuf[i] != NULL
1849 && dp->df_count[i] != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001850 if (!diff_equal_entry(dp, idx, i))
1851 return -1;
1852 }
1853 /* If there is no buffer with zero lines then there is no difference
1854 * any longer. Happens when making a change (or undo) that removes
1855 * the difference. Can't remove the entry here, we might be halfway
1856 * updating the window. Just report the text as unchanged. Other
1857 * windows might still show the change though. */
1858 if (zero == FALSE)
1859 return 0;
1860 return -2;
1861 }
1862
1863 /* If 'diffopt' doesn't contain "filler", return 0. */
1864 if (!(diff_flags & DIFF_FILLER))
1865 return 0;
1866
1867 /* Insert filler lines above the line just below the change. Will return
1868 * 0 when this buf had the max count. */
1869 maxcount = 0;
1870 for (i = 0; i < DB_COUNT; ++i)
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00001871 if (curtab->tp_diffbuf[i] != NULL && dp->df_count[i] > maxcount)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001872 maxcount = dp->df_count[i];
1873 return maxcount - dp->df_count[idx];
1874}
1875
1876/*
1877 * Compare two entries in diff "*dp" and return TRUE if they are equal.
1878 */
1879 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01001880diff_equal_entry(diff_T *dp, int idx1, int idx2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001881{
1882 int i;
1883 char_u *line;
1884 int cmp;
1885
1886 if (dp->df_count[idx1] != dp->df_count[idx2])
1887 return FALSE;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00001888 if (diff_check_sanity(curtab, dp) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001889 return FALSE;
1890 for (i = 0; i < dp->df_count[idx1]; ++i)
1891 {
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00001892 line = vim_strsave(ml_get_buf(curtab->tp_diffbuf[idx1],
Bram Moolenaar071d4272004-06-13 20:20:40 +00001893 dp->df_lnum[idx1] + i, FALSE));
1894 if (line == NULL)
1895 return FALSE;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00001896 cmp = diff_cmp(line, ml_get_buf(curtab->tp_diffbuf[idx2],
Bram Moolenaar071d4272004-06-13 20:20:40 +00001897 dp->df_lnum[idx2] + i, FALSE));
1898 vim_free(line);
1899 if (cmp != 0)
1900 return FALSE;
1901 }
1902 return TRUE;
1903}
1904
1905/*
Bram Moolenaarae96b8d2017-09-03 15:04:21 +02001906 * Compare the characters at "p1" and "p2". If they are equal (possibly
1907 * ignoring case) return TRUE and set "len" to the number of bytes.
1908 */
1909 static int
1910diff_equal_char(char_u *p1, char_u *p2, int *len)
1911{
1912#ifdef FEAT_MBYTE
1913 int l = (*mb_ptr2len)(p1);
1914
1915 if (l != (*mb_ptr2len)(p2))
1916 return FALSE;
1917 if (l > 1)
1918 {
1919 if (STRNCMP(p1, p2, l) != 0
1920 && (!enc_utf8
1921 || !(diff_flags & DIFF_ICASE)
1922 || utf_fold(utf_ptr2char(p1))
1923 != utf_fold(utf_ptr2char(p2))))
1924 return FALSE;
1925 *len = l;
1926 }
1927 else
1928#endif
1929 {
1930 if ((*p1 != *p2)
1931 && (!(diff_flags & DIFF_ICASE)
1932 || TOLOWER_LOC(*p1) != TOLOWER_LOC(*p2)))
1933 return FALSE;
1934 *len = 1;
1935 }
1936 return TRUE;
1937}
1938
1939/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001940 * Compare strings "s1" and "s2" according to 'diffopt'.
1941 * Return non-zero when they are different.
1942 */
1943 static int
Bram Moolenaar7454a062016-01-30 15:14:10 +01001944diff_cmp(char_u *s1, char_u *s2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001945{
1946 char_u *p1, *p2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001947 int l;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001948
1949 if ((diff_flags & (DIFF_ICASE | DIFF_IWHITE)) == 0)
1950 return STRCMP(s1, s2);
1951 if ((diff_flags & DIFF_ICASE) && !(diff_flags & DIFF_IWHITE))
1952 return MB_STRICMP(s1, s2);
1953
1954 /* Ignore white space changes and possibly ignore case. */
1955 p1 = s1;
1956 p2 = s2;
1957 while (*p1 != NUL && *p2 != NUL)
1958 {
Bram Moolenaar1c465442017-03-12 20:10:05 +01001959 if (VIM_ISWHITE(*p1) && VIM_ISWHITE(*p2))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001960 {
1961 p1 = skipwhite(p1);
1962 p2 = skipwhite(p2);
1963 }
1964 else
1965 {
Bram Moolenaarae96b8d2017-09-03 15:04:21 +02001966 if (!diff_equal_char(p1, p2, &l))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001967 break;
Bram Moolenaarae96b8d2017-09-03 15:04:21 +02001968 p1 += l;
1969 p2 += l;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001970 }
1971 }
1972
1973 /* Ignore trailing white space. */
1974 p1 = skipwhite(p1);
1975 p2 = skipwhite(p2);
1976 if (*p1 != NUL || *p2 != NUL)
1977 return 1;
1978 return 0;
1979}
1980
1981/*
1982 * Return the number of filler lines above "lnum".
1983 */
1984 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01001985diff_check_fill(win_T *wp, linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001986{
1987 int n;
1988
1989 /* be quick when there are no filler lines */
1990 if (!(diff_flags & DIFF_FILLER))
1991 return 0;
1992 n = diff_check(wp, lnum);
1993 if (n <= 0)
1994 return 0;
1995 return n;
1996}
1997
1998/*
1999 * Set the topline of "towin" to match the position in "fromwin", so that they
2000 * show the same diff'ed lines.
2001 */
2002 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002003diff_set_topline(win_T *fromwin, win_T *towin)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002004{
Bram Moolenaarbb8f88b2008-01-18 16:40:00 +00002005 buf_T *frombuf = fromwin->w_buffer;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002006 linenr_T lnum = fromwin->w_topline;
Bram Moolenaarbb8f88b2008-01-18 16:40:00 +00002007 int fromidx;
2008 int toidx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002009 diff_T *dp;
Bram Moolenaarbb8f88b2008-01-18 16:40:00 +00002010 int max_count;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002011 int i;
2012
Bram Moolenaarbb8f88b2008-01-18 16:40:00 +00002013 fromidx = diff_buf_idx(frombuf);
2014 if (fromidx == DB_COUNT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002015 return; /* safety check */
2016
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002017 if (curtab->tp_diff_invalid)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002018 ex_diffupdate(NULL); /* update after a big change */
2019
2020 towin->w_topfill = 0;
2021
2022 /* search for a change that includes "lnum" in the list of diffblocks. */
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002023 for (dp = curtab->tp_first_diff; dp != NULL; dp = dp->df_next)
Bram Moolenaarbb8f88b2008-01-18 16:40:00 +00002024 if (lnum <= dp->df_lnum[fromidx] + dp->df_count[fromidx])
Bram Moolenaar071d4272004-06-13 20:20:40 +00002025 break;
2026 if (dp == NULL)
2027 {
2028 /* After last change, compute topline relative to end of file; no
2029 * filler lines. */
2030 towin->w_topline = towin->w_buffer->b_ml.ml_line_count
Bram Moolenaarbb8f88b2008-01-18 16:40:00 +00002031 - (frombuf->b_ml.ml_line_count - lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002032 }
2033 else
2034 {
2035 /* Find index for "towin". */
Bram Moolenaarbb8f88b2008-01-18 16:40:00 +00002036 toidx = diff_buf_idx(towin->w_buffer);
2037 if (toidx == DB_COUNT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002038 return; /* safety check */
2039
Bram Moolenaarbb8f88b2008-01-18 16:40:00 +00002040 towin->w_topline = lnum + (dp->df_lnum[toidx] - dp->df_lnum[fromidx]);
2041 if (lnum >= dp->df_lnum[fromidx])
Bram Moolenaar071d4272004-06-13 20:20:40 +00002042 {
Bram Moolenaarbb8f88b2008-01-18 16:40:00 +00002043 /* Inside a change: compute filler lines. With three or more
2044 * buffers we need to know the largest count. */
2045 max_count = 0;
2046 for (i = 0; i < DB_COUNT; ++i)
2047 if (curtab->tp_diffbuf[i] != NULL
2048 && max_count < dp->df_count[i])
2049 max_count = dp->df_count[i];
2050
2051 if (dp->df_count[toidx] == dp->df_count[fromidx])
2052 {
2053 /* same number of lines: use same filler count */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002054 towin->w_topfill = fromwin->w_topfill;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002055 }
Bram Moolenaarbb8f88b2008-01-18 16:40:00 +00002056 else if (dp->df_count[toidx] > dp->df_count[fromidx])
Bram Moolenaar071d4272004-06-13 20:20:40 +00002057 {
Bram Moolenaarbb8f88b2008-01-18 16:40:00 +00002058 if (lnum == dp->df_lnum[fromidx] + dp->df_count[fromidx])
Bram Moolenaar071d4272004-06-13 20:20:40 +00002059 {
Bram Moolenaarbb8f88b2008-01-18 16:40:00 +00002060 /* more lines in towin and fromwin doesn't show diff
2061 * lines, only filler lines */
2062 if (max_count - fromwin->w_topfill >= dp->df_count[toidx])
2063 {
2064 /* towin also only shows filler lines */
2065 towin->w_topline = dp->df_lnum[toidx]
2066 + dp->df_count[toidx];
2067 towin->w_topfill = fromwin->w_topfill;
2068 }
2069 else
2070 /* towin still has some diff lines to show */
2071 towin->w_topline = dp->df_lnum[toidx]
2072 + max_count - fromwin->w_topfill;
2073 }
2074 }
2075 else if (towin->w_topline >= dp->df_lnum[toidx]
2076 + dp->df_count[toidx])
2077 {
2078 /* less lines in towin and no diff lines to show: compute
2079 * filler lines */
2080 towin->w_topline = dp->df_lnum[toidx] + dp->df_count[toidx];
2081 if (diff_flags & DIFF_FILLER)
2082 {
2083 if (lnum == dp->df_lnum[fromidx] + dp->df_count[fromidx])
2084 /* fromwin is also out of diff lines */
2085 towin->w_topfill = fromwin->w_topfill;
2086 else
2087 /* fromwin has some diff lines */
2088 towin->w_topfill = dp->df_lnum[fromidx]
2089 + max_count - lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002090 }
2091 }
2092 }
2093 }
2094
2095 /* safety check (if diff info gets outdated strange things may happen) */
2096 towin->w_botfill = FALSE;
2097 if (towin->w_topline > towin->w_buffer->b_ml.ml_line_count)
2098 {
2099 towin->w_topline = towin->w_buffer->b_ml.ml_line_count;
2100 towin->w_botfill = TRUE;
2101 }
2102 if (towin->w_topline < 1)
2103 {
2104 towin->w_topline = 1;
2105 towin->w_topfill = 0;
2106 }
2107
2108 /* When w_topline changes need to recompute w_botline and cursor position */
2109 invalidate_botline_win(towin);
2110 changed_line_abv_curs_win(towin);
2111
2112 check_topfill(towin, FALSE);
2113#ifdef FEAT_FOLDING
2114 (void)hasFoldingWin(towin, towin->w_topline, &towin->w_topline,
2115 NULL, TRUE, NULL);
2116#endif
2117}
2118
2119/*
2120 * This is called when 'diffopt' is changed.
2121 */
2122 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002123diffopt_changed(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002124{
2125 char_u *p;
2126 int diff_context_new = 6;
2127 int diff_flags_new = 0;
Bram Moolenaarc4675a12006-03-15 22:50:30 +00002128 int diff_foldcolumn_new = 2;
Bram Moolenaare828b762018-09-10 17:51:58 +02002129 long diff_algorithm_new = 0;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002130 tabpage_T *tp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002131
2132 p = p_dip;
2133 while (*p != NUL)
2134 {
2135 if (STRNCMP(p, "filler", 6) == 0)
2136 {
2137 p += 6;
2138 diff_flags_new |= DIFF_FILLER;
2139 }
2140 else if (STRNCMP(p, "context:", 8) == 0 && VIM_ISDIGIT(p[8]))
2141 {
2142 p += 8;
2143 diff_context_new = getdigits(&p);
2144 }
2145 else if (STRNCMP(p, "icase", 5) == 0)
2146 {
2147 p += 5;
2148 diff_flags_new |= DIFF_ICASE;
2149 }
2150 else if (STRNCMP(p, "iwhite", 6) == 0)
2151 {
2152 p += 6;
2153 diff_flags_new |= DIFF_IWHITE;
2154 }
Bram Moolenaarc4675a12006-03-15 22:50:30 +00002155 else if (STRNCMP(p, "horizontal", 10) == 0)
2156 {
2157 p += 10;
2158 diff_flags_new |= DIFF_HORIZONTAL;
2159 }
2160 else if (STRNCMP(p, "vertical", 8) == 0)
2161 {
2162 p += 8;
2163 diff_flags_new |= DIFF_VERTICAL;
2164 }
2165 else if (STRNCMP(p, "foldcolumn:", 11) == 0 && VIM_ISDIGIT(p[11]))
2166 {
2167 p += 11;
2168 diff_foldcolumn_new = getdigits(&p);
2169 }
Bram Moolenaar97ce4192017-12-01 20:35:58 +01002170 else if (STRNCMP(p, "hiddenoff", 9) == 0)
2171 {
2172 p += 9;
2173 diff_flags_new |= DIFF_HIDDEN_OFF;
2174 }
Bram Moolenaare828b762018-09-10 17:51:58 +02002175 else if (STRNCMP(p, "indent-heuristic", 16) == 0)
2176 {
2177 p += 16;
2178 diff_algorithm_new |= XDF_INDENT_HEURISTIC;
2179 }
2180 else if (STRNCMP(p, "internal", 8) == 0)
2181 {
2182 p += 8;
2183 diff_flags_new |= DIFF_INTERNAL;
2184 }
2185 else if (STRNCMP(p, "algorithm:", 10) == 0)
2186 {
2187 p += 10;
2188 if (STRNCMP(p, "myers", 5) == 0)
2189 {
2190 p += 5;
2191 diff_algorithm_new = 0;
2192 }
2193 else if (STRNCMP(p, "minimal", 7) == 0)
2194 {
2195 p += 7;
2196 diff_algorithm_new = XDF_NEED_MINIMAL;
2197 }
2198 else if (STRNCMP(p, "patience", 8) == 0)
2199 {
2200 p += 8;
2201 diff_algorithm_new = XDF_PATIENCE_DIFF;
2202 }
2203 else if (STRNCMP(p, "histogram", 9) == 0)
2204 {
2205 p += 9;
2206 diff_algorithm_new = XDF_HISTOGRAM_DIFF;
2207 }
2208 }
2209
Bram Moolenaar071d4272004-06-13 20:20:40 +00002210 if (*p != ',' && *p != NUL)
2211 return FAIL;
2212 if (*p == ',')
2213 ++p;
2214 }
2215
Bram Moolenaarc4675a12006-03-15 22:50:30 +00002216 /* Can't have both "horizontal" and "vertical". */
2217 if ((diff_flags_new & DIFF_HORIZONTAL) && (diff_flags_new & DIFF_VERTICAL))
2218 return FAIL;
2219
Bram Moolenaar071d4272004-06-13 20:20:40 +00002220 /* If "icase" or "iwhite" was added or removed, need to update the diff. */
Bram Moolenaare828b762018-09-10 17:51:58 +02002221 if (diff_flags != diff_flags_new || diff_algorithm != diff_algorithm_new)
Bram Moolenaar29323592016-07-24 22:04:11 +02002222 FOR_ALL_TABPAGES(tp)
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002223 tp->tp_diff_invalid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002224
2225 diff_flags = diff_flags_new;
2226 diff_context = diff_context_new;
Bram Moolenaarc4675a12006-03-15 22:50:30 +00002227 diff_foldcolumn = diff_foldcolumn_new;
Bram Moolenaare828b762018-09-10 17:51:58 +02002228 diff_algorithm = diff_algorithm_new;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002229
2230 diff_redraw(TRUE);
2231
2232 /* recompute the scroll binding with the new option value, may
2233 * remove or add filler lines */
2234 check_scrollbind((linenr_T)0, 0L);
2235
2236 return OK;
2237}
2238
2239/*
Bram Moolenaarc4675a12006-03-15 22:50:30 +00002240 * Return TRUE if 'diffopt' contains "horizontal".
2241 */
2242 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002243diffopt_horizontal(void)
Bram Moolenaarc4675a12006-03-15 22:50:30 +00002244{
2245 return (diff_flags & DIFF_HORIZONTAL) != 0;
2246}
2247
2248/*
Bram Moolenaar97ce4192017-12-01 20:35:58 +01002249 * Return TRUE if 'diffopt' contains "hiddenoff".
2250 */
2251 int
2252diffopt_hiddenoff(void)
2253{
2254 return (diff_flags & DIFF_HIDDEN_OFF) != 0;
2255}
2256
2257/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002258 * Find the difference within a changed line.
2259 * Returns TRUE if the line was added, no other buffer has it.
2260 */
2261 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002262diff_find_change(
2263 win_T *wp,
2264 linenr_T lnum,
2265 int *startp, /* first char of the change */
2266 int *endp) /* last char of the change */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002267{
2268 char_u *line_org;
2269 char_u *line_new;
2270 int i;
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00002271 int si_org, si_new;
2272 int ei_org, ei_new;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002273 diff_T *dp;
2274 int idx;
2275 int off;
2276 int added = TRUE;
Bram Moolenaarda22b8c2017-09-02 18:01:50 +02002277 char_u *p1, *p2;
2278 int l;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002279
2280 /* Make a copy of the line, the next ml_get() will invalidate it. */
2281 line_org = vim_strsave(ml_get_buf(wp->w_buffer, lnum, FALSE));
2282 if (line_org == NULL)
2283 return FALSE;
2284
2285 idx = diff_buf_idx(wp->w_buffer);
2286 if (idx == DB_COUNT) /* cannot happen */
Bram Moolenaarfa3491a2007-02-20 02:49:19 +00002287 {
2288 vim_free(line_org);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002289 return FALSE;
Bram Moolenaarfa3491a2007-02-20 02:49:19 +00002290 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002291
2292 /* search for a change that includes "lnum" in the list of diffblocks. */
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002293 for (dp = curtab->tp_first_diff; dp != NULL; dp = dp->df_next)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002294 if (lnum <= dp->df_lnum[idx] + dp->df_count[idx])
2295 break;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002296 if (dp == NULL || diff_check_sanity(curtab, dp) == FAIL)
Bram Moolenaarfa3491a2007-02-20 02:49:19 +00002297 {
2298 vim_free(line_org);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002299 return FALSE;
Bram Moolenaarfa3491a2007-02-20 02:49:19 +00002300 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002301
2302 off = lnum - dp->df_lnum[idx];
2303
2304 for (i = 0; i < DB_COUNT; ++i)
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002305 if (curtab->tp_diffbuf[i] != NULL && i != idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002306 {
2307 /* Skip lines that are not in the other change (filler lines). */
2308 if (off >= dp->df_count[i])
2309 continue;
2310 added = FALSE;
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00002311 line_new = ml_get_buf(curtab->tp_diffbuf[i],
2312 dp->df_lnum[i] + off, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002313
2314 /* Search for start of difference */
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00002315 si_org = si_new = 0;
2316 while (line_org[si_org] != NUL)
2317 {
2318 if ((diff_flags & DIFF_IWHITE)
Bram Moolenaar1c465442017-03-12 20:10:05 +01002319 && VIM_ISWHITE(line_org[si_org])
2320 && VIM_ISWHITE(line_new[si_new]))
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00002321 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002322 si_org = (int)(skipwhite(line_org + si_org) - line_org);
2323 si_new = (int)(skipwhite(line_new + si_new) - line_new);
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00002324 }
2325 else
2326 {
Bram Moolenaarda22b8c2017-09-02 18:01:50 +02002327 if (!diff_equal_char(line_org + si_org, line_new + si_new,
2328 &l))
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00002329 break;
Bram Moolenaarda22b8c2017-09-02 18:01:50 +02002330 si_org += l;
2331 si_new += l;
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00002332 }
2333 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002334#ifdef FEAT_MBYTE
2335 if (has_mbyte)
2336 {
2337 /* Move back to first byte of character in both lines (may
2338 * have "nn^" in line_org and "n^ in line_new). */
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00002339 si_org -= (*mb_head_off)(line_org, line_org + si_org);
2340 si_new -= (*mb_head_off)(line_new, line_new + si_new);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002341 }
2342#endif
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00002343 if (*startp > si_org)
2344 *startp = si_org;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002345
2346 /* Search for end of difference, if any. */
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00002347 if (line_org[si_org] != NUL || line_new[si_new] != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002348 {
2349 ei_org = (int)STRLEN(line_org);
2350 ei_new = (int)STRLEN(line_new);
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00002351 while (ei_org >= *startp && ei_new >= si_new
2352 && ei_org >= 0 && ei_new >= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002353 {
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00002354 if ((diff_flags & DIFF_IWHITE)
Bram Moolenaar1c465442017-03-12 20:10:05 +01002355 && VIM_ISWHITE(line_org[ei_org])
2356 && VIM_ISWHITE(line_new[ei_new]))
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00002357 {
2358 while (ei_org >= *startp
Bram Moolenaar1c465442017-03-12 20:10:05 +01002359 && VIM_ISWHITE(line_org[ei_org]))
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00002360 --ei_org;
2361 while (ei_new >= si_new
Bram Moolenaar1c465442017-03-12 20:10:05 +01002362 && VIM_ISWHITE(line_new[ei_new]))
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00002363 --ei_new;
2364 }
2365 else
2366 {
Bram Moolenaarda22b8c2017-09-02 18:01:50 +02002367 p1 = line_org + ei_org;
2368 p2 = line_new + ei_new;
2369#ifdef FEAT_MBYTE
2370 p1 -= (*mb_head_off)(line_org, p1);
2371 p2 -= (*mb_head_off)(line_new, p2);
2372#endif
2373 if (!diff_equal_char(p1, p2, &l))
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00002374 break;
Bram Moolenaarda22b8c2017-09-02 18:01:50 +02002375 ei_org -= l;
2376 ei_new -= l;
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00002377 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002378 }
2379 if (*endp < ei_org)
2380 *endp = ei_org;
2381 }
2382 }
2383
2384 vim_free(line_org);
2385 return added;
2386}
2387
2388#if defined(FEAT_FOLDING) || defined(PROTO)
2389/*
2390 * Return TRUE if line "lnum" is not close to a diff block, this line should
2391 * be in a fold.
2392 * Return FALSE if there are no diff blocks at all in this window.
2393 */
2394 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002395diff_infold(win_T *wp, linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002396{
2397 int i;
2398 int idx = -1;
2399 int other = FALSE;
2400 diff_T *dp;
2401
2402 /* Return if 'diff' isn't set. */
2403 if (!wp->w_p_diff)
2404 return FALSE;
2405
2406 for (i = 0; i < DB_COUNT; ++i)
2407 {
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002408 if (curtab->tp_diffbuf[i] == wp->w_buffer)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002409 idx = i;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002410 else if (curtab->tp_diffbuf[i] != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002411 other = TRUE;
2412 }
2413
2414 /* return here if there are no diffs in the window */
2415 if (idx == -1 || !other)
2416 return FALSE;
2417
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002418 if (curtab->tp_diff_invalid)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002419 ex_diffupdate(NULL); /* update after a big change */
2420
2421 /* Return if there are no diff blocks. All lines will be folded. */
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002422 if (curtab->tp_first_diff == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002423 return TRUE;
2424
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002425 for (dp = curtab->tp_first_diff; dp != NULL; dp = dp->df_next)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002426 {
2427 /* If this change is below the line there can't be any further match. */
2428 if (dp->df_lnum[idx] - diff_context > lnum)
2429 break;
2430 /* If this change ends before the line we have a match. */
2431 if (dp->df_lnum[idx] + dp->df_count[idx] + diff_context > lnum)
2432 return FALSE;
2433 }
2434 return TRUE;
2435}
2436#endif
2437
2438/*
2439 * "dp" and "do" commands.
2440 */
2441 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002442nv_diffgetput(int put, long count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002443{
2444 exarg_T ea;
Bram Moolenaar6a643652014-10-31 13:54:25 +01002445 char_u buf[30];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002446
Bram Moolenaarf2732452018-06-03 14:47:35 +02002447#ifdef FEAT_JOB_CHANNEL
2448 if (bt_prompt(curbuf))
2449 {
2450 vim_beep(BO_OPER);
2451 return;
2452 }
2453#endif
Bram Moolenaar6a643652014-10-31 13:54:25 +01002454 if (count == 0)
2455 ea.arg = (char_u *)"";
2456 else
2457 {
2458 vim_snprintf((char *)buf, 30, "%ld", count);
2459 ea.arg = buf;
2460 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002461 if (put)
2462 ea.cmdidx = CMD_diffput;
2463 else
2464 ea.cmdidx = CMD_diffget;
2465 ea.addr_count = 0;
2466 ea.line1 = curwin->w_cursor.lnum;
2467 ea.line2 = curwin->w_cursor.lnum;
2468 ex_diffgetput(&ea);
2469}
2470
2471/*
2472 * ":diffget"
2473 * ":diffput"
2474 */
2475 void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002476ex_diffgetput(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002477{
2478 linenr_T lnum;
2479 int count;
2480 linenr_T off = 0;
2481 diff_T *dp;
2482 diff_T *dprev;
2483 diff_T *dfree;
2484 int idx_cur;
2485 int idx_other;
2486 int idx_from;
2487 int idx_to;
2488 int i;
2489 int added;
2490 char_u *p;
2491 aco_save_T aco;
2492 buf_T *buf;
2493 int start_skip, end_skip;
2494 int new_count;
Bram Moolenaar280f1262006-01-30 00:14:18 +00002495 int buf_empty;
Bram Moolenaar602eb742007-02-20 03:43:38 +00002496 int found_not_ma = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002497
2498 /* Find the current buffer in the list of diff buffers. */
2499 idx_cur = diff_buf_idx(curbuf);
2500 if (idx_cur == DB_COUNT)
2501 {
2502 EMSG(_("E99: Current buffer is not in diff mode"));
2503 return;
2504 }
2505
2506 if (*eap->arg == NUL)
2507 {
2508 /* No argument: Find the other buffer in the list of diff buffers. */
2509 for (idx_other = 0; idx_other < DB_COUNT; ++idx_other)
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002510 if (curtab->tp_diffbuf[idx_other] != curbuf
Bram Moolenaar602eb742007-02-20 03:43:38 +00002511 && curtab->tp_diffbuf[idx_other] != NULL)
2512 {
2513 if (eap->cmdidx != CMD_diffput
2514 || curtab->tp_diffbuf[idx_other]->b_p_ma)
2515 break;
2516 found_not_ma = TRUE;
2517 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002518 if (idx_other == DB_COUNT)
2519 {
Bram Moolenaar602eb742007-02-20 03:43:38 +00002520 if (found_not_ma)
2521 EMSG(_("E793: No other buffer in diff mode is modifiable"));
2522 else
2523 EMSG(_("E100: No other buffer in diff mode"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002524 return;
2525 }
2526
2527 /* Check that there isn't a third buffer in the list */
2528 for (i = idx_other + 1; i < DB_COUNT; ++i)
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002529 if (curtab->tp_diffbuf[i] != curbuf
2530 && curtab->tp_diffbuf[i] != NULL
2531 && (eap->cmdidx != CMD_diffput || curtab->tp_diffbuf[i]->b_p_ma))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002532 {
2533 EMSG(_("E101: More than two buffers in diff mode, don't know which one to use"));
2534 return;
2535 }
2536 }
2537 else
2538 {
2539 /* Buffer number or pattern given. Ignore trailing white space. */
2540 p = eap->arg + STRLEN(eap->arg);
Bram Moolenaar1c465442017-03-12 20:10:05 +01002541 while (p > eap->arg && VIM_ISWHITE(p[-1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002542 --p;
2543 for (i = 0; vim_isdigit(eap->arg[i]) && eap->arg + i < p; ++i)
2544 ;
2545 if (eap->arg + i == p) /* digits only */
2546 i = atol((char *)eap->arg);
2547 else
2548 {
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002549 i = buflist_findpat(eap->arg, p, FALSE, TRUE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002550 if (i < 0)
2551 return; /* error message already given */
2552 }
2553 buf = buflist_findnr(i);
2554 if (buf == NULL)
2555 {
2556 EMSG2(_("E102: Can't find buffer \"%s\""), eap->arg);
2557 return;
2558 }
Bram Moolenaar5cc6a6e2009-01-22 19:48:55 +00002559 if (buf == curbuf)
2560 return; /* nothing to do */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002561 idx_other = diff_buf_idx(buf);
2562 if (idx_other == DB_COUNT)
2563 {
2564 EMSG2(_("E103: Buffer \"%s\" is not in diff mode"), eap->arg);
2565 return;
2566 }
2567 }
2568
2569 diff_busy = TRUE;
2570
2571 /* When no range given include the line above or below the cursor. */
2572 if (eap->addr_count == 0)
2573 {
2574 /* Make it possible that ":diffget" on the last line gets line below
2575 * the cursor line when there is no difference above the cursor. */
2576 if (eap->cmdidx == CMD_diffget
2577 && eap->line1 == curbuf->b_ml.ml_line_count
2578 && diff_check(curwin, eap->line1) == 0
2579 && (eap->line1 == 1 || diff_check(curwin, eap->line1 - 1) == 0))
2580 ++eap->line2;
2581 else if (eap->line1 > 0)
2582 --eap->line1;
2583 }
2584
2585 if (eap->cmdidx == CMD_diffget)
2586 {
2587 idx_from = idx_other;
2588 idx_to = idx_cur;
2589 }
2590 else
2591 {
2592 idx_from = idx_cur;
2593 idx_to = idx_other;
2594 /* Need to make the other buffer the current buffer to be able to make
2595 * changes in it. */
2596 /* set curwin/curbuf to buf and save a few things */
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002597 aucmd_prepbuf(&aco, curtab->tp_diffbuf[idx_other]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002598 }
2599
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002600 /* May give the warning for a changed buffer here, which can trigger the
2601 * FileChangedRO autocommand, which may do nasty things and mess
2602 * everything up. */
2603 if (!curbuf->b_changed)
2604 {
2605 change_warning(0);
2606 if (diff_buf_idx(curbuf) != idx_to)
2607 {
2608 EMSG(_("E787: Buffer changed unexpectedly"));
2609 return;
2610 }
2611 }
2612
Bram Moolenaar071d4272004-06-13 20:20:40 +00002613 dprev = NULL;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002614 for (dp = curtab->tp_first_diff; dp != NULL; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002615 {
2616 if (dp->df_lnum[idx_cur] > eap->line2 + off)
2617 break; /* past the range that was specified */
2618
2619 dfree = NULL;
2620 lnum = dp->df_lnum[idx_to];
2621 count = dp->df_count[idx_to];
2622 if (dp->df_lnum[idx_cur] + dp->df_count[idx_cur] > eap->line1 + off
2623 && u_save(lnum - 1, lnum + count) != FAIL)
2624 {
2625 /* Inside the specified range and saving for undo worked. */
2626 start_skip = 0;
2627 end_skip = 0;
2628 if (eap->addr_count > 0)
2629 {
2630 /* A range was specified: check if lines need to be skipped. */
2631 start_skip = eap->line1 + off - dp->df_lnum[idx_cur];
2632 if (start_skip > 0)
2633 {
2634 /* range starts below start of current diff block */
2635 if (start_skip > count)
2636 {
2637 lnum += count;
2638 count = 0;
2639 }
2640 else
2641 {
2642 count -= start_skip;
2643 lnum += start_skip;
2644 }
2645 }
2646 else
2647 start_skip = 0;
2648
2649 end_skip = dp->df_lnum[idx_cur] + dp->df_count[idx_cur] - 1
2650 - (eap->line2 + off);
2651 if (end_skip > 0)
2652 {
2653 /* range ends above end of current/from diff block */
2654 if (idx_cur == idx_from) /* :diffput */
2655 {
2656 i = dp->df_count[idx_cur] - start_skip - end_skip;
2657 if (count > i)
2658 count = i;
2659 }
2660 else /* :diffget */
2661 {
2662 count -= end_skip;
2663 end_skip = dp->df_count[idx_from] - start_skip - count;
2664 if (end_skip < 0)
2665 end_skip = 0;
2666 }
2667 }
2668 else
2669 end_skip = 0;
2670 }
2671
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002672 buf_empty = BUFEMPTY();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002673 added = 0;
2674 for (i = 0; i < count; ++i)
2675 {
Bram Moolenaar280f1262006-01-30 00:14:18 +00002676 /* remember deleting the last line of the buffer */
2677 buf_empty = curbuf->b_ml.ml_line_count == 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002678 ml_delete(lnum, FALSE);
2679 --added;
2680 }
2681 for (i = 0; i < dp->df_count[idx_from] - start_skip - end_skip; ++i)
2682 {
2683 linenr_T nr;
2684
2685 nr = dp->df_lnum[idx_from] + start_skip + i;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002686 if (nr > curtab->tp_diffbuf[idx_from]->b_ml.ml_line_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002687 break;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002688 p = vim_strsave(ml_get_buf(curtab->tp_diffbuf[idx_from],
2689 nr, FALSE));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002690 if (p != NULL)
2691 {
2692 ml_append(lnum + i - 1, p, 0, FALSE);
2693 vim_free(p);
2694 ++added;
Bram Moolenaar280f1262006-01-30 00:14:18 +00002695 if (buf_empty && curbuf->b_ml.ml_line_count == 2)
2696 {
2697 /* Added the first line into an empty buffer, need to
2698 * delete the dummy empty line. */
2699 buf_empty = FALSE;
2700 ml_delete((linenr_T)2, FALSE);
2701 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002702 }
2703 }
2704 new_count = dp->df_count[idx_to] + added;
2705 dp->df_count[idx_to] = new_count;
2706
2707 if (start_skip == 0 && end_skip == 0)
2708 {
2709 /* Check if there are any other buffers and if the diff is
2710 * equal in them. */
2711 for (i = 0; i < DB_COUNT; ++i)
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002712 if (curtab->tp_diffbuf[i] != NULL && i != idx_from
2713 && i != idx_to
Bram Moolenaar071d4272004-06-13 20:20:40 +00002714 && !diff_equal_entry(dp, idx_from, i))
2715 break;
2716 if (i == DB_COUNT)
2717 {
2718 /* delete the diff entry, the buffers are now equal here */
2719 dfree = dp;
2720 dp = dp->df_next;
2721 if (dprev == NULL)
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002722 curtab->tp_first_diff = dp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002723 else
2724 dprev->df_next = dp;
2725 }
2726 }
2727
2728 /* Adjust marks. This will change the following entries! */
2729 if (added != 0)
2730 {
2731 mark_adjust(lnum, lnum + count - 1, (long)MAXLNUM, (long)added);
2732 if (curwin->w_cursor.lnum >= lnum)
2733 {
2734 /* Adjust the cursor position if it's in/after the changed
2735 * lines. */
2736 if (curwin->w_cursor.lnum >= lnum + count)
2737 curwin->w_cursor.lnum += added;
2738 else if (added < 0)
2739 curwin->w_cursor.lnum = lnum;
2740 }
2741 }
2742 changed_lines(lnum, 0, lnum + count, (long)added);
2743
2744 if (dfree != NULL)
2745 {
2746 /* Diff is deleted, update folds in other windows. */
2747#ifdef FEAT_FOLDING
2748 diff_fold_update(dfree, idx_to);
2749#endif
2750 vim_free(dfree);
2751 }
2752 else
2753 /* mark_adjust() may have changed the count in a wrong way */
2754 dp->df_count[idx_to] = new_count;
2755
2756 /* When changing the current buffer, keep track of line numbers */
2757 if (idx_cur == idx_to)
2758 off += added;
2759 }
2760
2761 /* If before the range or not deleted, go to next diff. */
2762 if (dfree == NULL)
2763 {
2764 dprev = dp;
2765 dp = dp->df_next;
2766 }
2767 }
2768
2769 /* restore curwin/curbuf and a few other things */
Bram Moolenaara9d52e32010-07-31 16:44:19 +02002770 if (eap->cmdidx != CMD_diffget)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002771 {
2772 /* Syncing undo only works for the current buffer, but we change
2773 * another buffer. Sync undo if the command was typed. This isn't
2774 * 100% right when ":diffput" is used in a function or mapping. */
2775 if (KeyTyped)
Bram Moolenaar779b74b2006-04-10 14:55:34 +00002776 u_sync(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002777 aucmd_restbuf(&aco);
2778 }
2779
2780 diff_busy = FALSE;
2781
2782 /* Check that the cursor is on a valid character and update it's position.
2783 * When there were filler lines the topline has become invalid. */
2784 check_cursor();
2785 changed_line_abv_curs();
2786
2787 /* Also need to redraw the other buffers. */
2788 diff_redraw(FALSE);
2789}
2790
2791#ifdef FEAT_FOLDING
2792/*
2793 * Update folds for all diff buffers for entry "dp".
2794 * Skip buffer with index "skip_idx".
2795 * When there are no diffs, all folds are removed.
2796 */
2797 static void
Bram Moolenaar7454a062016-01-30 15:14:10 +01002798diff_fold_update(diff_T *dp, int skip_idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002799{
2800 int i;
2801 win_T *wp;
2802
Bram Moolenaar29323592016-07-24 22:04:11 +02002803 FOR_ALL_WINDOWS(wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002804 for (i = 0; i < DB_COUNT; ++i)
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002805 if (curtab->tp_diffbuf[i] == wp->w_buffer && i != skip_idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002806 foldUpdate(wp, dp->df_lnum[i],
2807 dp->df_lnum[i] + dp->df_count[i]);
2808}
2809#endif
2810
2811/*
2812 * Return TRUE if buffer "buf" is in diff-mode.
2813 */
2814 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002815diff_mode_buf(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002816{
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002817 tabpage_T *tp;
2818
Bram Moolenaar29323592016-07-24 22:04:11 +02002819 FOR_ALL_TABPAGES(tp)
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002820 if (diff_buf_idx_tp(buf, tp) != DB_COUNT)
2821 return TRUE;
2822 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002823}
2824
2825/*
2826 * Move "count" times in direction "dir" to the next diff block.
2827 * Return FAIL if there isn't such a diff block.
2828 */
2829 int
Bram Moolenaar7454a062016-01-30 15:14:10 +01002830diff_move_to(int dir, long count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002831{
2832 int idx;
2833 linenr_T lnum = curwin->w_cursor.lnum;
2834 diff_T *dp;
2835
2836 idx = diff_buf_idx(curbuf);
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002837 if (idx == DB_COUNT || curtab->tp_first_diff == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002838 return FAIL;
2839
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002840 if (curtab->tp_diff_invalid)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002841 ex_diffupdate(NULL); /* update after a big change */
2842
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002843 if (curtab->tp_first_diff == NULL) /* no diffs today */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002844 return FAIL;
2845
2846 while (--count >= 0)
2847 {
2848 /* Check if already before first diff. */
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002849 if (dir == BACKWARD && lnum <= curtab->tp_first_diff->df_lnum[idx])
Bram Moolenaar071d4272004-06-13 20:20:40 +00002850 break;
2851
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002852 for (dp = curtab->tp_first_diff; ; dp = dp->df_next)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002853 {
2854 if (dp == NULL)
2855 break;
2856 if ((dir == FORWARD && lnum < dp->df_lnum[idx])
2857 || (dir == BACKWARD
2858 && (dp->df_next == NULL
2859 || lnum <= dp->df_next->df_lnum[idx])))
2860 {
2861 lnum = dp->df_lnum[idx];
2862 break;
2863 }
2864 }
2865 }
2866
2867 /* don't end up past the end of the file */
2868 if (lnum > curbuf->b_ml.ml_line_count)
2869 lnum = curbuf->b_ml.ml_line_count;
2870
2871 /* When the cursor didn't move at all we fail. */
2872 if (lnum == curwin->w_cursor.lnum)
2873 return FAIL;
2874
2875 setpcmark();
2876 curwin->w_cursor.lnum = lnum;
2877 curwin->w_cursor.col = 0;
2878
2879 return OK;
2880}
2881
Bram Moolenaar025e3e02016-10-18 14:50:18 +02002882/*
2883 * Return the line number in the current window that is closest to "lnum1" in
2884 * "buf1" in diff mode.
2885 */
2886 static linenr_T
2887diff_get_corresponding_line_int(
Bram Moolenaar7454a062016-01-30 15:14:10 +01002888 buf_T *buf1,
Bram Moolenaar025e3e02016-10-18 14:50:18 +02002889 linenr_T lnum1)
Bram Moolenaar860cae12010-06-05 23:22:07 +02002890{
2891 int idx1;
2892 int idx2;
2893 diff_T *dp;
2894 int baseline = 0;
Bram Moolenaar860cae12010-06-05 23:22:07 +02002895
2896 idx1 = diff_buf_idx(buf1);
Bram Moolenaar025e3e02016-10-18 14:50:18 +02002897 idx2 = diff_buf_idx(curbuf);
Bram Moolenaar860cae12010-06-05 23:22:07 +02002898 if (idx1 == DB_COUNT || idx2 == DB_COUNT || curtab->tp_first_diff == NULL)
2899 return lnum1;
2900
2901 if (curtab->tp_diff_invalid)
2902 ex_diffupdate(NULL); /* update after a big change */
2903
2904 if (curtab->tp_first_diff == NULL) /* no diffs today */
2905 return lnum1;
2906
2907 for (dp = curtab->tp_first_diff; dp != NULL; dp = dp->df_next)
2908 {
2909 if (dp->df_lnum[idx1] > lnum1)
Bram Moolenaar025e3e02016-10-18 14:50:18 +02002910 return lnum1 - baseline;
2911 if ((dp->df_lnum[idx1] + dp->df_count[idx1]) > lnum1)
Bram Moolenaar860cae12010-06-05 23:22:07 +02002912 {
2913 /* Inside the diffblock */
2914 baseline = lnum1 - dp->df_lnum[idx1];
2915 if (baseline > dp->df_count[idx2])
2916 baseline = dp->df_count[idx2];
2917
2918 return dp->df_lnum[idx2] + baseline;
2919 }
Bram Moolenaar025e3e02016-10-18 14:50:18 +02002920 if ( (dp->df_lnum[idx1] == lnum1)
2921 && (dp->df_count[idx1] == 0)
2922 && (dp->df_lnum[idx2] <= curwin->w_cursor.lnum)
2923 && ((dp->df_lnum[idx2] + dp->df_count[idx2])
2924 > curwin->w_cursor.lnum))
Bram Moolenaar860cae12010-06-05 23:22:07 +02002925 /*
2926 * Special case: if the cursor is just after a zero-count
2927 * block (i.e. all filler) and the target cursor is already
2928 * inside the corresponding block, leave the target cursor
2929 * unmoved. This makes repeated CTRL-W W operations work
2930 * as expected.
2931 */
Bram Moolenaar025e3e02016-10-18 14:50:18 +02002932 return curwin->w_cursor.lnum;
Bram Moolenaar860cae12010-06-05 23:22:07 +02002933 baseline = (dp->df_lnum[idx1] + dp->df_count[idx1])
2934 - (dp->df_lnum[idx2] + dp->df_count[idx2]);
2935 }
2936
2937 /* If we get here then the cursor is after the last diff */
Bram Moolenaar025e3e02016-10-18 14:50:18 +02002938 return lnum1 - baseline;
2939}
Bram Moolenaar860cae12010-06-05 23:22:07 +02002940
Bram Moolenaar025e3e02016-10-18 14:50:18 +02002941/*
2942 * Return the line number in the current window that is closest to "lnum1" in
2943 * "buf1" in diff mode. Checks the line number to be valid.
2944 */
2945 linenr_T
2946diff_get_corresponding_line(buf_T *buf1, linenr_T lnum1)
2947{
2948 linenr_T lnum = diff_get_corresponding_line_int(buf1, lnum1);
2949
2950 /* don't end up past the end of the file */
2951 if (lnum > curbuf->b_ml.ml_line_count)
2952 return curbuf->b_ml.ml_line_count;
2953 return lnum;
Bram Moolenaar860cae12010-06-05 23:22:07 +02002954}
Bram Moolenaar860cae12010-06-05 23:22:07 +02002955
Bram Moolenaar071d4272004-06-13 20:20:40 +00002956/*
2957 * For line "lnum" in the current window find the equivalent lnum in window
2958 * "wp", compensating for inserted/deleted lines.
2959 */
2960 linenr_T
Bram Moolenaar7454a062016-01-30 15:14:10 +01002961diff_lnum_win(linenr_T lnum, win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002962{
2963 diff_T *dp;
2964 int idx;
2965 int i;
2966 linenr_T n;
2967
2968 idx = diff_buf_idx(curbuf);
2969 if (idx == DB_COUNT) /* safety check */
2970 return (linenr_T)0;
2971
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002972 if (curtab->tp_diff_invalid)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002973 ex_diffupdate(NULL); /* update after a big change */
2974
2975 /* search for a change that includes "lnum" in the list of diffblocks. */
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00002976 for (dp = curtab->tp_first_diff; dp != NULL; dp = dp->df_next)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002977 if (lnum <= dp->df_lnum[idx] + dp->df_count[idx])
2978 break;
2979
2980 /* When after the last change, compute relative to the last line number. */
2981 if (dp == NULL)
2982 return wp->w_buffer->b_ml.ml_line_count
2983 - (curbuf->b_ml.ml_line_count - lnum);
2984
2985 /* Find index for "wp". */
2986 i = diff_buf_idx(wp->w_buffer);
2987 if (i == DB_COUNT) /* safety check */
2988 return (linenr_T)0;
2989
2990 n = lnum + (dp->df_lnum[i] - dp->df_lnum[idx]);
2991 if (n > dp->df_lnum[i] + dp->df_count[i])
2992 n = dp->df_lnum[i] + dp->df_count[i];
2993 return n;
2994}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002995
Bram Moolenaare828b762018-09-10 17:51:58 +02002996/*
2997 * Handle an ED style diff line.
2998 * Return FAIL if the line does not contain diff info.
2999 */
3000 static int
3001parse_diff_ed(
3002 char_u *line,
3003 linenr_T *lnum_orig,
3004 long *count_orig,
3005 linenr_T *lnum_new,
3006 long *count_new)
3007{
3008 char_u *p;
3009 long f1, l1, f2, l2;
3010 int difftype;
3011
3012 // The line must be one of three formats:
3013 // change: {first}[,{last}]c{first}[,{last}]
3014 // append: {first}a{first}[,{last}]
3015 // delete: {first}[,{last}]d{first}
3016 p = line;
3017 f1 = getdigits(&p);
3018 if (*p == ',')
3019 {
3020 ++p;
3021 l1 = getdigits(&p);
3022 }
3023 else
3024 l1 = f1;
3025 if (*p != 'a' && *p != 'c' && *p != 'd')
3026 return FAIL; // invalid diff format
3027 difftype = *p++;
3028 f2 = getdigits(&p);
3029 if (*p == ',')
3030 {
3031 ++p;
3032 l2 = getdigits(&p);
3033 }
3034 else
3035 l2 = f2;
3036 if (l1 < f1 || l2 < f2)
3037 return FAIL;
3038
3039 if (difftype == 'a')
3040 {
3041 *lnum_orig = f1 + 1;
3042 *count_orig = 0;
3043 }
3044 else
3045 {
3046 *lnum_orig = f1;
3047 *count_orig = l1 - f1 + 1;
3048 }
3049 if (difftype == 'd')
3050 {
3051 *lnum_new = f2 + 1;
3052 *count_new = 0;
3053 }
3054 else
3055 {
3056 *lnum_new = f2;
3057 *count_new = l2 - f2 + 1;
3058 }
3059 return OK;
3060}
3061
3062/*
3063 * Parses unified diff with zero(!) context lines.
3064 * Return FAIL if there is no diff information in "line".
3065 */
3066 static int
3067parse_diff_unified(
3068 char_u *line,
3069 linenr_T *lnum_orig,
3070 long *count_orig,
3071 linenr_T *lnum_new,
3072 long *count_new)
3073{
3074 char_u *p;
3075 long oldline, oldcount, newline, newcount;
3076
3077 // Parse unified diff hunk header:
3078 // @@ -oldline,oldcount +newline,newcount @@
3079 p = line;
3080 if (*p++ == '@' && *p++ == '@' && *p++ == ' ' && *p++ == '-')
3081 {
3082 oldline = getdigits(&p);
3083 if (*p == ',')
3084 {
3085 ++p;
3086 oldcount = getdigits(&p);
3087 }
3088 else
3089 oldcount = 1;
3090 if (*p++ == ' ' && *p++ == '+')
3091 {
3092 newline = getdigits(&p);
3093 if (*p == ',')
3094 {
3095 ++p;
3096 newcount = getdigits(&p);
3097 }
3098 else
3099 newcount = 1;
3100 }
3101 else
3102 return FAIL; // invalid diff format
3103
3104 if (oldcount == 0)
3105 oldline += 1;
3106 if (newcount == 0)
3107 newline += 1;
3108 if (newline == 0)
3109 newline = 1;
3110
3111 *lnum_orig = oldline;
3112 *count_orig = oldcount;
3113 *lnum_new = newline;
3114 *count_new = newcount;
3115
3116 return OK;
3117 }
3118
3119 return FAIL;
3120}
3121
3122/*
3123 * Callback function for the xdl_diff() function.
3124 * Stores the diff output in a grow array.
3125 */
3126 static int
3127xdiff_out(void *priv, mmbuffer_t *mb, int nbuf)
3128{
3129 diffout_T *dout = (diffout_T *)priv;
3130 int i;
3131 char_u *p;
3132
3133 for (i = 0; i < nbuf; i++)
3134 {
3135 // We are only interested in the header lines, skip text lines.
3136 if (STRNCMP(mb[i].ptr, "@@ ", 3) != 0)
3137 continue;
3138 if (ga_grow(&dout->dout_ga, 1) == FAIL)
3139 return -1;
3140 p = vim_strnsave((char_u *)mb[i].ptr, mb[i].size);
3141 if (p == NULL)
3142 return -1;
3143 ((char_u **)dout->dout_ga.ga_data)[dout->dout_ga.ga_len++] = p;
3144 }
3145 return 0;
3146}
3147
Bram Moolenaar071d4272004-06-13 20:20:40 +00003148#endif /* FEAT_DIFF */