Merge branch 'vim' into relativenumber
[vim_extended.git] / src / misc2.c
blobaeaa780cb9aba90efa702ed30c422f6e12344f5a
1 /* vi:set ts=8 sts=4 sw=4:
3 * VIM - Vi IMproved by Bram Moolenaar
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 */
11 * misc2.c: Various functions.
13 #include "vim.h"
15 static char_u *username = NULL; /* cached result of mch_get_user_name() */
17 static char_u *ff_expand_buffer = NULL; /* used for expanding filenames */
19 #if defined(FEAT_VIRTUALEDIT) || defined(PROTO)
20 static int coladvance2 __ARGS((pos_T *pos, int addspaces, int finetune, colnr_T wcol));
23 * Return TRUE if in the current mode we need to use virtual.
25 int
26 virtual_active()
28 /* While an operator is being executed we return "virtual_op", because
29 * VIsual_active has already been reset, thus we can't check for "block"
30 * being used. */
31 if (virtual_op != MAYBE)
32 return virtual_op;
33 return (ve_flags == VE_ALL
34 # ifdef FEAT_VISUAL
35 || ((ve_flags & VE_BLOCK) && VIsual_active && VIsual_mode == Ctrl_V)
36 # endif
37 || ((ve_flags & VE_INSERT) && (State & INSERT)));
41 * Get the screen position of the cursor.
43 int
44 getviscol()
46 colnr_T x;
48 getvvcol(curwin, &curwin->w_cursor, &x, NULL, NULL);
49 return (int)x;
53 * Get the screen position of character col with a coladd in the cursor line.
55 int
56 getviscol2(col, coladd)
57 colnr_T col;
58 colnr_T coladd;
60 colnr_T x;
61 pos_T pos;
63 pos.lnum = curwin->w_cursor.lnum;
64 pos.col = col;
65 pos.coladd = coladd;
66 getvvcol(curwin, &pos, &x, NULL, NULL);
67 return (int)x;
71 * Go to column "wcol", and add/insert white space as necessary to get the
72 * cursor in that column.
73 * The caller must have saved the cursor line for undo!
75 int
76 coladvance_force(wcol)
77 colnr_T wcol;
79 int rc = coladvance2(&curwin->w_cursor, TRUE, FALSE, wcol);
81 if (wcol == MAXCOL)
82 curwin->w_valid &= ~VALID_VIRTCOL;
83 else
85 /* Virtcol is valid */
86 curwin->w_valid |= VALID_VIRTCOL;
87 curwin->w_virtcol = wcol;
89 return rc;
91 #endif
94 * Try to advance the Cursor to the specified screen column.
95 * If virtual editing: fine tune the cursor position.
96 * Note that all virtual positions off the end of a line should share
97 * a curwin->w_cursor.col value (n.b. this is equal to STRLEN(line)),
98 * beginning at coladd 0.
100 * return OK if desired column is reached, FAIL if not
103 coladvance(wcol)
104 colnr_T wcol;
106 int rc = getvpos(&curwin->w_cursor, wcol);
108 if (wcol == MAXCOL || rc == FAIL)
109 curwin->w_valid &= ~VALID_VIRTCOL;
110 else if (*ml_get_cursor() != TAB)
112 /* Virtcol is valid when not on a TAB */
113 curwin->w_valid |= VALID_VIRTCOL;
114 curwin->w_virtcol = wcol;
116 return rc;
120 * Return in "pos" the position of the cursor advanced to screen column "wcol".
121 * return OK if desired column is reached, FAIL if not
124 getvpos(pos, wcol)
125 pos_T *pos;
126 colnr_T wcol;
128 #ifdef FEAT_VIRTUALEDIT
129 return coladvance2(pos, FALSE, virtual_active(), wcol);
132 static int
133 coladvance2(pos, addspaces, finetune, wcol)
134 pos_T *pos;
135 int addspaces; /* change the text to achieve our goal? */
136 int finetune; /* change char offset for the exact column */
137 colnr_T wcol; /* column to move to */
139 #endif
140 int idx;
141 char_u *ptr;
142 char_u *line;
143 colnr_T col = 0;
144 int csize = 0;
145 int one_more;
146 #ifdef FEAT_LINEBREAK
147 int head = 0;
148 #endif
150 one_more = (State & INSERT)
151 || restart_edit != NUL
152 #ifdef FEAT_VISUAL
153 || (VIsual_active && *p_sel != 'o')
154 #endif
155 #ifdef FEAT_VIRTUALEDIT
156 || ((ve_flags & VE_ONEMORE) && wcol < MAXCOL)
157 #endif
159 line = ml_get_curline();
161 if (wcol >= MAXCOL)
163 idx = (int)STRLEN(line) - 1 + one_more;
164 col = wcol;
166 #ifdef FEAT_VIRTUALEDIT
167 if ((addspaces || finetune) && !VIsual_active)
169 curwin->w_curswant = linetabsize(line) + one_more;
170 if (curwin->w_curswant > 0)
171 --curwin->w_curswant;
173 #endif
175 else
177 #ifdef FEAT_VIRTUALEDIT
178 int width = W_WIDTH(curwin) - win_col_off(curwin);
180 if (finetune
181 && curwin->w_p_wrap
182 # ifdef FEAT_VERTSPLIT
183 && curwin->w_width != 0
184 # endif
185 && wcol >= (colnr_T)width)
187 csize = linetabsize(line);
188 if (csize > 0)
189 csize--;
191 if (wcol / width > (colnr_T)csize / width
192 && ((State & INSERT) == 0 || (int)wcol > csize + 1))
194 /* In case of line wrapping don't move the cursor beyond the
195 * right screen edge. In Insert mode allow going just beyond
196 * the last character (like what happens when typing and
197 * reaching the right window edge). */
198 wcol = (csize / width + 1) * width - 1;
201 #endif
203 idx = -1;
204 ptr = line;
205 while (col <= wcol && *ptr != NUL)
207 /* Count a tab for what it's worth (if list mode not on) */
208 #ifdef FEAT_LINEBREAK
209 csize = win_lbr_chartabsize(curwin, ptr, col, &head);
210 mb_ptr_adv(ptr);
211 #else
212 csize = lbr_chartabsize_adv(&ptr, col);
213 #endif
214 col += csize;
216 idx = (int)(ptr - line);
218 * Handle all the special cases. The virtual_active() check
219 * is needed to ensure that a virtual position off the end of
220 * a line has the correct indexing. The one_more comparison
221 * replaces an explicit add of one_more later on.
223 if (col > wcol || (!virtual_active() && one_more == 0))
225 idx -= 1;
226 # ifdef FEAT_LINEBREAK
227 /* Don't count the chars from 'showbreak'. */
228 csize -= head;
229 # endif
230 col -= csize;
233 #ifdef FEAT_VIRTUALEDIT
234 if (virtual_active()
235 && addspaces
236 && ((col != wcol && col != wcol + 1) || csize > 1))
238 /* 'virtualedit' is set: The difference between wcol and col is
239 * filled with spaces. */
241 if (line[idx] == NUL)
243 /* Append spaces */
244 int correct = wcol - col;
245 char_u *newline = alloc(idx + correct + 1);
246 int t;
248 if (newline == NULL)
249 return FAIL;
251 for (t = 0; t < idx; ++t)
252 newline[t] = line[t];
254 for (t = 0; t < correct; ++t)
255 newline[t + idx] = ' ';
257 newline[idx + correct] = NUL;
259 ml_replace(pos->lnum, newline, FALSE);
260 changed_bytes(pos->lnum, (colnr_T)idx);
261 idx += correct;
262 col = wcol;
264 else
266 /* Break a tab */
267 int linelen = (int)STRLEN(line);
268 int correct = wcol - col - csize + 1; /* negative!! */
269 char_u *newline;
270 int t, s = 0;
271 int v;
273 if (-correct > csize)
274 return FAIL;
276 newline = alloc(linelen + csize);
277 if (newline == NULL)
278 return FAIL;
280 for (t = 0; t < linelen; t++)
282 if (t != idx)
283 newline[s++] = line[t];
284 else
285 for (v = 0; v < csize; v++)
286 newline[s++] = ' ';
289 newline[linelen + csize - 1] = NUL;
291 ml_replace(pos->lnum, newline, FALSE);
292 changed_bytes(pos->lnum, idx);
293 idx += (csize - 1 + correct);
294 col += correct;
297 #endif
300 if (idx < 0)
301 pos->col = 0;
302 else
303 pos->col = idx;
305 #ifdef FEAT_VIRTUALEDIT
306 pos->coladd = 0;
308 if (finetune)
310 if (wcol == MAXCOL)
312 /* The width of the last character is used to set coladd. */
313 if (!one_more)
315 colnr_T scol, ecol;
317 getvcol(curwin, pos, &scol, NULL, &ecol);
318 pos->coladd = ecol - scol;
321 else
323 int b = (int)wcol - (int)col;
325 /* The difference between wcol and col is used to set coladd. */
326 if (b > 0 && b < (MAXCOL - 2 * W_WIDTH(curwin)))
327 pos->coladd = b;
329 col += b;
332 #endif
334 #ifdef FEAT_MBYTE
335 /* prevent cursor from moving on the trail byte */
336 if (has_mbyte)
337 mb_adjust_cursor();
338 #endif
340 if (col < wcol)
341 return FAIL;
342 return OK;
346 * Increment the cursor position. See inc() for return values.
349 inc_cursor()
351 return inc(&curwin->w_cursor);
355 * Increment the line pointer "lp" crossing line boundaries as necessary.
356 * Return 1 when going to the next line.
357 * Return 2 when moving forward onto a NUL at the end of the line).
358 * Return -1 when at the end of file.
359 * Return 0 otherwise.
362 inc(lp)
363 pos_T *lp;
365 char_u *p = ml_get_pos(lp);
367 if (*p != NUL) /* still within line, move to next char (may be NUL) */
369 #ifdef FEAT_MBYTE
370 if (has_mbyte)
372 int l = (*mb_ptr2len)(p);
374 lp->col += l;
375 return ((p[l] != NUL) ? 0 : 2);
377 #endif
378 lp->col++;
379 #ifdef FEAT_VIRTUALEDIT
380 lp->coladd = 0;
381 #endif
382 return ((p[1] != NUL) ? 0 : 2);
384 if (lp->lnum != curbuf->b_ml.ml_line_count) /* there is a next line */
386 lp->col = 0;
387 lp->lnum++;
388 #ifdef FEAT_VIRTUALEDIT
389 lp->coladd = 0;
390 #endif
391 return 1;
393 return -1;
397 * incl(lp): same as inc(), but skip the NUL at the end of non-empty lines
400 incl(lp)
401 pos_T *lp;
403 int r;
405 if ((r = inc(lp)) >= 1 && lp->col)
406 r = inc(lp);
407 return r;
411 * dec(p)
413 * Decrement the line pointer 'p' crossing line boundaries as necessary.
414 * Return 1 when crossing a line, -1 when at start of file, 0 otherwise.
417 dec_cursor()
419 return dec(&curwin->w_cursor);
423 dec(lp)
424 pos_T *lp;
426 char_u *p;
428 #ifdef FEAT_VIRTUALEDIT
429 lp->coladd = 0;
430 #endif
431 if (lp->col > 0) /* still within line */
433 lp->col--;
434 #ifdef FEAT_MBYTE
435 if (has_mbyte)
437 p = ml_get(lp->lnum);
438 lp->col -= (*mb_head_off)(p, p + lp->col);
440 #endif
441 return 0;
443 if (lp->lnum > 1) /* there is a prior line */
445 lp->lnum--;
446 p = ml_get(lp->lnum);
447 lp->col = (colnr_T)STRLEN(p);
448 #ifdef FEAT_MBYTE
449 if (has_mbyte)
450 lp->col -= (*mb_head_off)(p, p + lp->col);
451 #endif
452 return 1;
454 return -1; /* at start of file */
458 * decl(lp): same as dec(), but skip the NUL at the end of non-empty lines
461 decl(lp)
462 pos_T *lp;
464 int r;
466 if ((r = dec(lp)) == 1 && lp->col)
467 r = dec(lp);
468 return r;
472 * Get the line number relative to the actual cursor position, i.e. the
473 * difference between line number and cursor position. Only look for lines that
474 * can be visible, folded lines don't count.
476 linenr_T
477 get_cursor_rel_lnum(wp, lnum)
478 win_T *wp;
479 linenr_T lnum; /* line number to get the result for */
481 linenr_T cursor = wp->w_cursor.lnum;
482 linenr_T retval = 0;
484 #ifdef FEAT_FOLDING
485 if (hasAnyFolding(wp))
487 if (lnum > cursor)
489 while (lnum > cursor)
491 (void)hasFolding(lnum, &lnum, NULL);
492 /* if lnum and cursor are in the same fold,
493 * now lnum <= cursor */
494 if (lnum > cursor)
495 retval++;
496 lnum--;
499 else if (lnum < cursor)
501 while (lnum < cursor)
503 (void)hasFolding(lnum, NULL, &lnum);
504 /* if lnum and cursor are in the same fold,
505 * now lnum >= cursor */
506 if (lnum < cursor)
507 retval--;
508 lnum++;
511 /* else if (lnum == cursor)
512 * retval = 0;
515 else
516 #endif
517 retval = lnum - cursor;
519 return retval;
523 * Make sure curwin->w_cursor.lnum is valid.
525 void
526 check_cursor_lnum()
528 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
530 #ifdef FEAT_FOLDING
531 /* If there is a closed fold at the end of the file, put the cursor in
532 * its first line. Otherwise in the last line. */
533 if (!hasFolding(curbuf->b_ml.ml_line_count,
534 &curwin->w_cursor.lnum, NULL))
535 #endif
536 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
538 if (curwin->w_cursor.lnum <= 0)
539 curwin->w_cursor.lnum = 1;
543 * Make sure curwin->w_cursor.col is valid.
545 void
546 check_cursor_col()
548 colnr_T len;
549 #ifdef FEAT_VIRTUALEDIT
550 colnr_T oldcol = curwin->w_cursor.col + curwin->w_cursor.coladd;
551 #endif
553 len = (colnr_T)STRLEN(ml_get_curline());
554 if (len == 0)
555 curwin->w_cursor.col = 0;
556 else if (curwin->w_cursor.col >= len)
558 /* Allow cursor past end-of-line when:
559 * - in Insert mode or restarting Insert mode
560 * - in Visual mode and 'selection' isn't "old"
561 * - 'virtualedit' is set */
562 if ((State & INSERT) || restart_edit
563 #ifdef FEAT_VISUAL
564 || (VIsual_active && *p_sel != 'o')
565 #endif
566 #ifdef FEAT_VIRTUALEDIT
567 || (ve_flags & VE_ONEMORE)
568 #endif
569 || virtual_active())
570 curwin->w_cursor.col = len;
571 else
573 curwin->w_cursor.col = len - 1;
574 #ifdef FEAT_MBYTE
575 /* prevent cursor from moving on the trail byte */
576 if (has_mbyte)
577 mb_adjust_cursor();
578 #endif
582 #ifdef FEAT_VIRTUALEDIT
583 /* If virtual editing is on, we can leave the cursor on the old position,
584 * only we must set it to virtual. But don't do it when at the end of the
585 * line. */
586 if (oldcol == MAXCOL)
587 curwin->w_cursor.coladd = 0;
588 else if (ve_flags == VE_ALL)
589 curwin->w_cursor.coladd = oldcol - curwin->w_cursor.col;
590 #endif
594 * make sure curwin->w_cursor in on a valid character
596 void
597 check_cursor()
599 check_cursor_lnum();
600 check_cursor_col();
603 #if defined(FEAT_TEXTOBJ) || defined(PROTO)
605 * Make sure curwin->w_cursor is not on the NUL at the end of the line.
606 * Allow it when in Visual mode and 'selection' is not "old".
608 void
609 adjust_cursor_col()
611 if (curwin->w_cursor.col > 0
612 # ifdef FEAT_VISUAL
613 && (!VIsual_active || *p_sel == 'o')
614 # endif
615 && gchar_cursor() == NUL)
616 --curwin->w_cursor.col;
618 #endif
621 * When curwin->w_leftcol has changed, adjust the cursor position.
622 * Return TRUE if the cursor was moved.
625 leftcol_changed()
627 long lastcol;
628 colnr_T s, e;
629 int retval = FALSE;
631 changed_cline_bef_curs();
632 lastcol = curwin->w_leftcol + W_WIDTH(curwin) - curwin_col_off() - 1;
633 validate_virtcol();
636 * If the cursor is right or left of the screen, move it to last or first
637 * character.
639 if (curwin->w_virtcol > (colnr_T)(lastcol - p_siso))
641 retval = TRUE;
642 coladvance((colnr_T)(lastcol - p_siso));
644 else if (curwin->w_virtcol < curwin->w_leftcol + p_siso)
646 retval = TRUE;
647 (void)coladvance((colnr_T)(curwin->w_leftcol + p_siso));
651 * If the start of the character under the cursor is not on the screen,
652 * advance the cursor one more char. If this fails (last char of the
653 * line) adjust the scrolling.
655 getvvcol(curwin, &curwin->w_cursor, &s, NULL, &e);
656 if (e > (colnr_T)lastcol)
658 retval = TRUE;
659 coladvance(s - 1);
661 else if (s < curwin->w_leftcol)
663 retval = TRUE;
664 if (coladvance(e + 1) == FAIL) /* there isn't another character */
666 curwin->w_leftcol = s; /* adjust w_leftcol instead */
667 changed_cline_bef_curs();
671 if (retval)
672 curwin->w_set_curswant = TRUE;
673 redraw_later(NOT_VALID);
674 return retval;
677 /**********************************************************************
678 * Various routines dealing with allocation and deallocation of memory.
681 #if defined(MEM_PROFILE) || defined(PROTO)
683 # define MEM_SIZES 8200
684 static long_u mem_allocs[MEM_SIZES];
685 static long_u mem_frees[MEM_SIZES];
686 static long_u mem_allocated;
687 static long_u mem_freed;
688 static long_u mem_peak;
689 static long_u num_alloc;
690 static long_u num_freed;
692 static void mem_pre_alloc_s __ARGS((size_t *sizep));
693 static void mem_pre_alloc_l __ARGS((long_u *sizep));
694 static void mem_post_alloc __ARGS((void **pp, size_t size));
695 static void mem_pre_free __ARGS((void **pp));
697 static void
698 mem_pre_alloc_s(sizep)
699 size_t *sizep;
701 *sizep += sizeof(size_t);
704 static void
705 mem_pre_alloc_l(sizep)
706 long_u *sizep;
708 *sizep += sizeof(size_t);
711 static void
712 mem_post_alloc(pp, size)
713 void **pp;
714 size_t size;
716 if (*pp == NULL)
717 return;
718 size -= sizeof(size_t);
719 *(long_u *)*pp = size;
720 if (size <= MEM_SIZES-1)
721 mem_allocs[size-1]++;
722 else
723 mem_allocs[MEM_SIZES-1]++;
724 mem_allocated += size;
725 if (mem_allocated - mem_freed > mem_peak)
726 mem_peak = mem_allocated - mem_freed;
727 num_alloc++;
728 *pp = (void *)((char *)*pp + sizeof(size_t));
731 static void
732 mem_pre_free(pp)
733 void **pp;
735 long_u size;
737 *pp = (void *)((char *)*pp - sizeof(size_t));
738 size = *(size_t *)*pp;
739 if (size <= MEM_SIZES-1)
740 mem_frees[size-1]++;
741 else
742 mem_frees[MEM_SIZES-1]++;
743 mem_freed += size;
744 num_freed++;
748 * called on exit via atexit()
750 void
751 vim_mem_profile_dump()
753 int i, j;
755 printf("\r\n");
756 j = 0;
757 for (i = 0; i < MEM_SIZES - 1; i++)
759 if (mem_allocs[i] || mem_frees[i])
761 if (mem_frees[i] > mem_allocs[i])
762 printf("\r\n%s", _("ERROR: "));
763 printf("[%4d / %4lu-%-4lu] ", i + 1, mem_allocs[i], mem_frees[i]);
764 j++;
765 if (j > 3)
767 j = 0;
768 printf("\r\n");
773 i = MEM_SIZES - 1;
774 if (mem_allocs[i])
776 printf("\r\n");
777 if (mem_frees[i] > mem_allocs[i])
778 printf(_("ERROR: "));
779 printf("[>%d / %4lu-%-4lu]", i, mem_allocs[i], mem_frees[i]);
782 printf(_("\n[bytes] total alloc-freed %lu-%lu, in use %lu, peak use %lu\n"),
783 mem_allocated, mem_freed, mem_allocated - mem_freed, mem_peak);
784 printf(_("[calls] total re/malloc()'s %lu, total free()'s %lu\n\n"),
785 num_alloc, num_freed);
788 #endif /* MEM_PROFILE */
791 * Some memory is reserved for error messages and for being able to
792 * call mf_release_all(), which needs some memory for mf_trans_add().
794 #if defined(MSDOS) && !defined(DJGPP)
795 # define SMALL_MEM
796 # define KEEP_ROOM 8192L
797 #else
798 # define KEEP_ROOM (2 * 8192L)
799 #endif
802 * Note: if unsigned is 16 bits we can only allocate up to 64K with alloc().
803 * Use lalloc for larger blocks.
805 char_u *
806 alloc(size)
807 unsigned size;
809 return (lalloc((long_u)size, TRUE));
813 * Allocate memory and set all bytes to zero.
815 char_u *
816 alloc_clear(size)
817 unsigned size;
819 char_u *p;
821 p = (lalloc((long_u)size, TRUE));
822 if (p != NULL)
823 (void)vim_memset(p, 0, (size_t)size);
824 return p;
828 * alloc() with check for maximum line length
830 char_u *
831 alloc_check(size)
832 unsigned size;
834 #if !defined(UNIX) && !defined(__EMX__)
835 if (sizeof(int) == 2 && size > 0x7fff)
837 /* Don't hide this message */
838 emsg_silent = 0;
839 EMSG(_("E340: Line is becoming too long"));
840 return NULL;
842 #endif
843 return (lalloc((long_u)size, TRUE));
847 * Allocate memory like lalloc() and set all bytes to zero.
849 char_u *
850 lalloc_clear(size, message)
851 long_u size;
852 int message;
854 char_u *p;
856 p = (lalloc(size, message));
857 if (p != NULL)
858 (void)vim_memset(p, 0, (size_t)size);
859 return p;
863 * Low level memory allocation function.
864 * This is used often, KEEP IT FAST!
866 char_u *
867 lalloc(size, message)
868 long_u size;
869 int message;
871 char_u *p; /* pointer to new storage space */
872 static int releasing = FALSE; /* don't do mf_release_all() recursive */
873 int try_again;
874 #if defined(HAVE_AVAIL_MEM) && !defined(SMALL_MEM)
875 static long_u allocated = 0; /* allocated since last avail check */
876 #endif
878 /* Safety check for allocating zero bytes */
879 if (size == 0)
881 /* Don't hide this message */
882 emsg_silent = 0;
883 EMSGN(_("E341: Internal error: lalloc(%ld, )"), size);
884 return NULL;
887 #ifdef MEM_PROFILE
888 mem_pre_alloc_l(&size);
889 #endif
891 #if defined(MSDOS) && !defined(DJGPP)
892 if (size >= 0xfff0) /* in MSDOS we can't deal with >64K blocks */
893 p = NULL;
894 else
895 #endif
898 * Loop when out of memory: Try to release some memfile blocks and
899 * if some blocks are released call malloc again.
901 for (;;)
904 * Handle three kind of systems:
905 * 1. No check for available memory: Just return.
906 * 2. Slow check for available memory: call mch_avail_mem() after
907 * allocating KEEP_ROOM amount of memory.
908 * 3. Strict check for available memory: call mch_avail_mem()
910 if ((p = (char_u *)malloc((size_t)size)) != NULL)
912 #ifndef HAVE_AVAIL_MEM
913 /* 1. No check for available memory: Just return. */
914 goto theend;
915 #else
916 # ifndef SMALL_MEM
917 /* 2. Slow check for available memory: call mch_avail_mem() after
918 * allocating (KEEP_ROOM / 2) amount of memory. */
919 allocated += size;
920 if (allocated < KEEP_ROOM / 2)
921 goto theend;
922 allocated = 0;
923 # endif
924 /* 3. check for available memory: call mch_avail_mem() */
925 if (mch_avail_mem(TRUE) < KEEP_ROOM && !releasing)
927 free((char *)p); /* System is low... no go! */
928 p = NULL;
930 else
931 goto theend;
932 #endif
935 * Remember that mf_release_all() is being called to avoid an endless
936 * loop, because mf_release_all() may call alloc() recursively.
938 if (releasing)
939 break;
940 releasing = TRUE;
942 clear_sb_text(); /* free any scrollback text */
943 try_again = mf_release_all(); /* release as many blocks as possible */
944 #ifdef FEAT_EVAL
945 try_again |= garbage_collect(); /* cleanup recursive lists/dicts */
946 #endif
948 releasing = FALSE;
949 if (!try_again)
950 break;
953 if (message && p == NULL)
954 do_outofmem_msg(size);
956 theend:
957 #ifdef MEM_PROFILE
958 mem_post_alloc((void **)&p, (size_t)size);
959 #endif
960 return p;
963 #if defined(MEM_PROFILE) || defined(PROTO)
965 * realloc() with memory profiling.
967 void *
968 mem_realloc(ptr, size)
969 void *ptr;
970 size_t size;
972 void *p;
974 mem_pre_free(&ptr);
975 mem_pre_alloc_s(&size);
977 p = realloc(ptr, size);
979 mem_post_alloc(&p, size);
981 return p;
983 #endif
986 * Avoid repeating the error message many times (they take 1 second each).
987 * Did_outofmem_msg is reset when a character is read.
989 void
990 do_outofmem_msg(size)
991 long_u size;
993 if (!did_outofmem_msg)
995 /* Don't hide this message */
996 emsg_silent = 0;
997 EMSGN(_("E342: Out of memory! (allocating %lu bytes)"), size);
998 did_outofmem_msg = TRUE;
1002 #if defined(EXITFREE) || defined(PROTO)
1004 # if defined(FEAT_SEARCHPATH)
1005 static void free_findfile __ARGS((void));
1006 # endif
1009 * Free everything that we allocated.
1010 * Can be used to detect memory leaks, e.g., with ccmalloc.
1011 * NOTE: This is tricky! Things are freed that functions depend on. Don't be
1012 * surprised if Vim crashes...
1013 * Some things can't be freed, esp. things local to a library function.
1015 void
1016 free_all_mem()
1018 buf_T *buf, *nextbuf;
1019 static int entered = FALSE;
1021 /* When we cause a crash here it is caught and Vim tries to exit cleanly.
1022 * Don't try freeing everything again. */
1023 if (entered)
1024 return;
1025 entered = TRUE;
1027 # ifdef FEAT_AUTOCMD
1028 block_autocmds(); /* don't want to trigger autocommands here */
1029 # endif
1031 # ifdef FEAT_WINDOWS
1032 /* close all tabs and windows */
1033 if (first_tabpage->tp_next != NULL)
1034 do_cmdline_cmd((char_u *)"tabonly!");
1035 if (firstwin != lastwin)
1036 do_cmdline_cmd((char_u *)"only!");
1037 # endif
1039 # if defined(FEAT_SPELL)
1040 /* Free all spell info. */
1041 spell_free_all();
1042 # endif
1044 # if defined(FEAT_USR_CMDS)
1045 /* Clear user commands (before deleting buffers). */
1046 ex_comclear(NULL);
1047 # endif
1049 # ifdef FEAT_MENU
1050 /* Clear menus. */
1051 do_cmdline_cmd((char_u *)"aunmenu *");
1052 # endif
1054 /* Clear mappings, abbreviations, breakpoints. */
1055 do_cmdline_cmd((char_u *)"mapclear");
1056 do_cmdline_cmd((char_u *)"mapclear!");
1057 do_cmdline_cmd((char_u *)"abclear");
1058 # if defined(FEAT_EVAL)
1059 do_cmdline_cmd((char_u *)"breakdel *");
1060 # endif
1061 # if defined(FEAT_PROFILE)
1062 do_cmdline_cmd((char_u *)"profdel *");
1063 # endif
1065 # ifdef FEAT_TITLE
1066 free_titles();
1067 # endif
1068 # if defined(FEAT_SEARCHPATH)
1069 free_findfile();
1070 # endif
1072 /* Obviously named calls. */
1073 # if defined(FEAT_AUTOCMD)
1074 free_all_autocmds();
1075 # endif
1076 clear_termcodes();
1077 free_all_options();
1078 free_all_marks();
1079 alist_clear(&global_alist);
1080 free_homedir();
1081 free_search_patterns();
1082 free_old_sub();
1083 free_last_insert();
1084 free_prev_shellcmd();
1085 free_regexp_stuff();
1086 free_tag_stuff();
1087 free_cd_dir();
1088 # ifdef FEAT_EVAL
1089 set_expr_line(NULL);
1090 # endif
1091 # ifdef FEAT_DIFF
1092 diff_clear(curtab);
1093 # endif
1094 clear_sb_text(); /* free any scrollback text */
1096 /* Free some global vars. */
1097 vim_free(username);
1098 # ifdef FEAT_CLIPBOARD
1099 vim_free(clip_exclude_prog);
1100 # endif
1101 vim_free(last_cmdline);
1102 # ifdef FEAT_CMDHIST
1103 vim_free(new_last_cmdline);
1104 # endif
1105 set_keep_msg(NULL, 0);
1106 vim_free(ff_expand_buffer);
1108 /* Clear cmdline history. */
1109 p_hi = 0;
1110 # ifdef FEAT_CMDHIST
1111 init_history();
1112 # endif
1114 #ifdef FEAT_QUICKFIX
1116 win_T *win;
1118 qf_free_all(NULL);
1119 /* Free all location lists */
1120 FOR_ALL_WINDOWS(win)
1121 qf_free_all(win);
1123 #endif
1125 /* Close all script inputs. */
1126 close_all_scripts();
1128 #if defined(FEAT_WINDOWS)
1129 /* Destroy all windows. Must come before freeing buffers. */
1130 win_free_all();
1131 #endif
1133 /* Free all buffers. Reset 'autochdir' to avoid accessing things that
1134 * were freed already. */
1135 #ifdef FEAT_AUTOCHDIR
1136 p_acd = FALSE;
1137 #endif
1138 for (buf = firstbuf; buf != NULL; )
1140 nextbuf = buf->b_next;
1141 close_buffer(NULL, buf, DOBUF_WIPE);
1142 if (buf_valid(buf))
1143 buf = nextbuf; /* didn't work, try next one */
1144 else
1145 buf = firstbuf;
1148 #ifdef FEAT_ARABIC
1149 free_cmdline_buf();
1150 #endif
1152 /* Clear registers. */
1153 clear_registers();
1154 ResetRedobuff();
1155 ResetRedobuff();
1157 #if defined(FEAT_CLIENTSERVER) && defined(FEAT_X11)
1158 vim_free(serverDelayedStartName);
1159 #endif
1161 /* highlight info */
1162 free_highlight();
1164 reset_last_sourcing();
1166 #ifdef FEAT_WINDOWS
1167 free_tabpage(first_tabpage);
1168 first_tabpage = NULL;
1169 #endif
1171 # ifdef UNIX
1172 /* Machine-specific free. */
1173 mch_free_mem();
1174 # endif
1176 /* message history */
1177 for (;;)
1178 if (delete_first_msg() == FAIL)
1179 break;
1181 # ifdef FEAT_EVAL
1182 eval_clear();
1183 # endif
1185 free_termoptions();
1187 /* screenlines (can't display anything now!) */
1188 free_screenlines();
1190 #if defined(USE_XSMP)
1191 xsmp_close();
1192 #endif
1193 #ifdef FEAT_GUI_GTK
1194 gui_mch_free_all();
1195 #endif
1196 clear_hl_tables();
1198 vim_free(IObuff);
1199 vim_free(NameBuff);
1201 #endif
1204 * copy a string into newly allocated memory
1206 char_u *
1207 vim_strsave(string)
1208 char_u *string;
1210 char_u *p;
1211 unsigned len;
1213 len = (unsigned)STRLEN(string) + 1;
1214 p = alloc(len);
1215 if (p != NULL)
1216 mch_memmove(p, string, (size_t)len);
1217 return p;
1220 char_u *
1221 vim_strnsave(string, len)
1222 char_u *string;
1223 int len;
1225 char_u *p;
1227 p = alloc((unsigned)(len + 1));
1228 if (p != NULL)
1230 STRNCPY(p, string, len);
1231 p[len] = NUL;
1233 return p;
1237 * Same as vim_strsave(), but any characters found in esc_chars are preceded
1238 * by a backslash.
1240 char_u *
1241 vim_strsave_escaped(string, esc_chars)
1242 char_u *string;
1243 char_u *esc_chars;
1245 return vim_strsave_escaped_ext(string, esc_chars, '\\', FALSE);
1249 * Same as vim_strsave_escaped(), but when "bsl" is TRUE also escape
1250 * characters where rem_backslash() would remove the backslash.
1251 * Escape the characters with "cc".
1253 char_u *
1254 vim_strsave_escaped_ext(string, esc_chars, cc, bsl)
1255 char_u *string;
1256 char_u *esc_chars;
1257 int cc;
1258 int bsl;
1260 char_u *p;
1261 char_u *p2;
1262 char_u *escaped_string;
1263 unsigned length;
1264 #ifdef FEAT_MBYTE
1265 int l;
1266 #endif
1269 * First count the number of backslashes required.
1270 * Then allocate the memory and insert them.
1272 length = 1; /* count the trailing NUL */
1273 for (p = string; *p; p++)
1275 #ifdef FEAT_MBYTE
1276 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
1278 length += l; /* count a multibyte char */
1279 p += l - 1;
1280 continue;
1282 #endif
1283 if (vim_strchr(esc_chars, *p) != NULL || (bsl && rem_backslash(p)))
1284 ++length; /* count a backslash */
1285 ++length; /* count an ordinary char */
1287 escaped_string = alloc(length);
1288 if (escaped_string != NULL)
1290 p2 = escaped_string;
1291 for (p = string; *p; p++)
1293 #ifdef FEAT_MBYTE
1294 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
1296 mch_memmove(p2, p, (size_t)l);
1297 p2 += l;
1298 p += l - 1; /* skip multibyte char */
1299 continue;
1301 #endif
1302 if (vim_strchr(esc_chars, *p) != NULL || (bsl && rem_backslash(p)))
1303 *p2++ = cc;
1304 *p2++ = *p;
1306 *p2 = NUL;
1308 return escaped_string;
1312 * Return TRUE when 'shell' has "csh" in the tail.
1315 csh_like_shell()
1317 return (strstr((char *)gettail(p_sh), "csh") != NULL);
1321 * Escape "string" for use as a shell argument with system().
1322 * This uses single quotes, except when we know we need to use double qoutes
1323 * (MS-DOS and MS-Windows without 'shellslash' set).
1324 * Escape a newline, depending on the 'shell' option.
1325 * When "do_special" is TRUE also replace "!", "%", "#" and things starting
1326 * with "<" like "<cfile>".
1327 * Returns the result in allocated memory, NULL if we have run out.
1329 char_u *
1330 vim_strsave_shellescape(string, do_special)
1331 char_u *string;
1332 int do_special;
1334 unsigned length;
1335 char_u *p;
1336 char_u *d;
1337 char_u *escaped_string;
1338 int l;
1339 int csh_like;
1341 /* Only csh and similar shells expand '!' within single quotes. For sh and
1342 * the like we must not put a backslash before it, it will be taken
1343 * literally. If do_special is set the '!' will be escaped twice.
1344 * Csh also needs to have "\n" escaped twice when do_special is set. */
1345 csh_like = csh_like_shell();
1347 /* First count the number of extra bytes required. */
1348 length = (unsigned)STRLEN(string) + 3; /* two quotes and a trailing NUL */
1349 for (p = string; *p != NUL; mb_ptr_adv(p))
1351 # if defined(WIN32) || defined(WIN16) || defined(DOS)
1352 if (!p_ssl)
1354 if (*p == '"')
1355 ++length; /* " -> "" */
1357 else
1358 # endif
1359 if (*p == '\'')
1360 length += 3; /* ' => '\'' */
1361 if (*p == '\n' || (*p == '!' && (csh_like || do_special)))
1363 ++length; /* insert backslash */
1364 if (csh_like && do_special)
1365 ++length; /* insert backslash */
1367 if (do_special && find_cmdline_var(p, &l) >= 0)
1369 ++length; /* insert backslash */
1370 p += l - 1;
1374 /* Allocate memory for the result and fill it. */
1375 escaped_string = alloc(length);
1376 if (escaped_string != NULL)
1378 d = escaped_string;
1380 /* add opening quote */
1381 # if defined(WIN32) || defined(WIN16) || defined(DOS)
1382 if (!p_ssl)
1383 *d++ = '"';
1384 else
1385 # endif
1386 *d++ = '\'';
1388 for (p = string; *p != NUL; )
1390 # if defined(WIN32) || defined(WIN16) || defined(DOS)
1391 if (!p_ssl)
1393 if (*p == '"')
1395 *d++ = '"';
1396 *d++ = '"';
1397 ++p;
1398 continue;
1401 else
1402 # endif
1403 if (*p == '\'')
1405 *d++ = '\'';
1406 *d++ = '\\';
1407 *d++ = '\'';
1408 *d++ = '\'';
1409 ++p;
1410 continue;
1412 if (*p == '\n' || (*p == '!' && (csh_like || do_special)))
1414 *d++ = '\\';
1415 if (csh_like && do_special)
1416 *d++ = '\\';
1417 *d++ = *p++;
1418 continue;
1420 if (do_special && find_cmdline_var(p, &l) >= 0)
1422 *d++ = '\\'; /* insert backslash */
1423 while (--l >= 0) /* copy the var */
1424 *d++ = *p++;
1427 MB_COPY_CHAR(p, d);
1430 /* add terminating quote and finish with a NUL */
1431 # if defined(WIN32) || defined(WIN16) || defined(DOS)
1432 if (!p_ssl)
1433 *d++ = '"';
1434 else
1435 # endif
1436 *d++ = '\'';
1437 *d = NUL;
1440 return escaped_string;
1444 * Like vim_strsave(), but make all characters uppercase.
1445 * This uses ASCII lower-to-upper case translation, language independent.
1447 char_u *
1448 vim_strsave_up(string)
1449 char_u *string;
1451 char_u *p1;
1453 p1 = vim_strsave(string);
1454 vim_strup(p1);
1455 return p1;
1459 * Like vim_strnsave(), but make all characters uppercase.
1460 * This uses ASCII lower-to-upper case translation, language independent.
1462 char_u *
1463 vim_strnsave_up(string, len)
1464 char_u *string;
1465 int len;
1467 char_u *p1;
1469 p1 = vim_strnsave(string, len);
1470 vim_strup(p1);
1471 return p1;
1475 * ASCII lower-to-upper case translation, language independent.
1477 void
1478 vim_strup(p)
1479 char_u *p;
1481 char_u *p2;
1482 int c;
1484 if (p != NULL)
1486 p2 = p;
1487 while ((c = *p2) != NUL)
1488 #ifdef EBCDIC
1489 *p2++ = isalpha(c) ? toupper(c) : c;
1490 #else
1491 *p2++ = (c < 'a' || c > 'z') ? c : (c - 0x20);
1492 #endif
1496 #if defined(FEAT_EVAL) || defined(FEAT_SPELL) || defined(PROTO)
1498 * Make string "s" all upper-case and return it in allocated memory.
1499 * Handles multi-byte characters as well as possible.
1500 * Returns NULL when out of memory.
1502 char_u *
1503 strup_save(orig)
1504 char_u *orig;
1506 char_u *p;
1507 char_u *res;
1509 res = p = vim_strsave(orig);
1511 if (res != NULL)
1512 while (*p != NUL)
1514 # ifdef FEAT_MBYTE
1515 int l;
1517 if (enc_utf8)
1519 int c, uc;
1520 int nl;
1521 char_u *s;
1523 c = utf_ptr2char(p);
1524 uc = utf_toupper(c);
1526 /* Reallocate string when byte count changes. This is rare,
1527 * thus it's OK to do another malloc()/free(). */
1528 l = utf_ptr2len(p);
1529 nl = utf_char2len(uc);
1530 if (nl != l)
1532 s = alloc((unsigned)STRLEN(res) + 1 + nl - l);
1533 if (s == NULL)
1534 break;
1535 mch_memmove(s, res, p - res);
1536 STRCPY(s + (p - res) + nl, p + l);
1537 p = s + (p - res);
1538 vim_free(res);
1539 res = s;
1542 utf_char2bytes(uc, p);
1543 p += nl;
1545 else if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
1546 p += l; /* skip multi-byte character */
1547 else
1548 # endif
1550 *p = TOUPPER_LOC(*p); /* note that toupper() can be a macro */
1551 p++;
1555 return res;
1557 #endif
1560 * copy a space a number of times
1562 void
1563 copy_spaces(ptr, count)
1564 char_u *ptr;
1565 size_t count;
1567 size_t i = count;
1568 char_u *p = ptr;
1570 while (i--)
1571 *p++ = ' ';
1574 #if defined(FEAT_VISUALEXTRA) || defined(PROTO)
1576 * Copy a character a number of times.
1577 * Does not work for multi-byte charactes!
1579 void
1580 copy_chars(ptr, count, c)
1581 char_u *ptr;
1582 size_t count;
1583 int c;
1585 size_t i = count;
1586 char_u *p = ptr;
1588 while (i--)
1589 *p++ = c;
1591 #endif
1594 * delete spaces at the end of a string
1596 void
1597 del_trailing_spaces(ptr)
1598 char_u *ptr;
1600 char_u *q;
1602 q = ptr + STRLEN(ptr);
1603 while (--q > ptr && vim_iswhite(q[0]) && q[-1] != '\\' && q[-1] != Ctrl_V)
1604 *q = NUL;
1608 * Like strncpy(), but always terminate the result with one NUL.
1609 * "to" must be "len + 1" long!
1611 void
1612 vim_strncpy(to, from, len)
1613 char_u *to;
1614 char_u *from;
1615 size_t len;
1617 STRNCPY(to, from, len);
1618 to[len] = NUL;
1622 * Isolate one part of a string option where parts are separated with
1623 * "sep_chars".
1624 * The part is copied into "buf[maxlen]".
1625 * "*option" is advanced to the next part.
1626 * The length is returned.
1629 copy_option_part(option, buf, maxlen, sep_chars)
1630 char_u **option;
1631 char_u *buf;
1632 int maxlen;
1633 char *sep_chars;
1635 int len = 0;
1636 char_u *p = *option;
1638 /* skip '.' at start of option part, for 'suffixes' */
1639 if (*p == '.')
1640 buf[len++] = *p++;
1641 while (*p != NUL && vim_strchr((char_u *)sep_chars, *p) == NULL)
1644 * Skip backslash before a separator character and space.
1646 if (p[0] == '\\' && vim_strchr((char_u *)sep_chars, p[1]) != NULL)
1647 ++p;
1648 if (len < maxlen - 1)
1649 buf[len++] = *p;
1650 ++p;
1652 buf[len] = NUL;
1654 if (*p != NUL && *p != ',') /* skip non-standard separator */
1655 ++p;
1656 p = skip_to_option_part(p); /* p points to next file name */
1658 *option = p;
1659 return len;
1663 * Replacement for free() that ignores NULL pointers.
1664 * Also skip free() when exiting for sure, this helps when we caught a deadly
1665 * signal that was caused by a crash in free().
1667 void
1668 vim_free(x)
1669 void *x;
1671 if (x != NULL && !really_exiting)
1673 #ifdef MEM_PROFILE
1674 mem_pre_free(&x);
1675 #endif
1676 free(x);
1680 #ifndef HAVE_MEMSET
1681 void *
1682 vim_memset(ptr, c, size)
1683 void *ptr;
1684 int c;
1685 size_t size;
1687 char *p = ptr;
1689 while (size-- > 0)
1690 *p++ = c;
1691 return ptr;
1693 #endif
1695 #ifdef VIM_MEMCMP
1697 * Return zero when "b1" and "b2" are the same for "len" bytes.
1698 * Return non-zero otherwise.
1701 vim_memcmp(b1, b2, len)
1702 void *b1;
1703 void *b2;
1704 size_t len;
1706 char_u *p1 = (char_u *)b1, *p2 = (char_u *)b2;
1708 for ( ; len > 0; --len)
1710 if (*p1 != *p2)
1711 return 1;
1712 ++p1;
1713 ++p2;
1715 return 0;
1717 #endif
1719 #ifdef VIM_MEMMOVE
1721 * Version of memmove() that handles overlapping source and destination.
1722 * For systems that don't have a function that is guaranteed to do that (SYSV).
1724 void
1725 mch_memmove(dst_arg, src_arg, len)
1726 void *src_arg, *dst_arg;
1727 size_t len;
1730 * A void doesn't have a size, we use char pointers.
1732 char *dst = dst_arg, *src = src_arg;
1734 /* overlap, copy backwards */
1735 if (dst > src && dst < src + len)
1737 src += len;
1738 dst += len;
1739 while (len-- > 0)
1740 *--dst = *--src;
1742 else /* copy forwards */
1743 while (len-- > 0)
1744 *dst++ = *src++;
1746 #endif
1748 #if (!defined(HAVE_STRCASECMP) && !defined(HAVE_STRICMP)) || defined(PROTO)
1750 * Compare two strings, ignoring case, using current locale.
1751 * Doesn't work for multi-byte characters.
1752 * return 0 for match, < 0 for smaller, > 0 for bigger
1755 vim_stricmp(s1, s2)
1756 char *s1;
1757 char *s2;
1759 int i;
1761 for (;;)
1763 i = (int)TOLOWER_LOC(*s1) - (int)TOLOWER_LOC(*s2);
1764 if (i != 0)
1765 return i; /* this character different */
1766 if (*s1 == NUL)
1767 break; /* strings match until NUL */
1768 ++s1;
1769 ++s2;
1771 return 0; /* strings match */
1773 #endif
1775 #if (!defined(HAVE_STRNCASECMP) && !defined(HAVE_STRNICMP)) || defined(PROTO)
1777 * Compare two strings, for length "len", ignoring case, using current locale.
1778 * Doesn't work for multi-byte characters.
1779 * return 0 for match, < 0 for smaller, > 0 for bigger
1782 vim_strnicmp(s1, s2, len)
1783 char *s1;
1784 char *s2;
1785 size_t len;
1787 int i;
1789 while (len > 0)
1791 i = (int)TOLOWER_LOC(*s1) - (int)TOLOWER_LOC(*s2);
1792 if (i != 0)
1793 return i; /* this character different */
1794 if (*s1 == NUL)
1795 break; /* strings match until NUL */
1796 ++s1;
1797 ++s2;
1798 --len;
1800 return 0; /* strings match */
1802 #endif
1804 #if 0 /* currently not used */
1806 * Check if string "s2" appears somewhere in "s1" while ignoring case.
1807 * Return NULL if not, a pointer to the first occurrence if it does.
1809 char_u *
1810 vim_stristr(s1, s2)
1811 char_u *s1;
1812 char_u *s2;
1814 char_u *p;
1815 int len = STRLEN(s2);
1816 char_u *end = s1 + STRLEN(s1) - len;
1818 for (p = s1; p <= end; ++p)
1819 if (STRNICMP(p, s2, len) == 0)
1820 return p;
1821 return NULL;
1823 #endif
1826 * Version of strchr() and strrchr() that handle unsigned char strings
1827 * with characters from 128 to 255 correctly. It also doesn't return a
1828 * pointer to the NUL at the end of the string.
1830 char_u *
1831 vim_strchr(string, c)
1832 char_u *string;
1833 int c;
1835 char_u *p;
1836 int b;
1838 p = string;
1839 #ifdef FEAT_MBYTE
1840 if (enc_utf8 && c >= 0x80)
1842 while (*p != NUL)
1844 if (utf_ptr2char(p) == c)
1845 return p;
1846 p += (*mb_ptr2len)(p);
1848 return NULL;
1850 if (enc_dbcs != 0 && c > 255)
1852 int n2 = c & 0xff;
1854 c = ((unsigned)c >> 8) & 0xff;
1855 while ((b = *p) != NUL)
1857 if (b == c && p[1] == n2)
1858 return p;
1859 p += (*mb_ptr2len)(p);
1861 return NULL;
1863 if (has_mbyte)
1865 while ((b = *p) != NUL)
1867 if (b == c)
1868 return p;
1869 p += (*mb_ptr2len)(p);
1871 return NULL;
1873 #endif
1874 while ((b = *p) != NUL)
1876 if (b == c)
1877 return p;
1878 ++p;
1880 return NULL;
1884 * Version of strchr() that only works for bytes and handles unsigned char
1885 * strings with characters above 128 correctly. It also doesn't return a
1886 * pointer to the NUL at the end of the string.
1888 char_u *
1889 vim_strbyte(string, c)
1890 char_u *string;
1891 int c;
1893 char_u *p = string;
1895 while (*p != NUL)
1897 if (*p == c)
1898 return p;
1899 ++p;
1901 return NULL;
1905 * Search for last occurrence of "c" in "string".
1906 * Return NULL if not found.
1907 * Does not handle multi-byte char for "c"!
1909 char_u *
1910 vim_strrchr(string, c)
1911 char_u *string;
1912 int c;
1914 char_u *retval = NULL;
1915 char_u *p = string;
1917 while (*p)
1919 if (*p == c)
1920 retval = p;
1921 mb_ptr_adv(p);
1923 return retval;
1927 * Vim's version of strpbrk(), in case it's missing.
1928 * Don't generate a prototype for this, causes problems when it's not used.
1930 #ifndef PROTO
1931 # ifndef HAVE_STRPBRK
1932 # ifdef vim_strpbrk
1933 # undef vim_strpbrk
1934 # endif
1935 char_u *
1936 vim_strpbrk(s, charset)
1937 char_u *s;
1938 char_u *charset;
1940 while (*s)
1942 if (vim_strchr(charset, *s) != NULL)
1943 return s;
1944 mb_ptr_adv(s);
1946 return NULL;
1948 # endif
1949 #endif
1952 * Vim has its own isspace() function, because on some machines isspace()
1953 * can't handle characters above 128.
1956 vim_isspace(x)
1957 int x;
1959 return ((x >= 9 && x <= 13) || x == ' ');
1962 /************************************************************************
1963 * Functions for handling growing arrays.
1967 * Clear an allocated growing array.
1969 void
1970 ga_clear(gap)
1971 garray_T *gap;
1973 vim_free(gap->ga_data);
1974 ga_init(gap);
1978 * Clear a growing array that contains a list of strings.
1980 void
1981 ga_clear_strings(gap)
1982 garray_T *gap;
1984 int i;
1986 for (i = 0; i < gap->ga_len; ++i)
1987 vim_free(((char_u **)(gap->ga_data))[i]);
1988 ga_clear(gap);
1992 * Initialize a growing array. Don't forget to set ga_itemsize and
1993 * ga_growsize! Or use ga_init2().
1995 void
1996 ga_init(gap)
1997 garray_T *gap;
1999 gap->ga_data = NULL;
2000 gap->ga_maxlen = 0;
2001 gap->ga_len = 0;
2004 void
2005 ga_init2(gap, itemsize, growsize)
2006 garray_T *gap;
2007 int itemsize;
2008 int growsize;
2010 ga_init(gap);
2011 gap->ga_itemsize = itemsize;
2012 gap->ga_growsize = growsize;
2016 * Make room in growing array "gap" for at least "n" items.
2017 * Return FAIL for failure, OK otherwise.
2020 ga_grow(gap, n)
2021 garray_T *gap;
2022 int n;
2024 size_t len;
2025 char_u *pp;
2027 if (gap->ga_maxlen - gap->ga_len < n)
2029 if (n < gap->ga_growsize)
2030 n = gap->ga_growsize;
2031 len = gap->ga_itemsize * (gap->ga_len + n);
2032 pp = alloc_clear((unsigned)len);
2033 if (pp == NULL)
2034 return FAIL;
2035 gap->ga_maxlen = gap->ga_len + n;
2036 if (gap->ga_data != NULL)
2038 mch_memmove(pp, gap->ga_data,
2039 (size_t)(gap->ga_itemsize * gap->ga_len));
2040 vim_free(gap->ga_data);
2042 gap->ga_data = pp;
2044 return OK;
2048 * Concatenate a string to a growarray which contains characters.
2049 * Note: Does NOT copy the NUL at the end!
2051 void
2052 ga_concat(gap, s)
2053 garray_T *gap;
2054 char_u *s;
2056 int len = (int)STRLEN(s);
2058 if (ga_grow(gap, len) == OK)
2060 mch_memmove((char *)gap->ga_data + gap->ga_len, s, (size_t)len);
2061 gap->ga_len += len;
2066 * Append one byte to a growarray which contains bytes.
2068 void
2069 ga_append(gap, c)
2070 garray_T *gap;
2071 int c;
2073 if (ga_grow(gap, 1) == OK)
2075 *((char *)gap->ga_data + gap->ga_len) = c;
2076 ++gap->ga_len;
2080 /************************************************************************
2081 * functions that use lookup tables for various things, generally to do with
2082 * special key codes.
2086 * Some useful tables.
2089 static struct modmasktable
2091 short mod_mask; /* Bit-mask for particular key modifier */
2092 short mod_flag; /* Bit(s) for particular key modifier */
2093 char_u name; /* Single letter name of modifier */
2094 } mod_mask_table[] =
2096 {MOD_MASK_ALT, MOD_MASK_ALT, (char_u)'M'},
2097 {MOD_MASK_META, MOD_MASK_META, (char_u)'T'},
2098 {MOD_MASK_CTRL, MOD_MASK_CTRL, (char_u)'C'},
2099 {MOD_MASK_SHIFT, MOD_MASK_SHIFT, (char_u)'S'},
2100 {MOD_MASK_MULTI_CLICK, MOD_MASK_2CLICK, (char_u)'2'},
2101 {MOD_MASK_MULTI_CLICK, MOD_MASK_3CLICK, (char_u)'3'},
2102 {MOD_MASK_MULTI_CLICK, MOD_MASK_4CLICK, (char_u)'4'},
2103 #ifdef MACOS
2104 {MOD_MASK_CMD, MOD_MASK_CMD, (char_u)'D'},
2105 #endif
2106 /* 'A' must be the last one */
2107 {MOD_MASK_ALT, MOD_MASK_ALT, (char_u)'A'},
2108 {0, 0, NUL}
2112 * Shifted key terminal codes and their unshifted equivalent.
2113 * Don't add mouse codes here, they are handled separately!
2115 #define MOD_KEYS_ENTRY_SIZE 5
2117 static char_u modifier_keys_table[] =
2119 /* mod mask with modifier without modifier */
2120 MOD_MASK_SHIFT, '&', '9', '@', '1', /* begin */
2121 MOD_MASK_SHIFT, '&', '0', '@', '2', /* cancel */
2122 MOD_MASK_SHIFT, '*', '1', '@', '4', /* command */
2123 MOD_MASK_SHIFT, '*', '2', '@', '5', /* copy */
2124 MOD_MASK_SHIFT, '*', '3', '@', '6', /* create */
2125 MOD_MASK_SHIFT, '*', '4', 'k', 'D', /* delete char */
2126 MOD_MASK_SHIFT, '*', '5', 'k', 'L', /* delete line */
2127 MOD_MASK_SHIFT, '*', '7', '@', '7', /* end */
2128 MOD_MASK_CTRL, KS_EXTRA, (int)KE_C_END, '@', '7', /* end */
2129 MOD_MASK_SHIFT, '*', '9', '@', '9', /* exit */
2130 MOD_MASK_SHIFT, '*', '0', '@', '0', /* find */
2131 MOD_MASK_SHIFT, '#', '1', '%', '1', /* help */
2132 MOD_MASK_SHIFT, '#', '2', 'k', 'h', /* home */
2133 MOD_MASK_CTRL, KS_EXTRA, (int)KE_C_HOME, 'k', 'h', /* home */
2134 MOD_MASK_SHIFT, '#', '3', 'k', 'I', /* insert */
2135 MOD_MASK_SHIFT, '#', '4', 'k', 'l', /* left arrow */
2136 MOD_MASK_CTRL, KS_EXTRA, (int)KE_C_LEFT, 'k', 'l', /* left arrow */
2137 MOD_MASK_SHIFT, '%', 'a', '%', '3', /* message */
2138 MOD_MASK_SHIFT, '%', 'b', '%', '4', /* move */
2139 MOD_MASK_SHIFT, '%', 'c', '%', '5', /* next */
2140 MOD_MASK_SHIFT, '%', 'd', '%', '7', /* options */
2141 MOD_MASK_SHIFT, '%', 'e', '%', '8', /* previous */
2142 MOD_MASK_SHIFT, '%', 'f', '%', '9', /* print */
2143 MOD_MASK_SHIFT, '%', 'g', '%', '0', /* redo */
2144 MOD_MASK_SHIFT, '%', 'h', '&', '3', /* replace */
2145 MOD_MASK_SHIFT, '%', 'i', 'k', 'r', /* right arr. */
2146 MOD_MASK_CTRL, KS_EXTRA, (int)KE_C_RIGHT, 'k', 'r', /* right arr. */
2147 MOD_MASK_SHIFT, '%', 'j', '&', '5', /* resume */
2148 MOD_MASK_SHIFT, '!', '1', '&', '6', /* save */
2149 MOD_MASK_SHIFT, '!', '2', '&', '7', /* suspend */
2150 MOD_MASK_SHIFT, '!', '3', '&', '8', /* undo */
2151 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_UP, 'k', 'u', /* up arrow */
2152 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_DOWN, 'k', 'd', /* down arrow */
2154 /* vt100 F1 */
2155 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_XF1, KS_EXTRA, (int)KE_XF1,
2156 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_XF2, KS_EXTRA, (int)KE_XF2,
2157 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_XF3, KS_EXTRA, (int)KE_XF3,
2158 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_XF4, KS_EXTRA, (int)KE_XF4,
2160 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F1, 'k', '1', /* F1 */
2161 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F2, 'k', '2',
2162 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F3, 'k', '3',
2163 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F4, 'k', '4',
2164 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F5, 'k', '5',
2165 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F6, 'k', '6',
2166 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F7, 'k', '7',
2167 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F8, 'k', '8',
2168 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F9, 'k', '9',
2169 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F10, 'k', ';', /* F10 */
2171 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F11, 'F', '1',
2172 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F12, 'F', '2',
2173 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F13, 'F', '3',
2174 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F14, 'F', '4',
2175 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F15, 'F', '5',
2176 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F16, 'F', '6',
2177 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F17, 'F', '7',
2178 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F18, 'F', '8',
2179 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F19, 'F', '9',
2180 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F20, 'F', 'A',
2182 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F21, 'F', 'B',
2183 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F22, 'F', 'C',
2184 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F23, 'F', 'D',
2185 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F24, 'F', 'E',
2186 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F25, 'F', 'F',
2187 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F26, 'F', 'G',
2188 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F27, 'F', 'H',
2189 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F28, 'F', 'I',
2190 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F29, 'F', 'J',
2191 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F30, 'F', 'K',
2193 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F31, 'F', 'L',
2194 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F32, 'F', 'M',
2195 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F33, 'F', 'N',
2196 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F34, 'F', 'O',
2197 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F35, 'F', 'P',
2198 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F36, 'F', 'Q',
2199 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F37, 'F', 'R',
2201 /* TAB pseudo code*/
2202 MOD_MASK_SHIFT, 'k', 'B', KS_EXTRA, (int)KE_TAB,
2207 static struct key_name_entry
2209 int key; /* Special key code or ascii value */
2210 char_u *name; /* Name of key */
2211 } key_names_table[] =
2213 {' ', (char_u *)"Space"},
2214 {TAB, (char_u *)"Tab"},
2215 {K_TAB, (char_u *)"Tab"},
2216 {NL, (char_u *)"NL"},
2217 {NL, (char_u *)"NewLine"}, /* Alternative name */
2218 {NL, (char_u *)"LineFeed"}, /* Alternative name */
2219 {NL, (char_u *)"LF"}, /* Alternative name */
2220 {CAR, (char_u *)"CR"},
2221 {CAR, (char_u *)"Return"}, /* Alternative name */
2222 {CAR, (char_u *)"Enter"}, /* Alternative name */
2223 {K_BS, (char_u *)"BS"},
2224 {K_BS, (char_u *)"BackSpace"}, /* Alternative name */
2225 {ESC, (char_u *)"Esc"},
2226 {CSI, (char_u *)"CSI"},
2227 {K_CSI, (char_u *)"xCSI"},
2228 {'|', (char_u *)"Bar"},
2229 {'\\', (char_u *)"Bslash"},
2230 {K_DEL, (char_u *)"Del"},
2231 {K_DEL, (char_u *)"Delete"}, /* Alternative name */
2232 {K_KDEL, (char_u *)"kDel"},
2233 {K_UP, (char_u *)"Up"},
2234 {K_DOWN, (char_u *)"Down"},
2235 {K_LEFT, (char_u *)"Left"},
2236 {K_RIGHT, (char_u *)"Right"},
2237 {K_XUP, (char_u *)"xUp"},
2238 {K_XDOWN, (char_u *)"xDown"},
2239 {K_XLEFT, (char_u *)"xLeft"},
2240 {K_XRIGHT, (char_u *)"xRight"},
2242 {K_F1, (char_u *)"F1"},
2243 {K_F2, (char_u *)"F2"},
2244 {K_F3, (char_u *)"F3"},
2245 {K_F4, (char_u *)"F4"},
2246 {K_F5, (char_u *)"F5"},
2247 {K_F6, (char_u *)"F6"},
2248 {K_F7, (char_u *)"F7"},
2249 {K_F8, (char_u *)"F8"},
2250 {K_F9, (char_u *)"F9"},
2251 {K_F10, (char_u *)"F10"},
2253 {K_F11, (char_u *)"F11"},
2254 {K_F12, (char_u *)"F12"},
2255 {K_F13, (char_u *)"F13"},
2256 {K_F14, (char_u *)"F14"},
2257 {K_F15, (char_u *)"F15"},
2258 {K_F16, (char_u *)"F16"},
2259 {K_F17, (char_u *)"F17"},
2260 {K_F18, (char_u *)"F18"},
2261 {K_F19, (char_u *)"F19"},
2262 {K_F20, (char_u *)"F20"},
2264 {K_F21, (char_u *)"F21"},
2265 {K_F22, (char_u *)"F22"},
2266 {K_F23, (char_u *)"F23"},
2267 {K_F24, (char_u *)"F24"},
2268 {K_F25, (char_u *)"F25"},
2269 {K_F26, (char_u *)"F26"},
2270 {K_F27, (char_u *)"F27"},
2271 {K_F28, (char_u *)"F28"},
2272 {K_F29, (char_u *)"F29"},
2273 {K_F30, (char_u *)"F30"},
2275 {K_F31, (char_u *)"F31"},
2276 {K_F32, (char_u *)"F32"},
2277 {K_F33, (char_u *)"F33"},
2278 {K_F34, (char_u *)"F34"},
2279 {K_F35, (char_u *)"F35"},
2280 {K_F36, (char_u *)"F36"},
2281 {K_F37, (char_u *)"F37"},
2283 {K_XF1, (char_u *)"xF1"},
2284 {K_XF2, (char_u *)"xF2"},
2285 {K_XF3, (char_u *)"xF3"},
2286 {K_XF4, (char_u *)"xF4"},
2288 {K_HELP, (char_u *)"Help"},
2289 {K_UNDO, (char_u *)"Undo"},
2290 {K_INS, (char_u *)"Insert"},
2291 {K_INS, (char_u *)"Ins"}, /* Alternative name */
2292 {K_KINS, (char_u *)"kInsert"},
2293 {K_HOME, (char_u *)"Home"},
2294 {K_KHOME, (char_u *)"kHome"},
2295 {K_XHOME, (char_u *)"xHome"},
2296 {K_ZHOME, (char_u *)"zHome"},
2297 {K_END, (char_u *)"End"},
2298 {K_KEND, (char_u *)"kEnd"},
2299 {K_XEND, (char_u *)"xEnd"},
2300 {K_ZEND, (char_u *)"zEnd"},
2301 {K_PAGEUP, (char_u *)"PageUp"},
2302 {K_PAGEDOWN, (char_u *)"PageDown"},
2303 {K_KPAGEUP, (char_u *)"kPageUp"},
2304 {K_KPAGEDOWN, (char_u *)"kPageDown"},
2306 {K_KPLUS, (char_u *)"kPlus"},
2307 {K_KMINUS, (char_u *)"kMinus"},
2308 {K_KDIVIDE, (char_u *)"kDivide"},
2309 {K_KMULTIPLY, (char_u *)"kMultiply"},
2310 {K_KENTER, (char_u *)"kEnter"},
2311 {K_KPOINT, (char_u *)"kPoint"},
2313 {K_K0, (char_u *)"k0"},
2314 {K_K1, (char_u *)"k1"},
2315 {K_K2, (char_u *)"k2"},
2316 {K_K3, (char_u *)"k3"},
2317 {K_K4, (char_u *)"k4"},
2318 {K_K5, (char_u *)"k5"},
2319 {K_K6, (char_u *)"k6"},
2320 {K_K7, (char_u *)"k7"},
2321 {K_K8, (char_u *)"k8"},
2322 {K_K9, (char_u *)"k9"},
2324 {'<', (char_u *)"lt"},
2326 {K_MOUSE, (char_u *)"Mouse"},
2327 {K_NETTERM_MOUSE, (char_u *)"NetMouse"},
2328 {K_DEC_MOUSE, (char_u *)"DecMouse"},
2329 {K_JSBTERM_MOUSE, (char_u *)"JsbMouse"},
2330 {K_PTERM_MOUSE, (char_u *)"PtermMouse"},
2331 {K_LEFTMOUSE, (char_u *)"LeftMouse"},
2332 {K_LEFTMOUSE_NM, (char_u *)"LeftMouseNM"},
2333 {K_LEFTDRAG, (char_u *)"LeftDrag"},
2334 {K_LEFTRELEASE, (char_u *)"LeftRelease"},
2335 {K_LEFTRELEASE_NM, (char_u *)"LeftReleaseNM"},
2336 {K_MIDDLEMOUSE, (char_u *)"MiddleMouse"},
2337 {K_MIDDLEDRAG, (char_u *)"MiddleDrag"},
2338 {K_MIDDLERELEASE, (char_u *)"MiddleRelease"},
2339 {K_RIGHTMOUSE, (char_u *)"RightMouse"},
2340 {K_RIGHTDRAG, (char_u *)"RightDrag"},
2341 {K_RIGHTRELEASE, (char_u *)"RightRelease"},
2342 {K_MOUSEDOWN, (char_u *)"MouseDown"},
2343 {K_MOUSEUP, (char_u *)"MouseUp"},
2344 {K_X1MOUSE, (char_u *)"X1Mouse"},
2345 {K_X1DRAG, (char_u *)"X1Drag"},
2346 {K_X1RELEASE, (char_u *)"X1Release"},
2347 {K_X2MOUSE, (char_u *)"X2Mouse"},
2348 {K_X2DRAG, (char_u *)"X2Drag"},
2349 {K_X2RELEASE, (char_u *)"X2Release"},
2350 {K_DROP, (char_u *)"Drop"},
2351 {K_ZERO, (char_u *)"Nul"},
2352 #ifdef FEAT_EVAL
2353 {K_SNR, (char_u *)"SNR"},
2354 #endif
2355 {K_PLUG, (char_u *)"Plug"},
2356 {0, NULL}
2359 #define KEY_NAMES_TABLE_LEN (sizeof(key_names_table) / sizeof(struct key_name_entry))
2361 #ifdef FEAT_MOUSE
2362 static struct mousetable
2364 int pseudo_code; /* Code for pseudo mouse event */
2365 int button; /* Which mouse button is it? */
2366 int is_click; /* Is it a mouse button click event? */
2367 int is_drag; /* Is it a mouse drag event? */
2368 } mouse_table[] =
2370 {(int)KE_LEFTMOUSE, MOUSE_LEFT, TRUE, FALSE},
2371 #ifdef FEAT_GUI
2372 {(int)KE_LEFTMOUSE_NM, MOUSE_LEFT, TRUE, FALSE},
2373 #endif
2374 {(int)KE_LEFTDRAG, MOUSE_LEFT, FALSE, TRUE},
2375 {(int)KE_LEFTRELEASE, MOUSE_LEFT, FALSE, FALSE},
2376 #ifdef FEAT_GUI
2377 {(int)KE_LEFTRELEASE_NM, MOUSE_LEFT, FALSE, FALSE},
2378 #endif
2379 {(int)KE_MIDDLEMOUSE, MOUSE_MIDDLE, TRUE, FALSE},
2380 {(int)KE_MIDDLEDRAG, MOUSE_MIDDLE, FALSE, TRUE},
2381 {(int)KE_MIDDLERELEASE, MOUSE_MIDDLE, FALSE, FALSE},
2382 {(int)KE_RIGHTMOUSE, MOUSE_RIGHT, TRUE, FALSE},
2383 {(int)KE_RIGHTDRAG, MOUSE_RIGHT, FALSE, TRUE},
2384 {(int)KE_RIGHTRELEASE, MOUSE_RIGHT, FALSE, FALSE},
2385 {(int)KE_X1MOUSE, MOUSE_X1, TRUE, FALSE},
2386 {(int)KE_X1DRAG, MOUSE_X1, FALSE, TRUE},
2387 {(int)KE_X1RELEASE, MOUSE_X1, FALSE, FALSE},
2388 {(int)KE_X2MOUSE, MOUSE_X2, TRUE, FALSE},
2389 {(int)KE_X2DRAG, MOUSE_X2, FALSE, TRUE},
2390 {(int)KE_X2RELEASE, MOUSE_X2, FALSE, FALSE},
2391 /* DRAG without CLICK */
2392 {(int)KE_IGNORE, MOUSE_RELEASE, FALSE, TRUE},
2393 /* RELEASE without CLICK */
2394 {(int)KE_IGNORE, MOUSE_RELEASE, FALSE, FALSE},
2395 {0, 0, 0, 0},
2397 #endif /* FEAT_MOUSE */
2400 * Return the modifier mask bit (MOD_MASK_*) which corresponds to the given
2401 * modifier name ('S' for Shift, 'C' for Ctrl etc).
2404 name_to_mod_mask(c)
2405 int c;
2407 int i;
2409 c = TOUPPER_ASC(c);
2410 for (i = 0; mod_mask_table[i].mod_mask != 0; i++)
2411 if (c == mod_mask_table[i].name)
2412 return mod_mask_table[i].mod_flag;
2413 return 0;
2417 * Check if if there is a special key code for "key" that includes the
2418 * modifiers specified.
2421 simplify_key(key, modifiers)
2422 int key;
2423 int *modifiers;
2425 int i;
2426 int key0;
2427 int key1;
2429 if (*modifiers & (MOD_MASK_SHIFT | MOD_MASK_CTRL | MOD_MASK_ALT))
2431 /* TAB is a special case */
2432 if (key == TAB && (*modifiers & MOD_MASK_SHIFT))
2434 *modifiers &= ~MOD_MASK_SHIFT;
2435 return K_S_TAB;
2437 key0 = KEY2TERMCAP0(key);
2438 key1 = KEY2TERMCAP1(key);
2439 for (i = 0; modifier_keys_table[i] != NUL; i += MOD_KEYS_ENTRY_SIZE)
2440 if (key0 == modifier_keys_table[i + 3]
2441 && key1 == modifier_keys_table[i + 4]
2442 && (*modifiers & modifier_keys_table[i]))
2444 *modifiers &= ~modifier_keys_table[i];
2445 return TERMCAP2KEY(modifier_keys_table[i + 1],
2446 modifier_keys_table[i + 2]);
2449 return key;
2453 * Change <xHome> to <Home>, <xUp> to <Up>, etc.
2456 handle_x_keys(key)
2457 int key;
2459 switch (key)
2461 case K_XUP: return K_UP;
2462 case K_XDOWN: return K_DOWN;
2463 case K_XLEFT: return K_LEFT;
2464 case K_XRIGHT: return K_RIGHT;
2465 case K_XHOME: return K_HOME;
2466 case K_ZHOME: return K_HOME;
2467 case K_XEND: return K_END;
2468 case K_ZEND: return K_END;
2469 case K_XF1: return K_F1;
2470 case K_XF2: return K_F2;
2471 case K_XF3: return K_F3;
2472 case K_XF4: return K_F4;
2473 case K_S_XF1: return K_S_F1;
2474 case K_S_XF2: return K_S_F2;
2475 case K_S_XF3: return K_S_F3;
2476 case K_S_XF4: return K_S_F4;
2478 return key;
2482 * Return a string which contains the name of the given key when the given
2483 * modifiers are down.
2485 char_u *
2486 get_special_key_name(c, modifiers)
2487 int c;
2488 int modifiers;
2490 static char_u string[MAX_KEY_NAME_LEN + 1];
2492 int i, idx;
2493 int table_idx;
2494 char_u *s;
2496 string[0] = '<';
2497 idx = 1;
2499 /* Key that stands for a normal character. */
2500 if (IS_SPECIAL(c) && KEY2TERMCAP0(c) == KS_KEY)
2501 c = KEY2TERMCAP1(c);
2504 * Translate shifted special keys into unshifted keys and set modifier.
2505 * Same for CTRL and ALT modifiers.
2507 if (IS_SPECIAL(c))
2509 for (i = 0; modifier_keys_table[i] != 0; i += MOD_KEYS_ENTRY_SIZE)
2510 if ( KEY2TERMCAP0(c) == (int)modifier_keys_table[i + 1]
2511 && (int)KEY2TERMCAP1(c) == (int)modifier_keys_table[i + 2])
2513 modifiers |= modifier_keys_table[i];
2514 c = TERMCAP2KEY(modifier_keys_table[i + 3],
2515 modifier_keys_table[i + 4]);
2516 break;
2520 /* try to find the key in the special key table */
2521 table_idx = find_special_key_in_table(c);
2524 * When not a known special key, and not a printable character, try to
2525 * extract modifiers.
2527 if (c > 0
2528 #ifdef FEAT_MBYTE
2529 && (*mb_char2len)(c) == 1
2530 #endif
2533 if (table_idx < 0
2534 && (!vim_isprintc(c) || (c & 0x7f) == ' ')
2535 && (c & 0x80))
2537 c &= 0x7f;
2538 modifiers |= MOD_MASK_ALT;
2539 /* try again, to find the un-alted key in the special key table */
2540 table_idx = find_special_key_in_table(c);
2542 if (table_idx < 0 && !vim_isprintc(c) && c < ' ')
2544 #ifdef EBCDIC
2545 c = CtrlChar(c);
2546 #else
2547 c += '@';
2548 #endif
2549 modifiers |= MOD_MASK_CTRL;
2553 /* translate the modifier into a string */
2554 for (i = 0; mod_mask_table[i].name != 'A'; i++)
2555 if ((modifiers & mod_mask_table[i].mod_mask)
2556 == mod_mask_table[i].mod_flag)
2558 string[idx++] = mod_mask_table[i].name;
2559 string[idx++] = (char_u)'-';
2562 if (table_idx < 0) /* unknown special key, may output t_xx */
2564 if (IS_SPECIAL(c))
2566 string[idx++] = 't';
2567 string[idx++] = '_';
2568 string[idx++] = KEY2TERMCAP0(c);
2569 string[idx++] = KEY2TERMCAP1(c);
2571 /* Not a special key, only modifiers, output directly */
2572 else
2574 #ifdef FEAT_MBYTE
2575 if (has_mbyte && (*mb_char2len)(c) > 1)
2576 idx += (*mb_char2bytes)(c, string + idx);
2577 else
2578 #endif
2579 if (vim_isprintc(c))
2580 string[idx++] = c;
2581 else
2583 s = transchar(c);
2584 while (*s)
2585 string[idx++] = *s++;
2589 else /* use name of special key */
2591 STRCPY(string + idx, key_names_table[table_idx].name);
2592 idx = (int)STRLEN(string);
2594 string[idx++] = '>';
2595 string[idx] = NUL;
2596 return string;
2600 * Try translating a <> name at (*srcp)[] to dst[].
2601 * Return the number of characters added to dst[], zero for no match.
2602 * If there is a match, srcp is advanced to after the <> name.
2603 * dst[] must be big enough to hold the result (up to six characters)!
2606 trans_special(srcp, dst, keycode)
2607 char_u **srcp;
2608 char_u *dst;
2609 int keycode; /* prefer key code, e.g. K_DEL instead of DEL */
2611 int modifiers = 0;
2612 int key;
2613 int dlen = 0;
2615 key = find_special_key(srcp, &modifiers, keycode);
2616 if (key == 0)
2617 return 0;
2619 /* Put the appropriate modifier in a string */
2620 if (modifiers != 0)
2622 dst[dlen++] = K_SPECIAL;
2623 dst[dlen++] = KS_MODIFIER;
2624 dst[dlen++] = modifiers;
2627 if (IS_SPECIAL(key))
2629 dst[dlen++] = K_SPECIAL;
2630 dst[dlen++] = KEY2TERMCAP0(key);
2631 dst[dlen++] = KEY2TERMCAP1(key);
2633 #ifdef FEAT_MBYTE
2634 else if (has_mbyte && !keycode)
2635 dlen += (*mb_char2bytes)(key, dst + dlen);
2636 #endif
2637 else if (keycode)
2638 dlen = (int)(add_char2buf(key, dst + dlen) - dst);
2639 else
2640 dst[dlen++] = key;
2642 return dlen;
2646 * Try translating a <> name at (*srcp)[], return the key and modifiers.
2647 * srcp is advanced to after the <> name.
2648 * returns 0 if there is no match.
2651 find_special_key(srcp, modp, keycode)
2652 char_u **srcp;
2653 int *modp;
2654 int keycode; /* prefer key code, e.g. K_DEL instead of DEL */
2656 char_u *last_dash;
2657 char_u *end_of_name;
2658 char_u *src;
2659 char_u *bp;
2660 int modifiers;
2661 int bit;
2662 int key;
2663 unsigned long n;
2665 src = *srcp;
2666 if (src[0] != '<')
2667 return 0;
2669 /* Find end of modifier list */
2670 last_dash = src;
2671 for (bp = src + 1; *bp == '-' || vim_isIDc(*bp); bp++)
2673 if (*bp == '-')
2675 last_dash = bp;
2676 if (bp[1] != NUL && bp[2] == '>')
2677 ++bp; /* anything accepted, like <C-?> */
2679 if (bp[0] == 't' && bp[1] == '_' && bp[2] && bp[3])
2680 bp += 3; /* skip t_xx, xx may be '-' or '>' */
2683 if (*bp == '>') /* found matching '>' */
2685 end_of_name = bp + 1;
2687 if (STRNICMP(src + 1, "char-", 5) == 0 && VIM_ISDIGIT(src[6]))
2689 /* <Char-123> or <Char-033> or <Char-0x33> */
2690 vim_str2nr(src + 6, NULL, NULL, TRUE, TRUE, NULL, &n);
2691 *modp = 0;
2692 *srcp = end_of_name;
2693 return (int)n;
2696 /* Which modifiers are given? */
2697 modifiers = 0x0;
2698 for (bp = src + 1; bp < last_dash; bp++)
2700 if (*bp != '-')
2702 bit = name_to_mod_mask(*bp);
2703 if (bit == 0x0)
2704 break; /* Illegal modifier name */
2705 modifiers |= bit;
2710 * Legal modifier name.
2712 if (bp >= last_dash)
2715 * Modifier with single letter, or special key name.
2717 if (modifiers != 0 && last_dash[2] == '>')
2718 key = last_dash[1];
2719 else
2721 key = get_special_key_code(last_dash + 1);
2722 key = handle_x_keys(key);
2726 * get_special_key_code() may return NUL for invalid
2727 * special key name.
2729 if (key != NUL)
2732 * Only use a modifier when there is no special key code that
2733 * includes the modifier.
2735 key = simplify_key(key, &modifiers);
2737 if (!keycode)
2739 /* don't want keycode, use single byte code */
2740 if (key == K_BS)
2741 key = BS;
2742 else if (key == K_DEL || key == K_KDEL)
2743 key = DEL;
2747 * Normal Key with modifier: Try to make a single byte code.
2749 if (!IS_SPECIAL(key))
2750 key = extract_modifiers(key, &modifiers);
2752 *modp = modifiers;
2753 *srcp = end_of_name;
2754 return key;
2758 return 0;
2762 * Try to include modifiers in the key.
2763 * Changes "Shift-a" to 'A', "Alt-A" to 0xc0, etc.
2766 extract_modifiers(key, modp)
2767 int key;
2768 int *modp;
2770 int modifiers = *modp;
2772 #ifdef MACOS
2773 /* Command-key really special, No fancynest */
2774 if (!(modifiers & MOD_MASK_CMD))
2775 #endif
2776 if ((modifiers & MOD_MASK_SHIFT) && ASCII_ISALPHA(key))
2778 key = TOUPPER_ASC(key);
2779 modifiers &= ~MOD_MASK_SHIFT;
2781 if ((modifiers & MOD_MASK_CTRL)
2782 #ifdef EBCDIC
2783 /* * TODO: EBCDIC Better use:
2784 * && (Ctrl_chr(key) || key == '?')
2785 * ??? */
2786 && strchr("?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_", key)
2787 != NULL
2788 #else
2789 && ((key >= '?' && key <= '_') || ASCII_ISALPHA(key))
2790 #endif
2793 key = Ctrl_chr(key);
2794 modifiers &= ~MOD_MASK_CTRL;
2795 /* <C-@> is <Nul> */
2796 if (key == 0)
2797 key = K_ZERO;
2799 #ifdef MACOS
2800 /* Command-key really special, No fancynest */
2801 if (!(modifiers & MOD_MASK_CMD))
2802 #endif
2803 if ((modifiers & MOD_MASK_ALT) && key < 0x80
2804 #ifdef FEAT_MBYTE
2805 && !enc_dbcs /* avoid creating a lead byte */
2806 #endif
2809 key |= 0x80;
2810 modifiers &= ~MOD_MASK_ALT; /* remove the META modifier */
2813 *modp = modifiers;
2814 return key;
2818 * Try to find key "c" in the special key table.
2819 * Return the index when found, -1 when not found.
2822 find_special_key_in_table(c)
2823 int c;
2825 int i;
2827 for (i = 0; key_names_table[i].name != NULL; i++)
2828 if (c == key_names_table[i].key)
2829 break;
2830 if (key_names_table[i].name == NULL)
2831 i = -1;
2832 return i;
2836 * Find the special key with the given name (the given string does not have to
2837 * end with NUL, the name is assumed to end before the first non-idchar).
2838 * If the name starts with "t_" the next two characters are interpreted as a
2839 * termcap name.
2840 * Return the key code, or 0 if not found.
2843 get_special_key_code(name)
2844 char_u *name;
2846 char_u *table_name;
2847 char_u string[3];
2848 int i, j;
2851 * If it's <t_xx> we get the code for xx from the termcap
2853 if (name[0] == 't' && name[1] == '_' && name[2] != NUL && name[3] != NUL)
2855 string[0] = name[2];
2856 string[1] = name[3];
2857 string[2] = NUL;
2858 if (add_termcap_entry(string, FALSE) == OK)
2859 return TERMCAP2KEY(name[2], name[3]);
2861 else
2862 for (i = 0; key_names_table[i].name != NULL; i++)
2864 table_name = key_names_table[i].name;
2865 for (j = 0; vim_isIDc(name[j]) && table_name[j] != NUL; j++)
2866 if (TOLOWER_ASC(table_name[j]) != TOLOWER_ASC(name[j]))
2867 break;
2868 if (!vim_isIDc(name[j]) && table_name[j] == NUL)
2869 return key_names_table[i].key;
2871 return 0;
2874 #if defined(FEAT_CMDL_COMPL) || defined(PROTO)
2875 char_u *
2876 get_key_name(i)
2877 int i;
2879 if (i >= KEY_NAMES_TABLE_LEN)
2880 return NULL;
2881 return key_names_table[i].name;
2883 #endif
2885 #if defined(FEAT_MOUSE) || defined(PROTO)
2887 * Look up the given mouse code to return the relevant information in the other
2888 * arguments. Return which button is down or was released.
2891 get_mouse_button(code, is_click, is_drag)
2892 int code;
2893 int *is_click;
2894 int *is_drag;
2896 int i;
2898 for (i = 0; mouse_table[i].pseudo_code; i++)
2899 if (code == mouse_table[i].pseudo_code)
2901 *is_click = mouse_table[i].is_click;
2902 *is_drag = mouse_table[i].is_drag;
2903 return mouse_table[i].button;
2905 return 0; /* Shouldn't get here */
2909 * Return the appropriate pseudo mouse event token (KE_LEFTMOUSE etc) based on
2910 * the given information about which mouse button is down, and whether the
2911 * mouse was clicked, dragged or released.
2914 get_pseudo_mouse_code(button, is_click, is_drag)
2915 int button; /* eg MOUSE_LEFT */
2916 int is_click;
2917 int is_drag;
2919 int i;
2921 for (i = 0; mouse_table[i].pseudo_code; i++)
2922 if (button == mouse_table[i].button
2923 && is_click == mouse_table[i].is_click
2924 && is_drag == mouse_table[i].is_drag)
2926 #ifdef FEAT_GUI
2927 /* Trick: a non mappable left click and release has mouse_col -1
2928 * or added MOUSE_COLOFF. Used for 'mousefocus' in
2929 * gui_mouse_moved() */
2930 if (mouse_col < 0 || mouse_col > MOUSE_COLOFF)
2932 if (mouse_col < 0)
2933 mouse_col = 0;
2934 else
2935 mouse_col -= MOUSE_COLOFF;
2936 if (mouse_table[i].pseudo_code == (int)KE_LEFTMOUSE)
2937 return (int)KE_LEFTMOUSE_NM;
2938 if (mouse_table[i].pseudo_code == (int)KE_LEFTRELEASE)
2939 return (int)KE_LEFTRELEASE_NM;
2941 #endif
2942 return mouse_table[i].pseudo_code;
2944 return (int)KE_IGNORE; /* not recognized, ignore it */
2946 #endif /* FEAT_MOUSE */
2949 * Return the current end-of-line type: EOL_DOS, EOL_UNIX or EOL_MAC.
2952 get_fileformat(buf)
2953 buf_T *buf;
2955 int c = *buf->b_p_ff;
2957 if (buf->b_p_bin || c == 'u')
2958 return EOL_UNIX;
2959 if (c == 'm')
2960 return EOL_MAC;
2961 return EOL_DOS;
2965 * Like get_fileformat(), but override 'fileformat' with "p" for "++opt=val"
2966 * argument.
2969 get_fileformat_force(buf, eap)
2970 buf_T *buf;
2971 exarg_T *eap; /* can be NULL! */
2973 int c;
2975 if (eap != NULL && eap->force_ff != 0)
2976 c = eap->cmd[eap->force_ff];
2977 else
2979 if ((eap != NULL && eap->force_bin != 0)
2980 ? (eap->force_bin == FORCE_BIN) : buf->b_p_bin)
2981 return EOL_UNIX;
2982 c = *buf->b_p_ff;
2984 if (c == 'u')
2985 return EOL_UNIX;
2986 if (c == 'm')
2987 return EOL_MAC;
2988 return EOL_DOS;
2992 * Set the current end-of-line type to EOL_DOS, EOL_UNIX or EOL_MAC.
2993 * Sets both 'textmode' and 'fileformat'.
2994 * Note: Does _not_ set global value of 'textmode'!
2996 void
2997 set_fileformat(t, opt_flags)
2998 int t;
2999 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
3001 char *p = NULL;
3003 switch (t)
3005 case EOL_DOS:
3006 p = FF_DOS;
3007 curbuf->b_p_tx = TRUE;
3008 break;
3009 case EOL_UNIX:
3010 p = FF_UNIX;
3011 curbuf->b_p_tx = FALSE;
3012 break;
3013 case EOL_MAC:
3014 p = FF_MAC;
3015 curbuf->b_p_tx = FALSE;
3016 break;
3018 if (p != NULL)
3019 set_string_option_direct((char_u *)"ff", -1, (char_u *)p,
3020 OPT_FREE | opt_flags, 0);
3022 #ifdef FEAT_WINDOWS
3023 /* This may cause the buffer to become (un)modified. */
3024 check_status(curbuf);
3025 redraw_tabline = TRUE;
3026 #endif
3027 #ifdef FEAT_TITLE
3028 need_maketitle = TRUE; /* set window title later */
3029 #endif
3033 * Return the default fileformat from 'fileformats'.
3036 default_fileformat()
3038 switch (*p_ffs)
3040 case 'm': return EOL_MAC;
3041 case 'd': return EOL_DOS;
3043 return EOL_UNIX;
3047 * Call shell. Calls mch_call_shell, with 'shellxquote' added.
3050 call_shell(cmd, opt)
3051 char_u *cmd;
3052 int opt;
3054 char_u *ncmd;
3055 int retval;
3056 #ifdef FEAT_PROFILE
3057 proftime_T wait_time;
3058 #endif
3060 if (p_verbose > 3)
3062 verbose_enter();
3063 smsg((char_u *)_("Calling shell to execute: \"%s\""),
3064 cmd == NULL ? p_sh : cmd);
3065 out_char('\n');
3066 cursor_on();
3067 verbose_leave();
3070 #ifdef FEAT_PROFILE
3071 if (do_profiling == PROF_YES)
3072 prof_child_enter(&wait_time);
3073 #endif
3075 if (*p_sh == NUL)
3077 EMSG(_(e_shellempty));
3078 retval = -1;
3080 else
3082 #ifdef FEAT_GUI_MSWIN
3083 /* Don't hide the pointer while executing a shell command. */
3084 gui_mch_mousehide(FALSE);
3085 #endif
3086 #ifdef FEAT_GUI
3087 ++hold_gui_events;
3088 #endif
3089 /* The external command may update a tags file, clear cached tags. */
3090 tag_freematch();
3092 if (cmd == NULL || *p_sxq == NUL)
3093 retval = mch_call_shell(cmd, opt);
3094 else
3096 ncmd = alloc((unsigned)(STRLEN(cmd) + STRLEN(p_sxq) * 2 + 1));
3097 if (ncmd != NULL)
3099 STRCPY(ncmd, p_sxq);
3100 STRCAT(ncmd, cmd);
3101 STRCAT(ncmd, p_sxq);
3102 retval = mch_call_shell(ncmd, opt);
3103 vim_free(ncmd);
3105 else
3106 retval = -1;
3108 #ifdef FEAT_GUI
3109 --hold_gui_events;
3110 #endif
3112 * Check the window size, in case it changed while executing the
3113 * external command.
3115 shell_resized_check();
3118 #ifdef FEAT_EVAL
3119 set_vim_var_nr(VV_SHELL_ERROR, (long)retval);
3120 # ifdef FEAT_PROFILE
3121 if (do_profiling == PROF_YES)
3122 prof_child_exit(&wait_time);
3123 # endif
3124 #endif
3126 return retval;
3130 * VISUAL, SELECTMODE and OP_PENDING State are never set, they are equal to
3131 * NORMAL State with a condition. This function returns the real State.
3134 get_real_state()
3136 if (State & NORMAL)
3138 #ifdef FEAT_VISUAL
3139 if (VIsual_active)
3141 if (VIsual_select)
3142 return SELECTMODE;
3143 return VISUAL;
3145 else
3146 #endif
3147 if (finish_op)
3148 return OP_PENDING;
3150 return State;
3153 #if defined(FEAT_MBYTE) || defined(PROTO)
3155 * Return TRUE if "p" points to just after a path separator.
3156 * Take care of multi-byte characters.
3157 * "b" must point to the start of the file name
3160 after_pathsep(b, p)
3161 char_u *b;
3162 char_u *p;
3164 return vim_ispathsep(p[-1])
3165 && (!has_mbyte || (*mb_head_off)(b, p - 1) == 0);
3167 #endif
3170 * Return TRUE if file names "f1" and "f2" are in the same directory.
3171 * "f1" may be a short name, "f2" must be a full path.
3174 same_directory(f1, f2)
3175 char_u *f1;
3176 char_u *f2;
3178 char_u ffname[MAXPATHL];
3179 char_u *t1;
3180 char_u *t2;
3182 /* safety check */
3183 if (f1 == NULL || f2 == NULL)
3184 return FALSE;
3186 (void)vim_FullName(f1, ffname, MAXPATHL, FALSE);
3187 t1 = gettail_sep(ffname);
3188 t2 = gettail_sep(f2);
3189 return (t1 - ffname == t2 - f2
3190 && pathcmp((char *)ffname, (char *)f2, (int)(t1 - ffname)) == 0);
3193 #if defined(FEAT_SESSION) || defined(MSWIN) || defined(FEAT_GUI_MAC) \
3194 || ((defined(FEAT_GUI_GTK)) \
3195 && ( defined(FEAT_WINDOWS) || defined(FEAT_DND)) ) \
3196 || defined(FEAT_SUN_WORKSHOP) || defined(FEAT_NETBEANS_INTG) \
3197 || defined(PROTO)
3199 * Change to a file's directory.
3200 * Caller must call shorten_fnames()!
3201 * Return OK or FAIL.
3204 vim_chdirfile(fname)
3205 char_u *fname;
3207 char_u dir[MAXPATHL];
3209 vim_strncpy(dir, fname, MAXPATHL - 1);
3210 *gettail_sep(dir) = NUL;
3211 return mch_chdir((char *)dir) == 0 ? OK : FAIL;
3213 #endif
3215 #if defined(STAT_IGNORES_SLASH) || defined(PROTO)
3217 * Check if "name" ends in a slash and is not a directory.
3218 * Used for systems where stat() ignores a trailing slash on a file name.
3219 * The Vim code assumes a trailing slash is only ignored for a directory.
3222 illegal_slash(name)
3223 char *name;
3225 if (name[0] == NUL)
3226 return FALSE; /* no file name is not illegal */
3227 if (name[strlen(name) - 1] != '/')
3228 return FALSE; /* no trailing slash */
3229 if (mch_isdir((char_u *)name))
3230 return FALSE; /* trailing slash for a directory */
3231 return TRUE;
3233 #endif
3235 #if defined(CURSOR_SHAPE) || defined(PROTO)
3238 * Handling of cursor and mouse pointer shapes in various modes.
3241 cursorentry_T shape_table[SHAPE_IDX_COUNT] =
3243 /* The values will be filled in from the 'guicursor' and 'mouseshape'
3244 * defaults when Vim starts.
3245 * Adjust the SHAPE_IDX_ defines when making changes! */
3246 {0, 0, 0, 700L, 400L, 250L, 0, 0, "n", SHAPE_CURSOR+SHAPE_MOUSE},
3247 {0, 0, 0, 700L, 400L, 250L, 0, 0, "v", SHAPE_CURSOR+SHAPE_MOUSE},
3248 {0, 0, 0, 700L, 400L, 250L, 0, 0, "i", SHAPE_CURSOR+SHAPE_MOUSE},
3249 {0, 0, 0, 700L, 400L, 250L, 0, 0, "r", SHAPE_CURSOR+SHAPE_MOUSE},
3250 {0, 0, 0, 700L, 400L, 250L, 0, 0, "c", SHAPE_CURSOR+SHAPE_MOUSE},
3251 {0, 0, 0, 700L, 400L, 250L, 0, 0, "ci", SHAPE_CURSOR+SHAPE_MOUSE},
3252 {0, 0, 0, 700L, 400L, 250L, 0, 0, "cr", SHAPE_CURSOR+SHAPE_MOUSE},
3253 {0, 0, 0, 700L, 400L, 250L, 0, 0, "o", SHAPE_CURSOR+SHAPE_MOUSE},
3254 {0, 0, 0, 700L, 400L, 250L, 0, 0, "ve", SHAPE_CURSOR+SHAPE_MOUSE},
3255 {0, 0, 0, 0L, 0L, 0L, 0, 0, "e", SHAPE_MOUSE},
3256 {0, 0, 0, 0L, 0L, 0L, 0, 0, "s", SHAPE_MOUSE},
3257 {0, 0, 0, 0L, 0L, 0L, 0, 0, "sd", SHAPE_MOUSE},
3258 {0, 0, 0, 0L, 0L, 0L, 0, 0, "vs", SHAPE_MOUSE},
3259 {0, 0, 0, 0L, 0L, 0L, 0, 0, "vd", SHAPE_MOUSE},
3260 {0, 0, 0, 0L, 0L, 0L, 0, 0, "m", SHAPE_MOUSE},
3261 {0, 0, 0, 0L, 0L, 0L, 0, 0, "ml", SHAPE_MOUSE},
3262 {0, 0, 0, 100L, 100L, 100L, 0, 0, "sm", SHAPE_CURSOR},
3265 #ifdef FEAT_MOUSESHAPE
3267 * Table with names for mouse shapes. Keep in sync with all the tables for
3268 * mch_set_mouse_shape()!.
3270 static char * mshape_names[] =
3272 "arrow", /* default, must be the first one */
3273 "blank", /* hidden */
3274 "beam",
3275 "updown",
3276 "udsizing",
3277 "leftright",
3278 "lrsizing",
3279 "busy",
3280 "no",
3281 "crosshair",
3282 "hand1",
3283 "hand2",
3284 "pencil",
3285 "question",
3286 "rightup-arrow",
3287 "up-arrow",
3288 NULL
3290 #endif
3293 * Parse the 'guicursor' option ("what" is SHAPE_CURSOR) or 'mouseshape'
3294 * ("what" is SHAPE_MOUSE).
3295 * Returns error message for an illegal option, NULL otherwise.
3297 char_u *
3298 parse_shape_opt(what)
3299 int what;
3301 char_u *modep;
3302 char_u *colonp;
3303 char_u *commap;
3304 char_u *slashp;
3305 char_u *p, *endp;
3306 int idx = 0; /* init for GCC */
3307 int all_idx;
3308 int len;
3309 int i;
3310 long n;
3311 int found_ve = FALSE; /* found "ve" flag */
3312 int round;
3315 * First round: check for errors; second round: do it for real.
3317 for (round = 1; round <= 2; ++round)
3320 * Repeat for all comma separated parts.
3322 #ifdef FEAT_MOUSESHAPE
3323 if (what == SHAPE_MOUSE)
3324 modep = p_mouseshape;
3325 else
3326 #endif
3327 modep = p_guicursor;
3328 while (*modep != NUL)
3330 colonp = vim_strchr(modep, ':');
3331 if (colonp == NULL)
3332 return (char_u *)N_("E545: Missing colon");
3333 if (colonp == modep)
3334 return (char_u *)N_("E546: Illegal mode");
3335 commap = vim_strchr(modep, ',');
3338 * Repeat for all mode's before the colon.
3339 * For the 'a' mode, we loop to handle all the modes.
3341 all_idx = -1;
3342 while (modep < colonp || all_idx >= 0)
3344 if (all_idx < 0)
3346 /* Find the mode. */
3347 if (modep[1] == '-' || modep[1] == ':')
3348 len = 1;
3349 else
3350 len = 2;
3351 if (len == 1 && TOLOWER_ASC(modep[0]) == 'a')
3352 all_idx = SHAPE_IDX_COUNT - 1;
3353 else
3355 for (idx = 0; idx < SHAPE_IDX_COUNT; ++idx)
3356 if (STRNICMP(modep, shape_table[idx].name, len)
3357 == 0)
3358 break;
3359 if (idx == SHAPE_IDX_COUNT
3360 || (shape_table[idx].used_for & what) == 0)
3361 return (char_u *)N_("E546: Illegal mode");
3362 if (len == 2 && modep[0] == 'v' && modep[1] == 'e')
3363 found_ve = TRUE;
3365 modep += len + 1;
3368 if (all_idx >= 0)
3369 idx = all_idx--;
3370 else if (round == 2)
3372 #ifdef FEAT_MOUSESHAPE
3373 if (what == SHAPE_MOUSE)
3375 /* Set the default, for the missing parts */
3376 shape_table[idx].mshape = 0;
3378 else
3379 #endif
3381 /* Set the defaults, for the missing parts */
3382 shape_table[idx].shape = SHAPE_BLOCK;
3383 shape_table[idx].blinkwait = 700L;
3384 shape_table[idx].blinkon = 400L;
3385 shape_table[idx].blinkoff = 250L;
3389 /* Parse the part after the colon */
3390 for (p = colonp + 1; *p && *p != ','; )
3392 #ifdef FEAT_MOUSESHAPE
3393 if (what == SHAPE_MOUSE)
3395 for (i = 0; ; ++i)
3397 if (mshape_names[i] == NULL)
3399 if (!VIM_ISDIGIT(*p))
3400 return (char_u *)N_("E547: Illegal mouseshape");
3401 if (round == 2)
3402 shape_table[idx].mshape =
3403 getdigits(&p) + MSHAPE_NUMBERED;
3404 else
3405 (void)getdigits(&p);
3406 break;
3408 len = (int)STRLEN(mshape_names[i]);
3409 if (STRNICMP(p, mshape_names[i], len) == 0)
3411 if (round == 2)
3412 shape_table[idx].mshape = i;
3413 p += len;
3414 break;
3418 else /* if (what == SHAPE_MOUSE) */
3419 #endif
3422 * First handle the ones with a number argument.
3424 i = *p;
3425 len = 0;
3426 if (STRNICMP(p, "ver", 3) == 0)
3427 len = 3;
3428 else if (STRNICMP(p, "hor", 3) == 0)
3429 len = 3;
3430 else if (STRNICMP(p, "blinkwait", 9) == 0)
3431 len = 9;
3432 else if (STRNICMP(p, "blinkon", 7) == 0)
3433 len = 7;
3434 else if (STRNICMP(p, "blinkoff", 8) == 0)
3435 len = 8;
3436 if (len != 0)
3438 p += len;
3439 if (!VIM_ISDIGIT(*p))
3440 return (char_u *)N_("E548: digit expected");
3441 n = getdigits(&p);
3442 if (len == 3) /* "ver" or "hor" */
3444 if (n == 0)
3445 return (char_u *)N_("E549: Illegal percentage");
3446 if (round == 2)
3448 if (TOLOWER_ASC(i) == 'v')
3449 shape_table[idx].shape = SHAPE_VER;
3450 else
3451 shape_table[idx].shape = SHAPE_HOR;
3452 shape_table[idx].percentage = n;
3455 else if (round == 2)
3457 if (len == 9)
3458 shape_table[idx].blinkwait = n;
3459 else if (len == 7)
3460 shape_table[idx].blinkon = n;
3461 else
3462 shape_table[idx].blinkoff = n;
3465 else if (STRNICMP(p, "block", 5) == 0)
3467 if (round == 2)
3468 shape_table[idx].shape = SHAPE_BLOCK;
3469 p += 5;
3471 else /* must be a highlight group name then */
3473 endp = vim_strchr(p, '-');
3474 if (commap == NULL) /* last part */
3476 if (endp == NULL)
3477 endp = p + STRLEN(p); /* find end of part */
3479 else if (endp > commap || endp == NULL)
3480 endp = commap;
3481 slashp = vim_strchr(p, '/');
3482 if (slashp != NULL && slashp < endp)
3484 /* "group/langmap_group" */
3485 i = syn_check_group(p, (int)(slashp - p));
3486 p = slashp + 1;
3488 if (round == 2)
3490 shape_table[idx].id = syn_check_group(p,
3491 (int)(endp - p));
3492 shape_table[idx].id_lm = shape_table[idx].id;
3493 if (slashp != NULL && slashp < endp)
3494 shape_table[idx].id = i;
3496 p = endp;
3498 } /* if (what != SHAPE_MOUSE) */
3500 if (*p == '-')
3501 ++p;
3504 modep = p;
3505 if (*modep == ',')
3506 ++modep;
3510 /* If the 's' flag is not given, use the 'v' cursor for 's' */
3511 if (!found_ve)
3513 #ifdef FEAT_MOUSESHAPE
3514 if (what == SHAPE_MOUSE)
3516 shape_table[SHAPE_IDX_VE].mshape = shape_table[SHAPE_IDX_V].mshape;
3518 else
3519 #endif
3521 shape_table[SHAPE_IDX_VE].shape = shape_table[SHAPE_IDX_V].shape;
3522 shape_table[SHAPE_IDX_VE].percentage =
3523 shape_table[SHAPE_IDX_V].percentage;
3524 shape_table[SHAPE_IDX_VE].blinkwait =
3525 shape_table[SHAPE_IDX_V].blinkwait;
3526 shape_table[SHAPE_IDX_VE].blinkon =
3527 shape_table[SHAPE_IDX_V].blinkon;
3528 shape_table[SHAPE_IDX_VE].blinkoff =
3529 shape_table[SHAPE_IDX_V].blinkoff;
3530 shape_table[SHAPE_IDX_VE].id = shape_table[SHAPE_IDX_V].id;
3531 shape_table[SHAPE_IDX_VE].id_lm = shape_table[SHAPE_IDX_V].id_lm;
3535 return NULL;
3538 # if defined(MCH_CURSOR_SHAPE) || defined(FEAT_GUI) \
3539 || defined(FEAT_MOUSESHAPE) || defined(PROTO)
3541 * Return the index into shape_table[] for the current mode.
3542 * When "mouse" is TRUE, consider indexes valid for the mouse pointer.
3545 get_shape_idx(mouse)
3546 int mouse;
3548 #ifdef FEAT_MOUSESHAPE
3549 if (mouse && (State == HITRETURN || State == ASKMORE))
3551 # ifdef FEAT_GUI
3552 int x, y;
3553 gui_mch_getmouse(&x, &y);
3554 if (Y_2_ROW(y) == Rows - 1)
3555 return SHAPE_IDX_MOREL;
3556 # endif
3557 return SHAPE_IDX_MORE;
3559 if (mouse && drag_status_line)
3560 return SHAPE_IDX_SDRAG;
3561 # ifdef FEAT_VERTSPLIT
3562 if (mouse && drag_sep_line)
3563 return SHAPE_IDX_VDRAG;
3564 # endif
3565 #endif
3566 if (!mouse && State == SHOWMATCH)
3567 return SHAPE_IDX_SM;
3568 #ifdef FEAT_VREPLACE
3569 if (State & VREPLACE_FLAG)
3570 return SHAPE_IDX_R;
3571 #endif
3572 if (State & REPLACE_FLAG)
3573 return SHAPE_IDX_R;
3574 if (State & INSERT)
3575 return SHAPE_IDX_I;
3576 if (State & CMDLINE)
3578 if (cmdline_at_end())
3579 return SHAPE_IDX_C;
3580 if (cmdline_overstrike())
3581 return SHAPE_IDX_CR;
3582 return SHAPE_IDX_CI;
3584 if (finish_op)
3585 return SHAPE_IDX_O;
3586 #ifdef FEAT_VISUAL
3587 if (VIsual_active)
3589 if (*p_sel == 'e')
3590 return SHAPE_IDX_VE;
3591 else
3592 return SHAPE_IDX_V;
3594 #endif
3595 return SHAPE_IDX_N;
3597 #endif
3599 # if defined(FEAT_MOUSESHAPE) || defined(PROTO)
3600 static int old_mouse_shape = 0;
3603 * Set the mouse shape:
3604 * If "shape" is -1, use shape depending on the current mode,
3605 * depending on the current state.
3606 * If "shape" is -2, only update the shape when it's CLINE or STATUS (used
3607 * when the mouse moves off the status or command line).
3609 void
3610 update_mouseshape(shape_idx)
3611 int shape_idx;
3613 int new_mouse_shape;
3615 /* Only works in GUI mode. */
3616 if (!gui.in_use || gui.starting)
3617 return;
3619 /* Postpone the updating when more is to come. Speeds up executing of
3620 * mappings. */
3621 if (shape_idx == -1 && char_avail())
3623 postponed_mouseshape = TRUE;
3624 return;
3627 /* When ignoring the mouse don't change shape on the statusline. */
3628 if (*p_mouse == NUL
3629 && (shape_idx == SHAPE_IDX_CLINE
3630 || shape_idx == SHAPE_IDX_STATUS
3631 || shape_idx == SHAPE_IDX_VSEP))
3632 shape_idx = -2;
3634 if (shape_idx == -2
3635 && old_mouse_shape != shape_table[SHAPE_IDX_CLINE].mshape
3636 && old_mouse_shape != shape_table[SHAPE_IDX_STATUS].mshape
3637 && old_mouse_shape != shape_table[SHAPE_IDX_VSEP].mshape)
3638 return;
3639 if (shape_idx < 0)
3640 new_mouse_shape = shape_table[get_shape_idx(TRUE)].mshape;
3641 else
3642 new_mouse_shape = shape_table[shape_idx].mshape;
3643 if (new_mouse_shape != old_mouse_shape)
3645 mch_set_mouse_shape(new_mouse_shape);
3646 old_mouse_shape = new_mouse_shape;
3648 postponed_mouseshape = FALSE;
3650 # endif
3652 #endif /* CURSOR_SHAPE */
3655 #ifdef FEAT_CRYPT
3657 * Optional encryption support.
3658 * Mohsin Ahmed, mosh@sasi.com, 98-09-24
3659 * Based on zip/crypt sources.
3661 * NOTE FOR USA: Since 2000 exporting this code from the USA is allowed to
3662 * most countries. There are a few exceptions, but that still should not be a
3663 * problem since this code was originally created in Europe and India.
3666 /* from zip.h */
3668 typedef unsigned short ush; /* unsigned 16-bit value */
3669 typedef unsigned long ulg; /* unsigned 32-bit value */
3671 static void make_crc_tab __ARGS((void));
3673 static ulg crc_32_tab[256];
3676 * Fill the CRC table.
3678 static void
3679 make_crc_tab()
3681 ulg s,t,v;
3682 static int done = FALSE;
3684 if (done)
3685 return;
3686 for (t = 0; t < 256; t++)
3688 v = t;
3689 for (s = 0; s < 8; s++)
3690 v = (v >> 1) ^ ((v & 1) * (ulg)0xedb88320L);
3691 crc_32_tab[t] = v;
3693 done = TRUE;
3696 #define CRC32(c, b) (crc_32_tab[((int)(c) ^ (b)) & 0xff] ^ ((c) >> 8))
3699 static ulg keys[3]; /* keys defining the pseudo-random sequence */
3702 * Return the next byte in the pseudo-random sequence
3705 decrypt_byte()
3707 ush temp;
3709 temp = (ush)keys[2] | 2;
3710 return (int)(((unsigned)(temp * (temp ^ 1)) >> 8) & 0xff);
3714 * Update the encryption keys with the next byte of plain text
3717 update_keys(c)
3718 int c; /* byte of plain text */
3720 keys[0] = CRC32(keys[0], c);
3721 keys[1] += keys[0] & 0xff;
3722 keys[1] = keys[1] * 134775813L + 1;
3723 keys[2] = CRC32(keys[2], (int)(keys[1] >> 24));
3724 return c;
3728 * Initialize the encryption keys and the random header according to
3729 * the given password.
3730 * If "passwd" is NULL or empty, don't do anything.
3732 void
3733 crypt_init_keys(passwd)
3734 char_u *passwd; /* password string with which to modify keys */
3736 if (passwd != NULL && *passwd != NUL)
3738 make_crc_tab();
3739 keys[0] = 305419896L;
3740 keys[1] = 591751049L;
3741 keys[2] = 878082192L;
3742 while (*passwd != '\0')
3743 update_keys((int)*passwd++);
3748 * Ask the user for a crypt key.
3749 * When "store" is TRUE, the new key in stored in the 'key' option, and the
3750 * 'key' option value is returned: Don't free it.
3751 * When "store" is FALSE, the typed key is returned in allocated memory.
3752 * Returns NULL on failure.
3754 char_u *
3755 get_crypt_key(store, twice)
3756 int store;
3757 int twice; /* Ask for the key twice. */
3759 char_u *p1, *p2 = NULL;
3760 int round;
3762 for (round = 0; ; ++round)
3764 cmdline_star = TRUE;
3765 cmdline_row = msg_row;
3766 p1 = getcmdline_prompt(NUL, round == 0
3767 ? (char_u *)_("Enter encryption key: ")
3768 : (char_u *)_("Enter same key again: "), 0, EXPAND_NOTHING,
3769 NULL);
3770 cmdline_star = FALSE;
3772 if (p1 == NULL)
3773 break;
3775 if (round == twice)
3777 if (p2 != NULL && STRCMP(p1, p2) != 0)
3779 MSG(_("Keys don't match!"));
3780 vim_free(p1);
3781 vim_free(p2);
3782 p2 = NULL;
3783 round = -1; /* do it again */
3784 continue;
3786 if (store)
3788 set_option_value((char_u *)"key", 0L, p1, OPT_LOCAL);
3789 vim_free(p1);
3790 p1 = curbuf->b_p_key;
3792 break;
3794 p2 = p1;
3797 /* since the user typed this, no need to wait for return */
3798 need_wait_return = FALSE;
3799 msg_didout = FALSE;
3801 vim_free(p2);
3802 return p1;
3805 #endif /* FEAT_CRYPT */
3807 /* TODO: make some #ifdef for this */
3808 /*--------[ file searching ]-------------------------------------------------*/
3810 * File searching functions for 'path', 'tags' and 'cdpath' options.
3811 * External visible functions:
3812 * vim_findfile_init() creates/initialises the search context
3813 * vim_findfile_free_visited() free list of visited files/dirs of search
3814 * context
3815 * vim_findfile() find a file in the search context
3816 * vim_findfile_cleanup() cleanup/free search context created by
3817 * vim_findfile_init()
3819 * All static functions and variables start with 'ff_'
3821 * In general it works like this:
3822 * First you create yourself a search context by calling vim_findfile_init().
3823 * It is possible to give a search context from a previous call to
3824 * vim_findfile_init(), so it can be reused. After this you call vim_findfile()
3825 * until you are satisfied with the result or it returns NULL. On every call it
3826 * returns the next file which matches the conditions given to
3827 * vim_findfile_init(). If it doesn't find a next file it returns NULL.
3829 * It is possible to call vim_findfile_init() again to reinitialise your search
3830 * with some new parameters. Don't forget to pass your old search context to
3831 * it, so it can reuse it and especially reuse the list of already visited
3832 * directories. If you want to delete the list of already visited directories
3833 * simply call vim_findfile_free_visited().
3835 * When you are done call vim_findfile_cleanup() to free the search context.
3837 * The function vim_findfile_init() has a long comment, which describes the
3838 * needed parameters.
3842 * ATTENTION:
3843 * ==========
3844 * Also we use an allocated search context here, this functions are NOT
3845 * thread-safe!!!!!
3847 * To minimize parameter passing (or because I'm to lazy), only the
3848 * external visible functions get a search context as a parameter. This is
3849 * then assigned to a static global, which is used throughout the local
3850 * functions.
3854 * type for the directory search stack
3856 typedef struct ff_stack
3858 struct ff_stack *ffs_prev;
3860 /* the fix part (no wildcards) and the part containing the wildcards
3861 * of the search path
3863 char_u *ffs_fix_path;
3864 #ifdef FEAT_PATH_EXTRA
3865 char_u *ffs_wc_path;
3866 #endif
3868 /* files/dirs found in the above directory, matched by the first wildcard
3869 * of wc_part
3871 char_u **ffs_filearray;
3872 int ffs_filearray_size;
3873 char_u ffs_filearray_cur; /* needed for partly handled dirs */
3875 /* to store status of partly handled directories
3876 * 0: we work on this directory for the first time
3877 * 1: this directory was partly searched in an earlier step
3879 int ffs_stage;
3881 /* How deep are we in the directory tree?
3882 * Counts backward from value of level parameter to vim_findfile_init
3884 int ffs_level;
3886 /* Did we already expand '**' to an empty string? */
3887 int ffs_star_star_empty;
3888 } ff_stack_T;
3891 * type for already visited directories or files.
3893 typedef struct ff_visited
3895 struct ff_visited *ffv_next;
3897 #ifdef FEAT_PATH_EXTRA
3898 /* Visited directories are different if the wildcard string are
3899 * different. So we have to save it.
3901 char_u *ffv_wc_path;
3902 #endif
3903 /* for unix use inode etc for comparison (needed because of links), else
3904 * use filename.
3906 #ifdef UNIX
3907 int ffv_dev; /* device number (-1 if not set) */
3908 ino_t ffv_ino; /* inode number */
3909 #endif
3910 /* The memory for this struct is allocated according to the length of
3911 * ffv_fname.
3913 char_u ffv_fname[1]; /* actually longer */
3914 } ff_visited_T;
3917 * We might have to manage several visited lists during a search.
3918 * This is especially needed for the tags option. If tags is set to:
3919 * "./++/tags,./++/TAGS,++/tags" (replace + with *)
3920 * So we have to do 3 searches:
3921 * 1) search from the current files directory downward for the file "tags"
3922 * 2) search from the current files directory downward for the file "TAGS"
3923 * 3) search from Vims current directory downwards for the file "tags"
3924 * As you can see, the first and the third search are for the same file, so for
3925 * the third search we can use the visited list of the first search. For the
3926 * second search we must start from a empty visited list.
3927 * The struct ff_visited_list_hdr is used to manage a linked list of already
3928 * visited lists.
3930 typedef struct ff_visited_list_hdr
3932 struct ff_visited_list_hdr *ffvl_next;
3934 /* the filename the attached visited list is for */
3935 char_u *ffvl_filename;
3937 ff_visited_T *ffvl_visited_list;
3939 } ff_visited_list_hdr_T;
3943 * '**' can be expanded to several directory levels.
3944 * Set the default maximum depth.
3946 #define FF_MAX_STAR_STAR_EXPAND ((char_u)30)
3949 * The search context:
3950 * ffsc_stack_ptr: the stack for the dirs to search
3951 * ffsc_visited_list: the currently active visited list
3952 * ffsc_dir_visited_list: the currently active visited list for search dirs
3953 * ffsc_visited_lists_list: the list of all visited lists
3954 * ffsc_dir_visited_lists_list: the list of all visited lists for search dirs
3955 * ffsc_file_to_search: the file to search for
3956 * ffsc_start_dir: the starting directory, if search path was relative
3957 * ffsc_fix_path: the fix part of the given path (without wildcards)
3958 * Needed for upward search.
3959 * ffsc_wc_path: the part of the given path containing wildcards
3960 * ffsc_level: how many levels of dirs to search downwards
3961 * ffsc_stopdirs_v: array of stop directories for upward search
3962 * ffsc_find_what: FINDFILE_BOTH, FINDFILE_DIR or FINDFILE_FILE
3964 typedef struct ff_search_ctx_T
3966 ff_stack_T *ffsc_stack_ptr;
3967 ff_visited_list_hdr_T *ffsc_visited_list;
3968 ff_visited_list_hdr_T *ffsc_dir_visited_list;
3969 ff_visited_list_hdr_T *ffsc_visited_lists_list;
3970 ff_visited_list_hdr_T *ffsc_dir_visited_lists_list;
3971 char_u *ffsc_file_to_search;
3972 char_u *ffsc_start_dir;
3973 char_u *ffsc_fix_path;
3974 #ifdef FEAT_PATH_EXTRA
3975 char_u *ffsc_wc_path;
3976 int ffsc_level;
3977 char_u **ffsc_stopdirs_v;
3978 #endif
3979 int ffsc_find_what;
3980 } ff_search_ctx_T;
3982 /* locally needed functions */
3983 #ifdef FEAT_PATH_EXTRA
3984 static int ff_check_visited __ARGS((ff_visited_T **, char_u *, char_u *));
3985 #else
3986 static int ff_check_visited __ARGS((ff_visited_T **, char_u *));
3987 #endif
3988 static void vim_findfile_free_visited_list __ARGS((ff_visited_list_hdr_T **list_headp));
3989 static void ff_free_visited_list __ARGS((ff_visited_T *vl));
3990 static ff_visited_list_hdr_T* ff_get_visited_list __ARGS((char_u *, ff_visited_list_hdr_T **list_headp));
3991 #ifdef FEAT_PATH_EXTRA
3992 static int ff_wc_equal __ARGS((char_u *s1, char_u *s2));
3993 #endif
3995 static void ff_push __ARGS((ff_search_ctx_T *search_ctx, ff_stack_T *stack_ptr));
3996 static ff_stack_T *ff_pop __ARGS((ff_search_ctx_T *search_ctx));
3997 static void ff_clear __ARGS((ff_search_ctx_T *search_ctx));
3998 static void ff_free_stack_element __ARGS((ff_stack_T *stack_ptr));
3999 #ifdef FEAT_PATH_EXTRA
4000 static ff_stack_T *ff_create_stack_element __ARGS((char_u *, char_u *, int, int));
4001 #else
4002 static ff_stack_T *ff_create_stack_element __ARGS((char_u *, int, int));
4003 #endif
4004 #ifdef FEAT_PATH_EXTRA
4005 static int ff_path_in_stoplist __ARGS((char_u *, int, char_u **));
4006 #endif
4008 #if 0
4010 * if someone likes findfirst/findnext, here are the functions
4011 * NOT TESTED!!
4014 static void *ff_fn_search_context = NULL;
4016 char_u *
4017 vim_findfirst(path, filename, level)
4018 char_u *path;
4019 char_u *filename;
4020 int level;
4022 ff_fn_search_context =
4023 vim_findfile_init(path, filename, NULL, level, TRUE, FALSE,
4024 ff_fn_search_context, rel_fname);
4025 if (NULL == ff_fn_search_context)
4026 return NULL;
4027 else
4028 return vim_findnext()
4031 char_u *
4032 vim_findnext()
4034 char_u *ret = vim_findfile(ff_fn_search_context);
4036 if (NULL == ret)
4038 vim_findfile_cleanup(ff_fn_search_context);
4039 ff_fn_search_context = NULL;
4041 return ret;
4043 #endif
4046 * Initialization routine for vim_findfile.
4048 * Returns the newly allocated search context or NULL if an error occured.
4050 * Don't forget to clean up by calling vim_findfile_cleanup() if you are done
4051 * with the search context.
4053 * Find the file 'filename' in the directory 'path'.
4054 * The parameter 'path' may contain wildcards. If so only search 'level'
4055 * directories deep. The parameter 'level' is the absolute maximum and is
4056 * not related to restricts given to the '**' wildcard. If 'level' is 100
4057 * and you use '**200' vim_findfile() will stop after 100 levels.
4059 * 'filename' cannot contain wildcards! It is used as-is, no backslashes to
4060 * escape special characters.
4062 * If 'stopdirs' is not NULL and nothing is found downward, the search is
4063 * restarted on the next higher directory level. This is repeated until the
4064 * start-directory of a search is contained in 'stopdirs'. 'stopdirs' has the
4065 * format ";*<dirname>*\(;<dirname>\)*;\=$".
4067 * If the 'path' is relative, the starting dir for the search is either VIM's
4068 * current dir or if the path starts with "./" the current files dir.
4069 * If the 'path' is absolut, the starting dir is that part of the path before
4070 * the first wildcard.
4072 * Upward search is only done on the starting dir.
4074 * If 'free_visited' is TRUE the list of already visited files/directories is
4075 * cleared. Set this to FALSE if you just want to search from another
4076 * directory, but want to be sure that no directory from a previous search is
4077 * searched again. This is useful if you search for a file at different places.
4078 * The list of visited files/dirs can also be cleared with the function
4079 * vim_findfile_free_visited().
4081 * Set the parameter 'find_what' to FINDFILE_DIR if you want to search for
4082 * directories only, FINDFILE_FILE for files only, FINDFILE_BOTH for both.
4084 * A search context returned by a previous call to vim_findfile_init() can be
4085 * passed in the parameter "search_ctx_arg". This context is reused and
4086 * reinitialized with the new parameters. The list of already visited
4087 * directories from this context is only deleted if the parameter
4088 * "free_visited" is true. Be aware that the passed "search_ctx_arg" is freed
4089 * if the reinitialization fails.
4091 * If you don't have a search context from a previous call "search_ctx_arg"
4092 * must be NULL.
4094 * This function silently ignores a few errors, vim_findfile() will have
4095 * limited functionality then.
4097 /*ARGSUSED*/
4098 void *
4099 vim_findfile_init(path, filename, stopdirs, level, free_visited, find_what,
4100 search_ctx_arg, tagfile, rel_fname)
4101 char_u *path;
4102 char_u *filename;
4103 char_u *stopdirs;
4104 int level;
4105 int free_visited;
4106 int find_what;
4107 void *search_ctx_arg;
4108 int tagfile;
4109 char_u *rel_fname; /* file name to use for "." */
4111 #ifdef FEAT_PATH_EXTRA
4112 char_u *wc_part;
4113 #endif
4114 ff_stack_T *sptr;
4115 ff_search_ctx_T *search_ctx;
4117 /* If a search context is given by the caller, reuse it, else allocate a
4118 * new one.
4120 if (search_ctx_arg != NULL)
4121 search_ctx = search_ctx_arg;
4122 else
4124 search_ctx = (ff_search_ctx_T*)alloc((unsigned)sizeof(ff_search_ctx_T));
4125 if (search_ctx == NULL)
4126 goto error_return;
4127 memset(search_ctx, 0, sizeof(ff_search_ctx_T));
4129 search_ctx->ffsc_find_what = find_what;
4131 /* clear the search context, but NOT the visited lists */
4132 ff_clear(search_ctx);
4134 /* clear visited list if wanted */
4135 if (free_visited == TRUE)
4136 vim_findfile_free_visited(search_ctx);
4137 else
4139 /* Reuse old visited lists. Get the visited list for the given
4140 * filename. If no list for the current filename exists, creates a new
4141 * one. */
4142 search_ctx->ffsc_visited_list = ff_get_visited_list(filename,
4143 &search_ctx->ffsc_visited_lists_list);
4144 if (search_ctx->ffsc_visited_list == NULL)
4145 goto error_return;
4146 search_ctx->ffsc_dir_visited_list = ff_get_visited_list(filename,
4147 &search_ctx->ffsc_dir_visited_lists_list);
4148 if (search_ctx->ffsc_dir_visited_list == NULL)
4149 goto error_return;
4152 if (ff_expand_buffer == NULL)
4154 ff_expand_buffer = (char_u*)alloc(MAXPATHL);
4155 if (ff_expand_buffer == NULL)
4156 goto error_return;
4159 /* Store information on starting dir now if path is relative.
4160 * If path is absolute, we do that later. */
4161 if (path[0] == '.'
4162 && (vim_ispathsep(path[1]) || path[1] == NUL)
4163 && (!tagfile || vim_strchr(p_cpo, CPO_DOTTAG) == NULL)
4164 && rel_fname != NULL)
4166 int len = (int)(gettail(rel_fname) - rel_fname);
4168 if (!vim_isAbsName(rel_fname) && len + 1 < MAXPATHL)
4170 /* Make the start dir an absolute path name. */
4171 vim_strncpy(ff_expand_buffer, rel_fname, len);
4172 search_ctx->ffsc_start_dir = FullName_save(ff_expand_buffer, FALSE);
4174 else
4175 search_ctx->ffsc_start_dir = vim_strnsave(rel_fname, len);
4176 if (search_ctx->ffsc_start_dir == NULL)
4177 goto error_return;
4178 if (*++path != NUL)
4179 ++path;
4181 else if (*path == NUL || !vim_isAbsName(path))
4183 #ifdef BACKSLASH_IN_FILENAME
4184 /* "c:dir" needs "c:" to be expanded, otherwise use current dir */
4185 if (*path != NUL && path[1] == ':')
4187 char_u drive[3];
4189 drive[0] = path[0];
4190 drive[1] = ':';
4191 drive[2] = NUL;
4192 if (vim_FullName(drive, ff_expand_buffer, MAXPATHL, TRUE) == FAIL)
4193 goto error_return;
4194 path += 2;
4196 else
4197 #endif
4198 if (mch_dirname(ff_expand_buffer, MAXPATHL) == FAIL)
4199 goto error_return;
4201 search_ctx->ffsc_start_dir = vim_strsave(ff_expand_buffer);
4202 if (search_ctx->ffsc_start_dir == NULL)
4203 goto error_return;
4205 #ifdef BACKSLASH_IN_FILENAME
4206 /* A path that starts with "/dir" is relative to the drive, not to the
4207 * directory (but not for "//machine/dir"). Only use the drive name. */
4208 if ((*path == '/' || *path == '\\')
4209 && path[1] != path[0]
4210 && search_ctx->ffsc_start_dir[1] == ':')
4211 search_ctx->ffsc_start_dir[2] = NUL;
4212 #endif
4215 #ifdef FEAT_PATH_EXTRA
4217 * If stopdirs are given, split them into an array of pointers.
4218 * If this fails (mem allocation), there is no upward search at all or a
4219 * stop directory is not recognized -> continue silently.
4220 * If stopdirs just contains a ";" or is empty,
4221 * search_ctx->ffsc_stopdirs_v will only contain a NULL pointer. This
4222 * is handled as unlimited upward search. See function
4223 * ff_path_in_stoplist() for details.
4225 if (stopdirs != NULL)
4227 char_u *walker = stopdirs;
4228 int dircount;
4230 while (*walker == ';')
4231 walker++;
4233 dircount = 1;
4234 search_ctx->ffsc_stopdirs_v =
4235 (char_u **)alloc((unsigned)sizeof(char_u *));
4237 if (search_ctx->ffsc_stopdirs_v != NULL)
4241 char_u *helper;
4242 void *ptr;
4244 helper = walker;
4245 ptr = vim_realloc(search_ctx->ffsc_stopdirs_v,
4246 (dircount + 1) * sizeof(char_u *));
4247 if (ptr)
4248 search_ctx->ffsc_stopdirs_v = ptr;
4249 else
4250 /* ignore, keep what we have and continue */
4251 break;
4252 walker = vim_strchr(walker, ';');
4253 if (walker)
4255 search_ctx->ffsc_stopdirs_v[dircount-1] =
4256 vim_strnsave(helper, (int)(walker - helper));
4257 walker++;
4259 else
4260 /* this might be "", which means ascent till top
4261 * of directory tree.
4263 search_ctx->ffsc_stopdirs_v[dircount-1] =
4264 vim_strsave(helper);
4266 dircount++;
4268 } while (walker != NULL);
4269 search_ctx->ffsc_stopdirs_v[dircount-1] = NULL;
4272 #endif
4274 #ifdef FEAT_PATH_EXTRA
4275 search_ctx->ffsc_level = level;
4277 /* split into:
4278 * -fix path
4279 * -wildcard_stuff (might be NULL)
4281 wc_part = vim_strchr(path, '*');
4282 if (wc_part != NULL)
4284 int llevel;
4285 int len;
4286 char *errpt;
4288 /* save the fix part of the path */
4289 search_ctx->ffsc_fix_path = vim_strnsave(path, (int)(wc_part - path));
4292 * copy wc_path and add restricts to the '**' wildcard.
4293 * The octet after a '**' is used as a (binary) counter.
4294 * So '**3' is transposed to '**^C' ('^C' is ASCII value 3)
4295 * or '**76' is transposed to '**N'( 'N' is ASCII value 76).
4296 * For EBCDIC you get different character values.
4297 * If no restrict is given after '**' the default is used.
4298 * Due to this technic the path looks awful if you print it as a
4299 * string.
4301 len = 0;
4302 while (*wc_part != NUL)
4304 if (STRNCMP(wc_part, "**", 2) == 0)
4306 ff_expand_buffer[len++] = *wc_part++;
4307 ff_expand_buffer[len++] = *wc_part++;
4309 llevel = strtol((char *)wc_part, &errpt, 10);
4310 if ((char_u *)errpt != wc_part && llevel > 0 && llevel < 255)
4311 ff_expand_buffer[len++] = llevel;
4312 else if ((char_u *)errpt != wc_part && llevel == 0)
4313 /* restrict is 0 -> remove already added '**' */
4314 len -= 2;
4315 else
4316 ff_expand_buffer[len++] = FF_MAX_STAR_STAR_EXPAND;
4317 wc_part = (char_u *)errpt;
4318 if (*wc_part != NUL && !vim_ispathsep(*wc_part))
4320 EMSG2(_("E343: Invalid path: '**[number]' must be at the end of the path or be followed by '%s'."), PATHSEPSTR);
4321 goto error_return;
4324 else
4325 ff_expand_buffer[len++] = *wc_part++;
4327 ff_expand_buffer[len] = NUL;
4328 search_ctx->ffsc_wc_path = vim_strsave(ff_expand_buffer);
4330 if (search_ctx->ffsc_wc_path == NULL)
4331 goto error_return;
4333 else
4334 #endif
4335 search_ctx->ffsc_fix_path = vim_strsave(path);
4337 if (search_ctx->ffsc_start_dir == NULL)
4339 /* store the fix part as startdir.
4340 * This is needed if the parameter path is fully qualified.
4342 search_ctx->ffsc_start_dir = vim_strsave(search_ctx->ffsc_fix_path);
4343 if (search_ctx->ffsc_start_dir)
4344 search_ctx->ffsc_fix_path[0] = NUL;
4347 /* create an absolute path */
4348 STRCPY(ff_expand_buffer, search_ctx->ffsc_start_dir);
4349 add_pathsep(ff_expand_buffer);
4350 STRCAT(ff_expand_buffer, search_ctx->ffsc_fix_path);
4351 add_pathsep(ff_expand_buffer);
4353 sptr = ff_create_stack_element(ff_expand_buffer,
4354 #ifdef FEAT_PATH_EXTRA
4355 search_ctx->ffsc_wc_path,
4356 #endif
4357 level, 0);
4359 if (sptr == NULL)
4360 goto error_return;
4362 ff_push(search_ctx, sptr);
4364 search_ctx->ffsc_file_to_search = vim_strsave(filename);
4365 if (search_ctx->ffsc_file_to_search == NULL)
4366 goto error_return;
4368 return search_ctx;
4370 error_return:
4372 * We clear the search context now!
4373 * Even when the caller gave us a (perhaps valid) context we free it here,
4374 * as we might have already destroyed it.
4376 vim_findfile_cleanup(search_ctx);
4377 return NULL;
4380 #if defined(FEAT_PATH_EXTRA) || defined(PROTO)
4382 * Get the stopdir string. Check that ';' is not escaped.
4384 char_u *
4385 vim_findfile_stopdir(buf)
4386 char_u *buf;
4388 char_u *r_ptr = buf;
4390 while (*r_ptr != NUL && *r_ptr != ';')
4392 if (r_ptr[0] == '\\' && r_ptr[1] == ';')
4394 /* overwrite the escape char,
4395 * use STRLEN(r_ptr) to move the trailing '\0'
4397 STRMOVE(r_ptr, r_ptr + 1);
4398 r_ptr++;
4400 r_ptr++;
4402 if (*r_ptr == ';')
4404 *r_ptr = 0;
4405 r_ptr++;
4407 else if (*r_ptr == NUL)
4408 r_ptr = NULL;
4409 return r_ptr;
4411 #endif
4414 * Clean up the given search context. Can handle a NULL pointer.
4416 void
4417 vim_findfile_cleanup(ctx)
4418 void *ctx;
4420 if (ctx == NULL)
4421 return;
4423 vim_findfile_free_visited(ctx);
4424 ff_clear(ctx);
4425 vim_free(ctx);
4429 * Find a file in a search context.
4430 * The search context was created with vim_findfile_init() above.
4431 * Return a pointer to an allocated file name or NULL if nothing found.
4432 * To get all matching files call this function until you get NULL.
4434 * If the passed search_context is NULL, NULL is returned.
4436 * The search algorithm is depth first. To change this replace the
4437 * stack with a list (don't forget to leave partly searched directories on the
4438 * top of the list).
4440 char_u *
4441 vim_findfile(search_ctx_arg)
4442 void *search_ctx_arg;
4444 char_u *file_path;
4445 #ifdef FEAT_PATH_EXTRA
4446 char_u *rest_of_wildcards;
4447 char_u *path_end = NULL;
4448 #endif
4449 ff_stack_T *stackp;
4450 #if defined(FEAT_SEARCHPATH) || defined(FEAT_PATH_EXTRA)
4451 int len;
4452 #endif
4453 int i;
4454 char_u *p;
4455 #ifdef FEAT_SEARCHPATH
4456 char_u *suf;
4457 #endif
4458 ff_search_ctx_T *search_ctx;
4460 if (search_ctx_arg == NULL)
4461 return NULL;
4463 search_ctx = (ff_search_ctx_T *)search_ctx_arg;
4466 * filepath is used as buffer for various actions and as the storage to
4467 * return a found filename.
4469 if ((file_path = alloc((int)MAXPATHL)) == NULL)
4470 return NULL;
4472 #ifdef FEAT_PATH_EXTRA
4473 /* store the end of the start dir -- needed for upward search */
4474 if (search_ctx->ffsc_start_dir != NULL)
4475 path_end = &search_ctx->ffsc_start_dir[
4476 STRLEN(search_ctx->ffsc_start_dir)];
4477 #endif
4479 #ifdef FEAT_PATH_EXTRA
4480 /* upward search loop */
4481 for (;;)
4483 #endif
4484 /* downward search loop */
4485 for (;;)
4487 /* check if user user wants to stop the search*/
4488 ui_breakcheck();
4489 if (got_int)
4490 break;
4492 /* get directory to work on from stack */
4493 stackp = ff_pop(search_ctx);
4494 if (stackp == NULL)
4495 break;
4498 * TODO: decide if we leave this test in
4500 * GOOD: don't search a directory(-tree) twice.
4501 * BAD: - check linked list for every new directory entered.
4502 * - check for double files also done below
4504 * Here we check if we already searched this directory.
4505 * We already searched a directory if:
4506 * 1) The directory is the same.
4507 * 2) We would use the same wildcard string.
4509 * Good if you have links on same directory via several ways
4510 * or you have selfreferences in directories (e.g. SuSE Linux 6.3:
4511 * /etc/rc.d/init.d is linked to /etc/rc.d -> endless loop)
4513 * This check is only needed for directories we work on for the
4514 * first time (hence stackp->ff_filearray == NULL)
4516 if (stackp->ffs_filearray == NULL
4517 && ff_check_visited(&search_ctx->ffsc_dir_visited_list
4518 ->ffvl_visited_list,
4519 stackp->ffs_fix_path
4520 #ifdef FEAT_PATH_EXTRA
4521 , stackp->ffs_wc_path
4522 #endif
4523 ) == FAIL)
4525 #ifdef FF_VERBOSE
4526 if (p_verbose >= 5)
4528 verbose_enter_scroll();
4529 smsg((char_u *)"Already Searched: %s (%s)",
4530 stackp->ffs_fix_path, stackp->ffs_wc_path);
4531 /* don't overwrite this either */
4532 msg_puts((char_u *)"\n");
4533 verbose_leave_scroll();
4535 #endif
4536 ff_free_stack_element(stackp);
4537 continue;
4539 #ifdef FF_VERBOSE
4540 else if (p_verbose >= 5)
4542 verbose_enter_scroll();
4543 smsg((char_u *)"Searching: %s (%s)",
4544 stackp->ffs_fix_path, stackp->ffs_wc_path);
4545 /* don't overwrite this either */
4546 msg_puts((char_u *)"\n");
4547 verbose_leave_scroll();
4549 #endif
4551 /* check depth */
4552 if (stackp->ffs_level <= 0)
4554 ff_free_stack_element(stackp);
4555 continue;
4558 file_path[0] = NUL;
4561 * If no filearray till now expand wildcards
4562 * The function expand_wildcards() can handle an array of paths
4563 * and all possible expands are returned in one array. We use this
4564 * to handle the expansion of '**' into an empty string.
4566 if (stackp->ffs_filearray == NULL)
4568 char_u *dirptrs[2];
4570 /* we use filepath to build the path expand_wildcards() should
4571 * expand.
4573 dirptrs[0] = file_path;
4574 dirptrs[1] = NULL;
4576 /* if we have a start dir copy it in */
4577 if (!vim_isAbsName(stackp->ffs_fix_path)
4578 && search_ctx->ffsc_start_dir)
4580 STRCPY(file_path, search_ctx->ffsc_start_dir);
4581 add_pathsep(file_path);
4584 /* append the fix part of the search path */
4585 STRCAT(file_path, stackp->ffs_fix_path);
4586 add_pathsep(file_path);
4588 #ifdef FEAT_PATH_EXTRA
4589 rest_of_wildcards = stackp->ffs_wc_path;
4590 if (*rest_of_wildcards != NUL)
4592 len = (int)STRLEN(file_path);
4593 if (STRNCMP(rest_of_wildcards, "**", 2) == 0)
4595 /* pointer to the restrict byte
4596 * The restrict byte is not a character!
4598 p = rest_of_wildcards + 2;
4600 if (*p > 0)
4602 (*p)--;
4603 file_path[len++] = '*';
4606 if (*p == 0)
4608 /* remove '**<numb> from wildcards */
4609 STRMOVE(rest_of_wildcards, rest_of_wildcards + 3);
4611 else
4612 rest_of_wildcards += 3;
4614 if (stackp->ffs_star_star_empty == 0)
4616 /* if not done before, expand '**' to empty */
4617 stackp->ffs_star_star_empty = 1;
4618 dirptrs[1] = stackp->ffs_fix_path;
4623 * Here we copy until the next path separator or the end of
4624 * the path. If we stop at a path separator, there is
4625 * still something else left. This is handled below by
4626 * pushing every directory returned from expand_wildcards()
4627 * on the stack again for further search.
4629 while (*rest_of_wildcards
4630 && !vim_ispathsep(*rest_of_wildcards))
4631 file_path[len++] = *rest_of_wildcards++;
4633 file_path[len] = NUL;
4634 if (vim_ispathsep(*rest_of_wildcards))
4635 rest_of_wildcards++;
4637 #endif
4640 * Expand wildcards like "*" and "$VAR".
4641 * If the path is a URL don't try this.
4643 if (path_with_url(dirptrs[0]))
4645 stackp->ffs_filearray = (char_u **)
4646 alloc((unsigned)sizeof(char *));
4647 if (stackp->ffs_filearray != NULL
4648 && (stackp->ffs_filearray[0]
4649 = vim_strsave(dirptrs[0])) != NULL)
4650 stackp->ffs_filearray_size = 1;
4651 else
4652 stackp->ffs_filearray_size = 0;
4654 else
4655 expand_wildcards((dirptrs[1] == NULL) ? 1 : 2, dirptrs,
4656 &stackp->ffs_filearray_size,
4657 &stackp->ffs_filearray,
4658 EW_DIR|EW_ADDSLASH|EW_SILENT);
4660 stackp->ffs_filearray_cur = 0;
4661 stackp->ffs_stage = 0;
4663 #ifdef FEAT_PATH_EXTRA
4664 else
4665 rest_of_wildcards = &stackp->ffs_wc_path[
4666 STRLEN(stackp->ffs_wc_path)];
4667 #endif
4669 if (stackp->ffs_stage == 0)
4671 /* this is the first time we work on this directory */
4672 #ifdef FEAT_PATH_EXTRA
4673 if (*rest_of_wildcards == NUL)
4674 #endif
4677 * we don't have further wildcards to expand, so we have to
4678 * check for the final file now
4680 for (i = stackp->ffs_filearray_cur;
4681 i < stackp->ffs_filearray_size; ++i)
4683 if (!path_with_url(stackp->ffs_filearray[i])
4684 && !mch_isdir(stackp->ffs_filearray[i]))
4685 continue; /* not a directory */
4687 /* prepare the filename to be checked for existance
4688 * below */
4689 STRCPY(file_path, stackp->ffs_filearray[i]);
4690 add_pathsep(file_path);
4691 STRCAT(file_path, search_ctx->ffsc_file_to_search);
4694 * Try without extra suffix and then with suffixes
4695 * from 'suffixesadd'.
4697 #ifdef FEAT_SEARCHPATH
4698 len = (int)STRLEN(file_path);
4699 suf = curbuf->b_p_sua;
4700 for (;;)
4701 #endif
4703 /* if file exists and we didn't already find it */
4704 if ((path_with_url(file_path)
4705 || (mch_getperm(file_path) >= 0
4706 && (search_ctx->ffsc_find_what
4707 == FINDFILE_BOTH
4708 || ((search_ctx->ffsc_find_what
4709 == FINDFILE_DIR)
4710 == mch_isdir(file_path)))))
4711 #ifndef FF_VERBOSE
4712 && (ff_check_visited(
4713 &search_ctx->ffsc_visited_list->ffvl_visited_list,
4714 file_path
4715 #ifdef FEAT_PATH_EXTRA
4716 , (char_u *)""
4717 #endif
4718 ) == OK)
4719 #endif
4722 #ifdef FF_VERBOSE
4723 if (ff_check_visited(
4724 &search_ctx->ffsc_visited_list->ffvl_visited_list,
4725 file_path
4726 #ifdef FEAT_PATH_EXTRA
4727 , (char_u *)""
4728 #endif
4729 ) == FAIL)
4731 if (p_verbose >= 5)
4733 verbose_enter_scroll();
4734 smsg((char_u *)"Already: %s",
4735 file_path);
4736 /* don't overwrite this either */
4737 msg_puts((char_u *)"\n");
4738 verbose_leave_scroll();
4740 continue;
4742 #endif
4744 /* push dir to examine rest of subdirs later */
4745 stackp->ffs_filearray_cur = i + 1;
4746 ff_push(search_ctx, stackp);
4748 simplify_filename(file_path);
4749 if (mch_dirname(ff_expand_buffer, MAXPATHL)
4750 == OK)
4752 p = shorten_fname(file_path,
4753 ff_expand_buffer);
4754 if (p != NULL)
4755 STRMOVE(file_path, p);
4757 #ifdef FF_VERBOSE
4758 if (p_verbose >= 5)
4760 verbose_enter_scroll();
4761 smsg((char_u *)"HIT: %s", file_path);
4762 /* don't overwrite this either */
4763 msg_puts((char_u *)"\n");
4764 verbose_leave_scroll();
4766 #endif
4767 return file_path;
4770 #ifdef FEAT_SEARCHPATH
4771 /* Not found or found already, try next suffix. */
4772 if (*suf == NUL)
4773 break;
4774 copy_option_part(&suf, file_path + len,
4775 MAXPATHL - len, ",");
4776 #endif
4780 #ifdef FEAT_PATH_EXTRA
4781 else
4784 * still wildcards left, push the directories for further
4785 * search
4787 for (i = stackp->ffs_filearray_cur;
4788 i < stackp->ffs_filearray_size; ++i)
4790 if (!mch_isdir(stackp->ffs_filearray[i]))
4791 continue; /* not a directory */
4793 ff_push(search_ctx,
4794 ff_create_stack_element(
4795 stackp->ffs_filearray[i],
4796 rest_of_wildcards,
4797 stackp->ffs_level - 1, 0));
4800 #endif
4801 stackp->ffs_filearray_cur = 0;
4802 stackp->ffs_stage = 1;
4805 #ifdef FEAT_PATH_EXTRA
4807 * if wildcards contains '**' we have to descent till we reach the
4808 * leaves of the directory tree.
4810 if (STRNCMP(stackp->ffs_wc_path, "**", 2) == 0)
4812 for (i = stackp->ffs_filearray_cur;
4813 i < stackp->ffs_filearray_size; ++i)
4815 if (fnamecmp(stackp->ffs_filearray[i],
4816 stackp->ffs_fix_path) == 0)
4817 continue; /* don't repush same directory */
4818 if (!mch_isdir(stackp->ffs_filearray[i]))
4819 continue; /* not a directory */
4820 ff_push(search_ctx,
4821 ff_create_stack_element(stackp->ffs_filearray[i],
4822 stackp->ffs_wc_path, stackp->ffs_level - 1, 1));
4825 #endif
4827 /* we are done with the current directory */
4828 ff_free_stack_element(stackp);
4832 #ifdef FEAT_PATH_EXTRA
4833 /* If we reached this, we didn't find anything downwards.
4834 * Let's check if we should do an upward search.
4836 if (search_ctx->ffsc_start_dir
4837 && search_ctx->ffsc_stopdirs_v != NULL && !got_int)
4839 ff_stack_T *sptr;
4841 /* is the last starting directory in the stop list? */
4842 if (ff_path_in_stoplist(search_ctx->ffsc_start_dir,
4843 (int)(path_end - search_ctx->ffsc_start_dir),
4844 search_ctx->ffsc_stopdirs_v) == TRUE)
4845 break;
4847 /* cut of last dir */
4848 while (path_end > search_ctx->ffsc_start_dir
4849 && vim_ispathsep(*path_end))
4850 path_end--;
4851 while (path_end > search_ctx->ffsc_start_dir
4852 && !vim_ispathsep(path_end[-1]))
4853 path_end--;
4854 *path_end = 0;
4855 path_end--;
4857 if (*search_ctx->ffsc_start_dir == 0)
4858 break;
4860 STRCPY(file_path, search_ctx->ffsc_start_dir);
4861 add_pathsep(file_path);
4862 STRCAT(file_path, search_ctx->ffsc_fix_path);
4864 /* create a new stack entry */
4865 sptr = ff_create_stack_element(file_path,
4866 search_ctx->ffsc_wc_path, search_ctx->ffsc_level, 0);
4867 if (sptr == NULL)
4868 break;
4869 ff_push(search_ctx, sptr);
4871 else
4872 break;
4874 #endif
4876 vim_free(file_path);
4877 return NULL;
4881 * Free the list of lists of visited files and directories
4882 * Can handle it if the passed search_context is NULL;
4884 void
4885 vim_findfile_free_visited(search_ctx_arg)
4886 void *search_ctx_arg;
4888 ff_search_ctx_T *search_ctx;
4890 if (search_ctx_arg == NULL)
4891 return;
4893 search_ctx = (ff_search_ctx_T *)search_ctx_arg;
4894 vim_findfile_free_visited_list(&search_ctx->ffsc_visited_lists_list);
4895 vim_findfile_free_visited_list(&search_ctx->ffsc_dir_visited_lists_list);
4898 static void
4899 vim_findfile_free_visited_list(list_headp)
4900 ff_visited_list_hdr_T **list_headp;
4902 ff_visited_list_hdr_T *vp;
4904 while (*list_headp != NULL)
4906 vp = (*list_headp)->ffvl_next;
4907 ff_free_visited_list((*list_headp)->ffvl_visited_list);
4909 vim_free((*list_headp)->ffvl_filename);
4910 vim_free(*list_headp);
4911 *list_headp = vp;
4913 *list_headp = NULL;
4916 static void
4917 ff_free_visited_list(vl)
4918 ff_visited_T *vl;
4920 ff_visited_T *vp;
4922 while (vl != NULL)
4924 vp = vl->ffv_next;
4925 #ifdef FEAT_PATH_EXTRA
4926 vim_free(vl->ffv_wc_path);
4927 #endif
4928 vim_free(vl);
4929 vl = vp;
4931 vl = NULL;
4935 * Returns the already visited list for the given filename. If none is found it
4936 * allocates a new one.
4938 static ff_visited_list_hdr_T*
4939 ff_get_visited_list(filename, list_headp)
4940 char_u *filename;
4941 ff_visited_list_hdr_T **list_headp;
4943 ff_visited_list_hdr_T *retptr = NULL;
4945 /* check if a visited list for the given filename exists */
4946 if (*list_headp != NULL)
4948 retptr = *list_headp;
4949 while (retptr != NULL)
4951 if (fnamecmp(filename, retptr->ffvl_filename) == 0)
4953 #ifdef FF_VERBOSE
4954 if (p_verbose >= 5)
4956 verbose_enter_scroll();
4957 smsg((char_u *)"ff_get_visited_list: FOUND list for %s",
4958 filename);
4959 /* don't overwrite this either */
4960 msg_puts((char_u *)"\n");
4961 verbose_leave_scroll();
4963 #endif
4964 return retptr;
4966 retptr = retptr->ffvl_next;
4970 #ifdef FF_VERBOSE
4971 if (p_verbose >= 5)
4973 verbose_enter_scroll();
4974 smsg((char_u *)"ff_get_visited_list: new list for %s", filename);
4975 /* don't overwrite this either */
4976 msg_puts((char_u *)"\n");
4977 verbose_leave_scroll();
4979 #endif
4982 * if we reach this we didn't find a list and we have to allocate new list
4984 retptr = (ff_visited_list_hdr_T*)alloc((unsigned)sizeof(*retptr));
4985 if (retptr == NULL)
4986 return NULL;
4988 retptr->ffvl_visited_list = NULL;
4989 retptr->ffvl_filename = vim_strsave(filename);
4990 if (retptr->ffvl_filename == NULL)
4992 vim_free(retptr);
4993 return NULL;
4995 retptr->ffvl_next = *list_headp;
4996 *list_headp = retptr;
4998 return retptr;
5001 #ifdef FEAT_PATH_EXTRA
5003 * check if two wildcard paths are equal. Returns TRUE or FALSE.
5004 * They are equal if:
5005 * - both paths are NULL
5006 * - they have the same length
5007 * - char by char comparison is OK
5008 * - the only differences are in the counters behind a '**', so
5009 * '**\20' is equal to '**\24'
5011 static int
5012 ff_wc_equal(s1, s2)
5013 char_u *s1;
5014 char_u *s2;
5016 int i;
5018 if (s1 == s2)
5019 return TRUE;
5021 if (s1 == NULL || s2 == NULL)
5022 return FALSE;
5024 if (STRLEN(s1) != STRLEN(s2))
5025 return FAIL;
5027 for (i = 0; s1[i] != NUL && s2[i] != NUL; i++)
5029 if (s1[i] != s2[i]
5030 #ifdef CASE_INSENSITIVE_FILENAME
5031 && TOUPPER_LOC(s1[i]) != TOUPPER_LOC(s2[i])
5032 #endif
5035 if (i >= 2)
5036 if (s1[i-1] == '*' && s1[i-2] == '*')
5037 continue;
5038 else
5039 return FAIL;
5040 else
5041 return FAIL;
5044 return TRUE;
5046 #endif
5049 * maintains the list of already visited files and dirs
5050 * returns FAIL if the given file/dir is already in the list
5051 * returns OK if it is newly added
5053 * TODO: What to do on memory allocation problems?
5054 * -> return TRUE - Better the file is found several times instead of
5055 * never.
5057 static int
5058 ff_check_visited(visited_list, fname
5059 #ifdef FEAT_PATH_EXTRA
5060 , wc_path
5061 #endif
5063 ff_visited_T **visited_list;
5064 char_u *fname;
5065 #ifdef FEAT_PATH_EXTRA
5066 char_u *wc_path;
5067 #endif
5069 ff_visited_T *vp;
5070 #ifdef UNIX
5071 struct stat st;
5072 int url = FALSE;
5073 #endif
5075 /* For an URL we only compare the name, otherwise we compare the
5076 * device/inode (unix) or the full path name (not Unix). */
5077 if (path_with_url(fname))
5079 vim_strncpy(ff_expand_buffer, fname, MAXPATHL - 1);
5080 #ifdef UNIX
5081 url = TRUE;
5082 #endif
5084 else
5086 ff_expand_buffer[0] = NUL;
5087 #ifdef UNIX
5088 if (mch_stat((char *)fname, &st) < 0)
5089 #else
5090 if (vim_FullName(fname, ff_expand_buffer, MAXPATHL, TRUE) == FAIL)
5091 #endif
5092 return FAIL;
5095 /* check against list of already visited files */
5096 for (vp = *visited_list; vp != NULL; vp = vp->ffv_next)
5098 if (
5099 #ifdef UNIX
5100 !url
5101 ? (vp->ffv_dev == st.st_dev
5102 && vp->ffv_ino == st.st_ino)
5104 #endif
5105 fnamecmp(vp->ffv_fname, ff_expand_buffer) == 0
5108 #ifdef FEAT_PATH_EXTRA
5109 /* are the wildcard parts equal */
5110 if (ff_wc_equal(vp->ffv_wc_path, wc_path) == TRUE)
5111 #endif
5112 /* already visited */
5113 return FAIL;
5118 * New file/dir. Add it to the list of visited files/dirs.
5120 vp = (ff_visited_T *)alloc((unsigned)(sizeof(ff_visited_T)
5121 + STRLEN(ff_expand_buffer)));
5123 if (vp != NULL)
5125 #ifdef UNIX
5126 if (!url)
5128 vp->ffv_ino = st.st_ino;
5129 vp->ffv_dev = st.st_dev;
5130 vp->ffv_fname[0] = NUL;
5132 else
5134 vp->ffv_ino = 0;
5135 vp->ffv_dev = -1;
5136 #endif
5137 STRCPY(vp->ffv_fname, ff_expand_buffer);
5138 #ifdef UNIX
5140 #endif
5141 #ifdef FEAT_PATH_EXTRA
5142 if (wc_path != NULL)
5143 vp->ffv_wc_path = vim_strsave(wc_path);
5144 else
5145 vp->ffv_wc_path = NULL;
5146 #endif
5148 vp->ffv_next = *visited_list;
5149 *visited_list = vp;
5152 return OK;
5156 * create stack element from given path pieces
5158 static ff_stack_T *
5159 ff_create_stack_element(fix_part,
5160 #ifdef FEAT_PATH_EXTRA
5161 wc_part,
5162 #endif
5163 level, star_star_empty)
5164 char_u *fix_part;
5165 #ifdef FEAT_PATH_EXTRA
5166 char_u *wc_part;
5167 #endif
5168 int level;
5169 int star_star_empty;
5171 ff_stack_T *new;
5173 new = (ff_stack_T *)alloc((unsigned)sizeof(ff_stack_T));
5174 if (new == NULL)
5175 return NULL;
5177 new->ffs_prev = NULL;
5178 new->ffs_filearray = NULL;
5179 new->ffs_filearray_size = 0;
5180 new->ffs_filearray_cur = 0;
5181 new->ffs_stage = 0;
5182 new->ffs_level = level;
5183 new->ffs_star_star_empty = star_star_empty;;
5185 /* the following saves NULL pointer checks in vim_findfile */
5186 if (fix_part == NULL)
5187 fix_part = (char_u *)"";
5188 new->ffs_fix_path = vim_strsave(fix_part);
5190 #ifdef FEAT_PATH_EXTRA
5191 if (wc_part == NULL)
5192 wc_part = (char_u *)"";
5193 new->ffs_wc_path = vim_strsave(wc_part);
5194 #endif
5196 if (new->ffs_fix_path == NULL
5197 #ifdef FEAT_PATH_EXTRA
5198 || new->ffs_wc_path == NULL
5199 #endif
5202 ff_free_stack_element(new);
5203 new = NULL;
5206 return new;
5210 * Push a dir on the directory stack.
5212 static void
5213 ff_push(search_ctx, stack_ptr)
5214 ff_search_ctx_T *search_ctx;
5215 ff_stack_T *stack_ptr;
5217 /* check for NULL pointer, not to return an error to the user, but
5218 * to prevent a crash */
5219 if (stack_ptr != NULL)
5221 stack_ptr->ffs_prev = search_ctx->ffsc_stack_ptr;
5222 search_ctx->ffsc_stack_ptr = stack_ptr;
5227 * Pop a dir from the directory stack.
5228 * Returns NULL if stack is empty.
5230 static ff_stack_T *
5231 ff_pop(search_ctx)
5232 ff_search_ctx_T *search_ctx;
5234 ff_stack_T *sptr;
5236 sptr = search_ctx->ffsc_stack_ptr;
5237 if (search_ctx->ffsc_stack_ptr != NULL)
5238 search_ctx->ffsc_stack_ptr = search_ctx->ffsc_stack_ptr->ffs_prev;
5240 return sptr;
5244 * free the given stack element
5246 static void
5247 ff_free_stack_element(stack_ptr)
5248 ff_stack_T *stack_ptr;
5250 /* vim_free handles possible NULL pointers */
5251 vim_free(stack_ptr->ffs_fix_path);
5252 #ifdef FEAT_PATH_EXTRA
5253 vim_free(stack_ptr->ffs_wc_path);
5254 #endif
5256 if (stack_ptr->ffs_filearray != NULL)
5257 FreeWild(stack_ptr->ffs_filearray_size, stack_ptr->ffs_filearray);
5259 vim_free(stack_ptr);
5263 * Clear the search context, but NOT the visited list.
5265 static void
5266 ff_clear(search_ctx)
5267 ff_search_ctx_T *search_ctx;
5269 ff_stack_T *sptr;
5271 /* clear up stack */
5272 while ((sptr = ff_pop(search_ctx)) != NULL)
5273 ff_free_stack_element(sptr);
5275 vim_free(search_ctx->ffsc_file_to_search);
5276 vim_free(search_ctx->ffsc_start_dir);
5277 vim_free(search_ctx->ffsc_fix_path);
5278 #ifdef FEAT_PATH_EXTRA
5279 vim_free(search_ctx->ffsc_wc_path);
5280 #endif
5282 #ifdef FEAT_PATH_EXTRA
5283 if (search_ctx->ffsc_stopdirs_v != NULL)
5285 int i = 0;
5287 while (search_ctx->ffsc_stopdirs_v[i] != NULL)
5289 vim_free(search_ctx->ffsc_stopdirs_v[i]);
5290 i++;
5292 vim_free(search_ctx->ffsc_stopdirs_v);
5294 search_ctx->ffsc_stopdirs_v = NULL;
5295 #endif
5297 /* reset everything */
5298 search_ctx->ffsc_file_to_search = NULL;
5299 search_ctx->ffsc_start_dir = NULL;
5300 search_ctx->ffsc_fix_path = NULL;
5301 #ifdef FEAT_PATH_EXTRA
5302 search_ctx->ffsc_wc_path = NULL;
5303 search_ctx->ffsc_level = 0;
5304 #endif
5307 #ifdef FEAT_PATH_EXTRA
5309 * check if the given path is in the stopdirs
5310 * returns TRUE if yes else FALSE
5312 static int
5313 ff_path_in_stoplist(path, path_len, stopdirs_v)
5314 char_u *path;
5315 int path_len;
5316 char_u **stopdirs_v;
5318 int i = 0;
5320 /* eat up trailing path separators, except the first */
5321 while (path_len > 1 && vim_ispathsep(path[path_len - 1]))
5322 path_len--;
5324 /* if no path consider it as match */
5325 if (path_len == 0)
5326 return TRUE;
5328 for (i = 0; stopdirs_v[i] != NULL; i++)
5330 if ((int)STRLEN(stopdirs_v[i]) > path_len)
5332 /* match for parent directory. So '/home' also matches
5333 * '/home/rks'. Check for PATHSEP in stopdirs_v[i], else
5334 * '/home/r' would also match '/home/rks'
5336 if (fnamencmp(stopdirs_v[i], path, path_len) == 0
5337 && vim_ispathsep(stopdirs_v[i][path_len]))
5338 return TRUE;
5340 else
5342 if (fnamecmp(stopdirs_v[i], path) == 0)
5343 return TRUE;
5346 return FALSE;
5348 #endif
5350 #if defined(FEAT_SEARCHPATH) || defined(PROTO)
5352 * Find the file name "ptr[len]" in the path. Also finds directory names.
5354 * On the first call set the parameter 'first' to TRUE to initialize
5355 * the search. For repeating calls to FALSE.
5357 * Repeating calls will return other files called 'ptr[len]' from the path.
5359 * Only on the first call 'ptr' and 'len' are used. For repeating calls they
5360 * don't need valid values.
5362 * If nothing found on the first call the option FNAME_MESS will issue the
5363 * message:
5364 * 'Can't find file "<file>" in path'
5365 * On repeating calls:
5366 * 'No more file "<file>" found in path'
5368 * options:
5369 * FNAME_MESS give error message when not found
5371 * Uses NameBuff[]!
5373 * Returns an allocated string for the file name. NULL for error.
5376 char_u *
5377 find_file_in_path(ptr, len, options, first, rel_fname)
5378 char_u *ptr; /* file name */
5379 int len; /* length of file name */
5380 int options;
5381 int first; /* use count'th matching file name */
5382 char_u *rel_fname; /* file name searching relative to */
5384 return find_file_in_path_option(ptr, len, options, first,
5385 *curbuf->b_p_path == NUL ? p_path : curbuf->b_p_path,
5386 FINDFILE_BOTH, rel_fname, curbuf->b_p_sua);
5389 static char_u *ff_file_to_find = NULL;
5390 static void *fdip_search_ctx = NULL;
5392 #if defined(EXITFREE)
5393 static void
5394 free_findfile()
5396 vim_free(ff_file_to_find);
5397 vim_findfile_cleanup(fdip_search_ctx);
5399 #endif
5402 * Find the directory name "ptr[len]" in the path.
5404 * options:
5405 * FNAME_MESS give error message when not found
5407 * Uses NameBuff[]!
5409 * Returns an allocated string for the file name. NULL for error.
5411 char_u *
5412 find_directory_in_path(ptr, len, options, rel_fname)
5413 char_u *ptr; /* file name */
5414 int len; /* length of file name */
5415 int options;
5416 char_u *rel_fname; /* file name searching relative to */
5418 return find_file_in_path_option(ptr, len, options, TRUE, p_cdpath,
5419 FINDFILE_DIR, rel_fname, (char_u *)"");
5422 char_u *
5423 find_file_in_path_option(ptr, len, options, first, path_option, find_what, rel_fname, suffixes)
5424 char_u *ptr; /* file name */
5425 int len; /* length of file name */
5426 int options;
5427 int first; /* use count'th matching file name */
5428 char_u *path_option; /* p_path or p_cdpath */
5429 int find_what; /* FINDFILE_FILE, _DIR or _BOTH */
5430 char_u *rel_fname; /* file name we are looking relative to. */
5431 char_u *suffixes; /* list of suffixes, 'suffixesadd' option */
5433 static char_u *dir;
5434 static int did_findfile_init = FALSE;
5435 char_u save_char;
5436 char_u *file_name = NULL;
5437 char_u *buf = NULL;
5438 int rel_to_curdir;
5439 #ifdef AMIGA
5440 struct Process *proc = (struct Process *)FindTask(0L);
5441 APTR save_winptr = proc->pr_WindowPtr;
5443 /* Avoid a requester here for a volume that doesn't exist. */
5444 proc->pr_WindowPtr = (APTR)-1L;
5445 #endif
5447 if (first == TRUE)
5449 /* copy file name into NameBuff, expanding environment variables */
5450 save_char = ptr[len];
5451 ptr[len] = NUL;
5452 expand_env(ptr, NameBuff, MAXPATHL);
5453 ptr[len] = save_char;
5455 vim_free(ff_file_to_find);
5456 ff_file_to_find = vim_strsave(NameBuff);
5457 if (ff_file_to_find == NULL) /* out of memory */
5459 file_name = NULL;
5460 goto theend;
5464 rel_to_curdir = (ff_file_to_find[0] == '.'
5465 && (ff_file_to_find[1] == NUL
5466 || vim_ispathsep(ff_file_to_find[1])
5467 || (ff_file_to_find[1] == '.'
5468 && (ff_file_to_find[2] == NUL
5469 || vim_ispathsep(ff_file_to_find[2])))));
5470 if (vim_isAbsName(ff_file_to_find)
5471 /* "..", "../path", "." and "./path": don't use the path_option */
5472 || rel_to_curdir
5473 #if defined(MSWIN) || defined(MSDOS) || defined(OS2)
5474 /* handle "\tmp" as absolute path */
5475 || vim_ispathsep(ff_file_to_find[0])
5476 /* handle "c:name" as absulute path */
5477 || (ff_file_to_find[0] != NUL && ff_file_to_find[1] == ':')
5478 #endif
5479 #ifdef AMIGA
5480 /* handle ":tmp" as absolute path */
5481 || ff_file_to_find[0] == ':'
5482 #endif
5486 * Absolute path, no need to use "path_option".
5487 * If this is not a first call, return NULL. We already returned a
5488 * filename on the first call.
5490 if (first == TRUE)
5492 int l;
5493 int run;
5495 if (path_with_url(ff_file_to_find))
5497 file_name = vim_strsave(ff_file_to_find);
5498 goto theend;
5501 /* When FNAME_REL flag given first use the directory of the file.
5502 * Otherwise or when this fails use the current directory. */
5503 for (run = 1; run <= 2; ++run)
5505 l = (int)STRLEN(ff_file_to_find);
5506 if (run == 1
5507 && rel_to_curdir
5508 && (options & FNAME_REL)
5509 && rel_fname != NULL
5510 && STRLEN(rel_fname) + l < MAXPATHL)
5512 STRCPY(NameBuff, rel_fname);
5513 STRCPY(gettail(NameBuff), ff_file_to_find);
5514 l = (int)STRLEN(NameBuff);
5516 else
5518 STRCPY(NameBuff, ff_file_to_find);
5519 run = 2;
5522 /* When the file doesn't exist, try adding parts of
5523 * 'suffixesadd'. */
5524 buf = suffixes;
5525 for (;;)
5527 if (
5528 #ifdef DJGPP
5529 /* "C:" by itself will fail for mch_getperm(),
5530 * assume it's always valid. */
5531 (find_what != FINDFILE_FILE && NameBuff[0] != NUL
5532 && NameBuff[1] == ':'
5533 && NameBuff[2] == NUL) ||
5534 #endif
5535 (mch_getperm(NameBuff) >= 0
5536 && (find_what == FINDFILE_BOTH
5537 || ((find_what == FINDFILE_DIR)
5538 == mch_isdir(NameBuff)))))
5540 file_name = vim_strsave(NameBuff);
5541 goto theend;
5543 if (*buf == NUL)
5544 break;
5545 copy_option_part(&buf, NameBuff + l, MAXPATHL - l, ",");
5550 else
5553 * Loop over all paths in the 'path' or 'cdpath' option.
5554 * When "first" is set, first setup to the start of the option.
5555 * Otherwise continue to find the next match.
5557 if (first == TRUE)
5559 /* vim_findfile_free_visited can handle a possible NULL pointer */
5560 vim_findfile_free_visited(fdip_search_ctx);
5561 dir = path_option;
5562 did_findfile_init = FALSE;
5565 for (;;)
5567 if (did_findfile_init)
5569 file_name = vim_findfile(fdip_search_ctx);
5570 if (file_name != NULL)
5571 break;
5573 did_findfile_init = FALSE;
5575 else
5577 char_u *r_ptr;
5579 if (dir == NULL || *dir == NUL)
5581 /* We searched all paths of the option, now we can
5582 * free the search context. */
5583 vim_findfile_cleanup(fdip_search_ctx);
5584 fdip_search_ctx = NULL;
5585 break;
5588 if ((buf = alloc((int)(MAXPATHL))) == NULL)
5589 break;
5591 /* copy next path */
5592 buf[0] = 0;
5593 copy_option_part(&dir, buf, MAXPATHL, " ,");
5595 #ifdef FEAT_PATH_EXTRA
5596 /* get the stopdir string */
5597 r_ptr = vim_findfile_stopdir(buf);
5598 #else
5599 r_ptr = NULL;
5600 #endif
5601 fdip_search_ctx = vim_findfile_init(buf, ff_file_to_find,
5602 r_ptr, 100, FALSE, find_what,
5603 fdip_search_ctx, FALSE, rel_fname);
5604 if (fdip_search_ctx != NULL)
5605 did_findfile_init = TRUE;
5606 vim_free(buf);
5610 if (file_name == NULL && (options & FNAME_MESS))
5612 if (first == TRUE)
5614 if (find_what == FINDFILE_DIR)
5615 EMSG2(_("E344: Can't find directory \"%s\" in cdpath"),
5616 ff_file_to_find);
5617 else
5618 EMSG2(_("E345: Can't find file \"%s\" in path"),
5619 ff_file_to_find);
5621 else
5623 if (find_what == FINDFILE_DIR)
5624 EMSG2(_("E346: No more directory \"%s\" found in cdpath"),
5625 ff_file_to_find);
5626 else
5627 EMSG2(_("E347: No more file \"%s\" found in path"),
5628 ff_file_to_find);
5632 theend:
5633 #ifdef AMIGA
5634 proc->pr_WindowPtr = save_winptr;
5635 #endif
5636 return file_name;
5639 #endif /* FEAT_SEARCHPATH */
5642 * Change directory to "new_dir". If FEAT_SEARCHPATH is defined, search
5643 * 'cdpath' for relative directory names, otherwise just mch_chdir().
5646 vim_chdir(new_dir)
5647 char_u *new_dir;
5649 #ifndef FEAT_SEARCHPATH
5650 return mch_chdir((char *)new_dir);
5651 #else
5652 char_u *dir_name;
5653 int r;
5655 dir_name = find_directory_in_path(new_dir, (int)STRLEN(new_dir),
5656 FNAME_MESS, curbuf->b_ffname);
5657 if (dir_name == NULL)
5658 return -1;
5659 r = mch_chdir((char *)dir_name);
5660 vim_free(dir_name);
5661 return r;
5662 #endif
5666 * Get user name from machine-specific function.
5667 * Returns the user name in "buf[len]".
5668 * Some systems are quite slow in obtaining the user name (Windows NT), thus
5669 * cache the result.
5670 * Returns OK or FAIL.
5673 get_user_name(buf, len)
5674 char_u *buf;
5675 int len;
5677 if (username == NULL)
5679 if (mch_get_user_name(buf, len) == FAIL)
5680 return FAIL;
5681 username = vim_strsave(buf);
5683 else
5684 vim_strncpy(buf, username, len - 1);
5685 return OK;
5688 #ifndef HAVE_QSORT
5690 * Our own qsort(), for systems that don't have it.
5691 * It's simple and slow. From the K&R C book.
5693 void
5694 qsort(base, elm_count, elm_size, cmp)
5695 void *base;
5696 size_t elm_count;
5697 size_t elm_size;
5698 int (*cmp) __ARGS((const void *, const void *));
5700 char_u *buf;
5701 char_u *p1;
5702 char_u *p2;
5703 int i, j;
5704 int gap;
5706 buf = alloc((unsigned)elm_size);
5707 if (buf == NULL)
5708 return;
5710 for (gap = elm_count / 2; gap > 0; gap /= 2)
5711 for (i = gap; i < elm_count; ++i)
5712 for (j = i - gap; j >= 0; j -= gap)
5714 /* Compare the elements. */
5715 p1 = (char_u *)base + j * elm_size;
5716 p2 = (char_u *)base + (j + gap) * elm_size;
5717 if ((*cmp)((void *)p1, (void *)p2) <= 0)
5718 break;
5719 /* Exchange the elemets. */
5720 mch_memmove(buf, p1, elm_size);
5721 mch_memmove(p1, p2, elm_size);
5722 mch_memmove(p2, buf, elm_size);
5725 vim_free(buf);
5727 #endif
5730 * Sort an array of strings.
5732 static int
5733 #ifdef __BORLANDC__
5734 _RTLENTRYF
5735 #endif
5736 sort_compare __ARGS((const void *s1, const void *s2));
5738 static int
5739 #ifdef __BORLANDC__
5740 _RTLENTRYF
5741 #endif
5742 sort_compare(s1, s2)
5743 const void *s1;
5744 const void *s2;
5746 return STRCMP(*(char **)s1, *(char **)s2);
5749 void
5750 sort_strings(files, count)
5751 char_u **files;
5752 int count;
5754 qsort((void *)files, (size_t)count, sizeof(char_u *), sort_compare);
5757 #if !defined(NO_EXPANDPATH) || defined(PROTO)
5759 * Compare path "p[]" to "q[]".
5760 * If "maxlen" >= 0 compare "p[maxlen]" to "q[maxlen]"
5761 * Return value like strcmp(p, q), but consider path separators.
5764 pathcmp(p, q, maxlen)
5765 const char *p, *q;
5766 int maxlen;
5768 int i;
5769 const char *s = NULL;
5771 for (i = 0; maxlen < 0 || i < maxlen; ++i)
5773 /* End of "p": check if "q" also ends or just has a slash. */
5774 if (p[i] == NUL)
5776 if (q[i] == NUL) /* full match */
5777 return 0;
5778 s = q;
5779 break;
5782 /* End of "q": check if "p" just has a slash. */
5783 if (q[i] == NUL)
5785 s = p;
5786 break;
5789 if (
5790 #ifdef CASE_INSENSITIVE_FILENAME
5791 TOUPPER_LOC(p[i]) != TOUPPER_LOC(q[i])
5792 #else
5793 p[i] != q[i]
5794 #endif
5795 #ifdef BACKSLASH_IN_FILENAME
5796 /* consider '/' and '\\' to be equal */
5797 && !((p[i] == '/' && q[i] == '\\')
5798 || (p[i] == '\\' && q[i] == '/'))
5799 #endif
5802 if (vim_ispathsep(p[i]))
5803 return -1;
5804 if (vim_ispathsep(q[i]))
5805 return 1;
5806 return ((char_u *)p)[i] - ((char_u *)q)[i]; /* no match */
5809 if (s == NULL) /* "i" ran into "maxlen" */
5810 return 0;
5812 /* ignore a trailing slash, but not "//" or ":/" */
5813 if (s[i + 1] == NUL
5814 && i > 0
5815 && !after_pathsep((char_u *)s, (char_u *)s + i)
5816 #ifdef BACKSLASH_IN_FILENAME
5817 && (s[i] == '/' || s[i] == '\\')
5818 #else
5819 && s[i] == '/'
5820 #endif
5822 return 0; /* match with trailing slash */
5823 if (s == q)
5824 return -1; /* no match */
5825 return 1;
5827 #endif
5830 * The putenv() implementation below comes from the "screen" program.
5831 * Included with permission from Juergen Weigert.
5832 * See pty.c for the copyright notice.
5836 * putenv -- put value into environment
5838 * Usage: i = putenv (string)
5839 * int i;
5840 * char *string;
5842 * where string is of the form <name>=<value>.
5843 * Putenv returns 0 normally, -1 on error (not enough core for malloc).
5845 * Putenv may need to add a new name into the environment, or to
5846 * associate a value longer than the current value with a particular
5847 * name. So, to make life simpler, putenv() copies your entire
5848 * environment into the heap (i.e. malloc()) from the stack
5849 * (i.e. where it resides when your process is initiated) the first
5850 * time you call it.
5852 * (history removed, not very interesting. See the "screen" sources.)
5855 #if !defined(HAVE_SETENV) && !defined(HAVE_PUTENV)
5857 #define EXTRASIZE 5 /* increment to add to env. size */
5859 static int envsize = -1; /* current size of environment */
5860 #ifndef MACOS_CLASSIC
5861 extern
5862 #endif
5863 char **environ; /* the global which is your env. */
5865 static int findenv __ARGS((char *name)); /* look for a name in the env. */
5866 static int newenv __ARGS((void)); /* copy env. from stack to heap */
5867 static int moreenv __ARGS((void)); /* incr. size of env. */
5870 putenv(string)
5871 const char *string;
5873 int i;
5874 char *p;
5876 if (envsize < 0)
5877 { /* first time putenv called */
5878 if (newenv() < 0) /* copy env. to heap */
5879 return -1;
5882 i = findenv((char *)string); /* look for name in environment */
5884 if (i < 0)
5885 { /* name must be added */
5886 for (i = 0; environ[i]; i++);
5887 if (i >= (envsize - 1))
5888 { /* need new slot */
5889 if (moreenv() < 0)
5890 return -1;
5892 p = (char *)alloc((unsigned)(strlen(string) + 1));
5893 if (p == NULL) /* not enough core */
5894 return -1;
5895 environ[i + 1] = 0; /* new end of env. */
5897 else
5898 { /* name already in env. */
5899 p = vim_realloc(environ[i], strlen(string) + 1);
5900 if (p == NULL)
5901 return -1;
5903 sprintf(p, "%s", string); /* copy into env. */
5904 environ[i] = p;
5906 return 0;
5909 static int
5910 findenv(name)
5911 char *name;
5913 char *namechar, *envchar;
5914 int i, found;
5916 found = 0;
5917 for (i = 0; environ[i] && !found; i++)
5919 envchar = environ[i];
5920 namechar = name;
5921 while (*namechar && *namechar != '=' && (*namechar == *envchar))
5923 namechar++;
5924 envchar++;
5926 found = ((*namechar == '\0' || *namechar == '=') && *envchar == '=');
5928 return found ? i - 1 : -1;
5931 static int
5932 newenv()
5934 char **env, *elem;
5935 int i, esize;
5937 #ifdef MACOS
5938 /* for Mac a new, empty environment is created */
5939 i = 0;
5940 #else
5941 for (i = 0; environ[i]; i++)
5943 #endif
5944 esize = i + EXTRASIZE + 1;
5945 env = (char **)alloc((unsigned)(esize * sizeof (elem)));
5946 if (env == NULL)
5947 return -1;
5949 #ifndef MACOS
5950 for (i = 0; environ[i]; i++)
5952 elem = (char *)alloc((unsigned)(strlen(environ[i]) + 1));
5953 if (elem == NULL)
5954 return -1;
5955 env[i] = elem;
5956 strcpy(elem, environ[i]);
5958 #endif
5960 env[i] = 0;
5961 environ = env;
5962 envsize = esize;
5963 return 0;
5966 static int
5967 moreenv()
5969 int esize;
5970 char **env;
5972 esize = envsize + EXTRASIZE;
5973 env = (char **)vim_realloc((char *)environ, esize * sizeof (*env));
5974 if (env == 0)
5975 return -1;
5976 environ = env;
5977 envsize = esize;
5978 return 0;
5981 # ifdef USE_VIMPTY_GETENV
5982 char_u *
5983 vimpty_getenv(string)
5984 const char_u *string;
5986 int i;
5987 char_u *p;
5989 if (envsize < 0)
5990 return NULL;
5992 i = findenv((char *)string);
5994 if (i < 0)
5995 return NULL;
5997 p = vim_strchr((char_u *)environ[i], '=');
5998 return (p + 1);
6000 # endif
6002 #endif /* !defined(HAVE_SETENV) && !defined(HAVE_PUTENV) */
6004 #if defined(FEAT_EVAL) || defined(FEAT_SPELL) || defined(PROTO)
6006 * Return 0 for not writable, 1 for writable file, 2 for a dir which we have
6007 * rights to write into.
6010 filewritable(fname)
6011 char_u *fname;
6013 int retval = 0;
6014 #if defined(UNIX) || defined(VMS)
6015 int perm = 0;
6016 #endif
6018 #if defined(UNIX) || defined(VMS)
6019 perm = mch_getperm(fname);
6020 #endif
6021 #ifndef MACOS_CLASSIC /* TODO: get either mch_writable or mch_access */
6022 if (
6023 # ifdef WIN3264
6024 mch_writable(fname) &&
6025 # else
6026 # if defined(UNIX) || defined(VMS)
6027 (perm & 0222) &&
6028 # endif
6029 # endif
6030 mch_access((char *)fname, W_OK) == 0
6032 #endif
6034 ++retval;
6035 if (mch_isdir(fname))
6036 ++retval;
6038 return retval;
6040 #endif
6043 * Print an error message with one or two "%s" and one or two string arguments.
6044 * This is not in message.c to avoid a warning for prototypes.
6047 emsg3(s, a1, a2)
6048 char_u *s, *a1, *a2;
6050 if (emsg_not_now())
6051 return TRUE; /* no error messages at the moment */
6052 #ifdef HAVE_STDARG_H
6053 vim_snprintf((char *)IObuff, IOSIZE, (char *)s, a1, a2);
6054 #else
6055 vim_snprintf((char *)IObuff, IOSIZE, (char *)s, (long_u)a1, (long_u)a2);
6056 #endif
6057 return emsg(IObuff);
6061 * Print an error message with one "%ld" and one long int argument.
6062 * This is not in message.c to avoid a warning for prototypes.
6065 emsgn(s, n)
6066 char_u *s;
6067 long n;
6069 if (emsg_not_now())
6070 return TRUE; /* no error messages at the moment */
6071 vim_snprintf((char *)IObuff, IOSIZE, (char *)s, n);
6072 return emsg(IObuff);