blob: ceac00bbf6b8df6f22f68ff0dbee7726c570bc6f [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001/* vim:set ts=8 sts=4 sw=4:
2 * vim600:fdm=marker fdl=1 fdc=3:
3 *
4 * VIM - Vi IMproved by Bram Moolenaar
5 *
6 * Do ":help uganda" in Vim to read copying and usage conditions.
7 * Do ":help credits" in Vim to see a list of people who contributed.
8 * See README.txt for an overview of the Vim source code.
9 */
10
11/*
12 * fold.c: code for folding
13 */
14
15#include "vim.h"
16
17#if defined(FEAT_FOLDING) || defined(PROTO)
18
19/* local declarations. {{{1 */
20/* typedef fold_T {{{2 */
21/*
22 * The toplevel folds for each window are stored in the w_folds growarray.
23 * Each toplevel fold can contain an array of second level folds in the
24 * fd_nested growarray.
25 * The info stored in both growarrays is the same: An array of fold_T.
26 */
27typedef struct
28{
29 linenr_T fd_top; /* first line of fold; for nested fold
30 * relative to parent */
31 linenr_T fd_len; /* number of lines in the fold */
32 garray_T fd_nested; /* array of nested folds */
33 char fd_flags; /* see below */
34 char fd_small; /* TRUE, FALSE or MAYBE: fold smaller than
35 'foldminlines'; MAYBE applies to nested
36 folds too */
37} fold_T;
38
39#define FD_OPEN 0 /* fold is open (nested ones can be closed) */
40#define FD_CLOSED 1 /* fold is closed */
41#define FD_LEVEL 2 /* depends on 'foldlevel' (nested folds too) */
42
43#define MAX_LEVEL 20 /* maximum fold depth */
44
45/* static functions {{{2 */
46static void newFoldLevelWin __ARGS((win_T *wp));
47static int checkCloseRec __ARGS((garray_T *gap, linenr_T lnum, int level));
48static int foldFind __ARGS((garray_T *gap, linenr_T lnum, fold_T **fpp));
49static int foldLevelWin __ARGS((win_T *wp, linenr_T lnum));
50static void checkupdate __ARGS((win_T *wp));
51static void setFoldRepeat __ARGS((linenr_T lnum, long count, int open));
52static linenr_T setManualFold __ARGS((linenr_T lnum, int opening, int recurse, int *donep));
53static linenr_T setManualFoldWin __ARGS((win_T *wp, linenr_T lnum, int opening, int recurse, int *donep));
54static void foldOpenNested __ARGS((fold_T *fpr));
55static void deleteFoldEntry __ARGS((garray_T *gap, int idx, int recursive));
56static void foldMarkAdjustRecurse __ARGS((garray_T *gap, linenr_T line1, linenr_T line2, long amount, long amount_after));
57static int getDeepestNestingRecurse __ARGS((garray_T *gap));
58static int check_closed __ARGS((win_T *win, fold_T *fp, int *use_levelp, int level, int *maybe_smallp, linenr_T lnum_off));
59static void checkSmall __ARGS((win_T *wp, fold_T *fp, linenr_T lnum_off));
60static void setSmallMaybe __ARGS((garray_T *gap));
61static void foldCreateMarkers __ARGS((linenr_T start, linenr_T end));
62static void foldAddMarker __ARGS((linenr_T lnum, char_u *marker, int markerlen));
63static void deleteFoldMarkers __ARGS((fold_T *fp, int recursive, linenr_T lnum_off));
64static void foldDelMarker __ARGS((linenr_T lnum, char_u *marker, int markerlen));
65static void foldUpdateIEMS __ARGS((win_T *wp, linenr_T top, linenr_T bot));
66static void parseMarker __ARGS((win_T *wp));
67
68static char *e_nofold = N_("E490: No fold found");
69
70/*
71 * While updating the folds lines between invalid_top and invalid_bot have an
72 * undefined fold level. Only used for the window currently being updated.
73 */
74static linenr_T invalid_top = (linenr_T)0;
75static linenr_T invalid_bot = (linenr_T)0;
76
77/*
78 * When using 'foldexpr' we sometimes get the level of the next line, which
79 * calls foldlevel() to get the level of the current line, which hasn't been
80 * stored yet. To get around this chicken-egg problem the level of the
81 * previous line is stored here when available. prev_lnum is zero when the
82 * level is not available.
83 */
84static linenr_T prev_lnum = 0;
85static int prev_lnum_lvl = -1;
86
87/* Flags used for "done" argument of setManualFold. */
88#define DONE_NOTHING 0
89#define DONE_ACTION 1 /* did close or open a fold */
90#define DONE_FOLD 2 /* did find a fold */
91
92static int foldstartmarkerlen;
93static char_u *foldendmarker;
94static int foldendmarkerlen;
95
96/* Exported folding functions. {{{1 */
97/* copyFoldingState() {{{2 */
98#if defined(FEAT_WINDOWS) || defined(PROTO)
99/*
100 * Copy that folding state from window "wp_from" to window "wp_to".
101 */
102 void
103copyFoldingState(wp_from, wp_to)
104 win_T *wp_from;
105 win_T *wp_to;
106{
107 wp_to->w_fold_manual = wp_from->w_fold_manual;
108 wp_to->w_foldinvalid = wp_from->w_foldinvalid;
109 cloneFoldGrowArray(&wp_from->w_folds, &wp_to->w_folds);
110}
111#endif
112
113/* hasAnyFolding() {{{2 */
114/*
115 * Return TRUE if there may be folded lines in the current window.
116 */
117 int
118hasAnyFolding(win)
119 win_T *win;
120{
121 /* very simple now, but can become more complex later */
122 return (win->w_p_fen
123 && (!foldmethodIsManual(win) || win->w_folds.ga_len > 0));
124}
125
126/* hasFolding() {{{2 */
127/*
128 * Return TRUE if line "lnum" in the current window is part of a closed
129 * fold.
130 * When returning TRUE, *firstp and *lastp are set to the first and last
131 * lnum of the sequence of folded lines (skipped when NULL).
132 */
133 int
134hasFolding(lnum, firstp, lastp)
135 linenr_T lnum;
136 linenr_T *firstp;
137 linenr_T *lastp;
138{
139 return hasFoldingWin(curwin, lnum, firstp, lastp, TRUE, NULL);
140}
141
142/* hasFoldingWin() {{{2 */
143 int
144hasFoldingWin(win, lnum, firstp, lastp, cache, infop)
145 win_T *win;
146 linenr_T lnum;
147 linenr_T *firstp;
148 linenr_T *lastp;
149 int cache; /* when TRUE: use cached values of window */
150 foldinfo_T *infop; /* where to store fold info */
151{
152 int had_folded = FALSE;
153 linenr_T first = 0;
154 linenr_T last = 0;
155 linenr_T lnum_rel = lnum;
156 int x;
157 fold_T *fp;
158 int level = 0;
159 int use_level = FALSE;
160 int maybe_small = FALSE;
161 garray_T *gap;
162 int low_level = 0;;
163
164 checkupdate(win);
165 /*
166 * Return quickly when there is no folding at all in this window.
167 */
168 if (!hasAnyFolding(win))
169 {
170 if (infop != NULL)
171 infop->fi_level = 0;
172 return FALSE;
173 }
174
175 if (cache)
176 {
177 /*
178 * First look in cached info for displayed lines. This is probably
179 * the fastest, but it can only be used if the entry is still valid.
180 */
181 x = find_wl_entry(win, lnum);
182 if (x >= 0)
183 {
184 first = win->w_lines[x].wl_lnum;
185 last = win->w_lines[x].wl_lastlnum;
186 had_folded = win->w_lines[x].wl_folded;
187 }
188 }
189
190 if (first == 0)
191 {
192 /*
193 * Recursively search for a fold that contains "lnum".
194 */
195 gap = &win->w_folds;
196 for (;;)
197 {
198 if (!foldFind(gap, lnum_rel, &fp))
199 break;
200
201 /* Remember lowest level of fold that starts in "lnum". */
202 if (lnum_rel == fp->fd_top && low_level == 0)
203 low_level = level + 1;
204
205 first += fp->fd_top;
206 last += fp->fd_top;
207
208 /* is this fold closed? */
209 had_folded = check_closed(win, fp, &use_level, level,
210 &maybe_small, lnum - lnum_rel);
211 if (had_folded)
212 {
213 /* Fold closed: Set last and quit loop. */
214 last += fp->fd_len - 1;
215 break;
216 }
217
218 /* Fold found, but it's open: Check nested folds. Line number is
219 * relative to containing fold. */
220 gap = &fp->fd_nested;
221 lnum_rel -= fp->fd_top;
222 ++level;
223 }
224 }
225
226 if (!had_folded)
227 {
228 if (infop != NULL)
229 {
230 infop->fi_level = level;
231 infop->fi_lnum = lnum - lnum_rel;
232 infop->fi_low_level = low_level == 0 ? level : low_level;
233 }
234 return FALSE;
235 }
236
237 if (lastp != NULL)
238 *lastp = last;
239 if (firstp != NULL)
240 *firstp = first;
241 if (infop != NULL)
242 {
243 infop->fi_level = level + 1;
244 infop->fi_lnum = first;
245 infop->fi_low_level = low_level == 0 ? level + 1 : low_level;
246 }
247 return TRUE;
248}
249
250/* foldLevel() {{{2 */
251/*
252 * Return fold level at line number "lnum" in the current window.
253 */
254 int
255foldLevel(lnum)
256 linenr_T lnum;
257{
258 /* While updating the folds lines between invalid_top and invalid_bot have
259 * an undefined fold level. Otherwise update the folds first. */
260 if (invalid_top == (linenr_T)0)
261 checkupdate(curwin);
262 else if (lnum == prev_lnum && prev_lnum_lvl >= 0)
263 return prev_lnum_lvl;
264 else if (lnum >= invalid_top && lnum <= invalid_bot)
265 return -1;
266
267 /* Return quickly when there is no folding at all in this window. */
268 if (!hasAnyFolding(curwin))
269 return 0;
270
271 return foldLevelWin(curwin, lnum);
272}
273
274/* lineFolded() {{{2 */
275/*
276 * Low level function to check if a line is folded. Doesn't use any caching.
277 * Return TRUE if line is folded.
278 * Return FALSE if line is not folded.
279 * Return MAYBE if the line is folded when next to a folded line.
280 */
281 int
282lineFolded(win, lnum)
283 win_T *win;
284 linenr_T lnum;
285{
286 return foldedCount(win, lnum, NULL) != 0;
287}
288
289/* foldedCount() {{{2 */
290/*
291 * Count the number of lines that are folded at line number "lnum".
292 * Normally "lnum" is the first line of a possible fold, and the returned
293 * number is the number of lines in the fold.
294 * Doesn't use caching from the displayed window.
295 * Returns number of folded lines from "lnum", or 0 if line is not folded.
296 * When "infop" is not NULL, fills *infop with the fold level info.
297 */
298 long
299foldedCount(win, lnum, infop)
300 win_T *win;
301 linenr_T lnum;
302 foldinfo_T *infop;
303{
304 linenr_T last;
305
306 if (hasFoldingWin(win, lnum, NULL, &last, FALSE, infop))
307 return (long)(last - lnum + 1);
308 return 0;
309}
310
311/* foldmethodIsManual() {{{2 */
312/*
313 * Return TRUE if 'foldmethod' is "manual"
314 */
315 int
316foldmethodIsManual(wp)
317 win_T *wp;
318{
319 return (wp->w_p_fdm[3] == 'u');
320}
321
322/* foldmethodIsIndent() {{{2 */
323/*
324 * Return TRUE if 'foldmethod' is "indent"
325 */
326 int
327foldmethodIsIndent(wp)
328 win_T *wp;
329{
330 return (wp->w_p_fdm[0] == 'i');
331}
332
333/* foldmethodIsExpr() {{{2 */
334/*
335 * Return TRUE if 'foldmethod' is "expr"
336 */
337 int
338foldmethodIsExpr(wp)
339 win_T *wp;
340{
341 return (wp->w_p_fdm[1] == 'x');
342}
343
344/* foldmethodIsMarker() {{{2 */
345/*
346 * Return TRUE if 'foldmethod' is "marker"
347 */
348 int
349foldmethodIsMarker(wp)
350 win_T *wp;
351{
352 return (wp->w_p_fdm[2] == 'r');
353}
354
355/* foldmethodIsSyntax() {{{2 */
356/*
357 * Return TRUE if 'foldmethod' is "syntax"
358 */
359 int
360foldmethodIsSyntax(wp)
361 win_T *wp;
362{
363 return (wp->w_p_fdm[0] == 's');
364}
365
366/* foldmethodIsDiff() {{{2 */
367/*
368 * Return TRUE if 'foldmethod' is "diff"
369 */
370 int
371foldmethodIsDiff(wp)
372 win_T *wp;
373{
374 return (wp->w_p_fdm[0] == 'd');
375}
376
377/* closeFold() {{{2 */
378/*
379 * Close fold for current window at line "lnum".
380 * Repeat "count" times.
381 */
382 void
383closeFold(lnum, count)
384 linenr_T lnum;
385 long count;
386{
387 setFoldRepeat(lnum, count, FALSE);
388}
389
390/* closeFoldRecurse() {{{2 */
391/*
392 * Close fold for current window at line "lnum" recursively.
393 */
394 void
395closeFoldRecurse(lnum)
396 linenr_T lnum;
397{
398 (void)setManualFold(lnum, FALSE, TRUE, NULL);
399}
400
401/* opFoldRange() {{{2 */
402/*
403 * Open or Close folds for current window in lines "first" to "last".
404 * Used for "zo", "zO", "zc" and "zC" in Visual mode.
405 */
406 void
407opFoldRange(first, last, opening, recurse, had_visual)
408 linenr_T first;
409 linenr_T last;
410 int opening; /* TRUE to open, FALSE to close */
411 int recurse; /* TRUE to do it recursively */
412 int had_visual; /* TRUE when Visual selection used */
413{
414 int done = DONE_NOTHING; /* avoid error messages */
415 linenr_T lnum;
416 linenr_T lnum_next;
417
418 for (lnum = first; lnum <= last; lnum = lnum_next + 1)
419 {
420 lnum_next = lnum;
421 /* Opening one level only: next fold to open is after the one going to
422 * be opened. */
423 if (opening && !recurse)
424 (void)hasFolding(lnum, NULL, &lnum_next);
425 (void)setManualFold(lnum, opening, recurse, &done);
426 /* Closing one level only: next line to close a fold is after just
427 * closed fold. */
428 if (!opening && !recurse)
429 (void)hasFolding(lnum, NULL, &lnum_next);
430 }
431 if (done == DONE_NOTHING)
432 EMSG(_(e_nofold));
433#ifdef FEAT_VISUAL
434 /* Force a redraw to remove the Visual highlighting. */
435 if (had_visual)
436 redraw_curbuf_later(INVERTED);
437#endif
438}
439
440/* openFold() {{{2 */
441/*
442 * Open fold for current window at line "lnum".
443 * Repeat "count" times.
444 */
445 void
446openFold(lnum, count)
447 linenr_T lnum;
448 long count;
449{
450 setFoldRepeat(lnum, count, TRUE);
451}
452
453/* openFoldRecurse() {{{2 */
454/*
455 * Open fold for current window at line "lnum" recursively.
456 */
457 void
458openFoldRecurse(lnum)
459 linenr_T lnum;
460{
461 (void)setManualFold(lnum, TRUE, TRUE, NULL);
462}
463
464/* foldOpenCursor() {{{2 */
465/*
466 * Open folds until the cursor line is not in a closed fold.
467 */
468 void
469foldOpenCursor()
470{
471 int done;
472
473 checkupdate(curwin);
474 if (hasAnyFolding(curwin))
475 for (;;)
476 {
477 done = DONE_NOTHING;
478 (void)setManualFold(curwin->w_cursor.lnum, TRUE, FALSE, &done);
479 if (!(done & DONE_ACTION))
480 break;
481 }
482}
483
484/* newFoldLevel() {{{2 */
485/*
486 * Set new foldlevel for current window.
487 */
488 void
489newFoldLevel()
490{
491 newFoldLevelWin(curwin);
492
493#ifdef FEAT_DIFF
494 if (foldmethodIsDiff(curwin) && curwin->w_p_scb)
495 {
496 win_T *wp;
497
498 /*
499 * Set the same foldlevel in other windows in diff mode.
500 */
501 FOR_ALL_WINDOWS(wp)
502 {
503 if (wp != curwin && foldmethodIsDiff(wp) && wp->w_p_scb)
504 {
505 wp->w_p_fdl = curwin->w_p_fdl;
506 newFoldLevelWin(wp);
507 }
508 }
509 }
510#endif
511}
512
513 static void
514newFoldLevelWin(wp)
515 win_T *wp;
516{
517 fold_T *fp;
518 int i;
519
520 checkupdate(wp);
521 if (wp->w_fold_manual)
522 {
523 /* Set all flags for the first level of folds to FD_LEVEL. Following
524 * manual open/close will then change the flags to FD_OPEN or
525 * FD_CLOSED for those folds that don't use 'foldlevel'. */
526 fp = (fold_T *)wp->w_folds.ga_data;
527 for (i = 0; i < wp->w_folds.ga_len; ++i)
528 fp[i].fd_flags = FD_LEVEL;
529 wp->w_fold_manual = FALSE;
530 }
531 changed_window_setting_win(wp);
532}
533
534/* foldCheckClose() {{{2 */
535/*
536 * Apply 'foldlevel' to all folds that don't contain the cursor.
537 */
538 void
539foldCheckClose()
540{
541 if (*p_fcl != NUL) /* can only be "all" right now */
542 {
543 checkupdate(curwin);
544 if (checkCloseRec(&curwin->w_folds, curwin->w_cursor.lnum,
545 (int)curwin->w_p_fdl))
546 changed_window_setting();
547 }
548}
549
550/* checkCloseRec() {{{2 */
551 static int
552checkCloseRec(gap, lnum, level)
553 garray_T *gap;
554 linenr_T lnum;
555 int level;
556{
557 fold_T *fp;
558 int retval = FALSE;
559 int i;
560
561 fp = (fold_T *)gap->ga_data;
562 for (i = 0; i < gap->ga_len; ++i)
563 {
564 /* Only manually opened folds may need to be closed. */
565 if (fp[i].fd_flags == FD_OPEN)
566 {
567 if (level <= 0 && (lnum < fp[i].fd_top
568 || lnum >= fp[i].fd_top + fp[i].fd_len))
569 {
570 fp[i].fd_flags = FD_LEVEL;
571 retval = TRUE;
572 }
573 else
574 retval |= checkCloseRec(&fp[i].fd_nested, lnum - fp[i].fd_top,
575 level - 1);
576 }
577 }
578 return retval;
579}
580
581/* foldCreateAllowed() {{{2 */
582/*
583 * Return TRUE if it's allowed to manually create or delete a fold.
584 * Give an error message and return FALSE if not.
585 */
586 int
587foldManualAllowed(create)
588 int create;
589{
590 if (foldmethodIsManual(curwin) || foldmethodIsMarker(curwin))
591 return TRUE;
592 if (create)
593 EMSG(_("E350: Cannot create fold with current 'foldmethod'"));
594 else
595 EMSG(_("E351: Cannot delete fold with current 'foldmethod'"));
596 return FALSE;
597}
598
599/* foldCreate() {{{2 */
600/*
601 * Create a fold from line "start" to line "end" (inclusive) in the current
602 * window.
603 */
604 void
605foldCreate(start, end)
606 linenr_T start;
607 linenr_T end;
608{
609 fold_T *fp;
610 garray_T *gap;
611 garray_T fold_ga;
612 int i, j;
613 int cont;
614 int use_level = FALSE;
615 int closed = FALSE;
616 int level = 0;
617 linenr_T start_rel = start;
618 linenr_T end_rel = end;
619
620 if (start > end)
621 {
622 /* reverse the range */
623 end = start_rel;
624 start = end_rel;
625 start_rel = start;
626 end_rel = end;
627 }
628
629 /* When 'foldmethod' is "marker" add markers, which creates the folds. */
630 if (foldmethodIsMarker(curwin))
631 {
632 foldCreateMarkers(start, end);
633 return;
634 }
635
636 checkupdate(curwin);
637
638 /* Find the place to insert the new fold. */
639 gap = &curwin->w_folds;
640 for (;;)
641 {
642 if (!foldFind(gap, start_rel, &fp))
643 break;
644 if (fp->fd_top + fp->fd_len > end_rel)
645 {
646 /* New fold is completely inside this fold: Go one level deeper. */
647 gap = &fp->fd_nested;
648 start_rel -= fp->fd_top;
649 end_rel -= fp->fd_top;
650 if (use_level || fp->fd_flags == FD_LEVEL)
651 {
652 use_level = TRUE;
653 if (level >= curwin->w_p_fdl)
654 closed = TRUE;
655 }
656 else if (fp->fd_flags == FD_CLOSED)
657 closed = TRUE;
658 ++level;
659 }
660 else
661 {
662 /* This fold and new fold overlap: Insert here and move some folds
663 * inside the new fold. */
664 break;
665 }
666 }
667
668 i = (int)(fp - (fold_T *)gap->ga_data);
669 if (ga_grow(gap, 1) == OK)
670 {
671 fp = (fold_T *)gap->ga_data + i;
672 ga_init2(&fold_ga, (int)sizeof(fold_T), 10);
673
674 /* Count number of folds that will be contained in the new fold. */
675 for (cont = 0; i + cont < gap->ga_len; ++cont)
676 if (fp[cont].fd_top > end_rel)
677 break;
678 if (cont > 0 && ga_grow(&fold_ga, cont) == OK)
679 {
680 /* If the first fold starts before the new fold, let the new fold
681 * start there. Otherwise the existing fold would change. */
682 if (start_rel > fp->fd_top)
683 start_rel = fp->fd_top;
684
685 /* When last contained fold isn't completely contained, adjust end
686 * of new fold. */
687 if (end_rel < fp[cont - 1].fd_top + fp[cont - 1].fd_len - 1)
688 end_rel = fp[cont - 1].fd_top + fp[cont - 1].fd_len - 1;
689 /* Move contained folds to inside new fold. */
690 mch_memmove(fold_ga.ga_data, fp, sizeof(fold_T) * cont);
691 fold_ga.ga_len += cont;
692 fold_ga.ga_room -= cont;
693 i += cont;
694
695 /* Adjust line numbers in contained folds to be relative to the
696 * new fold. */
697 for (j = 0; j < cont; ++j)
698 ((fold_T *)fold_ga.ga_data)[j].fd_top -= start_rel;
699 }
700 /* Move remaining entries to after the new fold. */
701 if (i < gap->ga_len)
702 mch_memmove(fp + 1, (fold_T *)gap->ga_data + i,
703 sizeof(fold_T) * (gap->ga_len - i));
704 gap->ga_len = gap->ga_len + 1 - cont;
705 gap->ga_room = gap->ga_room - 1 + cont;
706
707 /* insert new fold */
708 fp->fd_nested = fold_ga;
709 fp->fd_top = start_rel;
710 fp->fd_len = end_rel - start_rel + 1;
711
712 /* We want the new fold to be closed. If it would remain open because
713 * of using 'foldlevel', need to adjust fd_flags of containing folds.
714 */
715 if (use_level && !closed && level < curwin->w_p_fdl)
716 closeFold(start, 1L);
717 if (!use_level)
718 curwin->w_fold_manual = TRUE;
719 fp->fd_flags = FD_CLOSED;
720 fp->fd_small = MAYBE;
721
722 /* redraw */
723 changed_window_setting();
724 }
725}
726
727/* deleteFold() {{{2 */
728/*
729 * Delete a fold at line "start" in the current window.
730 * When "end" is not 0, delete all folds from "start" to "end".
731 * When "recursive" is TRUE delete recursively.
732 */
733 void
734deleteFold(start, end, recursive, had_visual)
735 linenr_T start;
736 linenr_T end;
737 int recursive;
738 int had_visual; /* TRUE when Visual selection used */
739{
740 garray_T *gap;
741 fold_T *fp;
742 garray_T *found_ga;
743 fold_T *found_fp = NULL;
744 linenr_T found_off = 0;
745 int use_level = FALSE;
746 int maybe_small = FALSE;
747 int level = 0;
748 linenr_T lnum = start;
749 linenr_T lnum_off;
750 int did_one = FALSE;
751 linenr_T first_lnum = MAXLNUM;
752 linenr_T last_lnum = 0;
753
754 checkupdate(curwin);
755
756 while (lnum <= end)
757 {
758 /* Find the deepest fold for "start". */
759 gap = &curwin->w_folds;
760 found_ga = NULL;
761 lnum_off = 0;
762 for (;;)
763 {
764 if (!foldFind(gap, lnum - lnum_off, &fp))
765 break;
766 /* lnum is inside this fold, remember info */
767 found_ga = gap;
768 found_fp = fp;
769 found_off = lnum_off;
770
771 /* if "lnum" is folded, don't check nesting */
772 if (check_closed(curwin, fp, &use_level, level,
773 &maybe_small, lnum_off))
774 break;
775
776 /* check nested folds */
777 gap = &fp->fd_nested;
778 lnum_off += fp->fd_top;
779 ++level;
780 }
781 if (found_ga == NULL)
782 {
783 ++lnum;
784 }
785 else
786 {
787 lnum = found_fp->fd_top + found_fp->fd_len + found_off;
788 did_one = TRUE;
789
790 if (foldmethodIsManual(curwin))
791 deleteFoldEntry(found_ga,
792 (int)(found_fp - (fold_T *)found_ga->ga_data), recursive);
793 else
794 {
795 if (found_fp->fd_top + found_off < first_lnum)
796 first_lnum = found_fp->fd_top;
797 if (lnum > last_lnum)
798 last_lnum = lnum;
799 parseMarker(curwin);
800 deleteFoldMarkers(found_fp, recursive, found_off);
801 }
802
803 /* redraw window */
804 changed_window_setting();
805 }
806 }
807 if (!did_one)
808 {
809 EMSG(_(e_nofold));
810#ifdef FEAT_VISUAL
811 /* Force a redraw to remove the Visual highlighting. */
812 if (had_visual)
813 redraw_curbuf_later(INVERTED);
814#endif
815 }
816 if (last_lnum > 0)
817 changed_lines(first_lnum, (colnr_T)0, last_lnum, 0L);
818}
819
820/* clearFolding() {{{2 */
821/*
822 * Remove all folding for window "win".
823 */
824 void
825clearFolding(win)
826 win_T *win;
827{
828 deleteFoldRecurse(&win->w_folds);
829 win->w_foldinvalid = FALSE;
830}
831
832/* foldUpdate() {{{2 */
833/*
834 * Update folds for changes in the buffer of a window.
835 * Note that inserted/deleted lines must have already been taken care of by
836 * calling foldMarkAdjust().
837 * The changes in lines from top to bot (inclusive).
838 */
839 void
840foldUpdate(wp, top, bot)
841 win_T *wp;
842 linenr_T top;
843 linenr_T bot;
844{
845 fold_T *fp;
846
847 /* Mark all folds from top to bot as maybe-small. */
848 (void)foldFind(&curwin->w_folds, curwin->w_cursor.lnum, &fp);
849 while (fp < (fold_T *)curwin->w_folds.ga_data + curwin->w_folds.ga_len
850 && fp->fd_top < bot)
851 {
852 fp->fd_small = MAYBE;
853 ++fp;
854 }
855
856 if (foldmethodIsIndent(wp)
857 || foldmethodIsExpr(wp)
858 || foldmethodIsMarker(wp)
859#ifdef FEAT_DIFF
860 || foldmethodIsDiff(wp)
861#endif
862 || foldmethodIsSyntax(wp))
863 foldUpdateIEMS(wp, top, bot);
864}
865
866/* foldUpdateAll() {{{2 */
867/*
868 * Update all lines in a window for folding.
869 * Used when a fold setting changes or after reloading the buffer.
870 * The actual updating is postponed until fold info is used, to avoid doing
871 * every time a setting is changed or a syntax item is added.
872 */
873 void
874foldUpdateAll(win)
875 win_T *win;
876{
877 win->w_foldinvalid = TRUE;
878 redraw_win_later(win, NOT_VALID);
879}
880
881/* foldMoveTo() {{{2 */
882/*
883 * If "updown" is FALSE: Move to the start or end of the fold.
884 * If "updown" is TRUE: move to fold at the same level.
885 * If not moved return FAIL.
886 */
887 int
888foldMoveTo(updown, dir, count)
889 int updown;
890 int dir; /* FORWARD or BACKWARD */
891 long count;
892{
893 long n;
894 int retval = FAIL;
895 linenr_T lnum_off;
896 linenr_T lnum_found;
897 linenr_T lnum;
898 int use_level;
899 int maybe_small;
900 garray_T *gap;
901 fold_T *fp;
902 int level;
903 int last;
904
905 /* Repeat "count" times. */
906 for (n = 0; n < count; ++n)
907 {
908 /* Find nested folds. Stop when a fold is closed. The deepest fold
909 * that moves the cursor is used. */
910 lnum_off = 0;
911 gap = &curwin->w_folds;
912 use_level = FALSE;
913 maybe_small = FALSE;
914 lnum_found = curwin->w_cursor.lnum;
915 level = 0;
916 last = FALSE;
917 for (;;)
918 {
919 if (!foldFind(gap, curwin->w_cursor.lnum - lnum_off, &fp))
920 {
921 if (!updown)
922 break;
923
924 /* When moving up, consider a fold above the cursor; when
925 * moving down consider a fold below the cursor. */
926 if (dir == FORWARD)
927 {
928 if (fp - (fold_T *)gap->ga_data >= gap->ga_len)
929 break;
930 --fp;
931 }
932 else
933 {
934 if (fp == (fold_T *)gap->ga_data)
935 break;
936 }
937 /* don't look for contained folds, they will always move
938 * the cursor too far. */
939 last = TRUE;
940 }
941
942 if (!last)
943 {
944 /* Check if this fold is closed. */
945 if (check_closed(curwin, fp, &use_level, level,
946 &maybe_small, lnum_off))
947 last = TRUE;
948
949 /* "[z" and "]z" stop at closed fold */
950 if (last && !updown)
951 break;
952 }
953
954 if (updown)
955 {
956 if (dir == FORWARD)
957 {
958 /* to start of next fold if there is one */
959 if (fp + 1 - (fold_T *)gap->ga_data < gap->ga_len)
960 {
961 lnum = fp[1].fd_top + lnum_off;
962 if (lnum > curwin->w_cursor.lnum)
963 lnum_found = lnum;
964 }
965 }
966 else
967 {
968 /* to end of previous fold if there is one */
969 if (fp > (fold_T *)gap->ga_data)
970 {
971 lnum = fp[-1].fd_top + lnum_off + fp[-1].fd_len - 1;
972 if (lnum < curwin->w_cursor.lnum)
973 lnum_found = lnum;
974 }
975 }
976 }
977 else
978 {
979 /* Open fold found, set cursor to its start/end and then check
980 * nested folds. */
981 if (dir == FORWARD)
982 {
983 lnum = fp->fd_top + lnum_off + fp->fd_len - 1;
984 if (lnum > curwin->w_cursor.lnum)
985 lnum_found = lnum;
986 }
987 else
988 {
989 lnum = fp->fd_top + lnum_off;
990 if (lnum < curwin->w_cursor.lnum)
991 lnum_found = lnum;
992 }
993 }
994
995 if (last)
996 break;
997
998 /* Check nested folds (if any). */
999 gap = &fp->fd_nested;
1000 lnum_off += fp->fd_top;
1001 ++level;
1002 }
1003 if (lnum_found != curwin->w_cursor.lnum)
1004 {
1005 if (retval == FAIL)
1006 setpcmark();
1007 curwin->w_cursor.lnum = lnum_found;
1008 curwin->w_cursor.col = 0;
1009 retval = OK;
1010 }
1011 else
1012 break;
1013 }
1014
1015 return retval;
1016}
1017
1018/* foldInitWin() {{{2 */
1019/*
1020 * Init the fold info in a new window.
1021 */
1022 void
1023foldInitWin(newwin)
1024 win_T *newwin;
1025{
1026 ga_init2(&newwin->w_folds, (int)sizeof(fold_T), 10);
1027}
1028
1029/* find_wl_entry() {{{2 */
1030/*
1031 * Find an entry in the win->w_lines[] array for buffer line "lnum".
1032 * Only valid entries are considered (for entries where wl_valid is FALSE the
1033 * line number can be wrong).
1034 * Returns index of entry or -1 if not found.
1035 */
1036 int
1037find_wl_entry(win, lnum)
1038 win_T *win;
1039 linenr_T lnum;
1040{
1041 int i;
1042
1043 if (win->w_lines_valid > 0)
1044 for (i = 0; i < win->w_lines_valid; ++i)
1045 if (win->w_lines[i].wl_valid)
1046 {
1047 if (lnum < win->w_lines[i].wl_lnum)
1048 return -1;
1049 if (lnum <= win->w_lines[i].wl_lastlnum)
1050 return i;
1051 }
1052 return -1;
1053}
1054
1055/* foldAdjustVisual() {{{2 */
1056#ifdef FEAT_VISUAL
1057/*
1058 * Adjust the Visual area to include any fold at the start or end completely.
1059 */
1060 void
1061foldAdjustVisual()
1062{
1063 pos_T *start, *end;
1064 char_u *ptr;
1065
1066 if (!VIsual_active || !hasAnyFolding(curwin))
1067 return;
1068
1069 if (ltoreq(VIsual, curwin->w_cursor))
1070 {
1071 start = &VIsual;
1072 end = &curwin->w_cursor;
1073 }
1074 else
1075 {
1076 start = &curwin->w_cursor;
1077 end = &VIsual;
1078 }
1079 if (hasFolding(start->lnum, &start->lnum, NULL))
1080 start->col = 0;
1081 if (hasFolding(end->lnum, NULL, &end->lnum))
1082 {
1083 ptr = ml_get(end->lnum);
1084 end->col = (colnr_T)STRLEN(ptr);
1085 if (end->col > 0 && *p_sel == 'o')
1086 --end->col;
1087#ifdef FEAT_MBYTE
1088 /* prevent cursor from moving on the trail byte */
1089 if (has_mbyte)
1090 mb_adjust_cursor();
1091#endif
1092 }
1093}
1094#endif
1095
1096/* cursor_foldstart() {{{2 */
1097/*
1098 * Move the cursor to the first line of a closed fold.
1099 */
1100 void
1101foldAdjustCursor()
1102{
1103 (void)hasFolding(curwin->w_cursor.lnum, &curwin->w_cursor.lnum, NULL);
1104}
1105
1106/* Internal functions for "fold_T" {{{1 */
1107/* cloneFoldGrowArray() {{{2 */
1108/*
1109 * Will "clone" (i.e deep copy) a garray_T of folds.
1110 *
1111 * Return FAIL if the operation cannot be completed, otherwise OK.
1112 */
1113 void
1114cloneFoldGrowArray(from, to)
1115 garray_T *from;
1116 garray_T *to;
1117{
1118 int i;
1119 fold_T *from_p;
1120 fold_T *to_p;
1121
1122 ga_init2(to, from->ga_itemsize, from->ga_growsize);
1123 if (from->ga_len == 0 || ga_grow(to, from->ga_len) == FAIL)
1124 return;
1125
1126 from_p = (fold_T *)from->ga_data;
1127 to_p = (fold_T *)to->ga_data;
1128
1129 for (i = 0; i < from->ga_len; i++)
1130 {
1131 to_p->fd_top = from_p->fd_top;
1132 to_p->fd_len = from_p->fd_len;
1133 to_p->fd_flags = from_p->fd_flags;
1134 to_p->fd_small = from_p->fd_small;
1135 cloneFoldGrowArray(&from_p->fd_nested, &to_p->fd_nested);
1136 ++to->ga_len;
1137 --to->ga_room;
1138 ++from_p;
1139 ++to_p;
1140 }
1141}
1142
1143/* foldFind() {{{2 */
1144/*
1145 * Search for line "lnum" in folds of growarray "gap".
1146 * Set *fpp to the fold struct for the fold that contains "lnum" or
1147 * the first fold below it (careful: it can be beyond the end of the array!).
1148 * Returns FALSE when there is no fold that contains "lnum".
1149 */
1150 static int
1151foldFind(gap, lnum, fpp)
1152 garray_T *gap;
1153 linenr_T lnum;
1154 fold_T **fpp;
1155{
1156 linenr_T low, high;
1157 fold_T *fp;
1158 int i;
1159
1160 /*
1161 * Perform a binary search.
1162 * "low" is lowest index of possible match.
1163 * "high" is highest index of possible match.
1164 */
1165 fp = (fold_T *)gap->ga_data;
1166 low = 0;
1167 high = gap->ga_len - 1;
1168 while (low <= high)
1169 {
1170 i = (low + high) / 2;
1171 if (fp[i].fd_top > lnum)
1172 /* fold below lnum, adjust high */
1173 high = i - 1;
1174 else if (fp[i].fd_top + fp[i].fd_len <= lnum)
1175 /* fold above lnum, adjust low */
1176 low = i + 1;
1177 else
1178 {
1179 /* lnum is inside this fold */
1180 *fpp = fp + i;
1181 return TRUE;
1182 }
1183 }
1184 *fpp = fp + low;
1185 return FALSE;
1186}
1187
1188/* foldLevelWin() {{{2 */
1189/*
1190 * Return fold level at line number "lnum" in window "wp".
1191 */
1192 static int
1193foldLevelWin(wp, lnum)
1194 win_T *wp;
1195 linenr_T lnum;
1196{
1197 fold_T *fp;
1198 linenr_T lnum_rel = lnum;
1199 int level = 0;
1200 garray_T *gap;
1201
1202 /* Recursively search for a fold that contains "lnum". */
1203 gap = &wp->w_folds;
1204 for (;;)
1205 {
1206 if (!foldFind(gap, lnum_rel, &fp))
1207 break;
1208 /* Check nested folds. Line number is relative to containing fold. */
1209 gap = &fp->fd_nested;
1210 lnum_rel -= fp->fd_top;
1211 ++level;
1212 }
1213
1214 return level;
1215}
1216
1217/* checkupdate() {{{2 */
1218/*
1219 * Check if the folds in window "wp" are invalid and update them if needed.
1220 */
1221 static void
1222checkupdate(wp)
1223 win_T *wp;
1224{
1225 if (wp->w_foldinvalid)
1226 {
1227 foldUpdate(wp, (linenr_T)1, (linenr_T)MAXLNUM); /* will update all */
1228 wp->w_foldinvalid = FALSE;
1229 }
1230}
1231
1232/* setFoldRepeat() {{{2 */
1233/*
1234 * Open or close fold for current window at line "lnum".
1235 * Repeat "count" times.
1236 */
1237 static void
1238setFoldRepeat(lnum, count, open)
1239 linenr_T lnum;
1240 long count;
1241 int open;
1242{
1243 int done;
1244 long n;
1245
1246 for (n = 0; n < count; ++n)
1247 {
1248 done = DONE_NOTHING;
1249 (void)setManualFold(lnum, open, FALSE, &done);
1250 if (!(done & DONE_ACTION))
1251 {
1252 /* Only give an error message when no fold could be opened. */
1253 if (n == 0 && !(done & DONE_FOLD))
1254 EMSG(_(e_nofold));
1255 break;
1256 }
1257 }
1258}
1259
1260/* setManualFold() {{{2 */
1261/*
1262 * Open or close the fold in the current window which contains "lnum".
1263 * Also does this for other windows in diff mode when needed.
1264 */
1265 static linenr_T
1266setManualFold(lnum, opening, recurse, donep)
1267 linenr_T lnum;
1268 int opening; /* TRUE when opening, FALSE when closing */
1269 int recurse; /* TRUE when closing/opening recursive */
1270 int *donep;
1271{
1272#ifdef FEAT_DIFF
1273 if (foldmethodIsDiff(curwin) && curwin->w_p_scb)
1274 {
1275 win_T *wp;
1276 linenr_T dlnum;
1277
1278 /*
1279 * Do the same operation in other windows in diff mode. Calculate the
1280 * line number from the diffs.
1281 */
1282 FOR_ALL_WINDOWS(wp)
1283 {
1284 if (wp != curwin && foldmethodIsDiff(wp) && wp->w_p_scb)
1285 {
1286 dlnum = diff_lnum_win(curwin->w_cursor.lnum, wp);
1287 if (dlnum != 0)
1288 (void)setManualFoldWin(wp, dlnum, opening, recurse, NULL);
1289 }
1290 }
1291 }
1292#endif
1293
1294 return setManualFoldWin(curwin, lnum, opening, recurse, donep);
1295}
1296
1297/* setManualFoldWin() {{{2 */
1298/*
1299 * Open or close the fold in window "wp" which contains "lnum".
1300 * "donep", when not NULL, points to flag that is set to DONE_FOLD when some
1301 * fold was found and to DONE_ACTION when some fold was opened or closed.
1302 * When "donep" is NULL give an error message when no fold was found for
1303 * "lnum", but only if "wp" is "curwin".
1304 * Return the line number of the next line that could be closed.
1305 * It's only valid when "opening" is TRUE!
1306 */
1307 static linenr_T
1308setManualFoldWin(wp, lnum, opening, recurse, donep)
1309 win_T *wp;
1310 linenr_T lnum;
1311 int opening; /* TRUE when opening, FALSE when closing */
1312 int recurse; /* TRUE when closing/opening recursive */
1313 int *donep;
1314{
1315 fold_T *fp;
1316 fold_T *fp2;
1317 fold_T *found = NULL;
1318 int j;
1319 int level = 0;
1320 int use_level = FALSE;
1321 int found_fold = FALSE;
1322 garray_T *gap;
1323 linenr_T next = MAXLNUM;
1324 linenr_T off = 0;
1325 int done = 0;
1326
1327 checkupdate(wp);
1328
1329 /*
1330 * Find the fold, open or close it.
1331 */
1332 gap = &wp->w_folds;
1333 for (;;)
1334 {
1335 if (!foldFind(gap, lnum, &fp))
1336 {
1337 /* If there is a following fold, continue there next time. */
1338 if (fp < (fold_T *)gap->ga_data + gap->ga_len)
1339 next = fp->fd_top + off;
1340 break;
1341 }
1342
1343 /* lnum is inside this fold */
1344 found_fold = TRUE;
1345
1346 /* If there is a following fold, continue there next time. */
1347 if (fp + 1 < (fold_T *)gap->ga_data + gap->ga_len)
1348 next = fp[1].fd_top + off;
1349
1350 /* Change from level-dependent folding to manual. */
1351 if (use_level || fp->fd_flags == FD_LEVEL)
1352 {
1353 use_level = TRUE;
1354 if (level >= wp->w_p_fdl)
1355 fp->fd_flags = FD_CLOSED;
1356 else
1357 fp->fd_flags = FD_OPEN;
1358 fp2 = (fold_T *)fp->fd_nested.ga_data;
1359 for (j = 0; j < fp->fd_nested.ga_len; ++j)
1360 fp2[j].fd_flags = FD_LEVEL;
1361 }
1362
1363 /* Simple case: Close recursively means closing the fold. */
1364 if (!opening && recurse)
1365 {
1366 if (fp->fd_flags != FD_CLOSED)
1367 {
1368 done |= DONE_ACTION;
1369 fp->fd_flags = FD_CLOSED;
1370 }
1371 }
1372 else if (fp->fd_flags == FD_CLOSED)
1373 {
1374 /* When opening, open topmost closed fold. */
1375 if (opening)
1376 {
1377 fp->fd_flags = FD_OPEN;
1378 done |= DONE_ACTION;
1379 if (recurse)
1380 foldOpenNested(fp);
1381 }
1382 break;
1383 }
1384
1385 /* fold is open, check nested folds */
1386 found = fp;
1387 gap = &fp->fd_nested;
1388 lnum -= fp->fd_top;
1389 off += fp->fd_top;
1390 ++level;
1391 }
1392 if (found_fold)
1393 {
1394 /* When closing and not recurse, close deepest open fold. */
1395 if (!opening && found != NULL)
1396 {
1397 found->fd_flags = FD_CLOSED;
1398 done |= DONE_ACTION;
1399 }
1400 wp->w_fold_manual = TRUE;
1401 if (done & DONE_ACTION)
1402 changed_window_setting_win(wp);
1403 done |= DONE_FOLD;
1404 }
1405 else if (donep == NULL && wp == curwin)
1406 EMSG(_(e_nofold));
1407
1408 if (donep != NULL)
1409 *donep |= done;
1410
1411 return next;
1412}
1413
1414/* foldOpenNested() {{{2 */
1415/*
1416 * Open all nested folds in fold "fpr" recursively.
1417 */
1418 static void
1419foldOpenNested(fpr)
1420 fold_T *fpr;
1421{
1422 int i;
1423 fold_T *fp;
1424
1425 fp = (fold_T *)fpr->fd_nested.ga_data;
1426 for (i = 0; i < fpr->fd_nested.ga_len; ++i)
1427 {
1428 foldOpenNested(&fp[i]);
1429 fp[i].fd_flags = FD_OPEN;
1430 }
1431}
1432
1433/* deleteFoldEntry() {{{2 */
1434/*
1435 * Delete fold "idx" from growarray "gap".
1436 * When "recursive" is TRUE also delete all the folds contained in it.
1437 * When "recursive" is FALSE contained folds are moved one level up.
1438 */
1439 static void
1440deleteFoldEntry(gap, idx, recursive)
1441 garray_T *gap;
1442 int idx;
1443 int recursive;
1444{
1445 fold_T *fp;
1446 int i;
1447 long moved;
1448 fold_T *nfp;
1449
1450 fp = (fold_T *)gap->ga_data + idx;
1451 if (recursive || fp->fd_nested.ga_len == 0)
1452 {
1453 /* recursively delete the contained folds */
1454 deleteFoldRecurse(&fp->fd_nested);
1455 --gap->ga_len;
1456 ++gap->ga_room;
1457 if (idx < gap->ga_len)
1458 mch_memmove(fp, fp + 1, sizeof(fold_T) * (gap->ga_len - idx));
1459 }
1460 else
1461 {
1462 /* move nested folds one level up, to overwrite the fold that is
1463 * deleted. */
1464 moved = fp->fd_nested.ga_len;
1465 if (ga_grow(gap, (int)(moved - 1)) == OK)
1466 {
1467 /* adjust fd_top and fd_flags for the moved folds */
1468 nfp = (fold_T *)fp->fd_nested.ga_data;
1469 for (i = 0; i < moved; ++i)
1470 {
1471 nfp[i].fd_top += fp->fd_top;
1472 if (fp->fd_flags == FD_LEVEL)
1473 nfp[i].fd_flags = FD_LEVEL;
1474 if (fp->fd_small == MAYBE)
1475 nfp[i].fd_small = MAYBE;
1476 }
1477
1478 /* move the existing folds down to make room */
1479 if (idx < gap->ga_len)
1480 mch_memmove(fp + moved, fp + 1,
1481 sizeof(fold_T) * (gap->ga_len - idx));
1482 /* move the contained folds one level up */
1483 mch_memmove(fp, nfp, (size_t)(sizeof(fold_T) * moved));
1484 vim_free(nfp);
1485 gap->ga_len += moved - 1;
1486 gap->ga_room -= moved - 1;
1487 }
1488 }
1489}
1490
1491/* deleteFoldRecurse() {{{2 */
1492/*
1493 * Delete nested folds in a fold.
1494 */
1495 void
1496deleteFoldRecurse(gap)
1497 garray_T *gap;
1498{
1499 int i;
1500
1501 for (i = 0; i < gap->ga_len; ++i)
1502 deleteFoldRecurse(&(((fold_T *)(gap->ga_data))[i].fd_nested));
1503 ga_clear(gap);
1504}
1505
1506/* foldMarkAdjust() {{{2 */
1507/*
1508 * Update line numbers of folds for inserted/deleted lines.
1509 */
1510 void
1511foldMarkAdjust(wp, line1, line2, amount, amount_after)
1512 win_T *wp;
1513 linenr_T line1;
1514 linenr_T line2;
1515 long amount;
1516 long amount_after;
1517{
1518 /* If deleting marks from line1 to line2, but not deleting all those
1519 * lines, set line2 so that only deleted lines have their folds removed. */
1520 if (amount == MAXLNUM && line2 >= line1 && line2 - line1 >= -amount_after)
1521 line2 = line1 - amount_after - 1;
1522 /* If appending a line in Insert mode, it should be included in the fold
1523 * just above the line. */
1524 if ((State & INSERT) && amount == (linenr_T)1 && line2 == MAXLNUM)
1525 --line1;
1526 foldMarkAdjustRecurse(&wp->w_folds, line1, line2, amount, amount_after);
1527}
1528
1529/* foldMarkAdjustRecurse() {{{2 */
1530 static void
1531foldMarkAdjustRecurse(gap, line1, line2, amount, amount_after)
1532 garray_T *gap;
1533 linenr_T line1;
1534 linenr_T line2;
1535 long amount;
1536 long amount_after;
1537{
1538 fold_T *fp;
1539 int i;
1540 linenr_T last;
1541 linenr_T top;
1542
1543 /* In Insert mode an inserted line at the top of a fold is considered part
1544 * of the fold, otherwise it isn't. */
1545 if ((State & INSERT) && amount == (linenr_T)1 && line2 == MAXLNUM)
1546 top = line1 + 1;
1547 else
1548 top = line1;
1549
1550 /* Find the fold containing or just below "line1". */
1551 (void)foldFind(gap, line1, &fp);
1552
1553 /*
1554 * Adjust all folds below "line1" that are affected.
1555 */
1556 for (i = (int)(fp - (fold_T *)gap->ga_data); i < gap->ga_len; ++i, ++fp)
1557 {
1558 /*
1559 * Check for these situations:
1560 * 1 2 3
1561 * 1 2 3
1562 * line1 2 3 4 5
1563 * 2 3 4 5
1564 * 2 3 4 5
1565 * line2 2 3 4 5
1566 * 3 5 6
1567 * 3 5 6
1568 */
1569
1570 last = fp->fd_top + fp->fd_len - 1; /* last line of fold */
1571
1572 /* 1. fold completely above line1: nothing to do */
1573 if (last < line1)
1574 continue;
1575
1576 /* 6. fold below line2: only adjust for amount_after */
1577 if (fp->fd_top > line2)
1578 {
1579 if (amount_after == 0)
1580 break;
1581 fp->fd_top += amount_after;
1582 }
1583 else
1584 {
1585 if (fp->fd_top >= top && last <= line2)
1586 {
1587 /* 4. fold completely contained in range */
1588 if (amount == MAXLNUM)
1589 {
1590 /* Deleting lines: delete the fold completely */
1591 deleteFoldEntry(gap, i, TRUE);
1592 --i; /* adjust index for deletion */
1593 --fp;
1594 }
1595 else
1596 fp->fd_top += amount;
1597 }
1598 else
1599 {
1600 /* 2, 3, or 5: need to correct nested folds too */
1601 foldMarkAdjustRecurse(&fp->fd_nested, line1 - fp->fd_top,
1602 line2 - fp->fd_top, amount, amount_after);
1603 if (fp->fd_top < top)
1604 {
1605 if (last <= line2)
1606 {
1607 /* 2. fold contains line1, line2 is below fold */
1608 if (amount == MAXLNUM)
1609 fp->fd_len = line1 - fp->fd_top;
1610 else
1611 fp->fd_len += amount;
1612 }
1613 else
1614 {
1615 /* 3. fold contains line1 and line2 */
1616 fp->fd_len += amount_after;
1617 }
1618 }
1619 else
1620 {
1621 /* 5. fold is below line1 and contains line2 */
1622 if (amount == MAXLNUM)
1623 {
1624 fp->fd_len -= line2 - fp->fd_top + 1;
1625 fp->fd_top = line1;
1626 }
1627 else
1628 {
1629 fp->fd_len += amount_after - amount;
1630 fp->fd_top += amount;
1631 }
1632 }
1633 }
1634 }
1635 }
1636}
1637
1638/* getDeepestNesting() {{{2 */
1639/*
1640 * Get the lowest 'foldlevel' value that makes the deepest nested fold in the
1641 * current window open.
1642 */
1643 int
1644getDeepestNesting()
1645{
1646 checkupdate(curwin);
1647 return getDeepestNestingRecurse(&curwin->w_folds);
1648}
1649
1650 static int
1651getDeepestNestingRecurse(gap)
1652 garray_T *gap;
1653{
1654 int i;
1655 int level;
1656 int maxlevel = 0;
1657 fold_T *fp;
1658
1659 fp = (fold_T *)gap->ga_data;
1660 for (i = 0; i < gap->ga_len; ++i)
1661 {
1662 level = getDeepestNestingRecurse(&fp[i].fd_nested) + 1;
1663 if (level > maxlevel)
1664 maxlevel = level;
1665 }
1666
1667 return maxlevel;
1668}
1669
1670/* check_closed() {{{2 */
1671/*
1672 * Check if a fold is closed and update the info needed to check nested folds.
1673 */
1674 static int
1675check_closed(win, fp, use_levelp, level, maybe_smallp, lnum_off)
1676 win_T *win;
1677 fold_T *fp;
1678 int *use_levelp; /* TRUE: outer fold had FD_LEVEL */
1679 int level; /* folding depth */
1680 int *maybe_smallp; /* TRUE: outer this had fd_small == MAYBE */
1681 linenr_T lnum_off; /* line number offset for fp->fd_top */
1682{
1683 int closed = FALSE;
1684
1685 /* Check if this fold is closed. If the flag is FD_LEVEL this
1686 * fold and all folds it contains depend on 'foldlevel'. */
1687 if (*use_levelp || fp->fd_flags == FD_LEVEL)
1688 {
1689 *use_levelp = TRUE;
1690 if (level >= win->w_p_fdl)
1691 closed = TRUE;
1692 }
1693 else if (fp->fd_flags == FD_CLOSED)
1694 closed = TRUE;
1695
1696 /* Small fold isn't closed anyway. */
1697 if (fp->fd_small == MAYBE)
1698 *maybe_smallp = TRUE;
1699 if (closed)
1700 {
1701 if (*maybe_smallp)
1702 fp->fd_small = MAYBE;
1703 checkSmall(win, fp, lnum_off);
1704 if (fp->fd_small == TRUE)
1705 closed = FALSE;
1706 }
1707 return closed;
1708}
1709
1710/* checkSmall() {{{2 */
1711/*
1712 * Update fd_small field of fold "fp".
1713 */
1714 static void
1715checkSmall(wp, fp, lnum_off)
1716 win_T *wp;
1717 fold_T *fp;
1718 linenr_T lnum_off; /* offset for fp->fd_top */
1719{
1720 int count;
1721 int n;
1722
1723 if (fp->fd_small == MAYBE)
1724 {
1725 /* Mark any nested folds to maybe-small */
1726 setSmallMaybe(&fp->fd_nested);
1727
1728 if (fp->fd_len > curwin->w_p_fml)
1729 fp->fd_small = FALSE;
1730 else
1731 {
1732 count = 0;
1733 for (n = 0; n < fp->fd_len; ++n)
1734 {
1735 count += plines_win_nofold(wp, fp->fd_top + lnum_off + n);
1736 if (count > curwin->w_p_fml)
1737 {
1738 fp->fd_small = FALSE;
1739 return;
1740 }
1741 }
1742 fp->fd_small = TRUE;
1743 }
1744 }
1745}
1746
1747/* setSmallMaybe() {{{2 */
1748/*
1749 * Set small flags in "gap" to MAYBE.
1750 */
1751 static void
1752setSmallMaybe(gap)
1753 garray_T *gap;
1754{
1755 int i;
1756 fold_T *fp;
1757
1758 fp = (fold_T *)gap->ga_data;
1759 for (i = 0; i < gap->ga_len; ++i)
1760 fp[i].fd_small = MAYBE;
1761}
1762
1763/* foldCreateMarkers() {{{2 */
1764/*
1765 * Create a fold from line "start" to line "end" (inclusive) in the current
1766 * window by adding markers.
1767 */
1768 static void
1769foldCreateMarkers(start, end)
1770 linenr_T start;
1771 linenr_T end;
1772{
1773 if (!curbuf->b_p_ma)
1774 {
1775 EMSG(_(e_modifiable));
1776 return;
1777 }
1778 parseMarker(curwin);
1779
1780 foldAddMarker(start, curwin->w_p_fmr, foldstartmarkerlen);
1781 foldAddMarker(end, foldendmarker, foldendmarkerlen);
1782
1783 /* Update both changes here, to avoid all folds after the start are
1784 * changed when the start marker is inserted and the end isn't. */
1785 changed_lines(start, (colnr_T)0, end, 0L);
1786}
1787
1788/* foldAddMarker() {{{2 */
1789/*
1790 * Add "marker[markerlen]" in 'commentstring' to line "lnum".
1791 */
1792 static void
1793foldAddMarker(lnum, marker, markerlen)
1794 linenr_T lnum;
1795 char_u *marker;
1796 int markerlen;
1797{
1798 char_u *cms = curbuf->b_p_cms;
1799 char_u *line;
1800 int line_len;
1801 char_u *newline;
1802 char_u *p = (char_u *)strstr((char *)curbuf->b_p_cms, "%s");
1803
1804 /* Allocate a new line: old-line + 'cms'-start + marker + 'cms'-end */
1805 line = ml_get(lnum);
1806 line_len = (int)STRLEN(line);
1807
1808 if (u_save(lnum - 1, lnum + 1) == OK)
1809 {
1810 newline = alloc((unsigned)(line_len + markerlen + STRLEN(cms) + 1));
1811 if (newline == NULL)
1812 return;
1813 STRCPY(newline, line);
1814 if (p == NULL)
1815 {
1816 STRNCPY(newline + line_len, marker, markerlen);
1817 newline[line_len + markerlen] = NUL;
1818 }
1819 else
1820 {
1821 STRCPY(newline + line_len, cms);
1822 STRNCPY(newline + line_len + (p - cms), marker, markerlen);
1823 STRCPY(newline + line_len + (p - cms) + markerlen, p + 2);
1824 }
1825
1826 ml_replace(lnum, newline, FALSE);
1827 }
1828}
1829
1830/* deleteFoldMarkers() {{{2 */
1831/*
1832 * Delete the markers for a fold, causing it to be deleted.
1833 */
1834 static void
1835deleteFoldMarkers(fp, recursive, lnum_off)
1836 fold_T *fp;
1837 int recursive;
1838 linenr_T lnum_off; /* offset for fp->fd_top */
1839{
1840 int i;
1841
1842 if (recursive)
1843 for (i = 0; i < fp->fd_nested.ga_len; ++i)
1844 deleteFoldMarkers((fold_T *)fp->fd_nested.ga_data + i, TRUE,
1845 lnum_off + fp->fd_top);
1846 foldDelMarker(fp->fd_top + lnum_off, curwin->w_p_fmr, foldstartmarkerlen);
1847 foldDelMarker(fp->fd_top + lnum_off + fp->fd_len - 1,
1848 foldendmarker, foldendmarkerlen);
1849}
1850
1851/* foldDelMarker() {{{2 */
1852/*
1853 * Delete marker "marker[markerlen]" at the end of line "lnum".
1854 * Delete 'commentstring' if it matches.
1855 * If the marker is not found, there is no error message. Could a missing
1856 * close-marker.
1857 */
1858 static void
1859foldDelMarker(lnum, marker, markerlen)
1860 linenr_T lnum;
1861 char_u *marker;
1862 int markerlen;
1863{
1864 char_u *line;
1865 char_u *newline;
1866 char_u *p;
1867 int len;
1868 char_u *cms = curbuf->b_p_cms;
1869 char_u *cms2;
1870
1871 line = ml_get(lnum);
1872 for (p = line; *p != NUL; ++p)
1873 if (STRNCMP(p, marker, markerlen) == 0)
1874 {
1875 /* Found the marker, include a digit if it's there. */
1876 len = markerlen;
1877 if (VIM_ISDIGIT(p[len]))
1878 ++len;
1879 if (*cms != NUL)
1880 {
1881 /* Also delete 'commentstring' if it matches. */
1882 cms2 = (char_u *)strstr((char *)cms, "%s");
1883 if (p - line >= cms2 - cms
1884 && STRNCMP(p - (cms2 - cms), cms, cms2 - cms) == 0
1885 && STRNCMP(p + len, cms2 + 2, STRLEN(cms2 + 2)) == 0)
1886 {
1887 p -= cms2 - cms;
1888 len += (int)STRLEN(cms) - 2;
1889 }
1890 }
1891 if (u_save(lnum - 1, lnum + 1) == OK)
1892 {
1893 /* Make new line: text-before-marker + text-after-marker */
1894 newline = alloc((unsigned)(STRLEN(line) - len + 1));
1895 if (newline != NULL)
1896 {
1897 STRNCPY(newline, line, p - line);
1898 STRCPY(newline + (p - line), p + len);
1899 ml_replace(lnum, newline, FALSE);
1900 }
1901 }
1902 break;
1903 }
1904}
1905
1906/* foldtext_cleanup() {{{2 */
1907/*
1908 * Remove 'foldmarker' and 'commentstring' from "str" (in-place).
1909 */
1910 void
1911foldtext_cleanup(str)
1912 char_u *str;
1913{
1914 char_u *cms_start; /* first part or the whole comment */
1915 int cms_slen = 0; /* length of cms_start */
1916 char_u *cms_end; /* last part of the comment or NULL */
1917 int cms_elen = 0; /* length of cms_end */
1918 char_u *s;
1919 int len;
1920 int did1 = FALSE;
1921 int did2 = FALSE;
1922
1923 /* Ignore leading and trailing white space in 'commentstring'. */
1924 cms_start = skipwhite(curbuf->b_p_cms);
1925 cms_slen = STRLEN(cms_start);
1926 while (cms_slen > 0 && vim_iswhite(cms_start[cms_slen - 1]))
1927 --cms_slen;
1928
1929 /* locate "%s" in 'commentstring', use the part before and after it. */
1930 cms_end = (char_u *)strstr((char *)cms_start, "%s");
1931 if (cms_end != NULL)
1932 {
1933 cms_elen = cms_slen - (cms_end - cms_start);
1934 cms_slen = cms_end - cms_start;
1935
1936 /* exclude white space before "%s" */
1937 while (cms_slen > 0 && vim_iswhite(cms_start[cms_slen - 1]))
1938 --cms_slen;
1939
1940 /* skip "%s" and white space after it */
1941 s = skipwhite(cms_end + 2);
1942 cms_elen -= s - cms_end;
1943 cms_end = s;
1944 }
1945 parseMarker(curwin);
1946
1947 for (s = str; *s != NUL; )
1948 {
1949 len = 0;
1950 if (STRNCMP(s, curwin->w_p_fmr, foldstartmarkerlen) == 0)
1951 {
1952 len = foldstartmarkerlen;
1953 if (VIM_ISDIGIT(s[len]))
1954 ++len;
1955 }
1956 else if (STRNCMP(s, foldendmarker, foldendmarkerlen) == 0)
1957 {
1958 len = foldendmarkerlen;
1959 if (VIM_ISDIGIT(s[len]))
1960 ++len;
1961 }
1962 else if (cms_end != NULL)
1963 {
1964 if (!did1 && STRNCMP(s, cms_start, cms_slen) == 0)
1965 {
1966 len = cms_slen;
1967 did1 = TRUE;
1968 }
1969 else if (!did2 && STRNCMP(s, cms_end, cms_elen) == 0)
1970 {
1971 len = cms_elen;
1972 did2 = TRUE;
1973 }
1974 }
1975 if (len != 0)
1976 {
1977 while (vim_iswhite(s[len]))
1978 ++len;
1979 mch_memmove(s, s + len, STRLEN(s + len) + 1);
1980 }
1981 else
1982 {
1983#ifdef FEAT_MBYTE
1984 if (has_mbyte)
1985 s += (*mb_ptr2len_check)(s);
1986 else
1987#endif
1988 ++s;
1989 }
1990 }
1991}
1992
1993/* Folding by indent, expr, marker and syntax. {{{1 */
1994/* Define "fline_T", passed to get fold level for a line. {{{2 */
1995typedef struct
1996{
1997 win_T *wp; /* window */
1998 linenr_T lnum; /* current line number */
1999 linenr_T off; /* offset between lnum and real line number */
2000 linenr_T lnum_save; /* line nr used by foldUpdateIEMSRecurse() */
2001 int lvl; /* current level (-1 for undefined) */
2002 int lvl_next; /* level used for next line */
2003 int start; /* number of folds that are forced to start at
2004 this line. */
2005 int end; /* level of fold that is forced to end below
2006 this line */
2007 int had_end; /* level of fold that is forced to end above
2008 this line (copy of "end" of prev. line) */
2009} fline_T;
2010
2011/* Flag is set when redrawing is needed. */
2012static int fold_changed;
2013
2014/* Function declarations. {{{2 */
2015static linenr_T foldUpdateIEMSRecurse __ARGS((garray_T *gap, int level, linenr_T startlnum, fline_T *flp, void (*getlevel)__ARGS((fline_T *)), linenr_T bot, int topflags));
2016static int foldInsert __ARGS((garray_T *gap, int i));
2017static void foldSplit __ARGS((garray_T *gap, int i, linenr_T top, linenr_T bot));
2018static void foldRemove __ARGS((garray_T *gap, linenr_T top, linenr_T bot));
2019static void foldMerge __ARGS((fold_T *fp1, garray_T *gap, fold_T *fp2));
2020static void foldlevelIndent __ARGS((fline_T *flp));
2021#ifdef FEAT_DIFF
2022static void foldlevelDiff __ARGS((fline_T *flp));
2023#endif
2024static void foldlevelExpr __ARGS((fline_T *flp));
2025static void foldlevelMarker __ARGS((fline_T *flp));
2026static void foldlevelSyntax __ARGS((fline_T *flp));
2027
2028/* foldUpdateIEMS() {{{2 */
2029/*
2030 * Update the folding for window "wp", at least from lines "top" to "bot".
2031 * Return TRUE if any folds did change.
2032 */
2033 static void
2034foldUpdateIEMS(wp, top, bot)
2035 win_T *wp;
2036 linenr_T top;
2037 linenr_T bot;
2038{
2039 linenr_T start;
2040 linenr_T end;
2041 fline_T fline;
2042 void (*getlevel)__ARGS((fline_T *));
2043 int level;
2044 fold_T *fp;
2045
2046 /* Avoid problems when being called recursively. */
2047 if (invalid_top != (linenr_T)0)
2048 return;
2049
2050 if (wp->w_foldinvalid)
2051 {
2052 /* Need to update all folds. */
2053 top = 1;
2054 bot = wp->w_buffer->b_ml.ml_line_count;
2055 wp->w_foldinvalid = FALSE;
2056
2057 /* Mark all folds a maybe-small. */
2058 setSmallMaybe(&wp->w_folds);
2059 }
2060
2061#ifdef FEAT_DIFF
2062 /* add the context for "diff" folding */
2063 if (foldmethodIsDiff(wp))
2064 {
2065 if (top > diff_context)
2066 top -= diff_context;
2067 else
2068 top = 1;
2069 bot += diff_context;
2070 }
2071#endif
2072
2073 /* When deleting lines at the end of the buffer "top" can be past the end
2074 * of the buffer. */
2075 if (top > wp->w_buffer->b_ml.ml_line_count)
2076 top = wp->w_buffer->b_ml.ml_line_count;
2077
2078 fold_changed = FALSE;
2079 fline.wp = wp;
2080 fline.off = 0;
2081 fline.lvl = 0;
2082 fline.lvl_next = -1;
2083 fline.start = 0;
2084 fline.end = MAX_LEVEL + 1;
2085 fline.had_end = MAX_LEVEL + 1;
2086
2087 invalid_top = top;
2088 invalid_bot = bot;
2089
2090 if (foldmethodIsMarker(wp))
2091 {
2092 getlevel = foldlevelMarker;
2093
2094 /* Init marker variables to speed up foldlevelMarker(). */
2095 parseMarker(wp);
2096
2097 /* Need to get the level of the line above top, it is used if there is
2098 * no marker at the top. */
2099 if (top > 1)
2100 {
2101 /* Get the fold level at top - 1. */
2102 level = foldLevelWin(wp, top - 1);
2103
2104 /* The fold may end just above the top, check for that. */
2105 fline.lnum = top - 1;
2106 fline.lvl = level;
2107 getlevel(&fline);
2108
2109 /* If a fold started here, we already had the level, if it stops
2110 * here, we need to use lvl_next. Could also start and end a fold
2111 * in the same line. */
2112 if (fline.lvl > level)
2113 fline.lvl = level - (fline.lvl - fline.lvl_next);
2114 else
2115 fline.lvl = fline.lvl_next;
2116 }
2117 fline.lnum = top;
2118 getlevel(&fline);
2119 }
2120 else
2121 {
2122 fline.lnum = top;
2123 if (foldmethodIsExpr(wp))
2124 {
2125 getlevel = foldlevelExpr;
2126 /* start one line back, because a "<1" may indicate the end of a
2127 * fold in the topline */
2128 if (top > 1)
2129 --fline.lnum;
2130 }
2131 else if (foldmethodIsSyntax(wp))
2132 getlevel = foldlevelSyntax;
2133#ifdef FEAT_DIFF
2134 else if (foldmethodIsDiff(wp))
2135 getlevel = foldlevelDiff;
2136#endif
2137 else
2138 getlevel = foldlevelIndent;
2139
2140 /* Backup to a line for which the fold level is defined. Since it's
2141 * always defined for line one, we will stop there. */
2142 fline.lvl = -1;
2143 for ( ; !got_int; --fline.lnum)
2144 {
2145 /* Reset lvl_next each time, because it will be set to a value for
2146 * the next line, but we search backwards here. */
2147 fline.lvl_next = -1;
2148 getlevel(&fline);
2149 if (fline.lvl >= 0)
2150 break;
2151 }
2152 }
2153
2154 start = fline.lnum;
2155 end = bot;
2156 /* Do at least one line. */
2157 if (start > end && end < wp->w_buffer->b_ml.ml_line_count)
2158 end = start;
2159 while (!got_int)
2160 {
2161 /* Always stop at the end of the file ("end" can be past the end of
2162 * the file). */
2163 if (fline.lnum > wp->w_buffer->b_ml.ml_line_count)
2164 break;
2165 if (fline.lnum > end)
2166 {
2167 /* For "marker", "expr" and "syntax" methods: If a change caused
2168 * a fold to be removed, we need to continue at least until where
2169 * it ended. */
2170 if (getlevel != foldlevelMarker
2171 && getlevel != foldlevelSyntax
2172 && getlevel != foldlevelExpr)
2173 break;
2174 if ((start <= end
2175 && foldFind(&wp->w_folds, end, &fp)
2176 && fp->fd_top + fp->fd_len - 1 > end)
2177 || (fline.lvl == 0
2178 && foldFind(&wp->w_folds, fline.lnum, &fp)
2179 && fp->fd_top < fline.lnum))
2180 end = fp->fd_top + fp->fd_len - 1;
2181 else if (getlevel == foldlevelSyntax
2182 && foldLevelWin(wp, fline.lnum) != fline.lvl)
2183 /* For "syntax" method: Compare the foldlevel that the syntax
2184 * tells us to the foldlevel from the existing folds. If they
2185 * don't match continue updating folds. */
2186 end = fline.lnum;
2187 else
2188 break;
2189 }
2190
2191 /* A level 1 fold starts at a line with foldlevel > 0. */
2192 if (fline.lvl > 0)
2193 {
2194 invalid_top = fline.lnum;
2195 invalid_bot = end;
2196 end = foldUpdateIEMSRecurse(&wp->w_folds,
2197 1, start, &fline, getlevel, end, FD_LEVEL);
2198 start = fline.lnum;
2199 }
2200 else
2201 {
2202 if (fline.lnum == wp->w_buffer->b_ml.ml_line_count)
2203 break;
2204 ++fline.lnum;
2205 fline.lvl = fline.lvl_next;
2206 getlevel(&fline);
2207 }
2208 }
2209
2210 /* There can't be any folds from start until end now. */
2211 foldRemove(&wp->w_folds, start, end);
2212
2213 /* If some fold changed, need to redraw and position cursor. */
2214 if (fold_changed && wp->w_p_fen)
2215 changed_window_setting();
2216
2217 /* If we updated folds past "bot", need to redraw more lines. Don't do
2218 * this in other situations, the changed lines will be redrawn anyway and
2219 * this method can cause the whole window to be updated. */
2220 if (end != bot)
2221 {
2222 if (wp->w_redraw_top == 0 || wp->w_redraw_top > top)
2223 wp->w_redraw_top = top;
2224 if (wp->w_redraw_bot < end)
2225 wp->w_redraw_bot = end;
2226 }
2227
2228 invalid_top = (linenr_T)0;
2229}
2230
2231/* foldUpdateIEMSRecurse() {{{2 */
2232/*
2233 * Update a fold that starts at "flp->lnum". At this line there is always a
2234 * valid foldlevel, and its level >= "level".
2235 * "flp" is valid for "flp->lnum" when called and it's valid when returning.
2236 * "flp->lnum" is set to the lnum just below the fold, if it ends before
2237 * "bot", it's "bot" plus one if the fold continues and it's bigger when using
2238 * the marker method and a text change made following folds to change.
2239 * When returning, "flp->lnum_save" is the line number that was used to get
2240 * the level when the level at "flp->lnum" is invalid.
2241 * Remove any folds from "startlnum" up to here at this level.
2242 * Recursively update nested folds.
2243 * Below line "bot" there are no changes in the text.
2244 * "flp->lnum", "flp->lnum_save" and "bot" are relative to the start of the
2245 * outer fold.
2246 * "flp->off" is the offset to the real line number in the buffer.
2247 *
2248 * All this would be a lot simpler if all folds in the range would be deleted
2249 * and then created again. But we would loose all information about the
2250 * folds, even when making changes that don't affect the folding (e.g. "vj~").
2251 *
2252 * Returns bot, which may have been increased for lines that also need to be
2253 * updated as a result of a detected change in the fold.
2254 */
2255 static linenr_T
2256foldUpdateIEMSRecurse(gap, level, startlnum, flp, getlevel, bot, topflags)
2257 garray_T *gap;
2258 int level;
2259 linenr_T startlnum;
2260 fline_T *flp;
2261 void (*getlevel)__ARGS((fline_T *));
2262 linenr_T bot;
2263 int topflags; /* flags used by containing fold */
2264{
2265 linenr_T ll;
2266 fold_T *fp = NULL;
2267 fold_T *fp2;
2268 int lvl = level;
2269 linenr_T startlnum2 = startlnum;
2270 linenr_T firstlnum = flp->lnum; /* first lnum we got */
2271 int i;
2272 int finish = FALSE;
2273 linenr_T linecount = flp->wp->w_buffer->b_ml.ml_line_count - flp->off;
2274 int concat;
2275
2276 /*
2277 * If using the marker method, the start line is not the start of a fold
2278 * at the level we're dealing with and the level is non-zero, we must use
2279 * the previous fold. But ignore a fold that starts at or below
2280 * startlnum, it must be deleted.
2281 */
2282 if (getlevel == foldlevelMarker && flp->start <= flp->lvl - level
2283 && flp->lvl > 0)
2284 {
2285 foldFind(gap, startlnum - 1, &fp);
2286 if (fp >= ((fold_T *)gap->ga_data) + gap->ga_len
2287 || fp->fd_top >= startlnum)
2288 fp = NULL;
2289 }
2290
2291 /*
2292 * Loop over all lines in this fold, or until "bot" is hit.
2293 * Handle nested folds inside of this fold.
2294 * "flp->lnum" is the current line. When finding the end of the fold, it
2295 * is just below the end of the fold.
2296 * "*flp" contains the level of the line "flp->lnum" or a following one if
2297 * there are lines with an invalid fold level. "flp->lnum_save" is the
2298 * line number that was used to get the fold level (below "flp->lnum" when
2299 * it has an invalid fold level). When called the fold level is always
2300 * valid, thus "flp->lnum_save" is equal to "flp->lnum".
2301 */
2302 flp->lnum_save = flp->lnum;
2303 while (!got_int)
2304 {
2305 /* Updating folds can be slow, check for CTRL-C. */
2306 line_breakcheck();
2307
2308 /* Set "lvl" to the level of line "flp->lnum". When flp->start is set
2309 * and after the first line of the fold, set the level to zero to
2310 * force the fold to end. Do the same when had_end is set: Previous
2311 * line was marked as end of a fold. */
2312 lvl = flp->lvl;
2313 if (lvl > MAX_LEVEL)
2314 lvl = MAX_LEVEL;
2315 if (flp->lnum > firstlnum
2316 && (level > lvl - flp->start || level >= flp->had_end))
2317 lvl = 0;
2318
2319 if (flp->lnum > bot && !finish && fp != NULL)
2320 {
2321 /* For "marker" and "syntax" methods:
2322 * - If a change caused a nested fold to be removed, we need to
2323 * delete it and continue at least until where it ended.
2324 * - If a change caused a nested fold to be created, or this fold
2325 * to continue below its original end, need to finish this fold.
2326 */
2327 if (getlevel != foldlevelMarker
2328 && getlevel != foldlevelExpr
2329 && getlevel != foldlevelSyntax)
2330 break;
2331 i = 0;
2332 fp2 = fp;
2333 if (lvl >= level)
2334 {
2335 /* Compute how deep the folds currently are, if it's deeper
2336 * than "lvl" then some must be deleted, need to update
2337 * at least one nested fold. */
2338 ll = flp->lnum - fp->fd_top;
2339 while (foldFind(&fp2->fd_nested, ll, &fp2))
2340 {
2341 ++i;
2342 ll -= fp2->fd_top;
2343 }
2344 }
2345 if (lvl < level + i)
2346 {
2347 foldFind(&fp->fd_nested, flp->lnum - fp->fd_top, &fp2);
2348 if (fp2 != NULL)
2349 bot = fp2->fd_top + fp2->fd_len - 1 + fp->fd_top;
2350 }
2351 else if (fp->fd_top + fp->fd_len <= flp->lnum && lvl >= level)
2352 finish = TRUE;
2353 else
2354 break;
2355 }
2356
2357 /* At the start of the first nested fold and at the end of the current
2358 * fold: check if existing folds at this level, before the current
2359 * one, need to be deleted or truncated. */
2360 if (fp == NULL
2361 && (lvl != level
2362 || flp->lnum_save >= bot
2363 || flp->start != 0
2364 || flp->had_end <= MAX_LEVEL
2365 || flp->lnum == linecount))
2366 {
2367 /*
2368 * Remove or update folds that have lines between startlnum and
2369 * firstlnum.
2370 */
2371 while (!got_int)
2372 {
2373 /* set concat to 1 if it's allowed to concatenated this fold
2374 * with a previous one that touches it. */
2375 if (flp->start != 0 || flp->had_end <= MAX_LEVEL)
2376 concat = 0;
2377 else
2378 concat = 1;
2379
2380 /* Find an existing fold to re-use. Preferably one that
2381 * includes startlnum, otherwise one that ends just before
2382 * startlnum or starts after it. */
2383 if (foldFind(gap, startlnum, &fp)
2384 || (fp < ((fold_T *)gap->ga_data) + gap->ga_len
2385 && fp->fd_top <= firstlnum)
2386 || foldFind(gap, firstlnum - concat, &fp)
2387 || (fp < ((fold_T *)gap->ga_data) + gap->ga_len
2388 && ((lvl < level && fp->fd_top < flp->lnum)
2389 || (lvl >= level
2390 && fp->fd_top <= flp->lnum_save))))
2391 {
2392 if (fp->fd_top + fp->fd_len + concat > firstlnum)
2393 {
2394 /* Use existing fold for the new fold. If it starts
2395 * before where we started looking, extend it. If it
2396 * starts at another line, update nested folds to keep
2397 * their position, compensating for the new fd_top. */
2398 if (fp->fd_top >= startlnum && fp->fd_top != firstlnum)
2399 {
2400 if (fp->fd_top > firstlnum)
2401 /* like lines are inserted */
2402 foldMarkAdjustRecurse(&fp->fd_nested,
2403 (linenr_T)0, (linenr_T)MAXLNUM,
2404 (long)(fp->fd_top - firstlnum), 0L);
2405 else
2406 /* like lines are deleted */
2407 foldMarkAdjustRecurse(&fp->fd_nested,
2408 (linenr_T)0,
2409 (long)(firstlnum - fp->fd_top - 1),
2410 (linenr_T)MAXLNUM,
2411 (long)(fp->fd_top - firstlnum));
2412 fp->fd_len += fp->fd_top - firstlnum;
2413 fp->fd_top = firstlnum;
2414 fold_changed = TRUE;
2415 }
2416 else if (flp->start != 0 && lvl == level
2417 && fp->fd_top != firstlnum)
2418 {
2419 /* Existing fold that includes startlnum must stop
2420 * if we find the start of a new fold at the same
2421 * level. Split it. Delete contained folds at
2422 * this point to split them too. */
2423 foldRemove(&fp->fd_nested, flp->lnum - fp->fd_top,
2424 flp->lnum - fp->fd_top);
2425 i = (int)(fp - (fold_T *)gap->ga_data);
2426 foldSplit(gap, i, flp->lnum, flp->lnum - 1);
2427 fp = (fold_T *)gap->ga_data + i + 1;
2428 /* If using the "marker" or "syntax" method, we
2429 * need to continue until the end of the fold is
2430 * found. */
2431 if (getlevel == foldlevelMarker
2432 || getlevel == foldlevelExpr
2433 || getlevel == foldlevelSyntax)
2434 finish = TRUE;
2435 }
2436 break;
2437 }
2438 if (fp->fd_top >= startlnum)
2439 {
2440 /* A fold that starts at or after startlnum and stops
2441 * before the new fold must be deleted. Continue
2442 * looking for the next one. */
2443 deleteFoldEntry(gap,
2444 (int)(fp - (fold_T *)gap->ga_data), TRUE);
2445 }
2446 else
2447 {
2448 /* A fold has some lines above startlnum, truncate it
2449 * to stop just above startlnum. */
2450 fp->fd_len = startlnum - fp->fd_top;
2451 foldMarkAdjustRecurse(&fp->fd_nested,
2452 (linenr_T)fp->fd_len, (linenr_T)MAXLNUM,
2453 (linenr_T)MAXLNUM, 0L);
2454 fold_changed = TRUE;
2455 }
2456 }
2457 else
2458 {
2459 /* Insert new fold. Careful: ga_data may be NULL and it
2460 * may change! */
2461 i = (int)(fp - (fold_T *)gap->ga_data);
2462 if (foldInsert(gap, i) != OK)
2463 return bot;
2464 fp = (fold_T *)gap->ga_data + i;
2465 /* The new fold continues until bot, unless we find the
2466 * end earlier. */
2467 fp->fd_top = firstlnum;
2468 fp->fd_len = bot - firstlnum + 1;
2469 /* When the containing fold is open, the new fold is open.
2470 * The new fold is closed if the fold above it is closed.
2471 * The first fold depends on the containing fold. */
2472 if (topflags == FD_OPEN)
2473 {
2474 flp->wp->w_fold_manual = TRUE;
2475 fp->fd_flags = FD_OPEN;
2476 }
2477 else if (i <= 0)
2478 {
2479 fp->fd_flags = topflags;
2480 if (topflags != FD_LEVEL)
2481 flp->wp->w_fold_manual = TRUE;
2482 }
2483 else
2484 fp->fd_flags = (fp - 1)->fd_flags;
2485 fp->fd_small = MAYBE;
2486 /* If using the "marker", "expr" or "syntax" method, we
2487 * need to continue until the end of the fold is found. */
2488 if (getlevel == foldlevelMarker
2489 || getlevel == foldlevelExpr
2490 || getlevel == foldlevelSyntax)
2491 finish = TRUE;
2492 fold_changed = TRUE;
2493 break;
2494 }
2495 }
2496 }
2497
2498 if (lvl < level || flp->lnum > linecount)
2499 {
2500 /*
2501 * Found a line with a lower foldlevel, this fold ends just above
2502 * "flp->lnum".
2503 */
2504 break;
2505 }
2506
2507 /*
2508 * The fold includes the line "flp->lnum" and "flp->lnum_save".
2509 */
2510 if (lvl > level)
2511 {
2512 /*
2513 * There is a nested fold, handle it recursively.
2514 */
2515 /* At least do one line (can happen when finish is TRUE). */
2516 if (bot < flp->lnum)
2517 bot = flp->lnum;
2518
2519 /* Line numbers in the nested fold are relative to the start of
2520 * this fold. */
2521 flp->lnum = flp->lnum_save - fp->fd_top;
2522 flp->off += fp->fd_top;
2523 i = (int)(fp - (fold_T *)gap->ga_data);
2524 bot = foldUpdateIEMSRecurse(&fp->fd_nested, level + 1,
2525 startlnum2 - fp->fd_top, flp, getlevel,
2526 bot - fp->fd_top, fp->fd_flags);
2527 fp = (fold_T *)gap->ga_data + i;
2528 flp->lnum += fp->fd_top;
2529 flp->lnum_save += fp->fd_top;
2530 flp->off -= fp->fd_top;
2531 bot += fp->fd_top;
2532 startlnum2 = flp->lnum;
2533
2534 /* This fold may end at the same line, don't incr. flp->lnum. */
2535 }
2536 else
2537 {
2538 /*
2539 * Get the level of the next line, then continue the loop to check
2540 * if it ends there.
2541 * Skip over undefined lines, to find the foldlevel after it.
2542 * For the last line in the file the foldlevel is always valid.
2543 */
2544 flp->lnum = flp->lnum_save;
2545 ll = flp->lnum + 1;
2546 while (!got_int)
2547 {
2548 /* Make the previous level available to foldlevel(). */
2549 prev_lnum = flp->lnum;
2550 prev_lnum_lvl = flp->lvl;
2551
2552 if (++flp->lnum > linecount)
2553 break;
2554 flp->lvl = flp->lvl_next;
2555 getlevel(flp);
2556 if (flp->lvl >= 0 || flp->had_end <= MAX_LEVEL)
2557 break;
2558 }
2559 prev_lnum = 0;
2560 if (flp->lnum > linecount)
2561 break;
2562
2563 /* leave flp->lnum_save to lnum of the line that was used to get
2564 * the level, flp->lnum to the lnum of the next line. */
2565 flp->lnum_save = flp->lnum;
2566 flp->lnum = ll;
2567 }
2568 }
2569
2570 if (fp == NULL) /* only happens when got_int is set */
2571 return bot;
2572
2573 /*
2574 * Get here when:
2575 * lvl < level: the folds ends just above "flp->lnum"
2576 * lvl >= level: fold continues below "bot"
2577 */
2578
2579 /* Current fold at least extends until lnum. */
2580 if (fp->fd_len < flp->lnum - fp->fd_top)
2581 {
2582 fp->fd_len = flp->lnum - fp->fd_top;
2583 fold_changed = TRUE;
2584 }
2585
2586 /* Delete contained folds from the end of the last one found until where
2587 * we stopped looking. */
2588 foldRemove(&fp->fd_nested, startlnum2 - fp->fd_top,
2589 flp->lnum - 1 - fp->fd_top);
2590
2591 if (lvl < level)
2592 {
2593 /* End of fold found, update the length when it got shorter. */
2594 if (fp->fd_len != flp->lnum - fp->fd_top)
2595 {
2596 if (fp->fd_top + fp->fd_len > bot + 1)
2597 {
2598 /* fold coninued below bot */
2599 if (getlevel == foldlevelMarker
2600 || getlevel == foldlevelExpr
2601 || getlevel == foldlevelSyntax)
2602 {
2603 /* marker method: truncate the fold and make sure the
2604 * previously included lines are processed again */
2605 bot = fp->fd_top + fp->fd_len - 1;
2606 fp->fd_len = flp->lnum - fp->fd_top;
2607 }
2608 else
2609 {
2610 /* indent or expr method: split fold to create a new one
2611 * below bot */
2612 i = (int)(fp - (fold_T *)gap->ga_data);
2613 foldSplit(gap, i, flp->lnum, bot);
2614 fp = (fold_T *)gap->ga_data + i;
2615 }
2616 }
2617 else
2618 fp->fd_len = flp->lnum - fp->fd_top;
2619 fold_changed = TRUE;
2620 }
2621 }
2622
2623 /* delete following folds that end before the current line */
2624 for (;;)
2625 {
2626 fp2 = fp + 1;
2627 if (fp2 >= (fold_T *)gap->ga_data + gap->ga_len
2628 || fp2->fd_top > flp->lnum)
2629 break;
2630 if (fp2->fd_top + fp2->fd_len > flp->lnum)
2631 {
2632 if (fp2->fd_top < flp->lnum)
2633 {
2634 /* Make fold that includes lnum start at lnum. */
2635 foldMarkAdjustRecurse(&fp2->fd_nested,
2636 (linenr_T)0, (long)(flp->lnum - fp2->fd_top - 1),
2637 (linenr_T)MAXLNUM, (long)(fp2->fd_top - flp->lnum));
2638 fp2->fd_len -= flp->lnum - fp2->fd_top;
2639 fp2->fd_top = flp->lnum;
2640 fold_changed = TRUE;
2641 }
2642
2643 if (lvl >= level)
2644 {
2645 /* merge new fold with existing fold that follows */
2646 foldMerge(fp, gap, fp2);
2647 }
2648 break;
2649 }
2650 fold_changed = TRUE;
2651 deleteFoldEntry(gap, (int)(fp2 - (fold_T *)gap->ga_data), TRUE);
2652 }
2653
2654 /* Need to redraw the lines we inspected, which might be further down than
2655 * was asked for. */
2656 if (bot < flp->lnum - 1)
2657 bot = flp->lnum - 1;
2658
2659 return bot;
2660}
2661
2662/* foldInsert() {{{2 */
2663/*
2664 * Insert a new fold in "gap" at position "i".
2665 * Returns OK for success, FAIL for failure.
2666 */
2667 static int
2668foldInsert(gap, i)
2669 garray_T *gap;
2670 int i;
2671{
2672 fold_T *fp;
2673
2674 if (ga_grow(gap, 1) != OK)
2675 return FAIL;
2676 fp = (fold_T *)gap->ga_data + i;
2677 if (i < gap->ga_len)
2678 mch_memmove(fp + 1, fp, sizeof(fold_T) * (gap->ga_len - i));
2679 ++gap->ga_len;
2680 --gap->ga_room;
2681 ga_init2(&fp->fd_nested, (int)sizeof(fold_T), 10);
2682 return OK;
2683}
2684
2685/* foldSplit() {{{2 */
2686/*
2687 * Split the "i"th fold in "gap", which starts before "top" and ends below
2688 * "bot" in two pieces, one ending above "top" and the other starting below
2689 * "bot".
2690 * The caller must first have taken care of any nested folds from "top" to
2691 * "bot"!
2692 */
2693 static void
2694foldSplit(gap, i, top, bot)
2695 garray_T *gap;
2696 int i;
2697 linenr_T top;
2698 linenr_T bot;
2699{
2700 fold_T *fp;
2701 fold_T *fp2;
2702 garray_T *gap1;
2703 garray_T *gap2;
2704 int idx;
2705 int len;
2706
2707 /* The fold continues below bot, need to split it. */
2708 if (foldInsert(gap, i + 1) == FAIL)
2709 return;
2710 fp = (fold_T *)gap->ga_data + i;
2711 fp[1].fd_top = bot + 1;
2712 fp[1].fd_len = fp->fd_len - (fp[1].fd_top - fp->fd_top);
2713 fp[1].fd_flags = fp->fd_flags;
2714
2715 /* Move nested folds below bot to new fold. There can't be
2716 * any between top and bot, they have been removed by the caller. */
2717 gap1 = &fp->fd_nested;
2718 gap2 = &fp[1].fd_nested;
2719 (void)(foldFind(gap1, bot + 1 - fp->fd_top, &fp2));
2720 len = (int)((fold_T *)gap1->ga_data + gap1->ga_len - fp2);
2721 if (len > 0 && ga_grow(gap2, len) == OK)
2722 {
2723 for (idx = 0; idx < len; ++idx)
2724 {
2725 ((fold_T *)gap2->ga_data)[idx] = fp2[idx];
2726 ((fold_T *)gap2->ga_data)[idx].fd_top
2727 -= fp[1].fd_top - fp->fd_top;
2728 }
2729 gap2->ga_len = len;
2730 gap2->ga_room -= len;
2731 gap1->ga_len -= len;
2732 gap1->ga_room += len;
2733 }
2734 fp->fd_len = top - fp->fd_top;
2735 fold_changed = TRUE;
2736}
2737
2738/* foldRemove() {{{2 */
2739/*
2740 * Remove folds within the range "top" to and including "bot".
2741 * Check for these situations:
2742 * 1 2 3
2743 * 1 2 3
2744 * top 2 3 4 5
2745 * 2 3 4 5
2746 * bot 2 3 4 5
2747 * 3 5 6
2748 * 3 5 6
2749 *
2750 * 1: not changed
2751 * 2: trunate to stop above "top"
2752 * 3: split in two parts, one stops above "top", other starts below "bot".
2753 * 4: deleted
2754 * 5: made to start below "bot".
2755 * 6: not changed
2756 */
2757 static void
2758foldRemove(gap, top, bot)
2759 garray_T *gap;
2760 linenr_T top;
2761 linenr_T bot;
2762{
2763 fold_T *fp = NULL;
2764
2765 if (bot < top)
2766 return; /* nothing to do */
2767
2768 for (;;)
2769 {
2770 /* Find fold that includes top or a following one. */
2771 if (foldFind(gap, top, &fp) && fp->fd_top < top)
2772 {
2773 /* 2: or 3: need to delete nested folds */
2774 foldRemove(&fp->fd_nested, top - fp->fd_top, bot - fp->fd_top);
2775 if (fp->fd_top + fp->fd_len > bot + 1)
2776 {
2777 /* 3: need to split it. */
2778 foldSplit(gap, (int)(fp - (fold_T *)gap->ga_data), top, bot);
2779 }
2780 else
2781 {
2782 /* 2: truncate fold at "top". */
2783 fp->fd_len = top - fp->fd_top;
2784 }
2785 fold_changed = TRUE;
2786 continue;
2787 }
2788 if (fp >= (fold_T *)(gap->ga_data) + gap->ga_len
2789 || fp->fd_top > bot)
2790 {
2791 /* 6: Found a fold below bot, can stop looking. */
2792 break;
2793 }
2794 if (fp->fd_top >= top)
2795 {
2796 /* Found an entry below top. */
2797 fold_changed = TRUE;
2798 if (fp->fd_top + fp->fd_len > bot)
2799 {
2800 /* 5: Make fold that includes bot start below bot. */
2801 foldMarkAdjustRecurse(&fp->fd_nested,
2802 (linenr_T)0, (long)(bot - fp->fd_top),
2803 (linenr_T)MAXLNUM, (long)(fp->fd_top - bot - 1));
2804 fp->fd_len -= bot - fp->fd_top + 1;
2805 fp->fd_top = bot + 1;
2806 break;
2807 }
2808
2809 /* 4: Delete completely contained fold. */
2810 deleteFoldEntry(gap, (int)(fp - (fold_T *)gap->ga_data), TRUE);
2811 }
2812 }
2813}
2814
2815/* foldMerge() {{{2 */
2816/*
2817 * Merge two adjecent folds (and the nested ones in them).
2818 * This only works correctly when the folds are really adjecent! Thus "fp1"
2819 * must end just above "fp2".
2820 * The resulting fold is "fp1", nested folds are moved from "fp2" to "fp1".
2821 * Fold entry "fp2" in "gap" is deleted.
2822 */
2823 static void
2824foldMerge(fp1, gap, fp2)
2825 fold_T *fp1;
2826 garray_T *gap;
2827 fold_T *fp2;
2828{
2829 fold_T *fp3;
2830 fold_T *fp4;
2831 int idx;
2832 garray_T *gap1 = &fp1->fd_nested;
2833 garray_T *gap2 = &fp2->fd_nested;
2834
2835 /* If the last nested fold in fp1 touches the first nested fold in fp2,
2836 * merge them recursively. */
2837 if (foldFind(gap1, fp1->fd_len - 1L, &fp3) && foldFind(gap2, 0L, &fp4))
2838 foldMerge(fp3, gap2, fp4);
2839
2840 /* Move nested folds in fp2 to the end of fp1. */
2841 if (gap2->ga_len > 0 && ga_grow(gap1, gap2->ga_len) == OK)
2842 {
2843 for (idx = 0; idx < gap2->ga_len; ++idx)
2844 {
2845 ((fold_T *)gap1->ga_data)[gap1->ga_len]
2846 = ((fold_T *)gap2->ga_data)[idx];
2847 ((fold_T *)gap1->ga_data)[gap1->ga_len].fd_top += fp1->fd_len;
2848 ++gap1->ga_len;
2849 --gap1->ga_room;
2850 }
2851 gap2->ga_len = 0;
2852 /* fp2->fd_nested.ga_room isn't updated, we delete it below */
2853 }
2854
2855 fp1->fd_len += fp2->fd_len;
2856 deleteFoldEntry(gap, (int)(fp2 - (fold_T *)gap->ga_data), TRUE);
2857 fold_changed = TRUE;
2858}
2859
2860/* foldlevelIndent() {{{2 */
2861/*
2862 * Low level function to get the foldlevel for the "indent" method.
2863 * Doesn't use any caching.
2864 * Returns a level of -1 if the foldlevel depends on surrounding lines.
2865 */
2866 static void
2867foldlevelIndent(flp)
2868 fline_T *flp;
2869{
2870 char_u *s;
2871 buf_T *buf;
2872 linenr_T lnum = flp->lnum + flp->off;
2873
2874 buf = flp->wp->w_buffer;
2875 s = skipwhite(ml_get_buf(buf, lnum, FALSE));
2876
2877 /* empty line or lines starting with a character in 'foldignore': level
2878 * depends on surrounding lines */
2879 if (*s == NUL || vim_strchr(flp->wp->w_p_fdi, *s) != NULL)
2880 {
2881 /* first and last line can't be undefined, use level 0 */
2882 if (lnum == 1 || lnum == buf->b_ml.ml_line_count)
2883 flp->lvl = 0;
2884 else
2885 flp->lvl = -1;
2886 }
2887 else
2888 flp->lvl = get_indent_buf(buf, lnum) / buf->b_p_sw;
2889 if (flp->lvl > flp->wp->w_p_fdn)
2890 flp->lvl = flp->wp->w_p_fdn;
2891}
2892
2893/* foldlevelDiff() {{{2 */
2894#ifdef FEAT_DIFF
2895/*
2896 * Low level function to get the foldlevel for the "diff" method.
2897 * Doesn't use any caching.
2898 */
2899 static void
2900foldlevelDiff(flp)
2901 fline_T *flp;
2902{
2903 if (diff_infold(flp->wp, flp->lnum + flp->off))
2904 flp->lvl = 1;
2905 else
2906 flp->lvl = 0;
2907}
2908#endif
2909
2910/* foldlevelExpr() {{{2 */
2911/*
2912 * Low level function to get the foldlevel for the "expr" method.
2913 * Doesn't use any caching.
2914 * Returns a level of -1 if the foldlevel depends on surrounding lines.
2915 */
2916 static void
2917foldlevelExpr(flp)
2918 fline_T *flp;
2919{
2920#ifndef FEAT_EVAL
2921 flp->start = FALSE;
2922 flp->lvl = 0;
2923#else
2924 win_T *win;
2925 int n;
2926 int c;
2927 linenr_T lnum = flp->lnum + flp->off;
2928 int save_keytyped;
2929
2930 win = curwin;
2931 curwin = flp->wp;
2932 curbuf = flp->wp->w_buffer;
2933 set_vim_var_nr(VV_LNUM, lnum);
2934
2935 flp->start = 0;
2936 flp->had_end = flp->end;
2937 flp->end = MAX_LEVEL + 1;
2938 if (lnum <= 1)
2939 flp->lvl = 0;
2940
2941 /* KeyTyped may be reset to 0 when calling a function which invokes
2942 * do_cmdline(). To make 'foldopen' work correctly restore KeyTyped. */
2943 save_keytyped = KeyTyped;
2944 n = eval_foldexpr(flp->wp->w_p_fde, &c);
2945 KeyTyped = save_keytyped;
2946
2947 switch (c)
2948 {
2949 /* "a1", "a2", .. : add to the fold level */
2950 case 'a': if (flp->lvl >= 0)
2951 {
2952 flp->lvl += n;
2953 flp->lvl_next = flp->lvl;
2954 }
2955 flp->start = n;
2956 break;
2957
2958 /* "s1", "s2", .. : subtract from the fold level */
2959 case 's': if (flp->lvl >= 0)
2960 {
2961 if (n > flp->lvl)
2962 flp->lvl_next = 0;
2963 else
2964 flp->lvl_next = flp->lvl - n;
2965 flp->end = flp->lvl_next + 1;
2966 }
2967 break;
2968
2969 /* ">1", ">2", .. : start a fold with a certain level */
2970 case '>': flp->lvl = n;
2971 flp->lvl_next = n;
2972 flp->start = 1;
2973 break;
2974
2975 /* "<1", "<2", .. : end a fold with a certain level */
2976 case '<': flp->lvl_next = n - 1;
2977 flp->end = n;
2978 break;
2979
2980 /* "=": No change in level */
2981 case '=': flp->lvl_next = flp->lvl;
2982 break;
2983
2984 /* "-1", "0", "1", ..: set fold level */
2985 default: if (n < 0)
2986 /* Use the current level for the next line, so that "a1"
2987 * will work there. */
2988 flp->lvl_next = flp->lvl;
2989 else
2990 flp->lvl_next = n;
2991 flp->lvl = n;
2992 break;
2993 }
2994
2995 /* If the level is unknown for the first or the last line in the file, use
2996 * level 0. */
2997 if (flp->lvl < 0)
2998 {
2999 if (lnum <= 1)
3000 {
3001 flp->lvl = 0;
3002 flp->lvl_next = 0;
3003 }
3004 if (lnum == curbuf->b_ml.ml_line_count)
3005 flp->lvl_next = 0;
3006 }
3007
3008 curwin = win;
3009 curbuf = curwin->w_buffer;
3010#endif
3011}
3012
3013/* parseMarker() {{{2 */
3014/*
3015 * Parse 'foldmarker' and set "foldendmarker", "foldstartmarkerlen" and
3016 * "foldendmarkerlen".
3017 * Relies on the option value to have been checked for correctness already.
3018 */
3019 static void
3020parseMarker(wp)
3021 win_T *wp;
3022{
3023 foldendmarker = vim_strchr(wp->w_p_fmr, ',');
3024 foldstartmarkerlen = (int)(foldendmarker++ - wp->w_p_fmr);
3025 foldendmarkerlen = (int)STRLEN(foldendmarker);
3026}
3027
3028/* foldlevelMarker() {{{2 */
3029/*
3030 * Low level function to get the foldlevel for the "marker" method.
3031 * "foldendmarker", "foldstartmarkerlen" and "foldendmarkerlen" must have been
3032 * set before calling this.
3033 * Requires that flp->lvl is set to the fold level of the previous line!
3034 * Careful: This means you can't call this function twice on the same line.
3035 * Doesn't use any caching.
3036 * Sets flp->start when a start marker was found.
3037 */
3038 static void
3039foldlevelMarker(flp)
3040 fline_T *flp;
3041{
3042 char_u *startmarker;
3043 int cstart;
3044 int cend;
3045 int start_lvl = flp->lvl;
3046 char_u *s;
3047 int n;
3048
3049 /* cache a few values for speed */
3050 startmarker = flp->wp->w_p_fmr;
3051 cstart = *startmarker;
3052 ++startmarker;
3053 cend = *foldendmarker;
3054
3055 /* Default: no start found, next level is same as current level */
3056 flp->start = 0;
3057 flp->lvl_next = flp->lvl;
3058
3059 s = ml_get_buf(flp->wp->w_buffer, flp->lnum + flp->off, FALSE);
3060 while (*s)
3061 {
3062 if (*s == cstart
3063 && STRNCMP(s + 1, startmarker, foldstartmarkerlen - 1) == 0)
3064 {
3065 /* found startmarker: set flp->lvl */
3066 s += foldstartmarkerlen;
3067 if (VIM_ISDIGIT(*s))
3068 {
3069 n = atoi((char *)s);
3070 if (n > 0)
3071 {
3072 flp->lvl = n;
3073 flp->lvl_next = n;
3074 if (n <= start_lvl)
3075 flp->start = 1;
3076 else
3077 flp->start = n - start_lvl;
3078 }
3079 }
3080 else
3081 {
3082 ++flp->lvl;
3083 ++flp->lvl_next;
3084 ++flp->start;
3085 }
3086 }
3087 else if (*s == cend
3088 && STRNCMP(s + 1, foldendmarker + 1, foldendmarkerlen - 1) == 0)
3089 {
3090 /* found endmarker: set flp->lvl_next */
3091 s += foldendmarkerlen;
3092 if (VIM_ISDIGIT(*s))
3093 {
3094 n = atoi((char *)s);
3095 if (n > 0)
3096 {
3097 flp->lvl = n;
3098 flp->lvl_next = n - 1;
3099 /* never start a fold with an end marker */
3100 if (flp->lvl_next > flp->lvl)
3101 flp->lvl_next = flp->lvl;
3102 }
3103 }
3104 else
3105 --flp->lvl_next;
3106 }
3107 else
3108 ++s;
3109 }
3110
3111 /* The level can't go negative, must be missing a start marker. */
3112 if (flp->lvl_next < 0)
3113 flp->lvl_next = 0;
3114}
3115
3116/* foldlevelSyntax() {{{2 */
3117/*
3118 * Low level function to get the foldlevel for the "syntax" method.
3119 * Doesn't use any caching.
3120 */
3121 static void
3122foldlevelSyntax(flp)
3123 fline_T *flp;
3124{
3125#ifndef FEAT_SYN_HL
3126 flp->start = 0;
3127 flp->lvl = 0;
3128#else
3129 linenr_T lnum = flp->lnum + flp->off;
3130 int n;
3131
3132 /* Use the maximum fold level at the start of this line and the next. */
3133 flp->lvl = syn_get_foldlevel(flp->wp, lnum);
3134 flp->start = 0;
3135 if (lnum < flp->wp->w_buffer->b_ml.ml_line_count)
3136 {
3137 n = syn_get_foldlevel(flp->wp, lnum + 1);
3138 if (n > flp->lvl)
3139 {
3140 flp->start = n - flp->lvl; /* fold(s) start here */
3141 flp->lvl = n;
3142 }
3143 }
3144#endif
3145}
3146
3147/* functions for storing the fold state in a View {{{1 */
3148/* put_folds() {{{2 */
3149#if defined(FEAT_SESSION) || defined(PROTO)
3150static int put_folds_recurse __ARGS((FILE *fd, garray_T *gap, linenr_T off));
3151static int put_foldopen_recurse __ARGS((FILE *fd, garray_T *gap, linenr_T off));
3152
3153/*
3154 * Write commands to "fd" to restore the manual folds in window "wp".
3155 * Return FAIL if writing fails.
3156 */
3157 int
3158put_folds(fd, wp)
3159 FILE *fd;
3160 win_T *wp;
3161{
3162 if (foldmethodIsManual(wp))
3163 {
3164 if (put_line(fd, "silent! normal! zE") == FAIL
3165 || put_folds_recurse(fd, &wp->w_folds, (linenr_T)0) == FAIL)
3166 return FAIL;
3167 }
3168
3169 /* If some folds are manually opened/closed, need to restore that. */
3170 if (wp->w_fold_manual)
3171 return put_foldopen_recurse(fd, &wp->w_folds, (linenr_T)0);
3172
3173 return OK;
3174}
3175
3176/* put_folds_recurse() {{{2 */
3177/*
3178 * Write commands to "fd" to recreate manually created folds.
3179 * Returns FAIL when writing failed.
3180 */
3181 static int
3182put_folds_recurse(fd, gap, off)
3183 FILE *fd;
3184 garray_T *gap;
3185 linenr_T off;
3186{
3187 int i;
3188 fold_T *fp;
3189
3190 fp = (fold_T *)gap->ga_data;
3191 for (i = 0; i < gap->ga_len; i++)
3192 {
3193 /* Do nested folds first, they will be created closed. */
3194 if (put_folds_recurse(fd, &fp->fd_nested, off + fp->fd_top) == FAIL)
3195 return FAIL;
3196 if (fprintf(fd, "%ld,%ldfold", fp->fd_top + off,
3197 fp->fd_top + off + fp->fd_len - 1) < 0
3198 || put_eol(fd) == FAIL)
3199 return FAIL;
3200 ++fp;
3201 }
3202 return OK;
3203}
3204
3205/* put_foldopen_recurse() {{{2 */
3206/*
3207 * Write commands to "fd" to open and close manually opened/closed folds.
3208 * Returns FAIL when writing failed.
3209 */
3210 static int
3211put_foldopen_recurse(fd, gap, off)
3212 FILE *fd;
3213 garray_T *gap;
3214 linenr_T off;
3215{
3216 int i;
3217 fold_T *fp;
3218
3219 fp = (fold_T *)gap->ga_data;
3220 for (i = 0; i < gap->ga_len; i++)
3221 {
3222 if (fp->fd_flags != FD_LEVEL)
3223 {
3224 if (fp->fd_nested.ga_len > 0)
3225 {
3226 /* open/close nested folds while this fold is open */
3227 if (fprintf(fd, "%ld", fp->fd_top + off) < 0
3228 || put_eol(fd) == FAIL
3229 || put_line(fd, "normal zo") == FAIL)
3230 return FAIL;
3231 if (put_foldopen_recurse(fd, &fp->fd_nested, off + fp->fd_top)
3232 == FAIL)
3233 return FAIL;
3234 }
3235 if (fprintf(fd, "%ld", fp->fd_top + off) < 0
3236 || put_eol(fd) == FAIL
3237 || fprintf(fd, "normal z%c",
3238 fp->fd_flags == FD_CLOSED ? 'c' : 'o') < 0
3239 || put_eol(fd) == FAIL)
3240 return FAIL;
3241 }
3242 ++fp;
3243 }
3244
3245 return OK;
3246}
3247#endif /* FEAT_SESSION */
3248
3249/* }}}1 */
3250#endif /* defined(FEAT_FOLDING) || defined(PROTO) */