Changed DiffText and Constant highlight groups
[MacVim/jjgod.git] / src / misc2.c
blob19b99e2b460073a91ab07c1c549e456404408fd1
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 #ifdef HAVE_FCNTL_H
16 # include <fcntl.h> /* for chdir() */
17 #endif
19 static char_u *username = NULL; /* cached result of mch_get_user_name() */
21 static char_u *ff_expand_buffer = NULL; /* used for expanding filenames */
23 #if defined(FEAT_VIRTUALEDIT) || defined(PROTO)
24 static int coladvance2 __ARGS((pos_T *pos, int addspaces, int finetune, colnr_T wcol));
27 * Return TRUE if in the current mode we need to use virtual.
29 int
30 virtual_active()
32 /* While an operator is being executed we return "virtual_op", because
33 * VIsual_active has already been reset, thus we can't check for "block"
34 * being used. */
35 if (virtual_op != MAYBE)
36 return virtual_op;
37 return (ve_flags == VE_ALL
38 # ifdef FEAT_VISUAL
39 || ((ve_flags & VE_BLOCK) && VIsual_active && VIsual_mode == Ctrl_V)
40 # endif
41 || ((ve_flags & VE_INSERT) && (State & INSERT)));
45 * Get the screen position of the cursor.
47 int
48 getviscol()
50 colnr_T x;
52 getvvcol(curwin, &curwin->w_cursor, &x, NULL, NULL);
53 return (int)x;
57 * Get the screen position of character col with a coladd in the cursor line.
59 int
60 getviscol2(col, coladd)
61 colnr_T col;
62 colnr_T coladd;
64 colnr_T x;
65 pos_T pos;
67 pos.lnum = curwin->w_cursor.lnum;
68 pos.col = col;
69 pos.coladd = coladd;
70 getvvcol(curwin, &pos, &x, NULL, NULL);
71 return (int)x;
75 * Go to column "wcol", and add/insert white space as necessary to get the
76 * cursor in that column.
77 * The caller must have saved the cursor line for undo!
79 int
80 coladvance_force(wcol)
81 colnr_T wcol;
83 int rc = coladvance2(&curwin->w_cursor, TRUE, FALSE, wcol);
85 if (wcol == MAXCOL)
86 curwin->w_valid &= ~VALID_VIRTCOL;
87 else
89 /* Virtcol is valid */
90 curwin->w_valid |= VALID_VIRTCOL;
91 curwin->w_virtcol = wcol;
93 return rc;
95 #endif
98 * Try to advance the Cursor to the specified screen column.
99 * If virtual editing: fine tune the cursor position.
100 * Note that all virtual positions off the end of a line should share
101 * a curwin->w_cursor.col value (n.b. this is equal to STRLEN(line)),
102 * beginning at coladd 0.
104 * return OK if desired column is reached, FAIL if not
107 coladvance(wcol)
108 colnr_T wcol;
110 int rc = getvpos(&curwin->w_cursor, wcol);
112 if (wcol == MAXCOL || rc == FAIL)
113 curwin->w_valid &= ~VALID_VIRTCOL;
114 else if (*ml_get_cursor() != TAB)
116 /* Virtcol is valid when not on a TAB */
117 curwin->w_valid |= VALID_VIRTCOL;
118 curwin->w_virtcol = wcol;
120 return rc;
124 * Return in "pos" the position of the cursor advanced to screen column "wcol".
125 * return OK if desired column is reached, FAIL if not
128 getvpos(pos, wcol)
129 pos_T *pos;
130 colnr_T wcol;
132 #ifdef FEAT_VIRTUALEDIT
133 return coladvance2(pos, FALSE, virtual_active(), wcol);
136 static int
137 coladvance2(pos, addspaces, finetune, wcol)
138 pos_T *pos;
139 int addspaces; /* change the text to achieve our goal? */
140 int finetune; /* change char offset for the exact column */
141 colnr_T wcol; /* column to move to */
143 #endif
144 int idx;
145 char_u *ptr;
146 char_u *line;
147 colnr_T col = 0;
148 int csize = 0;
149 int one_more;
150 #ifdef FEAT_LINEBREAK
151 int head = 0;
152 #endif
154 one_more = (State & INSERT)
155 || restart_edit != NUL
156 #ifdef FEAT_VISUAL
157 || (VIsual_active && *p_sel != 'o')
158 #endif
159 #ifdef FEAT_VIRTUALEDIT
160 || ((ve_flags & VE_ONEMORE) && wcol < MAXCOL)
161 #endif
163 line = ml_get_curline();
165 if (wcol >= MAXCOL)
167 idx = (int)STRLEN(line) - 1 + one_more;
168 col = wcol;
170 #ifdef FEAT_VIRTUALEDIT
171 if ((addspaces || finetune) && !VIsual_active)
173 curwin->w_curswant = linetabsize(line) + one_more;
174 if (curwin->w_curswant > 0)
175 --curwin->w_curswant;
177 #endif
179 else
181 #ifdef FEAT_VIRTUALEDIT
182 int width = W_WIDTH(curwin) - win_col_off(curwin);
184 if (finetune
185 && curwin->w_p_wrap
186 # ifdef FEAT_VERTSPLIT
187 && curwin->w_width != 0
188 # endif
189 && wcol >= (colnr_T)width)
191 csize = linetabsize(line);
192 if (csize > 0)
193 csize--;
195 if (wcol / width > (colnr_T)csize / width
196 && ((State & INSERT) == 0 || (int)wcol > csize + 1))
198 /* In case of line wrapping don't move the cursor beyond the
199 * right screen edge. In Insert mode allow going just beyond
200 * the last character (like what happens when typing and
201 * reaching the right window edge). */
202 wcol = (csize / width + 1) * width - 1;
205 #endif
207 idx = -1;
208 ptr = line;
209 while (col <= wcol && *ptr != NUL)
211 /* Count a tab for what it's worth (if list mode not on) */
212 #ifdef FEAT_LINEBREAK
213 csize = win_lbr_chartabsize(curwin, ptr, col, &head);
214 mb_ptr_adv(ptr);
215 #else
216 csize = lbr_chartabsize_adv(&ptr, col);
217 #endif
218 col += csize;
220 idx = (int)(ptr - line);
222 * Handle all the special cases. The virtual_active() check
223 * is needed to ensure that a virtual position off the end of
224 * a line has the correct indexing. The one_more comparison
225 * replaces an explicit add of one_more later on.
227 if (col > wcol || (!virtual_active() && one_more == 0))
229 idx -= 1;
230 # ifdef FEAT_LINEBREAK
231 /* Don't count the chars from 'showbreak'. */
232 csize -= head;
233 # endif
234 col -= csize;
237 #ifdef FEAT_VIRTUALEDIT
238 if (virtual_active()
239 && addspaces
240 && ((col != wcol && col != wcol + 1) || csize > 1))
242 /* 'virtualedit' is set: The difference between wcol and col is
243 * filled with spaces. */
245 if (line[idx] == NUL)
247 /* Append spaces */
248 int correct = wcol - col;
249 char_u *newline = alloc(idx + correct + 1);
250 int t;
252 if (newline == NULL)
253 return FAIL;
255 for (t = 0; t < idx; ++t)
256 newline[t] = line[t];
258 for (t = 0; t < correct; ++t)
259 newline[t + idx] = ' ';
261 newline[idx + correct] = NUL;
263 ml_replace(pos->lnum, newline, FALSE);
264 changed_bytes(pos->lnum, (colnr_T)idx);
265 idx += correct;
266 col = wcol;
268 else
270 /* Break a tab */
271 int linelen = (int)STRLEN(line);
272 int correct = wcol - col - csize + 1; /* negative!! */
273 char_u *newline;
274 int t, s = 0;
275 int v;
277 if (-correct > csize)
278 return FAIL;
280 newline = alloc(linelen + csize);
281 if (newline == NULL)
282 return FAIL;
284 for (t = 0; t < linelen; t++)
286 if (t != idx)
287 newline[s++] = line[t];
288 else
289 for (v = 0; v < csize; v++)
290 newline[s++] = ' ';
293 newline[linelen + csize - 1] = NUL;
295 ml_replace(pos->lnum, newline, FALSE);
296 changed_bytes(pos->lnum, idx);
297 idx += (csize - 1 + correct);
298 col += correct;
301 #endif
304 if (idx < 0)
305 pos->col = 0;
306 else
307 pos->col = idx;
309 #ifdef FEAT_VIRTUALEDIT
310 pos->coladd = 0;
312 if (finetune)
314 if (wcol == MAXCOL)
316 /* The width of the last character is used to set coladd. */
317 if (!one_more)
319 colnr_T scol, ecol;
321 getvcol(curwin, pos, &scol, NULL, &ecol);
322 pos->coladd = ecol - scol;
325 else
327 int b = (int)wcol - (int)col;
329 /* The difference between wcol and col is used to set coladd. */
330 if (b > 0 && b < (MAXCOL - 2 * W_WIDTH(curwin)))
331 pos->coladd = b;
333 col += b;
336 #endif
338 #ifdef FEAT_MBYTE
339 /* prevent cursor from moving on the trail byte */
340 if (has_mbyte)
341 mb_adjust_cursor();
342 #endif
344 if (col < wcol)
345 return FAIL;
346 return OK;
350 * inc(p)
352 * Increment the line pointer 'p' crossing line boundaries as necessary.
353 * Return 1 when going to the next line.
354 * Return 2 when moving forward onto a NUL at the end of the line).
355 * Return -1 when at the end of file.
356 * Return 0 otherwise.
359 inc_cursor()
361 return inc(&curwin->w_cursor);
365 inc(lp)
366 pos_T *lp;
368 char_u *p = ml_get_pos(lp);
370 if (*p != NUL) /* still within line, move to next char (may be NUL) */
372 #ifdef FEAT_MBYTE
373 if (has_mbyte)
375 int l = (*mb_ptr2len)(p);
377 lp->col += l;
378 return ((p[l] != NUL) ? 0 : 2);
380 #endif
381 lp->col++;
382 #ifdef FEAT_VIRTUALEDIT
383 lp->coladd = 0;
384 #endif
385 return ((p[1] != NUL) ? 0 : 2);
387 if (lp->lnum != curbuf->b_ml.ml_line_count) /* there is a next line */
389 lp->col = 0;
390 lp->lnum++;
391 #ifdef FEAT_VIRTUALEDIT
392 lp->coladd = 0;
393 #endif
394 return 1;
396 return -1;
400 * incl(lp): same as inc(), but skip the NUL at the end of non-empty lines
403 incl(lp)
404 pos_T *lp;
406 int r;
408 if ((r = inc(lp)) >= 1 && lp->col)
409 r = inc(lp);
410 return r;
414 * dec(p)
416 * Decrement the line pointer 'p' crossing line boundaries as necessary.
417 * Return 1 when crossing a line, -1 when at start of file, 0 otherwise.
420 dec_cursor()
422 return dec(&curwin->w_cursor);
426 dec(lp)
427 pos_T *lp;
429 char_u *p;
431 #ifdef FEAT_VIRTUALEDIT
432 lp->coladd = 0;
433 #endif
434 if (lp->col > 0) /* still within line */
436 lp->col--;
437 #ifdef FEAT_MBYTE
438 if (has_mbyte)
440 p = ml_get(lp->lnum);
441 lp->col -= (*mb_head_off)(p, p + lp->col);
443 #endif
444 return 0;
446 if (lp->lnum > 1) /* there is a prior line */
448 lp->lnum--;
449 p = ml_get(lp->lnum);
450 lp->col = (colnr_T)STRLEN(p);
451 #ifdef FEAT_MBYTE
452 if (has_mbyte)
453 lp->col -= (*mb_head_off)(p, p + lp->col);
454 #endif
455 return 1;
457 return -1; /* at start of file */
461 * decl(lp): same as dec(), but skip the NUL at the end of non-empty lines
464 decl(lp)
465 pos_T *lp;
467 int r;
469 if ((r = dec(lp)) == 1 && lp->col)
470 r = dec(lp);
471 return r;
475 * Make sure curwin->w_cursor.lnum is valid.
477 void
478 check_cursor_lnum()
480 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
482 #ifdef FEAT_FOLDING
483 /* If there is a closed fold at the end of the file, put the cursor in
484 * its first line. Otherwise in the last line. */
485 if (!hasFolding(curbuf->b_ml.ml_line_count,
486 &curwin->w_cursor.lnum, NULL))
487 #endif
488 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
490 if (curwin->w_cursor.lnum <= 0)
491 curwin->w_cursor.lnum = 1;
495 * Make sure curwin->w_cursor.col is valid.
497 void
498 check_cursor_col()
500 colnr_T len;
501 #ifdef FEAT_VIRTUALEDIT
502 colnr_T oldcol = curwin->w_cursor.col + curwin->w_cursor.coladd;
503 #endif
505 len = (colnr_T)STRLEN(ml_get_curline());
506 if (len == 0)
507 curwin->w_cursor.col = 0;
508 else if (curwin->w_cursor.col >= len)
510 /* Allow cursor past end-of-line in Insert mode, restarting Insert
511 * mode or when in Visual mode and 'selection' isn't "old" */
512 if ((State & INSERT) || restart_edit
513 #ifdef FEAT_VISUAL
514 || (VIsual_active && *p_sel != 'o')
515 #endif
516 || virtual_active())
517 curwin->w_cursor.col = len;
518 else
520 curwin->w_cursor.col = len - 1;
521 #ifdef FEAT_MBYTE
522 /* prevent cursor from moving on the trail byte */
523 if (has_mbyte)
524 mb_adjust_cursor();
525 #endif
529 #ifdef FEAT_VIRTUALEDIT
530 /* If virtual editing is on, we can leave the cursor on the old position,
531 * only we must set it to virtual. But don't do it when at the end of the
532 * line. */
533 if (oldcol == MAXCOL)
534 curwin->w_cursor.coladd = 0;
535 else if (ve_flags == VE_ALL)
536 curwin->w_cursor.coladd = oldcol - curwin->w_cursor.col;
537 #endif
541 * make sure curwin->w_cursor in on a valid character
543 void
544 check_cursor()
546 check_cursor_lnum();
547 check_cursor_col();
550 #if defined(FEAT_TEXTOBJ) || defined(PROTO)
552 * Make sure curwin->w_cursor is not on the NUL at the end of the line.
553 * Allow it when in Visual mode and 'selection' is not "old".
555 void
556 adjust_cursor_col()
558 if (curwin->w_cursor.col > 0
559 # ifdef FEAT_VISUAL
560 && (!VIsual_active || *p_sel == 'o')
561 # endif
562 && gchar_cursor() == NUL)
563 --curwin->w_cursor.col;
565 #endif
568 * When curwin->w_leftcol has changed, adjust the cursor position.
569 * Return TRUE if the cursor was moved.
572 leftcol_changed()
574 long lastcol;
575 colnr_T s, e;
576 int retval = FALSE;
578 changed_cline_bef_curs();
579 lastcol = curwin->w_leftcol + W_WIDTH(curwin) - curwin_col_off() - 1;
580 validate_virtcol();
583 * If the cursor is right or left of the screen, move it to last or first
584 * character.
586 if (curwin->w_virtcol > (colnr_T)(lastcol - p_siso))
588 retval = TRUE;
589 coladvance((colnr_T)(lastcol - p_siso));
591 else if (curwin->w_virtcol < curwin->w_leftcol + p_siso)
593 retval = TRUE;
594 (void)coladvance((colnr_T)(curwin->w_leftcol + p_siso));
598 * If the start of the character under the cursor is not on the screen,
599 * advance the cursor one more char. If this fails (last char of the
600 * line) adjust the scrolling.
602 getvvcol(curwin, &curwin->w_cursor, &s, NULL, &e);
603 if (e > (colnr_T)lastcol)
605 retval = TRUE;
606 coladvance(s - 1);
608 else if (s < curwin->w_leftcol)
610 retval = TRUE;
611 if (coladvance(e + 1) == FAIL) /* there isn't another character */
613 curwin->w_leftcol = s; /* adjust w_leftcol instead */
614 changed_cline_bef_curs();
618 if (retval)
619 curwin->w_set_curswant = TRUE;
620 redraw_later(NOT_VALID);
621 return retval;
624 /**********************************************************************
625 * Various routines dealing with allocation and deallocation of memory.
628 #if defined(MEM_PROFILE) || defined(PROTO)
630 # define MEM_SIZES 8200
631 static long_u mem_allocs[MEM_SIZES];
632 static long_u mem_frees[MEM_SIZES];
633 static long_u mem_allocated;
634 static long_u mem_freed;
635 static long_u mem_peak;
636 static long_u num_alloc;
637 static long_u num_freed;
639 static void mem_pre_alloc_s __ARGS((size_t *sizep));
640 static void mem_pre_alloc_l __ARGS((long_u *sizep));
641 static void mem_post_alloc __ARGS((void **pp, size_t size));
642 static void mem_pre_free __ARGS((void **pp));
644 static void
645 mem_pre_alloc_s(sizep)
646 size_t *sizep;
648 *sizep += sizeof(size_t);
651 static void
652 mem_pre_alloc_l(sizep)
653 long_u *sizep;
655 *sizep += sizeof(size_t);
658 static void
659 mem_post_alloc(pp, size)
660 void **pp;
661 size_t size;
663 if (*pp == NULL)
664 return;
665 size -= sizeof(size_t);
666 *(long_u *)*pp = size;
667 if (size <= MEM_SIZES-1)
668 mem_allocs[size-1]++;
669 else
670 mem_allocs[MEM_SIZES-1]++;
671 mem_allocated += size;
672 if (mem_allocated - mem_freed > mem_peak)
673 mem_peak = mem_allocated - mem_freed;
674 num_alloc++;
675 *pp = (void *)((char *)*pp + sizeof(size_t));
678 static void
679 mem_pre_free(pp)
680 void **pp;
682 long_u size;
684 *pp = (void *)((char *)*pp - sizeof(size_t));
685 size = *(size_t *)*pp;
686 if (size <= MEM_SIZES-1)
687 mem_frees[size-1]++;
688 else
689 mem_frees[MEM_SIZES-1]++;
690 mem_freed += size;
691 num_freed++;
695 * called on exit via atexit()
697 void
698 vim_mem_profile_dump()
700 int i, j;
702 printf("\r\n");
703 j = 0;
704 for (i = 0; i < MEM_SIZES - 1; i++)
706 if (mem_allocs[i] || mem_frees[i])
708 if (mem_frees[i] > mem_allocs[i])
709 printf("\r\n%s", _("ERROR: "));
710 printf("[%4d / %4lu-%-4lu] ", i + 1, mem_allocs[i], mem_frees[i]);
711 j++;
712 if (j > 3)
714 j = 0;
715 printf("\r\n");
720 i = MEM_SIZES - 1;
721 if (mem_allocs[i])
723 printf("\r\n");
724 if (mem_frees[i] > mem_allocs[i])
725 printf(_("ERROR: "));
726 printf("[>%d / %4lu-%-4lu]", i, mem_allocs[i], mem_frees[i]);
729 printf(_("\n[bytes] total alloc-freed %lu-%lu, in use %lu, peak use %lu\n"),
730 mem_allocated, mem_freed, mem_allocated - mem_freed, mem_peak);
731 printf(_("[calls] total re/malloc()'s %lu, total free()'s %lu\n\n"),
732 num_alloc, num_freed);
735 #endif /* MEM_PROFILE */
738 * Some memory is reserved for error messages and for being able to
739 * call mf_release_all(), which needs some memory for mf_trans_add().
741 #if defined(MSDOS) && !defined(DJGPP)
742 # define SMALL_MEM
743 # define KEEP_ROOM 8192L
744 #else
745 # define KEEP_ROOM (2 * 8192L)
746 #endif
749 * Note: if unsinged is 16 bits we can only allocate up to 64K with alloc().
750 * Use lalloc for larger blocks.
752 char_u *
753 alloc(size)
754 unsigned size;
756 return (lalloc((long_u)size, TRUE));
760 * Allocate memory and set all bytes to zero.
762 char_u *
763 alloc_clear(size)
764 unsigned size;
766 char_u *p;
768 p = (lalloc((long_u)size, TRUE));
769 if (p != NULL)
770 (void)vim_memset(p, 0, (size_t)size);
771 return p;
775 * alloc() with check for maximum line length
777 char_u *
778 alloc_check(size)
779 unsigned size;
781 #if !defined(UNIX) && !defined(__EMX__)
782 if (sizeof(int) == 2 && size > 0x7fff)
784 /* Don't hide this message */
785 emsg_silent = 0;
786 EMSG(_("E340: Line is becoming too long"));
787 return NULL;
789 #endif
790 return (lalloc((long_u)size, TRUE));
794 * Allocate memory like lalloc() and set all bytes to zero.
796 char_u *
797 lalloc_clear(size, message)
798 long_u size;
799 int message;
801 char_u *p;
803 p = (lalloc(size, message));
804 if (p != NULL)
805 (void)vim_memset(p, 0, (size_t)size);
806 return p;
810 * Low level memory allocation function.
811 * This is used often, KEEP IT FAST!
813 char_u *
814 lalloc(size, message)
815 long_u size;
816 int message;
818 char_u *p; /* pointer to new storage space */
819 static int releasing = FALSE; /* don't do mf_release_all() recursive */
820 int try_again;
821 #if defined(HAVE_AVAIL_MEM) && !defined(SMALL_MEM)
822 static long_u allocated = 0; /* allocated since last avail check */
823 #endif
825 /* Safety check for allocating zero bytes */
826 if (size == 0)
828 /* Don't hide this message */
829 emsg_silent = 0;
830 EMSGN(_("E341: Internal error: lalloc(%ld, )"), size);
831 return NULL;
834 #ifdef MEM_PROFILE
835 mem_pre_alloc_l(&size);
836 #endif
838 #if defined(MSDOS) && !defined(DJGPP)
839 if (size >= 0xfff0) /* in MSDOS we can't deal with >64K blocks */
840 p = NULL;
841 else
842 #endif
845 * Loop when out of memory: Try to release some memfile blocks and
846 * if some blocks are released call malloc again.
848 for (;;)
851 * Handle three kind of systems:
852 * 1. No check for available memory: Just return.
853 * 2. Slow check for available memory: call mch_avail_mem() after
854 * allocating KEEP_ROOM amount of memory.
855 * 3. Strict check for available memory: call mch_avail_mem()
857 if ((p = (char_u *)malloc((size_t)size)) != NULL)
859 #ifndef HAVE_AVAIL_MEM
860 /* 1. No check for available memory: Just return. */
861 goto theend;
862 #else
863 # ifndef SMALL_MEM
864 /* 2. Slow check for available memory: call mch_avail_mem() after
865 * allocating (KEEP_ROOM / 2) amount of memory. */
866 allocated += size;
867 if (allocated < KEEP_ROOM / 2)
868 goto theend;
869 allocated = 0;
870 # endif
871 /* 3. check for available memory: call mch_avail_mem() */
872 if (mch_avail_mem(TRUE) < KEEP_ROOM && !releasing)
874 vim_free((char *)p); /* System is low... no go! */
875 p = NULL;
877 else
878 goto theend;
879 #endif
882 * Remember that mf_release_all() is being called to avoid an endless
883 * loop, because mf_release_all() may call alloc() recursively.
885 if (releasing)
886 break;
887 releasing = TRUE;
889 clear_sb_text(); /* free any scrollback text */
890 try_again = mf_release_all(); /* release as many blocks as possible */
891 #ifdef FEAT_EVAL
892 try_again |= garbage_collect(); /* cleanup recursive lists/dicts */
893 #endif
895 releasing = FALSE;
896 if (!try_again)
897 break;
900 if (message && p == NULL)
901 do_outofmem_msg(size);
903 theend:
904 #ifdef MEM_PROFILE
905 mem_post_alloc((void **)&p, (size_t)size);
906 #endif
907 return p;
910 #if defined(MEM_PROFILE) || defined(PROTO)
912 * realloc() with memory profiling.
914 void *
915 mem_realloc(ptr, size)
916 void *ptr;
917 size_t size;
919 void *p;
921 mem_pre_free(&ptr);
922 mem_pre_alloc_s(&size);
924 p = realloc(ptr, size);
926 mem_post_alloc(&p, size);
928 return p;
930 #endif
933 * Avoid repeating the error message many times (they take 1 second each).
934 * Did_outofmem_msg is reset when a character is read.
936 void
937 do_outofmem_msg(size)
938 long_u size;
940 if (!did_outofmem_msg)
942 /* Don't hide this message */
943 emsg_silent = 0;
944 EMSGN(_("E342: Out of memory! (allocating %lu bytes)"), size);
945 did_outofmem_msg = TRUE;
949 #if defined(EXITFREE) || defined(PROTO)
951 # if defined(FEAT_SEARCHPATH)
952 static void free_findfile __ARGS((void));
953 # endif
956 * Free everything that we allocated.
957 * Can be used to detect memory leaks, e.g., with ccmalloc.
958 * NOTE: This is tricky! Things are freed that functions depend on. Don't be
959 * surprised if Vim crashes...
960 * Some things can't be freed, esp. things local to a library function.
962 void
963 free_all_mem()
965 buf_T *buf, *nextbuf;
966 static int entered = FALSE;
967 win_T *win;
969 /* When we cause a crash here it is caught and Vim tries to exit cleanly.
970 * Don't try freeing everything again. */
971 if (entered)
972 return;
973 entered = TRUE;
975 block_autocmds(); /* don't want to trigger autocommands here */
977 #ifdef FEAT_WINDOWS
978 /* close all tabs and windows */
979 if (first_tabpage->tp_next != NULL)
980 do_cmdline_cmd((char_u *)"tabonly!");
981 if (firstwin != lastwin)
982 do_cmdline_cmd((char_u *)"only!");
983 #endif
985 # if defined(FEAT_SPELL)
986 /* Free all spell info. */
987 spell_free_all();
988 # endif
990 # if defined(FEAT_USR_CMDS)
991 /* Clear user commands (before deleting buffers). */
992 ex_comclear(NULL);
993 # endif
995 # ifdef FEAT_MENU
996 /* Clear menus. */
997 do_cmdline_cmd((char_u *)"aunmenu *");
998 # endif
1000 /* Clear mappings, abbreviations, breakpoints. */
1001 do_cmdline_cmd((char_u *)"mapclear");
1002 do_cmdline_cmd((char_u *)"mapclear!");
1003 do_cmdline_cmd((char_u *)"abclear");
1004 # if defined(FEAT_EVAL)
1005 do_cmdline_cmd((char_u *)"breakdel *");
1006 # endif
1007 # if defined(FEAT_PROFILE)
1008 do_cmdline_cmd((char_u *)"profdel *");
1009 # endif
1011 # ifdef FEAT_TITLE
1012 free_titles();
1013 # endif
1014 # if defined(FEAT_SEARCHPATH)
1015 free_findfile();
1016 # endif
1018 /* Obviously named calls. */
1019 # if defined(FEAT_AUTOCMD)
1020 free_all_autocmds();
1021 # endif
1022 clear_termcodes();
1023 free_all_options();
1024 free_all_marks();
1025 alist_clear(&global_alist);
1026 free_homedir();
1027 free_search_patterns();
1028 free_old_sub();
1029 free_last_insert();
1030 free_prev_shellcmd();
1031 free_regexp_stuff();
1032 free_tag_stuff();
1033 free_cd_dir();
1034 set_expr_line(NULL);
1035 diff_clear(curtab);
1036 clear_sb_text(); /* free any scrollback text */
1038 /* Free some global vars. */
1039 vim_free(username);
1040 # ifdef FEAT_CLIPBOARD
1041 vim_free(clip_exclude_prog);
1042 # endif
1043 vim_free(last_cmdline);
1044 vim_free(new_last_cmdline);
1045 set_keep_msg(NULL, 0);
1046 vim_free(ff_expand_buffer);
1048 /* Clear cmdline history. */
1049 p_hi = 0;
1050 init_history();
1052 #ifdef FEAT_QUICKFIX
1053 qf_free_all(NULL);
1054 /* Free all location lists */
1055 FOR_ALL_WINDOWS(win)
1056 qf_free_all(win);
1057 #endif
1059 /* Close all script inputs. */
1060 close_all_scripts();
1062 #if defined(FEAT_WINDOWS)
1063 /* Destroy all windows. Must come before freeing buffers. */
1064 win_free_all();
1065 #endif
1067 /* Free all buffers. */
1068 for (buf = firstbuf; buf != NULL; )
1070 nextbuf = buf->b_next;
1071 close_buffer(NULL, buf, DOBUF_WIPE);
1072 if (buf_valid(buf))
1073 buf = nextbuf; /* didn't work, try next one */
1074 else
1075 buf = firstbuf;
1078 #ifdef FEAT_ARABIC
1079 free_cmdline_buf();
1080 #endif
1082 /* Clear registers. */
1083 clear_registers();
1084 ResetRedobuff();
1085 ResetRedobuff();
1087 #if defined(FEAT_CLIENTSERVER) && defined(FEAT_X11)
1088 vim_free(serverDelayedStartName);
1089 #endif
1091 /* highlight info */
1092 free_highlight();
1094 reset_last_sourcing();
1096 #ifdef FEAT_WINDOWS
1097 free_tabpage(first_tabpage);
1098 first_tabpage = NULL;
1099 #endif
1101 # ifdef UNIX
1102 /* Machine-specific free. */
1103 mch_free_mem();
1104 # endif
1106 /* message history */
1107 for (;;)
1108 if (delete_first_msg() == FAIL)
1109 break;
1111 # ifdef FEAT_EVAL
1112 eval_clear();
1113 # endif
1115 free_termoptions();
1117 /* screenlines (can't display anything now!) */
1118 free_screenlines();
1120 #if defined(USE_XSMP)
1121 xsmp_close();
1122 #endif
1123 #ifdef FEAT_GUI_GTK
1124 gui_mch_free_all();
1125 #endif
1126 clear_hl_tables();
1128 vim_free(IObuff);
1129 vim_free(NameBuff);
1131 #endif
1134 * copy a string into newly allocated memory
1136 char_u *
1137 vim_strsave(string)
1138 char_u *string;
1140 char_u *p;
1141 unsigned len;
1143 len = (unsigned)STRLEN(string) + 1;
1144 p = alloc(len);
1145 if (p != NULL)
1146 mch_memmove(p, string, (size_t)len);
1147 return p;
1150 char_u *
1151 vim_strnsave(string, len)
1152 char_u *string;
1153 int len;
1155 char_u *p;
1157 p = alloc((unsigned)(len + 1));
1158 if (p != NULL)
1160 STRNCPY(p, string, len);
1161 p[len] = NUL;
1163 return p;
1167 * Same as vim_strsave(), but any characters found in esc_chars are preceded
1168 * by a backslash.
1170 char_u *
1171 vim_strsave_escaped(string, esc_chars)
1172 char_u *string;
1173 char_u *esc_chars;
1175 return vim_strsave_escaped_ext(string, esc_chars, '\\', FALSE);
1179 * Same as vim_strsave_escaped(), but when "bsl" is TRUE also escape
1180 * characters where rem_backslash() would remove the backslash.
1181 * Escape the characters with "cc".
1183 char_u *
1184 vim_strsave_escaped_ext(string, esc_chars, cc, bsl)
1185 char_u *string;
1186 char_u *esc_chars;
1187 int cc;
1188 int bsl;
1190 char_u *p;
1191 char_u *p2;
1192 char_u *escaped_string;
1193 unsigned length;
1194 #ifdef FEAT_MBYTE
1195 int l;
1196 #endif
1199 * First count the number of backslashes required.
1200 * Then allocate the memory and insert them.
1202 length = 1; /* count the trailing NUL */
1203 for (p = string; *p; p++)
1205 #ifdef FEAT_MBYTE
1206 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
1208 length += l; /* count a multibyte char */
1209 p += l - 1;
1210 continue;
1212 #endif
1213 if (vim_strchr(esc_chars, *p) != NULL || (bsl && rem_backslash(p)))
1214 ++length; /* count a backslash */
1215 ++length; /* count an ordinary char */
1217 escaped_string = alloc(length);
1218 if (escaped_string != NULL)
1220 p2 = escaped_string;
1221 for (p = string; *p; p++)
1223 #ifdef FEAT_MBYTE
1224 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
1226 mch_memmove(p2, p, (size_t)l);
1227 p2 += l;
1228 p += l - 1; /* skip multibyte char */
1229 continue;
1231 #endif
1232 if (vim_strchr(esc_chars, *p) != NULL || (bsl && rem_backslash(p)))
1233 *p2++ = cc;
1234 *p2++ = *p;
1236 *p2 = NUL;
1238 return escaped_string;
1241 #if defined(FEAT_EVAL) || defined(PROTO)
1243 * Escape "string" for use as a shell argument with system().
1244 * This uses single quotes, except when we know we need to use double qoutes
1245 * (MS-DOS and MS-Windows without 'shellslash' set).
1246 * Returns the result in allocated memory, NULL if we have run out.
1248 char_u *
1249 vim_strsave_shellescape(string)
1250 char_u *string;
1252 unsigned length;
1253 char_u *p;
1254 char_u *d;
1255 char_u *escaped_string;
1257 /* First count the number of extra bytes required. */
1258 length = (unsigned)STRLEN(string) + 3; /* two quotes and a trailing NUL */
1259 for (p = string; *p != NUL; mb_ptr_adv(p))
1261 # if defined(WIN32) || defined(WIN16) || defined(DOS)
1262 if (!p_ssl)
1264 if (*p == '"')
1265 ++length; /* " -> "" */
1267 else
1268 # endif
1269 if (*p == '\'')
1270 length += 3; /* ' => '\'' */
1273 /* Allocate memory for the result and fill it. */
1274 escaped_string = alloc(length);
1275 if (escaped_string != NULL)
1277 d = escaped_string;
1279 /* add opening quote */
1280 # if defined(WIN32) || defined(WIN16) || defined(DOS)
1281 if (!p_ssl)
1282 *d++ = '"';
1283 else
1284 # endif
1285 *d++ = '\'';
1287 for (p = string; *p != NUL; )
1289 # if defined(WIN32) || defined(WIN16) || defined(DOS)
1290 if (!p_ssl)
1292 if (*p == '"')
1294 *d++ = '"';
1295 *d++ = '"';
1296 ++p;
1297 continue;
1300 else
1301 # endif
1302 if (*p == '\'')
1304 *d++='\'';
1305 *d++='\\';
1306 *d++='\'';
1307 *d++='\'';
1308 ++p;
1309 continue;
1312 MB_COPY_CHAR(p, d);
1315 /* add terminating quote and finish with a NUL */
1316 # if defined(WIN32) || defined(WIN16) || defined(DOS)
1317 if (!p_ssl)
1318 *d++ = '"';
1319 else
1320 # endif
1321 *d++ = '\'';
1322 *d = NUL;
1325 return escaped_string;
1327 #endif
1330 * Like vim_strsave(), but make all characters uppercase.
1331 * This uses ASCII lower-to-upper case translation, language independent.
1333 char_u *
1334 vim_strsave_up(string)
1335 char_u *string;
1337 char_u *p1;
1339 p1 = vim_strsave(string);
1340 vim_strup(p1);
1341 return p1;
1345 * Like vim_strnsave(), but make all characters uppercase.
1346 * This uses ASCII lower-to-upper case translation, language independent.
1348 char_u *
1349 vim_strnsave_up(string, len)
1350 char_u *string;
1351 int len;
1353 char_u *p1;
1355 p1 = vim_strnsave(string, len);
1356 vim_strup(p1);
1357 return p1;
1361 * ASCII lower-to-upper case translation, language independent.
1363 void
1364 vim_strup(p)
1365 char_u *p;
1367 char_u *p2;
1368 int c;
1370 if (p != NULL)
1372 p2 = p;
1373 while ((c = *p2) != NUL)
1374 #ifdef EBCDIC
1375 *p2++ = isalpha(c) ? toupper(c) : c;
1376 #else
1377 *p2++ = (c < 'a' || c > 'z') ? c : (c - 0x20);
1378 #endif
1382 #if defined(FEAT_EVAL) || defined(FEAT_SPELL) || defined(PROTO)
1384 * Make string "s" all upper-case and return it in allocated memory.
1385 * Handles multi-byte characters as well as possible.
1386 * Returns NULL when out of memory.
1388 char_u *
1389 strup_save(orig)
1390 char_u *orig;
1392 char_u *p;
1393 char_u *res;
1395 res = p = vim_strsave(orig);
1397 if (res != NULL)
1398 while (*p != NUL)
1400 # ifdef FEAT_MBYTE
1401 int l;
1403 if (enc_utf8)
1405 int c, uc;
1406 int nl;
1407 char_u *s;
1409 c = utf_ptr2char(p);
1410 uc = utf_toupper(c);
1412 /* Reallocate string when byte count changes. This is rare,
1413 * thus it's OK to do another malloc()/free(). */
1414 l = utf_ptr2len(p);
1415 nl = utf_char2len(uc);
1416 if (nl != l)
1418 s = alloc((unsigned)STRLEN(res) + 1 + nl - l);
1419 if (s == NULL)
1420 break;
1421 mch_memmove(s, res, p - res);
1422 STRCPY(s + (p - res) + nl, p + l);
1423 p = s + (p - res);
1424 vim_free(res);
1425 res = s;
1428 utf_char2bytes(uc, p);
1429 p += nl;
1431 else if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
1432 p += l; /* skip multi-byte character */
1433 else
1434 # endif
1436 *p = TOUPPER_LOC(*p); /* note that toupper() can be a macro */
1437 p++;
1441 return res;
1443 #endif
1446 * copy a space a number of times
1448 void
1449 copy_spaces(ptr, count)
1450 char_u *ptr;
1451 size_t count;
1453 size_t i = count;
1454 char_u *p = ptr;
1456 while (i--)
1457 *p++ = ' ';
1460 #if defined(FEAT_VISUALEXTRA) || defined(PROTO)
1462 * Copy a character a number of times.
1463 * Does not work for multi-byte charactes!
1465 void
1466 copy_chars(ptr, count, c)
1467 char_u *ptr;
1468 size_t count;
1469 int c;
1471 size_t i = count;
1472 char_u *p = ptr;
1474 while (i--)
1475 *p++ = c;
1477 #endif
1480 * delete spaces at the end of a string
1482 void
1483 del_trailing_spaces(ptr)
1484 char_u *ptr;
1486 char_u *q;
1488 q = ptr + STRLEN(ptr);
1489 while (--q > ptr && vim_iswhite(q[0]) && q[-1] != '\\' && q[-1] != Ctrl_V)
1490 *q = NUL;
1494 * Like strncpy(), but always terminate the result with one NUL.
1495 * "to" must be "len + 1" long!
1497 void
1498 vim_strncpy(to, from, len)
1499 char_u *to;
1500 char_u *from;
1501 size_t len;
1503 STRNCPY(to, from, len);
1504 to[len] = NUL;
1508 * Isolate one part of a string option where parts are separated with
1509 * "sep_chars".
1510 * The part is copied into "buf[maxlen]".
1511 * "*option" is advanced to the next part.
1512 * The length is returned.
1515 copy_option_part(option, buf, maxlen, sep_chars)
1516 char_u **option;
1517 char_u *buf;
1518 int maxlen;
1519 char *sep_chars;
1521 int len = 0;
1522 char_u *p = *option;
1524 /* skip '.' at start of option part, for 'suffixes' */
1525 if (*p == '.')
1526 buf[len++] = *p++;
1527 while (*p != NUL && vim_strchr((char_u *)sep_chars, *p) == NULL)
1530 * Skip backslash before a separator character and space.
1532 if (p[0] == '\\' && vim_strchr((char_u *)sep_chars, p[1]) != NULL)
1533 ++p;
1534 if (len < maxlen - 1)
1535 buf[len++] = *p;
1536 ++p;
1538 buf[len] = NUL;
1540 if (*p != NUL && *p != ',') /* skip non-standard separator */
1541 ++p;
1542 p = skip_to_option_part(p); /* p points to next file name */
1544 *option = p;
1545 return len;
1549 * Replacement for free() that ignores NULL pointers.
1550 * Also skip free() when exiting for sure, this helps when we caught a deadly
1551 * signal that was caused by a crash in free().
1553 void
1554 vim_free(x)
1555 void *x;
1557 if (x != NULL && !really_exiting)
1559 #ifdef MEM_PROFILE
1560 mem_pre_free(&x);
1561 #endif
1562 free(x);
1566 #ifndef HAVE_MEMSET
1567 void *
1568 vim_memset(ptr, c, size)
1569 void *ptr;
1570 int c;
1571 size_t size;
1573 char *p = ptr;
1575 while (size-- > 0)
1576 *p++ = c;
1577 return ptr;
1579 #endif
1581 #ifdef VIM_MEMCMP
1583 * Return zero when "b1" and "b2" are the same for "len" bytes.
1584 * Return non-zero otherwise.
1587 vim_memcmp(b1, b2, len)
1588 void *b1;
1589 void *b2;
1590 size_t len;
1592 char_u *p1 = (char_u *)b1, *p2 = (char_u *)b2;
1594 for ( ; len > 0; --len)
1596 if (*p1 != *p2)
1597 return 1;
1598 ++p1;
1599 ++p2;
1601 return 0;
1603 #endif
1605 #ifdef VIM_MEMMOVE
1607 * Version of memmove() that handles overlapping source and destination.
1608 * For systems that don't have a function that is guaranteed to do that (SYSV).
1610 void
1611 mch_memmove(dst_arg, src_arg, len)
1612 void *src_arg, *dst_arg;
1613 size_t len;
1616 * A void doesn't have a size, we use char pointers.
1618 char *dst = dst_arg, *src = src_arg;
1620 /* overlap, copy backwards */
1621 if (dst > src && dst < src + len)
1623 src += len;
1624 dst += len;
1625 while (len-- > 0)
1626 *--dst = *--src;
1628 else /* copy forwards */
1629 while (len-- > 0)
1630 *dst++ = *src++;
1632 #endif
1634 #if (!defined(HAVE_STRCASECMP) && !defined(HAVE_STRICMP)) || defined(PROTO)
1636 * Compare two strings, ignoring case, using current locale.
1637 * Doesn't work for multi-byte characters.
1638 * return 0 for match, < 0 for smaller, > 0 for bigger
1641 vim_stricmp(s1, s2)
1642 char *s1;
1643 char *s2;
1645 int i;
1647 for (;;)
1649 i = (int)TOLOWER_LOC(*s1) - (int)TOLOWER_LOC(*s2);
1650 if (i != 0)
1651 return i; /* this character different */
1652 if (*s1 == NUL)
1653 break; /* strings match until NUL */
1654 ++s1;
1655 ++s2;
1657 return 0; /* strings match */
1659 #endif
1661 #if (!defined(HAVE_STRNCASECMP) && !defined(HAVE_STRNICMP)) || defined(PROTO)
1663 * Compare two strings, for length "len", ignoring case, using current locale.
1664 * Doesn't work for multi-byte characters.
1665 * return 0 for match, < 0 for smaller, > 0 for bigger
1668 vim_strnicmp(s1, s2, len)
1669 char *s1;
1670 char *s2;
1671 size_t len;
1673 int i;
1675 while (len > 0)
1677 i = (int)TOLOWER_LOC(*s1) - (int)TOLOWER_LOC(*s2);
1678 if (i != 0)
1679 return i; /* this character different */
1680 if (*s1 == NUL)
1681 break; /* strings match until NUL */
1682 ++s1;
1683 ++s2;
1684 --len;
1686 return 0; /* strings match */
1688 #endif
1690 #if 0 /* currently not used */
1692 * Check if string "s2" appears somewhere in "s1" while ignoring case.
1693 * Return NULL if not, a pointer to the first occurrence if it does.
1695 char_u *
1696 vim_stristr(s1, s2)
1697 char_u *s1;
1698 char_u *s2;
1700 char_u *p;
1701 int len = STRLEN(s2);
1702 char_u *end = s1 + STRLEN(s1) - len;
1704 for (p = s1; p <= end; ++p)
1705 if (STRNICMP(p, s2, len) == 0)
1706 return p;
1707 return NULL;
1709 #endif
1712 * Version of strchr() and strrchr() that handle unsigned char strings
1713 * with characters from 128 to 255 correctly. It also doesn't return a
1714 * pointer to the NUL at the end of the string.
1716 char_u *
1717 vim_strchr(string, c)
1718 char_u *string;
1719 int c;
1721 char_u *p;
1722 int b;
1724 p = string;
1725 #ifdef FEAT_MBYTE
1726 if (enc_utf8 && c >= 0x80)
1728 while (*p != NUL)
1730 if (utf_ptr2char(p) == c)
1731 return p;
1732 p += (*mb_ptr2len)(p);
1734 return NULL;
1736 if (enc_dbcs != 0 && c > 255)
1738 int n2 = c & 0xff;
1740 c = ((unsigned)c >> 8) & 0xff;
1741 while ((b = *p) != NUL)
1743 if (b == c && p[1] == n2)
1744 return p;
1745 p += (*mb_ptr2len)(p);
1747 return NULL;
1749 if (has_mbyte)
1751 while ((b = *p) != NUL)
1753 if (b == c)
1754 return p;
1755 p += (*mb_ptr2len)(p);
1757 return NULL;
1759 #endif
1760 while ((b = *p) != NUL)
1762 if (b == c)
1763 return p;
1764 ++p;
1766 return NULL;
1770 * Version of strchr() that only works for bytes and handles unsigned char
1771 * strings with characters above 128 correctly. It also doesn't return a
1772 * pointer to the NUL at the end of the string.
1774 char_u *
1775 vim_strbyte(string, c)
1776 char_u *string;
1777 int c;
1779 char_u *p = string;
1781 while (*p != NUL)
1783 if (*p == c)
1784 return p;
1785 ++p;
1787 return NULL;
1791 * Search for last occurrence of "c" in "string".
1792 * Return NULL if not found.
1793 * Does not handle multi-byte char for "c"!
1795 char_u *
1796 vim_strrchr(string, c)
1797 char_u *string;
1798 int c;
1800 char_u *retval = NULL;
1801 char_u *p = string;
1803 while (*p)
1805 if (*p == c)
1806 retval = p;
1807 mb_ptr_adv(p);
1809 return retval;
1813 * Vim's version of strpbrk(), in case it's missing.
1814 * Don't generate a prototype for this, causes problems when it's not used.
1816 #ifndef PROTO
1817 # ifndef HAVE_STRPBRK
1818 # ifdef vim_strpbrk
1819 # undef vim_strpbrk
1820 # endif
1821 char_u *
1822 vim_strpbrk(s, charset)
1823 char_u *s;
1824 char_u *charset;
1826 while (*s)
1828 if (vim_strchr(charset, *s) != NULL)
1829 return s;
1830 mb_ptr_adv(s);
1832 return NULL;
1834 # endif
1835 #endif
1838 * Vim has its own isspace() function, because on some machines isspace()
1839 * can't handle characters above 128.
1842 vim_isspace(x)
1843 int x;
1845 return ((x >= 9 && x <= 13) || x == ' ');
1848 /************************************************************************
1849 * Functions for handling growing arrays.
1853 * Clear an allocated growing array.
1855 void
1856 ga_clear(gap)
1857 garray_T *gap;
1859 vim_free(gap->ga_data);
1860 ga_init(gap);
1864 * Clear a growing array that contains a list of strings.
1866 void
1867 ga_clear_strings(gap)
1868 garray_T *gap;
1870 int i;
1872 for (i = 0; i < gap->ga_len; ++i)
1873 vim_free(((char_u **)(gap->ga_data))[i]);
1874 ga_clear(gap);
1878 * Initialize a growing array. Don't forget to set ga_itemsize and
1879 * ga_growsize! Or use ga_init2().
1881 void
1882 ga_init(gap)
1883 garray_T *gap;
1885 gap->ga_data = NULL;
1886 gap->ga_maxlen = 0;
1887 gap->ga_len = 0;
1890 void
1891 ga_init2(gap, itemsize, growsize)
1892 garray_T *gap;
1893 int itemsize;
1894 int growsize;
1896 ga_init(gap);
1897 gap->ga_itemsize = itemsize;
1898 gap->ga_growsize = growsize;
1902 * Make room in growing array "gap" for at least "n" items.
1903 * Return FAIL for failure, OK otherwise.
1906 ga_grow(gap, n)
1907 garray_T *gap;
1908 int n;
1910 size_t len;
1911 char_u *pp;
1913 if (gap->ga_maxlen - gap->ga_len < n)
1915 if (n < gap->ga_growsize)
1916 n = gap->ga_growsize;
1917 len = gap->ga_itemsize * (gap->ga_len + n);
1918 pp = alloc_clear((unsigned)len);
1919 if (pp == NULL)
1920 return FAIL;
1921 gap->ga_maxlen = gap->ga_len + n;
1922 if (gap->ga_data != NULL)
1924 mch_memmove(pp, gap->ga_data,
1925 (size_t)(gap->ga_itemsize * gap->ga_len));
1926 vim_free(gap->ga_data);
1928 gap->ga_data = pp;
1930 return OK;
1934 * Concatenate a string to a growarray which contains characters.
1935 * Note: Does NOT copy the NUL at the end!
1937 void
1938 ga_concat(gap, s)
1939 garray_T *gap;
1940 char_u *s;
1942 int len = (int)STRLEN(s);
1944 if (ga_grow(gap, len) == OK)
1946 mch_memmove((char *)gap->ga_data + gap->ga_len, s, (size_t)len);
1947 gap->ga_len += len;
1952 * Append one byte to a growarray which contains bytes.
1954 void
1955 ga_append(gap, c)
1956 garray_T *gap;
1957 int c;
1959 if (ga_grow(gap, 1) == OK)
1961 *((char *)gap->ga_data + gap->ga_len) = c;
1962 ++gap->ga_len;
1966 /************************************************************************
1967 * functions that use lookup tables for various things, generally to do with
1968 * special key codes.
1972 * Some useful tables.
1975 static struct modmasktable
1977 short mod_mask; /* Bit-mask for particular key modifier */
1978 short mod_flag; /* Bit(s) for particular key modifier */
1979 char_u name; /* Single letter name of modifier */
1980 } mod_mask_table[] =
1982 {MOD_MASK_ALT, MOD_MASK_ALT, (char_u)'M'},
1983 {MOD_MASK_META, MOD_MASK_META, (char_u)'T'},
1984 {MOD_MASK_CTRL, MOD_MASK_CTRL, (char_u)'C'},
1985 {MOD_MASK_SHIFT, MOD_MASK_SHIFT, (char_u)'S'},
1986 {MOD_MASK_MULTI_CLICK, MOD_MASK_2CLICK, (char_u)'2'},
1987 {MOD_MASK_MULTI_CLICK, MOD_MASK_3CLICK, (char_u)'3'},
1988 {MOD_MASK_MULTI_CLICK, MOD_MASK_4CLICK, (char_u)'4'},
1989 #ifdef MACOS
1990 {MOD_MASK_CMD, MOD_MASK_CMD, (char_u)'D'},
1991 #endif
1992 /* 'A' must be the last one */
1993 {MOD_MASK_ALT, MOD_MASK_ALT, (char_u)'A'},
1994 {0, 0, NUL}
1998 * Shifted key terminal codes and their unshifted equivalent.
1999 * Don't add mouse codes here, they are handled separately!
2001 #define MOD_KEYS_ENTRY_SIZE 5
2003 static char_u modifier_keys_table[] =
2005 /* mod mask with modifier without modifier */
2006 MOD_MASK_SHIFT, '&', '9', '@', '1', /* begin */
2007 MOD_MASK_SHIFT, '&', '0', '@', '2', /* cancel */
2008 MOD_MASK_SHIFT, '*', '1', '@', '4', /* command */
2009 MOD_MASK_SHIFT, '*', '2', '@', '5', /* copy */
2010 MOD_MASK_SHIFT, '*', '3', '@', '6', /* create */
2011 MOD_MASK_SHIFT, '*', '4', 'k', 'D', /* delete char */
2012 MOD_MASK_SHIFT, '*', '5', 'k', 'L', /* delete line */
2013 MOD_MASK_SHIFT, '*', '7', '@', '7', /* end */
2014 MOD_MASK_CTRL, KS_EXTRA, (int)KE_C_END, '@', '7', /* end */
2015 MOD_MASK_SHIFT, '*', '9', '@', '9', /* exit */
2016 MOD_MASK_SHIFT, '*', '0', '@', '0', /* find */
2017 MOD_MASK_SHIFT, '#', '1', '%', '1', /* help */
2018 MOD_MASK_SHIFT, '#', '2', 'k', 'h', /* home */
2019 MOD_MASK_CTRL, KS_EXTRA, (int)KE_C_HOME, 'k', 'h', /* home */
2020 MOD_MASK_SHIFT, '#', '3', 'k', 'I', /* insert */
2021 MOD_MASK_SHIFT, '#', '4', 'k', 'l', /* left arrow */
2022 MOD_MASK_CTRL, KS_EXTRA, (int)KE_C_LEFT, 'k', 'l', /* left arrow */
2023 MOD_MASK_SHIFT, '%', 'a', '%', '3', /* message */
2024 MOD_MASK_SHIFT, '%', 'b', '%', '4', /* move */
2025 MOD_MASK_SHIFT, '%', 'c', '%', '5', /* next */
2026 MOD_MASK_SHIFT, '%', 'd', '%', '7', /* options */
2027 MOD_MASK_SHIFT, '%', 'e', '%', '8', /* previous */
2028 MOD_MASK_SHIFT, '%', 'f', '%', '9', /* print */
2029 MOD_MASK_SHIFT, '%', 'g', '%', '0', /* redo */
2030 MOD_MASK_SHIFT, '%', 'h', '&', '3', /* replace */
2031 MOD_MASK_SHIFT, '%', 'i', 'k', 'r', /* right arr. */
2032 MOD_MASK_CTRL, KS_EXTRA, (int)KE_C_RIGHT, 'k', 'r', /* right arr. */
2033 MOD_MASK_SHIFT, '%', 'j', '&', '5', /* resume */
2034 MOD_MASK_SHIFT, '!', '1', '&', '6', /* save */
2035 MOD_MASK_SHIFT, '!', '2', '&', '7', /* suspend */
2036 MOD_MASK_SHIFT, '!', '3', '&', '8', /* undo */
2037 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_UP, 'k', 'u', /* up arrow */
2038 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_DOWN, 'k', 'd', /* down arrow */
2040 /* vt100 F1 */
2041 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_XF1, KS_EXTRA, (int)KE_XF1,
2042 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_XF2, KS_EXTRA, (int)KE_XF2,
2043 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_XF3, KS_EXTRA, (int)KE_XF3,
2044 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_XF4, KS_EXTRA, (int)KE_XF4,
2046 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F1, 'k', '1', /* F1 */
2047 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F2, 'k', '2',
2048 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F3, 'k', '3',
2049 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F4, 'k', '4',
2050 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F5, 'k', '5',
2051 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F6, 'k', '6',
2052 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F7, 'k', '7',
2053 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F8, 'k', '8',
2054 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F9, 'k', '9',
2055 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F10, 'k', ';', /* F10 */
2057 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F11, 'F', '1',
2058 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F12, 'F', '2',
2059 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F13, 'F', '3',
2060 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F14, 'F', '4',
2061 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F15, 'F', '5',
2062 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F16, 'F', '6',
2063 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F17, 'F', '7',
2064 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F18, 'F', '8',
2065 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F19, 'F', '9',
2066 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F20, 'F', 'A',
2068 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F21, 'F', 'B',
2069 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F22, 'F', 'C',
2070 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F23, 'F', 'D',
2071 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F24, 'F', 'E',
2072 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F25, 'F', 'F',
2073 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F26, 'F', 'G',
2074 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F27, 'F', 'H',
2075 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F28, 'F', 'I',
2076 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F29, 'F', 'J',
2077 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F30, 'F', 'K',
2079 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F31, 'F', 'L',
2080 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F32, 'F', 'M',
2081 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F33, 'F', 'N',
2082 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F34, 'F', 'O',
2083 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F35, 'F', 'P',
2084 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F36, 'F', 'Q',
2085 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F37, 'F', 'R',
2087 /* TAB pseudo code*/
2088 MOD_MASK_SHIFT, 'k', 'B', KS_EXTRA, (int)KE_TAB,
2093 static struct key_name_entry
2095 int key; /* Special key code or ascii value */
2096 char_u *name; /* Name of key */
2097 } key_names_table[] =
2099 {' ', (char_u *)"Space"},
2100 {TAB, (char_u *)"Tab"},
2101 {K_TAB, (char_u *)"Tab"},
2102 {NL, (char_u *)"NL"},
2103 {NL, (char_u *)"NewLine"}, /* Alternative name */
2104 {NL, (char_u *)"LineFeed"}, /* Alternative name */
2105 {NL, (char_u *)"LF"}, /* Alternative name */
2106 {CAR, (char_u *)"CR"},
2107 {CAR, (char_u *)"Return"}, /* Alternative name */
2108 {CAR, (char_u *)"Enter"}, /* Alternative name */
2109 {K_BS, (char_u *)"BS"},
2110 {K_BS, (char_u *)"BackSpace"}, /* Alternative name */
2111 {ESC, (char_u *)"Esc"},
2112 {CSI, (char_u *)"CSI"},
2113 {K_CSI, (char_u *)"xCSI"},
2114 {'|', (char_u *)"Bar"},
2115 {'\\', (char_u *)"Bslash"},
2116 {K_DEL, (char_u *)"Del"},
2117 {K_DEL, (char_u *)"Delete"}, /* Alternative name */
2118 {K_KDEL, (char_u *)"kDel"},
2119 {K_UP, (char_u *)"Up"},
2120 {K_DOWN, (char_u *)"Down"},
2121 {K_LEFT, (char_u *)"Left"},
2122 {K_RIGHT, (char_u *)"Right"},
2123 {K_XUP, (char_u *)"xUp"},
2124 {K_XDOWN, (char_u *)"xDown"},
2125 {K_XLEFT, (char_u *)"xLeft"},
2126 {K_XRIGHT, (char_u *)"xRight"},
2128 {K_F1, (char_u *)"F1"},
2129 {K_F2, (char_u *)"F2"},
2130 {K_F3, (char_u *)"F3"},
2131 {K_F4, (char_u *)"F4"},
2132 {K_F5, (char_u *)"F5"},
2133 {K_F6, (char_u *)"F6"},
2134 {K_F7, (char_u *)"F7"},
2135 {K_F8, (char_u *)"F8"},
2136 {K_F9, (char_u *)"F9"},
2137 {K_F10, (char_u *)"F10"},
2139 {K_F11, (char_u *)"F11"},
2140 {K_F12, (char_u *)"F12"},
2141 {K_F13, (char_u *)"F13"},
2142 {K_F14, (char_u *)"F14"},
2143 {K_F15, (char_u *)"F15"},
2144 {K_F16, (char_u *)"F16"},
2145 {K_F17, (char_u *)"F17"},
2146 {K_F18, (char_u *)"F18"},
2147 {K_F19, (char_u *)"F19"},
2148 {K_F20, (char_u *)"F20"},
2150 {K_F21, (char_u *)"F21"},
2151 {K_F22, (char_u *)"F22"},
2152 {K_F23, (char_u *)"F23"},
2153 {K_F24, (char_u *)"F24"},
2154 {K_F25, (char_u *)"F25"},
2155 {K_F26, (char_u *)"F26"},
2156 {K_F27, (char_u *)"F27"},
2157 {K_F28, (char_u *)"F28"},
2158 {K_F29, (char_u *)"F29"},
2159 {K_F30, (char_u *)"F30"},
2161 {K_F31, (char_u *)"F31"},
2162 {K_F32, (char_u *)"F32"},
2163 {K_F33, (char_u *)"F33"},
2164 {K_F34, (char_u *)"F34"},
2165 {K_F35, (char_u *)"F35"},
2166 {K_F36, (char_u *)"F36"},
2167 {K_F37, (char_u *)"F37"},
2169 {K_XF1, (char_u *)"xF1"},
2170 {K_XF2, (char_u *)"xF2"},
2171 {K_XF3, (char_u *)"xF3"},
2172 {K_XF4, (char_u *)"xF4"},
2174 {K_HELP, (char_u *)"Help"},
2175 {K_UNDO, (char_u *)"Undo"},
2176 {K_INS, (char_u *)"Insert"},
2177 {K_INS, (char_u *)"Ins"}, /* Alternative name */
2178 {K_KINS, (char_u *)"kInsert"},
2179 {K_HOME, (char_u *)"Home"},
2180 {K_KHOME, (char_u *)"kHome"},
2181 {K_XHOME, (char_u *)"xHome"},
2182 {K_ZHOME, (char_u *)"zHome"},
2183 {K_END, (char_u *)"End"},
2184 {K_KEND, (char_u *)"kEnd"},
2185 {K_XEND, (char_u *)"xEnd"},
2186 {K_ZEND, (char_u *)"zEnd"},
2187 {K_PAGEUP, (char_u *)"PageUp"},
2188 {K_PAGEDOWN, (char_u *)"PageDown"},
2189 {K_KPAGEUP, (char_u *)"kPageUp"},
2190 {K_KPAGEDOWN, (char_u *)"kPageDown"},
2192 {K_KPLUS, (char_u *)"kPlus"},
2193 {K_KMINUS, (char_u *)"kMinus"},
2194 {K_KDIVIDE, (char_u *)"kDivide"},
2195 {K_KMULTIPLY, (char_u *)"kMultiply"},
2196 {K_KENTER, (char_u *)"kEnter"},
2197 {K_KPOINT, (char_u *)"kPoint"},
2199 {K_K0, (char_u *)"k0"},
2200 {K_K1, (char_u *)"k1"},
2201 {K_K2, (char_u *)"k2"},
2202 {K_K3, (char_u *)"k3"},
2203 {K_K4, (char_u *)"k4"},
2204 {K_K5, (char_u *)"k5"},
2205 {K_K6, (char_u *)"k6"},
2206 {K_K7, (char_u *)"k7"},
2207 {K_K8, (char_u *)"k8"},
2208 {K_K9, (char_u *)"k9"},
2210 {'<', (char_u *)"lt"},
2212 {K_MOUSE, (char_u *)"Mouse"},
2213 {K_NETTERM_MOUSE, (char_u *)"NetMouse"},
2214 {K_DEC_MOUSE, (char_u *)"DecMouse"},
2215 {K_JSBTERM_MOUSE, (char_u *)"JsbMouse"},
2216 {K_PTERM_MOUSE, (char_u *)"PtermMouse"},
2217 {K_LEFTMOUSE, (char_u *)"LeftMouse"},
2218 {K_LEFTMOUSE_NM, (char_u *)"LeftMouseNM"},
2219 {K_LEFTDRAG, (char_u *)"LeftDrag"},
2220 {K_LEFTRELEASE, (char_u *)"LeftRelease"},
2221 {K_LEFTRELEASE_NM, (char_u *)"LeftReleaseNM"},
2222 {K_MIDDLEMOUSE, (char_u *)"MiddleMouse"},
2223 {K_MIDDLEDRAG, (char_u *)"MiddleDrag"},
2224 {K_MIDDLERELEASE, (char_u *)"MiddleRelease"},
2225 {K_RIGHTMOUSE, (char_u *)"RightMouse"},
2226 {K_RIGHTDRAG, (char_u *)"RightDrag"},
2227 {K_RIGHTRELEASE, (char_u *)"RightRelease"},
2228 {K_MOUSEDOWN, (char_u *)"MouseDown"},
2229 {K_MOUSEUP, (char_u *)"MouseUp"},
2230 {K_X1MOUSE, (char_u *)"X1Mouse"},
2231 {K_X1DRAG, (char_u *)"X1Drag"},
2232 {K_X1RELEASE, (char_u *)"X1Release"},
2233 {K_X2MOUSE, (char_u *)"X2Mouse"},
2234 {K_X2DRAG, (char_u *)"X2Drag"},
2235 {K_X2RELEASE, (char_u *)"X2Release"},
2236 {K_DROP, (char_u *)"Drop"},
2237 {K_ZERO, (char_u *)"Nul"},
2238 #ifdef FEAT_EVAL
2239 {K_SNR, (char_u *)"SNR"},
2240 #endif
2241 {K_PLUG, (char_u *)"Plug"},
2242 {0, NULL}
2245 #define KEY_NAMES_TABLE_LEN (sizeof(key_names_table) / sizeof(struct key_name_entry))
2247 #ifdef FEAT_MOUSE
2248 static struct mousetable
2250 int pseudo_code; /* Code for pseudo mouse event */
2251 int button; /* Which mouse button is it? */
2252 int is_click; /* Is it a mouse button click event? */
2253 int is_drag; /* Is it a mouse drag event? */
2254 } mouse_table[] =
2256 {(int)KE_LEFTMOUSE, MOUSE_LEFT, TRUE, FALSE},
2257 #ifdef FEAT_GUI
2258 {(int)KE_LEFTMOUSE_NM, MOUSE_LEFT, TRUE, FALSE},
2259 #endif
2260 {(int)KE_LEFTDRAG, MOUSE_LEFT, FALSE, TRUE},
2261 {(int)KE_LEFTRELEASE, MOUSE_LEFT, FALSE, FALSE},
2262 #ifdef FEAT_GUI
2263 {(int)KE_LEFTRELEASE_NM, MOUSE_LEFT, FALSE, FALSE},
2264 #endif
2265 {(int)KE_MIDDLEMOUSE, MOUSE_MIDDLE, TRUE, FALSE},
2266 {(int)KE_MIDDLEDRAG, MOUSE_MIDDLE, FALSE, TRUE},
2267 {(int)KE_MIDDLERELEASE, MOUSE_MIDDLE, FALSE, FALSE},
2268 {(int)KE_RIGHTMOUSE, MOUSE_RIGHT, TRUE, FALSE},
2269 {(int)KE_RIGHTDRAG, MOUSE_RIGHT, FALSE, TRUE},
2270 {(int)KE_RIGHTRELEASE, MOUSE_RIGHT, FALSE, FALSE},
2271 {(int)KE_X1MOUSE, MOUSE_X1, TRUE, FALSE},
2272 {(int)KE_X1DRAG, MOUSE_X1, FALSE, TRUE},
2273 {(int)KE_X1RELEASE, MOUSE_X1, FALSE, FALSE},
2274 {(int)KE_X2MOUSE, MOUSE_X2, TRUE, FALSE},
2275 {(int)KE_X2DRAG, MOUSE_X2, FALSE, TRUE},
2276 {(int)KE_X2RELEASE, MOUSE_X2, FALSE, FALSE},
2277 /* DRAG without CLICK */
2278 {(int)KE_IGNORE, MOUSE_RELEASE, FALSE, TRUE},
2279 /* RELEASE without CLICK */
2280 {(int)KE_IGNORE, MOUSE_RELEASE, FALSE, FALSE},
2281 {0, 0, 0, 0},
2283 #endif /* FEAT_MOUSE */
2286 * Return the modifier mask bit (MOD_MASK_*) which corresponds to the given
2287 * modifier name ('S' for Shift, 'C' for Ctrl etc).
2290 name_to_mod_mask(c)
2291 int c;
2293 int i;
2295 c = TOUPPER_ASC(c);
2296 for (i = 0; mod_mask_table[i].mod_mask != 0; i++)
2297 if (c == mod_mask_table[i].name)
2298 return mod_mask_table[i].mod_flag;
2299 return 0;
2303 * Check if if there is a special key code for "key" that includes the
2304 * modifiers specified.
2307 simplify_key(key, modifiers)
2308 int key;
2309 int *modifiers;
2311 int i;
2312 int key0;
2313 int key1;
2315 if (*modifiers & (MOD_MASK_SHIFT | MOD_MASK_CTRL | MOD_MASK_ALT))
2317 /* TAB is a special case */
2318 if (key == TAB && (*modifiers & MOD_MASK_SHIFT))
2320 *modifiers &= ~MOD_MASK_SHIFT;
2321 return K_S_TAB;
2323 key0 = KEY2TERMCAP0(key);
2324 key1 = KEY2TERMCAP1(key);
2325 for (i = 0; modifier_keys_table[i] != NUL; i += MOD_KEYS_ENTRY_SIZE)
2326 if (key0 == modifier_keys_table[i + 3]
2327 && key1 == modifier_keys_table[i + 4]
2328 && (*modifiers & modifier_keys_table[i]))
2330 *modifiers &= ~modifier_keys_table[i];
2331 return TERMCAP2KEY(modifier_keys_table[i + 1],
2332 modifier_keys_table[i + 2]);
2335 return key;
2339 * Change <xHome> to <Home>, <xUp> to <Up>, etc.
2342 handle_x_keys(key)
2343 int key;
2345 switch (key)
2347 case K_XUP: return K_UP;
2348 case K_XDOWN: return K_DOWN;
2349 case K_XLEFT: return K_LEFT;
2350 case K_XRIGHT: return K_RIGHT;
2351 case K_XHOME: return K_HOME;
2352 case K_ZHOME: return K_HOME;
2353 case K_XEND: return K_END;
2354 case K_ZEND: return K_END;
2355 case K_XF1: return K_F1;
2356 case K_XF2: return K_F2;
2357 case K_XF3: return K_F3;
2358 case K_XF4: return K_F4;
2359 case K_S_XF1: return K_S_F1;
2360 case K_S_XF2: return K_S_F2;
2361 case K_S_XF3: return K_S_F3;
2362 case K_S_XF4: return K_S_F4;
2364 return key;
2368 * Return a string which contains the name of the given key when the given
2369 * modifiers are down.
2371 char_u *
2372 get_special_key_name(c, modifiers)
2373 int c;
2374 int modifiers;
2376 static char_u string[MAX_KEY_NAME_LEN + 1];
2378 int i, idx;
2379 int table_idx;
2380 char_u *s;
2382 string[0] = '<';
2383 idx = 1;
2385 /* Key that stands for a normal character. */
2386 if (IS_SPECIAL(c) && KEY2TERMCAP0(c) == KS_KEY)
2387 c = KEY2TERMCAP1(c);
2390 * Translate shifted special keys into unshifted keys and set modifier.
2391 * Same for CTRL and ALT modifiers.
2393 if (IS_SPECIAL(c))
2395 for (i = 0; modifier_keys_table[i] != 0; i += MOD_KEYS_ENTRY_SIZE)
2396 if ( KEY2TERMCAP0(c) == (int)modifier_keys_table[i + 1]
2397 && (int)KEY2TERMCAP1(c) == (int)modifier_keys_table[i + 2])
2399 modifiers |= modifier_keys_table[i];
2400 c = TERMCAP2KEY(modifier_keys_table[i + 3],
2401 modifier_keys_table[i + 4]);
2402 break;
2406 /* try to find the key in the special key table */
2407 table_idx = find_special_key_in_table(c);
2410 * When not a known special key, and not a printable character, try to
2411 * extract modifiers.
2413 if (c > 0
2414 #ifdef FEAT_MBYTE
2415 && (*mb_char2len)(c) == 1
2416 #endif
2419 if (table_idx < 0
2420 && (!vim_isprintc(c) || (c & 0x7f) == ' ')
2421 && (c & 0x80))
2423 c &= 0x7f;
2424 modifiers |= MOD_MASK_ALT;
2425 /* try again, to find the un-alted key in the special key table */
2426 table_idx = find_special_key_in_table(c);
2428 if (table_idx < 0 && !vim_isprintc(c) && c < ' ')
2430 #ifdef EBCDIC
2431 c = CtrlChar(c);
2432 #else
2433 c += '@';
2434 #endif
2435 modifiers |= MOD_MASK_CTRL;
2439 /* translate the modifier into a string */
2440 for (i = 0; mod_mask_table[i].name != 'A'; i++)
2441 if ((modifiers & mod_mask_table[i].mod_mask)
2442 == mod_mask_table[i].mod_flag)
2444 string[idx++] = mod_mask_table[i].name;
2445 string[idx++] = (char_u)'-';
2448 if (table_idx < 0) /* unknown special key, may output t_xx */
2450 if (IS_SPECIAL(c))
2452 string[idx++] = 't';
2453 string[idx++] = '_';
2454 string[idx++] = KEY2TERMCAP0(c);
2455 string[idx++] = KEY2TERMCAP1(c);
2457 /* Not a special key, only modifiers, output directly */
2458 else
2460 #ifdef FEAT_MBYTE
2461 if (has_mbyte && (*mb_char2len)(c) > 1)
2462 idx += (*mb_char2bytes)(c, string + idx);
2463 else
2464 #endif
2465 if (vim_isprintc(c))
2466 string[idx++] = c;
2467 else
2469 s = transchar(c);
2470 while (*s)
2471 string[idx++] = *s++;
2475 else /* use name of special key */
2477 STRCPY(string + idx, key_names_table[table_idx].name);
2478 idx = (int)STRLEN(string);
2480 string[idx++] = '>';
2481 string[idx] = NUL;
2482 return string;
2486 * Try translating a <> name at (*srcp)[] to dst[].
2487 * Return the number of characters added to dst[], zero for no match.
2488 * If there is a match, srcp is advanced to after the <> name.
2489 * dst[] must be big enough to hold the result (up to six characters)!
2492 trans_special(srcp, dst, keycode)
2493 char_u **srcp;
2494 char_u *dst;
2495 int keycode; /* prefer key code, e.g. K_DEL instead of DEL */
2497 int modifiers = 0;
2498 int key;
2499 int dlen = 0;
2501 key = find_special_key(srcp, &modifiers, keycode);
2502 if (key == 0)
2503 return 0;
2505 /* Put the appropriate modifier in a string */
2506 if (modifiers != 0)
2508 dst[dlen++] = K_SPECIAL;
2509 dst[dlen++] = KS_MODIFIER;
2510 dst[dlen++] = modifiers;
2513 if (IS_SPECIAL(key))
2515 dst[dlen++] = K_SPECIAL;
2516 dst[dlen++] = KEY2TERMCAP0(key);
2517 dst[dlen++] = KEY2TERMCAP1(key);
2519 #ifdef FEAT_MBYTE
2520 else if (has_mbyte && !keycode)
2521 dlen += (*mb_char2bytes)(key, dst + dlen);
2522 #endif
2523 else if (keycode)
2524 dlen = (int)(add_char2buf(key, dst + dlen) - dst);
2525 else
2526 dst[dlen++] = key;
2528 return dlen;
2532 * Try translating a <> name at (*srcp)[], return the key and modifiers.
2533 * srcp is advanced to after the <> name.
2534 * returns 0 if there is no match.
2537 find_special_key(srcp, modp, keycode)
2538 char_u **srcp;
2539 int *modp;
2540 int keycode; /* prefer key code, e.g. K_DEL instead of DEL */
2542 char_u *last_dash;
2543 char_u *end_of_name;
2544 char_u *src;
2545 char_u *bp;
2546 int modifiers;
2547 int bit;
2548 int key;
2549 unsigned long n;
2551 src = *srcp;
2552 if (src[0] != '<')
2553 return 0;
2555 /* Find end of modifier list */
2556 last_dash = src;
2557 for (bp = src + 1; *bp == '-' || vim_isIDc(*bp); bp++)
2559 if (*bp == '-')
2561 last_dash = bp;
2562 if (bp[1] != NUL && bp[2] == '>')
2563 ++bp; /* anything accepted, like <C-?> */
2565 if (bp[0] == 't' && bp[1] == '_' && bp[2] && bp[3])
2566 bp += 3; /* skip t_xx, xx may be '-' or '>' */
2569 if (*bp == '>') /* found matching '>' */
2571 end_of_name = bp + 1;
2573 if (STRNICMP(src + 1, "char-", 5) == 0 && VIM_ISDIGIT(src[6]))
2575 /* <Char-123> or <Char-033> or <Char-0x33> */
2576 vim_str2nr(src + 6, NULL, NULL, TRUE, TRUE, NULL, &n);
2577 *modp = 0;
2578 *srcp = end_of_name;
2579 return (int)n;
2582 /* Which modifiers are given? */
2583 modifiers = 0x0;
2584 for (bp = src + 1; bp < last_dash; bp++)
2586 if (*bp != '-')
2588 bit = name_to_mod_mask(*bp);
2589 if (bit == 0x0)
2590 break; /* Illegal modifier name */
2591 modifiers |= bit;
2596 * Legal modifier name.
2598 if (bp >= last_dash)
2601 * Modifier with single letter, or special key name.
2603 if (modifiers != 0 && last_dash[2] == '>')
2604 key = last_dash[1];
2605 else
2607 key = get_special_key_code(last_dash + 1);
2608 key = handle_x_keys(key);
2612 * get_special_key_code() may return NUL for invalid
2613 * special key name.
2615 if (key != NUL)
2618 * Only use a modifier when there is no special key code that
2619 * includes the modifier.
2621 key = simplify_key(key, &modifiers);
2623 if (!keycode)
2625 /* don't want keycode, use single byte code */
2626 if (key == K_BS)
2627 key = BS;
2628 else if (key == K_DEL || key == K_KDEL)
2629 key = DEL;
2633 * Normal Key with modifier: Try to make a single byte code.
2635 if (!IS_SPECIAL(key))
2636 key = extract_modifiers(key, &modifiers);
2638 *modp = modifiers;
2639 *srcp = end_of_name;
2640 return key;
2644 return 0;
2648 * Try to include modifiers in the key.
2649 * Changes "Shift-a" to 'A', "Alt-A" to 0xc0, etc.
2652 extract_modifiers(key, modp)
2653 int key;
2654 int *modp;
2656 int modifiers = *modp;
2658 #ifdef MACOS
2659 /* Command-key really special, No fancynest */
2660 if (!(modifiers & MOD_MASK_CMD))
2661 #endif
2662 if ((modifiers & MOD_MASK_SHIFT) && ASCII_ISALPHA(key))
2664 key = TOUPPER_ASC(key);
2665 modifiers &= ~MOD_MASK_SHIFT;
2667 if ((modifiers & MOD_MASK_CTRL)
2668 #ifdef EBCDIC
2669 /* * TODO: EBCDIC Better use:
2670 * && (Ctrl_chr(key) || key == '?')
2671 * ??? */
2672 && strchr("?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_", key)
2673 != NULL
2674 #else
2675 && ((key >= '?' && key <= '_') || ASCII_ISALPHA(key))
2676 #endif
2679 key = Ctrl_chr(key);
2680 modifiers &= ~MOD_MASK_CTRL;
2681 /* <C-@> is <Nul> */
2682 if (key == 0)
2683 key = K_ZERO;
2685 #ifdef MACOS
2686 /* Command-key really special, No fancynest */
2687 if (!(modifiers & MOD_MASK_CMD))
2688 #endif
2689 if ((modifiers & MOD_MASK_ALT) && key < 0x80
2690 #ifdef FEAT_MBYTE
2691 && !enc_dbcs /* avoid creating a lead byte */
2692 #endif
2695 key |= 0x80;
2696 modifiers &= ~MOD_MASK_ALT; /* remove the META modifier */
2699 *modp = modifiers;
2700 return key;
2704 * Try to find key "c" in the special key table.
2705 * Return the index when found, -1 when not found.
2708 find_special_key_in_table(c)
2709 int c;
2711 int i;
2713 for (i = 0; key_names_table[i].name != NULL; i++)
2714 if (c == key_names_table[i].key)
2715 break;
2716 if (key_names_table[i].name == NULL)
2717 i = -1;
2718 return i;
2722 * Find the special key with the given name (the given string does not have to
2723 * end with NUL, the name is assumed to end before the first non-idchar).
2724 * If the name starts with "t_" the next two characters are interpreted as a
2725 * termcap name.
2726 * Return the key code, or 0 if not found.
2729 get_special_key_code(name)
2730 char_u *name;
2732 char_u *table_name;
2733 char_u string[3];
2734 int i, j;
2737 * If it's <t_xx> we get the code for xx from the termcap
2739 if (name[0] == 't' && name[1] == '_' && name[2] != NUL && name[3] != NUL)
2741 string[0] = name[2];
2742 string[1] = name[3];
2743 string[2] = NUL;
2744 if (add_termcap_entry(string, FALSE) == OK)
2745 return TERMCAP2KEY(name[2], name[3]);
2747 else
2748 for (i = 0; key_names_table[i].name != NULL; i++)
2750 table_name = key_names_table[i].name;
2751 for (j = 0; vim_isIDc(name[j]) && table_name[j] != NUL; j++)
2752 if (TOLOWER_ASC(table_name[j]) != TOLOWER_ASC(name[j]))
2753 break;
2754 if (!vim_isIDc(name[j]) && table_name[j] == NUL)
2755 return key_names_table[i].key;
2757 return 0;
2760 #ifdef FEAT_CMDL_COMPL
2761 char_u *
2762 get_key_name(i)
2763 int i;
2765 if (i >= KEY_NAMES_TABLE_LEN)
2766 return NULL;
2767 return key_names_table[i].name;
2769 #endif
2771 #ifdef FEAT_MOUSE
2773 * Look up the given mouse code to return the relevant information in the other
2774 * arguments. Return which button is down or was released.
2777 get_mouse_button(code, is_click, is_drag)
2778 int code;
2779 int *is_click;
2780 int *is_drag;
2782 int i;
2784 for (i = 0; mouse_table[i].pseudo_code; i++)
2785 if (code == mouse_table[i].pseudo_code)
2787 *is_click = mouse_table[i].is_click;
2788 *is_drag = mouse_table[i].is_drag;
2789 return mouse_table[i].button;
2791 return 0; /* Shouldn't get here */
2795 * Return the appropriate pseudo mouse event token (KE_LEFTMOUSE etc) based on
2796 * the given information about which mouse button is down, and whether the
2797 * mouse was clicked, dragged or released.
2800 get_pseudo_mouse_code(button, is_click, is_drag)
2801 int button; /* eg MOUSE_LEFT */
2802 int is_click;
2803 int is_drag;
2805 int i;
2807 for (i = 0; mouse_table[i].pseudo_code; i++)
2808 if (button == mouse_table[i].button
2809 && is_click == mouse_table[i].is_click
2810 && is_drag == mouse_table[i].is_drag)
2812 #ifdef FEAT_GUI
2813 /* Trick: a non mappable left click and release has mouse_col -1
2814 * or added MOUSE_COLOFF. Used for 'mousefocus' in
2815 * gui_mouse_moved() */
2816 if (mouse_col < 0 || mouse_col > MOUSE_COLOFF)
2818 if (mouse_col < 0)
2819 mouse_col = 0;
2820 else
2821 mouse_col -= MOUSE_COLOFF;
2822 if (mouse_table[i].pseudo_code == (int)KE_LEFTMOUSE)
2823 return (int)KE_LEFTMOUSE_NM;
2824 if (mouse_table[i].pseudo_code == (int)KE_LEFTRELEASE)
2825 return (int)KE_LEFTRELEASE_NM;
2827 #endif
2828 return mouse_table[i].pseudo_code;
2830 return (int)KE_IGNORE; /* not recognized, ignore it */
2832 #endif /* FEAT_MOUSE */
2835 * Return the current end-of-line type: EOL_DOS, EOL_UNIX or EOL_MAC.
2838 get_fileformat(buf)
2839 buf_T *buf;
2841 int c = *buf->b_p_ff;
2843 if (buf->b_p_bin || c == 'u')
2844 return EOL_UNIX;
2845 if (c == 'm')
2846 return EOL_MAC;
2847 return EOL_DOS;
2851 * Like get_fileformat(), but override 'fileformat' with "p" for "++opt=val"
2852 * argument.
2855 get_fileformat_force(buf, eap)
2856 buf_T *buf;
2857 exarg_T *eap; /* can be NULL! */
2859 int c;
2861 if (eap != NULL && eap->force_ff != 0)
2862 c = eap->cmd[eap->force_ff];
2863 else
2865 if ((eap != NULL && eap->force_bin != 0)
2866 ? (eap->force_bin == FORCE_BIN) : buf->b_p_bin)
2867 return EOL_UNIX;
2868 c = *buf->b_p_ff;
2870 if (c == 'u')
2871 return EOL_UNIX;
2872 if (c == 'm')
2873 return EOL_MAC;
2874 return EOL_DOS;
2878 * Set the current end-of-line type to EOL_DOS, EOL_UNIX or EOL_MAC.
2879 * Sets both 'textmode' and 'fileformat'.
2880 * Note: Does _not_ set global value of 'textmode'!
2882 void
2883 set_fileformat(t, opt_flags)
2884 int t;
2885 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
2887 char *p = NULL;
2889 switch (t)
2891 case EOL_DOS:
2892 p = FF_DOS;
2893 curbuf->b_p_tx = TRUE;
2894 break;
2895 case EOL_UNIX:
2896 p = FF_UNIX;
2897 curbuf->b_p_tx = FALSE;
2898 break;
2899 case EOL_MAC:
2900 p = FF_MAC;
2901 curbuf->b_p_tx = FALSE;
2902 break;
2904 if (p != NULL)
2905 set_string_option_direct((char_u *)"ff", -1, (char_u *)p,
2906 OPT_FREE | opt_flags, 0);
2908 #ifdef FEAT_WINDOWS
2909 /* This may cause the buffer to become (un)modified. */
2910 check_status(curbuf);
2911 redraw_tabline = TRUE;
2912 #endif
2913 #ifdef FEAT_TITLE
2914 need_maketitle = TRUE; /* set window title later */
2915 #endif
2919 * Return the default fileformat from 'fileformats'.
2922 default_fileformat()
2924 switch (*p_ffs)
2926 case 'm': return EOL_MAC;
2927 case 'd': return EOL_DOS;
2929 return EOL_UNIX;
2933 * Call shell. Calls mch_call_shell, with 'shellxquote' added.
2936 call_shell(cmd, opt)
2937 char_u *cmd;
2938 int opt;
2940 char_u *ncmd;
2941 int retval;
2942 #ifdef FEAT_PROFILE
2943 proftime_T wait_time;
2944 #endif
2946 if (p_verbose > 3)
2948 verbose_enter();
2949 smsg((char_u *)_("Calling shell to execute: \"%s\""),
2950 cmd == NULL ? p_sh : cmd);
2951 out_char('\n');
2952 cursor_on();
2953 verbose_leave();
2956 #ifdef FEAT_PROFILE
2957 if (do_profiling == PROF_YES)
2958 prof_child_enter(&wait_time);
2959 #endif
2961 if (*p_sh == NUL)
2963 EMSG(_(e_shellempty));
2964 retval = -1;
2966 else
2968 #ifdef FEAT_GUI_MSWIN
2969 /* Don't hide the pointer while executing a shell command. */
2970 gui_mch_mousehide(FALSE);
2971 #endif
2972 #ifdef FEAT_GUI
2973 ++hold_gui_events;
2974 #endif
2975 /* The external command may update a tags file, clear cached tags. */
2976 tag_freematch();
2978 if (cmd == NULL || *p_sxq == NUL)
2979 retval = mch_call_shell(cmd, opt);
2980 else
2982 ncmd = alloc((unsigned)(STRLEN(cmd) + STRLEN(p_sxq) * 2 + 1));
2983 if (ncmd != NULL)
2985 STRCPY(ncmd, p_sxq);
2986 STRCAT(ncmd, cmd);
2987 STRCAT(ncmd, p_sxq);
2988 retval = mch_call_shell(ncmd, opt);
2989 vim_free(ncmd);
2991 else
2992 retval = -1;
2994 #ifdef FEAT_GUI
2995 --hold_gui_events;
2996 #endif
2998 * Check the window size, in case it changed while executing the
2999 * external command.
3001 shell_resized_check();
3004 #ifdef FEAT_EVAL
3005 set_vim_var_nr(VV_SHELL_ERROR, (long)retval);
3006 # ifdef FEAT_PROFILE
3007 if (do_profiling == PROF_YES)
3008 prof_child_exit(&wait_time);
3009 # endif
3010 #endif
3012 return retval;
3016 * VISUAL, SELECTMODE and OP_PENDING State are never set, they are equal to
3017 * NORMAL State with a condition. This function returns the real State.
3020 get_real_state()
3022 if (State & NORMAL)
3024 #ifdef FEAT_VISUAL
3025 if (VIsual_active)
3027 if (VIsual_select)
3028 return SELECTMODE;
3029 return VISUAL;
3031 else
3032 #endif
3033 if (finish_op)
3034 return OP_PENDING;
3036 return State;
3039 #if defined(FEAT_MBYTE) || defined(PROTO)
3041 * Return TRUE if "p" points to just after a path separator.
3042 * Take care of multi-byte characters.
3043 * "b" must point to the start of the file name
3046 after_pathsep(b, p)
3047 char_u *b;
3048 char_u *p;
3050 return vim_ispathsep(p[-1])
3051 && (!has_mbyte || (*mb_head_off)(b, p - 1) == 0);
3053 #endif
3056 * Return TRUE if file names "f1" and "f2" are in the same directory.
3057 * "f1" may be a short name, "f2" must be a full path.
3060 same_directory(f1, f2)
3061 char_u *f1;
3062 char_u *f2;
3064 char_u ffname[MAXPATHL];
3065 char_u *t1;
3066 char_u *t2;
3068 /* safety check */
3069 if (f1 == NULL || f2 == NULL)
3070 return FALSE;
3072 (void)vim_FullName(f1, ffname, MAXPATHL, FALSE);
3073 t1 = gettail_sep(ffname);
3074 t2 = gettail_sep(f2);
3075 return (t1 - ffname == t2 - f2
3076 && pathcmp((char *)ffname, (char *)f2, (int)(t1 - ffname)) == 0);
3079 #if defined(FEAT_SESSION) || defined(MSWIN) || defined(FEAT_GUI_MAC) \
3080 || ((defined(FEAT_GUI_GTK)) \
3081 && ( defined(FEAT_WINDOWS) || defined(FEAT_DND)) ) \
3082 || defined(FEAT_SUN_WORKSHOP) || defined(FEAT_NETBEANS_INTG) \
3083 || defined(PROTO)
3085 * Change to a file's directory.
3086 * Caller must call shorten_fnames()!
3087 * Return OK or FAIL.
3090 vim_chdirfile(fname)
3091 char_u *fname;
3093 char_u dir[MAXPATHL];
3095 vim_strncpy(dir, fname, MAXPATHL - 1);
3096 *gettail_sep(dir) = NUL;
3097 return mch_chdir((char *)dir) == 0 ? OK : FAIL;
3099 #endif
3101 #if defined(STAT_IGNORES_SLASH) || defined(PROTO)
3103 * Check if "name" ends in a slash and is not a directory.
3104 * Used for systems where stat() ignores a trailing slash on a file name.
3105 * The Vim code assumes a trailing slash is only ignored for a directory.
3108 illegal_slash(name)
3109 char *name;
3111 if (name[0] == NUL)
3112 return FALSE; /* no file name is not illegal */
3113 if (name[strlen(name) - 1] != '/')
3114 return FALSE; /* no trailing slash */
3115 if (mch_isdir((char_u *)name))
3116 return FALSE; /* trailing slash for a directory */
3117 return TRUE;
3119 #endif
3121 #if defined(CURSOR_SHAPE) || defined(PROTO)
3124 * Handling of cursor and mouse pointer shapes in various modes.
3127 cursorentry_T shape_table[SHAPE_IDX_COUNT] =
3129 /* The values will be filled in from the 'guicursor' and 'mouseshape'
3130 * defaults when Vim starts.
3131 * Adjust the SHAPE_IDX_ defines when making changes! */
3132 {0, 0, 0, 700L, 400L, 250L, 0, 0, "n", SHAPE_CURSOR+SHAPE_MOUSE},
3133 {0, 0, 0, 700L, 400L, 250L, 0, 0, "v", SHAPE_CURSOR+SHAPE_MOUSE},
3134 {0, 0, 0, 700L, 400L, 250L, 0, 0, "i", SHAPE_CURSOR+SHAPE_MOUSE},
3135 {0, 0, 0, 700L, 400L, 250L, 0, 0, "r", SHAPE_CURSOR+SHAPE_MOUSE},
3136 {0, 0, 0, 700L, 400L, 250L, 0, 0, "c", SHAPE_CURSOR+SHAPE_MOUSE},
3137 {0, 0, 0, 700L, 400L, 250L, 0, 0, "ci", SHAPE_CURSOR+SHAPE_MOUSE},
3138 {0, 0, 0, 700L, 400L, 250L, 0, 0, "cr", SHAPE_CURSOR+SHAPE_MOUSE},
3139 {0, 0, 0, 700L, 400L, 250L, 0, 0, "o", SHAPE_CURSOR+SHAPE_MOUSE},
3140 {0, 0, 0, 700L, 400L, 250L, 0, 0, "ve", SHAPE_CURSOR+SHAPE_MOUSE},
3141 {0, 0, 0, 0L, 0L, 0L, 0, 0, "e", SHAPE_MOUSE},
3142 {0, 0, 0, 0L, 0L, 0L, 0, 0, "s", SHAPE_MOUSE},
3143 {0, 0, 0, 0L, 0L, 0L, 0, 0, "sd", SHAPE_MOUSE},
3144 {0, 0, 0, 0L, 0L, 0L, 0, 0, "vs", SHAPE_MOUSE},
3145 {0, 0, 0, 0L, 0L, 0L, 0, 0, "vd", SHAPE_MOUSE},
3146 {0, 0, 0, 0L, 0L, 0L, 0, 0, "m", SHAPE_MOUSE},
3147 {0, 0, 0, 0L, 0L, 0L, 0, 0, "ml", SHAPE_MOUSE},
3148 {0, 0, 0, 100L, 100L, 100L, 0, 0, "sm", SHAPE_CURSOR},
3151 #ifdef FEAT_MOUSESHAPE
3153 * Table with names for mouse shapes. Keep in sync with all the tables for
3154 * mch_set_mouse_shape()!.
3156 static char * mshape_names[] =
3158 "arrow", /* default, must be the first one */
3159 "blank", /* hidden */
3160 "beam",
3161 "updown",
3162 "udsizing",
3163 "leftright",
3164 "lrsizing",
3165 "busy",
3166 "no",
3167 "crosshair",
3168 "hand1",
3169 "hand2",
3170 "pencil",
3171 "question",
3172 "rightup-arrow",
3173 "up-arrow",
3174 NULL
3176 #endif
3179 * Parse the 'guicursor' option ("what" is SHAPE_CURSOR) or 'mouseshape'
3180 * ("what" is SHAPE_MOUSE).
3181 * Returns error message for an illegal option, NULL otherwise.
3183 char_u *
3184 parse_shape_opt(what)
3185 int what;
3187 char_u *modep;
3188 char_u *colonp;
3189 char_u *commap;
3190 char_u *slashp;
3191 char_u *p, *endp;
3192 int idx = 0; /* init for GCC */
3193 int all_idx;
3194 int len;
3195 int i;
3196 long n;
3197 int found_ve = FALSE; /* found "ve" flag */
3198 int round;
3201 * First round: check for errors; second round: do it for real.
3203 for (round = 1; round <= 2; ++round)
3206 * Repeat for all comma separated parts.
3208 #ifdef FEAT_MOUSESHAPE
3209 if (what == SHAPE_MOUSE)
3210 modep = p_mouseshape;
3211 else
3212 #endif
3213 modep = p_guicursor;
3214 while (*modep != NUL)
3216 colonp = vim_strchr(modep, ':');
3217 if (colonp == NULL)
3218 return (char_u *)N_("E545: Missing colon");
3219 if (colonp == modep)
3220 return (char_u *)N_("E546: Illegal mode");
3221 commap = vim_strchr(modep, ',');
3224 * Repeat for all mode's before the colon.
3225 * For the 'a' mode, we loop to handle all the modes.
3227 all_idx = -1;
3228 while (modep < colonp || all_idx >= 0)
3230 if (all_idx < 0)
3232 /* Find the mode. */
3233 if (modep[1] == '-' || modep[1] == ':')
3234 len = 1;
3235 else
3236 len = 2;
3237 if (len == 1 && TOLOWER_ASC(modep[0]) == 'a')
3238 all_idx = SHAPE_IDX_COUNT - 1;
3239 else
3241 for (idx = 0; idx < SHAPE_IDX_COUNT; ++idx)
3242 if (STRNICMP(modep, shape_table[idx].name, len)
3243 == 0)
3244 break;
3245 if (idx == SHAPE_IDX_COUNT
3246 || (shape_table[idx].used_for & what) == 0)
3247 return (char_u *)N_("E546: Illegal mode");
3248 if (len == 2 && modep[0] == 'v' && modep[1] == 'e')
3249 found_ve = TRUE;
3251 modep += len + 1;
3254 if (all_idx >= 0)
3255 idx = all_idx--;
3256 else if (round == 2)
3258 #ifdef FEAT_MOUSESHAPE
3259 if (what == SHAPE_MOUSE)
3261 /* Set the default, for the missing parts */
3262 shape_table[idx].mshape = 0;
3264 else
3265 #endif
3267 /* Set the defaults, for the missing parts */
3268 shape_table[idx].shape = SHAPE_BLOCK;
3269 shape_table[idx].blinkwait = 700L;
3270 shape_table[idx].blinkon = 400L;
3271 shape_table[idx].blinkoff = 250L;
3275 /* Parse the part after the colon */
3276 for (p = colonp + 1; *p && *p != ','; )
3278 #ifdef FEAT_MOUSESHAPE
3279 if (what == SHAPE_MOUSE)
3281 for (i = 0; ; ++i)
3283 if (mshape_names[i] == NULL)
3285 if (!VIM_ISDIGIT(*p))
3286 return (char_u *)N_("E547: Illegal mouseshape");
3287 if (round == 2)
3288 shape_table[idx].mshape =
3289 getdigits(&p) + MSHAPE_NUMBERED;
3290 else
3291 (void)getdigits(&p);
3292 break;
3294 len = (int)STRLEN(mshape_names[i]);
3295 if (STRNICMP(p, mshape_names[i], len) == 0)
3297 if (round == 2)
3298 shape_table[idx].mshape = i;
3299 p += len;
3300 break;
3304 else /* if (what == SHAPE_MOUSE) */
3305 #endif
3308 * First handle the ones with a number argument.
3310 i = *p;
3311 len = 0;
3312 if (STRNICMP(p, "ver", 3) == 0)
3313 len = 3;
3314 else if (STRNICMP(p, "hor", 3) == 0)
3315 len = 3;
3316 else if (STRNICMP(p, "blinkwait", 9) == 0)
3317 len = 9;
3318 else if (STRNICMP(p, "blinkon", 7) == 0)
3319 len = 7;
3320 else if (STRNICMP(p, "blinkoff", 8) == 0)
3321 len = 8;
3322 if (len != 0)
3324 p += len;
3325 if (!VIM_ISDIGIT(*p))
3326 return (char_u *)N_("E548: digit expected");
3327 n = getdigits(&p);
3328 if (len == 3) /* "ver" or "hor" */
3330 if (n == 0)
3331 return (char_u *)N_("E549: Illegal percentage");
3332 if (round == 2)
3334 if (TOLOWER_ASC(i) == 'v')
3335 shape_table[idx].shape = SHAPE_VER;
3336 else
3337 shape_table[idx].shape = SHAPE_HOR;
3338 shape_table[idx].percentage = n;
3341 else if (round == 2)
3343 if (len == 9)
3344 shape_table[idx].blinkwait = n;
3345 else if (len == 7)
3346 shape_table[idx].blinkon = n;
3347 else
3348 shape_table[idx].blinkoff = n;
3351 else if (STRNICMP(p, "block", 5) == 0)
3353 if (round == 2)
3354 shape_table[idx].shape = SHAPE_BLOCK;
3355 p += 5;
3357 else /* must be a highlight group name then */
3359 endp = vim_strchr(p, '-');
3360 if (commap == NULL) /* last part */
3362 if (endp == NULL)
3363 endp = p + STRLEN(p); /* find end of part */
3365 else if (endp > commap || endp == NULL)
3366 endp = commap;
3367 slashp = vim_strchr(p, '/');
3368 if (slashp != NULL && slashp < endp)
3370 /* "group/langmap_group" */
3371 i = syn_check_group(p, (int)(slashp - p));
3372 p = slashp + 1;
3374 if (round == 2)
3376 shape_table[idx].id = syn_check_group(p,
3377 (int)(endp - p));
3378 shape_table[idx].id_lm = shape_table[idx].id;
3379 if (slashp != NULL && slashp < endp)
3380 shape_table[idx].id = i;
3382 p = endp;
3384 } /* if (what != SHAPE_MOUSE) */
3386 if (*p == '-')
3387 ++p;
3390 modep = p;
3391 if (*modep == ',')
3392 ++modep;
3396 /* If the 's' flag is not given, use the 'v' cursor for 's' */
3397 if (!found_ve)
3399 #ifdef FEAT_MOUSESHAPE
3400 if (what == SHAPE_MOUSE)
3402 shape_table[SHAPE_IDX_VE].mshape = shape_table[SHAPE_IDX_V].mshape;
3404 else
3405 #endif
3407 shape_table[SHAPE_IDX_VE].shape = shape_table[SHAPE_IDX_V].shape;
3408 shape_table[SHAPE_IDX_VE].percentage =
3409 shape_table[SHAPE_IDX_V].percentage;
3410 shape_table[SHAPE_IDX_VE].blinkwait =
3411 shape_table[SHAPE_IDX_V].blinkwait;
3412 shape_table[SHAPE_IDX_VE].blinkon =
3413 shape_table[SHAPE_IDX_V].blinkon;
3414 shape_table[SHAPE_IDX_VE].blinkoff =
3415 shape_table[SHAPE_IDX_V].blinkoff;
3416 shape_table[SHAPE_IDX_VE].id = shape_table[SHAPE_IDX_V].id;
3417 shape_table[SHAPE_IDX_VE].id_lm = shape_table[SHAPE_IDX_V].id_lm;
3421 return NULL;
3424 # if defined(MCH_CURSOR_SHAPE) || defined(FEAT_GUI) \
3425 || defined(FEAT_MOUSESHAPE) || defined(PROTO)
3427 * Return the index into shape_table[] for the current mode.
3428 * When "mouse" is TRUE, consider indexes valid for the mouse pointer.
3431 get_shape_idx(mouse)
3432 int mouse;
3434 #ifdef FEAT_MOUSESHAPE
3435 if (mouse && (State == HITRETURN || State == ASKMORE))
3437 # ifdef FEAT_GUI
3438 int x, y;
3439 gui_mch_getmouse(&x, &y);
3440 if (Y_2_ROW(y) == Rows - 1)
3441 return SHAPE_IDX_MOREL;
3442 # endif
3443 return SHAPE_IDX_MORE;
3445 if (mouse && drag_status_line)
3446 return SHAPE_IDX_SDRAG;
3447 # ifdef FEAT_VERTSPLIT
3448 if (mouse && drag_sep_line)
3449 return SHAPE_IDX_VDRAG;
3450 # endif
3451 #endif
3452 if (!mouse && State == SHOWMATCH)
3453 return SHAPE_IDX_SM;
3454 #ifdef FEAT_VREPLACE
3455 if (State & VREPLACE_FLAG)
3456 return SHAPE_IDX_R;
3457 #endif
3458 if (State & REPLACE_FLAG)
3459 return SHAPE_IDX_R;
3460 if (State & INSERT)
3461 return SHAPE_IDX_I;
3462 if (State & CMDLINE)
3464 if (cmdline_at_end())
3465 return SHAPE_IDX_C;
3466 if (cmdline_overstrike())
3467 return SHAPE_IDX_CR;
3468 return SHAPE_IDX_CI;
3470 if (finish_op)
3471 return SHAPE_IDX_O;
3472 #ifdef FEAT_VISUAL
3473 if (VIsual_active)
3475 if (*p_sel == 'e')
3476 return SHAPE_IDX_VE;
3477 else
3478 return SHAPE_IDX_V;
3480 #endif
3481 return SHAPE_IDX_N;
3483 #endif
3485 # if defined(FEAT_MOUSESHAPE) || defined(PROTO)
3486 static int old_mouse_shape = 0;
3489 * Set the mouse shape:
3490 * If "shape" is -1, use shape depending on the current mode,
3491 * depending on the current state.
3492 * If "shape" is -2, only update the shape when it's CLINE or STATUS (used
3493 * when the mouse moves off the status or command line).
3495 void
3496 update_mouseshape(shape_idx)
3497 int shape_idx;
3499 int new_mouse_shape;
3501 /* Only works in GUI mode. */
3502 if (!gui.in_use || gui.starting)
3503 return;
3505 /* Postpone the updating when more is to come. Speeds up executing of
3506 * mappings. */
3507 if (shape_idx == -1 && char_avail())
3509 postponed_mouseshape = TRUE;
3510 return;
3513 /* When ignoring the mouse don't change shape on the statusline. */
3514 if (*p_mouse == NUL
3515 && (shape_idx == SHAPE_IDX_CLINE
3516 || shape_idx == SHAPE_IDX_STATUS
3517 || shape_idx == SHAPE_IDX_VSEP))
3518 shape_idx = -2;
3520 if (shape_idx == -2
3521 && old_mouse_shape != shape_table[SHAPE_IDX_CLINE].mshape
3522 && old_mouse_shape != shape_table[SHAPE_IDX_STATUS].mshape
3523 && old_mouse_shape != shape_table[SHAPE_IDX_VSEP].mshape)
3524 return;
3525 if (shape_idx < 0)
3526 new_mouse_shape = shape_table[get_shape_idx(TRUE)].mshape;
3527 else
3528 new_mouse_shape = shape_table[shape_idx].mshape;
3529 if (new_mouse_shape != old_mouse_shape)
3531 mch_set_mouse_shape(new_mouse_shape);
3532 old_mouse_shape = new_mouse_shape;
3534 postponed_mouseshape = FALSE;
3536 # endif
3538 #endif /* CURSOR_SHAPE */
3541 #ifdef FEAT_CRYPT
3543 * Optional encryption support.
3544 * Mohsin Ahmed, mosh@sasi.com, 98-09-24
3545 * Based on zip/crypt sources.
3547 * NOTE FOR USA: Since 2000 exporting this code from the USA is allowed to
3548 * most countries. There are a few exceptions, but that still should not be a
3549 * problem since this code was originally created in Europe and India.
3552 /* from zip.h */
3554 typedef unsigned short ush; /* unsigned 16-bit value */
3555 typedef unsigned long ulg; /* unsigned 32-bit value */
3557 static void make_crc_tab __ARGS((void));
3559 static ulg crc_32_tab[256];
3562 * Fill the CRC table.
3564 static void
3565 make_crc_tab()
3567 ulg s,t,v;
3568 static int done = FALSE;
3570 if (done)
3571 return;
3572 for (t = 0; t < 256; t++)
3574 v = t;
3575 for (s = 0; s < 8; s++)
3576 v = (v >> 1) ^ ((v & 1) * (ulg)0xedb88320L);
3577 crc_32_tab[t] = v;
3579 done = TRUE;
3582 #define CRC32(c, b) (crc_32_tab[((int)(c) ^ (b)) & 0xff] ^ ((c) >> 8))
3585 static ulg keys[3]; /* keys defining the pseudo-random sequence */
3588 * Return the next byte in the pseudo-random sequence
3591 decrypt_byte()
3593 ush temp;
3595 temp = (ush)keys[2] | 2;
3596 return (int)(((unsigned)(temp * (temp ^ 1)) >> 8) & 0xff);
3600 * Update the encryption keys with the next byte of plain text
3603 update_keys(c)
3604 int c; /* byte of plain text */
3606 keys[0] = CRC32(keys[0], c);
3607 keys[1] += keys[0] & 0xff;
3608 keys[1] = keys[1] * 134775813L + 1;
3609 keys[2] = CRC32(keys[2], (int)(keys[1] >> 24));
3610 return c;
3614 * Initialize the encryption keys and the random header according to
3615 * the given password.
3616 * If "passwd" is NULL or empty, don't do anything.
3618 void
3619 crypt_init_keys(passwd)
3620 char_u *passwd; /* password string with which to modify keys */
3622 if (passwd != NULL && *passwd != NUL)
3624 make_crc_tab();
3625 keys[0] = 305419896L;
3626 keys[1] = 591751049L;
3627 keys[2] = 878082192L;
3628 while (*passwd != '\0')
3629 update_keys((int)*passwd++);
3634 * Ask the user for a crypt key.
3635 * When "store" is TRUE, the new key in stored in the 'key' option, and the
3636 * 'key' option value is returned: Don't free it.
3637 * When "store" is FALSE, the typed key is returned in allocated memory.
3638 * Returns NULL on failure.
3640 char_u *
3641 get_crypt_key(store, twice)
3642 int store;
3643 int twice; /* Ask for the key twice. */
3645 char_u *p1, *p2 = NULL;
3646 int round;
3648 for (round = 0; ; ++round)
3650 cmdline_star = TRUE;
3651 cmdline_row = msg_row;
3652 p1 = getcmdline_prompt(NUL, round == 0
3653 ? (char_u *)_("Enter encryption key: ")
3654 : (char_u *)_("Enter same key again: "), 0, EXPAND_NOTHING,
3655 NULL);
3656 cmdline_star = FALSE;
3658 if (p1 == NULL)
3659 break;
3661 if (round == twice)
3663 if (p2 != NULL && STRCMP(p1, p2) != 0)
3665 MSG(_("Keys don't match!"));
3666 vim_free(p1);
3667 vim_free(p2);
3668 p2 = NULL;
3669 round = -1; /* do it again */
3670 continue;
3672 if (store)
3674 set_option_value((char_u *)"key", 0L, p1, OPT_LOCAL);
3675 vim_free(p1);
3676 p1 = curbuf->b_p_key;
3678 break;
3680 p2 = p1;
3683 /* since the user typed this, no need to wait for return */
3684 need_wait_return = FALSE;
3685 msg_didout = FALSE;
3687 vim_free(p2);
3688 return p1;
3691 #endif /* FEAT_CRYPT */
3693 /* TODO: make some #ifdef for this */
3694 /*--------[ file searching ]-------------------------------------------------*/
3696 * File searching functions for 'path', 'tags' and 'cdpath' options.
3697 * External visible functions:
3698 * vim_findfile_init() creates/initialises the search context
3699 * vim_findfile_free_visited() free list of visited files/dirs of search
3700 * context
3701 * vim_findfile() find a file in the search context
3702 * vim_findfile_cleanup() cleanup/free search context created by
3703 * vim_findfile_init()
3705 * All static functions and variables start with 'ff_'
3707 * In general it works like this:
3708 * First you create yourself a search context by calling vim_findfile_init().
3709 * It is possible to give a search context from a previous call to
3710 * vim_findfile_init(), so it can be reused. After this you call vim_findfile()
3711 * until you are satisfied with the result or it returns NULL. On every call it
3712 * returns the next file which matches the conditions given to
3713 * vim_findfile_init(). If it doesn't find a next file it returns NULL.
3715 * It is possible to call vim_findfile_init() again to reinitialise your search
3716 * with some new parameters. Don't forget to pass your old search context to
3717 * it, so it can reuse it and especially reuse the list of already visited
3718 * directories. If you want to delete the list of already visited directories
3719 * simply call vim_findfile_free_visited().
3721 * When you are done call vim_findfile_cleanup() to free the search context.
3723 * The function vim_findfile_init() has a long comment, which describes the
3724 * needed parameters.
3728 * ATTENTION:
3729 * ==========
3730 * Also we use an allocated search context here, this functions are NOT
3731 * thread-safe!!!!!
3733 * To minimize parameter passing (or because I'm to lazy), only the
3734 * external visible functions get a search context as a parameter. This is
3735 * then assigned to a static global, which is used throughout the local
3736 * functions.
3740 * type for the directory search stack
3742 typedef struct ff_stack
3744 struct ff_stack *ffs_prev;
3746 /* the fix part (no wildcards) and the part containing the wildcards
3747 * of the search path
3749 char_u *ffs_fix_path;
3750 #ifdef FEAT_PATH_EXTRA
3751 char_u *ffs_wc_path;
3752 #endif
3754 /* files/dirs found in the above directory, matched by the first wildcard
3755 * of wc_part
3757 char_u **ffs_filearray;
3758 int ffs_filearray_size;
3759 char_u ffs_filearray_cur; /* needed for partly handled dirs */
3761 /* to store status of partly handled directories
3762 * 0: we work the on this directory for the first time
3763 * 1: this directory was partly searched in an earlier step
3765 int ffs_stage;
3767 /* How deep are we in the directory tree?
3768 * Counts backward from value of level parameter to vim_findfile_init
3770 int ffs_level;
3772 /* Did we already expand '**' to an empty string? */
3773 int ffs_star_star_empty;
3774 } ff_stack_T;
3777 * type for already visited directories or files.
3779 typedef struct ff_visited
3781 struct ff_visited *ffv_next;
3783 #ifdef FEAT_PATH_EXTRA
3784 /* Visited directories are different if the wildcard string are
3785 * different. So we have to save it.
3787 char_u *ffv_wc_path;
3788 #endif
3789 /* for unix use inode etc for comparison (needed because of links), else
3790 * use filename.
3792 #ifdef UNIX
3793 int ffv_dev; /* device number (-1 if not set) */
3794 ino_t ffv_ino; /* inode number */
3795 #endif
3796 /* The memory for this struct is allocated according to the length of
3797 * ffv_fname.
3799 char_u ffv_fname[1]; /* actually longer */
3800 } ff_visited_T;
3803 * We might have to manage several visited lists during a search.
3804 * This is especially needed for the tags option. If tags is set to:
3805 * "./++/tags,./++/TAGS,++/tags" (replace + with *)
3806 * So we have to do 3 searches:
3807 * 1) search from the current files directory downward for the file "tags"
3808 * 2) search from the current files directory downward for the file "TAGS"
3809 * 3) search from Vims current directory downwards for the file "tags"
3810 * As you can see, the first and the third search are for the same file, so for
3811 * the third search we can use the visited list of the first search. For the
3812 * second search we must start from a empty visited list.
3813 * The struct ff_visited_list_hdr is used to manage a linked list of already
3814 * visited lists.
3816 typedef struct ff_visited_list_hdr
3818 struct ff_visited_list_hdr *ffvl_next;
3820 /* the filename the attached visited list is for */
3821 char_u *ffvl_filename;
3823 ff_visited_T *ffvl_visited_list;
3825 } ff_visited_list_hdr_T;
3829 * '**' can be expanded to several directory levels.
3830 * Set the default maximum depth.
3832 #define FF_MAX_STAR_STAR_EXPAND ((char_u)30)
3834 * The search context:
3835 * ffsc_stack_ptr: the stack for the dirs to search
3836 * ffsc_visited_list: the currently active visited list
3837 * ffsc_dir_visited_list: the currently active visited list for search dirs
3838 * ffsc_visited_lists_list: the list of all visited lists
3839 * ffsc_dir_visited_lists_list: the list of all visited lists for search dirs
3840 * ffsc_file_to_search: the file to search for
3841 * ffsc_start_dir: the starting directory, if search path was relative
3842 * ffsc_fix_path: the fix part of the given path (without wildcards)
3843 * Needed for upward search.
3844 * ffsc_wc_path: the part of the given path containing wildcards
3845 * ffsc_level: how many levels of dirs to search downwards
3846 * ffsc_stopdirs_v: array of stop directories for upward search
3847 * ffsc_need_dir: TRUE if we search for a directory
3849 typedef struct ff_search_ctx_T
3851 ff_stack_T *ffsc_stack_ptr;
3852 ff_visited_list_hdr_T *ffsc_visited_list;
3853 ff_visited_list_hdr_T *ffsc_dir_visited_list;
3854 ff_visited_list_hdr_T *ffsc_visited_lists_list;
3855 ff_visited_list_hdr_T *ffsc_dir_visited_lists_list;
3856 char_u *ffsc_file_to_search;
3857 char_u *ffsc_start_dir;
3858 char_u *ffsc_fix_path;
3859 #ifdef FEAT_PATH_EXTRA
3860 char_u *ffsc_wc_path;
3861 int ffsc_level;
3862 char_u **ffsc_stopdirs_v;
3863 #endif
3864 int ffsc_need_dir;
3865 } ff_search_ctx_T;
3867 static ff_search_ctx_T *ff_search_ctx = NULL;
3869 /* locally needed functions */
3870 #ifdef FEAT_PATH_EXTRA
3871 static int ff_check_visited __ARGS((ff_visited_T **, char_u *, char_u *));
3872 #else
3873 static int ff_check_visited __ARGS((ff_visited_T **, char_u *));
3874 #endif
3875 static void vim_findfile_free_visited_list __ARGS((ff_visited_list_hdr_T **list_headp));
3876 static void ff_free_visited_list __ARGS((ff_visited_T *vl));
3877 static ff_visited_list_hdr_T* ff_get_visited_list __ARGS((char_u *, ff_visited_list_hdr_T **list_headp));
3878 #ifdef FEAT_PATH_EXTRA
3879 static int ff_wc_equal __ARGS((char_u *s1, char_u *s2));
3880 #endif
3882 static void ff_push __ARGS((ff_stack_T *));
3883 static ff_stack_T * ff_pop __ARGS((void));
3884 static void ff_clear __ARGS((void));
3885 static void ff_free_stack_element __ARGS((ff_stack_T *));
3886 #ifdef FEAT_PATH_EXTRA
3887 static ff_stack_T *ff_create_stack_element __ARGS((char_u *, char_u *, int, int));
3888 #else
3889 static ff_stack_T *ff_create_stack_element __ARGS((char_u *, int, int));
3890 #endif
3891 #ifdef FEAT_PATH_EXTRA
3892 static int ff_path_in_stoplist __ARGS((char_u *, int, char_u **));
3893 #endif
3895 #if 0
3897 * if someone likes findfirst/findnext, here are the functions
3898 * NOT TESTED!!
3901 static void *ff_fn_search_context = NULL;
3903 char_u *
3904 vim_findfirst(path, filename, level)
3905 char_u *path;
3906 char_u *filename;
3907 int level;
3909 ff_fn_search_context =
3910 vim_findfile_init(path, filename, NULL, level, TRUE, FALSE,
3911 ff_fn_search_context, rel_fname);
3912 if (NULL == ff_fn_search_context)
3913 return NULL;
3914 else
3915 return vim_findnext()
3918 char_u *
3919 vim_findnext()
3921 char_u *ret = vim_findfile(ff_fn_search_context);
3923 if (NULL == ret)
3925 vim_findfile_cleanup(ff_fn_search_context);
3926 ff_fn_search_context = NULL;
3928 return ret;
3930 #endif
3933 * Initialization routine for vim_findfile.
3935 * Returns the newly allocated search context or NULL if an error occured.
3937 * Don't forget to clean up by calling vim_findfile_cleanup() if you are done
3938 * with the search context.
3940 * Find the file 'filename' in the directory 'path'.
3941 * The parameter 'path' may contain wildcards. If so only search 'level'
3942 * directories deep. The parameter 'level' is the absolute maximum and is
3943 * not related to restricts given to the '**' wildcard. If 'level' is 100
3944 * and you use '**200' vim_findfile() will stop after 100 levels.
3946 * If 'stopdirs' is not NULL and nothing is found downward, the search is
3947 * restarted on the next higher directory level. This is repeated until the
3948 * start-directory of a search is contained in 'stopdirs'. 'stopdirs' has the
3949 * format ";*<dirname>*\(;<dirname>\)*;\=$".
3951 * If the 'path' is relative, the starting dir for the search is either VIM's
3952 * current dir or if the path starts with "./" the current files dir.
3953 * If the 'path' is absolut, the starting dir is that part of the path before
3954 * the first wildcard.
3956 * Upward search is only done on the starting dir.
3958 * If 'free_visited' is TRUE the list of already visited files/directories is
3959 * cleared. Set this to FALSE if you just want to search from another
3960 * directory, but want to be sure that no directory from a previous search is
3961 * searched again. This is useful if you search for a file at different places.
3962 * The list of visited files/dirs can also be cleared with the function
3963 * vim_findfile_free_visited().
3965 * Set the parameter 'need_dir' to TRUE if you want to search for a directory
3966 * instead of a file.
3968 * A search context returned by a previous call to vim_findfile_init() can be
3969 * passed in the parameter 'search_ctx'. This context is than reused and
3970 * reinitialized with the new parameters. The list of already viseted
3971 * directories from this context is only deleted if the parameter
3972 * 'free_visited' is true. Be aware that the passed search_context is freed if
3973 * the reinitialization fails.
3975 * If you don't have a search context from a previous call 'search_ctx' must be
3976 * NULL.
3978 * This function silently ignores a few errors, vim_findfile() will have
3979 * limited functionality then.
3981 /*ARGSUSED*/
3982 void *
3983 vim_findfile_init(path, filename, stopdirs, level, free_visited, need_dir,
3984 search_ctx, tagfile, rel_fname)
3985 char_u *path;
3986 char_u *filename;
3987 char_u *stopdirs;
3988 int level;
3989 int free_visited;
3990 int need_dir;
3991 void *search_ctx;
3992 int tagfile;
3993 char_u *rel_fname; /* file name to use for "." */
3995 #ifdef FEAT_PATH_EXTRA
3996 char_u *wc_part;
3997 #endif
3998 ff_stack_T *sptr;
4000 /* If a search context is given by the caller, reuse it, else allocate a
4001 * new one.
4003 if (search_ctx != NULL)
4004 ff_search_ctx = search_ctx;
4005 else
4007 ff_search_ctx = (ff_search_ctx_T*)alloc(
4008 (unsigned)sizeof(ff_search_ctx_T));
4009 if (ff_search_ctx == NULL)
4010 goto error_return;
4011 memset(ff_search_ctx, 0, sizeof(ff_search_ctx_T));
4014 /* clear the search context, but NOT the visited lists */
4015 ff_clear();
4017 /* clear visited list if wanted */
4018 if (free_visited == TRUE)
4019 vim_findfile_free_visited(ff_search_ctx);
4020 else
4022 /* Reuse old visited lists. Get the visited list for the given
4023 * filename. If no list for the current filename exists, creates a new
4024 * one.
4026 ff_search_ctx->ffsc_visited_list = ff_get_visited_list(filename,
4027 &ff_search_ctx->ffsc_visited_lists_list);
4028 if (ff_search_ctx->ffsc_visited_list == NULL)
4029 goto error_return;
4030 ff_search_ctx->ffsc_dir_visited_list = ff_get_visited_list(filename,
4031 &ff_search_ctx->ffsc_dir_visited_lists_list);
4032 if (ff_search_ctx->ffsc_dir_visited_list == NULL)
4033 goto error_return;
4036 if (ff_expand_buffer == NULL)
4038 ff_expand_buffer = (char_u*)alloc(MAXPATHL);
4039 if (ff_expand_buffer == NULL)
4040 goto error_return;
4043 /* Store information on starting dir now if path is relative.
4044 * If path is absolute, we do that later. */
4045 if (path[0] == '.'
4046 && (vim_ispathsep(path[1]) || path[1] == NUL)
4047 && (!tagfile || vim_strchr(p_cpo, CPO_DOTTAG) == NULL)
4048 && rel_fname != NULL)
4050 int len = (int)(gettail(rel_fname) - rel_fname);
4052 if (!vim_isAbsName(rel_fname) && len + 1 < MAXPATHL)
4054 /* Make the start dir an absolute path name. */
4055 vim_strncpy(ff_expand_buffer, rel_fname, len);
4056 ff_search_ctx->ffsc_start_dir = FullName_save(ff_expand_buffer,
4057 FALSE);
4059 else
4060 ff_search_ctx->ffsc_start_dir = vim_strnsave(rel_fname, len);
4061 if (ff_search_ctx->ffsc_start_dir == NULL)
4062 goto error_return;
4063 if (*++path != NUL)
4064 ++path;
4066 else if (*path == NUL || !vim_isAbsName(path))
4068 #ifdef BACKSLASH_IN_FILENAME
4069 /* "c:dir" needs "c:" to be expanded, otherwise use current dir */
4070 if (*path != NUL && path[1] == ':')
4072 char_u drive[3];
4074 drive[0] = path[0];
4075 drive[1] = ':';
4076 drive[2] = NUL;
4077 if (vim_FullName(drive, ff_expand_buffer, MAXPATHL, TRUE) == FAIL)
4078 goto error_return;
4079 path += 2;
4081 else
4082 #endif
4083 if (mch_dirname(ff_expand_buffer, MAXPATHL) == FAIL)
4084 goto error_return;
4086 ff_search_ctx->ffsc_start_dir = vim_strsave(ff_expand_buffer);
4087 if (ff_search_ctx->ffsc_start_dir == NULL)
4088 goto error_return;
4090 #ifdef BACKSLASH_IN_FILENAME
4091 /* A path that starts with "/dir" is relative to the drive, not to the
4092 * directory (but not for "//machine/dir"). Only use the drive name. */
4093 if ((*path == '/' || *path == '\\')
4094 && path[1] != path[0]
4095 && ff_search_ctx->ffsc_start_dir[1] == ':')
4096 ff_search_ctx->ffsc_start_dir[2] = NUL;
4097 #endif
4100 #ifdef FEAT_PATH_EXTRA
4102 * If stopdirs are given, split them into an array of pointers.
4103 * If this fails (mem allocation), there is no upward search at all or a
4104 * stop directory is not recognized -> continue silently.
4105 * If stopdirs just contains a ";" or is empty,
4106 * ff_search_ctx->ffsc_stopdirs_v will only contain a NULL pointer. This
4107 * is handled as unlimited upward search. See function
4108 * ff_path_in_stoplist() for details.
4110 if (stopdirs != NULL)
4112 char_u *walker = stopdirs;
4113 int dircount;
4115 while (*walker == ';')
4116 walker++;
4118 dircount = 1;
4119 ff_search_ctx->ffsc_stopdirs_v =
4120 (char_u **)alloc((unsigned)sizeof(char_u *));
4122 if (ff_search_ctx->ffsc_stopdirs_v != NULL)
4126 char_u *helper;
4127 void *ptr;
4129 helper = walker;
4130 ptr = vim_realloc(ff_search_ctx->ffsc_stopdirs_v,
4131 (dircount + 1) * sizeof(char_u *));
4132 if (ptr)
4133 ff_search_ctx->ffsc_stopdirs_v = ptr;
4134 else
4135 /* ignore, keep what we have and continue */
4136 break;
4137 walker = vim_strchr(walker, ';');
4138 if (walker)
4140 ff_search_ctx->ffsc_stopdirs_v[dircount-1] =
4141 vim_strnsave(helper, (int)(walker - helper));
4142 walker++;
4144 else
4145 /* this might be "", which means ascent till top
4146 * of directory tree.
4148 ff_search_ctx->ffsc_stopdirs_v[dircount-1] =
4149 vim_strsave(helper);
4151 dircount++;
4153 } while (walker != NULL);
4154 ff_search_ctx->ffsc_stopdirs_v[dircount-1] = NULL;
4157 #endif
4159 #ifdef FEAT_PATH_EXTRA
4160 ff_search_ctx->ffsc_level = level;
4162 /* split into:
4163 * -fix path
4164 * -wildcard_stuff (might be NULL)
4166 wc_part = vim_strchr(path, '*');
4167 if (wc_part != NULL)
4169 int llevel;
4170 int len;
4171 char *errpt;
4173 /* save the fix part of the path */
4174 ff_search_ctx->ffsc_fix_path = vim_strnsave(path,
4175 (int)(wc_part - path));
4178 * copy wc_path and add restricts to the '**' wildcard.
4179 * The octet after a '**' is used as a (binary) counter.
4180 * So '**3' is transposed to '**^C' ('^C' is ASCII value 3)
4181 * or '**76' is transposed to '**N'( 'N' is ASCII value 76).
4182 * For EBCDIC you get different character values.
4183 * If no restrict is given after '**' the default is used.
4184 * Due to this technic the path looks awful if you print it as a
4185 * string.
4187 len = 0;
4188 while (*wc_part != NUL)
4190 if (STRNCMP(wc_part, "**", 2) == 0)
4192 ff_expand_buffer[len++] = *wc_part++;
4193 ff_expand_buffer[len++] = *wc_part++;
4195 llevel = strtol((char *)wc_part, &errpt, 10);
4196 if ((char_u *)errpt != wc_part && llevel > 0 && llevel < 255)
4197 ff_expand_buffer[len++] = llevel;
4198 else if ((char_u *)errpt != wc_part && llevel == 0)
4199 /* restrict is 0 -> remove already added '**' */
4200 len -= 2;
4201 else
4202 ff_expand_buffer[len++] = FF_MAX_STAR_STAR_EXPAND;
4203 wc_part = (char_u *)errpt;
4204 if (*wc_part != NUL && !vim_ispathsep(*wc_part))
4206 EMSG2(_("E343: Invalid path: '**[number]' must be at the end of the path or be followed by '%s'."), PATHSEPSTR);
4207 goto error_return;
4210 else
4211 ff_expand_buffer[len++] = *wc_part++;
4213 ff_expand_buffer[len] = NUL;
4214 ff_search_ctx->ffsc_wc_path = vim_strsave(ff_expand_buffer);
4216 if (ff_search_ctx->ffsc_wc_path == NULL)
4217 goto error_return;
4219 else
4220 #endif
4221 ff_search_ctx->ffsc_fix_path = vim_strsave(path);
4223 if (ff_search_ctx->ffsc_start_dir == NULL)
4225 /* store the fix part as startdir.
4226 * This is needed if the parameter path is fully qualified.
4228 ff_search_ctx->ffsc_start_dir = vim_strsave(ff_search_ctx->ffsc_fix_path);
4229 if (ff_search_ctx->ffsc_start_dir)
4230 ff_search_ctx->ffsc_fix_path[0] = NUL;
4233 /* create an absolute path */
4234 STRCPY(ff_expand_buffer, ff_search_ctx->ffsc_start_dir);
4235 add_pathsep(ff_expand_buffer);
4236 STRCAT(ff_expand_buffer, ff_search_ctx->ffsc_fix_path);
4237 add_pathsep(ff_expand_buffer);
4239 sptr = ff_create_stack_element(ff_expand_buffer,
4240 #ifdef FEAT_PATH_EXTRA
4241 ff_search_ctx->ffsc_wc_path,
4242 #endif
4243 level, 0);
4245 if (sptr == NULL)
4246 goto error_return;
4248 ff_push(sptr);
4250 ff_search_ctx->ffsc_file_to_search = vim_strsave(filename);
4251 if (ff_search_ctx->ffsc_file_to_search == NULL)
4252 goto error_return;
4254 return ff_search_ctx;
4256 error_return:
4258 * We clear the search context now!
4259 * Even when the caller gave us a (perhaps valid) context we free it here,
4260 * as we might have already destroyed it.
4262 vim_findfile_cleanup(ff_search_ctx);
4263 return NULL;
4266 #if defined(FEAT_PATH_EXTRA) || defined(PROTO)
4268 * Get the stopdir string. Check that ';' is not escaped.
4270 char_u *
4271 vim_findfile_stopdir(buf)
4272 char_u *buf;
4274 char_u *r_ptr = buf;
4276 while (*r_ptr != NUL && *r_ptr != ';')
4278 if (r_ptr[0] == '\\' && r_ptr[1] == ';')
4280 /* overwrite the escape char,
4281 * use STRLEN(r_ptr) to move the trailing '\0'
4283 mch_memmove(r_ptr, r_ptr + 1, STRLEN(r_ptr));
4284 r_ptr++;
4286 r_ptr++;
4288 if (*r_ptr == ';')
4290 *r_ptr = 0;
4291 r_ptr++;
4293 else if (*r_ptr == NUL)
4294 r_ptr = NULL;
4295 return r_ptr;
4297 #endif
4299 /* Clean up the given search context. Can handle a NULL pointer */
4300 void
4301 vim_findfile_cleanup(ctx)
4302 void *ctx;
4304 if (ctx == NULL)
4305 return;
4307 ff_search_ctx = ctx;
4309 vim_findfile_free_visited(ctx);
4310 ff_clear();
4311 vim_free(ctx);
4312 ff_search_ctx = NULL;
4316 * Find a file in a search context.
4317 * The search context was created with vim_findfile_init() above.
4318 * Return a pointer to an allocated file name or NULL if nothing found.
4319 * To get all matching files call this function until you get NULL.
4321 * If the passed search_context is NULL, NULL is returned.
4323 * The search algorithm is depth first. To change this replace the
4324 * stack with a list (don't forget to leave partly searched directories on the
4325 * top of the list).
4327 char_u *
4328 vim_findfile(search_ctx)
4329 void *search_ctx;
4331 char_u *file_path;
4332 #ifdef FEAT_PATH_EXTRA
4333 char_u *rest_of_wildcards;
4334 char_u *path_end = NULL;
4335 #endif
4336 ff_stack_T *ctx;
4337 #if defined(FEAT_SEARCHPATH) || defined(FEAT_PATH_EXTRA)
4338 int len;
4339 #endif
4340 int i;
4341 char_u *p;
4342 #ifdef FEAT_SEARCHPATH
4343 char_u *suf;
4344 #endif
4346 if (search_ctx == NULL)
4347 return NULL;
4349 ff_search_ctx = (ff_search_ctx_T*)search_ctx;
4352 * filepath is used as buffer for various actions and as the storage to
4353 * return a found filename.
4355 if ((file_path = alloc((int)MAXPATHL)) == NULL)
4356 return NULL;
4358 #ifdef FEAT_PATH_EXTRA
4359 /* store the end of the start dir -- needed for upward search */
4360 if (ff_search_ctx->ffsc_start_dir != NULL)
4361 path_end = &ff_search_ctx->ffsc_start_dir[STRLEN(ff_search_ctx->ffsc_start_dir)];
4362 #endif
4364 #ifdef FEAT_PATH_EXTRA
4365 /* upward search loop */
4366 for (;;)
4368 #endif
4369 /* downward search loop */
4370 for (;;)
4372 /* check if user user wants to stop the search*/
4373 ui_breakcheck();
4374 if (got_int)
4375 break;
4377 /* get directory to work on from stack */
4378 ctx = ff_pop();
4379 if (ctx == NULL)
4380 break;
4383 * TODO: decide if we leave this test in
4385 * GOOD: don't search a directory(-tree) twice.
4386 * BAD: - check linked list for every new directory entered.
4387 * - check for double files also done below
4389 * Here we check if we already searched this directory.
4390 * We already searched a directory if:
4391 * 1) The directory is the same.
4392 * 2) We would use the same wildcard string.
4394 * Good if you have links on same directory via several ways
4395 * or you have selfreferences in directories (e.g. SuSE Linux 6.3:
4396 * /etc/rc.d/init.d is linked to /etc/rc.d -> endless loop)
4398 * This check is only needed for directories we work on for the
4399 * first time (hence ctx->ff_filearray == NULL)
4401 if (ctx->ffs_filearray == NULL
4402 && ff_check_visited(&ff_search_ctx->ffsc_dir_visited_list
4403 ->ffvl_visited_list,
4404 ctx->ffs_fix_path
4405 #ifdef FEAT_PATH_EXTRA
4406 , ctx->ffs_wc_path
4407 #endif
4408 ) == FAIL)
4410 #ifdef FF_VERBOSE
4411 if (p_verbose >= 5)
4413 verbose_enter_scroll();
4414 smsg((char_u *)"Already Searched: %s (%s)",
4415 ctx->ffs_fix_path, ctx->ffs_wc_path);
4416 /* don't overwrite this either */
4417 msg_puts((char_u *)"\n");
4418 verbose_leave_scroll();
4420 #endif
4421 ff_free_stack_element(ctx);
4422 continue;
4424 #ifdef FF_VERBOSE
4425 else if (p_verbose >= 5)
4427 verbose_enter_scroll();
4428 smsg((char_u *)"Searching: %s (%s)",
4429 ctx->ffs_fix_path, ctx->ffs_wc_path);
4430 /* don't overwrite this either */
4431 msg_puts((char_u *)"\n");
4432 verbose_leave_scroll();
4434 #endif
4436 /* check depth */
4437 if (ctx->ffs_level <= 0)
4439 ff_free_stack_element(ctx);
4440 continue;
4443 file_path[0] = NUL;
4446 * If no filearray till now expand wildcards
4447 * The function expand_wildcards() can handle an array of paths
4448 * and all possible expands are returned in one array. We use this
4449 * to handle the expansion of '**' into an empty string.
4451 if (ctx->ffs_filearray == NULL)
4453 char_u *dirptrs[2];
4455 /* we use filepath to build the path expand_wildcards() should
4456 * expand.
4458 dirptrs[0] = file_path;
4459 dirptrs[1] = NULL;
4461 /* if we have a start dir copy it in */
4462 if (!vim_isAbsName(ctx->ffs_fix_path)
4463 && ff_search_ctx->ffsc_start_dir)
4465 STRCPY(file_path, ff_search_ctx->ffsc_start_dir);
4466 add_pathsep(file_path);
4469 /* append the fix part of the search path */
4470 STRCAT(file_path, ctx->ffs_fix_path);
4471 add_pathsep(file_path);
4473 #ifdef FEAT_PATH_EXTRA
4474 rest_of_wildcards = ctx->ffs_wc_path;
4475 if (*rest_of_wildcards != NUL)
4477 len = (int)STRLEN(file_path);
4478 if (STRNCMP(rest_of_wildcards, "**", 2) == 0)
4480 /* pointer to the restrict byte
4481 * The restrict byte is not a character!
4483 p = rest_of_wildcards + 2;
4485 if (*p > 0)
4487 (*p)--;
4488 file_path[len++] = '*';
4491 if (*p == 0)
4493 /* remove '**<numb> from wildcards */
4494 mch_memmove(rest_of_wildcards,
4495 rest_of_wildcards + 3,
4496 STRLEN(rest_of_wildcards + 3) + 1);
4498 else
4499 rest_of_wildcards += 3;
4501 if (ctx->ffs_star_star_empty == 0)
4503 /* if not done before, expand '**' to empty */
4504 ctx->ffs_star_star_empty = 1;
4505 dirptrs[1] = ctx->ffs_fix_path;
4510 * Here we copy until the next path separator or the end of
4511 * the path. If we stop at a path separator, there is
4512 * still something else left. This is handled below by
4513 * pushing every directory returned from expand_wildcards()
4514 * on the stack again for further search.
4516 while (*rest_of_wildcards
4517 && !vim_ispathsep(*rest_of_wildcards))
4518 file_path[len++] = *rest_of_wildcards++;
4520 file_path[len] = NUL;
4521 if (vim_ispathsep(*rest_of_wildcards))
4522 rest_of_wildcards++;
4524 #endif
4527 * Expand wildcards like "*" and "$VAR".
4528 * If the path is a URL don't try this.
4530 if (path_with_url(dirptrs[0]))
4532 ctx->ffs_filearray = (char_u **)
4533 alloc((unsigned)sizeof(char *));
4534 if (ctx->ffs_filearray != NULL
4535 && (ctx->ffs_filearray[0]
4536 = vim_strsave(dirptrs[0])) != NULL)
4537 ctx->ffs_filearray_size = 1;
4538 else
4539 ctx->ffs_filearray_size = 0;
4541 else
4542 expand_wildcards((dirptrs[1] == NULL) ? 1 : 2, dirptrs,
4543 &ctx->ffs_filearray_size,
4544 &ctx->ffs_filearray,
4545 EW_DIR|EW_ADDSLASH|EW_SILENT);
4547 ctx->ffs_filearray_cur = 0;
4548 ctx->ffs_stage = 0;
4550 #ifdef FEAT_PATH_EXTRA
4551 else
4552 rest_of_wildcards = &ctx->ffs_wc_path[STRLEN(ctx->ffs_wc_path)];
4553 #endif
4555 if (ctx->ffs_stage == 0)
4557 /* this is the first time we work on this directory */
4558 #ifdef FEAT_PATH_EXTRA
4559 if (*rest_of_wildcards == NUL)
4560 #endif
4563 * we don't have further wildcards to expand, so we have to
4564 * check for the final file now
4566 for (i = ctx->ffs_filearray_cur;
4567 i < ctx->ffs_filearray_size; ++i)
4569 if (!path_with_url(ctx->ffs_filearray[i])
4570 && !mch_isdir(ctx->ffs_filearray[i]))
4571 continue; /* not a directory */
4573 /* prepare the filename to be checked for existance
4574 * below */
4575 STRCPY(file_path, ctx->ffs_filearray[i]);
4576 add_pathsep(file_path);
4577 STRCAT(file_path, ff_search_ctx->ffsc_file_to_search);
4580 * Try without extra suffix and then with suffixes
4581 * from 'suffixesadd'.
4583 #ifdef FEAT_SEARCHPATH
4584 len = (int)STRLEN(file_path);
4585 suf = curbuf->b_p_sua;
4586 for (;;)
4587 #endif
4589 /* if file exists and we didn't already find it */
4590 if ((path_with_url(file_path)
4591 || (mch_getperm(file_path) >= 0
4592 && (!ff_search_ctx->ffsc_need_dir
4593 || mch_isdir(file_path))))
4594 #ifndef FF_VERBOSE
4595 && (ff_check_visited(
4596 &ff_search_ctx->ffsc_visited_list->ffvl_visited_list,
4597 file_path
4598 #ifdef FEAT_PATH_EXTRA
4599 , (char_u *)""
4600 #endif
4601 ) == OK)
4602 #endif
4605 #ifdef FF_VERBOSE
4606 if (ff_check_visited(
4607 &ff_search_ctx->ffsc_visited_list->ffvl_visited_list,
4608 file_path
4609 #ifdef FEAT_PATH_EXTRA
4610 , (char_u *)""
4611 #endif
4612 ) == FAIL)
4614 if (p_verbose >= 5)
4616 verbose_enter_scroll();
4617 smsg((char_u *)"Already: %s",
4618 file_path);
4619 /* don't overwrite this either */
4620 msg_puts((char_u *)"\n");
4621 verbose_leave_scroll();
4623 continue;
4625 #endif
4627 /* push dir to examine rest of subdirs later */
4628 ctx->ffs_filearray_cur = i + 1;
4629 ff_push(ctx);
4631 simplify_filename(file_path);
4632 if (mch_dirname(ff_expand_buffer, MAXPATHL)
4633 == OK)
4635 p = shorten_fname(file_path,
4636 ff_expand_buffer);
4637 if (p != NULL)
4638 mch_memmove(file_path, p,
4639 STRLEN(p) + 1);
4641 #ifdef FF_VERBOSE
4642 if (p_verbose >= 5)
4644 verbose_enter_scroll();
4645 smsg((char_u *)"HIT: %s", file_path);
4646 /* don't overwrite this either */
4647 msg_puts((char_u *)"\n");
4648 verbose_leave_scroll();
4650 #endif
4651 return file_path;
4654 #ifdef FEAT_SEARCHPATH
4655 /* Not found or found already, try next suffix. */
4656 if (*suf == NUL)
4657 break;
4658 copy_option_part(&suf, file_path + len,
4659 MAXPATHL - len, ",");
4660 #endif
4664 #ifdef FEAT_PATH_EXTRA
4665 else
4668 * still wildcards left, push the directories for further
4669 * search
4671 for (i = ctx->ffs_filearray_cur;
4672 i < ctx->ffs_filearray_size; ++i)
4674 if (!mch_isdir(ctx->ffs_filearray[i]))
4675 continue; /* not a directory */
4677 ff_push(ff_create_stack_element(ctx->ffs_filearray[i],
4678 rest_of_wildcards, ctx->ffs_level - 1, 0));
4681 #endif
4682 ctx->ffs_filearray_cur = 0;
4683 ctx->ffs_stage = 1;
4686 #ifdef FEAT_PATH_EXTRA
4688 * if wildcards contains '**' we have to descent till we reach the
4689 * leaves of the directory tree.
4691 if (STRNCMP(ctx->ffs_wc_path, "**", 2) == 0)
4693 for (i = ctx->ffs_filearray_cur;
4694 i < ctx->ffs_filearray_size; ++i)
4696 if (fnamecmp(ctx->ffs_filearray[i], ctx->ffs_fix_path) == 0)
4697 continue; /* don't repush same directory */
4698 if (!mch_isdir(ctx->ffs_filearray[i]))
4699 continue; /* not a directory */
4700 ff_push(ff_create_stack_element(ctx->ffs_filearray[i],
4701 ctx->ffs_wc_path, ctx->ffs_level - 1, 1));
4704 #endif
4706 /* we are done with the current directory */
4707 ff_free_stack_element(ctx);
4711 #ifdef FEAT_PATH_EXTRA
4712 /* If we reached this, we didn't find anything downwards.
4713 * Let's check if we should do an upward search.
4715 if (ff_search_ctx->ffsc_start_dir
4716 && ff_search_ctx->ffsc_stopdirs_v != NULL && !got_int)
4718 ff_stack_T *sptr;
4720 /* is the last starting directory in the stop list? */
4721 if (ff_path_in_stoplist(ff_search_ctx->ffsc_start_dir,
4722 (int)(path_end - ff_search_ctx->ffsc_start_dir),
4723 ff_search_ctx->ffsc_stopdirs_v) == TRUE)
4724 break;
4726 /* cut of last dir */
4727 while (path_end > ff_search_ctx->ffsc_start_dir
4728 && vim_ispathsep(*path_end))
4729 path_end--;
4730 while (path_end > ff_search_ctx->ffsc_start_dir
4731 && !vim_ispathsep(path_end[-1]))
4732 path_end--;
4733 *path_end = 0;
4734 path_end--;
4736 if (*ff_search_ctx->ffsc_start_dir == 0)
4737 break;
4739 STRCPY(file_path, ff_search_ctx->ffsc_start_dir);
4740 add_pathsep(file_path);
4741 STRCAT(file_path, ff_search_ctx->ffsc_fix_path);
4743 /* create a new stack entry */
4744 sptr = ff_create_stack_element(file_path,
4745 ff_search_ctx->ffsc_wc_path, ff_search_ctx->ffsc_level, 0);
4746 if (sptr == NULL)
4747 break;
4748 ff_push(sptr);
4750 else
4751 break;
4753 #endif
4755 vim_free(file_path);
4756 return NULL;
4760 * Free the list of lists of visited files and directories
4761 * Can handle it if the passed search_context is NULL;
4763 void
4764 vim_findfile_free_visited(search_ctx)
4765 void *search_ctx;
4767 if (search_ctx == NULL)
4768 return;
4770 ff_search_ctx = (ff_search_ctx_T *)search_ctx;
4772 vim_findfile_free_visited_list(&ff_search_ctx->ffsc_visited_lists_list);
4773 vim_findfile_free_visited_list(&ff_search_ctx->ffsc_dir_visited_lists_list);
4776 static void
4777 vim_findfile_free_visited_list(list_headp)
4778 ff_visited_list_hdr_T **list_headp;
4780 ff_visited_list_hdr_T *vp;
4782 while (*list_headp != NULL)
4784 vp = (*list_headp)->ffvl_next;
4785 ff_free_visited_list((*list_headp)->ffvl_visited_list);
4787 vim_free((*list_headp)->ffvl_filename);
4788 vim_free(*list_headp);
4789 *list_headp = vp;
4791 *list_headp = NULL;
4794 static void
4795 ff_free_visited_list(vl)
4796 ff_visited_T *vl;
4798 ff_visited_T *vp;
4800 while (vl != NULL)
4802 vp = vl->ffv_next;
4803 #ifdef FEAT_PATH_EXTRA
4804 vim_free(vl->ffv_wc_path);
4805 #endif
4806 vim_free(vl);
4807 vl = vp;
4809 vl = NULL;
4813 * Returns the already visited list for the given filename. If none is found it
4814 * allocates a new one.
4816 static ff_visited_list_hdr_T*
4817 ff_get_visited_list(filename, list_headp)
4818 char_u *filename;
4819 ff_visited_list_hdr_T **list_headp;
4821 ff_visited_list_hdr_T *retptr = NULL;
4823 /* check if a visited list for the given filename exists */
4824 if (*list_headp != NULL)
4826 retptr = *list_headp;
4827 while (retptr != NULL)
4829 if (fnamecmp(filename, retptr->ffvl_filename) == 0)
4831 #ifdef FF_VERBOSE
4832 if (p_verbose >= 5)
4834 verbose_enter_scroll();
4835 smsg((char_u *)"ff_get_visited_list: FOUND list for %s",
4836 filename);
4837 /* don't overwrite this either */
4838 msg_puts((char_u *)"\n");
4839 verbose_leave_scroll();
4841 #endif
4842 return retptr;
4844 retptr = retptr->ffvl_next;
4848 #ifdef FF_VERBOSE
4849 if (p_verbose >= 5)
4851 verbose_enter_scroll();
4852 smsg((char_u *)"ff_get_visited_list: new list for %s", filename);
4853 /* don't overwrite this either */
4854 msg_puts((char_u *)"\n");
4855 verbose_leave_scroll();
4857 #endif
4860 * if we reach this we didn't find a list and we have to allocate new list
4862 retptr = (ff_visited_list_hdr_T*)alloc((unsigned)sizeof(*retptr));
4863 if (retptr == NULL)
4864 return NULL;
4866 retptr->ffvl_visited_list = NULL;
4867 retptr->ffvl_filename = vim_strsave(filename);
4868 if (retptr->ffvl_filename == NULL)
4870 vim_free(retptr);
4871 return NULL;
4873 retptr->ffvl_next = *list_headp;
4874 *list_headp = retptr;
4876 return retptr;
4879 #ifdef FEAT_PATH_EXTRA
4881 * check if two wildcard paths are equal. Returns TRUE or FALSE.
4882 * They are equal if:
4883 * - both paths are NULL
4884 * - they have the same length
4885 * - char by char comparison is OK
4886 * - the only differences are in the counters behind a '**', so
4887 * '**\20' is equal to '**\24'
4889 static int
4890 ff_wc_equal(s1, s2)
4891 char_u *s1;
4892 char_u *s2;
4894 int i;
4896 if (s1 == s2)
4897 return TRUE;
4899 if (s1 == NULL || s2 == NULL)
4900 return FALSE;
4902 if (STRLEN(s1) != STRLEN(s2))
4903 return FAIL;
4905 for (i = 0; s1[i] != NUL && s2[i] != NUL; i++)
4907 if (s1[i] != s2[i]
4908 #ifdef CASE_INSENSITIVE_FILENAME
4909 && TOUPPER_LOC(s1[i]) != TOUPPER_LOC(s2[i])
4910 #endif
4913 if (i >= 2)
4914 if (s1[i-1] == '*' && s1[i-2] == '*')
4915 continue;
4916 else
4917 return FAIL;
4918 else
4919 return FAIL;
4922 return TRUE;
4924 #endif
4927 * maintains the list of already visited files and dirs
4928 * returns FAIL if the given file/dir is already in the list
4929 * returns OK if it is newly added
4931 * TODO: What to do on memory allocation problems?
4932 * -> return TRUE - Better the file is found several times instead of
4933 * never.
4935 static int
4936 ff_check_visited(visited_list, fname
4937 #ifdef FEAT_PATH_EXTRA
4938 , wc_path
4939 #endif
4941 ff_visited_T **visited_list;
4942 char_u *fname;
4943 #ifdef FEAT_PATH_EXTRA
4944 char_u *wc_path;
4945 #endif
4947 ff_visited_T *vp;
4948 #ifdef UNIX
4949 struct stat st;
4950 int url = FALSE;
4951 #endif
4953 /* For an URL we only compare the name, otherwise we compare the
4954 * device/inode (unix) or the full path name (not Unix). */
4955 if (path_with_url(fname))
4957 vim_strncpy(ff_expand_buffer, fname, MAXPATHL - 1);
4958 #ifdef UNIX
4959 url = TRUE;
4960 #endif
4962 else
4964 ff_expand_buffer[0] = NUL;
4965 #ifdef UNIX
4966 if (mch_stat((char *)fname, &st) < 0)
4967 #else
4968 if (vim_FullName(fname, ff_expand_buffer, MAXPATHL, TRUE) == FAIL)
4969 #endif
4970 return FAIL;
4973 /* check against list of already visited files */
4974 for (vp = *visited_list; vp != NULL; vp = vp->ffv_next)
4976 if (
4977 #ifdef UNIX
4978 !url
4979 ? (vp->ffv_dev == st.st_dev
4980 && vp->ffv_ino == st.st_ino)
4982 #endif
4983 fnamecmp(vp->ffv_fname, ff_expand_buffer) == 0
4986 #ifdef FEAT_PATH_EXTRA
4987 /* are the wildcard parts equal */
4988 if (ff_wc_equal(vp->ffv_wc_path, wc_path) == TRUE)
4989 #endif
4990 /* already visited */
4991 return FAIL;
4996 * New file/dir. Add it to the list of visited files/dirs.
4998 vp = (ff_visited_T *)alloc((unsigned)(sizeof(ff_visited_T)
4999 + STRLEN(ff_expand_buffer)));
5001 if (vp != NULL)
5003 #ifdef UNIX
5004 if (!url)
5006 vp->ffv_ino = st.st_ino;
5007 vp->ffv_dev = st.st_dev;
5008 vp->ffv_fname[0] = NUL;
5010 else
5012 vp->ffv_ino = 0;
5013 vp->ffv_dev = -1;
5014 #endif
5015 STRCPY(vp->ffv_fname, ff_expand_buffer);
5016 #ifdef UNIX
5018 #endif
5019 #ifdef FEAT_PATH_EXTRA
5020 if (wc_path != NULL)
5021 vp->ffv_wc_path = vim_strsave(wc_path);
5022 else
5023 vp->ffv_wc_path = NULL;
5024 #endif
5026 vp->ffv_next = *visited_list;
5027 *visited_list = vp;
5030 return OK;
5034 * create stack element from given path pieces
5036 static ff_stack_T *
5037 ff_create_stack_element(fix_part,
5038 #ifdef FEAT_PATH_EXTRA
5039 wc_part,
5040 #endif
5041 level, star_star_empty)
5042 char_u *fix_part;
5043 #ifdef FEAT_PATH_EXTRA
5044 char_u *wc_part;
5045 #endif
5046 int level;
5047 int star_star_empty;
5049 ff_stack_T *new;
5051 new = (ff_stack_T *)alloc((unsigned)sizeof(ff_stack_T));
5052 if (new == NULL)
5053 return NULL;
5055 new->ffs_prev = NULL;
5056 new->ffs_filearray = NULL;
5057 new->ffs_filearray_size = 0;
5058 new->ffs_filearray_cur = 0;
5059 new->ffs_stage = 0;
5060 new->ffs_level = level;
5061 new->ffs_star_star_empty = star_star_empty;;
5063 /* the following saves NULL pointer checks in vim_findfile */
5064 if (fix_part == NULL)
5065 fix_part = (char_u *)"";
5066 new->ffs_fix_path = vim_strsave(fix_part);
5068 #ifdef FEAT_PATH_EXTRA
5069 if (wc_part == NULL)
5070 wc_part = (char_u *)"";
5071 new->ffs_wc_path = vim_strsave(wc_part);
5072 #endif
5074 if (new->ffs_fix_path == NULL
5075 #ifdef FEAT_PATH_EXTRA
5076 || new->ffs_wc_path == NULL
5077 #endif
5080 ff_free_stack_element(new);
5081 new = NULL;
5084 return new;
5088 * push a dir on the directory stack
5090 static void
5091 ff_push(ctx)
5092 ff_stack_T *ctx;
5094 /* check for NULL pointer, not to return an error to the user, but
5095 * to prevent a crash */
5096 if (ctx != NULL)
5098 ctx->ffs_prev = ff_search_ctx->ffsc_stack_ptr;
5099 ff_search_ctx->ffsc_stack_ptr = ctx;
5104 * pop a dir from the directory stack
5105 * returns NULL if stack is empty
5107 static ff_stack_T *
5108 ff_pop()
5110 ff_stack_T *sptr;
5112 sptr = ff_search_ctx->ffsc_stack_ptr;
5113 if (ff_search_ctx->ffsc_stack_ptr != NULL)
5114 ff_search_ctx->ffsc_stack_ptr = ff_search_ctx->ffsc_stack_ptr->ffs_prev;
5116 return sptr;
5120 * free the given stack element
5122 static void
5123 ff_free_stack_element(ctx)
5124 ff_stack_T *ctx;
5126 /* vim_free handles possible NULL pointers */
5127 vim_free(ctx->ffs_fix_path);
5128 #ifdef FEAT_PATH_EXTRA
5129 vim_free(ctx->ffs_wc_path);
5130 #endif
5132 if (ctx->ffs_filearray != NULL)
5133 FreeWild(ctx->ffs_filearray_size, ctx->ffs_filearray);
5135 vim_free(ctx);
5139 * clear the search context
5141 static void
5142 ff_clear()
5144 ff_stack_T *sptr;
5146 /* clear up stack */
5147 while ((sptr = ff_pop()) != NULL)
5148 ff_free_stack_element(sptr);
5150 vim_free(ff_search_ctx->ffsc_file_to_search);
5151 vim_free(ff_search_ctx->ffsc_start_dir);
5152 vim_free(ff_search_ctx->ffsc_fix_path);
5153 #ifdef FEAT_PATH_EXTRA
5154 vim_free(ff_search_ctx->ffsc_wc_path);
5155 #endif
5157 #ifdef FEAT_PATH_EXTRA
5158 if (ff_search_ctx->ffsc_stopdirs_v != NULL)
5160 int i = 0;
5162 while (ff_search_ctx->ffsc_stopdirs_v[i] != NULL)
5164 vim_free(ff_search_ctx->ffsc_stopdirs_v[i]);
5165 i++;
5167 vim_free(ff_search_ctx->ffsc_stopdirs_v);
5169 ff_search_ctx->ffsc_stopdirs_v = NULL;
5170 #endif
5172 /* reset everything */
5173 ff_search_ctx->ffsc_file_to_search = NULL;
5174 ff_search_ctx->ffsc_start_dir = NULL;
5175 ff_search_ctx->ffsc_fix_path = NULL;
5176 #ifdef FEAT_PATH_EXTRA
5177 ff_search_ctx->ffsc_wc_path = NULL;
5178 ff_search_ctx->ffsc_level = 0;
5179 #endif
5182 #ifdef FEAT_PATH_EXTRA
5184 * check if the given path is in the stopdirs
5185 * returns TRUE if yes else FALSE
5187 static int
5188 ff_path_in_stoplist(path, path_len, stopdirs_v)
5189 char_u *path;
5190 int path_len;
5191 char_u **stopdirs_v;
5193 int i = 0;
5195 /* eat up trailing path separators, except the first */
5196 while (path_len > 1 && vim_ispathsep(path[path_len - 1]))
5197 path_len--;
5199 /* if no path consider it as match */
5200 if (path_len == 0)
5201 return TRUE;
5203 for (i = 0; stopdirs_v[i] != NULL; i++)
5205 if ((int)STRLEN(stopdirs_v[i]) > path_len)
5207 /* match for parent directory. So '/home' also matches
5208 * '/home/rks'. Check for PATHSEP in stopdirs_v[i], else
5209 * '/home/r' would also match '/home/rks'
5211 if (fnamencmp(stopdirs_v[i], path, path_len) == 0
5212 && vim_ispathsep(stopdirs_v[i][path_len]))
5213 return TRUE;
5215 else
5217 if (fnamecmp(stopdirs_v[i], path) == 0)
5218 return TRUE;
5221 return FALSE;
5223 #endif
5225 #if defined(FEAT_SEARCHPATH) || defined(PROTO)
5227 * Find the file name "ptr[len]" in the path.
5229 * On the first call set the parameter 'first' to TRUE to initialize
5230 * the search. For repeating calls to FALSE.
5232 * Repeating calls will return other files called 'ptr[len]' from the path.
5234 * Only on the first call 'ptr' and 'len' are used. For repeating calls they
5235 * don't need valid values.
5237 * If nothing found on the first call the option FNAME_MESS will issue the
5238 * message:
5239 * 'Can't find file "<file>" in path'
5240 * On repeating calls:
5241 * 'No more file "<file>" found in path'
5243 * options:
5244 * FNAME_MESS give error message when not found
5246 * Uses NameBuff[]!
5248 * Returns an allocated string for the file name. NULL for error.
5251 char_u *
5252 find_file_in_path(ptr, len, options, first, rel_fname)
5253 char_u *ptr; /* file name */
5254 int len; /* length of file name */
5255 int options;
5256 int first; /* use count'th matching file name */
5257 char_u *rel_fname; /* file name searching relative to */
5259 return find_file_in_path_option(ptr, len, options, first,
5260 *curbuf->b_p_path == NUL ? p_path : curbuf->b_p_path,
5261 FALSE, rel_fname, curbuf->b_p_sua);
5264 static char_u *ff_file_to_find = NULL;
5265 static void *fdip_search_ctx = NULL;
5267 #if defined(EXITFREE)
5268 static void
5269 free_findfile()
5271 vim_free(ff_file_to_find);
5272 vim_findfile_cleanup(fdip_search_ctx);
5274 #endif
5277 * Find the directory name "ptr[len]" in the path.
5279 * options:
5280 * FNAME_MESS give error message when not found
5282 * Uses NameBuff[]!
5284 * Returns an allocated string for the file name. NULL for error.
5286 char_u *
5287 find_directory_in_path(ptr, len, options, rel_fname)
5288 char_u *ptr; /* file name */
5289 int len; /* length of file name */
5290 int options;
5291 char_u *rel_fname; /* file name searching relative to */
5293 return find_file_in_path_option(ptr, len, options, TRUE, p_cdpath,
5294 TRUE, rel_fname, (char_u *)"");
5297 char_u *
5298 find_file_in_path_option(ptr, len, options, first, path_option, need_dir, rel_fname, suffixes)
5299 char_u *ptr; /* file name */
5300 int len; /* length of file name */
5301 int options;
5302 int first; /* use count'th matching file name */
5303 char_u *path_option; /* p_path or p_cdpath */
5304 int need_dir; /* looking for directory name */
5305 char_u *rel_fname; /* file name we are looking relative to. */
5306 char_u *suffixes; /* list of suffixes, 'suffixesadd' option */
5308 static char_u *dir;
5309 static int did_findfile_init = FALSE;
5310 char_u save_char;
5311 char_u *file_name = NULL;
5312 char_u *buf = NULL;
5313 int rel_to_curdir;
5314 #ifdef AMIGA
5315 struct Process *proc = (struct Process *)FindTask(0L);
5316 APTR save_winptr = proc->pr_WindowPtr;
5318 /* Avoid a requester here for a volume that doesn't exist. */
5319 proc->pr_WindowPtr = (APTR)-1L;
5320 #endif
5322 if (first == TRUE)
5324 /* copy file name into NameBuff, expanding environment variables */
5325 save_char = ptr[len];
5326 ptr[len] = NUL;
5327 expand_env(ptr, NameBuff, MAXPATHL);
5328 ptr[len] = save_char;
5330 vim_free(ff_file_to_find);
5331 ff_file_to_find = vim_strsave(NameBuff);
5332 if (ff_file_to_find == NULL) /* out of memory */
5334 file_name = NULL;
5335 goto theend;
5339 rel_to_curdir = (ff_file_to_find[0] == '.'
5340 && (ff_file_to_find[1] == NUL
5341 || vim_ispathsep(ff_file_to_find[1])
5342 || (ff_file_to_find[1] == '.'
5343 && (ff_file_to_find[2] == NUL
5344 || vim_ispathsep(ff_file_to_find[2])))));
5345 if (vim_isAbsName(ff_file_to_find)
5346 /* "..", "../path", "." and "./path": don't use the path_option */
5347 || rel_to_curdir
5348 #if defined(MSWIN) || defined(MSDOS) || defined(OS2)
5349 /* handle "\tmp" as absolute path */
5350 || vim_ispathsep(ff_file_to_find[0])
5351 /* handle "c:name" as absulute path */
5352 || (ff_file_to_find[0] != NUL && ff_file_to_find[1] == ':')
5353 #endif
5354 #ifdef AMIGA
5355 /* handle ":tmp" as absolute path */
5356 || ff_file_to_find[0] == ':'
5357 #endif
5361 * Absolute path, no need to use "path_option".
5362 * If this is not a first call, return NULL. We already returned a
5363 * filename on the first call.
5365 if (first == TRUE)
5367 int l;
5368 int run;
5370 if (path_with_url(ff_file_to_find))
5372 file_name = vim_strsave(ff_file_to_find);
5373 goto theend;
5376 /* When FNAME_REL flag given first use the directory of the file.
5377 * Otherwise or when this fails use the current directory. */
5378 for (run = 1; run <= 2; ++run)
5380 l = (int)STRLEN(ff_file_to_find);
5381 if (run == 1
5382 && rel_to_curdir
5383 && (options & FNAME_REL)
5384 && rel_fname != NULL
5385 && STRLEN(rel_fname) + l < MAXPATHL)
5387 STRCPY(NameBuff, rel_fname);
5388 STRCPY(gettail(NameBuff), ff_file_to_find);
5389 l = (int)STRLEN(NameBuff);
5391 else
5393 STRCPY(NameBuff, ff_file_to_find);
5394 run = 2;
5397 /* When the file doesn't exist, try adding parts of
5398 * 'suffixesadd'. */
5399 buf = suffixes;
5400 for (;;)
5402 if (
5403 #ifdef DJGPP
5404 /* "C:" by itself will fail for mch_getperm(),
5405 * assume it's always valid. */
5406 (need_dir && NameBuff[0] != NUL
5407 && NameBuff[1] == ':'
5408 && NameBuff[2] == NUL) ||
5409 #endif
5410 (mch_getperm(NameBuff) >= 0
5411 && (!need_dir || mch_isdir(NameBuff))))
5413 file_name = vim_strsave(NameBuff);
5414 goto theend;
5416 if (*buf == NUL)
5417 break;
5418 copy_option_part(&buf, NameBuff + l, MAXPATHL - l, ",");
5423 else
5426 * Loop over all paths in the 'path' or 'cdpath' option.
5427 * When "first" is set, first setup to the start of the option.
5428 * Otherwise continue to find the next match.
5430 if (first == TRUE)
5432 /* vim_findfile_free_visited can handle a possible NULL pointer */
5433 vim_findfile_free_visited(fdip_search_ctx);
5434 dir = path_option;
5435 did_findfile_init = FALSE;
5438 for (;;)
5440 if (did_findfile_init)
5442 ff_search_ctx->ffsc_need_dir = need_dir;
5443 file_name = vim_findfile(fdip_search_ctx);
5444 ff_search_ctx->ffsc_need_dir = FALSE;
5445 if (file_name != NULL)
5446 break;
5448 did_findfile_init = FALSE;
5450 else
5452 char_u *r_ptr;
5454 if (dir == NULL || *dir == NUL)
5456 /* We searched all paths of the option, now we can
5457 * free the search context. */
5458 vim_findfile_cleanup(fdip_search_ctx);
5459 fdip_search_ctx = NULL;
5460 break;
5463 if ((buf = alloc((int)(MAXPATHL))) == NULL)
5464 break;
5466 /* copy next path */
5467 buf[0] = 0;
5468 copy_option_part(&dir, buf, MAXPATHL, " ,");
5470 #ifdef FEAT_PATH_EXTRA
5471 /* get the stopdir string */
5472 r_ptr = vim_findfile_stopdir(buf);
5473 #else
5474 r_ptr = NULL;
5475 #endif
5476 fdip_search_ctx = vim_findfile_init(buf, ff_file_to_find,
5477 r_ptr, 100, FALSE, TRUE,
5478 fdip_search_ctx, FALSE, rel_fname);
5479 if (fdip_search_ctx != NULL)
5480 did_findfile_init = TRUE;
5481 vim_free(buf);
5485 if (file_name == NULL && (options & FNAME_MESS))
5487 if (first == TRUE)
5489 if (need_dir)
5490 EMSG2(_("E344: Can't find directory \"%s\" in cdpath"),
5491 ff_file_to_find);
5492 else
5493 EMSG2(_("E345: Can't find file \"%s\" in path"),
5494 ff_file_to_find);
5496 else
5498 if (need_dir)
5499 EMSG2(_("E346: No more directory \"%s\" found in cdpath"),
5500 ff_file_to_find);
5501 else
5502 EMSG2(_("E347: No more file \"%s\" found in path"),
5503 ff_file_to_find);
5507 theend:
5508 #ifdef AMIGA
5509 proc->pr_WindowPtr = save_winptr;
5510 #endif
5511 return file_name;
5514 #endif /* FEAT_SEARCHPATH */
5517 * Change directory to "new_dir". If FEAT_SEARCHPATH is defined, search
5518 * 'cdpath' for relative directory names, otherwise just mch_chdir().
5521 vim_chdir(new_dir)
5522 char_u *new_dir;
5524 #ifndef FEAT_SEARCHPATH
5525 return mch_chdir((char *)new_dir);
5526 #else
5527 char_u *dir_name;
5528 int r;
5530 dir_name = find_directory_in_path(new_dir, (int)STRLEN(new_dir),
5531 FNAME_MESS, curbuf->b_ffname);
5532 if (dir_name == NULL)
5533 return -1;
5534 r = mch_chdir((char *)dir_name);
5535 vim_free(dir_name);
5536 return r;
5537 #endif
5541 * Get user name from machine-specific function.
5542 * Returns the user name in "buf[len]".
5543 * Some systems are quite slow in obtaining the user name (Windows NT), thus
5544 * cache the result.
5545 * Returns OK or FAIL.
5548 get_user_name(buf, len)
5549 char_u *buf;
5550 int len;
5552 if (username == NULL)
5554 if (mch_get_user_name(buf, len) == FAIL)
5555 return FAIL;
5556 username = vim_strsave(buf);
5558 else
5559 vim_strncpy(buf, username, len - 1);
5560 return OK;
5563 #ifndef HAVE_QSORT
5565 * Our own qsort(), for systems that don't have it.
5566 * It's simple and slow. From the K&R C book.
5568 void
5569 qsort(base, elm_count, elm_size, cmp)
5570 void *base;
5571 size_t elm_count;
5572 size_t elm_size;
5573 int (*cmp) __ARGS((const void *, const void *));
5575 char_u *buf;
5576 char_u *p1;
5577 char_u *p2;
5578 int i, j;
5579 int gap;
5581 buf = alloc((unsigned)elm_size);
5582 if (buf == NULL)
5583 return;
5585 for (gap = elm_count / 2; gap > 0; gap /= 2)
5586 for (i = gap; i < elm_count; ++i)
5587 for (j = i - gap; j >= 0; j -= gap)
5589 /* Compare the elements. */
5590 p1 = (char_u *)base + j * elm_size;
5591 p2 = (char_u *)base + (j + gap) * elm_size;
5592 if ((*cmp)((void *)p1, (void *)p2) <= 0)
5593 break;
5594 /* Exchange the elemets. */
5595 mch_memmove(buf, p1, elm_size);
5596 mch_memmove(p1, p2, elm_size);
5597 mch_memmove(p2, buf, elm_size);
5600 vim_free(buf);
5602 #endif
5605 * Sort an array of strings.
5607 static int
5608 #ifdef __BORLANDC__
5609 _RTLENTRYF
5610 #endif
5611 sort_compare __ARGS((const void *s1, const void *s2));
5613 static int
5614 #ifdef __BORLANDC__
5615 _RTLENTRYF
5616 #endif
5617 sort_compare(s1, s2)
5618 const void *s1;
5619 const void *s2;
5621 return STRCMP(*(char **)s1, *(char **)s2);
5624 void
5625 sort_strings(files, count)
5626 char_u **files;
5627 int count;
5629 qsort((void *)files, (size_t)count, sizeof(char_u *), sort_compare);
5632 #if !defined(NO_EXPANDPATH) || defined(PROTO)
5634 * Compare path "p[]" to "q[]".
5635 * If "maxlen" >= 0 compare "p[maxlen]" to "q[maxlen]"
5636 * Return value like strcmp(p, q), but consider path separators.
5639 pathcmp(p, q, maxlen)
5640 const char *p, *q;
5641 int maxlen;
5643 int i;
5644 const char *s = NULL;
5646 for (i = 0; maxlen < 0 || i < maxlen; ++i)
5648 /* End of "p": check if "q" also ends or just has a slash. */
5649 if (p[i] == NUL)
5651 if (q[i] == NUL) /* full match */
5652 return 0;
5653 s = q;
5654 break;
5657 /* End of "q": check if "p" just has a slash. */
5658 if (q[i] == NUL)
5660 s = p;
5661 break;
5664 if (
5665 #ifdef CASE_INSENSITIVE_FILENAME
5666 TOUPPER_LOC(p[i]) != TOUPPER_LOC(q[i])
5667 #else
5668 p[i] != q[i]
5669 #endif
5670 #ifdef BACKSLASH_IN_FILENAME
5671 /* consider '/' and '\\' to be equal */
5672 && !((p[i] == '/' && q[i] == '\\')
5673 || (p[i] == '\\' && q[i] == '/'))
5674 #endif
5677 if (vim_ispathsep(p[i]))
5678 return -1;
5679 if (vim_ispathsep(q[i]))
5680 return 1;
5681 return ((char_u *)p)[i] - ((char_u *)q)[i]; /* no match */
5684 if (s == NULL) /* "i" ran into "maxlen" */
5685 return 0;
5687 /* ignore a trailing slash, but not "//" or ":/" */
5688 if (s[i + 1] == NUL
5689 && i > 0
5690 && !after_pathsep((char_u *)s, (char_u *)s + i)
5691 #ifdef BACKSLASH_IN_FILENAME
5692 && (s[i] == '/' || s[i] == '\\')
5693 #else
5694 && s[i] == '/'
5695 #endif
5697 return 0; /* match with trailing slash */
5698 if (s == q)
5699 return -1; /* no match */
5700 return 1;
5702 #endif
5705 * The putenv() implementation below comes from the "screen" program.
5706 * Included with permission from Juergen Weigert.
5707 * See pty.c for the copyright notice.
5711 * putenv -- put value into environment
5713 * Usage: i = putenv (string)
5714 * int i;
5715 * char *string;
5717 * where string is of the form <name>=<value>.
5718 * Putenv returns 0 normally, -1 on error (not enough core for malloc).
5720 * Putenv may need to add a new name into the environment, or to
5721 * associate a value longer than the current value with a particular
5722 * name. So, to make life simpler, putenv() copies your entire
5723 * environment into the heap (i.e. malloc()) from the stack
5724 * (i.e. where it resides when your process is initiated) the first
5725 * time you call it.
5727 * (history removed, not very interesting. See the "screen" sources.)
5730 #if !defined(HAVE_SETENV) && !defined(HAVE_PUTENV)
5732 #define EXTRASIZE 5 /* increment to add to env. size */
5734 static int envsize = -1; /* current size of environment */
5735 #ifndef MACOS_CLASSIC
5736 extern
5737 #endif
5738 char **environ; /* the global which is your env. */
5740 static int findenv __ARGS((char *name)); /* look for a name in the env. */
5741 static int newenv __ARGS((void)); /* copy env. from stack to heap */
5742 static int moreenv __ARGS((void)); /* incr. size of env. */
5745 putenv(string)
5746 const char *string;
5748 int i;
5749 char *p;
5751 if (envsize < 0)
5752 { /* first time putenv called */
5753 if (newenv() < 0) /* copy env. to heap */
5754 return -1;
5757 i = findenv((char *)string); /* look for name in environment */
5759 if (i < 0)
5760 { /* name must be added */
5761 for (i = 0; environ[i]; i++);
5762 if (i >= (envsize - 1))
5763 { /* need new slot */
5764 if (moreenv() < 0)
5765 return -1;
5767 p = (char *)alloc((unsigned)(strlen(string) + 1));
5768 if (p == NULL) /* not enough core */
5769 return -1;
5770 environ[i + 1] = 0; /* new end of env. */
5772 else
5773 { /* name already in env. */
5774 p = vim_realloc(environ[i], strlen(string) + 1);
5775 if (p == NULL)
5776 return -1;
5778 sprintf(p, "%s", string); /* copy into env. */
5779 environ[i] = p;
5781 return 0;
5784 static int
5785 findenv(name)
5786 char *name;
5788 char *namechar, *envchar;
5789 int i, found;
5791 found = 0;
5792 for (i = 0; environ[i] && !found; i++)
5794 envchar = environ[i];
5795 namechar = name;
5796 while (*namechar && *namechar != '=' && (*namechar == *envchar))
5798 namechar++;
5799 envchar++;
5801 found = ((*namechar == '\0' || *namechar == '=') && *envchar == '=');
5803 return found ? i - 1 : -1;
5806 static int
5807 newenv()
5809 char **env, *elem;
5810 int i, esize;
5812 #ifdef MACOS
5813 /* for Mac a new, empty environment is created */
5814 i = 0;
5815 #else
5816 for (i = 0; environ[i]; i++)
5818 #endif
5819 esize = i + EXTRASIZE + 1;
5820 env = (char **)alloc((unsigned)(esize * sizeof (elem)));
5821 if (env == NULL)
5822 return -1;
5824 #ifndef MACOS
5825 for (i = 0; environ[i]; i++)
5827 elem = (char *)alloc((unsigned)(strlen(environ[i]) + 1));
5828 if (elem == NULL)
5829 return -1;
5830 env[i] = elem;
5831 strcpy(elem, environ[i]);
5833 #endif
5835 env[i] = 0;
5836 environ = env;
5837 envsize = esize;
5838 return 0;
5841 static int
5842 moreenv()
5844 int esize;
5845 char **env;
5847 esize = envsize + EXTRASIZE;
5848 env = (char **)vim_realloc((char *)environ, esize * sizeof (*env));
5849 if (env == 0)
5850 return -1;
5851 environ = env;
5852 envsize = esize;
5853 return 0;
5856 # ifdef USE_VIMPTY_GETENV
5857 char_u *
5858 vimpty_getenv(string)
5859 const char_u *string;
5861 int i;
5862 char_u *p;
5864 if (envsize < 0)
5865 return NULL;
5867 i = findenv((char *)string);
5869 if (i < 0)
5870 return NULL;
5872 p = vim_strchr((char_u *)environ[i], '=');
5873 return (p + 1);
5875 # endif
5877 #endif /* !defined(HAVE_SETENV) && !defined(HAVE_PUTENV) */
5879 #if defined(FEAT_EVAL) || defined(FEAT_SPELL) || defined(PROTO)
5881 * Return 0 for not writable, 1 for writable file, 2 for a dir which we have
5882 * rights to write into.
5885 filewritable(fname)
5886 char_u *fname;
5888 int retval = 0;
5889 #if defined(UNIX) || defined(VMS)
5890 int perm = 0;
5891 #endif
5893 #if defined(UNIX) || defined(VMS)
5894 perm = mch_getperm(fname);
5895 #endif
5896 #ifndef MACOS_CLASSIC /* TODO: get either mch_writable or mch_access */
5897 if (
5898 # ifdef WIN3264
5899 mch_writable(fname) &&
5900 # else
5901 # if defined(UNIX) || defined(VMS)
5902 (perm & 0222) &&
5903 # endif
5904 # endif
5905 mch_access((char *)fname, W_OK) == 0
5907 #endif
5909 ++retval;
5910 if (mch_isdir(fname))
5911 ++retval;
5913 return retval;
5915 #endif
5918 * Print an error message with one or two "%s" and one or two string arguments.
5919 * This is not in message.c to avoid a warning for prototypes.
5922 emsg3(s, a1, a2)
5923 char_u *s, *a1, *a2;
5925 if (emsg_not_now())
5926 return TRUE; /* no error messages at the moment */
5927 vim_snprintf((char *)IObuff, IOSIZE, (char *)s, (long_u)a1, (long_u)a2);
5928 return emsg(IObuff);
5932 * Print an error message with one "%ld" and one long int argument.
5933 * This is not in message.c to avoid a warning for prototypes.
5936 emsgn(s, n)
5937 char_u *s;
5938 long n;
5940 if (emsg_not_now())
5941 return TRUE; /* no error messages at the moment */
5942 vim_snprintf((char *)IObuff, IOSIZE, (char *)s, n);
5943 return emsg(IObuff);