blob: 014c66a9b78dd3fbd75bf633d1dde9fcd733d144 [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001/* vi:set ts=8 sts=4 sw=4:
2 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
9
10/*
11 * misc2.c: Various functions.
12 */
13#include "vim.h"
14
Bram Moolenaarf461c8e2005-06-25 23:04:51 +000015static char_u *username = NULL; /* cached result of mch_get_user_name() */
16
17static char_u *ff_expand_buffer = NULL; /* used for expanding filenames */
18
Bram Moolenaar071d4272004-06-13 20:20:40 +000019#if defined(FEAT_VIRTUALEDIT) || defined(PROTO)
20static int coladvance2 __ARGS((pos_T *pos, int addspaces, int finetune, colnr_T wcol));
21
22/*
23 * Return TRUE if in the current mode we need to use virtual.
24 */
25 int
26virtual_active()
27{
28 /* While an operator is being executed we return "virtual_op", because
29 * VIsual_active has already been reset, thus we can't check for "block"
30 * being used. */
31 if (virtual_op != MAYBE)
32 return virtual_op;
33 return (ve_flags == VE_ALL
Bram Moolenaar071d4272004-06-13 20:20:40 +000034 || ((ve_flags & VE_BLOCK) && VIsual_active && VIsual_mode == Ctrl_V)
Bram Moolenaar071d4272004-06-13 20:20:40 +000035 || ((ve_flags & VE_INSERT) && (State & INSERT)));
36}
37
38/*
39 * Get the screen position of the cursor.
40 */
41 int
42getviscol()
43{
44 colnr_T x;
45
46 getvvcol(curwin, &curwin->w_cursor, &x, NULL, NULL);
47 return (int)x;
48}
49
50/*
51 * Get the screen position of character col with a coladd in the cursor line.
52 */
53 int
54getviscol2(col, coladd)
55 colnr_T col;
56 colnr_T coladd;
57{
58 colnr_T x;
59 pos_T pos;
60
61 pos.lnum = curwin->w_cursor.lnum;
62 pos.col = col;
63 pos.coladd = coladd;
64 getvvcol(curwin, &pos, &x, NULL, NULL);
65 return (int)x;
66}
67
68/*
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +000069 * Go to column "wcol", and add/insert white space as necessary to get the
Bram Moolenaar071d4272004-06-13 20:20:40 +000070 * cursor in that column.
71 * The caller must have saved the cursor line for undo!
72 */
73 int
74coladvance_force(wcol)
75 colnr_T wcol;
76{
77 int rc = coladvance2(&curwin->w_cursor, TRUE, FALSE, wcol);
78
79 if (wcol == MAXCOL)
80 curwin->w_valid &= ~VALID_VIRTCOL;
81 else
82 {
83 /* Virtcol is valid */
84 curwin->w_valid |= VALID_VIRTCOL;
85 curwin->w_virtcol = wcol;
86 }
87 return rc;
88}
89#endif
90
91/*
92 * Try to advance the Cursor to the specified screen column.
93 * If virtual editing: fine tune the cursor position.
94 * Note that all virtual positions off the end of a line should share
95 * a curwin->w_cursor.col value (n.b. this is equal to STRLEN(line)),
96 * beginning at coladd 0.
97 *
98 * return OK if desired column is reached, FAIL if not
99 */
100 int
101coladvance(wcol)
102 colnr_T wcol;
103{
104 int rc = getvpos(&curwin->w_cursor, wcol);
105
106 if (wcol == MAXCOL || rc == FAIL)
107 curwin->w_valid &= ~VALID_VIRTCOL;
Bram Moolenaardfccaf02004-12-31 20:56:11 +0000108 else if (*ml_get_cursor() != TAB)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000109 {
Bram Moolenaardfccaf02004-12-31 20:56:11 +0000110 /* Virtcol is valid when not on a TAB */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000111 curwin->w_valid |= VALID_VIRTCOL;
112 curwin->w_virtcol = wcol;
113 }
114 return rc;
115}
116
117/*
118 * Return in "pos" the position of the cursor advanced to screen column "wcol".
119 * return OK if desired column is reached, FAIL if not
120 */
121 int
122getvpos(pos, wcol)
123 pos_T *pos;
124 colnr_T wcol;
125{
126#ifdef FEAT_VIRTUALEDIT
127 return coladvance2(pos, FALSE, virtual_active(), wcol);
128}
129
130 static int
131coladvance2(pos, addspaces, finetune, wcol)
132 pos_T *pos;
133 int addspaces; /* change the text to achieve our goal? */
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +0000134 int finetune; /* change char offset for the exact column */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000135 colnr_T wcol; /* column to move to */
136{
137#endif
138 int idx;
139 char_u *ptr;
140 char_u *line;
141 colnr_T col = 0;
142 int csize = 0;
143 int one_more;
144#ifdef FEAT_LINEBREAK
145 int head = 0;
146#endif
147
Bram Moolenaarefd2bf12006-03-16 21:41:35 +0000148 one_more = (State & INSERT)
149 || restart_edit != NUL
Bram Moolenaarefd2bf12006-03-16 21:41:35 +0000150 || (VIsual_active && *p_sel != 'o')
Bram Moolenaarefd2bf12006-03-16 21:41:35 +0000151#ifdef FEAT_VIRTUALEDIT
Bram Moolenaar97b2ad32006-03-18 21:40:56 +0000152 || ((ve_flags & VE_ONEMORE) && wcol < MAXCOL)
Bram Moolenaarefd2bf12006-03-16 21:41:35 +0000153#endif
154 ;
Bram Moolenaara1381de2009-11-03 15:44:21 +0000155 line = ml_get_buf(curbuf, pos->lnum, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000156
157 if (wcol >= MAXCOL)
158 {
159 idx = (int)STRLEN(line) - 1 + one_more;
160 col = wcol;
161
162#ifdef FEAT_VIRTUALEDIT
163 if ((addspaces || finetune) && !VIsual_active)
164 {
165 curwin->w_curswant = linetabsize(line) + one_more;
166 if (curwin->w_curswant > 0)
167 --curwin->w_curswant;
168 }
169#endif
170 }
171 else
172 {
173#ifdef FEAT_VIRTUALEDIT
174 int width = W_WIDTH(curwin) - win_col_off(curwin);
175
Bram Moolenaarebefac62005-12-28 22:39:57 +0000176 if (finetune
Bram Moolenaar071d4272004-06-13 20:20:40 +0000177 && curwin->w_p_wrap
178# ifdef FEAT_VERTSPLIT
179 && curwin->w_width != 0
180# endif
181 && wcol >= (colnr_T)width)
182 {
183 csize = linetabsize(line);
184 if (csize > 0)
185 csize--;
186
Bram Moolenaarebefac62005-12-28 22:39:57 +0000187 if (wcol / width > (colnr_T)csize / width
188 && ((State & INSERT) == 0 || (int)wcol > csize + 1))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000189 {
190 /* In case of line wrapping don't move the cursor beyond the
Bram Moolenaarebefac62005-12-28 22:39:57 +0000191 * right screen edge. In Insert mode allow going just beyond
192 * the last character (like what happens when typing and
193 * reaching the right window edge). */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000194 wcol = (csize / width + 1) * width - 1;
195 }
196 }
197#endif
198
Bram Moolenaar071d4272004-06-13 20:20:40 +0000199 ptr = line;
200 while (col <= wcol && *ptr != NUL)
201 {
202 /* Count a tab for what it's worth (if list mode not on) */
203#ifdef FEAT_LINEBREAK
Bram Moolenaar597a4222014-06-25 14:39:50 +0200204 csize = win_lbr_chartabsize(curwin, line, ptr, col, &head);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000205 mb_ptr_adv(ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000206#else
Bram Moolenaar597a4222014-06-25 14:39:50 +0200207 csize = lbr_chartabsize_adv(line, &ptr, col);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000208#endif
209 col += csize;
210 }
211 idx = (int)(ptr - line);
212 /*
213 * Handle all the special cases. The virtual_active() check
214 * is needed to ensure that a virtual position off the end of
215 * a line has the correct indexing. The one_more comparison
216 * replaces an explicit add of one_more later on.
217 */
218 if (col > wcol || (!virtual_active() && one_more == 0))
219 {
220 idx -= 1;
221# ifdef FEAT_LINEBREAK
222 /* Don't count the chars from 'showbreak'. */
223 csize -= head;
224# endif
225 col -= csize;
226 }
227
228#ifdef FEAT_VIRTUALEDIT
229 if (virtual_active()
230 && addspaces
231 && ((col != wcol && col != wcol + 1) || csize > 1))
232 {
233 /* 'virtualedit' is set: The difference between wcol and col is
234 * filled with spaces. */
235
236 if (line[idx] == NUL)
237 {
238 /* Append spaces */
239 int correct = wcol - col;
240 char_u *newline = alloc(idx + correct + 1);
241 int t;
242
243 if (newline == NULL)
244 return FAIL;
245
246 for (t = 0; t < idx; ++t)
247 newline[t] = line[t];
248
249 for (t = 0; t < correct; ++t)
250 newline[t + idx] = ' ';
251
252 newline[idx + correct] = NUL;
253
254 ml_replace(pos->lnum, newline, FALSE);
255 changed_bytes(pos->lnum, (colnr_T)idx);
256 idx += correct;
257 col = wcol;
258 }
259 else
260 {
261 /* Break a tab */
262 int linelen = (int)STRLEN(line);
263 int correct = wcol - col - csize + 1; /* negative!! */
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000264 char_u *newline;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000265 int t, s = 0;
266 int v;
267
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000268 if (-correct > csize)
269 return FAIL;
270
271 newline = alloc(linelen + csize);
272 if (newline == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000273 return FAIL;
274
275 for (t = 0; t < linelen; t++)
276 {
277 if (t != idx)
278 newline[s++] = line[t];
279 else
280 for (v = 0; v < csize; v++)
281 newline[s++] = ' ';
282 }
283
284 newline[linelen + csize - 1] = NUL;
285
286 ml_replace(pos->lnum, newline, FALSE);
287 changed_bytes(pos->lnum, idx);
288 idx += (csize - 1 + correct);
289 col += correct;
290 }
291 }
292#endif
293 }
294
295 if (idx < 0)
296 pos->col = 0;
297 else
298 pos->col = idx;
299
300#ifdef FEAT_VIRTUALEDIT
301 pos->coladd = 0;
302
303 if (finetune)
304 {
305 if (wcol == MAXCOL)
306 {
307 /* The width of the last character is used to set coladd. */
308 if (!one_more)
309 {
310 colnr_T scol, ecol;
311
312 getvcol(curwin, pos, &scol, NULL, &ecol);
313 pos->coladd = ecol - scol;
314 }
315 }
316 else
317 {
318 int b = (int)wcol - (int)col;
319
320 /* The difference between wcol and col is used to set coladd. */
321 if (b > 0 && b < (MAXCOL - 2 * W_WIDTH(curwin)))
322 pos->coladd = b;
323
324 col += b;
325 }
326 }
327#endif
328
329#ifdef FEAT_MBYTE
Bram Moolenaara1381de2009-11-03 15:44:21 +0000330 /* prevent from moving onto a trail byte */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000331 if (has_mbyte)
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200332 mb_adjustpos(curbuf, pos);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000333#endif
334
335 if (col < wcol)
336 return FAIL;
337 return OK;
338}
339
340/*
Bram Moolenaar446cb832008-06-24 21:56:24 +0000341 * Increment the cursor position. See inc() for return values.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000342 */
343 int
344inc_cursor()
345{
346 return inc(&curwin->w_cursor);
347}
348
Bram Moolenaar446cb832008-06-24 21:56:24 +0000349/*
350 * Increment the line pointer "lp" crossing line boundaries as necessary.
351 * Return 1 when going to the next line.
352 * Return 2 when moving forward onto a NUL at the end of the line).
353 * Return -1 when at the end of file.
354 * Return 0 otherwise.
355 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000356 int
357inc(lp)
358 pos_T *lp;
359{
360 char_u *p = ml_get_pos(lp);
361
362 if (*p != NUL) /* still within line, move to next char (may be NUL) */
363 {
364#ifdef FEAT_MBYTE
365 if (has_mbyte)
366 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000367 int l = (*mb_ptr2len)(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000368
369 lp->col += l;
370 return ((p[l] != NUL) ? 0 : 2);
371 }
372#endif
373 lp->col++;
374#ifdef FEAT_VIRTUALEDIT
375 lp->coladd = 0;
376#endif
377 return ((p[1] != NUL) ? 0 : 2);
378 }
379 if (lp->lnum != curbuf->b_ml.ml_line_count) /* there is a next line */
380 {
381 lp->col = 0;
382 lp->lnum++;
383#ifdef FEAT_VIRTUALEDIT
384 lp->coladd = 0;
385#endif
386 return 1;
387 }
388 return -1;
389}
390
391/*
392 * incl(lp): same as inc(), but skip the NUL at the end of non-empty lines
393 */
394 int
395incl(lp)
396 pos_T *lp;
397{
398 int r;
399
400 if ((r = inc(lp)) >= 1 && lp->col)
401 r = inc(lp);
402 return r;
403}
404
405/*
406 * dec(p)
407 *
408 * Decrement the line pointer 'p' crossing line boundaries as necessary.
409 * Return 1 when crossing a line, -1 when at start of file, 0 otherwise.
410 */
411 int
412dec_cursor()
413{
414 return dec(&curwin->w_cursor);
415}
416
417 int
418dec(lp)
419 pos_T *lp;
420{
421 char_u *p;
422
423#ifdef FEAT_VIRTUALEDIT
424 lp->coladd = 0;
425#endif
426 if (lp->col > 0) /* still within line */
427 {
428 lp->col--;
429#ifdef FEAT_MBYTE
430 if (has_mbyte)
431 {
432 p = ml_get(lp->lnum);
433 lp->col -= (*mb_head_off)(p, p + lp->col);
434 }
435#endif
436 return 0;
437 }
438 if (lp->lnum > 1) /* there is a prior line */
439 {
440 lp->lnum--;
441 p = ml_get(lp->lnum);
442 lp->col = (colnr_T)STRLEN(p);
443#ifdef FEAT_MBYTE
444 if (has_mbyte)
445 lp->col -= (*mb_head_off)(p, p + lp->col);
446#endif
447 return 1;
448 }
449 return -1; /* at start of file */
450}
451
452/*
453 * decl(lp): same as dec(), but skip the NUL at the end of non-empty lines
454 */
455 int
456decl(lp)
457 pos_T *lp;
458{
459 int r;
460
461 if ((r = dec(lp)) == 1 && lp->col)
462 r = dec(lp);
463 return r;
464}
465
466/*
Bram Moolenaar64486672010-05-16 15:46:46 +0200467 * Get the line number relative to the current cursor position, i.e. the
468 * difference between line number and cursor position. Only look for lines that
469 * can be visible, folded lines don't count.
470 */
471 linenr_T
472get_cursor_rel_lnum(wp, lnum)
473 win_T *wp;
474 linenr_T lnum; /* line number to get the result for */
475{
476 linenr_T cursor = wp->w_cursor.lnum;
477 linenr_T retval = 0;
478
479#ifdef FEAT_FOLDING
480 if (hasAnyFolding(wp))
481 {
482 if (lnum > cursor)
483 {
484 while (lnum > cursor)
485 {
Bram Moolenaar0bd7b3f2013-12-14 12:48:58 +0100486 (void)hasFoldingWin(wp, lnum, &lnum, NULL, TRUE, NULL);
Bram Moolenaar64486672010-05-16 15:46:46 +0200487 /* if lnum and cursor are in the same fold,
488 * now lnum <= cursor */
489 if (lnum > cursor)
490 retval++;
491 lnum--;
492 }
493 }
494 else if (lnum < cursor)
495 {
496 while (lnum < cursor)
497 {
Bram Moolenaar0bd7b3f2013-12-14 12:48:58 +0100498 (void)hasFoldingWin(wp, lnum, NULL, &lnum, TRUE, NULL);
Bram Moolenaar64486672010-05-16 15:46:46 +0200499 /* if lnum and cursor are in the same fold,
500 * now lnum >= cursor */
501 if (lnum < cursor)
502 retval--;
503 lnum++;
504 }
505 }
506 /* else if (lnum == cursor)
507 * retval = 0;
508 */
509 }
510 else
511#endif
512 retval = lnum - cursor;
513
514 return retval;
515}
516
517/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000518 * Make sure curwin->w_cursor.lnum is valid.
519 */
520 void
521check_cursor_lnum()
522{
523 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
524 {
525#ifdef FEAT_FOLDING
526 /* If there is a closed fold at the end of the file, put the cursor in
527 * its first line. Otherwise in the last line. */
528 if (!hasFolding(curbuf->b_ml.ml_line_count,
529 &curwin->w_cursor.lnum, NULL))
530#endif
531 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
532 }
533 if (curwin->w_cursor.lnum <= 0)
534 curwin->w_cursor.lnum = 1;
535}
536
537/*
538 * Make sure curwin->w_cursor.col is valid.
539 */
540 void
541check_cursor_col()
542{
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200543 check_cursor_col_win(curwin);
544}
545
546/*
547 * Make sure win->w_cursor.col is valid.
548 */
549 void
550check_cursor_col_win(win)
551 win_T *win;
552{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000553 colnr_T len;
554#ifdef FEAT_VIRTUALEDIT
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200555 colnr_T oldcol = win->w_cursor.col;
556 colnr_T oldcoladd = win->w_cursor.col + win->w_cursor.coladd;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000557#endif
558
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200559 len = (colnr_T)STRLEN(ml_get_buf(win->w_buffer, win->w_cursor.lnum, FALSE));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000560 if (len == 0)
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200561 win->w_cursor.col = 0;
562 else if (win->w_cursor.col >= len)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000563 {
Bram Moolenaar33f54432008-01-04 20:25:44 +0000564 /* Allow cursor past end-of-line when:
565 * - in Insert mode or restarting Insert mode
566 * - in Visual mode and 'selection' isn't "old"
567 * - 'virtualedit' is set */
Bram Moolenaarebefac62005-12-28 22:39:57 +0000568 if ((State & INSERT) || restart_edit
Bram Moolenaar071d4272004-06-13 20:20:40 +0000569 || (VIsual_active && *p_sel != 'o')
Bram Moolenaar33f54432008-01-04 20:25:44 +0000570#ifdef FEAT_VIRTUALEDIT
571 || (ve_flags & VE_ONEMORE)
572#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000573 || virtual_active())
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200574 win->w_cursor.col = len;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000575 else
Bram Moolenaar87c19962007-04-26 08:54:21 +0000576 {
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200577 win->w_cursor.col = len - 1;
Bram Moolenaar87c19962007-04-26 08:54:21 +0000578#ifdef FEAT_MBYTE
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200579 /* Move the cursor to the head byte. */
Bram Moolenaar87c19962007-04-26 08:54:21 +0000580 if (has_mbyte)
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200581 mb_adjustpos(win->w_buffer, &win->w_cursor);
Bram Moolenaar87c19962007-04-26 08:54:21 +0000582#endif
583 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000584 }
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200585 else if (win->w_cursor.col < 0)
586 win->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000587
588#ifdef FEAT_VIRTUALEDIT
589 /* If virtual editing is on, we can leave the cursor on the old position,
590 * only we must set it to virtual. But don't do it when at the end of the
591 * line. */
592 if (oldcol == MAXCOL)
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200593 win->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000594 else if (ve_flags == VE_ALL)
Bram Moolenaar552c8a52009-03-11 16:29:20 +0000595 {
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200596 if (oldcoladd > win->w_cursor.col)
597 win->w_cursor.coladd = oldcoladd - win->w_cursor.col;
Bram Moolenaar552c8a52009-03-11 16:29:20 +0000598 else
599 /* avoid weird number when there is a miscalculation or overflow */
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200600 win->w_cursor.coladd = 0;
Bram Moolenaar552c8a52009-03-11 16:29:20 +0000601 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000602#endif
603}
604
605/*
606 * make sure curwin->w_cursor in on a valid character
607 */
608 void
609check_cursor()
610{
611 check_cursor_lnum();
612 check_cursor_col();
613}
614
615#if defined(FEAT_TEXTOBJ) || defined(PROTO)
616/*
617 * Make sure curwin->w_cursor is not on the NUL at the end of the line.
618 * Allow it when in Visual mode and 'selection' is not "old".
619 */
620 void
621adjust_cursor_col()
622{
623 if (curwin->w_cursor.col > 0
Bram Moolenaar071d4272004-06-13 20:20:40 +0000624 && (!VIsual_active || *p_sel == 'o')
Bram Moolenaar071d4272004-06-13 20:20:40 +0000625 && gchar_cursor() == NUL)
626 --curwin->w_cursor.col;
627}
628#endif
629
630/*
631 * When curwin->w_leftcol has changed, adjust the cursor position.
632 * Return TRUE if the cursor was moved.
633 */
634 int
635leftcol_changed()
636{
637 long lastcol;
638 colnr_T s, e;
639 int retval = FALSE;
640
641 changed_cline_bef_curs();
642 lastcol = curwin->w_leftcol + W_WIDTH(curwin) - curwin_col_off() - 1;
643 validate_virtcol();
644
645 /*
646 * If the cursor is right or left of the screen, move it to last or first
647 * character.
648 */
649 if (curwin->w_virtcol > (colnr_T)(lastcol - p_siso))
650 {
651 retval = TRUE;
652 coladvance((colnr_T)(lastcol - p_siso));
653 }
654 else if (curwin->w_virtcol < curwin->w_leftcol + p_siso)
655 {
656 retval = TRUE;
657 (void)coladvance((colnr_T)(curwin->w_leftcol + p_siso));
658 }
659
660 /*
661 * If the start of the character under the cursor is not on the screen,
662 * advance the cursor one more char. If this fails (last char of the
663 * line) adjust the scrolling.
664 */
665 getvvcol(curwin, &curwin->w_cursor, &s, NULL, &e);
666 if (e > (colnr_T)lastcol)
667 {
668 retval = TRUE;
669 coladvance(s - 1);
670 }
671 else if (s < curwin->w_leftcol)
672 {
673 retval = TRUE;
674 if (coladvance(e + 1) == FAIL) /* there isn't another character */
675 {
676 curwin->w_leftcol = s; /* adjust w_leftcol instead */
677 changed_cline_bef_curs();
678 }
679 }
680
681 if (retval)
682 curwin->w_set_curswant = TRUE;
683 redraw_later(NOT_VALID);
684 return retval;
685}
686
687/**********************************************************************
688 * Various routines dealing with allocation and deallocation of memory.
689 */
690
691#if defined(MEM_PROFILE) || defined(PROTO)
692
693# define MEM_SIZES 8200
694static long_u mem_allocs[MEM_SIZES];
695static long_u mem_frees[MEM_SIZES];
696static long_u mem_allocated;
697static long_u mem_freed;
698static long_u mem_peak;
699static long_u num_alloc;
700static long_u num_freed;
701
702static void mem_pre_alloc_s __ARGS((size_t *sizep));
703static void mem_pre_alloc_l __ARGS((long_u *sizep));
704static void mem_post_alloc __ARGS((void **pp, size_t size));
705static void mem_pre_free __ARGS((void **pp));
706
707 static void
708mem_pre_alloc_s(sizep)
709 size_t *sizep;
710{
711 *sizep += sizeof(size_t);
712}
713
714 static void
715mem_pre_alloc_l(sizep)
716 long_u *sizep;
717{
718 *sizep += sizeof(size_t);
719}
720
721 static void
722mem_post_alloc(pp, size)
723 void **pp;
724 size_t size;
725{
726 if (*pp == NULL)
727 return;
728 size -= sizeof(size_t);
729 *(long_u *)*pp = size;
730 if (size <= MEM_SIZES-1)
731 mem_allocs[size-1]++;
732 else
733 mem_allocs[MEM_SIZES-1]++;
734 mem_allocated += size;
735 if (mem_allocated - mem_freed > mem_peak)
736 mem_peak = mem_allocated - mem_freed;
737 num_alloc++;
738 *pp = (void *)((char *)*pp + sizeof(size_t));
739}
740
741 static void
742mem_pre_free(pp)
743 void **pp;
744{
745 long_u size;
746
747 *pp = (void *)((char *)*pp - sizeof(size_t));
748 size = *(size_t *)*pp;
749 if (size <= MEM_SIZES-1)
750 mem_frees[size-1]++;
751 else
752 mem_frees[MEM_SIZES-1]++;
753 mem_freed += size;
754 num_freed++;
755}
756
757/*
758 * called on exit via atexit()
759 */
760 void
761vim_mem_profile_dump()
762{
763 int i, j;
764
765 printf("\r\n");
766 j = 0;
767 for (i = 0; i < MEM_SIZES - 1; i++)
768 {
769 if (mem_allocs[i] || mem_frees[i])
770 {
771 if (mem_frees[i] > mem_allocs[i])
772 printf("\r\n%s", _("ERROR: "));
773 printf("[%4d / %4lu-%-4lu] ", i + 1, mem_allocs[i], mem_frees[i]);
774 j++;
775 if (j > 3)
776 {
777 j = 0;
778 printf("\r\n");
779 }
780 }
781 }
782
783 i = MEM_SIZES - 1;
784 if (mem_allocs[i])
785 {
786 printf("\r\n");
787 if (mem_frees[i] > mem_allocs[i])
Bram Moolenaar2f1e0502010-08-13 11:18:02 +0200788 puts(_("ERROR: "));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000789 printf("[>%d / %4lu-%-4lu]", i, mem_allocs[i], mem_frees[i]);
790 }
791
792 printf(_("\n[bytes] total alloc-freed %lu-%lu, in use %lu, peak use %lu\n"),
793 mem_allocated, mem_freed, mem_allocated - mem_freed, mem_peak);
794 printf(_("[calls] total re/malloc()'s %lu, total free()'s %lu\n\n"),
795 num_alloc, num_freed);
796}
797
798#endif /* MEM_PROFILE */
799
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +0100800#ifdef FEAT_EVAL
Bram Moolenaara260b872016-01-15 20:48:22 +0100801static int alloc_does_fail __ARGS((long_u size));
802
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +0100803 static int
Bram Moolenaara260b872016-01-15 20:48:22 +0100804alloc_does_fail(size)
805 long_u size;
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +0100806{
807 if (alloc_fail_countdown == 0)
808 {
809 if (--alloc_fail_repeat <= 0)
810 alloc_fail_id = 0;
Bram Moolenaara260b872016-01-15 20:48:22 +0100811 do_outofmem_msg(size);
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +0100812 return TRUE;
813 }
814 --alloc_fail_countdown;
815 return FALSE;
816}
817#endif
818
Bram Moolenaar071d4272004-06-13 20:20:40 +0000819/*
820 * Some memory is reserved for error messages and for being able to
821 * call mf_release_all(), which needs some memory for mf_trans_add().
822 */
823#if defined(MSDOS) && !defined(DJGPP)
824# define SMALL_MEM
825# define KEEP_ROOM 8192L
826#else
827# define KEEP_ROOM (2 * 8192L)
828#endif
Bram Moolenaar11b73d62012-06-29 15:51:30 +0200829#define KEEP_ROOM_KB (KEEP_ROOM / 1024L)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000830
831/*
Bram Moolenaar2a329742008-04-01 12:53:43 +0000832 * Note: if unsigned is 16 bits we can only allocate up to 64K with alloc().
Bram Moolenaar071d4272004-06-13 20:20:40 +0000833 * Use lalloc for larger blocks.
834 */
835 char_u *
836alloc(size)
837 unsigned size;
838{
839 return (lalloc((long_u)size, TRUE));
840}
841
842/*
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +0100843 * alloc() with an ID for alloc_fail().
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +0100844 */
845 char_u *
846alloc_id(size, id)
847 unsigned size;
Bram Moolenaar28fb79d2016-01-09 22:28:33 +0100848 alloc_id_T id UNUSED;
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +0100849{
850#ifdef FEAT_EVAL
Bram Moolenaara260b872016-01-15 20:48:22 +0100851 if (alloc_fail_id == id && alloc_does_fail((long_u)size))
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +0100852 return NULL;
853#endif
854 return (lalloc((long_u)size, TRUE));
855}
856
857/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000858 * Allocate memory and set all bytes to zero.
859 */
860 char_u *
861alloc_clear(size)
862 unsigned size;
863{
864 char_u *p;
865
Bram Moolenaar2f1e0502010-08-13 11:18:02 +0200866 p = lalloc((long_u)size, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000867 if (p != NULL)
868 (void)vim_memset(p, 0, (size_t)size);
869 return p;
870}
871
872/*
873 * alloc() with check for maximum line length
874 */
875 char_u *
876alloc_check(size)
877 unsigned size;
878{
879#if !defined(UNIX) && !defined(__EMX__)
880 if (sizeof(int) == 2 && size > 0x7fff)
881 {
882 /* Don't hide this message */
883 emsg_silent = 0;
884 EMSG(_("E340: Line is becoming too long"));
885 return NULL;
886 }
887#endif
888 return (lalloc((long_u)size, TRUE));
889}
890
891/*
892 * Allocate memory like lalloc() and set all bytes to zero.
893 */
894 char_u *
895lalloc_clear(size, message)
896 long_u size;
897 int message;
898{
899 char_u *p;
900
901 p = (lalloc(size, message));
902 if (p != NULL)
903 (void)vim_memset(p, 0, (size_t)size);
904 return p;
905}
906
907/*
908 * Low level memory allocation function.
909 * This is used often, KEEP IT FAST!
910 */
911 char_u *
912lalloc(size, message)
913 long_u size;
914 int message;
915{
916 char_u *p; /* pointer to new storage space */
917 static int releasing = FALSE; /* don't do mf_release_all() recursive */
918 int try_again;
919#if defined(HAVE_AVAIL_MEM) && !defined(SMALL_MEM)
920 static long_u allocated = 0; /* allocated since last avail check */
921#endif
922
923 /* Safety check for allocating zero bytes */
924 if (size == 0)
925 {
926 /* Don't hide this message */
927 emsg_silent = 0;
928 EMSGN(_("E341: Internal error: lalloc(%ld, )"), size);
929 return NULL;
930 }
931
932#ifdef MEM_PROFILE
933 mem_pre_alloc_l(&size);
934#endif
935
936#if defined(MSDOS) && !defined(DJGPP)
937 if (size >= 0xfff0) /* in MSDOS we can't deal with >64K blocks */
938 p = NULL;
939 else
940#endif
941
942 /*
943 * Loop when out of memory: Try to release some memfile blocks and
944 * if some blocks are released call malloc again.
945 */
946 for (;;)
947 {
948 /*
949 * Handle three kind of systems:
950 * 1. No check for available memory: Just return.
951 * 2. Slow check for available memory: call mch_avail_mem() after
952 * allocating KEEP_ROOM amount of memory.
953 * 3. Strict check for available memory: call mch_avail_mem()
954 */
955 if ((p = (char_u *)malloc((size_t)size)) != NULL)
956 {
957#ifndef HAVE_AVAIL_MEM
958 /* 1. No check for available memory: Just return. */
959 goto theend;
960#else
961# ifndef SMALL_MEM
962 /* 2. Slow check for available memory: call mch_avail_mem() after
963 * allocating (KEEP_ROOM / 2) amount of memory. */
964 allocated += size;
965 if (allocated < KEEP_ROOM / 2)
966 goto theend;
967 allocated = 0;
968# endif
969 /* 3. check for available memory: call mch_avail_mem() */
Bram Moolenaar11b73d62012-06-29 15:51:30 +0200970 if (mch_avail_mem(TRUE) < KEEP_ROOM_KB && !releasing)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000971 {
Bram Moolenaar5a221812008-11-12 12:08:45 +0000972 free((char *)p); /* System is low... no go! */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000973 p = NULL;
974 }
975 else
976 goto theend;
977#endif
978 }
979 /*
980 * Remember that mf_release_all() is being called to avoid an endless
981 * loop, because mf_release_all() may call alloc() recursively.
982 */
983 if (releasing)
984 break;
985 releasing = TRUE;
Bram Moolenaar661b1822005-07-28 22:36:45 +0000986
987 clear_sb_text(); /* free any scrollback text */
988 try_again = mf_release_all(); /* release as many blocks as possible */
Bram Moolenaar661b1822005-07-28 22:36:45 +0000989
Bram Moolenaar071d4272004-06-13 20:20:40 +0000990 releasing = FALSE;
991 if (!try_again)
992 break;
993 }
994
995 if (message && p == NULL)
996 do_outofmem_msg(size);
997
998theend:
999#ifdef MEM_PROFILE
1000 mem_post_alloc((void **)&p, (size_t)size);
1001#endif
1002 return p;
1003}
1004
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +01001005/*
1006 * lalloc() with an ID for alloc_fail().
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +01001007 */
1008 char_u *
1009lalloc_id(size, message, id)
1010 long_u size;
1011 int message;
Bram Moolenaar28fb79d2016-01-09 22:28:33 +01001012 alloc_id_T id UNUSED;
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +01001013{
1014#ifdef FEAT_EVAL
Bram Moolenaara260b872016-01-15 20:48:22 +01001015 if (alloc_fail_id == id && alloc_does_fail(size))
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +01001016 return NULL;
1017#endif
1018 return (lalloc((long_u)size, message));
1019}
1020
Bram Moolenaar071d4272004-06-13 20:20:40 +00001021#if defined(MEM_PROFILE) || defined(PROTO)
1022/*
1023 * realloc() with memory profiling.
1024 */
1025 void *
1026mem_realloc(ptr, size)
1027 void *ptr;
1028 size_t size;
1029{
1030 void *p;
1031
1032 mem_pre_free(&ptr);
1033 mem_pre_alloc_s(&size);
1034
1035 p = realloc(ptr, size);
1036
1037 mem_post_alloc(&p, size);
1038
1039 return p;
1040}
1041#endif
1042
1043/*
1044* Avoid repeating the error message many times (they take 1 second each).
1045* Did_outofmem_msg is reset when a character is read.
1046*/
1047 void
1048do_outofmem_msg(size)
1049 long_u size;
1050{
1051 if (!did_outofmem_msg)
1052 {
1053 /* Don't hide this message */
1054 emsg_silent = 0;
Bram Moolenaar79739e12011-10-26 11:41:00 +02001055
1056 /* Must come first to avoid coming back here when printing the error
1057 * message fails, e.g. when setting v:errmsg. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001058 did_outofmem_msg = TRUE;
Bram Moolenaar79739e12011-10-26 11:41:00 +02001059
1060 EMSGN(_("E342: Out of memory! (allocating %lu bytes)"), size);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001061 }
1062}
1063
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001064#if defined(EXITFREE) || defined(PROTO)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001065
1066# if defined(FEAT_SEARCHPATH)
1067static void free_findfile __ARGS((void));
1068# endif
1069
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001070/*
1071 * Free everything that we allocated.
1072 * Can be used to detect memory leaks, e.g., with ccmalloc.
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001073 * NOTE: This is tricky! Things are freed that functions depend on. Don't be
1074 * surprised if Vim crashes...
1075 * Some things can't be freed, esp. things local to a library function.
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001076 */
1077 void
1078free_all_mem()
1079{
1080 buf_T *buf, *nextbuf;
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001081 static int entered = FALSE;
1082
1083 /* When we cause a crash here it is caught and Vim tries to exit cleanly.
1084 * Don't try freeing everything again. */
1085 if (entered)
1086 return;
1087 entered = TRUE;
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001088
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001089# ifdef FEAT_AUTOCMD
Bram Moolenaar5d2bae82014-09-19 14:26:36 +02001090 /* Don't want to trigger autocommands from here on. */
1091 block_autocmds();
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001092# endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001093
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001094# ifdef FEAT_WINDOWS
Bram Moolenaar5bedfc62010-07-20 22:30:01 +02001095 /* Close all tabs and windows. Reset 'equalalways' to avoid redraws. */
1096 p_ea = FALSE;
Bram Moolenaar7d47b6e2006-03-15 22:59:18 +00001097 if (first_tabpage->tp_next != NULL)
1098 do_cmdline_cmd((char_u *)"tabonly!");
1099 if (firstwin != lastwin)
1100 do_cmdline_cmd((char_u *)"only!");
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001101# endif
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00001102
Bram Moolenaarc4956c82006-03-12 21:58:43 +00001103# if defined(FEAT_SPELL)
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001104 /* Free all spell info. */
1105 spell_free_all();
1106# endif
1107
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001108# if defined(FEAT_USR_CMDS)
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001109 /* Clear user commands (before deleting buffers). */
1110 ex_comclear(NULL);
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001111# endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001112
1113# ifdef FEAT_MENU
1114 /* Clear menus. */
1115 do_cmdline_cmd((char_u *)"aunmenu *");
Bram Moolenaar21160b92009-11-11 15:56:10 +00001116# ifdef FEAT_MULTI_LANG
1117 do_cmdline_cmd((char_u *)"menutranslate clear");
1118# endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001119# endif
1120
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001121 /* Clear mappings, abbreviations, breakpoints. */
Bram Moolenaar21160b92009-11-11 15:56:10 +00001122 do_cmdline_cmd((char_u *)"lmapclear");
1123 do_cmdline_cmd((char_u *)"xmapclear");
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001124 do_cmdline_cmd((char_u *)"mapclear");
1125 do_cmdline_cmd((char_u *)"mapclear!");
1126 do_cmdline_cmd((char_u *)"abclear");
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001127# if defined(FEAT_EVAL)
1128 do_cmdline_cmd((char_u *)"breakdel *");
1129# endif
Bram Moolenaar1e498f52005-06-26 22:29:44 +00001130# if defined(FEAT_PROFILE)
1131 do_cmdline_cmd((char_u *)"profdel *");
1132# endif
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00001133# if defined(FEAT_KEYMAP)
1134 do_cmdline_cmd((char_u *)"set keymap=");
1135#endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001136
1137# ifdef FEAT_TITLE
1138 free_titles();
1139# endif
1140# if defined(FEAT_SEARCHPATH)
1141 free_findfile();
1142# endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001143
1144 /* Obviously named calls. */
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001145# if defined(FEAT_AUTOCMD)
1146 free_all_autocmds();
1147# endif
1148 clear_termcodes();
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001149 free_all_options();
1150 free_all_marks();
1151 alist_clear(&global_alist);
1152 free_homedir();
Bram Moolenaar24305862012-08-15 14:05:05 +02001153# if defined(FEAT_CMDL_COMPL)
1154 free_users();
1155# endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001156 free_search_patterns();
1157 free_old_sub();
1158 free_last_insert();
1159 free_prev_shellcmd();
1160 free_regexp_stuff();
1161 free_tag_stuff();
1162 free_cd_dir();
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00001163# ifdef FEAT_SIGNS
1164 free_signs();
1165# endif
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001166# ifdef FEAT_EVAL
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001167 set_expr_line(NULL);
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001168# endif
1169# ifdef FEAT_DIFF
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00001170 diff_clear(curtab);
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001171# endif
Bram Moolenaara40ceaf2006-01-13 22:35:40 +00001172 clear_sb_text(); /* free any scrollback text */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001173
1174 /* Free some global vars. */
1175 vim_free(username);
Bram Moolenaaraf92ee82007-10-07 13:45:08 +00001176# ifdef FEAT_CLIPBOARD
Bram Moolenaar473de612013-06-08 18:19:48 +02001177 vim_regfree(clip_exclude_prog);
Bram Moolenaaraf92ee82007-10-07 13:45:08 +00001178# endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001179 vim_free(last_cmdline);
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001180# ifdef FEAT_CMDHIST
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001181 vim_free(new_last_cmdline);
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001182# endif
Bram Moolenaar238a5642006-02-21 22:12:05 +00001183 set_keep_msg(NULL, 0);
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001184 vim_free(ff_expand_buffer);
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001185
1186 /* Clear cmdline history. */
1187 p_hi = 0;
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001188# ifdef FEAT_CMDHIST
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001189 init_history();
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001190# endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001191
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001192#ifdef FEAT_QUICKFIX
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001193 {
Bram Moolenaarbd1e5d22009-04-29 09:02:44 +00001194 win_T *win;
1195 tabpage_T *tab;
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001196
1197 qf_free_all(NULL);
1198 /* Free all location lists */
Bram Moolenaarbd1e5d22009-04-29 09:02:44 +00001199 FOR_ALL_TAB_WINDOWS(tab, win)
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001200 qf_free_all(win);
1201 }
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001202#endif
1203
1204 /* Close all script inputs. */
1205 close_all_scripts();
1206
1207#if defined(FEAT_WINDOWS)
1208 /* Destroy all windows. Must come before freeing buffers. */
1209 win_free_all();
1210#endif
1211
Bram Moolenaar2a329742008-04-01 12:53:43 +00001212 /* Free all buffers. Reset 'autochdir' to avoid accessing things that
1213 * were freed already. */
1214#ifdef FEAT_AUTOCHDIR
1215 p_acd = FALSE;
1216#endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001217 for (buf = firstbuf; buf != NULL; )
1218 {
1219 nextbuf = buf->b_next;
Bram Moolenaar42ec6562012-02-22 14:58:37 +01001220 close_buffer(NULL, buf, DOBUF_WIPE, FALSE);
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001221 if (buf_valid(buf))
1222 buf = nextbuf; /* didn't work, try next one */
1223 else
1224 buf = firstbuf;
1225 }
1226
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001227#ifdef FEAT_ARABIC
1228 free_cmdline_buf();
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001229#endif
1230
1231 /* Clear registers. */
1232 clear_registers();
1233 ResetRedobuff();
1234 ResetRedobuff();
1235
Bram Moolenaar85c79d32007-02-20 01:59:20 +00001236#if defined(FEAT_CLIENTSERVER) && defined(FEAT_X11)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001237 vim_free(serverDelayedStartName);
1238#endif
1239
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001240 /* highlight info */
1241 free_highlight();
1242
Bram Moolenaar1e498f52005-06-26 22:29:44 +00001243 reset_last_sourcing();
1244
Bram Moolenaar7d47b6e2006-03-15 22:59:18 +00001245#ifdef FEAT_WINDOWS
Bram Moolenaar06a89a52006-04-29 22:01:03 +00001246 free_tabpage(first_tabpage);
1247 first_tabpage = NULL;
Bram Moolenaar7d47b6e2006-03-15 22:59:18 +00001248#endif
1249
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001250# ifdef UNIX
1251 /* Machine-specific free. */
1252 mch_free_mem();
1253# endif
1254
1255 /* message history */
1256 for (;;)
1257 if (delete_first_msg() == FAIL)
1258 break;
1259
1260# ifdef FEAT_EVAL
1261 eval_clear();
1262# endif
1263
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001264 free_termoptions();
1265
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001266 /* screenlines (can't display anything now!) */
1267 free_screenlines();
1268
1269#if defined(USE_XSMP)
1270 xsmp_close();
1271#endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001272#ifdef FEAT_GUI_GTK
1273 gui_mch_free_all();
1274#endif
1275 clear_hl_tables();
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001276
1277 vim_free(IObuff);
1278 vim_free(NameBuff);
1279}
1280#endif
1281
Bram Moolenaar071d4272004-06-13 20:20:40 +00001282/*
Bram Moolenaare980d8a2010-12-08 13:11:21 +01001283 * Copy "string" into newly allocated memory.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001284 */
1285 char_u *
1286vim_strsave(string)
1287 char_u *string;
1288{
1289 char_u *p;
1290 unsigned len;
1291
1292 len = (unsigned)STRLEN(string) + 1;
1293 p = alloc(len);
1294 if (p != NULL)
1295 mch_memmove(p, string, (size_t)len);
1296 return p;
1297}
1298
Bram Moolenaare980d8a2010-12-08 13:11:21 +01001299/*
1300 * Copy up to "len" bytes of "string" into newly allocated memory and
1301 * terminate with a NUL.
1302 * The allocated memory always has size "len + 1", also when "string" is
1303 * shorter.
1304 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001305 char_u *
1306vim_strnsave(string, len)
1307 char_u *string;
1308 int len;
1309{
1310 char_u *p;
1311
1312 p = alloc((unsigned)(len + 1));
1313 if (p != NULL)
1314 {
1315 STRNCPY(p, string, len);
1316 p[len] = NUL;
1317 }
1318 return p;
1319}
1320
Bram Moolenaar071d4272004-06-13 20:20:40 +00001321/*
1322 * Same as vim_strsave(), but any characters found in esc_chars are preceded
1323 * by a backslash.
1324 */
1325 char_u *
1326vim_strsave_escaped(string, esc_chars)
1327 char_u *string;
1328 char_u *esc_chars;
1329{
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001330 return vim_strsave_escaped_ext(string, esc_chars, '\\', FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001331}
1332
1333/*
1334 * Same as vim_strsave_escaped(), but when "bsl" is TRUE also escape
1335 * characters where rem_backslash() would remove the backslash.
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001336 * Escape the characters with "cc".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001337 */
1338 char_u *
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001339vim_strsave_escaped_ext(string, esc_chars, cc, bsl)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001340 char_u *string;
1341 char_u *esc_chars;
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001342 int cc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001343 int bsl;
1344{
1345 char_u *p;
1346 char_u *p2;
1347 char_u *escaped_string;
1348 unsigned length;
1349#ifdef FEAT_MBYTE
1350 int l;
1351#endif
1352
1353 /*
1354 * First count the number of backslashes required.
1355 * Then allocate the memory and insert them.
1356 */
1357 length = 1; /* count the trailing NUL */
1358 for (p = string; *p; p++)
1359 {
1360#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001361 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001362 {
1363 length += l; /* count a multibyte char */
1364 p += l - 1;
1365 continue;
1366 }
1367#endif
1368 if (vim_strchr(esc_chars, *p) != NULL || (bsl && rem_backslash(p)))
1369 ++length; /* count a backslash */
1370 ++length; /* count an ordinary char */
1371 }
1372 escaped_string = alloc(length);
1373 if (escaped_string != NULL)
1374 {
1375 p2 = escaped_string;
1376 for (p = string; *p; p++)
1377 {
1378#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001379 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001380 {
1381 mch_memmove(p2, p, (size_t)l);
1382 p2 += l;
1383 p += l - 1; /* skip multibyte char */
1384 continue;
1385 }
1386#endif
1387 if (vim_strchr(esc_chars, *p) != NULL || (bsl && rem_backslash(p)))
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001388 *p2++ = cc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001389 *p2++ = *p;
1390 }
1391 *p2 = NUL;
1392 }
1393 return escaped_string;
1394}
1395
Bram Moolenaar7693ec62008-07-24 18:29:37 +00001396/*
1397 * Return TRUE when 'shell' has "csh" in the tail.
1398 */
1399 int
1400csh_like_shell()
1401{
1402 return (strstr((char *)gettail(p_sh), "csh") != NULL);
1403}
Bram Moolenaar7693ec62008-07-24 18:29:37 +00001404
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001405/*
1406 * Escape "string" for use as a shell argument with system().
Bram Moolenaar21160b92009-11-11 15:56:10 +00001407 * This uses single quotes, except when we know we need to use double quotes
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001408 * (MS-DOS and MS-Windows without 'shellslash' set).
Bram Moolenaarffd66c42008-07-16 20:43:37 +00001409 * Escape a newline, depending on the 'shell' option.
1410 * When "do_special" is TRUE also replace "!", "%", "#" and things starting
1411 * with "<" like "<cfile>".
Bram Moolenaar26df0922014-02-23 23:39:13 +01001412 * When "do_newline" is FALSE do not escape newline unless it is csh shell.
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001413 * Returns the result in allocated memory, NULL if we have run out.
1414 */
1415 char_u *
Bram Moolenaar26df0922014-02-23 23:39:13 +01001416vim_strsave_shellescape(string, do_special, do_newline)
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001417 char_u *string;
Bram Moolenaar05bb9532008-07-04 09:44:11 +00001418 int do_special;
Bram Moolenaar26df0922014-02-23 23:39:13 +01001419 int do_newline;
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001420{
1421 unsigned length;
1422 char_u *p;
1423 char_u *d;
1424 char_u *escaped_string;
Bram Moolenaar05bb9532008-07-04 09:44:11 +00001425 int l;
Bram Moolenaarffd66c42008-07-16 20:43:37 +00001426 int csh_like;
1427
1428 /* Only csh and similar shells expand '!' within single quotes. For sh and
1429 * the like we must not put a backslash before it, it will be taken
1430 * literally. If do_special is set the '!' will be escaped twice.
1431 * Csh also needs to have "\n" escaped twice when do_special is set. */
Bram Moolenaar7693ec62008-07-24 18:29:37 +00001432 csh_like = csh_like_shell();
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001433
1434 /* First count the number of extra bytes required. */
Bram Moolenaar77f66d62007-02-20 02:16:18 +00001435 length = (unsigned)STRLEN(string) + 3; /* two quotes and a trailing NUL */
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001436 for (p = string; *p != NUL; mb_ptr_adv(p))
1437 {
1438# if defined(WIN32) || defined(WIN16) || defined(DOS)
1439 if (!p_ssl)
1440 {
1441 if (*p == '"')
1442 ++length; /* " -> "" */
1443 }
1444 else
1445# endif
1446 if (*p == '\'')
1447 length += 3; /* ' => '\'' */
Bram Moolenaar26df0922014-02-23 23:39:13 +01001448 if ((*p == '\n' && (csh_like || do_newline))
1449 || (*p == '!' && (csh_like || do_special)))
Bram Moolenaarffd66c42008-07-16 20:43:37 +00001450 {
1451 ++length; /* insert backslash */
1452 if (csh_like && do_special)
1453 ++length; /* insert backslash */
1454 }
Bram Moolenaar05bb9532008-07-04 09:44:11 +00001455 if (do_special && find_cmdline_var(p, &l) >= 0)
1456 {
1457 ++length; /* insert backslash */
1458 p += l - 1;
1459 }
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001460 }
1461
1462 /* Allocate memory for the result and fill it. */
1463 escaped_string = alloc(length);
1464 if (escaped_string != NULL)
1465 {
1466 d = escaped_string;
1467
1468 /* add opening quote */
1469# if defined(WIN32) || defined(WIN16) || defined(DOS)
1470 if (!p_ssl)
1471 *d++ = '"';
1472 else
1473# endif
1474 *d++ = '\'';
1475
1476 for (p = string; *p != NUL; )
1477 {
1478# if defined(WIN32) || defined(WIN16) || defined(DOS)
1479 if (!p_ssl)
1480 {
1481 if (*p == '"')
1482 {
1483 *d++ = '"';
1484 *d++ = '"';
1485 ++p;
1486 continue;
1487 }
1488 }
1489 else
1490# endif
1491 if (*p == '\'')
1492 {
Bram Moolenaar05bb9532008-07-04 09:44:11 +00001493 *d++ = '\'';
1494 *d++ = '\\';
1495 *d++ = '\'';
1496 *d++ = '\'';
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001497 ++p;
1498 continue;
1499 }
Bram Moolenaar26df0922014-02-23 23:39:13 +01001500 if ((*p == '\n' && (csh_like || do_newline))
1501 || (*p == '!' && (csh_like || do_special)))
Bram Moolenaarffd66c42008-07-16 20:43:37 +00001502 {
1503 *d++ = '\\';
1504 if (csh_like && do_special)
1505 *d++ = '\\';
1506 *d++ = *p++;
1507 continue;
1508 }
Bram Moolenaar05bb9532008-07-04 09:44:11 +00001509 if (do_special && find_cmdline_var(p, &l) >= 0)
1510 {
1511 *d++ = '\\'; /* insert backslash */
1512 while (--l >= 0) /* copy the var */
1513 *d++ = *p++;
Bram Moolenaar099d01d2009-11-25 16:14:45 +00001514 continue;
Bram Moolenaar05bb9532008-07-04 09:44:11 +00001515 }
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001516
1517 MB_COPY_CHAR(p, d);
1518 }
1519
1520 /* add terminating quote and finish with a NUL */
1521# if defined(WIN32) || defined(WIN16) || defined(DOS)
1522 if (!p_ssl)
1523 *d++ = '"';
1524 else
1525# endif
1526 *d++ = '\'';
1527 *d = NUL;
1528 }
1529
1530 return escaped_string;
1531}
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001532
Bram Moolenaar071d4272004-06-13 20:20:40 +00001533/*
1534 * Like vim_strsave(), but make all characters uppercase.
1535 * This uses ASCII lower-to-upper case translation, language independent.
1536 */
1537 char_u *
1538vim_strsave_up(string)
1539 char_u *string;
1540{
1541 char_u *p1;
1542
1543 p1 = vim_strsave(string);
1544 vim_strup(p1);
1545 return p1;
1546}
1547
1548/*
1549 * Like vim_strnsave(), but make all characters uppercase.
1550 * This uses ASCII lower-to-upper case translation, language independent.
1551 */
1552 char_u *
1553vim_strnsave_up(string, len)
1554 char_u *string;
1555 int len;
1556{
1557 char_u *p1;
1558
1559 p1 = vim_strnsave(string, len);
1560 vim_strup(p1);
1561 return p1;
1562}
1563
1564/*
1565 * ASCII lower-to-upper case translation, language independent.
1566 */
1567 void
1568vim_strup(p)
1569 char_u *p;
1570{
1571 char_u *p2;
1572 int c;
1573
1574 if (p != NULL)
1575 {
1576 p2 = p;
1577 while ((c = *p2) != NUL)
1578#ifdef EBCDIC
1579 *p2++ = isalpha(c) ? toupper(c) : c;
1580#else
1581 *p2++ = (c < 'a' || c > 'z') ? c : (c - 0x20);
1582#endif
1583 }
1584}
1585
Bram Moolenaarc4956c82006-03-12 21:58:43 +00001586#if defined(FEAT_EVAL) || defined(FEAT_SPELL) || defined(PROTO)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001587/*
1588 * Make string "s" all upper-case and return it in allocated memory.
1589 * Handles multi-byte characters as well as possible.
1590 * Returns NULL when out of memory.
1591 */
1592 char_u *
1593strup_save(orig)
1594 char_u *orig;
1595{
1596 char_u *p;
1597 char_u *res;
1598
1599 res = p = vim_strsave(orig);
1600
1601 if (res != NULL)
1602 while (*p != NUL)
1603 {
1604# ifdef FEAT_MBYTE
1605 int l;
1606
1607 if (enc_utf8)
1608 {
1609 int c, uc;
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001610 int newl;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001611 char_u *s;
1612
1613 c = utf_ptr2char(p);
1614 uc = utf_toupper(c);
1615
1616 /* Reallocate string when byte count changes. This is rare,
1617 * thus it's OK to do another malloc()/free(). */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001618 l = utf_ptr2len(p);
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001619 newl = utf_char2len(uc);
1620 if (newl != l)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001621 {
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001622 s = alloc((unsigned)STRLEN(res) + 1 + newl - l);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001623 if (s == NULL)
1624 break;
1625 mch_memmove(s, res, p - res);
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001626 STRCPY(s + (p - res) + newl, p + l);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001627 p = s + (p - res);
1628 vim_free(res);
1629 res = s;
1630 }
1631
1632 utf_char2bytes(uc, p);
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001633 p += newl;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001634 }
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001635 else if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001636 p += l; /* skip multi-byte character */
1637 else
1638# endif
1639 {
1640 *p = TOUPPER_LOC(*p); /* note that toupper() can be a macro */
1641 p++;
1642 }
1643 }
1644
1645 return res;
1646}
1647#endif
1648
Bram Moolenaar071d4272004-06-13 20:20:40 +00001649/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001650 * delete spaces at the end of a string
1651 */
1652 void
1653del_trailing_spaces(ptr)
1654 char_u *ptr;
1655{
1656 char_u *q;
1657
1658 q = ptr + STRLEN(ptr);
1659 while (--q > ptr && vim_iswhite(q[0]) && q[-1] != '\\' && q[-1] != Ctrl_V)
1660 *q = NUL;
1661}
1662
1663/*
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001664 * Like strncpy(), but always terminate the result with one NUL.
Bram Moolenaard042c562005-06-30 22:04:15 +00001665 * "to" must be "len + 1" long!
Bram Moolenaar071d4272004-06-13 20:20:40 +00001666 */
1667 void
1668vim_strncpy(to, from, len)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001669 char_u *to;
1670 char_u *from;
Bram Moolenaarbbebc852005-07-18 21:47:53 +00001671 size_t len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001672{
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001673 STRNCPY(to, from, len);
1674 to[len] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001675}
1676
1677/*
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02001678 * Like strcat(), but make sure the result fits in "tosize" bytes and is
1679 * always NUL terminated.
1680 */
1681 void
1682vim_strcat(to, from, tosize)
1683 char_u *to;
1684 char_u *from;
1685 size_t tosize;
1686{
1687 size_t tolen = STRLEN(to);
1688 size_t fromlen = STRLEN(from);
1689
1690 if (tolen + fromlen + 1 > tosize)
1691 {
1692 mch_memmove(to + tolen, from, tosize - tolen - 1);
1693 to[tosize - 1] = NUL;
1694 }
1695 else
1696 STRCPY(to + tolen, from);
1697}
1698
1699/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001700 * Isolate one part of a string option where parts are separated with
1701 * "sep_chars".
Bram Moolenaar83bab712005-08-01 21:58:57 +00001702 * The part is copied into "buf[maxlen]".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001703 * "*option" is advanced to the next part.
1704 * The length is returned.
1705 */
1706 int
1707copy_option_part(option, buf, maxlen, sep_chars)
1708 char_u **option;
1709 char_u *buf;
1710 int maxlen;
1711 char *sep_chars;
1712{
1713 int len = 0;
1714 char_u *p = *option;
1715
1716 /* skip '.' at start of option part, for 'suffixes' */
1717 if (*p == '.')
1718 buf[len++] = *p++;
1719 while (*p != NUL && vim_strchr((char_u *)sep_chars, *p) == NULL)
1720 {
1721 /*
1722 * Skip backslash before a separator character and space.
1723 */
1724 if (p[0] == '\\' && vim_strchr((char_u *)sep_chars, p[1]) != NULL)
1725 ++p;
1726 if (len < maxlen - 1)
1727 buf[len++] = *p;
1728 ++p;
1729 }
1730 buf[len] = NUL;
1731
1732 if (*p != NUL && *p != ',') /* skip non-standard separator */
1733 ++p;
1734 p = skip_to_option_part(p); /* p points to next file name */
1735
1736 *option = p;
1737 return len;
1738}
1739
1740/*
Bram Moolenaar4770d092006-01-12 23:22:24 +00001741 * Replacement for free() that ignores NULL pointers.
1742 * Also skip free() when exiting for sure, this helps when we caught a deadly
1743 * signal that was caused by a crash in free().
Bram Moolenaar071d4272004-06-13 20:20:40 +00001744 */
1745 void
1746vim_free(x)
1747 void *x;
1748{
Bram Moolenaar4770d092006-01-12 23:22:24 +00001749 if (x != NULL && !really_exiting)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001750 {
1751#ifdef MEM_PROFILE
1752 mem_pre_free(&x);
1753#endif
1754 free(x);
1755 }
1756}
1757
1758#ifndef HAVE_MEMSET
1759 void *
1760vim_memset(ptr, c, size)
1761 void *ptr;
1762 int c;
1763 size_t size;
1764{
1765 char *p = ptr;
1766
1767 while (size-- > 0)
1768 *p++ = c;
1769 return ptr;
1770}
1771#endif
1772
1773#ifdef VIM_MEMCMP
1774/*
1775 * Return zero when "b1" and "b2" are the same for "len" bytes.
1776 * Return non-zero otherwise.
1777 */
1778 int
1779vim_memcmp(b1, b2, len)
1780 void *b1;
1781 void *b2;
1782 size_t len;
1783{
1784 char_u *p1 = (char_u *)b1, *p2 = (char_u *)b2;
1785
1786 for ( ; len > 0; --len)
1787 {
1788 if (*p1 != *p2)
1789 return 1;
1790 ++p1;
1791 ++p2;
1792 }
1793 return 0;
1794}
1795#endif
1796
1797#ifdef VIM_MEMMOVE
1798/*
1799 * Version of memmove() that handles overlapping source and destination.
1800 * For systems that don't have a function that is guaranteed to do that (SYSV).
1801 */
1802 void
1803mch_memmove(dst_arg, src_arg, len)
1804 void *src_arg, *dst_arg;
1805 size_t len;
1806{
1807 /*
1808 * A void doesn't have a size, we use char pointers.
1809 */
1810 char *dst = dst_arg, *src = src_arg;
1811
1812 /* overlap, copy backwards */
1813 if (dst > src && dst < src + len)
1814 {
1815 src += len;
1816 dst += len;
1817 while (len-- > 0)
1818 *--dst = *--src;
1819 }
1820 else /* copy forwards */
1821 while (len-- > 0)
1822 *dst++ = *src++;
1823}
1824#endif
1825
1826#if (!defined(HAVE_STRCASECMP) && !defined(HAVE_STRICMP)) || defined(PROTO)
1827/*
1828 * Compare two strings, ignoring case, using current locale.
1829 * Doesn't work for multi-byte characters.
1830 * return 0 for match, < 0 for smaller, > 0 for bigger
1831 */
1832 int
1833vim_stricmp(s1, s2)
1834 char *s1;
1835 char *s2;
1836{
1837 int i;
1838
1839 for (;;)
1840 {
1841 i = (int)TOLOWER_LOC(*s1) - (int)TOLOWER_LOC(*s2);
1842 if (i != 0)
1843 return i; /* this character different */
1844 if (*s1 == NUL)
1845 break; /* strings match until NUL */
1846 ++s1;
1847 ++s2;
1848 }
1849 return 0; /* strings match */
1850}
1851#endif
1852
1853#if (!defined(HAVE_STRNCASECMP) && !defined(HAVE_STRNICMP)) || defined(PROTO)
1854/*
1855 * Compare two strings, for length "len", ignoring case, using current locale.
1856 * Doesn't work for multi-byte characters.
1857 * return 0 for match, < 0 for smaller, > 0 for bigger
1858 */
1859 int
1860vim_strnicmp(s1, s2, len)
1861 char *s1;
1862 char *s2;
1863 size_t len;
1864{
1865 int i;
1866
1867 while (len > 0)
1868 {
1869 i = (int)TOLOWER_LOC(*s1) - (int)TOLOWER_LOC(*s2);
1870 if (i != 0)
1871 return i; /* this character different */
1872 if (*s1 == NUL)
1873 break; /* strings match until NUL */
1874 ++s1;
1875 ++s2;
1876 --len;
1877 }
1878 return 0; /* strings match */
1879}
1880#endif
1881
Bram Moolenaar071d4272004-06-13 20:20:40 +00001882/*
1883 * Version of strchr() and strrchr() that handle unsigned char strings
Bram Moolenaar05159a02005-02-26 23:04:13 +00001884 * with characters from 128 to 255 correctly. It also doesn't return a
1885 * pointer to the NUL at the end of the string.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001886 */
1887 char_u *
1888vim_strchr(string, c)
1889 char_u *string;
1890 int c;
1891{
1892 char_u *p;
1893 int b;
1894
1895 p = string;
1896#ifdef FEAT_MBYTE
1897 if (enc_utf8 && c >= 0x80)
1898 {
1899 while (*p != NUL)
1900 {
Bram Moolenaard82a2a92015-04-21 14:02:35 +02001901 int l = (*mb_ptr2len)(p);
1902
1903 /* Avoid matching an illegal byte here. */
1904 if (utf_ptr2char(p) == c && l > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001905 return p;
Bram Moolenaard82a2a92015-04-21 14:02:35 +02001906 p += l;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001907 }
1908 return NULL;
1909 }
1910 if (enc_dbcs != 0 && c > 255)
1911 {
1912 int n2 = c & 0xff;
1913
1914 c = ((unsigned)c >> 8) & 0xff;
1915 while ((b = *p) != NUL)
1916 {
1917 if (b == c && p[1] == n2)
1918 return p;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001919 p += (*mb_ptr2len)(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001920 }
1921 return NULL;
1922 }
1923 if (has_mbyte)
1924 {
1925 while ((b = *p) != NUL)
1926 {
1927 if (b == c)
1928 return p;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001929 p += (*mb_ptr2len)(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001930 }
1931 return NULL;
1932 }
1933#endif
1934 while ((b = *p) != NUL)
1935 {
1936 if (b == c)
1937 return p;
1938 ++p;
1939 }
1940 return NULL;
1941}
1942
1943/*
Bram Moolenaar05159a02005-02-26 23:04:13 +00001944 * Version of strchr() that only works for bytes and handles unsigned char
1945 * strings with characters above 128 correctly. It also doesn't return a
1946 * pointer to the NUL at the end of the string.
1947 */
1948 char_u *
1949vim_strbyte(string, c)
1950 char_u *string;
1951 int c;
1952{
1953 char_u *p = string;
1954
1955 while (*p != NUL)
1956 {
1957 if (*p == c)
1958 return p;
1959 ++p;
1960 }
1961 return NULL;
1962}
1963
1964/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001965 * Search for last occurrence of "c" in "string".
Bram Moolenaarac6e65f2005-08-29 22:25:38 +00001966 * Return NULL if not found.
Bram Moolenaar05159a02005-02-26 23:04:13 +00001967 * Does not handle multi-byte char for "c"!
Bram Moolenaar071d4272004-06-13 20:20:40 +00001968 */
1969 char_u *
1970vim_strrchr(string, c)
1971 char_u *string;
1972 int c;
1973{
1974 char_u *retval = NULL;
Bram Moolenaar05159a02005-02-26 23:04:13 +00001975 char_u *p = string;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001976
Bram Moolenaar05159a02005-02-26 23:04:13 +00001977 while (*p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001978 {
Bram Moolenaar05159a02005-02-26 23:04:13 +00001979 if (*p == c)
1980 retval = p;
1981 mb_ptr_adv(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001982 }
1983 return retval;
1984}
1985
1986/*
1987 * Vim's version of strpbrk(), in case it's missing.
1988 * Don't generate a prototype for this, causes problems when it's not used.
1989 */
1990#ifndef PROTO
1991# ifndef HAVE_STRPBRK
1992# ifdef vim_strpbrk
1993# undef vim_strpbrk
1994# endif
1995 char_u *
1996vim_strpbrk(s, charset)
1997 char_u *s;
1998 char_u *charset;
1999{
2000 while (*s)
2001 {
2002 if (vim_strchr(charset, *s) != NULL)
2003 return s;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002004 mb_ptr_adv(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002005 }
2006 return NULL;
2007}
2008# endif
2009#endif
2010
2011/*
2012 * Vim has its own isspace() function, because on some machines isspace()
2013 * can't handle characters above 128.
2014 */
2015 int
2016vim_isspace(x)
2017 int x;
2018{
2019 return ((x >= 9 && x <= 13) || x == ' ');
2020}
2021
2022/************************************************************************
Bram Moolenaar383f9bc2005-01-19 22:18:32 +00002023 * Functions for handling growing arrays.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002024 */
2025
2026/*
2027 * Clear an allocated growing array.
2028 */
2029 void
2030ga_clear(gap)
2031 garray_T *gap;
2032{
2033 vim_free(gap->ga_data);
2034 ga_init(gap);
2035}
2036
2037/*
2038 * Clear a growing array that contains a list of strings.
2039 */
2040 void
2041ga_clear_strings(gap)
2042 garray_T *gap;
2043{
2044 int i;
2045
2046 for (i = 0; i < gap->ga_len; ++i)
2047 vim_free(((char_u **)(gap->ga_data))[i]);
2048 ga_clear(gap);
2049}
2050
2051/*
2052 * Initialize a growing array. Don't forget to set ga_itemsize and
2053 * ga_growsize! Or use ga_init2().
2054 */
2055 void
2056ga_init(gap)
2057 garray_T *gap;
2058{
2059 gap->ga_data = NULL;
Bram Moolenaar86b68352004-12-27 21:59:20 +00002060 gap->ga_maxlen = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002061 gap->ga_len = 0;
2062}
2063
2064 void
2065ga_init2(gap, itemsize, growsize)
2066 garray_T *gap;
2067 int itemsize;
2068 int growsize;
2069{
2070 ga_init(gap);
2071 gap->ga_itemsize = itemsize;
2072 gap->ga_growsize = growsize;
2073}
2074
2075/*
2076 * Make room in growing array "gap" for at least "n" items.
2077 * Return FAIL for failure, OK otherwise.
2078 */
2079 int
2080ga_grow(gap, n)
2081 garray_T *gap;
2082 int n;
2083{
Bram Moolenaar7282bc32012-02-22 18:12:32 +01002084 size_t old_len;
2085 size_t new_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002086 char_u *pp;
2087
Bram Moolenaar86b68352004-12-27 21:59:20 +00002088 if (gap->ga_maxlen - gap->ga_len < n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002089 {
2090 if (n < gap->ga_growsize)
2091 n = gap->ga_growsize;
Bram Moolenaar7282bc32012-02-22 18:12:32 +01002092 new_len = gap->ga_itemsize * (gap->ga_len + n);
2093 pp = (gap->ga_data == NULL)
Bram Moolenaar4336cdf2012-02-29 13:58:47 +01002094 ? alloc((unsigned)new_len) : vim_realloc(gap->ga_data, new_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002095 if (pp == NULL)
2096 return FAIL;
Bram Moolenaar7282bc32012-02-22 18:12:32 +01002097 old_len = gap->ga_itemsize * gap->ga_maxlen;
2098 vim_memset(pp + old_len, 0, new_len - old_len);
Bram Moolenaar86b68352004-12-27 21:59:20 +00002099 gap->ga_maxlen = gap->ga_len + n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002100 gap->ga_data = pp;
2101 }
2102 return OK;
2103}
2104
2105/*
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02002106 * For a growing array that contains a list of strings: concatenate all the
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02002107 * strings with a separating "sep".
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02002108 * Returns NULL when out of memory.
2109 */
2110 char_u *
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02002111ga_concat_strings(gap, sep)
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02002112 garray_T *gap;
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02002113 char *sep;
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02002114{
2115 int i;
2116 int len = 0;
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02002117 int sep_len = (int)STRLEN(sep);
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02002118 char_u *s;
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02002119 char_u *p;
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02002120
2121 for (i = 0; i < gap->ga_len; ++i)
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02002122 len += (int)STRLEN(((char_u **)(gap->ga_data))[i]) + sep_len;
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02002123
2124 s = alloc(len + 1);
2125 if (s != NULL)
2126 {
2127 *s = NUL;
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02002128 p = s;
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02002129 for (i = 0; i < gap->ga_len; ++i)
2130 {
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02002131 if (p != s)
2132 {
2133 STRCPY(p, sep);
2134 p += sep_len;
2135 }
2136 STRCPY(p, ((char_u **)(gap->ga_data))[i]);
2137 p += STRLEN(p);
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02002138 }
2139 }
2140 return s;
2141}
2142
Bram Moolenaarb20e3342016-01-18 23:29:01 +01002143#if defined(FEAT_VIMINFO) || defined(PROTO)
2144/*
2145 * Make a copy of string "p" and add it to "gap".
2146 * When out of memory nothing changes.
2147 */
2148 void
2149ga_add_string(garray_T *gap, char_u *p)
2150{
2151 char_u *cp = vim_strsave(p);
2152
2153 if (cp != NULL)
2154 {
2155 if (ga_grow(gap, 1) == OK)
2156 ((char_u **)(gap->ga_data))[gap->ga_len++] = cp;
2157 else
2158 vim_free(cp);
2159 }
2160}
2161#endif
2162
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02002163/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002164 * Concatenate a string to a growarray which contains characters.
Bram Moolenaar43345542015-11-29 17:35:35 +01002165 * When "s" is NULL does not do anything.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002166 * Note: Does NOT copy the NUL at the end!
2167 */
2168 void
2169ga_concat(gap, s)
2170 garray_T *gap;
2171 char_u *s;
2172{
Bram Moolenaar43345542015-11-29 17:35:35 +01002173 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002174
Bram Moolenaar43345542015-11-29 17:35:35 +01002175 if (s == NULL)
2176 return;
2177 len = (int)STRLEN(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002178 if (ga_grow(gap, len) == OK)
2179 {
2180 mch_memmove((char *)gap->ga_data + gap->ga_len, s, (size_t)len);
2181 gap->ga_len += len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002182 }
2183}
2184
2185/*
2186 * Append one byte to a growarray which contains bytes.
2187 */
2188 void
2189ga_append(gap, c)
2190 garray_T *gap;
2191 int c;
2192{
2193 if (ga_grow(gap, 1) == OK)
2194 {
2195 *((char *)gap->ga_data + gap->ga_len) = c;
2196 ++gap->ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002197 }
2198}
2199
Bram Moolenaar597a4222014-06-25 14:39:50 +02002200#if (defined(UNIX) && !defined(USE_SYSTEM)) || defined(WIN3264) \
2201 || defined(PROTO)
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02002202/*
2203 * Append the text in "gap" below the cursor line and clear "gap".
2204 */
2205 void
2206append_ga_line(gap)
2207 garray_T *gap;
2208{
2209 /* Remove trailing CR. */
2210 if (gap->ga_len > 0
2211 && !curbuf->b_p_bin
2212 && ((char_u *)gap->ga_data)[gap->ga_len - 1] == CAR)
2213 --gap->ga_len;
2214 ga_append(gap, NUL);
2215 ml_append(curwin->w_cursor.lnum++, gap->ga_data, 0, FALSE);
2216 gap->ga_len = 0;
2217}
2218#endif
2219
Bram Moolenaar071d4272004-06-13 20:20:40 +00002220/************************************************************************
2221 * functions that use lookup tables for various things, generally to do with
2222 * special key codes.
2223 */
2224
2225/*
2226 * Some useful tables.
2227 */
2228
2229static struct modmasktable
2230{
2231 short mod_mask; /* Bit-mask for particular key modifier */
2232 short mod_flag; /* Bit(s) for particular key modifier */
2233 char_u name; /* Single letter name of modifier */
2234} mod_mask_table[] =
2235{
2236 {MOD_MASK_ALT, MOD_MASK_ALT, (char_u)'M'},
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002237 {MOD_MASK_META, MOD_MASK_META, (char_u)'T'},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002238 {MOD_MASK_CTRL, MOD_MASK_CTRL, (char_u)'C'},
2239 {MOD_MASK_SHIFT, MOD_MASK_SHIFT, (char_u)'S'},
2240 {MOD_MASK_MULTI_CLICK, MOD_MASK_2CLICK, (char_u)'2'},
2241 {MOD_MASK_MULTI_CLICK, MOD_MASK_3CLICK, (char_u)'3'},
2242 {MOD_MASK_MULTI_CLICK, MOD_MASK_4CLICK, (char_u)'4'},
2243#ifdef MACOS
2244 {MOD_MASK_CMD, MOD_MASK_CMD, (char_u)'D'},
2245#endif
2246 /* 'A' must be the last one */
2247 {MOD_MASK_ALT, MOD_MASK_ALT, (char_u)'A'},
2248 {0, 0, NUL}
2249};
2250
2251/*
2252 * Shifted key terminal codes and their unshifted equivalent.
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00002253 * Don't add mouse codes here, they are handled separately!
Bram Moolenaar071d4272004-06-13 20:20:40 +00002254 */
2255#define MOD_KEYS_ENTRY_SIZE 5
2256
2257static char_u modifier_keys_table[] =
2258{
2259/* mod mask with modifier without modifier */
2260 MOD_MASK_SHIFT, '&', '9', '@', '1', /* begin */
2261 MOD_MASK_SHIFT, '&', '0', '@', '2', /* cancel */
2262 MOD_MASK_SHIFT, '*', '1', '@', '4', /* command */
2263 MOD_MASK_SHIFT, '*', '2', '@', '5', /* copy */
2264 MOD_MASK_SHIFT, '*', '3', '@', '6', /* create */
2265 MOD_MASK_SHIFT, '*', '4', 'k', 'D', /* delete char */
2266 MOD_MASK_SHIFT, '*', '5', 'k', 'L', /* delete line */
2267 MOD_MASK_SHIFT, '*', '7', '@', '7', /* end */
2268 MOD_MASK_CTRL, KS_EXTRA, (int)KE_C_END, '@', '7', /* end */
2269 MOD_MASK_SHIFT, '*', '9', '@', '9', /* exit */
2270 MOD_MASK_SHIFT, '*', '0', '@', '0', /* find */
2271 MOD_MASK_SHIFT, '#', '1', '%', '1', /* help */
2272 MOD_MASK_SHIFT, '#', '2', 'k', 'h', /* home */
2273 MOD_MASK_CTRL, KS_EXTRA, (int)KE_C_HOME, 'k', 'h', /* home */
2274 MOD_MASK_SHIFT, '#', '3', 'k', 'I', /* insert */
2275 MOD_MASK_SHIFT, '#', '4', 'k', 'l', /* left arrow */
2276 MOD_MASK_CTRL, KS_EXTRA, (int)KE_C_LEFT, 'k', 'l', /* left arrow */
2277 MOD_MASK_SHIFT, '%', 'a', '%', '3', /* message */
2278 MOD_MASK_SHIFT, '%', 'b', '%', '4', /* move */
2279 MOD_MASK_SHIFT, '%', 'c', '%', '5', /* next */
2280 MOD_MASK_SHIFT, '%', 'd', '%', '7', /* options */
2281 MOD_MASK_SHIFT, '%', 'e', '%', '8', /* previous */
2282 MOD_MASK_SHIFT, '%', 'f', '%', '9', /* print */
2283 MOD_MASK_SHIFT, '%', 'g', '%', '0', /* redo */
2284 MOD_MASK_SHIFT, '%', 'h', '&', '3', /* replace */
2285 MOD_MASK_SHIFT, '%', 'i', 'k', 'r', /* right arr. */
2286 MOD_MASK_CTRL, KS_EXTRA, (int)KE_C_RIGHT, 'k', 'r', /* right arr. */
2287 MOD_MASK_SHIFT, '%', 'j', '&', '5', /* resume */
2288 MOD_MASK_SHIFT, '!', '1', '&', '6', /* save */
2289 MOD_MASK_SHIFT, '!', '2', '&', '7', /* suspend */
2290 MOD_MASK_SHIFT, '!', '3', '&', '8', /* undo */
2291 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_UP, 'k', 'u', /* up arrow */
2292 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_DOWN, 'k', 'd', /* down arrow */
2293
2294 /* vt100 F1 */
2295 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_XF1, KS_EXTRA, (int)KE_XF1,
2296 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_XF2, KS_EXTRA, (int)KE_XF2,
2297 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_XF3, KS_EXTRA, (int)KE_XF3,
2298 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_XF4, KS_EXTRA, (int)KE_XF4,
2299
2300 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F1, 'k', '1', /* F1 */
2301 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F2, 'k', '2',
2302 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F3, 'k', '3',
2303 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F4, 'k', '4',
2304 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F5, 'k', '5',
2305 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F6, 'k', '6',
2306 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F7, 'k', '7',
2307 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F8, 'k', '8',
2308 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F9, 'k', '9',
2309 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F10, 'k', ';', /* F10 */
2310
2311 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F11, 'F', '1',
2312 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F12, 'F', '2',
2313 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F13, 'F', '3',
2314 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F14, 'F', '4',
2315 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F15, 'F', '5',
2316 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F16, 'F', '6',
2317 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F17, 'F', '7',
2318 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F18, 'F', '8',
2319 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F19, 'F', '9',
2320 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F20, 'F', 'A',
2321
2322 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F21, 'F', 'B',
2323 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F22, 'F', 'C',
2324 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F23, 'F', 'D',
2325 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F24, 'F', 'E',
2326 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F25, 'F', 'F',
2327 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F26, 'F', 'G',
2328 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F27, 'F', 'H',
2329 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F28, 'F', 'I',
2330 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F29, 'F', 'J',
2331 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F30, 'F', 'K',
2332
2333 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F31, 'F', 'L',
2334 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F32, 'F', 'M',
2335 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F33, 'F', 'N',
2336 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F34, 'F', 'O',
2337 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F35, 'F', 'P',
2338 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F36, 'F', 'Q',
2339 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F37, 'F', 'R',
2340
2341 /* TAB pseudo code*/
2342 MOD_MASK_SHIFT, 'k', 'B', KS_EXTRA, (int)KE_TAB,
2343
2344 NUL
2345};
2346
2347static struct key_name_entry
2348{
2349 int key; /* Special key code or ascii value */
2350 char_u *name; /* Name of key */
2351} key_names_table[] =
2352{
2353 {' ', (char_u *)"Space"},
2354 {TAB, (char_u *)"Tab"},
2355 {K_TAB, (char_u *)"Tab"},
2356 {NL, (char_u *)"NL"},
2357 {NL, (char_u *)"NewLine"}, /* Alternative name */
2358 {NL, (char_u *)"LineFeed"}, /* Alternative name */
2359 {NL, (char_u *)"LF"}, /* Alternative name */
2360 {CAR, (char_u *)"CR"},
2361 {CAR, (char_u *)"Return"}, /* Alternative name */
2362 {CAR, (char_u *)"Enter"}, /* Alternative name */
2363 {K_BS, (char_u *)"BS"},
2364 {K_BS, (char_u *)"BackSpace"}, /* Alternative name */
2365 {ESC, (char_u *)"Esc"},
2366 {CSI, (char_u *)"CSI"},
2367 {K_CSI, (char_u *)"xCSI"},
2368 {'|', (char_u *)"Bar"},
2369 {'\\', (char_u *)"Bslash"},
2370 {K_DEL, (char_u *)"Del"},
2371 {K_DEL, (char_u *)"Delete"}, /* Alternative name */
2372 {K_KDEL, (char_u *)"kDel"},
2373 {K_UP, (char_u *)"Up"},
2374 {K_DOWN, (char_u *)"Down"},
2375 {K_LEFT, (char_u *)"Left"},
2376 {K_RIGHT, (char_u *)"Right"},
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002377 {K_XUP, (char_u *)"xUp"},
2378 {K_XDOWN, (char_u *)"xDown"},
2379 {K_XLEFT, (char_u *)"xLeft"},
2380 {K_XRIGHT, (char_u *)"xRight"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002381
2382 {K_F1, (char_u *)"F1"},
2383 {K_F2, (char_u *)"F2"},
2384 {K_F3, (char_u *)"F3"},
2385 {K_F4, (char_u *)"F4"},
2386 {K_F5, (char_u *)"F5"},
2387 {K_F6, (char_u *)"F6"},
2388 {K_F7, (char_u *)"F7"},
2389 {K_F8, (char_u *)"F8"},
2390 {K_F9, (char_u *)"F9"},
2391 {K_F10, (char_u *)"F10"},
2392
2393 {K_F11, (char_u *)"F11"},
2394 {K_F12, (char_u *)"F12"},
2395 {K_F13, (char_u *)"F13"},
2396 {K_F14, (char_u *)"F14"},
2397 {K_F15, (char_u *)"F15"},
2398 {K_F16, (char_u *)"F16"},
2399 {K_F17, (char_u *)"F17"},
2400 {K_F18, (char_u *)"F18"},
2401 {K_F19, (char_u *)"F19"},
2402 {K_F20, (char_u *)"F20"},
2403
2404 {K_F21, (char_u *)"F21"},
2405 {K_F22, (char_u *)"F22"},
2406 {K_F23, (char_u *)"F23"},
2407 {K_F24, (char_u *)"F24"},
2408 {K_F25, (char_u *)"F25"},
2409 {K_F26, (char_u *)"F26"},
2410 {K_F27, (char_u *)"F27"},
2411 {K_F28, (char_u *)"F28"},
2412 {K_F29, (char_u *)"F29"},
2413 {K_F30, (char_u *)"F30"},
2414
2415 {K_F31, (char_u *)"F31"},
2416 {K_F32, (char_u *)"F32"},
2417 {K_F33, (char_u *)"F33"},
2418 {K_F34, (char_u *)"F34"},
2419 {K_F35, (char_u *)"F35"},
2420 {K_F36, (char_u *)"F36"},
2421 {K_F37, (char_u *)"F37"},
2422
2423 {K_XF1, (char_u *)"xF1"},
2424 {K_XF2, (char_u *)"xF2"},
2425 {K_XF3, (char_u *)"xF3"},
2426 {K_XF4, (char_u *)"xF4"},
2427
2428 {K_HELP, (char_u *)"Help"},
2429 {K_UNDO, (char_u *)"Undo"},
2430 {K_INS, (char_u *)"Insert"},
2431 {K_INS, (char_u *)"Ins"}, /* Alternative name */
2432 {K_KINS, (char_u *)"kInsert"},
2433 {K_HOME, (char_u *)"Home"},
2434 {K_KHOME, (char_u *)"kHome"},
2435 {K_XHOME, (char_u *)"xHome"},
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002436 {K_ZHOME, (char_u *)"zHome"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002437 {K_END, (char_u *)"End"},
2438 {K_KEND, (char_u *)"kEnd"},
2439 {K_XEND, (char_u *)"xEnd"},
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002440 {K_ZEND, (char_u *)"zEnd"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002441 {K_PAGEUP, (char_u *)"PageUp"},
2442 {K_PAGEDOWN, (char_u *)"PageDown"},
2443 {K_KPAGEUP, (char_u *)"kPageUp"},
2444 {K_KPAGEDOWN, (char_u *)"kPageDown"},
2445
2446 {K_KPLUS, (char_u *)"kPlus"},
2447 {K_KMINUS, (char_u *)"kMinus"},
2448 {K_KDIVIDE, (char_u *)"kDivide"},
2449 {K_KMULTIPLY, (char_u *)"kMultiply"},
2450 {K_KENTER, (char_u *)"kEnter"},
2451 {K_KPOINT, (char_u *)"kPoint"},
2452
2453 {K_K0, (char_u *)"k0"},
2454 {K_K1, (char_u *)"k1"},
2455 {K_K2, (char_u *)"k2"},
2456 {K_K3, (char_u *)"k3"},
2457 {K_K4, (char_u *)"k4"},
2458 {K_K5, (char_u *)"k5"},
2459 {K_K6, (char_u *)"k6"},
2460 {K_K7, (char_u *)"k7"},
2461 {K_K8, (char_u *)"k8"},
2462 {K_K9, (char_u *)"k9"},
2463
2464 {'<', (char_u *)"lt"},
2465
2466 {K_MOUSE, (char_u *)"Mouse"},
Bram Moolenaar5af7d712012-01-20 17:15:51 +01002467#ifdef FEAT_MOUSE_NET
Bram Moolenaar071d4272004-06-13 20:20:40 +00002468 {K_NETTERM_MOUSE, (char_u *)"NetMouse"},
Bram Moolenaar5af7d712012-01-20 17:15:51 +01002469#endif
2470#ifdef FEAT_MOUSE_DEC
Bram Moolenaar071d4272004-06-13 20:20:40 +00002471 {K_DEC_MOUSE, (char_u *)"DecMouse"},
Bram Moolenaar5af7d712012-01-20 17:15:51 +01002472#endif
2473#ifdef FEAT_MOUSE_JSB
Bram Moolenaar071d4272004-06-13 20:20:40 +00002474 {K_JSBTERM_MOUSE, (char_u *)"JsbMouse"},
Bram Moolenaar5af7d712012-01-20 17:15:51 +01002475#endif
2476#ifdef FEAT_MOUSE_PTERM
Bram Moolenaar071d4272004-06-13 20:20:40 +00002477 {K_PTERM_MOUSE, (char_u *)"PtermMouse"},
Bram Moolenaar5af7d712012-01-20 17:15:51 +01002478#endif
2479#ifdef FEAT_MOUSE_URXVT
2480 {K_URXVT_MOUSE, (char_u *)"UrxvtMouse"},
2481#endif
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02002482#ifdef FEAT_MOUSE_SGR
2483 {K_SGR_MOUSE, (char_u *)"SgrMouse"},
2484#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002485 {K_LEFTMOUSE, (char_u *)"LeftMouse"},
2486 {K_LEFTMOUSE_NM, (char_u *)"LeftMouseNM"},
2487 {K_LEFTDRAG, (char_u *)"LeftDrag"},
2488 {K_LEFTRELEASE, (char_u *)"LeftRelease"},
2489 {K_LEFTRELEASE_NM, (char_u *)"LeftReleaseNM"},
2490 {K_MIDDLEMOUSE, (char_u *)"MiddleMouse"},
2491 {K_MIDDLEDRAG, (char_u *)"MiddleDrag"},
2492 {K_MIDDLERELEASE, (char_u *)"MiddleRelease"},
2493 {K_RIGHTMOUSE, (char_u *)"RightMouse"},
2494 {K_RIGHTDRAG, (char_u *)"RightDrag"},
2495 {K_RIGHTRELEASE, (char_u *)"RightRelease"},
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02002496 {K_MOUSEDOWN, (char_u *)"ScrollWheelUp"},
2497 {K_MOUSEUP, (char_u *)"ScrollWheelDown"},
2498 {K_MOUSELEFT, (char_u *)"ScrollWheelRight"},
2499 {K_MOUSERIGHT, (char_u *)"ScrollWheelLeft"},
2500 {K_MOUSEDOWN, (char_u *)"MouseDown"}, /* OBSOLETE: Use */
2501 {K_MOUSEUP, (char_u *)"MouseUp"}, /* ScrollWheelXXX instead */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002502 {K_X1MOUSE, (char_u *)"X1Mouse"},
2503 {K_X1DRAG, (char_u *)"X1Drag"},
2504 {K_X1RELEASE, (char_u *)"X1Release"},
2505 {K_X2MOUSE, (char_u *)"X2Mouse"},
2506 {K_X2DRAG, (char_u *)"X2Drag"},
2507 {K_X2RELEASE, (char_u *)"X2Release"},
2508 {K_DROP, (char_u *)"Drop"},
2509 {K_ZERO, (char_u *)"Nul"},
2510#ifdef FEAT_EVAL
2511 {K_SNR, (char_u *)"SNR"},
2512#endif
2513 {K_PLUG, (char_u *)"Plug"},
Bram Moolenaar1db60c42014-09-23 16:49:46 +02002514 {K_CURSORHOLD, (char_u *)"CursorHold"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002515 {0, NULL}
2516};
2517
2518#define KEY_NAMES_TABLE_LEN (sizeof(key_names_table) / sizeof(struct key_name_entry))
2519
2520#ifdef FEAT_MOUSE
2521static struct mousetable
2522{
2523 int pseudo_code; /* Code for pseudo mouse event */
2524 int button; /* Which mouse button is it? */
2525 int is_click; /* Is it a mouse button click event? */
2526 int is_drag; /* Is it a mouse drag event? */
2527} mouse_table[] =
2528{
2529 {(int)KE_LEFTMOUSE, MOUSE_LEFT, TRUE, FALSE},
2530#ifdef FEAT_GUI
2531 {(int)KE_LEFTMOUSE_NM, MOUSE_LEFT, TRUE, FALSE},
2532#endif
2533 {(int)KE_LEFTDRAG, MOUSE_LEFT, FALSE, TRUE},
2534 {(int)KE_LEFTRELEASE, MOUSE_LEFT, FALSE, FALSE},
2535#ifdef FEAT_GUI
2536 {(int)KE_LEFTRELEASE_NM, MOUSE_LEFT, FALSE, FALSE},
2537#endif
2538 {(int)KE_MIDDLEMOUSE, MOUSE_MIDDLE, TRUE, FALSE},
2539 {(int)KE_MIDDLEDRAG, MOUSE_MIDDLE, FALSE, TRUE},
2540 {(int)KE_MIDDLERELEASE, MOUSE_MIDDLE, FALSE, FALSE},
2541 {(int)KE_RIGHTMOUSE, MOUSE_RIGHT, TRUE, FALSE},
2542 {(int)KE_RIGHTDRAG, MOUSE_RIGHT, FALSE, TRUE},
2543 {(int)KE_RIGHTRELEASE, MOUSE_RIGHT, FALSE, FALSE},
2544 {(int)KE_X1MOUSE, MOUSE_X1, TRUE, FALSE},
2545 {(int)KE_X1DRAG, MOUSE_X1, FALSE, TRUE},
2546 {(int)KE_X1RELEASE, MOUSE_X1, FALSE, FALSE},
2547 {(int)KE_X2MOUSE, MOUSE_X2, TRUE, FALSE},
2548 {(int)KE_X2DRAG, MOUSE_X2, FALSE, TRUE},
2549 {(int)KE_X2RELEASE, MOUSE_X2, FALSE, FALSE},
2550 /* DRAG without CLICK */
2551 {(int)KE_IGNORE, MOUSE_RELEASE, FALSE, TRUE},
2552 /* RELEASE without CLICK */
2553 {(int)KE_IGNORE, MOUSE_RELEASE, FALSE, FALSE},
2554 {0, 0, 0, 0},
2555};
2556#endif /* FEAT_MOUSE */
2557
2558/*
2559 * Return the modifier mask bit (MOD_MASK_*) which corresponds to the given
2560 * modifier name ('S' for Shift, 'C' for Ctrl etc).
2561 */
2562 int
2563name_to_mod_mask(c)
2564 int c;
2565{
2566 int i;
2567
2568 c = TOUPPER_ASC(c);
2569 for (i = 0; mod_mask_table[i].mod_mask != 0; i++)
2570 if (c == mod_mask_table[i].name)
2571 return mod_mask_table[i].mod_flag;
2572 return 0;
2573}
2574
Bram Moolenaar071d4272004-06-13 20:20:40 +00002575/*
2576 * Check if if there is a special key code for "key" that includes the
2577 * modifiers specified.
2578 */
2579 int
2580simplify_key(key, modifiers)
2581 int key;
2582 int *modifiers;
2583{
2584 int i;
2585 int key0;
2586 int key1;
2587
2588 if (*modifiers & (MOD_MASK_SHIFT | MOD_MASK_CTRL | MOD_MASK_ALT))
2589 {
2590 /* TAB is a special case */
2591 if (key == TAB && (*modifiers & MOD_MASK_SHIFT))
2592 {
2593 *modifiers &= ~MOD_MASK_SHIFT;
2594 return K_S_TAB;
2595 }
2596 key0 = KEY2TERMCAP0(key);
2597 key1 = KEY2TERMCAP1(key);
2598 for (i = 0; modifier_keys_table[i] != NUL; i += MOD_KEYS_ENTRY_SIZE)
2599 if (key0 == modifier_keys_table[i + 3]
2600 && key1 == modifier_keys_table[i + 4]
2601 && (*modifiers & modifier_keys_table[i]))
2602 {
2603 *modifiers &= ~modifier_keys_table[i];
2604 return TERMCAP2KEY(modifier_keys_table[i + 1],
2605 modifier_keys_table[i + 2]);
2606 }
2607 }
2608 return key;
2609}
2610
2611/*
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002612 * Change <xHome> to <Home>, <xUp> to <Up>, etc.
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002613 */
2614 int
2615handle_x_keys(key)
2616 int key;
2617{
2618 switch (key)
2619 {
2620 case K_XUP: return K_UP;
2621 case K_XDOWN: return K_DOWN;
2622 case K_XLEFT: return K_LEFT;
2623 case K_XRIGHT: return K_RIGHT;
2624 case K_XHOME: return K_HOME;
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002625 case K_ZHOME: return K_HOME;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002626 case K_XEND: return K_END;
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002627 case K_ZEND: return K_END;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002628 case K_XF1: return K_F1;
2629 case K_XF2: return K_F2;
2630 case K_XF3: return K_F3;
2631 case K_XF4: return K_F4;
2632 case K_S_XF1: return K_S_F1;
2633 case K_S_XF2: return K_S_F2;
2634 case K_S_XF3: return K_S_F3;
2635 case K_S_XF4: return K_S_F4;
2636 }
2637 return key;
2638}
2639
2640/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002641 * Return a string which contains the name of the given key when the given
2642 * modifiers are down.
2643 */
2644 char_u *
2645get_special_key_name(c, modifiers)
2646 int c;
2647 int modifiers;
2648{
2649 static char_u string[MAX_KEY_NAME_LEN + 1];
2650
2651 int i, idx;
2652 int table_idx;
2653 char_u *s;
2654
2655 string[0] = '<';
2656 idx = 1;
2657
2658 /* Key that stands for a normal character. */
2659 if (IS_SPECIAL(c) && KEY2TERMCAP0(c) == KS_KEY)
2660 c = KEY2TERMCAP1(c);
2661
2662 /*
2663 * Translate shifted special keys into unshifted keys and set modifier.
2664 * Same for CTRL and ALT modifiers.
2665 */
2666 if (IS_SPECIAL(c))
2667 {
2668 for (i = 0; modifier_keys_table[i] != 0; i += MOD_KEYS_ENTRY_SIZE)
2669 if ( KEY2TERMCAP0(c) == (int)modifier_keys_table[i + 1]
2670 && (int)KEY2TERMCAP1(c) == (int)modifier_keys_table[i + 2])
2671 {
2672 modifiers |= modifier_keys_table[i];
2673 c = TERMCAP2KEY(modifier_keys_table[i + 3],
2674 modifier_keys_table[i + 4]);
2675 break;
2676 }
2677 }
2678
2679 /* try to find the key in the special key table */
2680 table_idx = find_special_key_in_table(c);
2681
2682 /*
2683 * When not a known special key, and not a printable character, try to
2684 * extract modifiers.
2685 */
2686 if (c > 0
2687#ifdef FEAT_MBYTE
2688 && (*mb_char2len)(c) == 1
2689#endif
2690 )
2691 {
2692 if (table_idx < 0
2693 && (!vim_isprintc(c) || (c & 0x7f) == ' ')
2694 && (c & 0x80))
2695 {
2696 c &= 0x7f;
2697 modifiers |= MOD_MASK_ALT;
2698 /* try again, to find the un-alted key in the special key table */
2699 table_idx = find_special_key_in_table(c);
2700 }
2701 if (table_idx < 0 && !vim_isprintc(c) && c < ' ')
2702 {
2703#ifdef EBCDIC
2704 c = CtrlChar(c);
2705#else
2706 c += '@';
2707#endif
2708 modifiers |= MOD_MASK_CTRL;
2709 }
2710 }
2711
2712 /* translate the modifier into a string */
2713 for (i = 0; mod_mask_table[i].name != 'A'; i++)
2714 if ((modifiers & mod_mask_table[i].mod_mask)
2715 == mod_mask_table[i].mod_flag)
2716 {
2717 string[idx++] = mod_mask_table[i].name;
2718 string[idx++] = (char_u)'-';
2719 }
2720
2721 if (table_idx < 0) /* unknown special key, may output t_xx */
2722 {
2723 if (IS_SPECIAL(c))
2724 {
2725 string[idx++] = 't';
2726 string[idx++] = '_';
2727 string[idx++] = KEY2TERMCAP0(c);
2728 string[idx++] = KEY2TERMCAP1(c);
2729 }
2730 /* Not a special key, only modifiers, output directly */
2731 else
2732 {
2733#ifdef FEAT_MBYTE
2734 if (has_mbyte && (*mb_char2len)(c) > 1)
2735 idx += (*mb_char2bytes)(c, string + idx);
2736 else
2737#endif
2738 if (vim_isprintc(c))
2739 string[idx++] = c;
2740 else
2741 {
2742 s = transchar(c);
2743 while (*s)
2744 string[idx++] = *s++;
2745 }
2746 }
2747 }
2748 else /* use name of special key */
2749 {
2750 STRCPY(string + idx, key_names_table[table_idx].name);
2751 idx = (int)STRLEN(string);
2752 }
2753 string[idx++] = '>';
2754 string[idx] = NUL;
2755 return string;
2756}
2757
2758/*
2759 * Try translating a <> name at (*srcp)[] to dst[].
2760 * Return the number of characters added to dst[], zero for no match.
2761 * If there is a match, srcp is advanced to after the <> name.
2762 * dst[] must be big enough to hold the result (up to six characters)!
2763 */
2764 int
2765trans_special(srcp, dst, keycode)
2766 char_u **srcp;
2767 char_u *dst;
2768 int keycode; /* prefer key code, e.g. K_DEL instead of DEL */
2769{
2770 int modifiers = 0;
2771 int key;
2772 int dlen = 0;
2773
Bram Moolenaar2a8ced02008-12-24 11:54:31 +00002774 key = find_special_key(srcp, &modifiers, keycode, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002775 if (key == 0)
2776 return 0;
2777
2778 /* Put the appropriate modifier in a string */
2779 if (modifiers != 0)
2780 {
2781 dst[dlen++] = K_SPECIAL;
2782 dst[dlen++] = KS_MODIFIER;
2783 dst[dlen++] = modifiers;
2784 }
2785
2786 if (IS_SPECIAL(key))
2787 {
2788 dst[dlen++] = K_SPECIAL;
2789 dst[dlen++] = KEY2TERMCAP0(key);
2790 dst[dlen++] = KEY2TERMCAP1(key);
2791 }
2792#ifdef FEAT_MBYTE
2793 else if (has_mbyte && !keycode)
2794 dlen += (*mb_char2bytes)(key, dst + dlen);
2795#endif
2796 else if (keycode)
2797 dlen = (int)(add_char2buf(key, dst + dlen) - dst);
2798 else
2799 dst[dlen++] = key;
2800
2801 return dlen;
2802}
2803
2804/*
2805 * Try translating a <> name at (*srcp)[], return the key and modifiers.
2806 * srcp is advanced to after the <> name.
2807 * returns 0 if there is no match.
2808 */
2809 int
Bram Moolenaar2a8ced02008-12-24 11:54:31 +00002810find_special_key(srcp, modp, keycode, keep_x_key)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002811 char_u **srcp;
2812 int *modp;
Bram Moolenaar2a8ced02008-12-24 11:54:31 +00002813 int keycode; /* prefer key code, e.g. K_DEL instead of DEL */
2814 int keep_x_key; /* don't translate xHome to Home key */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002815{
2816 char_u *last_dash;
2817 char_u *end_of_name;
2818 char_u *src;
2819 char_u *bp;
2820 int modifiers;
2821 int bit;
2822 int key;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002823 unsigned long n;
Bram Moolenaarb8bf5412011-08-17 20:33:22 +02002824 int l;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002825
2826 src = *srcp;
2827 if (src[0] != '<')
2828 return 0;
2829
2830 /* Find end of modifier list */
2831 last_dash = src;
2832 for (bp = src + 1; *bp == '-' || vim_isIDc(*bp); bp++)
2833 {
2834 if (*bp == '-')
2835 {
2836 last_dash = bp;
Bram Moolenaarb8bf5412011-08-17 20:33:22 +02002837 if (bp[1] != NUL)
2838 {
2839#ifdef FEAT_MBYTE
2840 if (has_mbyte)
2841 l = mb_ptr2len(bp + 1);
2842 else
2843#endif
2844 l = 1;
2845 if (bp[l + 1] == '>')
2846 bp += l; /* anything accepted, like <C-?> */
2847 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002848 }
2849 if (bp[0] == 't' && bp[1] == '_' && bp[2] && bp[3])
2850 bp += 3; /* skip t_xx, xx may be '-' or '>' */
Bram Moolenaar792826c2011-08-19 22:29:02 +02002851 else if (STRNICMP(bp, "char-", 5) == 0)
2852 {
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01002853 vim_str2nr(bp + 5, NULL, &l, STR2NR_ALL, NULL, NULL, 0);
Bram Moolenaar792826c2011-08-19 22:29:02 +02002854 bp += l + 5;
2855 break;
2856 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002857 }
2858
2859 if (*bp == '>') /* found matching '>' */
2860 {
2861 end_of_name = bp + 1;
2862
Bram Moolenaar071d4272004-06-13 20:20:40 +00002863 /* Which modifiers are given? */
2864 modifiers = 0x0;
2865 for (bp = src + 1; bp < last_dash; bp++)
2866 {
2867 if (*bp != '-')
2868 {
2869 bit = name_to_mod_mask(*bp);
2870 if (bit == 0x0)
2871 break; /* Illegal modifier name */
2872 modifiers |= bit;
2873 }
2874 }
2875
2876 /*
2877 * Legal modifier name.
2878 */
2879 if (bp >= last_dash)
2880 {
Bram Moolenaarb8bf5412011-08-17 20:33:22 +02002881 if (STRNICMP(last_dash + 1, "char-", 5) == 0
2882 && VIM_ISDIGIT(last_dash[6]))
2883 {
2884 /* <Char-123> or <Char-033> or <Char-0x33> */
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01002885 vim_str2nr(last_dash + 6, NULL, NULL, STR2NR_ALL, NULL, &n, 0);
Bram Moolenaar792826c2011-08-19 22:29:02 +02002886 key = (int)n;
Bram Moolenaarb8bf5412011-08-17 20:33:22 +02002887 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002888 else
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002889 {
Bram Moolenaar792826c2011-08-19 22:29:02 +02002890 /*
2891 * Modifier with single letter, or special key name.
2892 */
2893#ifdef FEAT_MBYTE
2894 if (has_mbyte)
2895 l = mb_ptr2len(last_dash + 1);
2896 else
2897#endif
2898 l = 1;
2899 if (modifiers != 0 && last_dash[l + 1] == '>')
2900 key = PTR2CHAR(last_dash + 1);
2901 else
2902 {
2903 key = get_special_key_code(last_dash + 1);
2904 if (!keep_x_key)
2905 key = handle_x_keys(key);
2906 }
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002907 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002908
2909 /*
2910 * get_special_key_code() may return NUL for invalid
2911 * special key name.
2912 */
2913 if (key != NUL)
2914 {
2915 /*
2916 * Only use a modifier when there is no special key code that
2917 * includes the modifier.
2918 */
2919 key = simplify_key(key, &modifiers);
2920
2921 if (!keycode)
2922 {
2923 /* don't want keycode, use single byte code */
2924 if (key == K_BS)
2925 key = BS;
2926 else if (key == K_DEL || key == K_KDEL)
2927 key = DEL;
2928 }
2929
2930 /*
2931 * Normal Key with modifier: Try to make a single byte code.
2932 */
2933 if (!IS_SPECIAL(key))
2934 key = extract_modifiers(key, &modifiers);
2935
2936 *modp = modifiers;
2937 *srcp = end_of_name;
2938 return key;
2939 }
2940 }
2941 }
2942 return 0;
2943}
2944
2945/*
2946 * Try to include modifiers in the key.
2947 * Changes "Shift-a" to 'A', "Alt-A" to 0xc0, etc.
2948 */
2949 int
2950extract_modifiers(key, modp)
2951 int key;
2952 int *modp;
2953{
2954 int modifiers = *modp;
2955
2956#ifdef MACOS
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02002957 /* Command-key really special, no fancynest */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002958 if (!(modifiers & MOD_MASK_CMD))
2959#endif
2960 if ((modifiers & MOD_MASK_SHIFT) && ASCII_ISALPHA(key))
2961 {
2962 key = TOUPPER_ASC(key);
2963 modifiers &= ~MOD_MASK_SHIFT;
2964 }
2965 if ((modifiers & MOD_MASK_CTRL)
2966#ifdef EBCDIC
2967 /* * TODO: EBCDIC Better use:
2968 * && (Ctrl_chr(key) || key == '?')
2969 * ??? */
2970 && strchr("?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_", key)
2971 != NULL
2972#else
2973 && ((key >= '?' && key <= '_') || ASCII_ISALPHA(key))
2974#endif
2975 )
2976 {
2977 key = Ctrl_chr(key);
2978 modifiers &= ~MOD_MASK_CTRL;
2979 /* <C-@> is <Nul> */
2980 if (key == 0)
2981 key = K_ZERO;
2982 }
2983#ifdef MACOS
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02002984 /* Command-key really special, no fancynest */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002985 if (!(modifiers & MOD_MASK_CMD))
2986#endif
2987 if ((modifiers & MOD_MASK_ALT) && key < 0x80
2988#ifdef FEAT_MBYTE
2989 && !enc_dbcs /* avoid creating a lead byte */
2990#endif
2991 )
2992 {
2993 key |= 0x80;
2994 modifiers &= ~MOD_MASK_ALT; /* remove the META modifier */
2995 }
2996
2997 *modp = modifiers;
2998 return key;
2999}
3000
3001/*
3002 * Try to find key "c" in the special key table.
3003 * Return the index when found, -1 when not found.
3004 */
3005 int
3006find_special_key_in_table(c)
3007 int c;
3008{
3009 int i;
3010
3011 for (i = 0; key_names_table[i].name != NULL; i++)
3012 if (c == key_names_table[i].key)
3013 break;
3014 if (key_names_table[i].name == NULL)
3015 i = -1;
3016 return i;
3017}
3018
3019/*
3020 * Find the special key with the given name (the given string does not have to
3021 * end with NUL, the name is assumed to end before the first non-idchar).
3022 * If the name starts with "t_" the next two characters are interpreted as a
3023 * termcap name.
3024 * Return the key code, or 0 if not found.
3025 */
3026 int
3027get_special_key_code(name)
3028 char_u *name;
3029{
3030 char_u *table_name;
3031 char_u string[3];
3032 int i, j;
3033
3034 /*
3035 * If it's <t_xx> we get the code for xx from the termcap
3036 */
3037 if (name[0] == 't' && name[1] == '_' && name[2] != NUL && name[3] != NUL)
3038 {
3039 string[0] = name[2];
3040 string[1] = name[3];
3041 string[2] = NUL;
3042 if (add_termcap_entry(string, FALSE) == OK)
3043 return TERMCAP2KEY(name[2], name[3]);
3044 }
3045 else
3046 for (i = 0; key_names_table[i].name != NULL; i++)
3047 {
3048 table_name = key_names_table[i].name;
3049 for (j = 0; vim_isIDc(name[j]) && table_name[j] != NUL; j++)
3050 if (TOLOWER_ASC(table_name[j]) != TOLOWER_ASC(name[j]))
3051 break;
3052 if (!vim_isIDc(name[j]) && table_name[j] == NUL)
3053 return key_names_table[i].key;
3054 }
3055 return 0;
3056}
3057
Bram Moolenaar05bb9532008-07-04 09:44:11 +00003058#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003059 char_u *
3060get_key_name(i)
3061 int i;
3062{
Bram Moolenaare1fbddc2009-05-16 19:07:03 +00003063 if (i >= (int)KEY_NAMES_TABLE_LEN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003064 return NULL;
3065 return key_names_table[i].name;
3066}
3067#endif
3068
Bram Moolenaar05bb9532008-07-04 09:44:11 +00003069#if defined(FEAT_MOUSE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003070/*
3071 * Look up the given mouse code to return the relevant information in the other
3072 * arguments. Return which button is down or was released.
3073 */
3074 int
3075get_mouse_button(code, is_click, is_drag)
3076 int code;
3077 int *is_click;
3078 int *is_drag;
3079{
3080 int i;
3081
3082 for (i = 0; mouse_table[i].pseudo_code; i++)
3083 if (code == mouse_table[i].pseudo_code)
3084 {
3085 *is_click = mouse_table[i].is_click;
3086 *is_drag = mouse_table[i].is_drag;
3087 return mouse_table[i].button;
3088 }
3089 return 0; /* Shouldn't get here */
3090}
3091
3092/*
3093 * Return the appropriate pseudo mouse event token (KE_LEFTMOUSE etc) based on
3094 * the given information about which mouse button is down, and whether the
3095 * mouse was clicked, dragged or released.
3096 */
3097 int
3098get_pseudo_mouse_code(button, is_click, is_drag)
3099 int button; /* eg MOUSE_LEFT */
3100 int is_click;
3101 int is_drag;
3102{
3103 int i;
3104
3105 for (i = 0; mouse_table[i].pseudo_code; i++)
3106 if (button == mouse_table[i].button
3107 && is_click == mouse_table[i].is_click
3108 && is_drag == mouse_table[i].is_drag)
3109 {
3110#ifdef FEAT_GUI
Bram Moolenaarc91506a2005-04-24 22:04:21 +00003111 /* Trick: a non mappable left click and release has mouse_col -1
3112 * or added MOUSE_COLOFF. Used for 'mousefocus' in
3113 * gui_mouse_moved() */
3114 if (mouse_col < 0 || mouse_col > MOUSE_COLOFF)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003115 {
Bram Moolenaarc91506a2005-04-24 22:04:21 +00003116 if (mouse_col < 0)
3117 mouse_col = 0;
3118 else
3119 mouse_col -= MOUSE_COLOFF;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003120 if (mouse_table[i].pseudo_code == (int)KE_LEFTMOUSE)
3121 return (int)KE_LEFTMOUSE_NM;
3122 if (mouse_table[i].pseudo_code == (int)KE_LEFTRELEASE)
3123 return (int)KE_LEFTRELEASE_NM;
3124 }
3125#endif
3126 return mouse_table[i].pseudo_code;
3127 }
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00003128 return (int)KE_IGNORE; /* not recognized, ignore it */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003129}
3130#endif /* FEAT_MOUSE */
3131
3132/*
3133 * Return the current end-of-line type: EOL_DOS, EOL_UNIX or EOL_MAC.
3134 */
3135 int
3136get_fileformat(buf)
3137 buf_T *buf;
3138{
3139 int c = *buf->b_p_ff;
3140
3141 if (buf->b_p_bin || c == 'u')
3142 return EOL_UNIX;
3143 if (c == 'm')
3144 return EOL_MAC;
3145 return EOL_DOS;
3146}
3147
3148/*
3149 * Like get_fileformat(), but override 'fileformat' with "p" for "++opt=val"
3150 * argument.
3151 */
3152 int
3153get_fileformat_force(buf, eap)
3154 buf_T *buf;
3155 exarg_T *eap; /* can be NULL! */
3156{
3157 int c;
3158
3159 if (eap != NULL && eap->force_ff != 0)
3160 c = eap->cmd[eap->force_ff];
3161 else
3162 {
3163 if ((eap != NULL && eap->force_bin != 0)
3164 ? (eap->force_bin == FORCE_BIN) : buf->b_p_bin)
3165 return EOL_UNIX;
3166 c = *buf->b_p_ff;
3167 }
3168 if (c == 'u')
3169 return EOL_UNIX;
3170 if (c == 'm')
3171 return EOL_MAC;
3172 return EOL_DOS;
3173}
3174
3175/*
3176 * Set the current end-of-line type to EOL_DOS, EOL_UNIX or EOL_MAC.
3177 * Sets both 'textmode' and 'fileformat'.
3178 * Note: Does _not_ set global value of 'textmode'!
3179 */
3180 void
3181set_fileformat(t, opt_flags)
3182 int t;
3183 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
3184{
3185 char *p = NULL;
3186
3187 switch (t)
3188 {
3189 case EOL_DOS:
3190 p = FF_DOS;
3191 curbuf->b_p_tx = TRUE;
3192 break;
3193 case EOL_UNIX:
3194 p = FF_UNIX;
3195 curbuf->b_p_tx = FALSE;
3196 break;
3197 case EOL_MAC:
3198 p = FF_MAC;
3199 curbuf->b_p_tx = FALSE;
3200 break;
3201 }
3202 if (p != NULL)
3203 set_string_option_direct((char_u *)"ff", -1, (char_u *)p,
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00003204 OPT_FREE | opt_flags, 0);
3205
Bram Moolenaar071d4272004-06-13 20:20:40 +00003206#ifdef FEAT_WINDOWS
Bram Moolenaarf740b292006-02-16 22:11:02 +00003207 /* This may cause the buffer to become (un)modified. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003208 check_status(curbuf);
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00003209 redraw_tabline = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003210#endif
3211#ifdef FEAT_TITLE
3212 need_maketitle = TRUE; /* set window title later */
3213#endif
3214}
3215
3216/*
3217 * Return the default fileformat from 'fileformats'.
3218 */
3219 int
3220default_fileformat()
3221{
3222 switch (*p_ffs)
3223 {
3224 case 'm': return EOL_MAC;
3225 case 'd': return EOL_DOS;
3226 }
3227 return EOL_UNIX;
3228}
3229
3230/*
3231 * Call shell. Calls mch_call_shell, with 'shellxquote' added.
3232 */
3233 int
3234call_shell(cmd, opt)
3235 char_u *cmd;
3236 int opt;
3237{
3238 char_u *ncmd;
3239 int retval;
Bram Moolenaar05159a02005-02-26 23:04:13 +00003240#ifdef FEAT_PROFILE
3241 proftime_T wait_time;
3242#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003243
3244 if (p_verbose > 3)
3245 {
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00003246 verbose_enter();
Bram Moolenaar051b7822005-05-19 21:00:46 +00003247 smsg((char_u *)_("Calling shell to execute: \"%s\""),
Bram Moolenaar071d4272004-06-13 20:20:40 +00003248 cmd == NULL ? p_sh : cmd);
3249 out_char('\n');
3250 cursor_on();
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00003251 verbose_leave();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003252 }
3253
Bram Moolenaar05159a02005-02-26 23:04:13 +00003254#ifdef FEAT_PROFILE
Bram Moolenaar01265852006-03-20 21:50:15 +00003255 if (do_profiling == PROF_YES)
Bram Moolenaar05159a02005-02-26 23:04:13 +00003256 prof_child_enter(&wait_time);
3257#endif
3258
Bram Moolenaar071d4272004-06-13 20:20:40 +00003259 if (*p_sh == NUL)
3260 {
3261 EMSG(_(e_shellempty));
3262 retval = -1;
3263 }
3264 else
3265 {
3266#ifdef FEAT_GUI_MSWIN
3267 /* Don't hide the pointer while executing a shell command. */
3268 gui_mch_mousehide(FALSE);
3269#endif
3270#ifdef FEAT_GUI
3271 ++hold_gui_events;
3272#endif
3273 /* The external command may update a tags file, clear cached tags. */
3274 tag_freematch();
3275
3276 if (cmd == NULL || *p_sxq == NUL)
3277 retval = mch_call_shell(cmd, opt);
3278 else
3279 {
Bram Moolenaarf66b3fc2012-02-20 22:18:30 +01003280 char_u *ecmd = cmd;
3281
3282 if (*p_sxe != NUL && STRCMP(p_sxq, "(") == 0)
3283 {
3284 ecmd = vim_strsave_escaped_ext(cmd, p_sxe, '^', FALSE);
3285 if (ecmd == NULL)
3286 ecmd = cmd;
3287 }
3288 ncmd = alloc((unsigned)(STRLEN(ecmd) + STRLEN(p_sxq) * 2 + 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003289 if (ncmd != NULL)
3290 {
3291 STRCPY(ncmd, p_sxq);
Bram Moolenaarf66b3fc2012-02-20 22:18:30 +01003292 STRCAT(ncmd, ecmd);
Bram Moolenaar034b1152012-02-19 18:19:30 +01003293 /* When 'shellxquote' is ( append ).
3294 * When 'shellxquote' is "( append )". */
3295 STRCAT(ncmd, STRCMP(p_sxq, "(") == 0 ? (char_u *)")"
3296 : STRCMP(p_sxq, "\"(") == 0 ? (char_u *)")\""
3297 : p_sxq);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003298 retval = mch_call_shell(ncmd, opt);
3299 vim_free(ncmd);
3300 }
3301 else
3302 retval = -1;
Bram Moolenaarf66b3fc2012-02-20 22:18:30 +01003303 if (ecmd != cmd)
3304 vim_free(ecmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003305 }
3306#ifdef FEAT_GUI
3307 --hold_gui_events;
3308#endif
3309 /*
3310 * Check the window size, in case it changed while executing the
3311 * external command.
3312 */
3313 shell_resized_check();
3314 }
3315
3316#ifdef FEAT_EVAL
3317 set_vim_var_nr(VV_SHELL_ERROR, (long)retval);
Bram Moolenaar05159a02005-02-26 23:04:13 +00003318# ifdef FEAT_PROFILE
Bram Moolenaar01265852006-03-20 21:50:15 +00003319 if (do_profiling == PROF_YES)
Bram Moolenaar05159a02005-02-26 23:04:13 +00003320 prof_child_exit(&wait_time);
3321# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003322#endif
3323
3324 return retval;
3325}
3326
3327/*
Bram Moolenaar01265852006-03-20 21:50:15 +00003328 * VISUAL, SELECTMODE and OP_PENDING State are never set, they are equal to
3329 * NORMAL State with a condition. This function returns the real State.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003330 */
3331 int
3332get_real_state()
3333{
3334 if (State & NORMAL)
3335 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003336 if (VIsual_active)
Bram Moolenaar01265852006-03-20 21:50:15 +00003337 {
3338 if (VIsual_select)
3339 return SELECTMODE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003340 return VISUAL;
Bram Moolenaar01265852006-03-20 21:50:15 +00003341 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01003342 else if (finish_op)
3343 return OP_PENDING;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003344 }
3345 return State;
3346}
3347
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003348#if defined(FEAT_MBYTE) || defined(PROTO)
3349/*
3350 * Return TRUE if "p" points to just after a path separator.
Bram Moolenaarb5ce04d2011-07-07 17:15:33 +02003351 * Takes care of multi-byte characters.
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003352 * "b" must point to the start of the file name
3353 */
3354 int
3355after_pathsep(b, p)
3356 char_u *b;
3357 char_u *p;
3358{
Bram Moolenaarb5ce04d2011-07-07 17:15:33 +02003359 return p > b && vim_ispathsep(p[-1])
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003360 && (!has_mbyte || (*mb_head_off)(b, p - 1) == 0);
3361}
3362#endif
3363
3364/*
3365 * Return TRUE if file names "f1" and "f2" are in the same directory.
3366 * "f1" may be a short name, "f2" must be a full path.
3367 */
3368 int
3369same_directory(f1, f2)
3370 char_u *f1;
3371 char_u *f2;
3372{
3373 char_u ffname[MAXPATHL];
3374 char_u *t1;
3375 char_u *t2;
3376
3377 /* safety check */
3378 if (f1 == NULL || f2 == NULL)
3379 return FALSE;
3380
3381 (void)vim_FullName(f1, ffname, MAXPATHL, FALSE);
3382 t1 = gettail_sep(ffname);
3383 t2 = gettail_sep(f2);
3384 return (t1 - ffname == t2 - f2
3385 && pathcmp((char *)ffname, (char *)f2, (int)(t1 - ffname)) == 0);
3386}
3387
Bram Moolenaar071d4272004-06-13 20:20:40 +00003388#if defined(FEAT_SESSION) || defined(MSWIN) || defined(FEAT_GUI_MAC) \
Bram Moolenaar9372a112005-12-06 19:59:18 +00003389 || ((defined(FEAT_GUI_GTK)) \
Bram Moolenaar843ee412004-06-30 16:16:41 +00003390 && ( defined(FEAT_WINDOWS) || defined(FEAT_DND)) ) \
Bram Moolenaar071d4272004-06-13 20:20:40 +00003391 || defined(FEAT_SUN_WORKSHOP) || defined(FEAT_NETBEANS_INTG) \
3392 || defined(PROTO)
3393/*
3394 * Change to a file's directory.
3395 * Caller must call shorten_fnames()!
3396 * Return OK or FAIL.
3397 */
3398 int
3399vim_chdirfile(fname)
3400 char_u *fname;
3401{
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003402 char_u dir[MAXPATHL];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003403
Bram Moolenaarbbebc852005-07-18 21:47:53 +00003404 vim_strncpy(dir, fname, MAXPATHL - 1);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003405 *gettail_sep(dir) = NUL;
3406 return mch_chdir((char *)dir) == 0 ? OK : FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003407}
3408#endif
3409
3410#if defined(STAT_IGNORES_SLASH) || defined(PROTO)
3411/*
3412 * Check if "name" ends in a slash and is not a directory.
3413 * Used for systems where stat() ignores a trailing slash on a file name.
3414 * The Vim code assumes a trailing slash is only ignored for a directory.
3415 */
3416 int
3417illegal_slash(name)
3418 char *name;
3419{
3420 if (name[0] == NUL)
3421 return FALSE; /* no file name is not illegal */
3422 if (name[strlen(name) - 1] != '/')
3423 return FALSE; /* no trailing slash */
3424 if (mch_isdir((char_u *)name))
3425 return FALSE; /* trailing slash for a directory */
3426 return TRUE;
3427}
3428#endif
3429
3430#if defined(CURSOR_SHAPE) || defined(PROTO)
3431
3432/*
3433 * Handling of cursor and mouse pointer shapes in various modes.
3434 */
3435
3436cursorentry_T shape_table[SHAPE_IDX_COUNT] =
3437{
3438 /* The values will be filled in from the 'guicursor' and 'mouseshape'
3439 * defaults when Vim starts.
3440 * Adjust the SHAPE_IDX_ defines when making changes! */
3441 {0, 0, 0, 700L, 400L, 250L, 0, 0, "n", SHAPE_CURSOR+SHAPE_MOUSE},
3442 {0, 0, 0, 700L, 400L, 250L, 0, 0, "v", SHAPE_CURSOR+SHAPE_MOUSE},
3443 {0, 0, 0, 700L, 400L, 250L, 0, 0, "i", SHAPE_CURSOR+SHAPE_MOUSE},
3444 {0, 0, 0, 700L, 400L, 250L, 0, 0, "r", SHAPE_CURSOR+SHAPE_MOUSE},
3445 {0, 0, 0, 700L, 400L, 250L, 0, 0, "c", SHAPE_CURSOR+SHAPE_MOUSE},
3446 {0, 0, 0, 700L, 400L, 250L, 0, 0, "ci", SHAPE_CURSOR+SHAPE_MOUSE},
3447 {0, 0, 0, 700L, 400L, 250L, 0, 0, "cr", SHAPE_CURSOR+SHAPE_MOUSE},
3448 {0, 0, 0, 700L, 400L, 250L, 0, 0, "o", SHAPE_CURSOR+SHAPE_MOUSE},
3449 {0, 0, 0, 700L, 400L, 250L, 0, 0, "ve", SHAPE_CURSOR+SHAPE_MOUSE},
3450 {0, 0, 0, 0L, 0L, 0L, 0, 0, "e", SHAPE_MOUSE},
3451 {0, 0, 0, 0L, 0L, 0L, 0, 0, "s", SHAPE_MOUSE},
3452 {0, 0, 0, 0L, 0L, 0L, 0, 0, "sd", SHAPE_MOUSE},
3453 {0, 0, 0, 0L, 0L, 0L, 0, 0, "vs", SHAPE_MOUSE},
3454 {0, 0, 0, 0L, 0L, 0L, 0, 0, "vd", SHAPE_MOUSE},
3455 {0, 0, 0, 0L, 0L, 0L, 0, 0, "m", SHAPE_MOUSE},
3456 {0, 0, 0, 0L, 0L, 0L, 0, 0, "ml", SHAPE_MOUSE},
3457 {0, 0, 0, 100L, 100L, 100L, 0, 0, "sm", SHAPE_CURSOR},
3458};
3459
3460#ifdef FEAT_MOUSESHAPE
3461/*
3462 * Table with names for mouse shapes. Keep in sync with all the tables for
3463 * mch_set_mouse_shape()!.
3464 */
3465static char * mshape_names[] =
3466{
3467 "arrow", /* default, must be the first one */
3468 "blank", /* hidden */
3469 "beam",
3470 "updown",
3471 "udsizing",
3472 "leftright",
3473 "lrsizing",
3474 "busy",
3475 "no",
3476 "crosshair",
3477 "hand1",
3478 "hand2",
3479 "pencil",
3480 "question",
3481 "rightup-arrow",
3482 "up-arrow",
3483 NULL
3484};
3485#endif
3486
3487/*
3488 * Parse the 'guicursor' option ("what" is SHAPE_CURSOR) or 'mouseshape'
3489 * ("what" is SHAPE_MOUSE).
3490 * Returns error message for an illegal option, NULL otherwise.
3491 */
3492 char_u *
3493parse_shape_opt(what)
3494 int what;
3495{
3496 char_u *modep;
3497 char_u *colonp;
3498 char_u *commap;
3499 char_u *slashp;
3500 char_u *p, *endp;
3501 int idx = 0; /* init for GCC */
3502 int all_idx;
3503 int len;
3504 int i;
3505 long n;
3506 int found_ve = FALSE; /* found "ve" flag */
3507 int round;
3508
3509 /*
3510 * First round: check for errors; second round: do it for real.
3511 */
3512 for (round = 1; round <= 2; ++round)
3513 {
3514 /*
3515 * Repeat for all comma separated parts.
3516 */
3517#ifdef FEAT_MOUSESHAPE
3518 if (what == SHAPE_MOUSE)
3519 modep = p_mouseshape;
3520 else
3521#endif
3522 modep = p_guicursor;
3523 while (*modep != NUL)
3524 {
3525 colonp = vim_strchr(modep, ':');
3526 if (colonp == NULL)
3527 return (char_u *)N_("E545: Missing colon");
3528 if (colonp == modep)
3529 return (char_u *)N_("E546: Illegal mode");
3530 commap = vim_strchr(modep, ',');
3531
3532 /*
3533 * Repeat for all mode's before the colon.
3534 * For the 'a' mode, we loop to handle all the modes.
3535 */
3536 all_idx = -1;
3537 while (modep < colonp || all_idx >= 0)
3538 {
3539 if (all_idx < 0)
3540 {
3541 /* Find the mode. */
3542 if (modep[1] == '-' || modep[1] == ':')
3543 len = 1;
3544 else
3545 len = 2;
3546 if (len == 1 && TOLOWER_ASC(modep[0]) == 'a')
3547 all_idx = SHAPE_IDX_COUNT - 1;
3548 else
3549 {
3550 for (idx = 0; idx < SHAPE_IDX_COUNT; ++idx)
3551 if (STRNICMP(modep, shape_table[idx].name, len)
3552 == 0)
3553 break;
3554 if (idx == SHAPE_IDX_COUNT
3555 || (shape_table[idx].used_for & what) == 0)
3556 return (char_u *)N_("E546: Illegal mode");
3557 if (len == 2 && modep[0] == 'v' && modep[1] == 'e')
3558 found_ve = TRUE;
3559 }
3560 modep += len + 1;
3561 }
3562
3563 if (all_idx >= 0)
3564 idx = all_idx--;
3565 else if (round == 2)
3566 {
3567#ifdef FEAT_MOUSESHAPE
3568 if (what == SHAPE_MOUSE)
3569 {
3570 /* Set the default, for the missing parts */
3571 shape_table[idx].mshape = 0;
3572 }
3573 else
3574#endif
3575 {
3576 /* Set the defaults, for the missing parts */
3577 shape_table[idx].shape = SHAPE_BLOCK;
3578 shape_table[idx].blinkwait = 700L;
3579 shape_table[idx].blinkon = 400L;
3580 shape_table[idx].blinkoff = 250L;
3581 }
3582 }
3583
3584 /* Parse the part after the colon */
3585 for (p = colonp + 1; *p && *p != ','; )
3586 {
3587#ifdef FEAT_MOUSESHAPE
3588 if (what == SHAPE_MOUSE)
3589 {
3590 for (i = 0; ; ++i)
3591 {
3592 if (mshape_names[i] == NULL)
3593 {
3594 if (!VIM_ISDIGIT(*p))
3595 return (char_u *)N_("E547: Illegal mouseshape");
3596 if (round == 2)
3597 shape_table[idx].mshape =
3598 getdigits(&p) + MSHAPE_NUMBERED;
3599 else
3600 (void)getdigits(&p);
3601 break;
3602 }
3603 len = (int)STRLEN(mshape_names[i]);
3604 if (STRNICMP(p, mshape_names[i], len) == 0)
3605 {
3606 if (round == 2)
3607 shape_table[idx].mshape = i;
3608 p += len;
3609 break;
3610 }
3611 }
3612 }
3613 else /* if (what == SHAPE_MOUSE) */
3614#endif
3615 {
3616 /*
3617 * First handle the ones with a number argument.
3618 */
3619 i = *p;
3620 len = 0;
3621 if (STRNICMP(p, "ver", 3) == 0)
3622 len = 3;
3623 else if (STRNICMP(p, "hor", 3) == 0)
3624 len = 3;
3625 else if (STRNICMP(p, "blinkwait", 9) == 0)
3626 len = 9;
3627 else if (STRNICMP(p, "blinkon", 7) == 0)
3628 len = 7;
3629 else if (STRNICMP(p, "blinkoff", 8) == 0)
3630 len = 8;
3631 if (len != 0)
3632 {
3633 p += len;
3634 if (!VIM_ISDIGIT(*p))
3635 return (char_u *)N_("E548: digit expected");
3636 n = getdigits(&p);
3637 if (len == 3) /* "ver" or "hor" */
3638 {
3639 if (n == 0)
3640 return (char_u *)N_("E549: Illegal percentage");
3641 if (round == 2)
3642 {
3643 if (TOLOWER_ASC(i) == 'v')
3644 shape_table[idx].shape = SHAPE_VER;
3645 else
3646 shape_table[idx].shape = SHAPE_HOR;
3647 shape_table[idx].percentage = n;
3648 }
3649 }
3650 else if (round == 2)
3651 {
3652 if (len == 9)
3653 shape_table[idx].blinkwait = n;
3654 else if (len == 7)
3655 shape_table[idx].blinkon = n;
3656 else
3657 shape_table[idx].blinkoff = n;
3658 }
3659 }
3660 else if (STRNICMP(p, "block", 5) == 0)
3661 {
3662 if (round == 2)
3663 shape_table[idx].shape = SHAPE_BLOCK;
3664 p += 5;
3665 }
3666 else /* must be a highlight group name then */
3667 {
3668 endp = vim_strchr(p, '-');
3669 if (commap == NULL) /* last part */
3670 {
3671 if (endp == NULL)
3672 endp = p + STRLEN(p); /* find end of part */
3673 }
3674 else if (endp > commap || endp == NULL)
3675 endp = commap;
3676 slashp = vim_strchr(p, '/');
3677 if (slashp != NULL && slashp < endp)
3678 {
3679 /* "group/langmap_group" */
3680 i = syn_check_group(p, (int)(slashp - p));
3681 p = slashp + 1;
3682 }
3683 if (round == 2)
3684 {
3685 shape_table[idx].id = syn_check_group(p,
3686 (int)(endp - p));
3687 shape_table[idx].id_lm = shape_table[idx].id;
3688 if (slashp != NULL && slashp < endp)
3689 shape_table[idx].id = i;
3690 }
3691 p = endp;
3692 }
3693 } /* if (what != SHAPE_MOUSE) */
3694
3695 if (*p == '-')
3696 ++p;
3697 }
3698 }
3699 modep = p;
3700 if (*modep == ',')
3701 ++modep;
3702 }
3703 }
3704
3705 /* If the 's' flag is not given, use the 'v' cursor for 's' */
3706 if (!found_ve)
3707 {
3708#ifdef FEAT_MOUSESHAPE
3709 if (what == SHAPE_MOUSE)
3710 {
3711 shape_table[SHAPE_IDX_VE].mshape = shape_table[SHAPE_IDX_V].mshape;
3712 }
3713 else
3714#endif
3715 {
3716 shape_table[SHAPE_IDX_VE].shape = shape_table[SHAPE_IDX_V].shape;
3717 shape_table[SHAPE_IDX_VE].percentage =
3718 shape_table[SHAPE_IDX_V].percentage;
3719 shape_table[SHAPE_IDX_VE].blinkwait =
3720 shape_table[SHAPE_IDX_V].blinkwait;
3721 shape_table[SHAPE_IDX_VE].blinkon =
3722 shape_table[SHAPE_IDX_V].blinkon;
3723 shape_table[SHAPE_IDX_VE].blinkoff =
3724 shape_table[SHAPE_IDX_V].blinkoff;
3725 shape_table[SHAPE_IDX_VE].id = shape_table[SHAPE_IDX_V].id;
3726 shape_table[SHAPE_IDX_VE].id_lm = shape_table[SHAPE_IDX_V].id_lm;
3727 }
3728 }
3729
3730 return NULL;
3731}
3732
Bram Moolenaarac6e65f2005-08-29 22:25:38 +00003733# if defined(MCH_CURSOR_SHAPE) || defined(FEAT_GUI) \
3734 || defined(FEAT_MOUSESHAPE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003735/*
3736 * Return the index into shape_table[] for the current mode.
3737 * When "mouse" is TRUE, consider indexes valid for the mouse pointer.
3738 */
3739 int
3740get_shape_idx(mouse)
3741 int mouse;
3742{
3743#ifdef FEAT_MOUSESHAPE
3744 if (mouse && (State == HITRETURN || State == ASKMORE))
3745 {
3746# ifdef FEAT_GUI
Bram Moolenaar9588a0f2005-01-08 21:45:39 +00003747 int x, y;
3748 gui_mch_getmouse(&x, &y);
3749 if (Y_2_ROW(y) == Rows - 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003750 return SHAPE_IDX_MOREL;
3751# endif
3752 return SHAPE_IDX_MORE;
3753 }
3754 if (mouse && drag_status_line)
3755 return SHAPE_IDX_SDRAG;
3756# ifdef FEAT_VERTSPLIT
3757 if (mouse && drag_sep_line)
3758 return SHAPE_IDX_VDRAG;
3759# endif
3760#endif
3761 if (!mouse && State == SHOWMATCH)
3762 return SHAPE_IDX_SM;
3763#ifdef FEAT_VREPLACE
3764 if (State & VREPLACE_FLAG)
3765 return SHAPE_IDX_R;
3766#endif
3767 if (State & REPLACE_FLAG)
3768 return SHAPE_IDX_R;
3769 if (State & INSERT)
3770 return SHAPE_IDX_I;
3771 if (State & CMDLINE)
3772 {
3773 if (cmdline_at_end())
3774 return SHAPE_IDX_C;
3775 if (cmdline_overstrike())
3776 return SHAPE_IDX_CR;
3777 return SHAPE_IDX_CI;
3778 }
3779 if (finish_op)
3780 return SHAPE_IDX_O;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003781 if (VIsual_active)
3782 {
3783 if (*p_sel == 'e')
3784 return SHAPE_IDX_VE;
3785 else
3786 return SHAPE_IDX_V;
3787 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003788 return SHAPE_IDX_N;
3789}
Bram Moolenaarac6e65f2005-08-29 22:25:38 +00003790#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003791
3792# if defined(FEAT_MOUSESHAPE) || defined(PROTO)
3793static int old_mouse_shape = 0;
3794
3795/*
3796 * Set the mouse shape:
3797 * If "shape" is -1, use shape depending on the current mode,
3798 * depending on the current state.
3799 * If "shape" is -2, only update the shape when it's CLINE or STATUS (used
3800 * when the mouse moves off the status or command line).
3801 */
3802 void
3803update_mouseshape(shape_idx)
3804 int shape_idx;
3805{
3806 int new_mouse_shape;
3807
3808 /* Only works in GUI mode. */
Bram Moolenaar6bb68362005-03-22 23:03:44 +00003809 if (!gui.in_use || gui.starting)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003810 return;
3811
3812 /* Postpone the updating when more is to come. Speeds up executing of
3813 * mappings. */
3814 if (shape_idx == -1 && char_avail())
3815 {
3816 postponed_mouseshape = TRUE;
3817 return;
3818 }
3819
Bram Moolenaar14716812006-05-04 21:54:08 +00003820 /* When ignoring the mouse don't change shape on the statusline. */
3821 if (*p_mouse == NUL
3822 && (shape_idx == SHAPE_IDX_CLINE
3823 || shape_idx == SHAPE_IDX_STATUS
3824 || shape_idx == SHAPE_IDX_VSEP))
3825 shape_idx = -2;
3826
Bram Moolenaar071d4272004-06-13 20:20:40 +00003827 if (shape_idx == -2
3828 && old_mouse_shape != shape_table[SHAPE_IDX_CLINE].mshape
3829 && old_mouse_shape != shape_table[SHAPE_IDX_STATUS].mshape
3830 && old_mouse_shape != shape_table[SHAPE_IDX_VSEP].mshape)
3831 return;
3832 if (shape_idx < 0)
3833 new_mouse_shape = shape_table[get_shape_idx(TRUE)].mshape;
3834 else
3835 new_mouse_shape = shape_table[shape_idx].mshape;
3836 if (new_mouse_shape != old_mouse_shape)
3837 {
3838 mch_set_mouse_shape(new_mouse_shape);
3839 old_mouse_shape = new_mouse_shape;
3840 }
3841 postponed_mouseshape = FALSE;
3842}
3843# endif
3844
3845#endif /* CURSOR_SHAPE */
3846
3847
Bram Moolenaar071d4272004-06-13 20:20:40 +00003848/* TODO: make some #ifdef for this */
3849/*--------[ file searching ]-------------------------------------------------*/
3850/*
3851 * File searching functions for 'path', 'tags' and 'cdpath' options.
3852 * External visible functions:
3853 * vim_findfile_init() creates/initialises the search context
3854 * vim_findfile_free_visited() free list of visited files/dirs of search
3855 * context
3856 * vim_findfile() find a file in the search context
3857 * vim_findfile_cleanup() cleanup/free search context created by
3858 * vim_findfile_init()
3859 *
3860 * All static functions and variables start with 'ff_'
3861 *
3862 * In general it works like this:
3863 * First you create yourself a search context by calling vim_findfile_init().
3864 * It is possible to give a search context from a previous call to
3865 * vim_findfile_init(), so it can be reused. After this you call vim_findfile()
3866 * until you are satisfied with the result or it returns NULL. On every call it
3867 * returns the next file which matches the conditions given to
3868 * vim_findfile_init(). If it doesn't find a next file it returns NULL.
3869 *
3870 * It is possible to call vim_findfile_init() again to reinitialise your search
3871 * with some new parameters. Don't forget to pass your old search context to
3872 * it, so it can reuse it and especially reuse the list of already visited
3873 * directories. If you want to delete the list of already visited directories
3874 * simply call vim_findfile_free_visited().
3875 *
3876 * When you are done call vim_findfile_cleanup() to free the search context.
3877 *
3878 * The function vim_findfile_init() has a long comment, which describes the
3879 * needed parameters.
3880 *
3881 *
3882 *
3883 * ATTENTION:
3884 * ==========
Bram Moolenaar77f66d62007-02-20 02:16:18 +00003885 * Also we use an allocated search context here, this functions are NOT
Bram Moolenaar071d4272004-06-13 20:20:40 +00003886 * thread-safe!!!!!
3887 *
3888 * To minimize parameter passing (or because I'm to lazy), only the
3889 * external visible functions get a search context as a parameter. This is
3890 * then assigned to a static global, which is used throughout the local
3891 * functions.
3892 */
3893
3894/*
3895 * type for the directory search stack
3896 */
3897typedef struct ff_stack
3898{
3899 struct ff_stack *ffs_prev;
3900
3901 /* the fix part (no wildcards) and the part containing the wildcards
3902 * of the search path
3903 */
3904 char_u *ffs_fix_path;
3905#ifdef FEAT_PATH_EXTRA
3906 char_u *ffs_wc_path;
3907#endif
3908
3909 /* files/dirs found in the above directory, matched by the first wildcard
3910 * of wc_part
3911 */
3912 char_u **ffs_filearray;
3913 int ffs_filearray_size;
3914 char_u ffs_filearray_cur; /* needed for partly handled dirs */
3915
3916 /* to store status of partly handled directories
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00003917 * 0: we work on this directory for the first time
Bram Moolenaar071d4272004-06-13 20:20:40 +00003918 * 1: this directory was partly searched in an earlier step
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00003919 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003920 int ffs_stage;
3921
3922 /* How deep are we in the directory tree?
3923 * Counts backward from value of level parameter to vim_findfile_init
3924 */
3925 int ffs_level;
3926
3927 /* Did we already expand '**' to an empty string? */
3928 int ffs_star_star_empty;
3929} ff_stack_T;
3930
3931/*
3932 * type for already visited directories or files.
3933 */
3934typedef struct ff_visited
3935{
3936 struct ff_visited *ffv_next;
3937
3938#ifdef FEAT_PATH_EXTRA
3939 /* Visited directories are different if the wildcard string are
3940 * different. So we have to save it.
3941 */
3942 char_u *ffv_wc_path;
3943#endif
3944 /* for unix use inode etc for comparison (needed because of links), else
3945 * use filename.
3946 */
3947#ifdef UNIX
Bram Moolenaare1fbddc2009-05-16 19:07:03 +00003948 int ffv_dev_valid; /* ffv_dev and ffv_ino were set */
3949 dev_t ffv_dev; /* device number */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003950 ino_t ffv_ino; /* inode number */
3951#endif
3952 /* The memory for this struct is allocated according to the length of
3953 * ffv_fname.
3954 */
3955 char_u ffv_fname[1]; /* actually longer */
3956} ff_visited_T;
3957
3958/*
3959 * We might have to manage several visited lists during a search.
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00003960 * This is especially needed for the tags option. If tags is set to:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003961 * "./++/tags,./++/TAGS,++/tags" (replace + with *)
3962 * So we have to do 3 searches:
3963 * 1) search from the current files directory downward for the file "tags"
3964 * 2) search from the current files directory downward for the file "TAGS"
3965 * 3) search from Vims current directory downwards for the file "tags"
3966 * As you can see, the first and the third search are for the same file, so for
3967 * the third search we can use the visited list of the first search. For the
3968 * second search we must start from a empty visited list.
3969 * The struct ff_visited_list_hdr is used to manage a linked list of already
3970 * visited lists.
3971 */
3972typedef struct ff_visited_list_hdr
3973{
3974 struct ff_visited_list_hdr *ffvl_next;
3975
3976 /* the filename the attached visited list is for */
3977 char_u *ffvl_filename;
3978
3979 ff_visited_T *ffvl_visited_list;
3980
3981} ff_visited_list_hdr_T;
3982
3983
3984/*
3985 * '**' can be expanded to several directory levels.
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00003986 * Set the default maximum depth.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003987 */
3988#define FF_MAX_STAR_STAR_EXPAND ((char_u)30)
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00003989
Bram Moolenaar071d4272004-06-13 20:20:40 +00003990/*
3991 * The search context:
3992 * ffsc_stack_ptr: the stack for the dirs to search
3993 * ffsc_visited_list: the currently active visited list
3994 * ffsc_dir_visited_list: the currently active visited list for search dirs
3995 * ffsc_visited_lists_list: the list of all visited lists
3996 * ffsc_dir_visited_lists_list: the list of all visited lists for search dirs
3997 * ffsc_file_to_search: the file to search for
3998 * ffsc_start_dir: the starting directory, if search path was relative
3999 * ffsc_fix_path: the fix part of the given path (without wildcards)
4000 * Needed for upward search.
4001 * ffsc_wc_path: the part of the given path containing wildcards
4002 * ffsc_level: how many levels of dirs to search downwards
4003 * ffsc_stopdirs_v: array of stop directories for upward search
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004004 * ffsc_find_what: FINDFILE_BOTH, FINDFILE_DIR or FINDFILE_FILE
Bram Moolenaar463ee342010-08-08 18:17:52 +02004005 * ffsc_tagfile: searching for tags file, don't use 'suffixesadd'
Bram Moolenaar071d4272004-06-13 20:20:40 +00004006 */
4007typedef struct ff_search_ctx_T
4008{
4009 ff_stack_T *ffsc_stack_ptr;
4010 ff_visited_list_hdr_T *ffsc_visited_list;
4011 ff_visited_list_hdr_T *ffsc_dir_visited_list;
4012 ff_visited_list_hdr_T *ffsc_visited_lists_list;
4013 ff_visited_list_hdr_T *ffsc_dir_visited_lists_list;
4014 char_u *ffsc_file_to_search;
4015 char_u *ffsc_start_dir;
4016 char_u *ffsc_fix_path;
4017#ifdef FEAT_PATH_EXTRA
4018 char_u *ffsc_wc_path;
4019 int ffsc_level;
4020 char_u **ffsc_stopdirs_v;
4021#endif
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004022 int ffsc_find_what;
Bram Moolenaar463ee342010-08-08 18:17:52 +02004023 int ffsc_tagfile;
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00004024} ff_search_ctx_T;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004025
Bram Moolenaar071d4272004-06-13 20:20:40 +00004026/* locally needed functions */
4027#ifdef FEAT_PATH_EXTRA
4028static int ff_check_visited __ARGS((ff_visited_T **, char_u *, char_u *));
4029#else
4030static int ff_check_visited __ARGS((ff_visited_T **, char_u *));
4031#endif
4032static void vim_findfile_free_visited_list __ARGS((ff_visited_list_hdr_T **list_headp));
4033static void ff_free_visited_list __ARGS((ff_visited_T *vl));
4034static ff_visited_list_hdr_T* ff_get_visited_list __ARGS((char_u *, ff_visited_list_hdr_T **list_headp));
4035#ifdef FEAT_PATH_EXTRA
4036static int ff_wc_equal __ARGS((char_u *s1, char_u *s2));
4037#endif
4038
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004039static void ff_push __ARGS((ff_search_ctx_T *search_ctx, ff_stack_T *stack_ptr));
4040static ff_stack_T *ff_pop __ARGS((ff_search_ctx_T *search_ctx));
4041static void ff_clear __ARGS((ff_search_ctx_T *search_ctx));
4042static void ff_free_stack_element __ARGS((ff_stack_T *stack_ptr));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004043#ifdef FEAT_PATH_EXTRA
4044static ff_stack_T *ff_create_stack_element __ARGS((char_u *, char_u *, int, int));
4045#else
4046static ff_stack_T *ff_create_stack_element __ARGS((char_u *, int, int));
4047#endif
4048#ifdef FEAT_PATH_EXTRA
4049static int ff_path_in_stoplist __ARGS((char_u *, int, char_u **));
4050#endif
4051
Bram Moolenaarb9ba4032011-12-08 17:49:35 +01004052static char_u e_pathtoolong[] = N_("E854: path too long for completion");
4053
Bram Moolenaar071d4272004-06-13 20:20:40 +00004054#if 0
4055/*
4056 * if someone likes findfirst/findnext, here are the functions
4057 * NOT TESTED!!
4058 */
4059
4060static void *ff_fn_search_context = NULL;
4061
4062 char_u *
4063vim_findfirst(path, filename, level)
4064 char_u *path;
4065 char_u *filename;
4066 int level;
4067{
4068 ff_fn_search_context =
4069 vim_findfile_init(path, filename, NULL, level, TRUE, FALSE,
4070 ff_fn_search_context, rel_fname);
4071 if (NULL == ff_fn_search_context)
4072 return NULL;
4073 else
4074 return vim_findnext()
4075}
4076
4077 char_u *
4078vim_findnext()
4079{
4080 char_u *ret = vim_findfile(ff_fn_search_context);
4081
4082 if (NULL == ret)
4083 {
4084 vim_findfile_cleanup(ff_fn_search_context);
4085 ff_fn_search_context = NULL;
4086 }
4087 return ret;
4088}
4089#endif
4090
4091/*
Bram Moolenaare2b590e2010-08-08 18:29:48 +02004092 * Initialization routine for vim_findfile().
Bram Moolenaar071d4272004-06-13 20:20:40 +00004093 *
Bram Moolenaarbe18d102010-05-22 21:37:53 +02004094 * Returns the newly allocated search context or NULL if an error occurred.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004095 *
4096 * Don't forget to clean up by calling vim_findfile_cleanup() if you are done
4097 * with the search context.
4098 *
4099 * Find the file 'filename' in the directory 'path'.
4100 * The parameter 'path' may contain wildcards. If so only search 'level'
4101 * directories deep. The parameter 'level' is the absolute maximum and is
4102 * not related to restricts given to the '**' wildcard. If 'level' is 100
4103 * and you use '**200' vim_findfile() will stop after 100 levels.
4104 *
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004105 * 'filename' cannot contain wildcards! It is used as-is, no backslashes to
4106 * escape special characters.
4107 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00004108 * If 'stopdirs' is not NULL and nothing is found downward, the search is
4109 * restarted on the next higher directory level. This is repeated until the
4110 * start-directory of a search is contained in 'stopdirs'. 'stopdirs' has the
4111 * format ";*<dirname>*\(;<dirname>\)*;\=$".
4112 *
4113 * If the 'path' is relative, the starting dir for the search is either VIM's
4114 * current dir or if the path starts with "./" the current files dir.
Bram Moolenaarbe18d102010-05-22 21:37:53 +02004115 * If the 'path' is absolute, the starting dir is that part of the path before
Bram Moolenaar071d4272004-06-13 20:20:40 +00004116 * the first wildcard.
4117 *
4118 * Upward search is only done on the starting dir.
4119 *
4120 * If 'free_visited' is TRUE the list of already visited files/directories is
4121 * cleared. Set this to FALSE if you just want to search from another
4122 * directory, but want to be sure that no directory from a previous search is
4123 * searched again. This is useful if you search for a file at different places.
4124 * The list of visited files/dirs can also be cleared with the function
4125 * vim_findfile_free_visited().
4126 *
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004127 * Set the parameter 'find_what' to FINDFILE_DIR if you want to search for
4128 * directories only, FINDFILE_FILE for files only, FINDFILE_BOTH for both.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004129 *
4130 * A search context returned by a previous call to vim_findfile_init() can be
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004131 * passed in the parameter "search_ctx_arg". This context is reused and
4132 * reinitialized with the new parameters. The list of already visited
Bram Moolenaar071d4272004-06-13 20:20:40 +00004133 * directories from this context is only deleted if the parameter
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004134 * "free_visited" is true. Be aware that the passed "search_ctx_arg" is freed
4135 * if the reinitialization fails.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004136 *
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004137 * If you don't have a search context from a previous call "search_ctx_arg"
4138 * must be NULL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004139 *
4140 * This function silently ignores a few errors, vim_findfile() will have
4141 * limited functionality then.
4142 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004143 void *
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004144vim_findfile_init(path, filename, stopdirs, level, free_visited, find_what,
4145 search_ctx_arg, tagfile, rel_fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004146 char_u *path;
4147 char_u *filename;
Bram Moolenaare1fbddc2009-05-16 19:07:03 +00004148 char_u *stopdirs UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004149 int level;
4150 int free_visited;
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004151 int find_what;
4152 void *search_ctx_arg;
Bram Moolenaar463ee342010-08-08 18:17:52 +02004153 int tagfile; /* expanding names of tags files */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004154 char_u *rel_fname; /* file name to use for "." */
4155{
4156#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004157 char_u *wc_part;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004158#endif
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004159 ff_stack_T *sptr;
4160 ff_search_ctx_T *search_ctx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004161
4162 /* If a search context is given by the caller, reuse it, else allocate a
4163 * new one.
4164 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004165 if (search_ctx_arg != NULL)
4166 search_ctx = search_ctx_arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004167 else
4168 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004169 search_ctx = (ff_search_ctx_T*)alloc((unsigned)sizeof(ff_search_ctx_T));
4170 if (search_ctx == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004171 goto error_return;
Bram Moolenaar7db5fc82010-05-24 11:59:29 +02004172 vim_memset(search_ctx, 0, sizeof(ff_search_ctx_T));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004173 }
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004174 search_ctx->ffsc_find_what = find_what;
Bram Moolenaar463ee342010-08-08 18:17:52 +02004175 search_ctx->ffsc_tagfile = tagfile;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004176
4177 /* clear the search context, but NOT the visited lists */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004178 ff_clear(search_ctx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004179
4180 /* clear visited list if wanted */
4181 if (free_visited == TRUE)
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004182 vim_findfile_free_visited(search_ctx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004183 else
4184 {
4185 /* Reuse old visited lists. Get the visited list for the given
4186 * filename. If no list for the current filename exists, creates a new
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004187 * one. */
4188 search_ctx->ffsc_visited_list = ff_get_visited_list(filename,
4189 &search_ctx->ffsc_visited_lists_list);
4190 if (search_ctx->ffsc_visited_list == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004191 goto error_return;
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004192 search_ctx->ffsc_dir_visited_list = ff_get_visited_list(filename,
4193 &search_ctx->ffsc_dir_visited_lists_list);
4194 if (search_ctx->ffsc_dir_visited_list == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004195 goto error_return;
4196 }
4197
4198 if (ff_expand_buffer == NULL)
4199 {
4200 ff_expand_buffer = (char_u*)alloc(MAXPATHL);
4201 if (ff_expand_buffer == NULL)
4202 goto error_return;
4203 }
4204
4205 /* Store information on starting dir now if path is relative.
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00004206 * If path is absolute, we do that later. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004207 if (path[0] == '.'
4208 && (vim_ispathsep(path[1]) || path[1] == NUL)
4209 && (!tagfile || vim_strchr(p_cpo, CPO_DOTTAG) == NULL)
4210 && rel_fname != NULL)
4211 {
4212 int len = (int)(gettail(rel_fname) - rel_fname);
4213
4214 if (!vim_isAbsName(rel_fname) && len + 1 < MAXPATHL)
4215 {
4216 /* Make the start dir an absolute path name. */
Bram Moolenaarbbebc852005-07-18 21:47:53 +00004217 vim_strncpy(ff_expand_buffer, rel_fname, len);
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004218 search_ctx->ffsc_start_dir = FullName_save(ff_expand_buffer, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004219 }
4220 else
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004221 search_ctx->ffsc_start_dir = vim_strnsave(rel_fname, len);
4222 if (search_ctx->ffsc_start_dir == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004223 goto error_return;
4224 if (*++path != NUL)
4225 ++path;
4226 }
4227 else if (*path == NUL || !vim_isAbsName(path))
4228 {
4229#ifdef BACKSLASH_IN_FILENAME
4230 /* "c:dir" needs "c:" to be expanded, otherwise use current dir */
4231 if (*path != NUL && path[1] == ':')
4232 {
4233 char_u drive[3];
4234
4235 drive[0] = path[0];
4236 drive[1] = ':';
4237 drive[2] = NUL;
4238 if (vim_FullName(drive, ff_expand_buffer, MAXPATHL, TRUE) == FAIL)
4239 goto error_return;
4240 path += 2;
4241 }
4242 else
4243#endif
4244 if (mch_dirname(ff_expand_buffer, MAXPATHL) == FAIL)
4245 goto error_return;
4246
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004247 search_ctx->ffsc_start_dir = vim_strsave(ff_expand_buffer);
4248 if (search_ctx->ffsc_start_dir == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004249 goto error_return;
4250
4251#ifdef BACKSLASH_IN_FILENAME
4252 /* A path that starts with "/dir" is relative to the drive, not to the
4253 * directory (but not for "//machine/dir"). Only use the drive name. */
4254 if ((*path == '/' || *path == '\\')
4255 && path[1] != path[0]
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004256 && search_ctx->ffsc_start_dir[1] == ':')
4257 search_ctx->ffsc_start_dir[2] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004258#endif
4259 }
4260
4261#ifdef FEAT_PATH_EXTRA
4262 /*
4263 * If stopdirs are given, split them into an array of pointers.
4264 * If this fails (mem allocation), there is no upward search at all or a
4265 * stop directory is not recognized -> continue silently.
4266 * If stopdirs just contains a ";" or is empty,
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004267 * search_ctx->ffsc_stopdirs_v will only contain a NULL pointer. This
Bram Moolenaar071d4272004-06-13 20:20:40 +00004268 * is handled as unlimited upward search. See function
4269 * ff_path_in_stoplist() for details.
4270 */
4271 if (stopdirs != NULL)
4272 {
4273 char_u *walker = stopdirs;
4274 int dircount;
4275
4276 while (*walker == ';')
4277 walker++;
4278
4279 dircount = 1;
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004280 search_ctx->ffsc_stopdirs_v =
4281 (char_u **)alloc((unsigned)sizeof(char_u *));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004282
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004283 if (search_ctx->ffsc_stopdirs_v != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004284 {
4285 do
4286 {
4287 char_u *helper;
4288 void *ptr;
4289
4290 helper = walker;
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004291 ptr = vim_realloc(search_ctx->ffsc_stopdirs_v,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004292 (dircount + 1) * sizeof(char_u *));
4293 if (ptr)
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004294 search_ctx->ffsc_stopdirs_v = ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004295 else
4296 /* ignore, keep what we have and continue */
4297 break;
4298 walker = vim_strchr(walker, ';');
4299 if (walker)
4300 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004301 search_ctx->ffsc_stopdirs_v[dircount-1] =
4302 vim_strnsave(helper, (int)(walker - helper));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004303 walker++;
4304 }
4305 else
4306 /* this might be "", which means ascent till top
4307 * of directory tree.
4308 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004309 search_ctx->ffsc_stopdirs_v[dircount-1] =
4310 vim_strsave(helper);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004311
4312 dircount++;
4313
4314 } while (walker != NULL);
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004315 search_ctx->ffsc_stopdirs_v[dircount-1] = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004316 }
4317 }
4318#endif
4319
4320#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004321 search_ctx->ffsc_level = level;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004322
4323 /* split into:
4324 * -fix path
4325 * -wildcard_stuff (might be NULL)
4326 */
4327 wc_part = vim_strchr(path, '*');
4328 if (wc_part != NULL)
4329 {
4330 int llevel;
4331 int len;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00004332 char *errpt;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004333
4334 /* save the fix part of the path */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004335 search_ctx->ffsc_fix_path = vim_strnsave(path, (int)(wc_part - path));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004336
4337 /*
4338 * copy wc_path and add restricts to the '**' wildcard.
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00004339 * The octet after a '**' is used as a (binary) counter.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004340 * So '**3' is transposed to '**^C' ('^C' is ASCII value 3)
4341 * or '**76' is transposed to '**N'( 'N' is ASCII value 76).
4342 * For EBCDIC you get different character values.
4343 * If no restrict is given after '**' the default is used.
Bram Moolenaar21160b92009-11-11 15:56:10 +00004344 * Due to this technique the path looks awful if you print it as a
Bram Moolenaar071d4272004-06-13 20:20:40 +00004345 * string.
4346 */
4347 len = 0;
4348 while (*wc_part != NUL)
4349 {
Bram Moolenaarb9ba4032011-12-08 17:49:35 +01004350 if (len + 5 >= MAXPATHL)
4351 {
4352 EMSG(_(e_pathtoolong));
4353 break;
4354 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004355 if (STRNCMP(wc_part, "**", 2) == 0)
4356 {
4357 ff_expand_buffer[len++] = *wc_part++;
4358 ff_expand_buffer[len++] = *wc_part++;
4359
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00004360 llevel = strtol((char *)wc_part, &errpt, 10);
4361 if ((char_u *)errpt != wc_part && llevel > 0 && llevel < 255)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004362 ff_expand_buffer[len++] = llevel;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00004363 else if ((char_u *)errpt != wc_part && llevel == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004364 /* restrict is 0 -> remove already added '**' */
4365 len -= 2;
4366 else
4367 ff_expand_buffer[len++] = FF_MAX_STAR_STAR_EXPAND;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00004368 wc_part = (char_u *)errpt;
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00004369 if (*wc_part != NUL && !vim_ispathsep(*wc_part))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004370 {
4371 EMSG2(_("E343: Invalid path: '**[number]' must be at the end of the path or be followed by '%s'."), PATHSEPSTR);
4372 goto error_return;
4373 }
4374 }
4375 else
4376 ff_expand_buffer[len++] = *wc_part++;
4377 }
4378 ff_expand_buffer[len] = NUL;
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004379 search_ctx->ffsc_wc_path = vim_strsave(ff_expand_buffer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004380
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004381 if (search_ctx->ffsc_wc_path == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004382 goto error_return;
4383 }
4384 else
4385#endif
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004386 search_ctx->ffsc_fix_path = vim_strsave(path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004387
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004388 if (search_ctx->ffsc_start_dir == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004389 {
4390 /* store the fix part as startdir.
4391 * This is needed if the parameter path is fully qualified.
4392 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004393 search_ctx->ffsc_start_dir = vim_strsave(search_ctx->ffsc_fix_path);
Bram Moolenaara9d52e32010-07-31 16:44:19 +02004394 if (search_ctx->ffsc_start_dir == NULL)
4395 goto error_return;
4396 search_ctx->ffsc_fix_path[0] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004397 }
4398
4399 /* create an absolute path */
Bram Moolenaarb9ba4032011-12-08 17:49:35 +01004400 if (STRLEN(search_ctx->ffsc_start_dir)
4401 + STRLEN(search_ctx->ffsc_fix_path) + 3 >= MAXPATHL)
4402 {
4403 EMSG(_(e_pathtoolong));
4404 goto error_return;
4405 }
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004406 STRCPY(ff_expand_buffer, search_ctx->ffsc_start_dir);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004407 add_pathsep(ff_expand_buffer);
Bram Moolenaarf4c5fcb2013-07-03 17:14:00 +02004408 {
Bram Moolenaar61214042013-07-04 21:19:33 +02004409 int eb_len = (int)STRLEN(ff_expand_buffer);
4410 char_u *buf = alloc(eb_len
4411 + (int)STRLEN(search_ctx->ffsc_fix_path) + 1);
Bram Moolenaarf4c5fcb2013-07-03 17:14:00 +02004412
4413 STRCPY(buf, ff_expand_buffer);
Bram Moolenaar0f5a5ed2013-07-03 17:51:17 +02004414 STRCPY(buf + eb_len, search_ctx->ffsc_fix_path);
Bram Moolenaarf4c5fcb2013-07-03 17:14:00 +02004415 if (mch_isdir(buf))
4416 {
4417 STRCAT(ff_expand_buffer, search_ctx->ffsc_fix_path);
4418 add_pathsep(ff_expand_buffer);
4419 }
4420#ifdef FEAT_PATH_EXTRA
4421 else
4422 {
Bram Moolenaaree0ee2a2013-07-03 21:19:07 +02004423 char_u *p = gettail(search_ctx->ffsc_fix_path);
Bram Moolenaar5f4c8402014-01-06 06:19:11 +01004424 char_u *wc_path = NULL;
4425 char_u *temp = NULL;
Bram Moolenaarf4c5fcb2013-07-03 17:14:00 +02004426 int len = 0;
4427
Bram Moolenaaree0ee2a2013-07-03 21:19:07 +02004428 if (p > search_ctx->ffsc_fix_path)
Bram Moolenaarf4c5fcb2013-07-03 17:14:00 +02004429 {
Bram Moolenaar61214042013-07-04 21:19:33 +02004430 len = (int)(p - search_ctx->ffsc_fix_path) - 1;
Bram Moolenaarf4c5fcb2013-07-03 17:14:00 +02004431 STRNCAT(ff_expand_buffer, search_ctx->ffsc_fix_path, len);
4432 add_pathsep(ff_expand_buffer);
4433 }
4434 else
Bram Moolenaar61214042013-07-04 21:19:33 +02004435 len = (int)STRLEN(search_ctx->ffsc_fix_path);
Bram Moolenaarf4c5fcb2013-07-03 17:14:00 +02004436
4437 if (search_ctx->ffsc_wc_path != NULL)
4438 {
4439 wc_path = vim_strsave(search_ctx->ffsc_wc_path);
Bram Moolenaar61214042013-07-04 21:19:33 +02004440 temp = alloc((int)(STRLEN(search_ctx->ffsc_wc_path)
Bram Moolenaare8785f22013-07-07 16:15:35 +02004441 + STRLEN(search_ctx->ffsc_fix_path + len)
4442 + 1));
Bram Moolenaarc79a5452015-09-29 12:08:42 +02004443 if (temp == NULL || wc_path == NULL)
4444 {
4445 vim_free(buf);
4446 vim_free(temp);
4447 vim_free(wc_path);
4448 goto error_return;
4449 }
Bram Moolenaarf4c5fcb2013-07-03 17:14:00 +02004450
Bram Moolenaarc79a5452015-09-29 12:08:42 +02004451 STRCPY(temp, search_ctx->ffsc_fix_path + len);
4452 STRCAT(temp, search_ctx->ffsc_wc_path);
4453 vim_free(search_ctx->ffsc_wc_path);
Bram Moolenaarf4c5fcb2013-07-03 17:14:00 +02004454 vim_free(wc_path);
Bram Moolenaarc79a5452015-09-29 12:08:42 +02004455 search_ctx->ffsc_wc_path = temp;
Bram Moolenaarf4c5fcb2013-07-03 17:14:00 +02004456 }
Bram Moolenaarf4c5fcb2013-07-03 17:14:00 +02004457 }
4458#endif
4459 vim_free(buf);
4460 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004461
4462 sptr = ff_create_stack_element(ff_expand_buffer,
4463#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004464 search_ctx->ffsc_wc_path,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004465#endif
4466 level, 0);
4467
4468 if (sptr == NULL)
4469 goto error_return;
4470
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004471 ff_push(search_ctx, sptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004472
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004473 search_ctx->ffsc_file_to_search = vim_strsave(filename);
4474 if (search_ctx->ffsc_file_to_search == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004475 goto error_return;
4476
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004477 return search_ctx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004478
4479error_return:
4480 /*
4481 * We clear the search context now!
4482 * Even when the caller gave us a (perhaps valid) context we free it here,
4483 * as we might have already destroyed it.
4484 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004485 vim_findfile_cleanup(search_ctx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004486 return NULL;
4487}
4488
4489#if defined(FEAT_PATH_EXTRA) || defined(PROTO)
4490/*
4491 * Get the stopdir string. Check that ';' is not escaped.
4492 */
4493 char_u *
4494vim_findfile_stopdir(buf)
4495 char_u *buf;
4496{
4497 char_u *r_ptr = buf;
4498
4499 while (*r_ptr != NUL && *r_ptr != ';')
4500 {
4501 if (r_ptr[0] == '\\' && r_ptr[1] == ';')
4502 {
Bram Moolenaar0b573a52011-07-27 17:31:47 +02004503 /* Overwrite the escape char,
4504 * use STRLEN(r_ptr) to move the trailing '\0'. */
Bram Moolenaar446cb832008-06-24 21:56:24 +00004505 STRMOVE(r_ptr, r_ptr + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004506 r_ptr++;
4507 }
4508 r_ptr++;
4509 }
4510 if (*r_ptr == ';')
4511 {
4512 *r_ptr = 0;
4513 r_ptr++;
4514 }
4515 else if (*r_ptr == NUL)
4516 r_ptr = NULL;
4517 return r_ptr;
4518}
4519#endif
4520
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004521/*
4522 * Clean up the given search context. Can handle a NULL pointer.
4523 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004524 void
4525vim_findfile_cleanup(ctx)
4526 void *ctx;
4527{
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00004528 if (ctx == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004529 return;
4530
Bram Moolenaar071d4272004-06-13 20:20:40 +00004531 vim_findfile_free_visited(ctx);
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004532 ff_clear(ctx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004533 vim_free(ctx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004534}
4535
4536/*
4537 * Find a file in a search context.
4538 * The search context was created with vim_findfile_init() above.
4539 * Return a pointer to an allocated file name or NULL if nothing found.
4540 * To get all matching files call this function until you get NULL.
4541 *
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00004542 * If the passed search_context is NULL, NULL is returned.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004543 *
4544 * The search algorithm is depth first. To change this replace the
4545 * stack with a list (don't forget to leave partly searched directories on the
4546 * top of the list).
4547 */
4548 char_u *
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004549vim_findfile(search_ctx_arg)
4550 void *search_ctx_arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004551{
4552 char_u *file_path;
4553#ifdef FEAT_PATH_EXTRA
4554 char_u *rest_of_wildcards;
4555 char_u *path_end = NULL;
4556#endif
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004557 ff_stack_T *stackp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004558#if defined(FEAT_SEARCHPATH) || defined(FEAT_PATH_EXTRA)
4559 int len;
4560#endif
4561 int i;
4562 char_u *p;
4563#ifdef FEAT_SEARCHPATH
4564 char_u *suf;
4565#endif
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004566 ff_search_ctx_T *search_ctx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004567
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004568 if (search_ctx_arg == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004569 return NULL;
4570
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004571 search_ctx = (ff_search_ctx_T *)search_ctx_arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004572
4573 /*
4574 * filepath is used as buffer for various actions and as the storage to
4575 * return a found filename.
4576 */
4577 if ((file_path = alloc((int)MAXPATHL)) == NULL)
4578 return NULL;
4579
4580#ifdef FEAT_PATH_EXTRA
4581 /* store the end of the start dir -- needed for upward search */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004582 if (search_ctx->ffsc_start_dir != NULL)
4583 path_end = &search_ctx->ffsc_start_dir[
4584 STRLEN(search_ctx->ffsc_start_dir)];
Bram Moolenaar071d4272004-06-13 20:20:40 +00004585#endif
4586
4587#ifdef FEAT_PATH_EXTRA
4588 /* upward search loop */
4589 for (;;)
4590 {
4591#endif
4592 /* downward search loop */
4593 for (;;)
4594 {
4595 /* check if user user wants to stop the search*/
4596 ui_breakcheck();
4597 if (got_int)
4598 break;
4599
4600 /* get directory to work on from stack */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004601 stackp = ff_pop(search_ctx);
4602 if (stackp == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004603 break;
4604
4605 /*
4606 * TODO: decide if we leave this test in
4607 *
4608 * GOOD: don't search a directory(-tree) twice.
4609 * BAD: - check linked list for every new directory entered.
4610 * - check for double files also done below
4611 *
4612 * Here we check if we already searched this directory.
4613 * We already searched a directory if:
4614 * 1) The directory is the same.
4615 * 2) We would use the same wildcard string.
4616 *
4617 * Good if you have links on same directory via several ways
4618 * or you have selfreferences in directories (e.g. SuSE Linux 6.3:
4619 * /etc/rc.d/init.d is linked to /etc/rc.d -> endless loop)
4620 *
4621 * This check is only needed for directories we work on for the
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004622 * first time (hence stackp->ff_filearray == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004623 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004624 if (stackp->ffs_filearray == NULL
4625 && ff_check_visited(&search_ctx->ffsc_dir_visited_list
Bram Moolenaar071d4272004-06-13 20:20:40 +00004626 ->ffvl_visited_list,
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004627 stackp->ffs_fix_path
Bram Moolenaar071d4272004-06-13 20:20:40 +00004628#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004629 , stackp->ffs_wc_path
Bram Moolenaar071d4272004-06-13 20:20:40 +00004630#endif
4631 ) == FAIL)
4632 {
4633#ifdef FF_VERBOSE
4634 if (p_verbose >= 5)
4635 {
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004636 verbose_enter_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004637 smsg((char_u *)"Already Searched: %s (%s)",
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004638 stackp->ffs_fix_path, stackp->ffs_wc_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004639 /* don't overwrite this either */
4640 msg_puts((char_u *)"\n");
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004641 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004642 }
4643#endif
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004644 ff_free_stack_element(stackp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004645 continue;
4646 }
4647#ifdef FF_VERBOSE
4648 else if (p_verbose >= 5)
4649 {
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004650 verbose_enter_scroll();
Bram Moolenaar051b7822005-05-19 21:00:46 +00004651 smsg((char_u *)"Searching: %s (%s)",
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004652 stackp->ffs_fix_path, stackp->ffs_wc_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004653 /* don't overwrite this either */
4654 msg_puts((char_u *)"\n");
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004655 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004656 }
4657#endif
4658
4659 /* check depth */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004660 if (stackp->ffs_level <= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004661 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004662 ff_free_stack_element(stackp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004663 continue;
4664 }
4665
4666 file_path[0] = NUL;
4667
4668 /*
4669 * If no filearray till now expand wildcards
4670 * The function expand_wildcards() can handle an array of paths
4671 * and all possible expands are returned in one array. We use this
4672 * to handle the expansion of '**' into an empty string.
4673 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004674 if (stackp->ffs_filearray == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004675 {
4676 char_u *dirptrs[2];
4677
4678 /* we use filepath to build the path expand_wildcards() should
4679 * expand.
4680 */
4681 dirptrs[0] = file_path;
4682 dirptrs[1] = NULL;
4683
4684 /* if we have a start dir copy it in */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004685 if (!vim_isAbsName(stackp->ffs_fix_path)
4686 && search_ctx->ffsc_start_dir)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004687 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004688 STRCPY(file_path, search_ctx->ffsc_start_dir);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004689 add_pathsep(file_path);
4690 }
4691
4692 /* append the fix part of the search path */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004693 STRCAT(file_path, stackp->ffs_fix_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004694 add_pathsep(file_path);
4695
4696#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004697 rest_of_wildcards = stackp->ffs_wc_path;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004698 if (*rest_of_wildcards != NUL)
4699 {
4700 len = (int)STRLEN(file_path);
4701 if (STRNCMP(rest_of_wildcards, "**", 2) == 0)
4702 {
4703 /* pointer to the restrict byte
4704 * The restrict byte is not a character!
4705 */
4706 p = rest_of_wildcards + 2;
4707
4708 if (*p > 0)
4709 {
4710 (*p)--;
4711 file_path[len++] = '*';
4712 }
4713
4714 if (*p == 0)
4715 {
4716 /* remove '**<numb> from wildcards */
Bram Moolenaar446cb832008-06-24 21:56:24 +00004717 STRMOVE(rest_of_wildcards, rest_of_wildcards + 3);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004718 }
4719 else
4720 rest_of_wildcards += 3;
4721
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004722 if (stackp->ffs_star_star_empty == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004723 {
4724 /* if not done before, expand '**' to empty */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004725 stackp->ffs_star_star_empty = 1;
4726 dirptrs[1] = stackp->ffs_fix_path;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004727 }
4728 }
4729
4730 /*
4731 * Here we copy until the next path separator or the end of
4732 * the path. If we stop at a path separator, there is
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00004733 * still something else left. This is handled below by
Bram Moolenaar071d4272004-06-13 20:20:40 +00004734 * pushing every directory returned from expand_wildcards()
4735 * on the stack again for further search.
4736 */
4737 while (*rest_of_wildcards
4738 && !vim_ispathsep(*rest_of_wildcards))
4739 file_path[len++] = *rest_of_wildcards++;
4740
4741 file_path[len] = NUL;
4742 if (vim_ispathsep(*rest_of_wildcards))
4743 rest_of_wildcards++;
4744 }
4745#endif
4746
4747 /*
4748 * Expand wildcards like "*" and "$VAR".
4749 * If the path is a URL don't try this.
4750 */
4751 if (path_with_url(dirptrs[0]))
4752 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004753 stackp->ffs_filearray = (char_u **)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004754 alloc((unsigned)sizeof(char *));
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004755 if (stackp->ffs_filearray != NULL
4756 && (stackp->ffs_filearray[0]
Bram Moolenaar071d4272004-06-13 20:20:40 +00004757 = vim_strsave(dirptrs[0])) != NULL)
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004758 stackp->ffs_filearray_size = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004759 else
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004760 stackp->ffs_filearray_size = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004761 }
4762 else
Bram Moolenaar0b573a52011-07-27 17:31:47 +02004763 /* Add EW_NOTWILD because the expanded path may contain
4764 * wildcard characters that are to be taken literally.
4765 * This is a bit of a hack. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004766 expand_wildcards((dirptrs[1] == NULL) ? 1 : 2, dirptrs,
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004767 &stackp->ffs_filearray_size,
4768 &stackp->ffs_filearray,
Bram Moolenaar0b573a52011-07-27 17:31:47 +02004769 EW_DIR|EW_ADDSLASH|EW_SILENT|EW_NOTWILD);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004770
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004771 stackp->ffs_filearray_cur = 0;
4772 stackp->ffs_stage = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004773 }
4774#ifdef FEAT_PATH_EXTRA
4775 else
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004776 rest_of_wildcards = &stackp->ffs_wc_path[
4777 STRLEN(stackp->ffs_wc_path)];
Bram Moolenaar071d4272004-06-13 20:20:40 +00004778#endif
4779
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004780 if (stackp->ffs_stage == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004781 {
4782 /* this is the first time we work on this directory */
4783#ifdef FEAT_PATH_EXTRA
4784 if (*rest_of_wildcards == NUL)
4785#endif
4786 {
4787 /*
Bram Moolenaar473de612013-06-08 18:19:48 +02004788 * We don't have further wildcards to expand, so we have to
4789 * check for the final file now.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004790 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004791 for (i = stackp->ffs_filearray_cur;
4792 i < stackp->ffs_filearray_size; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004793 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004794 if (!path_with_url(stackp->ffs_filearray[i])
4795 && !mch_isdir(stackp->ffs_filearray[i]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004796 continue; /* not a directory */
4797
Bram Moolenaar21160b92009-11-11 15:56:10 +00004798 /* prepare the filename to be checked for existence
Bram Moolenaar071d4272004-06-13 20:20:40 +00004799 * below */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004800 STRCPY(file_path, stackp->ffs_filearray[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004801 add_pathsep(file_path);
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004802 STRCAT(file_path, search_ctx->ffsc_file_to_search);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004803
4804 /*
4805 * Try without extra suffix and then with suffixes
4806 * from 'suffixesadd'.
4807 */
4808#ifdef FEAT_SEARCHPATH
4809 len = (int)STRLEN(file_path);
Bram Moolenaar463ee342010-08-08 18:17:52 +02004810 if (search_ctx->ffsc_tagfile)
4811 suf = (char_u *)"";
4812 else
4813 suf = curbuf->b_p_sua;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004814 for (;;)
4815#endif
4816 {
4817 /* if file exists and we didn't already find it */
4818 if ((path_with_url(file_path)
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004819 || (mch_getperm(file_path) >= 0
4820 && (search_ctx->ffsc_find_what
4821 == FINDFILE_BOTH
4822 || ((search_ctx->ffsc_find_what
4823 == FINDFILE_DIR)
4824 == mch_isdir(file_path)))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004825#ifndef FF_VERBOSE
4826 && (ff_check_visited(
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004827 &search_ctx->ffsc_visited_list->ffvl_visited_list,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004828 file_path
4829#ifdef FEAT_PATH_EXTRA
4830 , (char_u *)""
4831#endif
4832 ) == OK)
4833#endif
4834 )
4835 {
4836#ifdef FF_VERBOSE
4837 if (ff_check_visited(
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004838 &search_ctx->ffsc_visited_list->ffvl_visited_list,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004839 file_path
4840#ifdef FEAT_PATH_EXTRA
4841 , (char_u *)""
4842#endif
4843 ) == FAIL)
4844 {
4845 if (p_verbose >= 5)
4846 {
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004847 verbose_enter_scroll();
Bram Moolenaar051b7822005-05-19 21:00:46 +00004848 smsg((char_u *)"Already: %s",
Bram Moolenaar071d4272004-06-13 20:20:40 +00004849 file_path);
4850 /* don't overwrite this either */
4851 msg_puts((char_u *)"\n");
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004852 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004853 }
4854 continue;
4855 }
4856#endif
4857
4858 /* push dir to examine rest of subdirs later */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004859 stackp->ffs_filearray_cur = i + 1;
4860 ff_push(search_ctx, stackp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004861
Bram Moolenaar6bab9fa2009-01-22 20:32:12 +00004862 if (!path_with_url(file_path))
4863 simplify_filename(file_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004864 if (mch_dirname(ff_expand_buffer, MAXPATHL)
4865 == OK)
4866 {
4867 p = shorten_fname(file_path,
4868 ff_expand_buffer);
4869 if (p != NULL)
Bram Moolenaar446cb832008-06-24 21:56:24 +00004870 STRMOVE(file_path, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004871 }
4872#ifdef FF_VERBOSE
4873 if (p_verbose >= 5)
4874 {
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004875 verbose_enter_scroll();
Bram Moolenaar051b7822005-05-19 21:00:46 +00004876 smsg((char_u *)"HIT: %s", file_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004877 /* don't overwrite this either */
4878 msg_puts((char_u *)"\n");
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004879 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004880 }
4881#endif
4882 return file_path;
4883 }
4884
4885#ifdef FEAT_SEARCHPATH
4886 /* Not found or found already, try next suffix. */
4887 if (*suf == NUL)
4888 break;
4889 copy_option_part(&suf, file_path + len,
4890 MAXPATHL - len, ",");
4891#endif
4892 }
4893 }
4894 }
4895#ifdef FEAT_PATH_EXTRA
4896 else
4897 {
4898 /*
4899 * still wildcards left, push the directories for further
4900 * search
4901 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004902 for (i = stackp->ffs_filearray_cur;
4903 i < stackp->ffs_filearray_size; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004904 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004905 if (!mch_isdir(stackp->ffs_filearray[i]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004906 continue; /* not a directory */
4907
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004908 ff_push(search_ctx,
4909 ff_create_stack_element(
4910 stackp->ffs_filearray[i],
4911 rest_of_wildcards,
4912 stackp->ffs_level - 1, 0));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004913 }
4914 }
4915#endif
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004916 stackp->ffs_filearray_cur = 0;
4917 stackp->ffs_stage = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004918 }
4919
4920#ifdef FEAT_PATH_EXTRA
4921 /*
4922 * if wildcards contains '**' we have to descent till we reach the
4923 * leaves of the directory tree.
4924 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004925 if (STRNCMP(stackp->ffs_wc_path, "**", 2) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004926 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004927 for (i = stackp->ffs_filearray_cur;
4928 i < stackp->ffs_filearray_size; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004929 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004930 if (fnamecmp(stackp->ffs_filearray[i],
4931 stackp->ffs_fix_path) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004932 continue; /* don't repush same directory */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004933 if (!mch_isdir(stackp->ffs_filearray[i]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004934 continue; /* not a directory */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004935 ff_push(search_ctx,
4936 ff_create_stack_element(stackp->ffs_filearray[i],
4937 stackp->ffs_wc_path, stackp->ffs_level - 1, 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004938 }
4939 }
4940#endif
4941
4942 /* we are done with the current directory */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004943 ff_free_stack_element(stackp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004944
4945 }
4946
4947#ifdef FEAT_PATH_EXTRA
4948 /* If we reached this, we didn't find anything downwards.
4949 * Let's check if we should do an upward search.
4950 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004951 if (search_ctx->ffsc_start_dir
4952 && search_ctx->ffsc_stopdirs_v != NULL && !got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004953 {
4954 ff_stack_T *sptr;
4955
4956 /* is the last starting directory in the stop list? */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004957 if (ff_path_in_stoplist(search_ctx->ffsc_start_dir,
4958 (int)(path_end - search_ctx->ffsc_start_dir),
4959 search_ctx->ffsc_stopdirs_v) == TRUE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004960 break;
4961
4962 /* cut of last dir */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004963 while (path_end > search_ctx->ffsc_start_dir
4964 && vim_ispathsep(*path_end))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004965 path_end--;
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004966 while (path_end > search_ctx->ffsc_start_dir
4967 && !vim_ispathsep(path_end[-1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004968 path_end--;
4969 *path_end = 0;
4970 path_end--;
4971
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004972 if (*search_ctx->ffsc_start_dir == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004973 break;
4974
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004975 STRCPY(file_path, search_ctx->ffsc_start_dir);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004976 add_pathsep(file_path);
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004977 STRCAT(file_path, search_ctx->ffsc_fix_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004978
4979 /* create a new stack entry */
4980 sptr = ff_create_stack_element(file_path,
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004981 search_ctx->ffsc_wc_path, search_ctx->ffsc_level, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004982 if (sptr == NULL)
4983 break;
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004984 ff_push(search_ctx, sptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004985 }
4986 else
4987 break;
4988 }
4989#endif
4990
4991 vim_free(file_path);
4992 return NULL;
4993}
4994
4995/*
4996 * Free the list of lists of visited files and directories
4997 * Can handle it if the passed search_context is NULL;
4998 */
4999 void
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005000vim_findfile_free_visited(search_ctx_arg)
5001 void *search_ctx_arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005002{
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005003 ff_search_ctx_T *search_ctx;
5004
5005 if (search_ctx_arg == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005006 return;
5007
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005008 search_ctx = (ff_search_ctx_T *)search_ctx_arg;
5009 vim_findfile_free_visited_list(&search_ctx->ffsc_visited_lists_list);
5010 vim_findfile_free_visited_list(&search_ctx->ffsc_dir_visited_lists_list);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005011}
5012
5013 static void
5014vim_findfile_free_visited_list(list_headp)
5015 ff_visited_list_hdr_T **list_headp;
5016{
5017 ff_visited_list_hdr_T *vp;
5018
5019 while (*list_headp != NULL)
5020 {
5021 vp = (*list_headp)->ffvl_next;
5022 ff_free_visited_list((*list_headp)->ffvl_visited_list);
5023
5024 vim_free((*list_headp)->ffvl_filename);
5025 vim_free(*list_headp);
5026 *list_headp = vp;
5027 }
5028 *list_headp = NULL;
5029}
5030
5031 static void
5032ff_free_visited_list(vl)
5033 ff_visited_T *vl;
5034{
5035 ff_visited_T *vp;
5036
5037 while (vl != NULL)
5038 {
5039 vp = vl->ffv_next;
5040#ifdef FEAT_PATH_EXTRA
5041 vim_free(vl->ffv_wc_path);
5042#endif
5043 vim_free(vl);
5044 vl = vp;
5045 }
5046 vl = NULL;
5047}
5048
5049/*
5050 * Returns the already visited list for the given filename. If none is found it
5051 * allocates a new one.
5052 */
5053 static ff_visited_list_hdr_T*
5054ff_get_visited_list(filename, list_headp)
5055 char_u *filename;
5056 ff_visited_list_hdr_T **list_headp;
5057{
5058 ff_visited_list_hdr_T *retptr = NULL;
5059
5060 /* check if a visited list for the given filename exists */
5061 if (*list_headp != NULL)
5062 {
5063 retptr = *list_headp;
5064 while (retptr != NULL)
5065 {
5066 if (fnamecmp(filename, retptr->ffvl_filename) == 0)
5067 {
5068#ifdef FF_VERBOSE
5069 if (p_verbose >= 5)
5070 {
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00005071 verbose_enter_scroll();
Bram Moolenaar051b7822005-05-19 21:00:46 +00005072 smsg((char_u *)"ff_get_visited_list: FOUND list for %s",
Bram Moolenaar071d4272004-06-13 20:20:40 +00005073 filename);
5074 /* don't overwrite this either */
5075 msg_puts((char_u *)"\n");
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00005076 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005077 }
5078#endif
5079 return retptr;
5080 }
5081 retptr = retptr->ffvl_next;
5082 }
5083 }
5084
5085#ifdef FF_VERBOSE
5086 if (p_verbose >= 5)
5087 {
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00005088 verbose_enter_scroll();
Bram Moolenaar051b7822005-05-19 21:00:46 +00005089 smsg((char_u *)"ff_get_visited_list: new list for %s", filename);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005090 /* don't overwrite this either */
5091 msg_puts((char_u *)"\n");
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00005092 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005093 }
5094#endif
5095
5096 /*
5097 * if we reach this we didn't find a list and we have to allocate new list
5098 */
5099 retptr = (ff_visited_list_hdr_T*)alloc((unsigned)sizeof(*retptr));
5100 if (retptr == NULL)
5101 return NULL;
5102
5103 retptr->ffvl_visited_list = NULL;
5104 retptr->ffvl_filename = vim_strsave(filename);
5105 if (retptr->ffvl_filename == NULL)
5106 {
5107 vim_free(retptr);
5108 return NULL;
5109 }
5110 retptr->ffvl_next = *list_headp;
5111 *list_headp = retptr;
5112
5113 return retptr;
5114}
5115
5116#ifdef FEAT_PATH_EXTRA
5117/*
5118 * check if two wildcard paths are equal. Returns TRUE or FALSE.
5119 * They are equal if:
5120 * - both paths are NULL
5121 * - they have the same length
5122 * - char by char comparison is OK
5123 * - the only differences are in the counters behind a '**', so
5124 * '**\20' is equal to '**\24'
5125 */
5126 static int
5127ff_wc_equal(s1, s2)
5128 char_u *s1;
5129 char_u *s2;
5130{
Bram Moolenaarf6470c22015-08-25 16:31:40 +02005131 int i, j;
Bram Moolenaard43f0952015-08-27 22:30:47 +02005132 int c1 = NUL;
5133 int c2 = NUL;
Bram Moolenaard0e2d942013-03-19 18:31:49 +01005134 int prev1 = NUL;
5135 int prev2 = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005136
5137 if (s1 == s2)
5138 return TRUE;
5139
5140 if (s1 == NULL || s2 == NULL)
5141 return FALSE;
5142
Bram Moolenaard43f0952015-08-27 22:30:47 +02005143 for (i = 0, j = 0; s1[i] != NUL && s2[j] != NUL;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005144 {
Bram Moolenaard43f0952015-08-27 22:30:47 +02005145 c1 = PTR2CHAR(s1 + i);
5146 c2 = PTR2CHAR(s2 + j);
Bram Moolenaard0e2d942013-03-19 18:31:49 +01005147
5148 if ((p_fic ? MB_TOLOWER(c1) != MB_TOLOWER(c2) : c1 != c2)
5149 && (prev1 != '*' || prev2 != '*'))
Bram Moolenaard43f0952015-08-27 22:30:47 +02005150 return FALSE;
Bram Moolenaard0e2d942013-03-19 18:31:49 +01005151 prev2 = prev1;
5152 prev1 = c1;
Bram Moolenaarf6470c22015-08-25 16:31:40 +02005153
5154 i += MB_PTR2LEN(s1 + i);
5155 j += MB_PTR2LEN(s2 + j);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005156 }
Bram Moolenaar4d0c7bc2015-09-25 16:38:01 +02005157 return s1[i] == s2[j];
Bram Moolenaar071d4272004-06-13 20:20:40 +00005158}
5159#endif
5160
5161/*
5162 * maintains the list of already visited files and dirs
5163 * returns FAIL if the given file/dir is already in the list
5164 * returns OK if it is newly added
5165 *
5166 * TODO: What to do on memory allocation problems?
5167 * -> return TRUE - Better the file is found several times instead of
5168 * never.
5169 */
5170 static int
5171ff_check_visited(visited_list, fname
5172#ifdef FEAT_PATH_EXTRA
5173 , wc_path
5174#endif
5175 )
5176 ff_visited_T **visited_list;
5177 char_u *fname;
5178#ifdef FEAT_PATH_EXTRA
5179 char_u *wc_path;
5180#endif
5181{
5182 ff_visited_T *vp;
5183#ifdef UNIX
5184 struct stat st;
5185 int url = FALSE;
5186#endif
5187
5188 /* For an URL we only compare the name, otherwise we compare the
5189 * device/inode (unix) or the full path name (not Unix). */
5190 if (path_with_url(fname))
5191 {
Bram Moolenaarbbebc852005-07-18 21:47:53 +00005192 vim_strncpy(ff_expand_buffer, fname, MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005193#ifdef UNIX
5194 url = TRUE;
5195#endif
5196 }
5197 else
5198 {
5199 ff_expand_buffer[0] = NUL;
5200#ifdef UNIX
5201 if (mch_stat((char *)fname, &st) < 0)
5202#else
5203 if (vim_FullName(fname, ff_expand_buffer, MAXPATHL, TRUE) == FAIL)
5204#endif
5205 return FAIL;
5206 }
5207
5208 /* check against list of already visited files */
5209 for (vp = *visited_list; vp != NULL; vp = vp->ffv_next)
5210 {
5211 if (
5212#ifdef UNIX
Bram Moolenaare1fbddc2009-05-16 19:07:03 +00005213 !url ? (vp->ffv_dev_valid && vp->ffv_dev == st.st_dev
5214 && vp->ffv_ino == st.st_ino)
5215 :
Bram Moolenaar071d4272004-06-13 20:20:40 +00005216#endif
5217 fnamecmp(vp->ffv_fname, ff_expand_buffer) == 0
5218 )
5219 {
5220#ifdef FEAT_PATH_EXTRA
5221 /* are the wildcard parts equal */
5222 if (ff_wc_equal(vp->ffv_wc_path, wc_path) == TRUE)
5223#endif
5224 /* already visited */
5225 return FAIL;
5226 }
5227 }
5228
5229 /*
5230 * New file/dir. Add it to the list of visited files/dirs.
5231 */
5232 vp = (ff_visited_T *)alloc((unsigned)(sizeof(ff_visited_T)
5233 + STRLEN(ff_expand_buffer)));
5234
5235 if (vp != NULL)
5236 {
5237#ifdef UNIX
5238 if (!url)
5239 {
Bram Moolenaare1fbddc2009-05-16 19:07:03 +00005240 vp->ffv_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005241 vp->ffv_ino = st.st_ino;
5242 vp->ffv_dev = st.st_dev;
5243 vp->ffv_fname[0] = NUL;
5244 }
5245 else
5246 {
Bram Moolenaare1fbddc2009-05-16 19:07:03 +00005247 vp->ffv_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005248#endif
5249 STRCPY(vp->ffv_fname, ff_expand_buffer);
5250#ifdef UNIX
5251 }
5252#endif
5253#ifdef FEAT_PATH_EXTRA
5254 if (wc_path != NULL)
5255 vp->ffv_wc_path = vim_strsave(wc_path);
5256 else
5257 vp->ffv_wc_path = NULL;
5258#endif
5259
5260 vp->ffv_next = *visited_list;
5261 *visited_list = vp;
5262 }
5263
5264 return OK;
5265}
5266
5267/*
5268 * create stack element from given path pieces
5269 */
5270 static ff_stack_T *
5271ff_create_stack_element(fix_part,
5272#ifdef FEAT_PATH_EXTRA
5273 wc_part,
5274#endif
5275 level, star_star_empty)
5276 char_u *fix_part;
5277#ifdef FEAT_PATH_EXTRA
5278 char_u *wc_part;
5279#endif
5280 int level;
5281 int star_star_empty;
5282{
5283 ff_stack_T *new;
5284
5285 new = (ff_stack_T *)alloc((unsigned)sizeof(ff_stack_T));
5286 if (new == NULL)
5287 return NULL;
5288
5289 new->ffs_prev = NULL;
5290 new->ffs_filearray = NULL;
5291 new->ffs_filearray_size = 0;
5292 new->ffs_filearray_cur = 0;
5293 new->ffs_stage = 0;
5294 new->ffs_level = level;
5295 new->ffs_star_star_empty = star_star_empty;;
5296
5297 /* the following saves NULL pointer checks in vim_findfile */
5298 if (fix_part == NULL)
5299 fix_part = (char_u *)"";
5300 new->ffs_fix_path = vim_strsave(fix_part);
5301
5302#ifdef FEAT_PATH_EXTRA
5303 if (wc_part == NULL)
5304 wc_part = (char_u *)"";
5305 new->ffs_wc_path = vim_strsave(wc_part);
5306#endif
5307
5308 if (new->ffs_fix_path == NULL
5309#ifdef FEAT_PATH_EXTRA
5310 || new->ffs_wc_path == NULL
5311#endif
5312 )
5313 {
5314 ff_free_stack_element(new);
5315 new = NULL;
5316 }
5317
5318 return new;
5319}
5320
5321/*
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005322 * Push a dir on the directory stack.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005323 */
5324 static void
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005325ff_push(search_ctx, stack_ptr)
5326 ff_search_ctx_T *search_ctx;
5327 ff_stack_T *stack_ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005328{
5329 /* check for NULL pointer, not to return an error to the user, but
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005330 * to prevent a crash */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005331 if (stack_ptr != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005332 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005333 stack_ptr->ffs_prev = search_ctx->ffsc_stack_ptr;
5334 search_ctx->ffsc_stack_ptr = stack_ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005335 }
5336}
5337
5338/*
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005339 * Pop a dir from the directory stack.
5340 * Returns NULL if stack is empty.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005341 */
5342 static ff_stack_T *
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005343ff_pop(search_ctx)
5344 ff_search_ctx_T *search_ctx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005345{
5346 ff_stack_T *sptr;
5347
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005348 sptr = search_ctx->ffsc_stack_ptr;
5349 if (search_ctx->ffsc_stack_ptr != NULL)
5350 search_ctx->ffsc_stack_ptr = search_ctx->ffsc_stack_ptr->ffs_prev;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005351
5352 return sptr;
5353}
5354
5355/*
5356 * free the given stack element
5357 */
5358 static void
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005359ff_free_stack_element(stack_ptr)
5360 ff_stack_T *stack_ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005361{
5362 /* vim_free handles possible NULL pointers */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005363 vim_free(stack_ptr->ffs_fix_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005364#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005365 vim_free(stack_ptr->ffs_wc_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005366#endif
5367
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005368 if (stack_ptr->ffs_filearray != NULL)
5369 FreeWild(stack_ptr->ffs_filearray_size, stack_ptr->ffs_filearray);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005370
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005371 vim_free(stack_ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005372}
5373
5374/*
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005375 * Clear the search context, but NOT the visited list.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005376 */
5377 static void
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005378ff_clear(search_ctx)
5379 ff_search_ctx_T *search_ctx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005380{
5381 ff_stack_T *sptr;
5382
5383 /* clear up stack */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005384 while ((sptr = ff_pop(search_ctx)) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005385 ff_free_stack_element(sptr);
5386
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005387 vim_free(search_ctx->ffsc_file_to_search);
5388 vim_free(search_ctx->ffsc_start_dir);
5389 vim_free(search_ctx->ffsc_fix_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005390#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005391 vim_free(search_ctx->ffsc_wc_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005392#endif
5393
5394#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005395 if (search_ctx->ffsc_stopdirs_v != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005396 {
5397 int i = 0;
5398
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005399 while (search_ctx->ffsc_stopdirs_v[i] != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005400 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005401 vim_free(search_ctx->ffsc_stopdirs_v[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005402 i++;
5403 }
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005404 vim_free(search_ctx->ffsc_stopdirs_v);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005405 }
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005406 search_ctx->ffsc_stopdirs_v = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005407#endif
5408
5409 /* reset everything */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005410 search_ctx->ffsc_file_to_search = NULL;
5411 search_ctx->ffsc_start_dir = NULL;
5412 search_ctx->ffsc_fix_path = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005413#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005414 search_ctx->ffsc_wc_path = NULL;
5415 search_ctx->ffsc_level = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005416#endif
5417}
5418
5419#ifdef FEAT_PATH_EXTRA
5420/*
5421 * check if the given path is in the stopdirs
5422 * returns TRUE if yes else FALSE
5423 */
5424 static int
5425ff_path_in_stoplist(path, path_len, stopdirs_v)
5426 char_u *path;
5427 int path_len;
5428 char_u **stopdirs_v;
5429{
5430 int i = 0;
5431
5432 /* eat up trailing path separators, except the first */
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00005433 while (path_len > 1 && vim_ispathsep(path[path_len - 1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005434 path_len--;
5435
5436 /* if no path consider it as match */
5437 if (path_len == 0)
5438 return TRUE;
5439
5440 for (i = 0; stopdirs_v[i] != NULL; i++)
5441 {
5442 if ((int)STRLEN(stopdirs_v[i]) > path_len)
5443 {
5444 /* match for parent directory. So '/home' also matches
5445 * '/home/rks'. Check for PATHSEP in stopdirs_v[i], else
5446 * '/home/r' would also match '/home/rks'
5447 */
5448 if (fnamencmp(stopdirs_v[i], path, path_len) == 0
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00005449 && vim_ispathsep(stopdirs_v[i][path_len]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005450 return TRUE;
5451 }
5452 else
5453 {
5454 if (fnamecmp(stopdirs_v[i], path) == 0)
5455 return TRUE;
5456 }
5457 }
5458 return FALSE;
5459}
5460#endif
5461
5462#if defined(FEAT_SEARCHPATH) || defined(PROTO)
5463/*
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005464 * Find the file name "ptr[len]" in the path. Also finds directory names.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005465 *
5466 * On the first call set the parameter 'first' to TRUE to initialize
5467 * the search. For repeating calls to FALSE.
5468 *
5469 * Repeating calls will return other files called 'ptr[len]' from the path.
5470 *
5471 * Only on the first call 'ptr' and 'len' are used. For repeating calls they
5472 * don't need valid values.
5473 *
5474 * If nothing found on the first call the option FNAME_MESS will issue the
5475 * message:
5476 * 'Can't find file "<file>" in path'
5477 * On repeating calls:
5478 * 'No more file "<file>" found in path'
5479 *
5480 * options:
5481 * FNAME_MESS give error message when not found
5482 *
5483 * Uses NameBuff[]!
5484 *
5485 * Returns an allocated string for the file name. NULL for error.
5486 *
5487 */
5488 char_u *
5489find_file_in_path(ptr, len, options, first, rel_fname)
5490 char_u *ptr; /* file name */
5491 int len; /* length of file name */
5492 int options;
5493 int first; /* use count'th matching file name */
5494 char_u *rel_fname; /* file name searching relative to */
5495{
5496 return find_file_in_path_option(ptr, len, options, first,
5497 *curbuf->b_p_path == NUL ? p_path : curbuf->b_p_path,
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005498 FINDFILE_BOTH, rel_fname, curbuf->b_p_sua);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005499}
5500
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005501static char_u *ff_file_to_find = NULL;
5502static void *fdip_search_ctx = NULL;
5503
5504#if defined(EXITFREE)
5505 static void
5506free_findfile()
5507{
5508 vim_free(ff_file_to_find);
5509 vim_findfile_cleanup(fdip_search_ctx);
5510}
5511#endif
5512
Bram Moolenaar071d4272004-06-13 20:20:40 +00005513/*
5514 * Find the directory name "ptr[len]" in the path.
5515 *
5516 * options:
5517 * FNAME_MESS give error message when not found
Bram Moolenaard45c07a2015-02-27 17:19:10 +01005518 * FNAME_UNESC unescape backslashes.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005519 *
5520 * Uses NameBuff[]!
5521 *
5522 * Returns an allocated string for the file name. NULL for error.
5523 */
5524 char_u *
5525find_directory_in_path(ptr, len, options, rel_fname)
5526 char_u *ptr; /* file name */
5527 int len; /* length of file name */
5528 int options;
5529 char_u *rel_fname; /* file name searching relative to */
5530{
5531 return find_file_in_path_option(ptr, len, options, TRUE, p_cdpath,
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005532 FINDFILE_DIR, rel_fname, (char_u *)"");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005533}
5534
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00005535 char_u *
Bram Moolenaard45c07a2015-02-27 17:19:10 +01005536find_file_in_path_option(ptr, len, options, first, path_option,
5537 find_what, rel_fname, suffixes)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005538 char_u *ptr; /* file name */
5539 int len; /* length of file name */
5540 int options;
5541 int first; /* use count'th matching file name */
5542 char_u *path_option; /* p_path or p_cdpath */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005543 int find_what; /* FINDFILE_FILE, _DIR or _BOTH */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005544 char_u *rel_fname; /* file name we are looking relative to. */
Bram Moolenaar433f7c82006-03-21 21:29:36 +00005545 char_u *suffixes; /* list of suffixes, 'suffixesadd' option */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005546{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005547 static char_u *dir;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005548 static int did_findfile_init = FALSE;
5549 char_u save_char;
5550 char_u *file_name = NULL;
5551 char_u *buf = NULL;
5552 int rel_to_curdir;
5553#ifdef AMIGA
5554 struct Process *proc = (struct Process *)FindTask(0L);
5555 APTR save_winptr = proc->pr_WindowPtr;
5556
5557 /* Avoid a requester here for a volume that doesn't exist. */
5558 proc->pr_WindowPtr = (APTR)-1L;
5559#endif
5560
5561 if (first == TRUE)
5562 {
5563 /* copy file name into NameBuff, expanding environment variables */
5564 save_char = ptr[len];
5565 ptr[len] = NUL;
Bram Moolenaar58adb142016-01-16 21:50:51 +01005566 expand_env_esc(ptr, NameBuff, MAXPATHL, FALSE, TRUE, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005567 ptr[len] = save_char;
5568
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005569 vim_free(ff_file_to_find);
5570 ff_file_to_find = vim_strsave(NameBuff);
5571 if (ff_file_to_find == NULL) /* out of memory */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005572 {
5573 file_name = NULL;
5574 goto theend;
5575 }
Bram Moolenaard45c07a2015-02-27 17:19:10 +01005576 if (options & FNAME_UNESC)
5577 {
5578 /* Change all "\ " to " ". */
5579 for (ptr = ff_file_to_find; *ptr != NUL; ++ptr)
5580 if (ptr[0] == '\\' && ptr[1] == ' ')
5581 mch_memmove(ptr, ptr + 1, STRLEN(ptr));
5582 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005583 }
5584
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005585 rel_to_curdir = (ff_file_to_find[0] == '.'
5586 && (ff_file_to_find[1] == NUL
5587 || vim_ispathsep(ff_file_to_find[1])
5588 || (ff_file_to_find[1] == '.'
5589 && (ff_file_to_find[2] == NUL
5590 || vim_ispathsep(ff_file_to_find[2])))));
5591 if (vim_isAbsName(ff_file_to_find)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005592 /* "..", "../path", "." and "./path": don't use the path_option */
5593 || rel_to_curdir
Bram Moolenaare7fedb62015-12-31 19:07:19 +01005594#if defined(MSWIN) || defined(MSDOS)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005595 /* handle "\tmp" as absolute path */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005596 || vim_ispathsep(ff_file_to_find[0])
Bram Moolenaar21160b92009-11-11 15:56:10 +00005597 /* handle "c:name" as absolute path */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005598 || (ff_file_to_find[0] != NUL && ff_file_to_find[1] == ':')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005599#endif
5600#ifdef AMIGA
5601 /* handle ":tmp" as absolute path */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005602 || ff_file_to_find[0] == ':'
Bram Moolenaar071d4272004-06-13 20:20:40 +00005603#endif
5604 )
5605 {
5606 /*
5607 * Absolute path, no need to use "path_option".
5608 * If this is not a first call, return NULL. We already returned a
5609 * filename on the first call.
5610 */
5611 if (first == TRUE)
5612 {
5613 int l;
5614 int run;
5615
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005616 if (path_with_url(ff_file_to_find))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005617 {
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005618 file_name = vim_strsave(ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005619 goto theend;
5620 }
5621
5622 /* When FNAME_REL flag given first use the directory of the file.
5623 * Otherwise or when this fails use the current directory. */
5624 for (run = 1; run <= 2; ++run)
5625 {
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005626 l = (int)STRLEN(ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005627 if (run == 1
5628 && rel_to_curdir
5629 && (options & FNAME_REL)
5630 && rel_fname != NULL
5631 && STRLEN(rel_fname) + l < MAXPATHL)
5632 {
5633 STRCPY(NameBuff, rel_fname);
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005634 STRCPY(gettail(NameBuff), ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005635 l = (int)STRLEN(NameBuff);
5636 }
5637 else
5638 {
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005639 STRCPY(NameBuff, ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005640 run = 2;
5641 }
5642
5643 /* When the file doesn't exist, try adding parts of
5644 * 'suffixesadd'. */
Bram Moolenaar433f7c82006-03-21 21:29:36 +00005645 buf = suffixes;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005646 for (;;)
5647 {
5648 if (
5649#ifdef DJGPP
5650 /* "C:" by itself will fail for mch_getperm(),
5651 * assume it's always valid. */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005652 (find_what != FINDFILE_FILE && NameBuff[0] != NUL
Bram Moolenaar071d4272004-06-13 20:20:40 +00005653 && NameBuff[1] == ':'
5654 && NameBuff[2] == NUL) ||
5655#endif
5656 (mch_getperm(NameBuff) >= 0
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005657 && (find_what == FINDFILE_BOTH
5658 || ((find_what == FINDFILE_DIR)
5659 == mch_isdir(NameBuff)))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005660 {
5661 file_name = vim_strsave(NameBuff);
5662 goto theend;
5663 }
5664 if (*buf == NUL)
5665 break;
5666 copy_option_part(&buf, NameBuff + l, MAXPATHL - l, ",");
5667 }
5668 }
5669 }
5670 }
5671 else
5672 {
5673 /*
5674 * Loop over all paths in the 'path' or 'cdpath' option.
5675 * When "first" is set, first setup to the start of the option.
5676 * Otherwise continue to find the next match.
5677 */
5678 if (first == TRUE)
5679 {
5680 /* vim_findfile_free_visited can handle a possible NULL pointer */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005681 vim_findfile_free_visited(fdip_search_ctx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005682 dir = path_option;
5683 did_findfile_init = FALSE;
5684 }
5685
5686 for (;;)
5687 {
5688 if (did_findfile_init)
5689 {
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005690 file_name = vim_findfile(fdip_search_ctx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005691 if (file_name != NULL)
5692 break;
5693
5694 did_findfile_init = FALSE;
5695 }
5696 else
5697 {
5698 char_u *r_ptr;
5699
5700 if (dir == NULL || *dir == NUL)
5701 {
5702 /* We searched all paths of the option, now we can
5703 * free the search context. */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005704 vim_findfile_cleanup(fdip_search_ctx);
5705 fdip_search_ctx = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005706 break;
5707 }
5708
5709 if ((buf = alloc((int)(MAXPATHL))) == NULL)
5710 break;
5711
5712 /* copy next path */
5713 buf[0] = 0;
5714 copy_option_part(&dir, buf, MAXPATHL, " ,");
5715
5716#ifdef FEAT_PATH_EXTRA
5717 /* get the stopdir string */
5718 r_ptr = vim_findfile_stopdir(buf);
5719#else
5720 r_ptr = NULL;
5721#endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005722 fdip_search_ctx = vim_findfile_init(buf, ff_file_to_find,
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005723 r_ptr, 100, FALSE, find_what,
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005724 fdip_search_ctx, FALSE, rel_fname);
5725 if (fdip_search_ctx != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005726 did_findfile_init = TRUE;
5727 vim_free(buf);
5728 }
5729 }
5730 }
5731 if (file_name == NULL && (options & FNAME_MESS))
5732 {
5733 if (first == TRUE)
5734 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005735 if (find_what == FINDFILE_DIR)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005736 EMSG2(_("E344: Can't find directory \"%s\" in cdpath"),
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005737 ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005738 else
5739 EMSG2(_("E345: Can't find file \"%s\" in path"),
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005740 ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005741 }
5742 else
5743 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005744 if (find_what == FINDFILE_DIR)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005745 EMSG2(_("E346: No more directory \"%s\" found in cdpath"),
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005746 ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005747 else
5748 EMSG2(_("E347: No more file \"%s\" found in path"),
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005749 ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005750 }
5751 }
5752
5753theend:
5754#ifdef AMIGA
5755 proc->pr_WindowPtr = save_winptr;
5756#endif
5757 return file_name;
5758}
5759
5760#endif /* FEAT_SEARCHPATH */
5761
5762/*
5763 * Change directory to "new_dir". If FEAT_SEARCHPATH is defined, search
5764 * 'cdpath' for relative directory names, otherwise just mch_chdir().
5765 */
5766 int
5767vim_chdir(new_dir)
5768 char_u *new_dir;
5769{
5770#ifndef FEAT_SEARCHPATH
5771 return mch_chdir((char *)new_dir);
5772#else
5773 char_u *dir_name;
5774 int r;
5775
5776 dir_name = find_directory_in_path(new_dir, (int)STRLEN(new_dir),
5777 FNAME_MESS, curbuf->b_ffname);
5778 if (dir_name == NULL)
5779 return -1;
5780 r = mch_chdir((char *)dir_name);
5781 vim_free(dir_name);
5782 return r;
5783#endif
5784}
5785
5786/*
Bram Moolenaarbbebc852005-07-18 21:47:53 +00005787 * Get user name from machine-specific function.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005788 * Returns the user name in "buf[len]".
Bram Moolenaarbbebc852005-07-18 21:47:53 +00005789 * Some systems are quite slow in obtaining the user name (Windows NT), thus
5790 * cache the result.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005791 * Returns OK or FAIL.
5792 */
5793 int
5794get_user_name(buf, len)
5795 char_u *buf;
5796 int len;
5797{
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005798 if (username == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005799 {
5800 if (mch_get_user_name(buf, len) == FAIL)
5801 return FAIL;
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005802 username = vim_strsave(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005803 }
5804 else
Bram Moolenaarbbebc852005-07-18 21:47:53 +00005805 vim_strncpy(buf, username, len - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005806 return OK;
5807}
5808
5809#ifndef HAVE_QSORT
5810/*
5811 * Our own qsort(), for systems that don't have it.
5812 * It's simple and slow. From the K&R C book.
5813 */
5814 void
5815qsort(base, elm_count, elm_size, cmp)
5816 void *base;
5817 size_t elm_count;
5818 size_t elm_size;
5819 int (*cmp) __ARGS((const void *, const void *));
5820{
5821 char_u *buf;
5822 char_u *p1;
5823 char_u *p2;
5824 int i, j;
5825 int gap;
5826
5827 buf = alloc((unsigned)elm_size);
5828 if (buf == NULL)
5829 return;
5830
5831 for (gap = elm_count / 2; gap > 0; gap /= 2)
5832 for (i = gap; i < elm_count; ++i)
5833 for (j = i - gap; j >= 0; j -= gap)
5834 {
5835 /* Compare the elements. */
5836 p1 = (char_u *)base + j * elm_size;
5837 p2 = (char_u *)base + (j + gap) * elm_size;
5838 if ((*cmp)((void *)p1, (void *)p2) <= 0)
5839 break;
Bram Moolenaar21160b92009-11-11 15:56:10 +00005840 /* Exchange the elements. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005841 mch_memmove(buf, p1, elm_size);
5842 mch_memmove(p1, p2, elm_size);
5843 mch_memmove(p2, buf, elm_size);
5844 }
5845
5846 vim_free(buf);
5847}
5848#endif
5849
Bram Moolenaar071d4272004-06-13 20:20:40 +00005850/*
5851 * Sort an array of strings.
5852 */
5853static int
5854#ifdef __BORLANDC__
5855_RTLENTRYF
5856#endif
5857sort_compare __ARGS((const void *s1, const void *s2));
5858
5859 static int
5860#ifdef __BORLANDC__
5861_RTLENTRYF
5862#endif
5863sort_compare(s1, s2)
5864 const void *s1;
5865 const void *s2;
5866{
5867 return STRCMP(*(char **)s1, *(char **)s2);
5868}
5869
5870 void
5871sort_strings(files, count)
5872 char_u **files;
5873 int count;
5874{
5875 qsort((void *)files, (size_t)count, sizeof(char_u *), sort_compare);
5876}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005877
5878#if !defined(NO_EXPANDPATH) || defined(PROTO)
5879/*
5880 * Compare path "p[]" to "q[]".
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005881 * If "maxlen" >= 0 compare "p[maxlen]" to "q[maxlen]"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005882 * Return value like strcmp(p, q), but consider path separators.
5883 */
5884 int
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005885pathcmp(p, q, maxlen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005886 const char *p, *q;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005887 int maxlen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005888{
Bram Moolenaarf6470c22015-08-25 16:31:40 +02005889 int i, j;
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02005890 int c1, c2;
Bram Moolenaar86b68352004-12-27 21:59:20 +00005891 const char *s = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005892
Bram Moolenaarf6470c22015-08-25 16:31:40 +02005893 for (i = 0, j = 0; maxlen < 0 || (i < maxlen && j < maxlen);)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005894 {
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02005895 c1 = PTR2CHAR((char_u *)p + i);
Bram Moolenaarf6470c22015-08-25 16:31:40 +02005896 c2 = PTR2CHAR((char_u *)q + j);
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02005897
Bram Moolenaar071d4272004-06-13 20:20:40 +00005898 /* End of "p": check if "q" also ends or just has a slash. */
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02005899 if (c1 == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005900 {
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02005901 if (c2 == NUL) /* full match */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005902 return 0;
5903 s = q;
Bram Moolenaarf6470c22015-08-25 16:31:40 +02005904 i = j;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005905 break;
5906 }
5907
5908 /* End of "q": check if "p" just has a slash. */
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02005909 if (c2 == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005910 {
5911 s = p;
5912 break;
5913 }
5914
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02005915 if ((p_fic ? MB_TOUPPER(c1) != MB_TOUPPER(c2) : c1 != c2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005916#ifdef BACKSLASH_IN_FILENAME
5917 /* consider '/' and '\\' to be equal */
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02005918 && !((c1 == '/' && c2 == '\\')
5919 || (c1 == '\\' && c2 == '/'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005920#endif
5921 )
5922 {
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02005923 if (vim_ispathsep(c1))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005924 return -1;
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02005925 if (vim_ispathsep(c2))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005926 return 1;
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02005927 return p_fic ? MB_TOUPPER(c1) - MB_TOUPPER(c2)
5928 : c1 - c2; /* no match */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005929 }
Bram Moolenaarf6470c22015-08-25 16:31:40 +02005930
5931 i += MB_PTR2LEN((char_u *)p + i);
5932 j += MB_PTR2LEN((char_u *)q + j);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005933 }
Bram Moolenaarf6470c22015-08-25 16:31:40 +02005934 if (s == NULL) /* "i" or "j" ran into "maxlen" */
Bram Moolenaar86b68352004-12-27 21:59:20 +00005935 return 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005936
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02005937 c1 = PTR2CHAR((char_u *)s + i);
5938 c2 = PTR2CHAR((char_u *)s + i + MB_PTR2LEN((char_u *)s + i));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005939 /* ignore a trailing slash, but not "//" or ":/" */
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02005940 if (c2 == NUL
Bram Moolenaar86b68352004-12-27 21:59:20 +00005941 && i > 0
5942 && !after_pathsep((char_u *)s, (char_u *)s + i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005943#ifdef BACKSLASH_IN_FILENAME
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02005944 && (c1 == '/' || c1 == '\\')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005945#else
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02005946 && c1 == '/'
Bram Moolenaar071d4272004-06-13 20:20:40 +00005947#endif
Bram Moolenaar86b68352004-12-27 21:59:20 +00005948 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00005949 return 0; /* match with trailing slash */
5950 if (s == q)
5951 return -1; /* no match */
5952 return 1;
5953}
5954#endif
5955
Bram Moolenaar071d4272004-06-13 20:20:40 +00005956/*
5957 * The putenv() implementation below comes from the "screen" program.
5958 * Included with permission from Juergen Weigert.
5959 * See pty.c for the copyright notice.
5960 */
5961
5962/*
5963 * putenv -- put value into environment
5964 *
5965 * Usage: i = putenv (string)
5966 * int i;
5967 * char *string;
5968 *
5969 * where string is of the form <name>=<value>.
5970 * Putenv returns 0 normally, -1 on error (not enough core for malloc).
5971 *
5972 * Putenv may need to add a new name into the environment, or to
5973 * associate a value longer than the current value with a particular
5974 * name. So, to make life simpler, putenv() copies your entire
5975 * environment into the heap (i.e. malloc()) from the stack
5976 * (i.e. where it resides when your process is initiated) the first
5977 * time you call it.
5978 *
5979 * (history removed, not very interesting. See the "screen" sources.)
5980 */
5981
5982#if !defined(HAVE_SETENV) && !defined(HAVE_PUTENV)
5983
5984#define EXTRASIZE 5 /* increment to add to env. size */
5985
5986static int envsize = -1; /* current size of environment */
5987#ifndef MACOS_CLASSIC
5988extern
5989#endif
5990 char **environ; /* the global which is your env. */
5991
5992static int findenv __ARGS((char *name)); /* look for a name in the env. */
5993static int newenv __ARGS((void)); /* copy env. from stack to heap */
5994static int moreenv __ARGS((void)); /* incr. size of env. */
5995
5996 int
5997putenv(string)
5998 const char *string;
5999{
6000 int i;
6001 char *p;
6002
6003 if (envsize < 0)
6004 { /* first time putenv called */
6005 if (newenv() < 0) /* copy env. to heap */
6006 return -1;
6007 }
6008
6009 i = findenv((char *)string); /* look for name in environment */
6010
6011 if (i < 0)
6012 { /* name must be added */
6013 for (i = 0; environ[i]; i++);
6014 if (i >= (envsize - 1))
6015 { /* need new slot */
6016 if (moreenv() < 0)
6017 return -1;
6018 }
6019 p = (char *)alloc((unsigned)(strlen(string) + 1));
6020 if (p == NULL) /* not enough core */
6021 return -1;
6022 environ[i + 1] = 0; /* new end of env. */
6023 }
6024 else
6025 { /* name already in env. */
6026 p = vim_realloc(environ[i], strlen(string) + 1);
6027 if (p == NULL)
6028 return -1;
6029 }
6030 sprintf(p, "%s", string); /* copy into env. */
6031 environ[i] = p;
6032
6033 return 0;
6034}
6035
6036 static int
6037findenv(name)
6038 char *name;
6039{
6040 char *namechar, *envchar;
6041 int i, found;
6042
6043 found = 0;
6044 for (i = 0; environ[i] && !found; i++)
6045 {
6046 envchar = environ[i];
6047 namechar = name;
6048 while (*namechar && *namechar != '=' && (*namechar == *envchar))
6049 {
6050 namechar++;
6051 envchar++;
6052 }
6053 found = ((*namechar == '\0' || *namechar == '=') && *envchar == '=');
6054 }
6055 return found ? i - 1 : -1;
6056}
6057
6058 static int
6059newenv()
6060{
6061 char **env, *elem;
6062 int i, esize;
6063
6064#ifdef MACOS
6065 /* for Mac a new, empty environment is created */
6066 i = 0;
6067#else
6068 for (i = 0; environ[i]; i++)
6069 ;
6070#endif
6071 esize = i + EXTRASIZE + 1;
6072 env = (char **)alloc((unsigned)(esize * sizeof (elem)));
6073 if (env == NULL)
6074 return -1;
6075
6076#ifndef MACOS
6077 for (i = 0; environ[i]; i++)
6078 {
6079 elem = (char *)alloc((unsigned)(strlen(environ[i]) + 1));
6080 if (elem == NULL)
6081 return -1;
6082 env[i] = elem;
6083 strcpy(elem, environ[i]);
6084 }
6085#endif
6086
6087 env[i] = 0;
6088 environ = env;
6089 envsize = esize;
6090 return 0;
6091}
6092
6093 static int
6094moreenv()
6095{
6096 int esize;
6097 char **env;
6098
6099 esize = envsize + EXTRASIZE;
6100 env = (char **)vim_realloc((char *)environ, esize * sizeof (*env));
6101 if (env == 0)
6102 return -1;
6103 environ = env;
6104 envsize = esize;
6105 return 0;
6106}
6107
6108# ifdef USE_VIMPTY_GETENV
6109 char_u *
6110vimpty_getenv(string)
6111 const char_u *string;
6112{
6113 int i;
6114 char_u *p;
6115
6116 if (envsize < 0)
6117 return NULL;
6118
6119 i = findenv((char *)string);
6120
6121 if (i < 0)
6122 return NULL;
6123
6124 p = vim_strchr((char_u *)environ[i], '=');
6125 return (p + 1);
6126}
6127# endif
6128
6129#endif /* !defined(HAVE_SETENV) && !defined(HAVE_PUTENV) */
Bram Moolenaarc4a06d32005-06-07 21:04:49 +00006130
Bram Moolenaarc4956c82006-03-12 21:58:43 +00006131#if defined(FEAT_EVAL) || defined(FEAT_SPELL) || defined(PROTO)
Bram Moolenaarc4a06d32005-06-07 21:04:49 +00006132/*
6133 * Return 0 for not writable, 1 for writable file, 2 for a dir which we have
6134 * rights to write into.
6135 */
6136 int
6137filewritable(fname)
6138 char_u *fname;
6139{
6140 int retval = 0;
6141#if defined(UNIX) || defined(VMS)
6142 int perm = 0;
6143#endif
6144
6145#if defined(UNIX) || defined(VMS)
6146 perm = mch_getperm(fname);
6147#endif
6148#ifndef MACOS_CLASSIC /* TODO: get either mch_writable or mch_access */
6149 if (
6150# ifdef WIN3264
6151 mch_writable(fname) &&
6152# else
6153# if defined(UNIX) || defined(VMS)
6154 (perm & 0222) &&
6155# endif
6156# endif
6157 mch_access((char *)fname, W_OK) == 0
6158 )
6159#endif
6160 {
6161 ++retval;
6162 if (mch_isdir(fname))
6163 ++retval;
6164 }
6165 return retval;
6166}
6167#endif
Bram Moolenaar6bab4d12005-06-16 21:53:56 +00006168
6169/*
6170 * Print an error message with one or two "%s" and one or two string arguments.
6171 * This is not in message.c to avoid a warning for prototypes.
6172 */
6173 int
6174emsg3(s, a1, a2)
6175 char_u *s, *a1, *a2;
6176{
Bram Moolenaareb3593b2006-04-22 22:33:57 +00006177 if (emsg_not_now())
Bram Moolenaar6bab4d12005-06-16 21:53:56 +00006178 return TRUE; /* no error messages at the moment */
Bram Moolenaar6f192452007-11-08 19:49:02 +00006179#ifdef HAVE_STDARG_H
6180 vim_snprintf((char *)IObuff, IOSIZE, (char *)s, a1, a2);
6181#else
Bram Moolenaareb3593b2006-04-22 22:33:57 +00006182 vim_snprintf((char *)IObuff, IOSIZE, (char *)s, (long_u)a1, (long_u)a2);
Bram Moolenaar6f192452007-11-08 19:49:02 +00006183#endif
Bram Moolenaar6bab4d12005-06-16 21:53:56 +00006184 return emsg(IObuff);
6185}
6186
6187/*
6188 * Print an error message with one "%ld" and one long int argument.
6189 * This is not in message.c to avoid a warning for prototypes.
6190 */
6191 int
6192emsgn(s, n)
6193 char_u *s;
6194 long n;
6195{
Bram Moolenaareb3593b2006-04-22 22:33:57 +00006196 if (emsg_not_now())
Bram Moolenaar6bab4d12005-06-16 21:53:56 +00006197 return TRUE; /* no error messages at the moment */
6198 vim_snprintf((char *)IObuff, IOSIZE, (char *)s, n);
6199 return emsg(IObuff);
6200}
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006201
6202#if defined(FEAT_SPELL) || defined(FEAT_PERSISTENT_UNDO) || defined(PROTO)
6203/*
6204 * Read 2 bytes from "fd" and turn them into an int, MSB first.
6205 */
6206 int
6207get2c(fd)
6208 FILE *fd;
6209{
Bram Moolenaar9db58062010-05-29 20:33:07 +02006210 int n;
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006211
6212 n = getc(fd);
6213 n = (n << 8) + getc(fd);
6214 return n;
6215}
6216
6217/*
6218 * Read 3 bytes from "fd" and turn them into an int, MSB first.
6219 */
6220 int
6221get3c(fd)
6222 FILE *fd;
6223{
Bram Moolenaar9db58062010-05-29 20:33:07 +02006224 int n;
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006225
6226 n = getc(fd);
6227 n = (n << 8) + getc(fd);
6228 n = (n << 8) + getc(fd);
6229 return n;
6230}
6231
6232/*
6233 * Read 4 bytes from "fd" and turn them into an int, MSB first.
6234 */
6235 int
6236get4c(fd)
6237 FILE *fd;
6238{
Bram Moolenaar95235e62013-09-08 16:07:07 +02006239 /* Use unsigned rather than int otherwise result is undefined
6240 * when left-shift sets the MSB. */
6241 unsigned n;
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006242
Bram Moolenaar95235e62013-09-08 16:07:07 +02006243 n = (unsigned)getc(fd);
6244 n = (n << 8) + (unsigned)getc(fd);
6245 n = (n << 8) + (unsigned)getc(fd);
6246 n = (n << 8) + (unsigned)getc(fd);
6247 return (int)n;
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006248}
6249
6250/*
6251 * Read 8 bytes from "fd" and turn them into a time_t, MSB first.
6252 */
6253 time_t
6254get8ctime(fd)
6255 FILE *fd;
6256{
6257 time_t n = 0;
6258 int i;
6259
6260 for (i = 0; i < 8; ++i)
6261 n = (n << 8) + getc(fd);
6262 return n;
6263}
6264
6265/*
6266 * Read a string of length "cnt" from "fd" into allocated memory.
6267 * Returns NULL when out of memory or unable to read that many bytes.
6268 */
6269 char_u *
6270read_string(fd, cnt)
6271 FILE *fd;
6272 int cnt;
6273{
6274 char_u *str;
6275 int i;
6276 int c;
6277
6278 /* allocate memory */
6279 str = alloc((unsigned)cnt + 1);
6280 if (str != NULL)
6281 {
6282 /* Read the string. Quit when running into the EOF. */
6283 for (i = 0; i < cnt; ++i)
6284 {
6285 c = getc(fd);
6286 if (c == EOF)
6287 {
6288 vim_free(str);
6289 return NULL;
6290 }
6291 str[i] = c;
6292 }
6293 str[i] = NUL;
6294 }
6295 return str;
6296}
6297
6298/*
6299 * Write a number to file "fd", MSB first, in "len" bytes.
6300 */
6301 int
6302put_bytes(fd, nr, len)
6303 FILE *fd;
6304 long_u nr;
6305 int len;
6306{
6307 int i;
6308
6309 for (i = len - 1; i >= 0; --i)
6310 if (putc((int)(nr >> (i * 8)), fd) == EOF)
6311 return FAIL;
6312 return OK;
6313}
6314
6315#ifdef _MSC_VER
6316# if (_MSC_VER <= 1200)
6317/* This line is required for VC6 without the service pack. Also see the
6318 * matching #pragma below. */
6319 # pragma optimize("", off)
6320# endif
6321#endif
6322
6323/*
6324 * Write time_t to file "fd" in 8 bytes.
Bram Moolenaar285bf842016-01-07 22:34:01 +01006325 * Returns FAIL when the write failed.
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006326 */
Bram Moolenaar285bf842016-01-07 22:34:01 +01006327 int
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006328put_time(fd, the_time)
6329 FILE *fd;
6330 time_t the_time;
6331{
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02006332 char_u buf[8];
6333
6334 time_to_bytes(the_time, buf);
Bram Moolenaar285bf842016-01-07 22:34:01 +01006335 return fwrite(buf, (size_t)8, (size_t)1, fd) == 1 ? OK : FAIL;
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02006336}
6337
6338/*
6339 * Write time_t to "buf[8]".
6340 */
6341 void
6342time_to_bytes(the_time, buf)
6343 time_t the_time;
6344 char_u *buf;
6345{
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006346 int c;
6347 int i;
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02006348 int bi = 0;
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006349 time_t wtime = the_time;
6350
6351 /* time_t can be up to 8 bytes in size, more than long_u, thus we
6352 * can't use put_bytes() here.
6353 * Another problem is that ">>" may do an arithmetic shift that keeps the
Bram Moolenaar644fdff2010-05-30 13:26:21 +02006354 * sign. This happens for large values of wtime. A cast to long_u may
6355 * truncate if time_t is 8 bytes. So only use a cast when it is 4 bytes,
6356 * it's safe to assume that long_u is 4 bytes or more and when using 8
6357 * bytes the top bit won't be set. */
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006358 for (i = 7; i >= 0; --i)
6359 {
6360 if (i + 1 > (int)sizeof(time_t))
6361 /* ">>" doesn't work well when shifting more bits than avail */
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02006362 buf[bi++] = 0;
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006363 else
6364 {
Bram Moolenaar644fdff2010-05-30 13:26:21 +02006365#if defined(SIZEOF_TIME_T) && SIZEOF_TIME_T > 4
Bram Moolenaarbbd6afe2010-06-02 20:32:23 +02006366 c = (int)(wtime >> (i * 8));
Bram Moolenaar644fdff2010-05-30 13:26:21 +02006367#else
Bram Moolenaarbbd6afe2010-06-02 20:32:23 +02006368 c = (int)((long_u)wtime >> (i * 8));
Bram Moolenaar644fdff2010-05-30 13:26:21 +02006369#endif
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02006370 buf[bi++] = c;
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006371 }
6372 }
6373}
6374
6375#ifdef _MSC_VER
6376# if (_MSC_VER <= 1200)
6377 # pragma optimize("", on)
6378# endif
6379#endif
6380
6381#endif
Bram Moolenaar10b7b392012-01-10 16:28:45 +01006382
6383#if (defined(FEAT_MBYTE) && defined(FEAT_QUICKFIX)) \
6384 || defined(FEAT_SPELL) || defined(PROTO)
6385/*
6386 * Return TRUE if string "s" contains a non-ASCII character (128 or higher).
6387 * When "s" is NULL FALSE is returned.
6388 */
6389 int
6390has_non_ascii(s)
6391 char_u *s;
6392{
6393 char_u *p;
6394
6395 if (s != NULL)
6396 for (p = s; *p != NUL; ++p)
6397 if (*p >= 128)
6398 return TRUE;
6399 return FALSE;
6400}
6401#endif
Bram Moolenaar93c88e02015-09-15 14:12:05 +02006402
6403#if defined(MESSAGE_QUEUE) || defined(PROTO)
6404/*
6405 * Process messages that have been queued for netbeans or clientserver.
6406 * These functions can call arbitrary vimscript and should only be called when
6407 * it is safe to do so.
6408 */
6409 void
6410parse_queued_messages()
6411{
6412# ifdef FEAT_NETBEANS_INTG
6413 /* Process the queued netbeans messages. */
6414 netbeans_parse_messages();
6415# endif
Bram Moolenaar95346802015-09-15 15:57:29 +02006416# if defined(FEAT_CLIENTSERVER) && defined(FEAT_X11)
Bram Moolenaar93c88e02015-09-15 14:12:05 +02006417 /* Process the queued clientserver messages. */
6418 server_parse_messages();
6419# endif
6420}
6421#endif