Snapshot 44
[MacVim.git] / src / misc2.c
blobcfc1bad8703d1357bde24dff4af96b19d072891c
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 * Make sure curwin->w_cursor.lnum is valid.
474 void
475 check_cursor_lnum()
477 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
479 #ifdef FEAT_FOLDING
480 /* If there is a closed fold at the end of the file, put the cursor in
481 * its first line. Otherwise in the last line. */
482 if (!hasFolding(curbuf->b_ml.ml_line_count,
483 &curwin->w_cursor.lnum, NULL))
484 #endif
485 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
487 if (curwin->w_cursor.lnum <= 0)
488 curwin->w_cursor.lnum = 1;
492 * Make sure curwin->w_cursor.col is valid.
494 void
495 check_cursor_col()
497 colnr_T len;
498 #ifdef FEAT_VIRTUALEDIT
499 colnr_T oldcol = curwin->w_cursor.col;
500 colnr_T oldcoladd = curwin->w_cursor.col + curwin->w_cursor.coladd;
501 #endif
503 len = (colnr_T)STRLEN(ml_get_curline());
504 if (len == 0)
505 curwin->w_cursor.col = 0;
506 else if (curwin->w_cursor.col >= len)
508 /* Allow cursor past end-of-line when:
509 * - in Insert mode or restarting Insert mode
510 * - in Visual mode and 'selection' isn't "old"
511 * - 'virtualedit' is set */
512 if ((State & INSERT) || restart_edit
513 #ifdef FEAT_VISUAL
514 || (VIsual_active && *p_sel != 'o')
515 #endif
516 #ifdef FEAT_VIRTUALEDIT
517 || (ve_flags & VE_ONEMORE)
518 #endif
519 || virtual_active())
520 curwin->w_cursor.col = len;
521 else
523 curwin->w_cursor.col = len - 1;
524 #ifdef FEAT_MBYTE
525 /* prevent cursor from moving on the trail byte */
526 if (has_mbyte)
527 mb_adjust_cursor();
528 #endif
532 #ifdef FEAT_VIRTUALEDIT
533 /* If virtual editing is on, we can leave the cursor on the old position,
534 * only we must set it to virtual. But don't do it when at the end of the
535 * line. */
536 if (oldcol == MAXCOL)
537 curwin->w_cursor.coladd = 0;
538 else if (ve_flags == VE_ALL)
540 if (oldcoladd > curwin->w_cursor.col)
541 curwin->w_cursor.coladd = oldcoladd - curwin->w_cursor.col;
542 else
543 /* avoid weird number when there is a miscalculation or overflow */
544 curwin->w_cursor.coladd = 0;
546 #endif
550 * make sure curwin->w_cursor in on a valid character
552 void
553 check_cursor()
555 check_cursor_lnum();
556 check_cursor_col();
559 #if defined(FEAT_TEXTOBJ) || defined(PROTO)
561 * Make sure curwin->w_cursor is not on the NUL at the end of the line.
562 * Allow it when in Visual mode and 'selection' is not "old".
564 void
565 adjust_cursor_col()
567 if (curwin->w_cursor.col > 0
568 # ifdef FEAT_VISUAL
569 && (!VIsual_active || *p_sel == 'o')
570 # endif
571 && gchar_cursor() == NUL)
572 --curwin->w_cursor.col;
574 #endif
577 * When curwin->w_leftcol has changed, adjust the cursor position.
578 * Return TRUE if the cursor was moved.
581 leftcol_changed()
583 long lastcol;
584 colnr_T s, e;
585 int retval = FALSE;
587 changed_cline_bef_curs();
588 lastcol = curwin->w_leftcol + W_WIDTH(curwin) - curwin_col_off() - 1;
589 validate_virtcol();
592 * If the cursor is right or left of the screen, move it to last or first
593 * character.
595 if (curwin->w_virtcol > (colnr_T)(lastcol - p_siso))
597 retval = TRUE;
598 coladvance((colnr_T)(lastcol - p_siso));
600 else if (curwin->w_virtcol < curwin->w_leftcol + p_siso)
602 retval = TRUE;
603 (void)coladvance((colnr_T)(curwin->w_leftcol + p_siso));
607 * If the start of the character under the cursor is not on the screen,
608 * advance the cursor one more char. If this fails (last char of the
609 * line) adjust the scrolling.
611 getvvcol(curwin, &curwin->w_cursor, &s, NULL, &e);
612 if (e > (colnr_T)lastcol)
614 retval = TRUE;
615 coladvance(s - 1);
617 else if (s < curwin->w_leftcol)
619 retval = TRUE;
620 if (coladvance(e + 1) == FAIL) /* there isn't another character */
622 curwin->w_leftcol = s; /* adjust w_leftcol instead */
623 changed_cline_bef_curs();
627 if (retval)
628 curwin->w_set_curswant = TRUE;
629 redraw_later(NOT_VALID);
630 return retval;
633 /**********************************************************************
634 * Various routines dealing with allocation and deallocation of memory.
637 #if defined(MEM_PROFILE) || defined(PROTO)
639 # define MEM_SIZES 8200
640 static long_u mem_allocs[MEM_SIZES];
641 static long_u mem_frees[MEM_SIZES];
642 static long_u mem_allocated;
643 static long_u mem_freed;
644 static long_u mem_peak;
645 static long_u num_alloc;
646 static long_u num_freed;
648 static void mem_pre_alloc_s __ARGS((size_t *sizep));
649 static void mem_pre_alloc_l __ARGS((long_u *sizep));
650 static void mem_post_alloc __ARGS((void **pp, size_t size));
651 static void mem_pre_free __ARGS((void **pp));
653 static void
654 mem_pre_alloc_s(sizep)
655 size_t *sizep;
657 *sizep += sizeof(size_t);
660 static void
661 mem_pre_alloc_l(sizep)
662 long_u *sizep;
664 *sizep += sizeof(size_t);
667 static void
668 mem_post_alloc(pp, size)
669 void **pp;
670 size_t size;
672 if (*pp == NULL)
673 return;
674 size -= sizeof(size_t);
675 *(long_u *)*pp = size;
676 if (size <= MEM_SIZES-1)
677 mem_allocs[size-1]++;
678 else
679 mem_allocs[MEM_SIZES-1]++;
680 mem_allocated += size;
681 if (mem_allocated - mem_freed > mem_peak)
682 mem_peak = mem_allocated - mem_freed;
683 num_alloc++;
684 *pp = (void *)((char *)*pp + sizeof(size_t));
687 static void
688 mem_pre_free(pp)
689 void **pp;
691 long_u size;
693 *pp = (void *)((char *)*pp - sizeof(size_t));
694 size = *(size_t *)*pp;
695 if (size <= MEM_SIZES-1)
696 mem_frees[size-1]++;
697 else
698 mem_frees[MEM_SIZES-1]++;
699 mem_freed += size;
700 num_freed++;
704 * called on exit via atexit()
706 void
707 vim_mem_profile_dump()
709 int i, j;
711 printf("\r\n");
712 j = 0;
713 for (i = 0; i < MEM_SIZES - 1; i++)
715 if (mem_allocs[i] || mem_frees[i])
717 if (mem_frees[i] > mem_allocs[i])
718 printf("\r\n%s", _("ERROR: "));
719 printf("[%4d / %4lu-%-4lu] ", i + 1, mem_allocs[i], mem_frees[i]);
720 j++;
721 if (j > 3)
723 j = 0;
724 printf("\r\n");
729 i = MEM_SIZES - 1;
730 if (mem_allocs[i])
732 printf("\r\n");
733 if (mem_frees[i] > mem_allocs[i])
734 printf(_("ERROR: "));
735 printf("[>%d / %4lu-%-4lu]", i, mem_allocs[i], mem_frees[i]);
738 printf(_("\n[bytes] total alloc-freed %lu-%lu, in use %lu, peak use %lu\n"),
739 mem_allocated, mem_freed, mem_allocated - mem_freed, mem_peak);
740 printf(_("[calls] total re/malloc()'s %lu, total free()'s %lu\n\n"),
741 num_alloc, num_freed);
744 #endif /* MEM_PROFILE */
747 * Some memory is reserved for error messages and for being able to
748 * call mf_release_all(), which needs some memory for mf_trans_add().
750 #if defined(MSDOS) && !defined(DJGPP)
751 # define SMALL_MEM
752 # define KEEP_ROOM 8192L
753 #else
754 # define KEEP_ROOM (2 * 8192L)
755 #endif
758 * Note: if unsigned is 16 bits we can only allocate up to 64K with alloc().
759 * Use lalloc for larger blocks.
761 char_u *
762 alloc(size)
763 unsigned size;
765 return (lalloc((long_u)size, TRUE));
769 * Allocate memory and set all bytes to zero.
771 char_u *
772 alloc_clear(size)
773 unsigned size;
775 char_u *p;
777 p = (lalloc((long_u)size, TRUE));
778 if (p != NULL)
779 (void)vim_memset(p, 0, (size_t)size);
780 return p;
784 * alloc() with check for maximum line length
786 char_u *
787 alloc_check(size)
788 unsigned size;
790 #if !defined(UNIX) && !defined(__EMX__)
791 if (sizeof(int) == 2 && size > 0x7fff)
793 /* Don't hide this message */
794 emsg_silent = 0;
795 EMSG(_("E340: Line is becoming too long"));
796 return NULL;
798 #endif
799 return (lalloc((long_u)size, TRUE));
803 * Allocate memory like lalloc() and set all bytes to zero.
805 char_u *
806 lalloc_clear(size, message)
807 long_u size;
808 int message;
810 char_u *p;
812 p = (lalloc(size, message));
813 if (p != NULL)
814 (void)vim_memset(p, 0, (size_t)size);
815 return p;
819 * Low level memory allocation function.
820 * This is used often, KEEP IT FAST!
822 char_u *
823 lalloc(size, message)
824 long_u size;
825 int message;
827 char_u *p; /* pointer to new storage space */
828 static int releasing = FALSE; /* don't do mf_release_all() recursive */
829 int try_again;
830 #if defined(HAVE_AVAIL_MEM) && !defined(SMALL_MEM)
831 static long_u allocated = 0; /* allocated since last avail check */
832 #endif
834 /* Safety check for allocating zero bytes */
835 if (size == 0)
837 /* Don't hide this message */
838 emsg_silent = 0;
839 EMSGN(_("E341: Internal error: lalloc(%ld, )"), size);
840 return NULL;
843 #ifdef MEM_PROFILE
844 mem_pre_alloc_l(&size);
845 #endif
847 #if defined(MSDOS) && !defined(DJGPP)
848 if (size >= 0xfff0) /* in MSDOS we can't deal with >64K blocks */
849 p = NULL;
850 else
851 #endif
854 * Loop when out of memory: Try to release some memfile blocks and
855 * if some blocks are released call malloc again.
857 for (;;)
860 * Handle three kind of systems:
861 * 1. No check for available memory: Just return.
862 * 2. Slow check for available memory: call mch_avail_mem() after
863 * allocating KEEP_ROOM amount of memory.
864 * 3. Strict check for available memory: call mch_avail_mem()
866 if ((p = (char_u *)malloc((size_t)size)) != NULL)
868 #ifndef HAVE_AVAIL_MEM
869 /* 1. No check for available memory: Just return. */
870 goto theend;
871 #else
872 # ifndef SMALL_MEM
873 /* 2. Slow check for available memory: call mch_avail_mem() after
874 * allocating (KEEP_ROOM / 2) amount of memory. */
875 allocated += size;
876 if (allocated < KEEP_ROOM / 2)
877 goto theend;
878 allocated = 0;
879 # endif
880 /* 3. check for available memory: call mch_avail_mem() */
881 if (mch_avail_mem(TRUE) < KEEP_ROOM && !releasing)
883 free((char *)p); /* System is low... no go! */
884 p = NULL;
886 else
887 goto theend;
888 #endif
891 * Remember that mf_release_all() is being called to avoid an endless
892 * loop, because mf_release_all() may call alloc() recursively.
894 if (releasing)
895 break;
896 releasing = TRUE;
898 clear_sb_text(); /* free any scrollback text */
899 try_again = mf_release_all(); /* release as many blocks as possible */
900 #ifdef FEAT_EVAL
901 try_again |= garbage_collect(); /* cleanup recursive lists/dicts */
902 #endif
904 releasing = FALSE;
905 if (!try_again)
906 break;
909 if (message && p == NULL)
910 do_outofmem_msg(size);
912 theend:
913 #ifdef MEM_PROFILE
914 mem_post_alloc((void **)&p, (size_t)size);
915 #endif
916 return p;
919 #if defined(MEM_PROFILE) || defined(PROTO)
921 * realloc() with memory profiling.
923 void *
924 mem_realloc(ptr, size)
925 void *ptr;
926 size_t size;
928 void *p;
930 mem_pre_free(&ptr);
931 mem_pre_alloc_s(&size);
933 p = realloc(ptr, size);
935 mem_post_alloc(&p, size);
937 return p;
939 #endif
942 * Avoid repeating the error message many times (they take 1 second each).
943 * Did_outofmem_msg is reset when a character is read.
945 void
946 do_outofmem_msg(size)
947 long_u size;
949 if (!did_outofmem_msg)
951 /* Don't hide this message */
952 emsg_silent = 0;
953 EMSGN(_("E342: Out of memory! (allocating %lu bytes)"), size);
954 did_outofmem_msg = TRUE;
958 #if defined(EXITFREE) || defined(PROTO)
960 # if defined(FEAT_SEARCHPATH)
961 static void free_findfile __ARGS((void));
962 # endif
965 * Free everything that we allocated.
966 * Can be used to detect memory leaks, e.g., with ccmalloc.
967 * NOTE: This is tricky! Things are freed that functions depend on. Don't be
968 * surprised if Vim crashes...
969 * Some things can't be freed, esp. things local to a library function.
971 void
972 free_all_mem()
974 buf_T *buf, *nextbuf;
975 static int entered = FALSE;
977 /* When we cause a crash here it is caught and Vim tries to exit cleanly.
978 * Don't try freeing everything again. */
979 if (entered)
980 return;
981 entered = TRUE;
983 # ifdef FEAT_AUTOCMD
984 block_autocmds(); /* don't want to trigger autocommands here */
985 # endif
987 # ifdef FEAT_WINDOWS
988 /* close all tabs and windows */
989 if (first_tabpage->tp_next != NULL)
990 do_cmdline_cmd((char_u *)"tabonly!");
991 if (firstwin != lastwin)
992 do_cmdline_cmd((char_u *)"only!");
993 # endif
995 # if defined(FEAT_SPELL)
996 /* Free all spell info. */
997 spell_free_all();
998 # endif
1000 # if defined(FEAT_USR_CMDS)
1001 /* Clear user commands (before deleting buffers). */
1002 ex_comclear(NULL);
1003 # endif
1005 # ifdef FEAT_MENU
1006 /* Clear menus. */
1007 do_cmdline_cmd((char_u *)"aunmenu *");
1008 # endif
1010 /* Clear mappings, abbreviations, breakpoints. */
1011 do_cmdline_cmd((char_u *)"mapclear");
1012 do_cmdline_cmd((char_u *)"mapclear!");
1013 do_cmdline_cmd((char_u *)"abclear");
1014 # if defined(FEAT_EVAL)
1015 do_cmdline_cmd((char_u *)"breakdel *");
1016 # endif
1017 # if defined(FEAT_PROFILE)
1018 do_cmdline_cmd((char_u *)"profdel *");
1019 # endif
1020 # if defined(FEAT_KEYMAP)
1021 do_cmdline_cmd((char_u *)"set keymap=");
1022 #endif
1024 # ifdef FEAT_TITLE
1025 free_titles();
1026 # endif
1027 # if defined(FEAT_SEARCHPATH)
1028 free_findfile();
1029 # endif
1031 /* Obviously named calls. */
1032 # if defined(FEAT_AUTOCMD)
1033 free_all_autocmds();
1034 # endif
1035 clear_termcodes();
1036 free_all_options();
1037 free_all_marks();
1038 alist_clear(&global_alist);
1039 free_homedir();
1040 free_search_patterns();
1041 free_old_sub();
1042 free_last_insert();
1043 free_prev_shellcmd();
1044 free_regexp_stuff();
1045 free_tag_stuff();
1046 free_cd_dir();
1047 # ifdef FEAT_SIGNS
1048 free_signs();
1049 # endif
1050 # ifdef FEAT_EVAL
1051 set_expr_line(NULL);
1052 # endif
1053 # ifdef FEAT_DIFF
1054 diff_clear(curtab);
1055 # endif
1056 clear_sb_text(); /* free any scrollback text */
1058 /* Free some global vars. */
1059 vim_free(username);
1060 # ifdef FEAT_CLIPBOARD
1061 vim_free(clip_exclude_prog);
1062 # endif
1063 vim_free(last_cmdline);
1064 # ifdef FEAT_CMDHIST
1065 vim_free(new_last_cmdline);
1066 # endif
1067 set_keep_msg(NULL, 0);
1068 vim_free(ff_expand_buffer);
1070 /* Clear cmdline history. */
1071 p_hi = 0;
1072 # ifdef FEAT_CMDHIST
1073 init_history();
1074 # endif
1076 #ifdef FEAT_QUICKFIX
1078 win_T *win;
1080 qf_free_all(NULL);
1081 /* Free all location lists */
1082 FOR_ALL_WINDOWS(win)
1083 qf_free_all(win);
1085 #endif
1087 /* Close all script inputs. */
1088 close_all_scripts();
1090 #if defined(FEAT_WINDOWS)
1091 /* Destroy all windows. Must come before freeing buffers. */
1092 win_free_all();
1093 #endif
1095 /* Free all buffers. Reset 'autochdir' to avoid accessing things that
1096 * were freed already. */
1097 #ifdef FEAT_AUTOCHDIR
1098 p_acd = FALSE;
1099 #endif
1100 for (buf = firstbuf; buf != NULL; )
1102 nextbuf = buf->b_next;
1103 close_buffer(NULL, buf, DOBUF_WIPE);
1104 if (buf_valid(buf))
1105 buf = nextbuf; /* didn't work, try next one */
1106 else
1107 buf = firstbuf;
1110 #ifdef FEAT_ARABIC
1111 free_cmdline_buf();
1112 #endif
1114 /* Clear registers. */
1115 clear_registers();
1116 ResetRedobuff();
1117 ResetRedobuff();
1119 #if defined(FEAT_CLIENTSERVER) && defined(FEAT_X11)
1120 vim_free(serverDelayedStartName);
1121 #endif
1123 /* highlight info */
1124 free_highlight();
1126 reset_last_sourcing();
1128 #ifdef FEAT_WINDOWS
1129 free_tabpage(first_tabpage);
1130 first_tabpage = NULL;
1131 #endif
1133 # ifdef UNIX
1134 /* Machine-specific free. */
1135 mch_free_mem();
1136 # endif
1138 /* message history */
1139 for (;;)
1140 if (delete_first_msg() == FAIL)
1141 break;
1143 # ifdef FEAT_EVAL
1144 eval_clear();
1145 # endif
1147 free_termoptions();
1149 /* screenlines (can't display anything now!) */
1150 free_screenlines();
1152 #if defined(USE_XSMP)
1153 xsmp_close();
1154 #endif
1155 #ifdef FEAT_GUI_GTK
1156 gui_mch_free_all();
1157 #endif
1158 clear_hl_tables();
1160 vim_free(IObuff);
1161 vim_free(NameBuff);
1163 #endif
1166 * copy a string into newly allocated memory
1168 char_u *
1169 vim_strsave(string)
1170 char_u *string;
1172 char_u *p;
1173 unsigned len;
1175 len = (unsigned)STRLEN(string) + 1;
1176 p = alloc(len);
1177 if (p != NULL)
1178 mch_memmove(p, string, (size_t)len);
1179 return p;
1182 char_u *
1183 vim_strnsave(string, len)
1184 char_u *string;
1185 int len;
1187 char_u *p;
1189 p = alloc((unsigned)(len + 1));
1190 if (p != NULL)
1192 STRNCPY(p, string, len);
1193 p[len] = NUL;
1195 return p;
1199 * Same as vim_strsave(), but any characters found in esc_chars are preceded
1200 * by a backslash.
1202 char_u *
1203 vim_strsave_escaped(string, esc_chars)
1204 char_u *string;
1205 char_u *esc_chars;
1207 return vim_strsave_escaped_ext(string, esc_chars, '\\', FALSE);
1211 * Same as vim_strsave_escaped(), but when "bsl" is TRUE also escape
1212 * characters where rem_backslash() would remove the backslash.
1213 * Escape the characters with "cc".
1215 char_u *
1216 vim_strsave_escaped_ext(string, esc_chars, cc, bsl)
1217 char_u *string;
1218 char_u *esc_chars;
1219 int cc;
1220 int bsl;
1222 char_u *p;
1223 char_u *p2;
1224 char_u *escaped_string;
1225 unsigned length;
1226 #ifdef FEAT_MBYTE
1227 int l;
1228 #endif
1231 * First count the number of backslashes required.
1232 * Then allocate the memory and insert them.
1234 length = 1; /* count the trailing NUL */
1235 for (p = string; *p; p++)
1237 #ifdef FEAT_MBYTE
1238 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
1240 length += l; /* count a multibyte char */
1241 p += l - 1;
1242 continue;
1244 #endif
1245 if (vim_strchr(esc_chars, *p) != NULL || (bsl && rem_backslash(p)))
1246 ++length; /* count a backslash */
1247 ++length; /* count an ordinary char */
1249 escaped_string = alloc(length);
1250 if (escaped_string != NULL)
1252 p2 = escaped_string;
1253 for (p = string; *p; p++)
1255 #ifdef FEAT_MBYTE
1256 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
1258 mch_memmove(p2, p, (size_t)l);
1259 p2 += l;
1260 p += l - 1; /* skip multibyte char */
1261 continue;
1263 #endif
1264 if (vim_strchr(esc_chars, *p) != NULL || (bsl && rem_backslash(p)))
1265 *p2++ = cc;
1266 *p2++ = *p;
1268 *p2 = NUL;
1270 return escaped_string;
1274 * Return TRUE when 'shell' has "csh" in the tail.
1277 csh_like_shell()
1279 return (strstr((char *)gettail(p_sh), "csh") != NULL);
1283 * Escape "string" for use as a shell argument with system().
1284 * This uses single quotes, except when we know we need to use double qoutes
1285 * (MS-DOS and MS-Windows without 'shellslash' set).
1286 * Escape a newline, depending on the 'shell' option.
1287 * When "do_special" is TRUE also replace "!", "%", "#" and things starting
1288 * with "<" like "<cfile>".
1289 * Returns the result in allocated memory, NULL if we have run out.
1291 char_u *
1292 vim_strsave_shellescape(string, do_special)
1293 char_u *string;
1294 int do_special;
1296 unsigned length;
1297 char_u *p;
1298 char_u *d;
1299 char_u *escaped_string;
1300 int l;
1301 int csh_like;
1303 /* Only csh and similar shells expand '!' within single quotes. For sh and
1304 * the like we must not put a backslash before it, it will be taken
1305 * literally. If do_special is set the '!' will be escaped twice.
1306 * Csh also needs to have "\n" escaped twice when do_special is set. */
1307 csh_like = csh_like_shell();
1309 /* First count the number of extra bytes required. */
1310 length = (unsigned)STRLEN(string) + 3; /* two quotes and a trailing NUL */
1311 for (p = string; *p != NUL; mb_ptr_adv(p))
1313 # if defined(WIN32) || defined(WIN16) || defined(DOS)
1314 if (!p_ssl)
1316 if (*p == '"')
1317 ++length; /* " -> "" */
1319 else
1320 # endif
1321 if (*p == '\'')
1322 length += 3; /* ' => '\'' */
1323 if (*p == '\n' || (*p == '!' && (csh_like || do_special)))
1325 ++length; /* insert backslash */
1326 if (csh_like && do_special)
1327 ++length; /* insert backslash */
1329 if (do_special && find_cmdline_var(p, &l) >= 0)
1331 ++length; /* insert backslash */
1332 p += l - 1;
1336 /* Allocate memory for the result and fill it. */
1337 escaped_string = alloc(length);
1338 if (escaped_string != NULL)
1340 d = escaped_string;
1342 /* add opening quote */
1343 # if defined(WIN32) || defined(WIN16) || defined(DOS)
1344 if (!p_ssl)
1345 *d++ = '"';
1346 else
1347 # endif
1348 *d++ = '\'';
1350 for (p = string; *p != NUL; )
1352 # if defined(WIN32) || defined(WIN16) || defined(DOS)
1353 if (!p_ssl)
1355 if (*p == '"')
1357 *d++ = '"';
1358 *d++ = '"';
1359 ++p;
1360 continue;
1363 else
1364 # endif
1365 if (*p == '\'')
1367 *d++ = '\'';
1368 *d++ = '\\';
1369 *d++ = '\'';
1370 *d++ = '\'';
1371 ++p;
1372 continue;
1374 if (*p == '\n' || (*p == '!' && (csh_like || do_special)))
1376 *d++ = '\\';
1377 if (csh_like && do_special)
1378 *d++ = '\\';
1379 *d++ = *p++;
1380 continue;
1382 if (do_special && find_cmdline_var(p, &l) >= 0)
1384 *d++ = '\\'; /* insert backslash */
1385 while (--l >= 0) /* copy the var */
1386 *d++ = *p++;
1389 MB_COPY_CHAR(p, d);
1392 /* add terminating quote and finish with a NUL */
1393 # if defined(WIN32) || defined(WIN16) || defined(DOS)
1394 if (!p_ssl)
1395 *d++ = '"';
1396 else
1397 # endif
1398 *d++ = '\'';
1399 *d = NUL;
1402 return escaped_string;
1406 * Like vim_strsave(), but make all characters uppercase.
1407 * This uses ASCII lower-to-upper case translation, language independent.
1409 char_u *
1410 vim_strsave_up(string)
1411 char_u *string;
1413 char_u *p1;
1415 p1 = vim_strsave(string);
1416 vim_strup(p1);
1417 return p1;
1421 * Like vim_strnsave(), but make all characters uppercase.
1422 * This uses ASCII lower-to-upper case translation, language independent.
1424 char_u *
1425 vim_strnsave_up(string, len)
1426 char_u *string;
1427 int len;
1429 char_u *p1;
1431 p1 = vim_strnsave(string, len);
1432 vim_strup(p1);
1433 return p1;
1437 * ASCII lower-to-upper case translation, language independent.
1439 void
1440 vim_strup(p)
1441 char_u *p;
1443 char_u *p2;
1444 int c;
1446 if (p != NULL)
1448 p2 = p;
1449 while ((c = *p2) != NUL)
1450 #ifdef EBCDIC
1451 *p2++ = isalpha(c) ? toupper(c) : c;
1452 #else
1453 *p2++ = (c < 'a' || c > 'z') ? c : (c - 0x20);
1454 #endif
1458 #if defined(FEAT_EVAL) || defined(FEAT_SPELL) || defined(PROTO)
1460 * Make string "s" all upper-case and return it in allocated memory.
1461 * Handles multi-byte characters as well as possible.
1462 * Returns NULL when out of memory.
1464 char_u *
1465 strup_save(orig)
1466 char_u *orig;
1468 char_u *p;
1469 char_u *res;
1471 res = p = vim_strsave(orig);
1473 if (res != NULL)
1474 while (*p != NUL)
1476 # ifdef FEAT_MBYTE
1477 int l;
1479 if (enc_utf8)
1481 int c, uc;
1482 int nl;
1483 char_u *s;
1485 c = utf_ptr2char(p);
1486 uc = utf_toupper(c);
1488 /* Reallocate string when byte count changes. This is rare,
1489 * thus it's OK to do another malloc()/free(). */
1490 l = utf_ptr2len(p);
1491 nl = utf_char2len(uc);
1492 if (nl != l)
1494 s = alloc((unsigned)STRLEN(res) + 1 + nl - l);
1495 if (s == NULL)
1496 break;
1497 mch_memmove(s, res, p - res);
1498 STRCPY(s + (p - res) + nl, p + l);
1499 p = s + (p - res);
1500 vim_free(res);
1501 res = s;
1504 utf_char2bytes(uc, p);
1505 p += nl;
1507 else if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
1508 p += l; /* skip multi-byte character */
1509 else
1510 # endif
1512 *p = TOUPPER_LOC(*p); /* note that toupper() can be a macro */
1513 p++;
1517 return res;
1519 #endif
1522 * copy a space a number of times
1524 void
1525 copy_spaces(ptr, count)
1526 char_u *ptr;
1527 size_t count;
1529 size_t i = count;
1530 char_u *p = ptr;
1532 while (i--)
1533 *p++ = ' ';
1536 #if defined(FEAT_VISUALEXTRA) || defined(PROTO)
1538 * Copy a character a number of times.
1539 * Does not work for multi-byte charactes!
1541 void
1542 copy_chars(ptr, count, c)
1543 char_u *ptr;
1544 size_t count;
1545 int c;
1547 size_t i = count;
1548 char_u *p = ptr;
1550 while (i--)
1551 *p++ = c;
1553 #endif
1556 * delete spaces at the end of a string
1558 void
1559 del_trailing_spaces(ptr)
1560 char_u *ptr;
1562 char_u *q;
1564 q = ptr + STRLEN(ptr);
1565 while (--q > ptr && vim_iswhite(q[0]) && q[-1] != '\\' && q[-1] != Ctrl_V)
1566 *q = NUL;
1570 * Like strncpy(), but always terminate the result with one NUL.
1571 * "to" must be "len + 1" long!
1573 void
1574 vim_strncpy(to, from, len)
1575 char_u *to;
1576 char_u *from;
1577 size_t len;
1579 STRNCPY(to, from, len);
1580 to[len] = NUL;
1584 * Isolate one part of a string option where parts are separated with
1585 * "sep_chars".
1586 * The part is copied into "buf[maxlen]".
1587 * "*option" is advanced to the next part.
1588 * The length is returned.
1591 copy_option_part(option, buf, maxlen, sep_chars)
1592 char_u **option;
1593 char_u *buf;
1594 int maxlen;
1595 char *sep_chars;
1597 int len = 0;
1598 char_u *p = *option;
1600 /* skip '.' at start of option part, for 'suffixes' */
1601 if (*p == '.')
1602 buf[len++] = *p++;
1603 while (*p != NUL && vim_strchr((char_u *)sep_chars, *p) == NULL)
1606 * Skip backslash before a separator character and space.
1608 if (p[0] == '\\' && vim_strchr((char_u *)sep_chars, p[1]) != NULL)
1609 ++p;
1610 if (len < maxlen - 1)
1611 buf[len++] = *p;
1612 ++p;
1614 buf[len] = NUL;
1616 if (*p != NUL && *p != ',') /* skip non-standard separator */
1617 ++p;
1618 p = skip_to_option_part(p); /* p points to next file name */
1620 *option = p;
1621 return len;
1625 * Replacement for free() that ignores NULL pointers.
1626 * Also skip free() when exiting for sure, this helps when we caught a deadly
1627 * signal that was caused by a crash in free().
1629 void
1630 vim_free(x)
1631 void *x;
1633 if (x != NULL && !really_exiting)
1635 #ifdef MEM_PROFILE
1636 mem_pre_free(&x);
1637 #endif
1638 free(x);
1642 #ifndef HAVE_MEMSET
1643 void *
1644 vim_memset(ptr, c, size)
1645 void *ptr;
1646 int c;
1647 size_t size;
1649 char *p = ptr;
1651 while (size-- > 0)
1652 *p++ = c;
1653 return ptr;
1655 #endif
1657 #ifdef VIM_MEMCMP
1659 * Return zero when "b1" and "b2" are the same for "len" bytes.
1660 * Return non-zero otherwise.
1663 vim_memcmp(b1, b2, len)
1664 void *b1;
1665 void *b2;
1666 size_t len;
1668 char_u *p1 = (char_u *)b1, *p2 = (char_u *)b2;
1670 for ( ; len > 0; --len)
1672 if (*p1 != *p2)
1673 return 1;
1674 ++p1;
1675 ++p2;
1677 return 0;
1679 #endif
1681 #ifdef VIM_MEMMOVE
1683 * Version of memmove() that handles overlapping source and destination.
1684 * For systems that don't have a function that is guaranteed to do that (SYSV).
1686 void
1687 mch_memmove(dst_arg, src_arg, len)
1688 void *src_arg, *dst_arg;
1689 size_t len;
1692 * A void doesn't have a size, we use char pointers.
1694 char *dst = dst_arg, *src = src_arg;
1696 /* overlap, copy backwards */
1697 if (dst > src && dst < src + len)
1699 src += len;
1700 dst += len;
1701 while (len-- > 0)
1702 *--dst = *--src;
1704 else /* copy forwards */
1705 while (len-- > 0)
1706 *dst++ = *src++;
1708 #endif
1710 #if (!defined(HAVE_STRCASECMP) && !defined(HAVE_STRICMP)) || defined(PROTO)
1712 * Compare two strings, ignoring case, using current locale.
1713 * Doesn't work for multi-byte characters.
1714 * return 0 for match, < 0 for smaller, > 0 for bigger
1717 vim_stricmp(s1, s2)
1718 char *s1;
1719 char *s2;
1721 int i;
1723 for (;;)
1725 i = (int)TOLOWER_LOC(*s1) - (int)TOLOWER_LOC(*s2);
1726 if (i != 0)
1727 return i; /* this character different */
1728 if (*s1 == NUL)
1729 break; /* strings match until NUL */
1730 ++s1;
1731 ++s2;
1733 return 0; /* strings match */
1735 #endif
1737 #if (!defined(HAVE_STRNCASECMP) && !defined(HAVE_STRNICMP)) || defined(PROTO)
1739 * Compare two strings, for length "len", ignoring case, using current locale.
1740 * Doesn't work for multi-byte characters.
1741 * return 0 for match, < 0 for smaller, > 0 for bigger
1744 vim_strnicmp(s1, s2, len)
1745 char *s1;
1746 char *s2;
1747 size_t len;
1749 int i;
1751 while (len > 0)
1753 i = (int)TOLOWER_LOC(*s1) - (int)TOLOWER_LOC(*s2);
1754 if (i != 0)
1755 return i; /* this character different */
1756 if (*s1 == NUL)
1757 break; /* strings match until NUL */
1758 ++s1;
1759 ++s2;
1760 --len;
1762 return 0; /* strings match */
1764 #endif
1766 #if 0 /* currently not used */
1768 * Check if string "s2" appears somewhere in "s1" while ignoring case.
1769 * Return NULL if not, a pointer to the first occurrence if it does.
1771 char_u *
1772 vim_stristr(s1, s2)
1773 char_u *s1;
1774 char_u *s2;
1776 char_u *p;
1777 int len = STRLEN(s2);
1778 char_u *end = s1 + STRLEN(s1) - len;
1780 for (p = s1; p <= end; ++p)
1781 if (STRNICMP(p, s2, len) == 0)
1782 return p;
1783 return NULL;
1785 #endif
1788 * Version of strchr() and strrchr() that handle unsigned char strings
1789 * with characters from 128 to 255 correctly. It also doesn't return a
1790 * pointer to the NUL at the end of the string.
1792 char_u *
1793 vim_strchr(string, c)
1794 char_u *string;
1795 int c;
1797 char_u *p;
1798 int b;
1800 p = string;
1801 #ifdef FEAT_MBYTE
1802 if (enc_utf8 && c >= 0x80)
1804 while (*p != NUL)
1806 if (utf_ptr2char(p) == c)
1807 return p;
1808 p += (*mb_ptr2len)(p);
1810 return NULL;
1812 if (enc_dbcs != 0 && c > 255)
1814 int n2 = c & 0xff;
1816 c = ((unsigned)c >> 8) & 0xff;
1817 while ((b = *p) != NUL)
1819 if (b == c && p[1] == n2)
1820 return p;
1821 p += (*mb_ptr2len)(p);
1823 return NULL;
1825 if (has_mbyte)
1827 while ((b = *p) != NUL)
1829 if (b == c)
1830 return p;
1831 p += (*mb_ptr2len)(p);
1833 return NULL;
1835 #endif
1836 while ((b = *p) != NUL)
1838 if (b == c)
1839 return p;
1840 ++p;
1842 return NULL;
1846 * Version of strchr() that only works for bytes and handles unsigned char
1847 * strings with characters above 128 correctly. It also doesn't return a
1848 * pointer to the NUL at the end of the string.
1850 char_u *
1851 vim_strbyte(string, c)
1852 char_u *string;
1853 int c;
1855 char_u *p = string;
1857 while (*p != NUL)
1859 if (*p == c)
1860 return p;
1861 ++p;
1863 return NULL;
1867 * Search for last occurrence of "c" in "string".
1868 * Return NULL if not found.
1869 * Does not handle multi-byte char for "c"!
1871 char_u *
1872 vim_strrchr(string, c)
1873 char_u *string;
1874 int c;
1876 char_u *retval = NULL;
1877 char_u *p = string;
1879 while (*p)
1881 if (*p == c)
1882 retval = p;
1883 mb_ptr_adv(p);
1885 return retval;
1889 * Vim's version of strpbrk(), in case it's missing.
1890 * Don't generate a prototype for this, causes problems when it's not used.
1892 #ifndef PROTO
1893 # ifndef HAVE_STRPBRK
1894 # ifdef vim_strpbrk
1895 # undef vim_strpbrk
1896 # endif
1897 char_u *
1898 vim_strpbrk(s, charset)
1899 char_u *s;
1900 char_u *charset;
1902 while (*s)
1904 if (vim_strchr(charset, *s) != NULL)
1905 return s;
1906 mb_ptr_adv(s);
1908 return NULL;
1910 # endif
1911 #endif
1914 * Vim has its own isspace() function, because on some machines isspace()
1915 * can't handle characters above 128.
1918 vim_isspace(x)
1919 int x;
1921 return ((x >= 9 && x <= 13) || x == ' ');
1924 /************************************************************************
1925 * Functions for handling growing arrays.
1929 * Clear an allocated growing array.
1931 void
1932 ga_clear(gap)
1933 garray_T *gap;
1935 vim_free(gap->ga_data);
1936 ga_init(gap);
1940 * Clear a growing array that contains a list of strings.
1942 void
1943 ga_clear_strings(gap)
1944 garray_T *gap;
1946 int i;
1948 for (i = 0; i < gap->ga_len; ++i)
1949 vim_free(((char_u **)(gap->ga_data))[i]);
1950 ga_clear(gap);
1954 * Initialize a growing array. Don't forget to set ga_itemsize and
1955 * ga_growsize! Or use ga_init2().
1957 void
1958 ga_init(gap)
1959 garray_T *gap;
1961 gap->ga_data = NULL;
1962 gap->ga_maxlen = 0;
1963 gap->ga_len = 0;
1966 void
1967 ga_init2(gap, itemsize, growsize)
1968 garray_T *gap;
1969 int itemsize;
1970 int growsize;
1972 ga_init(gap);
1973 gap->ga_itemsize = itemsize;
1974 gap->ga_growsize = growsize;
1978 * Make room in growing array "gap" for at least "n" items.
1979 * Return FAIL for failure, OK otherwise.
1982 ga_grow(gap, n)
1983 garray_T *gap;
1984 int n;
1986 size_t len;
1987 char_u *pp;
1989 if (gap->ga_maxlen - gap->ga_len < n)
1991 if (n < gap->ga_growsize)
1992 n = gap->ga_growsize;
1993 len = gap->ga_itemsize * (gap->ga_len + n);
1994 pp = alloc_clear((unsigned)len);
1995 if (pp == NULL)
1996 return FAIL;
1997 gap->ga_maxlen = gap->ga_len + n;
1998 if (gap->ga_data != NULL)
2000 mch_memmove(pp, gap->ga_data,
2001 (size_t)(gap->ga_itemsize * gap->ga_len));
2002 vim_free(gap->ga_data);
2004 gap->ga_data = pp;
2006 return OK;
2010 * Concatenate a string to a growarray which contains characters.
2011 * Note: Does NOT copy the NUL at the end!
2013 void
2014 ga_concat(gap, s)
2015 garray_T *gap;
2016 char_u *s;
2018 int len = (int)STRLEN(s);
2020 if (ga_grow(gap, len) == OK)
2022 mch_memmove((char *)gap->ga_data + gap->ga_len, s, (size_t)len);
2023 gap->ga_len += len;
2028 * Append one byte to a growarray which contains bytes.
2030 void
2031 ga_append(gap, c)
2032 garray_T *gap;
2033 int c;
2035 if (ga_grow(gap, 1) == OK)
2037 *((char *)gap->ga_data + gap->ga_len) = c;
2038 ++gap->ga_len;
2042 /************************************************************************
2043 * functions that use lookup tables for various things, generally to do with
2044 * special key codes.
2048 * Some useful tables.
2051 static struct modmasktable
2053 short mod_mask; /* Bit-mask for particular key modifier */
2054 short mod_flag; /* Bit(s) for particular key modifier */
2055 char_u name; /* Single letter name of modifier */
2056 } mod_mask_table[] =
2058 {MOD_MASK_ALT, MOD_MASK_ALT, (char_u)'M'},
2059 {MOD_MASK_META, MOD_MASK_META, (char_u)'T'},
2060 {MOD_MASK_CTRL, MOD_MASK_CTRL, (char_u)'C'},
2061 {MOD_MASK_SHIFT, MOD_MASK_SHIFT, (char_u)'S'},
2062 {MOD_MASK_MULTI_CLICK, MOD_MASK_2CLICK, (char_u)'2'},
2063 {MOD_MASK_MULTI_CLICK, MOD_MASK_3CLICK, (char_u)'3'},
2064 {MOD_MASK_MULTI_CLICK, MOD_MASK_4CLICK, (char_u)'4'},
2065 #ifdef MACOS
2066 {MOD_MASK_CMD, MOD_MASK_CMD, (char_u)'D'},
2067 #endif
2068 /* 'A' must be the last one */
2069 {MOD_MASK_ALT, MOD_MASK_ALT, (char_u)'A'},
2070 {0, 0, NUL}
2074 * Shifted key terminal codes and their unshifted equivalent.
2075 * Don't add mouse codes here, they are handled separately!
2077 #define MOD_KEYS_ENTRY_SIZE 5
2079 static char_u modifier_keys_table[] =
2081 /* mod mask with modifier without modifier */
2082 MOD_MASK_SHIFT, '&', '9', '@', '1', /* begin */
2083 MOD_MASK_SHIFT, '&', '0', '@', '2', /* cancel */
2084 MOD_MASK_SHIFT, '*', '1', '@', '4', /* command */
2085 MOD_MASK_SHIFT, '*', '2', '@', '5', /* copy */
2086 MOD_MASK_SHIFT, '*', '3', '@', '6', /* create */
2087 MOD_MASK_SHIFT, '*', '4', 'k', 'D', /* delete char */
2088 MOD_MASK_SHIFT, '*', '5', 'k', 'L', /* delete line */
2089 MOD_MASK_SHIFT, '*', '7', '@', '7', /* end */
2090 MOD_MASK_CTRL, KS_EXTRA, (int)KE_C_END, '@', '7', /* end */
2091 MOD_MASK_SHIFT, '*', '9', '@', '9', /* exit */
2092 MOD_MASK_SHIFT, '*', '0', '@', '0', /* find */
2093 MOD_MASK_SHIFT, '#', '1', '%', '1', /* help */
2094 MOD_MASK_SHIFT, '#', '2', 'k', 'h', /* home */
2095 MOD_MASK_CTRL, KS_EXTRA, (int)KE_C_HOME, 'k', 'h', /* home */
2096 MOD_MASK_SHIFT, '#', '3', 'k', 'I', /* insert */
2097 MOD_MASK_SHIFT, '#', '4', 'k', 'l', /* left arrow */
2098 MOD_MASK_CTRL, KS_EXTRA, (int)KE_C_LEFT, 'k', 'l', /* left arrow */
2099 MOD_MASK_SHIFT, '%', 'a', '%', '3', /* message */
2100 MOD_MASK_SHIFT, '%', 'b', '%', '4', /* move */
2101 MOD_MASK_SHIFT, '%', 'c', '%', '5', /* next */
2102 MOD_MASK_SHIFT, '%', 'd', '%', '7', /* options */
2103 MOD_MASK_SHIFT, '%', 'e', '%', '8', /* previous */
2104 MOD_MASK_SHIFT, '%', 'f', '%', '9', /* print */
2105 MOD_MASK_SHIFT, '%', 'g', '%', '0', /* redo */
2106 MOD_MASK_SHIFT, '%', 'h', '&', '3', /* replace */
2107 MOD_MASK_SHIFT, '%', 'i', 'k', 'r', /* right arr. */
2108 MOD_MASK_CTRL, KS_EXTRA, (int)KE_C_RIGHT, 'k', 'r', /* right arr. */
2109 MOD_MASK_SHIFT, '%', 'j', '&', '5', /* resume */
2110 MOD_MASK_SHIFT, '!', '1', '&', '6', /* save */
2111 MOD_MASK_SHIFT, '!', '2', '&', '7', /* suspend */
2112 MOD_MASK_SHIFT, '!', '3', '&', '8', /* undo */
2113 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_UP, 'k', 'u', /* up arrow */
2114 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_DOWN, 'k', 'd', /* down arrow */
2116 /* vt100 F1 */
2117 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_XF1, KS_EXTRA, (int)KE_XF1,
2118 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_XF2, KS_EXTRA, (int)KE_XF2,
2119 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_XF3, KS_EXTRA, (int)KE_XF3,
2120 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_XF4, KS_EXTRA, (int)KE_XF4,
2122 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F1, 'k', '1', /* F1 */
2123 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F2, 'k', '2',
2124 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F3, 'k', '3',
2125 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F4, 'k', '4',
2126 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F5, 'k', '5',
2127 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F6, 'k', '6',
2128 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F7, 'k', '7',
2129 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F8, 'k', '8',
2130 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F9, 'k', '9',
2131 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F10, 'k', ';', /* F10 */
2133 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F11, 'F', '1',
2134 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F12, 'F', '2',
2135 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F13, 'F', '3',
2136 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F14, 'F', '4',
2137 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F15, 'F', '5',
2138 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F16, 'F', '6',
2139 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F17, 'F', '7',
2140 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F18, 'F', '8',
2141 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F19, 'F', '9',
2142 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F20, 'F', 'A',
2144 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F21, 'F', 'B',
2145 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F22, 'F', 'C',
2146 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F23, 'F', 'D',
2147 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F24, 'F', 'E',
2148 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F25, 'F', 'F',
2149 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F26, 'F', 'G',
2150 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F27, 'F', 'H',
2151 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F28, 'F', 'I',
2152 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F29, 'F', 'J',
2153 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F30, 'F', 'K',
2155 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F31, 'F', 'L',
2156 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F32, 'F', 'M',
2157 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F33, 'F', 'N',
2158 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F34, 'F', 'O',
2159 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F35, 'F', 'P',
2160 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F36, 'F', 'Q',
2161 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F37, 'F', 'R',
2163 /* TAB pseudo code*/
2164 MOD_MASK_SHIFT, 'k', 'B', KS_EXTRA, (int)KE_TAB,
2169 static struct key_name_entry
2171 int key; /* Special key code or ascii value */
2172 char_u *name; /* Name of key */
2173 } key_names_table[] =
2175 {' ', (char_u *)"Space"},
2176 {TAB, (char_u *)"Tab"},
2177 {K_TAB, (char_u *)"Tab"},
2178 {NL, (char_u *)"NL"},
2179 {NL, (char_u *)"NewLine"}, /* Alternative name */
2180 {NL, (char_u *)"LineFeed"}, /* Alternative name */
2181 {NL, (char_u *)"LF"}, /* Alternative name */
2182 {CAR, (char_u *)"CR"},
2183 {CAR, (char_u *)"Return"}, /* Alternative name */
2184 {CAR, (char_u *)"Enter"}, /* Alternative name */
2185 {K_BS, (char_u *)"BS"},
2186 {K_BS, (char_u *)"BackSpace"}, /* Alternative name */
2187 {ESC, (char_u *)"Esc"},
2188 {CSI, (char_u *)"CSI"},
2189 {K_CSI, (char_u *)"xCSI"},
2190 {'|', (char_u *)"Bar"},
2191 {'\\', (char_u *)"Bslash"},
2192 {K_DEL, (char_u *)"Del"},
2193 {K_DEL, (char_u *)"Delete"}, /* Alternative name */
2194 {K_KDEL, (char_u *)"kDel"},
2195 {K_UP, (char_u *)"Up"},
2196 {K_DOWN, (char_u *)"Down"},
2197 {K_LEFT, (char_u *)"Left"},
2198 {K_RIGHT, (char_u *)"Right"},
2199 {K_XUP, (char_u *)"xUp"},
2200 {K_XDOWN, (char_u *)"xDown"},
2201 {K_XLEFT, (char_u *)"xLeft"},
2202 {K_XRIGHT, (char_u *)"xRight"},
2204 {K_F1, (char_u *)"F1"},
2205 {K_F2, (char_u *)"F2"},
2206 {K_F3, (char_u *)"F3"},
2207 {K_F4, (char_u *)"F4"},
2208 {K_F5, (char_u *)"F5"},
2209 {K_F6, (char_u *)"F6"},
2210 {K_F7, (char_u *)"F7"},
2211 {K_F8, (char_u *)"F8"},
2212 {K_F9, (char_u *)"F9"},
2213 {K_F10, (char_u *)"F10"},
2215 {K_F11, (char_u *)"F11"},
2216 {K_F12, (char_u *)"F12"},
2217 {K_F13, (char_u *)"F13"},
2218 {K_F14, (char_u *)"F14"},
2219 {K_F15, (char_u *)"F15"},
2220 {K_F16, (char_u *)"F16"},
2221 {K_F17, (char_u *)"F17"},
2222 {K_F18, (char_u *)"F18"},
2223 {K_F19, (char_u *)"F19"},
2224 {K_F20, (char_u *)"F20"},
2226 {K_F21, (char_u *)"F21"},
2227 {K_F22, (char_u *)"F22"},
2228 {K_F23, (char_u *)"F23"},
2229 {K_F24, (char_u *)"F24"},
2230 {K_F25, (char_u *)"F25"},
2231 {K_F26, (char_u *)"F26"},
2232 {K_F27, (char_u *)"F27"},
2233 {K_F28, (char_u *)"F28"},
2234 {K_F29, (char_u *)"F29"},
2235 {K_F30, (char_u *)"F30"},
2237 {K_F31, (char_u *)"F31"},
2238 {K_F32, (char_u *)"F32"},
2239 {K_F33, (char_u *)"F33"},
2240 {K_F34, (char_u *)"F34"},
2241 {K_F35, (char_u *)"F35"},
2242 {K_F36, (char_u *)"F36"},
2243 {K_F37, (char_u *)"F37"},
2245 {K_XF1, (char_u *)"xF1"},
2246 {K_XF2, (char_u *)"xF2"},
2247 {K_XF3, (char_u *)"xF3"},
2248 {K_XF4, (char_u *)"xF4"},
2250 {K_HELP, (char_u *)"Help"},
2251 {K_UNDO, (char_u *)"Undo"},
2252 {K_INS, (char_u *)"Insert"},
2253 {K_INS, (char_u *)"Ins"}, /* Alternative name */
2254 {K_KINS, (char_u *)"kInsert"},
2255 {K_HOME, (char_u *)"Home"},
2256 {K_KHOME, (char_u *)"kHome"},
2257 {K_XHOME, (char_u *)"xHome"},
2258 {K_ZHOME, (char_u *)"zHome"},
2259 {K_END, (char_u *)"End"},
2260 {K_KEND, (char_u *)"kEnd"},
2261 {K_XEND, (char_u *)"xEnd"},
2262 {K_ZEND, (char_u *)"zEnd"},
2263 {K_PAGEUP, (char_u *)"PageUp"},
2264 {K_PAGEDOWN, (char_u *)"PageDown"},
2265 {K_KPAGEUP, (char_u *)"kPageUp"},
2266 {K_KPAGEDOWN, (char_u *)"kPageDown"},
2268 {K_KPLUS, (char_u *)"kPlus"},
2269 {K_KMINUS, (char_u *)"kMinus"},
2270 {K_KDIVIDE, (char_u *)"kDivide"},
2271 {K_KMULTIPLY, (char_u *)"kMultiply"},
2272 {K_KENTER, (char_u *)"kEnter"},
2273 {K_KPOINT, (char_u *)"kPoint"},
2275 {K_K0, (char_u *)"k0"},
2276 {K_K1, (char_u *)"k1"},
2277 {K_K2, (char_u *)"k2"},
2278 {K_K3, (char_u *)"k3"},
2279 {K_K4, (char_u *)"k4"},
2280 {K_K5, (char_u *)"k5"},
2281 {K_K6, (char_u *)"k6"},
2282 {K_K7, (char_u *)"k7"},
2283 {K_K8, (char_u *)"k8"},
2284 {K_K9, (char_u *)"k9"},
2286 {'<', (char_u *)"lt"},
2288 {K_MOUSE, (char_u *)"Mouse"},
2289 {K_NETTERM_MOUSE, (char_u *)"NetMouse"},
2290 {K_DEC_MOUSE, (char_u *)"DecMouse"},
2291 {K_JSBTERM_MOUSE, (char_u *)"JsbMouse"},
2292 {K_PTERM_MOUSE, (char_u *)"PtermMouse"},
2293 {K_LEFTMOUSE, (char_u *)"LeftMouse"},
2294 {K_LEFTMOUSE_NM, (char_u *)"LeftMouseNM"},
2295 {K_LEFTDRAG, (char_u *)"LeftDrag"},
2296 {K_LEFTRELEASE, (char_u *)"LeftRelease"},
2297 {K_LEFTRELEASE_NM, (char_u *)"LeftReleaseNM"},
2298 {K_MIDDLEMOUSE, (char_u *)"MiddleMouse"},
2299 {K_MIDDLEDRAG, (char_u *)"MiddleDrag"},
2300 {K_MIDDLERELEASE, (char_u *)"MiddleRelease"},
2301 {K_RIGHTMOUSE, (char_u *)"RightMouse"},
2302 {K_RIGHTDRAG, (char_u *)"RightDrag"},
2303 {K_RIGHTRELEASE, (char_u *)"RightRelease"},
2304 {K_MOUSEDOWN, (char_u *)"MouseDown"},
2305 {K_MOUSEUP, (char_u *)"MouseUp"},
2306 {K_X1MOUSE, (char_u *)"X1Mouse"},
2307 {K_X1DRAG, (char_u *)"X1Drag"},
2308 {K_X1RELEASE, (char_u *)"X1Release"},
2309 {K_X2MOUSE, (char_u *)"X2Mouse"},
2310 {K_X2DRAG, (char_u *)"X2Drag"},
2311 {K_X2RELEASE, (char_u *)"X2Release"},
2312 {K_DROP, (char_u *)"Drop"},
2313 {K_ZERO, (char_u *)"Nul"},
2314 #ifdef FEAT_EVAL
2315 {K_SNR, (char_u *)"SNR"},
2316 #endif
2317 {K_PLUG, (char_u *)"Plug"},
2318 {0, NULL}
2321 #define KEY_NAMES_TABLE_LEN (sizeof(key_names_table) / sizeof(struct key_name_entry))
2323 #ifdef FEAT_MOUSE
2324 static struct mousetable
2326 int pseudo_code; /* Code for pseudo mouse event */
2327 int button; /* Which mouse button is it? */
2328 int is_click; /* Is it a mouse button click event? */
2329 int is_drag; /* Is it a mouse drag event? */
2330 } mouse_table[] =
2332 {(int)KE_LEFTMOUSE, MOUSE_LEFT, TRUE, FALSE},
2333 #ifdef FEAT_GUI
2334 {(int)KE_LEFTMOUSE_NM, MOUSE_LEFT, TRUE, FALSE},
2335 #endif
2336 {(int)KE_LEFTDRAG, MOUSE_LEFT, FALSE, TRUE},
2337 {(int)KE_LEFTRELEASE, MOUSE_LEFT, FALSE, FALSE},
2338 #ifdef FEAT_GUI
2339 {(int)KE_LEFTRELEASE_NM, MOUSE_LEFT, FALSE, FALSE},
2340 #endif
2341 {(int)KE_MIDDLEMOUSE, MOUSE_MIDDLE, TRUE, FALSE},
2342 {(int)KE_MIDDLEDRAG, MOUSE_MIDDLE, FALSE, TRUE},
2343 {(int)KE_MIDDLERELEASE, MOUSE_MIDDLE, FALSE, FALSE},
2344 {(int)KE_RIGHTMOUSE, MOUSE_RIGHT, TRUE, FALSE},
2345 {(int)KE_RIGHTDRAG, MOUSE_RIGHT, FALSE, TRUE},
2346 {(int)KE_RIGHTRELEASE, MOUSE_RIGHT, FALSE, FALSE},
2347 {(int)KE_X1MOUSE, MOUSE_X1, TRUE, FALSE},
2348 {(int)KE_X1DRAG, MOUSE_X1, FALSE, TRUE},
2349 {(int)KE_X1RELEASE, MOUSE_X1, FALSE, FALSE},
2350 {(int)KE_X2MOUSE, MOUSE_X2, TRUE, FALSE},
2351 {(int)KE_X2DRAG, MOUSE_X2, FALSE, TRUE},
2352 {(int)KE_X2RELEASE, MOUSE_X2, FALSE, FALSE},
2353 /* DRAG without CLICK */
2354 {(int)KE_IGNORE, MOUSE_RELEASE, FALSE, TRUE},
2355 /* RELEASE without CLICK */
2356 {(int)KE_IGNORE, MOUSE_RELEASE, FALSE, FALSE},
2357 {0, 0, 0, 0},
2359 #endif /* FEAT_MOUSE */
2362 * Return the modifier mask bit (MOD_MASK_*) which corresponds to the given
2363 * modifier name ('S' for Shift, 'C' for Ctrl etc).
2366 name_to_mod_mask(c)
2367 int c;
2369 int i;
2371 c = TOUPPER_ASC(c);
2372 for (i = 0; mod_mask_table[i].mod_mask != 0; i++)
2373 if (c == mod_mask_table[i].name)
2374 return mod_mask_table[i].mod_flag;
2375 return 0;
2379 * Check if if there is a special key code for "key" that includes the
2380 * modifiers specified.
2383 simplify_key(key, modifiers)
2384 int key;
2385 int *modifiers;
2387 int i;
2388 int key0;
2389 int key1;
2391 if (*modifiers & (MOD_MASK_SHIFT | MOD_MASK_CTRL | MOD_MASK_ALT))
2393 /* TAB is a special case */
2394 if (key == TAB && (*modifiers & MOD_MASK_SHIFT))
2396 *modifiers &= ~MOD_MASK_SHIFT;
2397 return K_S_TAB;
2399 key0 = KEY2TERMCAP0(key);
2400 key1 = KEY2TERMCAP1(key);
2401 for (i = 0; modifier_keys_table[i] != NUL; i += MOD_KEYS_ENTRY_SIZE)
2402 if (key0 == modifier_keys_table[i + 3]
2403 && key1 == modifier_keys_table[i + 4]
2404 && (*modifiers & modifier_keys_table[i]))
2406 *modifiers &= ~modifier_keys_table[i];
2407 return TERMCAP2KEY(modifier_keys_table[i + 1],
2408 modifier_keys_table[i + 2]);
2411 return key;
2415 * Change <xHome> to <Home>, <xUp> to <Up>, etc.
2418 handle_x_keys(key)
2419 int key;
2421 switch (key)
2423 case K_XUP: return K_UP;
2424 case K_XDOWN: return K_DOWN;
2425 case K_XLEFT: return K_LEFT;
2426 case K_XRIGHT: return K_RIGHT;
2427 case K_XHOME: return K_HOME;
2428 case K_ZHOME: return K_HOME;
2429 case K_XEND: return K_END;
2430 case K_ZEND: return K_END;
2431 case K_XF1: return K_F1;
2432 case K_XF2: return K_F2;
2433 case K_XF3: return K_F3;
2434 case K_XF4: return K_F4;
2435 case K_S_XF1: return K_S_F1;
2436 case K_S_XF2: return K_S_F2;
2437 case K_S_XF3: return K_S_F3;
2438 case K_S_XF4: return K_S_F4;
2440 return key;
2444 * Return a string which contains the name of the given key when the given
2445 * modifiers are down.
2447 char_u *
2448 get_special_key_name(c, modifiers)
2449 int c;
2450 int modifiers;
2452 static char_u string[MAX_KEY_NAME_LEN + 1];
2454 int i, idx;
2455 int table_idx;
2456 char_u *s;
2458 string[0] = '<';
2459 idx = 1;
2461 /* Key that stands for a normal character. */
2462 if (IS_SPECIAL(c) && KEY2TERMCAP0(c) == KS_KEY)
2463 c = KEY2TERMCAP1(c);
2466 * Translate shifted special keys into unshifted keys and set modifier.
2467 * Same for CTRL and ALT modifiers.
2469 if (IS_SPECIAL(c))
2471 for (i = 0; modifier_keys_table[i] != 0; i += MOD_KEYS_ENTRY_SIZE)
2472 if ( KEY2TERMCAP0(c) == (int)modifier_keys_table[i + 1]
2473 && (int)KEY2TERMCAP1(c) == (int)modifier_keys_table[i + 2])
2475 modifiers |= modifier_keys_table[i];
2476 c = TERMCAP2KEY(modifier_keys_table[i + 3],
2477 modifier_keys_table[i + 4]);
2478 break;
2482 /* try to find the key in the special key table */
2483 table_idx = find_special_key_in_table(c);
2486 * When not a known special key, and not a printable character, try to
2487 * extract modifiers.
2489 if (c > 0
2490 #ifdef FEAT_MBYTE
2491 && (*mb_char2len)(c) == 1
2492 #endif
2495 if (table_idx < 0
2496 && (!vim_isprintc(c) || (c & 0x7f) == ' ')
2497 && (c & 0x80))
2499 c &= 0x7f;
2500 modifiers |= MOD_MASK_ALT;
2501 /* try again, to find the un-alted key in the special key table */
2502 table_idx = find_special_key_in_table(c);
2504 if (table_idx < 0 && !vim_isprintc(c) && c < ' ')
2506 #ifdef EBCDIC
2507 c = CtrlChar(c);
2508 #else
2509 c += '@';
2510 #endif
2511 modifiers |= MOD_MASK_CTRL;
2515 /* translate the modifier into a string */
2516 for (i = 0; mod_mask_table[i].name != 'A'; i++)
2517 if ((modifiers & mod_mask_table[i].mod_mask)
2518 == mod_mask_table[i].mod_flag)
2520 string[idx++] = mod_mask_table[i].name;
2521 string[idx++] = (char_u)'-';
2524 if (table_idx < 0) /* unknown special key, may output t_xx */
2526 if (IS_SPECIAL(c))
2528 string[idx++] = 't';
2529 string[idx++] = '_';
2530 string[idx++] = KEY2TERMCAP0(c);
2531 string[idx++] = KEY2TERMCAP1(c);
2533 /* Not a special key, only modifiers, output directly */
2534 else
2536 #ifdef FEAT_MBYTE
2537 if (has_mbyte && (*mb_char2len)(c) > 1)
2538 idx += (*mb_char2bytes)(c, string + idx);
2539 else
2540 #endif
2541 if (vim_isprintc(c))
2542 string[idx++] = c;
2543 else
2545 s = transchar(c);
2546 while (*s)
2547 string[idx++] = *s++;
2551 else /* use name of special key */
2553 STRCPY(string + idx, key_names_table[table_idx].name);
2554 idx = (int)STRLEN(string);
2556 string[idx++] = '>';
2557 string[idx] = NUL;
2558 return string;
2562 * Try translating a <> name at (*srcp)[] to dst[].
2563 * Return the number of characters added to dst[], zero for no match.
2564 * If there is a match, srcp is advanced to after the <> name.
2565 * dst[] must be big enough to hold the result (up to six characters)!
2568 trans_special(srcp, dst, keycode)
2569 char_u **srcp;
2570 char_u *dst;
2571 int keycode; /* prefer key code, e.g. K_DEL instead of DEL */
2573 int modifiers = 0;
2574 int key;
2575 int dlen = 0;
2577 key = find_special_key(srcp, &modifiers, keycode, FALSE);
2578 if (key == 0)
2579 return 0;
2581 /* Put the appropriate modifier in a string */
2582 if (modifiers != 0)
2584 dst[dlen++] = K_SPECIAL;
2585 dst[dlen++] = KS_MODIFIER;
2586 dst[dlen++] = modifiers;
2589 if (IS_SPECIAL(key))
2591 dst[dlen++] = K_SPECIAL;
2592 dst[dlen++] = KEY2TERMCAP0(key);
2593 dst[dlen++] = KEY2TERMCAP1(key);
2595 #ifdef FEAT_MBYTE
2596 else if (has_mbyte && !keycode)
2597 dlen += (*mb_char2bytes)(key, dst + dlen);
2598 #endif
2599 else if (keycode)
2600 dlen = (int)(add_char2buf(key, dst + dlen) - dst);
2601 else
2602 dst[dlen++] = key;
2604 return dlen;
2608 * Try translating a <> name at (*srcp)[], return the key and modifiers.
2609 * srcp is advanced to after the <> name.
2610 * returns 0 if there is no match.
2613 find_special_key(srcp, modp, keycode, keep_x_key)
2614 char_u **srcp;
2615 int *modp;
2616 int keycode; /* prefer key code, e.g. K_DEL instead of DEL */
2617 int keep_x_key; /* don't translate xHome to Home key */
2619 char_u *last_dash;
2620 char_u *end_of_name;
2621 char_u *src;
2622 char_u *bp;
2623 int modifiers;
2624 int bit;
2625 int key;
2626 unsigned long n;
2628 src = *srcp;
2629 if (src[0] != '<')
2630 return 0;
2632 /* Find end of modifier list */
2633 last_dash = src;
2634 for (bp = src + 1; *bp == '-' || vim_isIDc(*bp); bp++)
2636 if (*bp == '-')
2638 last_dash = bp;
2639 if (bp[1] != NUL && bp[2] == '>')
2640 ++bp; /* anything accepted, like <C-?> */
2642 if (bp[0] == 't' && bp[1] == '_' && bp[2] && bp[3])
2643 bp += 3; /* skip t_xx, xx may be '-' or '>' */
2646 if (*bp == '>') /* found matching '>' */
2648 end_of_name = bp + 1;
2650 if (STRNICMP(src + 1, "char-", 5) == 0 && VIM_ISDIGIT(src[6]))
2652 /* <Char-123> or <Char-033> or <Char-0x33> */
2653 vim_str2nr(src + 6, NULL, NULL, TRUE, TRUE, NULL, &n);
2654 *modp = 0;
2655 *srcp = end_of_name;
2656 return (int)n;
2659 /* Which modifiers are given? */
2660 modifiers = 0x0;
2661 for (bp = src + 1; bp < last_dash; bp++)
2663 if (*bp != '-')
2665 bit = name_to_mod_mask(*bp);
2666 if (bit == 0x0)
2667 break; /* Illegal modifier name */
2668 modifiers |= bit;
2673 * Legal modifier name.
2675 if (bp >= last_dash)
2678 * Modifier with single letter, or special key name.
2680 if (modifiers != 0 && last_dash[2] == '>')
2681 key = last_dash[1];
2682 else
2684 key = get_special_key_code(last_dash + 1);
2685 if (!keep_x_key)
2686 key = handle_x_keys(key);
2690 * get_special_key_code() may return NUL for invalid
2691 * special key name.
2693 if (key != NUL)
2696 * Only use a modifier when there is no special key code that
2697 * includes the modifier.
2699 key = simplify_key(key, &modifiers);
2701 if (!keycode)
2703 /* don't want keycode, use single byte code */
2704 if (key == K_BS)
2705 key = BS;
2706 else if (key == K_DEL || key == K_KDEL)
2707 key = DEL;
2711 * Normal Key with modifier: Try to make a single byte code.
2713 if (!IS_SPECIAL(key))
2714 key = extract_modifiers(key, &modifiers);
2716 *modp = modifiers;
2717 *srcp = end_of_name;
2718 return key;
2722 return 0;
2726 * Try to include modifiers in the key.
2727 * Changes "Shift-a" to 'A', "Alt-A" to 0xc0, etc.
2730 extract_modifiers(key, modp)
2731 int key;
2732 int *modp;
2734 int modifiers = *modp;
2736 #ifdef MACOS
2737 /* Command-key really special, No fancynest */
2738 if (!(modifiers & MOD_MASK_CMD))
2739 #endif
2740 if ((modifiers & MOD_MASK_SHIFT) && ASCII_ISALPHA(key))
2742 key = TOUPPER_ASC(key);
2743 modifiers &= ~MOD_MASK_SHIFT;
2745 if ((modifiers & MOD_MASK_CTRL)
2746 #ifdef EBCDIC
2747 /* * TODO: EBCDIC Better use:
2748 * && (Ctrl_chr(key) || key == '?')
2749 * ??? */
2750 && strchr("?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_", key)
2751 != NULL
2752 #else
2753 && ((key >= '?' && key <= '_') || ASCII_ISALPHA(key))
2754 #endif
2757 key = Ctrl_chr(key);
2758 modifiers &= ~MOD_MASK_CTRL;
2759 /* <C-@> is <Nul> */
2760 if (key == 0)
2761 key = K_ZERO;
2763 #ifdef MACOS
2764 /* Command-key really special, No fancynest */
2765 if (!(modifiers & MOD_MASK_CMD))
2766 #endif
2767 if ((modifiers & MOD_MASK_ALT) && key < 0x80
2768 #ifdef FEAT_MBYTE
2769 && !enc_dbcs /* avoid creating a lead byte */
2770 #endif
2773 key |= 0x80;
2774 modifiers &= ~MOD_MASK_ALT; /* remove the META modifier */
2777 *modp = modifiers;
2778 return key;
2782 * Try to find key "c" in the special key table.
2783 * Return the index when found, -1 when not found.
2786 find_special_key_in_table(c)
2787 int c;
2789 int i;
2791 for (i = 0; key_names_table[i].name != NULL; i++)
2792 if (c == key_names_table[i].key)
2793 break;
2794 if (key_names_table[i].name == NULL)
2795 i = -1;
2796 return i;
2800 * Find the special key with the given name (the given string does not have to
2801 * end with NUL, the name is assumed to end before the first non-idchar).
2802 * If the name starts with "t_" the next two characters are interpreted as a
2803 * termcap name.
2804 * Return the key code, or 0 if not found.
2807 get_special_key_code(name)
2808 char_u *name;
2810 char_u *table_name;
2811 char_u string[3];
2812 int i, j;
2815 * If it's <t_xx> we get the code for xx from the termcap
2817 if (name[0] == 't' && name[1] == '_' && name[2] != NUL && name[3] != NUL)
2819 string[0] = name[2];
2820 string[1] = name[3];
2821 string[2] = NUL;
2822 if (add_termcap_entry(string, FALSE) == OK)
2823 return TERMCAP2KEY(name[2], name[3]);
2825 else
2826 for (i = 0; key_names_table[i].name != NULL; i++)
2828 table_name = key_names_table[i].name;
2829 for (j = 0; vim_isIDc(name[j]) && table_name[j] != NUL; j++)
2830 if (TOLOWER_ASC(table_name[j]) != TOLOWER_ASC(name[j]))
2831 break;
2832 if (!vim_isIDc(name[j]) && table_name[j] == NUL)
2833 return key_names_table[i].key;
2835 return 0;
2838 #if defined(FEAT_CMDL_COMPL) || defined(PROTO)
2839 char_u *
2840 get_key_name(i)
2841 int i;
2843 if (i >= KEY_NAMES_TABLE_LEN)
2844 return NULL;
2845 return key_names_table[i].name;
2847 #endif
2849 #if defined(FEAT_MOUSE) || defined(PROTO)
2851 * Look up the given mouse code to return the relevant information in the other
2852 * arguments. Return which button is down or was released.
2855 get_mouse_button(code, is_click, is_drag)
2856 int code;
2857 int *is_click;
2858 int *is_drag;
2860 int i;
2862 for (i = 0; mouse_table[i].pseudo_code; i++)
2863 if (code == mouse_table[i].pseudo_code)
2865 *is_click = mouse_table[i].is_click;
2866 *is_drag = mouse_table[i].is_drag;
2867 return mouse_table[i].button;
2869 return 0; /* Shouldn't get here */
2873 * Return the appropriate pseudo mouse event token (KE_LEFTMOUSE etc) based on
2874 * the given information about which mouse button is down, and whether the
2875 * mouse was clicked, dragged or released.
2878 get_pseudo_mouse_code(button, is_click, is_drag)
2879 int button; /* eg MOUSE_LEFT */
2880 int is_click;
2881 int is_drag;
2883 int i;
2885 for (i = 0; mouse_table[i].pseudo_code; i++)
2886 if (button == mouse_table[i].button
2887 && is_click == mouse_table[i].is_click
2888 && is_drag == mouse_table[i].is_drag)
2890 #ifdef FEAT_GUI
2891 /* Trick: a non mappable left click and release has mouse_col -1
2892 * or added MOUSE_COLOFF. Used for 'mousefocus' in
2893 * gui_mouse_moved() */
2894 if (mouse_col < 0 || mouse_col > MOUSE_COLOFF)
2896 if (mouse_col < 0)
2897 mouse_col = 0;
2898 else
2899 mouse_col -= MOUSE_COLOFF;
2900 if (mouse_table[i].pseudo_code == (int)KE_LEFTMOUSE)
2901 return (int)KE_LEFTMOUSE_NM;
2902 if (mouse_table[i].pseudo_code == (int)KE_LEFTRELEASE)
2903 return (int)KE_LEFTRELEASE_NM;
2905 #endif
2906 return mouse_table[i].pseudo_code;
2908 return (int)KE_IGNORE; /* not recognized, ignore it */
2910 #endif /* FEAT_MOUSE */
2913 * Return the current end-of-line type: EOL_DOS, EOL_UNIX or EOL_MAC.
2916 get_fileformat(buf)
2917 buf_T *buf;
2919 int c = *buf->b_p_ff;
2921 if (buf->b_p_bin || c == 'u')
2922 return EOL_UNIX;
2923 if (c == 'm')
2924 return EOL_MAC;
2925 return EOL_DOS;
2929 * Like get_fileformat(), but override 'fileformat' with "p" for "++opt=val"
2930 * argument.
2933 get_fileformat_force(buf, eap)
2934 buf_T *buf;
2935 exarg_T *eap; /* can be NULL! */
2937 int c;
2939 if (eap != NULL && eap->force_ff != 0)
2940 c = eap->cmd[eap->force_ff];
2941 else
2943 if ((eap != NULL && eap->force_bin != 0)
2944 ? (eap->force_bin == FORCE_BIN) : buf->b_p_bin)
2945 return EOL_UNIX;
2946 c = *buf->b_p_ff;
2948 if (c == 'u')
2949 return EOL_UNIX;
2950 if (c == 'm')
2951 return EOL_MAC;
2952 return EOL_DOS;
2956 * Set the current end-of-line type to EOL_DOS, EOL_UNIX or EOL_MAC.
2957 * Sets both 'textmode' and 'fileformat'.
2958 * Note: Does _not_ set global value of 'textmode'!
2960 void
2961 set_fileformat(t, opt_flags)
2962 int t;
2963 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
2965 char *p = NULL;
2967 switch (t)
2969 case EOL_DOS:
2970 p = FF_DOS;
2971 curbuf->b_p_tx = TRUE;
2972 break;
2973 case EOL_UNIX:
2974 p = FF_UNIX;
2975 curbuf->b_p_tx = FALSE;
2976 break;
2977 case EOL_MAC:
2978 p = FF_MAC;
2979 curbuf->b_p_tx = FALSE;
2980 break;
2982 if (p != NULL)
2983 set_string_option_direct((char_u *)"ff", -1, (char_u *)p,
2984 OPT_FREE | opt_flags, 0);
2986 #ifdef FEAT_WINDOWS
2987 /* This may cause the buffer to become (un)modified. */
2988 check_status(curbuf);
2989 redraw_tabline = TRUE;
2990 #endif
2991 #ifdef FEAT_TITLE
2992 need_maketitle = TRUE; /* set window title later */
2993 #endif
2997 * Return the default fileformat from 'fileformats'.
3000 default_fileformat()
3002 switch (*p_ffs)
3004 case 'm': return EOL_MAC;
3005 case 'd': return EOL_DOS;
3007 return EOL_UNIX;
3011 * Call shell. Calls mch_call_shell, with 'shellxquote' added.
3014 call_shell(cmd, opt)
3015 char_u *cmd;
3016 int opt;
3018 char_u *ncmd;
3019 int retval;
3020 #ifdef FEAT_PROFILE
3021 proftime_T wait_time;
3022 #endif
3024 if (p_verbose > 3)
3026 verbose_enter();
3027 smsg((char_u *)_("Calling shell to execute: \"%s\""),
3028 cmd == NULL ? p_sh : cmd);
3029 out_char('\n');
3030 cursor_on();
3031 verbose_leave();
3034 #ifdef FEAT_PROFILE
3035 if (do_profiling == PROF_YES)
3036 prof_child_enter(&wait_time);
3037 #endif
3039 if (*p_sh == NUL)
3041 EMSG(_(e_shellempty));
3042 retval = -1;
3044 else
3046 #ifdef FEAT_GUI_MSWIN
3047 /* Don't hide the pointer while executing a shell command. */
3048 gui_mch_mousehide(FALSE);
3049 #endif
3050 #ifdef FEAT_GUI
3051 ++hold_gui_events;
3052 #endif
3053 /* The external command may update a tags file, clear cached tags. */
3054 tag_freematch();
3056 if (cmd == NULL || *p_sxq == NUL)
3057 retval = mch_call_shell(cmd, opt);
3058 else
3060 ncmd = alloc((unsigned)(STRLEN(cmd) + STRLEN(p_sxq) * 2 + 1));
3061 if (ncmd != NULL)
3063 STRCPY(ncmd, p_sxq);
3064 STRCAT(ncmd, cmd);
3065 STRCAT(ncmd, p_sxq);
3066 retval = mch_call_shell(ncmd, opt);
3067 vim_free(ncmd);
3069 else
3070 retval = -1;
3072 #ifdef FEAT_GUI
3073 --hold_gui_events;
3074 #endif
3076 * Check the window size, in case it changed while executing the
3077 * external command.
3079 shell_resized_check();
3082 #ifdef FEAT_EVAL
3083 set_vim_var_nr(VV_SHELL_ERROR, (long)retval);
3084 # ifdef FEAT_PROFILE
3085 if (do_profiling == PROF_YES)
3086 prof_child_exit(&wait_time);
3087 # endif
3088 #endif
3090 return retval;
3094 * VISUAL, SELECTMODE and OP_PENDING State are never set, they are equal to
3095 * NORMAL State with a condition. This function returns the real State.
3098 get_real_state()
3100 if (State & NORMAL)
3102 #ifdef FEAT_VISUAL
3103 if (VIsual_active)
3105 if (VIsual_select)
3106 return SELECTMODE;
3107 return VISUAL;
3109 else
3110 #endif
3111 if (finish_op)
3112 return OP_PENDING;
3114 return State;
3117 #if defined(FEAT_MBYTE) || defined(PROTO)
3119 * Return TRUE if "p" points to just after a path separator.
3120 * Take care of multi-byte characters.
3121 * "b" must point to the start of the file name
3124 after_pathsep(b, p)
3125 char_u *b;
3126 char_u *p;
3128 return vim_ispathsep(p[-1])
3129 && (!has_mbyte || (*mb_head_off)(b, p - 1) == 0);
3131 #endif
3134 * Return TRUE if file names "f1" and "f2" are in the same directory.
3135 * "f1" may be a short name, "f2" must be a full path.
3138 same_directory(f1, f2)
3139 char_u *f1;
3140 char_u *f2;
3142 char_u ffname[MAXPATHL];
3143 char_u *t1;
3144 char_u *t2;
3146 /* safety check */
3147 if (f1 == NULL || f2 == NULL)
3148 return FALSE;
3150 (void)vim_FullName(f1, ffname, MAXPATHL, FALSE);
3151 t1 = gettail_sep(ffname);
3152 t2 = gettail_sep(f2);
3153 return (t1 - ffname == t2 - f2
3154 && pathcmp((char *)ffname, (char *)f2, (int)(t1 - ffname)) == 0);
3157 #if defined(FEAT_SESSION) || defined(MSWIN) || defined(FEAT_GUI_MAC) \
3158 || ((defined(FEAT_GUI_GTK)) \
3159 && ( defined(FEAT_WINDOWS) || defined(FEAT_DND)) ) \
3160 || defined(FEAT_SUN_WORKSHOP) || defined(FEAT_NETBEANS_INTG) \
3161 || defined(PROTO)
3163 * Change to a file's directory.
3164 * Caller must call shorten_fnames()!
3165 * Return OK or FAIL.
3168 vim_chdirfile(fname)
3169 char_u *fname;
3171 char_u dir[MAXPATHL];
3173 vim_strncpy(dir, fname, MAXPATHL - 1);
3174 *gettail_sep(dir) = NUL;
3175 return mch_chdir((char *)dir) == 0 ? OK : FAIL;
3177 #endif
3179 #if defined(STAT_IGNORES_SLASH) || defined(PROTO)
3181 * Check if "name" ends in a slash and is not a directory.
3182 * Used for systems where stat() ignores a trailing slash on a file name.
3183 * The Vim code assumes a trailing slash is only ignored for a directory.
3186 illegal_slash(name)
3187 char *name;
3189 if (name[0] == NUL)
3190 return FALSE; /* no file name is not illegal */
3191 if (name[strlen(name) - 1] != '/')
3192 return FALSE; /* no trailing slash */
3193 if (mch_isdir((char_u *)name))
3194 return FALSE; /* trailing slash for a directory */
3195 return TRUE;
3197 #endif
3199 #if defined(CURSOR_SHAPE) || defined(PROTO)
3202 * Handling of cursor and mouse pointer shapes in various modes.
3205 cursorentry_T shape_table[SHAPE_IDX_COUNT] =
3207 /* The values will be filled in from the 'guicursor' and 'mouseshape'
3208 * defaults when Vim starts.
3209 * Adjust the SHAPE_IDX_ defines when making changes! */
3210 {0, 0, 0, 700L, 400L, 250L, 0, 0, "n", SHAPE_CURSOR+SHAPE_MOUSE},
3211 {0, 0, 0, 700L, 400L, 250L, 0, 0, "v", SHAPE_CURSOR+SHAPE_MOUSE},
3212 {0, 0, 0, 700L, 400L, 250L, 0, 0, "i", SHAPE_CURSOR+SHAPE_MOUSE},
3213 {0, 0, 0, 700L, 400L, 250L, 0, 0, "r", SHAPE_CURSOR+SHAPE_MOUSE},
3214 {0, 0, 0, 700L, 400L, 250L, 0, 0, "c", SHAPE_CURSOR+SHAPE_MOUSE},
3215 {0, 0, 0, 700L, 400L, 250L, 0, 0, "ci", SHAPE_CURSOR+SHAPE_MOUSE},
3216 {0, 0, 0, 700L, 400L, 250L, 0, 0, "cr", SHAPE_CURSOR+SHAPE_MOUSE},
3217 {0, 0, 0, 700L, 400L, 250L, 0, 0, "o", SHAPE_CURSOR+SHAPE_MOUSE},
3218 {0, 0, 0, 700L, 400L, 250L, 0, 0, "ve", SHAPE_CURSOR+SHAPE_MOUSE},
3219 {0, 0, 0, 0L, 0L, 0L, 0, 0, "e", SHAPE_MOUSE},
3220 {0, 0, 0, 0L, 0L, 0L, 0, 0, "s", SHAPE_MOUSE},
3221 {0, 0, 0, 0L, 0L, 0L, 0, 0, "sd", SHAPE_MOUSE},
3222 {0, 0, 0, 0L, 0L, 0L, 0, 0, "vs", SHAPE_MOUSE},
3223 {0, 0, 0, 0L, 0L, 0L, 0, 0, "vd", SHAPE_MOUSE},
3224 {0, 0, 0, 0L, 0L, 0L, 0, 0, "m", SHAPE_MOUSE},
3225 {0, 0, 0, 0L, 0L, 0L, 0, 0, "ml", SHAPE_MOUSE},
3226 {0, 0, 0, 100L, 100L, 100L, 0, 0, "sm", SHAPE_CURSOR},
3229 #ifdef FEAT_MOUSESHAPE
3231 * Table with names for mouse shapes. Keep in sync with all the tables for
3232 * mch_set_mouse_shape()!.
3234 static char * mshape_names[] =
3236 "arrow", /* default, must be the first one */
3237 "blank", /* hidden */
3238 "beam",
3239 "updown",
3240 "udsizing",
3241 "leftright",
3242 "lrsizing",
3243 "busy",
3244 "no",
3245 "crosshair",
3246 "hand1",
3247 "hand2",
3248 "pencil",
3249 "question",
3250 "rightup-arrow",
3251 "up-arrow",
3252 NULL
3254 #endif
3257 * Parse the 'guicursor' option ("what" is SHAPE_CURSOR) or 'mouseshape'
3258 * ("what" is SHAPE_MOUSE).
3259 * Returns error message for an illegal option, NULL otherwise.
3261 char_u *
3262 parse_shape_opt(what)
3263 int what;
3265 char_u *modep;
3266 char_u *colonp;
3267 char_u *commap;
3268 char_u *slashp;
3269 char_u *p, *endp;
3270 int idx = 0; /* init for GCC */
3271 int all_idx;
3272 int len;
3273 int i;
3274 long n;
3275 int found_ve = FALSE; /* found "ve" flag */
3276 int round;
3279 * First round: check for errors; second round: do it for real.
3281 for (round = 1; round <= 2; ++round)
3284 * Repeat for all comma separated parts.
3286 #ifdef FEAT_MOUSESHAPE
3287 if (what == SHAPE_MOUSE)
3288 modep = p_mouseshape;
3289 else
3290 #endif
3291 modep = p_guicursor;
3292 while (*modep != NUL)
3294 colonp = vim_strchr(modep, ':');
3295 if (colonp == NULL)
3296 return (char_u *)N_("E545: Missing colon");
3297 if (colonp == modep)
3298 return (char_u *)N_("E546: Illegal mode");
3299 commap = vim_strchr(modep, ',');
3302 * Repeat for all mode's before the colon.
3303 * For the 'a' mode, we loop to handle all the modes.
3305 all_idx = -1;
3306 while (modep < colonp || all_idx >= 0)
3308 if (all_idx < 0)
3310 /* Find the mode. */
3311 if (modep[1] == '-' || modep[1] == ':')
3312 len = 1;
3313 else
3314 len = 2;
3315 if (len == 1 && TOLOWER_ASC(modep[0]) == 'a')
3316 all_idx = SHAPE_IDX_COUNT - 1;
3317 else
3319 for (idx = 0; idx < SHAPE_IDX_COUNT; ++idx)
3320 if (STRNICMP(modep, shape_table[idx].name, len)
3321 == 0)
3322 break;
3323 if (idx == SHAPE_IDX_COUNT
3324 || (shape_table[idx].used_for & what) == 0)
3325 return (char_u *)N_("E546: Illegal mode");
3326 if (len == 2 && modep[0] == 'v' && modep[1] == 'e')
3327 found_ve = TRUE;
3329 modep += len + 1;
3332 if (all_idx >= 0)
3333 idx = all_idx--;
3334 else if (round == 2)
3336 #ifdef FEAT_MOUSESHAPE
3337 if (what == SHAPE_MOUSE)
3339 /* Set the default, for the missing parts */
3340 shape_table[idx].mshape = 0;
3342 else
3343 #endif
3345 /* Set the defaults, for the missing parts */
3346 shape_table[idx].shape = SHAPE_BLOCK;
3347 shape_table[idx].blinkwait = 700L;
3348 shape_table[idx].blinkon = 400L;
3349 shape_table[idx].blinkoff = 250L;
3353 /* Parse the part after the colon */
3354 for (p = colonp + 1; *p && *p != ','; )
3356 #ifdef FEAT_MOUSESHAPE
3357 if (what == SHAPE_MOUSE)
3359 for (i = 0; ; ++i)
3361 if (mshape_names[i] == NULL)
3363 if (!VIM_ISDIGIT(*p))
3364 return (char_u *)N_("E547: Illegal mouseshape");
3365 if (round == 2)
3366 shape_table[idx].mshape =
3367 getdigits(&p) + MSHAPE_NUMBERED;
3368 else
3369 (void)getdigits(&p);
3370 break;
3372 len = (int)STRLEN(mshape_names[i]);
3373 if (STRNICMP(p, mshape_names[i], len) == 0)
3375 if (round == 2)
3376 shape_table[idx].mshape = i;
3377 p += len;
3378 break;
3382 else /* if (what == SHAPE_MOUSE) */
3383 #endif
3386 * First handle the ones with a number argument.
3388 i = *p;
3389 len = 0;
3390 if (STRNICMP(p, "ver", 3) == 0)
3391 len = 3;
3392 else if (STRNICMP(p, "hor", 3) == 0)
3393 len = 3;
3394 else if (STRNICMP(p, "blinkwait", 9) == 0)
3395 len = 9;
3396 else if (STRNICMP(p, "blinkon", 7) == 0)
3397 len = 7;
3398 else if (STRNICMP(p, "blinkoff", 8) == 0)
3399 len = 8;
3400 if (len != 0)
3402 p += len;
3403 if (!VIM_ISDIGIT(*p))
3404 return (char_u *)N_("E548: digit expected");
3405 n = getdigits(&p);
3406 if (len == 3) /* "ver" or "hor" */
3408 if (n == 0)
3409 return (char_u *)N_("E549: Illegal percentage");
3410 if (round == 2)
3412 if (TOLOWER_ASC(i) == 'v')
3413 shape_table[idx].shape = SHAPE_VER;
3414 else
3415 shape_table[idx].shape = SHAPE_HOR;
3416 shape_table[idx].percentage = n;
3419 else if (round == 2)
3421 if (len == 9)
3422 shape_table[idx].blinkwait = n;
3423 else if (len == 7)
3424 shape_table[idx].blinkon = n;
3425 else
3426 shape_table[idx].blinkoff = n;
3429 else if (STRNICMP(p, "block", 5) == 0)
3431 if (round == 2)
3432 shape_table[idx].shape = SHAPE_BLOCK;
3433 p += 5;
3435 else /* must be a highlight group name then */
3437 endp = vim_strchr(p, '-');
3438 if (commap == NULL) /* last part */
3440 if (endp == NULL)
3441 endp = p + STRLEN(p); /* find end of part */
3443 else if (endp > commap || endp == NULL)
3444 endp = commap;
3445 slashp = vim_strchr(p, '/');
3446 if (slashp != NULL && slashp < endp)
3448 /* "group/langmap_group" */
3449 i = syn_check_group(p, (int)(slashp - p));
3450 p = slashp + 1;
3452 if (round == 2)
3454 shape_table[idx].id = syn_check_group(p,
3455 (int)(endp - p));
3456 shape_table[idx].id_lm = shape_table[idx].id;
3457 if (slashp != NULL && slashp < endp)
3458 shape_table[idx].id = i;
3460 p = endp;
3462 } /* if (what != SHAPE_MOUSE) */
3464 if (*p == '-')
3465 ++p;
3468 modep = p;
3469 if (*modep == ',')
3470 ++modep;
3474 /* If the 's' flag is not given, use the 'v' cursor for 's' */
3475 if (!found_ve)
3477 #ifdef FEAT_MOUSESHAPE
3478 if (what == SHAPE_MOUSE)
3480 shape_table[SHAPE_IDX_VE].mshape = shape_table[SHAPE_IDX_V].mshape;
3482 else
3483 #endif
3485 shape_table[SHAPE_IDX_VE].shape = shape_table[SHAPE_IDX_V].shape;
3486 shape_table[SHAPE_IDX_VE].percentage =
3487 shape_table[SHAPE_IDX_V].percentage;
3488 shape_table[SHAPE_IDX_VE].blinkwait =
3489 shape_table[SHAPE_IDX_V].blinkwait;
3490 shape_table[SHAPE_IDX_VE].blinkon =
3491 shape_table[SHAPE_IDX_V].blinkon;
3492 shape_table[SHAPE_IDX_VE].blinkoff =
3493 shape_table[SHAPE_IDX_V].blinkoff;
3494 shape_table[SHAPE_IDX_VE].id = shape_table[SHAPE_IDX_V].id;
3495 shape_table[SHAPE_IDX_VE].id_lm = shape_table[SHAPE_IDX_V].id_lm;
3499 return NULL;
3502 # if defined(MCH_CURSOR_SHAPE) || defined(FEAT_GUI) \
3503 || defined(FEAT_MOUSESHAPE) || defined(PROTO)
3505 * Return the index into shape_table[] for the current mode.
3506 * When "mouse" is TRUE, consider indexes valid for the mouse pointer.
3509 get_shape_idx(mouse)
3510 int mouse;
3512 #ifdef FEAT_MOUSESHAPE
3513 if (mouse && (State == HITRETURN || State == ASKMORE))
3515 # ifdef FEAT_GUI
3516 int x, y;
3517 gui_mch_getmouse(&x, &y);
3518 if (Y_2_ROW(y) == Rows - 1)
3519 return SHAPE_IDX_MOREL;
3520 # endif
3521 return SHAPE_IDX_MORE;
3523 if (mouse && drag_status_line)
3524 return SHAPE_IDX_SDRAG;
3525 # ifdef FEAT_VERTSPLIT
3526 if (mouse && drag_sep_line)
3527 return SHAPE_IDX_VDRAG;
3528 # endif
3529 #endif
3530 if (!mouse && State == SHOWMATCH)
3531 return SHAPE_IDX_SM;
3532 #ifdef FEAT_VREPLACE
3533 if (State & VREPLACE_FLAG)
3534 return SHAPE_IDX_R;
3535 #endif
3536 if (State & REPLACE_FLAG)
3537 return SHAPE_IDX_R;
3538 if (State & INSERT)
3539 return SHAPE_IDX_I;
3540 if (State & CMDLINE)
3542 if (cmdline_at_end())
3543 return SHAPE_IDX_C;
3544 if (cmdline_overstrike())
3545 return SHAPE_IDX_CR;
3546 return SHAPE_IDX_CI;
3548 if (finish_op)
3549 return SHAPE_IDX_O;
3550 #ifdef FEAT_VISUAL
3551 if (VIsual_active)
3553 if (*p_sel == 'e')
3554 return SHAPE_IDX_VE;
3555 else
3556 return SHAPE_IDX_V;
3558 #endif
3559 return SHAPE_IDX_N;
3561 #endif
3563 # if defined(FEAT_MOUSESHAPE) || defined(PROTO)
3564 static int old_mouse_shape = 0;
3567 * Set the mouse shape:
3568 * If "shape" is -1, use shape depending on the current mode,
3569 * depending on the current state.
3570 * If "shape" is -2, only update the shape when it's CLINE or STATUS (used
3571 * when the mouse moves off the status or command line).
3573 void
3574 update_mouseshape(shape_idx)
3575 int shape_idx;
3577 int new_mouse_shape;
3579 /* Only works in GUI mode. */
3580 if (!gui.in_use || gui.starting)
3581 return;
3583 /* Postpone the updating when more is to come. Speeds up executing of
3584 * mappings. */
3585 if (shape_idx == -1 && char_avail())
3587 postponed_mouseshape = TRUE;
3588 return;
3591 /* When ignoring the mouse don't change shape on the statusline. */
3592 if (*p_mouse == NUL
3593 && (shape_idx == SHAPE_IDX_CLINE
3594 || shape_idx == SHAPE_IDX_STATUS
3595 || shape_idx == SHAPE_IDX_VSEP))
3596 shape_idx = -2;
3598 if (shape_idx == -2
3599 && old_mouse_shape != shape_table[SHAPE_IDX_CLINE].mshape
3600 && old_mouse_shape != shape_table[SHAPE_IDX_STATUS].mshape
3601 && old_mouse_shape != shape_table[SHAPE_IDX_VSEP].mshape)
3602 return;
3603 if (shape_idx < 0)
3604 new_mouse_shape = shape_table[get_shape_idx(TRUE)].mshape;
3605 else
3606 new_mouse_shape = shape_table[shape_idx].mshape;
3607 if (new_mouse_shape != old_mouse_shape)
3609 mch_set_mouse_shape(new_mouse_shape);
3610 old_mouse_shape = new_mouse_shape;
3612 postponed_mouseshape = FALSE;
3614 # endif
3616 #endif /* CURSOR_SHAPE */
3619 #ifdef FEAT_CRYPT
3621 * Optional encryption support.
3622 * Mohsin Ahmed, mosh@sasi.com, 98-09-24
3623 * Based on zip/crypt sources.
3625 * NOTE FOR USA: Since 2000 exporting this code from the USA is allowed to
3626 * most countries. There are a few exceptions, but that still should not be a
3627 * problem since this code was originally created in Europe and India.
3630 /* from zip.h */
3632 typedef unsigned short ush; /* unsigned 16-bit value */
3633 typedef unsigned long ulg; /* unsigned 32-bit value */
3635 static void make_crc_tab __ARGS((void));
3637 static ulg crc_32_tab[256];
3640 * Fill the CRC table.
3642 static void
3643 make_crc_tab()
3645 ulg s,t,v;
3646 static int done = FALSE;
3648 if (done)
3649 return;
3650 for (t = 0; t < 256; t++)
3652 v = t;
3653 for (s = 0; s < 8; s++)
3654 v = (v >> 1) ^ ((v & 1) * (ulg)0xedb88320L);
3655 crc_32_tab[t] = v;
3657 done = TRUE;
3660 #define CRC32(c, b) (crc_32_tab[((int)(c) ^ (b)) & 0xff] ^ ((c) >> 8))
3663 static ulg keys[3]; /* keys defining the pseudo-random sequence */
3666 * Return the next byte in the pseudo-random sequence
3669 decrypt_byte()
3671 ush temp;
3673 temp = (ush)keys[2] | 2;
3674 return (int)(((unsigned)(temp * (temp ^ 1)) >> 8) & 0xff);
3678 * Update the encryption keys with the next byte of plain text
3681 update_keys(c)
3682 int c; /* byte of plain text */
3684 keys[0] = CRC32(keys[0], c);
3685 keys[1] += keys[0] & 0xff;
3686 keys[1] = keys[1] * 134775813L + 1;
3687 keys[2] = CRC32(keys[2], (int)(keys[1] >> 24));
3688 return c;
3692 * Initialize the encryption keys and the random header according to
3693 * the given password.
3694 * If "passwd" is NULL or empty, don't do anything.
3696 void
3697 crypt_init_keys(passwd)
3698 char_u *passwd; /* password string with which to modify keys */
3700 if (passwd != NULL && *passwd != NUL)
3702 make_crc_tab();
3703 keys[0] = 305419896L;
3704 keys[1] = 591751049L;
3705 keys[2] = 878082192L;
3706 while (*passwd != '\0')
3707 update_keys((int)*passwd++);
3712 * Ask the user for a crypt key.
3713 * When "store" is TRUE, the new key in stored in the 'key' option, and the
3714 * 'key' option value is returned: Don't free it.
3715 * When "store" is FALSE, the typed key is returned in allocated memory.
3716 * Returns NULL on failure.
3718 char_u *
3719 get_crypt_key(store, twice)
3720 int store;
3721 int twice; /* Ask for the key twice. */
3723 char_u *p1, *p2 = NULL;
3724 int round;
3726 for (round = 0; ; ++round)
3728 cmdline_star = TRUE;
3729 cmdline_row = msg_row;
3730 p1 = getcmdline_prompt(NUL, round == 0
3731 ? (char_u *)_("Enter encryption key: ")
3732 : (char_u *)_("Enter same key again: "), 0, EXPAND_NOTHING,
3733 NULL);
3734 cmdline_star = FALSE;
3736 if (p1 == NULL)
3737 break;
3739 if (round == twice)
3741 if (p2 != NULL && STRCMP(p1, p2) != 0)
3743 MSG(_("Keys don't match!"));
3744 vim_free(p1);
3745 vim_free(p2);
3746 p2 = NULL;
3747 round = -1; /* do it again */
3748 continue;
3750 if (store)
3752 set_option_value((char_u *)"key", 0L, p1, OPT_LOCAL);
3753 vim_free(p1);
3754 p1 = curbuf->b_p_key;
3756 break;
3758 p2 = p1;
3761 /* since the user typed this, no need to wait for return */
3762 need_wait_return = FALSE;
3763 msg_didout = FALSE;
3765 vim_free(p2);
3766 return p1;
3769 #endif /* FEAT_CRYPT */
3771 /* TODO: make some #ifdef for this */
3772 /*--------[ file searching ]-------------------------------------------------*/
3774 * File searching functions for 'path', 'tags' and 'cdpath' options.
3775 * External visible functions:
3776 * vim_findfile_init() creates/initialises the search context
3777 * vim_findfile_free_visited() free list of visited files/dirs of search
3778 * context
3779 * vim_findfile() find a file in the search context
3780 * vim_findfile_cleanup() cleanup/free search context created by
3781 * vim_findfile_init()
3783 * All static functions and variables start with 'ff_'
3785 * In general it works like this:
3786 * First you create yourself a search context by calling vim_findfile_init().
3787 * It is possible to give a search context from a previous call to
3788 * vim_findfile_init(), so it can be reused. After this you call vim_findfile()
3789 * until you are satisfied with the result or it returns NULL. On every call it
3790 * returns the next file which matches the conditions given to
3791 * vim_findfile_init(). If it doesn't find a next file it returns NULL.
3793 * It is possible to call vim_findfile_init() again to reinitialise your search
3794 * with some new parameters. Don't forget to pass your old search context to
3795 * it, so it can reuse it and especially reuse the list of already visited
3796 * directories. If you want to delete the list of already visited directories
3797 * simply call vim_findfile_free_visited().
3799 * When you are done call vim_findfile_cleanup() to free the search context.
3801 * The function vim_findfile_init() has a long comment, which describes the
3802 * needed parameters.
3806 * ATTENTION:
3807 * ==========
3808 * Also we use an allocated search context here, this functions are NOT
3809 * thread-safe!!!!!
3811 * To minimize parameter passing (or because I'm to lazy), only the
3812 * external visible functions get a search context as a parameter. This is
3813 * then assigned to a static global, which is used throughout the local
3814 * functions.
3818 * type for the directory search stack
3820 typedef struct ff_stack
3822 struct ff_stack *ffs_prev;
3824 /* the fix part (no wildcards) and the part containing the wildcards
3825 * of the search path
3827 char_u *ffs_fix_path;
3828 #ifdef FEAT_PATH_EXTRA
3829 char_u *ffs_wc_path;
3830 #endif
3832 /* files/dirs found in the above directory, matched by the first wildcard
3833 * of wc_part
3835 char_u **ffs_filearray;
3836 int ffs_filearray_size;
3837 char_u ffs_filearray_cur; /* needed for partly handled dirs */
3839 /* to store status of partly handled directories
3840 * 0: we work on this directory for the first time
3841 * 1: this directory was partly searched in an earlier step
3843 int ffs_stage;
3845 /* How deep are we in the directory tree?
3846 * Counts backward from value of level parameter to vim_findfile_init
3848 int ffs_level;
3850 /* Did we already expand '**' to an empty string? */
3851 int ffs_star_star_empty;
3852 } ff_stack_T;
3855 * type for already visited directories or files.
3857 typedef struct ff_visited
3859 struct ff_visited *ffv_next;
3861 #ifdef FEAT_PATH_EXTRA
3862 /* Visited directories are different if the wildcard string are
3863 * different. So we have to save it.
3865 char_u *ffv_wc_path;
3866 #endif
3867 /* for unix use inode etc for comparison (needed because of links), else
3868 * use filename.
3870 #ifdef UNIX
3871 int ffv_dev; /* device number (-1 if not set) */
3872 ino_t ffv_ino; /* inode number */
3873 #endif
3874 /* The memory for this struct is allocated according to the length of
3875 * ffv_fname.
3877 char_u ffv_fname[1]; /* actually longer */
3878 } ff_visited_T;
3881 * We might have to manage several visited lists during a search.
3882 * This is especially needed for the tags option. If tags is set to:
3883 * "./++/tags,./++/TAGS,++/tags" (replace + with *)
3884 * So we have to do 3 searches:
3885 * 1) search from the current files directory downward for the file "tags"
3886 * 2) search from the current files directory downward for the file "TAGS"
3887 * 3) search from Vims current directory downwards for the file "tags"
3888 * As you can see, the first and the third search are for the same file, so for
3889 * the third search we can use the visited list of the first search. For the
3890 * second search we must start from a empty visited list.
3891 * The struct ff_visited_list_hdr is used to manage a linked list of already
3892 * visited lists.
3894 typedef struct ff_visited_list_hdr
3896 struct ff_visited_list_hdr *ffvl_next;
3898 /* the filename the attached visited list is for */
3899 char_u *ffvl_filename;
3901 ff_visited_T *ffvl_visited_list;
3903 } ff_visited_list_hdr_T;
3907 * '**' can be expanded to several directory levels.
3908 * Set the default maximum depth.
3910 #define FF_MAX_STAR_STAR_EXPAND ((char_u)30)
3913 * The search context:
3914 * ffsc_stack_ptr: the stack for the dirs to search
3915 * ffsc_visited_list: the currently active visited list
3916 * ffsc_dir_visited_list: the currently active visited list for search dirs
3917 * ffsc_visited_lists_list: the list of all visited lists
3918 * ffsc_dir_visited_lists_list: the list of all visited lists for search dirs
3919 * ffsc_file_to_search: the file to search for
3920 * ffsc_start_dir: the starting directory, if search path was relative
3921 * ffsc_fix_path: the fix part of the given path (without wildcards)
3922 * Needed for upward search.
3923 * ffsc_wc_path: the part of the given path containing wildcards
3924 * ffsc_level: how many levels of dirs to search downwards
3925 * ffsc_stopdirs_v: array of stop directories for upward search
3926 * ffsc_find_what: FINDFILE_BOTH, FINDFILE_DIR or FINDFILE_FILE
3928 typedef struct ff_search_ctx_T
3930 ff_stack_T *ffsc_stack_ptr;
3931 ff_visited_list_hdr_T *ffsc_visited_list;
3932 ff_visited_list_hdr_T *ffsc_dir_visited_list;
3933 ff_visited_list_hdr_T *ffsc_visited_lists_list;
3934 ff_visited_list_hdr_T *ffsc_dir_visited_lists_list;
3935 char_u *ffsc_file_to_search;
3936 char_u *ffsc_start_dir;
3937 char_u *ffsc_fix_path;
3938 #ifdef FEAT_PATH_EXTRA
3939 char_u *ffsc_wc_path;
3940 int ffsc_level;
3941 char_u **ffsc_stopdirs_v;
3942 #endif
3943 int ffsc_find_what;
3944 } ff_search_ctx_T;
3946 /* locally needed functions */
3947 #ifdef FEAT_PATH_EXTRA
3948 static int ff_check_visited __ARGS((ff_visited_T **, char_u *, char_u *));
3949 #else
3950 static int ff_check_visited __ARGS((ff_visited_T **, char_u *));
3951 #endif
3952 static void vim_findfile_free_visited_list __ARGS((ff_visited_list_hdr_T **list_headp));
3953 static void ff_free_visited_list __ARGS((ff_visited_T *vl));
3954 static ff_visited_list_hdr_T* ff_get_visited_list __ARGS((char_u *, ff_visited_list_hdr_T **list_headp));
3955 #ifdef FEAT_PATH_EXTRA
3956 static int ff_wc_equal __ARGS((char_u *s1, char_u *s2));
3957 #endif
3959 static void ff_push __ARGS((ff_search_ctx_T *search_ctx, ff_stack_T *stack_ptr));
3960 static ff_stack_T *ff_pop __ARGS((ff_search_ctx_T *search_ctx));
3961 static void ff_clear __ARGS((ff_search_ctx_T *search_ctx));
3962 static void ff_free_stack_element __ARGS((ff_stack_T *stack_ptr));
3963 #ifdef FEAT_PATH_EXTRA
3964 static ff_stack_T *ff_create_stack_element __ARGS((char_u *, char_u *, int, int));
3965 #else
3966 static ff_stack_T *ff_create_stack_element __ARGS((char_u *, int, int));
3967 #endif
3968 #ifdef FEAT_PATH_EXTRA
3969 static int ff_path_in_stoplist __ARGS((char_u *, int, char_u **));
3970 #endif
3972 #if 0
3974 * if someone likes findfirst/findnext, here are the functions
3975 * NOT TESTED!!
3978 static void *ff_fn_search_context = NULL;
3980 char_u *
3981 vim_findfirst(path, filename, level)
3982 char_u *path;
3983 char_u *filename;
3984 int level;
3986 ff_fn_search_context =
3987 vim_findfile_init(path, filename, NULL, level, TRUE, FALSE,
3988 ff_fn_search_context, rel_fname);
3989 if (NULL == ff_fn_search_context)
3990 return NULL;
3991 else
3992 return vim_findnext()
3995 char_u *
3996 vim_findnext()
3998 char_u *ret = vim_findfile(ff_fn_search_context);
4000 if (NULL == ret)
4002 vim_findfile_cleanup(ff_fn_search_context);
4003 ff_fn_search_context = NULL;
4005 return ret;
4007 #endif
4010 * Initialization routine for vim_findfile.
4012 * Returns the newly allocated search context or NULL if an error occured.
4014 * Don't forget to clean up by calling vim_findfile_cleanup() if you are done
4015 * with the search context.
4017 * Find the file 'filename' in the directory 'path'.
4018 * The parameter 'path' may contain wildcards. If so only search 'level'
4019 * directories deep. The parameter 'level' is the absolute maximum and is
4020 * not related to restricts given to the '**' wildcard. If 'level' is 100
4021 * and you use '**200' vim_findfile() will stop after 100 levels.
4023 * 'filename' cannot contain wildcards! It is used as-is, no backslashes to
4024 * escape special characters.
4026 * If 'stopdirs' is not NULL and nothing is found downward, the search is
4027 * restarted on the next higher directory level. This is repeated until the
4028 * start-directory of a search is contained in 'stopdirs'. 'stopdirs' has the
4029 * format ";*<dirname>*\(;<dirname>\)*;\=$".
4031 * If the 'path' is relative, the starting dir for the search is either VIM's
4032 * current dir or if the path starts with "./" the current files dir.
4033 * If the 'path' is absolut, the starting dir is that part of the path before
4034 * the first wildcard.
4036 * Upward search is only done on the starting dir.
4038 * If 'free_visited' is TRUE the list of already visited files/directories is
4039 * cleared. Set this to FALSE if you just want to search from another
4040 * directory, but want to be sure that no directory from a previous search is
4041 * searched again. This is useful if you search for a file at different places.
4042 * The list of visited files/dirs can also be cleared with the function
4043 * vim_findfile_free_visited().
4045 * Set the parameter 'find_what' to FINDFILE_DIR if you want to search for
4046 * directories only, FINDFILE_FILE for files only, FINDFILE_BOTH for both.
4048 * A search context returned by a previous call to vim_findfile_init() can be
4049 * passed in the parameter "search_ctx_arg". This context is reused and
4050 * reinitialized with the new parameters. The list of already visited
4051 * directories from this context is only deleted if the parameter
4052 * "free_visited" is true. Be aware that the passed "search_ctx_arg" is freed
4053 * if the reinitialization fails.
4055 * If you don't have a search context from a previous call "search_ctx_arg"
4056 * must be NULL.
4058 * This function silently ignores a few errors, vim_findfile() will have
4059 * limited functionality then.
4061 /*ARGSUSED*/
4062 void *
4063 vim_findfile_init(path, filename, stopdirs, level, free_visited, find_what,
4064 search_ctx_arg, tagfile, rel_fname)
4065 char_u *path;
4066 char_u *filename;
4067 char_u *stopdirs;
4068 int level;
4069 int free_visited;
4070 int find_what;
4071 void *search_ctx_arg;
4072 int tagfile;
4073 char_u *rel_fname; /* file name to use for "." */
4075 #ifdef FEAT_PATH_EXTRA
4076 char_u *wc_part;
4077 #endif
4078 ff_stack_T *sptr;
4079 ff_search_ctx_T *search_ctx;
4081 /* If a search context is given by the caller, reuse it, else allocate a
4082 * new one.
4084 if (search_ctx_arg != NULL)
4085 search_ctx = search_ctx_arg;
4086 else
4088 search_ctx = (ff_search_ctx_T*)alloc((unsigned)sizeof(ff_search_ctx_T));
4089 if (search_ctx == NULL)
4090 goto error_return;
4091 memset(search_ctx, 0, sizeof(ff_search_ctx_T));
4093 search_ctx->ffsc_find_what = find_what;
4095 /* clear the search context, but NOT the visited lists */
4096 ff_clear(search_ctx);
4098 /* clear visited list if wanted */
4099 if (free_visited == TRUE)
4100 vim_findfile_free_visited(search_ctx);
4101 else
4103 /* Reuse old visited lists. Get the visited list for the given
4104 * filename. If no list for the current filename exists, creates a new
4105 * one. */
4106 search_ctx->ffsc_visited_list = ff_get_visited_list(filename,
4107 &search_ctx->ffsc_visited_lists_list);
4108 if (search_ctx->ffsc_visited_list == NULL)
4109 goto error_return;
4110 search_ctx->ffsc_dir_visited_list = ff_get_visited_list(filename,
4111 &search_ctx->ffsc_dir_visited_lists_list);
4112 if (search_ctx->ffsc_dir_visited_list == NULL)
4113 goto error_return;
4116 if (ff_expand_buffer == NULL)
4118 ff_expand_buffer = (char_u*)alloc(MAXPATHL);
4119 if (ff_expand_buffer == NULL)
4120 goto error_return;
4123 /* Store information on starting dir now if path is relative.
4124 * If path is absolute, we do that later. */
4125 if (path[0] == '.'
4126 && (vim_ispathsep(path[1]) || path[1] == NUL)
4127 && (!tagfile || vim_strchr(p_cpo, CPO_DOTTAG) == NULL)
4128 && rel_fname != NULL)
4130 int len = (int)(gettail(rel_fname) - rel_fname);
4132 if (!vim_isAbsName(rel_fname) && len + 1 < MAXPATHL)
4134 /* Make the start dir an absolute path name. */
4135 vim_strncpy(ff_expand_buffer, rel_fname, len);
4136 search_ctx->ffsc_start_dir = FullName_save(ff_expand_buffer, FALSE);
4138 else
4139 search_ctx->ffsc_start_dir = vim_strnsave(rel_fname, len);
4140 if (search_ctx->ffsc_start_dir == NULL)
4141 goto error_return;
4142 if (*++path != NUL)
4143 ++path;
4145 else if (*path == NUL || !vim_isAbsName(path))
4147 #ifdef BACKSLASH_IN_FILENAME
4148 /* "c:dir" needs "c:" to be expanded, otherwise use current dir */
4149 if (*path != NUL && path[1] == ':')
4151 char_u drive[3];
4153 drive[0] = path[0];
4154 drive[1] = ':';
4155 drive[2] = NUL;
4156 if (vim_FullName(drive, ff_expand_buffer, MAXPATHL, TRUE) == FAIL)
4157 goto error_return;
4158 path += 2;
4160 else
4161 #endif
4162 if (mch_dirname(ff_expand_buffer, MAXPATHL) == FAIL)
4163 goto error_return;
4165 search_ctx->ffsc_start_dir = vim_strsave(ff_expand_buffer);
4166 if (search_ctx->ffsc_start_dir == NULL)
4167 goto error_return;
4169 #ifdef BACKSLASH_IN_FILENAME
4170 /* A path that starts with "/dir" is relative to the drive, not to the
4171 * directory (but not for "//machine/dir"). Only use the drive name. */
4172 if ((*path == '/' || *path == '\\')
4173 && path[1] != path[0]
4174 && search_ctx->ffsc_start_dir[1] == ':')
4175 search_ctx->ffsc_start_dir[2] = NUL;
4176 #endif
4179 #ifdef FEAT_PATH_EXTRA
4181 * If stopdirs are given, split them into an array of pointers.
4182 * If this fails (mem allocation), there is no upward search at all or a
4183 * stop directory is not recognized -> continue silently.
4184 * If stopdirs just contains a ";" or is empty,
4185 * search_ctx->ffsc_stopdirs_v will only contain a NULL pointer. This
4186 * is handled as unlimited upward search. See function
4187 * ff_path_in_stoplist() for details.
4189 if (stopdirs != NULL)
4191 char_u *walker = stopdirs;
4192 int dircount;
4194 while (*walker == ';')
4195 walker++;
4197 dircount = 1;
4198 search_ctx->ffsc_stopdirs_v =
4199 (char_u **)alloc((unsigned)sizeof(char_u *));
4201 if (search_ctx->ffsc_stopdirs_v != NULL)
4205 char_u *helper;
4206 void *ptr;
4208 helper = walker;
4209 ptr = vim_realloc(search_ctx->ffsc_stopdirs_v,
4210 (dircount + 1) * sizeof(char_u *));
4211 if (ptr)
4212 search_ctx->ffsc_stopdirs_v = ptr;
4213 else
4214 /* ignore, keep what we have and continue */
4215 break;
4216 walker = vim_strchr(walker, ';');
4217 if (walker)
4219 search_ctx->ffsc_stopdirs_v[dircount-1] =
4220 vim_strnsave(helper, (int)(walker - helper));
4221 walker++;
4223 else
4224 /* this might be "", which means ascent till top
4225 * of directory tree.
4227 search_ctx->ffsc_stopdirs_v[dircount-1] =
4228 vim_strsave(helper);
4230 dircount++;
4232 } while (walker != NULL);
4233 search_ctx->ffsc_stopdirs_v[dircount-1] = NULL;
4236 #endif
4238 #ifdef FEAT_PATH_EXTRA
4239 search_ctx->ffsc_level = level;
4241 /* split into:
4242 * -fix path
4243 * -wildcard_stuff (might be NULL)
4245 wc_part = vim_strchr(path, '*');
4246 if (wc_part != NULL)
4248 int llevel;
4249 int len;
4250 char *errpt;
4252 /* save the fix part of the path */
4253 search_ctx->ffsc_fix_path = vim_strnsave(path, (int)(wc_part - path));
4256 * copy wc_path and add restricts to the '**' wildcard.
4257 * The octet after a '**' is used as a (binary) counter.
4258 * So '**3' is transposed to '**^C' ('^C' is ASCII value 3)
4259 * or '**76' is transposed to '**N'( 'N' is ASCII value 76).
4260 * For EBCDIC you get different character values.
4261 * If no restrict is given after '**' the default is used.
4262 * Due to this technic the path looks awful if you print it as a
4263 * string.
4265 len = 0;
4266 while (*wc_part != NUL)
4268 if (STRNCMP(wc_part, "**", 2) == 0)
4270 ff_expand_buffer[len++] = *wc_part++;
4271 ff_expand_buffer[len++] = *wc_part++;
4273 llevel = strtol((char *)wc_part, &errpt, 10);
4274 if ((char_u *)errpt != wc_part && llevel > 0 && llevel < 255)
4275 ff_expand_buffer[len++] = llevel;
4276 else if ((char_u *)errpt != wc_part && llevel == 0)
4277 /* restrict is 0 -> remove already added '**' */
4278 len -= 2;
4279 else
4280 ff_expand_buffer[len++] = FF_MAX_STAR_STAR_EXPAND;
4281 wc_part = (char_u *)errpt;
4282 if (*wc_part != NUL && !vim_ispathsep(*wc_part))
4284 EMSG2(_("E343: Invalid path: '**[number]' must be at the end of the path or be followed by '%s'."), PATHSEPSTR);
4285 goto error_return;
4288 else
4289 ff_expand_buffer[len++] = *wc_part++;
4291 ff_expand_buffer[len] = NUL;
4292 search_ctx->ffsc_wc_path = vim_strsave(ff_expand_buffer);
4294 if (search_ctx->ffsc_wc_path == NULL)
4295 goto error_return;
4297 else
4298 #endif
4299 search_ctx->ffsc_fix_path = vim_strsave(path);
4301 if (search_ctx->ffsc_start_dir == NULL)
4303 /* store the fix part as startdir.
4304 * This is needed if the parameter path is fully qualified.
4306 search_ctx->ffsc_start_dir = vim_strsave(search_ctx->ffsc_fix_path);
4307 if (search_ctx->ffsc_start_dir)
4308 search_ctx->ffsc_fix_path[0] = NUL;
4311 /* create an absolute path */
4312 STRCPY(ff_expand_buffer, search_ctx->ffsc_start_dir);
4313 add_pathsep(ff_expand_buffer);
4314 STRCAT(ff_expand_buffer, search_ctx->ffsc_fix_path);
4315 add_pathsep(ff_expand_buffer);
4317 sptr = ff_create_stack_element(ff_expand_buffer,
4318 #ifdef FEAT_PATH_EXTRA
4319 search_ctx->ffsc_wc_path,
4320 #endif
4321 level, 0);
4323 if (sptr == NULL)
4324 goto error_return;
4326 ff_push(search_ctx, sptr);
4328 search_ctx->ffsc_file_to_search = vim_strsave(filename);
4329 if (search_ctx->ffsc_file_to_search == NULL)
4330 goto error_return;
4332 return search_ctx;
4334 error_return:
4336 * We clear the search context now!
4337 * Even when the caller gave us a (perhaps valid) context we free it here,
4338 * as we might have already destroyed it.
4340 vim_findfile_cleanup(search_ctx);
4341 return NULL;
4344 #if defined(FEAT_PATH_EXTRA) || defined(PROTO)
4346 * Get the stopdir string. Check that ';' is not escaped.
4348 char_u *
4349 vim_findfile_stopdir(buf)
4350 char_u *buf;
4352 char_u *r_ptr = buf;
4354 while (*r_ptr != NUL && *r_ptr != ';')
4356 if (r_ptr[0] == '\\' && r_ptr[1] == ';')
4358 /* overwrite the escape char,
4359 * use STRLEN(r_ptr) to move the trailing '\0'
4361 STRMOVE(r_ptr, r_ptr + 1);
4362 r_ptr++;
4364 r_ptr++;
4366 if (*r_ptr == ';')
4368 *r_ptr = 0;
4369 r_ptr++;
4371 else if (*r_ptr == NUL)
4372 r_ptr = NULL;
4373 return r_ptr;
4375 #endif
4378 * Clean up the given search context. Can handle a NULL pointer.
4380 void
4381 vim_findfile_cleanup(ctx)
4382 void *ctx;
4384 if (ctx == NULL)
4385 return;
4387 vim_findfile_free_visited(ctx);
4388 ff_clear(ctx);
4389 vim_free(ctx);
4393 * Find a file in a search context.
4394 * The search context was created with vim_findfile_init() above.
4395 * Return a pointer to an allocated file name or NULL if nothing found.
4396 * To get all matching files call this function until you get NULL.
4398 * If the passed search_context is NULL, NULL is returned.
4400 * The search algorithm is depth first. To change this replace the
4401 * stack with a list (don't forget to leave partly searched directories on the
4402 * top of the list).
4404 char_u *
4405 vim_findfile(search_ctx_arg)
4406 void *search_ctx_arg;
4408 char_u *file_path;
4409 #ifdef FEAT_PATH_EXTRA
4410 char_u *rest_of_wildcards;
4411 char_u *path_end = NULL;
4412 #endif
4413 ff_stack_T *stackp;
4414 #if defined(FEAT_SEARCHPATH) || defined(FEAT_PATH_EXTRA)
4415 int len;
4416 #endif
4417 int i;
4418 char_u *p;
4419 #ifdef FEAT_SEARCHPATH
4420 char_u *suf;
4421 #endif
4422 ff_search_ctx_T *search_ctx;
4424 if (search_ctx_arg == NULL)
4425 return NULL;
4427 search_ctx = (ff_search_ctx_T *)search_ctx_arg;
4430 * filepath is used as buffer for various actions and as the storage to
4431 * return a found filename.
4433 if ((file_path = alloc((int)MAXPATHL)) == NULL)
4434 return NULL;
4436 #ifdef FEAT_PATH_EXTRA
4437 /* store the end of the start dir -- needed for upward search */
4438 if (search_ctx->ffsc_start_dir != NULL)
4439 path_end = &search_ctx->ffsc_start_dir[
4440 STRLEN(search_ctx->ffsc_start_dir)];
4441 #endif
4443 #ifdef FEAT_PATH_EXTRA
4444 /* upward search loop */
4445 for (;;)
4447 #endif
4448 /* downward search loop */
4449 for (;;)
4451 /* check if user user wants to stop the search*/
4452 ui_breakcheck();
4453 if (got_int)
4454 break;
4456 /* get directory to work on from stack */
4457 stackp = ff_pop(search_ctx);
4458 if (stackp == NULL)
4459 break;
4462 * TODO: decide if we leave this test in
4464 * GOOD: don't search a directory(-tree) twice.
4465 * BAD: - check linked list for every new directory entered.
4466 * - check for double files also done below
4468 * Here we check if we already searched this directory.
4469 * We already searched a directory if:
4470 * 1) The directory is the same.
4471 * 2) We would use the same wildcard string.
4473 * Good if you have links on same directory via several ways
4474 * or you have selfreferences in directories (e.g. SuSE Linux 6.3:
4475 * /etc/rc.d/init.d is linked to /etc/rc.d -> endless loop)
4477 * This check is only needed for directories we work on for the
4478 * first time (hence stackp->ff_filearray == NULL)
4480 if (stackp->ffs_filearray == NULL
4481 && ff_check_visited(&search_ctx->ffsc_dir_visited_list
4482 ->ffvl_visited_list,
4483 stackp->ffs_fix_path
4484 #ifdef FEAT_PATH_EXTRA
4485 , stackp->ffs_wc_path
4486 #endif
4487 ) == FAIL)
4489 #ifdef FF_VERBOSE
4490 if (p_verbose >= 5)
4492 verbose_enter_scroll();
4493 smsg((char_u *)"Already Searched: %s (%s)",
4494 stackp->ffs_fix_path, stackp->ffs_wc_path);
4495 /* don't overwrite this either */
4496 msg_puts((char_u *)"\n");
4497 verbose_leave_scroll();
4499 #endif
4500 ff_free_stack_element(stackp);
4501 continue;
4503 #ifdef FF_VERBOSE
4504 else if (p_verbose >= 5)
4506 verbose_enter_scroll();
4507 smsg((char_u *)"Searching: %s (%s)",
4508 stackp->ffs_fix_path, stackp->ffs_wc_path);
4509 /* don't overwrite this either */
4510 msg_puts((char_u *)"\n");
4511 verbose_leave_scroll();
4513 #endif
4515 /* check depth */
4516 if (stackp->ffs_level <= 0)
4518 ff_free_stack_element(stackp);
4519 continue;
4522 file_path[0] = NUL;
4525 * If no filearray till now expand wildcards
4526 * The function expand_wildcards() can handle an array of paths
4527 * and all possible expands are returned in one array. We use this
4528 * to handle the expansion of '**' into an empty string.
4530 if (stackp->ffs_filearray == NULL)
4532 char_u *dirptrs[2];
4534 /* we use filepath to build the path expand_wildcards() should
4535 * expand.
4537 dirptrs[0] = file_path;
4538 dirptrs[1] = NULL;
4540 /* if we have a start dir copy it in */
4541 if (!vim_isAbsName(stackp->ffs_fix_path)
4542 && search_ctx->ffsc_start_dir)
4544 STRCPY(file_path, search_ctx->ffsc_start_dir);
4545 add_pathsep(file_path);
4548 /* append the fix part of the search path */
4549 STRCAT(file_path, stackp->ffs_fix_path);
4550 add_pathsep(file_path);
4552 #ifdef FEAT_PATH_EXTRA
4553 rest_of_wildcards = stackp->ffs_wc_path;
4554 if (*rest_of_wildcards != NUL)
4556 len = (int)STRLEN(file_path);
4557 if (STRNCMP(rest_of_wildcards, "**", 2) == 0)
4559 /* pointer to the restrict byte
4560 * The restrict byte is not a character!
4562 p = rest_of_wildcards + 2;
4564 if (*p > 0)
4566 (*p)--;
4567 file_path[len++] = '*';
4570 if (*p == 0)
4572 /* remove '**<numb> from wildcards */
4573 STRMOVE(rest_of_wildcards, rest_of_wildcards + 3);
4575 else
4576 rest_of_wildcards += 3;
4578 if (stackp->ffs_star_star_empty == 0)
4580 /* if not done before, expand '**' to empty */
4581 stackp->ffs_star_star_empty = 1;
4582 dirptrs[1] = stackp->ffs_fix_path;
4587 * Here we copy until the next path separator or the end of
4588 * the path. If we stop at a path separator, there is
4589 * still something else left. This is handled below by
4590 * pushing every directory returned from expand_wildcards()
4591 * on the stack again for further search.
4593 while (*rest_of_wildcards
4594 && !vim_ispathsep(*rest_of_wildcards))
4595 file_path[len++] = *rest_of_wildcards++;
4597 file_path[len] = NUL;
4598 if (vim_ispathsep(*rest_of_wildcards))
4599 rest_of_wildcards++;
4601 #endif
4604 * Expand wildcards like "*" and "$VAR".
4605 * If the path is a URL don't try this.
4607 if (path_with_url(dirptrs[0]))
4609 stackp->ffs_filearray = (char_u **)
4610 alloc((unsigned)sizeof(char *));
4611 if (stackp->ffs_filearray != NULL
4612 && (stackp->ffs_filearray[0]
4613 = vim_strsave(dirptrs[0])) != NULL)
4614 stackp->ffs_filearray_size = 1;
4615 else
4616 stackp->ffs_filearray_size = 0;
4618 else
4619 expand_wildcards((dirptrs[1] == NULL) ? 1 : 2, dirptrs,
4620 &stackp->ffs_filearray_size,
4621 &stackp->ffs_filearray,
4622 EW_DIR|EW_ADDSLASH|EW_SILENT);
4624 stackp->ffs_filearray_cur = 0;
4625 stackp->ffs_stage = 0;
4627 #ifdef FEAT_PATH_EXTRA
4628 else
4629 rest_of_wildcards = &stackp->ffs_wc_path[
4630 STRLEN(stackp->ffs_wc_path)];
4631 #endif
4633 if (stackp->ffs_stage == 0)
4635 /* this is the first time we work on this directory */
4636 #ifdef FEAT_PATH_EXTRA
4637 if (*rest_of_wildcards == NUL)
4638 #endif
4641 * we don't have further wildcards to expand, so we have to
4642 * check for the final file now
4644 for (i = stackp->ffs_filearray_cur;
4645 i < stackp->ffs_filearray_size; ++i)
4647 if (!path_with_url(stackp->ffs_filearray[i])
4648 && !mch_isdir(stackp->ffs_filearray[i]))
4649 continue; /* not a directory */
4651 /* prepare the filename to be checked for existance
4652 * below */
4653 STRCPY(file_path, stackp->ffs_filearray[i]);
4654 add_pathsep(file_path);
4655 STRCAT(file_path, search_ctx->ffsc_file_to_search);
4658 * Try without extra suffix and then with suffixes
4659 * from 'suffixesadd'.
4661 #ifdef FEAT_SEARCHPATH
4662 len = (int)STRLEN(file_path);
4663 suf = curbuf->b_p_sua;
4664 for (;;)
4665 #endif
4667 /* if file exists and we didn't already find it */
4668 if ((path_with_url(file_path)
4669 || (mch_getperm(file_path) >= 0
4670 && (search_ctx->ffsc_find_what
4671 == FINDFILE_BOTH
4672 || ((search_ctx->ffsc_find_what
4673 == FINDFILE_DIR)
4674 == mch_isdir(file_path)))))
4675 #ifndef FF_VERBOSE
4676 && (ff_check_visited(
4677 &search_ctx->ffsc_visited_list->ffvl_visited_list,
4678 file_path
4679 #ifdef FEAT_PATH_EXTRA
4680 , (char_u *)""
4681 #endif
4682 ) == OK)
4683 #endif
4686 #ifdef FF_VERBOSE
4687 if (ff_check_visited(
4688 &search_ctx->ffsc_visited_list->ffvl_visited_list,
4689 file_path
4690 #ifdef FEAT_PATH_EXTRA
4691 , (char_u *)""
4692 #endif
4693 ) == FAIL)
4695 if (p_verbose >= 5)
4697 verbose_enter_scroll();
4698 smsg((char_u *)"Already: %s",
4699 file_path);
4700 /* don't overwrite this either */
4701 msg_puts((char_u *)"\n");
4702 verbose_leave_scroll();
4704 continue;
4706 #endif
4708 /* push dir to examine rest of subdirs later */
4709 stackp->ffs_filearray_cur = i + 1;
4710 ff_push(search_ctx, stackp);
4712 if (!path_with_url(file_path))
4713 simplify_filename(file_path);
4714 if (mch_dirname(ff_expand_buffer, MAXPATHL)
4715 == OK)
4717 p = shorten_fname(file_path,
4718 ff_expand_buffer);
4719 if (p != NULL)
4720 STRMOVE(file_path, p);
4722 #ifdef FF_VERBOSE
4723 if (p_verbose >= 5)
4725 verbose_enter_scroll();
4726 smsg((char_u *)"HIT: %s", file_path);
4727 /* don't overwrite this either */
4728 msg_puts((char_u *)"\n");
4729 verbose_leave_scroll();
4731 #endif
4732 return file_path;
4735 #ifdef FEAT_SEARCHPATH
4736 /* Not found or found already, try next suffix. */
4737 if (*suf == NUL)
4738 break;
4739 copy_option_part(&suf, file_path + len,
4740 MAXPATHL - len, ",");
4741 #endif
4745 #ifdef FEAT_PATH_EXTRA
4746 else
4749 * still wildcards left, push the directories for further
4750 * search
4752 for (i = stackp->ffs_filearray_cur;
4753 i < stackp->ffs_filearray_size; ++i)
4755 if (!mch_isdir(stackp->ffs_filearray[i]))
4756 continue; /* not a directory */
4758 ff_push(search_ctx,
4759 ff_create_stack_element(
4760 stackp->ffs_filearray[i],
4761 rest_of_wildcards,
4762 stackp->ffs_level - 1, 0));
4765 #endif
4766 stackp->ffs_filearray_cur = 0;
4767 stackp->ffs_stage = 1;
4770 #ifdef FEAT_PATH_EXTRA
4772 * if wildcards contains '**' we have to descent till we reach the
4773 * leaves of the directory tree.
4775 if (STRNCMP(stackp->ffs_wc_path, "**", 2) == 0)
4777 for (i = stackp->ffs_filearray_cur;
4778 i < stackp->ffs_filearray_size; ++i)
4780 if (fnamecmp(stackp->ffs_filearray[i],
4781 stackp->ffs_fix_path) == 0)
4782 continue; /* don't repush same directory */
4783 if (!mch_isdir(stackp->ffs_filearray[i]))
4784 continue; /* not a directory */
4785 ff_push(search_ctx,
4786 ff_create_stack_element(stackp->ffs_filearray[i],
4787 stackp->ffs_wc_path, stackp->ffs_level - 1, 1));
4790 #endif
4792 /* we are done with the current directory */
4793 ff_free_stack_element(stackp);
4797 #ifdef FEAT_PATH_EXTRA
4798 /* If we reached this, we didn't find anything downwards.
4799 * Let's check if we should do an upward search.
4801 if (search_ctx->ffsc_start_dir
4802 && search_ctx->ffsc_stopdirs_v != NULL && !got_int)
4804 ff_stack_T *sptr;
4806 /* is the last starting directory in the stop list? */
4807 if (ff_path_in_stoplist(search_ctx->ffsc_start_dir,
4808 (int)(path_end - search_ctx->ffsc_start_dir),
4809 search_ctx->ffsc_stopdirs_v) == TRUE)
4810 break;
4812 /* cut of last dir */
4813 while (path_end > search_ctx->ffsc_start_dir
4814 && vim_ispathsep(*path_end))
4815 path_end--;
4816 while (path_end > search_ctx->ffsc_start_dir
4817 && !vim_ispathsep(path_end[-1]))
4818 path_end--;
4819 *path_end = 0;
4820 path_end--;
4822 if (*search_ctx->ffsc_start_dir == 0)
4823 break;
4825 STRCPY(file_path, search_ctx->ffsc_start_dir);
4826 add_pathsep(file_path);
4827 STRCAT(file_path, search_ctx->ffsc_fix_path);
4829 /* create a new stack entry */
4830 sptr = ff_create_stack_element(file_path,
4831 search_ctx->ffsc_wc_path, search_ctx->ffsc_level, 0);
4832 if (sptr == NULL)
4833 break;
4834 ff_push(search_ctx, sptr);
4836 else
4837 break;
4839 #endif
4841 vim_free(file_path);
4842 return NULL;
4846 * Free the list of lists of visited files and directories
4847 * Can handle it if the passed search_context is NULL;
4849 void
4850 vim_findfile_free_visited(search_ctx_arg)
4851 void *search_ctx_arg;
4853 ff_search_ctx_T *search_ctx;
4855 if (search_ctx_arg == NULL)
4856 return;
4858 search_ctx = (ff_search_ctx_T *)search_ctx_arg;
4859 vim_findfile_free_visited_list(&search_ctx->ffsc_visited_lists_list);
4860 vim_findfile_free_visited_list(&search_ctx->ffsc_dir_visited_lists_list);
4863 static void
4864 vim_findfile_free_visited_list(list_headp)
4865 ff_visited_list_hdr_T **list_headp;
4867 ff_visited_list_hdr_T *vp;
4869 while (*list_headp != NULL)
4871 vp = (*list_headp)->ffvl_next;
4872 ff_free_visited_list((*list_headp)->ffvl_visited_list);
4874 vim_free((*list_headp)->ffvl_filename);
4875 vim_free(*list_headp);
4876 *list_headp = vp;
4878 *list_headp = NULL;
4881 static void
4882 ff_free_visited_list(vl)
4883 ff_visited_T *vl;
4885 ff_visited_T *vp;
4887 while (vl != NULL)
4889 vp = vl->ffv_next;
4890 #ifdef FEAT_PATH_EXTRA
4891 vim_free(vl->ffv_wc_path);
4892 #endif
4893 vim_free(vl);
4894 vl = vp;
4896 vl = NULL;
4900 * Returns the already visited list for the given filename. If none is found it
4901 * allocates a new one.
4903 static ff_visited_list_hdr_T*
4904 ff_get_visited_list(filename, list_headp)
4905 char_u *filename;
4906 ff_visited_list_hdr_T **list_headp;
4908 ff_visited_list_hdr_T *retptr = NULL;
4910 /* check if a visited list for the given filename exists */
4911 if (*list_headp != NULL)
4913 retptr = *list_headp;
4914 while (retptr != NULL)
4916 if (fnamecmp(filename, retptr->ffvl_filename) == 0)
4918 #ifdef FF_VERBOSE
4919 if (p_verbose >= 5)
4921 verbose_enter_scroll();
4922 smsg((char_u *)"ff_get_visited_list: FOUND list for %s",
4923 filename);
4924 /* don't overwrite this either */
4925 msg_puts((char_u *)"\n");
4926 verbose_leave_scroll();
4928 #endif
4929 return retptr;
4931 retptr = retptr->ffvl_next;
4935 #ifdef FF_VERBOSE
4936 if (p_verbose >= 5)
4938 verbose_enter_scroll();
4939 smsg((char_u *)"ff_get_visited_list: new list for %s", filename);
4940 /* don't overwrite this either */
4941 msg_puts((char_u *)"\n");
4942 verbose_leave_scroll();
4944 #endif
4947 * if we reach this we didn't find a list and we have to allocate new list
4949 retptr = (ff_visited_list_hdr_T*)alloc((unsigned)sizeof(*retptr));
4950 if (retptr == NULL)
4951 return NULL;
4953 retptr->ffvl_visited_list = NULL;
4954 retptr->ffvl_filename = vim_strsave(filename);
4955 if (retptr->ffvl_filename == NULL)
4957 vim_free(retptr);
4958 return NULL;
4960 retptr->ffvl_next = *list_headp;
4961 *list_headp = retptr;
4963 return retptr;
4966 #ifdef FEAT_PATH_EXTRA
4968 * check if two wildcard paths are equal. Returns TRUE or FALSE.
4969 * They are equal if:
4970 * - both paths are NULL
4971 * - they have the same length
4972 * - char by char comparison is OK
4973 * - the only differences are in the counters behind a '**', so
4974 * '**\20' is equal to '**\24'
4976 static int
4977 ff_wc_equal(s1, s2)
4978 char_u *s1;
4979 char_u *s2;
4981 int i;
4983 if (s1 == s2)
4984 return TRUE;
4986 if (s1 == NULL || s2 == NULL)
4987 return FALSE;
4989 if (STRLEN(s1) != STRLEN(s2))
4990 return FAIL;
4992 for (i = 0; s1[i] != NUL && s2[i] != NUL; i++)
4994 if (s1[i] != s2[i]
4995 #ifdef CASE_INSENSITIVE_FILENAME
4996 && TOUPPER_LOC(s1[i]) != TOUPPER_LOC(s2[i])
4997 #endif
5000 if (i >= 2)
5001 if (s1[i-1] == '*' && s1[i-2] == '*')
5002 continue;
5003 else
5004 return FAIL;
5005 else
5006 return FAIL;
5009 return TRUE;
5011 #endif
5014 * maintains the list of already visited files and dirs
5015 * returns FAIL if the given file/dir is already in the list
5016 * returns OK if it is newly added
5018 * TODO: What to do on memory allocation problems?
5019 * -> return TRUE - Better the file is found several times instead of
5020 * never.
5022 static int
5023 ff_check_visited(visited_list, fname
5024 #ifdef FEAT_PATH_EXTRA
5025 , wc_path
5026 #endif
5028 ff_visited_T **visited_list;
5029 char_u *fname;
5030 #ifdef FEAT_PATH_EXTRA
5031 char_u *wc_path;
5032 #endif
5034 ff_visited_T *vp;
5035 #ifdef UNIX
5036 struct stat st;
5037 int url = FALSE;
5038 #endif
5040 /* For an URL we only compare the name, otherwise we compare the
5041 * device/inode (unix) or the full path name (not Unix). */
5042 if (path_with_url(fname))
5044 vim_strncpy(ff_expand_buffer, fname, MAXPATHL - 1);
5045 #ifdef UNIX
5046 url = TRUE;
5047 #endif
5049 else
5051 ff_expand_buffer[0] = NUL;
5052 #ifdef UNIX
5053 if (mch_stat((char *)fname, &st) < 0)
5054 #else
5055 if (vim_FullName(fname, ff_expand_buffer, MAXPATHL, TRUE) == FAIL)
5056 #endif
5057 return FAIL;
5060 /* check against list of already visited files */
5061 for (vp = *visited_list; vp != NULL; vp = vp->ffv_next)
5063 if (
5064 #ifdef UNIX
5065 !url
5066 ? (vp->ffv_dev == st.st_dev
5067 && vp->ffv_ino == st.st_ino)
5069 #endif
5070 fnamecmp(vp->ffv_fname, ff_expand_buffer) == 0
5073 #ifdef FEAT_PATH_EXTRA
5074 /* are the wildcard parts equal */
5075 if (ff_wc_equal(vp->ffv_wc_path, wc_path) == TRUE)
5076 #endif
5077 /* already visited */
5078 return FAIL;
5083 * New file/dir. Add it to the list of visited files/dirs.
5085 vp = (ff_visited_T *)alloc((unsigned)(sizeof(ff_visited_T)
5086 + STRLEN(ff_expand_buffer)));
5088 if (vp != NULL)
5090 #ifdef UNIX
5091 if (!url)
5093 vp->ffv_ino = st.st_ino;
5094 vp->ffv_dev = st.st_dev;
5095 vp->ffv_fname[0] = NUL;
5097 else
5099 vp->ffv_ino = 0;
5100 vp->ffv_dev = -1;
5101 #endif
5102 STRCPY(vp->ffv_fname, ff_expand_buffer);
5103 #ifdef UNIX
5105 #endif
5106 #ifdef FEAT_PATH_EXTRA
5107 if (wc_path != NULL)
5108 vp->ffv_wc_path = vim_strsave(wc_path);
5109 else
5110 vp->ffv_wc_path = NULL;
5111 #endif
5113 vp->ffv_next = *visited_list;
5114 *visited_list = vp;
5117 return OK;
5121 * create stack element from given path pieces
5123 static ff_stack_T *
5124 ff_create_stack_element(fix_part,
5125 #ifdef FEAT_PATH_EXTRA
5126 wc_part,
5127 #endif
5128 level, star_star_empty)
5129 char_u *fix_part;
5130 #ifdef FEAT_PATH_EXTRA
5131 char_u *wc_part;
5132 #endif
5133 int level;
5134 int star_star_empty;
5136 ff_stack_T *new;
5138 new = (ff_stack_T *)alloc((unsigned)sizeof(ff_stack_T));
5139 if (new == NULL)
5140 return NULL;
5142 new->ffs_prev = NULL;
5143 new->ffs_filearray = NULL;
5144 new->ffs_filearray_size = 0;
5145 new->ffs_filearray_cur = 0;
5146 new->ffs_stage = 0;
5147 new->ffs_level = level;
5148 new->ffs_star_star_empty = star_star_empty;;
5150 /* the following saves NULL pointer checks in vim_findfile */
5151 if (fix_part == NULL)
5152 fix_part = (char_u *)"";
5153 new->ffs_fix_path = vim_strsave(fix_part);
5155 #ifdef FEAT_PATH_EXTRA
5156 if (wc_part == NULL)
5157 wc_part = (char_u *)"";
5158 new->ffs_wc_path = vim_strsave(wc_part);
5159 #endif
5161 if (new->ffs_fix_path == NULL
5162 #ifdef FEAT_PATH_EXTRA
5163 || new->ffs_wc_path == NULL
5164 #endif
5167 ff_free_stack_element(new);
5168 new = NULL;
5171 return new;
5175 * Push a dir on the directory stack.
5177 static void
5178 ff_push(search_ctx, stack_ptr)
5179 ff_search_ctx_T *search_ctx;
5180 ff_stack_T *stack_ptr;
5182 /* check for NULL pointer, not to return an error to the user, but
5183 * to prevent a crash */
5184 if (stack_ptr != NULL)
5186 stack_ptr->ffs_prev = search_ctx->ffsc_stack_ptr;
5187 search_ctx->ffsc_stack_ptr = stack_ptr;
5192 * Pop a dir from the directory stack.
5193 * Returns NULL if stack is empty.
5195 static ff_stack_T *
5196 ff_pop(search_ctx)
5197 ff_search_ctx_T *search_ctx;
5199 ff_stack_T *sptr;
5201 sptr = search_ctx->ffsc_stack_ptr;
5202 if (search_ctx->ffsc_stack_ptr != NULL)
5203 search_ctx->ffsc_stack_ptr = search_ctx->ffsc_stack_ptr->ffs_prev;
5205 return sptr;
5209 * free the given stack element
5211 static void
5212 ff_free_stack_element(stack_ptr)
5213 ff_stack_T *stack_ptr;
5215 /* vim_free handles possible NULL pointers */
5216 vim_free(stack_ptr->ffs_fix_path);
5217 #ifdef FEAT_PATH_EXTRA
5218 vim_free(stack_ptr->ffs_wc_path);
5219 #endif
5221 if (stack_ptr->ffs_filearray != NULL)
5222 FreeWild(stack_ptr->ffs_filearray_size, stack_ptr->ffs_filearray);
5224 vim_free(stack_ptr);
5228 * Clear the search context, but NOT the visited list.
5230 static void
5231 ff_clear(search_ctx)
5232 ff_search_ctx_T *search_ctx;
5234 ff_stack_T *sptr;
5236 /* clear up stack */
5237 while ((sptr = ff_pop(search_ctx)) != NULL)
5238 ff_free_stack_element(sptr);
5240 vim_free(search_ctx->ffsc_file_to_search);
5241 vim_free(search_ctx->ffsc_start_dir);
5242 vim_free(search_ctx->ffsc_fix_path);
5243 #ifdef FEAT_PATH_EXTRA
5244 vim_free(search_ctx->ffsc_wc_path);
5245 #endif
5247 #ifdef FEAT_PATH_EXTRA
5248 if (search_ctx->ffsc_stopdirs_v != NULL)
5250 int i = 0;
5252 while (search_ctx->ffsc_stopdirs_v[i] != NULL)
5254 vim_free(search_ctx->ffsc_stopdirs_v[i]);
5255 i++;
5257 vim_free(search_ctx->ffsc_stopdirs_v);
5259 search_ctx->ffsc_stopdirs_v = NULL;
5260 #endif
5262 /* reset everything */
5263 search_ctx->ffsc_file_to_search = NULL;
5264 search_ctx->ffsc_start_dir = NULL;
5265 search_ctx->ffsc_fix_path = NULL;
5266 #ifdef FEAT_PATH_EXTRA
5267 search_ctx->ffsc_wc_path = NULL;
5268 search_ctx->ffsc_level = 0;
5269 #endif
5272 #ifdef FEAT_PATH_EXTRA
5274 * check if the given path is in the stopdirs
5275 * returns TRUE if yes else FALSE
5277 static int
5278 ff_path_in_stoplist(path, path_len, stopdirs_v)
5279 char_u *path;
5280 int path_len;
5281 char_u **stopdirs_v;
5283 int i = 0;
5285 /* eat up trailing path separators, except the first */
5286 while (path_len > 1 && vim_ispathsep(path[path_len - 1]))
5287 path_len--;
5289 /* if no path consider it as match */
5290 if (path_len == 0)
5291 return TRUE;
5293 for (i = 0; stopdirs_v[i] != NULL; i++)
5295 if ((int)STRLEN(stopdirs_v[i]) > path_len)
5297 /* match for parent directory. So '/home' also matches
5298 * '/home/rks'. Check for PATHSEP in stopdirs_v[i], else
5299 * '/home/r' would also match '/home/rks'
5301 if (fnamencmp(stopdirs_v[i], path, path_len) == 0
5302 && vim_ispathsep(stopdirs_v[i][path_len]))
5303 return TRUE;
5305 else
5307 if (fnamecmp(stopdirs_v[i], path) == 0)
5308 return TRUE;
5311 return FALSE;
5313 #endif
5315 #if defined(FEAT_SEARCHPATH) || defined(PROTO)
5317 * Find the file name "ptr[len]" in the path. Also finds directory names.
5319 * On the first call set the parameter 'first' to TRUE to initialize
5320 * the search. For repeating calls to FALSE.
5322 * Repeating calls will return other files called 'ptr[len]' from the path.
5324 * Only on the first call 'ptr' and 'len' are used. For repeating calls they
5325 * don't need valid values.
5327 * If nothing found on the first call the option FNAME_MESS will issue the
5328 * message:
5329 * 'Can't find file "<file>" in path'
5330 * On repeating calls:
5331 * 'No more file "<file>" found in path'
5333 * options:
5334 * FNAME_MESS give error message when not found
5336 * Uses NameBuff[]!
5338 * Returns an allocated string for the file name. NULL for error.
5341 char_u *
5342 find_file_in_path(ptr, len, options, first, rel_fname)
5343 char_u *ptr; /* file name */
5344 int len; /* length of file name */
5345 int options;
5346 int first; /* use count'th matching file name */
5347 char_u *rel_fname; /* file name searching relative to */
5349 return find_file_in_path_option(ptr, len, options, first,
5350 *curbuf->b_p_path == NUL ? p_path : curbuf->b_p_path,
5351 FINDFILE_BOTH, rel_fname, curbuf->b_p_sua);
5354 static char_u *ff_file_to_find = NULL;
5355 static void *fdip_search_ctx = NULL;
5357 #if defined(EXITFREE)
5358 static void
5359 free_findfile()
5361 vim_free(ff_file_to_find);
5362 vim_findfile_cleanup(fdip_search_ctx);
5364 #endif
5367 * Find the directory name "ptr[len]" in the path.
5369 * options:
5370 * FNAME_MESS give error message when not found
5372 * Uses NameBuff[]!
5374 * Returns an allocated string for the file name. NULL for error.
5376 char_u *
5377 find_directory_in_path(ptr, len, options, rel_fname)
5378 char_u *ptr; /* file name */
5379 int len; /* length of file name */
5380 int options;
5381 char_u *rel_fname; /* file name searching relative to */
5383 return find_file_in_path_option(ptr, len, options, TRUE, p_cdpath,
5384 FINDFILE_DIR, rel_fname, (char_u *)"");
5387 char_u *
5388 find_file_in_path_option(ptr, len, options, first, path_option, find_what, rel_fname, suffixes)
5389 char_u *ptr; /* file name */
5390 int len; /* length of file name */
5391 int options;
5392 int first; /* use count'th matching file name */
5393 char_u *path_option; /* p_path or p_cdpath */
5394 int find_what; /* FINDFILE_FILE, _DIR or _BOTH */
5395 char_u *rel_fname; /* file name we are looking relative to. */
5396 char_u *suffixes; /* list of suffixes, 'suffixesadd' option */
5398 static char_u *dir;
5399 static int did_findfile_init = FALSE;
5400 char_u save_char;
5401 char_u *file_name = NULL;
5402 char_u *buf = NULL;
5403 int rel_to_curdir;
5404 #ifdef AMIGA
5405 struct Process *proc = (struct Process *)FindTask(0L);
5406 APTR save_winptr = proc->pr_WindowPtr;
5408 /* Avoid a requester here for a volume that doesn't exist. */
5409 proc->pr_WindowPtr = (APTR)-1L;
5410 #endif
5412 if (first == TRUE)
5414 /* copy file name into NameBuff, expanding environment variables */
5415 save_char = ptr[len];
5416 ptr[len] = NUL;
5417 expand_env(ptr, NameBuff, MAXPATHL);
5418 ptr[len] = save_char;
5420 vim_free(ff_file_to_find);
5421 ff_file_to_find = vim_strsave(NameBuff);
5422 if (ff_file_to_find == NULL) /* out of memory */
5424 file_name = NULL;
5425 goto theend;
5429 rel_to_curdir = (ff_file_to_find[0] == '.'
5430 && (ff_file_to_find[1] == NUL
5431 || vim_ispathsep(ff_file_to_find[1])
5432 || (ff_file_to_find[1] == '.'
5433 && (ff_file_to_find[2] == NUL
5434 || vim_ispathsep(ff_file_to_find[2])))));
5435 if (vim_isAbsName(ff_file_to_find)
5436 /* "..", "../path", "." and "./path": don't use the path_option */
5437 || rel_to_curdir
5438 #if defined(MSWIN) || defined(MSDOS) || defined(OS2)
5439 /* handle "\tmp" as absolute path */
5440 || vim_ispathsep(ff_file_to_find[0])
5441 /* handle "c:name" as absulute path */
5442 || (ff_file_to_find[0] != NUL && ff_file_to_find[1] == ':')
5443 #endif
5444 #ifdef AMIGA
5445 /* handle ":tmp" as absolute path */
5446 || ff_file_to_find[0] == ':'
5447 #endif
5451 * Absolute path, no need to use "path_option".
5452 * If this is not a first call, return NULL. We already returned a
5453 * filename on the first call.
5455 if (first == TRUE)
5457 int l;
5458 int run;
5460 if (path_with_url(ff_file_to_find))
5462 file_name = vim_strsave(ff_file_to_find);
5463 goto theend;
5466 /* When FNAME_REL flag given first use the directory of the file.
5467 * Otherwise or when this fails use the current directory. */
5468 for (run = 1; run <= 2; ++run)
5470 l = (int)STRLEN(ff_file_to_find);
5471 if (run == 1
5472 && rel_to_curdir
5473 && (options & FNAME_REL)
5474 && rel_fname != NULL
5475 && STRLEN(rel_fname) + l < MAXPATHL)
5477 STRCPY(NameBuff, rel_fname);
5478 STRCPY(gettail(NameBuff), ff_file_to_find);
5479 l = (int)STRLEN(NameBuff);
5481 else
5483 STRCPY(NameBuff, ff_file_to_find);
5484 run = 2;
5487 /* When the file doesn't exist, try adding parts of
5488 * 'suffixesadd'. */
5489 buf = suffixes;
5490 for (;;)
5492 if (
5493 #ifdef DJGPP
5494 /* "C:" by itself will fail for mch_getperm(),
5495 * assume it's always valid. */
5496 (find_what != FINDFILE_FILE && NameBuff[0] != NUL
5497 && NameBuff[1] == ':'
5498 && NameBuff[2] == NUL) ||
5499 #endif
5500 (mch_getperm(NameBuff) >= 0
5501 && (find_what == FINDFILE_BOTH
5502 || ((find_what == FINDFILE_DIR)
5503 == mch_isdir(NameBuff)))))
5505 file_name = vim_strsave(NameBuff);
5506 goto theend;
5508 if (*buf == NUL)
5509 break;
5510 copy_option_part(&buf, NameBuff + l, MAXPATHL - l, ",");
5515 else
5518 * Loop over all paths in the 'path' or 'cdpath' option.
5519 * When "first" is set, first setup to the start of the option.
5520 * Otherwise continue to find the next match.
5522 if (first == TRUE)
5524 /* vim_findfile_free_visited can handle a possible NULL pointer */
5525 vim_findfile_free_visited(fdip_search_ctx);
5526 dir = path_option;
5527 did_findfile_init = FALSE;
5530 for (;;)
5532 if (did_findfile_init)
5534 file_name = vim_findfile(fdip_search_ctx);
5535 if (file_name != NULL)
5536 break;
5538 did_findfile_init = FALSE;
5540 else
5542 char_u *r_ptr;
5544 if (dir == NULL || *dir == NUL)
5546 /* We searched all paths of the option, now we can
5547 * free the search context. */
5548 vim_findfile_cleanup(fdip_search_ctx);
5549 fdip_search_ctx = NULL;
5550 break;
5553 if ((buf = alloc((int)(MAXPATHL))) == NULL)
5554 break;
5556 /* copy next path */
5557 buf[0] = 0;
5558 copy_option_part(&dir, buf, MAXPATHL, " ,");
5560 #ifdef FEAT_PATH_EXTRA
5561 /* get the stopdir string */
5562 r_ptr = vim_findfile_stopdir(buf);
5563 #else
5564 r_ptr = NULL;
5565 #endif
5566 fdip_search_ctx = vim_findfile_init(buf, ff_file_to_find,
5567 r_ptr, 100, FALSE, find_what,
5568 fdip_search_ctx, FALSE, rel_fname);
5569 if (fdip_search_ctx != NULL)
5570 did_findfile_init = TRUE;
5571 vim_free(buf);
5575 if (file_name == NULL && (options & FNAME_MESS))
5577 if (first == TRUE)
5579 if (find_what == FINDFILE_DIR)
5580 EMSG2(_("E344: Can't find directory \"%s\" in cdpath"),
5581 ff_file_to_find);
5582 else
5583 EMSG2(_("E345: Can't find file \"%s\" in path"),
5584 ff_file_to_find);
5586 else
5588 if (find_what == FINDFILE_DIR)
5589 EMSG2(_("E346: No more directory \"%s\" found in cdpath"),
5590 ff_file_to_find);
5591 else
5592 EMSG2(_("E347: No more file \"%s\" found in path"),
5593 ff_file_to_find);
5597 theend:
5598 #ifdef AMIGA
5599 proc->pr_WindowPtr = save_winptr;
5600 #endif
5601 return file_name;
5604 #endif /* FEAT_SEARCHPATH */
5607 * Change directory to "new_dir". If FEAT_SEARCHPATH is defined, search
5608 * 'cdpath' for relative directory names, otherwise just mch_chdir().
5611 vim_chdir(new_dir)
5612 char_u *new_dir;
5614 #ifndef FEAT_SEARCHPATH
5615 return mch_chdir((char *)new_dir);
5616 #else
5617 char_u *dir_name;
5618 int r;
5620 dir_name = find_directory_in_path(new_dir, (int)STRLEN(new_dir),
5621 FNAME_MESS, curbuf->b_ffname);
5622 if (dir_name == NULL)
5623 return -1;
5624 r = mch_chdir((char *)dir_name);
5625 vim_free(dir_name);
5626 return r;
5627 #endif
5631 * Get user name from machine-specific function.
5632 * Returns the user name in "buf[len]".
5633 * Some systems are quite slow in obtaining the user name (Windows NT), thus
5634 * cache the result.
5635 * Returns OK or FAIL.
5638 get_user_name(buf, len)
5639 char_u *buf;
5640 int len;
5642 if (username == NULL)
5644 if (mch_get_user_name(buf, len) == FAIL)
5645 return FAIL;
5646 username = vim_strsave(buf);
5648 else
5649 vim_strncpy(buf, username, len - 1);
5650 return OK;
5653 #ifndef HAVE_QSORT
5655 * Our own qsort(), for systems that don't have it.
5656 * It's simple and slow. From the K&R C book.
5658 void
5659 qsort(base, elm_count, elm_size, cmp)
5660 void *base;
5661 size_t elm_count;
5662 size_t elm_size;
5663 int (*cmp) __ARGS((const void *, const void *));
5665 char_u *buf;
5666 char_u *p1;
5667 char_u *p2;
5668 int i, j;
5669 int gap;
5671 buf = alloc((unsigned)elm_size);
5672 if (buf == NULL)
5673 return;
5675 for (gap = elm_count / 2; gap > 0; gap /= 2)
5676 for (i = gap; i < elm_count; ++i)
5677 for (j = i - gap; j >= 0; j -= gap)
5679 /* Compare the elements. */
5680 p1 = (char_u *)base + j * elm_size;
5681 p2 = (char_u *)base + (j + gap) * elm_size;
5682 if ((*cmp)((void *)p1, (void *)p2) <= 0)
5683 break;
5684 /* Exchange the elemets. */
5685 mch_memmove(buf, p1, elm_size);
5686 mch_memmove(p1, p2, elm_size);
5687 mch_memmove(p2, buf, elm_size);
5690 vim_free(buf);
5692 #endif
5695 * Sort an array of strings.
5697 static int
5698 #ifdef __BORLANDC__
5699 _RTLENTRYF
5700 #endif
5701 sort_compare __ARGS((const void *s1, const void *s2));
5703 static int
5704 #ifdef __BORLANDC__
5705 _RTLENTRYF
5706 #endif
5707 sort_compare(s1, s2)
5708 const void *s1;
5709 const void *s2;
5711 return STRCMP(*(char **)s1, *(char **)s2);
5714 void
5715 sort_strings(files, count)
5716 char_u **files;
5717 int count;
5719 qsort((void *)files, (size_t)count, sizeof(char_u *), sort_compare);
5722 #if !defined(NO_EXPANDPATH) || defined(PROTO)
5724 * Compare path "p[]" to "q[]".
5725 * If "maxlen" >= 0 compare "p[maxlen]" to "q[maxlen]"
5726 * Return value like strcmp(p, q), but consider path separators.
5729 pathcmp(p, q, maxlen)
5730 const char *p, *q;
5731 int maxlen;
5733 int i;
5734 const char *s = NULL;
5736 for (i = 0; maxlen < 0 || i < maxlen; ++i)
5738 /* End of "p": check if "q" also ends or just has a slash. */
5739 if (p[i] == NUL)
5741 if (q[i] == NUL) /* full match */
5742 return 0;
5743 s = q;
5744 break;
5747 /* End of "q": check if "p" just has a slash. */
5748 if (q[i] == NUL)
5750 s = p;
5751 break;
5754 if (
5755 #ifdef CASE_INSENSITIVE_FILENAME
5756 TOUPPER_LOC(p[i]) != TOUPPER_LOC(q[i])
5757 #else
5758 p[i] != q[i]
5759 #endif
5760 #ifdef BACKSLASH_IN_FILENAME
5761 /* consider '/' and '\\' to be equal */
5762 && !((p[i] == '/' && q[i] == '\\')
5763 || (p[i] == '\\' && q[i] == '/'))
5764 #endif
5767 if (vim_ispathsep(p[i]))
5768 return -1;
5769 if (vim_ispathsep(q[i]))
5770 return 1;
5771 return ((char_u *)p)[i] - ((char_u *)q)[i]; /* no match */
5774 if (s == NULL) /* "i" ran into "maxlen" */
5775 return 0;
5777 /* ignore a trailing slash, but not "//" or ":/" */
5778 if (s[i + 1] == NUL
5779 && i > 0
5780 && !after_pathsep((char_u *)s, (char_u *)s + i)
5781 #ifdef BACKSLASH_IN_FILENAME
5782 && (s[i] == '/' || s[i] == '\\')
5783 #else
5784 && s[i] == '/'
5785 #endif
5787 return 0; /* match with trailing slash */
5788 if (s == q)
5789 return -1; /* no match */
5790 return 1;
5792 #endif
5795 * The putenv() implementation below comes from the "screen" program.
5796 * Included with permission from Juergen Weigert.
5797 * See pty.c for the copyright notice.
5801 * putenv -- put value into environment
5803 * Usage: i = putenv (string)
5804 * int i;
5805 * char *string;
5807 * where string is of the form <name>=<value>.
5808 * Putenv returns 0 normally, -1 on error (not enough core for malloc).
5810 * Putenv may need to add a new name into the environment, or to
5811 * associate a value longer than the current value with a particular
5812 * name. So, to make life simpler, putenv() copies your entire
5813 * environment into the heap (i.e. malloc()) from the stack
5814 * (i.e. where it resides when your process is initiated) the first
5815 * time you call it.
5817 * (history removed, not very interesting. See the "screen" sources.)
5820 #if !defined(HAVE_SETENV) && !defined(HAVE_PUTENV)
5822 #define EXTRASIZE 5 /* increment to add to env. size */
5824 static int envsize = -1; /* current size of environment */
5825 #ifndef MACOS_CLASSIC
5826 extern
5827 #endif
5828 char **environ; /* the global which is your env. */
5830 static int findenv __ARGS((char *name)); /* look for a name in the env. */
5831 static int newenv __ARGS((void)); /* copy env. from stack to heap */
5832 static int moreenv __ARGS((void)); /* incr. size of env. */
5835 putenv(string)
5836 const char *string;
5838 int i;
5839 char *p;
5841 if (envsize < 0)
5842 { /* first time putenv called */
5843 if (newenv() < 0) /* copy env. to heap */
5844 return -1;
5847 i = findenv((char *)string); /* look for name in environment */
5849 if (i < 0)
5850 { /* name must be added */
5851 for (i = 0; environ[i]; i++);
5852 if (i >= (envsize - 1))
5853 { /* need new slot */
5854 if (moreenv() < 0)
5855 return -1;
5857 p = (char *)alloc((unsigned)(strlen(string) + 1));
5858 if (p == NULL) /* not enough core */
5859 return -1;
5860 environ[i + 1] = 0; /* new end of env. */
5862 else
5863 { /* name already in env. */
5864 p = vim_realloc(environ[i], strlen(string) + 1);
5865 if (p == NULL)
5866 return -1;
5868 sprintf(p, "%s", string); /* copy into env. */
5869 environ[i] = p;
5871 return 0;
5874 static int
5875 findenv(name)
5876 char *name;
5878 char *namechar, *envchar;
5879 int i, found;
5881 found = 0;
5882 for (i = 0; environ[i] && !found; i++)
5884 envchar = environ[i];
5885 namechar = name;
5886 while (*namechar && *namechar != '=' && (*namechar == *envchar))
5888 namechar++;
5889 envchar++;
5891 found = ((*namechar == '\0' || *namechar == '=') && *envchar == '=');
5893 return found ? i - 1 : -1;
5896 static int
5897 newenv()
5899 char **env, *elem;
5900 int i, esize;
5902 #ifdef MACOS
5903 /* for Mac a new, empty environment is created */
5904 i = 0;
5905 #else
5906 for (i = 0; environ[i]; i++)
5908 #endif
5909 esize = i + EXTRASIZE + 1;
5910 env = (char **)alloc((unsigned)(esize * sizeof (elem)));
5911 if (env == NULL)
5912 return -1;
5914 #ifndef MACOS
5915 for (i = 0; environ[i]; i++)
5917 elem = (char *)alloc((unsigned)(strlen(environ[i]) + 1));
5918 if (elem == NULL)
5919 return -1;
5920 env[i] = elem;
5921 strcpy(elem, environ[i]);
5923 #endif
5925 env[i] = 0;
5926 environ = env;
5927 envsize = esize;
5928 return 0;
5931 static int
5932 moreenv()
5934 int esize;
5935 char **env;
5937 esize = envsize + EXTRASIZE;
5938 env = (char **)vim_realloc((char *)environ, esize * sizeof (*env));
5939 if (env == 0)
5940 return -1;
5941 environ = env;
5942 envsize = esize;
5943 return 0;
5946 # ifdef USE_VIMPTY_GETENV
5947 char_u *
5948 vimpty_getenv(string)
5949 const char_u *string;
5951 int i;
5952 char_u *p;
5954 if (envsize < 0)
5955 return NULL;
5957 i = findenv((char *)string);
5959 if (i < 0)
5960 return NULL;
5962 p = vim_strchr((char_u *)environ[i], '=');
5963 return (p + 1);
5965 # endif
5967 #endif /* !defined(HAVE_SETENV) && !defined(HAVE_PUTENV) */
5969 #if defined(FEAT_EVAL) || defined(FEAT_SPELL) || defined(PROTO)
5971 * Return 0 for not writable, 1 for writable file, 2 for a dir which we have
5972 * rights to write into.
5975 filewritable(fname)
5976 char_u *fname;
5978 int retval = 0;
5979 #if defined(UNIX) || defined(VMS)
5980 int perm = 0;
5981 #endif
5983 #if defined(UNIX) || defined(VMS)
5984 perm = mch_getperm(fname);
5985 #endif
5986 #ifndef MACOS_CLASSIC /* TODO: get either mch_writable or mch_access */
5987 if (
5988 # ifdef WIN3264
5989 mch_writable(fname) &&
5990 # else
5991 # if defined(UNIX) || defined(VMS)
5992 (perm & 0222) &&
5993 # endif
5994 # endif
5995 mch_access((char *)fname, W_OK) == 0
5997 #endif
5999 ++retval;
6000 if (mch_isdir(fname))
6001 ++retval;
6003 return retval;
6005 #endif
6008 * Print an error message with one or two "%s" and one or two string arguments.
6009 * This is not in message.c to avoid a warning for prototypes.
6012 emsg3(s, a1, a2)
6013 char_u *s, *a1, *a2;
6015 if (emsg_not_now())
6016 return TRUE; /* no error messages at the moment */
6017 #ifdef HAVE_STDARG_H
6018 vim_snprintf((char *)IObuff, IOSIZE, (char *)s, a1, a2);
6019 #else
6020 vim_snprintf((char *)IObuff, IOSIZE, (char *)s, (long_u)a1, (long_u)a2);
6021 #endif
6022 return emsg(IObuff);
6026 * Print an error message with one "%ld" and one long int argument.
6027 * This is not in message.c to avoid a warning for prototypes.
6030 emsgn(s, n)
6031 char_u *s;
6032 long n;
6034 if (emsg_not_now())
6035 return TRUE; /* no error messages at the moment */
6036 vim_snprintf((char *)IObuff, IOSIZE, (char *)s, n);
6037 return emsg(IObuff);