blob: 0deccdf509d375096f8894febaf848b603c380cf [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 Moolenaarb301f6b2018-02-10 15:38:35 +01001119#if defined(FEAT_INS_EXPAND) && defined(FEAT_BEVAL_TERM)
1120 ui_remove_balloon();
1121# endif
1122
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001123# if defined(FEAT_USR_CMDS)
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001124 /* Clear user commands (before deleting buffers). */
1125 ex_comclear(NULL);
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001126# endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001127
1128# ifdef FEAT_MENU
1129 /* Clear menus. */
1130 do_cmdline_cmd((char_u *)"aunmenu *");
Bram Moolenaar21160b92009-11-11 15:56:10 +00001131# ifdef FEAT_MULTI_LANG
1132 do_cmdline_cmd((char_u *)"menutranslate clear");
1133# endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001134# endif
1135
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001136 /* Clear mappings, abbreviations, breakpoints. */
Bram Moolenaar21160b92009-11-11 15:56:10 +00001137 do_cmdline_cmd((char_u *)"lmapclear");
1138 do_cmdline_cmd((char_u *)"xmapclear");
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001139 do_cmdline_cmd((char_u *)"mapclear");
1140 do_cmdline_cmd((char_u *)"mapclear!");
1141 do_cmdline_cmd((char_u *)"abclear");
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001142# if defined(FEAT_EVAL)
1143 do_cmdline_cmd((char_u *)"breakdel *");
1144# endif
Bram Moolenaar1e498f52005-06-26 22:29:44 +00001145# if defined(FEAT_PROFILE)
1146 do_cmdline_cmd((char_u *)"profdel *");
1147# endif
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00001148# if defined(FEAT_KEYMAP)
1149 do_cmdline_cmd((char_u *)"set keymap=");
1150#endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001151
1152# ifdef FEAT_TITLE
1153 free_titles();
1154# endif
1155# if defined(FEAT_SEARCHPATH)
1156 free_findfile();
1157# endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001158
1159 /* Obviously named calls. */
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001160# if defined(FEAT_AUTOCMD)
1161 free_all_autocmds();
1162# endif
1163 clear_termcodes();
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001164 free_all_marks();
1165 alist_clear(&global_alist);
1166 free_homedir();
Bram Moolenaar24305862012-08-15 14:05:05 +02001167# if defined(FEAT_CMDL_COMPL)
1168 free_users();
1169# endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001170 free_search_patterns();
1171 free_old_sub();
1172 free_last_insert();
1173 free_prev_shellcmd();
1174 free_regexp_stuff();
1175 free_tag_stuff();
1176 free_cd_dir();
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00001177# ifdef FEAT_SIGNS
1178 free_signs();
1179# endif
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001180# ifdef FEAT_EVAL
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001181 set_expr_line(NULL);
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001182# endif
1183# ifdef FEAT_DIFF
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00001184 diff_clear(curtab);
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001185# endif
Bram Moolenaarf2405ed2017-03-16 19:58:25 +01001186 clear_sb_text(TRUE); /* free any scrollback text */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001187
1188 /* Free some global vars. */
1189 vim_free(username);
Bram Moolenaaraf92ee82007-10-07 13:45:08 +00001190# ifdef FEAT_CLIPBOARD
Bram Moolenaar473de612013-06-08 18:19:48 +02001191 vim_regfree(clip_exclude_prog);
Bram Moolenaaraf92ee82007-10-07 13:45:08 +00001192# endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001193 vim_free(last_cmdline);
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001194# ifdef FEAT_CMDHIST
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001195 vim_free(new_last_cmdline);
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001196# endif
Bram Moolenaar238a5642006-02-21 22:12:05 +00001197 set_keep_msg(NULL, 0);
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001198 vim_free(ff_expand_buffer);
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001199
1200 /* Clear cmdline history. */
1201 p_hi = 0;
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001202# ifdef FEAT_CMDHIST
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001203 init_history();
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001204# endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001205
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001206#ifdef FEAT_QUICKFIX
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001207 {
Bram Moolenaarbd1e5d22009-04-29 09:02:44 +00001208 win_T *win;
1209 tabpage_T *tab;
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001210
1211 qf_free_all(NULL);
1212 /* Free all location lists */
Bram Moolenaarbd1e5d22009-04-29 09:02:44 +00001213 FOR_ALL_TAB_WINDOWS(tab, win)
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001214 qf_free_all(win);
1215 }
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001216#endif
1217
1218 /* Close all script inputs. */
1219 close_all_scripts();
1220
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001221 /* Destroy all windows. Must come before freeing buffers. */
1222 win_free_all();
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001223
Bram Moolenaar4f198282017-10-23 21:53:30 +02001224 /* Free all option values. Must come after closing windows. */
1225 free_all_options();
1226
Bram Moolenaar2a329742008-04-01 12:53:43 +00001227 /* Free all buffers. Reset 'autochdir' to avoid accessing things that
1228 * were freed already. */
1229#ifdef FEAT_AUTOCHDIR
1230 p_acd = FALSE;
1231#endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001232 for (buf = firstbuf; buf != NULL; )
1233 {
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001234 bufref_T bufref;
1235
1236 set_bufref(&bufref, buf);
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001237 nextbuf = buf->b_next;
Bram Moolenaar42ec6562012-02-22 14:58:37 +01001238 close_buffer(NULL, buf, DOBUF_WIPE, FALSE);
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001239 if (bufref_valid(&bufref))
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001240 buf = nextbuf; /* didn't work, try next one */
1241 else
1242 buf = firstbuf;
1243 }
1244
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001245#ifdef FEAT_ARABIC
1246 free_cmdline_buf();
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001247#endif
1248
1249 /* Clear registers. */
1250 clear_registers();
1251 ResetRedobuff();
1252 ResetRedobuff();
1253
Bram Moolenaar85c79d32007-02-20 01:59:20 +00001254#if defined(FEAT_CLIENTSERVER) && defined(FEAT_X11)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001255 vim_free(serverDelayedStartName);
1256#endif
1257
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001258 /* highlight info */
1259 free_highlight();
1260
Bram Moolenaar1e498f52005-06-26 22:29:44 +00001261 reset_last_sourcing();
1262
Bram Moolenaar06a89a52006-04-29 22:01:03 +00001263 free_tabpage(first_tabpage);
1264 first_tabpage = NULL;
Bram Moolenaar7d47b6e2006-03-15 22:59:18 +00001265
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001266# ifdef UNIX
1267 /* Machine-specific free. */
1268 mch_free_mem();
1269# endif
1270
1271 /* message history */
1272 for (;;)
1273 if (delete_first_msg() == FAIL)
1274 break;
1275
Bram Moolenaar655da312016-05-28 22:22:34 +02001276# ifdef FEAT_JOB_CHANNEL
1277 channel_free_all();
Bram Moolenaar655da312016-05-28 22:22:34 +02001278# endif
Bram Moolenaar623e2632016-07-30 22:47:56 +02001279#ifdef FEAT_TIMERS
1280 timer_free_all();
1281#endif
Bram Moolenaar437bafe2016-08-01 15:40:54 +02001282# ifdef FEAT_EVAL
1283 /* must be after channel_free_all() with unrefs partials */
1284 eval_clear();
1285# endif
1286# ifdef FEAT_JOB_CHANNEL
1287 /* must be after eval_clear() with unrefs jobs */
1288 job_free_all();
1289# endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001290
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001291 free_termoptions();
1292
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001293 /* screenlines (can't display anything now!) */
1294 free_screenlines();
1295
1296#if defined(USE_XSMP)
1297 xsmp_close();
1298#endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001299#ifdef FEAT_GUI_GTK
1300 gui_mch_free_all();
1301#endif
1302 clear_hl_tables();
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001303
1304 vim_free(IObuff);
1305 vim_free(NameBuff);
1306}
1307#endif
1308
Bram Moolenaar071d4272004-06-13 20:20:40 +00001309/*
Bram Moolenaare980d8a2010-12-08 13:11:21 +01001310 * Copy "string" into newly allocated memory.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001311 */
1312 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001313vim_strsave(char_u *string)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001314{
1315 char_u *p;
1316 unsigned len;
1317
1318 len = (unsigned)STRLEN(string) + 1;
1319 p = alloc(len);
1320 if (p != NULL)
1321 mch_memmove(p, string, (size_t)len);
1322 return p;
1323}
1324
Bram Moolenaare980d8a2010-12-08 13:11:21 +01001325/*
1326 * Copy up to "len" bytes of "string" into newly allocated memory and
1327 * terminate with a NUL.
1328 * The allocated memory always has size "len + 1", also when "string" is
1329 * shorter.
1330 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001331 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001332vim_strnsave(char_u *string, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001333{
1334 char_u *p;
1335
1336 p = alloc((unsigned)(len + 1));
1337 if (p != NULL)
1338 {
1339 STRNCPY(p, string, len);
1340 p[len] = NUL;
1341 }
1342 return p;
1343}
1344
Bram Moolenaar071d4272004-06-13 20:20:40 +00001345/*
1346 * Same as vim_strsave(), but any characters found in esc_chars are preceded
1347 * by a backslash.
1348 */
1349 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001350vim_strsave_escaped(char_u *string, char_u *esc_chars)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001351{
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001352 return vim_strsave_escaped_ext(string, esc_chars, '\\', FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001353}
1354
1355/*
1356 * Same as vim_strsave_escaped(), but when "bsl" is TRUE also escape
1357 * characters where rem_backslash() would remove the backslash.
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001358 * Escape the characters with "cc".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001359 */
1360 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001361vim_strsave_escaped_ext(
1362 char_u *string,
1363 char_u *esc_chars,
1364 int cc,
1365 int bsl)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001366{
1367 char_u *p;
1368 char_u *p2;
1369 char_u *escaped_string;
1370 unsigned length;
1371#ifdef FEAT_MBYTE
1372 int l;
1373#endif
1374
1375 /*
1376 * First count the number of backslashes required.
1377 * Then allocate the memory and insert them.
1378 */
1379 length = 1; /* count the trailing NUL */
1380 for (p = string; *p; p++)
1381 {
1382#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001383 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001384 {
1385 length += l; /* count a multibyte char */
1386 p += l - 1;
1387 continue;
1388 }
1389#endif
1390 if (vim_strchr(esc_chars, *p) != NULL || (bsl && rem_backslash(p)))
1391 ++length; /* count a backslash */
1392 ++length; /* count an ordinary char */
1393 }
1394 escaped_string = alloc(length);
1395 if (escaped_string != NULL)
1396 {
1397 p2 = escaped_string;
1398 for (p = string; *p; p++)
1399 {
1400#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001401 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001402 {
1403 mch_memmove(p2, p, (size_t)l);
1404 p2 += l;
1405 p += l - 1; /* skip multibyte char */
1406 continue;
1407 }
1408#endif
1409 if (vim_strchr(esc_chars, *p) != NULL || (bsl && rem_backslash(p)))
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001410 *p2++ = cc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001411 *p2++ = *p;
1412 }
1413 *p2 = NUL;
1414 }
1415 return escaped_string;
1416}
1417
Bram Moolenaar7693ec62008-07-24 18:29:37 +00001418/*
1419 * Return TRUE when 'shell' has "csh" in the tail.
1420 */
1421 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001422csh_like_shell(void)
Bram Moolenaar7693ec62008-07-24 18:29:37 +00001423{
1424 return (strstr((char *)gettail(p_sh), "csh") != NULL);
1425}
Bram Moolenaar7693ec62008-07-24 18:29:37 +00001426
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001427/*
1428 * Escape "string" for use as a shell argument with system().
Bram Moolenaar21160b92009-11-11 15:56:10 +00001429 * This uses single quotes, except when we know we need to use double quotes
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001430 * (MS-DOS and MS-Windows without 'shellslash' set).
Bram Moolenaarffd66c42008-07-16 20:43:37 +00001431 * Escape a newline, depending on the 'shell' option.
1432 * When "do_special" is TRUE also replace "!", "%", "#" and things starting
1433 * with "<" like "<cfile>".
Bram Moolenaar26df0922014-02-23 23:39:13 +01001434 * When "do_newline" is FALSE do not escape newline unless it is csh shell.
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001435 * Returns the result in allocated memory, NULL if we have run out.
1436 */
1437 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001438vim_strsave_shellescape(char_u *string, int do_special, int do_newline)
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001439{
1440 unsigned length;
1441 char_u *p;
1442 char_u *d;
1443 char_u *escaped_string;
Bram Moolenaar05bb9532008-07-04 09:44:11 +00001444 int l;
Bram Moolenaarffd66c42008-07-16 20:43:37 +00001445 int csh_like;
1446
1447 /* Only csh and similar shells expand '!' within single quotes. For sh and
1448 * the like we must not put a backslash before it, it will be taken
1449 * literally. If do_special is set the '!' will be escaped twice.
1450 * Csh also needs to have "\n" escaped twice when do_special is set. */
Bram Moolenaar7693ec62008-07-24 18:29:37 +00001451 csh_like = csh_like_shell();
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001452
1453 /* First count the number of extra bytes required. */
Bram Moolenaar77f66d62007-02-20 02:16:18 +00001454 length = (unsigned)STRLEN(string) + 3; /* two quotes and a trailing NUL */
Bram Moolenaar91acfff2017-03-12 19:22:36 +01001455 for (p = string; *p != NUL; MB_PTR_ADV(p))
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001456 {
Bram Moolenaarcea912a2016-10-12 14:20:24 +02001457# ifdef WIN32
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001458 if (!p_ssl)
1459 {
1460 if (*p == '"')
1461 ++length; /* " -> "" */
1462 }
1463 else
1464# endif
1465 if (*p == '\'')
1466 length += 3; /* ' => '\'' */
Bram Moolenaar26df0922014-02-23 23:39:13 +01001467 if ((*p == '\n' && (csh_like || do_newline))
1468 || (*p == '!' && (csh_like || do_special)))
Bram Moolenaarffd66c42008-07-16 20:43:37 +00001469 {
1470 ++length; /* insert backslash */
1471 if (csh_like && do_special)
1472 ++length; /* insert backslash */
1473 }
Bram Moolenaar05bb9532008-07-04 09:44:11 +00001474 if (do_special && find_cmdline_var(p, &l) >= 0)
1475 {
1476 ++length; /* insert backslash */
1477 p += l - 1;
1478 }
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001479 }
1480
1481 /* Allocate memory for the result and fill it. */
1482 escaped_string = alloc(length);
1483 if (escaped_string != NULL)
1484 {
1485 d = escaped_string;
1486
1487 /* add opening quote */
Bram Moolenaarcea912a2016-10-12 14:20:24 +02001488# ifdef WIN32
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001489 if (!p_ssl)
1490 *d++ = '"';
1491 else
1492# endif
1493 *d++ = '\'';
1494
1495 for (p = string; *p != NUL; )
1496 {
Bram Moolenaarcea912a2016-10-12 14:20:24 +02001497# ifdef WIN32
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001498 if (!p_ssl)
1499 {
1500 if (*p == '"')
1501 {
1502 *d++ = '"';
1503 *d++ = '"';
1504 ++p;
1505 continue;
1506 }
1507 }
1508 else
1509# endif
1510 if (*p == '\'')
1511 {
Bram Moolenaar05bb9532008-07-04 09:44:11 +00001512 *d++ = '\'';
1513 *d++ = '\\';
1514 *d++ = '\'';
1515 *d++ = '\'';
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001516 ++p;
1517 continue;
1518 }
Bram Moolenaar26df0922014-02-23 23:39:13 +01001519 if ((*p == '\n' && (csh_like || do_newline))
1520 || (*p == '!' && (csh_like || do_special)))
Bram Moolenaarffd66c42008-07-16 20:43:37 +00001521 {
1522 *d++ = '\\';
1523 if (csh_like && do_special)
1524 *d++ = '\\';
1525 *d++ = *p++;
1526 continue;
1527 }
Bram Moolenaar05bb9532008-07-04 09:44:11 +00001528 if (do_special && find_cmdline_var(p, &l) >= 0)
1529 {
1530 *d++ = '\\'; /* insert backslash */
1531 while (--l >= 0) /* copy the var */
1532 *d++ = *p++;
Bram Moolenaar099d01d2009-11-25 16:14:45 +00001533 continue;
Bram Moolenaar05bb9532008-07-04 09:44:11 +00001534 }
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001535
1536 MB_COPY_CHAR(p, d);
1537 }
1538
1539 /* add terminating quote and finish with a NUL */
Bram Moolenaarcea912a2016-10-12 14:20:24 +02001540# ifdef WIN32
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001541 if (!p_ssl)
1542 *d++ = '"';
1543 else
1544# endif
1545 *d++ = '\'';
1546 *d = NUL;
1547 }
1548
1549 return escaped_string;
1550}
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001551
Bram Moolenaar071d4272004-06-13 20:20:40 +00001552/*
1553 * Like vim_strsave(), but make all characters uppercase.
1554 * This uses ASCII lower-to-upper case translation, language independent.
1555 */
1556 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001557vim_strsave_up(char_u *string)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001558{
1559 char_u *p1;
1560
1561 p1 = vim_strsave(string);
1562 vim_strup(p1);
1563 return p1;
1564}
1565
1566/*
1567 * Like vim_strnsave(), but make all characters uppercase.
1568 * This uses ASCII lower-to-upper case translation, language independent.
1569 */
1570 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001571vim_strnsave_up(char_u *string, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001572{
1573 char_u *p1;
1574
1575 p1 = vim_strnsave(string, len);
1576 vim_strup(p1);
1577 return p1;
1578}
1579
1580/*
1581 * ASCII lower-to-upper case translation, language independent.
1582 */
1583 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001584vim_strup(
1585 char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001586{
1587 char_u *p2;
1588 int c;
1589
1590 if (p != NULL)
1591 {
1592 p2 = p;
1593 while ((c = *p2) != NUL)
1594#ifdef EBCDIC
1595 *p2++ = isalpha(c) ? toupper(c) : c;
1596#else
1597 *p2++ = (c < 'a' || c > 'z') ? c : (c - 0x20);
1598#endif
1599 }
1600}
1601
Bram Moolenaarc4956c82006-03-12 21:58:43 +00001602#if defined(FEAT_EVAL) || defined(FEAT_SPELL) || defined(PROTO)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001603/*
1604 * Make string "s" all upper-case and return it in allocated memory.
1605 * Handles multi-byte characters as well as possible.
1606 * Returns NULL when out of memory.
1607 */
1608 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001609strup_save(char_u *orig)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001610{
1611 char_u *p;
1612 char_u *res;
1613
1614 res = p = vim_strsave(orig);
1615
1616 if (res != NULL)
1617 while (*p != NUL)
1618 {
1619# ifdef FEAT_MBYTE
1620 int l;
1621
1622 if (enc_utf8)
1623 {
1624 int c, uc;
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001625 int newl;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001626 char_u *s;
1627
1628 c = utf_ptr2char(p);
Bram Moolenaare6640ad2017-12-22 21:06:56 +01001629 l = utf_ptr2len(p);
1630 if (c == 0)
1631 {
1632 /* overlong sequence, use only the first byte */
1633 c = *p;
1634 l = 1;
1635 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001636 uc = utf_toupper(c);
1637
1638 /* Reallocate string when byte count changes. This is rare,
1639 * thus it's OK to do another malloc()/free(). */
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001640 newl = utf_char2len(uc);
1641 if (newl != l)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001642 {
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001643 s = alloc((unsigned)STRLEN(res) + 1 + newl - l);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001644 if (s == NULL)
Bram Moolenaarcc5b22b2017-01-26 22:51:56 +01001645 {
1646 vim_free(res);
1647 return NULL;
1648 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001649 mch_memmove(s, res, p - res);
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001650 STRCPY(s + (p - res) + newl, p + l);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001651 p = s + (p - res);
1652 vim_free(res);
1653 res = s;
1654 }
1655
1656 utf_char2bytes(uc, p);
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001657 p += newl;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001658 }
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001659 else if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001660 p += l; /* skip multi-byte character */
1661 else
1662# endif
1663 {
1664 *p = TOUPPER_LOC(*p); /* note that toupper() can be a macro */
1665 p++;
1666 }
1667 }
1668
1669 return res;
1670}
Bram Moolenaarcc5b22b2017-01-26 22:51:56 +01001671
1672/*
1673 * Make string "s" all lower-case and return it in allocated memory.
1674 * Handles multi-byte characters as well as possible.
1675 * Returns NULL when out of memory.
1676 */
1677 char_u *
1678strlow_save(char_u *orig)
1679{
1680 char_u *p;
1681 char_u *res;
1682
1683 res = p = vim_strsave(orig);
1684
1685 if (res != NULL)
1686 while (*p != NUL)
1687 {
1688# ifdef FEAT_MBYTE
1689 int l;
1690
1691 if (enc_utf8)
1692 {
1693 int c, lc;
1694 int newl;
1695 char_u *s;
1696
1697 c = utf_ptr2char(p);
Bram Moolenaare6640ad2017-12-22 21:06:56 +01001698 l = utf_ptr2len(p);
1699 if (c == 0)
1700 {
1701 /* overlong sequence, use only the first byte */
1702 c = *p;
1703 l = 1;
1704 }
Bram Moolenaarcc5b22b2017-01-26 22:51:56 +01001705 lc = utf_tolower(c);
1706
1707 /* Reallocate string when byte count changes. This is rare,
1708 * thus it's OK to do another malloc()/free(). */
Bram Moolenaarcc5b22b2017-01-26 22:51:56 +01001709 newl = utf_char2len(lc);
1710 if (newl != l)
1711 {
1712 s = alloc((unsigned)STRLEN(res) + 1 + newl - l);
1713 if (s == NULL)
1714 {
1715 vim_free(res);
1716 return NULL;
1717 }
1718 mch_memmove(s, res, p - res);
1719 STRCPY(s + (p - res) + newl, p + l);
1720 p = s + (p - res);
1721 vim_free(res);
1722 res = s;
1723 }
1724
1725 utf_char2bytes(lc, p);
1726 p += newl;
1727 }
1728 else if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
1729 p += l; /* skip multi-byte character */
1730 else
1731# endif
1732 {
1733 *p = TOLOWER_LOC(*p); /* note that tolower() can be a macro */
1734 p++;
1735 }
1736 }
1737
1738 return res;
1739}
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001740#endif
1741
Bram Moolenaar071d4272004-06-13 20:20:40 +00001742/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001743 * delete spaces at the end of a string
1744 */
1745 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001746del_trailing_spaces(char_u *ptr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001747{
1748 char_u *q;
1749
1750 q = ptr + STRLEN(ptr);
Bram Moolenaar1c465442017-03-12 20:10:05 +01001751 while (--q > ptr && VIM_ISWHITE(q[0]) && q[-1] != '\\' && q[-1] != Ctrl_V)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001752 *q = NUL;
1753}
1754
1755/*
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001756 * Like strncpy(), but always terminate the result with one NUL.
Bram Moolenaard042c562005-06-30 22:04:15 +00001757 * "to" must be "len + 1" long!
Bram Moolenaar071d4272004-06-13 20:20:40 +00001758 */
1759 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001760vim_strncpy(char_u *to, char_u *from, size_t len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001761{
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001762 STRNCPY(to, from, len);
1763 to[len] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001764}
1765
1766/*
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02001767 * Like strcat(), but make sure the result fits in "tosize" bytes and is
Bram Moolenaar45600ce2017-01-27 21:54:07 +01001768 * always NUL terminated. "from" and "to" may overlap.
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02001769 */
1770 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001771vim_strcat(char_u *to, char_u *from, size_t tosize)
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02001772{
1773 size_t tolen = STRLEN(to);
1774 size_t fromlen = STRLEN(from);
1775
1776 if (tolen + fromlen + 1 > tosize)
1777 {
1778 mch_memmove(to + tolen, from, tosize - tolen - 1);
1779 to[tosize - 1] = NUL;
1780 }
1781 else
Bram Moolenaar45600ce2017-01-27 21:54:07 +01001782 mch_memmove(to + tolen, from, fromlen + 1);
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02001783}
1784
1785/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001786 * Isolate one part of a string option where parts are separated with
1787 * "sep_chars".
Bram Moolenaar83bab712005-08-01 21:58:57 +00001788 * The part is copied into "buf[maxlen]".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001789 * "*option" is advanced to the next part.
1790 * The length is returned.
1791 */
1792 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001793copy_option_part(
1794 char_u **option,
1795 char_u *buf,
1796 int maxlen,
1797 char *sep_chars)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001798{
1799 int len = 0;
1800 char_u *p = *option;
1801
1802 /* skip '.' at start of option part, for 'suffixes' */
1803 if (*p == '.')
1804 buf[len++] = *p++;
1805 while (*p != NUL && vim_strchr((char_u *)sep_chars, *p) == NULL)
1806 {
1807 /*
1808 * Skip backslash before a separator character and space.
1809 */
1810 if (p[0] == '\\' && vim_strchr((char_u *)sep_chars, p[1]) != NULL)
1811 ++p;
1812 if (len < maxlen - 1)
1813 buf[len++] = *p;
1814 ++p;
1815 }
1816 buf[len] = NUL;
1817
1818 if (*p != NUL && *p != ',') /* skip non-standard separator */
1819 ++p;
1820 p = skip_to_option_part(p); /* p points to next file name */
1821
1822 *option = p;
1823 return len;
1824}
1825
1826/*
Bram Moolenaar4770d092006-01-12 23:22:24 +00001827 * Replacement for free() that ignores NULL pointers.
1828 * Also skip free() when exiting for sure, this helps when we caught a deadly
1829 * signal that was caused by a crash in free().
Bram Moolenaar071d4272004-06-13 20:20:40 +00001830 */
1831 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001832vim_free(void *x)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001833{
Bram Moolenaar4770d092006-01-12 23:22:24 +00001834 if (x != NULL && !really_exiting)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001835 {
1836#ifdef MEM_PROFILE
1837 mem_pre_free(&x);
1838#endif
1839 free(x);
1840 }
1841}
1842
Bram Moolenaar15675582018-02-09 12:29:56 +01001843/*
1844 * Like vim_free(), and also set the pointer to NULL.
1845 */
1846 void
1847vim_clear(void **x)
1848{
1849 if (*x != NULL)
1850 {
1851 vim_free(*x);
1852 *x = NULL;
1853 }
1854}
1855
Bram Moolenaar071d4272004-06-13 20:20:40 +00001856#ifndef HAVE_MEMSET
1857 void *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001858vim_memset(void *ptr, int c, size_t size)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001859{
1860 char *p = ptr;
1861
1862 while (size-- > 0)
1863 *p++ = c;
1864 return ptr;
1865}
1866#endif
1867
Bram Moolenaar071d4272004-06-13 20:20:40 +00001868#if (!defined(HAVE_STRCASECMP) && !defined(HAVE_STRICMP)) || defined(PROTO)
1869/*
1870 * Compare two strings, ignoring case, using current locale.
1871 * Doesn't work for multi-byte characters.
1872 * return 0 for match, < 0 for smaller, > 0 for bigger
1873 */
1874 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001875vim_stricmp(char *s1, char *s2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001876{
1877 int i;
1878
1879 for (;;)
1880 {
1881 i = (int)TOLOWER_LOC(*s1) - (int)TOLOWER_LOC(*s2);
1882 if (i != 0)
1883 return i; /* this character different */
1884 if (*s1 == NUL)
1885 break; /* strings match until NUL */
1886 ++s1;
1887 ++s2;
1888 }
1889 return 0; /* strings match */
1890}
1891#endif
1892
1893#if (!defined(HAVE_STRNCASECMP) && !defined(HAVE_STRNICMP)) || defined(PROTO)
1894/*
1895 * Compare two strings, for length "len", ignoring case, using current locale.
1896 * Doesn't work for multi-byte characters.
1897 * return 0 for match, < 0 for smaller, > 0 for bigger
1898 */
1899 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001900vim_strnicmp(char *s1, char *s2, size_t len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001901{
1902 int i;
1903
1904 while (len > 0)
1905 {
1906 i = (int)TOLOWER_LOC(*s1) - (int)TOLOWER_LOC(*s2);
1907 if (i != 0)
1908 return i; /* this character different */
1909 if (*s1 == NUL)
1910 break; /* strings match until NUL */
1911 ++s1;
1912 ++s2;
1913 --len;
1914 }
1915 return 0; /* strings match */
1916}
1917#endif
1918
Bram Moolenaar071d4272004-06-13 20:20:40 +00001919/*
1920 * Version of strchr() and strrchr() that handle unsigned char strings
Bram Moolenaar05159a02005-02-26 23:04:13 +00001921 * with characters from 128 to 255 correctly. It also doesn't return a
1922 * pointer to the NUL at the end of the string.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001923 */
1924 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001925vim_strchr(char_u *string, int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001926{
1927 char_u *p;
1928 int b;
1929
1930 p = string;
1931#ifdef FEAT_MBYTE
1932 if (enc_utf8 && c >= 0x80)
1933 {
1934 while (*p != NUL)
1935 {
Bram Moolenaarace95982017-03-29 17:30:27 +02001936 int l = utfc_ptr2len(p);
Bram Moolenaard82a2a92015-04-21 14:02:35 +02001937
1938 /* Avoid matching an illegal byte here. */
1939 if (utf_ptr2char(p) == c && l > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001940 return p;
Bram Moolenaard82a2a92015-04-21 14:02:35 +02001941 p += l;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001942 }
1943 return NULL;
1944 }
1945 if (enc_dbcs != 0 && c > 255)
1946 {
1947 int n2 = c & 0xff;
1948
1949 c = ((unsigned)c >> 8) & 0xff;
1950 while ((b = *p) != NUL)
1951 {
1952 if (b == c && p[1] == n2)
1953 return p;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001954 p += (*mb_ptr2len)(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001955 }
1956 return NULL;
1957 }
1958 if (has_mbyte)
1959 {
1960 while ((b = *p) != NUL)
1961 {
1962 if (b == c)
1963 return p;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001964 p += (*mb_ptr2len)(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001965 }
1966 return NULL;
1967 }
1968#endif
1969 while ((b = *p) != NUL)
1970 {
1971 if (b == c)
1972 return p;
1973 ++p;
1974 }
1975 return NULL;
1976}
1977
1978/*
Bram Moolenaar05159a02005-02-26 23:04:13 +00001979 * Version of strchr() that only works for bytes and handles unsigned char
1980 * strings with characters above 128 correctly. It also doesn't return a
1981 * pointer to the NUL at the end of the string.
1982 */
1983 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001984vim_strbyte(char_u *string, int c)
Bram Moolenaar05159a02005-02-26 23:04:13 +00001985{
1986 char_u *p = string;
1987
1988 while (*p != NUL)
1989 {
1990 if (*p == c)
1991 return p;
1992 ++p;
1993 }
1994 return NULL;
1995}
1996
1997/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001998 * Search for last occurrence of "c" in "string".
Bram Moolenaarac6e65f2005-08-29 22:25:38 +00001999 * Return NULL if not found.
Bram Moolenaar05159a02005-02-26 23:04:13 +00002000 * Does not handle multi-byte char for "c"!
Bram Moolenaar071d4272004-06-13 20:20:40 +00002001 */
2002 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01002003vim_strrchr(char_u *string, int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002004{
2005 char_u *retval = NULL;
Bram Moolenaar05159a02005-02-26 23:04:13 +00002006 char_u *p = string;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002007
Bram Moolenaar05159a02005-02-26 23:04:13 +00002008 while (*p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002009 {
Bram Moolenaar05159a02005-02-26 23:04:13 +00002010 if (*p == c)
2011 retval = p;
Bram Moolenaar91acfff2017-03-12 19:22:36 +01002012 MB_PTR_ADV(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002013 }
2014 return retval;
2015}
2016
2017/*
2018 * Vim's version of strpbrk(), in case it's missing.
2019 * Don't generate a prototype for this, causes problems when it's not used.
2020 */
2021#ifndef PROTO
2022# ifndef HAVE_STRPBRK
2023# ifdef vim_strpbrk
2024# undef vim_strpbrk
2025# endif
2026 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01002027vim_strpbrk(char_u *s, char_u *charset)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002028{
2029 while (*s)
2030 {
2031 if (vim_strchr(charset, *s) != NULL)
2032 return s;
Bram Moolenaar91acfff2017-03-12 19:22:36 +01002033 MB_PTR_ADV(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002034 }
2035 return NULL;
2036}
2037# endif
2038#endif
2039
2040/*
2041 * Vim has its own isspace() function, because on some machines isspace()
2042 * can't handle characters above 128.
2043 */
2044 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002045vim_isspace(int x)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002046{
2047 return ((x >= 9 && x <= 13) || x == ' ');
2048}
2049
2050/************************************************************************
Bram Moolenaar383f9bc2005-01-19 22:18:32 +00002051 * Functions for handling growing arrays.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002052 */
2053
2054/*
2055 * Clear an allocated growing array.
2056 */
2057 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002058ga_clear(garray_T *gap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002059{
2060 vim_free(gap->ga_data);
2061 ga_init(gap);
2062}
2063
2064/*
2065 * Clear a growing array that contains a list of strings.
2066 */
2067 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002068ga_clear_strings(garray_T *gap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002069{
2070 int i;
2071
2072 for (i = 0; i < gap->ga_len; ++i)
2073 vim_free(((char_u **)(gap->ga_data))[i]);
2074 ga_clear(gap);
2075}
2076
2077/*
2078 * Initialize a growing array. Don't forget to set ga_itemsize and
2079 * ga_growsize! Or use ga_init2().
2080 */
2081 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002082ga_init(garray_T *gap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002083{
2084 gap->ga_data = NULL;
Bram Moolenaar86b68352004-12-27 21:59:20 +00002085 gap->ga_maxlen = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002086 gap->ga_len = 0;
2087}
2088
2089 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002090ga_init2(garray_T *gap, int itemsize, int growsize)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002091{
2092 ga_init(gap);
2093 gap->ga_itemsize = itemsize;
2094 gap->ga_growsize = growsize;
2095}
2096
2097/*
2098 * Make room in growing array "gap" for at least "n" items.
2099 * Return FAIL for failure, OK otherwise.
2100 */
2101 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002102ga_grow(garray_T *gap, int n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002103{
Bram Moolenaar7282bc32012-02-22 18:12:32 +01002104 size_t old_len;
2105 size_t new_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002106 char_u *pp;
2107
Bram Moolenaar86b68352004-12-27 21:59:20 +00002108 if (gap->ga_maxlen - gap->ga_len < n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002109 {
2110 if (n < gap->ga_growsize)
2111 n = gap->ga_growsize;
Bram Moolenaar7282bc32012-02-22 18:12:32 +01002112 new_len = gap->ga_itemsize * (gap->ga_len + n);
2113 pp = (gap->ga_data == NULL)
Bram Moolenaar4336cdf2012-02-29 13:58:47 +01002114 ? alloc((unsigned)new_len) : vim_realloc(gap->ga_data, new_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002115 if (pp == NULL)
2116 return FAIL;
Bram Moolenaar7282bc32012-02-22 18:12:32 +01002117 old_len = gap->ga_itemsize * gap->ga_maxlen;
2118 vim_memset(pp + old_len, 0, new_len - old_len);
Bram Moolenaar86b68352004-12-27 21:59:20 +00002119 gap->ga_maxlen = gap->ga_len + n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002120 gap->ga_data = pp;
2121 }
2122 return OK;
2123}
2124
2125/*
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02002126 * For a growing array that contains a list of strings: concatenate all the
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02002127 * strings with a separating "sep".
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02002128 * Returns NULL when out of memory.
2129 */
2130 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01002131ga_concat_strings(garray_T *gap, char *sep)
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02002132{
2133 int i;
2134 int len = 0;
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02002135 int sep_len = (int)STRLEN(sep);
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02002136 char_u *s;
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02002137 char_u *p;
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02002138
2139 for (i = 0; i < gap->ga_len; ++i)
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02002140 len += (int)STRLEN(((char_u **)(gap->ga_data))[i]) + sep_len;
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02002141
2142 s = alloc(len + 1);
2143 if (s != NULL)
2144 {
2145 *s = NUL;
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02002146 p = s;
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02002147 for (i = 0; i < gap->ga_len; ++i)
2148 {
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02002149 if (p != s)
2150 {
2151 STRCPY(p, sep);
2152 p += sep_len;
2153 }
2154 STRCPY(p, ((char_u **)(gap->ga_data))[i]);
2155 p += STRLEN(p);
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02002156 }
2157 }
2158 return s;
2159}
2160
Bram Moolenaar5a66dfb2017-03-01 20:40:39 +01002161#if defined(FEAT_VIMINFO) || defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaarb20e3342016-01-18 23:29:01 +01002162/*
2163 * Make a copy of string "p" and add it to "gap".
2164 * When out of memory nothing changes.
2165 */
2166 void
2167ga_add_string(garray_T *gap, char_u *p)
2168{
2169 char_u *cp = vim_strsave(p);
2170
2171 if (cp != NULL)
2172 {
2173 if (ga_grow(gap, 1) == OK)
2174 ((char_u **)(gap->ga_data))[gap->ga_len++] = cp;
2175 else
2176 vim_free(cp);
2177 }
2178}
2179#endif
2180
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02002181/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002182 * Concatenate a string to a growarray which contains characters.
Bram Moolenaar43345542015-11-29 17:35:35 +01002183 * When "s" is NULL does not do anything.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002184 * Note: Does NOT copy the NUL at the end!
2185 */
2186 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002187ga_concat(garray_T *gap, char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002188{
Bram Moolenaar43345542015-11-29 17:35:35 +01002189 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002190
Bram Moolenaar478af672017-04-10 22:22:42 +02002191 if (s == NULL || *s == NUL)
Bram Moolenaar43345542015-11-29 17:35:35 +01002192 return;
2193 len = (int)STRLEN(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002194 if (ga_grow(gap, len) == OK)
2195 {
2196 mch_memmove((char *)gap->ga_data + gap->ga_len, s, (size_t)len);
2197 gap->ga_len += len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002198 }
2199}
2200
2201/*
2202 * Append one byte to a growarray which contains bytes.
2203 */
2204 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002205ga_append(garray_T *gap, int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002206{
2207 if (ga_grow(gap, 1) == OK)
2208 {
2209 *((char *)gap->ga_data + gap->ga_len) = c;
2210 ++gap->ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002211 }
2212}
2213
Bram Moolenaar597a4222014-06-25 14:39:50 +02002214#if (defined(UNIX) && !defined(USE_SYSTEM)) || defined(WIN3264) \
2215 || defined(PROTO)
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02002216/*
2217 * Append the text in "gap" below the cursor line and clear "gap".
2218 */
2219 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002220append_ga_line(garray_T *gap)
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02002221{
2222 /* Remove trailing CR. */
2223 if (gap->ga_len > 0
2224 && !curbuf->b_p_bin
2225 && ((char_u *)gap->ga_data)[gap->ga_len - 1] == CAR)
2226 --gap->ga_len;
2227 ga_append(gap, NUL);
2228 ml_append(curwin->w_cursor.lnum++, gap->ga_data, 0, FALSE);
2229 gap->ga_len = 0;
2230}
2231#endif
2232
Bram Moolenaar071d4272004-06-13 20:20:40 +00002233/************************************************************************
2234 * functions that use lookup tables for various things, generally to do with
2235 * special key codes.
2236 */
2237
2238/*
2239 * Some useful tables.
2240 */
2241
2242static struct modmasktable
2243{
2244 short mod_mask; /* Bit-mask for particular key modifier */
2245 short mod_flag; /* Bit(s) for particular key modifier */
2246 char_u name; /* Single letter name of modifier */
2247} mod_mask_table[] =
2248{
2249 {MOD_MASK_ALT, MOD_MASK_ALT, (char_u)'M'},
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002250 {MOD_MASK_META, MOD_MASK_META, (char_u)'T'},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002251 {MOD_MASK_CTRL, MOD_MASK_CTRL, (char_u)'C'},
2252 {MOD_MASK_SHIFT, MOD_MASK_SHIFT, (char_u)'S'},
2253 {MOD_MASK_MULTI_CLICK, MOD_MASK_2CLICK, (char_u)'2'},
2254 {MOD_MASK_MULTI_CLICK, MOD_MASK_3CLICK, (char_u)'3'},
2255 {MOD_MASK_MULTI_CLICK, MOD_MASK_4CLICK, (char_u)'4'},
Bram Moolenaard0573012017-10-28 21:11:06 +02002256#ifdef MACOS_X
Bram Moolenaar071d4272004-06-13 20:20:40 +00002257 {MOD_MASK_CMD, MOD_MASK_CMD, (char_u)'D'},
2258#endif
2259 /* 'A' must be the last one */
2260 {MOD_MASK_ALT, MOD_MASK_ALT, (char_u)'A'},
2261 {0, 0, NUL}
Bram Moolenaar423977d2017-01-22 15:05:12 +01002262 /* NOTE: when adding an entry, update MAX_KEY_NAME_LEN! */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002263};
2264
2265/*
2266 * Shifted key terminal codes and their unshifted equivalent.
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00002267 * Don't add mouse codes here, they are handled separately!
Bram Moolenaar071d4272004-06-13 20:20:40 +00002268 */
2269#define MOD_KEYS_ENTRY_SIZE 5
2270
2271static char_u modifier_keys_table[] =
2272{
2273/* mod mask with modifier without modifier */
2274 MOD_MASK_SHIFT, '&', '9', '@', '1', /* begin */
2275 MOD_MASK_SHIFT, '&', '0', '@', '2', /* cancel */
2276 MOD_MASK_SHIFT, '*', '1', '@', '4', /* command */
2277 MOD_MASK_SHIFT, '*', '2', '@', '5', /* copy */
2278 MOD_MASK_SHIFT, '*', '3', '@', '6', /* create */
2279 MOD_MASK_SHIFT, '*', '4', 'k', 'D', /* delete char */
2280 MOD_MASK_SHIFT, '*', '5', 'k', 'L', /* delete line */
2281 MOD_MASK_SHIFT, '*', '7', '@', '7', /* end */
2282 MOD_MASK_CTRL, KS_EXTRA, (int)KE_C_END, '@', '7', /* end */
2283 MOD_MASK_SHIFT, '*', '9', '@', '9', /* exit */
2284 MOD_MASK_SHIFT, '*', '0', '@', '0', /* find */
2285 MOD_MASK_SHIFT, '#', '1', '%', '1', /* help */
2286 MOD_MASK_SHIFT, '#', '2', 'k', 'h', /* home */
2287 MOD_MASK_CTRL, KS_EXTRA, (int)KE_C_HOME, 'k', 'h', /* home */
2288 MOD_MASK_SHIFT, '#', '3', 'k', 'I', /* insert */
2289 MOD_MASK_SHIFT, '#', '4', 'k', 'l', /* left arrow */
2290 MOD_MASK_CTRL, KS_EXTRA, (int)KE_C_LEFT, 'k', 'l', /* left arrow */
2291 MOD_MASK_SHIFT, '%', 'a', '%', '3', /* message */
2292 MOD_MASK_SHIFT, '%', 'b', '%', '4', /* move */
2293 MOD_MASK_SHIFT, '%', 'c', '%', '5', /* next */
2294 MOD_MASK_SHIFT, '%', 'd', '%', '7', /* options */
2295 MOD_MASK_SHIFT, '%', 'e', '%', '8', /* previous */
2296 MOD_MASK_SHIFT, '%', 'f', '%', '9', /* print */
2297 MOD_MASK_SHIFT, '%', 'g', '%', '0', /* redo */
2298 MOD_MASK_SHIFT, '%', 'h', '&', '3', /* replace */
2299 MOD_MASK_SHIFT, '%', 'i', 'k', 'r', /* right arr. */
2300 MOD_MASK_CTRL, KS_EXTRA, (int)KE_C_RIGHT, 'k', 'r', /* right arr. */
2301 MOD_MASK_SHIFT, '%', 'j', '&', '5', /* resume */
2302 MOD_MASK_SHIFT, '!', '1', '&', '6', /* save */
2303 MOD_MASK_SHIFT, '!', '2', '&', '7', /* suspend */
2304 MOD_MASK_SHIFT, '!', '3', '&', '8', /* undo */
2305 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_UP, 'k', 'u', /* up arrow */
2306 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_DOWN, 'k', 'd', /* down arrow */
2307
2308 /* vt100 F1 */
2309 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_XF1, KS_EXTRA, (int)KE_XF1,
2310 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_XF2, KS_EXTRA, (int)KE_XF2,
2311 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_XF3, KS_EXTRA, (int)KE_XF3,
2312 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_XF4, KS_EXTRA, (int)KE_XF4,
2313
2314 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F1, 'k', '1', /* F1 */
2315 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F2, 'k', '2',
2316 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F3, 'k', '3',
2317 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F4, 'k', '4',
2318 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F5, 'k', '5',
2319 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F6, 'k', '6',
2320 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F7, 'k', '7',
2321 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F8, 'k', '8',
2322 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F9, 'k', '9',
2323 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F10, 'k', ';', /* F10 */
2324
2325 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F11, 'F', '1',
2326 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F12, 'F', '2',
2327 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F13, 'F', '3',
2328 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F14, 'F', '4',
2329 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F15, 'F', '5',
2330 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F16, 'F', '6',
2331 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F17, 'F', '7',
2332 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F18, 'F', '8',
2333 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F19, 'F', '9',
2334 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F20, 'F', 'A',
2335
2336 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F21, 'F', 'B',
2337 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F22, 'F', 'C',
2338 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F23, 'F', 'D',
2339 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F24, 'F', 'E',
2340 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F25, 'F', 'F',
2341 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F26, 'F', 'G',
2342 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F27, 'F', 'H',
2343 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F28, 'F', 'I',
2344 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F29, 'F', 'J',
2345 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F30, 'F', 'K',
2346
2347 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F31, 'F', 'L',
2348 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F32, 'F', 'M',
2349 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F33, 'F', 'N',
2350 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F34, 'F', 'O',
2351 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F35, 'F', 'P',
2352 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F36, 'F', 'Q',
2353 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F37, 'F', 'R',
2354
2355 /* TAB pseudo code*/
2356 MOD_MASK_SHIFT, 'k', 'B', KS_EXTRA, (int)KE_TAB,
2357
2358 NUL
2359};
2360
2361static struct key_name_entry
2362{
2363 int key; /* Special key code or ascii value */
2364 char_u *name; /* Name of key */
2365} key_names_table[] =
2366{
2367 {' ', (char_u *)"Space"},
2368 {TAB, (char_u *)"Tab"},
2369 {K_TAB, (char_u *)"Tab"},
2370 {NL, (char_u *)"NL"},
2371 {NL, (char_u *)"NewLine"}, /* Alternative name */
2372 {NL, (char_u *)"LineFeed"}, /* Alternative name */
2373 {NL, (char_u *)"LF"}, /* Alternative name */
2374 {CAR, (char_u *)"CR"},
2375 {CAR, (char_u *)"Return"}, /* Alternative name */
2376 {CAR, (char_u *)"Enter"}, /* Alternative name */
2377 {K_BS, (char_u *)"BS"},
2378 {K_BS, (char_u *)"BackSpace"}, /* Alternative name */
2379 {ESC, (char_u *)"Esc"},
2380 {CSI, (char_u *)"CSI"},
2381 {K_CSI, (char_u *)"xCSI"},
2382 {'|', (char_u *)"Bar"},
2383 {'\\', (char_u *)"Bslash"},
2384 {K_DEL, (char_u *)"Del"},
2385 {K_DEL, (char_u *)"Delete"}, /* Alternative name */
2386 {K_KDEL, (char_u *)"kDel"},
2387 {K_UP, (char_u *)"Up"},
2388 {K_DOWN, (char_u *)"Down"},
2389 {K_LEFT, (char_u *)"Left"},
2390 {K_RIGHT, (char_u *)"Right"},
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002391 {K_XUP, (char_u *)"xUp"},
2392 {K_XDOWN, (char_u *)"xDown"},
2393 {K_XLEFT, (char_u *)"xLeft"},
2394 {K_XRIGHT, (char_u *)"xRight"},
Bram Moolenaarec2da362017-01-21 20:04:22 +01002395 {K_PS, (char_u *)"PasteStart"},
2396 {K_PE, (char_u *)"PasteEnd"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002397
2398 {K_F1, (char_u *)"F1"},
2399 {K_F2, (char_u *)"F2"},
2400 {K_F3, (char_u *)"F3"},
2401 {K_F4, (char_u *)"F4"},
2402 {K_F5, (char_u *)"F5"},
2403 {K_F6, (char_u *)"F6"},
2404 {K_F7, (char_u *)"F7"},
2405 {K_F8, (char_u *)"F8"},
2406 {K_F9, (char_u *)"F9"},
2407 {K_F10, (char_u *)"F10"},
2408
2409 {K_F11, (char_u *)"F11"},
2410 {K_F12, (char_u *)"F12"},
2411 {K_F13, (char_u *)"F13"},
2412 {K_F14, (char_u *)"F14"},
2413 {K_F15, (char_u *)"F15"},
2414 {K_F16, (char_u *)"F16"},
2415 {K_F17, (char_u *)"F17"},
2416 {K_F18, (char_u *)"F18"},
2417 {K_F19, (char_u *)"F19"},
2418 {K_F20, (char_u *)"F20"},
2419
2420 {K_F21, (char_u *)"F21"},
2421 {K_F22, (char_u *)"F22"},
2422 {K_F23, (char_u *)"F23"},
2423 {K_F24, (char_u *)"F24"},
2424 {K_F25, (char_u *)"F25"},
2425 {K_F26, (char_u *)"F26"},
2426 {K_F27, (char_u *)"F27"},
2427 {K_F28, (char_u *)"F28"},
2428 {K_F29, (char_u *)"F29"},
2429 {K_F30, (char_u *)"F30"},
2430
2431 {K_F31, (char_u *)"F31"},
2432 {K_F32, (char_u *)"F32"},
2433 {K_F33, (char_u *)"F33"},
2434 {K_F34, (char_u *)"F34"},
2435 {K_F35, (char_u *)"F35"},
2436 {K_F36, (char_u *)"F36"},
2437 {K_F37, (char_u *)"F37"},
2438
2439 {K_XF1, (char_u *)"xF1"},
2440 {K_XF2, (char_u *)"xF2"},
2441 {K_XF3, (char_u *)"xF3"},
2442 {K_XF4, (char_u *)"xF4"},
2443
2444 {K_HELP, (char_u *)"Help"},
2445 {K_UNDO, (char_u *)"Undo"},
2446 {K_INS, (char_u *)"Insert"},
2447 {K_INS, (char_u *)"Ins"}, /* Alternative name */
2448 {K_KINS, (char_u *)"kInsert"},
2449 {K_HOME, (char_u *)"Home"},
2450 {K_KHOME, (char_u *)"kHome"},
2451 {K_XHOME, (char_u *)"xHome"},
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002452 {K_ZHOME, (char_u *)"zHome"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002453 {K_END, (char_u *)"End"},
2454 {K_KEND, (char_u *)"kEnd"},
2455 {K_XEND, (char_u *)"xEnd"},
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002456 {K_ZEND, (char_u *)"zEnd"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002457 {K_PAGEUP, (char_u *)"PageUp"},
2458 {K_PAGEDOWN, (char_u *)"PageDown"},
2459 {K_KPAGEUP, (char_u *)"kPageUp"},
2460 {K_KPAGEDOWN, (char_u *)"kPageDown"},
2461
2462 {K_KPLUS, (char_u *)"kPlus"},
2463 {K_KMINUS, (char_u *)"kMinus"},
2464 {K_KDIVIDE, (char_u *)"kDivide"},
2465 {K_KMULTIPLY, (char_u *)"kMultiply"},
2466 {K_KENTER, (char_u *)"kEnter"},
2467 {K_KPOINT, (char_u *)"kPoint"},
2468
2469 {K_K0, (char_u *)"k0"},
2470 {K_K1, (char_u *)"k1"},
2471 {K_K2, (char_u *)"k2"},
2472 {K_K3, (char_u *)"k3"},
2473 {K_K4, (char_u *)"k4"},
2474 {K_K5, (char_u *)"k5"},
2475 {K_K6, (char_u *)"k6"},
2476 {K_K7, (char_u *)"k7"},
2477 {K_K8, (char_u *)"k8"},
2478 {K_K9, (char_u *)"k9"},
2479
2480 {'<', (char_u *)"lt"},
2481
2482 {K_MOUSE, (char_u *)"Mouse"},
Bram Moolenaar5af7d712012-01-20 17:15:51 +01002483#ifdef FEAT_MOUSE_NET
Bram Moolenaar071d4272004-06-13 20:20:40 +00002484 {K_NETTERM_MOUSE, (char_u *)"NetMouse"},
Bram Moolenaar5af7d712012-01-20 17:15:51 +01002485#endif
2486#ifdef FEAT_MOUSE_DEC
Bram Moolenaar071d4272004-06-13 20:20:40 +00002487 {K_DEC_MOUSE, (char_u *)"DecMouse"},
Bram Moolenaar5af7d712012-01-20 17:15:51 +01002488#endif
2489#ifdef FEAT_MOUSE_JSB
Bram Moolenaar071d4272004-06-13 20:20:40 +00002490 {K_JSBTERM_MOUSE, (char_u *)"JsbMouse"},
Bram Moolenaar5af7d712012-01-20 17:15:51 +01002491#endif
2492#ifdef FEAT_MOUSE_PTERM
Bram Moolenaar071d4272004-06-13 20:20:40 +00002493 {K_PTERM_MOUSE, (char_u *)"PtermMouse"},
Bram Moolenaar5af7d712012-01-20 17:15:51 +01002494#endif
2495#ifdef FEAT_MOUSE_URXVT
2496 {K_URXVT_MOUSE, (char_u *)"UrxvtMouse"},
2497#endif
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02002498#ifdef FEAT_MOUSE_SGR
2499 {K_SGR_MOUSE, (char_u *)"SgrMouse"},
Bram Moolenaara529ce02017-06-22 22:37:57 +02002500 {K_SGR_MOUSERELEASE, (char_u *)"SgrMouseRelelase"},
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02002501#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002502 {K_LEFTMOUSE, (char_u *)"LeftMouse"},
2503 {K_LEFTMOUSE_NM, (char_u *)"LeftMouseNM"},
2504 {K_LEFTDRAG, (char_u *)"LeftDrag"},
2505 {K_LEFTRELEASE, (char_u *)"LeftRelease"},
2506 {K_LEFTRELEASE_NM, (char_u *)"LeftReleaseNM"},
Bram Moolenaar51b0f372017-11-18 18:52:04 +01002507 {K_MOUSEMOVE, (char_u *)"MouseMove"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002508 {K_MIDDLEMOUSE, (char_u *)"MiddleMouse"},
2509 {K_MIDDLEDRAG, (char_u *)"MiddleDrag"},
2510 {K_MIDDLERELEASE, (char_u *)"MiddleRelease"},
2511 {K_RIGHTMOUSE, (char_u *)"RightMouse"},
2512 {K_RIGHTDRAG, (char_u *)"RightDrag"},
2513 {K_RIGHTRELEASE, (char_u *)"RightRelease"},
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02002514 {K_MOUSEDOWN, (char_u *)"ScrollWheelUp"},
2515 {K_MOUSEUP, (char_u *)"ScrollWheelDown"},
2516 {K_MOUSELEFT, (char_u *)"ScrollWheelRight"},
2517 {K_MOUSERIGHT, (char_u *)"ScrollWheelLeft"},
2518 {K_MOUSEDOWN, (char_u *)"MouseDown"}, /* OBSOLETE: Use */
2519 {K_MOUSEUP, (char_u *)"MouseUp"}, /* ScrollWheelXXX instead */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002520 {K_X1MOUSE, (char_u *)"X1Mouse"},
2521 {K_X1DRAG, (char_u *)"X1Drag"},
2522 {K_X1RELEASE, (char_u *)"X1Release"},
2523 {K_X2MOUSE, (char_u *)"X2Mouse"},
2524 {K_X2DRAG, (char_u *)"X2Drag"},
2525 {K_X2RELEASE, (char_u *)"X2Release"},
2526 {K_DROP, (char_u *)"Drop"},
2527 {K_ZERO, (char_u *)"Nul"},
2528#ifdef FEAT_EVAL
2529 {K_SNR, (char_u *)"SNR"},
2530#endif
2531 {K_PLUG, (char_u *)"Plug"},
Bram Moolenaar1db60c42014-09-23 16:49:46 +02002532 {K_CURSORHOLD, (char_u *)"CursorHold"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002533 {0, NULL}
Bram Moolenaar423977d2017-01-22 15:05:12 +01002534 /* NOTE: When adding a long name update MAX_KEY_NAME_LEN. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002535};
2536
2537#define KEY_NAMES_TABLE_LEN (sizeof(key_names_table) / sizeof(struct key_name_entry))
2538
2539#ifdef FEAT_MOUSE
2540static struct mousetable
2541{
2542 int pseudo_code; /* Code for pseudo mouse event */
2543 int button; /* Which mouse button is it? */
2544 int is_click; /* Is it a mouse button click event? */
2545 int is_drag; /* Is it a mouse drag event? */
2546} mouse_table[] =
2547{
2548 {(int)KE_LEFTMOUSE, MOUSE_LEFT, TRUE, FALSE},
2549#ifdef FEAT_GUI
2550 {(int)KE_LEFTMOUSE_NM, MOUSE_LEFT, TRUE, FALSE},
2551#endif
2552 {(int)KE_LEFTDRAG, MOUSE_LEFT, FALSE, TRUE},
2553 {(int)KE_LEFTRELEASE, MOUSE_LEFT, FALSE, FALSE},
2554#ifdef FEAT_GUI
2555 {(int)KE_LEFTRELEASE_NM, MOUSE_LEFT, FALSE, FALSE},
2556#endif
2557 {(int)KE_MIDDLEMOUSE, MOUSE_MIDDLE, TRUE, FALSE},
2558 {(int)KE_MIDDLEDRAG, MOUSE_MIDDLE, FALSE, TRUE},
2559 {(int)KE_MIDDLERELEASE, MOUSE_MIDDLE, FALSE, FALSE},
2560 {(int)KE_RIGHTMOUSE, MOUSE_RIGHT, TRUE, FALSE},
2561 {(int)KE_RIGHTDRAG, MOUSE_RIGHT, FALSE, TRUE},
2562 {(int)KE_RIGHTRELEASE, MOUSE_RIGHT, FALSE, FALSE},
2563 {(int)KE_X1MOUSE, MOUSE_X1, TRUE, FALSE},
2564 {(int)KE_X1DRAG, MOUSE_X1, FALSE, TRUE},
2565 {(int)KE_X1RELEASE, MOUSE_X1, FALSE, FALSE},
2566 {(int)KE_X2MOUSE, MOUSE_X2, TRUE, FALSE},
2567 {(int)KE_X2DRAG, MOUSE_X2, FALSE, TRUE},
2568 {(int)KE_X2RELEASE, MOUSE_X2, FALSE, FALSE},
2569 /* DRAG without CLICK */
Bram Moolenaar51b0f372017-11-18 18:52:04 +01002570 {(int)KE_MOUSEMOVE, MOUSE_RELEASE, FALSE, TRUE},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002571 /* RELEASE without CLICK */
2572 {(int)KE_IGNORE, MOUSE_RELEASE, FALSE, FALSE},
2573 {0, 0, 0, 0},
2574};
2575#endif /* FEAT_MOUSE */
2576
2577/*
2578 * Return the modifier mask bit (MOD_MASK_*) which corresponds to the given
2579 * modifier name ('S' for Shift, 'C' for Ctrl etc).
2580 */
2581 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002582name_to_mod_mask(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002583{
2584 int i;
2585
2586 c = TOUPPER_ASC(c);
2587 for (i = 0; mod_mask_table[i].mod_mask != 0; i++)
2588 if (c == mod_mask_table[i].name)
2589 return mod_mask_table[i].mod_flag;
2590 return 0;
2591}
2592
Bram Moolenaar071d4272004-06-13 20:20:40 +00002593/*
2594 * Check if if there is a special key code for "key" that includes the
2595 * modifiers specified.
2596 */
2597 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002598simplify_key(int key, int *modifiers)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002599{
2600 int i;
2601 int key0;
2602 int key1;
2603
2604 if (*modifiers & (MOD_MASK_SHIFT | MOD_MASK_CTRL | MOD_MASK_ALT))
2605 {
2606 /* TAB is a special case */
2607 if (key == TAB && (*modifiers & MOD_MASK_SHIFT))
2608 {
2609 *modifiers &= ~MOD_MASK_SHIFT;
2610 return K_S_TAB;
2611 }
2612 key0 = KEY2TERMCAP0(key);
2613 key1 = KEY2TERMCAP1(key);
2614 for (i = 0; modifier_keys_table[i] != NUL; i += MOD_KEYS_ENTRY_SIZE)
2615 if (key0 == modifier_keys_table[i + 3]
2616 && key1 == modifier_keys_table[i + 4]
2617 && (*modifiers & modifier_keys_table[i]))
2618 {
2619 *modifiers &= ~modifier_keys_table[i];
2620 return TERMCAP2KEY(modifier_keys_table[i + 1],
2621 modifier_keys_table[i + 2]);
2622 }
2623 }
2624 return key;
2625}
2626
2627/*
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002628 * Change <xHome> to <Home>, <xUp> to <Up>, etc.
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002629 */
2630 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002631handle_x_keys(int key)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002632{
2633 switch (key)
2634 {
2635 case K_XUP: return K_UP;
2636 case K_XDOWN: return K_DOWN;
2637 case K_XLEFT: return K_LEFT;
2638 case K_XRIGHT: return K_RIGHT;
2639 case K_XHOME: return K_HOME;
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002640 case K_ZHOME: return K_HOME;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002641 case K_XEND: return K_END;
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002642 case K_ZEND: return K_END;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002643 case K_XF1: return K_F1;
2644 case K_XF2: return K_F2;
2645 case K_XF3: return K_F3;
2646 case K_XF4: return K_F4;
2647 case K_S_XF1: return K_S_F1;
2648 case K_S_XF2: return K_S_F2;
2649 case K_S_XF3: return K_S_F3;
2650 case K_S_XF4: return K_S_F4;
2651 }
2652 return key;
2653}
2654
2655/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002656 * Return a string which contains the name of the given key when the given
2657 * modifiers are down.
2658 */
2659 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01002660get_special_key_name(int c, int modifiers)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002661{
2662 static char_u string[MAX_KEY_NAME_LEN + 1];
2663
2664 int i, idx;
2665 int table_idx;
2666 char_u *s;
2667
2668 string[0] = '<';
2669 idx = 1;
2670
2671 /* Key that stands for a normal character. */
2672 if (IS_SPECIAL(c) && KEY2TERMCAP0(c) == KS_KEY)
2673 c = KEY2TERMCAP1(c);
2674
2675 /*
2676 * Translate shifted special keys into unshifted keys and set modifier.
2677 * Same for CTRL and ALT modifiers.
2678 */
2679 if (IS_SPECIAL(c))
2680 {
2681 for (i = 0; modifier_keys_table[i] != 0; i += MOD_KEYS_ENTRY_SIZE)
2682 if ( KEY2TERMCAP0(c) == (int)modifier_keys_table[i + 1]
2683 && (int)KEY2TERMCAP1(c) == (int)modifier_keys_table[i + 2])
2684 {
2685 modifiers |= modifier_keys_table[i];
2686 c = TERMCAP2KEY(modifier_keys_table[i + 3],
2687 modifier_keys_table[i + 4]);
2688 break;
2689 }
2690 }
2691
2692 /* try to find the key in the special key table */
2693 table_idx = find_special_key_in_table(c);
2694
2695 /*
2696 * When not a known special key, and not a printable character, try to
2697 * extract modifiers.
2698 */
2699 if (c > 0
2700#ifdef FEAT_MBYTE
2701 && (*mb_char2len)(c) == 1
2702#endif
2703 )
2704 {
2705 if (table_idx < 0
2706 && (!vim_isprintc(c) || (c & 0x7f) == ' ')
2707 && (c & 0x80))
2708 {
2709 c &= 0x7f;
2710 modifiers |= MOD_MASK_ALT;
2711 /* try again, to find the un-alted key in the special key table */
2712 table_idx = find_special_key_in_table(c);
2713 }
2714 if (table_idx < 0 && !vim_isprintc(c) && c < ' ')
2715 {
2716#ifdef EBCDIC
2717 c = CtrlChar(c);
2718#else
2719 c += '@';
2720#endif
2721 modifiers |= MOD_MASK_CTRL;
2722 }
2723 }
2724
2725 /* translate the modifier into a string */
2726 for (i = 0; mod_mask_table[i].name != 'A'; i++)
2727 if ((modifiers & mod_mask_table[i].mod_mask)
2728 == mod_mask_table[i].mod_flag)
2729 {
2730 string[idx++] = mod_mask_table[i].name;
2731 string[idx++] = (char_u)'-';
2732 }
2733
2734 if (table_idx < 0) /* unknown special key, may output t_xx */
2735 {
2736 if (IS_SPECIAL(c))
2737 {
2738 string[idx++] = 't';
2739 string[idx++] = '_';
2740 string[idx++] = KEY2TERMCAP0(c);
2741 string[idx++] = KEY2TERMCAP1(c);
2742 }
2743 /* Not a special key, only modifiers, output directly */
2744 else
2745 {
2746#ifdef FEAT_MBYTE
2747 if (has_mbyte && (*mb_char2len)(c) > 1)
2748 idx += (*mb_char2bytes)(c, string + idx);
2749 else
2750#endif
2751 if (vim_isprintc(c))
2752 string[idx++] = c;
2753 else
2754 {
2755 s = transchar(c);
2756 while (*s)
2757 string[idx++] = *s++;
2758 }
2759 }
2760 }
2761 else /* use name of special key */
2762 {
Bram Moolenaar423977d2017-01-22 15:05:12 +01002763 size_t len = STRLEN(key_names_table[table_idx].name);
2764
2765 if (len + idx + 2 <= MAX_KEY_NAME_LEN)
2766 {
2767 STRCPY(string + idx, key_names_table[table_idx].name);
2768 idx += (int)len;
2769 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002770 }
2771 string[idx++] = '>';
2772 string[idx] = NUL;
2773 return string;
2774}
2775
2776/*
2777 * Try translating a <> name at (*srcp)[] to dst[].
2778 * Return the number of characters added to dst[], zero for no match.
2779 * If there is a match, srcp is advanced to after the <> name.
2780 * dst[] must be big enough to hold the result (up to six characters)!
2781 */
2782 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002783trans_special(
2784 char_u **srcp,
2785 char_u *dst,
Bram Moolenaar35a4cfa2016-08-14 16:07:48 +02002786 int keycode, /* prefer key code, e.g. K_DEL instead of DEL */
2787 int in_string) /* TRUE when inside a double quoted string */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002788{
2789 int modifiers = 0;
2790 int key;
2791 int dlen = 0;
2792
Bram Moolenaar35a4cfa2016-08-14 16:07:48 +02002793 key = find_special_key(srcp, &modifiers, keycode, FALSE, in_string);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002794 if (key == 0)
2795 return 0;
2796
2797 /* Put the appropriate modifier in a string */
2798 if (modifiers != 0)
2799 {
2800 dst[dlen++] = K_SPECIAL;
2801 dst[dlen++] = KS_MODIFIER;
2802 dst[dlen++] = modifiers;
2803 }
2804
2805 if (IS_SPECIAL(key))
2806 {
2807 dst[dlen++] = K_SPECIAL;
2808 dst[dlen++] = KEY2TERMCAP0(key);
2809 dst[dlen++] = KEY2TERMCAP1(key);
2810 }
2811#ifdef FEAT_MBYTE
2812 else if (has_mbyte && !keycode)
2813 dlen += (*mb_char2bytes)(key, dst + dlen);
2814#endif
2815 else if (keycode)
2816 dlen = (int)(add_char2buf(key, dst + dlen) - dst);
2817 else
2818 dst[dlen++] = key;
2819
2820 return dlen;
2821}
2822
2823/*
2824 * Try translating a <> name at (*srcp)[], return the key and modifiers.
2825 * srcp is advanced to after the <> name.
2826 * returns 0 if there is no match.
2827 */
2828 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002829find_special_key(
2830 char_u **srcp,
2831 int *modp,
2832 int keycode, /* prefer key code, e.g. K_DEL instead of DEL */
Bram Moolenaar35a4cfa2016-08-14 16:07:48 +02002833 int keep_x_key, /* don't translate xHome to Home key */
2834 int in_string) /* TRUE in string, double quote is escaped */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002835{
2836 char_u *last_dash;
2837 char_u *end_of_name;
2838 char_u *src;
2839 char_u *bp;
2840 int modifiers;
2841 int bit;
2842 int key;
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02002843 uvarnumber_T n;
Bram Moolenaarb8bf5412011-08-17 20:33:22 +02002844 int l;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002845
2846 src = *srcp;
2847 if (src[0] != '<')
2848 return 0;
2849
2850 /* Find end of modifier list */
2851 last_dash = src;
2852 for (bp = src + 1; *bp == '-' || vim_isIDc(*bp); bp++)
2853 {
2854 if (*bp == '-')
2855 {
2856 last_dash = bp;
Bram Moolenaarb8bf5412011-08-17 20:33:22 +02002857 if (bp[1] != NUL)
2858 {
2859#ifdef FEAT_MBYTE
2860 if (has_mbyte)
2861 l = mb_ptr2len(bp + 1);
2862 else
2863#endif
2864 l = 1;
Bram Moolenaar35a4cfa2016-08-14 16:07:48 +02002865 /* Anything accepted, like <C-?>.
2866 * <C-"> or <M-"> are not special in strings as " is
2867 * the string delimiter. With a backslash it works: <M-\"> */
2868 if (!(in_string && bp[1] == '"') && bp[2] == '>')
Bram Moolenaar1d90a5a2016-07-01 11:59:47 +02002869 bp += l;
Bram Moolenaar35a4cfa2016-08-14 16:07:48 +02002870 else if (in_string && bp[1] == '\\' && bp[2] == '"'
2871 && bp[3] == '>')
2872 bp += 2;
Bram Moolenaarb8bf5412011-08-17 20:33:22 +02002873 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002874 }
2875 if (bp[0] == 't' && bp[1] == '_' && bp[2] && bp[3])
2876 bp += 3; /* skip t_xx, xx may be '-' or '>' */
Bram Moolenaar792826c2011-08-19 22:29:02 +02002877 else if (STRNICMP(bp, "char-", 5) == 0)
2878 {
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01002879 vim_str2nr(bp + 5, NULL, &l, STR2NR_ALL, NULL, NULL, 0);
Bram Moolenaar792826c2011-08-19 22:29:02 +02002880 bp += l + 5;
2881 break;
2882 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002883 }
2884
2885 if (*bp == '>') /* found matching '>' */
2886 {
2887 end_of_name = bp + 1;
2888
Bram Moolenaar071d4272004-06-13 20:20:40 +00002889 /* Which modifiers are given? */
2890 modifiers = 0x0;
2891 for (bp = src + 1; bp < last_dash; bp++)
2892 {
2893 if (*bp != '-')
2894 {
2895 bit = name_to_mod_mask(*bp);
2896 if (bit == 0x0)
2897 break; /* Illegal modifier name */
2898 modifiers |= bit;
2899 }
2900 }
2901
2902 /*
2903 * Legal modifier name.
2904 */
2905 if (bp >= last_dash)
2906 {
Bram Moolenaarb8bf5412011-08-17 20:33:22 +02002907 if (STRNICMP(last_dash + 1, "char-", 5) == 0
2908 && VIM_ISDIGIT(last_dash[6]))
2909 {
2910 /* <Char-123> or <Char-033> or <Char-0x33> */
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01002911 vim_str2nr(last_dash + 6, NULL, NULL, STR2NR_ALL, NULL, &n, 0);
Bram Moolenaar792826c2011-08-19 22:29:02 +02002912 key = (int)n;
Bram Moolenaarb8bf5412011-08-17 20:33:22 +02002913 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002914 else
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002915 {
Bram Moolenaar35a4cfa2016-08-14 16:07:48 +02002916 int off = 1;
2917
2918 /* Modifier with single letter, or special key name. */
2919 if (in_string && last_dash[1] == '\\' && last_dash[2] == '"')
2920 off = 2;
Bram Moolenaar792826c2011-08-19 22:29:02 +02002921#ifdef FEAT_MBYTE
2922 if (has_mbyte)
Bram Moolenaar35a4cfa2016-08-14 16:07:48 +02002923 l = mb_ptr2len(last_dash + off);
Bram Moolenaar792826c2011-08-19 22:29:02 +02002924 else
2925#endif
2926 l = 1;
Bram Moolenaar35a4cfa2016-08-14 16:07:48 +02002927 if (modifiers != 0 && last_dash[l + off] == '>')
2928 key = PTR2CHAR(last_dash + off);
Bram Moolenaar792826c2011-08-19 22:29:02 +02002929 else
2930 {
Bram Moolenaar35a4cfa2016-08-14 16:07:48 +02002931 key = get_special_key_code(last_dash + off);
Bram Moolenaar792826c2011-08-19 22:29:02 +02002932 if (!keep_x_key)
2933 key = handle_x_keys(key);
2934 }
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002935 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002936
2937 /*
2938 * get_special_key_code() may return NUL for invalid
2939 * special key name.
2940 */
2941 if (key != NUL)
2942 {
2943 /*
2944 * Only use a modifier when there is no special key code that
2945 * includes the modifier.
2946 */
2947 key = simplify_key(key, &modifiers);
2948
2949 if (!keycode)
2950 {
2951 /* don't want keycode, use single byte code */
2952 if (key == K_BS)
2953 key = BS;
2954 else if (key == K_DEL || key == K_KDEL)
2955 key = DEL;
2956 }
2957
2958 /*
2959 * Normal Key with modifier: Try to make a single byte code.
2960 */
2961 if (!IS_SPECIAL(key))
2962 key = extract_modifiers(key, &modifiers);
2963
2964 *modp = modifiers;
2965 *srcp = end_of_name;
2966 return key;
2967 }
2968 }
2969 }
2970 return 0;
2971}
2972
2973/*
2974 * Try to include modifiers in the key.
2975 * Changes "Shift-a" to 'A', "Alt-A" to 0xc0, etc.
2976 */
2977 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002978extract_modifiers(int key, int *modp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002979{
2980 int modifiers = *modp;
2981
Bram Moolenaard0573012017-10-28 21:11:06 +02002982#ifdef MACOS_X
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02002983 /* Command-key really special, no fancynest */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002984 if (!(modifiers & MOD_MASK_CMD))
2985#endif
2986 if ((modifiers & MOD_MASK_SHIFT) && ASCII_ISALPHA(key))
2987 {
2988 key = TOUPPER_ASC(key);
2989 modifiers &= ~MOD_MASK_SHIFT;
2990 }
2991 if ((modifiers & MOD_MASK_CTRL)
2992#ifdef EBCDIC
2993 /* * TODO: EBCDIC Better use:
2994 * && (Ctrl_chr(key) || key == '?')
2995 * ??? */
2996 && strchr("?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_", key)
2997 != NULL
2998#else
2999 && ((key >= '?' && key <= '_') || ASCII_ISALPHA(key))
3000#endif
3001 )
3002 {
3003 key = Ctrl_chr(key);
3004 modifiers &= ~MOD_MASK_CTRL;
3005 /* <C-@> is <Nul> */
3006 if (key == 0)
3007 key = K_ZERO;
3008 }
Bram Moolenaard0573012017-10-28 21:11:06 +02003009#ifdef MACOS_X
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02003010 /* Command-key really special, no fancynest */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003011 if (!(modifiers & MOD_MASK_CMD))
3012#endif
3013 if ((modifiers & MOD_MASK_ALT) && key < 0x80
3014#ifdef FEAT_MBYTE
3015 && !enc_dbcs /* avoid creating a lead byte */
3016#endif
3017 )
3018 {
3019 key |= 0x80;
3020 modifiers &= ~MOD_MASK_ALT; /* remove the META modifier */
3021 }
3022
3023 *modp = modifiers;
3024 return key;
3025}
3026
3027/*
3028 * Try to find key "c" in the special key table.
3029 * Return the index when found, -1 when not found.
3030 */
3031 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003032find_special_key_in_table(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003033{
3034 int i;
3035
3036 for (i = 0; key_names_table[i].name != NULL; i++)
3037 if (c == key_names_table[i].key)
3038 break;
3039 if (key_names_table[i].name == NULL)
3040 i = -1;
3041 return i;
3042}
3043
3044/*
3045 * Find the special key with the given name (the given string does not have to
3046 * end with NUL, the name is assumed to end before the first non-idchar).
3047 * If the name starts with "t_" the next two characters are interpreted as a
3048 * termcap name.
3049 * Return the key code, or 0 if not found.
3050 */
3051 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003052get_special_key_code(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003053{
3054 char_u *table_name;
3055 char_u string[3];
3056 int i, j;
3057
3058 /*
3059 * If it's <t_xx> we get the code for xx from the termcap
3060 */
3061 if (name[0] == 't' && name[1] == '_' && name[2] != NUL && name[3] != NUL)
3062 {
3063 string[0] = name[2];
3064 string[1] = name[3];
3065 string[2] = NUL;
3066 if (add_termcap_entry(string, FALSE) == OK)
3067 return TERMCAP2KEY(name[2], name[3]);
3068 }
3069 else
3070 for (i = 0; key_names_table[i].name != NULL; i++)
3071 {
3072 table_name = key_names_table[i].name;
3073 for (j = 0; vim_isIDc(name[j]) && table_name[j] != NUL; j++)
3074 if (TOLOWER_ASC(table_name[j]) != TOLOWER_ASC(name[j]))
3075 break;
3076 if (!vim_isIDc(name[j]) && table_name[j] == NUL)
3077 return key_names_table[i].key;
3078 }
3079 return 0;
3080}
3081
Bram Moolenaar05bb9532008-07-04 09:44:11 +00003082#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003083 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01003084get_key_name(int i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003085{
Bram Moolenaare1fbddc2009-05-16 19:07:03 +00003086 if (i >= (int)KEY_NAMES_TABLE_LEN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003087 return NULL;
3088 return key_names_table[i].name;
3089}
3090#endif
3091
Bram Moolenaar05bb9532008-07-04 09:44:11 +00003092#if defined(FEAT_MOUSE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003093/*
3094 * Look up the given mouse code to return the relevant information in the other
3095 * arguments. Return which button is down or was released.
3096 */
3097 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003098get_mouse_button(int code, int *is_click, int *is_drag)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003099{
3100 int i;
3101
3102 for (i = 0; mouse_table[i].pseudo_code; i++)
3103 if (code == mouse_table[i].pseudo_code)
3104 {
3105 *is_click = mouse_table[i].is_click;
3106 *is_drag = mouse_table[i].is_drag;
3107 return mouse_table[i].button;
3108 }
3109 return 0; /* Shouldn't get here */
3110}
3111
3112/*
3113 * Return the appropriate pseudo mouse event token (KE_LEFTMOUSE etc) based on
3114 * the given information about which mouse button is down, and whether the
3115 * mouse was clicked, dragged or released.
3116 */
3117 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003118get_pseudo_mouse_code(
3119 int button, /* eg MOUSE_LEFT */
3120 int is_click,
3121 int is_drag)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003122{
3123 int i;
3124
3125 for (i = 0; mouse_table[i].pseudo_code; i++)
3126 if (button == mouse_table[i].button
3127 && is_click == mouse_table[i].is_click
3128 && is_drag == mouse_table[i].is_drag)
3129 {
3130#ifdef FEAT_GUI
Bram Moolenaarc91506a2005-04-24 22:04:21 +00003131 /* Trick: a non mappable left click and release has mouse_col -1
3132 * or added MOUSE_COLOFF. Used for 'mousefocus' in
3133 * gui_mouse_moved() */
3134 if (mouse_col < 0 || mouse_col > MOUSE_COLOFF)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003135 {
Bram Moolenaarc91506a2005-04-24 22:04:21 +00003136 if (mouse_col < 0)
3137 mouse_col = 0;
3138 else
3139 mouse_col -= MOUSE_COLOFF;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003140 if (mouse_table[i].pseudo_code == (int)KE_LEFTMOUSE)
3141 return (int)KE_LEFTMOUSE_NM;
3142 if (mouse_table[i].pseudo_code == (int)KE_LEFTRELEASE)
3143 return (int)KE_LEFTRELEASE_NM;
3144 }
3145#endif
3146 return mouse_table[i].pseudo_code;
3147 }
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00003148 return (int)KE_IGNORE; /* not recognized, ignore it */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003149}
3150#endif /* FEAT_MOUSE */
3151
3152/*
3153 * Return the current end-of-line type: EOL_DOS, EOL_UNIX or EOL_MAC.
3154 */
3155 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003156get_fileformat(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003157{
3158 int c = *buf->b_p_ff;
3159
3160 if (buf->b_p_bin || c == 'u')
3161 return EOL_UNIX;
3162 if (c == 'm')
3163 return EOL_MAC;
3164 return EOL_DOS;
3165}
3166
3167/*
3168 * Like get_fileformat(), but override 'fileformat' with "p" for "++opt=val"
3169 * argument.
3170 */
3171 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003172get_fileformat_force(
3173 buf_T *buf,
3174 exarg_T *eap) /* can be NULL! */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003175{
3176 int c;
3177
3178 if (eap != NULL && eap->force_ff != 0)
3179 c = eap->cmd[eap->force_ff];
3180 else
3181 {
3182 if ((eap != NULL && eap->force_bin != 0)
3183 ? (eap->force_bin == FORCE_BIN) : buf->b_p_bin)
3184 return EOL_UNIX;
3185 c = *buf->b_p_ff;
3186 }
3187 if (c == 'u')
3188 return EOL_UNIX;
3189 if (c == 'm')
3190 return EOL_MAC;
3191 return EOL_DOS;
3192}
3193
3194/*
3195 * Set the current end-of-line type to EOL_DOS, EOL_UNIX or EOL_MAC.
3196 * Sets both 'textmode' and 'fileformat'.
3197 * Note: Does _not_ set global value of 'textmode'!
3198 */
3199 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003200set_fileformat(
3201 int t,
3202 int opt_flags) /* OPT_LOCAL and/or OPT_GLOBAL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003203{
3204 char *p = NULL;
3205
3206 switch (t)
3207 {
3208 case EOL_DOS:
3209 p = FF_DOS;
3210 curbuf->b_p_tx = TRUE;
3211 break;
3212 case EOL_UNIX:
3213 p = FF_UNIX;
3214 curbuf->b_p_tx = FALSE;
3215 break;
3216 case EOL_MAC:
3217 p = FF_MAC;
3218 curbuf->b_p_tx = FALSE;
3219 break;
3220 }
3221 if (p != NULL)
3222 set_string_option_direct((char_u *)"ff", -1, (char_u *)p,
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00003223 OPT_FREE | opt_flags, 0);
3224
Bram Moolenaarf740b292006-02-16 22:11:02 +00003225 /* This may cause the buffer to become (un)modified. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003226 check_status(curbuf);
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00003227 redraw_tabline = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003228#ifdef FEAT_TITLE
3229 need_maketitle = TRUE; /* set window title later */
3230#endif
3231}
3232
3233/*
3234 * Return the default fileformat from 'fileformats'.
3235 */
3236 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003237default_fileformat(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003238{
3239 switch (*p_ffs)
3240 {
3241 case 'm': return EOL_MAC;
3242 case 'd': return EOL_DOS;
3243 }
3244 return EOL_UNIX;
3245}
3246
3247/*
3248 * Call shell. Calls mch_call_shell, with 'shellxquote' added.
3249 */
3250 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003251call_shell(char_u *cmd, int opt)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003252{
3253 char_u *ncmd;
3254 int retval;
Bram Moolenaar05159a02005-02-26 23:04:13 +00003255#ifdef FEAT_PROFILE
3256 proftime_T wait_time;
3257#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003258
3259 if (p_verbose > 3)
3260 {
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00003261 verbose_enter();
Bram Moolenaar051b7822005-05-19 21:00:46 +00003262 smsg((char_u *)_("Calling shell to execute: \"%s\""),
Bram Moolenaar071d4272004-06-13 20:20:40 +00003263 cmd == NULL ? p_sh : cmd);
3264 out_char('\n');
3265 cursor_on();
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00003266 verbose_leave();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003267 }
3268
Bram Moolenaar05159a02005-02-26 23:04:13 +00003269#ifdef FEAT_PROFILE
Bram Moolenaar01265852006-03-20 21:50:15 +00003270 if (do_profiling == PROF_YES)
Bram Moolenaar05159a02005-02-26 23:04:13 +00003271 prof_child_enter(&wait_time);
3272#endif
3273
Bram Moolenaar071d4272004-06-13 20:20:40 +00003274 if (*p_sh == NUL)
3275 {
3276 EMSG(_(e_shellempty));
3277 retval = -1;
3278 }
3279 else
3280 {
3281#ifdef FEAT_GUI_MSWIN
3282 /* Don't hide the pointer while executing a shell command. */
3283 gui_mch_mousehide(FALSE);
3284#endif
3285#ifdef FEAT_GUI
3286 ++hold_gui_events;
3287#endif
3288 /* The external command may update a tags file, clear cached tags. */
3289 tag_freematch();
3290
3291 if (cmd == NULL || *p_sxq == NUL)
3292 retval = mch_call_shell(cmd, opt);
3293 else
3294 {
Bram Moolenaarf66b3fc2012-02-20 22:18:30 +01003295 char_u *ecmd = cmd;
3296
3297 if (*p_sxe != NUL && STRCMP(p_sxq, "(") == 0)
3298 {
3299 ecmd = vim_strsave_escaped_ext(cmd, p_sxe, '^', FALSE);
3300 if (ecmd == NULL)
3301 ecmd = cmd;
3302 }
3303 ncmd = alloc((unsigned)(STRLEN(ecmd) + STRLEN(p_sxq) * 2 + 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003304 if (ncmd != NULL)
3305 {
3306 STRCPY(ncmd, p_sxq);
Bram Moolenaarf66b3fc2012-02-20 22:18:30 +01003307 STRCAT(ncmd, ecmd);
Bram Moolenaar034b1152012-02-19 18:19:30 +01003308 /* When 'shellxquote' is ( append ).
3309 * When 'shellxquote' is "( append )". */
3310 STRCAT(ncmd, STRCMP(p_sxq, "(") == 0 ? (char_u *)")"
3311 : STRCMP(p_sxq, "\"(") == 0 ? (char_u *)")\""
3312 : p_sxq);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003313 retval = mch_call_shell(ncmd, opt);
3314 vim_free(ncmd);
3315 }
3316 else
3317 retval = -1;
Bram Moolenaarf66b3fc2012-02-20 22:18:30 +01003318 if (ecmd != cmd)
3319 vim_free(ecmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003320 }
3321#ifdef FEAT_GUI
3322 --hold_gui_events;
3323#endif
3324 /*
3325 * Check the window size, in case it changed while executing the
3326 * external command.
3327 */
3328 shell_resized_check();
3329 }
3330
3331#ifdef FEAT_EVAL
3332 set_vim_var_nr(VV_SHELL_ERROR, (long)retval);
Bram Moolenaar05159a02005-02-26 23:04:13 +00003333# ifdef FEAT_PROFILE
Bram Moolenaar01265852006-03-20 21:50:15 +00003334 if (do_profiling == PROF_YES)
Bram Moolenaar05159a02005-02-26 23:04:13 +00003335 prof_child_exit(&wait_time);
3336# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003337#endif
3338
3339 return retval;
3340}
3341
3342/*
Bram Moolenaar01265852006-03-20 21:50:15 +00003343 * VISUAL, SELECTMODE and OP_PENDING State are never set, they are equal to
3344 * NORMAL State with a condition. This function returns the real State.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003345 */
3346 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003347get_real_state(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003348{
3349 if (State & NORMAL)
3350 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003351 if (VIsual_active)
Bram Moolenaar01265852006-03-20 21:50:15 +00003352 {
3353 if (VIsual_select)
3354 return SELECTMODE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003355 return VISUAL;
Bram Moolenaar01265852006-03-20 21:50:15 +00003356 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01003357 else if (finish_op)
3358 return OP_PENDING;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003359 }
3360 return State;
3361}
3362
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003363#if defined(FEAT_MBYTE) || defined(PROTO)
3364/*
3365 * Return TRUE if "p" points to just after a path separator.
Bram Moolenaarb5ce04d2011-07-07 17:15:33 +02003366 * Takes care of multi-byte characters.
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003367 * "b" must point to the start of the file name
3368 */
3369 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003370after_pathsep(char_u *b, char_u *p)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003371{
Bram Moolenaarb5ce04d2011-07-07 17:15:33 +02003372 return p > b && vim_ispathsep(p[-1])
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003373 && (!has_mbyte || (*mb_head_off)(b, p - 1) == 0);
3374}
3375#endif
3376
3377/*
3378 * Return TRUE if file names "f1" and "f2" are in the same directory.
3379 * "f1" may be a short name, "f2" must be a full path.
3380 */
3381 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003382same_directory(char_u *f1, char_u *f2)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003383{
3384 char_u ffname[MAXPATHL];
3385 char_u *t1;
3386 char_u *t2;
3387
3388 /* safety check */
3389 if (f1 == NULL || f2 == NULL)
3390 return FALSE;
3391
3392 (void)vim_FullName(f1, ffname, MAXPATHL, FALSE);
3393 t1 = gettail_sep(ffname);
3394 t2 = gettail_sep(f2);
3395 return (t1 - ffname == t2 - f2
3396 && pathcmp((char *)ffname, (char *)f2, (int)(t1 - ffname)) == 0);
3397}
3398
Bram Moolenaar071d4272004-06-13 20:20:40 +00003399#if defined(FEAT_SESSION) || defined(MSWIN) || defined(FEAT_GUI_MAC) \
Bram Moolenaar4033c552017-09-16 20:54:51 +02003400 || defined(FEAT_GUI_GTK) \
Bram Moolenaar071d4272004-06-13 20:20:40 +00003401 || defined(FEAT_SUN_WORKSHOP) || defined(FEAT_NETBEANS_INTG) \
3402 || defined(PROTO)
3403/*
3404 * Change to a file's directory.
3405 * Caller must call shorten_fnames()!
3406 * Return OK or FAIL.
3407 */
3408 int
Bram Moolenaarb5cb65b2018-02-03 18:01:37 +01003409vim_chdirfile(char_u *fname, char *trigger_autocmd UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003410{
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003411 char_u dir[MAXPATHL];
Bram Moolenaarb5cb65b2018-02-03 18:01:37 +01003412 int res;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003413
Bram Moolenaarbbebc852005-07-18 21:47:53 +00003414 vim_strncpy(dir, fname, MAXPATHL - 1);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003415 *gettail_sep(dir) = NUL;
Bram Moolenaarb5cb65b2018-02-03 18:01:37 +01003416 res = mch_chdir((char *)dir) == 0 ? OK : FAIL;
3417#ifdef FEAT_AUTOCMD
3418 if (res == OK && trigger_autocmd != NULL)
3419 apply_autocmds(EVENT_DIRCHANGED, (char_u *)trigger_autocmd,
3420 dir, FALSE, curbuf);
3421#endif
3422 return res;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003423}
3424#endif
3425
3426#if defined(STAT_IGNORES_SLASH) || defined(PROTO)
3427/*
3428 * Check if "name" ends in a slash and is not a directory.
3429 * Used for systems where stat() ignores a trailing slash on a file name.
3430 * The Vim code assumes a trailing slash is only ignored for a directory.
3431 */
Bram Moolenaar91acfff2017-03-12 19:22:36 +01003432 static int
Bram Moolenaard8492792017-03-16 12:22:38 +01003433illegal_slash(const char *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003434{
3435 if (name[0] == NUL)
3436 return FALSE; /* no file name is not illegal */
3437 if (name[strlen(name) - 1] != '/')
3438 return FALSE; /* no trailing slash */
3439 if (mch_isdir((char_u *)name))
3440 return FALSE; /* trailing slash for a directory */
3441 return TRUE;
3442}
Bram Moolenaar91acfff2017-03-12 19:22:36 +01003443
3444/*
3445 * Special implementation of mch_stat() for Solaris.
3446 */
3447 int
3448vim_stat(const char *name, stat_T *stp)
3449{
3450 /* On Solaris stat() accepts "file/" as if it was "file". Return -1 if
3451 * the name ends in "/" and it's not a directory. */
Bram Moolenaard8492792017-03-16 12:22:38 +01003452 return illegal_slash(name) ? -1 : stat(name, stp);
Bram Moolenaar91acfff2017-03-12 19:22:36 +01003453}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003454#endif
3455
3456#if defined(CURSOR_SHAPE) || defined(PROTO)
3457
3458/*
3459 * Handling of cursor and mouse pointer shapes in various modes.
3460 */
3461
3462cursorentry_T shape_table[SHAPE_IDX_COUNT] =
3463{
3464 /* The values will be filled in from the 'guicursor' and 'mouseshape'
3465 * defaults when Vim starts.
3466 * Adjust the SHAPE_IDX_ defines when making changes! */
3467 {0, 0, 0, 700L, 400L, 250L, 0, 0, "n", SHAPE_CURSOR+SHAPE_MOUSE},
3468 {0, 0, 0, 700L, 400L, 250L, 0, 0, "v", SHAPE_CURSOR+SHAPE_MOUSE},
3469 {0, 0, 0, 700L, 400L, 250L, 0, 0, "i", SHAPE_CURSOR+SHAPE_MOUSE},
3470 {0, 0, 0, 700L, 400L, 250L, 0, 0, "r", SHAPE_CURSOR+SHAPE_MOUSE},
3471 {0, 0, 0, 700L, 400L, 250L, 0, 0, "c", SHAPE_CURSOR+SHAPE_MOUSE},
3472 {0, 0, 0, 700L, 400L, 250L, 0, 0, "ci", SHAPE_CURSOR+SHAPE_MOUSE},
3473 {0, 0, 0, 700L, 400L, 250L, 0, 0, "cr", SHAPE_CURSOR+SHAPE_MOUSE},
3474 {0, 0, 0, 700L, 400L, 250L, 0, 0, "o", SHAPE_CURSOR+SHAPE_MOUSE},
3475 {0, 0, 0, 700L, 400L, 250L, 0, 0, "ve", SHAPE_CURSOR+SHAPE_MOUSE},
3476 {0, 0, 0, 0L, 0L, 0L, 0, 0, "e", SHAPE_MOUSE},
3477 {0, 0, 0, 0L, 0L, 0L, 0, 0, "s", SHAPE_MOUSE},
3478 {0, 0, 0, 0L, 0L, 0L, 0, 0, "sd", SHAPE_MOUSE},
3479 {0, 0, 0, 0L, 0L, 0L, 0, 0, "vs", SHAPE_MOUSE},
3480 {0, 0, 0, 0L, 0L, 0L, 0, 0, "vd", SHAPE_MOUSE},
3481 {0, 0, 0, 0L, 0L, 0L, 0, 0, "m", SHAPE_MOUSE},
3482 {0, 0, 0, 0L, 0L, 0L, 0, 0, "ml", SHAPE_MOUSE},
3483 {0, 0, 0, 100L, 100L, 100L, 0, 0, "sm", SHAPE_CURSOR},
3484};
3485
3486#ifdef FEAT_MOUSESHAPE
3487/*
3488 * Table with names for mouse shapes. Keep in sync with all the tables for
3489 * mch_set_mouse_shape()!.
3490 */
3491static char * mshape_names[] =
3492{
3493 "arrow", /* default, must be the first one */
3494 "blank", /* hidden */
3495 "beam",
3496 "updown",
3497 "udsizing",
3498 "leftright",
3499 "lrsizing",
3500 "busy",
3501 "no",
3502 "crosshair",
3503 "hand1",
3504 "hand2",
3505 "pencil",
3506 "question",
3507 "rightup-arrow",
3508 "up-arrow",
3509 NULL
3510};
3511#endif
3512
3513/*
3514 * Parse the 'guicursor' option ("what" is SHAPE_CURSOR) or 'mouseshape'
3515 * ("what" is SHAPE_MOUSE).
3516 * Returns error message for an illegal option, NULL otherwise.
3517 */
3518 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01003519parse_shape_opt(int what)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003520{
3521 char_u *modep;
3522 char_u *colonp;
3523 char_u *commap;
3524 char_u *slashp;
3525 char_u *p, *endp;
3526 int idx = 0; /* init for GCC */
3527 int all_idx;
3528 int len;
3529 int i;
3530 long n;
3531 int found_ve = FALSE; /* found "ve" flag */
3532 int round;
3533
3534 /*
3535 * First round: check for errors; second round: do it for real.
3536 */
3537 for (round = 1; round <= 2; ++round)
3538 {
3539 /*
3540 * Repeat for all comma separated parts.
3541 */
3542#ifdef FEAT_MOUSESHAPE
3543 if (what == SHAPE_MOUSE)
3544 modep = p_mouseshape;
3545 else
3546#endif
3547 modep = p_guicursor;
3548 while (*modep != NUL)
3549 {
3550 colonp = vim_strchr(modep, ':');
Bram Moolenaar24922ec2017-02-23 17:59:22 +01003551 commap = vim_strchr(modep, ',');
3552
3553 if (colonp == NULL || (commap != NULL && commap < colonp))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003554 return (char_u *)N_("E545: Missing colon");
3555 if (colonp == modep)
3556 return (char_u *)N_("E546: Illegal mode");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003557
3558 /*
3559 * Repeat for all mode's before the colon.
3560 * For the 'a' mode, we loop to handle all the modes.
3561 */
3562 all_idx = -1;
3563 while (modep < colonp || all_idx >= 0)
3564 {
3565 if (all_idx < 0)
3566 {
3567 /* Find the mode. */
3568 if (modep[1] == '-' || modep[1] == ':')
3569 len = 1;
3570 else
3571 len = 2;
3572 if (len == 1 && TOLOWER_ASC(modep[0]) == 'a')
3573 all_idx = SHAPE_IDX_COUNT - 1;
3574 else
3575 {
3576 for (idx = 0; idx < SHAPE_IDX_COUNT; ++idx)
3577 if (STRNICMP(modep, shape_table[idx].name, len)
3578 == 0)
3579 break;
3580 if (idx == SHAPE_IDX_COUNT
3581 || (shape_table[idx].used_for & what) == 0)
3582 return (char_u *)N_("E546: Illegal mode");
3583 if (len == 2 && modep[0] == 'v' && modep[1] == 'e')
3584 found_ve = TRUE;
3585 }
3586 modep += len + 1;
3587 }
3588
3589 if (all_idx >= 0)
3590 idx = all_idx--;
3591 else if (round == 2)
3592 {
3593#ifdef FEAT_MOUSESHAPE
3594 if (what == SHAPE_MOUSE)
3595 {
3596 /* Set the default, for the missing parts */
3597 shape_table[idx].mshape = 0;
3598 }
3599 else
3600#endif
3601 {
3602 /* Set the defaults, for the missing parts */
3603 shape_table[idx].shape = SHAPE_BLOCK;
3604 shape_table[idx].blinkwait = 700L;
3605 shape_table[idx].blinkon = 400L;
3606 shape_table[idx].blinkoff = 250L;
3607 }
3608 }
3609
3610 /* Parse the part after the colon */
3611 for (p = colonp + 1; *p && *p != ','; )
3612 {
3613#ifdef FEAT_MOUSESHAPE
3614 if (what == SHAPE_MOUSE)
3615 {
3616 for (i = 0; ; ++i)
3617 {
3618 if (mshape_names[i] == NULL)
3619 {
3620 if (!VIM_ISDIGIT(*p))
3621 return (char_u *)N_("E547: Illegal mouseshape");
3622 if (round == 2)
3623 shape_table[idx].mshape =
3624 getdigits(&p) + MSHAPE_NUMBERED;
3625 else
3626 (void)getdigits(&p);
3627 break;
3628 }
3629 len = (int)STRLEN(mshape_names[i]);
3630 if (STRNICMP(p, mshape_names[i], len) == 0)
3631 {
3632 if (round == 2)
3633 shape_table[idx].mshape = i;
3634 p += len;
3635 break;
3636 }
3637 }
3638 }
3639 else /* if (what == SHAPE_MOUSE) */
3640#endif
3641 {
3642 /*
3643 * First handle the ones with a number argument.
3644 */
3645 i = *p;
3646 len = 0;
3647 if (STRNICMP(p, "ver", 3) == 0)
3648 len = 3;
3649 else if (STRNICMP(p, "hor", 3) == 0)
3650 len = 3;
3651 else if (STRNICMP(p, "blinkwait", 9) == 0)
3652 len = 9;
3653 else if (STRNICMP(p, "blinkon", 7) == 0)
3654 len = 7;
3655 else if (STRNICMP(p, "blinkoff", 8) == 0)
3656 len = 8;
3657 if (len != 0)
3658 {
3659 p += len;
3660 if (!VIM_ISDIGIT(*p))
3661 return (char_u *)N_("E548: digit expected");
3662 n = getdigits(&p);
3663 if (len == 3) /* "ver" or "hor" */
3664 {
3665 if (n == 0)
3666 return (char_u *)N_("E549: Illegal percentage");
3667 if (round == 2)
3668 {
3669 if (TOLOWER_ASC(i) == 'v')
3670 shape_table[idx].shape = SHAPE_VER;
3671 else
3672 shape_table[idx].shape = SHAPE_HOR;
3673 shape_table[idx].percentage = n;
3674 }
3675 }
3676 else if (round == 2)
3677 {
3678 if (len == 9)
3679 shape_table[idx].blinkwait = n;
3680 else if (len == 7)
3681 shape_table[idx].blinkon = n;
3682 else
3683 shape_table[idx].blinkoff = n;
3684 }
3685 }
3686 else if (STRNICMP(p, "block", 5) == 0)
3687 {
3688 if (round == 2)
3689 shape_table[idx].shape = SHAPE_BLOCK;
3690 p += 5;
3691 }
3692 else /* must be a highlight group name then */
3693 {
3694 endp = vim_strchr(p, '-');
3695 if (commap == NULL) /* last part */
3696 {
3697 if (endp == NULL)
3698 endp = p + STRLEN(p); /* find end of part */
3699 }
3700 else if (endp > commap || endp == NULL)
3701 endp = commap;
3702 slashp = vim_strchr(p, '/');
3703 if (slashp != NULL && slashp < endp)
3704 {
3705 /* "group/langmap_group" */
3706 i = syn_check_group(p, (int)(slashp - p));
3707 p = slashp + 1;
3708 }
3709 if (round == 2)
3710 {
3711 shape_table[idx].id = syn_check_group(p,
3712 (int)(endp - p));
3713 shape_table[idx].id_lm = shape_table[idx].id;
3714 if (slashp != NULL && slashp < endp)
3715 shape_table[idx].id = i;
3716 }
3717 p = endp;
3718 }
3719 } /* if (what != SHAPE_MOUSE) */
3720
3721 if (*p == '-')
3722 ++p;
3723 }
3724 }
3725 modep = p;
3726 if (*modep == ',')
3727 ++modep;
3728 }
3729 }
3730
3731 /* If the 's' flag is not given, use the 'v' cursor for 's' */
3732 if (!found_ve)
3733 {
3734#ifdef FEAT_MOUSESHAPE
3735 if (what == SHAPE_MOUSE)
3736 {
3737 shape_table[SHAPE_IDX_VE].mshape = shape_table[SHAPE_IDX_V].mshape;
3738 }
3739 else
3740#endif
3741 {
3742 shape_table[SHAPE_IDX_VE].shape = shape_table[SHAPE_IDX_V].shape;
3743 shape_table[SHAPE_IDX_VE].percentage =
3744 shape_table[SHAPE_IDX_V].percentage;
3745 shape_table[SHAPE_IDX_VE].blinkwait =
3746 shape_table[SHAPE_IDX_V].blinkwait;
3747 shape_table[SHAPE_IDX_VE].blinkon =
3748 shape_table[SHAPE_IDX_V].blinkon;
3749 shape_table[SHAPE_IDX_VE].blinkoff =
3750 shape_table[SHAPE_IDX_V].blinkoff;
3751 shape_table[SHAPE_IDX_VE].id = shape_table[SHAPE_IDX_V].id;
3752 shape_table[SHAPE_IDX_VE].id_lm = shape_table[SHAPE_IDX_V].id_lm;
3753 }
3754 }
3755
3756 return NULL;
3757}
3758
Bram Moolenaarac6e65f2005-08-29 22:25:38 +00003759# if defined(MCH_CURSOR_SHAPE) || defined(FEAT_GUI) \
3760 || defined(FEAT_MOUSESHAPE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003761/*
3762 * Return the index into shape_table[] for the current mode.
3763 * When "mouse" is TRUE, consider indexes valid for the mouse pointer.
3764 */
3765 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003766get_shape_idx(int mouse)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003767{
3768#ifdef FEAT_MOUSESHAPE
3769 if (mouse && (State == HITRETURN || State == ASKMORE))
3770 {
3771# ifdef FEAT_GUI
Bram Moolenaar9588a0f2005-01-08 21:45:39 +00003772 int x, y;
3773 gui_mch_getmouse(&x, &y);
3774 if (Y_2_ROW(y) == Rows - 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003775 return SHAPE_IDX_MOREL;
3776# endif
3777 return SHAPE_IDX_MORE;
3778 }
3779 if (mouse && drag_status_line)
3780 return SHAPE_IDX_SDRAG;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003781 if (mouse && drag_sep_line)
3782 return SHAPE_IDX_VDRAG;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003783#endif
3784 if (!mouse && State == SHOWMATCH)
3785 return SHAPE_IDX_SM;
3786#ifdef FEAT_VREPLACE
3787 if (State & VREPLACE_FLAG)
3788 return SHAPE_IDX_R;
3789#endif
3790 if (State & REPLACE_FLAG)
3791 return SHAPE_IDX_R;
3792 if (State & INSERT)
3793 return SHAPE_IDX_I;
3794 if (State & CMDLINE)
3795 {
3796 if (cmdline_at_end())
3797 return SHAPE_IDX_C;
3798 if (cmdline_overstrike())
3799 return SHAPE_IDX_CR;
3800 return SHAPE_IDX_CI;
3801 }
3802 if (finish_op)
3803 return SHAPE_IDX_O;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003804 if (VIsual_active)
3805 {
3806 if (*p_sel == 'e')
3807 return SHAPE_IDX_VE;
3808 else
3809 return SHAPE_IDX_V;
3810 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003811 return SHAPE_IDX_N;
3812}
Bram Moolenaarac6e65f2005-08-29 22:25:38 +00003813#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003814
3815# if defined(FEAT_MOUSESHAPE) || defined(PROTO)
3816static int old_mouse_shape = 0;
3817
3818/*
3819 * Set the mouse shape:
3820 * If "shape" is -1, use shape depending on the current mode,
3821 * depending on the current state.
3822 * If "shape" is -2, only update the shape when it's CLINE or STATUS (used
3823 * when the mouse moves off the status or command line).
3824 */
3825 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003826update_mouseshape(int shape_idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003827{
3828 int new_mouse_shape;
3829
3830 /* Only works in GUI mode. */
Bram Moolenaar6bb68362005-03-22 23:03:44 +00003831 if (!gui.in_use || gui.starting)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003832 return;
3833
3834 /* Postpone the updating when more is to come. Speeds up executing of
3835 * mappings. */
3836 if (shape_idx == -1 && char_avail())
3837 {
3838 postponed_mouseshape = TRUE;
3839 return;
3840 }
3841
Bram Moolenaar14716812006-05-04 21:54:08 +00003842 /* When ignoring the mouse don't change shape on the statusline. */
3843 if (*p_mouse == NUL
3844 && (shape_idx == SHAPE_IDX_CLINE
3845 || shape_idx == SHAPE_IDX_STATUS
3846 || shape_idx == SHAPE_IDX_VSEP))
3847 shape_idx = -2;
3848
Bram Moolenaar071d4272004-06-13 20:20:40 +00003849 if (shape_idx == -2
3850 && old_mouse_shape != shape_table[SHAPE_IDX_CLINE].mshape
3851 && old_mouse_shape != shape_table[SHAPE_IDX_STATUS].mshape
3852 && old_mouse_shape != shape_table[SHAPE_IDX_VSEP].mshape)
3853 return;
3854 if (shape_idx < 0)
3855 new_mouse_shape = shape_table[get_shape_idx(TRUE)].mshape;
3856 else
3857 new_mouse_shape = shape_table[shape_idx].mshape;
3858 if (new_mouse_shape != old_mouse_shape)
3859 {
3860 mch_set_mouse_shape(new_mouse_shape);
3861 old_mouse_shape = new_mouse_shape;
3862 }
3863 postponed_mouseshape = FALSE;
3864}
3865# endif
3866
3867#endif /* CURSOR_SHAPE */
3868
3869
Bram Moolenaar071d4272004-06-13 20:20:40 +00003870/* TODO: make some #ifdef for this */
3871/*--------[ file searching ]-------------------------------------------------*/
3872/*
3873 * File searching functions for 'path', 'tags' and 'cdpath' options.
3874 * External visible functions:
3875 * vim_findfile_init() creates/initialises the search context
3876 * vim_findfile_free_visited() free list of visited files/dirs of search
3877 * context
3878 * vim_findfile() find a file in the search context
3879 * vim_findfile_cleanup() cleanup/free search context created by
3880 * vim_findfile_init()
3881 *
3882 * All static functions and variables start with 'ff_'
3883 *
3884 * In general it works like this:
3885 * First you create yourself a search context by calling vim_findfile_init().
3886 * It is possible to give a search context from a previous call to
3887 * vim_findfile_init(), so it can be reused. After this you call vim_findfile()
3888 * until you are satisfied with the result or it returns NULL. On every call it
3889 * returns the next file which matches the conditions given to
3890 * vim_findfile_init(). If it doesn't find a next file it returns NULL.
3891 *
3892 * It is possible to call vim_findfile_init() again to reinitialise your search
3893 * with some new parameters. Don't forget to pass your old search context to
3894 * it, so it can reuse it and especially reuse the list of already visited
3895 * directories. If you want to delete the list of already visited directories
3896 * simply call vim_findfile_free_visited().
3897 *
3898 * When you are done call vim_findfile_cleanup() to free the search context.
3899 *
3900 * The function vim_findfile_init() has a long comment, which describes the
3901 * needed parameters.
3902 *
3903 *
3904 *
3905 * ATTENTION:
3906 * ==========
Bram Moolenaar77f66d62007-02-20 02:16:18 +00003907 * Also we use an allocated search context here, this functions are NOT
Bram Moolenaar071d4272004-06-13 20:20:40 +00003908 * thread-safe!!!!!
3909 *
3910 * To minimize parameter passing (or because I'm to lazy), only the
3911 * external visible functions get a search context as a parameter. This is
3912 * then assigned to a static global, which is used throughout the local
3913 * functions.
3914 */
3915
3916/*
3917 * type for the directory search stack
3918 */
3919typedef struct ff_stack
3920{
3921 struct ff_stack *ffs_prev;
3922
3923 /* the fix part (no wildcards) and the part containing the wildcards
3924 * of the search path
3925 */
3926 char_u *ffs_fix_path;
3927#ifdef FEAT_PATH_EXTRA
3928 char_u *ffs_wc_path;
3929#endif
3930
3931 /* files/dirs found in the above directory, matched by the first wildcard
3932 * of wc_part
3933 */
3934 char_u **ffs_filearray;
3935 int ffs_filearray_size;
3936 char_u ffs_filearray_cur; /* needed for partly handled dirs */
3937
3938 /* to store status of partly handled directories
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00003939 * 0: we work on this directory for the first time
Bram Moolenaar071d4272004-06-13 20:20:40 +00003940 * 1: this directory was partly searched in an earlier step
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00003941 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003942 int ffs_stage;
3943
3944 /* How deep are we in the directory tree?
3945 * Counts backward from value of level parameter to vim_findfile_init
3946 */
3947 int ffs_level;
3948
3949 /* Did we already expand '**' to an empty string? */
3950 int ffs_star_star_empty;
3951} ff_stack_T;
3952
3953/*
3954 * type for already visited directories or files.
3955 */
3956typedef struct ff_visited
3957{
3958 struct ff_visited *ffv_next;
3959
3960#ifdef FEAT_PATH_EXTRA
3961 /* Visited directories are different if the wildcard string are
3962 * different. So we have to save it.
3963 */
3964 char_u *ffv_wc_path;
3965#endif
3966 /* for unix use inode etc for comparison (needed because of links), else
3967 * use filename.
3968 */
3969#ifdef UNIX
Bram Moolenaare1fbddc2009-05-16 19:07:03 +00003970 int ffv_dev_valid; /* ffv_dev and ffv_ino were set */
3971 dev_t ffv_dev; /* device number */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003972 ino_t ffv_ino; /* inode number */
3973#endif
3974 /* The memory for this struct is allocated according to the length of
3975 * ffv_fname.
3976 */
3977 char_u ffv_fname[1]; /* actually longer */
3978} ff_visited_T;
3979
3980/*
3981 * We might have to manage several visited lists during a search.
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00003982 * This is especially needed for the tags option. If tags is set to:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003983 * "./++/tags,./++/TAGS,++/tags" (replace + with *)
3984 * So we have to do 3 searches:
3985 * 1) search from the current files directory downward for the file "tags"
3986 * 2) search from the current files directory downward for the file "TAGS"
3987 * 3) search from Vims current directory downwards for the file "tags"
3988 * As you can see, the first and the third search are for the same file, so for
3989 * the third search we can use the visited list of the first search. For the
3990 * second search we must start from a empty visited list.
3991 * The struct ff_visited_list_hdr is used to manage a linked list of already
3992 * visited lists.
3993 */
3994typedef struct ff_visited_list_hdr
3995{
3996 struct ff_visited_list_hdr *ffvl_next;
3997
3998 /* the filename the attached visited list is for */
3999 char_u *ffvl_filename;
4000
4001 ff_visited_T *ffvl_visited_list;
4002
4003} ff_visited_list_hdr_T;
4004
4005
4006/*
4007 * '**' can be expanded to several directory levels.
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00004008 * Set the default maximum depth.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004009 */
4010#define FF_MAX_STAR_STAR_EXPAND ((char_u)30)
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004011
Bram Moolenaar071d4272004-06-13 20:20:40 +00004012/*
4013 * The search context:
4014 * ffsc_stack_ptr: the stack for the dirs to search
4015 * ffsc_visited_list: the currently active visited list
4016 * ffsc_dir_visited_list: the currently active visited list for search dirs
4017 * ffsc_visited_lists_list: the list of all visited lists
4018 * ffsc_dir_visited_lists_list: the list of all visited lists for search dirs
4019 * ffsc_file_to_search: the file to search for
4020 * ffsc_start_dir: the starting directory, if search path was relative
4021 * ffsc_fix_path: the fix part of the given path (without wildcards)
4022 * Needed for upward search.
4023 * ffsc_wc_path: the part of the given path containing wildcards
4024 * ffsc_level: how many levels of dirs to search downwards
4025 * ffsc_stopdirs_v: array of stop directories for upward search
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004026 * ffsc_find_what: FINDFILE_BOTH, FINDFILE_DIR or FINDFILE_FILE
Bram Moolenaar463ee342010-08-08 18:17:52 +02004027 * ffsc_tagfile: searching for tags file, don't use 'suffixesadd'
Bram Moolenaar071d4272004-06-13 20:20:40 +00004028 */
4029typedef struct ff_search_ctx_T
4030{
4031 ff_stack_T *ffsc_stack_ptr;
4032 ff_visited_list_hdr_T *ffsc_visited_list;
4033 ff_visited_list_hdr_T *ffsc_dir_visited_list;
4034 ff_visited_list_hdr_T *ffsc_visited_lists_list;
4035 ff_visited_list_hdr_T *ffsc_dir_visited_lists_list;
4036 char_u *ffsc_file_to_search;
4037 char_u *ffsc_start_dir;
4038 char_u *ffsc_fix_path;
4039#ifdef FEAT_PATH_EXTRA
4040 char_u *ffsc_wc_path;
4041 int ffsc_level;
4042 char_u **ffsc_stopdirs_v;
4043#endif
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004044 int ffsc_find_what;
Bram Moolenaar463ee342010-08-08 18:17:52 +02004045 int ffsc_tagfile;
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00004046} ff_search_ctx_T;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004047
Bram Moolenaar071d4272004-06-13 20:20:40 +00004048/* locally needed functions */
4049#ifdef FEAT_PATH_EXTRA
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01004050static int ff_check_visited(ff_visited_T **, char_u *, char_u *);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004051#else
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01004052static int ff_check_visited(ff_visited_T **, char_u *);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004053#endif
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01004054static void vim_findfile_free_visited_list(ff_visited_list_hdr_T **list_headp);
4055static void ff_free_visited_list(ff_visited_T *vl);
4056static 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 +00004057#ifdef FEAT_PATH_EXTRA
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01004058static int ff_wc_equal(char_u *s1, char_u *s2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004059#endif
4060
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01004061static void ff_push(ff_search_ctx_T *search_ctx, ff_stack_T *stack_ptr);
4062static ff_stack_T *ff_pop(ff_search_ctx_T *search_ctx);
4063static void ff_clear(ff_search_ctx_T *search_ctx);
4064static void ff_free_stack_element(ff_stack_T *stack_ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004065#ifdef FEAT_PATH_EXTRA
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01004066static ff_stack_T *ff_create_stack_element(char_u *, char_u *, int, int);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004067#else
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01004068static ff_stack_T *ff_create_stack_element(char_u *, int, int);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004069#endif
4070#ifdef FEAT_PATH_EXTRA
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01004071static int ff_path_in_stoplist(char_u *, int, char_u **);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004072#endif
4073
Bram Moolenaarb9ba4032011-12-08 17:49:35 +01004074static char_u e_pathtoolong[] = N_("E854: path too long for completion");
4075
Bram Moolenaar071d4272004-06-13 20:20:40 +00004076#if 0
4077/*
4078 * if someone likes findfirst/findnext, here are the functions
4079 * NOT TESTED!!
4080 */
4081
4082static void *ff_fn_search_context = NULL;
4083
4084 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01004085vim_findfirst(char_u *path, char_u *filename, int level)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004086{
4087 ff_fn_search_context =
4088 vim_findfile_init(path, filename, NULL, level, TRUE, FALSE,
4089 ff_fn_search_context, rel_fname);
4090 if (NULL == ff_fn_search_context)
4091 return NULL;
4092 else
4093 return vim_findnext()
4094}
4095
4096 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01004097vim_findnext(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004098{
4099 char_u *ret = vim_findfile(ff_fn_search_context);
4100
4101 if (NULL == ret)
4102 {
4103 vim_findfile_cleanup(ff_fn_search_context);
4104 ff_fn_search_context = NULL;
4105 }
4106 return ret;
4107}
4108#endif
4109
4110/*
Bram Moolenaare2b590e2010-08-08 18:29:48 +02004111 * Initialization routine for vim_findfile().
Bram Moolenaar071d4272004-06-13 20:20:40 +00004112 *
Bram Moolenaarbe18d102010-05-22 21:37:53 +02004113 * Returns the newly allocated search context or NULL if an error occurred.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004114 *
4115 * Don't forget to clean up by calling vim_findfile_cleanup() if you are done
4116 * with the search context.
4117 *
4118 * Find the file 'filename' in the directory 'path'.
4119 * The parameter 'path' may contain wildcards. If so only search 'level'
4120 * directories deep. The parameter 'level' is the absolute maximum and is
4121 * not related to restricts given to the '**' wildcard. If 'level' is 100
4122 * and you use '**200' vim_findfile() will stop after 100 levels.
4123 *
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004124 * 'filename' cannot contain wildcards! It is used as-is, no backslashes to
4125 * escape special characters.
4126 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00004127 * If 'stopdirs' is not NULL and nothing is found downward, the search is
4128 * restarted on the next higher directory level. This is repeated until the
4129 * start-directory of a search is contained in 'stopdirs'. 'stopdirs' has the
4130 * format ";*<dirname>*\(;<dirname>\)*;\=$".
4131 *
4132 * If the 'path' is relative, the starting dir for the search is either VIM's
4133 * current dir or if the path starts with "./" the current files dir.
Bram Moolenaarbe18d102010-05-22 21:37:53 +02004134 * If the 'path' is absolute, the starting dir is that part of the path before
Bram Moolenaar071d4272004-06-13 20:20:40 +00004135 * the first wildcard.
4136 *
4137 * Upward search is only done on the starting dir.
4138 *
4139 * If 'free_visited' is TRUE the list of already visited files/directories is
4140 * cleared. Set this to FALSE if you just want to search from another
4141 * directory, but want to be sure that no directory from a previous search is
4142 * searched again. This is useful if you search for a file at different places.
4143 * The list of visited files/dirs can also be cleared with the function
4144 * vim_findfile_free_visited().
4145 *
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004146 * Set the parameter 'find_what' to FINDFILE_DIR if you want to search for
4147 * directories only, FINDFILE_FILE for files only, FINDFILE_BOTH for both.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004148 *
4149 * A search context returned by a previous call to vim_findfile_init() can be
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004150 * passed in the parameter "search_ctx_arg". This context is reused and
4151 * reinitialized with the new parameters. The list of already visited
Bram Moolenaar071d4272004-06-13 20:20:40 +00004152 * directories from this context is only deleted if the parameter
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004153 * "free_visited" is true. Be aware that the passed "search_ctx_arg" is freed
4154 * if the reinitialization fails.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004155 *
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004156 * If you don't have a search context from a previous call "search_ctx_arg"
4157 * must be NULL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004158 *
4159 * This function silently ignores a few errors, vim_findfile() will have
4160 * limited functionality then.
4161 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004162 void *
Bram Moolenaar9b578142016-01-30 19:39:49 +01004163vim_findfile_init(
4164 char_u *path,
4165 char_u *filename,
4166 char_u *stopdirs UNUSED,
4167 int level,
4168 int free_visited,
4169 int find_what,
4170 void *search_ctx_arg,
4171 int tagfile, /* expanding names of tags files */
4172 char_u *rel_fname) /* file name to use for "." */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004173{
4174#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004175 char_u *wc_part;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004176#endif
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004177 ff_stack_T *sptr;
4178 ff_search_ctx_T *search_ctx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004179
4180 /* If a search context is given by the caller, reuse it, else allocate a
4181 * new one.
4182 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004183 if (search_ctx_arg != NULL)
4184 search_ctx = search_ctx_arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004185 else
4186 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004187 search_ctx = (ff_search_ctx_T*)alloc((unsigned)sizeof(ff_search_ctx_T));
4188 if (search_ctx == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004189 goto error_return;
Bram Moolenaar7db5fc82010-05-24 11:59:29 +02004190 vim_memset(search_ctx, 0, sizeof(ff_search_ctx_T));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004191 }
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004192 search_ctx->ffsc_find_what = find_what;
Bram Moolenaar463ee342010-08-08 18:17:52 +02004193 search_ctx->ffsc_tagfile = tagfile;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004194
4195 /* clear the search context, but NOT the visited lists */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004196 ff_clear(search_ctx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004197
4198 /* clear visited list if wanted */
4199 if (free_visited == TRUE)
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004200 vim_findfile_free_visited(search_ctx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004201 else
4202 {
4203 /* Reuse old visited lists. Get the visited list for the given
4204 * filename. If no list for the current filename exists, creates a new
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004205 * one. */
4206 search_ctx->ffsc_visited_list = ff_get_visited_list(filename,
4207 &search_ctx->ffsc_visited_lists_list);
4208 if (search_ctx->ffsc_visited_list == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004209 goto error_return;
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004210 search_ctx->ffsc_dir_visited_list = ff_get_visited_list(filename,
4211 &search_ctx->ffsc_dir_visited_lists_list);
4212 if (search_ctx->ffsc_dir_visited_list == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004213 goto error_return;
4214 }
4215
4216 if (ff_expand_buffer == NULL)
4217 {
4218 ff_expand_buffer = (char_u*)alloc(MAXPATHL);
4219 if (ff_expand_buffer == NULL)
4220 goto error_return;
4221 }
4222
4223 /* Store information on starting dir now if path is relative.
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00004224 * If path is absolute, we do that later. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004225 if (path[0] == '.'
4226 && (vim_ispathsep(path[1]) || path[1] == NUL)
4227 && (!tagfile || vim_strchr(p_cpo, CPO_DOTTAG) == NULL)
4228 && rel_fname != NULL)
4229 {
4230 int len = (int)(gettail(rel_fname) - rel_fname);
4231
4232 if (!vim_isAbsName(rel_fname) && len + 1 < MAXPATHL)
4233 {
4234 /* Make the start dir an absolute path name. */
Bram Moolenaarbbebc852005-07-18 21:47:53 +00004235 vim_strncpy(ff_expand_buffer, rel_fname, len);
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004236 search_ctx->ffsc_start_dir = FullName_save(ff_expand_buffer, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004237 }
4238 else
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004239 search_ctx->ffsc_start_dir = vim_strnsave(rel_fname, len);
4240 if (search_ctx->ffsc_start_dir == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004241 goto error_return;
4242 if (*++path != NUL)
4243 ++path;
4244 }
4245 else if (*path == NUL || !vim_isAbsName(path))
4246 {
4247#ifdef BACKSLASH_IN_FILENAME
4248 /* "c:dir" needs "c:" to be expanded, otherwise use current dir */
4249 if (*path != NUL && path[1] == ':')
4250 {
4251 char_u drive[3];
4252
4253 drive[0] = path[0];
4254 drive[1] = ':';
4255 drive[2] = NUL;
4256 if (vim_FullName(drive, ff_expand_buffer, MAXPATHL, TRUE) == FAIL)
4257 goto error_return;
4258 path += 2;
4259 }
4260 else
4261#endif
4262 if (mch_dirname(ff_expand_buffer, MAXPATHL) == FAIL)
4263 goto error_return;
4264
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004265 search_ctx->ffsc_start_dir = vim_strsave(ff_expand_buffer);
4266 if (search_ctx->ffsc_start_dir == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004267 goto error_return;
4268
4269#ifdef BACKSLASH_IN_FILENAME
4270 /* A path that starts with "/dir" is relative to the drive, not to the
4271 * directory (but not for "//machine/dir"). Only use the drive name. */
4272 if ((*path == '/' || *path == '\\')
4273 && path[1] != path[0]
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004274 && search_ctx->ffsc_start_dir[1] == ':')
4275 search_ctx->ffsc_start_dir[2] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004276#endif
4277 }
4278
4279#ifdef FEAT_PATH_EXTRA
4280 /*
4281 * If stopdirs are given, split them into an array of pointers.
4282 * If this fails (mem allocation), there is no upward search at all or a
4283 * stop directory is not recognized -> continue silently.
4284 * If stopdirs just contains a ";" or is empty,
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004285 * search_ctx->ffsc_stopdirs_v will only contain a NULL pointer. This
Bram Moolenaar071d4272004-06-13 20:20:40 +00004286 * is handled as unlimited upward search. See function
4287 * ff_path_in_stoplist() for details.
4288 */
4289 if (stopdirs != NULL)
4290 {
4291 char_u *walker = stopdirs;
4292 int dircount;
4293
4294 while (*walker == ';')
4295 walker++;
4296
4297 dircount = 1;
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004298 search_ctx->ffsc_stopdirs_v =
4299 (char_u **)alloc((unsigned)sizeof(char_u *));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004300
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004301 if (search_ctx->ffsc_stopdirs_v != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004302 {
4303 do
4304 {
4305 char_u *helper;
4306 void *ptr;
4307
4308 helper = walker;
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004309 ptr = vim_realloc(search_ctx->ffsc_stopdirs_v,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004310 (dircount + 1) * sizeof(char_u *));
4311 if (ptr)
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004312 search_ctx->ffsc_stopdirs_v = ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004313 else
4314 /* ignore, keep what we have and continue */
4315 break;
4316 walker = vim_strchr(walker, ';');
4317 if (walker)
4318 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004319 search_ctx->ffsc_stopdirs_v[dircount-1] =
4320 vim_strnsave(helper, (int)(walker - helper));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004321 walker++;
4322 }
4323 else
4324 /* this might be "", which means ascent till top
4325 * of directory tree.
4326 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004327 search_ctx->ffsc_stopdirs_v[dircount-1] =
4328 vim_strsave(helper);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004329
4330 dircount++;
4331
4332 } while (walker != NULL);
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004333 search_ctx->ffsc_stopdirs_v[dircount-1] = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004334 }
4335 }
4336#endif
4337
4338#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004339 search_ctx->ffsc_level = level;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004340
4341 /* split into:
4342 * -fix path
4343 * -wildcard_stuff (might be NULL)
4344 */
4345 wc_part = vim_strchr(path, '*');
4346 if (wc_part != NULL)
4347 {
4348 int llevel;
4349 int len;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00004350 char *errpt;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004351
4352 /* save the fix part of the path */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004353 search_ctx->ffsc_fix_path = vim_strnsave(path, (int)(wc_part - path));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004354
4355 /*
4356 * copy wc_path and add restricts to the '**' wildcard.
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00004357 * The octet after a '**' is used as a (binary) counter.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004358 * So '**3' is transposed to '**^C' ('^C' is ASCII value 3)
4359 * or '**76' is transposed to '**N'( 'N' is ASCII value 76).
4360 * For EBCDIC you get different character values.
4361 * If no restrict is given after '**' the default is used.
Bram Moolenaar21160b92009-11-11 15:56:10 +00004362 * Due to this technique the path looks awful if you print it as a
Bram Moolenaar071d4272004-06-13 20:20:40 +00004363 * string.
4364 */
4365 len = 0;
4366 while (*wc_part != NUL)
4367 {
Bram Moolenaarb9ba4032011-12-08 17:49:35 +01004368 if (len + 5 >= MAXPATHL)
4369 {
4370 EMSG(_(e_pathtoolong));
4371 break;
4372 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004373 if (STRNCMP(wc_part, "**", 2) == 0)
4374 {
4375 ff_expand_buffer[len++] = *wc_part++;
4376 ff_expand_buffer[len++] = *wc_part++;
4377
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00004378 llevel = strtol((char *)wc_part, &errpt, 10);
4379 if ((char_u *)errpt != wc_part && llevel > 0 && llevel < 255)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004380 ff_expand_buffer[len++] = llevel;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00004381 else if ((char_u *)errpt != wc_part && llevel == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004382 /* restrict is 0 -> remove already added '**' */
4383 len -= 2;
4384 else
4385 ff_expand_buffer[len++] = FF_MAX_STAR_STAR_EXPAND;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00004386 wc_part = (char_u *)errpt;
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00004387 if (*wc_part != NUL && !vim_ispathsep(*wc_part))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004388 {
4389 EMSG2(_("E343: Invalid path: '**[number]' must be at the end of the path or be followed by '%s'."), PATHSEPSTR);
4390 goto error_return;
4391 }
4392 }
4393 else
4394 ff_expand_buffer[len++] = *wc_part++;
4395 }
4396 ff_expand_buffer[len] = NUL;
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004397 search_ctx->ffsc_wc_path = vim_strsave(ff_expand_buffer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004398
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004399 if (search_ctx->ffsc_wc_path == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004400 goto error_return;
4401 }
4402 else
4403#endif
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004404 search_ctx->ffsc_fix_path = vim_strsave(path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004405
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004406 if (search_ctx->ffsc_start_dir == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004407 {
4408 /* store the fix part as startdir.
4409 * This is needed if the parameter path is fully qualified.
4410 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004411 search_ctx->ffsc_start_dir = vim_strsave(search_ctx->ffsc_fix_path);
Bram Moolenaara9d52e32010-07-31 16:44:19 +02004412 if (search_ctx->ffsc_start_dir == NULL)
4413 goto error_return;
4414 search_ctx->ffsc_fix_path[0] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004415 }
4416
4417 /* create an absolute path */
Bram Moolenaarb9ba4032011-12-08 17:49:35 +01004418 if (STRLEN(search_ctx->ffsc_start_dir)
4419 + STRLEN(search_ctx->ffsc_fix_path) + 3 >= MAXPATHL)
4420 {
4421 EMSG(_(e_pathtoolong));
4422 goto error_return;
4423 }
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004424 STRCPY(ff_expand_buffer, search_ctx->ffsc_start_dir);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004425 add_pathsep(ff_expand_buffer);
Bram Moolenaarf4c5fcb2013-07-03 17:14:00 +02004426 {
Bram Moolenaar61214042013-07-04 21:19:33 +02004427 int eb_len = (int)STRLEN(ff_expand_buffer);
4428 char_u *buf = alloc(eb_len
4429 + (int)STRLEN(search_ctx->ffsc_fix_path) + 1);
Bram Moolenaarf4c5fcb2013-07-03 17:14:00 +02004430
4431 STRCPY(buf, ff_expand_buffer);
Bram Moolenaar0f5a5ed2013-07-03 17:51:17 +02004432 STRCPY(buf + eb_len, search_ctx->ffsc_fix_path);
Bram Moolenaarf4c5fcb2013-07-03 17:14:00 +02004433 if (mch_isdir(buf))
4434 {
4435 STRCAT(ff_expand_buffer, search_ctx->ffsc_fix_path);
4436 add_pathsep(ff_expand_buffer);
4437 }
4438#ifdef FEAT_PATH_EXTRA
4439 else
4440 {
Bram Moolenaaree0ee2a2013-07-03 21:19:07 +02004441 char_u *p = gettail(search_ctx->ffsc_fix_path);
Bram Moolenaar5f4c8402014-01-06 06:19:11 +01004442 char_u *wc_path = NULL;
4443 char_u *temp = NULL;
Bram Moolenaarf4c5fcb2013-07-03 17:14:00 +02004444 int len = 0;
4445
Bram Moolenaaree0ee2a2013-07-03 21:19:07 +02004446 if (p > search_ctx->ffsc_fix_path)
Bram Moolenaarf4c5fcb2013-07-03 17:14:00 +02004447 {
Bram Moolenaar61214042013-07-04 21:19:33 +02004448 len = (int)(p - search_ctx->ffsc_fix_path) - 1;
Bram Moolenaarf4c5fcb2013-07-03 17:14:00 +02004449 STRNCAT(ff_expand_buffer, search_ctx->ffsc_fix_path, len);
4450 add_pathsep(ff_expand_buffer);
4451 }
4452 else
Bram Moolenaar61214042013-07-04 21:19:33 +02004453 len = (int)STRLEN(search_ctx->ffsc_fix_path);
Bram Moolenaarf4c5fcb2013-07-03 17:14:00 +02004454
4455 if (search_ctx->ffsc_wc_path != NULL)
4456 {
4457 wc_path = vim_strsave(search_ctx->ffsc_wc_path);
Bram Moolenaar61214042013-07-04 21:19:33 +02004458 temp = alloc((int)(STRLEN(search_ctx->ffsc_wc_path)
Bram Moolenaare8785f22013-07-07 16:15:35 +02004459 + STRLEN(search_ctx->ffsc_fix_path + len)
4460 + 1));
Bram Moolenaarc79a5452015-09-29 12:08:42 +02004461 if (temp == NULL || wc_path == NULL)
4462 {
4463 vim_free(buf);
4464 vim_free(temp);
4465 vim_free(wc_path);
4466 goto error_return;
4467 }
Bram Moolenaarf4c5fcb2013-07-03 17:14:00 +02004468
Bram Moolenaarc79a5452015-09-29 12:08:42 +02004469 STRCPY(temp, search_ctx->ffsc_fix_path + len);
4470 STRCAT(temp, search_ctx->ffsc_wc_path);
4471 vim_free(search_ctx->ffsc_wc_path);
Bram Moolenaarf4c5fcb2013-07-03 17:14:00 +02004472 vim_free(wc_path);
Bram Moolenaarc79a5452015-09-29 12:08:42 +02004473 search_ctx->ffsc_wc_path = temp;
Bram Moolenaarf4c5fcb2013-07-03 17:14:00 +02004474 }
Bram Moolenaarf4c5fcb2013-07-03 17:14:00 +02004475 }
4476#endif
4477 vim_free(buf);
4478 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004479
4480 sptr = ff_create_stack_element(ff_expand_buffer,
4481#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004482 search_ctx->ffsc_wc_path,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004483#endif
4484 level, 0);
4485
4486 if (sptr == NULL)
4487 goto error_return;
4488
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004489 ff_push(search_ctx, sptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004490
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004491 search_ctx->ffsc_file_to_search = vim_strsave(filename);
4492 if (search_ctx->ffsc_file_to_search == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004493 goto error_return;
4494
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004495 return search_ctx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004496
4497error_return:
4498 /*
4499 * We clear the search context now!
4500 * Even when the caller gave us a (perhaps valid) context we free it here,
4501 * as we might have already destroyed it.
4502 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004503 vim_findfile_cleanup(search_ctx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004504 return NULL;
4505}
4506
4507#if defined(FEAT_PATH_EXTRA) || defined(PROTO)
4508/*
4509 * Get the stopdir string. Check that ';' is not escaped.
4510 */
4511 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01004512vim_findfile_stopdir(char_u *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004513{
4514 char_u *r_ptr = buf;
4515
4516 while (*r_ptr != NUL && *r_ptr != ';')
4517 {
4518 if (r_ptr[0] == '\\' && r_ptr[1] == ';')
4519 {
Bram Moolenaar0b573a52011-07-27 17:31:47 +02004520 /* Overwrite the escape char,
4521 * use STRLEN(r_ptr) to move the trailing '\0'. */
Bram Moolenaar446cb832008-06-24 21:56:24 +00004522 STRMOVE(r_ptr, r_ptr + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004523 r_ptr++;
4524 }
4525 r_ptr++;
4526 }
4527 if (*r_ptr == ';')
4528 {
4529 *r_ptr = 0;
4530 r_ptr++;
4531 }
4532 else if (*r_ptr == NUL)
4533 r_ptr = NULL;
4534 return r_ptr;
4535}
4536#endif
4537
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004538/*
4539 * Clean up the given search context. Can handle a NULL pointer.
4540 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004541 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004542vim_findfile_cleanup(void *ctx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004543{
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00004544 if (ctx == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004545 return;
4546
Bram Moolenaar071d4272004-06-13 20:20:40 +00004547 vim_findfile_free_visited(ctx);
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004548 ff_clear(ctx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004549 vim_free(ctx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004550}
4551
4552/*
4553 * Find a file in a search context.
4554 * The search context was created with vim_findfile_init() above.
4555 * Return a pointer to an allocated file name or NULL if nothing found.
4556 * To get all matching files call this function until you get NULL.
4557 *
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00004558 * If the passed search_context is NULL, NULL is returned.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004559 *
4560 * The search algorithm is depth first. To change this replace the
4561 * stack with a list (don't forget to leave partly searched directories on the
4562 * top of the list).
4563 */
4564 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01004565vim_findfile(void *search_ctx_arg)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004566{
4567 char_u *file_path;
4568#ifdef FEAT_PATH_EXTRA
4569 char_u *rest_of_wildcards;
4570 char_u *path_end = NULL;
4571#endif
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004572 ff_stack_T *stackp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004573#if defined(FEAT_SEARCHPATH) || defined(FEAT_PATH_EXTRA)
4574 int len;
4575#endif
4576 int i;
4577 char_u *p;
4578#ifdef FEAT_SEARCHPATH
4579 char_u *suf;
4580#endif
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004581 ff_search_ctx_T *search_ctx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004582
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004583 if (search_ctx_arg == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004584 return NULL;
4585
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004586 search_ctx = (ff_search_ctx_T *)search_ctx_arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004587
4588 /*
4589 * filepath is used as buffer for various actions and as the storage to
4590 * return a found filename.
4591 */
4592 if ((file_path = alloc((int)MAXPATHL)) == NULL)
4593 return NULL;
4594
4595#ifdef FEAT_PATH_EXTRA
4596 /* store the end of the start dir -- needed for upward search */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004597 if (search_ctx->ffsc_start_dir != NULL)
4598 path_end = &search_ctx->ffsc_start_dir[
4599 STRLEN(search_ctx->ffsc_start_dir)];
Bram Moolenaar071d4272004-06-13 20:20:40 +00004600#endif
4601
4602#ifdef FEAT_PATH_EXTRA
4603 /* upward search loop */
4604 for (;;)
4605 {
4606#endif
4607 /* downward search loop */
4608 for (;;)
4609 {
4610 /* check if user user wants to stop the search*/
4611 ui_breakcheck();
4612 if (got_int)
4613 break;
4614
4615 /* get directory to work on from stack */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004616 stackp = ff_pop(search_ctx);
4617 if (stackp == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004618 break;
4619
4620 /*
4621 * TODO: decide if we leave this test in
4622 *
4623 * GOOD: don't search a directory(-tree) twice.
4624 * BAD: - check linked list for every new directory entered.
4625 * - check for double files also done below
4626 *
4627 * Here we check if we already searched this directory.
4628 * We already searched a directory if:
4629 * 1) The directory is the same.
4630 * 2) We would use the same wildcard string.
4631 *
4632 * Good if you have links on same directory via several ways
4633 * or you have selfreferences in directories (e.g. SuSE Linux 6.3:
4634 * /etc/rc.d/init.d is linked to /etc/rc.d -> endless loop)
4635 *
4636 * This check is only needed for directories we work on for the
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004637 * first time (hence stackp->ff_filearray == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004638 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004639 if (stackp->ffs_filearray == NULL
4640 && ff_check_visited(&search_ctx->ffsc_dir_visited_list
Bram Moolenaar071d4272004-06-13 20:20:40 +00004641 ->ffvl_visited_list,
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004642 stackp->ffs_fix_path
Bram Moolenaar071d4272004-06-13 20:20:40 +00004643#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004644 , stackp->ffs_wc_path
Bram Moolenaar071d4272004-06-13 20:20:40 +00004645#endif
4646 ) == FAIL)
4647 {
4648#ifdef FF_VERBOSE
4649 if (p_verbose >= 5)
4650 {
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004651 verbose_enter_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004652 smsg((char_u *)"Already Searched: %s (%s)",
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004653 stackp->ffs_fix_path, stackp->ffs_wc_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004654 /* don't overwrite this either */
4655 msg_puts((char_u *)"\n");
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004656 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004657 }
4658#endif
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004659 ff_free_stack_element(stackp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004660 continue;
4661 }
4662#ifdef FF_VERBOSE
4663 else if (p_verbose >= 5)
4664 {
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004665 verbose_enter_scroll();
Bram Moolenaar051b7822005-05-19 21:00:46 +00004666 smsg((char_u *)"Searching: %s (%s)",
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004667 stackp->ffs_fix_path, stackp->ffs_wc_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004668 /* don't overwrite this either */
4669 msg_puts((char_u *)"\n");
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004670 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004671 }
4672#endif
4673
4674 /* check depth */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004675 if (stackp->ffs_level <= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004676 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004677 ff_free_stack_element(stackp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004678 continue;
4679 }
4680
4681 file_path[0] = NUL;
4682
4683 /*
4684 * If no filearray till now expand wildcards
4685 * The function expand_wildcards() can handle an array of paths
4686 * and all possible expands are returned in one array. We use this
4687 * to handle the expansion of '**' into an empty string.
4688 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004689 if (stackp->ffs_filearray == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004690 {
4691 char_u *dirptrs[2];
4692
4693 /* we use filepath to build the path expand_wildcards() should
4694 * expand.
4695 */
4696 dirptrs[0] = file_path;
4697 dirptrs[1] = NULL;
4698
4699 /* if we have a start dir copy it in */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004700 if (!vim_isAbsName(stackp->ffs_fix_path)
4701 && search_ctx->ffsc_start_dir)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004702 {
Bram Moolenaar15618fa2017-03-19 21:37:13 +01004703 if (STRLEN(search_ctx->ffsc_start_dir) + 1 < MAXPATHL)
4704 {
4705 STRCPY(file_path, search_ctx->ffsc_start_dir);
4706 add_pathsep(file_path);
4707 }
4708 else
4709 goto fail;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004710 }
4711
4712 /* append the fix part of the search path */
Bram Moolenaar15618fa2017-03-19 21:37:13 +01004713 if (STRLEN(file_path) + STRLEN(stackp->ffs_fix_path) + 1 < MAXPATHL)
4714 {
4715 STRCAT(file_path, stackp->ffs_fix_path);
4716 add_pathsep(file_path);
4717 }
4718 else
4719 goto fail;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004720
4721#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004722 rest_of_wildcards = stackp->ffs_wc_path;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004723 if (*rest_of_wildcards != NUL)
4724 {
4725 len = (int)STRLEN(file_path);
4726 if (STRNCMP(rest_of_wildcards, "**", 2) == 0)
4727 {
4728 /* pointer to the restrict byte
4729 * The restrict byte is not a character!
4730 */
4731 p = rest_of_wildcards + 2;
4732
4733 if (*p > 0)
4734 {
4735 (*p)--;
Bram Moolenaar15618fa2017-03-19 21:37:13 +01004736 if (len + 1 < MAXPATHL)
4737 file_path[len++] = '*';
4738 else
4739 goto fail;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004740 }
4741
4742 if (*p == 0)
4743 {
4744 /* remove '**<numb> from wildcards */
Bram Moolenaar446cb832008-06-24 21:56:24 +00004745 STRMOVE(rest_of_wildcards, rest_of_wildcards + 3);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004746 }
4747 else
4748 rest_of_wildcards += 3;
4749
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004750 if (stackp->ffs_star_star_empty == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004751 {
4752 /* if not done before, expand '**' to empty */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004753 stackp->ffs_star_star_empty = 1;
4754 dirptrs[1] = stackp->ffs_fix_path;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004755 }
4756 }
4757
4758 /*
4759 * Here we copy until the next path separator or the end of
4760 * the path. If we stop at a path separator, there is
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00004761 * still something else left. This is handled below by
Bram Moolenaar071d4272004-06-13 20:20:40 +00004762 * pushing every directory returned from expand_wildcards()
4763 * on the stack again for further search.
4764 */
4765 while (*rest_of_wildcards
4766 && !vim_ispathsep(*rest_of_wildcards))
Bram Moolenaar15618fa2017-03-19 21:37:13 +01004767 if (len + 1 < MAXPATHL)
4768 file_path[len++] = *rest_of_wildcards++;
4769 else
4770 goto fail;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004771
4772 file_path[len] = NUL;
4773 if (vim_ispathsep(*rest_of_wildcards))
4774 rest_of_wildcards++;
4775 }
4776#endif
4777
4778 /*
4779 * Expand wildcards like "*" and "$VAR".
4780 * If the path is a URL don't try this.
4781 */
4782 if (path_with_url(dirptrs[0]))
4783 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004784 stackp->ffs_filearray = (char_u **)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004785 alloc((unsigned)sizeof(char *));
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004786 if (stackp->ffs_filearray != NULL
4787 && (stackp->ffs_filearray[0]
Bram Moolenaar071d4272004-06-13 20:20:40 +00004788 = vim_strsave(dirptrs[0])) != NULL)
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004789 stackp->ffs_filearray_size = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004790 else
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004791 stackp->ffs_filearray_size = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004792 }
4793 else
Bram Moolenaar0b573a52011-07-27 17:31:47 +02004794 /* Add EW_NOTWILD because the expanded path may contain
4795 * wildcard characters that are to be taken literally.
4796 * This is a bit of a hack. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004797 expand_wildcards((dirptrs[1] == NULL) ? 1 : 2, dirptrs,
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004798 &stackp->ffs_filearray_size,
4799 &stackp->ffs_filearray,
Bram Moolenaar0b573a52011-07-27 17:31:47 +02004800 EW_DIR|EW_ADDSLASH|EW_SILENT|EW_NOTWILD);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004801
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004802 stackp->ffs_filearray_cur = 0;
4803 stackp->ffs_stage = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004804 }
4805#ifdef FEAT_PATH_EXTRA
4806 else
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004807 rest_of_wildcards = &stackp->ffs_wc_path[
4808 STRLEN(stackp->ffs_wc_path)];
Bram Moolenaar071d4272004-06-13 20:20:40 +00004809#endif
4810
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004811 if (stackp->ffs_stage == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004812 {
4813 /* this is the first time we work on this directory */
4814#ifdef FEAT_PATH_EXTRA
4815 if (*rest_of_wildcards == NUL)
4816#endif
4817 {
4818 /*
Bram Moolenaar473de612013-06-08 18:19:48 +02004819 * We don't have further wildcards to expand, so we have to
4820 * check for the final file now.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004821 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004822 for (i = stackp->ffs_filearray_cur;
4823 i < stackp->ffs_filearray_size; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004824 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004825 if (!path_with_url(stackp->ffs_filearray[i])
4826 && !mch_isdir(stackp->ffs_filearray[i]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004827 continue; /* not a directory */
4828
Bram Moolenaar21160b92009-11-11 15:56:10 +00004829 /* prepare the filename to be checked for existence
Bram Moolenaar071d4272004-06-13 20:20:40 +00004830 * below */
Bram Moolenaar15618fa2017-03-19 21:37:13 +01004831 if (STRLEN(stackp->ffs_filearray[i]) + 1
4832 + STRLEN(search_ctx->ffsc_file_to_search) < MAXPATHL)
4833 {
4834 STRCPY(file_path, stackp->ffs_filearray[i]);
4835 add_pathsep(file_path);
4836 STRCAT(file_path, search_ctx->ffsc_file_to_search);
4837 }
4838 else
4839 goto fail;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004840
4841 /*
4842 * Try without extra suffix and then with suffixes
4843 * from 'suffixesadd'.
4844 */
4845#ifdef FEAT_SEARCHPATH
4846 len = (int)STRLEN(file_path);
Bram Moolenaar463ee342010-08-08 18:17:52 +02004847 if (search_ctx->ffsc_tagfile)
4848 suf = (char_u *)"";
4849 else
4850 suf = curbuf->b_p_sua;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004851 for (;;)
4852#endif
4853 {
4854 /* if file exists and we didn't already find it */
4855 if ((path_with_url(file_path)
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004856 || (mch_getperm(file_path) >= 0
4857 && (search_ctx->ffsc_find_what
4858 == FINDFILE_BOTH
4859 || ((search_ctx->ffsc_find_what
4860 == FINDFILE_DIR)
4861 == mch_isdir(file_path)))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004862#ifndef FF_VERBOSE
4863 && (ff_check_visited(
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004864 &search_ctx->ffsc_visited_list->ffvl_visited_list,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004865 file_path
4866#ifdef FEAT_PATH_EXTRA
4867 , (char_u *)""
4868#endif
4869 ) == OK)
4870#endif
4871 )
4872 {
4873#ifdef FF_VERBOSE
4874 if (ff_check_visited(
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004875 &search_ctx->ffsc_visited_list->ffvl_visited_list,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004876 file_path
4877#ifdef FEAT_PATH_EXTRA
4878 , (char_u *)""
4879#endif
4880 ) == FAIL)
4881 {
4882 if (p_verbose >= 5)
4883 {
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004884 verbose_enter_scroll();
Bram Moolenaar051b7822005-05-19 21:00:46 +00004885 smsg((char_u *)"Already: %s",
Bram Moolenaar071d4272004-06-13 20:20:40 +00004886 file_path);
4887 /* don't overwrite this either */
4888 msg_puts((char_u *)"\n");
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004889 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004890 }
4891 continue;
4892 }
4893#endif
4894
4895 /* push dir to examine rest of subdirs later */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004896 stackp->ffs_filearray_cur = i + 1;
4897 ff_push(search_ctx, stackp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004898
Bram Moolenaar6bab9fa2009-01-22 20:32:12 +00004899 if (!path_with_url(file_path))
4900 simplify_filename(file_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004901 if (mch_dirname(ff_expand_buffer, MAXPATHL)
4902 == OK)
4903 {
4904 p = shorten_fname(file_path,
4905 ff_expand_buffer);
4906 if (p != NULL)
Bram Moolenaar446cb832008-06-24 21:56:24 +00004907 STRMOVE(file_path, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004908 }
4909#ifdef FF_VERBOSE
4910 if (p_verbose >= 5)
4911 {
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004912 verbose_enter_scroll();
Bram Moolenaar051b7822005-05-19 21:00:46 +00004913 smsg((char_u *)"HIT: %s", file_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004914 /* don't overwrite this either */
4915 msg_puts((char_u *)"\n");
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004916 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004917 }
4918#endif
4919 return file_path;
4920 }
4921
4922#ifdef FEAT_SEARCHPATH
4923 /* Not found or found already, try next suffix. */
4924 if (*suf == NUL)
4925 break;
4926 copy_option_part(&suf, file_path + len,
4927 MAXPATHL - len, ",");
4928#endif
4929 }
4930 }
4931 }
4932#ifdef FEAT_PATH_EXTRA
4933 else
4934 {
4935 /*
4936 * still wildcards left, push the directories for further
4937 * search
4938 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004939 for (i = stackp->ffs_filearray_cur;
4940 i < stackp->ffs_filearray_size; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004941 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004942 if (!mch_isdir(stackp->ffs_filearray[i]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004943 continue; /* not a directory */
4944
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004945 ff_push(search_ctx,
4946 ff_create_stack_element(
4947 stackp->ffs_filearray[i],
4948 rest_of_wildcards,
4949 stackp->ffs_level - 1, 0));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004950 }
4951 }
4952#endif
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004953 stackp->ffs_filearray_cur = 0;
4954 stackp->ffs_stage = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004955 }
4956
4957#ifdef FEAT_PATH_EXTRA
4958 /*
4959 * if wildcards contains '**' we have to descent till we reach the
4960 * leaves of the directory tree.
4961 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004962 if (STRNCMP(stackp->ffs_wc_path, "**", 2) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004963 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004964 for (i = stackp->ffs_filearray_cur;
4965 i < stackp->ffs_filearray_size; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004966 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004967 if (fnamecmp(stackp->ffs_filearray[i],
4968 stackp->ffs_fix_path) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004969 continue; /* don't repush same directory */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004970 if (!mch_isdir(stackp->ffs_filearray[i]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004971 continue; /* not a directory */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004972 ff_push(search_ctx,
4973 ff_create_stack_element(stackp->ffs_filearray[i],
4974 stackp->ffs_wc_path, stackp->ffs_level - 1, 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004975 }
4976 }
4977#endif
4978
4979 /* we are done with the current directory */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004980 ff_free_stack_element(stackp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004981
4982 }
4983
4984#ifdef FEAT_PATH_EXTRA
4985 /* If we reached this, we didn't find anything downwards.
4986 * Let's check if we should do an upward search.
4987 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004988 if (search_ctx->ffsc_start_dir
4989 && search_ctx->ffsc_stopdirs_v != NULL && !got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004990 {
4991 ff_stack_T *sptr;
4992
4993 /* is the last starting directory in the stop list? */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004994 if (ff_path_in_stoplist(search_ctx->ffsc_start_dir,
4995 (int)(path_end - search_ctx->ffsc_start_dir),
4996 search_ctx->ffsc_stopdirs_v) == TRUE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004997 break;
4998
4999 /* cut of last dir */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005000 while (path_end > search_ctx->ffsc_start_dir
5001 && vim_ispathsep(*path_end))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005002 path_end--;
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005003 while (path_end > search_ctx->ffsc_start_dir
5004 && !vim_ispathsep(path_end[-1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005005 path_end--;
5006 *path_end = 0;
5007 path_end--;
5008
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005009 if (*search_ctx->ffsc_start_dir == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005010 break;
5011
Bram Moolenaar15618fa2017-03-19 21:37:13 +01005012 if (STRLEN(search_ctx->ffsc_start_dir) + 1
5013 + STRLEN(search_ctx->ffsc_fix_path) < MAXPATHL)
5014 {
5015 STRCPY(file_path, search_ctx->ffsc_start_dir);
5016 add_pathsep(file_path);
5017 STRCAT(file_path, search_ctx->ffsc_fix_path);
5018 }
5019 else
5020 goto fail;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005021
5022 /* create a new stack entry */
5023 sptr = ff_create_stack_element(file_path,
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005024 search_ctx->ffsc_wc_path, search_ctx->ffsc_level, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005025 if (sptr == NULL)
5026 break;
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005027 ff_push(search_ctx, sptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005028 }
5029 else
5030 break;
5031 }
5032#endif
5033
Bram Moolenaar15618fa2017-03-19 21:37:13 +01005034fail:
Bram Moolenaar071d4272004-06-13 20:20:40 +00005035 vim_free(file_path);
5036 return NULL;
5037}
5038
5039/*
5040 * Free the list of lists of visited files and directories
5041 * Can handle it if the passed search_context is NULL;
5042 */
5043 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005044vim_findfile_free_visited(void *search_ctx_arg)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005045{
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005046 ff_search_ctx_T *search_ctx;
5047
5048 if (search_ctx_arg == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005049 return;
5050
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005051 search_ctx = (ff_search_ctx_T *)search_ctx_arg;
5052 vim_findfile_free_visited_list(&search_ctx->ffsc_visited_lists_list);
5053 vim_findfile_free_visited_list(&search_ctx->ffsc_dir_visited_lists_list);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005054}
5055
5056 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005057vim_findfile_free_visited_list(ff_visited_list_hdr_T **list_headp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005058{
5059 ff_visited_list_hdr_T *vp;
5060
5061 while (*list_headp != NULL)
5062 {
5063 vp = (*list_headp)->ffvl_next;
5064 ff_free_visited_list((*list_headp)->ffvl_visited_list);
5065
5066 vim_free((*list_headp)->ffvl_filename);
5067 vim_free(*list_headp);
5068 *list_headp = vp;
5069 }
5070 *list_headp = NULL;
5071}
5072
5073 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005074ff_free_visited_list(ff_visited_T *vl)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005075{
5076 ff_visited_T *vp;
5077
5078 while (vl != NULL)
5079 {
5080 vp = vl->ffv_next;
5081#ifdef FEAT_PATH_EXTRA
5082 vim_free(vl->ffv_wc_path);
5083#endif
5084 vim_free(vl);
5085 vl = vp;
5086 }
5087 vl = NULL;
5088}
5089
5090/*
5091 * Returns the already visited list for the given filename. If none is found it
5092 * allocates a new one.
5093 */
5094 static ff_visited_list_hdr_T*
Bram Moolenaar9b578142016-01-30 19:39:49 +01005095ff_get_visited_list(
5096 char_u *filename,
5097 ff_visited_list_hdr_T **list_headp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005098{
5099 ff_visited_list_hdr_T *retptr = NULL;
5100
5101 /* check if a visited list for the given filename exists */
5102 if (*list_headp != NULL)
5103 {
5104 retptr = *list_headp;
5105 while (retptr != NULL)
5106 {
5107 if (fnamecmp(filename, retptr->ffvl_filename) == 0)
5108 {
5109#ifdef FF_VERBOSE
5110 if (p_verbose >= 5)
5111 {
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00005112 verbose_enter_scroll();
Bram Moolenaar051b7822005-05-19 21:00:46 +00005113 smsg((char_u *)"ff_get_visited_list: FOUND list for %s",
Bram Moolenaar071d4272004-06-13 20:20:40 +00005114 filename);
5115 /* don't overwrite this either */
5116 msg_puts((char_u *)"\n");
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00005117 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005118 }
5119#endif
5120 return retptr;
5121 }
5122 retptr = retptr->ffvl_next;
5123 }
5124 }
5125
5126#ifdef FF_VERBOSE
5127 if (p_verbose >= 5)
5128 {
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00005129 verbose_enter_scroll();
Bram Moolenaar051b7822005-05-19 21:00:46 +00005130 smsg((char_u *)"ff_get_visited_list: new list for %s", filename);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005131 /* don't overwrite this either */
5132 msg_puts((char_u *)"\n");
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00005133 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005134 }
5135#endif
5136
5137 /*
5138 * if we reach this we didn't find a list and we have to allocate new list
5139 */
5140 retptr = (ff_visited_list_hdr_T*)alloc((unsigned)sizeof(*retptr));
5141 if (retptr == NULL)
5142 return NULL;
5143
5144 retptr->ffvl_visited_list = NULL;
5145 retptr->ffvl_filename = vim_strsave(filename);
5146 if (retptr->ffvl_filename == NULL)
5147 {
5148 vim_free(retptr);
5149 return NULL;
5150 }
5151 retptr->ffvl_next = *list_headp;
5152 *list_headp = retptr;
5153
5154 return retptr;
5155}
5156
5157#ifdef FEAT_PATH_EXTRA
5158/*
5159 * check if two wildcard paths are equal. Returns TRUE or FALSE.
5160 * They are equal if:
5161 * - both paths are NULL
5162 * - they have the same length
5163 * - char by char comparison is OK
5164 * - the only differences are in the counters behind a '**', so
5165 * '**\20' is equal to '**\24'
5166 */
5167 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01005168ff_wc_equal(char_u *s1, char_u *s2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005169{
Bram Moolenaarf6470c22015-08-25 16:31:40 +02005170 int i, j;
Bram Moolenaard43f0952015-08-27 22:30:47 +02005171 int c1 = NUL;
5172 int c2 = NUL;
Bram Moolenaard0e2d942013-03-19 18:31:49 +01005173 int prev1 = NUL;
5174 int prev2 = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005175
5176 if (s1 == s2)
5177 return TRUE;
5178
5179 if (s1 == NULL || s2 == NULL)
5180 return FALSE;
5181
Bram Moolenaard43f0952015-08-27 22:30:47 +02005182 for (i = 0, j = 0; s1[i] != NUL && s2[j] != NUL;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005183 {
Bram Moolenaard43f0952015-08-27 22:30:47 +02005184 c1 = PTR2CHAR(s1 + i);
5185 c2 = PTR2CHAR(s2 + j);
Bram Moolenaard0e2d942013-03-19 18:31:49 +01005186
5187 if ((p_fic ? MB_TOLOWER(c1) != MB_TOLOWER(c2) : c1 != c2)
5188 && (prev1 != '*' || prev2 != '*'))
Bram Moolenaard43f0952015-08-27 22:30:47 +02005189 return FALSE;
Bram Moolenaard0e2d942013-03-19 18:31:49 +01005190 prev2 = prev1;
5191 prev1 = c1;
Bram Moolenaarf6470c22015-08-25 16:31:40 +02005192
Bram Moolenaar15675582018-02-09 12:29:56 +01005193 i += MB_PTR2LEN(s1 + i);
5194 j += MB_PTR2LEN(s2 + j);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005195 }
Bram Moolenaar4d0c7bc2015-09-25 16:38:01 +02005196 return s1[i] == s2[j];
Bram Moolenaar071d4272004-06-13 20:20:40 +00005197}
5198#endif
5199
5200/*
5201 * maintains the list of already visited files and dirs
5202 * returns FAIL if the given file/dir is already in the list
5203 * returns OK if it is newly added
5204 *
5205 * TODO: What to do on memory allocation problems?
5206 * -> return TRUE - Better the file is found several times instead of
5207 * never.
5208 */
5209 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01005210ff_check_visited(
5211 ff_visited_T **visited_list,
5212 char_u *fname
Bram Moolenaar071d4272004-06-13 20:20:40 +00005213#ifdef FEAT_PATH_EXTRA
Bram Moolenaar9b578142016-01-30 19:39:49 +01005214 , char_u *wc_path
Bram Moolenaar071d4272004-06-13 20:20:40 +00005215#endif
Bram Moolenaar9b578142016-01-30 19:39:49 +01005216 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00005217{
5218 ff_visited_T *vp;
5219#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02005220 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005221 int url = FALSE;
5222#endif
5223
5224 /* For an URL we only compare the name, otherwise we compare the
5225 * device/inode (unix) or the full path name (not Unix). */
5226 if (path_with_url(fname))
5227 {
Bram Moolenaarbbebc852005-07-18 21:47:53 +00005228 vim_strncpy(ff_expand_buffer, fname, MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005229#ifdef UNIX
5230 url = TRUE;
5231#endif
5232 }
5233 else
5234 {
5235 ff_expand_buffer[0] = NUL;
5236#ifdef UNIX
5237 if (mch_stat((char *)fname, &st) < 0)
5238#else
5239 if (vim_FullName(fname, ff_expand_buffer, MAXPATHL, TRUE) == FAIL)
5240#endif
5241 return FAIL;
5242 }
5243
5244 /* check against list of already visited files */
5245 for (vp = *visited_list; vp != NULL; vp = vp->ffv_next)
5246 {
5247 if (
5248#ifdef UNIX
Bram Moolenaare1fbddc2009-05-16 19:07:03 +00005249 !url ? (vp->ffv_dev_valid && vp->ffv_dev == st.st_dev
5250 && vp->ffv_ino == st.st_ino)
5251 :
Bram Moolenaar071d4272004-06-13 20:20:40 +00005252#endif
5253 fnamecmp(vp->ffv_fname, ff_expand_buffer) == 0
5254 )
5255 {
5256#ifdef FEAT_PATH_EXTRA
5257 /* are the wildcard parts equal */
5258 if (ff_wc_equal(vp->ffv_wc_path, wc_path) == TRUE)
5259#endif
5260 /* already visited */
5261 return FAIL;
5262 }
5263 }
5264
5265 /*
5266 * New file/dir. Add it to the list of visited files/dirs.
5267 */
5268 vp = (ff_visited_T *)alloc((unsigned)(sizeof(ff_visited_T)
5269 + STRLEN(ff_expand_buffer)));
5270
5271 if (vp != NULL)
5272 {
5273#ifdef UNIX
5274 if (!url)
5275 {
Bram Moolenaare1fbddc2009-05-16 19:07:03 +00005276 vp->ffv_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005277 vp->ffv_ino = st.st_ino;
5278 vp->ffv_dev = st.st_dev;
5279 vp->ffv_fname[0] = NUL;
5280 }
5281 else
5282 {
Bram Moolenaare1fbddc2009-05-16 19:07:03 +00005283 vp->ffv_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005284#endif
5285 STRCPY(vp->ffv_fname, ff_expand_buffer);
5286#ifdef UNIX
5287 }
5288#endif
5289#ifdef FEAT_PATH_EXTRA
5290 if (wc_path != NULL)
5291 vp->ffv_wc_path = vim_strsave(wc_path);
5292 else
5293 vp->ffv_wc_path = NULL;
5294#endif
5295
5296 vp->ffv_next = *visited_list;
5297 *visited_list = vp;
5298 }
5299
5300 return OK;
5301}
5302
5303/*
5304 * create stack element from given path pieces
5305 */
5306 static ff_stack_T *
Bram Moolenaar9b578142016-01-30 19:39:49 +01005307ff_create_stack_element(
5308 char_u *fix_part,
Bram Moolenaar071d4272004-06-13 20:20:40 +00005309#ifdef FEAT_PATH_EXTRA
Bram Moolenaar9b578142016-01-30 19:39:49 +01005310 char_u *wc_part,
Bram Moolenaar071d4272004-06-13 20:20:40 +00005311#endif
Bram Moolenaar9b578142016-01-30 19:39:49 +01005312 int level,
5313 int star_star_empty)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005314{
5315 ff_stack_T *new;
5316
5317 new = (ff_stack_T *)alloc((unsigned)sizeof(ff_stack_T));
5318 if (new == NULL)
5319 return NULL;
5320
5321 new->ffs_prev = NULL;
5322 new->ffs_filearray = NULL;
5323 new->ffs_filearray_size = 0;
5324 new->ffs_filearray_cur = 0;
5325 new->ffs_stage = 0;
5326 new->ffs_level = level;
Bram Moolenaar945ec092016-06-08 21:17:43 +02005327 new->ffs_star_star_empty = star_star_empty;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005328
5329 /* the following saves NULL pointer checks in vim_findfile */
5330 if (fix_part == NULL)
5331 fix_part = (char_u *)"";
5332 new->ffs_fix_path = vim_strsave(fix_part);
5333
5334#ifdef FEAT_PATH_EXTRA
5335 if (wc_part == NULL)
5336 wc_part = (char_u *)"";
5337 new->ffs_wc_path = vim_strsave(wc_part);
5338#endif
5339
5340 if (new->ffs_fix_path == NULL
5341#ifdef FEAT_PATH_EXTRA
5342 || new->ffs_wc_path == NULL
5343#endif
5344 )
5345 {
5346 ff_free_stack_element(new);
5347 new = NULL;
5348 }
5349
5350 return new;
5351}
5352
5353/*
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005354 * Push a dir on the directory stack.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005355 */
5356 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005357ff_push(ff_search_ctx_T *search_ctx, ff_stack_T *stack_ptr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005358{
5359 /* check for NULL pointer, not to return an error to the user, but
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005360 * to prevent a crash */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005361 if (stack_ptr != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005362 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005363 stack_ptr->ffs_prev = search_ctx->ffsc_stack_ptr;
5364 search_ctx->ffsc_stack_ptr = stack_ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005365 }
5366}
5367
5368/*
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005369 * Pop a dir from the directory stack.
5370 * Returns NULL if stack is empty.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005371 */
5372 static ff_stack_T *
Bram Moolenaar9b578142016-01-30 19:39:49 +01005373ff_pop(ff_search_ctx_T *search_ctx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005374{
5375 ff_stack_T *sptr;
5376
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005377 sptr = search_ctx->ffsc_stack_ptr;
5378 if (search_ctx->ffsc_stack_ptr != NULL)
5379 search_ctx->ffsc_stack_ptr = search_ctx->ffsc_stack_ptr->ffs_prev;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005380
5381 return sptr;
5382}
5383
5384/*
5385 * free the given stack element
5386 */
5387 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005388ff_free_stack_element(ff_stack_T *stack_ptr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005389{
5390 /* vim_free handles possible NULL pointers */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005391 vim_free(stack_ptr->ffs_fix_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005392#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005393 vim_free(stack_ptr->ffs_wc_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005394#endif
5395
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005396 if (stack_ptr->ffs_filearray != NULL)
5397 FreeWild(stack_ptr->ffs_filearray_size, stack_ptr->ffs_filearray);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005398
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005399 vim_free(stack_ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005400}
5401
5402/*
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005403 * Clear the search context, but NOT the visited list.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005404 */
5405 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005406ff_clear(ff_search_ctx_T *search_ctx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005407{
5408 ff_stack_T *sptr;
5409
5410 /* clear up stack */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005411 while ((sptr = ff_pop(search_ctx)) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005412 ff_free_stack_element(sptr);
5413
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005414 vim_free(search_ctx->ffsc_file_to_search);
5415 vim_free(search_ctx->ffsc_start_dir);
5416 vim_free(search_ctx->ffsc_fix_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005417#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005418 vim_free(search_ctx->ffsc_wc_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005419#endif
5420
5421#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005422 if (search_ctx->ffsc_stopdirs_v != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005423 {
5424 int i = 0;
5425
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005426 while (search_ctx->ffsc_stopdirs_v[i] != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005427 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005428 vim_free(search_ctx->ffsc_stopdirs_v[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005429 i++;
5430 }
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005431 vim_free(search_ctx->ffsc_stopdirs_v);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005432 }
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005433 search_ctx->ffsc_stopdirs_v = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005434#endif
5435
5436 /* reset everything */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005437 search_ctx->ffsc_file_to_search = NULL;
5438 search_ctx->ffsc_start_dir = NULL;
5439 search_ctx->ffsc_fix_path = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005440#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005441 search_ctx->ffsc_wc_path = NULL;
5442 search_ctx->ffsc_level = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005443#endif
5444}
5445
5446#ifdef FEAT_PATH_EXTRA
5447/*
5448 * check if the given path is in the stopdirs
5449 * returns TRUE if yes else FALSE
5450 */
5451 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01005452ff_path_in_stoplist(char_u *path, int path_len, char_u **stopdirs_v)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005453{
5454 int i = 0;
5455
5456 /* eat up trailing path separators, except the first */
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00005457 while (path_len > 1 && vim_ispathsep(path[path_len - 1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005458 path_len--;
5459
5460 /* if no path consider it as match */
5461 if (path_len == 0)
5462 return TRUE;
5463
5464 for (i = 0; stopdirs_v[i] != NULL; i++)
5465 {
5466 if ((int)STRLEN(stopdirs_v[i]) > path_len)
5467 {
5468 /* match for parent directory. So '/home' also matches
5469 * '/home/rks'. Check for PATHSEP in stopdirs_v[i], else
5470 * '/home/r' would also match '/home/rks'
5471 */
5472 if (fnamencmp(stopdirs_v[i], path, path_len) == 0
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00005473 && vim_ispathsep(stopdirs_v[i][path_len]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005474 return TRUE;
5475 }
5476 else
5477 {
5478 if (fnamecmp(stopdirs_v[i], path) == 0)
5479 return TRUE;
5480 }
5481 }
5482 return FALSE;
5483}
5484#endif
5485
5486#if defined(FEAT_SEARCHPATH) || defined(PROTO)
5487/*
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005488 * Find the file name "ptr[len]" in the path. Also finds directory names.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005489 *
5490 * On the first call set the parameter 'first' to TRUE to initialize
5491 * the search. For repeating calls to FALSE.
5492 *
5493 * Repeating calls will return other files called 'ptr[len]' from the path.
5494 *
5495 * Only on the first call 'ptr' and 'len' are used. For repeating calls they
5496 * don't need valid values.
5497 *
5498 * If nothing found on the first call the option FNAME_MESS will issue the
5499 * message:
5500 * 'Can't find file "<file>" in path'
5501 * On repeating calls:
5502 * 'No more file "<file>" found in path'
5503 *
5504 * options:
5505 * FNAME_MESS give error message when not found
5506 *
5507 * Uses NameBuff[]!
5508 *
5509 * Returns an allocated string for the file name. NULL for error.
5510 *
5511 */
5512 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01005513find_file_in_path(
5514 char_u *ptr, /* file name */
5515 int len, /* length of file name */
5516 int options,
5517 int first, /* use count'th matching file name */
5518 char_u *rel_fname) /* file name searching relative to */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005519{
5520 return find_file_in_path_option(ptr, len, options, first,
5521 *curbuf->b_p_path == NUL ? p_path : curbuf->b_p_path,
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005522 FINDFILE_BOTH, rel_fname, curbuf->b_p_sua);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005523}
5524
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005525static char_u *ff_file_to_find = NULL;
5526static void *fdip_search_ctx = NULL;
5527
5528#if defined(EXITFREE)
5529 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005530free_findfile(void)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005531{
5532 vim_free(ff_file_to_find);
5533 vim_findfile_cleanup(fdip_search_ctx);
5534}
5535#endif
5536
Bram Moolenaar071d4272004-06-13 20:20:40 +00005537/*
5538 * Find the directory name "ptr[len]" in the path.
5539 *
5540 * options:
5541 * FNAME_MESS give error message when not found
Bram Moolenaard45c07a2015-02-27 17:19:10 +01005542 * FNAME_UNESC unescape backslashes.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005543 *
5544 * Uses NameBuff[]!
5545 *
5546 * Returns an allocated string for the file name. NULL for error.
5547 */
5548 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01005549find_directory_in_path(
5550 char_u *ptr, /* file name */
5551 int len, /* length of file name */
5552 int options,
5553 char_u *rel_fname) /* file name searching relative to */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005554{
5555 return find_file_in_path_option(ptr, len, options, TRUE, p_cdpath,
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005556 FINDFILE_DIR, rel_fname, (char_u *)"");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005557}
5558
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00005559 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01005560find_file_in_path_option(
5561 char_u *ptr, /* file name */
5562 int len, /* length of file name */
5563 int options,
5564 int first, /* use count'th matching file name */
5565 char_u *path_option, /* p_path or p_cdpath */
5566 int find_what, /* FINDFILE_FILE, _DIR or _BOTH */
5567 char_u *rel_fname, /* file name we are looking relative to. */
5568 char_u *suffixes) /* list of suffixes, 'suffixesadd' option */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005569{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005570 static char_u *dir;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005571 static int did_findfile_init = FALSE;
5572 char_u save_char;
5573 char_u *file_name = NULL;
5574 char_u *buf = NULL;
5575 int rel_to_curdir;
5576#ifdef AMIGA
5577 struct Process *proc = (struct Process *)FindTask(0L);
5578 APTR save_winptr = proc->pr_WindowPtr;
5579
5580 /* Avoid a requester here for a volume that doesn't exist. */
5581 proc->pr_WindowPtr = (APTR)-1L;
5582#endif
5583
5584 if (first == TRUE)
5585 {
5586 /* copy file name into NameBuff, expanding environment variables */
5587 save_char = ptr[len];
5588 ptr[len] = NUL;
Bram Moolenaar58adb142016-01-16 21:50:51 +01005589 expand_env_esc(ptr, NameBuff, MAXPATHL, FALSE, TRUE, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005590 ptr[len] = save_char;
5591
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005592 vim_free(ff_file_to_find);
5593 ff_file_to_find = vim_strsave(NameBuff);
5594 if (ff_file_to_find == NULL) /* out of memory */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005595 {
5596 file_name = NULL;
5597 goto theend;
5598 }
Bram Moolenaard45c07a2015-02-27 17:19:10 +01005599 if (options & FNAME_UNESC)
5600 {
5601 /* Change all "\ " to " ". */
5602 for (ptr = ff_file_to_find; *ptr != NUL; ++ptr)
5603 if (ptr[0] == '\\' && ptr[1] == ' ')
5604 mch_memmove(ptr, ptr + 1, STRLEN(ptr));
5605 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005606 }
5607
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005608 rel_to_curdir = (ff_file_to_find[0] == '.'
5609 && (ff_file_to_find[1] == NUL
5610 || vim_ispathsep(ff_file_to_find[1])
5611 || (ff_file_to_find[1] == '.'
5612 && (ff_file_to_find[2] == NUL
5613 || vim_ispathsep(ff_file_to_find[2])))));
5614 if (vim_isAbsName(ff_file_to_find)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005615 /* "..", "../path", "." and "./path": don't use the path_option */
5616 || rel_to_curdir
Bram Moolenaar48e330a2016-02-23 14:53:34 +01005617#if defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005618 /* handle "\tmp" as absolute path */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005619 || vim_ispathsep(ff_file_to_find[0])
Bram Moolenaar21160b92009-11-11 15:56:10 +00005620 /* handle "c:name" as absolute path */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005621 || (ff_file_to_find[0] != NUL && ff_file_to_find[1] == ':')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005622#endif
5623#ifdef AMIGA
5624 /* handle ":tmp" as absolute path */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005625 || ff_file_to_find[0] == ':'
Bram Moolenaar071d4272004-06-13 20:20:40 +00005626#endif
5627 )
5628 {
5629 /*
5630 * Absolute path, no need to use "path_option".
5631 * If this is not a first call, return NULL. We already returned a
5632 * filename on the first call.
5633 */
5634 if (first == TRUE)
5635 {
5636 int l;
5637 int run;
5638
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005639 if (path_with_url(ff_file_to_find))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005640 {
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005641 file_name = vim_strsave(ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005642 goto theend;
5643 }
5644
5645 /* When FNAME_REL flag given first use the directory of the file.
5646 * Otherwise or when this fails use the current directory. */
5647 for (run = 1; run <= 2; ++run)
5648 {
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005649 l = (int)STRLEN(ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005650 if (run == 1
5651 && rel_to_curdir
5652 && (options & FNAME_REL)
5653 && rel_fname != NULL
5654 && STRLEN(rel_fname) + l < MAXPATHL)
5655 {
5656 STRCPY(NameBuff, rel_fname);
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005657 STRCPY(gettail(NameBuff), ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005658 l = (int)STRLEN(NameBuff);
5659 }
5660 else
5661 {
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005662 STRCPY(NameBuff, ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005663 run = 2;
5664 }
5665
5666 /* When the file doesn't exist, try adding parts of
5667 * 'suffixesadd'. */
Bram Moolenaar433f7c82006-03-21 21:29:36 +00005668 buf = suffixes;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005669 for (;;)
5670 {
Bram Moolenaar48e330a2016-02-23 14:53:34 +01005671 if (mch_getperm(NameBuff) >= 0
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005672 && (find_what == FINDFILE_BOTH
5673 || ((find_what == FINDFILE_DIR)
Bram Moolenaar48e330a2016-02-23 14:53:34 +01005674 == mch_isdir(NameBuff))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005675 {
5676 file_name = vim_strsave(NameBuff);
5677 goto theend;
5678 }
5679 if (*buf == NUL)
5680 break;
5681 copy_option_part(&buf, NameBuff + l, MAXPATHL - l, ",");
5682 }
5683 }
5684 }
5685 }
5686 else
5687 {
5688 /*
5689 * Loop over all paths in the 'path' or 'cdpath' option.
5690 * When "first" is set, first setup to the start of the option.
5691 * Otherwise continue to find the next match.
5692 */
5693 if (first == TRUE)
5694 {
5695 /* vim_findfile_free_visited can handle a possible NULL pointer */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005696 vim_findfile_free_visited(fdip_search_ctx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005697 dir = path_option;
5698 did_findfile_init = FALSE;
5699 }
5700
5701 for (;;)
5702 {
5703 if (did_findfile_init)
5704 {
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005705 file_name = vim_findfile(fdip_search_ctx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005706 if (file_name != NULL)
5707 break;
5708
5709 did_findfile_init = FALSE;
5710 }
5711 else
5712 {
5713 char_u *r_ptr;
5714
5715 if (dir == NULL || *dir == NUL)
5716 {
5717 /* We searched all paths of the option, now we can
5718 * free the search context. */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005719 vim_findfile_cleanup(fdip_search_ctx);
5720 fdip_search_ctx = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005721 break;
5722 }
5723
5724 if ((buf = alloc((int)(MAXPATHL))) == NULL)
5725 break;
5726
5727 /* copy next path */
5728 buf[0] = 0;
5729 copy_option_part(&dir, buf, MAXPATHL, " ,");
5730
5731#ifdef FEAT_PATH_EXTRA
5732 /* get the stopdir string */
5733 r_ptr = vim_findfile_stopdir(buf);
5734#else
5735 r_ptr = NULL;
5736#endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005737 fdip_search_ctx = vim_findfile_init(buf, ff_file_to_find,
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005738 r_ptr, 100, FALSE, find_what,
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005739 fdip_search_ctx, FALSE, rel_fname);
5740 if (fdip_search_ctx != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005741 did_findfile_init = TRUE;
5742 vim_free(buf);
5743 }
5744 }
5745 }
5746 if (file_name == NULL && (options & FNAME_MESS))
5747 {
5748 if (first == TRUE)
5749 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005750 if (find_what == FINDFILE_DIR)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005751 EMSG2(_("E344: Can't find directory \"%s\" in cdpath"),
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005752 ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005753 else
5754 EMSG2(_("E345: Can't find file \"%s\" in path"),
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005755 ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005756 }
5757 else
5758 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005759 if (find_what == FINDFILE_DIR)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005760 EMSG2(_("E346: No more directory \"%s\" found in cdpath"),
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005761 ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005762 else
5763 EMSG2(_("E347: No more file \"%s\" found in path"),
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005764 ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005765 }
5766 }
5767
5768theend:
5769#ifdef AMIGA
5770 proc->pr_WindowPtr = save_winptr;
5771#endif
5772 return file_name;
5773}
5774
5775#endif /* FEAT_SEARCHPATH */
5776
5777/*
5778 * Change directory to "new_dir". If FEAT_SEARCHPATH is defined, search
5779 * 'cdpath' for relative directory names, otherwise just mch_chdir().
5780 */
5781 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01005782vim_chdir(char_u *new_dir)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005783{
5784#ifndef FEAT_SEARCHPATH
5785 return mch_chdir((char *)new_dir);
5786#else
5787 char_u *dir_name;
5788 int r;
5789
5790 dir_name = find_directory_in_path(new_dir, (int)STRLEN(new_dir),
5791 FNAME_MESS, curbuf->b_ffname);
5792 if (dir_name == NULL)
5793 return -1;
5794 r = mch_chdir((char *)dir_name);
5795 vim_free(dir_name);
5796 return r;
5797#endif
5798}
5799
5800/*
Bram Moolenaarbbebc852005-07-18 21:47:53 +00005801 * Get user name from machine-specific function.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005802 * Returns the user name in "buf[len]".
Bram Moolenaarbbebc852005-07-18 21:47:53 +00005803 * Some systems are quite slow in obtaining the user name (Windows NT), thus
5804 * cache the result.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005805 * Returns OK or FAIL.
5806 */
5807 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01005808get_user_name(char_u *buf, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005809{
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005810 if (username == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005811 {
5812 if (mch_get_user_name(buf, len) == FAIL)
5813 return FAIL;
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005814 username = vim_strsave(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005815 }
5816 else
Bram Moolenaarbbebc852005-07-18 21:47:53 +00005817 vim_strncpy(buf, username, len - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005818 return OK;
5819}
5820
5821#ifndef HAVE_QSORT
5822/*
5823 * Our own qsort(), for systems that don't have it.
5824 * It's simple and slow. From the K&R C book.
5825 */
5826 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005827qsort(
5828 void *base,
5829 size_t elm_count,
5830 size_t elm_size,
5831 int (*cmp)(const void *, const void *))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005832{
5833 char_u *buf;
5834 char_u *p1;
5835 char_u *p2;
5836 int i, j;
5837 int gap;
5838
5839 buf = alloc((unsigned)elm_size);
5840 if (buf == NULL)
5841 return;
5842
5843 for (gap = elm_count / 2; gap > 0; gap /= 2)
5844 for (i = gap; i < elm_count; ++i)
5845 for (j = i - gap; j >= 0; j -= gap)
5846 {
5847 /* Compare the elements. */
5848 p1 = (char_u *)base + j * elm_size;
5849 p2 = (char_u *)base + (j + gap) * elm_size;
5850 if ((*cmp)((void *)p1, (void *)p2) <= 0)
5851 break;
Bram Moolenaar21160b92009-11-11 15:56:10 +00005852 /* Exchange the elements. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005853 mch_memmove(buf, p1, elm_size);
5854 mch_memmove(p1, p2, elm_size);
5855 mch_memmove(p2, buf, elm_size);
5856 }
5857
5858 vim_free(buf);
5859}
5860#endif
5861
Bram Moolenaar071d4272004-06-13 20:20:40 +00005862/*
5863 * Sort an array of strings.
5864 */
5865static int
5866#ifdef __BORLANDC__
5867_RTLENTRYF
5868#endif
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01005869sort_compare(const void *s1, const void *s2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005870
5871 static int
5872#ifdef __BORLANDC__
5873_RTLENTRYF
5874#endif
Bram Moolenaar9b578142016-01-30 19:39:49 +01005875sort_compare(const void *s1, const void *s2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005876{
5877 return STRCMP(*(char **)s1, *(char **)s2);
5878}
5879
5880 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005881sort_strings(
5882 char_u **files,
5883 int count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005884{
5885 qsort((void *)files, (size_t)count, sizeof(char_u *), sort_compare);
5886}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005887
5888#if !defined(NO_EXPANDPATH) || defined(PROTO)
5889/*
5890 * Compare path "p[]" to "q[]".
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005891 * If "maxlen" >= 0 compare "p[maxlen]" to "q[maxlen]"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005892 * Return value like strcmp(p, q), but consider path separators.
5893 */
5894 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01005895pathcmp(const char *p, const char *q, int maxlen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005896{
Bram Moolenaarf6470c22015-08-25 16:31:40 +02005897 int i, j;
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02005898 int c1, c2;
Bram Moolenaar86b68352004-12-27 21:59:20 +00005899 const char *s = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005900
Bram Moolenaarf6470c22015-08-25 16:31:40 +02005901 for (i = 0, j = 0; maxlen < 0 || (i < maxlen && j < maxlen);)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005902 {
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02005903 c1 = PTR2CHAR((char_u *)p + i);
Bram Moolenaarf6470c22015-08-25 16:31:40 +02005904 c2 = PTR2CHAR((char_u *)q + j);
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02005905
Bram Moolenaar071d4272004-06-13 20:20:40 +00005906 /* End of "p": check if "q" also ends or just has a slash. */
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02005907 if (c1 == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005908 {
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02005909 if (c2 == NUL) /* full match */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005910 return 0;
5911 s = q;
Bram Moolenaar15675582018-02-09 12:29:56 +01005912 i = j;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005913 break;
5914 }
5915
5916 /* End of "q": check if "p" just has a slash. */
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02005917 if (c2 == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005918 {
5919 s = p;
5920 break;
5921 }
5922
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02005923 if ((p_fic ? MB_TOUPPER(c1) != MB_TOUPPER(c2) : c1 != c2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005924#ifdef BACKSLASH_IN_FILENAME
5925 /* consider '/' and '\\' to be equal */
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02005926 && !((c1 == '/' && c2 == '\\')
5927 || (c1 == '\\' && c2 == '/'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005928#endif
5929 )
5930 {
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02005931 if (vim_ispathsep(c1))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005932 return -1;
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02005933 if (vim_ispathsep(c2))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005934 return 1;
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02005935 return p_fic ? MB_TOUPPER(c1) - MB_TOUPPER(c2)
5936 : c1 - c2; /* no match */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005937 }
Bram Moolenaarf6470c22015-08-25 16:31:40 +02005938
5939 i += MB_PTR2LEN((char_u *)p + i);
5940 j += MB_PTR2LEN((char_u *)q + j);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005941 }
Bram Moolenaarf6470c22015-08-25 16:31:40 +02005942 if (s == NULL) /* "i" or "j" ran into "maxlen" */
Bram Moolenaar86b68352004-12-27 21:59:20 +00005943 return 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005944
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02005945 c1 = PTR2CHAR((char_u *)s + i);
5946 c2 = PTR2CHAR((char_u *)s + i + MB_PTR2LEN((char_u *)s + i));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005947 /* ignore a trailing slash, but not "//" or ":/" */
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02005948 if (c2 == NUL
Bram Moolenaar86b68352004-12-27 21:59:20 +00005949 && i > 0
5950 && !after_pathsep((char_u *)s, (char_u *)s + i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005951#ifdef BACKSLASH_IN_FILENAME
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02005952 && (c1 == '/' || c1 == '\\')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005953#else
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02005954 && c1 == '/'
Bram Moolenaar071d4272004-06-13 20:20:40 +00005955#endif
Bram Moolenaar86b68352004-12-27 21:59:20 +00005956 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00005957 return 0; /* match with trailing slash */
5958 if (s == q)
5959 return -1; /* no match */
5960 return 1;
5961}
5962#endif
5963
Bram Moolenaar071d4272004-06-13 20:20:40 +00005964/*
5965 * The putenv() implementation below comes from the "screen" program.
5966 * Included with permission from Juergen Weigert.
5967 * See pty.c for the copyright notice.
5968 */
5969
5970/*
5971 * putenv -- put value into environment
5972 *
5973 * Usage: i = putenv (string)
5974 * int i;
5975 * char *string;
5976 *
5977 * where string is of the form <name>=<value>.
5978 * Putenv returns 0 normally, -1 on error (not enough core for malloc).
5979 *
5980 * Putenv may need to add a new name into the environment, or to
5981 * associate a value longer than the current value with a particular
5982 * name. So, to make life simpler, putenv() copies your entire
5983 * environment into the heap (i.e. malloc()) from the stack
5984 * (i.e. where it resides when your process is initiated) the first
5985 * time you call it.
5986 *
5987 * (history removed, not very interesting. See the "screen" sources.)
5988 */
5989
5990#if !defined(HAVE_SETENV) && !defined(HAVE_PUTENV)
5991
5992#define EXTRASIZE 5 /* increment to add to env. size */
5993
5994static int envsize = -1; /* current size of environment */
Bram Moolenaard0573012017-10-28 21:11:06 +02005995extern char **environ; /* the global which is your env. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005996
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01005997static int findenv(char *name); /* look for a name in the env. */
5998static int newenv(void); /* copy env. from stack to heap */
5999static int moreenv(void); /* incr. size of env. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006000
6001 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01006002putenv(const char *string)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006003{
6004 int i;
6005 char *p;
6006
6007 if (envsize < 0)
6008 { /* first time putenv called */
6009 if (newenv() < 0) /* copy env. to heap */
6010 return -1;
6011 }
6012
6013 i = findenv((char *)string); /* look for name in environment */
6014
6015 if (i < 0)
6016 { /* name must be added */
6017 for (i = 0; environ[i]; i++);
6018 if (i >= (envsize - 1))
6019 { /* need new slot */
6020 if (moreenv() < 0)
6021 return -1;
6022 }
6023 p = (char *)alloc((unsigned)(strlen(string) + 1));
6024 if (p == NULL) /* not enough core */
6025 return -1;
6026 environ[i + 1] = 0; /* new end of env. */
6027 }
6028 else
6029 { /* name already in env. */
6030 p = vim_realloc(environ[i], strlen(string) + 1);
6031 if (p == NULL)
6032 return -1;
6033 }
6034 sprintf(p, "%s", string); /* copy into env. */
6035 environ[i] = p;
6036
6037 return 0;
6038}
6039
6040 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01006041findenv(char *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006042{
6043 char *namechar, *envchar;
6044 int i, found;
6045
6046 found = 0;
6047 for (i = 0; environ[i] && !found; i++)
6048 {
6049 envchar = environ[i];
6050 namechar = name;
6051 while (*namechar && *namechar != '=' && (*namechar == *envchar))
6052 {
6053 namechar++;
6054 envchar++;
6055 }
6056 found = ((*namechar == '\0' || *namechar == '=') && *envchar == '=');
6057 }
6058 return found ? i - 1 : -1;
6059}
6060
6061 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01006062newenv(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006063{
6064 char **env, *elem;
6065 int i, esize;
6066
Bram Moolenaar071d4272004-06-13 20:20:40 +00006067 for (i = 0; environ[i]; i++)
6068 ;
Bram Moolenaard0573012017-10-28 21:11:06 +02006069
Bram Moolenaar071d4272004-06-13 20:20:40 +00006070 esize = i + EXTRASIZE + 1;
6071 env = (char **)alloc((unsigned)(esize * sizeof (elem)));
6072 if (env == NULL)
6073 return -1;
6074
Bram Moolenaar071d4272004-06-13 20:20:40 +00006075 for (i = 0; environ[i]; i++)
6076 {
6077 elem = (char *)alloc((unsigned)(strlen(environ[i]) + 1));
6078 if (elem == NULL)
6079 return -1;
6080 env[i] = elem;
6081 strcpy(elem, environ[i]);
6082 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006083
6084 env[i] = 0;
6085 environ = env;
6086 envsize = esize;
6087 return 0;
6088}
6089
6090 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01006091moreenv(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006092{
6093 int esize;
6094 char **env;
6095
6096 esize = envsize + EXTRASIZE;
6097 env = (char **)vim_realloc((char *)environ, esize * sizeof (*env));
6098 if (env == 0)
6099 return -1;
6100 environ = env;
6101 envsize = esize;
6102 return 0;
6103}
6104
6105# ifdef USE_VIMPTY_GETENV
Bram Moolenaar613fe7a2017-07-22 21:11:53 +02006106/*
6107 * Used for mch_getenv() for Mac.
6108 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006109 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01006110vimpty_getenv(const char_u *string)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006111{
6112 int i;
6113 char_u *p;
6114
6115 if (envsize < 0)
6116 return NULL;
6117
6118 i = findenv((char *)string);
6119
6120 if (i < 0)
6121 return NULL;
6122
6123 p = vim_strchr((char_u *)environ[i], '=');
6124 return (p + 1);
6125}
6126# endif
6127
6128#endif /* !defined(HAVE_SETENV) && !defined(HAVE_PUTENV) */
Bram Moolenaarc4a06d32005-06-07 21:04:49 +00006129
Bram Moolenaarc4956c82006-03-12 21:58:43 +00006130#if defined(FEAT_EVAL) || defined(FEAT_SPELL) || defined(PROTO)
Bram Moolenaarc4a06d32005-06-07 21:04:49 +00006131/*
6132 * Return 0 for not writable, 1 for writable file, 2 for a dir which we have
6133 * rights to write into.
6134 */
6135 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01006136filewritable(char_u *fname)
Bram Moolenaarc4a06d32005-06-07 21:04:49 +00006137{
6138 int retval = 0;
6139#if defined(UNIX) || defined(VMS)
6140 int perm = 0;
6141#endif
6142
6143#if defined(UNIX) || defined(VMS)
6144 perm = mch_getperm(fname);
6145#endif
Bram Moolenaarc4a06d32005-06-07 21:04:49 +00006146 if (
6147# ifdef WIN3264
6148 mch_writable(fname) &&
6149# else
6150# if defined(UNIX) || defined(VMS)
6151 (perm & 0222) &&
6152# endif
6153# endif
6154 mch_access((char *)fname, W_OK) == 0
6155 )
Bram Moolenaarc4a06d32005-06-07 21:04:49 +00006156 {
6157 ++retval;
6158 if (mch_isdir(fname))
6159 ++retval;
6160 }
6161 return retval;
6162}
6163#endif
Bram Moolenaar6bab4d12005-06-16 21:53:56 +00006164
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006165#if defined(FEAT_SPELL) || defined(FEAT_PERSISTENT_UNDO) || defined(PROTO)
6166/*
6167 * Read 2 bytes from "fd" and turn them into an int, MSB first.
6168 */
6169 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01006170get2c(FILE *fd)
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006171{
Bram Moolenaar9db58062010-05-29 20:33:07 +02006172 int n;
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006173
6174 n = getc(fd);
6175 n = (n << 8) + getc(fd);
6176 return n;
6177}
6178
6179/*
6180 * Read 3 bytes from "fd" and turn them into an int, MSB first.
6181 */
6182 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01006183get3c(FILE *fd)
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006184{
Bram Moolenaar9db58062010-05-29 20:33:07 +02006185 int n;
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006186
6187 n = getc(fd);
6188 n = (n << 8) + getc(fd);
6189 n = (n << 8) + getc(fd);
6190 return n;
6191}
6192
6193/*
6194 * Read 4 bytes from "fd" and turn them into an int, MSB first.
6195 */
6196 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01006197get4c(FILE *fd)
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006198{
Bram Moolenaar95235e62013-09-08 16:07:07 +02006199 /* Use unsigned rather than int otherwise result is undefined
6200 * when left-shift sets the MSB. */
6201 unsigned n;
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006202
Bram Moolenaar95235e62013-09-08 16:07:07 +02006203 n = (unsigned)getc(fd);
6204 n = (n << 8) + (unsigned)getc(fd);
6205 n = (n << 8) + (unsigned)getc(fd);
6206 n = (n << 8) + (unsigned)getc(fd);
6207 return (int)n;
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006208}
6209
6210/*
Bram Moolenaarf4fba6d2016-06-26 16:44:24 +02006211 * Read 8 bytes from "fd" and turn them into a time_T, MSB first.
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006212 */
Bram Moolenaarf4fba6d2016-06-26 16:44:24 +02006213 time_T
Bram Moolenaar9b578142016-01-30 19:39:49 +01006214get8ctime(FILE *fd)
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006215{
Bram Moolenaarf4fba6d2016-06-26 16:44:24 +02006216 time_T n = 0;
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006217 int i;
6218
6219 for (i = 0; i < 8; ++i)
6220 n = (n << 8) + getc(fd);
6221 return n;
6222}
6223
6224/*
6225 * Read a string of length "cnt" from "fd" into allocated memory.
6226 * Returns NULL when out of memory or unable to read that many bytes.
6227 */
6228 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01006229read_string(FILE *fd, int cnt)
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006230{
6231 char_u *str;
6232 int i;
6233 int c;
6234
6235 /* allocate memory */
6236 str = alloc((unsigned)cnt + 1);
6237 if (str != NULL)
6238 {
6239 /* Read the string. Quit when running into the EOF. */
6240 for (i = 0; i < cnt; ++i)
6241 {
6242 c = getc(fd);
6243 if (c == EOF)
6244 {
6245 vim_free(str);
6246 return NULL;
6247 }
6248 str[i] = c;
6249 }
6250 str[i] = NUL;
6251 }
6252 return str;
6253}
6254
6255/*
6256 * Write a number to file "fd", MSB first, in "len" bytes.
6257 */
6258 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01006259put_bytes(FILE *fd, long_u nr, int len)
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006260{
6261 int i;
6262
6263 for (i = len - 1; i >= 0; --i)
6264 if (putc((int)(nr >> (i * 8)), fd) == EOF)
6265 return FAIL;
6266 return OK;
6267}
6268
6269#ifdef _MSC_VER
6270# if (_MSC_VER <= 1200)
6271/* This line is required for VC6 without the service pack. Also see the
6272 * matching #pragma below. */
6273 # pragma optimize("", off)
6274# endif
6275#endif
6276
6277/*
Bram Moolenaarf4fba6d2016-06-26 16:44:24 +02006278 * Write time_T to file "fd" in 8 bytes.
Bram Moolenaar285bf842016-01-07 22:34:01 +01006279 * Returns FAIL when the write failed.
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006280 */
Bram Moolenaar285bf842016-01-07 22:34:01 +01006281 int
Bram Moolenaarf4fba6d2016-06-26 16:44:24 +02006282put_time(FILE *fd, time_T the_time)
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006283{
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02006284 char_u buf[8];
6285
6286 time_to_bytes(the_time, buf);
Bram Moolenaar285bf842016-01-07 22:34:01 +01006287 return fwrite(buf, (size_t)8, (size_t)1, fd) == 1 ? OK : FAIL;
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02006288}
6289
6290/*
Bram Moolenaarf4fba6d2016-06-26 16:44:24 +02006291 * Write time_T to "buf[8]".
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02006292 */
6293 void
Bram Moolenaarf4fba6d2016-06-26 16:44:24 +02006294time_to_bytes(time_T the_time, char_u *buf)
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02006295{
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006296 int c;
6297 int i;
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02006298 int bi = 0;
Bram Moolenaarf4fba6d2016-06-26 16:44:24 +02006299 time_T wtime = the_time;
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006300
Bram Moolenaarf4fba6d2016-06-26 16:44:24 +02006301 /* time_T can be up to 8 bytes in size, more than long_u, thus we
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006302 * can't use put_bytes() here.
6303 * Another problem is that ">>" may do an arithmetic shift that keeps the
Bram Moolenaar644fdff2010-05-30 13:26:21 +02006304 * sign. This happens for large values of wtime. A cast to long_u may
Bram Moolenaarf4fba6d2016-06-26 16:44:24 +02006305 * truncate if time_T is 8 bytes. So only use a cast when it is 4 bytes,
Bram Moolenaar644fdff2010-05-30 13:26:21 +02006306 * it's safe to assume that long_u is 4 bytes or more and when using 8
6307 * bytes the top bit won't be set. */
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006308 for (i = 7; i >= 0; --i)
6309 {
Bram Moolenaarf4fba6d2016-06-26 16:44:24 +02006310 if (i + 1 > (int)sizeof(time_T))
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006311 /* ">>" doesn't work well when shifting more bits than avail */
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02006312 buf[bi++] = 0;
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006313 else
6314 {
Bram Moolenaar644fdff2010-05-30 13:26:21 +02006315#if defined(SIZEOF_TIME_T) && SIZEOF_TIME_T > 4
Bram Moolenaarbbd6afe2010-06-02 20:32:23 +02006316 c = (int)(wtime >> (i * 8));
Bram Moolenaar644fdff2010-05-30 13:26:21 +02006317#else
Bram Moolenaarbbd6afe2010-06-02 20:32:23 +02006318 c = (int)((long_u)wtime >> (i * 8));
Bram Moolenaar644fdff2010-05-30 13:26:21 +02006319#endif
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02006320 buf[bi++] = c;
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006321 }
6322 }
6323}
6324
6325#ifdef _MSC_VER
6326# if (_MSC_VER <= 1200)
6327 # pragma optimize("", on)
6328# endif
6329#endif
6330
6331#endif
Bram Moolenaar10b7b392012-01-10 16:28:45 +01006332
6333#if (defined(FEAT_MBYTE) && defined(FEAT_QUICKFIX)) \
6334 || defined(FEAT_SPELL) || defined(PROTO)
6335/*
6336 * Return TRUE if string "s" contains a non-ASCII character (128 or higher).
6337 * When "s" is NULL FALSE is returned.
6338 */
6339 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01006340has_non_ascii(char_u *s)
Bram Moolenaar10b7b392012-01-10 16:28:45 +01006341{
6342 char_u *p;
6343
6344 if (s != NULL)
6345 for (p = s; *p != NUL; ++p)
6346 if (*p >= 128)
6347 return TRUE;
6348 return FALSE;
6349}
6350#endif
Bram Moolenaar93c88e02015-09-15 14:12:05 +02006351
6352#if defined(MESSAGE_QUEUE) || defined(PROTO)
6353/*
6354 * Process messages that have been queued for netbeans or clientserver.
Bram Moolenaar3a117e12016-10-30 21:57:52 +01006355 * Also check if any jobs have ended.
Bram Moolenaar93c88e02015-09-15 14:12:05 +02006356 * These functions can call arbitrary vimscript and should only be called when
6357 * it is safe to do so.
6358 */
6359 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006360parse_queued_messages(void)
Bram Moolenaar93c88e02015-09-15 14:12:05 +02006361{
Bram Moolenaara3f7e582017-11-09 13:21:58 +01006362 win_T *old_curwin = curwin;
6363
Bram Moolenaarb7522a22016-02-21 17:20:55 +01006364 /* For Win32 mch_breakcheck() does not check for input, do it here. */
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01006365# if defined(WIN32) && defined(FEAT_JOB_CHANNEL)
Bram Moolenaar13ebb032017-08-26 22:02:51 +02006366 channel_handle_events(FALSE);
Bram Moolenaarb7522a22016-02-21 17:20:55 +01006367# endif
6368
Bram Moolenaar93c88e02015-09-15 14:12:05 +02006369# ifdef FEAT_NETBEANS_INTG
6370 /* Process the queued netbeans messages. */
6371 netbeans_parse_messages();
6372# endif
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01006373# ifdef FEAT_JOB_CHANNEL
Bram Moolenaar8b877ac2016-03-28 19:16:20 +02006374 /* Write any buffer lines still to be written. */
6375 channel_write_any_lines();
6376
Bram Moolenaar20fb9f32016-01-30 23:20:33 +01006377 /* Process the messages queued on channels. */
6378 channel_parse_messages();
6379# endif
Bram Moolenaar95346802015-09-15 15:57:29 +02006380# if defined(FEAT_CLIENTSERVER) && defined(FEAT_X11)
Bram Moolenaar93c88e02015-09-15 14:12:05 +02006381 /* Process the queued clientserver messages. */
6382 server_parse_messages();
6383# endif
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01006384# ifdef FEAT_JOB_CHANNEL
Bram Moolenaaree1cffc2016-02-21 19:14:41 +01006385 /* Check if any jobs have ended. */
6386 job_check_ended();
6387# endif
Bram Moolenaara3f7e582017-11-09 13:21:58 +01006388
6389 /* If the current window changed we need to bail out of the waiting loop.
6390 * E.g. when a job exit callback closes the terminal window. */
6391 if (curwin != old_curwin)
6392 ins_char_typebuf(K_IGNORE);
Bram Moolenaar93c88e02015-09-15 14:12:05 +02006393}
6394#endif
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01006395
Bram Moolenaar51628222016-12-01 23:03:28 +01006396#ifndef PROTO /* proto is defined in vim.h */
6397# ifdef ELAPSED_TIMEVAL
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01006398/*
6399 * Return time in msec since "start_tv".
6400 */
6401 long
6402elapsed(struct timeval *start_tv)
6403{
6404 struct timeval now_tv;
6405
6406 gettimeofday(&now_tv, NULL);
6407 return (now_tv.tv_sec - start_tv->tv_sec) * 1000L
6408 + (now_tv.tv_usec - start_tv->tv_usec) / 1000L;
6409}
Bram Moolenaar51628222016-12-01 23:03:28 +01006410# endif
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01006411
Bram Moolenaar51628222016-12-01 23:03:28 +01006412# ifdef ELAPSED_TICKCOUNT
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01006413/*
6414 * Return time in msec since "start_tick".
6415 */
6416 long
6417elapsed(DWORD start_tick)
6418{
6419 DWORD now = GetTickCount();
6420
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01006421 return (long)now - (long)start_tick;
6422}
Bram Moolenaar51628222016-12-01 23:03:28 +01006423# endif
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01006424#endif