blob: 66aeee01b7d06588564050d292d4be8044fa6eb3 [file] [log] [blame]
Bram Moolenaaredf3f972016-08-29 22:49:24 +02001/* vi:set ts=8 sts=4 sw=4 noet:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002 *
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)
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010020static int coladvance2(pos_T *pos, int addspaces, int finetune, colnr_T wcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021
22/*
23 * Return TRUE if in the current mode we need to use virtual.
24 */
25 int
Bram Moolenaar9b578142016-01-30 19:39:49 +010026virtual_active(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +000027{
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
Bram Moolenaar9b578142016-01-30 19:39:49 +010042getviscol(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +000043{
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
Bram Moolenaar9b578142016-01-30 19:39:49 +010054getviscol2(colnr_T col, colnr_T coladd)
Bram Moolenaar071d4272004-06-13 20:20:40 +000055{
56 colnr_T x;
57 pos_T pos;
58
59 pos.lnum = curwin->w_cursor.lnum;
60 pos.col = col;
61 pos.coladd = coladd;
62 getvvcol(curwin, &pos, &x, NULL, NULL);
63 return (int)x;
64}
65
66/*
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +000067 * Go to column "wcol", and add/insert white space as necessary to get the
Bram Moolenaar071d4272004-06-13 20:20:40 +000068 * cursor in that column.
69 * The caller must have saved the cursor line for undo!
70 */
71 int
Bram Moolenaar9b578142016-01-30 19:39:49 +010072coladvance_force(colnr_T wcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +000073{
74 int rc = coladvance2(&curwin->w_cursor, TRUE, FALSE, wcol);
75
76 if (wcol == MAXCOL)
77 curwin->w_valid &= ~VALID_VIRTCOL;
78 else
79 {
80 /* Virtcol is valid */
81 curwin->w_valid |= VALID_VIRTCOL;
82 curwin->w_virtcol = wcol;
83 }
84 return rc;
85}
86#endif
87
88/*
89 * Try to advance the Cursor to the specified screen column.
90 * If virtual editing: fine tune the cursor position.
91 * Note that all virtual positions off the end of a line should share
92 * a curwin->w_cursor.col value (n.b. this is equal to STRLEN(line)),
93 * beginning at coladd 0.
94 *
95 * return OK if desired column is reached, FAIL if not
96 */
97 int
Bram Moolenaar9b578142016-01-30 19:39:49 +010098coladvance(colnr_T wcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +000099{
100 int rc = getvpos(&curwin->w_cursor, wcol);
101
102 if (wcol == MAXCOL || rc == FAIL)
103 curwin->w_valid &= ~VALID_VIRTCOL;
Bram Moolenaardfccaf02004-12-31 20:56:11 +0000104 else if (*ml_get_cursor() != TAB)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000105 {
Bram Moolenaardfccaf02004-12-31 20:56:11 +0000106 /* Virtcol is valid when not on a TAB */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000107 curwin->w_valid |= VALID_VIRTCOL;
108 curwin->w_virtcol = wcol;
109 }
110 return rc;
111}
112
113/*
114 * Return in "pos" the position of the cursor advanced to screen column "wcol".
115 * return OK if desired column is reached, FAIL if not
116 */
117 int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100118getvpos(pos_T *pos, colnr_T wcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000119{
120#ifdef FEAT_VIRTUALEDIT
121 return coladvance2(pos, FALSE, virtual_active(), wcol);
122}
123
124 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100125coladvance2(
126 pos_T *pos,
127 int addspaces, /* change the text to achieve our goal? */
128 int finetune, /* change char offset for the exact column */
129 colnr_T wcol) /* column to move to */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000130{
131#endif
132 int idx;
133 char_u *ptr;
134 char_u *line;
135 colnr_T col = 0;
136 int csize = 0;
137 int one_more;
138#ifdef FEAT_LINEBREAK
139 int head = 0;
140#endif
141
Bram Moolenaarefd2bf12006-03-16 21:41:35 +0000142 one_more = (State & INSERT)
143 || restart_edit != NUL
Bram Moolenaarefd2bf12006-03-16 21:41:35 +0000144 || (VIsual_active && *p_sel != 'o')
Bram Moolenaarefd2bf12006-03-16 21:41:35 +0000145#ifdef FEAT_VIRTUALEDIT
Bram Moolenaar97b2ad32006-03-18 21:40:56 +0000146 || ((ve_flags & VE_ONEMORE) && wcol < MAXCOL)
Bram Moolenaarefd2bf12006-03-16 21:41:35 +0000147#endif
148 ;
Bram Moolenaara1381de2009-11-03 15:44:21 +0000149 line = ml_get_buf(curbuf, pos->lnum, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000150
151 if (wcol >= MAXCOL)
152 {
153 idx = (int)STRLEN(line) - 1 + one_more;
154 col = wcol;
155
156#ifdef FEAT_VIRTUALEDIT
157 if ((addspaces || finetune) && !VIsual_active)
158 {
159 curwin->w_curswant = linetabsize(line) + one_more;
160 if (curwin->w_curswant > 0)
161 --curwin->w_curswant;
162 }
163#endif
164 }
165 else
166 {
167#ifdef FEAT_VIRTUALEDIT
Bram Moolenaar02631462017-09-22 15:20:32 +0200168 int width = curwin->w_width - win_col_off(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000169
Bram Moolenaarebefac62005-12-28 22:39:57 +0000170 if (finetune
Bram Moolenaar071d4272004-06-13 20:20:40 +0000171 && curwin->w_p_wrap
Bram Moolenaar071d4272004-06-13 20:20:40 +0000172 && curwin->w_width != 0
Bram Moolenaar071d4272004-06-13 20:20:40 +0000173 && wcol >= (colnr_T)width)
174 {
175 csize = linetabsize(line);
176 if (csize > 0)
177 csize--;
178
Bram Moolenaarebefac62005-12-28 22:39:57 +0000179 if (wcol / width > (colnr_T)csize / width
180 && ((State & INSERT) == 0 || (int)wcol > csize + 1))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000181 {
182 /* In case of line wrapping don't move the cursor beyond the
Bram Moolenaarebefac62005-12-28 22:39:57 +0000183 * right screen edge. In Insert mode allow going just beyond
184 * the last character (like what happens when typing and
185 * reaching the right window edge). */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000186 wcol = (csize / width + 1) * width - 1;
187 }
188 }
189#endif
190
Bram Moolenaar071d4272004-06-13 20:20:40 +0000191 ptr = line;
192 while (col <= wcol && *ptr != NUL)
193 {
194 /* Count a tab for what it's worth (if list mode not on) */
195#ifdef FEAT_LINEBREAK
Bram Moolenaar597a4222014-06-25 14:39:50 +0200196 csize = win_lbr_chartabsize(curwin, line, ptr, col, &head);
Bram Moolenaar91acfff2017-03-12 19:22:36 +0100197 MB_PTR_ADV(ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000198#else
Bram Moolenaar597a4222014-06-25 14:39:50 +0200199 csize = lbr_chartabsize_adv(line, &ptr, col);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000200#endif
201 col += csize;
202 }
203 idx = (int)(ptr - line);
204 /*
205 * Handle all the special cases. The virtual_active() check
206 * is needed to ensure that a virtual position off the end of
207 * a line has the correct indexing. The one_more comparison
208 * replaces an explicit add of one_more later on.
209 */
210 if (col > wcol || (!virtual_active() && one_more == 0))
211 {
212 idx -= 1;
213# ifdef FEAT_LINEBREAK
214 /* Don't count the chars from 'showbreak'. */
215 csize -= head;
216# endif
217 col -= csize;
218 }
219
220#ifdef FEAT_VIRTUALEDIT
221 if (virtual_active()
222 && addspaces
223 && ((col != wcol && col != wcol + 1) || csize > 1))
224 {
225 /* 'virtualedit' is set: The difference between wcol and col is
226 * filled with spaces. */
227
228 if (line[idx] == NUL)
229 {
230 /* Append spaces */
231 int correct = wcol - col;
232 char_u *newline = alloc(idx + correct + 1);
233 int t;
234
235 if (newline == NULL)
236 return FAIL;
237
238 for (t = 0; t < idx; ++t)
239 newline[t] = line[t];
240
241 for (t = 0; t < correct; ++t)
242 newline[t + idx] = ' ';
243
244 newline[idx + correct] = NUL;
245
246 ml_replace(pos->lnum, newline, FALSE);
247 changed_bytes(pos->lnum, (colnr_T)idx);
248 idx += correct;
249 col = wcol;
250 }
251 else
252 {
253 /* Break a tab */
254 int linelen = (int)STRLEN(line);
255 int correct = wcol - col - csize + 1; /* negative!! */
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000256 char_u *newline;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000257 int t, s = 0;
258 int v;
259
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000260 if (-correct > csize)
261 return FAIL;
262
263 newline = alloc(linelen + csize);
264 if (newline == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000265 return FAIL;
266
267 for (t = 0; t < linelen; t++)
268 {
269 if (t != idx)
270 newline[s++] = line[t];
271 else
272 for (v = 0; v < csize; v++)
273 newline[s++] = ' ';
274 }
275
276 newline[linelen + csize - 1] = NUL;
277
278 ml_replace(pos->lnum, newline, FALSE);
279 changed_bytes(pos->lnum, idx);
280 idx += (csize - 1 + correct);
281 col += correct;
282 }
283 }
284#endif
285 }
286
287 if (idx < 0)
288 pos->col = 0;
289 else
290 pos->col = idx;
291
292#ifdef FEAT_VIRTUALEDIT
293 pos->coladd = 0;
294
295 if (finetune)
296 {
297 if (wcol == MAXCOL)
298 {
299 /* The width of the last character is used to set coladd. */
300 if (!one_more)
301 {
302 colnr_T scol, ecol;
303
304 getvcol(curwin, pos, &scol, NULL, &ecol);
305 pos->coladd = ecol - scol;
306 }
307 }
308 else
309 {
310 int b = (int)wcol - (int)col;
311
312 /* The difference between wcol and col is used to set coladd. */
Bram Moolenaar02631462017-09-22 15:20:32 +0200313 if (b > 0 && b < (MAXCOL - 2 * curwin->w_width))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000314 pos->coladd = b;
315
316 col += b;
317 }
318 }
319#endif
320
321#ifdef FEAT_MBYTE
Bram Moolenaara1381de2009-11-03 15:44:21 +0000322 /* prevent from moving onto a trail byte */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000323 if (has_mbyte)
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200324 mb_adjustpos(curbuf, pos);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000325#endif
326
327 if (col < wcol)
328 return FAIL;
329 return OK;
330}
331
332/*
Bram Moolenaar446cb832008-06-24 21:56:24 +0000333 * Increment the cursor position. See inc() for return values.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000334 */
335 int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100336inc_cursor(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000337{
338 return inc(&curwin->w_cursor);
339}
340
Bram Moolenaar446cb832008-06-24 21:56:24 +0000341/*
342 * Increment the line pointer "lp" crossing line boundaries as necessary.
343 * Return 1 when going to the next line.
344 * Return 2 when moving forward onto a NUL at the end of the line).
345 * Return -1 when at the end of file.
346 * Return 0 otherwise.
347 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000348 int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100349inc(pos_T *lp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000350{
Bram Moolenaar8ada6aa2017-12-19 21:23:21 +0100351 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000352
Bram Moolenaar8ada6aa2017-12-19 21:23:21 +0100353 /* when searching position may be set to end of a line */
354 if (lp->col != MAXCOL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000355 {
Bram Moolenaar8ada6aa2017-12-19 21:23:21 +0100356 p = ml_get_pos(lp);
357 if (*p != NUL) /* still within line, move to next char (may be NUL) */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000358 {
Bram Moolenaar8ada6aa2017-12-19 21:23:21 +0100359#ifdef FEAT_MBYTE
360 if (has_mbyte)
361 {
362 int l = (*mb_ptr2len)(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000363
Bram Moolenaar8ada6aa2017-12-19 21:23:21 +0100364 lp->col += l;
365 return ((p[l] != NUL) ? 0 : 2);
366 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000367#endif
Bram Moolenaar8ada6aa2017-12-19 21:23:21 +0100368 lp->col++;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000369#ifdef FEAT_VIRTUALEDIT
Bram Moolenaar8ada6aa2017-12-19 21:23:21 +0100370 lp->coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000371#endif
Bram Moolenaar8ada6aa2017-12-19 21:23:21 +0100372 return ((p[1] != NUL) ? 0 : 2);
373 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000374 }
375 if (lp->lnum != curbuf->b_ml.ml_line_count) /* there is a next line */
376 {
377 lp->col = 0;
378 lp->lnum++;
379#ifdef FEAT_VIRTUALEDIT
380 lp->coladd = 0;
381#endif
382 return 1;
383 }
384 return -1;
385}
386
387/*
388 * incl(lp): same as inc(), but skip the NUL at the end of non-empty lines
389 */
390 int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100391incl(pos_T *lp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000392{
393 int r;
394
395 if ((r = inc(lp)) >= 1 && lp->col)
396 r = inc(lp);
397 return r;
398}
399
400/*
401 * dec(p)
402 *
403 * Decrement the line pointer 'p' crossing line boundaries as necessary.
404 * Return 1 when crossing a line, -1 when at start of file, 0 otherwise.
405 */
406 int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100407dec_cursor(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000408{
Bram Moolenaarcaa55b62017-01-10 13:51:09 +0100409 return dec(&curwin->w_cursor);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000410}
411
412 int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100413dec(pos_T *lp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000414{
415 char_u *p;
416
417#ifdef FEAT_VIRTUALEDIT
418 lp->coladd = 0;
419#endif
Bram Moolenaar1bd999f2017-12-19 22:25:40 +0100420 if (lp->col == MAXCOL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000421 {
Bram Moolenaar1bd999f2017-12-19 22:25:40 +0100422 /* past end of line */
423 p = ml_get(lp->lnum);
424 lp->col = (colnr_T)STRLEN(p);
425#ifdef FEAT_MBYTE
426 if (has_mbyte)
427 lp->col -= (*mb_head_off)(p, p + lp->col);
428#endif
429 return 0;
430 }
431
432 if (lp->col > 0)
433 {
434 /* still within line */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000435 lp->col--;
436#ifdef FEAT_MBYTE
437 if (has_mbyte)
438 {
439 p = ml_get(lp->lnum);
440 lp->col -= (*mb_head_off)(p, p + lp->col);
441 }
442#endif
443 return 0;
444 }
Bram Moolenaar1bd999f2017-12-19 22:25:40 +0100445
446 if (lp->lnum > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000447 {
Bram Moolenaar1bd999f2017-12-19 22:25:40 +0100448 /* there is a prior line */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000449 lp->lnum--;
450 p = ml_get(lp->lnum);
451 lp->col = (colnr_T)STRLEN(p);
452#ifdef FEAT_MBYTE
453 if (has_mbyte)
454 lp->col -= (*mb_head_off)(p, p + lp->col);
455#endif
456 return 1;
457 }
Bram Moolenaar1bd999f2017-12-19 22:25:40 +0100458
459 /* at start of file */
460 return -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000461}
462
463/*
464 * decl(lp): same as dec(), but skip the NUL at the end of non-empty lines
465 */
466 int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100467decl(pos_T *lp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000468{
469 int r;
470
471 if ((r = dec(lp)) == 1 && lp->col)
472 r = dec(lp);
473 return r;
474}
475
476/*
Bram Moolenaar64486672010-05-16 15:46:46 +0200477 * Get the line number relative to the current cursor position, i.e. the
478 * difference between line number and cursor position. Only look for lines that
479 * can be visible, folded lines don't count.
480 */
481 linenr_T
Bram Moolenaar9b578142016-01-30 19:39:49 +0100482get_cursor_rel_lnum(
483 win_T *wp,
484 linenr_T lnum) /* line number to get the result for */
Bram Moolenaar64486672010-05-16 15:46:46 +0200485{
486 linenr_T cursor = wp->w_cursor.lnum;
487 linenr_T retval = 0;
488
489#ifdef FEAT_FOLDING
490 if (hasAnyFolding(wp))
491 {
492 if (lnum > cursor)
493 {
494 while (lnum > cursor)
495 {
Bram Moolenaar0bd7b3f2013-12-14 12:48:58 +0100496 (void)hasFoldingWin(wp, lnum, &lnum, NULL, TRUE, NULL);
Bram Moolenaar64486672010-05-16 15:46:46 +0200497 /* if lnum and cursor are in the same fold,
498 * now lnum <= cursor */
499 if (lnum > cursor)
500 retval++;
501 lnum--;
502 }
503 }
504 else if (lnum < cursor)
505 {
506 while (lnum < cursor)
507 {
Bram Moolenaar0bd7b3f2013-12-14 12:48:58 +0100508 (void)hasFoldingWin(wp, lnum, NULL, &lnum, TRUE, NULL);
Bram Moolenaar64486672010-05-16 15:46:46 +0200509 /* if lnum and cursor are in the same fold,
510 * now lnum >= cursor */
511 if (lnum < cursor)
512 retval--;
513 lnum++;
514 }
515 }
516 /* else if (lnum == cursor)
517 * retval = 0;
518 */
519 }
520 else
521#endif
522 retval = lnum - cursor;
523
524 return retval;
525}
526
527/*
Bram Moolenaard5824ce2016-09-04 20:35:01 +0200528 * Make sure "pos.lnum" and "pos.col" are valid in "buf".
529 * This allows for the col to be on the NUL byte.
530 */
531 void
532check_pos(buf_T *buf, pos_T *pos)
533{
534 char_u *line;
535 colnr_T len;
536
537 if (pos->lnum > buf->b_ml.ml_line_count)
538 pos->lnum = buf->b_ml.ml_line_count;
539
540 if (pos->col > 0)
541 {
542 line = ml_get_buf(buf, pos->lnum, FALSE);
543 len = (colnr_T)STRLEN(line);
544 if (pos->col > len)
545 pos->col = len;
546 }
547}
548
549/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000550 * Make sure curwin->w_cursor.lnum is valid.
551 */
552 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100553check_cursor_lnum(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000554{
555 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
556 {
557#ifdef FEAT_FOLDING
558 /* If there is a closed fold at the end of the file, put the cursor in
559 * its first line. Otherwise in the last line. */
560 if (!hasFolding(curbuf->b_ml.ml_line_count,
561 &curwin->w_cursor.lnum, NULL))
562#endif
563 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
564 }
565 if (curwin->w_cursor.lnum <= 0)
566 curwin->w_cursor.lnum = 1;
567}
568
569/*
570 * Make sure curwin->w_cursor.col is valid.
571 */
572 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100573check_cursor_col(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000574{
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200575 check_cursor_col_win(curwin);
576}
577
578/*
579 * Make sure win->w_cursor.col is valid.
580 */
581 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100582check_cursor_col_win(win_T *win)
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200583{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000584 colnr_T len;
585#ifdef FEAT_VIRTUALEDIT
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200586 colnr_T oldcol = win->w_cursor.col;
587 colnr_T oldcoladd = win->w_cursor.col + win->w_cursor.coladd;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000588#endif
589
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200590 len = (colnr_T)STRLEN(ml_get_buf(win->w_buffer, win->w_cursor.lnum, FALSE));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000591 if (len == 0)
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200592 win->w_cursor.col = 0;
593 else if (win->w_cursor.col >= len)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000594 {
Bram Moolenaar33f54432008-01-04 20:25:44 +0000595 /* Allow cursor past end-of-line when:
596 * - in Insert mode or restarting Insert mode
597 * - in Visual mode and 'selection' isn't "old"
598 * - 'virtualedit' is set */
Bram Moolenaarebefac62005-12-28 22:39:57 +0000599 if ((State & INSERT) || restart_edit
Bram Moolenaar071d4272004-06-13 20:20:40 +0000600 || (VIsual_active && *p_sel != 'o')
Bram Moolenaar33f54432008-01-04 20:25:44 +0000601#ifdef FEAT_VIRTUALEDIT
602 || (ve_flags & VE_ONEMORE)
603#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000604 || virtual_active())
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200605 win->w_cursor.col = len;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000606 else
Bram Moolenaar87c19962007-04-26 08:54:21 +0000607 {
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200608 win->w_cursor.col = len - 1;
Bram Moolenaar87c19962007-04-26 08:54:21 +0000609#ifdef FEAT_MBYTE
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200610 /* Move the cursor to the head byte. */
Bram Moolenaar87c19962007-04-26 08:54:21 +0000611 if (has_mbyte)
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200612 mb_adjustpos(win->w_buffer, &win->w_cursor);
Bram Moolenaar87c19962007-04-26 08:54:21 +0000613#endif
614 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000615 }
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200616 else if (win->w_cursor.col < 0)
617 win->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000618
619#ifdef FEAT_VIRTUALEDIT
620 /* If virtual editing is on, we can leave the cursor on the old position,
621 * only we must set it to virtual. But don't do it when at the end of the
622 * line. */
623 if (oldcol == MAXCOL)
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200624 win->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000625 else if (ve_flags == VE_ALL)
Bram Moolenaar552c8a52009-03-11 16:29:20 +0000626 {
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200627 if (oldcoladd > win->w_cursor.col)
Bram Moolenaar9aa15692017-08-19 15:05:32 +0200628 {
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200629 win->w_cursor.coladd = oldcoladd - win->w_cursor.col;
Bram Moolenaard41babe2017-08-30 17:01:35 +0200630
631 /* Make sure that coladd is not more than the char width.
632 * Not for the last character, coladd is then used when the cursor
633 * is actually after the last character. */
634 if (win->w_cursor.col + 1 < len && win->w_cursor.coladd > 0)
Bram Moolenaar9aa15692017-08-19 15:05:32 +0200635 {
636 int cs, ce;
637
Bram Moolenaar9aa15692017-08-19 15:05:32 +0200638 getvcol(win, &win->w_cursor, &cs, NULL, &ce);
639 if (win->w_cursor.coladd > ce - cs)
640 win->w_cursor.coladd = ce - cs;
641 }
642 }
Bram Moolenaar552c8a52009-03-11 16:29:20 +0000643 else
644 /* avoid weird number when there is a miscalculation or overflow */
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200645 win->w_cursor.coladd = 0;
Bram Moolenaar552c8a52009-03-11 16:29:20 +0000646 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000647#endif
648}
649
650/*
651 * make sure curwin->w_cursor in on a valid character
652 */
653 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100654check_cursor(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000655{
656 check_cursor_lnum();
657 check_cursor_col();
658}
659
660#if defined(FEAT_TEXTOBJ) || defined(PROTO)
661/*
662 * Make sure curwin->w_cursor is not on the NUL at the end of the line.
663 * Allow it when in Visual mode and 'selection' is not "old".
664 */
665 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100666adjust_cursor_col(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000667{
668 if (curwin->w_cursor.col > 0
Bram Moolenaar071d4272004-06-13 20:20:40 +0000669 && (!VIsual_active || *p_sel == 'o')
Bram Moolenaar071d4272004-06-13 20:20:40 +0000670 && gchar_cursor() == NUL)
671 --curwin->w_cursor.col;
672}
673#endif
674
675/*
676 * When curwin->w_leftcol has changed, adjust the cursor position.
677 * Return TRUE if the cursor was moved.
678 */
679 int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100680leftcol_changed(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000681{
682 long lastcol;
683 colnr_T s, e;
684 int retval = FALSE;
685
686 changed_cline_bef_curs();
Bram Moolenaar02631462017-09-22 15:20:32 +0200687 lastcol = curwin->w_leftcol + curwin->w_width - curwin_col_off() - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000688 validate_virtcol();
689
690 /*
691 * If the cursor is right or left of the screen, move it to last or first
692 * character.
693 */
694 if (curwin->w_virtcol > (colnr_T)(lastcol - p_siso))
695 {
696 retval = TRUE;
697 coladvance((colnr_T)(lastcol - p_siso));
698 }
699 else if (curwin->w_virtcol < curwin->w_leftcol + p_siso)
700 {
701 retval = TRUE;
702 (void)coladvance((colnr_T)(curwin->w_leftcol + p_siso));
703 }
704
705 /*
706 * If the start of the character under the cursor is not on the screen,
707 * advance the cursor one more char. If this fails (last char of the
708 * line) adjust the scrolling.
709 */
710 getvvcol(curwin, &curwin->w_cursor, &s, NULL, &e);
711 if (e > (colnr_T)lastcol)
712 {
713 retval = TRUE;
714 coladvance(s - 1);
715 }
716 else if (s < curwin->w_leftcol)
717 {
718 retval = TRUE;
719 if (coladvance(e + 1) == FAIL) /* there isn't another character */
720 {
721 curwin->w_leftcol = s; /* adjust w_leftcol instead */
722 changed_cline_bef_curs();
723 }
724 }
725
726 if (retval)
727 curwin->w_set_curswant = TRUE;
728 redraw_later(NOT_VALID);
729 return retval;
730}
731
732/**********************************************************************
733 * Various routines dealing with allocation and deallocation of memory.
734 */
735
736#if defined(MEM_PROFILE) || defined(PROTO)
737
738# define MEM_SIZES 8200
739static long_u mem_allocs[MEM_SIZES];
740static long_u mem_frees[MEM_SIZES];
741static long_u mem_allocated;
742static long_u mem_freed;
743static long_u mem_peak;
744static long_u num_alloc;
745static long_u num_freed;
746
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100747static void mem_pre_alloc_s(size_t *sizep);
748static void mem_pre_alloc_l(long_u *sizep);
749static void mem_post_alloc(void **pp, size_t size);
750static void mem_pre_free(void **pp);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000751
752 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100753mem_pre_alloc_s(size_t *sizep)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000754{
755 *sizep += sizeof(size_t);
756}
757
758 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100759mem_pre_alloc_l(long_u *sizep)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000760{
761 *sizep += sizeof(size_t);
762}
763
764 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100765mem_post_alloc(
766 void **pp,
767 size_t size)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000768{
769 if (*pp == NULL)
770 return;
771 size -= sizeof(size_t);
772 *(long_u *)*pp = size;
773 if (size <= MEM_SIZES-1)
774 mem_allocs[size-1]++;
775 else
776 mem_allocs[MEM_SIZES-1]++;
777 mem_allocated += size;
778 if (mem_allocated - mem_freed > mem_peak)
779 mem_peak = mem_allocated - mem_freed;
780 num_alloc++;
781 *pp = (void *)((char *)*pp + sizeof(size_t));
782}
783
784 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100785mem_pre_free(void **pp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000786{
787 long_u size;
788
789 *pp = (void *)((char *)*pp - sizeof(size_t));
790 size = *(size_t *)*pp;
791 if (size <= MEM_SIZES-1)
792 mem_frees[size-1]++;
793 else
794 mem_frees[MEM_SIZES-1]++;
795 mem_freed += size;
796 num_freed++;
797}
798
799/*
800 * called on exit via atexit()
801 */
802 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100803vim_mem_profile_dump(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000804{
805 int i, j;
806
807 printf("\r\n");
808 j = 0;
809 for (i = 0; i < MEM_SIZES - 1; i++)
810 {
811 if (mem_allocs[i] || mem_frees[i])
812 {
813 if (mem_frees[i] > mem_allocs[i])
814 printf("\r\n%s", _("ERROR: "));
815 printf("[%4d / %4lu-%-4lu] ", i + 1, mem_allocs[i], mem_frees[i]);
816 j++;
817 if (j > 3)
818 {
819 j = 0;
820 printf("\r\n");
821 }
822 }
823 }
824
825 i = MEM_SIZES - 1;
826 if (mem_allocs[i])
827 {
828 printf("\r\n");
829 if (mem_frees[i] > mem_allocs[i])
Bram Moolenaar2f1e0502010-08-13 11:18:02 +0200830 puts(_("ERROR: "));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000831 printf("[>%d / %4lu-%-4lu]", i, mem_allocs[i], mem_frees[i]);
832 }
833
834 printf(_("\n[bytes] total alloc-freed %lu-%lu, in use %lu, peak use %lu\n"),
835 mem_allocated, mem_freed, mem_allocated - mem_freed, mem_peak);
836 printf(_("[calls] total re/malloc()'s %lu, total free()'s %lu\n\n"),
837 num_alloc, num_freed);
838}
839
840#endif /* MEM_PROFILE */
841
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +0100842#ifdef FEAT_EVAL
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100843static int alloc_does_fail(long_u size);
Bram Moolenaara260b872016-01-15 20:48:22 +0100844
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +0100845 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100846alloc_does_fail(long_u size)
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +0100847{
848 if (alloc_fail_countdown == 0)
849 {
850 if (--alloc_fail_repeat <= 0)
851 alloc_fail_id = 0;
Bram Moolenaara260b872016-01-15 20:48:22 +0100852 do_outofmem_msg(size);
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +0100853 return TRUE;
854 }
855 --alloc_fail_countdown;
856 return FALSE;
857}
858#endif
859
Bram Moolenaar071d4272004-06-13 20:20:40 +0000860/*
861 * Some memory is reserved for error messages and for being able to
862 * call mf_release_all(), which needs some memory for mf_trans_add().
863 */
Bram Moolenaar48e330a2016-02-23 14:53:34 +0100864#define KEEP_ROOM (2 * 8192L)
Bram Moolenaar11b73d62012-06-29 15:51:30 +0200865#define KEEP_ROOM_KB (KEEP_ROOM / 1024L)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000866
867/*
Bram Moolenaar2a329742008-04-01 12:53:43 +0000868 * Note: if unsigned is 16 bits we can only allocate up to 64K with alloc().
Bram Moolenaar071d4272004-06-13 20:20:40 +0000869 * Use lalloc for larger blocks.
870 */
871 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +0100872alloc(unsigned size)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000873{
874 return (lalloc((long_u)size, TRUE));
875}
876
877/*
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +0100878 * alloc() with an ID for alloc_fail().
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +0100879 */
880 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +0100881alloc_id(unsigned size, alloc_id_T id UNUSED)
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +0100882{
883#ifdef FEAT_EVAL
Bram Moolenaara260b872016-01-15 20:48:22 +0100884 if (alloc_fail_id == id && alloc_does_fail((long_u)size))
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +0100885 return NULL;
886#endif
887 return (lalloc((long_u)size, TRUE));
888}
889
890/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000891 * Allocate memory and set all bytes to zero.
892 */
893 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +0100894alloc_clear(unsigned size)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000895{
896 char_u *p;
897
Bram Moolenaar2f1e0502010-08-13 11:18:02 +0200898 p = lalloc((long_u)size, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000899 if (p != NULL)
900 (void)vim_memset(p, 0, (size_t)size);
901 return p;
902}
903
904/*
905 * alloc() with check for maximum line length
906 */
907 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +0100908alloc_check(unsigned size)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000909{
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200910#if !defined(UNIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000911 if (sizeof(int) == 2 && size > 0x7fff)
912 {
913 /* Don't hide this message */
914 emsg_silent = 0;
915 EMSG(_("E340: Line is becoming too long"));
916 return NULL;
917 }
918#endif
919 return (lalloc((long_u)size, TRUE));
920}
921
922/*
923 * Allocate memory like lalloc() and set all bytes to zero.
924 */
925 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +0100926lalloc_clear(long_u size, int message)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000927{
928 char_u *p;
929
930 p = (lalloc(size, message));
931 if (p != NULL)
932 (void)vim_memset(p, 0, (size_t)size);
933 return p;
934}
935
936/*
937 * Low level memory allocation function.
938 * This is used often, KEEP IT FAST!
939 */
940 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +0100941lalloc(long_u size, int message)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000942{
943 char_u *p; /* pointer to new storage space */
944 static int releasing = FALSE; /* don't do mf_release_all() recursive */
945 int try_again;
Bram Moolenaar48e330a2016-02-23 14:53:34 +0100946#if defined(HAVE_AVAIL_MEM)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000947 static long_u allocated = 0; /* allocated since last avail check */
948#endif
949
950 /* Safety check for allocating zero bytes */
951 if (size == 0)
952 {
953 /* Don't hide this message */
954 emsg_silent = 0;
Bram Moolenaar95f09602016-11-10 20:01:45 +0100955 IEMSGN(_("E341: Internal error: lalloc(%ld, )"), size);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000956 return NULL;
957 }
958
959#ifdef MEM_PROFILE
960 mem_pre_alloc_l(&size);
961#endif
962
Bram Moolenaar071d4272004-06-13 20:20:40 +0000963 /*
964 * Loop when out of memory: Try to release some memfile blocks and
965 * if some blocks are released call malloc again.
966 */
967 for (;;)
968 {
969 /*
970 * Handle three kind of systems:
971 * 1. No check for available memory: Just return.
972 * 2. Slow check for available memory: call mch_avail_mem() after
973 * allocating KEEP_ROOM amount of memory.
974 * 3. Strict check for available memory: call mch_avail_mem()
975 */
976 if ((p = (char_u *)malloc((size_t)size)) != NULL)
977 {
978#ifndef HAVE_AVAIL_MEM
979 /* 1. No check for available memory: Just return. */
980 goto theend;
981#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000982 /* 2. Slow check for available memory: call mch_avail_mem() after
983 * allocating (KEEP_ROOM / 2) amount of memory. */
984 allocated += size;
985 if (allocated < KEEP_ROOM / 2)
986 goto theend;
987 allocated = 0;
Bram Moolenaar48e330a2016-02-23 14:53:34 +0100988
Bram Moolenaar071d4272004-06-13 20:20:40 +0000989 /* 3. check for available memory: call mch_avail_mem() */
Bram Moolenaar11b73d62012-06-29 15:51:30 +0200990 if (mch_avail_mem(TRUE) < KEEP_ROOM_KB && !releasing)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000991 {
Bram Moolenaar5a221812008-11-12 12:08:45 +0000992 free((char *)p); /* System is low... no go! */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000993 p = NULL;
994 }
995 else
996 goto theend;
997#endif
998 }
999 /*
1000 * Remember that mf_release_all() is being called to avoid an endless
1001 * loop, because mf_release_all() may call alloc() recursively.
1002 */
1003 if (releasing)
1004 break;
1005 releasing = TRUE;
Bram Moolenaar661b1822005-07-28 22:36:45 +00001006
Bram Moolenaarf2405ed2017-03-16 19:58:25 +01001007 clear_sb_text(TRUE); /* free any scrollback text */
Bram Moolenaar661b1822005-07-28 22:36:45 +00001008 try_again = mf_release_all(); /* release as many blocks as possible */
Bram Moolenaar661b1822005-07-28 22:36:45 +00001009
Bram Moolenaar071d4272004-06-13 20:20:40 +00001010 releasing = FALSE;
1011 if (!try_again)
1012 break;
1013 }
1014
1015 if (message && p == NULL)
1016 do_outofmem_msg(size);
1017
1018theend:
1019#ifdef MEM_PROFILE
1020 mem_post_alloc((void **)&p, (size_t)size);
1021#endif
1022 return p;
1023}
1024
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +01001025/*
1026 * lalloc() with an ID for alloc_fail().
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +01001027 */
1028 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001029lalloc_id(long_u size, int message, alloc_id_T id UNUSED)
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +01001030{
1031#ifdef FEAT_EVAL
Bram Moolenaara260b872016-01-15 20:48:22 +01001032 if (alloc_fail_id == id && alloc_does_fail(size))
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +01001033 return NULL;
1034#endif
1035 return (lalloc((long_u)size, message));
1036}
1037
Bram Moolenaar071d4272004-06-13 20:20:40 +00001038#if defined(MEM_PROFILE) || defined(PROTO)
1039/*
1040 * realloc() with memory profiling.
1041 */
1042 void *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001043mem_realloc(void *ptr, size_t size)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001044{
1045 void *p;
1046
1047 mem_pre_free(&ptr);
1048 mem_pre_alloc_s(&size);
1049
1050 p = realloc(ptr, size);
1051
1052 mem_post_alloc(&p, size);
1053
1054 return p;
1055}
1056#endif
1057
1058/*
1059* Avoid repeating the error message many times (they take 1 second each).
1060* Did_outofmem_msg is reset when a character is read.
1061*/
1062 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001063do_outofmem_msg(long_u size)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001064{
1065 if (!did_outofmem_msg)
1066 {
1067 /* Don't hide this message */
1068 emsg_silent = 0;
Bram Moolenaar79739e12011-10-26 11:41:00 +02001069
1070 /* Must come first to avoid coming back here when printing the error
1071 * message fails, e.g. when setting v:errmsg. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001072 did_outofmem_msg = TRUE;
Bram Moolenaar79739e12011-10-26 11:41:00 +02001073
1074 EMSGN(_("E342: Out of memory! (allocating %lu bytes)"), size);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001075 }
1076}
1077
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001078#if defined(EXITFREE) || defined(PROTO)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001079
1080# if defined(FEAT_SEARCHPATH)
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01001081static void free_findfile(void);
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001082# endif
1083
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001084/*
1085 * Free everything that we allocated.
1086 * Can be used to detect memory leaks, e.g., with ccmalloc.
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001087 * NOTE: This is tricky! Things are freed that functions depend on. Don't be
1088 * surprised if Vim crashes...
1089 * Some things can't be freed, esp. things local to a library function.
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001090 */
1091 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001092free_all_mem(void)
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001093{
1094 buf_T *buf, *nextbuf;
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001095
1096 /* When we cause a crash here it is caught and Vim tries to exit cleanly.
1097 * Don't try freeing everything again. */
Bram Moolenaarb89a25f2016-06-01 23:08:39 +02001098 if (entered_free_all_mem)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001099 return;
Bram Moolenaarb89a25f2016-06-01 23:08:39 +02001100 entered_free_all_mem = TRUE;
Bram Moolenaara9673212016-06-01 22:21:06 +02001101
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001102# ifdef FEAT_AUTOCMD
Bram Moolenaar5d2bae82014-09-19 14:26:36 +02001103 /* Don't want to trigger autocommands from here on. */
1104 block_autocmds();
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001105# endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001106
Bram Moolenaar5bedfc62010-07-20 22:30:01 +02001107 /* Close all tabs and windows. Reset 'equalalways' to avoid redraws. */
1108 p_ea = FALSE;
Bram Moolenaar7d47b6e2006-03-15 22:59:18 +00001109 if (first_tabpage->tp_next != NULL)
1110 do_cmdline_cmd((char_u *)"tabonly!");
Bram Moolenaar95f09602016-11-10 20:01:45 +01001111 if (!ONE_WINDOW)
Bram Moolenaar7d47b6e2006-03-15 22:59:18 +00001112 do_cmdline_cmd((char_u *)"only!");
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00001113
Bram Moolenaarc4956c82006-03-12 21:58:43 +00001114# if defined(FEAT_SPELL)
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001115 /* Free all spell info. */
1116 spell_free_all();
1117# endif
1118
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001119# if defined(FEAT_USR_CMDS)
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001120 /* Clear user commands (before deleting buffers). */
1121 ex_comclear(NULL);
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001122# endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001123
1124# ifdef FEAT_MENU
1125 /* Clear menus. */
1126 do_cmdline_cmd((char_u *)"aunmenu *");
Bram Moolenaar21160b92009-11-11 15:56:10 +00001127# ifdef FEAT_MULTI_LANG
1128 do_cmdline_cmd((char_u *)"menutranslate clear");
1129# endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001130# endif
1131
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001132 /* Clear mappings, abbreviations, breakpoints. */
Bram Moolenaar21160b92009-11-11 15:56:10 +00001133 do_cmdline_cmd((char_u *)"lmapclear");
1134 do_cmdline_cmd((char_u *)"xmapclear");
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001135 do_cmdline_cmd((char_u *)"mapclear");
1136 do_cmdline_cmd((char_u *)"mapclear!");
1137 do_cmdline_cmd((char_u *)"abclear");
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001138# if defined(FEAT_EVAL)
1139 do_cmdline_cmd((char_u *)"breakdel *");
1140# endif
Bram Moolenaar1e498f52005-06-26 22:29:44 +00001141# if defined(FEAT_PROFILE)
1142 do_cmdline_cmd((char_u *)"profdel *");
1143# endif
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00001144# if defined(FEAT_KEYMAP)
1145 do_cmdline_cmd((char_u *)"set keymap=");
1146#endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001147
1148# ifdef FEAT_TITLE
1149 free_titles();
1150# endif
1151# if defined(FEAT_SEARCHPATH)
1152 free_findfile();
1153# endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001154
1155 /* Obviously named calls. */
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001156# if defined(FEAT_AUTOCMD)
1157 free_all_autocmds();
1158# endif
1159 clear_termcodes();
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001160 free_all_marks();
1161 alist_clear(&global_alist);
1162 free_homedir();
Bram Moolenaar24305862012-08-15 14:05:05 +02001163# if defined(FEAT_CMDL_COMPL)
1164 free_users();
1165# endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001166 free_search_patterns();
1167 free_old_sub();
1168 free_last_insert();
1169 free_prev_shellcmd();
1170 free_regexp_stuff();
1171 free_tag_stuff();
1172 free_cd_dir();
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00001173# ifdef FEAT_SIGNS
1174 free_signs();
1175# endif
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001176# ifdef FEAT_EVAL
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001177 set_expr_line(NULL);
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001178# endif
1179# ifdef FEAT_DIFF
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00001180 diff_clear(curtab);
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001181# endif
Bram Moolenaarf2405ed2017-03-16 19:58:25 +01001182 clear_sb_text(TRUE); /* free any scrollback text */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001183
1184 /* Free some global vars. */
1185 vim_free(username);
Bram Moolenaaraf92ee82007-10-07 13:45:08 +00001186# ifdef FEAT_CLIPBOARD
Bram Moolenaar473de612013-06-08 18:19:48 +02001187 vim_regfree(clip_exclude_prog);
Bram Moolenaaraf92ee82007-10-07 13:45:08 +00001188# endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001189 vim_free(last_cmdline);
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001190# ifdef FEAT_CMDHIST
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001191 vim_free(new_last_cmdline);
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001192# endif
Bram Moolenaar238a5642006-02-21 22:12:05 +00001193 set_keep_msg(NULL, 0);
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001194 vim_free(ff_expand_buffer);
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001195
1196 /* Clear cmdline history. */
1197 p_hi = 0;
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001198# ifdef FEAT_CMDHIST
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001199 init_history();
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001200# endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001201
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001202#ifdef FEAT_QUICKFIX
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001203 {
Bram Moolenaarbd1e5d22009-04-29 09:02:44 +00001204 win_T *win;
1205 tabpage_T *tab;
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001206
1207 qf_free_all(NULL);
1208 /* Free all location lists */
Bram Moolenaarbd1e5d22009-04-29 09:02:44 +00001209 FOR_ALL_TAB_WINDOWS(tab, win)
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001210 qf_free_all(win);
1211 }
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001212#endif
1213
1214 /* Close all script inputs. */
1215 close_all_scripts();
1216
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001217 /* Destroy all windows. Must come before freeing buffers. */
1218 win_free_all();
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001219
Bram Moolenaar4f198282017-10-23 21:53:30 +02001220 /* Free all option values. Must come after closing windows. */
1221 free_all_options();
1222
Bram Moolenaar2a329742008-04-01 12:53:43 +00001223 /* Free all buffers. Reset 'autochdir' to avoid accessing things that
1224 * were freed already. */
1225#ifdef FEAT_AUTOCHDIR
1226 p_acd = FALSE;
1227#endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001228 for (buf = firstbuf; buf != NULL; )
1229 {
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001230 bufref_T bufref;
1231
1232 set_bufref(&bufref, buf);
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001233 nextbuf = buf->b_next;
Bram Moolenaar42ec6562012-02-22 14:58:37 +01001234 close_buffer(NULL, buf, DOBUF_WIPE, FALSE);
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001235 if (bufref_valid(&bufref))
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001236 buf = nextbuf; /* didn't work, try next one */
1237 else
1238 buf = firstbuf;
1239 }
1240
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001241#ifdef FEAT_ARABIC
1242 free_cmdline_buf();
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001243#endif
1244
1245 /* Clear registers. */
1246 clear_registers();
1247 ResetRedobuff();
1248 ResetRedobuff();
1249
Bram Moolenaar85c79d32007-02-20 01:59:20 +00001250#if defined(FEAT_CLIENTSERVER) && defined(FEAT_X11)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001251 vim_free(serverDelayedStartName);
1252#endif
1253
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001254 /* highlight info */
1255 free_highlight();
1256
Bram Moolenaar1e498f52005-06-26 22:29:44 +00001257 reset_last_sourcing();
1258
Bram Moolenaar06a89a52006-04-29 22:01:03 +00001259 free_tabpage(first_tabpage);
1260 first_tabpage = NULL;
Bram Moolenaar7d47b6e2006-03-15 22:59:18 +00001261
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001262# ifdef UNIX
1263 /* Machine-specific free. */
1264 mch_free_mem();
1265# endif
1266
1267 /* message history */
1268 for (;;)
1269 if (delete_first_msg() == FAIL)
1270 break;
1271
Bram Moolenaar655da312016-05-28 22:22:34 +02001272# ifdef FEAT_JOB_CHANNEL
1273 channel_free_all();
Bram Moolenaar655da312016-05-28 22:22:34 +02001274# endif
Bram Moolenaar623e2632016-07-30 22:47:56 +02001275#ifdef FEAT_TIMERS
1276 timer_free_all();
1277#endif
Bram Moolenaar437bafe2016-08-01 15:40:54 +02001278# ifdef FEAT_EVAL
1279 /* must be after channel_free_all() with unrefs partials */
1280 eval_clear();
1281# endif
1282# ifdef FEAT_JOB_CHANNEL
1283 /* must be after eval_clear() with unrefs jobs */
1284 job_free_all();
1285# endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001286
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001287 free_termoptions();
1288
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001289 /* screenlines (can't display anything now!) */
1290 free_screenlines();
1291
1292#if defined(USE_XSMP)
1293 xsmp_close();
1294#endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001295#ifdef FEAT_GUI_GTK
1296 gui_mch_free_all();
1297#endif
1298 clear_hl_tables();
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001299
1300 vim_free(IObuff);
1301 vim_free(NameBuff);
1302}
1303#endif
1304
Bram Moolenaar071d4272004-06-13 20:20:40 +00001305/*
Bram Moolenaare980d8a2010-12-08 13:11:21 +01001306 * Copy "string" into newly allocated memory.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001307 */
1308 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001309vim_strsave(char_u *string)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001310{
1311 char_u *p;
1312 unsigned len;
1313
1314 len = (unsigned)STRLEN(string) + 1;
1315 p = alloc(len);
1316 if (p != NULL)
1317 mch_memmove(p, string, (size_t)len);
1318 return p;
1319}
1320
Bram Moolenaare980d8a2010-12-08 13:11:21 +01001321/*
1322 * Copy up to "len" bytes of "string" into newly allocated memory and
1323 * terminate with a NUL.
1324 * The allocated memory always has size "len + 1", also when "string" is
1325 * shorter.
1326 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001327 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001328vim_strnsave(char_u *string, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001329{
1330 char_u *p;
1331
1332 p = alloc((unsigned)(len + 1));
1333 if (p != NULL)
1334 {
1335 STRNCPY(p, string, len);
1336 p[len] = NUL;
1337 }
1338 return p;
1339}
1340
Bram Moolenaar071d4272004-06-13 20:20:40 +00001341/*
1342 * Same as vim_strsave(), but any characters found in esc_chars are preceded
1343 * by a backslash.
1344 */
1345 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001346vim_strsave_escaped(char_u *string, char_u *esc_chars)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001347{
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001348 return vim_strsave_escaped_ext(string, esc_chars, '\\', FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001349}
1350
1351/*
1352 * Same as vim_strsave_escaped(), but when "bsl" is TRUE also escape
1353 * characters where rem_backslash() would remove the backslash.
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001354 * Escape the characters with "cc".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001355 */
1356 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001357vim_strsave_escaped_ext(
1358 char_u *string,
1359 char_u *esc_chars,
1360 int cc,
1361 int bsl)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001362{
1363 char_u *p;
1364 char_u *p2;
1365 char_u *escaped_string;
1366 unsigned length;
1367#ifdef FEAT_MBYTE
1368 int l;
1369#endif
1370
1371 /*
1372 * First count the number of backslashes required.
1373 * Then allocate the memory and insert them.
1374 */
1375 length = 1; /* count the trailing NUL */
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 length += l; /* count a multibyte char */
1382 p += l - 1;
1383 continue;
1384 }
1385#endif
1386 if (vim_strchr(esc_chars, *p) != NULL || (bsl && rem_backslash(p)))
1387 ++length; /* count a backslash */
1388 ++length; /* count an ordinary char */
1389 }
1390 escaped_string = alloc(length);
1391 if (escaped_string != NULL)
1392 {
1393 p2 = escaped_string;
1394 for (p = string; *p; p++)
1395 {
1396#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001397 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001398 {
1399 mch_memmove(p2, p, (size_t)l);
1400 p2 += l;
1401 p += l - 1; /* skip multibyte char */
1402 continue;
1403 }
1404#endif
1405 if (vim_strchr(esc_chars, *p) != NULL || (bsl && rem_backslash(p)))
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001406 *p2++ = cc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001407 *p2++ = *p;
1408 }
1409 *p2 = NUL;
1410 }
1411 return escaped_string;
1412}
1413
Bram Moolenaar7693ec62008-07-24 18:29:37 +00001414/*
1415 * Return TRUE when 'shell' has "csh" in the tail.
1416 */
1417 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001418csh_like_shell(void)
Bram Moolenaar7693ec62008-07-24 18:29:37 +00001419{
1420 return (strstr((char *)gettail(p_sh), "csh") != NULL);
1421}
Bram Moolenaar7693ec62008-07-24 18:29:37 +00001422
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001423/*
1424 * Escape "string" for use as a shell argument with system().
Bram Moolenaar21160b92009-11-11 15:56:10 +00001425 * This uses single quotes, except when we know we need to use double quotes
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001426 * (MS-DOS and MS-Windows without 'shellslash' set).
Bram Moolenaarffd66c42008-07-16 20:43:37 +00001427 * Escape a newline, depending on the 'shell' option.
1428 * When "do_special" is TRUE also replace "!", "%", "#" and things starting
1429 * with "<" like "<cfile>".
Bram Moolenaar26df0922014-02-23 23:39:13 +01001430 * When "do_newline" is FALSE do not escape newline unless it is csh shell.
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001431 * Returns the result in allocated memory, NULL if we have run out.
1432 */
1433 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001434vim_strsave_shellescape(char_u *string, int do_special, int do_newline)
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001435{
1436 unsigned length;
1437 char_u *p;
1438 char_u *d;
1439 char_u *escaped_string;
Bram Moolenaar05bb9532008-07-04 09:44:11 +00001440 int l;
Bram Moolenaarffd66c42008-07-16 20:43:37 +00001441 int csh_like;
1442
1443 /* Only csh and similar shells expand '!' within single quotes. For sh and
1444 * the like we must not put a backslash before it, it will be taken
1445 * literally. If do_special is set the '!' will be escaped twice.
1446 * Csh also needs to have "\n" escaped twice when do_special is set. */
Bram Moolenaar7693ec62008-07-24 18:29:37 +00001447 csh_like = csh_like_shell();
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001448
1449 /* First count the number of extra bytes required. */
Bram Moolenaar77f66d62007-02-20 02:16:18 +00001450 length = (unsigned)STRLEN(string) + 3; /* two quotes and a trailing NUL */
Bram Moolenaar91acfff2017-03-12 19:22:36 +01001451 for (p = string; *p != NUL; MB_PTR_ADV(p))
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001452 {
Bram Moolenaarcea912a2016-10-12 14:20:24 +02001453# ifdef WIN32
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001454 if (!p_ssl)
1455 {
1456 if (*p == '"')
1457 ++length; /* " -> "" */
1458 }
1459 else
1460# endif
1461 if (*p == '\'')
1462 length += 3; /* ' => '\'' */
Bram Moolenaar26df0922014-02-23 23:39:13 +01001463 if ((*p == '\n' && (csh_like || do_newline))
1464 || (*p == '!' && (csh_like || do_special)))
Bram Moolenaarffd66c42008-07-16 20:43:37 +00001465 {
1466 ++length; /* insert backslash */
1467 if (csh_like && do_special)
1468 ++length; /* insert backslash */
1469 }
Bram Moolenaar05bb9532008-07-04 09:44:11 +00001470 if (do_special && find_cmdline_var(p, &l) >= 0)
1471 {
1472 ++length; /* insert backslash */
1473 p += l - 1;
1474 }
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001475 }
1476
1477 /* Allocate memory for the result and fill it. */
1478 escaped_string = alloc(length);
1479 if (escaped_string != NULL)
1480 {
1481 d = escaped_string;
1482
1483 /* add opening quote */
Bram Moolenaarcea912a2016-10-12 14:20:24 +02001484# ifdef WIN32
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001485 if (!p_ssl)
1486 *d++ = '"';
1487 else
1488# endif
1489 *d++ = '\'';
1490
1491 for (p = string; *p != NUL; )
1492 {
Bram Moolenaarcea912a2016-10-12 14:20:24 +02001493# ifdef WIN32
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001494 if (!p_ssl)
1495 {
1496 if (*p == '"')
1497 {
1498 *d++ = '"';
1499 *d++ = '"';
1500 ++p;
1501 continue;
1502 }
1503 }
1504 else
1505# endif
1506 if (*p == '\'')
1507 {
Bram Moolenaar05bb9532008-07-04 09:44:11 +00001508 *d++ = '\'';
1509 *d++ = '\\';
1510 *d++ = '\'';
1511 *d++ = '\'';
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001512 ++p;
1513 continue;
1514 }
Bram Moolenaar26df0922014-02-23 23:39:13 +01001515 if ((*p == '\n' && (csh_like || do_newline))
1516 || (*p == '!' && (csh_like || do_special)))
Bram Moolenaarffd66c42008-07-16 20:43:37 +00001517 {
1518 *d++ = '\\';
1519 if (csh_like && do_special)
1520 *d++ = '\\';
1521 *d++ = *p++;
1522 continue;
1523 }
Bram Moolenaar05bb9532008-07-04 09:44:11 +00001524 if (do_special && find_cmdline_var(p, &l) >= 0)
1525 {
1526 *d++ = '\\'; /* insert backslash */
1527 while (--l >= 0) /* copy the var */
1528 *d++ = *p++;
Bram Moolenaar099d01d2009-11-25 16:14:45 +00001529 continue;
Bram Moolenaar05bb9532008-07-04 09:44:11 +00001530 }
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001531
1532 MB_COPY_CHAR(p, d);
1533 }
1534
1535 /* add terminating quote and finish with a NUL */
Bram Moolenaarcea912a2016-10-12 14:20:24 +02001536# ifdef WIN32
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001537 if (!p_ssl)
1538 *d++ = '"';
1539 else
1540# endif
1541 *d++ = '\'';
1542 *d = NUL;
1543 }
1544
1545 return escaped_string;
1546}
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001547
Bram Moolenaar071d4272004-06-13 20:20:40 +00001548/*
1549 * Like vim_strsave(), but make all characters uppercase.
1550 * This uses ASCII lower-to-upper case translation, language independent.
1551 */
1552 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001553vim_strsave_up(char_u *string)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001554{
1555 char_u *p1;
1556
1557 p1 = vim_strsave(string);
1558 vim_strup(p1);
1559 return p1;
1560}
1561
1562/*
1563 * Like vim_strnsave(), but make all characters uppercase.
1564 * This uses ASCII lower-to-upper case translation, language independent.
1565 */
1566 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001567vim_strnsave_up(char_u *string, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001568{
1569 char_u *p1;
1570
1571 p1 = vim_strnsave(string, len);
1572 vim_strup(p1);
1573 return p1;
1574}
1575
1576/*
1577 * ASCII lower-to-upper case translation, language independent.
1578 */
1579 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001580vim_strup(
1581 char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001582{
1583 char_u *p2;
1584 int c;
1585
1586 if (p != NULL)
1587 {
1588 p2 = p;
1589 while ((c = *p2) != NUL)
1590#ifdef EBCDIC
1591 *p2++ = isalpha(c) ? toupper(c) : c;
1592#else
1593 *p2++ = (c < 'a' || c > 'z') ? c : (c - 0x20);
1594#endif
1595 }
1596}
1597
Bram Moolenaarc4956c82006-03-12 21:58:43 +00001598#if defined(FEAT_EVAL) || defined(FEAT_SPELL) || defined(PROTO)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001599/*
1600 * Make string "s" all upper-case and return it in allocated memory.
1601 * Handles multi-byte characters as well as possible.
1602 * Returns NULL when out of memory.
1603 */
1604 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001605strup_save(char_u *orig)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001606{
1607 char_u *p;
1608 char_u *res;
1609
1610 res = p = vim_strsave(orig);
1611
1612 if (res != NULL)
1613 while (*p != NUL)
1614 {
1615# ifdef FEAT_MBYTE
1616 int l;
1617
1618 if (enc_utf8)
1619 {
1620 int c, uc;
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001621 int newl;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001622 char_u *s;
1623
1624 c = utf_ptr2char(p);
Bram Moolenaare6640ad2017-12-22 21:06:56 +01001625 l = utf_ptr2len(p);
1626 if (c == 0)
1627 {
1628 /* overlong sequence, use only the first byte */
1629 c = *p;
1630 l = 1;
1631 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001632 uc = utf_toupper(c);
1633
1634 /* Reallocate string when byte count changes. This is rare,
1635 * thus it's OK to do another malloc()/free(). */
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001636 newl = utf_char2len(uc);
1637 if (newl != l)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001638 {
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001639 s = alloc((unsigned)STRLEN(res) + 1 + newl - l);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001640 if (s == NULL)
Bram Moolenaarcc5b22b2017-01-26 22:51:56 +01001641 {
1642 vim_free(res);
1643 return NULL;
1644 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001645 mch_memmove(s, res, p - res);
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001646 STRCPY(s + (p - res) + newl, p + l);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001647 p = s + (p - res);
1648 vim_free(res);
1649 res = s;
1650 }
1651
1652 utf_char2bytes(uc, p);
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001653 p += newl;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001654 }
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001655 else if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001656 p += l; /* skip multi-byte character */
1657 else
1658# endif
1659 {
1660 *p = TOUPPER_LOC(*p); /* note that toupper() can be a macro */
1661 p++;
1662 }
1663 }
1664
1665 return res;
1666}
Bram Moolenaarcc5b22b2017-01-26 22:51:56 +01001667
1668/*
1669 * Make string "s" all lower-case and return it in allocated memory.
1670 * Handles multi-byte characters as well as possible.
1671 * Returns NULL when out of memory.
1672 */
1673 char_u *
1674strlow_save(char_u *orig)
1675{
1676 char_u *p;
1677 char_u *res;
1678
1679 res = p = vim_strsave(orig);
1680
1681 if (res != NULL)
1682 while (*p != NUL)
1683 {
1684# ifdef FEAT_MBYTE
1685 int l;
1686
1687 if (enc_utf8)
1688 {
1689 int c, lc;
1690 int newl;
1691 char_u *s;
1692
1693 c = utf_ptr2char(p);
Bram Moolenaare6640ad2017-12-22 21:06:56 +01001694 l = utf_ptr2len(p);
1695 if (c == 0)
1696 {
1697 /* overlong sequence, use only the first byte */
1698 c = *p;
1699 l = 1;
1700 }
Bram Moolenaarcc5b22b2017-01-26 22:51:56 +01001701 lc = utf_tolower(c);
1702
1703 /* Reallocate string when byte count changes. This is rare,
1704 * thus it's OK to do another malloc()/free(). */
Bram Moolenaarcc5b22b2017-01-26 22:51:56 +01001705 newl = utf_char2len(lc);
1706 if (newl != l)
1707 {
1708 s = alloc((unsigned)STRLEN(res) + 1 + newl - l);
1709 if (s == NULL)
1710 {
1711 vim_free(res);
1712 return NULL;
1713 }
1714 mch_memmove(s, res, p - res);
1715 STRCPY(s + (p - res) + newl, p + l);
1716 p = s + (p - res);
1717 vim_free(res);
1718 res = s;
1719 }
1720
1721 utf_char2bytes(lc, p);
1722 p += newl;
1723 }
1724 else if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
1725 p += l; /* skip multi-byte character */
1726 else
1727# endif
1728 {
1729 *p = TOLOWER_LOC(*p); /* note that tolower() can be a macro */
1730 p++;
1731 }
1732 }
1733
1734 return res;
1735}
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001736#endif
1737
Bram Moolenaar071d4272004-06-13 20:20:40 +00001738/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001739 * delete spaces at the end of a string
1740 */
1741 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001742del_trailing_spaces(char_u *ptr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001743{
1744 char_u *q;
1745
1746 q = ptr + STRLEN(ptr);
Bram Moolenaar1c465442017-03-12 20:10:05 +01001747 while (--q > ptr && VIM_ISWHITE(q[0]) && q[-1] != '\\' && q[-1] != Ctrl_V)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001748 *q = NUL;
1749}
1750
1751/*
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001752 * Like strncpy(), but always terminate the result with one NUL.
Bram Moolenaard042c562005-06-30 22:04:15 +00001753 * "to" must be "len + 1" long!
Bram Moolenaar071d4272004-06-13 20:20:40 +00001754 */
1755 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001756vim_strncpy(char_u *to, char_u *from, size_t len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001757{
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001758 STRNCPY(to, from, len);
1759 to[len] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001760}
1761
1762/*
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02001763 * Like strcat(), but make sure the result fits in "tosize" bytes and is
Bram Moolenaar45600ce2017-01-27 21:54:07 +01001764 * always NUL terminated. "from" and "to" may overlap.
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02001765 */
1766 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001767vim_strcat(char_u *to, char_u *from, size_t tosize)
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02001768{
1769 size_t tolen = STRLEN(to);
1770 size_t fromlen = STRLEN(from);
1771
1772 if (tolen + fromlen + 1 > tosize)
1773 {
1774 mch_memmove(to + tolen, from, tosize - tolen - 1);
1775 to[tosize - 1] = NUL;
1776 }
1777 else
Bram Moolenaar45600ce2017-01-27 21:54:07 +01001778 mch_memmove(to + tolen, from, fromlen + 1);
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02001779}
1780
1781/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001782 * Isolate one part of a string option where parts are separated with
1783 * "sep_chars".
Bram Moolenaar83bab712005-08-01 21:58:57 +00001784 * The part is copied into "buf[maxlen]".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001785 * "*option" is advanced to the next part.
1786 * The length is returned.
1787 */
1788 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001789copy_option_part(
1790 char_u **option,
1791 char_u *buf,
1792 int maxlen,
1793 char *sep_chars)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001794{
1795 int len = 0;
1796 char_u *p = *option;
1797
1798 /* skip '.' at start of option part, for 'suffixes' */
1799 if (*p == '.')
1800 buf[len++] = *p++;
1801 while (*p != NUL && vim_strchr((char_u *)sep_chars, *p) == NULL)
1802 {
1803 /*
1804 * Skip backslash before a separator character and space.
1805 */
1806 if (p[0] == '\\' && vim_strchr((char_u *)sep_chars, p[1]) != NULL)
1807 ++p;
1808 if (len < maxlen - 1)
1809 buf[len++] = *p;
1810 ++p;
1811 }
1812 buf[len] = NUL;
1813
1814 if (*p != NUL && *p != ',') /* skip non-standard separator */
1815 ++p;
1816 p = skip_to_option_part(p); /* p points to next file name */
1817
1818 *option = p;
1819 return len;
1820}
1821
1822/*
Bram Moolenaar4770d092006-01-12 23:22:24 +00001823 * Replacement for free() that ignores NULL pointers.
1824 * Also skip free() when exiting for sure, this helps when we caught a deadly
1825 * signal that was caused by a crash in free().
Bram Moolenaar071d4272004-06-13 20:20:40 +00001826 */
1827 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001828vim_free(void *x)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001829{
Bram Moolenaar4770d092006-01-12 23:22:24 +00001830 if (x != NULL && !really_exiting)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001831 {
1832#ifdef MEM_PROFILE
1833 mem_pre_free(&x);
1834#endif
1835 free(x);
1836 }
1837}
1838
1839#ifndef HAVE_MEMSET
1840 void *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001841vim_memset(void *ptr, int c, size_t size)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001842{
1843 char *p = ptr;
1844
1845 while (size-- > 0)
1846 *p++ = c;
1847 return ptr;
1848}
1849#endif
1850
Bram Moolenaar071d4272004-06-13 20:20:40 +00001851#if (!defined(HAVE_STRCASECMP) && !defined(HAVE_STRICMP)) || defined(PROTO)
1852/*
1853 * Compare two strings, ignoring case, using current locale.
1854 * Doesn't work for multi-byte characters.
1855 * return 0 for match, < 0 for smaller, > 0 for bigger
1856 */
1857 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001858vim_stricmp(char *s1, char *s2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001859{
1860 int i;
1861
1862 for (;;)
1863 {
1864 i = (int)TOLOWER_LOC(*s1) - (int)TOLOWER_LOC(*s2);
1865 if (i != 0)
1866 return i; /* this character different */
1867 if (*s1 == NUL)
1868 break; /* strings match until NUL */
1869 ++s1;
1870 ++s2;
1871 }
1872 return 0; /* strings match */
1873}
1874#endif
1875
1876#if (!defined(HAVE_STRNCASECMP) && !defined(HAVE_STRNICMP)) || defined(PROTO)
1877/*
1878 * Compare two strings, for length "len", ignoring case, using current locale.
1879 * Doesn't work for multi-byte characters.
1880 * return 0 for match, < 0 for smaller, > 0 for bigger
1881 */
1882 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001883vim_strnicmp(char *s1, char *s2, size_t len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001884{
1885 int i;
1886
1887 while (len > 0)
1888 {
1889 i = (int)TOLOWER_LOC(*s1) - (int)TOLOWER_LOC(*s2);
1890 if (i != 0)
1891 return i; /* this character different */
1892 if (*s1 == NUL)
1893 break; /* strings match until NUL */
1894 ++s1;
1895 ++s2;
1896 --len;
1897 }
1898 return 0; /* strings match */
1899}
1900#endif
1901
Bram Moolenaar071d4272004-06-13 20:20:40 +00001902/*
1903 * Version of strchr() and strrchr() that handle unsigned char strings
Bram Moolenaar05159a02005-02-26 23:04:13 +00001904 * with characters from 128 to 255 correctly. It also doesn't return a
1905 * pointer to the NUL at the end of the string.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001906 */
1907 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001908vim_strchr(char_u *string, int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001909{
1910 char_u *p;
1911 int b;
1912
1913 p = string;
1914#ifdef FEAT_MBYTE
1915 if (enc_utf8 && c >= 0x80)
1916 {
1917 while (*p != NUL)
1918 {
Bram Moolenaarace95982017-03-29 17:30:27 +02001919 int l = utfc_ptr2len(p);
Bram Moolenaard82a2a92015-04-21 14:02:35 +02001920
1921 /* Avoid matching an illegal byte here. */
1922 if (utf_ptr2char(p) == c && l > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001923 return p;
Bram Moolenaard82a2a92015-04-21 14:02:35 +02001924 p += l;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001925 }
1926 return NULL;
1927 }
1928 if (enc_dbcs != 0 && c > 255)
1929 {
1930 int n2 = c & 0xff;
1931
1932 c = ((unsigned)c >> 8) & 0xff;
1933 while ((b = *p) != NUL)
1934 {
1935 if (b == c && p[1] == n2)
1936 return p;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001937 p += (*mb_ptr2len)(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001938 }
1939 return NULL;
1940 }
1941 if (has_mbyte)
1942 {
1943 while ((b = *p) != NUL)
1944 {
1945 if (b == c)
1946 return p;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001947 p += (*mb_ptr2len)(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001948 }
1949 return NULL;
1950 }
1951#endif
1952 while ((b = *p) != NUL)
1953 {
1954 if (b == c)
1955 return p;
1956 ++p;
1957 }
1958 return NULL;
1959}
1960
1961/*
Bram Moolenaar05159a02005-02-26 23:04:13 +00001962 * Version of strchr() that only works for bytes and handles unsigned char
1963 * strings with characters above 128 correctly. It also doesn't return a
1964 * pointer to the NUL at the end of the string.
1965 */
1966 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001967vim_strbyte(char_u *string, int c)
Bram Moolenaar05159a02005-02-26 23:04:13 +00001968{
1969 char_u *p = string;
1970
1971 while (*p != NUL)
1972 {
1973 if (*p == c)
1974 return p;
1975 ++p;
1976 }
1977 return NULL;
1978}
1979
1980/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001981 * Search for last occurrence of "c" in "string".
Bram Moolenaarac6e65f2005-08-29 22:25:38 +00001982 * Return NULL if not found.
Bram Moolenaar05159a02005-02-26 23:04:13 +00001983 * Does not handle multi-byte char for "c"!
Bram Moolenaar071d4272004-06-13 20:20:40 +00001984 */
1985 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001986vim_strrchr(char_u *string, int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001987{
1988 char_u *retval = NULL;
Bram Moolenaar05159a02005-02-26 23:04:13 +00001989 char_u *p = string;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001990
Bram Moolenaar05159a02005-02-26 23:04:13 +00001991 while (*p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001992 {
Bram Moolenaar05159a02005-02-26 23:04:13 +00001993 if (*p == c)
1994 retval = p;
Bram Moolenaar91acfff2017-03-12 19:22:36 +01001995 MB_PTR_ADV(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001996 }
1997 return retval;
1998}
1999
2000/*
2001 * Vim's version of strpbrk(), in case it's missing.
2002 * Don't generate a prototype for this, causes problems when it's not used.
2003 */
2004#ifndef PROTO
2005# ifndef HAVE_STRPBRK
2006# ifdef vim_strpbrk
2007# undef vim_strpbrk
2008# endif
2009 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01002010vim_strpbrk(char_u *s, char_u *charset)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002011{
2012 while (*s)
2013 {
2014 if (vim_strchr(charset, *s) != NULL)
2015 return s;
Bram Moolenaar91acfff2017-03-12 19:22:36 +01002016 MB_PTR_ADV(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002017 }
2018 return NULL;
2019}
2020# endif
2021#endif
2022
2023/*
2024 * Vim has its own isspace() function, because on some machines isspace()
2025 * can't handle characters above 128.
2026 */
2027 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002028vim_isspace(int x)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002029{
2030 return ((x >= 9 && x <= 13) || x == ' ');
2031}
2032
2033/************************************************************************
Bram Moolenaar383f9bc2005-01-19 22:18:32 +00002034 * Functions for handling growing arrays.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002035 */
2036
2037/*
2038 * Clear an allocated growing array.
2039 */
2040 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002041ga_clear(garray_T *gap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002042{
2043 vim_free(gap->ga_data);
2044 ga_init(gap);
2045}
2046
2047/*
2048 * Clear a growing array that contains a list of strings.
2049 */
2050 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002051ga_clear_strings(garray_T *gap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002052{
2053 int i;
2054
2055 for (i = 0; i < gap->ga_len; ++i)
2056 vim_free(((char_u **)(gap->ga_data))[i]);
2057 ga_clear(gap);
2058}
2059
2060/*
2061 * Initialize a growing array. Don't forget to set ga_itemsize and
2062 * ga_growsize! Or use ga_init2().
2063 */
2064 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002065ga_init(garray_T *gap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002066{
2067 gap->ga_data = NULL;
Bram Moolenaar86b68352004-12-27 21:59:20 +00002068 gap->ga_maxlen = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002069 gap->ga_len = 0;
2070}
2071
2072 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002073ga_init2(garray_T *gap, int itemsize, int growsize)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002074{
2075 ga_init(gap);
2076 gap->ga_itemsize = itemsize;
2077 gap->ga_growsize = growsize;
2078}
2079
2080/*
2081 * Make room in growing array "gap" for at least "n" items.
2082 * Return FAIL for failure, OK otherwise.
2083 */
2084 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002085ga_grow(garray_T *gap, int n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002086{
Bram Moolenaar7282bc32012-02-22 18:12:32 +01002087 size_t old_len;
2088 size_t new_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002089 char_u *pp;
2090
Bram Moolenaar86b68352004-12-27 21:59:20 +00002091 if (gap->ga_maxlen - gap->ga_len < n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002092 {
2093 if (n < gap->ga_growsize)
2094 n = gap->ga_growsize;
Bram Moolenaar7282bc32012-02-22 18:12:32 +01002095 new_len = gap->ga_itemsize * (gap->ga_len + n);
2096 pp = (gap->ga_data == NULL)
Bram Moolenaar4336cdf2012-02-29 13:58:47 +01002097 ? alloc((unsigned)new_len) : vim_realloc(gap->ga_data, new_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002098 if (pp == NULL)
2099 return FAIL;
Bram Moolenaar7282bc32012-02-22 18:12:32 +01002100 old_len = gap->ga_itemsize * gap->ga_maxlen;
2101 vim_memset(pp + old_len, 0, new_len - old_len);
Bram Moolenaar86b68352004-12-27 21:59:20 +00002102 gap->ga_maxlen = gap->ga_len + n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002103 gap->ga_data = pp;
2104 }
2105 return OK;
2106}
2107
2108/*
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02002109 * For a growing array that contains a list of strings: concatenate all the
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02002110 * strings with a separating "sep".
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02002111 * Returns NULL when out of memory.
2112 */
2113 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01002114ga_concat_strings(garray_T *gap, char *sep)
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02002115{
2116 int i;
2117 int len = 0;
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02002118 int sep_len = (int)STRLEN(sep);
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02002119 char_u *s;
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02002120 char_u *p;
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02002121
2122 for (i = 0; i < gap->ga_len; ++i)
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02002123 len += (int)STRLEN(((char_u **)(gap->ga_data))[i]) + sep_len;
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02002124
2125 s = alloc(len + 1);
2126 if (s != NULL)
2127 {
2128 *s = NUL;
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02002129 p = s;
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02002130 for (i = 0; i < gap->ga_len; ++i)
2131 {
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02002132 if (p != s)
2133 {
2134 STRCPY(p, sep);
2135 p += sep_len;
2136 }
2137 STRCPY(p, ((char_u **)(gap->ga_data))[i]);
2138 p += STRLEN(p);
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02002139 }
2140 }
2141 return s;
2142}
2143
Bram Moolenaar5a66dfb2017-03-01 20:40:39 +01002144#if defined(FEAT_VIMINFO) || defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaarb20e3342016-01-18 23:29:01 +01002145/*
2146 * Make a copy of string "p" and add it to "gap".
2147 * When out of memory nothing changes.
2148 */
2149 void
2150ga_add_string(garray_T *gap, char_u *p)
2151{
2152 char_u *cp = vim_strsave(p);
2153
2154 if (cp != NULL)
2155 {
2156 if (ga_grow(gap, 1) == OK)
2157 ((char_u **)(gap->ga_data))[gap->ga_len++] = cp;
2158 else
2159 vim_free(cp);
2160 }
2161}
2162#endif
2163
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02002164/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002165 * Concatenate a string to a growarray which contains characters.
Bram Moolenaar43345542015-11-29 17:35:35 +01002166 * When "s" is NULL does not do anything.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002167 * Note: Does NOT copy the NUL at the end!
2168 */
2169 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002170ga_concat(garray_T *gap, char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002171{
Bram Moolenaar43345542015-11-29 17:35:35 +01002172 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002173
Bram Moolenaar478af672017-04-10 22:22:42 +02002174 if (s == NULL || *s == NUL)
Bram Moolenaar43345542015-11-29 17:35:35 +01002175 return;
2176 len = (int)STRLEN(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002177 if (ga_grow(gap, len) == OK)
2178 {
2179 mch_memmove((char *)gap->ga_data + gap->ga_len, s, (size_t)len);
2180 gap->ga_len += len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002181 }
2182}
2183
2184/*
2185 * Append one byte to a growarray which contains bytes.
2186 */
2187 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002188ga_append(garray_T *gap, int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002189{
2190 if (ga_grow(gap, 1) == OK)
2191 {
2192 *((char *)gap->ga_data + gap->ga_len) = c;
2193 ++gap->ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002194 }
2195}
2196
Bram Moolenaar597a4222014-06-25 14:39:50 +02002197#if (defined(UNIX) && !defined(USE_SYSTEM)) || defined(WIN3264) \
2198 || defined(PROTO)
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02002199/*
2200 * Append the text in "gap" below the cursor line and clear "gap".
2201 */
2202 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002203append_ga_line(garray_T *gap)
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02002204{
2205 /* Remove trailing CR. */
2206 if (gap->ga_len > 0
2207 && !curbuf->b_p_bin
2208 && ((char_u *)gap->ga_data)[gap->ga_len - 1] == CAR)
2209 --gap->ga_len;
2210 ga_append(gap, NUL);
2211 ml_append(curwin->w_cursor.lnum++, gap->ga_data, 0, FALSE);
2212 gap->ga_len = 0;
2213}
2214#endif
2215
Bram Moolenaar071d4272004-06-13 20:20:40 +00002216/************************************************************************
2217 * functions that use lookup tables for various things, generally to do with
2218 * special key codes.
2219 */
2220
2221/*
2222 * Some useful tables.
2223 */
2224
2225static struct modmasktable
2226{
2227 short mod_mask; /* Bit-mask for particular key modifier */
2228 short mod_flag; /* Bit(s) for particular key modifier */
2229 char_u name; /* Single letter name of modifier */
2230} mod_mask_table[] =
2231{
2232 {MOD_MASK_ALT, MOD_MASK_ALT, (char_u)'M'},
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002233 {MOD_MASK_META, MOD_MASK_META, (char_u)'T'},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002234 {MOD_MASK_CTRL, MOD_MASK_CTRL, (char_u)'C'},
2235 {MOD_MASK_SHIFT, MOD_MASK_SHIFT, (char_u)'S'},
2236 {MOD_MASK_MULTI_CLICK, MOD_MASK_2CLICK, (char_u)'2'},
2237 {MOD_MASK_MULTI_CLICK, MOD_MASK_3CLICK, (char_u)'3'},
2238 {MOD_MASK_MULTI_CLICK, MOD_MASK_4CLICK, (char_u)'4'},
Bram Moolenaard0573012017-10-28 21:11:06 +02002239#ifdef MACOS_X
Bram Moolenaar071d4272004-06-13 20:20:40 +00002240 {MOD_MASK_CMD, MOD_MASK_CMD, (char_u)'D'},
2241#endif
2242 /* 'A' must be the last one */
2243 {MOD_MASK_ALT, MOD_MASK_ALT, (char_u)'A'},
2244 {0, 0, NUL}
Bram Moolenaar423977d2017-01-22 15:05:12 +01002245 /* NOTE: when adding an entry, update MAX_KEY_NAME_LEN! */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002246};
2247
2248/*
2249 * Shifted key terminal codes and their unshifted equivalent.
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00002250 * Don't add mouse codes here, they are handled separately!
Bram Moolenaar071d4272004-06-13 20:20:40 +00002251 */
2252#define MOD_KEYS_ENTRY_SIZE 5
2253
2254static char_u modifier_keys_table[] =
2255{
2256/* mod mask with modifier without modifier */
2257 MOD_MASK_SHIFT, '&', '9', '@', '1', /* begin */
2258 MOD_MASK_SHIFT, '&', '0', '@', '2', /* cancel */
2259 MOD_MASK_SHIFT, '*', '1', '@', '4', /* command */
2260 MOD_MASK_SHIFT, '*', '2', '@', '5', /* copy */
2261 MOD_MASK_SHIFT, '*', '3', '@', '6', /* create */
2262 MOD_MASK_SHIFT, '*', '4', 'k', 'D', /* delete char */
2263 MOD_MASK_SHIFT, '*', '5', 'k', 'L', /* delete line */
2264 MOD_MASK_SHIFT, '*', '7', '@', '7', /* end */
2265 MOD_MASK_CTRL, KS_EXTRA, (int)KE_C_END, '@', '7', /* end */
2266 MOD_MASK_SHIFT, '*', '9', '@', '9', /* exit */
2267 MOD_MASK_SHIFT, '*', '0', '@', '0', /* find */
2268 MOD_MASK_SHIFT, '#', '1', '%', '1', /* help */
2269 MOD_MASK_SHIFT, '#', '2', 'k', 'h', /* home */
2270 MOD_MASK_CTRL, KS_EXTRA, (int)KE_C_HOME, 'k', 'h', /* home */
2271 MOD_MASK_SHIFT, '#', '3', 'k', 'I', /* insert */
2272 MOD_MASK_SHIFT, '#', '4', 'k', 'l', /* left arrow */
2273 MOD_MASK_CTRL, KS_EXTRA, (int)KE_C_LEFT, 'k', 'l', /* left arrow */
2274 MOD_MASK_SHIFT, '%', 'a', '%', '3', /* message */
2275 MOD_MASK_SHIFT, '%', 'b', '%', '4', /* move */
2276 MOD_MASK_SHIFT, '%', 'c', '%', '5', /* next */
2277 MOD_MASK_SHIFT, '%', 'd', '%', '7', /* options */
2278 MOD_MASK_SHIFT, '%', 'e', '%', '8', /* previous */
2279 MOD_MASK_SHIFT, '%', 'f', '%', '9', /* print */
2280 MOD_MASK_SHIFT, '%', 'g', '%', '0', /* redo */
2281 MOD_MASK_SHIFT, '%', 'h', '&', '3', /* replace */
2282 MOD_MASK_SHIFT, '%', 'i', 'k', 'r', /* right arr. */
2283 MOD_MASK_CTRL, KS_EXTRA, (int)KE_C_RIGHT, 'k', 'r', /* right arr. */
2284 MOD_MASK_SHIFT, '%', 'j', '&', '5', /* resume */
2285 MOD_MASK_SHIFT, '!', '1', '&', '6', /* save */
2286 MOD_MASK_SHIFT, '!', '2', '&', '7', /* suspend */
2287 MOD_MASK_SHIFT, '!', '3', '&', '8', /* undo */
2288 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_UP, 'k', 'u', /* up arrow */
2289 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_DOWN, 'k', 'd', /* down arrow */
2290
2291 /* vt100 F1 */
2292 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_XF1, KS_EXTRA, (int)KE_XF1,
2293 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_XF2, KS_EXTRA, (int)KE_XF2,
2294 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_XF3, KS_EXTRA, (int)KE_XF3,
2295 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_XF4, KS_EXTRA, (int)KE_XF4,
2296
2297 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F1, 'k', '1', /* F1 */
2298 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F2, 'k', '2',
2299 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F3, 'k', '3',
2300 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F4, 'k', '4',
2301 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F5, 'k', '5',
2302 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F6, 'k', '6',
2303 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F7, 'k', '7',
2304 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F8, 'k', '8',
2305 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F9, 'k', '9',
2306 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F10, 'k', ';', /* F10 */
2307
2308 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F11, 'F', '1',
2309 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F12, 'F', '2',
2310 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F13, 'F', '3',
2311 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F14, 'F', '4',
2312 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F15, 'F', '5',
2313 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F16, 'F', '6',
2314 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F17, 'F', '7',
2315 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F18, 'F', '8',
2316 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F19, 'F', '9',
2317 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F20, 'F', 'A',
2318
2319 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F21, 'F', 'B',
2320 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F22, 'F', 'C',
2321 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F23, 'F', 'D',
2322 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F24, 'F', 'E',
2323 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F25, 'F', 'F',
2324 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F26, 'F', 'G',
2325 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F27, 'F', 'H',
2326 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F28, 'F', 'I',
2327 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F29, 'F', 'J',
2328 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F30, 'F', 'K',
2329
2330 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F31, 'F', 'L',
2331 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F32, 'F', 'M',
2332 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F33, 'F', 'N',
2333 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F34, 'F', 'O',
2334 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F35, 'F', 'P',
2335 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F36, 'F', 'Q',
2336 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F37, 'F', 'R',
2337
2338 /* TAB pseudo code*/
2339 MOD_MASK_SHIFT, 'k', 'B', KS_EXTRA, (int)KE_TAB,
2340
2341 NUL
2342};
2343
2344static struct key_name_entry
2345{
2346 int key; /* Special key code or ascii value */
2347 char_u *name; /* Name of key */
2348} key_names_table[] =
2349{
2350 {' ', (char_u *)"Space"},
2351 {TAB, (char_u *)"Tab"},
2352 {K_TAB, (char_u *)"Tab"},
2353 {NL, (char_u *)"NL"},
2354 {NL, (char_u *)"NewLine"}, /* Alternative name */
2355 {NL, (char_u *)"LineFeed"}, /* Alternative name */
2356 {NL, (char_u *)"LF"}, /* Alternative name */
2357 {CAR, (char_u *)"CR"},
2358 {CAR, (char_u *)"Return"}, /* Alternative name */
2359 {CAR, (char_u *)"Enter"}, /* Alternative name */
2360 {K_BS, (char_u *)"BS"},
2361 {K_BS, (char_u *)"BackSpace"}, /* Alternative name */
2362 {ESC, (char_u *)"Esc"},
2363 {CSI, (char_u *)"CSI"},
2364 {K_CSI, (char_u *)"xCSI"},
2365 {'|', (char_u *)"Bar"},
2366 {'\\', (char_u *)"Bslash"},
2367 {K_DEL, (char_u *)"Del"},
2368 {K_DEL, (char_u *)"Delete"}, /* Alternative name */
2369 {K_KDEL, (char_u *)"kDel"},
2370 {K_UP, (char_u *)"Up"},
2371 {K_DOWN, (char_u *)"Down"},
2372 {K_LEFT, (char_u *)"Left"},
2373 {K_RIGHT, (char_u *)"Right"},
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002374 {K_XUP, (char_u *)"xUp"},
2375 {K_XDOWN, (char_u *)"xDown"},
2376 {K_XLEFT, (char_u *)"xLeft"},
2377 {K_XRIGHT, (char_u *)"xRight"},
Bram Moolenaarec2da362017-01-21 20:04:22 +01002378 {K_PS, (char_u *)"PasteStart"},
2379 {K_PE, (char_u *)"PasteEnd"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002380
2381 {K_F1, (char_u *)"F1"},
2382 {K_F2, (char_u *)"F2"},
2383 {K_F3, (char_u *)"F3"},
2384 {K_F4, (char_u *)"F4"},
2385 {K_F5, (char_u *)"F5"},
2386 {K_F6, (char_u *)"F6"},
2387 {K_F7, (char_u *)"F7"},
2388 {K_F8, (char_u *)"F8"},
2389 {K_F9, (char_u *)"F9"},
2390 {K_F10, (char_u *)"F10"},
2391
2392 {K_F11, (char_u *)"F11"},
2393 {K_F12, (char_u *)"F12"},
2394 {K_F13, (char_u *)"F13"},
2395 {K_F14, (char_u *)"F14"},
2396 {K_F15, (char_u *)"F15"},
2397 {K_F16, (char_u *)"F16"},
2398 {K_F17, (char_u *)"F17"},
2399 {K_F18, (char_u *)"F18"},
2400 {K_F19, (char_u *)"F19"},
2401 {K_F20, (char_u *)"F20"},
2402
2403 {K_F21, (char_u *)"F21"},
2404 {K_F22, (char_u *)"F22"},
2405 {K_F23, (char_u *)"F23"},
2406 {K_F24, (char_u *)"F24"},
2407 {K_F25, (char_u *)"F25"},
2408 {K_F26, (char_u *)"F26"},
2409 {K_F27, (char_u *)"F27"},
2410 {K_F28, (char_u *)"F28"},
2411 {K_F29, (char_u *)"F29"},
2412 {K_F30, (char_u *)"F30"},
2413
2414 {K_F31, (char_u *)"F31"},
2415 {K_F32, (char_u *)"F32"},
2416 {K_F33, (char_u *)"F33"},
2417 {K_F34, (char_u *)"F34"},
2418 {K_F35, (char_u *)"F35"},
2419 {K_F36, (char_u *)"F36"},
2420 {K_F37, (char_u *)"F37"},
2421
2422 {K_XF1, (char_u *)"xF1"},
2423 {K_XF2, (char_u *)"xF2"},
2424 {K_XF3, (char_u *)"xF3"},
2425 {K_XF4, (char_u *)"xF4"},
2426
2427 {K_HELP, (char_u *)"Help"},
2428 {K_UNDO, (char_u *)"Undo"},
2429 {K_INS, (char_u *)"Insert"},
2430 {K_INS, (char_u *)"Ins"}, /* Alternative name */
2431 {K_KINS, (char_u *)"kInsert"},
2432 {K_HOME, (char_u *)"Home"},
2433 {K_KHOME, (char_u *)"kHome"},
2434 {K_XHOME, (char_u *)"xHome"},
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002435 {K_ZHOME, (char_u *)"zHome"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002436 {K_END, (char_u *)"End"},
2437 {K_KEND, (char_u *)"kEnd"},
2438 {K_XEND, (char_u *)"xEnd"},
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002439 {K_ZEND, (char_u *)"zEnd"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002440 {K_PAGEUP, (char_u *)"PageUp"},
2441 {K_PAGEDOWN, (char_u *)"PageDown"},
2442 {K_KPAGEUP, (char_u *)"kPageUp"},
2443 {K_KPAGEDOWN, (char_u *)"kPageDown"},
2444
2445 {K_KPLUS, (char_u *)"kPlus"},
2446 {K_KMINUS, (char_u *)"kMinus"},
2447 {K_KDIVIDE, (char_u *)"kDivide"},
2448 {K_KMULTIPLY, (char_u *)"kMultiply"},
2449 {K_KENTER, (char_u *)"kEnter"},
2450 {K_KPOINT, (char_u *)"kPoint"},
2451
2452 {K_K0, (char_u *)"k0"},
2453 {K_K1, (char_u *)"k1"},
2454 {K_K2, (char_u *)"k2"},
2455 {K_K3, (char_u *)"k3"},
2456 {K_K4, (char_u *)"k4"},
2457 {K_K5, (char_u *)"k5"},
2458 {K_K6, (char_u *)"k6"},
2459 {K_K7, (char_u *)"k7"},
2460 {K_K8, (char_u *)"k8"},
2461 {K_K9, (char_u *)"k9"},
2462
2463 {'<', (char_u *)"lt"},
2464
2465 {K_MOUSE, (char_u *)"Mouse"},
Bram Moolenaar5af7d712012-01-20 17:15:51 +01002466#ifdef FEAT_MOUSE_NET
Bram Moolenaar071d4272004-06-13 20:20:40 +00002467 {K_NETTERM_MOUSE, (char_u *)"NetMouse"},
Bram Moolenaar5af7d712012-01-20 17:15:51 +01002468#endif
2469#ifdef FEAT_MOUSE_DEC
Bram Moolenaar071d4272004-06-13 20:20:40 +00002470 {K_DEC_MOUSE, (char_u *)"DecMouse"},
Bram Moolenaar5af7d712012-01-20 17:15:51 +01002471#endif
2472#ifdef FEAT_MOUSE_JSB
Bram Moolenaar071d4272004-06-13 20:20:40 +00002473 {K_JSBTERM_MOUSE, (char_u *)"JsbMouse"},
Bram Moolenaar5af7d712012-01-20 17:15:51 +01002474#endif
2475#ifdef FEAT_MOUSE_PTERM
Bram Moolenaar071d4272004-06-13 20:20:40 +00002476 {K_PTERM_MOUSE, (char_u *)"PtermMouse"},
Bram Moolenaar5af7d712012-01-20 17:15:51 +01002477#endif
2478#ifdef FEAT_MOUSE_URXVT
2479 {K_URXVT_MOUSE, (char_u *)"UrxvtMouse"},
2480#endif
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02002481#ifdef FEAT_MOUSE_SGR
2482 {K_SGR_MOUSE, (char_u *)"SgrMouse"},
Bram Moolenaara529ce02017-06-22 22:37:57 +02002483 {K_SGR_MOUSERELEASE, (char_u *)"SgrMouseRelelase"},
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02002484#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"},
Bram Moolenaar51b0f372017-11-18 18:52:04 +01002490 {K_MOUSEMOVE, (char_u *)"MouseMove"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002491 {K_MIDDLEMOUSE, (char_u *)"MiddleMouse"},
2492 {K_MIDDLEDRAG, (char_u *)"MiddleDrag"},
2493 {K_MIDDLERELEASE, (char_u *)"MiddleRelease"},
2494 {K_RIGHTMOUSE, (char_u *)"RightMouse"},
2495 {K_RIGHTDRAG, (char_u *)"RightDrag"},
2496 {K_RIGHTRELEASE, (char_u *)"RightRelease"},
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02002497 {K_MOUSEDOWN, (char_u *)"ScrollWheelUp"},
2498 {K_MOUSEUP, (char_u *)"ScrollWheelDown"},
2499 {K_MOUSELEFT, (char_u *)"ScrollWheelRight"},
2500 {K_MOUSERIGHT, (char_u *)"ScrollWheelLeft"},
2501 {K_MOUSEDOWN, (char_u *)"MouseDown"}, /* OBSOLETE: Use */
2502 {K_MOUSEUP, (char_u *)"MouseUp"}, /* ScrollWheelXXX instead */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002503 {K_X1MOUSE, (char_u *)"X1Mouse"},
2504 {K_X1DRAG, (char_u *)"X1Drag"},
2505 {K_X1RELEASE, (char_u *)"X1Release"},
2506 {K_X2MOUSE, (char_u *)"X2Mouse"},
2507 {K_X2DRAG, (char_u *)"X2Drag"},
2508 {K_X2RELEASE, (char_u *)"X2Release"},
2509 {K_DROP, (char_u *)"Drop"},
2510 {K_ZERO, (char_u *)"Nul"},
2511#ifdef FEAT_EVAL
2512 {K_SNR, (char_u *)"SNR"},
2513#endif
2514 {K_PLUG, (char_u *)"Plug"},
Bram Moolenaar1db60c42014-09-23 16:49:46 +02002515 {K_CURSORHOLD, (char_u *)"CursorHold"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002516 {0, NULL}
Bram Moolenaar423977d2017-01-22 15:05:12 +01002517 /* NOTE: When adding a long name update MAX_KEY_NAME_LEN. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002518};
2519
2520#define KEY_NAMES_TABLE_LEN (sizeof(key_names_table) / sizeof(struct key_name_entry))
2521
2522#ifdef FEAT_MOUSE
2523static struct mousetable
2524{
2525 int pseudo_code; /* Code for pseudo mouse event */
2526 int button; /* Which mouse button is it? */
2527 int is_click; /* Is it a mouse button click event? */
2528 int is_drag; /* Is it a mouse drag event? */
2529} mouse_table[] =
2530{
2531 {(int)KE_LEFTMOUSE, MOUSE_LEFT, TRUE, FALSE},
2532#ifdef FEAT_GUI
2533 {(int)KE_LEFTMOUSE_NM, MOUSE_LEFT, TRUE, FALSE},
2534#endif
2535 {(int)KE_LEFTDRAG, MOUSE_LEFT, FALSE, TRUE},
2536 {(int)KE_LEFTRELEASE, MOUSE_LEFT, FALSE, FALSE},
2537#ifdef FEAT_GUI
2538 {(int)KE_LEFTRELEASE_NM, MOUSE_LEFT, FALSE, FALSE},
2539#endif
2540 {(int)KE_MIDDLEMOUSE, MOUSE_MIDDLE, TRUE, FALSE},
2541 {(int)KE_MIDDLEDRAG, MOUSE_MIDDLE, FALSE, TRUE},
2542 {(int)KE_MIDDLERELEASE, MOUSE_MIDDLE, FALSE, FALSE},
2543 {(int)KE_RIGHTMOUSE, MOUSE_RIGHT, TRUE, FALSE},
2544 {(int)KE_RIGHTDRAG, MOUSE_RIGHT, FALSE, TRUE},
2545 {(int)KE_RIGHTRELEASE, MOUSE_RIGHT, FALSE, FALSE},
2546 {(int)KE_X1MOUSE, MOUSE_X1, TRUE, FALSE},
2547 {(int)KE_X1DRAG, MOUSE_X1, FALSE, TRUE},
2548 {(int)KE_X1RELEASE, MOUSE_X1, FALSE, FALSE},
2549 {(int)KE_X2MOUSE, MOUSE_X2, TRUE, FALSE},
2550 {(int)KE_X2DRAG, MOUSE_X2, FALSE, TRUE},
2551 {(int)KE_X2RELEASE, MOUSE_X2, FALSE, FALSE},
2552 /* DRAG without CLICK */
Bram Moolenaar51b0f372017-11-18 18:52:04 +01002553 {(int)KE_MOUSEMOVE, MOUSE_RELEASE, FALSE, TRUE},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002554 /* RELEASE without CLICK */
2555 {(int)KE_IGNORE, MOUSE_RELEASE, FALSE, FALSE},
2556 {0, 0, 0, 0},
2557};
2558#endif /* FEAT_MOUSE */
2559
2560/*
2561 * Return the modifier mask bit (MOD_MASK_*) which corresponds to the given
2562 * modifier name ('S' for Shift, 'C' for Ctrl etc).
2563 */
2564 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002565name_to_mod_mask(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002566{
2567 int i;
2568
2569 c = TOUPPER_ASC(c);
2570 for (i = 0; mod_mask_table[i].mod_mask != 0; i++)
2571 if (c == mod_mask_table[i].name)
2572 return mod_mask_table[i].mod_flag;
2573 return 0;
2574}
2575
Bram Moolenaar071d4272004-06-13 20:20:40 +00002576/*
2577 * Check if if there is a special key code for "key" that includes the
2578 * modifiers specified.
2579 */
2580 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002581simplify_key(int key, int *modifiers)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002582{
2583 int i;
2584 int key0;
2585 int key1;
2586
2587 if (*modifiers & (MOD_MASK_SHIFT | MOD_MASK_CTRL | MOD_MASK_ALT))
2588 {
2589 /* TAB is a special case */
2590 if (key == TAB && (*modifiers & MOD_MASK_SHIFT))
2591 {
2592 *modifiers &= ~MOD_MASK_SHIFT;
2593 return K_S_TAB;
2594 }
2595 key0 = KEY2TERMCAP0(key);
2596 key1 = KEY2TERMCAP1(key);
2597 for (i = 0; modifier_keys_table[i] != NUL; i += MOD_KEYS_ENTRY_SIZE)
2598 if (key0 == modifier_keys_table[i + 3]
2599 && key1 == modifier_keys_table[i + 4]
2600 && (*modifiers & modifier_keys_table[i]))
2601 {
2602 *modifiers &= ~modifier_keys_table[i];
2603 return TERMCAP2KEY(modifier_keys_table[i + 1],
2604 modifier_keys_table[i + 2]);
2605 }
2606 }
2607 return key;
2608}
2609
2610/*
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002611 * Change <xHome> to <Home>, <xUp> to <Up>, etc.
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002612 */
2613 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002614handle_x_keys(int key)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002615{
2616 switch (key)
2617 {
2618 case K_XUP: return K_UP;
2619 case K_XDOWN: return K_DOWN;
2620 case K_XLEFT: return K_LEFT;
2621 case K_XRIGHT: return K_RIGHT;
2622 case K_XHOME: return K_HOME;
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002623 case K_ZHOME: return K_HOME;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002624 case K_XEND: return K_END;
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002625 case K_ZEND: return K_END;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002626 case K_XF1: return K_F1;
2627 case K_XF2: return K_F2;
2628 case K_XF3: return K_F3;
2629 case K_XF4: return K_F4;
2630 case K_S_XF1: return K_S_F1;
2631 case K_S_XF2: return K_S_F2;
2632 case K_S_XF3: return K_S_F3;
2633 case K_S_XF4: return K_S_F4;
2634 }
2635 return key;
2636}
2637
2638/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002639 * Return a string which contains the name of the given key when the given
2640 * modifiers are down.
2641 */
2642 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01002643get_special_key_name(int c, int modifiers)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002644{
2645 static char_u string[MAX_KEY_NAME_LEN + 1];
2646
2647 int i, idx;
2648 int table_idx;
2649 char_u *s;
2650
2651 string[0] = '<';
2652 idx = 1;
2653
2654 /* Key that stands for a normal character. */
2655 if (IS_SPECIAL(c) && KEY2TERMCAP0(c) == KS_KEY)
2656 c = KEY2TERMCAP1(c);
2657
2658 /*
2659 * Translate shifted special keys into unshifted keys and set modifier.
2660 * Same for CTRL and ALT modifiers.
2661 */
2662 if (IS_SPECIAL(c))
2663 {
2664 for (i = 0; modifier_keys_table[i] != 0; i += MOD_KEYS_ENTRY_SIZE)
2665 if ( KEY2TERMCAP0(c) == (int)modifier_keys_table[i + 1]
2666 && (int)KEY2TERMCAP1(c) == (int)modifier_keys_table[i + 2])
2667 {
2668 modifiers |= modifier_keys_table[i];
2669 c = TERMCAP2KEY(modifier_keys_table[i + 3],
2670 modifier_keys_table[i + 4]);
2671 break;
2672 }
2673 }
2674
2675 /* try to find the key in the special key table */
2676 table_idx = find_special_key_in_table(c);
2677
2678 /*
2679 * When not a known special key, and not a printable character, try to
2680 * extract modifiers.
2681 */
2682 if (c > 0
2683#ifdef FEAT_MBYTE
2684 && (*mb_char2len)(c) == 1
2685#endif
2686 )
2687 {
2688 if (table_idx < 0
2689 && (!vim_isprintc(c) || (c & 0x7f) == ' ')
2690 && (c & 0x80))
2691 {
2692 c &= 0x7f;
2693 modifiers |= MOD_MASK_ALT;
2694 /* try again, to find the un-alted key in the special key table */
2695 table_idx = find_special_key_in_table(c);
2696 }
2697 if (table_idx < 0 && !vim_isprintc(c) && c < ' ')
2698 {
2699#ifdef EBCDIC
2700 c = CtrlChar(c);
2701#else
2702 c += '@';
2703#endif
2704 modifiers |= MOD_MASK_CTRL;
2705 }
2706 }
2707
2708 /* translate the modifier into a string */
2709 for (i = 0; mod_mask_table[i].name != 'A'; i++)
2710 if ((modifiers & mod_mask_table[i].mod_mask)
2711 == mod_mask_table[i].mod_flag)
2712 {
2713 string[idx++] = mod_mask_table[i].name;
2714 string[idx++] = (char_u)'-';
2715 }
2716
2717 if (table_idx < 0) /* unknown special key, may output t_xx */
2718 {
2719 if (IS_SPECIAL(c))
2720 {
2721 string[idx++] = 't';
2722 string[idx++] = '_';
2723 string[idx++] = KEY2TERMCAP0(c);
2724 string[idx++] = KEY2TERMCAP1(c);
2725 }
2726 /* Not a special key, only modifiers, output directly */
2727 else
2728 {
2729#ifdef FEAT_MBYTE
2730 if (has_mbyte && (*mb_char2len)(c) > 1)
2731 idx += (*mb_char2bytes)(c, string + idx);
2732 else
2733#endif
2734 if (vim_isprintc(c))
2735 string[idx++] = c;
2736 else
2737 {
2738 s = transchar(c);
2739 while (*s)
2740 string[idx++] = *s++;
2741 }
2742 }
2743 }
2744 else /* use name of special key */
2745 {
Bram Moolenaar423977d2017-01-22 15:05:12 +01002746 size_t len = STRLEN(key_names_table[table_idx].name);
2747
2748 if (len + idx + 2 <= MAX_KEY_NAME_LEN)
2749 {
2750 STRCPY(string + idx, key_names_table[table_idx].name);
2751 idx += (int)len;
2752 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002753 }
2754 string[idx++] = '>';
2755 string[idx] = NUL;
2756 return string;
2757}
2758
2759/*
2760 * Try translating a <> name at (*srcp)[] to dst[].
2761 * Return the number of characters added to dst[], zero for no match.
2762 * If there is a match, srcp is advanced to after the <> name.
2763 * dst[] must be big enough to hold the result (up to six characters)!
2764 */
2765 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002766trans_special(
2767 char_u **srcp,
2768 char_u *dst,
Bram Moolenaar35a4cfa2016-08-14 16:07:48 +02002769 int keycode, /* prefer key code, e.g. K_DEL instead of DEL */
2770 int in_string) /* TRUE when inside a double quoted string */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002771{
2772 int modifiers = 0;
2773 int key;
2774 int dlen = 0;
2775
Bram Moolenaar35a4cfa2016-08-14 16:07:48 +02002776 key = find_special_key(srcp, &modifiers, keycode, FALSE, in_string);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002777 if (key == 0)
2778 return 0;
2779
2780 /* Put the appropriate modifier in a string */
2781 if (modifiers != 0)
2782 {
2783 dst[dlen++] = K_SPECIAL;
2784 dst[dlen++] = KS_MODIFIER;
2785 dst[dlen++] = modifiers;
2786 }
2787
2788 if (IS_SPECIAL(key))
2789 {
2790 dst[dlen++] = K_SPECIAL;
2791 dst[dlen++] = KEY2TERMCAP0(key);
2792 dst[dlen++] = KEY2TERMCAP1(key);
2793 }
2794#ifdef FEAT_MBYTE
2795 else if (has_mbyte && !keycode)
2796 dlen += (*mb_char2bytes)(key, dst + dlen);
2797#endif
2798 else if (keycode)
2799 dlen = (int)(add_char2buf(key, dst + dlen) - dst);
2800 else
2801 dst[dlen++] = key;
2802
2803 return dlen;
2804}
2805
2806/*
2807 * Try translating a <> name at (*srcp)[], return the key and modifiers.
2808 * srcp is advanced to after the <> name.
2809 * returns 0 if there is no match.
2810 */
2811 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002812find_special_key(
2813 char_u **srcp,
2814 int *modp,
2815 int keycode, /* prefer key code, e.g. K_DEL instead of DEL */
Bram Moolenaar35a4cfa2016-08-14 16:07:48 +02002816 int keep_x_key, /* don't translate xHome to Home key */
2817 int in_string) /* TRUE in string, double quote is escaped */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002818{
2819 char_u *last_dash;
2820 char_u *end_of_name;
2821 char_u *src;
2822 char_u *bp;
2823 int modifiers;
2824 int bit;
2825 int key;
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02002826 uvarnumber_T n;
Bram Moolenaarb8bf5412011-08-17 20:33:22 +02002827 int l;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002828
2829 src = *srcp;
2830 if (src[0] != '<')
2831 return 0;
2832
2833 /* Find end of modifier list */
2834 last_dash = src;
2835 for (bp = src + 1; *bp == '-' || vim_isIDc(*bp); bp++)
2836 {
2837 if (*bp == '-')
2838 {
2839 last_dash = bp;
Bram Moolenaarb8bf5412011-08-17 20:33:22 +02002840 if (bp[1] != NUL)
2841 {
2842#ifdef FEAT_MBYTE
2843 if (has_mbyte)
2844 l = mb_ptr2len(bp + 1);
2845 else
2846#endif
2847 l = 1;
Bram Moolenaar35a4cfa2016-08-14 16:07:48 +02002848 /* Anything accepted, like <C-?>.
2849 * <C-"> or <M-"> are not special in strings as " is
2850 * the string delimiter. With a backslash it works: <M-\"> */
2851 if (!(in_string && bp[1] == '"') && bp[2] == '>')
Bram Moolenaar1d90a5a2016-07-01 11:59:47 +02002852 bp += l;
Bram Moolenaar35a4cfa2016-08-14 16:07:48 +02002853 else if (in_string && bp[1] == '\\' && bp[2] == '"'
2854 && bp[3] == '>')
2855 bp += 2;
Bram Moolenaarb8bf5412011-08-17 20:33:22 +02002856 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002857 }
2858 if (bp[0] == 't' && bp[1] == '_' && bp[2] && bp[3])
2859 bp += 3; /* skip t_xx, xx may be '-' or '>' */
Bram Moolenaar792826c2011-08-19 22:29:02 +02002860 else if (STRNICMP(bp, "char-", 5) == 0)
2861 {
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01002862 vim_str2nr(bp + 5, NULL, &l, STR2NR_ALL, NULL, NULL, 0);
Bram Moolenaar792826c2011-08-19 22:29:02 +02002863 bp += l + 5;
2864 break;
2865 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002866 }
2867
2868 if (*bp == '>') /* found matching '>' */
2869 {
2870 end_of_name = bp + 1;
2871
Bram Moolenaar071d4272004-06-13 20:20:40 +00002872 /* Which modifiers are given? */
2873 modifiers = 0x0;
2874 for (bp = src + 1; bp < last_dash; bp++)
2875 {
2876 if (*bp != '-')
2877 {
2878 bit = name_to_mod_mask(*bp);
2879 if (bit == 0x0)
2880 break; /* Illegal modifier name */
2881 modifiers |= bit;
2882 }
2883 }
2884
2885 /*
2886 * Legal modifier name.
2887 */
2888 if (bp >= last_dash)
2889 {
Bram Moolenaarb8bf5412011-08-17 20:33:22 +02002890 if (STRNICMP(last_dash + 1, "char-", 5) == 0
2891 && VIM_ISDIGIT(last_dash[6]))
2892 {
2893 /* <Char-123> or <Char-033> or <Char-0x33> */
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01002894 vim_str2nr(last_dash + 6, NULL, NULL, STR2NR_ALL, NULL, &n, 0);
Bram Moolenaar792826c2011-08-19 22:29:02 +02002895 key = (int)n;
Bram Moolenaarb8bf5412011-08-17 20:33:22 +02002896 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002897 else
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002898 {
Bram Moolenaar35a4cfa2016-08-14 16:07:48 +02002899 int off = 1;
2900
2901 /* Modifier with single letter, or special key name. */
2902 if (in_string && last_dash[1] == '\\' && last_dash[2] == '"')
2903 off = 2;
Bram Moolenaar792826c2011-08-19 22:29:02 +02002904#ifdef FEAT_MBYTE
2905 if (has_mbyte)
Bram Moolenaar35a4cfa2016-08-14 16:07:48 +02002906 l = mb_ptr2len(last_dash + off);
Bram Moolenaar792826c2011-08-19 22:29:02 +02002907 else
2908#endif
2909 l = 1;
Bram Moolenaar35a4cfa2016-08-14 16:07:48 +02002910 if (modifiers != 0 && last_dash[l + off] == '>')
2911 key = PTR2CHAR(last_dash + off);
Bram Moolenaar792826c2011-08-19 22:29:02 +02002912 else
2913 {
Bram Moolenaar35a4cfa2016-08-14 16:07:48 +02002914 key = get_special_key_code(last_dash + off);
Bram Moolenaar792826c2011-08-19 22:29:02 +02002915 if (!keep_x_key)
2916 key = handle_x_keys(key);
2917 }
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002918 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002919
2920 /*
2921 * get_special_key_code() may return NUL for invalid
2922 * special key name.
2923 */
2924 if (key != NUL)
2925 {
2926 /*
2927 * Only use a modifier when there is no special key code that
2928 * includes the modifier.
2929 */
2930 key = simplify_key(key, &modifiers);
2931
2932 if (!keycode)
2933 {
2934 /* don't want keycode, use single byte code */
2935 if (key == K_BS)
2936 key = BS;
2937 else if (key == K_DEL || key == K_KDEL)
2938 key = DEL;
2939 }
2940
2941 /*
2942 * Normal Key with modifier: Try to make a single byte code.
2943 */
2944 if (!IS_SPECIAL(key))
2945 key = extract_modifiers(key, &modifiers);
2946
2947 *modp = modifiers;
2948 *srcp = end_of_name;
2949 return key;
2950 }
2951 }
2952 }
2953 return 0;
2954}
2955
2956/*
2957 * Try to include modifiers in the key.
2958 * Changes "Shift-a" to 'A', "Alt-A" to 0xc0, etc.
2959 */
2960 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002961extract_modifiers(int key, int *modp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002962{
2963 int modifiers = *modp;
2964
Bram Moolenaard0573012017-10-28 21:11:06 +02002965#ifdef MACOS_X
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02002966 /* Command-key really special, no fancynest */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002967 if (!(modifiers & MOD_MASK_CMD))
2968#endif
2969 if ((modifiers & MOD_MASK_SHIFT) && ASCII_ISALPHA(key))
2970 {
2971 key = TOUPPER_ASC(key);
2972 modifiers &= ~MOD_MASK_SHIFT;
2973 }
2974 if ((modifiers & MOD_MASK_CTRL)
2975#ifdef EBCDIC
2976 /* * TODO: EBCDIC Better use:
2977 * && (Ctrl_chr(key) || key == '?')
2978 * ??? */
2979 && strchr("?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_", key)
2980 != NULL
2981#else
2982 && ((key >= '?' && key <= '_') || ASCII_ISALPHA(key))
2983#endif
2984 )
2985 {
2986 key = Ctrl_chr(key);
2987 modifiers &= ~MOD_MASK_CTRL;
2988 /* <C-@> is <Nul> */
2989 if (key == 0)
2990 key = K_ZERO;
2991 }
Bram Moolenaard0573012017-10-28 21:11:06 +02002992#ifdef MACOS_X
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02002993 /* Command-key really special, no fancynest */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002994 if (!(modifiers & MOD_MASK_CMD))
2995#endif
2996 if ((modifiers & MOD_MASK_ALT) && key < 0x80
2997#ifdef FEAT_MBYTE
2998 && !enc_dbcs /* avoid creating a lead byte */
2999#endif
3000 )
3001 {
3002 key |= 0x80;
3003 modifiers &= ~MOD_MASK_ALT; /* remove the META modifier */
3004 }
3005
3006 *modp = modifiers;
3007 return key;
3008}
3009
3010/*
3011 * Try to find key "c" in the special key table.
3012 * Return the index when found, -1 when not found.
3013 */
3014 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003015find_special_key_in_table(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003016{
3017 int i;
3018
3019 for (i = 0; key_names_table[i].name != NULL; i++)
3020 if (c == key_names_table[i].key)
3021 break;
3022 if (key_names_table[i].name == NULL)
3023 i = -1;
3024 return i;
3025}
3026
3027/*
3028 * Find the special key with the given name (the given string does not have to
3029 * end with NUL, the name is assumed to end before the first non-idchar).
3030 * If the name starts with "t_" the next two characters are interpreted as a
3031 * termcap name.
3032 * Return the key code, or 0 if not found.
3033 */
3034 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003035get_special_key_code(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003036{
3037 char_u *table_name;
3038 char_u string[3];
3039 int i, j;
3040
3041 /*
3042 * If it's <t_xx> we get the code for xx from the termcap
3043 */
3044 if (name[0] == 't' && name[1] == '_' && name[2] != NUL && name[3] != NUL)
3045 {
3046 string[0] = name[2];
3047 string[1] = name[3];
3048 string[2] = NUL;
3049 if (add_termcap_entry(string, FALSE) == OK)
3050 return TERMCAP2KEY(name[2], name[3]);
3051 }
3052 else
3053 for (i = 0; key_names_table[i].name != NULL; i++)
3054 {
3055 table_name = key_names_table[i].name;
3056 for (j = 0; vim_isIDc(name[j]) && table_name[j] != NUL; j++)
3057 if (TOLOWER_ASC(table_name[j]) != TOLOWER_ASC(name[j]))
3058 break;
3059 if (!vim_isIDc(name[j]) && table_name[j] == NUL)
3060 return key_names_table[i].key;
3061 }
3062 return 0;
3063}
3064
Bram Moolenaar05bb9532008-07-04 09:44:11 +00003065#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003066 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01003067get_key_name(int i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003068{
Bram Moolenaare1fbddc2009-05-16 19:07:03 +00003069 if (i >= (int)KEY_NAMES_TABLE_LEN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003070 return NULL;
3071 return key_names_table[i].name;
3072}
3073#endif
3074
Bram Moolenaar05bb9532008-07-04 09:44:11 +00003075#if defined(FEAT_MOUSE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003076/*
3077 * Look up the given mouse code to return the relevant information in the other
3078 * arguments. Return which button is down or was released.
3079 */
3080 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003081get_mouse_button(int code, int *is_click, int *is_drag)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003082{
3083 int i;
3084
3085 for (i = 0; mouse_table[i].pseudo_code; i++)
3086 if (code == mouse_table[i].pseudo_code)
3087 {
3088 *is_click = mouse_table[i].is_click;
3089 *is_drag = mouse_table[i].is_drag;
3090 return mouse_table[i].button;
3091 }
3092 return 0; /* Shouldn't get here */
3093}
3094
3095/*
3096 * Return the appropriate pseudo mouse event token (KE_LEFTMOUSE etc) based on
3097 * the given information about which mouse button is down, and whether the
3098 * mouse was clicked, dragged or released.
3099 */
3100 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003101get_pseudo_mouse_code(
3102 int button, /* eg MOUSE_LEFT */
3103 int is_click,
3104 int is_drag)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003105{
3106 int i;
3107
3108 for (i = 0; mouse_table[i].pseudo_code; i++)
3109 if (button == mouse_table[i].button
3110 && is_click == mouse_table[i].is_click
3111 && is_drag == mouse_table[i].is_drag)
3112 {
3113#ifdef FEAT_GUI
Bram Moolenaarc91506a2005-04-24 22:04:21 +00003114 /* Trick: a non mappable left click and release has mouse_col -1
3115 * or added MOUSE_COLOFF. Used for 'mousefocus' in
3116 * gui_mouse_moved() */
3117 if (mouse_col < 0 || mouse_col > MOUSE_COLOFF)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003118 {
Bram Moolenaarc91506a2005-04-24 22:04:21 +00003119 if (mouse_col < 0)
3120 mouse_col = 0;
3121 else
3122 mouse_col -= MOUSE_COLOFF;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003123 if (mouse_table[i].pseudo_code == (int)KE_LEFTMOUSE)
3124 return (int)KE_LEFTMOUSE_NM;
3125 if (mouse_table[i].pseudo_code == (int)KE_LEFTRELEASE)
3126 return (int)KE_LEFTRELEASE_NM;
3127 }
3128#endif
3129 return mouse_table[i].pseudo_code;
3130 }
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00003131 return (int)KE_IGNORE; /* not recognized, ignore it */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003132}
3133#endif /* FEAT_MOUSE */
3134
3135/*
3136 * Return the current end-of-line type: EOL_DOS, EOL_UNIX or EOL_MAC.
3137 */
3138 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003139get_fileformat(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003140{
3141 int c = *buf->b_p_ff;
3142
3143 if (buf->b_p_bin || c == 'u')
3144 return EOL_UNIX;
3145 if (c == 'm')
3146 return EOL_MAC;
3147 return EOL_DOS;
3148}
3149
3150/*
3151 * Like get_fileformat(), but override 'fileformat' with "p" for "++opt=val"
3152 * argument.
3153 */
3154 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003155get_fileformat_force(
3156 buf_T *buf,
3157 exarg_T *eap) /* can be NULL! */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003158{
3159 int c;
3160
3161 if (eap != NULL && eap->force_ff != 0)
3162 c = eap->cmd[eap->force_ff];
3163 else
3164 {
3165 if ((eap != NULL && eap->force_bin != 0)
3166 ? (eap->force_bin == FORCE_BIN) : buf->b_p_bin)
3167 return EOL_UNIX;
3168 c = *buf->b_p_ff;
3169 }
3170 if (c == 'u')
3171 return EOL_UNIX;
3172 if (c == 'm')
3173 return EOL_MAC;
3174 return EOL_DOS;
3175}
3176
3177/*
3178 * Set the current end-of-line type to EOL_DOS, EOL_UNIX or EOL_MAC.
3179 * Sets both 'textmode' and 'fileformat'.
3180 * Note: Does _not_ set global value of 'textmode'!
3181 */
3182 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003183set_fileformat(
3184 int t,
3185 int opt_flags) /* OPT_LOCAL and/or OPT_GLOBAL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003186{
3187 char *p = NULL;
3188
3189 switch (t)
3190 {
3191 case EOL_DOS:
3192 p = FF_DOS;
3193 curbuf->b_p_tx = TRUE;
3194 break;
3195 case EOL_UNIX:
3196 p = FF_UNIX;
3197 curbuf->b_p_tx = FALSE;
3198 break;
3199 case EOL_MAC:
3200 p = FF_MAC;
3201 curbuf->b_p_tx = FALSE;
3202 break;
3203 }
3204 if (p != NULL)
3205 set_string_option_direct((char_u *)"ff", -1, (char_u *)p,
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00003206 OPT_FREE | opt_flags, 0);
3207
Bram Moolenaarf740b292006-02-16 22:11:02 +00003208 /* This may cause the buffer to become (un)modified. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003209 check_status(curbuf);
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00003210 redraw_tabline = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003211#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
Bram Moolenaar9b578142016-01-30 19:39:49 +01003220default_fileformat(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003221{
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
Bram Moolenaar9b578142016-01-30 19:39:49 +01003234call_shell(char_u *cmd, int opt)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003235{
3236 char_u *ncmd;
3237 int retval;
Bram Moolenaar05159a02005-02-26 23:04:13 +00003238#ifdef FEAT_PROFILE
3239 proftime_T wait_time;
3240#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003241
3242 if (p_verbose > 3)
3243 {
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00003244 verbose_enter();
Bram Moolenaar051b7822005-05-19 21:00:46 +00003245 smsg((char_u *)_("Calling shell to execute: \"%s\""),
Bram Moolenaar071d4272004-06-13 20:20:40 +00003246 cmd == NULL ? p_sh : cmd);
3247 out_char('\n');
3248 cursor_on();
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00003249 verbose_leave();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003250 }
3251
Bram Moolenaar05159a02005-02-26 23:04:13 +00003252#ifdef FEAT_PROFILE
Bram Moolenaar01265852006-03-20 21:50:15 +00003253 if (do_profiling == PROF_YES)
Bram Moolenaar05159a02005-02-26 23:04:13 +00003254 prof_child_enter(&wait_time);
3255#endif
3256
Bram Moolenaar071d4272004-06-13 20:20:40 +00003257 if (*p_sh == NUL)
3258 {
3259 EMSG(_(e_shellempty));
3260 retval = -1;
3261 }
3262 else
3263 {
3264#ifdef FEAT_GUI_MSWIN
3265 /* Don't hide the pointer while executing a shell command. */
3266 gui_mch_mousehide(FALSE);
3267#endif
3268#ifdef FEAT_GUI
3269 ++hold_gui_events;
3270#endif
3271 /* The external command may update a tags file, clear cached tags. */
3272 tag_freematch();
3273
3274 if (cmd == NULL || *p_sxq == NUL)
3275 retval = mch_call_shell(cmd, opt);
3276 else
3277 {
Bram Moolenaarf66b3fc2012-02-20 22:18:30 +01003278 char_u *ecmd = cmd;
3279
3280 if (*p_sxe != NUL && STRCMP(p_sxq, "(") == 0)
3281 {
3282 ecmd = vim_strsave_escaped_ext(cmd, p_sxe, '^', FALSE);
3283 if (ecmd == NULL)
3284 ecmd = cmd;
3285 }
3286 ncmd = alloc((unsigned)(STRLEN(ecmd) + STRLEN(p_sxq) * 2 + 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003287 if (ncmd != NULL)
3288 {
3289 STRCPY(ncmd, p_sxq);
Bram Moolenaarf66b3fc2012-02-20 22:18:30 +01003290 STRCAT(ncmd, ecmd);
Bram Moolenaar034b1152012-02-19 18:19:30 +01003291 /* When 'shellxquote' is ( append ).
3292 * When 'shellxquote' is "( append )". */
3293 STRCAT(ncmd, STRCMP(p_sxq, "(") == 0 ? (char_u *)")"
3294 : STRCMP(p_sxq, "\"(") == 0 ? (char_u *)")\""
3295 : p_sxq);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003296 retval = mch_call_shell(ncmd, opt);
3297 vim_free(ncmd);
3298 }
3299 else
3300 retval = -1;
Bram Moolenaarf66b3fc2012-02-20 22:18:30 +01003301 if (ecmd != cmd)
3302 vim_free(ecmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003303 }
3304#ifdef FEAT_GUI
3305 --hold_gui_events;
3306#endif
3307 /*
3308 * Check the window size, in case it changed while executing the
3309 * external command.
3310 */
3311 shell_resized_check();
3312 }
3313
3314#ifdef FEAT_EVAL
3315 set_vim_var_nr(VV_SHELL_ERROR, (long)retval);
Bram Moolenaar05159a02005-02-26 23:04:13 +00003316# ifdef FEAT_PROFILE
Bram Moolenaar01265852006-03-20 21:50:15 +00003317 if (do_profiling == PROF_YES)
Bram Moolenaar05159a02005-02-26 23:04:13 +00003318 prof_child_exit(&wait_time);
3319# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003320#endif
3321
3322 return retval;
3323}
3324
3325/*
Bram Moolenaar01265852006-03-20 21:50:15 +00003326 * VISUAL, SELECTMODE and OP_PENDING State are never set, they are equal to
3327 * NORMAL State with a condition. This function returns the real State.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003328 */
3329 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003330get_real_state(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003331{
3332 if (State & NORMAL)
3333 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003334 if (VIsual_active)
Bram Moolenaar01265852006-03-20 21:50:15 +00003335 {
3336 if (VIsual_select)
3337 return SELECTMODE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003338 return VISUAL;
Bram Moolenaar01265852006-03-20 21:50:15 +00003339 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01003340 else if (finish_op)
3341 return OP_PENDING;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003342 }
3343 return State;
3344}
3345
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003346#if defined(FEAT_MBYTE) || defined(PROTO)
3347/*
3348 * Return TRUE if "p" points to just after a path separator.
Bram Moolenaarb5ce04d2011-07-07 17:15:33 +02003349 * Takes care of multi-byte characters.
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003350 * "b" must point to the start of the file name
3351 */
3352 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003353after_pathsep(char_u *b, char_u *p)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003354{
Bram Moolenaarb5ce04d2011-07-07 17:15:33 +02003355 return p > b && vim_ispathsep(p[-1])
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003356 && (!has_mbyte || (*mb_head_off)(b, p - 1) == 0);
3357}
3358#endif
3359
3360/*
3361 * Return TRUE if file names "f1" and "f2" are in the same directory.
3362 * "f1" may be a short name, "f2" must be a full path.
3363 */
3364 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003365same_directory(char_u *f1, char_u *f2)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003366{
3367 char_u ffname[MAXPATHL];
3368 char_u *t1;
3369 char_u *t2;
3370
3371 /* safety check */
3372 if (f1 == NULL || f2 == NULL)
3373 return FALSE;
3374
3375 (void)vim_FullName(f1, ffname, MAXPATHL, FALSE);
3376 t1 = gettail_sep(ffname);
3377 t2 = gettail_sep(f2);
3378 return (t1 - ffname == t2 - f2
3379 && pathcmp((char *)ffname, (char *)f2, (int)(t1 - ffname)) == 0);
3380}
3381
Bram Moolenaar071d4272004-06-13 20:20:40 +00003382#if defined(FEAT_SESSION) || defined(MSWIN) || defined(FEAT_GUI_MAC) \
Bram Moolenaar4033c552017-09-16 20:54:51 +02003383 || defined(FEAT_GUI_GTK) \
Bram Moolenaar071d4272004-06-13 20:20:40 +00003384 || defined(FEAT_SUN_WORKSHOP) || defined(FEAT_NETBEANS_INTG) \
3385 || defined(PROTO)
3386/*
3387 * Change to a file's directory.
3388 * Caller must call shorten_fnames()!
3389 * Return OK or FAIL.
3390 */
3391 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003392vim_chdirfile(char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003393{
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003394 char_u dir[MAXPATHL];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003395
Bram Moolenaarbbebc852005-07-18 21:47:53 +00003396 vim_strncpy(dir, fname, MAXPATHL - 1);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003397 *gettail_sep(dir) = NUL;
3398 return mch_chdir((char *)dir) == 0 ? OK : FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003399}
3400#endif
3401
3402#if defined(STAT_IGNORES_SLASH) || defined(PROTO)
3403/*
3404 * Check if "name" ends in a slash and is not a directory.
3405 * Used for systems where stat() ignores a trailing slash on a file name.
3406 * The Vim code assumes a trailing slash is only ignored for a directory.
3407 */
Bram Moolenaar91acfff2017-03-12 19:22:36 +01003408 static int
Bram Moolenaard8492792017-03-16 12:22:38 +01003409illegal_slash(const char *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003410{
3411 if (name[0] == NUL)
3412 return FALSE; /* no file name is not illegal */
3413 if (name[strlen(name) - 1] != '/')
3414 return FALSE; /* no trailing slash */
3415 if (mch_isdir((char_u *)name))
3416 return FALSE; /* trailing slash for a directory */
3417 return TRUE;
3418}
Bram Moolenaar91acfff2017-03-12 19:22:36 +01003419
3420/*
3421 * Special implementation of mch_stat() for Solaris.
3422 */
3423 int
3424vim_stat(const char *name, stat_T *stp)
3425{
3426 /* On Solaris stat() accepts "file/" as if it was "file". Return -1 if
3427 * the name ends in "/" and it's not a directory. */
Bram Moolenaard8492792017-03-16 12:22:38 +01003428 return illegal_slash(name) ? -1 : stat(name, stp);
Bram Moolenaar91acfff2017-03-12 19:22:36 +01003429}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003430#endif
3431
3432#if defined(CURSOR_SHAPE) || defined(PROTO)
3433
3434/*
3435 * Handling of cursor and mouse pointer shapes in various modes.
3436 */
3437
3438cursorentry_T shape_table[SHAPE_IDX_COUNT] =
3439{
3440 /* The values will be filled in from the 'guicursor' and 'mouseshape'
3441 * defaults when Vim starts.
3442 * Adjust the SHAPE_IDX_ defines when making changes! */
3443 {0, 0, 0, 700L, 400L, 250L, 0, 0, "n", SHAPE_CURSOR+SHAPE_MOUSE},
3444 {0, 0, 0, 700L, 400L, 250L, 0, 0, "v", SHAPE_CURSOR+SHAPE_MOUSE},
3445 {0, 0, 0, 700L, 400L, 250L, 0, 0, "i", SHAPE_CURSOR+SHAPE_MOUSE},
3446 {0, 0, 0, 700L, 400L, 250L, 0, 0, "r", SHAPE_CURSOR+SHAPE_MOUSE},
3447 {0, 0, 0, 700L, 400L, 250L, 0, 0, "c", SHAPE_CURSOR+SHAPE_MOUSE},
3448 {0, 0, 0, 700L, 400L, 250L, 0, 0, "ci", SHAPE_CURSOR+SHAPE_MOUSE},
3449 {0, 0, 0, 700L, 400L, 250L, 0, 0, "cr", SHAPE_CURSOR+SHAPE_MOUSE},
3450 {0, 0, 0, 700L, 400L, 250L, 0, 0, "o", SHAPE_CURSOR+SHAPE_MOUSE},
3451 {0, 0, 0, 700L, 400L, 250L, 0, 0, "ve", SHAPE_CURSOR+SHAPE_MOUSE},
3452 {0, 0, 0, 0L, 0L, 0L, 0, 0, "e", SHAPE_MOUSE},
3453 {0, 0, 0, 0L, 0L, 0L, 0, 0, "s", SHAPE_MOUSE},
3454 {0, 0, 0, 0L, 0L, 0L, 0, 0, "sd", SHAPE_MOUSE},
3455 {0, 0, 0, 0L, 0L, 0L, 0, 0, "vs", SHAPE_MOUSE},
3456 {0, 0, 0, 0L, 0L, 0L, 0, 0, "vd", SHAPE_MOUSE},
3457 {0, 0, 0, 0L, 0L, 0L, 0, 0, "m", SHAPE_MOUSE},
3458 {0, 0, 0, 0L, 0L, 0L, 0, 0, "ml", SHAPE_MOUSE},
3459 {0, 0, 0, 100L, 100L, 100L, 0, 0, "sm", SHAPE_CURSOR},
3460};
3461
3462#ifdef FEAT_MOUSESHAPE
3463/*
3464 * Table with names for mouse shapes. Keep in sync with all the tables for
3465 * mch_set_mouse_shape()!.
3466 */
3467static char * mshape_names[] =
3468{
3469 "arrow", /* default, must be the first one */
3470 "blank", /* hidden */
3471 "beam",
3472 "updown",
3473 "udsizing",
3474 "leftright",
3475 "lrsizing",
3476 "busy",
3477 "no",
3478 "crosshair",
3479 "hand1",
3480 "hand2",
3481 "pencil",
3482 "question",
3483 "rightup-arrow",
3484 "up-arrow",
3485 NULL
3486};
3487#endif
3488
3489/*
3490 * Parse the 'guicursor' option ("what" is SHAPE_CURSOR) or 'mouseshape'
3491 * ("what" is SHAPE_MOUSE).
3492 * Returns error message for an illegal option, NULL otherwise.
3493 */
3494 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01003495parse_shape_opt(int what)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003496{
3497 char_u *modep;
3498 char_u *colonp;
3499 char_u *commap;
3500 char_u *slashp;
3501 char_u *p, *endp;
3502 int idx = 0; /* init for GCC */
3503 int all_idx;
3504 int len;
3505 int i;
3506 long n;
3507 int found_ve = FALSE; /* found "ve" flag */
3508 int round;
3509
3510 /*
3511 * First round: check for errors; second round: do it for real.
3512 */
3513 for (round = 1; round <= 2; ++round)
3514 {
3515 /*
3516 * Repeat for all comma separated parts.
3517 */
3518#ifdef FEAT_MOUSESHAPE
3519 if (what == SHAPE_MOUSE)
3520 modep = p_mouseshape;
3521 else
3522#endif
3523 modep = p_guicursor;
3524 while (*modep != NUL)
3525 {
3526 colonp = vim_strchr(modep, ':');
Bram Moolenaar24922ec2017-02-23 17:59:22 +01003527 commap = vim_strchr(modep, ',');
3528
3529 if (colonp == NULL || (commap != NULL && commap < colonp))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003530 return (char_u *)N_("E545: Missing colon");
3531 if (colonp == modep)
3532 return (char_u *)N_("E546: Illegal mode");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003533
3534 /*
3535 * Repeat for all mode's before the colon.
3536 * For the 'a' mode, we loop to handle all the modes.
3537 */
3538 all_idx = -1;
3539 while (modep < colonp || all_idx >= 0)
3540 {
3541 if (all_idx < 0)
3542 {
3543 /* Find the mode. */
3544 if (modep[1] == '-' || modep[1] == ':')
3545 len = 1;
3546 else
3547 len = 2;
3548 if (len == 1 && TOLOWER_ASC(modep[0]) == 'a')
3549 all_idx = SHAPE_IDX_COUNT - 1;
3550 else
3551 {
3552 for (idx = 0; idx < SHAPE_IDX_COUNT; ++idx)
3553 if (STRNICMP(modep, shape_table[idx].name, len)
3554 == 0)
3555 break;
3556 if (idx == SHAPE_IDX_COUNT
3557 || (shape_table[idx].used_for & what) == 0)
3558 return (char_u *)N_("E546: Illegal mode");
3559 if (len == 2 && modep[0] == 'v' && modep[1] == 'e')
3560 found_ve = TRUE;
3561 }
3562 modep += len + 1;
3563 }
3564
3565 if (all_idx >= 0)
3566 idx = all_idx--;
3567 else if (round == 2)
3568 {
3569#ifdef FEAT_MOUSESHAPE
3570 if (what == SHAPE_MOUSE)
3571 {
3572 /* Set the default, for the missing parts */
3573 shape_table[idx].mshape = 0;
3574 }
3575 else
3576#endif
3577 {
3578 /* Set the defaults, for the missing parts */
3579 shape_table[idx].shape = SHAPE_BLOCK;
3580 shape_table[idx].blinkwait = 700L;
3581 shape_table[idx].blinkon = 400L;
3582 shape_table[idx].blinkoff = 250L;
3583 }
3584 }
3585
3586 /* Parse the part after the colon */
3587 for (p = colonp + 1; *p && *p != ','; )
3588 {
3589#ifdef FEAT_MOUSESHAPE
3590 if (what == SHAPE_MOUSE)
3591 {
3592 for (i = 0; ; ++i)
3593 {
3594 if (mshape_names[i] == NULL)
3595 {
3596 if (!VIM_ISDIGIT(*p))
3597 return (char_u *)N_("E547: Illegal mouseshape");
3598 if (round == 2)
3599 shape_table[idx].mshape =
3600 getdigits(&p) + MSHAPE_NUMBERED;
3601 else
3602 (void)getdigits(&p);
3603 break;
3604 }
3605 len = (int)STRLEN(mshape_names[i]);
3606 if (STRNICMP(p, mshape_names[i], len) == 0)
3607 {
3608 if (round == 2)
3609 shape_table[idx].mshape = i;
3610 p += len;
3611 break;
3612 }
3613 }
3614 }
3615 else /* if (what == SHAPE_MOUSE) */
3616#endif
3617 {
3618 /*
3619 * First handle the ones with a number argument.
3620 */
3621 i = *p;
3622 len = 0;
3623 if (STRNICMP(p, "ver", 3) == 0)
3624 len = 3;
3625 else if (STRNICMP(p, "hor", 3) == 0)
3626 len = 3;
3627 else if (STRNICMP(p, "blinkwait", 9) == 0)
3628 len = 9;
3629 else if (STRNICMP(p, "blinkon", 7) == 0)
3630 len = 7;
3631 else if (STRNICMP(p, "blinkoff", 8) == 0)
3632 len = 8;
3633 if (len != 0)
3634 {
3635 p += len;
3636 if (!VIM_ISDIGIT(*p))
3637 return (char_u *)N_("E548: digit expected");
3638 n = getdigits(&p);
3639 if (len == 3) /* "ver" or "hor" */
3640 {
3641 if (n == 0)
3642 return (char_u *)N_("E549: Illegal percentage");
3643 if (round == 2)
3644 {
3645 if (TOLOWER_ASC(i) == 'v')
3646 shape_table[idx].shape = SHAPE_VER;
3647 else
3648 shape_table[idx].shape = SHAPE_HOR;
3649 shape_table[idx].percentage = n;
3650 }
3651 }
3652 else if (round == 2)
3653 {
3654 if (len == 9)
3655 shape_table[idx].blinkwait = n;
3656 else if (len == 7)
3657 shape_table[idx].blinkon = n;
3658 else
3659 shape_table[idx].blinkoff = n;
3660 }
3661 }
3662 else if (STRNICMP(p, "block", 5) == 0)
3663 {
3664 if (round == 2)
3665 shape_table[idx].shape = SHAPE_BLOCK;
3666 p += 5;
3667 }
3668 else /* must be a highlight group name then */
3669 {
3670 endp = vim_strchr(p, '-');
3671 if (commap == NULL) /* last part */
3672 {
3673 if (endp == NULL)
3674 endp = p + STRLEN(p); /* find end of part */
3675 }
3676 else if (endp > commap || endp == NULL)
3677 endp = commap;
3678 slashp = vim_strchr(p, '/');
3679 if (slashp != NULL && slashp < endp)
3680 {
3681 /* "group/langmap_group" */
3682 i = syn_check_group(p, (int)(slashp - p));
3683 p = slashp + 1;
3684 }
3685 if (round == 2)
3686 {
3687 shape_table[idx].id = syn_check_group(p,
3688 (int)(endp - p));
3689 shape_table[idx].id_lm = shape_table[idx].id;
3690 if (slashp != NULL && slashp < endp)
3691 shape_table[idx].id = i;
3692 }
3693 p = endp;
3694 }
3695 } /* if (what != SHAPE_MOUSE) */
3696
3697 if (*p == '-')
3698 ++p;
3699 }
3700 }
3701 modep = p;
3702 if (*modep == ',')
3703 ++modep;
3704 }
3705 }
3706
3707 /* If the 's' flag is not given, use the 'v' cursor for 's' */
3708 if (!found_ve)
3709 {
3710#ifdef FEAT_MOUSESHAPE
3711 if (what == SHAPE_MOUSE)
3712 {
3713 shape_table[SHAPE_IDX_VE].mshape = shape_table[SHAPE_IDX_V].mshape;
3714 }
3715 else
3716#endif
3717 {
3718 shape_table[SHAPE_IDX_VE].shape = shape_table[SHAPE_IDX_V].shape;
3719 shape_table[SHAPE_IDX_VE].percentage =
3720 shape_table[SHAPE_IDX_V].percentage;
3721 shape_table[SHAPE_IDX_VE].blinkwait =
3722 shape_table[SHAPE_IDX_V].blinkwait;
3723 shape_table[SHAPE_IDX_VE].blinkon =
3724 shape_table[SHAPE_IDX_V].blinkon;
3725 shape_table[SHAPE_IDX_VE].blinkoff =
3726 shape_table[SHAPE_IDX_V].blinkoff;
3727 shape_table[SHAPE_IDX_VE].id = shape_table[SHAPE_IDX_V].id;
3728 shape_table[SHAPE_IDX_VE].id_lm = shape_table[SHAPE_IDX_V].id_lm;
3729 }
3730 }
3731
3732 return NULL;
3733}
3734
Bram Moolenaarac6e65f2005-08-29 22:25:38 +00003735# if defined(MCH_CURSOR_SHAPE) || defined(FEAT_GUI) \
3736 || defined(FEAT_MOUSESHAPE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003737/*
3738 * Return the index into shape_table[] for the current mode.
3739 * When "mouse" is TRUE, consider indexes valid for the mouse pointer.
3740 */
3741 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003742get_shape_idx(int mouse)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003743{
3744#ifdef FEAT_MOUSESHAPE
3745 if (mouse && (State == HITRETURN || State == ASKMORE))
3746 {
3747# ifdef FEAT_GUI
Bram Moolenaar9588a0f2005-01-08 21:45:39 +00003748 int x, y;
3749 gui_mch_getmouse(&x, &y);
3750 if (Y_2_ROW(y) == Rows - 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003751 return SHAPE_IDX_MOREL;
3752# endif
3753 return SHAPE_IDX_MORE;
3754 }
3755 if (mouse && drag_status_line)
3756 return SHAPE_IDX_SDRAG;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003757 if (mouse && drag_sep_line)
3758 return SHAPE_IDX_VDRAG;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003759#endif
3760 if (!mouse && State == SHOWMATCH)
3761 return SHAPE_IDX_SM;
3762#ifdef FEAT_VREPLACE
3763 if (State & VREPLACE_FLAG)
3764 return SHAPE_IDX_R;
3765#endif
3766 if (State & REPLACE_FLAG)
3767 return SHAPE_IDX_R;
3768 if (State & INSERT)
3769 return SHAPE_IDX_I;
3770 if (State & CMDLINE)
3771 {
3772 if (cmdline_at_end())
3773 return SHAPE_IDX_C;
3774 if (cmdline_overstrike())
3775 return SHAPE_IDX_CR;
3776 return SHAPE_IDX_CI;
3777 }
3778 if (finish_op)
3779 return SHAPE_IDX_O;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003780 if (VIsual_active)
3781 {
3782 if (*p_sel == 'e')
3783 return SHAPE_IDX_VE;
3784 else
3785 return SHAPE_IDX_V;
3786 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003787 return SHAPE_IDX_N;
3788}
Bram Moolenaarac6e65f2005-08-29 22:25:38 +00003789#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003790
3791# if defined(FEAT_MOUSESHAPE) || defined(PROTO)
3792static int old_mouse_shape = 0;
3793
3794/*
3795 * Set the mouse shape:
3796 * If "shape" is -1, use shape depending on the current mode,
3797 * depending on the current state.
3798 * If "shape" is -2, only update the shape when it's CLINE or STATUS (used
3799 * when the mouse moves off the status or command line).
3800 */
3801 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003802update_mouseshape(int shape_idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003803{
3804 int new_mouse_shape;
3805
3806 /* Only works in GUI mode. */
Bram Moolenaar6bb68362005-03-22 23:03:44 +00003807 if (!gui.in_use || gui.starting)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003808 return;
3809
3810 /* Postpone the updating when more is to come. Speeds up executing of
3811 * mappings. */
3812 if (shape_idx == -1 && char_avail())
3813 {
3814 postponed_mouseshape = TRUE;
3815 return;
3816 }
3817
Bram Moolenaar14716812006-05-04 21:54:08 +00003818 /* When ignoring the mouse don't change shape on the statusline. */
3819 if (*p_mouse == NUL
3820 && (shape_idx == SHAPE_IDX_CLINE
3821 || shape_idx == SHAPE_IDX_STATUS
3822 || shape_idx == SHAPE_IDX_VSEP))
3823 shape_idx = -2;
3824
Bram Moolenaar071d4272004-06-13 20:20:40 +00003825 if (shape_idx == -2
3826 && old_mouse_shape != shape_table[SHAPE_IDX_CLINE].mshape
3827 && old_mouse_shape != shape_table[SHAPE_IDX_STATUS].mshape
3828 && old_mouse_shape != shape_table[SHAPE_IDX_VSEP].mshape)
3829 return;
3830 if (shape_idx < 0)
3831 new_mouse_shape = shape_table[get_shape_idx(TRUE)].mshape;
3832 else
3833 new_mouse_shape = shape_table[shape_idx].mshape;
3834 if (new_mouse_shape != old_mouse_shape)
3835 {
3836 mch_set_mouse_shape(new_mouse_shape);
3837 old_mouse_shape = new_mouse_shape;
3838 }
3839 postponed_mouseshape = FALSE;
3840}
3841# endif
3842
3843#endif /* CURSOR_SHAPE */
3844
3845
Bram Moolenaar071d4272004-06-13 20:20:40 +00003846/* TODO: make some #ifdef for this */
3847/*--------[ file searching ]-------------------------------------------------*/
3848/*
3849 * File searching functions for 'path', 'tags' and 'cdpath' options.
3850 * External visible functions:
3851 * vim_findfile_init() creates/initialises the search context
3852 * vim_findfile_free_visited() free list of visited files/dirs of search
3853 * context
3854 * vim_findfile() find a file in the search context
3855 * vim_findfile_cleanup() cleanup/free search context created by
3856 * vim_findfile_init()
3857 *
3858 * All static functions and variables start with 'ff_'
3859 *
3860 * In general it works like this:
3861 * First you create yourself a search context by calling vim_findfile_init().
3862 * It is possible to give a search context from a previous call to
3863 * vim_findfile_init(), so it can be reused. After this you call vim_findfile()
3864 * until you are satisfied with the result or it returns NULL. On every call it
3865 * returns the next file which matches the conditions given to
3866 * vim_findfile_init(). If it doesn't find a next file it returns NULL.
3867 *
3868 * It is possible to call vim_findfile_init() again to reinitialise your search
3869 * with some new parameters. Don't forget to pass your old search context to
3870 * it, so it can reuse it and especially reuse the list of already visited
3871 * directories. If you want to delete the list of already visited directories
3872 * simply call vim_findfile_free_visited().
3873 *
3874 * When you are done call vim_findfile_cleanup() to free the search context.
3875 *
3876 * The function vim_findfile_init() has a long comment, which describes the
3877 * needed parameters.
3878 *
3879 *
3880 *
3881 * ATTENTION:
3882 * ==========
Bram Moolenaar77f66d62007-02-20 02:16:18 +00003883 * Also we use an allocated search context here, this functions are NOT
Bram Moolenaar071d4272004-06-13 20:20:40 +00003884 * thread-safe!!!!!
3885 *
3886 * To minimize parameter passing (or because I'm to lazy), only the
3887 * external visible functions get a search context as a parameter. This is
3888 * then assigned to a static global, which is used throughout the local
3889 * functions.
3890 */
3891
3892/*
3893 * type for the directory search stack
3894 */
3895typedef struct ff_stack
3896{
3897 struct ff_stack *ffs_prev;
3898
3899 /* the fix part (no wildcards) and the part containing the wildcards
3900 * of the search path
3901 */
3902 char_u *ffs_fix_path;
3903#ifdef FEAT_PATH_EXTRA
3904 char_u *ffs_wc_path;
3905#endif
3906
3907 /* files/dirs found in the above directory, matched by the first wildcard
3908 * of wc_part
3909 */
3910 char_u **ffs_filearray;
3911 int ffs_filearray_size;
3912 char_u ffs_filearray_cur; /* needed for partly handled dirs */
3913
3914 /* to store status of partly handled directories
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00003915 * 0: we work on this directory for the first time
Bram Moolenaar071d4272004-06-13 20:20:40 +00003916 * 1: this directory was partly searched in an earlier step
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00003917 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003918 int ffs_stage;
3919
3920 /* How deep are we in the directory tree?
3921 * Counts backward from value of level parameter to vim_findfile_init
3922 */
3923 int ffs_level;
3924
3925 /* Did we already expand '**' to an empty string? */
3926 int ffs_star_star_empty;
3927} ff_stack_T;
3928
3929/*
3930 * type for already visited directories or files.
3931 */
3932typedef struct ff_visited
3933{
3934 struct ff_visited *ffv_next;
3935
3936#ifdef FEAT_PATH_EXTRA
3937 /* Visited directories are different if the wildcard string are
3938 * different. So we have to save it.
3939 */
3940 char_u *ffv_wc_path;
3941#endif
3942 /* for unix use inode etc for comparison (needed because of links), else
3943 * use filename.
3944 */
3945#ifdef UNIX
Bram Moolenaare1fbddc2009-05-16 19:07:03 +00003946 int ffv_dev_valid; /* ffv_dev and ffv_ino were set */
3947 dev_t ffv_dev; /* device number */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003948 ino_t ffv_ino; /* inode number */
3949#endif
3950 /* The memory for this struct is allocated according to the length of
3951 * ffv_fname.
3952 */
3953 char_u ffv_fname[1]; /* actually longer */
3954} ff_visited_T;
3955
3956/*
3957 * We might have to manage several visited lists during a search.
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00003958 * This is especially needed for the tags option. If tags is set to:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003959 * "./++/tags,./++/TAGS,++/tags" (replace + with *)
3960 * So we have to do 3 searches:
3961 * 1) search from the current files directory downward for the file "tags"
3962 * 2) search from the current files directory downward for the file "TAGS"
3963 * 3) search from Vims current directory downwards for the file "tags"
3964 * As you can see, the first and the third search are for the same file, so for
3965 * the third search we can use the visited list of the first search. For the
3966 * second search we must start from a empty visited list.
3967 * The struct ff_visited_list_hdr is used to manage a linked list of already
3968 * visited lists.
3969 */
3970typedef struct ff_visited_list_hdr
3971{
3972 struct ff_visited_list_hdr *ffvl_next;
3973
3974 /* the filename the attached visited list is for */
3975 char_u *ffvl_filename;
3976
3977 ff_visited_T *ffvl_visited_list;
3978
3979} ff_visited_list_hdr_T;
3980
3981
3982/*
3983 * '**' can be expanded to several directory levels.
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00003984 * Set the default maximum depth.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003985 */
3986#define FF_MAX_STAR_STAR_EXPAND ((char_u)30)
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00003987
Bram Moolenaar071d4272004-06-13 20:20:40 +00003988/*
3989 * The search context:
3990 * ffsc_stack_ptr: the stack for the dirs to search
3991 * ffsc_visited_list: the currently active visited list
3992 * ffsc_dir_visited_list: the currently active visited list for search dirs
3993 * ffsc_visited_lists_list: the list of all visited lists
3994 * ffsc_dir_visited_lists_list: the list of all visited lists for search dirs
3995 * ffsc_file_to_search: the file to search for
3996 * ffsc_start_dir: the starting directory, if search path was relative
3997 * ffsc_fix_path: the fix part of the given path (without wildcards)
3998 * Needed for upward search.
3999 * ffsc_wc_path: the part of the given path containing wildcards
4000 * ffsc_level: how many levels of dirs to search downwards
4001 * ffsc_stopdirs_v: array of stop directories for upward search
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004002 * ffsc_find_what: FINDFILE_BOTH, FINDFILE_DIR or FINDFILE_FILE
Bram Moolenaar463ee342010-08-08 18:17:52 +02004003 * ffsc_tagfile: searching for tags file, don't use 'suffixesadd'
Bram Moolenaar071d4272004-06-13 20:20:40 +00004004 */
4005typedef struct ff_search_ctx_T
4006{
4007 ff_stack_T *ffsc_stack_ptr;
4008 ff_visited_list_hdr_T *ffsc_visited_list;
4009 ff_visited_list_hdr_T *ffsc_dir_visited_list;
4010 ff_visited_list_hdr_T *ffsc_visited_lists_list;
4011 ff_visited_list_hdr_T *ffsc_dir_visited_lists_list;
4012 char_u *ffsc_file_to_search;
4013 char_u *ffsc_start_dir;
4014 char_u *ffsc_fix_path;
4015#ifdef FEAT_PATH_EXTRA
4016 char_u *ffsc_wc_path;
4017 int ffsc_level;
4018 char_u **ffsc_stopdirs_v;
4019#endif
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004020 int ffsc_find_what;
Bram Moolenaar463ee342010-08-08 18:17:52 +02004021 int ffsc_tagfile;
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00004022} ff_search_ctx_T;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004023
Bram Moolenaar071d4272004-06-13 20:20:40 +00004024/* locally needed functions */
4025#ifdef FEAT_PATH_EXTRA
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01004026static int ff_check_visited(ff_visited_T **, char_u *, char_u *);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004027#else
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01004028static int ff_check_visited(ff_visited_T **, char_u *);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004029#endif
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01004030static void vim_findfile_free_visited_list(ff_visited_list_hdr_T **list_headp);
4031static void ff_free_visited_list(ff_visited_T *vl);
4032static ff_visited_list_hdr_T* ff_get_visited_list(char_u *, ff_visited_list_hdr_T **list_headp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004033#ifdef FEAT_PATH_EXTRA
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01004034static int ff_wc_equal(char_u *s1, char_u *s2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004035#endif
4036
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01004037static void ff_push(ff_search_ctx_T *search_ctx, ff_stack_T *stack_ptr);
4038static ff_stack_T *ff_pop(ff_search_ctx_T *search_ctx);
4039static void ff_clear(ff_search_ctx_T *search_ctx);
4040static void ff_free_stack_element(ff_stack_T *stack_ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004041#ifdef FEAT_PATH_EXTRA
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01004042static ff_stack_T *ff_create_stack_element(char_u *, char_u *, int, int);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004043#else
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01004044static ff_stack_T *ff_create_stack_element(char_u *, int, int);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004045#endif
4046#ifdef FEAT_PATH_EXTRA
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01004047static int ff_path_in_stoplist(char_u *, int, char_u **);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004048#endif
4049
Bram Moolenaarb9ba4032011-12-08 17:49:35 +01004050static char_u e_pathtoolong[] = N_("E854: path too long for completion");
4051
Bram Moolenaar071d4272004-06-13 20:20:40 +00004052#if 0
4053/*
4054 * if someone likes findfirst/findnext, here are the functions
4055 * NOT TESTED!!
4056 */
4057
4058static void *ff_fn_search_context = NULL;
4059
4060 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01004061vim_findfirst(char_u *path, char_u *filename, int level)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004062{
4063 ff_fn_search_context =
4064 vim_findfile_init(path, filename, NULL, level, TRUE, FALSE,
4065 ff_fn_search_context, rel_fname);
4066 if (NULL == ff_fn_search_context)
4067 return NULL;
4068 else
4069 return vim_findnext()
4070}
4071
4072 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01004073vim_findnext(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004074{
4075 char_u *ret = vim_findfile(ff_fn_search_context);
4076
4077 if (NULL == ret)
4078 {
4079 vim_findfile_cleanup(ff_fn_search_context);
4080 ff_fn_search_context = NULL;
4081 }
4082 return ret;
4083}
4084#endif
4085
4086/*
Bram Moolenaare2b590e2010-08-08 18:29:48 +02004087 * Initialization routine for vim_findfile().
Bram Moolenaar071d4272004-06-13 20:20:40 +00004088 *
Bram Moolenaarbe18d102010-05-22 21:37:53 +02004089 * Returns the newly allocated search context or NULL if an error occurred.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004090 *
4091 * Don't forget to clean up by calling vim_findfile_cleanup() if you are done
4092 * with the search context.
4093 *
4094 * Find the file 'filename' in the directory 'path'.
4095 * The parameter 'path' may contain wildcards. If so only search 'level'
4096 * directories deep. The parameter 'level' is the absolute maximum and is
4097 * not related to restricts given to the '**' wildcard. If 'level' is 100
4098 * and you use '**200' vim_findfile() will stop after 100 levels.
4099 *
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004100 * 'filename' cannot contain wildcards! It is used as-is, no backslashes to
4101 * escape special characters.
4102 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00004103 * If 'stopdirs' is not NULL and nothing is found downward, the search is
4104 * restarted on the next higher directory level. This is repeated until the
4105 * start-directory of a search is contained in 'stopdirs'. 'stopdirs' has the
4106 * format ";*<dirname>*\(;<dirname>\)*;\=$".
4107 *
4108 * If the 'path' is relative, the starting dir for the search is either VIM's
4109 * current dir or if the path starts with "./" the current files dir.
Bram Moolenaarbe18d102010-05-22 21:37:53 +02004110 * If the 'path' is absolute, the starting dir is that part of the path before
Bram Moolenaar071d4272004-06-13 20:20:40 +00004111 * the first wildcard.
4112 *
4113 * Upward search is only done on the starting dir.
4114 *
4115 * If 'free_visited' is TRUE the list of already visited files/directories is
4116 * cleared. Set this to FALSE if you just want to search from another
4117 * directory, but want to be sure that no directory from a previous search is
4118 * searched again. This is useful if you search for a file at different places.
4119 * The list of visited files/dirs can also be cleared with the function
4120 * vim_findfile_free_visited().
4121 *
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004122 * Set the parameter 'find_what' to FINDFILE_DIR if you want to search for
4123 * directories only, FINDFILE_FILE for files only, FINDFILE_BOTH for both.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004124 *
4125 * A search context returned by a previous call to vim_findfile_init() can be
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004126 * passed in the parameter "search_ctx_arg". This context is reused and
4127 * reinitialized with the new parameters. The list of already visited
Bram Moolenaar071d4272004-06-13 20:20:40 +00004128 * directories from this context is only deleted if the parameter
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004129 * "free_visited" is true. Be aware that the passed "search_ctx_arg" is freed
4130 * if the reinitialization fails.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004131 *
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004132 * If you don't have a search context from a previous call "search_ctx_arg"
4133 * must be NULL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004134 *
4135 * This function silently ignores a few errors, vim_findfile() will have
4136 * limited functionality then.
4137 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004138 void *
Bram Moolenaar9b578142016-01-30 19:39:49 +01004139vim_findfile_init(
4140 char_u *path,
4141 char_u *filename,
4142 char_u *stopdirs UNUSED,
4143 int level,
4144 int free_visited,
4145 int find_what,
4146 void *search_ctx_arg,
4147 int tagfile, /* expanding names of tags files */
4148 char_u *rel_fname) /* file name to use for "." */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004149{
4150#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004151 char_u *wc_part;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004152#endif
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004153 ff_stack_T *sptr;
4154 ff_search_ctx_T *search_ctx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004155
4156 /* If a search context is given by the caller, reuse it, else allocate a
4157 * new one.
4158 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004159 if (search_ctx_arg != NULL)
4160 search_ctx = search_ctx_arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004161 else
4162 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004163 search_ctx = (ff_search_ctx_T*)alloc((unsigned)sizeof(ff_search_ctx_T));
4164 if (search_ctx == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004165 goto error_return;
Bram Moolenaar7db5fc82010-05-24 11:59:29 +02004166 vim_memset(search_ctx, 0, sizeof(ff_search_ctx_T));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004167 }
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004168 search_ctx->ffsc_find_what = find_what;
Bram Moolenaar463ee342010-08-08 18:17:52 +02004169 search_ctx->ffsc_tagfile = tagfile;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004170
4171 /* clear the search context, but NOT the visited lists */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004172 ff_clear(search_ctx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004173
4174 /* clear visited list if wanted */
4175 if (free_visited == TRUE)
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004176 vim_findfile_free_visited(search_ctx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004177 else
4178 {
4179 /* Reuse old visited lists. Get the visited list for the given
4180 * filename. If no list for the current filename exists, creates a new
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004181 * one. */
4182 search_ctx->ffsc_visited_list = ff_get_visited_list(filename,
4183 &search_ctx->ffsc_visited_lists_list);
4184 if (search_ctx->ffsc_visited_list == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004185 goto error_return;
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004186 search_ctx->ffsc_dir_visited_list = ff_get_visited_list(filename,
4187 &search_ctx->ffsc_dir_visited_lists_list);
4188 if (search_ctx->ffsc_dir_visited_list == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004189 goto error_return;
4190 }
4191
4192 if (ff_expand_buffer == NULL)
4193 {
4194 ff_expand_buffer = (char_u*)alloc(MAXPATHL);
4195 if (ff_expand_buffer == NULL)
4196 goto error_return;
4197 }
4198
4199 /* Store information on starting dir now if path is relative.
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00004200 * If path is absolute, we do that later. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004201 if (path[0] == '.'
4202 && (vim_ispathsep(path[1]) || path[1] == NUL)
4203 && (!tagfile || vim_strchr(p_cpo, CPO_DOTTAG) == NULL)
4204 && rel_fname != NULL)
4205 {
4206 int len = (int)(gettail(rel_fname) - rel_fname);
4207
4208 if (!vim_isAbsName(rel_fname) && len + 1 < MAXPATHL)
4209 {
4210 /* Make the start dir an absolute path name. */
Bram Moolenaarbbebc852005-07-18 21:47:53 +00004211 vim_strncpy(ff_expand_buffer, rel_fname, len);
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004212 search_ctx->ffsc_start_dir = FullName_save(ff_expand_buffer, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004213 }
4214 else
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004215 search_ctx->ffsc_start_dir = vim_strnsave(rel_fname, len);
4216 if (search_ctx->ffsc_start_dir == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004217 goto error_return;
4218 if (*++path != NUL)
4219 ++path;
4220 }
4221 else if (*path == NUL || !vim_isAbsName(path))
4222 {
4223#ifdef BACKSLASH_IN_FILENAME
4224 /* "c:dir" needs "c:" to be expanded, otherwise use current dir */
4225 if (*path != NUL && path[1] == ':')
4226 {
4227 char_u drive[3];
4228
4229 drive[0] = path[0];
4230 drive[1] = ':';
4231 drive[2] = NUL;
4232 if (vim_FullName(drive, ff_expand_buffer, MAXPATHL, TRUE) == FAIL)
4233 goto error_return;
4234 path += 2;
4235 }
4236 else
4237#endif
4238 if (mch_dirname(ff_expand_buffer, MAXPATHL) == FAIL)
4239 goto error_return;
4240
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004241 search_ctx->ffsc_start_dir = vim_strsave(ff_expand_buffer);
4242 if (search_ctx->ffsc_start_dir == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004243 goto error_return;
4244
4245#ifdef BACKSLASH_IN_FILENAME
4246 /* A path that starts with "/dir" is relative to the drive, not to the
4247 * directory (but not for "//machine/dir"). Only use the drive name. */
4248 if ((*path == '/' || *path == '\\')
4249 && path[1] != path[0]
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004250 && search_ctx->ffsc_start_dir[1] == ':')
4251 search_ctx->ffsc_start_dir[2] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004252#endif
4253 }
4254
4255#ifdef FEAT_PATH_EXTRA
4256 /*
4257 * If stopdirs are given, split them into an array of pointers.
4258 * If this fails (mem allocation), there is no upward search at all or a
4259 * stop directory is not recognized -> continue silently.
4260 * If stopdirs just contains a ";" or is empty,
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004261 * search_ctx->ffsc_stopdirs_v will only contain a NULL pointer. This
Bram Moolenaar071d4272004-06-13 20:20:40 +00004262 * is handled as unlimited upward search. See function
4263 * ff_path_in_stoplist() for details.
4264 */
4265 if (stopdirs != NULL)
4266 {
4267 char_u *walker = stopdirs;
4268 int dircount;
4269
4270 while (*walker == ';')
4271 walker++;
4272
4273 dircount = 1;
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004274 search_ctx->ffsc_stopdirs_v =
4275 (char_u **)alloc((unsigned)sizeof(char_u *));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004276
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004277 if (search_ctx->ffsc_stopdirs_v != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004278 {
4279 do
4280 {
4281 char_u *helper;
4282 void *ptr;
4283
4284 helper = walker;
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004285 ptr = vim_realloc(search_ctx->ffsc_stopdirs_v,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004286 (dircount + 1) * sizeof(char_u *));
4287 if (ptr)
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004288 search_ctx->ffsc_stopdirs_v = ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004289 else
4290 /* ignore, keep what we have and continue */
4291 break;
4292 walker = vim_strchr(walker, ';');
4293 if (walker)
4294 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004295 search_ctx->ffsc_stopdirs_v[dircount-1] =
4296 vim_strnsave(helper, (int)(walker - helper));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004297 walker++;
4298 }
4299 else
4300 /* this might be "", which means ascent till top
4301 * of directory tree.
4302 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004303 search_ctx->ffsc_stopdirs_v[dircount-1] =
4304 vim_strsave(helper);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004305
4306 dircount++;
4307
4308 } while (walker != NULL);
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004309 search_ctx->ffsc_stopdirs_v[dircount-1] = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004310 }
4311 }
4312#endif
4313
4314#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004315 search_ctx->ffsc_level = level;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004316
4317 /* split into:
4318 * -fix path
4319 * -wildcard_stuff (might be NULL)
4320 */
4321 wc_part = vim_strchr(path, '*');
4322 if (wc_part != NULL)
4323 {
4324 int llevel;
4325 int len;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00004326 char *errpt;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004327
4328 /* save the fix part of the path */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004329 search_ctx->ffsc_fix_path = vim_strnsave(path, (int)(wc_part - path));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004330
4331 /*
4332 * copy wc_path and add restricts to the '**' wildcard.
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00004333 * The octet after a '**' is used as a (binary) counter.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004334 * So '**3' is transposed to '**^C' ('^C' is ASCII value 3)
4335 * or '**76' is transposed to '**N'( 'N' is ASCII value 76).
4336 * For EBCDIC you get different character values.
4337 * If no restrict is given after '**' the default is used.
Bram Moolenaar21160b92009-11-11 15:56:10 +00004338 * Due to this technique the path looks awful if you print it as a
Bram Moolenaar071d4272004-06-13 20:20:40 +00004339 * string.
4340 */
4341 len = 0;
4342 while (*wc_part != NUL)
4343 {
Bram Moolenaarb9ba4032011-12-08 17:49:35 +01004344 if (len + 5 >= MAXPATHL)
4345 {
4346 EMSG(_(e_pathtoolong));
4347 break;
4348 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004349 if (STRNCMP(wc_part, "**", 2) == 0)
4350 {
4351 ff_expand_buffer[len++] = *wc_part++;
4352 ff_expand_buffer[len++] = *wc_part++;
4353
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00004354 llevel = strtol((char *)wc_part, &errpt, 10);
4355 if ((char_u *)errpt != wc_part && llevel > 0 && llevel < 255)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004356 ff_expand_buffer[len++] = llevel;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00004357 else if ((char_u *)errpt != wc_part && llevel == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004358 /* restrict is 0 -> remove already added '**' */
4359 len -= 2;
4360 else
4361 ff_expand_buffer[len++] = FF_MAX_STAR_STAR_EXPAND;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00004362 wc_part = (char_u *)errpt;
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00004363 if (*wc_part != NUL && !vim_ispathsep(*wc_part))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004364 {
4365 EMSG2(_("E343: Invalid path: '**[number]' must be at the end of the path or be followed by '%s'."), PATHSEPSTR);
4366 goto error_return;
4367 }
4368 }
4369 else
4370 ff_expand_buffer[len++] = *wc_part++;
4371 }
4372 ff_expand_buffer[len] = NUL;
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004373 search_ctx->ffsc_wc_path = vim_strsave(ff_expand_buffer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004374
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004375 if (search_ctx->ffsc_wc_path == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004376 goto error_return;
4377 }
4378 else
4379#endif
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004380 search_ctx->ffsc_fix_path = vim_strsave(path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004381
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004382 if (search_ctx->ffsc_start_dir == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004383 {
4384 /* store the fix part as startdir.
4385 * This is needed if the parameter path is fully qualified.
4386 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004387 search_ctx->ffsc_start_dir = vim_strsave(search_ctx->ffsc_fix_path);
Bram Moolenaara9d52e32010-07-31 16:44:19 +02004388 if (search_ctx->ffsc_start_dir == NULL)
4389 goto error_return;
4390 search_ctx->ffsc_fix_path[0] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004391 }
4392
4393 /* create an absolute path */
Bram Moolenaarb9ba4032011-12-08 17:49:35 +01004394 if (STRLEN(search_ctx->ffsc_start_dir)
4395 + STRLEN(search_ctx->ffsc_fix_path) + 3 >= MAXPATHL)
4396 {
4397 EMSG(_(e_pathtoolong));
4398 goto error_return;
4399 }
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004400 STRCPY(ff_expand_buffer, search_ctx->ffsc_start_dir);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004401 add_pathsep(ff_expand_buffer);
Bram Moolenaarf4c5fcb2013-07-03 17:14:00 +02004402 {
Bram Moolenaar61214042013-07-04 21:19:33 +02004403 int eb_len = (int)STRLEN(ff_expand_buffer);
4404 char_u *buf = alloc(eb_len
4405 + (int)STRLEN(search_ctx->ffsc_fix_path) + 1);
Bram Moolenaarf4c5fcb2013-07-03 17:14:00 +02004406
4407 STRCPY(buf, ff_expand_buffer);
Bram Moolenaar0f5a5ed2013-07-03 17:51:17 +02004408 STRCPY(buf + eb_len, search_ctx->ffsc_fix_path);
Bram Moolenaarf4c5fcb2013-07-03 17:14:00 +02004409 if (mch_isdir(buf))
4410 {
4411 STRCAT(ff_expand_buffer, search_ctx->ffsc_fix_path);
4412 add_pathsep(ff_expand_buffer);
4413 }
4414#ifdef FEAT_PATH_EXTRA
4415 else
4416 {
Bram Moolenaaree0ee2a2013-07-03 21:19:07 +02004417 char_u *p = gettail(search_ctx->ffsc_fix_path);
Bram Moolenaar5f4c8402014-01-06 06:19:11 +01004418 char_u *wc_path = NULL;
4419 char_u *temp = NULL;
Bram Moolenaarf4c5fcb2013-07-03 17:14:00 +02004420 int len = 0;
4421
Bram Moolenaaree0ee2a2013-07-03 21:19:07 +02004422 if (p > search_ctx->ffsc_fix_path)
Bram Moolenaarf4c5fcb2013-07-03 17:14:00 +02004423 {
Bram Moolenaar61214042013-07-04 21:19:33 +02004424 len = (int)(p - search_ctx->ffsc_fix_path) - 1;
Bram Moolenaarf4c5fcb2013-07-03 17:14:00 +02004425 STRNCAT(ff_expand_buffer, search_ctx->ffsc_fix_path, len);
4426 add_pathsep(ff_expand_buffer);
4427 }
4428 else
Bram Moolenaar61214042013-07-04 21:19:33 +02004429 len = (int)STRLEN(search_ctx->ffsc_fix_path);
Bram Moolenaarf4c5fcb2013-07-03 17:14:00 +02004430
4431 if (search_ctx->ffsc_wc_path != NULL)
4432 {
4433 wc_path = vim_strsave(search_ctx->ffsc_wc_path);
Bram Moolenaar61214042013-07-04 21:19:33 +02004434 temp = alloc((int)(STRLEN(search_ctx->ffsc_wc_path)
Bram Moolenaare8785f22013-07-07 16:15:35 +02004435 + STRLEN(search_ctx->ffsc_fix_path + len)
4436 + 1));
Bram Moolenaarc79a5452015-09-29 12:08:42 +02004437 if (temp == NULL || wc_path == NULL)
4438 {
4439 vim_free(buf);
4440 vim_free(temp);
4441 vim_free(wc_path);
4442 goto error_return;
4443 }
Bram Moolenaarf4c5fcb2013-07-03 17:14:00 +02004444
Bram Moolenaarc79a5452015-09-29 12:08:42 +02004445 STRCPY(temp, search_ctx->ffsc_fix_path + len);
4446 STRCAT(temp, search_ctx->ffsc_wc_path);
4447 vim_free(search_ctx->ffsc_wc_path);
Bram Moolenaarf4c5fcb2013-07-03 17:14:00 +02004448 vim_free(wc_path);
Bram Moolenaarc79a5452015-09-29 12:08:42 +02004449 search_ctx->ffsc_wc_path = temp;
Bram Moolenaarf4c5fcb2013-07-03 17:14:00 +02004450 }
Bram Moolenaarf4c5fcb2013-07-03 17:14:00 +02004451 }
4452#endif
4453 vim_free(buf);
4454 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004455
4456 sptr = ff_create_stack_element(ff_expand_buffer,
4457#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004458 search_ctx->ffsc_wc_path,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004459#endif
4460 level, 0);
4461
4462 if (sptr == NULL)
4463 goto error_return;
4464
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004465 ff_push(search_ctx, sptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004466
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004467 search_ctx->ffsc_file_to_search = vim_strsave(filename);
4468 if (search_ctx->ffsc_file_to_search == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004469 goto error_return;
4470
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004471 return search_ctx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004472
4473error_return:
4474 /*
4475 * We clear the search context now!
4476 * Even when the caller gave us a (perhaps valid) context we free it here,
4477 * as we might have already destroyed it.
4478 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004479 vim_findfile_cleanup(search_ctx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004480 return NULL;
4481}
4482
4483#if defined(FEAT_PATH_EXTRA) || defined(PROTO)
4484/*
4485 * Get the stopdir string. Check that ';' is not escaped.
4486 */
4487 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01004488vim_findfile_stopdir(char_u *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004489{
4490 char_u *r_ptr = buf;
4491
4492 while (*r_ptr != NUL && *r_ptr != ';')
4493 {
4494 if (r_ptr[0] == '\\' && r_ptr[1] == ';')
4495 {
Bram Moolenaar0b573a52011-07-27 17:31:47 +02004496 /* Overwrite the escape char,
4497 * use STRLEN(r_ptr) to move the trailing '\0'. */
Bram Moolenaar446cb832008-06-24 21:56:24 +00004498 STRMOVE(r_ptr, r_ptr + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004499 r_ptr++;
4500 }
4501 r_ptr++;
4502 }
4503 if (*r_ptr == ';')
4504 {
4505 *r_ptr = 0;
4506 r_ptr++;
4507 }
4508 else if (*r_ptr == NUL)
4509 r_ptr = NULL;
4510 return r_ptr;
4511}
4512#endif
4513
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004514/*
4515 * Clean up the given search context. Can handle a NULL pointer.
4516 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004517 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004518vim_findfile_cleanup(void *ctx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004519{
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00004520 if (ctx == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004521 return;
4522
Bram Moolenaar071d4272004-06-13 20:20:40 +00004523 vim_findfile_free_visited(ctx);
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004524 ff_clear(ctx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004525 vim_free(ctx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004526}
4527
4528/*
4529 * Find a file in a search context.
4530 * The search context was created with vim_findfile_init() above.
4531 * Return a pointer to an allocated file name or NULL if nothing found.
4532 * To get all matching files call this function until you get NULL.
4533 *
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00004534 * If the passed search_context is NULL, NULL is returned.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004535 *
4536 * The search algorithm is depth first. To change this replace the
4537 * stack with a list (don't forget to leave partly searched directories on the
4538 * top of the list).
4539 */
4540 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01004541vim_findfile(void *search_ctx_arg)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004542{
4543 char_u *file_path;
4544#ifdef FEAT_PATH_EXTRA
4545 char_u *rest_of_wildcards;
4546 char_u *path_end = NULL;
4547#endif
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004548 ff_stack_T *stackp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004549#if defined(FEAT_SEARCHPATH) || defined(FEAT_PATH_EXTRA)
4550 int len;
4551#endif
4552 int i;
4553 char_u *p;
4554#ifdef FEAT_SEARCHPATH
4555 char_u *suf;
4556#endif
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004557 ff_search_ctx_T *search_ctx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004558
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004559 if (search_ctx_arg == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004560 return NULL;
4561
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004562 search_ctx = (ff_search_ctx_T *)search_ctx_arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004563
4564 /*
4565 * filepath is used as buffer for various actions and as the storage to
4566 * return a found filename.
4567 */
4568 if ((file_path = alloc((int)MAXPATHL)) == NULL)
4569 return NULL;
4570
4571#ifdef FEAT_PATH_EXTRA
4572 /* store the end of the start dir -- needed for upward search */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004573 if (search_ctx->ffsc_start_dir != NULL)
4574 path_end = &search_ctx->ffsc_start_dir[
4575 STRLEN(search_ctx->ffsc_start_dir)];
Bram Moolenaar071d4272004-06-13 20:20:40 +00004576#endif
4577
4578#ifdef FEAT_PATH_EXTRA
4579 /* upward search loop */
4580 for (;;)
4581 {
4582#endif
4583 /* downward search loop */
4584 for (;;)
4585 {
4586 /* check if user user wants to stop the search*/
4587 ui_breakcheck();
4588 if (got_int)
4589 break;
4590
4591 /* get directory to work on from stack */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004592 stackp = ff_pop(search_ctx);
4593 if (stackp == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004594 break;
4595
4596 /*
4597 * TODO: decide if we leave this test in
4598 *
4599 * GOOD: don't search a directory(-tree) twice.
4600 * BAD: - check linked list for every new directory entered.
4601 * - check for double files also done below
4602 *
4603 * Here we check if we already searched this directory.
4604 * We already searched a directory if:
4605 * 1) The directory is the same.
4606 * 2) We would use the same wildcard string.
4607 *
4608 * Good if you have links on same directory via several ways
4609 * or you have selfreferences in directories (e.g. SuSE Linux 6.3:
4610 * /etc/rc.d/init.d is linked to /etc/rc.d -> endless loop)
4611 *
4612 * This check is only needed for directories we work on for the
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004613 * first time (hence stackp->ff_filearray == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004614 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004615 if (stackp->ffs_filearray == NULL
4616 && ff_check_visited(&search_ctx->ffsc_dir_visited_list
Bram Moolenaar071d4272004-06-13 20:20:40 +00004617 ->ffvl_visited_list,
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004618 stackp->ffs_fix_path
Bram Moolenaar071d4272004-06-13 20:20:40 +00004619#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004620 , stackp->ffs_wc_path
Bram Moolenaar071d4272004-06-13 20:20:40 +00004621#endif
4622 ) == FAIL)
4623 {
4624#ifdef FF_VERBOSE
4625 if (p_verbose >= 5)
4626 {
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004627 verbose_enter_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004628 smsg((char_u *)"Already Searched: %s (%s)",
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004629 stackp->ffs_fix_path, stackp->ffs_wc_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004630 /* don't overwrite this either */
4631 msg_puts((char_u *)"\n");
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004632 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004633 }
4634#endif
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004635 ff_free_stack_element(stackp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004636 continue;
4637 }
4638#ifdef FF_VERBOSE
4639 else if (p_verbose >= 5)
4640 {
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004641 verbose_enter_scroll();
Bram Moolenaar051b7822005-05-19 21:00:46 +00004642 smsg((char_u *)"Searching: %s (%s)",
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004643 stackp->ffs_fix_path, stackp->ffs_wc_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004644 /* don't overwrite this either */
4645 msg_puts((char_u *)"\n");
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004646 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004647 }
4648#endif
4649
4650 /* check depth */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004651 if (stackp->ffs_level <= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004652 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004653 ff_free_stack_element(stackp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004654 continue;
4655 }
4656
4657 file_path[0] = NUL;
4658
4659 /*
4660 * If no filearray till now expand wildcards
4661 * The function expand_wildcards() can handle an array of paths
4662 * and all possible expands are returned in one array. We use this
4663 * to handle the expansion of '**' into an empty string.
4664 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004665 if (stackp->ffs_filearray == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004666 {
4667 char_u *dirptrs[2];
4668
4669 /* we use filepath to build the path expand_wildcards() should
4670 * expand.
4671 */
4672 dirptrs[0] = file_path;
4673 dirptrs[1] = NULL;
4674
4675 /* if we have a start dir copy it in */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004676 if (!vim_isAbsName(stackp->ffs_fix_path)
4677 && search_ctx->ffsc_start_dir)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004678 {
Bram Moolenaar15618fa2017-03-19 21:37:13 +01004679 if (STRLEN(search_ctx->ffsc_start_dir) + 1 < MAXPATHL)
4680 {
4681 STRCPY(file_path, search_ctx->ffsc_start_dir);
4682 add_pathsep(file_path);
4683 }
4684 else
4685 goto fail;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004686 }
4687
4688 /* append the fix part of the search path */
Bram Moolenaar15618fa2017-03-19 21:37:13 +01004689 if (STRLEN(file_path) + STRLEN(stackp->ffs_fix_path) + 1 < MAXPATHL)
4690 {
4691 STRCAT(file_path, stackp->ffs_fix_path);
4692 add_pathsep(file_path);
4693 }
4694 else
4695 goto fail;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004696
4697#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004698 rest_of_wildcards = stackp->ffs_wc_path;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004699 if (*rest_of_wildcards != NUL)
4700 {
4701 len = (int)STRLEN(file_path);
4702 if (STRNCMP(rest_of_wildcards, "**", 2) == 0)
4703 {
4704 /* pointer to the restrict byte
4705 * The restrict byte is not a character!
4706 */
4707 p = rest_of_wildcards + 2;
4708
4709 if (*p > 0)
4710 {
4711 (*p)--;
Bram Moolenaar15618fa2017-03-19 21:37:13 +01004712 if (len + 1 < MAXPATHL)
4713 file_path[len++] = '*';
4714 else
4715 goto fail;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004716 }
4717
4718 if (*p == 0)
4719 {
4720 /* remove '**<numb> from wildcards */
Bram Moolenaar446cb832008-06-24 21:56:24 +00004721 STRMOVE(rest_of_wildcards, rest_of_wildcards + 3);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004722 }
4723 else
4724 rest_of_wildcards += 3;
4725
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004726 if (stackp->ffs_star_star_empty == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004727 {
4728 /* if not done before, expand '**' to empty */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004729 stackp->ffs_star_star_empty = 1;
4730 dirptrs[1] = stackp->ffs_fix_path;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004731 }
4732 }
4733
4734 /*
4735 * Here we copy until the next path separator or the end of
4736 * the path. If we stop at a path separator, there is
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00004737 * still something else left. This is handled below by
Bram Moolenaar071d4272004-06-13 20:20:40 +00004738 * pushing every directory returned from expand_wildcards()
4739 * on the stack again for further search.
4740 */
4741 while (*rest_of_wildcards
4742 && !vim_ispathsep(*rest_of_wildcards))
Bram Moolenaar15618fa2017-03-19 21:37:13 +01004743 if (len + 1 < MAXPATHL)
4744 file_path[len++] = *rest_of_wildcards++;
4745 else
4746 goto fail;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004747
4748 file_path[len] = NUL;
4749 if (vim_ispathsep(*rest_of_wildcards))
4750 rest_of_wildcards++;
4751 }
4752#endif
4753
4754 /*
4755 * Expand wildcards like "*" and "$VAR".
4756 * If the path is a URL don't try this.
4757 */
4758 if (path_with_url(dirptrs[0]))
4759 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004760 stackp->ffs_filearray = (char_u **)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004761 alloc((unsigned)sizeof(char *));
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004762 if (stackp->ffs_filearray != NULL
4763 && (stackp->ffs_filearray[0]
Bram Moolenaar071d4272004-06-13 20:20:40 +00004764 = vim_strsave(dirptrs[0])) != NULL)
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004765 stackp->ffs_filearray_size = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004766 else
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004767 stackp->ffs_filearray_size = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004768 }
4769 else
Bram Moolenaar0b573a52011-07-27 17:31:47 +02004770 /* Add EW_NOTWILD because the expanded path may contain
4771 * wildcard characters that are to be taken literally.
4772 * This is a bit of a hack. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004773 expand_wildcards((dirptrs[1] == NULL) ? 1 : 2, dirptrs,
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004774 &stackp->ffs_filearray_size,
4775 &stackp->ffs_filearray,
Bram Moolenaar0b573a52011-07-27 17:31:47 +02004776 EW_DIR|EW_ADDSLASH|EW_SILENT|EW_NOTWILD);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004777
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004778 stackp->ffs_filearray_cur = 0;
4779 stackp->ffs_stage = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004780 }
4781#ifdef FEAT_PATH_EXTRA
4782 else
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004783 rest_of_wildcards = &stackp->ffs_wc_path[
4784 STRLEN(stackp->ffs_wc_path)];
Bram Moolenaar071d4272004-06-13 20:20:40 +00004785#endif
4786
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004787 if (stackp->ffs_stage == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004788 {
4789 /* this is the first time we work on this directory */
4790#ifdef FEAT_PATH_EXTRA
4791 if (*rest_of_wildcards == NUL)
4792#endif
4793 {
4794 /*
Bram Moolenaar473de612013-06-08 18:19:48 +02004795 * We don't have further wildcards to expand, so we have to
4796 * check for the final file now.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004797 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004798 for (i = stackp->ffs_filearray_cur;
4799 i < stackp->ffs_filearray_size; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004800 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004801 if (!path_with_url(stackp->ffs_filearray[i])
4802 && !mch_isdir(stackp->ffs_filearray[i]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004803 continue; /* not a directory */
4804
Bram Moolenaar21160b92009-11-11 15:56:10 +00004805 /* prepare the filename to be checked for existence
Bram Moolenaar071d4272004-06-13 20:20:40 +00004806 * below */
Bram Moolenaar15618fa2017-03-19 21:37:13 +01004807 if (STRLEN(stackp->ffs_filearray[i]) + 1
4808 + STRLEN(search_ctx->ffsc_file_to_search) < MAXPATHL)
4809 {
4810 STRCPY(file_path, stackp->ffs_filearray[i]);
4811 add_pathsep(file_path);
4812 STRCAT(file_path, search_ctx->ffsc_file_to_search);
4813 }
4814 else
4815 goto fail;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004816
4817 /*
4818 * Try without extra suffix and then with suffixes
4819 * from 'suffixesadd'.
4820 */
4821#ifdef FEAT_SEARCHPATH
4822 len = (int)STRLEN(file_path);
Bram Moolenaar463ee342010-08-08 18:17:52 +02004823 if (search_ctx->ffsc_tagfile)
4824 suf = (char_u *)"";
4825 else
4826 suf = curbuf->b_p_sua;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004827 for (;;)
4828#endif
4829 {
4830 /* if file exists and we didn't already find it */
4831 if ((path_with_url(file_path)
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004832 || (mch_getperm(file_path) >= 0
4833 && (search_ctx->ffsc_find_what
4834 == FINDFILE_BOTH
4835 || ((search_ctx->ffsc_find_what
4836 == FINDFILE_DIR)
4837 == mch_isdir(file_path)))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004838#ifndef FF_VERBOSE
4839 && (ff_check_visited(
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004840 &search_ctx->ffsc_visited_list->ffvl_visited_list,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004841 file_path
4842#ifdef FEAT_PATH_EXTRA
4843 , (char_u *)""
4844#endif
4845 ) == OK)
4846#endif
4847 )
4848 {
4849#ifdef FF_VERBOSE
4850 if (ff_check_visited(
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004851 &search_ctx->ffsc_visited_list->ffvl_visited_list,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004852 file_path
4853#ifdef FEAT_PATH_EXTRA
4854 , (char_u *)""
4855#endif
4856 ) == FAIL)
4857 {
4858 if (p_verbose >= 5)
4859 {
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004860 verbose_enter_scroll();
Bram Moolenaar051b7822005-05-19 21:00:46 +00004861 smsg((char_u *)"Already: %s",
Bram Moolenaar071d4272004-06-13 20:20:40 +00004862 file_path);
4863 /* don't overwrite this either */
4864 msg_puts((char_u *)"\n");
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004865 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004866 }
4867 continue;
4868 }
4869#endif
4870
4871 /* push dir to examine rest of subdirs later */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004872 stackp->ffs_filearray_cur = i + 1;
4873 ff_push(search_ctx, stackp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004874
Bram Moolenaar6bab9fa2009-01-22 20:32:12 +00004875 if (!path_with_url(file_path))
4876 simplify_filename(file_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004877 if (mch_dirname(ff_expand_buffer, MAXPATHL)
4878 == OK)
4879 {
4880 p = shorten_fname(file_path,
4881 ff_expand_buffer);
4882 if (p != NULL)
Bram Moolenaar446cb832008-06-24 21:56:24 +00004883 STRMOVE(file_path, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004884 }
4885#ifdef FF_VERBOSE
4886 if (p_verbose >= 5)
4887 {
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004888 verbose_enter_scroll();
Bram Moolenaar051b7822005-05-19 21:00:46 +00004889 smsg((char_u *)"HIT: %s", file_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004890 /* don't overwrite this either */
4891 msg_puts((char_u *)"\n");
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004892 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004893 }
4894#endif
4895 return file_path;
4896 }
4897
4898#ifdef FEAT_SEARCHPATH
4899 /* Not found or found already, try next suffix. */
4900 if (*suf == NUL)
4901 break;
4902 copy_option_part(&suf, file_path + len,
4903 MAXPATHL - len, ",");
4904#endif
4905 }
4906 }
4907 }
4908#ifdef FEAT_PATH_EXTRA
4909 else
4910 {
4911 /*
4912 * still wildcards left, push the directories for further
4913 * search
4914 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004915 for (i = stackp->ffs_filearray_cur;
4916 i < stackp->ffs_filearray_size; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004917 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004918 if (!mch_isdir(stackp->ffs_filearray[i]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004919 continue; /* not a directory */
4920
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004921 ff_push(search_ctx,
4922 ff_create_stack_element(
4923 stackp->ffs_filearray[i],
4924 rest_of_wildcards,
4925 stackp->ffs_level - 1, 0));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004926 }
4927 }
4928#endif
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004929 stackp->ffs_filearray_cur = 0;
4930 stackp->ffs_stage = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004931 }
4932
4933#ifdef FEAT_PATH_EXTRA
4934 /*
4935 * if wildcards contains '**' we have to descent till we reach the
4936 * leaves of the directory tree.
4937 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004938 if (STRNCMP(stackp->ffs_wc_path, "**", 2) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004939 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004940 for (i = stackp->ffs_filearray_cur;
4941 i < stackp->ffs_filearray_size; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004942 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004943 if (fnamecmp(stackp->ffs_filearray[i],
4944 stackp->ffs_fix_path) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004945 continue; /* don't repush same directory */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004946 if (!mch_isdir(stackp->ffs_filearray[i]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004947 continue; /* not a directory */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004948 ff_push(search_ctx,
4949 ff_create_stack_element(stackp->ffs_filearray[i],
4950 stackp->ffs_wc_path, stackp->ffs_level - 1, 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004951 }
4952 }
4953#endif
4954
4955 /* we are done with the current directory */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004956 ff_free_stack_element(stackp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004957
4958 }
4959
4960#ifdef FEAT_PATH_EXTRA
4961 /* If we reached this, we didn't find anything downwards.
4962 * Let's check if we should do an upward search.
4963 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004964 if (search_ctx->ffsc_start_dir
4965 && search_ctx->ffsc_stopdirs_v != NULL && !got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004966 {
4967 ff_stack_T *sptr;
4968
4969 /* is the last starting directory in the stop list? */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004970 if (ff_path_in_stoplist(search_ctx->ffsc_start_dir,
4971 (int)(path_end - search_ctx->ffsc_start_dir),
4972 search_ctx->ffsc_stopdirs_v) == TRUE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004973 break;
4974
4975 /* cut of last dir */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004976 while (path_end > search_ctx->ffsc_start_dir
4977 && vim_ispathsep(*path_end))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004978 path_end--;
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004979 while (path_end > search_ctx->ffsc_start_dir
4980 && !vim_ispathsep(path_end[-1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004981 path_end--;
4982 *path_end = 0;
4983 path_end--;
4984
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004985 if (*search_ctx->ffsc_start_dir == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004986 break;
4987
Bram Moolenaar15618fa2017-03-19 21:37:13 +01004988 if (STRLEN(search_ctx->ffsc_start_dir) + 1
4989 + STRLEN(search_ctx->ffsc_fix_path) < MAXPATHL)
4990 {
4991 STRCPY(file_path, search_ctx->ffsc_start_dir);
4992 add_pathsep(file_path);
4993 STRCAT(file_path, search_ctx->ffsc_fix_path);
4994 }
4995 else
4996 goto fail;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004997
4998 /* create a new stack entry */
4999 sptr = ff_create_stack_element(file_path,
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005000 search_ctx->ffsc_wc_path, search_ctx->ffsc_level, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005001 if (sptr == NULL)
5002 break;
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005003 ff_push(search_ctx, sptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005004 }
5005 else
5006 break;
5007 }
5008#endif
5009
Bram Moolenaar15618fa2017-03-19 21:37:13 +01005010fail:
Bram Moolenaar071d4272004-06-13 20:20:40 +00005011 vim_free(file_path);
5012 return NULL;
5013}
5014
5015/*
5016 * Free the list of lists of visited files and directories
5017 * Can handle it if the passed search_context is NULL;
5018 */
5019 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005020vim_findfile_free_visited(void *search_ctx_arg)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005021{
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005022 ff_search_ctx_T *search_ctx;
5023
5024 if (search_ctx_arg == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005025 return;
5026
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005027 search_ctx = (ff_search_ctx_T *)search_ctx_arg;
5028 vim_findfile_free_visited_list(&search_ctx->ffsc_visited_lists_list);
5029 vim_findfile_free_visited_list(&search_ctx->ffsc_dir_visited_lists_list);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005030}
5031
5032 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005033vim_findfile_free_visited_list(ff_visited_list_hdr_T **list_headp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005034{
5035 ff_visited_list_hdr_T *vp;
5036
5037 while (*list_headp != NULL)
5038 {
5039 vp = (*list_headp)->ffvl_next;
5040 ff_free_visited_list((*list_headp)->ffvl_visited_list);
5041
5042 vim_free((*list_headp)->ffvl_filename);
5043 vim_free(*list_headp);
5044 *list_headp = vp;
5045 }
5046 *list_headp = NULL;
5047}
5048
5049 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005050ff_free_visited_list(ff_visited_T *vl)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005051{
5052 ff_visited_T *vp;
5053
5054 while (vl != NULL)
5055 {
5056 vp = vl->ffv_next;
5057#ifdef FEAT_PATH_EXTRA
5058 vim_free(vl->ffv_wc_path);
5059#endif
5060 vim_free(vl);
5061 vl = vp;
5062 }
5063 vl = NULL;
5064}
5065
5066/*
5067 * Returns the already visited list for the given filename. If none is found it
5068 * allocates a new one.
5069 */
5070 static ff_visited_list_hdr_T*
Bram Moolenaar9b578142016-01-30 19:39:49 +01005071ff_get_visited_list(
5072 char_u *filename,
5073 ff_visited_list_hdr_T **list_headp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005074{
5075 ff_visited_list_hdr_T *retptr = NULL;
5076
5077 /* check if a visited list for the given filename exists */
5078 if (*list_headp != NULL)
5079 {
5080 retptr = *list_headp;
5081 while (retptr != NULL)
5082 {
5083 if (fnamecmp(filename, retptr->ffvl_filename) == 0)
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: FOUND list for %s",
Bram Moolenaar071d4272004-06-13 20:20:40 +00005090 filename);
5091 /* don't overwrite this either */
5092 msg_puts((char_u *)"\n");
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00005093 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005094 }
5095#endif
5096 return retptr;
5097 }
5098 retptr = retptr->ffvl_next;
5099 }
5100 }
5101
5102#ifdef FF_VERBOSE
5103 if (p_verbose >= 5)
5104 {
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00005105 verbose_enter_scroll();
Bram Moolenaar051b7822005-05-19 21:00:46 +00005106 smsg((char_u *)"ff_get_visited_list: new list for %s", filename);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005107 /* don't overwrite this either */
5108 msg_puts((char_u *)"\n");
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00005109 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005110 }
5111#endif
5112
5113 /*
5114 * if we reach this we didn't find a list and we have to allocate new list
5115 */
5116 retptr = (ff_visited_list_hdr_T*)alloc((unsigned)sizeof(*retptr));
5117 if (retptr == NULL)
5118 return NULL;
5119
5120 retptr->ffvl_visited_list = NULL;
5121 retptr->ffvl_filename = vim_strsave(filename);
5122 if (retptr->ffvl_filename == NULL)
5123 {
5124 vim_free(retptr);
5125 return NULL;
5126 }
5127 retptr->ffvl_next = *list_headp;
5128 *list_headp = retptr;
5129
5130 return retptr;
5131}
5132
5133#ifdef FEAT_PATH_EXTRA
5134/*
5135 * check if two wildcard paths are equal. Returns TRUE or FALSE.
5136 * They are equal if:
5137 * - both paths are NULL
5138 * - they have the same length
5139 * - char by char comparison is OK
5140 * - the only differences are in the counters behind a '**', so
5141 * '**\20' is equal to '**\24'
5142 */
5143 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01005144ff_wc_equal(char_u *s1, char_u *s2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005145{
Bram Moolenaarf6470c22015-08-25 16:31:40 +02005146 int i, j;
Bram Moolenaard43f0952015-08-27 22:30:47 +02005147 int c1 = NUL;
5148 int c2 = NUL;
Bram Moolenaard0e2d942013-03-19 18:31:49 +01005149 int prev1 = NUL;
5150 int prev2 = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005151
5152 if (s1 == s2)
5153 return TRUE;
5154
5155 if (s1 == NULL || s2 == NULL)
5156 return FALSE;
5157
Bram Moolenaard43f0952015-08-27 22:30:47 +02005158 for (i = 0, j = 0; s1[i] != NUL && s2[j] != NUL;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005159 {
Bram Moolenaard43f0952015-08-27 22:30:47 +02005160 c1 = PTR2CHAR(s1 + i);
5161 c2 = PTR2CHAR(s2 + j);
Bram Moolenaard0e2d942013-03-19 18:31:49 +01005162
5163 if ((p_fic ? MB_TOLOWER(c1) != MB_TOLOWER(c2) : c1 != c2)
5164 && (prev1 != '*' || prev2 != '*'))
Bram Moolenaard43f0952015-08-27 22:30:47 +02005165 return FALSE;
Bram Moolenaard0e2d942013-03-19 18:31:49 +01005166 prev2 = prev1;
5167 prev1 = c1;
Bram Moolenaarf6470c22015-08-25 16:31:40 +02005168
5169 i += MB_PTR2LEN(s1 + i);
5170 j += MB_PTR2LEN(s2 + j);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005171 }
Bram Moolenaar4d0c7bc2015-09-25 16:38:01 +02005172 return s1[i] == s2[j];
Bram Moolenaar071d4272004-06-13 20:20:40 +00005173}
5174#endif
5175
5176/*
5177 * maintains the list of already visited files and dirs
5178 * returns FAIL if the given file/dir is already in the list
5179 * returns OK if it is newly added
5180 *
5181 * TODO: What to do on memory allocation problems?
5182 * -> return TRUE - Better the file is found several times instead of
5183 * never.
5184 */
5185 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01005186ff_check_visited(
5187 ff_visited_T **visited_list,
5188 char_u *fname
Bram Moolenaar071d4272004-06-13 20:20:40 +00005189#ifdef FEAT_PATH_EXTRA
Bram Moolenaar9b578142016-01-30 19:39:49 +01005190 , char_u *wc_path
Bram Moolenaar071d4272004-06-13 20:20:40 +00005191#endif
Bram Moolenaar9b578142016-01-30 19:39:49 +01005192 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00005193{
5194 ff_visited_T *vp;
5195#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02005196 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005197 int url = FALSE;
5198#endif
5199
5200 /* For an URL we only compare the name, otherwise we compare the
5201 * device/inode (unix) or the full path name (not Unix). */
5202 if (path_with_url(fname))
5203 {
Bram Moolenaarbbebc852005-07-18 21:47:53 +00005204 vim_strncpy(ff_expand_buffer, fname, MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005205#ifdef UNIX
5206 url = TRUE;
5207#endif
5208 }
5209 else
5210 {
5211 ff_expand_buffer[0] = NUL;
5212#ifdef UNIX
5213 if (mch_stat((char *)fname, &st) < 0)
5214#else
5215 if (vim_FullName(fname, ff_expand_buffer, MAXPATHL, TRUE) == FAIL)
5216#endif
5217 return FAIL;
5218 }
5219
5220 /* check against list of already visited files */
5221 for (vp = *visited_list; vp != NULL; vp = vp->ffv_next)
5222 {
5223 if (
5224#ifdef UNIX
Bram Moolenaare1fbddc2009-05-16 19:07:03 +00005225 !url ? (vp->ffv_dev_valid && vp->ffv_dev == st.st_dev
5226 && vp->ffv_ino == st.st_ino)
5227 :
Bram Moolenaar071d4272004-06-13 20:20:40 +00005228#endif
5229 fnamecmp(vp->ffv_fname, ff_expand_buffer) == 0
5230 )
5231 {
5232#ifdef FEAT_PATH_EXTRA
5233 /* are the wildcard parts equal */
5234 if (ff_wc_equal(vp->ffv_wc_path, wc_path) == TRUE)
5235#endif
5236 /* already visited */
5237 return FAIL;
5238 }
5239 }
5240
5241 /*
5242 * New file/dir. Add it to the list of visited files/dirs.
5243 */
5244 vp = (ff_visited_T *)alloc((unsigned)(sizeof(ff_visited_T)
5245 + STRLEN(ff_expand_buffer)));
5246
5247 if (vp != NULL)
5248 {
5249#ifdef UNIX
5250 if (!url)
5251 {
Bram Moolenaare1fbddc2009-05-16 19:07:03 +00005252 vp->ffv_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005253 vp->ffv_ino = st.st_ino;
5254 vp->ffv_dev = st.st_dev;
5255 vp->ffv_fname[0] = NUL;
5256 }
5257 else
5258 {
Bram Moolenaare1fbddc2009-05-16 19:07:03 +00005259 vp->ffv_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005260#endif
5261 STRCPY(vp->ffv_fname, ff_expand_buffer);
5262#ifdef UNIX
5263 }
5264#endif
5265#ifdef FEAT_PATH_EXTRA
5266 if (wc_path != NULL)
5267 vp->ffv_wc_path = vim_strsave(wc_path);
5268 else
5269 vp->ffv_wc_path = NULL;
5270#endif
5271
5272 vp->ffv_next = *visited_list;
5273 *visited_list = vp;
5274 }
5275
5276 return OK;
5277}
5278
5279/*
5280 * create stack element from given path pieces
5281 */
5282 static ff_stack_T *
Bram Moolenaar9b578142016-01-30 19:39:49 +01005283ff_create_stack_element(
5284 char_u *fix_part,
Bram Moolenaar071d4272004-06-13 20:20:40 +00005285#ifdef FEAT_PATH_EXTRA
Bram Moolenaar9b578142016-01-30 19:39:49 +01005286 char_u *wc_part,
Bram Moolenaar071d4272004-06-13 20:20:40 +00005287#endif
Bram Moolenaar9b578142016-01-30 19:39:49 +01005288 int level,
5289 int star_star_empty)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005290{
5291 ff_stack_T *new;
5292
5293 new = (ff_stack_T *)alloc((unsigned)sizeof(ff_stack_T));
5294 if (new == NULL)
5295 return NULL;
5296
5297 new->ffs_prev = NULL;
5298 new->ffs_filearray = NULL;
5299 new->ffs_filearray_size = 0;
5300 new->ffs_filearray_cur = 0;
5301 new->ffs_stage = 0;
5302 new->ffs_level = level;
Bram Moolenaar945ec092016-06-08 21:17:43 +02005303 new->ffs_star_star_empty = star_star_empty;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005304
5305 /* the following saves NULL pointer checks in vim_findfile */
5306 if (fix_part == NULL)
5307 fix_part = (char_u *)"";
5308 new->ffs_fix_path = vim_strsave(fix_part);
5309
5310#ifdef FEAT_PATH_EXTRA
5311 if (wc_part == NULL)
5312 wc_part = (char_u *)"";
5313 new->ffs_wc_path = vim_strsave(wc_part);
5314#endif
5315
5316 if (new->ffs_fix_path == NULL
5317#ifdef FEAT_PATH_EXTRA
5318 || new->ffs_wc_path == NULL
5319#endif
5320 )
5321 {
5322 ff_free_stack_element(new);
5323 new = NULL;
5324 }
5325
5326 return new;
5327}
5328
5329/*
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005330 * Push a dir on the directory stack.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005331 */
5332 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005333ff_push(ff_search_ctx_T *search_ctx, ff_stack_T *stack_ptr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005334{
5335 /* check for NULL pointer, not to return an error to the user, but
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005336 * to prevent a crash */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005337 if (stack_ptr != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005338 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005339 stack_ptr->ffs_prev = search_ctx->ffsc_stack_ptr;
5340 search_ctx->ffsc_stack_ptr = stack_ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005341 }
5342}
5343
5344/*
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005345 * Pop a dir from the directory stack.
5346 * Returns NULL if stack is empty.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005347 */
5348 static ff_stack_T *
Bram Moolenaar9b578142016-01-30 19:39:49 +01005349ff_pop(ff_search_ctx_T *search_ctx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005350{
5351 ff_stack_T *sptr;
5352
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005353 sptr = search_ctx->ffsc_stack_ptr;
5354 if (search_ctx->ffsc_stack_ptr != NULL)
5355 search_ctx->ffsc_stack_ptr = search_ctx->ffsc_stack_ptr->ffs_prev;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005356
5357 return sptr;
5358}
5359
5360/*
5361 * free the given stack element
5362 */
5363 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005364ff_free_stack_element(ff_stack_T *stack_ptr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005365{
5366 /* vim_free handles possible NULL pointers */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005367 vim_free(stack_ptr->ffs_fix_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005368#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005369 vim_free(stack_ptr->ffs_wc_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005370#endif
5371
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005372 if (stack_ptr->ffs_filearray != NULL)
5373 FreeWild(stack_ptr->ffs_filearray_size, stack_ptr->ffs_filearray);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005374
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005375 vim_free(stack_ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005376}
5377
5378/*
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005379 * Clear the search context, but NOT the visited list.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005380 */
5381 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005382ff_clear(ff_search_ctx_T *search_ctx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005383{
5384 ff_stack_T *sptr;
5385
5386 /* clear up stack */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005387 while ((sptr = ff_pop(search_ctx)) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005388 ff_free_stack_element(sptr);
5389
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005390 vim_free(search_ctx->ffsc_file_to_search);
5391 vim_free(search_ctx->ffsc_start_dir);
5392 vim_free(search_ctx->ffsc_fix_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005393#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005394 vim_free(search_ctx->ffsc_wc_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005395#endif
5396
5397#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005398 if (search_ctx->ffsc_stopdirs_v != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005399 {
5400 int i = 0;
5401
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005402 while (search_ctx->ffsc_stopdirs_v[i] != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005403 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005404 vim_free(search_ctx->ffsc_stopdirs_v[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005405 i++;
5406 }
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005407 vim_free(search_ctx->ffsc_stopdirs_v);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005408 }
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005409 search_ctx->ffsc_stopdirs_v = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005410#endif
5411
5412 /* reset everything */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005413 search_ctx->ffsc_file_to_search = NULL;
5414 search_ctx->ffsc_start_dir = NULL;
5415 search_ctx->ffsc_fix_path = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005416#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005417 search_ctx->ffsc_wc_path = NULL;
5418 search_ctx->ffsc_level = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005419#endif
5420}
5421
5422#ifdef FEAT_PATH_EXTRA
5423/*
5424 * check if the given path is in the stopdirs
5425 * returns TRUE if yes else FALSE
5426 */
5427 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01005428ff_path_in_stoplist(char_u *path, int path_len, char_u **stopdirs_v)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005429{
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 *
Bram Moolenaar9b578142016-01-30 19:39:49 +01005489find_file_in_path(
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 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005495{
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
Bram Moolenaar9b578142016-01-30 19:39:49 +01005506free_findfile(void)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005507{
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 *
Bram Moolenaar9b578142016-01-30 19:39:49 +01005525find_directory_in_path(
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 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005530{
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 Moolenaar9b578142016-01-30 19:39:49 +01005536find_file_in_path_option(
5537 char_u *ptr, /* file name */
5538 int len, /* length of file name */
5539 int options,
5540 int first, /* use count'th matching file name */
5541 char_u *path_option, /* p_path or p_cdpath */
5542 int find_what, /* FINDFILE_FILE, _DIR or _BOTH */
5543 char_u *rel_fname, /* file name we are looking relative to. */
5544 char_u *suffixes) /* list of suffixes, 'suffixesadd' option */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005545{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005546 static char_u *dir;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005547 static int did_findfile_init = FALSE;
5548 char_u save_char;
5549 char_u *file_name = NULL;
5550 char_u *buf = NULL;
5551 int rel_to_curdir;
5552#ifdef AMIGA
5553 struct Process *proc = (struct Process *)FindTask(0L);
5554 APTR save_winptr = proc->pr_WindowPtr;
5555
5556 /* Avoid a requester here for a volume that doesn't exist. */
5557 proc->pr_WindowPtr = (APTR)-1L;
5558#endif
5559
5560 if (first == TRUE)
5561 {
5562 /* copy file name into NameBuff, expanding environment variables */
5563 save_char = ptr[len];
5564 ptr[len] = NUL;
Bram Moolenaar58adb142016-01-16 21:50:51 +01005565 expand_env_esc(ptr, NameBuff, MAXPATHL, FALSE, TRUE, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005566 ptr[len] = save_char;
5567
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005568 vim_free(ff_file_to_find);
5569 ff_file_to_find = vim_strsave(NameBuff);
5570 if (ff_file_to_find == NULL) /* out of memory */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005571 {
5572 file_name = NULL;
5573 goto theend;
5574 }
Bram Moolenaard45c07a2015-02-27 17:19:10 +01005575 if (options & FNAME_UNESC)
5576 {
5577 /* Change all "\ " to " ". */
5578 for (ptr = ff_file_to_find; *ptr != NUL; ++ptr)
5579 if (ptr[0] == '\\' && ptr[1] == ' ')
5580 mch_memmove(ptr, ptr + 1, STRLEN(ptr));
5581 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005582 }
5583
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005584 rel_to_curdir = (ff_file_to_find[0] == '.'
5585 && (ff_file_to_find[1] == NUL
5586 || vim_ispathsep(ff_file_to_find[1])
5587 || (ff_file_to_find[1] == '.'
5588 && (ff_file_to_find[2] == NUL
5589 || vim_ispathsep(ff_file_to_find[2])))));
5590 if (vim_isAbsName(ff_file_to_find)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005591 /* "..", "../path", "." and "./path": don't use the path_option */
5592 || rel_to_curdir
Bram Moolenaar48e330a2016-02-23 14:53:34 +01005593#if defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005594 /* handle "\tmp" as absolute path */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005595 || vim_ispathsep(ff_file_to_find[0])
Bram Moolenaar21160b92009-11-11 15:56:10 +00005596 /* handle "c:name" as absolute path */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005597 || (ff_file_to_find[0] != NUL && ff_file_to_find[1] == ':')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005598#endif
5599#ifdef AMIGA
5600 /* handle ":tmp" as absolute path */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005601 || ff_file_to_find[0] == ':'
Bram Moolenaar071d4272004-06-13 20:20:40 +00005602#endif
5603 )
5604 {
5605 /*
5606 * Absolute path, no need to use "path_option".
5607 * If this is not a first call, return NULL. We already returned a
5608 * filename on the first call.
5609 */
5610 if (first == TRUE)
5611 {
5612 int l;
5613 int run;
5614
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005615 if (path_with_url(ff_file_to_find))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005616 {
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005617 file_name = vim_strsave(ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005618 goto theend;
5619 }
5620
5621 /* When FNAME_REL flag given first use the directory of the file.
5622 * Otherwise or when this fails use the current directory. */
5623 for (run = 1; run <= 2; ++run)
5624 {
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005625 l = (int)STRLEN(ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005626 if (run == 1
5627 && rel_to_curdir
5628 && (options & FNAME_REL)
5629 && rel_fname != NULL
5630 && STRLEN(rel_fname) + l < MAXPATHL)
5631 {
5632 STRCPY(NameBuff, rel_fname);
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005633 STRCPY(gettail(NameBuff), ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005634 l = (int)STRLEN(NameBuff);
5635 }
5636 else
5637 {
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005638 STRCPY(NameBuff, ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005639 run = 2;
5640 }
5641
5642 /* When the file doesn't exist, try adding parts of
5643 * 'suffixesadd'. */
Bram Moolenaar433f7c82006-03-21 21:29:36 +00005644 buf = suffixes;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005645 for (;;)
5646 {
Bram Moolenaar48e330a2016-02-23 14:53:34 +01005647 if (mch_getperm(NameBuff) >= 0
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005648 && (find_what == FINDFILE_BOTH
5649 || ((find_what == FINDFILE_DIR)
Bram Moolenaar48e330a2016-02-23 14:53:34 +01005650 == mch_isdir(NameBuff))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005651 {
5652 file_name = vim_strsave(NameBuff);
5653 goto theend;
5654 }
5655 if (*buf == NUL)
5656 break;
5657 copy_option_part(&buf, NameBuff + l, MAXPATHL - l, ",");
5658 }
5659 }
5660 }
5661 }
5662 else
5663 {
5664 /*
5665 * Loop over all paths in the 'path' or 'cdpath' option.
5666 * When "first" is set, first setup to the start of the option.
5667 * Otherwise continue to find the next match.
5668 */
5669 if (first == TRUE)
5670 {
5671 /* vim_findfile_free_visited can handle a possible NULL pointer */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005672 vim_findfile_free_visited(fdip_search_ctx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005673 dir = path_option;
5674 did_findfile_init = FALSE;
5675 }
5676
5677 for (;;)
5678 {
5679 if (did_findfile_init)
5680 {
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005681 file_name = vim_findfile(fdip_search_ctx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005682 if (file_name != NULL)
5683 break;
5684
5685 did_findfile_init = FALSE;
5686 }
5687 else
5688 {
5689 char_u *r_ptr;
5690
5691 if (dir == NULL || *dir == NUL)
5692 {
5693 /* We searched all paths of the option, now we can
5694 * free the search context. */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005695 vim_findfile_cleanup(fdip_search_ctx);
5696 fdip_search_ctx = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005697 break;
5698 }
5699
5700 if ((buf = alloc((int)(MAXPATHL))) == NULL)
5701 break;
5702
5703 /* copy next path */
5704 buf[0] = 0;
5705 copy_option_part(&dir, buf, MAXPATHL, " ,");
5706
5707#ifdef FEAT_PATH_EXTRA
5708 /* get the stopdir string */
5709 r_ptr = vim_findfile_stopdir(buf);
5710#else
5711 r_ptr = NULL;
5712#endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005713 fdip_search_ctx = vim_findfile_init(buf, ff_file_to_find,
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005714 r_ptr, 100, FALSE, find_what,
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005715 fdip_search_ctx, FALSE, rel_fname);
5716 if (fdip_search_ctx != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005717 did_findfile_init = TRUE;
5718 vim_free(buf);
5719 }
5720 }
5721 }
5722 if (file_name == NULL && (options & FNAME_MESS))
5723 {
5724 if (first == TRUE)
5725 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005726 if (find_what == FINDFILE_DIR)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005727 EMSG2(_("E344: Can't find directory \"%s\" in cdpath"),
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005728 ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005729 else
5730 EMSG2(_("E345: Can't find file \"%s\" in path"),
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005731 ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005732 }
5733 else
5734 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005735 if (find_what == FINDFILE_DIR)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005736 EMSG2(_("E346: No more directory \"%s\" found 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(_("E347: No more file \"%s\" found in path"),
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005740 ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005741 }
5742 }
5743
5744theend:
5745#ifdef AMIGA
5746 proc->pr_WindowPtr = save_winptr;
5747#endif
5748 return file_name;
5749}
5750
5751#endif /* FEAT_SEARCHPATH */
5752
5753/*
5754 * Change directory to "new_dir". If FEAT_SEARCHPATH is defined, search
5755 * 'cdpath' for relative directory names, otherwise just mch_chdir().
5756 */
5757 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01005758vim_chdir(char_u *new_dir)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005759{
5760#ifndef FEAT_SEARCHPATH
5761 return mch_chdir((char *)new_dir);
5762#else
5763 char_u *dir_name;
5764 int r;
5765
5766 dir_name = find_directory_in_path(new_dir, (int)STRLEN(new_dir),
5767 FNAME_MESS, curbuf->b_ffname);
5768 if (dir_name == NULL)
5769 return -1;
5770 r = mch_chdir((char *)dir_name);
5771 vim_free(dir_name);
5772 return r;
5773#endif
5774}
5775
5776/*
Bram Moolenaarbbebc852005-07-18 21:47:53 +00005777 * Get user name from machine-specific function.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005778 * Returns the user name in "buf[len]".
Bram Moolenaarbbebc852005-07-18 21:47:53 +00005779 * Some systems are quite slow in obtaining the user name (Windows NT), thus
5780 * cache the result.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005781 * Returns OK or FAIL.
5782 */
5783 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01005784get_user_name(char_u *buf, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005785{
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005786 if (username == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005787 {
5788 if (mch_get_user_name(buf, len) == FAIL)
5789 return FAIL;
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005790 username = vim_strsave(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005791 }
5792 else
Bram Moolenaarbbebc852005-07-18 21:47:53 +00005793 vim_strncpy(buf, username, len - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005794 return OK;
5795}
5796
5797#ifndef HAVE_QSORT
5798/*
5799 * Our own qsort(), for systems that don't have it.
5800 * It's simple and slow. From the K&R C book.
5801 */
5802 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005803qsort(
5804 void *base,
5805 size_t elm_count,
5806 size_t elm_size,
5807 int (*cmp)(const void *, const void *))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005808{
5809 char_u *buf;
5810 char_u *p1;
5811 char_u *p2;
5812 int i, j;
5813 int gap;
5814
5815 buf = alloc((unsigned)elm_size);
5816 if (buf == NULL)
5817 return;
5818
5819 for (gap = elm_count / 2; gap > 0; gap /= 2)
5820 for (i = gap; i < elm_count; ++i)
5821 for (j = i - gap; j >= 0; j -= gap)
5822 {
5823 /* Compare the elements. */
5824 p1 = (char_u *)base + j * elm_size;
5825 p2 = (char_u *)base + (j + gap) * elm_size;
5826 if ((*cmp)((void *)p1, (void *)p2) <= 0)
5827 break;
Bram Moolenaar21160b92009-11-11 15:56:10 +00005828 /* Exchange the elements. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005829 mch_memmove(buf, p1, elm_size);
5830 mch_memmove(p1, p2, elm_size);
5831 mch_memmove(p2, buf, elm_size);
5832 }
5833
5834 vim_free(buf);
5835}
5836#endif
5837
Bram Moolenaar071d4272004-06-13 20:20:40 +00005838/*
5839 * Sort an array of strings.
5840 */
5841static int
5842#ifdef __BORLANDC__
5843_RTLENTRYF
5844#endif
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01005845sort_compare(const void *s1, const void *s2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005846
5847 static int
5848#ifdef __BORLANDC__
5849_RTLENTRYF
5850#endif
Bram Moolenaar9b578142016-01-30 19:39:49 +01005851sort_compare(const void *s1, const void *s2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005852{
5853 return STRCMP(*(char **)s1, *(char **)s2);
5854}
5855
5856 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005857sort_strings(
5858 char_u **files,
5859 int count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005860{
5861 qsort((void *)files, (size_t)count, sizeof(char_u *), sort_compare);
5862}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005863
5864#if !defined(NO_EXPANDPATH) || defined(PROTO)
5865/*
5866 * Compare path "p[]" to "q[]".
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005867 * If "maxlen" >= 0 compare "p[maxlen]" to "q[maxlen]"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005868 * Return value like strcmp(p, q), but consider path separators.
5869 */
5870 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01005871pathcmp(const char *p, const char *q, int maxlen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005872{
Bram Moolenaarf6470c22015-08-25 16:31:40 +02005873 int i, j;
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02005874 int c1, c2;
Bram Moolenaar86b68352004-12-27 21:59:20 +00005875 const char *s = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005876
Bram Moolenaarf6470c22015-08-25 16:31:40 +02005877 for (i = 0, j = 0; maxlen < 0 || (i < maxlen && j < maxlen);)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005878 {
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02005879 c1 = PTR2CHAR((char_u *)p + i);
Bram Moolenaarf6470c22015-08-25 16:31:40 +02005880 c2 = PTR2CHAR((char_u *)q + j);
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02005881
Bram Moolenaar071d4272004-06-13 20:20:40 +00005882 /* End of "p": check if "q" also ends or just has a slash. */
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02005883 if (c1 == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005884 {
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02005885 if (c2 == NUL) /* full match */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005886 return 0;
5887 s = q;
Bram Moolenaarf6470c22015-08-25 16:31:40 +02005888 i = j;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005889 break;
5890 }
5891
5892 /* End of "q": check if "p" just has a slash. */
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02005893 if (c2 == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005894 {
5895 s = p;
5896 break;
5897 }
5898
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02005899 if ((p_fic ? MB_TOUPPER(c1) != MB_TOUPPER(c2) : c1 != c2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005900#ifdef BACKSLASH_IN_FILENAME
5901 /* consider '/' and '\\' to be equal */
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02005902 && !((c1 == '/' && c2 == '\\')
5903 || (c1 == '\\' && c2 == '/'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005904#endif
5905 )
5906 {
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02005907 if (vim_ispathsep(c1))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005908 return -1;
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02005909 if (vim_ispathsep(c2))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005910 return 1;
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02005911 return p_fic ? MB_TOUPPER(c1) - MB_TOUPPER(c2)
5912 : c1 - c2; /* no match */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005913 }
Bram Moolenaarf6470c22015-08-25 16:31:40 +02005914
5915 i += MB_PTR2LEN((char_u *)p + i);
5916 j += MB_PTR2LEN((char_u *)q + j);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005917 }
Bram Moolenaarf6470c22015-08-25 16:31:40 +02005918 if (s == NULL) /* "i" or "j" ran into "maxlen" */
Bram Moolenaar86b68352004-12-27 21:59:20 +00005919 return 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005920
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02005921 c1 = PTR2CHAR((char_u *)s + i);
5922 c2 = PTR2CHAR((char_u *)s + i + MB_PTR2LEN((char_u *)s + i));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005923 /* ignore a trailing slash, but not "//" or ":/" */
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02005924 if (c2 == NUL
Bram Moolenaar86b68352004-12-27 21:59:20 +00005925 && i > 0
5926 && !after_pathsep((char_u *)s, (char_u *)s + i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005927#ifdef BACKSLASH_IN_FILENAME
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02005928 && (c1 == '/' || c1 == '\\')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005929#else
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02005930 && c1 == '/'
Bram Moolenaar071d4272004-06-13 20:20:40 +00005931#endif
Bram Moolenaar86b68352004-12-27 21:59:20 +00005932 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00005933 return 0; /* match with trailing slash */
5934 if (s == q)
5935 return -1; /* no match */
5936 return 1;
5937}
5938#endif
5939
Bram Moolenaar071d4272004-06-13 20:20:40 +00005940/*
5941 * The putenv() implementation below comes from the "screen" program.
5942 * Included with permission from Juergen Weigert.
5943 * See pty.c for the copyright notice.
5944 */
5945
5946/*
5947 * putenv -- put value into environment
5948 *
5949 * Usage: i = putenv (string)
5950 * int i;
5951 * char *string;
5952 *
5953 * where string is of the form <name>=<value>.
5954 * Putenv returns 0 normally, -1 on error (not enough core for malloc).
5955 *
5956 * Putenv may need to add a new name into the environment, or to
5957 * associate a value longer than the current value with a particular
5958 * name. So, to make life simpler, putenv() copies your entire
5959 * environment into the heap (i.e. malloc()) from the stack
5960 * (i.e. where it resides when your process is initiated) the first
5961 * time you call it.
5962 *
5963 * (history removed, not very interesting. See the "screen" sources.)
5964 */
5965
5966#if !defined(HAVE_SETENV) && !defined(HAVE_PUTENV)
5967
5968#define EXTRASIZE 5 /* increment to add to env. size */
5969
5970static int envsize = -1; /* current size of environment */
Bram Moolenaard0573012017-10-28 21:11:06 +02005971extern char **environ; /* the global which is your env. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005972
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01005973static int findenv(char *name); /* look for a name in the env. */
5974static int newenv(void); /* copy env. from stack to heap */
5975static int moreenv(void); /* incr. size of env. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005976
5977 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01005978putenv(const char *string)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005979{
5980 int i;
5981 char *p;
5982
5983 if (envsize < 0)
5984 { /* first time putenv called */
5985 if (newenv() < 0) /* copy env. to heap */
5986 return -1;
5987 }
5988
5989 i = findenv((char *)string); /* look for name in environment */
5990
5991 if (i < 0)
5992 { /* name must be added */
5993 for (i = 0; environ[i]; i++);
5994 if (i >= (envsize - 1))
5995 { /* need new slot */
5996 if (moreenv() < 0)
5997 return -1;
5998 }
5999 p = (char *)alloc((unsigned)(strlen(string) + 1));
6000 if (p == NULL) /* not enough core */
6001 return -1;
6002 environ[i + 1] = 0; /* new end of env. */
6003 }
6004 else
6005 { /* name already in env. */
6006 p = vim_realloc(environ[i], strlen(string) + 1);
6007 if (p == NULL)
6008 return -1;
6009 }
6010 sprintf(p, "%s", string); /* copy into env. */
6011 environ[i] = p;
6012
6013 return 0;
6014}
6015
6016 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01006017findenv(char *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006018{
6019 char *namechar, *envchar;
6020 int i, found;
6021
6022 found = 0;
6023 for (i = 0; environ[i] && !found; i++)
6024 {
6025 envchar = environ[i];
6026 namechar = name;
6027 while (*namechar && *namechar != '=' && (*namechar == *envchar))
6028 {
6029 namechar++;
6030 envchar++;
6031 }
6032 found = ((*namechar == '\0' || *namechar == '=') && *envchar == '=');
6033 }
6034 return found ? i - 1 : -1;
6035}
6036
6037 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01006038newenv(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006039{
6040 char **env, *elem;
6041 int i, esize;
6042
Bram Moolenaar071d4272004-06-13 20:20:40 +00006043 for (i = 0; environ[i]; i++)
6044 ;
Bram Moolenaard0573012017-10-28 21:11:06 +02006045
Bram Moolenaar071d4272004-06-13 20:20:40 +00006046 esize = i + EXTRASIZE + 1;
6047 env = (char **)alloc((unsigned)(esize * sizeof (elem)));
6048 if (env == NULL)
6049 return -1;
6050
Bram Moolenaar071d4272004-06-13 20:20:40 +00006051 for (i = 0; environ[i]; i++)
6052 {
6053 elem = (char *)alloc((unsigned)(strlen(environ[i]) + 1));
6054 if (elem == NULL)
6055 return -1;
6056 env[i] = elem;
6057 strcpy(elem, environ[i]);
6058 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006059
6060 env[i] = 0;
6061 environ = env;
6062 envsize = esize;
6063 return 0;
6064}
6065
6066 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01006067moreenv(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006068{
6069 int esize;
6070 char **env;
6071
6072 esize = envsize + EXTRASIZE;
6073 env = (char **)vim_realloc((char *)environ, esize * sizeof (*env));
6074 if (env == 0)
6075 return -1;
6076 environ = env;
6077 envsize = esize;
6078 return 0;
6079}
6080
6081# ifdef USE_VIMPTY_GETENV
Bram Moolenaar613fe7a2017-07-22 21:11:53 +02006082/*
6083 * Used for mch_getenv() for Mac.
6084 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006085 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01006086vimpty_getenv(const char_u *string)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006087{
6088 int i;
6089 char_u *p;
6090
6091 if (envsize < 0)
6092 return NULL;
6093
6094 i = findenv((char *)string);
6095
6096 if (i < 0)
6097 return NULL;
6098
6099 p = vim_strchr((char_u *)environ[i], '=');
6100 return (p + 1);
6101}
6102# endif
6103
6104#endif /* !defined(HAVE_SETENV) && !defined(HAVE_PUTENV) */
Bram Moolenaarc4a06d32005-06-07 21:04:49 +00006105
Bram Moolenaarc4956c82006-03-12 21:58:43 +00006106#if defined(FEAT_EVAL) || defined(FEAT_SPELL) || defined(PROTO)
Bram Moolenaarc4a06d32005-06-07 21:04:49 +00006107/*
6108 * Return 0 for not writable, 1 for writable file, 2 for a dir which we have
6109 * rights to write into.
6110 */
6111 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01006112filewritable(char_u *fname)
Bram Moolenaarc4a06d32005-06-07 21:04:49 +00006113{
6114 int retval = 0;
6115#if defined(UNIX) || defined(VMS)
6116 int perm = 0;
6117#endif
6118
6119#if defined(UNIX) || defined(VMS)
6120 perm = mch_getperm(fname);
6121#endif
Bram Moolenaarc4a06d32005-06-07 21:04:49 +00006122 if (
6123# ifdef WIN3264
6124 mch_writable(fname) &&
6125# else
6126# if defined(UNIX) || defined(VMS)
6127 (perm & 0222) &&
6128# endif
6129# endif
6130 mch_access((char *)fname, W_OK) == 0
6131 )
Bram Moolenaarc4a06d32005-06-07 21:04:49 +00006132 {
6133 ++retval;
6134 if (mch_isdir(fname))
6135 ++retval;
6136 }
6137 return retval;
6138}
6139#endif
Bram Moolenaar6bab4d12005-06-16 21:53:56 +00006140
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006141#if defined(FEAT_SPELL) || defined(FEAT_PERSISTENT_UNDO) || defined(PROTO)
6142/*
6143 * Read 2 bytes from "fd" and turn them into an int, MSB first.
6144 */
6145 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01006146get2c(FILE *fd)
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006147{
Bram Moolenaar9db58062010-05-29 20:33:07 +02006148 int n;
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006149
6150 n = getc(fd);
6151 n = (n << 8) + getc(fd);
6152 return n;
6153}
6154
6155/*
6156 * Read 3 bytes from "fd" and turn them into an int, MSB first.
6157 */
6158 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01006159get3c(FILE *fd)
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006160{
Bram Moolenaar9db58062010-05-29 20:33:07 +02006161 int n;
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006162
6163 n = getc(fd);
6164 n = (n << 8) + getc(fd);
6165 n = (n << 8) + getc(fd);
6166 return n;
6167}
6168
6169/*
6170 * Read 4 bytes from "fd" and turn them into an int, MSB first.
6171 */
6172 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01006173get4c(FILE *fd)
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006174{
Bram Moolenaar95235e62013-09-08 16:07:07 +02006175 /* Use unsigned rather than int otherwise result is undefined
6176 * when left-shift sets the MSB. */
6177 unsigned n;
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006178
Bram Moolenaar95235e62013-09-08 16:07:07 +02006179 n = (unsigned)getc(fd);
6180 n = (n << 8) + (unsigned)getc(fd);
6181 n = (n << 8) + (unsigned)getc(fd);
6182 n = (n << 8) + (unsigned)getc(fd);
6183 return (int)n;
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006184}
6185
6186/*
Bram Moolenaarf4fba6d2016-06-26 16:44:24 +02006187 * Read 8 bytes from "fd" and turn them into a time_T, MSB first.
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006188 */
Bram Moolenaarf4fba6d2016-06-26 16:44:24 +02006189 time_T
Bram Moolenaar9b578142016-01-30 19:39:49 +01006190get8ctime(FILE *fd)
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006191{
Bram Moolenaarf4fba6d2016-06-26 16:44:24 +02006192 time_T n = 0;
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006193 int i;
6194
6195 for (i = 0; i < 8; ++i)
6196 n = (n << 8) + getc(fd);
6197 return n;
6198}
6199
6200/*
6201 * Read a string of length "cnt" from "fd" into allocated memory.
6202 * Returns NULL when out of memory or unable to read that many bytes.
6203 */
6204 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01006205read_string(FILE *fd, int cnt)
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006206{
6207 char_u *str;
6208 int i;
6209 int c;
6210
6211 /* allocate memory */
6212 str = alloc((unsigned)cnt + 1);
6213 if (str != NULL)
6214 {
6215 /* Read the string. Quit when running into the EOF. */
6216 for (i = 0; i < cnt; ++i)
6217 {
6218 c = getc(fd);
6219 if (c == EOF)
6220 {
6221 vim_free(str);
6222 return NULL;
6223 }
6224 str[i] = c;
6225 }
6226 str[i] = NUL;
6227 }
6228 return str;
6229}
6230
6231/*
6232 * Write a number to file "fd", MSB first, in "len" bytes.
6233 */
6234 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01006235put_bytes(FILE *fd, long_u nr, int len)
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006236{
6237 int i;
6238
6239 for (i = len - 1; i >= 0; --i)
6240 if (putc((int)(nr >> (i * 8)), fd) == EOF)
6241 return FAIL;
6242 return OK;
6243}
6244
6245#ifdef _MSC_VER
6246# if (_MSC_VER <= 1200)
6247/* This line is required for VC6 without the service pack. Also see the
6248 * matching #pragma below. */
6249 # pragma optimize("", off)
6250# endif
6251#endif
6252
6253/*
Bram Moolenaarf4fba6d2016-06-26 16:44:24 +02006254 * Write time_T to file "fd" in 8 bytes.
Bram Moolenaar285bf842016-01-07 22:34:01 +01006255 * Returns FAIL when the write failed.
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006256 */
Bram Moolenaar285bf842016-01-07 22:34:01 +01006257 int
Bram Moolenaarf4fba6d2016-06-26 16:44:24 +02006258put_time(FILE *fd, time_T the_time)
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006259{
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02006260 char_u buf[8];
6261
6262 time_to_bytes(the_time, buf);
Bram Moolenaar285bf842016-01-07 22:34:01 +01006263 return fwrite(buf, (size_t)8, (size_t)1, fd) == 1 ? OK : FAIL;
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02006264}
6265
6266/*
Bram Moolenaarf4fba6d2016-06-26 16:44:24 +02006267 * Write time_T to "buf[8]".
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02006268 */
6269 void
Bram Moolenaarf4fba6d2016-06-26 16:44:24 +02006270time_to_bytes(time_T the_time, char_u *buf)
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02006271{
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006272 int c;
6273 int i;
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02006274 int bi = 0;
Bram Moolenaarf4fba6d2016-06-26 16:44:24 +02006275 time_T wtime = the_time;
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006276
Bram Moolenaarf4fba6d2016-06-26 16:44:24 +02006277 /* time_T can be up to 8 bytes in size, more than long_u, thus we
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006278 * can't use put_bytes() here.
6279 * Another problem is that ">>" may do an arithmetic shift that keeps the
Bram Moolenaar644fdff2010-05-30 13:26:21 +02006280 * sign. This happens for large values of wtime. A cast to long_u may
Bram Moolenaarf4fba6d2016-06-26 16:44:24 +02006281 * truncate if time_T is 8 bytes. So only use a cast when it is 4 bytes,
Bram Moolenaar644fdff2010-05-30 13:26:21 +02006282 * it's safe to assume that long_u is 4 bytes or more and when using 8
6283 * bytes the top bit won't be set. */
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006284 for (i = 7; i >= 0; --i)
6285 {
Bram Moolenaarf4fba6d2016-06-26 16:44:24 +02006286 if (i + 1 > (int)sizeof(time_T))
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006287 /* ">>" doesn't work well when shifting more bits than avail */
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02006288 buf[bi++] = 0;
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006289 else
6290 {
Bram Moolenaar644fdff2010-05-30 13:26:21 +02006291#if defined(SIZEOF_TIME_T) && SIZEOF_TIME_T > 4
Bram Moolenaarbbd6afe2010-06-02 20:32:23 +02006292 c = (int)(wtime >> (i * 8));
Bram Moolenaar644fdff2010-05-30 13:26:21 +02006293#else
Bram Moolenaarbbd6afe2010-06-02 20:32:23 +02006294 c = (int)((long_u)wtime >> (i * 8));
Bram Moolenaar644fdff2010-05-30 13:26:21 +02006295#endif
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02006296 buf[bi++] = c;
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006297 }
6298 }
6299}
6300
6301#ifdef _MSC_VER
6302# if (_MSC_VER <= 1200)
6303 # pragma optimize("", on)
6304# endif
6305#endif
6306
6307#endif
Bram Moolenaar10b7b392012-01-10 16:28:45 +01006308
6309#if (defined(FEAT_MBYTE) && defined(FEAT_QUICKFIX)) \
6310 || defined(FEAT_SPELL) || defined(PROTO)
6311/*
6312 * Return TRUE if string "s" contains a non-ASCII character (128 or higher).
6313 * When "s" is NULL FALSE is returned.
6314 */
6315 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01006316has_non_ascii(char_u *s)
Bram Moolenaar10b7b392012-01-10 16:28:45 +01006317{
6318 char_u *p;
6319
6320 if (s != NULL)
6321 for (p = s; *p != NUL; ++p)
6322 if (*p >= 128)
6323 return TRUE;
6324 return FALSE;
6325}
6326#endif
Bram Moolenaar93c88e02015-09-15 14:12:05 +02006327
6328#if defined(MESSAGE_QUEUE) || defined(PROTO)
6329/*
6330 * Process messages that have been queued for netbeans or clientserver.
Bram Moolenaar3a117e12016-10-30 21:57:52 +01006331 * Also check if any jobs have ended.
Bram Moolenaar93c88e02015-09-15 14:12:05 +02006332 * These functions can call arbitrary vimscript and should only be called when
6333 * it is safe to do so.
6334 */
6335 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006336parse_queued_messages(void)
Bram Moolenaar93c88e02015-09-15 14:12:05 +02006337{
Bram Moolenaara3f7e582017-11-09 13:21:58 +01006338 win_T *old_curwin = curwin;
6339
Bram Moolenaarb7522a22016-02-21 17:20:55 +01006340 /* For Win32 mch_breakcheck() does not check for input, do it here. */
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01006341# if defined(WIN32) && defined(FEAT_JOB_CHANNEL)
Bram Moolenaar13ebb032017-08-26 22:02:51 +02006342 channel_handle_events(FALSE);
Bram Moolenaarb7522a22016-02-21 17:20:55 +01006343# endif
6344
Bram Moolenaar93c88e02015-09-15 14:12:05 +02006345# ifdef FEAT_NETBEANS_INTG
6346 /* Process the queued netbeans messages. */
6347 netbeans_parse_messages();
6348# endif
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01006349# ifdef FEAT_JOB_CHANNEL
Bram Moolenaar8b877ac2016-03-28 19:16:20 +02006350 /* Write any buffer lines still to be written. */
6351 channel_write_any_lines();
6352
Bram Moolenaar20fb9f32016-01-30 23:20:33 +01006353 /* Process the messages queued on channels. */
6354 channel_parse_messages();
6355# endif
Bram Moolenaar95346802015-09-15 15:57:29 +02006356# if defined(FEAT_CLIENTSERVER) && defined(FEAT_X11)
Bram Moolenaar93c88e02015-09-15 14:12:05 +02006357 /* Process the queued clientserver messages. */
6358 server_parse_messages();
6359# endif
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01006360# ifdef FEAT_JOB_CHANNEL
Bram Moolenaaree1cffc2016-02-21 19:14:41 +01006361 /* Check if any jobs have ended. */
6362 job_check_ended();
6363# endif
Bram Moolenaara3f7e582017-11-09 13:21:58 +01006364
6365 /* If the current window changed we need to bail out of the waiting loop.
6366 * E.g. when a job exit callback closes the terminal window. */
6367 if (curwin != old_curwin)
6368 ins_char_typebuf(K_IGNORE);
Bram Moolenaar93c88e02015-09-15 14:12:05 +02006369}
6370#endif
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01006371
Bram Moolenaar51628222016-12-01 23:03:28 +01006372#ifndef PROTO /* proto is defined in vim.h */
6373# ifdef ELAPSED_TIMEVAL
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01006374/*
6375 * Return time in msec since "start_tv".
6376 */
6377 long
6378elapsed(struct timeval *start_tv)
6379{
6380 struct timeval now_tv;
6381
6382 gettimeofday(&now_tv, NULL);
6383 return (now_tv.tv_sec - start_tv->tv_sec) * 1000L
6384 + (now_tv.tv_usec - start_tv->tv_usec) / 1000L;
6385}
Bram Moolenaar51628222016-12-01 23:03:28 +01006386# endif
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01006387
Bram Moolenaar51628222016-12-01 23:03:28 +01006388# ifdef ELAPSED_TICKCOUNT
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01006389/*
6390 * Return time in msec since "start_tick".
6391 */
6392 long
6393elapsed(DWORD start_tick)
6394{
6395 DWORD now = GetTickCount();
6396
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01006397 return (long)now - (long)start_tick;
6398}
Bram Moolenaar51628222016-12-01 23:03:28 +01006399# endif
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01006400#endif