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.
11 * misc2.c: Various functions.
15 static char_u
*username
= NULL
; /* cached result of mch_get_user_name() */
17 static char_u
*ff_expand_buffer
= NULL
; /* used for expanding filenames */
19 #if defined(FEAT_VIRTUALEDIT) || defined(PROTO)
20 static int coladvance2
__ARGS((pos_T
*pos
, int addspaces
, int finetune
, colnr_T wcol
));
23 * Return TRUE if in the current mode we need to use virtual.
28 /* While an operator is being executed we return "virtual_op", because
29 * VIsual_active has already been reset, thus we can't check for "block"
31 if (virtual_op
!= MAYBE
)
33 return (ve_flags
== VE_ALL
35 || ((ve_flags
& VE_BLOCK
) && VIsual_active
&& VIsual_mode
== Ctrl_V
)
37 || ((ve_flags
& VE_INSERT
) && (State
& INSERT
)));
41 * Get the screen position of the cursor.
48 getvvcol(curwin
, &curwin
->w_cursor
, &x
, NULL
, NULL
);
53 * Get the screen position of character col with a coladd in the cursor line.
56 getviscol2(col
, coladd
)
63 pos
.lnum
= curwin
->w_cursor
.lnum
;
66 getvvcol(curwin
, &pos
, &x
, NULL
, NULL
);
71 * Go to column "wcol", and add/insert white space as necessary to get the
72 * cursor in that column.
73 * The caller must have saved the cursor line for undo!
76 coladvance_force(wcol
)
79 int rc
= coladvance2(&curwin
->w_cursor
, TRUE
, FALSE
, wcol
);
82 curwin
->w_valid
&= ~VALID_VIRTCOL
;
85 /* Virtcol is valid */
86 curwin
->w_valid
|= VALID_VIRTCOL
;
87 curwin
->w_virtcol
= wcol
;
94 * Try to advance the Cursor to the specified screen column.
95 * If virtual editing: fine tune the cursor position.
96 * Note that all virtual positions off the end of a line should share
97 * a curwin->w_cursor.col value (n.b. this is equal to STRLEN(line)),
98 * beginning at coladd 0.
100 * return OK if desired column is reached, FAIL if not
106 int rc
= getvpos(&curwin
->w_cursor
, wcol
);
108 if (wcol
== MAXCOL
|| rc
== FAIL
)
109 curwin
->w_valid
&= ~VALID_VIRTCOL
;
110 else if (*ml_get_cursor() != TAB
)
112 /* Virtcol is valid when not on a TAB */
113 curwin
->w_valid
|= VALID_VIRTCOL
;
114 curwin
->w_virtcol
= wcol
;
120 * Return in "pos" the position of the cursor advanced to screen column "wcol".
121 * return OK if desired column is reached, FAIL if not
128 #ifdef FEAT_VIRTUALEDIT
129 return coladvance2(pos
, FALSE
, virtual_active(), wcol
);
133 coladvance2(pos
, addspaces
, finetune
, wcol
)
135 int addspaces
; /* change the text to achieve our goal? */
136 int finetune
; /* change char offset for the exact column */
137 colnr_T wcol
; /* column to move to */
146 #ifdef FEAT_LINEBREAK
150 one_more
= (State
& INSERT
)
151 || restart_edit
!= NUL
153 || (VIsual_active
&& *p_sel
!= 'o')
155 #ifdef FEAT_VIRTUALEDIT
156 || ((ve_flags
& VE_ONEMORE
) && wcol
< MAXCOL
)
159 line
= ml_get_buf(curbuf
, pos
->lnum
, FALSE
);
163 idx
= (int)STRLEN(line
) - 1 + one_more
;
166 #ifdef FEAT_VIRTUALEDIT
167 if ((addspaces
|| finetune
) && !VIsual_active
)
169 curwin
->w_curswant
= linetabsize(line
) + one_more
;
170 if (curwin
->w_curswant
> 0)
171 --curwin
->w_curswant
;
177 #ifdef FEAT_VIRTUALEDIT
178 int width
= W_WIDTH(curwin
) - win_col_off(curwin
);
182 # ifdef FEAT_VERTSPLIT
183 && curwin
->w_width
!= 0
185 && wcol
>= (colnr_T
)width
)
187 csize
= linetabsize(line
);
191 if (wcol
/ width
> (colnr_T
)csize
/ width
192 && ((State
& INSERT
) == 0 || (int)wcol
> csize
+ 1))
194 /* In case of line wrapping don't move the cursor beyond the
195 * right screen edge. In Insert mode allow going just beyond
196 * the last character (like what happens when typing and
197 * reaching the right window edge). */
198 wcol
= (csize
/ width
+ 1) * width
- 1;
205 while (col
<= wcol
&& *ptr
!= NUL
)
207 /* Count a tab for what it's worth (if list mode not on) */
208 #ifdef FEAT_LINEBREAK
209 csize
= win_lbr_chartabsize(curwin
, ptr
, col
, &head
);
212 csize
= lbr_chartabsize_adv(&ptr
, col
);
216 idx
= (int)(ptr
- line
);
218 * Handle all the special cases. The virtual_active() check
219 * is needed to ensure that a virtual position off the end of
220 * a line has the correct indexing. The one_more comparison
221 * replaces an explicit add of one_more later on.
223 if (col
> wcol
|| (!virtual_active() && one_more
== 0))
226 # ifdef FEAT_LINEBREAK
227 /* Don't count the chars from 'showbreak'. */
233 #ifdef FEAT_VIRTUALEDIT
236 && ((col
!= wcol
&& col
!= wcol
+ 1) || csize
> 1))
238 /* 'virtualedit' is set: The difference between wcol and col is
239 * filled with spaces. */
241 if (line
[idx
] == NUL
)
244 int correct
= wcol
- col
;
245 char_u
*newline
= alloc(idx
+ correct
+ 1);
251 for (t
= 0; t
< idx
; ++t
)
252 newline
[t
] = line
[t
];
254 for (t
= 0; t
< correct
; ++t
)
255 newline
[t
+ idx
] = ' ';
257 newline
[idx
+ correct
] = NUL
;
259 ml_replace(pos
->lnum
, newline
, FALSE
);
260 changed_bytes(pos
->lnum
, (colnr_T
)idx
);
267 int linelen
= (int)STRLEN(line
);
268 int correct
= wcol
- col
- csize
+ 1; /* negative!! */
273 if (-correct
> csize
)
276 newline
= alloc(linelen
+ csize
);
280 for (t
= 0; t
< linelen
; t
++)
283 newline
[s
++] = line
[t
];
285 for (v
= 0; v
< csize
; v
++)
289 newline
[linelen
+ csize
- 1] = NUL
;
291 ml_replace(pos
->lnum
, newline
, FALSE
);
292 changed_bytes(pos
->lnum
, idx
);
293 idx
+= (csize
- 1 + correct
);
305 #ifdef FEAT_VIRTUALEDIT
312 /* The width of the last character is used to set coladd. */
317 getvcol(curwin
, pos
, &scol
, NULL
, &ecol
);
318 pos
->coladd
= ecol
- scol
;
323 int b
= (int)wcol
- (int)col
;
325 /* The difference between wcol and col is used to set coladd. */
326 if (b
> 0 && b
< (MAXCOL
- 2 * W_WIDTH(curwin
)))
335 /* prevent from moving onto a trail byte */
346 * Increment the cursor position. See inc() for return values.
351 return inc(&curwin
->w_cursor
);
355 * Increment the line pointer "lp" crossing line boundaries as necessary.
356 * Return 1 when going to the next line.
357 * Return 2 when moving forward onto a NUL at the end of the line).
358 * Return -1 when at the end of file.
359 * Return 0 otherwise.
365 char_u
*p
= ml_get_pos(lp
);
367 if (*p
!= NUL
) /* still within line, move to next char (may be NUL) */
372 int l
= (*mb_ptr2len
)(p
);
375 return ((p
[l
] != NUL
) ? 0 : 2);
379 #ifdef FEAT_VIRTUALEDIT
382 return ((p
[1] != NUL
) ? 0 : 2);
384 if (lp
->lnum
!= curbuf
->b_ml
.ml_line_count
) /* there is a next line */
388 #ifdef FEAT_VIRTUALEDIT
397 * incl(lp): same as inc(), but skip the NUL at the end of non-empty lines
405 if ((r
= inc(lp
)) >= 1 && lp
->col
)
413 * Decrement the line pointer 'p' crossing line boundaries as necessary.
414 * Return 1 when crossing a line, -1 when at start of file, 0 otherwise.
419 return dec(&curwin
->w_cursor
);
428 #ifdef FEAT_VIRTUALEDIT
431 if (lp
->col
> 0) /* still within line */
437 p
= ml_get(lp
->lnum
);
438 lp
->col
-= (*mb_head_off
)(p
, p
+ lp
->col
);
443 if (lp
->lnum
> 1) /* there is a prior line */
446 p
= ml_get(lp
->lnum
);
447 lp
->col
= (colnr_T
)STRLEN(p
);
450 lp
->col
-= (*mb_head_off
)(p
, p
+ lp
->col
);
454 return -1; /* at start of file */
458 * decl(lp): same as dec(), but skip the NUL at the end of non-empty lines
466 if ((r
= dec(lp
)) == 1 && lp
->col
)
472 * Get the line number relative to the current cursor position, i.e. the
473 * difference between line number and cursor position. Only look for lines that
474 * can be visible, folded lines don't count.
477 get_cursor_rel_lnum(wp
, lnum
)
479 linenr_T lnum
; /* line number to get the result for */
481 linenr_T cursor
= wp
->w_cursor
.lnum
;
485 if (hasAnyFolding(wp
))
489 while (lnum
> cursor
)
491 (void)hasFolding(lnum
, &lnum
, NULL
);
492 /* if lnum and cursor are in the same fold,
493 * now lnum <= cursor */
499 else if (lnum
< cursor
)
501 while (lnum
< cursor
)
503 (void)hasFolding(lnum
, NULL
, &lnum
);
504 /* if lnum and cursor are in the same fold,
505 * now lnum >= cursor */
511 /* else if (lnum == cursor)
517 retval
= lnum
- cursor
;
523 * Make sure curwin->w_cursor.lnum is valid.
528 if (curwin
->w_cursor
.lnum
> curbuf
->b_ml
.ml_line_count
)
531 /* If there is a closed fold at the end of the file, put the cursor in
532 * its first line. Otherwise in the last line. */
533 if (!hasFolding(curbuf
->b_ml
.ml_line_count
,
534 &curwin
->w_cursor
.lnum
, NULL
))
536 curwin
->w_cursor
.lnum
= curbuf
->b_ml
.ml_line_count
;
538 if (curwin
->w_cursor
.lnum
<= 0)
539 curwin
->w_cursor
.lnum
= 1;
543 * Make sure curwin->w_cursor.col is valid.
549 #ifdef FEAT_VIRTUALEDIT
550 colnr_T oldcol
= curwin
->w_cursor
.col
;
551 colnr_T oldcoladd
= curwin
->w_cursor
.col
+ curwin
->w_cursor
.coladd
;
554 len
= (colnr_T
)STRLEN(ml_get_curline());
556 curwin
->w_cursor
.col
= 0;
557 else if (curwin
->w_cursor
.col
>= len
)
559 /* Allow cursor past end-of-line when:
560 * - in Insert mode or restarting Insert mode
561 * - in Visual mode and 'selection' isn't "old"
562 * - 'virtualedit' is set */
563 if ((State
& INSERT
) || restart_edit
565 || (VIsual_active
&& *p_sel
!= 'o')
567 #ifdef FEAT_VIRTUALEDIT
568 || (ve_flags
& VE_ONEMORE
)
571 curwin
->w_cursor
.col
= len
;
574 curwin
->w_cursor
.col
= len
- 1;
576 /* prevent cursor from moving on the trail byte */
582 else if (curwin
->w_cursor
.col
< 0)
583 curwin
->w_cursor
.col
= 0;
585 #ifdef FEAT_VIRTUALEDIT
586 /* If virtual editing is on, we can leave the cursor on the old position,
587 * only we must set it to virtual. But don't do it when at the end of the
589 if (oldcol
== MAXCOL
)
590 curwin
->w_cursor
.coladd
= 0;
591 else if (ve_flags
== VE_ALL
)
593 if (oldcoladd
> curwin
->w_cursor
.col
)
594 curwin
->w_cursor
.coladd
= oldcoladd
- curwin
->w_cursor
.col
;
596 /* avoid weird number when there is a miscalculation or overflow */
597 curwin
->w_cursor
.coladd
= 0;
603 * make sure curwin->w_cursor in on a valid character
612 #if defined(FEAT_TEXTOBJ) || defined(PROTO)
614 * Make sure curwin->w_cursor is not on the NUL at the end of the line.
615 * Allow it when in Visual mode and 'selection' is not "old".
620 if (curwin
->w_cursor
.col
> 0
622 && (!VIsual_active
|| *p_sel
== 'o')
624 && gchar_cursor() == NUL
)
625 --curwin
->w_cursor
.col
;
630 * When curwin->w_leftcol has changed, adjust the cursor position.
631 * Return TRUE if the cursor was moved.
640 changed_cline_bef_curs();
641 lastcol
= curwin
->w_leftcol
+ W_WIDTH(curwin
) - curwin_col_off() - 1;
645 * If the cursor is right or left of the screen, move it to last or first
648 if (curwin
->w_virtcol
> (colnr_T
)(lastcol
- p_siso
))
651 coladvance((colnr_T
)(lastcol
- p_siso
));
653 else if (curwin
->w_virtcol
< curwin
->w_leftcol
+ p_siso
)
656 (void)coladvance((colnr_T
)(curwin
->w_leftcol
+ p_siso
));
660 * If the start of the character under the cursor is not on the screen,
661 * advance the cursor one more char. If this fails (last char of the
662 * line) adjust the scrolling.
664 getvvcol(curwin
, &curwin
->w_cursor
, &s
, NULL
, &e
);
665 if (e
> (colnr_T
)lastcol
)
670 else if (s
< curwin
->w_leftcol
)
673 if (coladvance(e
+ 1) == FAIL
) /* there isn't another character */
675 curwin
->w_leftcol
= s
; /* adjust w_leftcol instead */
676 changed_cline_bef_curs();
681 curwin
->w_set_curswant
= TRUE
;
682 redraw_later(NOT_VALID
);
686 /**********************************************************************
687 * Various routines dealing with allocation and deallocation of memory.
690 #if defined(MEM_PROFILE) || defined(PROTO)
692 # define MEM_SIZES 8200
693 static long_u mem_allocs
[MEM_SIZES
];
694 static long_u mem_frees
[MEM_SIZES
];
695 static long_u mem_allocated
;
696 static long_u mem_freed
;
697 static long_u mem_peak
;
698 static long_u num_alloc
;
699 static long_u num_freed
;
701 static void mem_pre_alloc_s
__ARGS((size_t *sizep
));
702 static void mem_pre_alloc_l
__ARGS((long_u
*sizep
));
703 static void mem_post_alloc
__ARGS((void **pp
, size_t size
));
704 static void mem_pre_free
__ARGS((void **pp
));
707 mem_pre_alloc_s(sizep
)
710 *sizep
+= sizeof(size_t);
714 mem_pre_alloc_l(sizep
)
717 *sizep
+= sizeof(size_t);
721 mem_post_alloc(pp
, size
)
727 size
-= sizeof(size_t);
728 *(long_u
*)*pp
= size
;
729 if (size
<= MEM_SIZES
-1)
730 mem_allocs
[size
-1]++;
732 mem_allocs
[MEM_SIZES
-1]++;
733 mem_allocated
+= size
;
734 if (mem_allocated
- mem_freed
> mem_peak
)
735 mem_peak
= mem_allocated
- mem_freed
;
737 *pp
= (void *)((char *)*pp
+ sizeof(size_t));
746 *pp
= (void *)((char *)*pp
- sizeof(size_t));
747 size
= *(size_t *)*pp
;
748 if (size
<= MEM_SIZES
-1)
751 mem_frees
[MEM_SIZES
-1]++;
757 * called on exit via atexit()
760 vim_mem_profile_dump()
766 for (i
= 0; i
< MEM_SIZES
- 1; i
++)
768 if (mem_allocs
[i
] || mem_frees
[i
])
770 if (mem_frees
[i
] > mem_allocs
[i
])
771 printf("\r\n%s", _("ERROR: "));
772 printf("[%4d / %4lu-%-4lu] ", i
+ 1, mem_allocs
[i
], mem_frees
[i
]);
786 if (mem_frees
[i
] > mem_allocs
[i
])
787 printf(_("ERROR: "));
788 printf("[>%d / %4lu-%-4lu]", i
, mem_allocs
[i
], mem_frees
[i
]);
791 printf(_("\n[bytes] total alloc-freed %lu-%lu, in use %lu, peak use %lu\n"),
792 mem_allocated
, mem_freed
, mem_allocated
- mem_freed
, mem_peak
);
793 printf(_("[calls] total re/malloc()'s %lu, total free()'s %lu\n\n"),
794 num_alloc
, num_freed
);
797 #endif /* MEM_PROFILE */
800 * Some memory is reserved for error messages and for being able to
801 * call mf_release_all(), which needs some memory for mf_trans_add().
803 #if defined(MSDOS) && !defined(DJGPP)
805 # define KEEP_ROOM 8192L
807 # define KEEP_ROOM (2 * 8192L)
811 * Note: if unsigned is 16 bits we can only allocate up to 64K with alloc().
812 * Use lalloc for larger blocks.
818 return (lalloc((long_u
)size
, TRUE
));
822 * Allocate memory and set all bytes to zero.
830 p
= (lalloc((long_u
)size
, TRUE
));
832 (void)vim_memset(p
, 0, (size_t)size
);
837 * alloc() with check for maximum line length
843 #if !defined(UNIX) && !defined(__EMX__)
844 if (sizeof(int) == 2 && size
> 0x7fff)
846 /* Don't hide this message */
848 EMSG(_("E340: Line is becoming too long"));
852 return (lalloc((long_u
)size
, TRUE
));
856 * Allocate memory like lalloc() and set all bytes to zero.
859 lalloc_clear(size
, message
)
865 p
= (lalloc(size
, message
));
867 (void)vim_memset(p
, 0, (size_t)size
);
872 * Low level memory allocation function.
873 * This is used often, KEEP IT FAST!
876 lalloc(size
, message
)
880 char_u
*p
; /* pointer to new storage space */
881 static int releasing
= FALSE
; /* don't do mf_release_all() recursive */
883 #if defined(HAVE_AVAIL_MEM) && !defined(SMALL_MEM)
884 static long_u allocated
= 0; /* allocated since last avail check */
887 /* Safety check for allocating zero bytes */
890 /* Don't hide this message */
892 EMSGN(_("E341: Internal error: lalloc(%ld, )"), size
);
897 mem_pre_alloc_l(&size
);
900 #if defined(MSDOS) && !defined(DJGPP)
901 if (size
>= 0xfff0) /* in MSDOS we can't deal with >64K blocks */
907 * Loop when out of memory: Try to release some memfile blocks and
908 * if some blocks are released call malloc again.
913 * Handle three kind of systems:
914 * 1. No check for available memory: Just return.
915 * 2. Slow check for available memory: call mch_avail_mem() after
916 * allocating KEEP_ROOM amount of memory.
917 * 3. Strict check for available memory: call mch_avail_mem()
919 if ((p
= (char_u
*)malloc((size_t)size
)) != NULL
)
921 #ifndef HAVE_AVAIL_MEM
922 /* 1. No check for available memory: Just return. */
926 /* 2. Slow check for available memory: call mch_avail_mem() after
927 * allocating (KEEP_ROOM / 2) amount of memory. */
929 if (allocated
< KEEP_ROOM
/ 2)
933 /* 3. check for available memory: call mch_avail_mem() */
934 if (mch_avail_mem(TRUE
) < KEEP_ROOM
&& !releasing
)
936 free((char *)p
); /* System is low... no go! */
944 * Remember that mf_release_all() is being called to avoid an endless
945 * loop, because mf_release_all() may call alloc() recursively.
951 clear_sb_text(); /* free any scrollback text */
952 try_again
= mf_release_all(); /* release as many blocks as possible */
954 try_again
|= garbage_collect(); /* cleanup recursive lists/dicts */
962 if (message
&& p
== NULL
)
963 do_outofmem_msg(size
);
967 mem_post_alloc((void **)&p
, (size_t)size
);
972 #if defined(MEM_PROFILE) || defined(PROTO)
974 * realloc() with memory profiling.
977 mem_realloc(ptr
, size
)
984 mem_pre_alloc_s(&size
);
986 p
= realloc(ptr
, size
);
988 mem_post_alloc(&p
, size
);
995 * Avoid repeating the error message many times (they take 1 second each).
996 * Did_outofmem_msg is reset when a character is read.
999 do_outofmem_msg(size
)
1002 if (!did_outofmem_msg
)
1004 /* Don't hide this message */
1006 EMSGN(_("E342: Out of memory! (allocating %lu bytes)"), size
);
1007 did_outofmem_msg
= TRUE
;
1011 #if defined(EXITFREE) || defined(PROTO)
1013 # if defined(FEAT_SEARCHPATH)
1014 static void free_findfile
__ARGS((void));
1018 * Free everything that we allocated.
1019 * Can be used to detect memory leaks, e.g., with ccmalloc.
1020 * NOTE: This is tricky! Things are freed that functions depend on. Don't be
1021 * surprised if Vim crashes...
1022 * Some things can't be freed, esp. things local to a library function.
1027 buf_T
*buf
, *nextbuf
;
1028 static int entered
= FALSE
;
1030 /* When we cause a crash here it is caught and Vim tries to exit cleanly.
1031 * Don't try freeing everything again. */
1036 # ifdef FEAT_AUTOCMD
1037 block_autocmds(); /* don't want to trigger autocommands here */
1040 # ifdef FEAT_WINDOWS
1041 /* close all tabs and windows */
1042 if (first_tabpage
->tp_next
!= NULL
)
1043 do_cmdline_cmd((char_u
*)"tabonly!");
1044 if (firstwin
!= lastwin
)
1045 do_cmdline_cmd((char_u
*)"only!");
1048 # if defined(FEAT_SPELL)
1049 /* Free all spell info. */
1053 # if defined(FEAT_USR_CMDS)
1054 /* Clear user commands (before deleting buffers). */
1060 do_cmdline_cmd((char_u
*)"aunmenu *");
1061 # ifdef FEAT_MULTI_LANG
1062 do_cmdline_cmd((char_u
*)"menutranslate clear");
1066 /* Clear mappings, abbreviations, breakpoints. */
1067 do_cmdline_cmd((char_u
*)"lmapclear");
1068 do_cmdline_cmd((char_u
*)"xmapclear");
1069 do_cmdline_cmd((char_u
*)"mapclear");
1070 do_cmdline_cmd((char_u
*)"mapclear!");
1071 do_cmdline_cmd((char_u
*)"abclear");
1072 # if defined(FEAT_EVAL)
1073 do_cmdline_cmd((char_u
*)"breakdel *");
1075 # if defined(FEAT_PROFILE)
1076 do_cmdline_cmd((char_u
*)"profdel *");
1078 # if defined(FEAT_KEYMAP)
1079 do_cmdline_cmd((char_u
*)"set keymap=");
1085 # if defined(FEAT_SEARCHPATH)
1089 /* Obviously named calls. */
1090 # if defined(FEAT_AUTOCMD)
1091 free_all_autocmds();
1096 alist_clear(&global_alist
);
1098 free_search_patterns();
1101 free_prev_shellcmd();
1102 free_regexp_stuff();
1109 set_expr_line(NULL
);
1114 clear_sb_text(); /* free any scrollback text */
1116 /* Free some global vars. */
1118 # ifdef FEAT_CLIPBOARD
1119 vim_free(clip_exclude_prog
);
1121 vim_free(last_cmdline
);
1122 # ifdef FEAT_CMDHIST
1123 vim_free(new_last_cmdline
);
1125 set_keep_msg(NULL
, 0);
1126 vim_free(ff_expand_buffer
);
1128 /* Clear cmdline history. */
1130 # ifdef FEAT_CMDHIST
1134 #ifdef FEAT_QUICKFIX
1140 /* Free all location lists */
1141 FOR_ALL_TAB_WINDOWS(tab
, win
)
1146 /* Close all script inputs. */
1147 close_all_scripts();
1149 #if defined(FEAT_WINDOWS)
1150 /* Destroy all windows. Must come before freeing buffers. */
1154 /* Free all buffers. Reset 'autochdir' to avoid accessing things that
1155 * were freed already. */
1156 #ifdef FEAT_AUTOCHDIR
1159 for (buf
= firstbuf
; buf
!= NULL
; )
1161 nextbuf
= buf
->b_next
;
1162 close_buffer(NULL
, buf
, DOBUF_WIPE
);
1164 buf
= nextbuf
; /* didn't work, try next one */
1173 /* Clear registers. */
1178 #if defined(FEAT_CLIENTSERVER) && defined(FEAT_X11)
1179 vim_free(serverDelayedStartName
);
1182 /* highlight info */
1185 reset_last_sourcing();
1188 free_tabpage(first_tabpage
);
1189 first_tabpage
= NULL
;
1193 /* Machine-specific free. */
1197 /* message history */
1199 if (delete_first_msg() == FAIL
)
1208 /* screenlines (can't display anything now!) */
1211 #if defined(USE_XSMP)
1225 * copy a string into newly allocated memory
1234 len
= (unsigned)STRLEN(string
) + 1;
1237 mch_memmove(p
, string
, (size_t)len
);
1242 vim_strnsave(string
, len
)
1248 p
= alloc((unsigned)(len
+ 1));
1251 STRNCPY(p
, string
, len
);
1258 * Same as vim_strsave(), but any characters found in esc_chars are preceded
1262 vim_strsave_escaped(string
, esc_chars
)
1266 return vim_strsave_escaped_ext(string
, esc_chars
, '\\', FALSE
);
1270 * Same as vim_strsave_escaped(), but when "bsl" is TRUE also escape
1271 * characters where rem_backslash() would remove the backslash.
1272 * Escape the characters with "cc".
1275 vim_strsave_escaped_ext(string
, esc_chars
, cc
, bsl
)
1283 char_u
*escaped_string
;
1290 * First count the number of backslashes required.
1291 * Then allocate the memory and insert them.
1293 length
= 1; /* count the trailing NUL */
1294 for (p
= string
; *p
; p
++)
1297 if (has_mbyte
&& (l
= (*mb_ptr2len
)(p
)) > 1)
1299 length
+= l
; /* count a multibyte char */
1304 if (vim_strchr(esc_chars
, *p
) != NULL
|| (bsl
&& rem_backslash(p
)))
1305 ++length
; /* count a backslash */
1306 ++length
; /* count an ordinary char */
1308 escaped_string
= alloc(length
);
1309 if (escaped_string
!= NULL
)
1311 p2
= escaped_string
;
1312 for (p
= string
; *p
; p
++)
1315 if (has_mbyte
&& (l
= (*mb_ptr2len
)(p
)) > 1)
1317 mch_memmove(p2
, p
, (size_t)l
);
1319 p
+= l
- 1; /* skip multibyte char */
1323 if (vim_strchr(esc_chars
, *p
) != NULL
|| (bsl
&& rem_backslash(p
)))
1329 return escaped_string
;
1333 * Return TRUE when 'shell' has "csh" in the tail.
1338 return (strstr((char *)gettail(p_sh
), "csh") != NULL
);
1342 * Escape "string" for use as a shell argument with system().
1343 * This uses single quotes, except when we know we need to use double quotes
1344 * (MS-DOS and MS-Windows without 'shellslash' set).
1345 * Escape a newline, depending on the 'shell' option.
1346 * When "do_special" is TRUE also replace "!", "%", "#" and things starting
1347 * with "<" like "<cfile>".
1348 * Returns the result in allocated memory, NULL if we have run out.
1351 vim_strsave_shellescape(string
, do_special
)
1358 char_u
*escaped_string
;
1362 /* Only csh and similar shells expand '!' within single quotes. For sh and
1363 * the like we must not put a backslash before it, it will be taken
1364 * literally. If do_special is set the '!' will be escaped twice.
1365 * Csh also needs to have "\n" escaped twice when do_special is set. */
1366 csh_like
= csh_like_shell();
1368 /* First count the number of extra bytes required. */
1369 length
= (unsigned)STRLEN(string
) + 3; /* two quotes and a trailing NUL */
1370 for (p
= string
; *p
!= NUL
; mb_ptr_adv(p
))
1372 # if defined(WIN32) || defined(WIN16) || defined(DOS)
1376 ++length
; /* " -> "" */
1381 length
+= 3; /* ' => '\'' */
1382 if (*p
== '\n' || (*p
== '!' && (csh_like
|| do_special
)))
1384 ++length
; /* insert backslash */
1385 if (csh_like
&& do_special
)
1386 ++length
; /* insert backslash */
1388 if (do_special
&& find_cmdline_var(p
, &l
) >= 0)
1390 ++length
; /* insert backslash */
1395 /* Allocate memory for the result and fill it. */
1396 escaped_string
= alloc(length
);
1397 if (escaped_string
!= NULL
)
1401 /* add opening quote */
1402 # if defined(WIN32) || defined(WIN16) || defined(DOS)
1409 for (p
= string
; *p
!= NUL
; )
1411 # if defined(WIN32) || defined(WIN16) || defined(DOS)
1433 if (*p
== '\n' || (*p
== '!' && (csh_like
|| do_special
)))
1436 if (csh_like
&& do_special
)
1441 if (do_special
&& find_cmdline_var(p
, &l
) >= 0)
1443 *d
++ = '\\'; /* insert backslash */
1444 while (--l
>= 0) /* copy the var */
1452 /* add terminating quote and finish with a NUL */
1453 # if defined(WIN32) || defined(WIN16) || defined(DOS)
1462 return escaped_string
;
1466 * Like vim_strsave(), but make all characters uppercase.
1467 * This uses ASCII lower-to-upper case translation, language independent.
1470 vim_strsave_up(string
)
1475 p1
= vim_strsave(string
);
1481 * Like vim_strnsave(), but make all characters uppercase.
1482 * This uses ASCII lower-to-upper case translation, language independent.
1485 vim_strnsave_up(string
, len
)
1491 p1
= vim_strnsave(string
, len
);
1497 * ASCII lower-to-upper case translation, language independent.
1509 while ((c
= *p2
) != NUL
)
1511 *p2
++ = isalpha(c
) ? toupper(c
) : c
;
1513 *p2
++ = (c
< 'a' || c
> 'z') ? c
: (c
- 0x20);
1518 #if defined(FEAT_EVAL) || defined(FEAT_SPELL) || defined(PROTO)
1520 * Make string "s" all upper-case and return it in allocated memory.
1521 * Handles multi-byte characters as well as possible.
1522 * Returns NULL when out of memory.
1531 res
= p
= vim_strsave(orig
);
1545 c
= utf_ptr2char(p
);
1546 uc
= utf_toupper(c
);
1548 /* Reallocate string when byte count changes. This is rare,
1549 * thus it's OK to do another malloc()/free(). */
1551 nl
= utf_char2len(uc
);
1554 s
= alloc((unsigned)STRLEN(res
) + 1 + nl
- l
);
1557 mch_memmove(s
, res
, p
- res
);
1558 STRCPY(s
+ (p
- res
) + nl
, p
+ l
);
1564 utf_char2bytes(uc
, p
);
1567 else if (has_mbyte
&& (l
= (*mb_ptr2len
)(p
)) > 1)
1568 p
+= l
; /* skip multi-byte character */
1572 *p
= TOUPPER_LOC(*p
); /* note that toupper() can be a macro */
1582 * copy a space a number of times
1585 copy_spaces(ptr
, count
)
1596 #if defined(FEAT_VISUALEXTRA) || defined(PROTO)
1598 * Copy a character a number of times.
1599 * Does not work for multi-byte characters!
1602 copy_chars(ptr
, count
, c
)
1616 * delete spaces at the end of a string
1619 del_trailing_spaces(ptr
)
1624 q
= ptr
+ STRLEN(ptr
);
1625 while (--q
> ptr
&& vim_iswhite(q
[0]) && q
[-1] != '\\' && q
[-1] != Ctrl_V
)
1630 * Like strncpy(), but always terminate the result with one NUL.
1631 * "to" must be "len + 1" long!
1634 vim_strncpy(to
, from
, len
)
1639 STRNCPY(to
, from
, len
);
1644 * Isolate one part of a string option where parts are separated with
1646 * The part is copied into "buf[maxlen]".
1647 * "*option" is advanced to the next part.
1648 * The length is returned.
1651 copy_option_part(option
, buf
, maxlen
, sep_chars
)
1658 char_u
*p
= *option
;
1660 /* skip '.' at start of option part, for 'suffixes' */
1663 while (*p
!= NUL
&& vim_strchr((char_u
*)sep_chars
, *p
) == NULL
)
1666 * Skip backslash before a separator character and space.
1668 if (p
[0] == '\\' && vim_strchr((char_u
*)sep_chars
, p
[1]) != NULL
)
1670 if (len
< maxlen
- 1)
1676 if (*p
!= NUL
&& *p
!= ',') /* skip non-standard separator */
1678 p
= skip_to_option_part(p
); /* p points to next file name */
1685 * Replacement for free() that ignores NULL pointers.
1686 * Also skip free() when exiting for sure, this helps when we caught a deadly
1687 * signal that was caused by a crash in free().
1693 if (x
!= NULL
&& !really_exiting
)
1704 vim_memset(ptr
, c
, size
)
1719 * Return zero when "b1" and "b2" are the same for "len" bytes.
1720 * Return non-zero otherwise.
1723 vim_memcmp(b1
, b2
, len
)
1728 char_u
*p1
= (char_u
*)b1
, *p2
= (char_u
*)b2
;
1730 for ( ; len
> 0; --len
)
1743 * Version of memmove() that handles overlapping source and destination.
1744 * For systems that don't have a function that is guaranteed to do that (SYSV).
1747 mch_memmove(dst_arg
, src_arg
, len
)
1748 void *src_arg
, *dst_arg
;
1752 * A void doesn't have a size, we use char pointers.
1754 char *dst
= dst_arg
, *src
= src_arg
;
1756 /* overlap, copy backwards */
1757 if (dst
> src
&& dst
< src
+ len
)
1764 else /* copy forwards */
1770 #if (!defined(HAVE_STRCASECMP) && !defined(HAVE_STRICMP)) || defined(PROTO)
1772 * Compare two strings, ignoring case, using current locale.
1773 * Doesn't work for multi-byte characters.
1774 * return 0 for match, < 0 for smaller, > 0 for bigger
1785 i
= (int)TOLOWER_LOC(*s1
) - (int)TOLOWER_LOC(*s2
);
1787 return i
; /* this character different */
1789 break; /* strings match until NUL */
1793 return 0; /* strings match */
1797 #if (!defined(HAVE_STRNCASECMP) && !defined(HAVE_STRNICMP)) || defined(PROTO)
1799 * Compare two strings, for length "len", ignoring case, using current locale.
1800 * Doesn't work for multi-byte characters.
1801 * return 0 for match, < 0 for smaller, > 0 for bigger
1804 vim_strnicmp(s1
, s2
, len
)
1813 i
= (int)TOLOWER_LOC(*s1
) - (int)TOLOWER_LOC(*s2
);
1815 return i
; /* this character different */
1817 break; /* strings match until NUL */
1822 return 0; /* strings match */
1826 #if 0 /* currently not used */
1828 * Check if string "s2" appears somewhere in "s1" while ignoring case.
1829 * Return NULL if not, a pointer to the first occurrence if it does.
1837 int len
= STRLEN(s2
);
1838 char_u
*end
= s1
+ STRLEN(s1
) - len
;
1840 for (p
= s1
; p
<= end
; ++p
)
1841 if (STRNICMP(p
, s2
, len
) == 0)
1848 * Version of strchr() and strrchr() that handle unsigned char strings
1849 * with characters from 128 to 255 correctly. It also doesn't return a
1850 * pointer to the NUL at the end of the string.
1853 vim_strchr(string
, c
)
1862 if (enc_utf8
&& c
>= 0x80)
1866 if (utf_ptr2char(p
) == c
)
1868 p
+= (*mb_ptr2len
)(p
);
1872 if (enc_dbcs
!= 0 && c
> 255)
1876 c
= ((unsigned)c
>> 8) & 0xff;
1877 while ((b
= *p
) != NUL
)
1879 if (b
== c
&& p
[1] == n2
)
1881 p
+= (*mb_ptr2len
)(p
);
1887 while ((b
= *p
) != NUL
)
1891 p
+= (*mb_ptr2len
)(p
);
1896 while ((b
= *p
) != NUL
)
1906 * Version of strchr() that only works for bytes and handles unsigned char
1907 * strings with characters above 128 correctly. It also doesn't return a
1908 * pointer to the NUL at the end of the string.
1911 vim_strbyte(string
, c
)
1927 * Search for last occurrence of "c" in "string".
1928 * Return NULL if not found.
1929 * Does not handle multi-byte char for "c"!
1932 vim_strrchr(string
, c
)
1936 char_u
*retval
= NULL
;
1949 * Vim's version of strpbrk(), in case it's missing.
1950 * Don't generate a prototype for this, causes problems when it's not used.
1953 # ifndef HAVE_STRPBRK
1958 vim_strpbrk(s
, charset
)
1964 if (vim_strchr(charset
, *s
) != NULL
)
1974 * Vim has its own isspace() function, because on some machines isspace()
1975 * can't handle characters above 128.
1981 return ((x
>= 9 && x
<= 13) || x
== ' ');
1984 /************************************************************************
1985 * Functions for handling growing arrays.
1989 * Clear an allocated growing array.
1995 vim_free(gap
->ga_data
);
2000 * Clear a growing array that contains a list of strings.
2003 ga_clear_strings(gap
)
2008 for (i
= 0; i
< gap
->ga_len
; ++i
)
2009 vim_free(((char_u
**)(gap
->ga_data
))[i
]);
2014 * Initialize a growing array. Don't forget to set ga_itemsize and
2015 * ga_growsize! Or use ga_init2().
2021 gap
->ga_data
= NULL
;
2027 ga_init2(gap
, itemsize
, growsize
)
2033 gap
->ga_itemsize
= itemsize
;
2034 gap
->ga_growsize
= growsize
;
2038 * Make room in growing array "gap" for at least "n" items.
2039 * Return FAIL for failure, OK otherwise.
2049 if (gap
->ga_maxlen
- gap
->ga_len
< n
)
2051 if (n
< gap
->ga_growsize
)
2052 n
= gap
->ga_growsize
;
2053 len
= gap
->ga_itemsize
* (gap
->ga_len
+ n
);
2054 pp
= alloc_clear((unsigned)len
);
2057 gap
->ga_maxlen
= gap
->ga_len
+ n
;
2058 if (gap
->ga_data
!= NULL
)
2060 mch_memmove(pp
, gap
->ga_data
,
2061 (size_t)(gap
->ga_itemsize
* gap
->ga_len
));
2062 vim_free(gap
->ga_data
);
2070 * Concatenate a string to a growarray which contains characters.
2071 * Note: Does NOT copy the NUL at the end!
2078 int len
= (int)STRLEN(s
);
2080 if (ga_grow(gap
, len
) == OK
)
2082 mch_memmove((char *)gap
->ga_data
+ gap
->ga_len
, s
, (size_t)len
);
2088 * Append one byte to a growarray which contains bytes.
2095 if (ga_grow(gap
, 1) == OK
)
2097 *((char *)gap
->ga_data
+ gap
->ga_len
) = c
;
2102 /************************************************************************
2103 * functions that use lookup tables for various things, generally to do with
2104 * special key codes.
2108 * Some useful tables.
2111 static struct modmasktable
2113 short mod_mask
; /* Bit-mask for particular key modifier */
2114 short mod_flag
; /* Bit(s) for particular key modifier */
2115 char_u name
; /* Single letter name of modifier */
2116 } mod_mask_table
[] =
2118 {MOD_MASK_ALT
, MOD_MASK_ALT
, (char_u
)'M'},
2119 {MOD_MASK_META
, MOD_MASK_META
, (char_u
)'T'},
2120 {MOD_MASK_CTRL
, MOD_MASK_CTRL
, (char_u
)'C'},
2121 {MOD_MASK_SHIFT
, MOD_MASK_SHIFT
, (char_u
)'S'},
2122 {MOD_MASK_MULTI_CLICK
, MOD_MASK_2CLICK
, (char_u
)'2'},
2123 {MOD_MASK_MULTI_CLICK
, MOD_MASK_3CLICK
, (char_u
)'3'},
2124 {MOD_MASK_MULTI_CLICK
, MOD_MASK_4CLICK
, (char_u
)'4'},
2126 {MOD_MASK_CMD
, MOD_MASK_CMD
, (char_u
)'D'},
2128 /* 'A' must be the last one */
2129 {MOD_MASK_ALT
, MOD_MASK_ALT
, (char_u
)'A'},
2134 * Shifted key terminal codes and their unshifted equivalent.
2135 * Don't add mouse codes here, they are handled separately!
2137 #define MOD_KEYS_ENTRY_SIZE 5
2139 static char_u modifier_keys_table
[] =
2141 /* mod mask with modifier without modifier */
2142 MOD_MASK_SHIFT
, '&', '9', '@', '1', /* begin */
2143 MOD_MASK_SHIFT
, '&', '0', '@', '2', /* cancel */
2144 MOD_MASK_SHIFT
, '*', '1', '@', '4', /* command */
2145 MOD_MASK_SHIFT
, '*', '2', '@', '5', /* copy */
2146 MOD_MASK_SHIFT
, '*', '3', '@', '6', /* create */
2147 MOD_MASK_SHIFT
, '*', '4', 'k', 'D', /* delete char */
2148 MOD_MASK_SHIFT
, '*', '5', 'k', 'L', /* delete line */
2149 MOD_MASK_SHIFT
, '*', '7', '@', '7', /* end */
2150 MOD_MASK_CTRL
, KS_EXTRA
, (int)KE_C_END
, '@', '7', /* end */
2151 MOD_MASK_SHIFT
, '*', '9', '@', '9', /* exit */
2152 MOD_MASK_SHIFT
, '*', '0', '@', '0', /* find */
2153 MOD_MASK_SHIFT
, '#', '1', '%', '1', /* help */
2154 MOD_MASK_SHIFT
, '#', '2', 'k', 'h', /* home */
2155 MOD_MASK_CTRL
, KS_EXTRA
, (int)KE_C_HOME
, 'k', 'h', /* home */
2156 MOD_MASK_SHIFT
, '#', '3', 'k', 'I', /* insert */
2157 MOD_MASK_SHIFT
, '#', '4', 'k', 'l', /* left arrow */
2158 MOD_MASK_CTRL
, KS_EXTRA
, (int)KE_C_LEFT
, 'k', 'l', /* left arrow */
2159 MOD_MASK_SHIFT
, '%', 'a', '%', '3', /* message */
2160 MOD_MASK_SHIFT
, '%', 'b', '%', '4', /* move */
2161 MOD_MASK_SHIFT
, '%', 'c', '%', '5', /* next */
2162 MOD_MASK_SHIFT
, '%', 'd', '%', '7', /* options */
2163 MOD_MASK_SHIFT
, '%', 'e', '%', '8', /* previous */
2164 MOD_MASK_SHIFT
, '%', 'f', '%', '9', /* print */
2165 MOD_MASK_SHIFT
, '%', 'g', '%', '0', /* redo */
2166 MOD_MASK_SHIFT
, '%', 'h', '&', '3', /* replace */
2167 MOD_MASK_SHIFT
, '%', 'i', 'k', 'r', /* right arr. */
2168 MOD_MASK_CTRL
, KS_EXTRA
, (int)KE_C_RIGHT
, 'k', 'r', /* right arr. */
2169 MOD_MASK_SHIFT
, '%', 'j', '&', '5', /* resume */
2170 MOD_MASK_SHIFT
, '!', '1', '&', '6', /* save */
2171 MOD_MASK_SHIFT
, '!', '2', '&', '7', /* suspend */
2172 MOD_MASK_SHIFT
, '!', '3', '&', '8', /* undo */
2173 MOD_MASK_SHIFT
, KS_EXTRA
, (int)KE_S_UP
, 'k', 'u', /* up arrow */
2174 MOD_MASK_SHIFT
, KS_EXTRA
, (int)KE_S_DOWN
, 'k', 'd', /* down arrow */
2177 MOD_MASK_SHIFT
, KS_EXTRA
, (int)KE_S_XF1
, KS_EXTRA
, (int)KE_XF1
,
2178 MOD_MASK_SHIFT
, KS_EXTRA
, (int)KE_S_XF2
, KS_EXTRA
, (int)KE_XF2
,
2179 MOD_MASK_SHIFT
, KS_EXTRA
, (int)KE_S_XF3
, KS_EXTRA
, (int)KE_XF3
,
2180 MOD_MASK_SHIFT
, KS_EXTRA
, (int)KE_S_XF4
, KS_EXTRA
, (int)KE_XF4
,
2182 MOD_MASK_SHIFT
, KS_EXTRA
, (int)KE_S_F1
, 'k', '1', /* F1 */
2183 MOD_MASK_SHIFT
, KS_EXTRA
, (int)KE_S_F2
, 'k', '2',
2184 MOD_MASK_SHIFT
, KS_EXTRA
, (int)KE_S_F3
, 'k', '3',
2185 MOD_MASK_SHIFT
, KS_EXTRA
, (int)KE_S_F4
, 'k', '4',
2186 MOD_MASK_SHIFT
, KS_EXTRA
, (int)KE_S_F5
, 'k', '5',
2187 MOD_MASK_SHIFT
, KS_EXTRA
, (int)KE_S_F6
, 'k', '6',
2188 MOD_MASK_SHIFT
, KS_EXTRA
, (int)KE_S_F7
, 'k', '7',
2189 MOD_MASK_SHIFT
, KS_EXTRA
, (int)KE_S_F8
, 'k', '8',
2190 MOD_MASK_SHIFT
, KS_EXTRA
, (int)KE_S_F9
, 'k', '9',
2191 MOD_MASK_SHIFT
, KS_EXTRA
, (int)KE_S_F10
, 'k', ';', /* F10 */
2193 MOD_MASK_SHIFT
, KS_EXTRA
, (int)KE_S_F11
, 'F', '1',
2194 MOD_MASK_SHIFT
, KS_EXTRA
, (int)KE_S_F12
, 'F', '2',
2195 MOD_MASK_SHIFT
, KS_EXTRA
, (int)KE_S_F13
, 'F', '3',
2196 MOD_MASK_SHIFT
, KS_EXTRA
, (int)KE_S_F14
, 'F', '4',
2197 MOD_MASK_SHIFT
, KS_EXTRA
, (int)KE_S_F15
, 'F', '5',
2198 MOD_MASK_SHIFT
, KS_EXTRA
, (int)KE_S_F16
, 'F', '6',
2199 MOD_MASK_SHIFT
, KS_EXTRA
, (int)KE_S_F17
, 'F', '7',
2200 MOD_MASK_SHIFT
, KS_EXTRA
, (int)KE_S_F18
, 'F', '8',
2201 MOD_MASK_SHIFT
, KS_EXTRA
, (int)KE_S_F19
, 'F', '9',
2202 MOD_MASK_SHIFT
, KS_EXTRA
, (int)KE_S_F20
, 'F', 'A',
2204 MOD_MASK_SHIFT
, KS_EXTRA
, (int)KE_S_F21
, 'F', 'B',
2205 MOD_MASK_SHIFT
, KS_EXTRA
, (int)KE_S_F22
, 'F', 'C',
2206 MOD_MASK_SHIFT
, KS_EXTRA
, (int)KE_S_F23
, 'F', 'D',
2207 MOD_MASK_SHIFT
, KS_EXTRA
, (int)KE_S_F24
, 'F', 'E',
2208 MOD_MASK_SHIFT
, KS_EXTRA
, (int)KE_S_F25
, 'F', 'F',
2209 MOD_MASK_SHIFT
, KS_EXTRA
, (int)KE_S_F26
, 'F', 'G',
2210 MOD_MASK_SHIFT
, KS_EXTRA
, (int)KE_S_F27
, 'F', 'H',
2211 MOD_MASK_SHIFT
, KS_EXTRA
, (int)KE_S_F28
, 'F', 'I',
2212 MOD_MASK_SHIFT
, KS_EXTRA
, (int)KE_S_F29
, 'F', 'J',
2213 MOD_MASK_SHIFT
, KS_EXTRA
, (int)KE_S_F30
, 'F', 'K',
2215 MOD_MASK_SHIFT
, KS_EXTRA
, (int)KE_S_F31
, 'F', 'L',
2216 MOD_MASK_SHIFT
, KS_EXTRA
, (int)KE_S_F32
, 'F', 'M',
2217 MOD_MASK_SHIFT
, KS_EXTRA
, (int)KE_S_F33
, 'F', 'N',
2218 MOD_MASK_SHIFT
, KS_EXTRA
, (int)KE_S_F34
, 'F', 'O',
2219 MOD_MASK_SHIFT
, KS_EXTRA
, (int)KE_S_F35
, 'F', 'P',
2220 MOD_MASK_SHIFT
, KS_EXTRA
, (int)KE_S_F36
, 'F', 'Q',
2221 MOD_MASK_SHIFT
, KS_EXTRA
, (int)KE_S_F37
, 'F', 'R',
2223 /* TAB pseudo code*/
2224 MOD_MASK_SHIFT
, 'k', 'B', KS_EXTRA
, (int)KE_TAB
,
2229 static struct key_name_entry
2231 int key
; /* Special key code or ascii value */
2232 char_u
*name
; /* Name of key */
2233 } key_names_table
[] =
2235 {' ', (char_u
*)"Space"},
2236 {TAB
, (char_u
*)"Tab"},
2237 {K_TAB
, (char_u
*)"Tab"},
2238 {NL
, (char_u
*)"NL"},
2239 {NL
, (char_u
*)"NewLine"}, /* Alternative name */
2240 {NL
, (char_u
*)"LineFeed"}, /* Alternative name */
2241 {NL
, (char_u
*)"LF"}, /* Alternative name */
2242 {CAR
, (char_u
*)"CR"},
2243 {CAR
, (char_u
*)"Return"}, /* Alternative name */
2244 {CAR
, (char_u
*)"Enter"}, /* Alternative name */
2245 {K_BS
, (char_u
*)"BS"},
2246 {K_BS
, (char_u
*)"BackSpace"}, /* Alternative name */
2247 {ESC
, (char_u
*)"Esc"},
2248 {CSI
, (char_u
*)"CSI"},
2249 {K_CSI
, (char_u
*)"xCSI"},
2250 {'|', (char_u
*)"Bar"},
2251 {'\\', (char_u
*)"Bslash"},
2252 {K_DEL
, (char_u
*)"Del"},
2253 {K_DEL
, (char_u
*)"Delete"}, /* Alternative name */
2254 {K_KDEL
, (char_u
*)"kDel"},
2255 {K_UP
, (char_u
*)"Up"},
2256 {K_DOWN
, (char_u
*)"Down"},
2257 {K_LEFT
, (char_u
*)"Left"},
2258 {K_RIGHT
, (char_u
*)"Right"},
2259 {K_XUP
, (char_u
*)"xUp"},
2260 {K_XDOWN
, (char_u
*)"xDown"},
2261 {K_XLEFT
, (char_u
*)"xLeft"},
2262 {K_XRIGHT
, (char_u
*)"xRight"},
2264 {K_F1
, (char_u
*)"F1"},
2265 {K_F2
, (char_u
*)"F2"},
2266 {K_F3
, (char_u
*)"F3"},
2267 {K_F4
, (char_u
*)"F4"},
2268 {K_F5
, (char_u
*)"F5"},
2269 {K_F6
, (char_u
*)"F6"},
2270 {K_F7
, (char_u
*)"F7"},
2271 {K_F8
, (char_u
*)"F8"},
2272 {K_F9
, (char_u
*)"F9"},
2273 {K_F10
, (char_u
*)"F10"},
2275 {K_F11
, (char_u
*)"F11"},
2276 {K_F12
, (char_u
*)"F12"},
2277 {K_F13
, (char_u
*)"F13"},
2278 {K_F14
, (char_u
*)"F14"},
2279 {K_F15
, (char_u
*)"F15"},
2280 {K_F16
, (char_u
*)"F16"},
2281 {K_F17
, (char_u
*)"F17"},
2282 {K_F18
, (char_u
*)"F18"},
2283 {K_F19
, (char_u
*)"F19"},
2284 {K_F20
, (char_u
*)"F20"},
2286 {K_F21
, (char_u
*)"F21"},
2287 {K_F22
, (char_u
*)"F22"},
2288 {K_F23
, (char_u
*)"F23"},
2289 {K_F24
, (char_u
*)"F24"},
2290 {K_F25
, (char_u
*)"F25"},
2291 {K_F26
, (char_u
*)"F26"},
2292 {K_F27
, (char_u
*)"F27"},
2293 {K_F28
, (char_u
*)"F28"},
2294 {K_F29
, (char_u
*)"F29"},
2295 {K_F30
, (char_u
*)"F30"},
2297 {K_F31
, (char_u
*)"F31"},
2298 {K_F32
, (char_u
*)"F32"},
2299 {K_F33
, (char_u
*)"F33"},
2300 {K_F34
, (char_u
*)"F34"},
2301 {K_F35
, (char_u
*)"F35"},
2302 {K_F36
, (char_u
*)"F36"},
2303 {K_F37
, (char_u
*)"F37"},
2305 {K_XF1
, (char_u
*)"xF1"},
2306 {K_XF2
, (char_u
*)"xF2"},
2307 {K_XF3
, (char_u
*)"xF3"},
2308 {K_XF4
, (char_u
*)"xF4"},
2310 {K_HELP
, (char_u
*)"Help"},
2311 {K_UNDO
, (char_u
*)"Undo"},
2312 {K_INS
, (char_u
*)"Insert"},
2313 {K_INS
, (char_u
*)"Ins"}, /* Alternative name */
2314 {K_KINS
, (char_u
*)"kInsert"},
2315 {K_HOME
, (char_u
*)"Home"},
2316 {K_KHOME
, (char_u
*)"kHome"},
2317 {K_XHOME
, (char_u
*)"xHome"},
2318 {K_ZHOME
, (char_u
*)"zHome"},
2319 {K_END
, (char_u
*)"End"},
2320 {K_KEND
, (char_u
*)"kEnd"},
2321 {K_XEND
, (char_u
*)"xEnd"},
2322 {K_ZEND
, (char_u
*)"zEnd"},
2323 {K_PAGEUP
, (char_u
*)"PageUp"},
2324 {K_PAGEDOWN
, (char_u
*)"PageDown"},
2325 {K_KPAGEUP
, (char_u
*)"kPageUp"},
2326 {K_KPAGEDOWN
, (char_u
*)"kPageDown"},
2328 {K_KPLUS
, (char_u
*)"kPlus"},
2329 {K_KMINUS
, (char_u
*)"kMinus"},
2330 {K_KDIVIDE
, (char_u
*)"kDivide"},
2331 {K_KMULTIPLY
, (char_u
*)"kMultiply"},
2332 {K_KENTER
, (char_u
*)"kEnter"},
2333 {K_KPOINT
, (char_u
*)"kPoint"},
2335 {K_K0
, (char_u
*)"k0"},
2336 {K_K1
, (char_u
*)"k1"},
2337 {K_K2
, (char_u
*)"k2"},
2338 {K_K3
, (char_u
*)"k3"},
2339 {K_K4
, (char_u
*)"k4"},
2340 {K_K5
, (char_u
*)"k5"},
2341 {K_K6
, (char_u
*)"k6"},
2342 {K_K7
, (char_u
*)"k7"},
2343 {K_K8
, (char_u
*)"k8"},
2344 {K_K9
, (char_u
*)"k9"},
2346 {'<', (char_u
*)"lt"},
2348 {K_MOUSE
, (char_u
*)"Mouse"},
2349 {K_NETTERM_MOUSE
, (char_u
*)"NetMouse"},
2350 {K_DEC_MOUSE
, (char_u
*)"DecMouse"},
2351 {K_JSBTERM_MOUSE
, (char_u
*)"JsbMouse"},
2352 {K_PTERM_MOUSE
, (char_u
*)"PtermMouse"},
2353 {K_LEFTMOUSE
, (char_u
*)"LeftMouse"},
2354 {K_LEFTMOUSE_NM
, (char_u
*)"LeftMouseNM"},
2355 {K_LEFTDRAG
, (char_u
*)"LeftDrag"},
2356 {K_LEFTRELEASE
, (char_u
*)"LeftRelease"},
2357 {K_LEFTRELEASE_NM
, (char_u
*)"LeftReleaseNM"},
2358 {K_MIDDLEMOUSE
, (char_u
*)"MiddleMouse"},
2359 {K_MIDDLEDRAG
, (char_u
*)"MiddleDrag"},
2360 {K_MIDDLERELEASE
, (char_u
*)"MiddleRelease"},
2361 {K_RIGHTMOUSE
, (char_u
*)"RightMouse"},
2362 {K_RIGHTDRAG
, (char_u
*)"RightDrag"},
2363 {K_RIGHTRELEASE
, (char_u
*)"RightRelease"},
2364 {K_MOUSEDOWN
, (char_u
*)"MouseDown"},
2365 {K_MOUSEUP
, (char_u
*)"MouseUp"},
2366 {K_X1MOUSE
, (char_u
*)"X1Mouse"},
2367 {K_X1DRAG
, (char_u
*)"X1Drag"},
2368 {K_X1RELEASE
, (char_u
*)"X1Release"},
2369 {K_X2MOUSE
, (char_u
*)"X2Mouse"},
2370 {K_X2DRAG
, (char_u
*)"X2Drag"},
2371 {K_X2RELEASE
, (char_u
*)"X2Release"},
2372 {K_DROP
, (char_u
*)"Drop"},
2373 {K_ZERO
, (char_u
*)"Nul"},
2375 {K_SNR
, (char_u
*)"SNR"},
2377 {K_PLUG
, (char_u
*)"Plug"},
2381 #define KEY_NAMES_TABLE_LEN (sizeof(key_names_table) / sizeof(struct key_name_entry))
2384 static struct mousetable
2386 int pseudo_code
; /* Code for pseudo mouse event */
2387 int button
; /* Which mouse button is it? */
2388 int is_click
; /* Is it a mouse button click event? */
2389 int is_drag
; /* Is it a mouse drag event? */
2392 {(int)KE_LEFTMOUSE
, MOUSE_LEFT
, TRUE
, FALSE
},
2394 {(int)KE_LEFTMOUSE_NM
, MOUSE_LEFT
, TRUE
, FALSE
},
2396 {(int)KE_LEFTDRAG
, MOUSE_LEFT
, FALSE
, TRUE
},
2397 {(int)KE_LEFTRELEASE
, MOUSE_LEFT
, FALSE
, FALSE
},
2399 {(int)KE_LEFTRELEASE_NM
, MOUSE_LEFT
, FALSE
, FALSE
},
2401 {(int)KE_MIDDLEMOUSE
, MOUSE_MIDDLE
, TRUE
, FALSE
},
2402 {(int)KE_MIDDLEDRAG
, MOUSE_MIDDLE
, FALSE
, TRUE
},
2403 {(int)KE_MIDDLERELEASE
, MOUSE_MIDDLE
, FALSE
, FALSE
},
2404 {(int)KE_RIGHTMOUSE
, MOUSE_RIGHT
, TRUE
, FALSE
},
2405 {(int)KE_RIGHTDRAG
, MOUSE_RIGHT
, FALSE
, TRUE
},
2406 {(int)KE_RIGHTRELEASE
, MOUSE_RIGHT
, FALSE
, FALSE
},
2407 {(int)KE_X1MOUSE
, MOUSE_X1
, TRUE
, FALSE
},
2408 {(int)KE_X1DRAG
, MOUSE_X1
, FALSE
, TRUE
},
2409 {(int)KE_X1RELEASE
, MOUSE_X1
, FALSE
, FALSE
},
2410 {(int)KE_X2MOUSE
, MOUSE_X2
, TRUE
, FALSE
},
2411 {(int)KE_X2DRAG
, MOUSE_X2
, FALSE
, TRUE
},
2412 {(int)KE_X2RELEASE
, MOUSE_X2
, FALSE
, FALSE
},
2413 /* DRAG without CLICK */
2414 {(int)KE_IGNORE
, MOUSE_RELEASE
, FALSE
, TRUE
},
2415 /* RELEASE without CLICK */
2416 {(int)KE_IGNORE
, MOUSE_RELEASE
, FALSE
, FALSE
},
2419 #endif /* FEAT_MOUSE */
2422 * Return the modifier mask bit (MOD_MASK_*) which corresponds to the given
2423 * modifier name ('S' for Shift, 'C' for Ctrl etc).
2432 for (i
= 0; mod_mask_table
[i
].mod_mask
!= 0; i
++)
2433 if (c
== mod_mask_table
[i
].name
)
2434 return mod_mask_table
[i
].mod_flag
;
2439 * Check if if there is a special key code for "key" that includes the
2440 * modifiers specified.
2443 simplify_key(key
, modifiers
)
2451 if (*modifiers
& (MOD_MASK_SHIFT
| MOD_MASK_CTRL
| MOD_MASK_ALT
))
2453 /* TAB is a special case */
2454 if (key
== TAB
&& (*modifiers
& MOD_MASK_SHIFT
))
2456 *modifiers
&= ~MOD_MASK_SHIFT
;
2459 key0
= KEY2TERMCAP0(key
);
2460 key1
= KEY2TERMCAP1(key
);
2461 for (i
= 0; modifier_keys_table
[i
] != NUL
; i
+= MOD_KEYS_ENTRY_SIZE
)
2462 if (key0
== modifier_keys_table
[i
+ 3]
2463 && key1
== modifier_keys_table
[i
+ 4]
2464 && (*modifiers
& modifier_keys_table
[i
]))
2466 *modifiers
&= ~modifier_keys_table
[i
];
2467 return TERMCAP2KEY(modifier_keys_table
[i
+ 1],
2468 modifier_keys_table
[i
+ 2]);
2475 * Change <xHome> to <Home>, <xUp> to <Up>, etc.
2483 case K_XUP
: return K_UP
;
2484 case K_XDOWN
: return K_DOWN
;
2485 case K_XLEFT
: return K_LEFT
;
2486 case K_XRIGHT
: return K_RIGHT
;
2487 case K_XHOME
: return K_HOME
;
2488 case K_ZHOME
: return K_HOME
;
2489 case K_XEND
: return K_END
;
2490 case K_ZEND
: return K_END
;
2491 case K_XF1
: return K_F1
;
2492 case K_XF2
: return K_F2
;
2493 case K_XF3
: return K_F3
;
2494 case K_XF4
: return K_F4
;
2495 case K_S_XF1
: return K_S_F1
;
2496 case K_S_XF2
: return K_S_F2
;
2497 case K_S_XF3
: return K_S_F3
;
2498 case K_S_XF4
: return K_S_F4
;
2504 * Return a string which contains the name of the given key when the given
2505 * modifiers are down.
2508 get_special_key_name(c
, modifiers
)
2512 static char_u string
[MAX_KEY_NAME_LEN
+ 1];
2521 /* Key that stands for a normal character. */
2522 if (IS_SPECIAL(c
) && KEY2TERMCAP0(c
) == KS_KEY
)
2523 c
= KEY2TERMCAP1(c
);
2526 * Translate shifted special keys into unshifted keys and set modifier.
2527 * Same for CTRL and ALT modifiers.
2531 for (i
= 0; modifier_keys_table
[i
] != 0; i
+= MOD_KEYS_ENTRY_SIZE
)
2532 if ( KEY2TERMCAP0(c
) == (int)modifier_keys_table
[i
+ 1]
2533 && (int)KEY2TERMCAP1(c
) == (int)modifier_keys_table
[i
+ 2])
2535 modifiers
|= modifier_keys_table
[i
];
2536 c
= TERMCAP2KEY(modifier_keys_table
[i
+ 3],
2537 modifier_keys_table
[i
+ 4]);
2542 /* try to find the key in the special key table */
2543 table_idx
= find_special_key_in_table(c
);
2546 * When not a known special key, and not a printable character, try to
2547 * extract modifiers.
2551 && (*mb_char2len
)(c
) == 1
2556 && (!vim_isprintc(c
) || (c
& 0x7f) == ' ')
2560 modifiers
|= MOD_MASK_ALT
;
2561 /* try again, to find the un-alted key in the special key table */
2562 table_idx
= find_special_key_in_table(c
);
2564 if (table_idx
< 0 && !vim_isprintc(c
) && c
< ' ')
2571 modifiers
|= MOD_MASK_CTRL
;
2575 /* translate the modifier into a string */
2576 for (i
= 0; mod_mask_table
[i
].name
!= 'A'; i
++)
2577 if ((modifiers
& mod_mask_table
[i
].mod_mask
)
2578 == mod_mask_table
[i
].mod_flag
)
2580 string
[idx
++] = mod_mask_table
[i
].name
;
2581 string
[idx
++] = (char_u
)'-';
2584 if (table_idx
< 0) /* unknown special key, may output t_xx */
2588 string
[idx
++] = 't';
2589 string
[idx
++] = '_';
2590 string
[idx
++] = KEY2TERMCAP0(c
);
2591 string
[idx
++] = KEY2TERMCAP1(c
);
2593 /* Not a special key, only modifiers, output directly */
2597 if (has_mbyte
&& (*mb_char2len
)(c
) > 1)
2598 idx
+= (*mb_char2bytes
)(c
, string
+ idx
);
2601 if (vim_isprintc(c
))
2607 string
[idx
++] = *s
++;
2611 else /* use name of special key */
2613 STRCPY(string
+ idx
, key_names_table
[table_idx
].name
);
2614 idx
= (int)STRLEN(string
);
2616 string
[idx
++] = '>';
2622 * Try translating a <> name at (*srcp)[] to dst[].
2623 * Return the number of characters added to dst[], zero for no match.
2624 * If there is a match, srcp is advanced to after the <> name.
2625 * dst[] must be big enough to hold the result (up to six characters)!
2628 trans_special(srcp
, dst
, keycode
)
2631 int keycode
; /* prefer key code, e.g. K_DEL instead of DEL */
2637 key
= find_special_key(srcp
, &modifiers
, keycode
, FALSE
);
2641 /* Put the appropriate modifier in a string */
2644 dst
[dlen
++] = K_SPECIAL
;
2645 dst
[dlen
++] = KS_MODIFIER
;
2646 dst
[dlen
++] = modifiers
;
2649 if (IS_SPECIAL(key
))
2651 dst
[dlen
++] = K_SPECIAL
;
2652 dst
[dlen
++] = KEY2TERMCAP0(key
);
2653 dst
[dlen
++] = KEY2TERMCAP1(key
);
2656 else if (has_mbyte
&& !keycode
)
2657 dlen
+= (*mb_char2bytes
)(key
, dst
+ dlen
);
2660 dlen
= (int)(add_char2buf(key
, dst
+ dlen
) - dst
);
2668 * Try translating a <> name at (*srcp)[], return the key and modifiers.
2669 * srcp is advanced to after the <> name.
2670 * returns 0 if there is no match.
2673 find_special_key(srcp
, modp
, keycode
, keep_x_key
)
2676 int keycode
; /* prefer key code, e.g. K_DEL instead of DEL */
2677 int keep_x_key
; /* don't translate xHome to Home key */
2680 char_u
*end_of_name
;
2692 /* Find end of modifier list */
2694 for (bp
= src
+ 1; *bp
== '-' || vim_isIDc(*bp
); bp
++)
2699 if (bp
[1] != NUL
&& bp
[2] == '>')
2700 ++bp
; /* anything accepted, like <C-?> */
2702 if (bp
[0] == 't' && bp
[1] == '_' && bp
[2] && bp
[3])
2703 bp
+= 3; /* skip t_xx, xx may be '-' or '>' */
2706 if (*bp
== '>') /* found matching '>' */
2708 end_of_name
= bp
+ 1;
2710 if (STRNICMP(src
+ 1, "char-", 5) == 0 && VIM_ISDIGIT(src
[6]))
2712 /* <Char-123> or <Char-033> or <Char-0x33> */
2713 vim_str2nr(src
+ 6, NULL
, NULL
, TRUE
, TRUE
, NULL
, &n
);
2715 *srcp
= end_of_name
;
2719 /* Which modifiers are given? */
2721 for (bp
= src
+ 1; bp
< last_dash
; bp
++)
2725 bit
= name_to_mod_mask(*bp
);
2727 break; /* Illegal modifier name */
2733 * Legal modifier name.
2735 if (bp
>= last_dash
)
2738 * Modifier with single letter, or special key name.
2740 if (modifiers
!= 0 && last_dash
[2] == '>')
2744 key
= get_special_key_code(last_dash
+ 1);
2746 key
= handle_x_keys(key
);
2750 * get_special_key_code() may return NUL for invalid
2756 * Only use a modifier when there is no special key code that
2757 * includes the modifier.
2759 key
= simplify_key(key
, &modifiers
);
2763 /* don't want keycode, use single byte code */
2766 else if (key
== K_DEL
|| key
== K_KDEL
)
2771 * Normal Key with modifier: Try to make a single byte code.
2773 if (!IS_SPECIAL(key
))
2774 key
= extract_modifiers(key
, &modifiers
);
2777 *srcp
= end_of_name
;
2786 * Try to include modifiers in the key.
2787 * Changes "Shift-a" to 'A', "Alt-A" to 0xc0, etc.
2790 extract_modifiers(key
, modp
)
2794 int modifiers
= *modp
;
2797 /* Command-key really special, No fancynest */
2798 if (!(modifiers
& MOD_MASK_CMD
))
2800 if ((modifiers
& MOD_MASK_SHIFT
) && ASCII_ISALPHA(key
))
2802 key
= TOUPPER_ASC(key
);
2803 modifiers
&= ~MOD_MASK_SHIFT
;
2805 if ((modifiers
& MOD_MASK_CTRL
)
2807 /* * TODO: EBCDIC Better use:
2808 * && (Ctrl_chr(key) || key == '?')
2810 && strchr("?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_", key
)
2813 && ((key
>= '?' && key
<= '_') || ASCII_ISALPHA(key
))
2817 key
= Ctrl_chr(key
);
2818 modifiers
&= ~MOD_MASK_CTRL
;
2819 /* <C-@> is <Nul> */
2824 /* Command-key really special, No fancynest */
2825 if (!(modifiers
& MOD_MASK_CMD
))
2827 if ((modifiers
& MOD_MASK_ALT
) && key
< 0x80
2829 && !enc_dbcs
/* avoid creating a lead byte */
2834 modifiers
&= ~MOD_MASK_ALT
; /* remove the META modifier */
2842 * Try to find key "c" in the special key table.
2843 * Return the index when found, -1 when not found.
2846 find_special_key_in_table(c
)
2851 for (i
= 0; key_names_table
[i
].name
!= NULL
; i
++)
2852 if (c
== key_names_table
[i
].key
)
2854 if (key_names_table
[i
].name
== NULL
)
2860 * Find the special key with the given name (the given string does not have to
2861 * end with NUL, the name is assumed to end before the first non-idchar).
2862 * If the name starts with "t_" the next two characters are interpreted as a
2864 * Return the key code, or 0 if not found.
2867 get_special_key_code(name
)
2875 * If it's <t_xx> we get the code for xx from the termcap
2877 if (name
[0] == 't' && name
[1] == '_' && name
[2] != NUL
&& name
[3] != NUL
)
2879 string
[0] = name
[2];
2880 string
[1] = name
[3];
2882 if (add_termcap_entry(string
, FALSE
) == OK
)
2883 return TERMCAP2KEY(name
[2], name
[3]);
2886 for (i
= 0; key_names_table
[i
].name
!= NULL
; i
++)
2888 table_name
= key_names_table
[i
].name
;
2889 for (j
= 0; vim_isIDc(name
[j
]) && table_name
[j
] != NUL
; j
++)
2890 if (TOLOWER_ASC(table_name
[j
]) != TOLOWER_ASC(name
[j
]))
2892 if (!vim_isIDc(name
[j
]) && table_name
[j
] == NUL
)
2893 return key_names_table
[i
].key
;
2898 #if defined(FEAT_CMDL_COMPL) || defined(PROTO)
2903 if (i
>= (int)KEY_NAMES_TABLE_LEN
)
2905 return key_names_table
[i
].name
;
2909 #if defined(FEAT_MOUSE) || defined(PROTO)
2911 * Look up the given mouse code to return the relevant information in the other
2912 * arguments. Return which button is down or was released.
2915 get_mouse_button(code
, is_click
, is_drag
)
2922 for (i
= 0; mouse_table
[i
].pseudo_code
; i
++)
2923 if (code
== mouse_table
[i
].pseudo_code
)
2925 *is_click
= mouse_table
[i
].is_click
;
2926 *is_drag
= mouse_table
[i
].is_drag
;
2927 return mouse_table
[i
].button
;
2929 return 0; /* Shouldn't get here */
2933 * Return the appropriate pseudo mouse event token (KE_LEFTMOUSE etc) based on
2934 * the given information about which mouse button is down, and whether the
2935 * mouse was clicked, dragged or released.
2938 get_pseudo_mouse_code(button
, is_click
, is_drag
)
2939 int button
; /* eg MOUSE_LEFT */
2945 for (i
= 0; mouse_table
[i
].pseudo_code
; i
++)
2946 if (button
== mouse_table
[i
].button
2947 && is_click
== mouse_table
[i
].is_click
2948 && is_drag
== mouse_table
[i
].is_drag
)
2951 /* Trick: a non mappable left click and release has mouse_col -1
2952 * or added MOUSE_COLOFF. Used for 'mousefocus' in
2953 * gui_mouse_moved() */
2954 if (mouse_col
< 0 || mouse_col
> MOUSE_COLOFF
)
2959 mouse_col
-= MOUSE_COLOFF
;
2960 if (mouse_table
[i
].pseudo_code
== (int)KE_LEFTMOUSE
)
2961 return (int)KE_LEFTMOUSE_NM
;
2962 if (mouse_table
[i
].pseudo_code
== (int)KE_LEFTRELEASE
)
2963 return (int)KE_LEFTRELEASE_NM
;
2966 return mouse_table
[i
].pseudo_code
;
2968 return (int)KE_IGNORE
; /* not recognized, ignore it */
2970 #endif /* FEAT_MOUSE */
2973 * Return the current end-of-line type: EOL_DOS, EOL_UNIX or EOL_MAC.
2979 int c
= *buf
->b_p_ff
;
2981 if (buf
->b_p_bin
|| c
== 'u')
2989 * Like get_fileformat(), but override 'fileformat' with "p" for "++opt=val"
2993 get_fileformat_force(buf
, eap
)
2995 exarg_T
*eap
; /* can be NULL! */
2999 if (eap
!= NULL
&& eap
->force_ff
!= 0)
3000 c
= eap
->cmd
[eap
->force_ff
];
3003 if ((eap
!= NULL
&& eap
->force_bin
!= 0)
3004 ? (eap
->force_bin
== FORCE_BIN
) : buf
->b_p_bin
)
3016 * Set the current end-of-line type to EOL_DOS, EOL_UNIX or EOL_MAC.
3017 * Sets both 'textmode' and 'fileformat'.
3018 * Note: Does _not_ set global value of 'textmode'!
3021 set_fileformat(t
, opt_flags
)
3023 int opt_flags
; /* OPT_LOCAL and/or OPT_GLOBAL */
3031 curbuf
->b_p_tx
= TRUE
;
3035 curbuf
->b_p_tx
= FALSE
;
3039 curbuf
->b_p_tx
= FALSE
;
3043 set_string_option_direct((char_u
*)"ff", -1, (char_u
*)p
,
3044 OPT_FREE
| opt_flags
, 0);
3047 /* This may cause the buffer to become (un)modified. */
3048 check_status(curbuf
);
3049 redraw_tabline
= TRUE
;
3052 need_maketitle
= TRUE
; /* set window title later */
3057 * Return the default fileformat from 'fileformats'.
3060 default_fileformat()
3064 case 'm': return EOL_MAC
;
3065 case 'd': return EOL_DOS
;
3071 * Call shell. Calls mch_call_shell, with 'shellxquote' added.
3074 call_shell(cmd
, opt
)
3081 proftime_T wait_time
;
3087 smsg((char_u
*)_("Calling shell to execute: \"%s\""),
3088 cmd
== NULL
? p_sh
: cmd
);
3095 if (do_profiling
== PROF_YES
)
3096 prof_child_enter(&wait_time
);
3101 EMSG(_(e_shellempty
));
3106 #ifdef FEAT_GUI_MSWIN
3107 /* Don't hide the pointer while executing a shell command. */
3108 gui_mch_mousehide(FALSE
);
3113 /* The external command may update a tags file, clear cached tags. */
3116 if (cmd
== NULL
|| *p_sxq
== NUL
)
3117 retval
= mch_call_shell(cmd
, opt
);
3120 ncmd
= alloc((unsigned)(STRLEN(cmd
) + STRLEN(p_sxq
) * 2 + 1));
3123 STRCPY(ncmd
, p_sxq
);
3125 STRCAT(ncmd
, p_sxq
);
3126 retval
= mch_call_shell(ncmd
, opt
);
3136 * Check the window size, in case it changed while executing the
3139 shell_resized_check();
3143 set_vim_var_nr(VV_SHELL_ERROR
, (long)retval
);
3144 # ifdef FEAT_PROFILE
3145 if (do_profiling
== PROF_YES
)
3146 prof_child_exit(&wait_time
);
3154 * VISUAL, SELECTMODE and OP_PENDING State are never set, they are equal to
3155 * NORMAL State with a condition. This function returns the real State.
3177 #if defined(FEAT_MBYTE) || defined(PROTO)
3179 * Return TRUE if "p" points to just after a path separator.
3180 * Take care of multi-byte characters.
3181 * "b" must point to the start of the file name
3188 return vim_ispathsep(p
[-1])
3189 && (!has_mbyte
|| (*mb_head_off
)(b
, p
- 1) == 0);
3194 * Return TRUE if file names "f1" and "f2" are in the same directory.
3195 * "f1" may be a short name, "f2" must be a full path.
3198 same_directory(f1
, f2
)
3202 char_u ffname
[MAXPATHL
];
3207 if (f1
== NULL
|| f2
== NULL
)
3210 (void)vim_FullName(f1
, ffname
, MAXPATHL
, FALSE
);
3211 t1
= gettail_sep(ffname
);
3212 t2
= gettail_sep(f2
);
3213 return (t1
- ffname
== t2
- f2
3214 && pathcmp((char *)ffname
, (char *)f2
, (int)(t1
- ffname
)) == 0);
3217 #if defined(FEAT_SESSION) || defined(MSWIN) || defined(FEAT_GUI_MAC) \
3218 || ((defined(FEAT_GUI_GTK)) \
3219 && ( defined(FEAT_WINDOWS) || defined(FEAT_DND)) ) \
3220 || defined(FEAT_SUN_WORKSHOP) || defined(FEAT_NETBEANS_INTG) \
3223 * Change to a file's directory.
3224 * Caller must call shorten_fnames()!
3225 * Return OK or FAIL.
3228 vim_chdirfile(fname
)
3231 char_u dir
[MAXPATHL
];
3233 vim_strncpy(dir
, fname
, MAXPATHL
- 1);
3234 *gettail_sep(dir
) = NUL
;
3235 return mch_chdir((char *)dir
) == 0 ? OK
: FAIL
;
3239 #if defined(STAT_IGNORES_SLASH) || defined(PROTO)
3241 * Check if "name" ends in a slash and is not a directory.
3242 * Used for systems where stat() ignores a trailing slash on a file name.
3243 * The Vim code assumes a trailing slash is only ignored for a directory.
3250 return FALSE
; /* no file name is not illegal */
3251 if (name
[strlen(name
) - 1] != '/')
3252 return FALSE
; /* no trailing slash */
3253 if (mch_isdir((char_u
*)name
))
3254 return FALSE
; /* trailing slash for a directory */
3259 #if defined(CURSOR_SHAPE) || defined(PROTO)
3262 * Handling of cursor and mouse pointer shapes in various modes.
3265 cursorentry_T shape_table
[SHAPE_IDX_COUNT
] =
3267 /* The values will be filled in from the 'guicursor' and 'mouseshape'
3268 * defaults when Vim starts.
3269 * Adjust the SHAPE_IDX_ defines when making changes! */
3270 {0, 0, 0, 700L, 400L, 250L, 0, 0, "n", SHAPE_CURSOR
+SHAPE_MOUSE
},
3271 {0, 0, 0, 700L, 400L, 250L, 0, 0, "v", SHAPE_CURSOR
+SHAPE_MOUSE
},
3272 {0, 0, 0, 700L, 400L, 250L, 0, 0, "i", SHAPE_CURSOR
+SHAPE_MOUSE
},
3273 {0, 0, 0, 700L, 400L, 250L, 0, 0, "r", SHAPE_CURSOR
+SHAPE_MOUSE
},
3274 {0, 0, 0, 700L, 400L, 250L, 0, 0, "c", SHAPE_CURSOR
+SHAPE_MOUSE
},
3275 {0, 0, 0, 700L, 400L, 250L, 0, 0, "ci", SHAPE_CURSOR
+SHAPE_MOUSE
},
3276 {0, 0, 0, 700L, 400L, 250L, 0, 0, "cr", SHAPE_CURSOR
+SHAPE_MOUSE
},
3277 {0, 0, 0, 700L, 400L, 250L, 0, 0, "o", SHAPE_CURSOR
+SHAPE_MOUSE
},
3278 {0, 0, 0, 700L, 400L, 250L, 0, 0, "ve", SHAPE_CURSOR
+SHAPE_MOUSE
},
3279 {0, 0, 0, 0L, 0L, 0L, 0, 0, "e", SHAPE_MOUSE
},
3280 {0, 0, 0, 0L, 0L, 0L, 0, 0, "s", SHAPE_MOUSE
},
3281 {0, 0, 0, 0L, 0L, 0L, 0, 0, "sd", SHAPE_MOUSE
},
3282 {0, 0, 0, 0L, 0L, 0L, 0, 0, "vs", SHAPE_MOUSE
},
3283 {0, 0, 0, 0L, 0L, 0L, 0, 0, "vd", SHAPE_MOUSE
},
3284 {0, 0, 0, 0L, 0L, 0L, 0, 0, "m", SHAPE_MOUSE
},
3285 {0, 0, 0, 0L, 0L, 0L, 0, 0, "ml", SHAPE_MOUSE
},
3286 {0, 0, 0, 100L, 100L, 100L, 0, 0, "sm", SHAPE_CURSOR
},
3289 #ifdef FEAT_MOUSESHAPE
3291 * Table with names for mouse shapes. Keep in sync with all the tables for
3292 * mch_set_mouse_shape()!.
3294 static char * mshape_names
[] =
3296 "arrow", /* default, must be the first one */
3297 "blank", /* hidden */
3317 * Parse the 'guicursor' option ("what" is SHAPE_CURSOR) or 'mouseshape'
3318 * ("what" is SHAPE_MOUSE).
3319 * Returns error message for an illegal option, NULL otherwise.
3322 parse_shape_opt(what
)
3330 int idx
= 0; /* init for GCC */
3335 int found_ve
= FALSE
; /* found "ve" flag */
3339 * First round: check for errors; second round: do it for real.
3341 for (round
= 1; round
<= 2; ++round
)
3344 * Repeat for all comma separated parts.
3346 #ifdef FEAT_MOUSESHAPE
3347 if (what
== SHAPE_MOUSE
)
3348 modep
= p_mouseshape
;
3351 modep
= p_guicursor
;
3352 while (*modep
!= NUL
)
3354 colonp
= vim_strchr(modep
, ':');
3356 return (char_u
*)N_("E545: Missing colon");
3357 if (colonp
== modep
)
3358 return (char_u
*)N_("E546: Illegal mode");
3359 commap
= vim_strchr(modep
, ',');
3362 * Repeat for all mode's before the colon.
3363 * For the 'a' mode, we loop to handle all the modes.
3366 while (modep
< colonp
|| all_idx
>= 0)
3370 /* Find the mode. */
3371 if (modep
[1] == '-' || modep
[1] == ':')
3375 if (len
== 1 && TOLOWER_ASC(modep
[0]) == 'a')
3376 all_idx
= SHAPE_IDX_COUNT
- 1;
3379 for (idx
= 0; idx
< SHAPE_IDX_COUNT
; ++idx
)
3380 if (STRNICMP(modep
, shape_table
[idx
].name
, len
)
3383 if (idx
== SHAPE_IDX_COUNT
3384 || (shape_table
[idx
].used_for
& what
) == 0)
3385 return (char_u
*)N_("E546: Illegal mode");
3386 if (len
== 2 && modep
[0] == 'v' && modep
[1] == 'e')
3394 else if (round
== 2)
3396 #ifdef FEAT_MOUSESHAPE
3397 if (what
== SHAPE_MOUSE
)
3399 /* Set the default, for the missing parts */
3400 shape_table
[idx
].mshape
= 0;
3405 /* Set the defaults, for the missing parts */
3406 shape_table
[idx
].shape
= SHAPE_BLOCK
;
3407 shape_table
[idx
].blinkwait
= 700L;
3408 shape_table
[idx
].blinkon
= 400L;
3409 shape_table
[idx
].blinkoff
= 250L;
3413 /* Parse the part after the colon */
3414 for (p
= colonp
+ 1; *p
&& *p
!= ','; )
3416 #ifdef FEAT_MOUSESHAPE
3417 if (what
== SHAPE_MOUSE
)
3421 if (mshape_names
[i
] == NULL
)
3423 if (!VIM_ISDIGIT(*p
))
3424 return (char_u
*)N_("E547: Illegal mouseshape");
3426 shape_table
[idx
].mshape
=
3427 getdigits(&p
) + MSHAPE_NUMBERED
;
3429 (void)getdigits(&p
);
3432 len
= (int)STRLEN(mshape_names
[i
]);
3433 if (STRNICMP(p
, mshape_names
[i
], len
) == 0)
3436 shape_table
[idx
].mshape
= i
;
3442 else /* if (what == SHAPE_MOUSE) */
3446 * First handle the ones with a number argument.
3450 if (STRNICMP(p
, "ver", 3) == 0)
3452 else if (STRNICMP(p
, "hor", 3) == 0)
3454 else if (STRNICMP(p
, "blinkwait", 9) == 0)
3456 else if (STRNICMP(p
, "blinkon", 7) == 0)
3458 else if (STRNICMP(p
, "blinkoff", 8) == 0)
3463 if (!VIM_ISDIGIT(*p
))
3464 return (char_u
*)N_("E548: digit expected");
3466 if (len
== 3) /* "ver" or "hor" */
3469 return (char_u
*)N_("E549: Illegal percentage");
3472 if (TOLOWER_ASC(i
) == 'v')
3473 shape_table
[idx
].shape
= SHAPE_VER
;
3475 shape_table
[idx
].shape
= SHAPE_HOR
;
3476 shape_table
[idx
].percentage
= n
;
3479 else if (round
== 2)
3482 shape_table
[idx
].blinkwait
= n
;
3484 shape_table
[idx
].blinkon
= n
;
3486 shape_table
[idx
].blinkoff
= n
;
3489 else if (STRNICMP(p
, "block", 5) == 0)
3492 shape_table
[idx
].shape
= SHAPE_BLOCK
;
3495 else /* must be a highlight group name then */
3497 endp
= vim_strchr(p
, '-');
3498 if (commap
== NULL
) /* last part */
3501 endp
= p
+ STRLEN(p
); /* find end of part */
3503 else if (endp
> commap
|| endp
== NULL
)
3505 slashp
= vim_strchr(p
, '/');
3506 if (slashp
!= NULL
&& slashp
< endp
)
3508 /* "group/langmap_group" */
3509 i
= syn_check_group(p
, (int)(slashp
- p
));
3514 shape_table
[idx
].id
= syn_check_group(p
,
3516 shape_table
[idx
].id_lm
= shape_table
[idx
].id
;
3517 if (slashp
!= NULL
&& slashp
< endp
)
3518 shape_table
[idx
].id
= i
;
3522 } /* if (what != SHAPE_MOUSE) */
3534 /* If the 's' flag is not given, use the 'v' cursor for 's' */
3537 #ifdef FEAT_MOUSESHAPE
3538 if (what
== SHAPE_MOUSE
)
3540 shape_table
[SHAPE_IDX_VE
].mshape
= shape_table
[SHAPE_IDX_V
].mshape
;
3545 shape_table
[SHAPE_IDX_VE
].shape
= shape_table
[SHAPE_IDX_V
].shape
;
3546 shape_table
[SHAPE_IDX_VE
].percentage
=
3547 shape_table
[SHAPE_IDX_V
].percentage
;
3548 shape_table
[SHAPE_IDX_VE
].blinkwait
=
3549 shape_table
[SHAPE_IDX_V
].blinkwait
;
3550 shape_table
[SHAPE_IDX_VE
].blinkon
=
3551 shape_table
[SHAPE_IDX_V
].blinkon
;
3552 shape_table
[SHAPE_IDX_VE
].blinkoff
=
3553 shape_table
[SHAPE_IDX_V
].blinkoff
;
3554 shape_table
[SHAPE_IDX_VE
].id
= shape_table
[SHAPE_IDX_V
].id
;
3555 shape_table
[SHAPE_IDX_VE
].id_lm
= shape_table
[SHAPE_IDX_V
].id_lm
;
3562 # if defined(MCH_CURSOR_SHAPE) || defined(FEAT_GUI) \
3563 || defined(FEAT_MOUSESHAPE) || defined(PROTO)
3565 * Return the index into shape_table[] for the current mode.
3566 * When "mouse" is TRUE, consider indexes valid for the mouse pointer.
3569 get_shape_idx(mouse
)
3572 #ifdef FEAT_MOUSESHAPE
3573 if (mouse
&& (State
== HITRETURN
|| State
== ASKMORE
))
3577 gui_mch_getmouse(&x
, &y
);
3578 if (Y_2_ROW(y
) == Rows
- 1)
3579 return SHAPE_IDX_MOREL
;
3581 return SHAPE_IDX_MORE
;
3583 if (mouse
&& drag_status_line
)
3584 return SHAPE_IDX_SDRAG
;
3585 # ifdef FEAT_VERTSPLIT
3586 if (mouse
&& drag_sep_line
)
3587 return SHAPE_IDX_VDRAG
;
3590 if (!mouse
&& State
== SHOWMATCH
)
3591 return SHAPE_IDX_SM
;
3592 #ifdef FEAT_VREPLACE
3593 if (State
& VREPLACE_FLAG
)
3596 if (State
& REPLACE_FLAG
)
3600 if (State
& CMDLINE
)
3602 if (cmdline_at_end())
3604 if (cmdline_overstrike())
3605 return SHAPE_IDX_CR
;
3606 return SHAPE_IDX_CI
;
3614 return SHAPE_IDX_VE
;
3623 # if defined(FEAT_MOUSESHAPE) || defined(PROTO)
3624 static int old_mouse_shape
= 0;
3627 * Set the mouse shape:
3628 * If "shape" is -1, use shape depending on the current mode,
3629 * depending on the current state.
3630 * If "shape" is -2, only update the shape when it's CLINE or STATUS (used
3631 * when the mouse moves off the status or command line).
3634 update_mouseshape(shape_idx
)
3637 int new_mouse_shape
;
3639 /* Only works in GUI mode. */
3640 if (!gui
.in_use
|| gui
.starting
)
3643 /* Postpone the updating when more is to come. Speeds up executing of
3645 if (shape_idx
== -1 && char_avail())
3647 postponed_mouseshape
= TRUE
;
3651 /* When ignoring the mouse don't change shape on the statusline. */
3653 && (shape_idx
== SHAPE_IDX_CLINE
3654 || shape_idx
== SHAPE_IDX_STATUS
3655 || shape_idx
== SHAPE_IDX_VSEP
))
3659 && old_mouse_shape
!= shape_table
[SHAPE_IDX_CLINE
].mshape
3660 && old_mouse_shape
!= shape_table
[SHAPE_IDX_STATUS
].mshape
3661 && old_mouse_shape
!= shape_table
[SHAPE_IDX_VSEP
].mshape
)
3664 new_mouse_shape
= shape_table
[get_shape_idx(TRUE
)].mshape
;
3666 new_mouse_shape
= shape_table
[shape_idx
].mshape
;
3667 if (new_mouse_shape
!= old_mouse_shape
)
3669 mch_set_mouse_shape(new_mouse_shape
);
3670 old_mouse_shape
= new_mouse_shape
;
3672 postponed_mouseshape
= FALSE
;
3676 #endif /* CURSOR_SHAPE */
3681 * Optional encryption support.
3682 * Mohsin Ahmed, mosh@sasi.com, 98-09-24
3683 * Based on zip/crypt sources.
3685 * NOTE FOR USA: Since 2000 exporting this code from the USA is allowed to
3686 * most countries. There are a few exceptions, but that still should not be a
3687 * problem since this code was originally created in Europe and India.
3692 typedef unsigned short ush
; /* unsigned 16-bit value */
3693 typedef unsigned long ulg
; /* unsigned 32-bit value */
3695 static void make_crc_tab
__ARGS((void));
3697 static ulg crc_32_tab
[256];
3700 * Fill the CRC table.
3706 static int done
= FALSE
;
3710 for (t
= 0; t
< 256; t
++)
3713 for (s
= 0; s
< 8; s
++)
3714 v
= (v
>> 1) ^ ((v
& 1) * (ulg
)0xedb88320L
);
3720 #define CRC32(c, b) (crc_32_tab[((int)(c) ^ (b)) & 0xff] ^ ((c) >> 8))
3723 static ulg keys
[3]; /* keys defining the pseudo-random sequence */
3726 * Return the next byte in the pseudo-random sequence
3733 temp
= (ush
)keys
[2] | 2;
3734 return (int)(((unsigned)(temp
* (temp
^ 1)) >> 8) & 0xff);
3738 * Update the encryption keys with the next byte of plain text
3742 int c
; /* byte of plain text */
3744 keys
[0] = CRC32(keys
[0], c
);
3745 keys
[1] += keys
[0] & 0xff;
3746 keys
[1] = keys
[1] * 134775813L + 1;
3747 keys
[2] = CRC32(keys
[2], (int)(keys
[1] >> 24));
3752 * Initialize the encryption keys and the random header according to
3753 * the given password.
3754 * If "passwd" is NULL or empty, don't do anything.
3757 crypt_init_keys(passwd
)
3758 char_u
*passwd
; /* password string with which to modify keys */
3760 if (passwd
!= NULL
&& *passwd
!= NUL
)
3763 keys
[0] = 305419896L;
3764 keys
[1] = 591751049L;
3765 keys
[2] = 878082192L;
3766 while (*passwd
!= '\0')
3767 update_keys((int)*passwd
++);
3772 * Ask the user for a crypt key.
3773 * When "store" is TRUE, the new key in stored in the 'key' option, and the
3774 * 'key' option value is returned: Don't free it.
3775 * When "store" is FALSE, the typed key is returned in allocated memory.
3776 * Returns NULL on failure.
3779 get_crypt_key(store
, twice
)
3781 int twice
; /* Ask for the key twice. */
3783 char_u
*p1
, *p2
= NULL
;
3786 for (round
= 0; ; ++round
)
3788 cmdline_star
= TRUE
;
3789 cmdline_row
= msg_row
;
3790 p1
= getcmdline_prompt(NUL
, round
== 0
3791 ? (char_u
*)_("Enter encryption key: ")
3792 : (char_u
*)_("Enter same key again: "), 0, EXPAND_NOTHING
,
3794 cmdline_star
= FALSE
;
3801 if (p2
!= NULL
&& STRCMP(p1
, p2
) != 0)
3803 MSG(_("Keys don't match!"));
3807 round
= -1; /* do it again */
3812 set_option_value((char_u
*)"key", 0L, p1
, OPT_LOCAL
);
3814 p1
= curbuf
->b_p_key
;
3821 /* since the user typed this, no need to wait for return */
3822 need_wait_return
= FALSE
;
3829 #endif /* FEAT_CRYPT */
3831 /* TODO: make some #ifdef for this */
3832 /*--------[ file searching ]-------------------------------------------------*/
3834 * File searching functions for 'path', 'tags' and 'cdpath' options.
3835 * External visible functions:
3836 * vim_findfile_init() creates/initialises the search context
3837 * vim_findfile_free_visited() free list of visited files/dirs of search
3839 * vim_findfile() find a file in the search context
3840 * vim_findfile_cleanup() cleanup/free search context created by
3841 * vim_findfile_init()
3843 * All static functions and variables start with 'ff_'
3845 * In general it works like this:
3846 * First you create yourself a search context by calling vim_findfile_init().
3847 * It is possible to give a search context from a previous call to
3848 * vim_findfile_init(), so it can be reused. After this you call vim_findfile()
3849 * until you are satisfied with the result or it returns NULL. On every call it
3850 * returns the next file which matches the conditions given to
3851 * vim_findfile_init(). If it doesn't find a next file it returns NULL.
3853 * It is possible to call vim_findfile_init() again to reinitialise your search
3854 * with some new parameters. Don't forget to pass your old search context to
3855 * it, so it can reuse it and especially reuse the list of already visited
3856 * directories. If you want to delete the list of already visited directories
3857 * simply call vim_findfile_free_visited().
3859 * When you are done call vim_findfile_cleanup() to free the search context.
3861 * The function vim_findfile_init() has a long comment, which describes the
3862 * needed parameters.
3868 * Also we use an allocated search context here, this functions are NOT
3871 * To minimize parameter passing (or because I'm to lazy), only the
3872 * external visible functions get a search context as a parameter. This is
3873 * then assigned to a static global, which is used throughout the local
3878 * type for the directory search stack
3880 typedef struct ff_stack
3882 struct ff_stack
*ffs_prev
;
3884 /* the fix part (no wildcards) and the part containing the wildcards
3885 * of the search path
3887 char_u
*ffs_fix_path
;
3888 #ifdef FEAT_PATH_EXTRA
3889 char_u
*ffs_wc_path
;
3892 /* files/dirs found in the above directory, matched by the first wildcard
3895 char_u
**ffs_filearray
;
3896 int ffs_filearray_size
;
3897 char_u ffs_filearray_cur
; /* needed for partly handled dirs */
3899 /* to store status of partly handled directories
3900 * 0: we work on this directory for the first time
3901 * 1: this directory was partly searched in an earlier step
3905 /* How deep are we in the directory tree?
3906 * Counts backward from value of level parameter to vim_findfile_init
3910 /* Did we already expand '**' to an empty string? */
3911 int ffs_star_star_empty
;
3915 * type for already visited directories or files.
3917 typedef struct ff_visited
3919 struct ff_visited
*ffv_next
;
3921 #ifdef FEAT_PATH_EXTRA
3922 /* Visited directories are different if the wildcard string are
3923 * different. So we have to save it.
3925 char_u
*ffv_wc_path
;
3927 /* for unix use inode etc for comparison (needed because of links), else
3931 int ffv_dev_valid
; /* ffv_dev and ffv_ino were set */
3932 dev_t ffv_dev
; /* device number */
3933 ino_t ffv_ino
; /* inode number */
3935 /* The memory for this struct is allocated according to the length of
3938 char_u ffv_fname
[1]; /* actually longer */
3942 * We might have to manage several visited lists during a search.
3943 * This is especially needed for the tags option. If tags is set to:
3944 * "./++/tags,./++/TAGS,++/tags" (replace + with *)
3945 * So we have to do 3 searches:
3946 * 1) search from the current files directory downward for the file "tags"
3947 * 2) search from the current files directory downward for the file "TAGS"
3948 * 3) search from Vims current directory downwards for the file "tags"
3949 * As you can see, the first and the third search are for the same file, so for
3950 * the third search we can use the visited list of the first search. For the
3951 * second search we must start from a empty visited list.
3952 * The struct ff_visited_list_hdr is used to manage a linked list of already
3955 typedef struct ff_visited_list_hdr
3957 struct ff_visited_list_hdr
*ffvl_next
;
3959 /* the filename the attached visited list is for */
3960 char_u
*ffvl_filename
;
3962 ff_visited_T
*ffvl_visited_list
;
3964 } ff_visited_list_hdr_T
;
3968 * '**' can be expanded to several directory levels.
3969 * Set the default maximum depth.
3971 #define FF_MAX_STAR_STAR_EXPAND ((char_u)30)
3974 * The search context:
3975 * ffsc_stack_ptr: the stack for the dirs to search
3976 * ffsc_visited_list: the currently active visited list
3977 * ffsc_dir_visited_list: the currently active visited list for search dirs
3978 * ffsc_visited_lists_list: the list of all visited lists
3979 * ffsc_dir_visited_lists_list: the list of all visited lists for search dirs
3980 * ffsc_file_to_search: the file to search for
3981 * ffsc_start_dir: the starting directory, if search path was relative
3982 * ffsc_fix_path: the fix part of the given path (without wildcards)
3983 * Needed for upward search.
3984 * ffsc_wc_path: the part of the given path containing wildcards
3985 * ffsc_level: how many levels of dirs to search downwards
3986 * ffsc_stopdirs_v: array of stop directories for upward search
3987 * ffsc_find_what: FINDFILE_BOTH, FINDFILE_DIR or FINDFILE_FILE
3989 typedef struct ff_search_ctx_T
3991 ff_stack_T
*ffsc_stack_ptr
;
3992 ff_visited_list_hdr_T
*ffsc_visited_list
;
3993 ff_visited_list_hdr_T
*ffsc_dir_visited_list
;
3994 ff_visited_list_hdr_T
*ffsc_visited_lists_list
;
3995 ff_visited_list_hdr_T
*ffsc_dir_visited_lists_list
;
3996 char_u
*ffsc_file_to_search
;
3997 char_u
*ffsc_start_dir
;
3998 char_u
*ffsc_fix_path
;
3999 #ifdef FEAT_PATH_EXTRA
4000 char_u
*ffsc_wc_path
;
4002 char_u
**ffsc_stopdirs_v
;
4007 /* locally needed functions */
4008 #ifdef FEAT_PATH_EXTRA
4009 static int ff_check_visited
__ARGS((ff_visited_T
**, char_u
*, char_u
*));
4011 static int ff_check_visited
__ARGS((ff_visited_T
**, char_u
*));
4013 static void vim_findfile_free_visited_list
__ARGS((ff_visited_list_hdr_T
**list_headp
));
4014 static void ff_free_visited_list
__ARGS((ff_visited_T
*vl
));
4015 static ff_visited_list_hdr_T
* ff_get_visited_list
__ARGS((char_u
*, ff_visited_list_hdr_T
**list_headp
));
4016 #ifdef FEAT_PATH_EXTRA
4017 static int ff_wc_equal
__ARGS((char_u
*s1
, char_u
*s2
));
4020 static void ff_push
__ARGS((ff_search_ctx_T
*search_ctx
, ff_stack_T
*stack_ptr
));
4021 static ff_stack_T
*ff_pop
__ARGS((ff_search_ctx_T
*search_ctx
));
4022 static void ff_clear
__ARGS((ff_search_ctx_T
*search_ctx
));
4023 static void ff_free_stack_element
__ARGS((ff_stack_T
*stack_ptr
));
4024 #ifdef FEAT_PATH_EXTRA
4025 static ff_stack_T
*ff_create_stack_element
__ARGS((char_u
*, char_u
*, int, int));
4027 static ff_stack_T
*ff_create_stack_element
__ARGS((char_u
*, int, int));
4029 #ifdef FEAT_PATH_EXTRA
4030 static int ff_path_in_stoplist
__ARGS((char_u
*, int, char_u
**));
4035 * if someone likes findfirst/findnext, here are the functions
4039 static void *ff_fn_search_context
= NULL
;
4042 vim_findfirst(path
, filename
, level
)
4047 ff_fn_search_context
=
4048 vim_findfile_init(path
, filename
, NULL
, level
, TRUE
, FALSE
,
4049 ff_fn_search_context
, rel_fname
);
4050 if (NULL
== ff_fn_search_context
)
4053 return vim_findnext()
4059 char_u
*ret
= vim_findfile(ff_fn_search_context
);
4063 vim_findfile_cleanup(ff_fn_search_context
);
4064 ff_fn_search_context
= NULL
;
4071 * Initialization routine for vim_findfile.
4073 * Returns the newly allocated search context or NULL if an error occured.
4075 * Don't forget to clean up by calling vim_findfile_cleanup() if you are done
4076 * with the search context.
4078 * Find the file 'filename' in the directory 'path'.
4079 * The parameter 'path' may contain wildcards. If so only search 'level'
4080 * directories deep. The parameter 'level' is the absolute maximum and is
4081 * not related to restricts given to the '**' wildcard. If 'level' is 100
4082 * and you use '**200' vim_findfile() will stop after 100 levels.
4084 * 'filename' cannot contain wildcards! It is used as-is, no backslashes to
4085 * escape special characters.
4087 * If 'stopdirs' is not NULL and nothing is found downward, the search is
4088 * restarted on the next higher directory level. This is repeated until the
4089 * start-directory of a search is contained in 'stopdirs'. 'stopdirs' has the
4090 * format ";*<dirname>*\(;<dirname>\)*;\=$".
4092 * If the 'path' is relative, the starting dir for the search is either VIM's
4093 * current dir or if the path starts with "./" the current files dir.
4094 * If the 'path' is absolut, the starting dir is that part of the path before
4095 * the first wildcard.
4097 * Upward search is only done on the starting dir.
4099 * If 'free_visited' is TRUE the list of already visited files/directories is
4100 * cleared. Set this to FALSE if you just want to search from another
4101 * directory, but want to be sure that no directory from a previous search is
4102 * searched again. This is useful if you search for a file at different places.
4103 * The list of visited files/dirs can also be cleared with the function
4104 * vim_findfile_free_visited().
4106 * Set the parameter 'find_what' to FINDFILE_DIR if you want to search for
4107 * directories only, FINDFILE_FILE for files only, FINDFILE_BOTH for both.
4109 * A search context returned by a previous call to vim_findfile_init() can be
4110 * passed in the parameter "search_ctx_arg". This context is reused and
4111 * reinitialized with the new parameters. The list of already visited
4112 * directories from this context is only deleted if the parameter
4113 * "free_visited" is true. Be aware that the passed "search_ctx_arg" is freed
4114 * if the reinitialization fails.
4116 * If you don't have a search context from a previous call "search_ctx_arg"
4119 * This function silently ignores a few errors, vim_findfile() will have
4120 * limited functionality then.
4123 vim_findfile_init(path
, filename
, stopdirs
, level
, free_visited
, find_what
,
4124 search_ctx_arg
, tagfile
, rel_fname
)
4127 char_u
*stopdirs UNUSED
;
4131 void *search_ctx_arg
;
4133 char_u
*rel_fname
; /* file name to use for "." */
4135 #ifdef FEAT_PATH_EXTRA
4139 ff_search_ctx_T
*search_ctx
;
4141 /* If a search context is given by the caller, reuse it, else allocate a
4144 if (search_ctx_arg
!= NULL
)
4145 search_ctx
= search_ctx_arg
;
4148 search_ctx
= (ff_search_ctx_T
*)alloc((unsigned)sizeof(ff_search_ctx_T
));
4149 if (search_ctx
== NULL
)
4151 memset(search_ctx
, 0, sizeof(ff_search_ctx_T
));
4153 search_ctx
->ffsc_find_what
= find_what
;
4155 /* clear the search context, but NOT the visited lists */
4156 ff_clear(search_ctx
);
4158 /* clear visited list if wanted */
4159 if (free_visited
== TRUE
)
4160 vim_findfile_free_visited(search_ctx
);
4163 /* Reuse old visited lists. Get the visited list for the given
4164 * filename. If no list for the current filename exists, creates a new
4166 search_ctx
->ffsc_visited_list
= ff_get_visited_list(filename
,
4167 &search_ctx
->ffsc_visited_lists_list
);
4168 if (search_ctx
->ffsc_visited_list
== NULL
)
4170 search_ctx
->ffsc_dir_visited_list
= ff_get_visited_list(filename
,
4171 &search_ctx
->ffsc_dir_visited_lists_list
);
4172 if (search_ctx
->ffsc_dir_visited_list
== NULL
)
4176 if (ff_expand_buffer
== NULL
)
4178 ff_expand_buffer
= (char_u
*)alloc(MAXPATHL
);
4179 if (ff_expand_buffer
== NULL
)
4183 /* Store information on starting dir now if path is relative.
4184 * If path is absolute, we do that later. */
4186 && (vim_ispathsep(path
[1]) || path
[1] == NUL
)
4187 && (!tagfile
|| vim_strchr(p_cpo
, CPO_DOTTAG
) == NULL
)
4188 && rel_fname
!= NULL
)
4190 int len
= (int)(gettail(rel_fname
) - rel_fname
);
4192 if (!vim_isAbsName(rel_fname
) && len
+ 1 < MAXPATHL
)
4194 /* Make the start dir an absolute path name. */
4195 vim_strncpy(ff_expand_buffer
, rel_fname
, len
);
4196 search_ctx
->ffsc_start_dir
= FullName_save(ff_expand_buffer
, FALSE
);
4199 search_ctx
->ffsc_start_dir
= vim_strnsave(rel_fname
, len
);
4200 if (search_ctx
->ffsc_start_dir
== NULL
)
4205 else if (*path
== NUL
|| !vim_isAbsName(path
))
4207 #ifdef BACKSLASH_IN_FILENAME
4208 /* "c:dir" needs "c:" to be expanded, otherwise use current dir */
4209 if (*path
!= NUL
&& path
[1] == ':')
4216 if (vim_FullName(drive
, ff_expand_buffer
, MAXPATHL
, TRUE
) == FAIL
)
4222 if (mch_dirname(ff_expand_buffer
, MAXPATHL
) == FAIL
)
4225 search_ctx
->ffsc_start_dir
= vim_strsave(ff_expand_buffer
);
4226 if (search_ctx
->ffsc_start_dir
== NULL
)
4229 #ifdef BACKSLASH_IN_FILENAME
4230 /* A path that starts with "/dir" is relative to the drive, not to the
4231 * directory (but not for "//machine/dir"). Only use the drive name. */
4232 if ((*path
== '/' || *path
== '\\')
4233 && path
[1] != path
[0]
4234 && search_ctx
->ffsc_start_dir
[1] == ':')
4235 search_ctx
->ffsc_start_dir
[2] = NUL
;
4239 #ifdef FEAT_PATH_EXTRA
4241 * If stopdirs are given, split them into an array of pointers.
4242 * If this fails (mem allocation), there is no upward search at all or a
4243 * stop directory is not recognized -> continue silently.
4244 * If stopdirs just contains a ";" or is empty,
4245 * search_ctx->ffsc_stopdirs_v will only contain a NULL pointer. This
4246 * is handled as unlimited upward search. See function
4247 * ff_path_in_stoplist() for details.
4249 if (stopdirs
!= NULL
)
4251 char_u
*walker
= stopdirs
;
4254 while (*walker
== ';')
4258 search_ctx
->ffsc_stopdirs_v
=
4259 (char_u
**)alloc((unsigned)sizeof(char_u
*));
4261 if (search_ctx
->ffsc_stopdirs_v
!= NULL
)
4269 ptr
= vim_realloc(search_ctx
->ffsc_stopdirs_v
,
4270 (dircount
+ 1) * sizeof(char_u
*));
4272 search_ctx
->ffsc_stopdirs_v
= ptr
;
4274 /* ignore, keep what we have and continue */
4276 walker
= vim_strchr(walker
, ';');
4279 search_ctx
->ffsc_stopdirs_v
[dircount
-1] =
4280 vim_strnsave(helper
, (int)(walker
- helper
));
4284 /* this might be "", which means ascent till top
4285 * of directory tree.
4287 search_ctx
->ffsc_stopdirs_v
[dircount
-1] =
4288 vim_strsave(helper
);
4292 } while (walker
!= NULL
);
4293 search_ctx
->ffsc_stopdirs_v
[dircount
-1] = NULL
;
4298 #ifdef FEAT_PATH_EXTRA
4299 search_ctx
->ffsc_level
= level
;
4303 * -wildcard_stuff (might be NULL)
4305 wc_part
= vim_strchr(path
, '*');
4306 if (wc_part
!= NULL
)
4312 /* save the fix part of the path */
4313 search_ctx
->ffsc_fix_path
= vim_strnsave(path
, (int)(wc_part
- path
));
4316 * copy wc_path and add restricts to the '**' wildcard.
4317 * The octet after a '**' is used as a (binary) counter.
4318 * So '**3' is transposed to '**^C' ('^C' is ASCII value 3)
4319 * or '**76' is transposed to '**N'( 'N' is ASCII value 76).
4320 * For EBCDIC you get different character values.
4321 * If no restrict is given after '**' the default is used.
4322 * Due to this technique the path looks awful if you print it as a
4326 while (*wc_part
!= NUL
)
4328 if (STRNCMP(wc_part
, "**", 2) == 0)
4330 ff_expand_buffer
[len
++] = *wc_part
++;
4331 ff_expand_buffer
[len
++] = *wc_part
++;
4333 llevel
= strtol((char *)wc_part
, &errpt
, 10);
4334 if ((char_u
*)errpt
!= wc_part
&& llevel
> 0 && llevel
< 255)
4335 ff_expand_buffer
[len
++] = llevel
;
4336 else if ((char_u
*)errpt
!= wc_part
&& llevel
== 0)
4337 /* restrict is 0 -> remove already added '**' */
4340 ff_expand_buffer
[len
++] = FF_MAX_STAR_STAR_EXPAND
;
4341 wc_part
= (char_u
*)errpt
;
4342 if (*wc_part
!= NUL
&& !vim_ispathsep(*wc_part
))
4344 EMSG2(_("E343: Invalid path: '**[number]' must be at the end of the path or be followed by '%s'."), PATHSEPSTR
);
4349 ff_expand_buffer
[len
++] = *wc_part
++;
4351 ff_expand_buffer
[len
] = NUL
;
4352 search_ctx
->ffsc_wc_path
= vim_strsave(ff_expand_buffer
);
4354 if (search_ctx
->ffsc_wc_path
== NULL
)
4359 search_ctx
->ffsc_fix_path
= vim_strsave(path
);
4361 if (search_ctx
->ffsc_start_dir
== NULL
)
4363 /* store the fix part as startdir.
4364 * This is needed if the parameter path is fully qualified.
4366 search_ctx
->ffsc_start_dir
= vim_strsave(search_ctx
->ffsc_fix_path
);
4367 if (search_ctx
->ffsc_start_dir
)
4368 search_ctx
->ffsc_fix_path
[0] = NUL
;
4371 /* create an absolute path */
4372 STRCPY(ff_expand_buffer
, search_ctx
->ffsc_start_dir
);
4373 add_pathsep(ff_expand_buffer
);
4374 STRCAT(ff_expand_buffer
, search_ctx
->ffsc_fix_path
);
4375 add_pathsep(ff_expand_buffer
);
4377 sptr
= ff_create_stack_element(ff_expand_buffer
,
4378 #ifdef FEAT_PATH_EXTRA
4379 search_ctx
->ffsc_wc_path
,
4386 ff_push(search_ctx
, sptr
);
4388 search_ctx
->ffsc_file_to_search
= vim_strsave(filename
);
4389 if (search_ctx
->ffsc_file_to_search
== NULL
)
4396 * We clear the search context now!
4397 * Even when the caller gave us a (perhaps valid) context we free it here,
4398 * as we might have already destroyed it.
4400 vim_findfile_cleanup(search_ctx
);
4404 #if defined(FEAT_PATH_EXTRA) || defined(PROTO)
4406 * Get the stopdir string. Check that ';' is not escaped.
4409 vim_findfile_stopdir(buf
)
4412 char_u
*r_ptr
= buf
;
4414 while (*r_ptr
!= NUL
&& *r_ptr
!= ';')
4416 if (r_ptr
[0] == '\\' && r_ptr
[1] == ';')
4418 /* overwrite the escape char,
4419 * use STRLEN(r_ptr) to move the trailing '\0'
4421 STRMOVE(r_ptr
, r_ptr
+ 1);
4431 else if (*r_ptr
== NUL
)
4438 * Clean up the given search context. Can handle a NULL pointer.
4441 vim_findfile_cleanup(ctx
)
4447 vim_findfile_free_visited(ctx
);
4453 * Find a file in a search context.
4454 * The search context was created with vim_findfile_init() above.
4455 * Return a pointer to an allocated file name or NULL if nothing found.
4456 * To get all matching files call this function until you get NULL.
4458 * If the passed search_context is NULL, NULL is returned.
4460 * The search algorithm is depth first. To change this replace the
4461 * stack with a list (don't forget to leave partly searched directories on the
4465 vim_findfile(search_ctx_arg
)
4466 void *search_ctx_arg
;
4469 #ifdef FEAT_PATH_EXTRA
4470 char_u
*rest_of_wildcards
;
4471 char_u
*path_end
= NULL
;
4474 #if defined(FEAT_SEARCHPATH) || defined(FEAT_PATH_EXTRA)
4479 #ifdef FEAT_SEARCHPATH
4482 ff_search_ctx_T
*search_ctx
;
4484 if (search_ctx_arg
== NULL
)
4487 search_ctx
= (ff_search_ctx_T
*)search_ctx_arg
;
4490 * filepath is used as buffer for various actions and as the storage to
4491 * return a found filename.
4493 if ((file_path
= alloc((int)MAXPATHL
)) == NULL
)
4496 #ifdef FEAT_PATH_EXTRA
4497 /* store the end of the start dir -- needed for upward search */
4498 if (search_ctx
->ffsc_start_dir
!= NULL
)
4499 path_end
= &search_ctx
->ffsc_start_dir
[
4500 STRLEN(search_ctx
->ffsc_start_dir
)];
4503 #ifdef FEAT_PATH_EXTRA
4504 /* upward search loop */
4508 /* downward search loop */
4511 /* check if user user wants to stop the search*/
4516 /* get directory to work on from stack */
4517 stackp
= ff_pop(search_ctx
);
4522 * TODO: decide if we leave this test in
4524 * GOOD: don't search a directory(-tree) twice.
4525 * BAD: - check linked list for every new directory entered.
4526 * - check for double files also done below
4528 * Here we check if we already searched this directory.
4529 * We already searched a directory if:
4530 * 1) The directory is the same.
4531 * 2) We would use the same wildcard string.
4533 * Good if you have links on same directory via several ways
4534 * or you have selfreferences in directories (e.g. SuSE Linux 6.3:
4535 * /etc/rc.d/init.d is linked to /etc/rc.d -> endless loop)
4537 * This check is only needed for directories we work on for the
4538 * first time (hence stackp->ff_filearray == NULL)
4540 if (stackp
->ffs_filearray
== NULL
4541 && ff_check_visited(&search_ctx
->ffsc_dir_visited_list
4542 ->ffvl_visited_list
,
4543 stackp
->ffs_fix_path
4544 #ifdef FEAT_PATH_EXTRA
4545 , stackp
->ffs_wc_path
4552 verbose_enter_scroll();
4553 smsg((char_u
*)"Already Searched: %s (%s)",
4554 stackp
->ffs_fix_path
, stackp
->ffs_wc_path
);
4555 /* don't overwrite this either */
4556 msg_puts((char_u
*)"\n");
4557 verbose_leave_scroll();
4560 ff_free_stack_element(stackp
);
4564 else if (p_verbose
>= 5)
4566 verbose_enter_scroll();
4567 smsg((char_u
*)"Searching: %s (%s)",
4568 stackp
->ffs_fix_path
, stackp
->ffs_wc_path
);
4569 /* don't overwrite this either */
4570 msg_puts((char_u
*)"\n");
4571 verbose_leave_scroll();
4576 if (stackp
->ffs_level
<= 0)
4578 ff_free_stack_element(stackp
);
4585 * If no filearray till now expand wildcards
4586 * The function expand_wildcards() can handle an array of paths
4587 * and all possible expands are returned in one array. We use this
4588 * to handle the expansion of '**' into an empty string.
4590 if (stackp
->ffs_filearray
== NULL
)
4594 /* we use filepath to build the path expand_wildcards() should
4597 dirptrs
[0] = file_path
;
4600 /* if we have a start dir copy it in */
4601 if (!vim_isAbsName(stackp
->ffs_fix_path
)
4602 && search_ctx
->ffsc_start_dir
)
4604 STRCPY(file_path
, search_ctx
->ffsc_start_dir
);
4605 add_pathsep(file_path
);
4608 /* append the fix part of the search path */
4609 STRCAT(file_path
, stackp
->ffs_fix_path
);
4610 add_pathsep(file_path
);
4612 #ifdef FEAT_PATH_EXTRA
4613 rest_of_wildcards
= stackp
->ffs_wc_path
;
4614 if (*rest_of_wildcards
!= NUL
)
4616 len
= (int)STRLEN(file_path
);
4617 if (STRNCMP(rest_of_wildcards
, "**", 2) == 0)
4619 /* pointer to the restrict byte
4620 * The restrict byte is not a character!
4622 p
= rest_of_wildcards
+ 2;
4627 file_path
[len
++] = '*';
4632 /* remove '**<numb> from wildcards */
4633 STRMOVE(rest_of_wildcards
, rest_of_wildcards
+ 3);
4636 rest_of_wildcards
+= 3;
4638 if (stackp
->ffs_star_star_empty
== 0)
4640 /* if not done before, expand '**' to empty */
4641 stackp
->ffs_star_star_empty
= 1;
4642 dirptrs
[1] = stackp
->ffs_fix_path
;
4647 * Here we copy until the next path separator or the end of
4648 * the path. If we stop at a path separator, there is
4649 * still something else left. This is handled below by
4650 * pushing every directory returned from expand_wildcards()
4651 * on the stack again for further search.
4653 while (*rest_of_wildcards
4654 && !vim_ispathsep(*rest_of_wildcards
))
4655 file_path
[len
++] = *rest_of_wildcards
++;
4657 file_path
[len
] = NUL
;
4658 if (vim_ispathsep(*rest_of_wildcards
))
4659 rest_of_wildcards
++;
4664 * Expand wildcards like "*" and "$VAR".
4665 * If the path is a URL don't try this.
4667 if (path_with_url(dirptrs
[0]))
4669 stackp
->ffs_filearray
= (char_u
**)
4670 alloc((unsigned)sizeof(char *));
4671 if (stackp
->ffs_filearray
!= NULL
4672 && (stackp
->ffs_filearray
[0]
4673 = vim_strsave(dirptrs
[0])) != NULL
)
4674 stackp
->ffs_filearray_size
= 1;
4676 stackp
->ffs_filearray_size
= 0;
4679 expand_wildcards((dirptrs
[1] == NULL
) ? 1 : 2, dirptrs
,
4680 &stackp
->ffs_filearray_size
,
4681 &stackp
->ffs_filearray
,
4682 EW_DIR
|EW_ADDSLASH
|EW_SILENT
);
4684 stackp
->ffs_filearray_cur
= 0;
4685 stackp
->ffs_stage
= 0;
4687 #ifdef FEAT_PATH_EXTRA
4689 rest_of_wildcards
= &stackp
->ffs_wc_path
[
4690 STRLEN(stackp
->ffs_wc_path
)];
4693 if (stackp
->ffs_stage
== 0)
4695 /* this is the first time we work on this directory */
4696 #ifdef FEAT_PATH_EXTRA
4697 if (*rest_of_wildcards
== NUL
)
4701 * we don't have further wildcards to expand, so we have to
4702 * check for the final file now
4704 for (i
= stackp
->ffs_filearray_cur
;
4705 i
< stackp
->ffs_filearray_size
; ++i
)
4707 if (!path_with_url(stackp
->ffs_filearray
[i
])
4708 && !mch_isdir(stackp
->ffs_filearray
[i
]))
4709 continue; /* not a directory */
4711 /* prepare the filename to be checked for existence
4713 STRCPY(file_path
, stackp
->ffs_filearray
[i
]);
4714 add_pathsep(file_path
);
4715 STRCAT(file_path
, search_ctx
->ffsc_file_to_search
);
4718 * Try without extra suffix and then with suffixes
4719 * from 'suffixesadd'.
4721 #ifdef FEAT_SEARCHPATH
4722 len
= (int)STRLEN(file_path
);
4723 suf
= curbuf
->b_p_sua
;
4727 /* if file exists and we didn't already find it */
4728 if ((path_with_url(file_path
)
4729 || (mch_getperm(file_path
) >= 0
4730 && (search_ctx
->ffsc_find_what
4732 || ((search_ctx
->ffsc_find_what
4734 == mch_isdir(file_path
)))))
4736 && (ff_check_visited(
4737 &search_ctx
->ffsc_visited_list
->ffvl_visited_list
,
4739 #ifdef FEAT_PATH_EXTRA
4747 if (ff_check_visited(
4748 &search_ctx
->ffsc_visited_list
->ffvl_visited_list
,
4750 #ifdef FEAT_PATH_EXTRA
4757 verbose_enter_scroll();
4758 smsg((char_u
*)"Already: %s",
4760 /* don't overwrite this either */
4761 msg_puts((char_u
*)"\n");
4762 verbose_leave_scroll();
4768 /* push dir to examine rest of subdirs later */
4769 stackp
->ffs_filearray_cur
= i
+ 1;
4770 ff_push(search_ctx
, stackp
);
4772 if (!path_with_url(file_path
))
4773 simplify_filename(file_path
);
4774 if (mch_dirname(ff_expand_buffer
, MAXPATHL
)
4777 p
= shorten_fname(file_path
,
4780 STRMOVE(file_path
, p
);
4785 verbose_enter_scroll();
4786 smsg((char_u
*)"HIT: %s", file_path
);
4787 /* don't overwrite this either */
4788 msg_puts((char_u
*)"\n");
4789 verbose_leave_scroll();
4795 #ifdef FEAT_SEARCHPATH
4796 /* Not found or found already, try next suffix. */
4799 copy_option_part(&suf
, file_path
+ len
,
4800 MAXPATHL
- len
, ",");
4805 #ifdef FEAT_PATH_EXTRA
4809 * still wildcards left, push the directories for further
4812 for (i
= stackp
->ffs_filearray_cur
;
4813 i
< stackp
->ffs_filearray_size
; ++i
)
4815 if (!mch_isdir(stackp
->ffs_filearray
[i
]))
4816 continue; /* not a directory */
4819 ff_create_stack_element(
4820 stackp
->ffs_filearray
[i
],
4822 stackp
->ffs_level
- 1, 0));
4826 stackp
->ffs_filearray_cur
= 0;
4827 stackp
->ffs_stage
= 1;
4830 #ifdef FEAT_PATH_EXTRA
4832 * if wildcards contains '**' we have to descent till we reach the
4833 * leaves of the directory tree.
4835 if (STRNCMP(stackp
->ffs_wc_path
, "**", 2) == 0)
4837 for (i
= stackp
->ffs_filearray_cur
;
4838 i
< stackp
->ffs_filearray_size
; ++i
)
4840 if (fnamecmp(stackp
->ffs_filearray
[i
],
4841 stackp
->ffs_fix_path
) == 0)
4842 continue; /* don't repush same directory */
4843 if (!mch_isdir(stackp
->ffs_filearray
[i
]))
4844 continue; /* not a directory */
4846 ff_create_stack_element(stackp
->ffs_filearray
[i
],
4847 stackp
->ffs_wc_path
, stackp
->ffs_level
- 1, 1));
4852 /* we are done with the current directory */
4853 ff_free_stack_element(stackp
);
4857 #ifdef FEAT_PATH_EXTRA
4858 /* If we reached this, we didn't find anything downwards.
4859 * Let's check if we should do an upward search.
4861 if (search_ctx
->ffsc_start_dir
4862 && search_ctx
->ffsc_stopdirs_v
!= NULL
&& !got_int
)
4866 /* is the last starting directory in the stop list? */
4867 if (ff_path_in_stoplist(search_ctx
->ffsc_start_dir
,
4868 (int)(path_end
- search_ctx
->ffsc_start_dir
),
4869 search_ctx
->ffsc_stopdirs_v
) == TRUE
)
4872 /* cut of last dir */
4873 while (path_end
> search_ctx
->ffsc_start_dir
4874 && vim_ispathsep(*path_end
))
4876 while (path_end
> search_ctx
->ffsc_start_dir
4877 && !vim_ispathsep(path_end
[-1]))
4882 if (*search_ctx
->ffsc_start_dir
== 0)
4885 STRCPY(file_path
, search_ctx
->ffsc_start_dir
);
4886 add_pathsep(file_path
);
4887 STRCAT(file_path
, search_ctx
->ffsc_fix_path
);
4889 /* create a new stack entry */
4890 sptr
= ff_create_stack_element(file_path
,
4891 search_ctx
->ffsc_wc_path
, search_ctx
->ffsc_level
, 0);
4894 ff_push(search_ctx
, sptr
);
4901 vim_free(file_path
);
4906 * Free the list of lists of visited files and directories
4907 * Can handle it if the passed search_context is NULL;
4910 vim_findfile_free_visited(search_ctx_arg
)
4911 void *search_ctx_arg
;
4913 ff_search_ctx_T
*search_ctx
;
4915 if (search_ctx_arg
== NULL
)
4918 search_ctx
= (ff_search_ctx_T
*)search_ctx_arg
;
4919 vim_findfile_free_visited_list(&search_ctx
->ffsc_visited_lists_list
);
4920 vim_findfile_free_visited_list(&search_ctx
->ffsc_dir_visited_lists_list
);
4924 vim_findfile_free_visited_list(list_headp
)
4925 ff_visited_list_hdr_T
**list_headp
;
4927 ff_visited_list_hdr_T
*vp
;
4929 while (*list_headp
!= NULL
)
4931 vp
= (*list_headp
)->ffvl_next
;
4932 ff_free_visited_list((*list_headp
)->ffvl_visited_list
);
4934 vim_free((*list_headp
)->ffvl_filename
);
4935 vim_free(*list_headp
);
4942 ff_free_visited_list(vl
)
4950 #ifdef FEAT_PATH_EXTRA
4951 vim_free(vl
->ffv_wc_path
);
4960 * Returns the already visited list for the given filename. If none is found it
4961 * allocates a new one.
4963 static ff_visited_list_hdr_T
*
4964 ff_get_visited_list(filename
, list_headp
)
4966 ff_visited_list_hdr_T
**list_headp
;
4968 ff_visited_list_hdr_T
*retptr
= NULL
;
4970 /* check if a visited list for the given filename exists */
4971 if (*list_headp
!= NULL
)
4973 retptr
= *list_headp
;
4974 while (retptr
!= NULL
)
4976 if (fnamecmp(filename
, retptr
->ffvl_filename
) == 0)
4981 verbose_enter_scroll();
4982 smsg((char_u
*)"ff_get_visited_list: FOUND list for %s",
4984 /* don't overwrite this either */
4985 msg_puts((char_u
*)"\n");
4986 verbose_leave_scroll();
4991 retptr
= retptr
->ffvl_next
;
4998 verbose_enter_scroll();
4999 smsg((char_u
*)"ff_get_visited_list: new list for %s", filename
);
5000 /* don't overwrite this either */
5001 msg_puts((char_u
*)"\n");
5002 verbose_leave_scroll();
5007 * if we reach this we didn't find a list and we have to allocate new list
5009 retptr
= (ff_visited_list_hdr_T
*)alloc((unsigned)sizeof(*retptr
));
5013 retptr
->ffvl_visited_list
= NULL
;
5014 retptr
->ffvl_filename
= vim_strsave(filename
);
5015 if (retptr
->ffvl_filename
== NULL
)
5020 retptr
->ffvl_next
= *list_headp
;
5021 *list_headp
= retptr
;
5026 #ifdef FEAT_PATH_EXTRA
5028 * check if two wildcard paths are equal. Returns TRUE or FALSE.
5029 * They are equal if:
5030 * - both paths are NULL
5031 * - they have the same length
5032 * - char by char comparison is OK
5033 * - the only differences are in the counters behind a '**', so
5034 * '**\20' is equal to '**\24'
5046 if (s1
== NULL
|| s2
== NULL
)
5049 if (STRLEN(s1
) != STRLEN(s2
))
5052 for (i
= 0; s1
[i
] != NUL
&& s2
[i
] != NUL
; i
++)
5055 #ifdef CASE_INSENSITIVE_FILENAME
5056 && TOUPPER_LOC(s1
[i
]) != TOUPPER_LOC(s2
[i
])
5061 if (s1
[i
-1] == '*' && s1
[i
-2] == '*')
5074 * maintains the list of already visited files and dirs
5075 * returns FAIL if the given file/dir is already in the list
5076 * returns OK if it is newly added
5078 * TODO: What to do on memory allocation problems?
5079 * -> return TRUE - Better the file is found several times instead of
5083 ff_check_visited(visited_list
, fname
5084 #ifdef FEAT_PATH_EXTRA
5088 ff_visited_T
**visited_list
;
5090 #ifdef FEAT_PATH_EXTRA
5100 /* For an URL we only compare the name, otherwise we compare the
5101 * device/inode (unix) or the full path name (not Unix). */
5102 if (path_with_url(fname
))
5104 vim_strncpy(ff_expand_buffer
, fname
, MAXPATHL
- 1);
5111 ff_expand_buffer
[0] = NUL
;
5113 if (mch_stat((char *)fname
, &st
) < 0)
5115 if (vim_FullName(fname
, ff_expand_buffer
, MAXPATHL
, TRUE
) == FAIL
)
5120 /* check against list of already visited files */
5121 for (vp
= *visited_list
; vp
!= NULL
; vp
= vp
->ffv_next
)
5125 !url
? (vp
->ffv_dev_valid
&& vp
->ffv_dev
== st
.st_dev
5126 && vp
->ffv_ino
== st
.st_ino
)
5129 fnamecmp(vp
->ffv_fname
, ff_expand_buffer
) == 0
5132 #ifdef FEAT_PATH_EXTRA
5133 /* are the wildcard parts equal */
5134 if (ff_wc_equal(vp
->ffv_wc_path
, wc_path
) == TRUE
)
5136 /* already visited */
5142 * New file/dir. Add it to the list of visited files/dirs.
5144 vp
= (ff_visited_T
*)alloc((unsigned)(sizeof(ff_visited_T
)
5145 + STRLEN(ff_expand_buffer
)));
5152 vp
->ffv_dev_valid
= TRUE
;
5153 vp
->ffv_ino
= st
.st_ino
;
5154 vp
->ffv_dev
= st
.st_dev
;
5155 vp
->ffv_fname
[0] = NUL
;
5159 vp
->ffv_dev_valid
= FALSE
;
5161 STRCPY(vp
->ffv_fname
, ff_expand_buffer
);
5165 #ifdef FEAT_PATH_EXTRA
5166 if (wc_path
!= NULL
)
5167 vp
->ffv_wc_path
= vim_strsave(wc_path
);
5169 vp
->ffv_wc_path
= NULL
;
5172 vp
->ffv_next
= *visited_list
;
5180 * create stack element from given path pieces
5183 ff_create_stack_element(fix_part
,
5184 #ifdef FEAT_PATH_EXTRA
5187 level
, star_star_empty
)
5189 #ifdef FEAT_PATH_EXTRA
5193 int star_star_empty
;
5197 new = (ff_stack_T
*)alloc((unsigned)sizeof(ff_stack_T
));
5201 new->ffs_prev
= NULL
;
5202 new->ffs_filearray
= NULL
;
5203 new->ffs_filearray_size
= 0;
5204 new->ffs_filearray_cur
= 0;
5206 new->ffs_level
= level
;
5207 new->ffs_star_star_empty
= star_star_empty
;;
5209 /* the following saves NULL pointer checks in vim_findfile */
5210 if (fix_part
== NULL
)
5211 fix_part
= (char_u
*)"";
5212 new->ffs_fix_path
= vim_strsave(fix_part
);
5214 #ifdef FEAT_PATH_EXTRA
5215 if (wc_part
== NULL
)
5216 wc_part
= (char_u
*)"";
5217 new->ffs_wc_path
= vim_strsave(wc_part
);
5220 if (new->ffs_fix_path
== NULL
5221 #ifdef FEAT_PATH_EXTRA
5222 || new->ffs_wc_path
== NULL
5226 ff_free_stack_element(new);
5234 * Push a dir on the directory stack.
5237 ff_push(search_ctx
, stack_ptr
)
5238 ff_search_ctx_T
*search_ctx
;
5239 ff_stack_T
*stack_ptr
;
5241 /* check for NULL pointer, not to return an error to the user, but
5242 * to prevent a crash */
5243 if (stack_ptr
!= NULL
)
5245 stack_ptr
->ffs_prev
= search_ctx
->ffsc_stack_ptr
;
5246 search_ctx
->ffsc_stack_ptr
= stack_ptr
;
5251 * Pop a dir from the directory stack.
5252 * Returns NULL if stack is empty.
5256 ff_search_ctx_T
*search_ctx
;
5260 sptr
= search_ctx
->ffsc_stack_ptr
;
5261 if (search_ctx
->ffsc_stack_ptr
!= NULL
)
5262 search_ctx
->ffsc_stack_ptr
= search_ctx
->ffsc_stack_ptr
->ffs_prev
;
5268 * free the given stack element
5271 ff_free_stack_element(stack_ptr
)
5272 ff_stack_T
*stack_ptr
;
5274 /* vim_free handles possible NULL pointers */
5275 vim_free(stack_ptr
->ffs_fix_path
);
5276 #ifdef FEAT_PATH_EXTRA
5277 vim_free(stack_ptr
->ffs_wc_path
);
5280 if (stack_ptr
->ffs_filearray
!= NULL
)
5281 FreeWild(stack_ptr
->ffs_filearray_size
, stack_ptr
->ffs_filearray
);
5283 vim_free(stack_ptr
);
5287 * Clear the search context, but NOT the visited list.
5290 ff_clear(search_ctx
)
5291 ff_search_ctx_T
*search_ctx
;
5295 /* clear up stack */
5296 while ((sptr
= ff_pop(search_ctx
)) != NULL
)
5297 ff_free_stack_element(sptr
);
5299 vim_free(search_ctx
->ffsc_file_to_search
);
5300 vim_free(search_ctx
->ffsc_start_dir
);
5301 vim_free(search_ctx
->ffsc_fix_path
);
5302 #ifdef FEAT_PATH_EXTRA
5303 vim_free(search_ctx
->ffsc_wc_path
);
5306 #ifdef FEAT_PATH_EXTRA
5307 if (search_ctx
->ffsc_stopdirs_v
!= NULL
)
5311 while (search_ctx
->ffsc_stopdirs_v
[i
] != NULL
)
5313 vim_free(search_ctx
->ffsc_stopdirs_v
[i
]);
5316 vim_free(search_ctx
->ffsc_stopdirs_v
);
5318 search_ctx
->ffsc_stopdirs_v
= NULL
;
5321 /* reset everything */
5322 search_ctx
->ffsc_file_to_search
= NULL
;
5323 search_ctx
->ffsc_start_dir
= NULL
;
5324 search_ctx
->ffsc_fix_path
= NULL
;
5325 #ifdef FEAT_PATH_EXTRA
5326 search_ctx
->ffsc_wc_path
= NULL
;
5327 search_ctx
->ffsc_level
= 0;
5331 #ifdef FEAT_PATH_EXTRA
5333 * check if the given path is in the stopdirs
5334 * returns TRUE if yes else FALSE
5337 ff_path_in_stoplist(path
, path_len
, stopdirs_v
)
5340 char_u
**stopdirs_v
;
5344 /* eat up trailing path separators, except the first */
5345 while (path_len
> 1 && vim_ispathsep(path
[path_len
- 1]))
5348 /* if no path consider it as match */
5352 for (i
= 0; stopdirs_v
[i
] != NULL
; i
++)
5354 if ((int)STRLEN(stopdirs_v
[i
]) > path_len
)
5356 /* match for parent directory. So '/home' also matches
5357 * '/home/rks'. Check for PATHSEP in stopdirs_v[i], else
5358 * '/home/r' would also match '/home/rks'
5360 if (fnamencmp(stopdirs_v
[i
], path
, path_len
) == 0
5361 && vim_ispathsep(stopdirs_v
[i
][path_len
]))
5366 if (fnamecmp(stopdirs_v
[i
], path
) == 0)
5374 #if defined(FEAT_SEARCHPATH) || defined(PROTO)
5376 * Find the file name "ptr[len]" in the path. Also finds directory names.
5378 * On the first call set the parameter 'first' to TRUE to initialize
5379 * the search. For repeating calls to FALSE.
5381 * Repeating calls will return other files called 'ptr[len]' from the path.
5383 * Only on the first call 'ptr' and 'len' are used. For repeating calls they
5384 * don't need valid values.
5386 * If nothing found on the first call the option FNAME_MESS will issue the
5388 * 'Can't find file "<file>" in path'
5389 * On repeating calls:
5390 * 'No more file "<file>" found in path'
5393 * FNAME_MESS give error message when not found
5397 * Returns an allocated string for the file name. NULL for error.
5401 find_file_in_path(ptr
, len
, options
, first
, rel_fname
)
5402 char_u
*ptr
; /* file name */
5403 int len
; /* length of file name */
5405 int first
; /* use count'th matching file name */
5406 char_u
*rel_fname
; /* file name searching relative to */
5408 return find_file_in_path_option(ptr
, len
, options
, first
,
5409 *curbuf
->b_p_path
== NUL
? p_path
: curbuf
->b_p_path
,
5410 FINDFILE_BOTH
, rel_fname
, curbuf
->b_p_sua
);
5413 static char_u
*ff_file_to_find
= NULL
;
5414 static void *fdip_search_ctx
= NULL
;
5416 #if defined(EXITFREE)
5420 vim_free(ff_file_to_find
);
5421 vim_findfile_cleanup(fdip_search_ctx
);
5426 * Find the directory name "ptr[len]" in the path.
5429 * FNAME_MESS give error message when not found
5433 * Returns an allocated string for the file name. NULL for error.
5436 find_directory_in_path(ptr
, len
, options
, rel_fname
)
5437 char_u
*ptr
; /* file name */
5438 int len
; /* length of file name */
5440 char_u
*rel_fname
; /* file name searching relative to */
5442 return find_file_in_path_option(ptr
, len
, options
, TRUE
, p_cdpath
,
5443 FINDFILE_DIR
, rel_fname
, (char_u
*)"");
5447 find_file_in_path_option(ptr
, len
, options
, first
, path_option
, find_what
, rel_fname
, suffixes
)
5448 char_u
*ptr
; /* file name */
5449 int len
; /* length of file name */
5451 int first
; /* use count'th matching file name */
5452 char_u
*path_option
; /* p_path or p_cdpath */
5453 int find_what
; /* FINDFILE_FILE, _DIR or _BOTH */
5454 char_u
*rel_fname
; /* file name we are looking relative to. */
5455 char_u
*suffixes
; /* list of suffixes, 'suffixesadd' option */
5458 static int did_findfile_init
= FALSE
;
5460 char_u
*file_name
= NULL
;
5464 struct Process
*proc
= (struct Process
*)FindTask(0L);
5465 APTR save_winptr
= proc
->pr_WindowPtr
;
5467 /* Avoid a requester here for a volume that doesn't exist. */
5468 proc
->pr_WindowPtr
= (APTR
)-1L;
5473 /* copy file name into NameBuff, expanding environment variables */
5474 save_char
= ptr
[len
];
5476 expand_env(ptr
, NameBuff
, MAXPATHL
);
5477 ptr
[len
] = save_char
;
5479 vim_free(ff_file_to_find
);
5480 ff_file_to_find
= vim_strsave(NameBuff
);
5481 if (ff_file_to_find
== NULL
) /* out of memory */
5488 rel_to_curdir
= (ff_file_to_find
[0] == '.'
5489 && (ff_file_to_find
[1] == NUL
5490 || vim_ispathsep(ff_file_to_find
[1])
5491 || (ff_file_to_find
[1] == '.'
5492 && (ff_file_to_find
[2] == NUL
5493 || vim_ispathsep(ff_file_to_find
[2])))));
5494 if (vim_isAbsName(ff_file_to_find
)
5495 /* "..", "../path", "." and "./path": don't use the path_option */
5497 #if defined(MSWIN) || defined(MSDOS) || defined(OS2)
5498 /* handle "\tmp" as absolute path */
5499 || vim_ispathsep(ff_file_to_find
[0])
5500 /* handle "c:name" as absolute path */
5501 || (ff_file_to_find
[0] != NUL
&& ff_file_to_find
[1] == ':')
5504 /* handle ":tmp" as absolute path */
5505 || ff_file_to_find
[0] == ':'
5510 * Absolute path, no need to use "path_option".
5511 * If this is not a first call, return NULL. We already returned a
5512 * filename on the first call.
5519 if (path_with_url(ff_file_to_find
))
5521 file_name
= vim_strsave(ff_file_to_find
);
5525 /* When FNAME_REL flag given first use the directory of the file.
5526 * Otherwise or when this fails use the current directory. */
5527 for (run
= 1; run
<= 2; ++run
)
5529 l
= (int)STRLEN(ff_file_to_find
);
5532 && (options
& FNAME_REL
)
5533 && rel_fname
!= NULL
5534 && STRLEN(rel_fname
) + l
< MAXPATHL
)
5536 STRCPY(NameBuff
, rel_fname
);
5537 STRCPY(gettail(NameBuff
), ff_file_to_find
);
5538 l
= (int)STRLEN(NameBuff
);
5542 STRCPY(NameBuff
, ff_file_to_find
);
5546 /* When the file doesn't exist, try adding parts of
5553 /* "C:" by itself will fail for mch_getperm(),
5554 * assume it's always valid. */
5555 (find_what
!= FINDFILE_FILE
&& NameBuff
[0] != NUL
5556 && NameBuff
[1] == ':'
5557 && NameBuff
[2] == NUL
) ||
5559 (mch_getperm(NameBuff
) >= 0
5560 && (find_what
== FINDFILE_BOTH
5561 || ((find_what
== FINDFILE_DIR
)
5562 == mch_isdir(NameBuff
)))))
5564 file_name
= vim_strsave(NameBuff
);
5569 copy_option_part(&buf
, NameBuff
+ l
, MAXPATHL
- l
, ",");
5577 * Loop over all paths in the 'path' or 'cdpath' option.
5578 * When "first" is set, first setup to the start of the option.
5579 * Otherwise continue to find the next match.
5583 /* vim_findfile_free_visited can handle a possible NULL pointer */
5584 vim_findfile_free_visited(fdip_search_ctx
);
5586 did_findfile_init
= FALSE
;
5591 if (did_findfile_init
)
5593 file_name
= vim_findfile(fdip_search_ctx
);
5594 if (file_name
!= NULL
)
5597 did_findfile_init
= FALSE
;
5603 if (dir
== NULL
|| *dir
== NUL
)
5605 /* We searched all paths of the option, now we can
5606 * free the search context. */
5607 vim_findfile_cleanup(fdip_search_ctx
);
5608 fdip_search_ctx
= NULL
;
5612 if ((buf
= alloc((int)(MAXPATHL
))) == NULL
)
5615 /* copy next path */
5617 copy_option_part(&dir
, buf
, MAXPATHL
, " ,");
5619 #ifdef FEAT_PATH_EXTRA
5620 /* get the stopdir string */
5621 r_ptr
= vim_findfile_stopdir(buf
);
5625 fdip_search_ctx
= vim_findfile_init(buf
, ff_file_to_find
,
5626 r_ptr
, 100, FALSE
, find_what
,
5627 fdip_search_ctx
, FALSE
, rel_fname
);
5628 if (fdip_search_ctx
!= NULL
)
5629 did_findfile_init
= TRUE
;
5634 if (file_name
== NULL
&& (options
& FNAME_MESS
))
5638 if (find_what
== FINDFILE_DIR
)
5639 EMSG2(_("E344: Can't find directory \"%s\" in cdpath"),
5642 EMSG2(_("E345: Can't find file \"%s\" in path"),
5647 if (find_what
== FINDFILE_DIR
)
5648 EMSG2(_("E346: No more directory \"%s\" found in cdpath"),
5651 EMSG2(_("E347: No more file \"%s\" found in path"),
5658 proc
->pr_WindowPtr
= save_winptr
;
5663 #endif /* FEAT_SEARCHPATH */
5666 * Change directory to "new_dir". If FEAT_SEARCHPATH is defined, search
5667 * 'cdpath' for relative directory names, otherwise just mch_chdir().
5673 #ifndef FEAT_SEARCHPATH
5674 return mch_chdir((char *)new_dir
);
5679 dir_name
= find_directory_in_path(new_dir
, (int)STRLEN(new_dir
),
5680 FNAME_MESS
, curbuf
->b_ffname
);
5681 if (dir_name
== NULL
)
5683 r
= mch_chdir((char *)dir_name
);
5690 * Get user name from machine-specific function.
5691 * Returns the user name in "buf[len]".
5692 * Some systems are quite slow in obtaining the user name (Windows NT), thus
5694 * Returns OK or FAIL.
5697 get_user_name(buf
, len
)
5701 if (username
== NULL
)
5703 if (mch_get_user_name(buf
, len
) == FAIL
)
5705 username
= vim_strsave(buf
);
5708 vim_strncpy(buf
, username
, len
- 1);
5714 * Our own qsort(), for systems that don't have it.
5715 * It's simple and slow. From the K&R C book.
5718 qsort(base
, elm_count
, elm_size
, cmp
)
5722 int (*cmp
) __ARGS((const void *, const void *));
5730 buf
= alloc((unsigned)elm_size
);
5734 for (gap
= elm_count
/ 2; gap
> 0; gap
/= 2)
5735 for (i
= gap
; i
< elm_count
; ++i
)
5736 for (j
= i
- gap
; j
>= 0; j
-= gap
)
5738 /* Compare the elements. */
5739 p1
= (char_u
*)base
+ j
* elm_size
;
5740 p2
= (char_u
*)base
+ (j
+ gap
) * elm_size
;
5741 if ((*cmp
)((void *)p1
, (void *)p2
) <= 0)
5743 /* Exchange the elements. */
5744 mch_memmove(buf
, p1
, elm_size
);
5745 mch_memmove(p1
, p2
, elm_size
);
5746 mch_memmove(p2
, buf
, elm_size
);
5754 * Sort an array of strings.
5760 sort_compare
__ARGS((const void *s1
, const void *s2
));
5766 sort_compare(s1
, s2
)
5770 return STRCMP(*(char **)s1
, *(char **)s2
);
5774 sort_strings(files
, count
)
5778 qsort((void *)files
, (size_t)count
, sizeof(char_u
*), sort_compare
);
5781 #if !defined(NO_EXPANDPATH) || defined(PROTO)
5783 * Compare path "p[]" to "q[]".
5784 * If "maxlen" >= 0 compare "p[maxlen]" to "q[maxlen]"
5785 * Return value like strcmp(p, q), but consider path separators.
5788 pathcmp(p
, q
, maxlen
)
5793 const char *s
= NULL
;
5795 for (i
= 0; maxlen
< 0 || i
< maxlen
; ++i
)
5797 /* End of "p": check if "q" also ends or just has a slash. */
5800 if (q
[i
] == NUL
) /* full match */
5806 /* End of "q": check if "p" just has a slash. */
5814 #ifdef CASE_INSENSITIVE_FILENAME
5815 TOUPPER_LOC(p
[i
]) != TOUPPER_LOC(q
[i
])
5819 #ifdef BACKSLASH_IN_FILENAME
5820 /* consider '/' and '\\' to be equal */
5821 && !((p
[i
] == '/' && q
[i
] == '\\')
5822 || (p
[i
] == '\\' && q
[i
] == '/'))
5826 if (vim_ispathsep(p
[i
]))
5828 if (vim_ispathsep(q
[i
]))
5830 return ((char_u
*)p
)[i
] - ((char_u
*)q
)[i
]; /* no match */
5833 if (s
== NULL
) /* "i" ran into "maxlen" */
5836 /* ignore a trailing slash, but not "//" or ":/" */
5839 && !after_pathsep((char_u
*)s
, (char_u
*)s
+ i
)
5840 #ifdef BACKSLASH_IN_FILENAME
5841 && (s
[i
] == '/' || s
[i
] == '\\')
5846 return 0; /* match with trailing slash */
5848 return -1; /* no match */
5854 * The putenv() implementation below comes from the "screen" program.
5855 * Included with permission from Juergen Weigert.
5856 * See pty.c for the copyright notice.
5860 * putenv -- put value into environment
5862 * Usage: i = putenv (string)
5866 * where string is of the form <name>=<value>.
5867 * Putenv returns 0 normally, -1 on error (not enough core for malloc).
5869 * Putenv may need to add a new name into the environment, or to
5870 * associate a value longer than the current value with a particular
5871 * name. So, to make life simpler, putenv() copies your entire
5872 * environment into the heap (i.e. malloc()) from the stack
5873 * (i.e. where it resides when your process is initiated) the first
5876 * (history removed, not very interesting. See the "screen" sources.)
5879 #if !defined(HAVE_SETENV) && !defined(HAVE_PUTENV)
5881 #define EXTRASIZE 5 /* increment to add to env. size */
5883 static int envsize
= -1; /* current size of environment */
5884 #ifndef MACOS_CLASSIC
5887 char **environ
; /* the global which is your env. */
5889 static int findenv
__ARGS((char *name
)); /* look for a name in the env. */
5890 static int newenv
__ARGS((void)); /* copy env. from stack to heap */
5891 static int moreenv
__ARGS((void)); /* incr. size of env. */
5901 { /* first time putenv called */
5902 if (newenv() < 0) /* copy env. to heap */
5906 i
= findenv((char *)string
); /* look for name in environment */
5909 { /* name must be added */
5910 for (i
= 0; environ
[i
]; i
++);
5911 if (i
>= (envsize
- 1))
5912 { /* need new slot */
5916 p
= (char *)alloc((unsigned)(strlen(string
) + 1));
5917 if (p
== NULL
) /* not enough core */
5919 environ
[i
+ 1] = 0; /* new end of env. */
5922 { /* name already in env. */
5923 p
= vim_realloc(environ
[i
], strlen(string
) + 1);
5927 sprintf(p
, "%s", string
); /* copy into env. */
5937 char *namechar
, *envchar
;
5941 for (i
= 0; environ
[i
] && !found
; i
++)
5943 envchar
= environ
[i
];
5945 while (*namechar
&& *namechar
!= '=' && (*namechar
== *envchar
))
5950 found
= ((*namechar
== '\0' || *namechar
== '=') && *envchar
== '=');
5952 return found
? i
- 1 : -1;
5962 /* for Mac a new, empty environment is created */
5965 for (i
= 0; environ
[i
]; i
++)
5968 esize
= i
+ EXTRASIZE
+ 1;
5969 env
= (char **)alloc((unsigned)(esize
* sizeof (elem
)));
5974 for (i
= 0; environ
[i
]; i
++)
5976 elem
= (char *)alloc((unsigned)(strlen(environ
[i
]) + 1));
5980 strcpy(elem
, environ
[i
]);
5996 esize
= envsize
+ EXTRASIZE
;
5997 env
= (char **)vim_realloc((char *)environ
, esize
* sizeof (*env
));
6005 # ifdef USE_VIMPTY_GETENV
6007 vimpty_getenv(string
)
6008 const char_u
*string
;
6016 i
= findenv((char *)string
);
6021 p
= vim_strchr((char_u
*)environ
[i
], '=');
6026 #endif /* !defined(HAVE_SETENV) && !defined(HAVE_PUTENV) */
6028 #if defined(FEAT_EVAL) || defined(FEAT_SPELL) || defined(PROTO)
6030 * Return 0 for not writable, 1 for writable file, 2 for a dir which we have
6031 * rights to write into.
6038 #if defined(UNIX) || defined(VMS)
6042 #if defined(UNIX) || defined(VMS)
6043 perm
= mch_getperm(fname
);
6045 #ifndef MACOS_CLASSIC /* TODO: get either mch_writable or mch_access */
6048 mch_writable(fname
) &&
6050 # if defined(UNIX) || defined(VMS)
6054 mch_access((char *)fname
, W_OK
) == 0
6059 if (mch_isdir(fname
))
6067 * Print an error message with one or two "%s" and one or two string arguments.
6068 * This is not in message.c to avoid a warning for prototypes.
6072 char_u
*s
, *a1
, *a2
;
6075 return TRUE
; /* no error messages at the moment */
6076 #ifdef HAVE_STDARG_H
6077 vim_snprintf((char *)IObuff
, IOSIZE
, (char *)s
, a1
, a2
);
6079 vim_snprintf((char *)IObuff
, IOSIZE
, (char *)s
, (long_u
)a1
, (long_u
)a2
);
6081 return emsg(IObuff
);
6085 * Print an error message with one "%ld" and one long int argument.
6086 * This is not in message.c to avoid a warning for prototypes.
6094 return TRUE
; /* no error messages at the moment */
6095 vim_snprintf((char *)IObuff
, IOSIZE
, (char *)s
, n
);
6096 return emsg(IObuff
);