blob: 9e47b24b4b7217053f44cec45536fe420706ec3b [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
168 int width = W_WIDTH(curwin) - win_col_off(curwin);
169
Bram Moolenaarebefac62005-12-28 22:39:57 +0000170 if (finetune
Bram Moolenaar071d4272004-06-13 20:20:40 +0000171 && curwin->w_p_wrap
Bram Moolenaar44a2f922016-03-19 22:11:51 +0100172# ifdef FEAT_WINDOWS
Bram Moolenaar071d4272004-06-13 20:20:40 +0000173 && curwin->w_width != 0
174# endif
175 && wcol >= (colnr_T)width)
176 {
177 csize = linetabsize(line);
178 if (csize > 0)
179 csize--;
180
Bram Moolenaarebefac62005-12-28 22:39:57 +0000181 if (wcol / width > (colnr_T)csize / width
182 && ((State & INSERT) == 0 || (int)wcol > csize + 1))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000183 {
184 /* In case of line wrapping don't move the cursor beyond the
Bram Moolenaarebefac62005-12-28 22:39:57 +0000185 * right screen edge. In Insert mode allow going just beyond
186 * the last character (like what happens when typing and
187 * reaching the right window edge). */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000188 wcol = (csize / width + 1) * width - 1;
189 }
190 }
191#endif
192
Bram Moolenaar071d4272004-06-13 20:20:40 +0000193 ptr = line;
194 while (col <= wcol && *ptr != NUL)
195 {
196 /* Count a tab for what it's worth (if list mode not on) */
197#ifdef FEAT_LINEBREAK
Bram Moolenaar597a4222014-06-25 14:39:50 +0200198 csize = win_lbr_chartabsize(curwin, line, ptr, col, &head);
Bram Moolenaar91acfff2017-03-12 19:22:36 +0100199 MB_PTR_ADV(ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000200#else
Bram Moolenaar597a4222014-06-25 14:39:50 +0200201 csize = lbr_chartabsize_adv(line, &ptr, col);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000202#endif
203 col += csize;
204 }
205 idx = (int)(ptr - line);
206 /*
207 * Handle all the special cases. The virtual_active() check
208 * is needed to ensure that a virtual position off the end of
209 * a line has the correct indexing. The one_more comparison
210 * replaces an explicit add of one_more later on.
211 */
212 if (col > wcol || (!virtual_active() && one_more == 0))
213 {
214 idx -= 1;
215# ifdef FEAT_LINEBREAK
216 /* Don't count the chars from 'showbreak'. */
217 csize -= head;
218# endif
219 col -= csize;
220 }
221
222#ifdef FEAT_VIRTUALEDIT
223 if (virtual_active()
224 && addspaces
225 && ((col != wcol && col != wcol + 1) || csize > 1))
226 {
227 /* 'virtualedit' is set: The difference between wcol and col is
228 * filled with spaces. */
229
230 if (line[idx] == NUL)
231 {
232 /* Append spaces */
233 int correct = wcol - col;
234 char_u *newline = alloc(idx + correct + 1);
235 int t;
236
237 if (newline == NULL)
238 return FAIL;
239
240 for (t = 0; t < idx; ++t)
241 newline[t] = line[t];
242
243 for (t = 0; t < correct; ++t)
244 newline[t + idx] = ' ';
245
246 newline[idx + correct] = NUL;
247
248 ml_replace(pos->lnum, newline, FALSE);
249 changed_bytes(pos->lnum, (colnr_T)idx);
250 idx += correct;
251 col = wcol;
252 }
253 else
254 {
255 /* Break a tab */
256 int linelen = (int)STRLEN(line);
257 int correct = wcol - col - csize + 1; /* negative!! */
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000258 char_u *newline;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000259 int t, s = 0;
260 int v;
261
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000262 if (-correct > csize)
263 return FAIL;
264
265 newline = alloc(linelen + csize);
266 if (newline == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000267 return FAIL;
268
269 for (t = 0; t < linelen; t++)
270 {
271 if (t != idx)
272 newline[s++] = line[t];
273 else
274 for (v = 0; v < csize; v++)
275 newline[s++] = ' ';
276 }
277
278 newline[linelen + csize - 1] = NUL;
279
280 ml_replace(pos->lnum, newline, FALSE);
281 changed_bytes(pos->lnum, idx);
282 idx += (csize - 1 + correct);
283 col += correct;
284 }
285 }
286#endif
287 }
288
289 if (idx < 0)
290 pos->col = 0;
291 else
292 pos->col = idx;
293
294#ifdef FEAT_VIRTUALEDIT
295 pos->coladd = 0;
296
297 if (finetune)
298 {
299 if (wcol == MAXCOL)
300 {
301 /* The width of the last character is used to set coladd. */
302 if (!one_more)
303 {
304 colnr_T scol, ecol;
305
306 getvcol(curwin, pos, &scol, NULL, &ecol);
307 pos->coladd = ecol - scol;
308 }
309 }
310 else
311 {
312 int b = (int)wcol - (int)col;
313
314 /* The difference between wcol and col is used to set coladd. */
315 if (b > 0 && b < (MAXCOL - 2 * W_WIDTH(curwin)))
316 pos->coladd = b;
317
318 col += b;
319 }
320 }
321#endif
322
323#ifdef FEAT_MBYTE
Bram Moolenaara1381de2009-11-03 15:44:21 +0000324 /* prevent from moving onto a trail byte */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000325 if (has_mbyte)
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200326 mb_adjustpos(curbuf, pos);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000327#endif
328
329 if (col < wcol)
330 return FAIL;
331 return OK;
332}
333
334/*
Bram Moolenaar446cb832008-06-24 21:56:24 +0000335 * Increment the cursor position. See inc() for return values.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000336 */
337 int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100338inc_cursor(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000339{
340 return inc(&curwin->w_cursor);
341}
342
Bram Moolenaar446cb832008-06-24 21:56:24 +0000343/*
344 * Increment the line pointer "lp" crossing line boundaries as necessary.
345 * Return 1 when going to the next line.
346 * Return 2 when moving forward onto a NUL at the end of the line).
347 * Return -1 when at the end of file.
348 * Return 0 otherwise.
349 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000350 int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100351inc(pos_T *lp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000352{
353 char_u *p = ml_get_pos(lp);
354
355 if (*p != NUL) /* still within line, move to next char (may be NUL) */
356 {
357#ifdef FEAT_MBYTE
358 if (has_mbyte)
359 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000360 int l = (*mb_ptr2len)(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000361
362 lp->col += l;
363 return ((p[l] != NUL) ? 0 : 2);
364 }
365#endif
366 lp->col++;
367#ifdef FEAT_VIRTUALEDIT
368 lp->coladd = 0;
369#endif
370 return ((p[1] != NUL) ? 0 : 2);
371 }
372 if (lp->lnum != curbuf->b_ml.ml_line_count) /* there is a next line */
373 {
374 lp->col = 0;
375 lp->lnum++;
376#ifdef FEAT_VIRTUALEDIT
377 lp->coladd = 0;
378#endif
379 return 1;
380 }
381 return -1;
382}
383
384/*
385 * incl(lp): same as inc(), but skip the NUL at the end of non-empty lines
386 */
387 int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100388incl(pos_T *lp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000389{
390 int r;
391
392 if ((r = inc(lp)) >= 1 && lp->col)
393 r = inc(lp);
394 return r;
395}
396
397/*
398 * dec(p)
399 *
400 * Decrement the line pointer 'p' crossing line boundaries as necessary.
401 * Return 1 when crossing a line, -1 when at start of file, 0 otherwise.
402 */
403 int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100404dec_cursor(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000405{
Bram Moolenaarcaa55b62017-01-10 13:51:09 +0100406 return dec(&curwin->w_cursor);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000407}
408
409 int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100410dec(pos_T *lp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000411{
412 char_u *p;
413
414#ifdef FEAT_VIRTUALEDIT
415 lp->coladd = 0;
416#endif
417 if (lp->col > 0) /* still within line */
418 {
419 lp->col--;
420#ifdef FEAT_MBYTE
421 if (has_mbyte)
422 {
423 p = ml_get(lp->lnum);
424 lp->col -= (*mb_head_off)(p, p + lp->col);
425 }
426#endif
427 return 0;
428 }
429 if (lp->lnum > 1) /* there is a prior line */
430 {
431 lp->lnum--;
432 p = ml_get(lp->lnum);
433 lp->col = (colnr_T)STRLEN(p);
434#ifdef FEAT_MBYTE
435 if (has_mbyte)
436 lp->col -= (*mb_head_off)(p, p + lp->col);
437#endif
438 return 1;
439 }
440 return -1; /* at start of file */
441}
442
443/*
444 * decl(lp): same as dec(), but skip the NUL at the end of non-empty lines
445 */
446 int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100447decl(pos_T *lp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000448{
449 int r;
450
451 if ((r = dec(lp)) == 1 && lp->col)
452 r = dec(lp);
453 return r;
454}
455
456/*
Bram Moolenaar64486672010-05-16 15:46:46 +0200457 * Get the line number relative to the current cursor position, i.e. the
458 * difference between line number and cursor position. Only look for lines that
459 * can be visible, folded lines don't count.
460 */
461 linenr_T
Bram Moolenaar9b578142016-01-30 19:39:49 +0100462get_cursor_rel_lnum(
463 win_T *wp,
464 linenr_T lnum) /* line number to get the result for */
Bram Moolenaar64486672010-05-16 15:46:46 +0200465{
466 linenr_T cursor = wp->w_cursor.lnum;
467 linenr_T retval = 0;
468
469#ifdef FEAT_FOLDING
470 if (hasAnyFolding(wp))
471 {
472 if (lnum > cursor)
473 {
474 while (lnum > cursor)
475 {
Bram Moolenaar0bd7b3f2013-12-14 12:48:58 +0100476 (void)hasFoldingWin(wp, lnum, &lnum, NULL, TRUE, NULL);
Bram Moolenaar64486672010-05-16 15:46:46 +0200477 /* if lnum and cursor are in the same fold,
478 * now lnum <= cursor */
479 if (lnum > cursor)
480 retval++;
481 lnum--;
482 }
483 }
484 else if (lnum < cursor)
485 {
486 while (lnum < cursor)
487 {
Bram Moolenaar0bd7b3f2013-12-14 12:48:58 +0100488 (void)hasFoldingWin(wp, lnum, NULL, &lnum, TRUE, NULL);
Bram Moolenaar64486672010-05-16 15:46:46 +0200489 /* if lnum and cursor are in the same fold,
490 * now lnum >= cursor */
491 if (lnum < cursor)
492 retval--;
493 lnum++;
494 }
495 }
496 /* else if (lnum == cursor)
497 * retval = 0;
498 */
499 }
500 else
501#endif
502 retval = lnum - cursor;
503
504 return retval;
505}
506
507/*
Bram Moolenaard5824ce2016-09-04 20:35:01 +0200508 * Make sure "pos.lnum" and "pos.col" are valid in "buf".
509 * This allows for the col to be on the NUL byte.
510 */
511 void
512check_pos(buf_T *buf, pos_T *pos)
513{
514 char_u *line;
515 colnr_T len;
516
517 if (pos->lnum > buf->b_ml.ml_line_count)
518 pos->lnum = buf->b_ml.ml_line_count;
519
520 if (pos->col > 0)
521 {
522 line = ml_get_buf(buf, pos->lnum, FALSE);
523 len = (colnr_T)STRLEN(line);
524 if (pos->col > len)
525 pos->col = len;
526 }
527}
528
529/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000530 * Make sure curwin->w_cursor.lnum is valid.
531 */
532 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100533check_cursor_lnum(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000534{
535 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
536 {
537#ifdef FEAT_FOLDING
538 /* If there is a closed fold at the end of the file, put the cursor in
539 * its first line. Otherwise in the last line. */
540 if (!hasFolding(curbuf->b_ml.ml_line_count,
541 &curwin->w_cursor.lnum, NULL))
542#endif
543 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
544 }
545 if (curwin->w_cursor.lnum <= 0)
546 curwin->w_cursor.lnum = 1;
547}
548
549/*
550 * Make sure curwin->w_cursor.col is valid.
551 */
552 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100553check_cursor_col(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000554{
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200555 check_cursor_col_win(curwin);
556}
557
558/*
559 * Make sure win->w_cursor.col is valid.
560 */
561 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100562check_cursor_col_win(win_T *win)
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200563{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000564 colnr_T len;
565#ifdef FEAT_VIRTUALEDIT
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200566 colnr_T oldcol = win->w_cursor.col;
567 colnr_T oldcoladd = win->w_cursor.col + win->w_cursor.coladd;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000568#endif
569
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200570 len = (colnr_T)STRLEN(ml_get_buf(win->w_buffer, win->w_cursor.lnum, FALSE));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000571 if (len == 0)
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200572 win->w_cursor.col = 0;
573 else if (win->w_cursor.col >= len)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000574 {
Bram Moolenaar33f54432008-01-04 20:25:44 +0000575 /* Allow cursor past end-of-line when:
576 * - in Insert mode or restarting Insert mode
577 * - in Visual mode and 'selection' isn't "old"
578 * - 'virtualedit' is set */
Bram Moolenaarebefac62005-12-28 22:39:57 +0000579 if ((State & INSERT) || restart_edit
Bram Moolenaar071d4272004-06-13 20:20:40 +0000580 || (VIsual_active && *p_sel != 'o')
Bram Moolenaar33f54432008-01-04 20:25:44 +0000581#ifdef FEAT_VIRTUALEDIT
582 || (ve_flags & VE_ONEMORE)
583#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000584 || virtual_active())
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200585 win->w_cursor.col = len;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000586 else
Bram Moolenaar87c19962007-04-26 08:54:21 +0000587 {
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200588 win->w_cursor.col = len - 1;
Bram Moolenaar87c19962007-04-26 08:54:21 +0000589#ifdef FEAT_MBYTE
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200590 /* Move the cursor to the head byte. */
Bram Moolenaar87c19962007-04-26 08:54:21 +0000591 if (has_mbyte)
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200592 mb_adjustpos(win->w_buffer, &win->w_cursor);
Bram Moolenaar87c19962007-04-26 08:54:21 +0000593#endif
594 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000595 }
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200596 else if (win->w_cursor.col < 0)
597 win->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000598
599#ifdef FEAT_VIRTUALEDIT
600 /* If virtual editing is on, we can leave the cursor on the old position,
601 * only we must set it to virtual. But don't do it when at the end of the
602 * line. */
603 if (oldcol == MAXCOL)
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200604 win->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000605 else if (ve_flags == VE_ALL)
Bram Moolenaar552c8a52009-03-11 16:29:20 +0000606 {
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200607 if (oldcoladd > win->w_cursor.col)
Bram Moolenaar9aa15692017-08-19 15:05:32 +0200608 {
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200609 win->w_cursor.coladd = oldcoladd - win->w_cursor.col;
Bram Moolenaard41babe2017-08-30 17:01:35 +0200610
611 /* Make sure that coladd is not more than the char width.
612 * Not for the last character, coladd is then used when the cursor
613 * is actually after the last character. */
614 if (win->w_cursor.col + 1 < len && win->w_cursor.coladd > 0)
Bram Moolenaar9aa15692017-08-19 15:05:32 +0200615 {
616 int cs, ce;
617
Bram Moolenaar9aa15692017-08-19 15:05:32 +0200618 getvcol(win, &win->w_cursor, &cs, NULL, &ce);
619 if (win->w_cursor.coladd > ce - cs)
620 win->w_cursor.coladd = ce - cs;
621 }
622 }
Bram Moolenaar552c8a52009-03-11 16:29:20 +0000623 else
624 /* avoid weird number when there is a miscalculation or overflow */
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200625 win->w_cursor.coladd = 0;
Bram Moolenaar552c8a52009-03-11 16:29:20 +0000626 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000627#endif
628}
629
630/*
631 * make sure curwin->w_cursor in on a valid character
632 */
633 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100634check_cursor(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000635{
636 check_cursor_lnum();
637 check_cursor_col();
638}
639
640#if defined(FEAT_TEXTOBJ) || defined(PROTO)
641/*
642 * Make sure curwin->w_cursor is not on the NUL at the end of the line.
643 * Allow it when in Visual mode and 'selection' is not "old".
644 */
645 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100646adjust_cursor_col(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000647{
648 if (curwin->w_cursor.col > 0
Bram Moolenaar071d4272004-06-13 20:20:40 +0000649 && (!VIsual_active || *p_sel == 'o')
Bram Moolenaar071d4272004-06-13 20:20:40 +0000650 && gchar_cursor() == NUL)
651 --curwin->w_cursor.col;
652}
653#endif
654
655/*
656 * When curwin->w_leftcol has changed, adjust the cursor position.
657 * Return TRUE if the cursor was moved.
658 */
659 int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100660leftcol_changed(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000661{
662 long lastcol;
663 colnr_T s, e;
664 int retval = FALSE;
665
666 changed_cline_bef_curs();
667 lastcol = curwin->w_leftcol + W_WIDTH(curwin) - curwin_col_off() - 1;
668 validate_virtcol();
669
670 /*
671 * If the cursor is right or left of the screen, move it to last or first
672 * character.
673 */
674 if (curwin->w_virtcol > (colnr_T)(lastcol - p_siso))
675 {
676 retval = TRUE;
677 coladvance((colnr_T)(lastcol - p_siso));
678 }
679 else if (curwin->w_virtcol < curwin->w_leftcol + p_siso)
680 {
681 retval = TRUE;
682 (void)coladvance((colnr_T)(curwin->w_leftcol + p_siso));
683 }
684
685 /*
686 * If the start of the character under the cursor is not on the screen,
687 * advance the cursor one more char. If this fails (last char of the
688 * line) adjust the scrolling.
689 */
690 getvvcol(curwin, &curwin->w_cursor, &s, NULL, &e);
691 if (e > (colnr_T)lastcol)
692 {
693 retval = TRUE;
694 coladvance(s - 1);
695 }
696 else if (s < curwin->w_leftcol)
697 {
698 retval = TRUE;
699 if (coladvance(e + 1) == FAIL) /* there isn't another character */
700 {
701 curwin->w_leftcol = s; /* adjust w_leftcol instead */
702 changed_cline_bef_curs();
703 }
704 }
705
706 if (retval)
707 curwin->w_set_curswant = TRUE;
708 redraw_later(NOT_VALID);
709 return retval;
710}
711
712/**********************************************************************
713 * Various routines dealing with allocation and deallocation of memory.
714 */
715
716#if defined(MEM_PROFILE) || defined(PROTO)
717
718# define MEM_SIZES 8200
719static long_u mem_allocs[MEM_SIZES];
720static long_u mem_frees[MEM_SIZES];
721static long_u mem_allocated;
722static long_u mem_freed;
723static long_u mem_peak;
724static long_u num_alloc;
725static long_u num_freed;
726
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100727static void mem_pre_alloc_s(size_t *sizep);
728static void mem_pre_alloc_l(long_u *sizep);
729static void mem_post_alloc(void **pp, size_t size);
730static void mem_pre_free(void **pp);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000731
732 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100733mem_pre_alloc_s(size_t *sizep)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000734{
735 *sizep += sizeof(size_t);
736}
737
738 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100739mem_pre_alloc_l(long_u *sizep)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000740{
741 *sizep += sizeof(size_t);
742}
743
744 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100745mem_post_alloc(
746 void **pp,
747 size_t size)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000748{
749 if (*pp == NULL)
750 return;
751 size -= sizeof(size_t);
752 *(long_u *)*pp = size;
753 if (size <= MEM_SIZES-1)
754 mem_allocs[size-1]++;
755 else
756 mem_allocs[MEM_SIZES-1]++;
757 mem_allocated += size;
758 if (mem_allocated - mem_freed > mem_peak)
759 mem_peak = mem_allocated - mem_freed;
760 num_alloc++;
761 *pp = (void *)((char *)*pp + sizeof(size_t));
762}
763
764 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100765mem_pre_free(void **pp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000766{
767 long_u size;
768
769 *pp = (void *)((char *)*pp - sizeof(size_t));
770 size = *(size_t *)*pp;
771 if (size <= MEM_SIZES-1)
772 mem_frees[size-1]++;
773 else
774 mem_frees[MEM_SIZES-1]++;
775 mem_freed += size;
776 num_freed++;
777}
778
779/*
780 * called on exit via atexit()
781 */
782 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100783vim_mem_profile_dump(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000784{
785 int i, j;
786
787 printf("\r\n");
788 j = 0;
789 for (i = 0; i < MEM_SIZES - 1; i++)
790 {
791 if (mem_allocs[i] || mem_frees[i])
792 {
793 if (mem_frees[i] > mem_allocs[i])
794 printf("\r\n%s", _("ERROR: "));
795 printf("[%4d / %4lu-%-4lu] ", i + 1, mem_allocs[i], mem_frees[i]);
796 j++;
797 if (j > 3)
798 {
799 j = 0;
800 printf("\r\n");
801 }
802 }
803 }
804
805 i = MEM_SIZES - 1;
806 if (mem_allocs[i])
807 {
808 printf("\r\n");
809 if (mem_frees[i] > mem_allocs[i])
Bram Moolenaar2f1e0502010-08-13 11:18:02 +0200810 puts(_("ERROR: "));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000811 printf("[>%d / %4lu-%-4lu]", i, mem_allocs[i], mem_frees[i]);
812 }
813
814 printf(_("\n[bytes] total alloc-freed %lu-%lu, in use %lu, peak use %lu\n"),
815 mem_allocated, mem_freed, mem_allocated - mem_freed, mem_peak);
816 printf(_("[calls] total re/malloc()'s %lu, total free()'s %lu\n\n"),
817 num_alloc, num_freed);
818}
819
820#endif /* MEM_PROFILE */
821
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +0100822#ifdef FEAT_EVAL
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100823static int alloc_does_fail(long_u size);
Bram Moolenaara260b872016-01-15 20:48:22 +0100824
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +0100825 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100826alloc_does_fail(long_u size)
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +0100827{
828 if (alloc_fail_countdown == 0)
829 {
830 if (--alloc_fail_repeat <= 0)
831 alloc_fail_id = 0;
Bram Moolenaara260b872016-01-15 20:48:22 +0100832 do_outofmem_msg(size);
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +0100833 return TRUE;
834 }
835 --alloc_fail_countdown;
836 return FALSE;
837}
838#endif
839
Bram Moolenaar071d4272004-06-13 20:20:40 +0000840/*
841 * Some memory is reserved for error messages and for being able to
842 * call mf_release_all(), which needs some memory for mf_trans_add().
843 */
Bram Moolenaar48e330a2016-02-23 14:53:34 +0100844#define KEEP_ROOM (2 * 8192L)
Bram Moolenaar11b73d62012-06-29 15:51:30 +0200845#define KEEP_ROOM_KB (KEEP_ROOM / 1024L)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000846
847/*
Bram Moolenaar2a329742008-04-01 12:53:43 +0000848 * Note: if unsigned is 16 bits we can only allocate up to 64K with alloc().
Bram Moolenaar071d4272004-06-13 20:20:40 +0000849 * Use lalloc for larger blocks.
850 */
851 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +0100852alloc(unsigned size)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000853{
854 return (lalloc((long_u)size, TRUE));
855}
856
857/*
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +0100858 * alloc() with an ID for alloc_fail().
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +0100859 */
860 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +0100861alloc_id(unsigned size, alloc_id_T id UNUSED)
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +0100862{
863#ifdef FEAT_EVAL
Bram Moolenaara260b872016-01-15 20:48:22 +0100864 if (alloc_fail_id == id && alloc_does_fail((long_u)size))
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +0100865 return NULL;
866#endif
867 return (lalloc((long_u)size, TRUE));
868}
869
870/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000871 * Allocate memory and set all bytes to zero.
872 */
873 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +0100874alloc_clear(unsigned size)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000875{
876 char_u *p;
877
Bram Moolenaar2f1e0502010-08-13 11:18:02 +0200878 p = lalloc((long_u)size, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000879 if (p != NULL)
880 (void)vim_memset(p, 0, (size_t)size);
881 return p;
882}
883
884/*
885 * alloc() with check for maximum line length
886 */
887 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +0100888alloc_check(unsigned size)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000889{
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200890#if !defined(UNIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000891 if (sizeof(int) == 2 && size > 0x7fff)
892 {
893 /* Don't hide this message */
894 emsg_silent = 0;
895 EMSG(_("E340: Line is becoming too long"));
896 return NULL;
897 }
898#endif
899 return (lalloc((long_u)size, TRUE));
900}
901
902/*
903 * Allocate memory like lalloc() and set all bytes to zero.
904 */
905 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +0100906lalloc_clear(long_u size, int message)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000907{
908 char_u *p;
909
910 p = (lalloc(size, message));
911 if (p != NULL)
912 (void)vim_memset(p, 0, (size_t)size);
913 return p;
914}
915
916/*
917 * Low level memory allocation function.
918 * This is used often, KEEP IT FAST!
919 */
920 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +0100921lalloc(long_u size, int message)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000922{
923 char_u *p; /* pointer to new storage space */
924 static int releasing = FALSE; /* don't do mf_release_all() recursive */
925 int try_again;
Bram Moolenaar48e330a2016-02-23 14:53:34 +0100926#if defined(HAVE_AVAIL_MEM)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000927 static long_u allocated = 0; /* allocated since last avail check */
928#endif
929
930 /* Safety check for allocating zero bytes */
931 if (size == 0)
932 {
933 /* Don't hide this message */
934 emsg_silent = 0;
Bram Moolenaar95f09602016-11-10 20:01:45 +0100935 IEMSGN(_("E341: Internal error: lalloc(%ld, )"), size);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000936 return NULL;
937 }
938
939#ifdef MEM_PROFILE
940 mem_pre_alloc_l(&size);
941#endif
942
Bram Moolenaar071d4272004-06-13 20:20:40 +0000943 /*
944 * Loop when out of memory: Try to release some memfile blocks and
945 * if some blocks are released call malloc again.
946 */
947 for (;;)
948 {
949 /*
950 * Handle three kind of systems:
951 * 1. No check for available memory: Just return.
952 * 2. Slow check for available memory: call mch_avail_mem() after
953 * allocating KEEP_ROOM amount of memory.
954 * 3. Strict check for available memory: call mch_avail_mem()
955 */
956 if ((p = (char_u *)malloc((size_t)size)) != NULL)
957 {
958#ifndef HAVE_AVAIL_MEM
959 /* 1. No check for available memory: Just return. */
960 goto theend;
961#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000962 /* 2. Slow check for available memory: call mch_avail_mem() after
963 * allocating (KEEP_ROOM / 2) amount of memory. */
964 allocated += size;
965 if (allocated < KEEP_ROOM / 2)
966 goto theend;
967 allocated = 0;
Bram Moolenaar48e330a2016-02-23 14:53:34 +0100968
Bram Moolenaar071d4272004-06-13 20:20:40 +0000969 /* 3. check for available memory: call mch_avail_mem() */
Bram Moolenaar11b73d62012-06-29 15:51:30 +0200970 if (mch_avail_mem(TRUE) < KEEP_ROOM_KB && !releasing)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000971 {
Bram Moolenaar5a221812008-11-12 12:08:45 +0000972 free((char *)p); /* System is low... no go! */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000973 p = NULL;
974 }
975 else
976 goto theend;
977#endif
978 }
979 /*
980 * Remember that mf_release_all() is being called to avoid an endless
981 * loop, because mf_release_all() may call alloc() recursively.
982 */
983 if (releasing)
984 break;
985 releasing = TRUE;
Bram Moolenaar661b1822005-07-28 22:36:45 +0000986
Bram Moolenaarf2405ed2017-03-16 19:58:25 +0100987 clear_sb_text(TRUE); /* free any scrollback text */
Bram Moolenaar661b1822005-07-28 22:36:45 +0000988 try_again = mf_release_all(); /* release as many blocks as possible */
Bram Moolenaar661b1822005-07-28 22:36:45 +0000989
Bram Moolenaar071d4272004-06-13 20:20:40 +0000990 releasing = FALSE;
991 if (!try_again)
992 break;
993 }
994
995 if (message && p == NULL)
996 do_outofmem_msg(size);
997
998theend:
999#ifdef MEM_PROFILE
1000 mem_post_alloc((void **)&p, (size_t)size);
1001#endif
1002 return p;
1003}
1004
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +01001005/*
1006 * lalloc() with an ID for alloc_fail().
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +01001007 */
1008 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001009lalloc_id(long_u size, int message, alloc_id_T id UNUSED)
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +01001010{
1011#ifdef FEAT_EVAL
Bram Moolenaara260b872016-01-15 20:48:22 +01001012 if (alloc_fail_id == id && alloc_does_fail(size))
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +01001013 return NULL;
1014#endif
1015 return (lalloc((long_u)size, message));
1016}
1017
Bram Moolenaar071d4272004-06-13 20:20:40 +00001018#if defined(MEM_PROFILE) || defined(PROTO)
1019/*
1020 * realloc() with memory profiling.
1021 */
1022 void *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001023mem_realloc(void *ptr, size_t size)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001024{
1025 void *p;
1026
1027 mem_pre_free(&ptr);
1028 mem_pre_alloc_s(&size);
1029
1030 p = realloc(ptr, size);
1031
1032 mem_post_alloc(&p, size);
1033
1034 return p;
1035}
1036#endif
1037
1038/*
1039* Avoid repeating the error message many times (they take 1 second each).
1040* Did_outofmem_msg is reset when a character is read.
1041*/
1042 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001043do_outofmem_msg(long_u size)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001044{
1045 if (!did_outofmem_msg)
1046 {
1047 /* Don't hide this message */
1048 emsg_silent = 0;
Bram Moolenaar79739e12011-10-26 11:41:00 +02001049
1050 /* Must come first to avoid coming back here when printing the error
1051 * message fails, e.g. when setting v:errmsg. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001052 did_outofmem_msg = TRUE;
Bram Moolenaar79739e12011-10-26 11:41:00 +02001053
1054 EMSGN(_("E342: Out of memory! (allocating %lu bytes)"), size);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001055 }
1056}
1057
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001058#if defined(EXITFREE) || defined(PROTO)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001059
1060# if defined(FEAT_SEARCHPATH)
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01001061static void free_findfile(void);
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001062# endif
1063
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001064/*
1065 * Free everything that we allocated.
1066 * Can be used to detect memory leaks, e.g., with ccmalloc.
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001067 * NOTE: This is tricky! Things are freed that functions depend on. Don't be
1068 * surprised if Vim crashes...
1069 * Some things can't be freed, esp. things local to a library function.
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001070 */
1071 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001072free_all_mem(void)
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001073{
1074 buf_T *buf, *nextbuf;
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001075
1076 /* When we cause a crash here it is caught and Vim tries to exit cleanly.
1077 * Don't try freeing everything again. */
Bram Moolenaarb89a25f2016-06-01 23:08:39 +02001078 if (entered_free_all_mem)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001079 return;
Bram Moolenaarb89a25f2016-06-01 23:08:39 +02001080 entered_free_all_mem = TRUE;
Bram Moolenaara9673212016-06-01 22:21:06 +02001081
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001082# ifdef FEAT_AUTOCMD
Bram Moolenaar5d2bae82014-09-19 14:26:36 +02001083 /* Don't want to trigger autocommands from here on. */
1084 block_autocmds();
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001085# endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001086
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001087# ifdef FEAT_WINDOWS
Bram Moolenaar5bedfc62010-07-20 22:30:01 +02001088 /* Close all tabs and windows. Reset 'equalalways' to avoid redraws. */
1089 p_ea = FALSE;
Bram Moolenaar7d47b6e2006-03-15 22:59:18 +00001090 if (first_tabpage->tp_next != NULL)
1091 do_cmdline_cmd((char_u *)"tabonly!");
Bram Moolenaar95f09602016-11-10 20:01:45 +01001092 if (!ONE_WINDOW)
Bram Moolenaar7d47b6e2006-03-15 22:59:18 +00001093 do_cmdline_cmd((char_u *)"only!");
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001094# endif
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00001095
Bram Moolenaarc4956c82006-03-12 21:58:43 +00001096# if defined(FEAT_SPELL)
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001097 /* Free all spell info. */
1098 spell_free_all();
1099# endif
1100
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001101# if defined(FEAT_USR_CMDS)
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001102 /* Clear user commands (before deleting buffers). */
1103 ex_comclear(NULL);
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001104# endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001105
1106# ifdef FEAT_MENU
1107 /* Clear menus. */
1108 do_cmdline_cmd((char_u *)"aunmenu *");
Bram Moolenaar21160b92009-11-11 15:56:10 +00001109# ifdef FEAT_MULTI_LANG
1110 do_cmdline_cmd((char_u *)"menutranslate clear");
1111# endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001112# endif
1113
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001114 /* Clear mappings, abbreviations, breakpoints. */
Bram Moolenaar21160b92009-11-11 15:56:10 +00001115 do_cmdline_cmd((char_u *)"lmapclear");
1116 do_cmdline_cmd((char_u *)"xmapclear");
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001117 do_cmdline_cmd((char_u *)"mapclear");
1118 do_cmdline_cmd((char_u *)"mapclear!");
1119 do_cmdline_cmd((char_u *)"abclear");
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001120# if defined(FEAT_EVAL)
1121 do_cmdline_cmd((char_u *)"breakdel *");
1122# endif
Bram Moolenaar1e498f52005-06-26 22:29:44 +00001123# if defined(FEAT_PROFILE)
1124 do_cmdline_cmd((char_u *)"profdel *");
1125# endif
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00001126# if defined(FEAT_KEYMAP)
1127 do_cmdline_cmd((char_u *)"set keymap=");
1128#endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001129
1130# ifdef FEAT_TITLE
1131 free_titles();
1132# endif
1133# if defined(FEAT_SEARCHPATH)
1134 free_findfile();
1135# endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001136
1137 /* Obviously named calls. */
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001138# if defined(FEAT_AUTOCMD)
1139 free_all_autocmds();
1140# endif
1141 clear_termcodes();
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001142 free_all_options();
1143 free_all_marks();
1144 alist_clear(&global_alist);
1145 free_homedir();
Bram Moolenaar24305862012-08-15 14:05:05 +02001146# if defined(FEAT_CMDL_COMPL)
1147 free_users();
1148# endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001149 free_search_patterns();
1150 free_old_sub();
1151 free_last_insert();
1152 free_prev_shellcmd();
1153 free_regexp_stuff();
1154 free_tag_stuff();
1155 free_cd_dir();
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00001156# ifdef FEAT_SIGNS
1157 free_signs();
1158# endif
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001159# ifdef FEAT_EVAL
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001160 set_expr_line(NULL);
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001161# endif
1162# ifdef FEAT_DIFF
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00001163 diff_clear(curtab);
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001164# endif
Bram Moolenaarf2405ed2017-03-16 19:58:25 +01001165 clear_sb_text(TRUE); /* free any scrollback text */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001166
1167 /* Free some global vars. */
1168 vim_free(username);
Bram Moolenaaraf92ee82007-10-07 13:45:08 +00001169# ifdef FEAT_CLIPBOARD
Bram Moolenaar473de612013-06-08 18:19:48 +02001170 vim_regfree(clip_exclude_prog);
Bram Moolenaaraf92ee82007-10-07 13:45:08 +00001171# endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001172 vim_free(last_cmdline);
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001173# ifdef FEAT_CMDHIST
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001174 vim_free(new_last_cmdline);
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001175# endif
Bram Moolenaar238a5642006-02-21 22:12:05 +00001176 set_keep_msg(NULL, 0);
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001177 vim_free(ff_expand_buffer);
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001178
1179 /* Clear cmdline history. */
1180 p_hi = 0;
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001181# ifdef FEAT_CMDHIST
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001182 init_history();
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001183# endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001184
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001185#ifdef FEAT_QUICKFIX
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001186 {
Bram Moolenaarbd1e5d22009-04-29 09:02:44 +00001187 win_T *win;
1188 tabpage_T *tab;
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001189
1190 qf_free_all(NULL);
1191 /* Free all location lists */
Bram Moolenaarbd1e5d22009-04-29 09:02:44 +00001192 FOR_ALL_TAB_WINDOWS(tab, win)
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001193 qf_free_all(win);
1194 }
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001195#endif
1196
1197 /* Close all script inputs. */
1198 close_all_scripts();
1199
1200#if defined(FEAT_WINDOWS)
1201 /* Destroy all windows. Must come before freeing buffers. */
1202 win_free_all();
1203#endif
1204
Bram Moolenaar2a329742008-04-01 12:53:43 +00001205 /* Free all buffers. Reset 'autochdir' to avoid accessing things that
1206 * were freed already. */
1207#ifdef FEAT_AUTOCHDIR
1208 p_acd = FALSE;
1209#endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001210 for (buf = firstbuf; buf != NULL; )
1211 {
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001212 bufref_T bufref;
1213
1214 set_bufref(&bufref, buf);
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001215 nextbuf = buf->b_next;
Bram Moolenaar42ec6562012-02-22 14:58:37 +01001216 close_buffer(NULL, buf, DOBUF_WIPE, FALSE);
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001217 if (bufref_valid(&bufref))
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001218 buf = nextbuf; /* didn't work, try next one */
1219 else
1220 buf = firstbuf;
1221 }
1222
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001223#ifdef FEAT_ARABIC
1224 free_cmdline_buf();
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001225#endif
1226
1227 /* Clear registers. */
1228 clear_registers();
1229 ResetRedobuff();
1230 ResetRedobuff();
1231
Bram Moolenaar85c79d32007-02-20 01:59:20 +00001232#if defined(FEAT_CLIENTSERVER) && defined(FEAT_X11)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001233 vim_free(serverDelayedStartName);
1234#endif
1235
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001236 /* highlight info */
1237 free_highlight();
1238
Bram Moolenaar1e498f52005-06-26 22:29:44 +00001239 reset_last_sourcing();
1240
Bram Moolenaar7d47b6e2006-03-15 22:59:18 +00001241#ifdef FEAT_WINDOWS
Bram Moolenaar06a89a52006-04-29 22:01:03 +00001242 free_tabpage(first_tabpage);
1243 first_tabpage = NULL;
Bram Moolenaar7d47b6e2006-03-15 22:59:18 +00001244#endif
1245
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001246# ifdef UNIX
1247 /* Machine-specific free. */
1248 mch_free_mem();
1249# endif
1250
1251 /* message history */
1252 for (;;)
1253 if (delete_first_msg() == FAIL)
1254 break;
1255
Bram Moolenaar655da312016-05-28 22:22:34 +02001256# ifdef FEAT_JOB_CHANNEL
1257 channel_free_all();
Bram Moolenaar655da312016-05-28 22:22:34 +02001258# endif
Bram Moolenaar623e2632016-07-30 22:47:56 +02001259#ifdef FEAT_TIMERS
1260 timer_free_all();
1261#endif
Bram Moolenaar437bafe2016-08-01 15:40:54 +02001262# ifdef FEAT_EVAL
1263 /* must be after channel_free_all() with unrefs partials */
1264 eval_clear();
1265# endif
1266# ifdef FEAT_JOB_CHANNEL
1267 /* must be after eval_clear() with unrefs jobs */
1268 job_free_all();
1269# endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001270
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001271 free_termoptions();
1272
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001273 /* screenlines (can't display anything now!) */
1274 free_screenlines();
1275
1276#if defined(USE_XSMP)
1277 xsmp_close();
1278#endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001279#ifdef FEAT_GUI_GTK
1280 gui_mch_free_all();
1281#endif
1282 clear_hl_tables();
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001283
1284 vim_free(IObuff);
1285 vim_free(NameBuff);
1286}
1287#endif
1288
Bram Moolenaar071d4272004-06-13 20:20:40 +00001289/*
Bram Moolenaare980d8a2010-12-08 13:11:21 +01001290 * Copy "string" into newly allocated memory.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001291 */
1292 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001293vim_strsave(char_u *string)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001294{
1295 char_u *p;
1296 unsigned len;
1297
1298 len = (unsigned)STRLEN(string) + 1;
1299 p = alloc(len);
1300 if (p != NULL)
1301 mch_memmove(p, string, (size_t)len);
1302 return p;
1303}
1304
Bram Moolenaare980d8a2010-12-08 13:11:21 +01001305/*
1306 * Copy up to "len" bytes of "string" into newly allocated memory and
1307 * terminate with a NUL.
1308 * The allocated memory always has size "len + 1", also when "string" is
1309 * shorter.
1310 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001311 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001312vim_strnsave(char_u *string, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001313{
1314 char_u *p;
1315
1316 p = alloc((unsigned)(len + 1));
1317 if (p != NULL)
1318 {
1319 STRNCPY(p, string, len);
1320 p[len] = NUL;
1321 }
1322 return p;
1323}
1324
Bram Moolenaar071d4272004-06-13 20:20:40 +00001325/*
1326 * Same as vim_strsave(), but any characters found in esc_chars are preceded
1327 * by a backslash.
1328 */
1329 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001330vim_strsave_escaped(char_u *string, char_u *esc_chars)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001331{
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001332 return vim_strsave_escaped_ext(string, esc_chars, '\\', FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001333}
1334
1335/*
1336 * Same as vim_strsave_escaped(), but when "bsl" is TRUE also escape
1337 * characters where rem_backslash() would remove the backslash.
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001338 * Escape the characters with "cc".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001339 */
1340 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001341vim_strsave_escaped_ext(
1342 char_u *string,
1343 char_u *esc_chars,
1344 int cc,
1345 int bsl)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001346{
1347 char_u *p;
1348 char_u *p2;
1349 char_u *escaped_string;
1350 unsigned length;
1351#ifdef FEAT_MBYTE
1352 int l;
1353#endif
1354
1355 /*
1356 * First count the number of backslashes required.
1357 * Then allocate the memory and insert them.
1358 */
1359 length = 1; /* count the trailing NUL */
1360 for (p = string; *p; p++)
1361 {
1362#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001363 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001364 {
1365 length += l; /* count a multibyte char */
1366 p += l - 1;
1367 continue;
1368 }
1369#endif
1370 if (vim_strchr(esc_chars, *p) != NULL || (bsl && rem_backslash(p)))
1371 ++length; /* count a backslash */
1372 ++length; /* count an ordinary char */
1373 }
1374 escaped_string = alloc(length);
1375 if (escaped_string != NULL)
1376 {
1377 p2 = escaped_string;
1378 for (p = string; *p; p++)
1379 {
1380#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001381 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001382 {
1383 mch_memmove(p2, p, (size_t)l);
1384 p2 += l;
1385 p += l - 1; /* skip multibyte char */
1386 continue;
1387 }
1388#endif
1389 if (vim_strchr(esc_chars, *p) != NULL || (bsl && rem_backslash(p)))
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001390 *p2++ = cc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001391 *p2++ = *p;
1392 }
1393 *p2 = NUL;
1394 }
1395 return escaped_string;
1396}
1397
Bram Moolenaar7693ec62008-07-24 18:29:37 +00001398/*
1399 * Return TRUE when 'shell' has "csh" in the tail.
1400 */
1401 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001402csh_like_shell(void)
Bram Moolenaar7693ec62008-07-24 18:29:37 +00001403{
1404 return (strstr((char *)gettail(p_sh), "csh") != NULL);
1405}
Bram Moolenaar7693ec62008-07-24 18:29:37 +00001406
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001407/*
1408 * Escape "string" for use as a shell argument with system().
Bram Moolenaar21160b92009-11-11 15:56:10 +00001409 * This uses single quotes, except when we know we need to use double quotes
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001410 * (MS-DOS and MS-Windows without 'shellslash' set).
Bram Moolenaarffd66c42008-07-16 20:43:37 +00001411 * Escape a newline, depending on the 'shell' option.
1412 * When "do_special" is TRUE also replace "!", "%", "#" and things starting
1413 * with "<" like "<cfile>".
Bram Moolenaar26df0922014-02-23 23:39:13 +01001414 * When "do_newline" is FALSE do not escape newline unless it is csh shell.
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001415 * Returns the result in allocated memory, NULL if we have run out.
1416 */
1417 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001418vim_strsave_shellescape(char_u *string, int do_special, int do_newline)
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001419{
1420 unsigned length;
1421 char_u *p;
1422 char_u *d;
1423 char_u *escaped_string;
Bram Moolenaar05bb9532008-07-04 09:44:11 +00001424 int l;
Bram Moolenaarffd66c42008-07-16 20:43:37 +00001425 int csh_like;
1426
1427 /* Only csh and similar shells expand '!' within single quotes. For sh and
1428 * the like we must not put a backslash before it, it will be taken
1429 * literally. If do_special is set the '!' will be escaped twice.
1430 * Csh also needs to have "\n" escaped twice when do_special is set. */
Bram Moolenaar7693ec62008-07-24 18:29:37 +00001431 csh_like = csh_like_shell();
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001432
1433 /* First count the number of extra bytes required. */
Bram Moolenaar77f66d62007-02-20 02:16:18 +00001434 length = (unsigned)STRLEN(string) + 3; /* two quotes and a trailing NUL */
Bram Moolenaar91acfff2017-03-12 19:22:36 +01001435 for (p = string; *p != NUL; MB_PTR_ADV(p))
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001436 {
Bram Moolenaarcea912a2016-10-12 14:20:24 +02001437# ifdef WIN32
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001438 if (!p_ssl)
1439 {
1440 if (*p == '"')
1441 ++length; /* " -> "" */
1442 }
1443 else
1444# endif
1445 if (*p == '\'')
1446 length += 3; /* ' => '\'' */
Bram Moolenaar26df0922014-02-23 23:39:13 +01001447 if ((*p == '\n' && (csh_like || do_newline))
1448 || (*p == '!' && (csh_like || do_special)))
Bram Moolenaarffd66c42008-07-16 20:43:37 +00001449 {
1450 ++length; /* insert backslash */
1451 if (csh_like && do_special)
1452 ++length; /* insert backslash */
1453 }
Bram Moolenaar05bb9532008-07-04 09:44:11 +00001454 if (do_special && find_cmdline_var(p, &l) >= 0)
1455 {
1456 ++length; /* insert backslash */
1457 p += l - 1;
1458 }
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001459 }
1460
1461 /* Allocate memory for the result and fill it. */
1462 escaped_string = alloc(length);
1463 if (escaped_string != NULL)
1464 {
1465 d = escaped_string;
1466
1467 /* add opening quote */
Bram Moolenaarcea912a2016-10-12 14:20:24 +02001468# ifdef WIN32
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001469 if (!p_ssl)
1470 *d++ = '"';
1471 else
1472# endif
1473 *d++ = '\'';
1474
1475 for (p = string; *p != NUL; )
1476 {
Bram Moolenaarcea912a2016-10-12 14:20:24 +02001477# ifdef WIN32
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001478 if (!p_ssl)
1479 {
1480 if (*p == '"')
1481 {
1482 *d++ = '"';
1483 *d++ = '"';
1484 ++p;
1485 continue;
1486 }
1487 }
1488 else
1489# endif
1490 if (*p == '\'')
1491 {
Bram Moolenaar05bb9532008-07-04 09:44:11 +00001492 *d++ = '\'';
1493 *d++ = '\\';
1494 *d++ = '\'';
1495 *d++ = '\'';
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001496 ++p;
1497 continue;
1498 }
Bram Moolenaar26df0922014-02-23 23:39:13 +01001499 if ((*p == '\n' && (csh_like || do_newline))
1500 || (*p == '!' && (csh_like || do_special)))
Bram Moolenaarffd66c42008-07-16 20:43:37 +00001501 {
1502 *d++ = '\\';
1503 if (csh_like && do_special)
1504 *d++ = '\\';
1505 *d++ = *p++;
1506 continue;
1507 }
Bram Moolenaar05bb9532008-07-04 09:44:11 +00001508 if (do_special && find_cmdline_var(p, &l) >= 0)
1509 {
1510 *d++ = '\\'; /* insert backslash */
1511 while (--l >= 0) /* copy the var */
1512 *d++ = *p++;
Bram Moolenaar099d01d2009-11-25 16:14:45 +00001513 continue;
Bram Moolenaar05bb9532008-07-04 09:44:11 +00001514 }
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001515
1516 MB_COPY_CHAR(p, d);
1517 }
1518
1519 /* add terminating quote and finish with a NUL */
Bram Moolenaarcea912a2016-10-12 14:20:24 +02001520# ifdef WIN32
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001521 if (!p_ssl)
1522 *d++ = '"';
1523 else
1524# endif
1525 *d++ = '\'';
1526 *d = NUL;
1527 }
1528
1529 return escaped_string;
1530}
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001531
Bram Moolenaar071d4272004-06-13 20:20:40 +00001532/*
1533 * Like vim_strsave(), but make all characters uppercase.
1534 * This uses ASCII lower-to-upper case translation, language independent.
1535 */
1536 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001537vim_strsave_up(char_u *string)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001538{
1539 char_u *p1;
1540
1541 p1 = vim_strsave(string);
1542 vim_strup(p1);
1543 return p1;
1544}
1545
1546/*
1547 * Like vim_strnsave(), but make all characters uppercase.
1548 * This uses ASCII lower-to-upper case translation, language independent.
1549 */
1550 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001551vim_strnsave_up(char_u *string, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001552{
1553 char_u *p1;
1554
1555 p1 = vim_strnsave(string, len);
1556 vim_strup(p1);
1557 return p1;
1558}
1559
1560/*
1561 * ASCII lower-to-upper case translation, language independent.
1562 */
1563 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001564vim_strup(
1565 char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001566{
1567 char_u *p2;
1568 int c;
1569
1570 if (p != NULL)
1571 {
1572 p2 = p;
1573 while ((c = *p2) != NUL)
1574#ifdef EBCDIC
1575 *p2++ = isalpha(c) ? toupper(c) : c;
1576#else
1577 *p2++ = (c < 'a' || c > 'z') ? c : (c - 0x20);
1578#endif
1579 }
1580}
1581
Bram Moolenaarc4956c82006-03-12 21:58:43 +00001582#if defined(FEAT_EVAL) || defined(FEAT_SPELL) || defined(PROTO)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001583/*
1584 * Make string "s" all upper-case and return it in allocated memory.
1585 * Handles multi-byte characters as well as possible.
1586 * Returns NULL when out of memory.
1587 */
1588 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001589strup_save(char_u *orig)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001590{
1591 char_u *p;
1592 char_u *res;
1593
1594 res = p = vim_strsave(orig);
1595
1596 if (res != NULL)
1597 while (*p != NUL)
1598 {
1599# ifdef FEAT_MBYTE
1600 int l;
1601
1602 if (enc_utf8)
1603 {
1604 int c, uc;
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001605 int newl;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001606 char_u *s;
1607
1608 c = utf_ptr2char(p);
1609 uc = utf_toupper(c);
1610
1611 /* Reallocate string when byte count changes. This is rare,
1612 * thus it's OK to do another malloc()/free(). */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001613 l = utf_ptr2len(p);
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001614 newl = utf_char2len(uc);
1615 if (newl != l)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001616 {
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001617 s = alloc((unsigned)STRLEN(res) + 1 + newl - l);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001618 if (s == NULL)
Bram Moolenaarcc5b22b2017-01-26 22:51:56 +01001619 {
1620 vim_free(res);
1621 return NULL;
1622 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001623 mch_memmove(s, res, p - res);
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001624 STRCPY(s + (p - res) + newl, p + l);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001625 p = s + (p - res);
1626 vim_free(res);
1627 res = s;
1628 }
1629
1630 utf_char2bytes(uc, p);
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001631 p += newl;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001632 }
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001633 else if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001634 p += l; /* skip multi-byte character */
1635 else
1636# endif
1637 {
1638 *p = TOUPPER_LOC(*p); /* note that toupper() can be a macro */
1639 p++;
1640 }
1641 }
1642
1643 return res;
1644}
Bram Moolenaarcc5b22b2017-01-26 22:51:56 +01001645
1646/*
1647 * Make string "s" all lower-case and return it in allocated memory.
1648 * Handles multi-byte characters as well as possible.
1649 * Returns NULL when out of memory.
1650 */
1651 char_u *
1652strlow_save(char_u *orig)
1653{
1654 char_u *p;
1655 char_u *res;
1656
1657 res = p = vim_strsave(orig);
1658
1659 if (res != NULL)
1660 while (*p != NUL)
1661 {
1662# ifdef FEAT_MBYTE
1663 int l;
1664
1665 if (enc_utf8)
1666 {
1667 int c, lc;
1668 int newl;
1669 char_u *s;
1670
1671 c = utf_ptr2char(p);
1672 lc = utf_tolower(c);
1673
1674 /* Reallocate string when byte count changes. This is rare,
1675 * thus it's OK to do another malloc()/free(). */
1676 l = utf_ptr2len(p);
1677 newl = utf_char2len(lc);
1678 if (newl != l)
1679 {
1680 s = alloc((unsigned)STRLEN(res) + 1 + newl - l);
1681 if (s == NULL)
1682 {
1683 vim_free(res);
1684 return NULL;
1685 }
1686 mch_memmove(s, res, p - res);
1687 STRCPY(s + (p - res) + newl, p + l);
1688 p = s + (p - res);
1689 vim_free(res);
1690 res = s;
1691 }
1692
1693 utf_char2bytes(lc, p);
1694 p += newl;
1695 }
1696 else if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
1697 p += l; /* skip multi-byte character */
1698 else
1699# endif
1700 {
1701 *p = TOLOWER_LOC(*p); /* note that tolower() can be a macro */
1702 p++;
1703 }
1704 }
1705
1706 return res;
1707}
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001708#endif
1709
Bram Moolenaar071d4272004-06-13 20:20:40 +00001710/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001711 * delete spaces at the end of a string
1712 */
1713 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001714del_trailing_spaces(char_u *ptr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001715{
1716 char_u *q;
1717
1718 q = ptr + STRLEN(ptr);
Bram Moolenaar1c465442017-03-12 20:10:05 +01001719 while (--q > ptr && VIM_ISWHITE(q[0]) && q[-1] != '\\' && q[-1] != Ctrl_V)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001720 *q = NUL;
1721}
1722
1723/*
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001724 * Like strncpy(), but always terminate the result with one NUL.
Bram Moolenaard042c562005-06-30 22:04:15 +00001725 * "to" must be "len + 1" long!
Bram Moolenaar071d4272004-06-13 20:20:40 +00001726 */
1727 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001728vim_strncpy(char_u *to, char_u *from, size_t len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001729{
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001730 STRNCPY(to, from, len);
1731 to[len] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001732}
1733
1734/*
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02001735 * Like strcat(), but make sure the result fits in "tosize" bytes and is
Bram Moolenaar45600ce2017-01-27 21:54:07 +01001736 * always NUL terminated. "from" and "to" may overlap.
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02001737 */
1738 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001739vim_strcat(char_u *to, char_u *from, size_t tosize)
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02001740{
1741 size_t tolen = STRLEN(to);
1742 size_t fromlen = STRLEN(from);
1743
1744 if (tolen + fromlen + 1 > tosize)
1745 {
1746 mch_memmove(to + tolen, from, tosize - tolen - 1);
1747 to[tosize - 1] = NUL;
1748 }
1749 else
Bram Moolenaar45600ce2017-01-27 21:54:07 +01001750 mch_memmove(to + tolen, from, fromlen + 1);
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02001751}
1752
1753/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001754 * Isolate one part of a string option where parts are separated with
1755 * "sep_chars".
Bram Moolenaar83bab712005-08-01 21:58:57 +00001756 * The part is copied into "buf[maxlen]".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001757 * "*option" is advanced to the next part.
1758 * The length is returned.
1759 */
1760 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001761copy_option_part(
1762 char_u **option,
1763 char_u *buf,
1764 int maxlen,
1765 char *sep_chars)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001766{
1767 int len = 0;
1768 char_u *p = *option;
1769
1770 /* skip '.' at start of option part, for 'suffixes' */
1771 if (*p == '.')
1772 buf[len++] = *p++;
1773 while (*p != NUL && vim_strchr((char_u *)sep_chars, *p) == NULL)
1774 {
1775 /*
1776 * Skip backslash before a separator character and space.
1777 */
1778 if (p[0] == '\\' && vim_strchr((char_u *)sep_chars, p[1]) != NULL)
1779 ++p;
1780 if (len < maxlen - 1)
1781 buf[len++] = *p;
1782 ++p;
1783 }
1784 buf[len] = NUL;
1785
1786 if (*p != NUL && *p != ',') /* skip non-standard separator */
1787 ++p;
1788 p = skip_to_option_part(p); /* p points to next file name */
1789
1790 *option = p;
1791 return len;
1792}
1793
1794/*
Bram Moolenaar4770d092006-01-12 23:22:24 +00001795 * Replacement for free() that ignores NULL pointers.
1796 * Also skip free() when exiting for sure, this helps when we caught a deadly
1797 * signal that was caused by a crash in free().
Bram Moolenaar071d4272004-06-13 20:20:40 +00001798 */
1799 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001800vim_free(void *x)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001801{
Bram Moolenaar4770d092006-01-12 23:22:24 +00001802 if (x != NULL && !really_exiting)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001803 {
1804#ifdef MEM_PROFILE
1805 mem_pre_free(&x);
1806#endif
1807 free(x);
1808 }
1809}
1810
1811#ifndef HAVE_MEMSET
1812 void *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001813vim_memset(void *ptr, int c, size_t size)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001814{
1815 char *p = ptr;
1816
1817 while (size-- > 0)
1818 *p++ = c;
1819 return ptr;
1820}
1821#endif
1822
Bram Moolenaar071d4272004-06-13 20:20:40 +00001823#if (!defined(HAVE_STRCASECMP) && !defined(HAVE_STRICMP)) || defined(PROTO)
1824/*
1825 * Compare two strings, ignoring case, using current locale.
1826 * Doesn't work for multi-byte characters.
1827 * return 0 for match, < 0 for smaller, > 0 for bigger
1828 */
1829 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001830vim_stricmp(char *s1, char *s2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001831{
1832 int i;
1833
1834 for (;;)
1835 {
1836 i = (int)TOLOWER_LOC(*s1) - (int)TOLOWER_LOC(*s2);
1837 if (i != 0)
1838 return i; /* this character different */
1839 if (*s1 == NUL)
1840 break; /* strings match until NUL */
1841 ++s1;
1842 ++s2;
1843 }
1844 return 0; /* strings match */
1845}
1846#endif
1847
1848#if (!defined(HAVE_STRNCASECMP) && !defined(HAVE_STRNICMP)) || defined(PROTO)
1849/*
1850 * Compare two strings, for length "len", ignoring case, using current locale.
1851 * Doesn't work for multi-byte characters.
1852 * return 0 for match, < 0 for smaller, > 0 for bigger
1853 */
1854 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001855vim_strnicmp(char *s1, char *s2, size_t len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001856{
1857 int i;
1858
1859 while (len > 0)
1860 {
1861 i = (int)TOLOWER_LOC(*s1) - (int)TOLOWER_LOC(*s2);
1862 if (i != 0)
1863 return i; /* this character different */
1864 if (*s1 == NUL)
1865 break; /* strings match until NUL */
1866 ++s1;
1867 ++s2;
1868 --len;
1869 }
1870 return 0; /* strings match */
1871}
1872#endif
1873
Bram Moolenaar071d4272004-06-13 20:20:40 +00001874/*
1875 * Version of strchr() and strrchr() that handle unsigned char strings
Bram Moolenaar05159a02005-02-26 23:04:13 +00001876 * with characters from 128 to 255 correctly. It also doesn't return a
1877 * pointer to the NUL at the end of the string.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001878 */
1879 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001880vim_strchr(char_u *string, int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001881{
1882 char_u *p;
1883 int b;
1884
1885 p = string;
1886#ifdef FEAT_MBYTE
1887 if (enc_utf8 && c >= 0x80)
1888 {
1889 while (*p != NUL)
1890 {
Bram Moolenaarace95982017-03-29 17:30:27 +02001891 int l = utfc_ptr2len(p);
Bram Moolenaard82a2a92015-04-21 14:02:35 +02001892
1893 /* Avoid matching an illegal byte here. */
1894 if (utf_ptr2char(p) == c && l > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001895 return p;
Bram Moolenaard82a2a92015-04-21 14:02:35 +02001896 p += l;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001897 }
1898 return NULL;
1899 }
1900 if (enc_dbcs != 0 && c > 255)
1901 {
1902 int n2 = c & 0xff;
1903
1904 c = ((unsigned)c >> 8) & 0xff;
1905 while ((b = *p) != NUL)
1906 {
1907 if (b == c && p[1] == n2)
1908 return p;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001909 p += (*mb_ptr2len)(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001910 }
1911 return NULL;
1912 }
1913 if (has_mbyte)
1914 {
1915 while ((b = *p) != NUL)
1916 {
1917 if (b == c)
1918 return p;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001919 p += (*mb_ptr2len)(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001920 }
1921 return NULL;
1922 }
1923#endif
1924 while ((b = *p) != NUL)
1925 {
1926 if (b == c)
1927 return p;
1928 ++p;
1929 }
1930 return NULL;
1931}
1932
1933/*
Bram Moolenaar05159a02005-02-26 23:04:13 +00001934 * Version of strchr() that only works for bytes and handles unsigned char
1935 * strings with characters above 128 correctly. It also doesn't return a
1936 * pointer to the NUL at the end of the string.
1937 */
1938 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001939vim_strbyte(char_u *string, int c)
Bram Moolenaar05159a02005-02-26 23:04:13 +00001940{
1941 char_u *p = string;
1942
1943 while (*p != NUL)
1944 {
1945 if (*p == c)
1946 return p;
1947 ++p;
1948 }
1949 return NULL;
1950}
1951
1952/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001953 * Search for last occurrence of "c" in "string".
Bram Moolenaarac6e65f2005-08-29 22:25:38 +00001954 * Return NULL if not found.
Bram Moolenaar05159a02005-02-26 23:04:13 +00001955 * Does not handle multi-byte char for "c"!
Bram Moolenaar071d4272004-06-13 20:20:40 +00001956 */
1957 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001958vim_strrchr(char_u *string, int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001959{
1960 char_u *retval = NULL;
Bram Moolenaar05159a02005-02-26 23:04:13 +00001961 char_u *p = string;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001962
Bram Moolenaar05159a02005-02-26 23:04:13 +00001963 while (*p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001964 {
Bram Moolenaar05159a02005-02-26 23:04:13 +00001965 if (*p == c)
1966 retval = p;
Bram Moolenaar91acfff2017-03-12 19:22:36 +01001967 MB_PTR_ADV(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001968 }
1969 return retval;
1970}
1971
1972/*
1973 * Vim's version of strpbrk(), in case it's missing.
1974 * Don't generate a prototype for this, causes problems when it's not used.
1975 */
1976#ifndef PROTO
1977# ifndef HAVE_STRPBRK
1978# ifdef vim_strpbrk
1979# undef vim_strpbrk
1980# endif
1981 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001982vim_strpbrk(char_u *s, char_u *charset)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001983{
1984 while (*s)
1985 {
1986 if (vim_strchr(charset, *s) != NULL)
1987 return s;
Bram Moolenaar91acfff2017-03-12 19:22:36 +01001988 MB_PTR_ADV(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001989 }
1990 return NULL;
1991}
1992# endif
1993#endif
1994
1995/*
1996 * Vim has its own isspace() function, because on some machines isspace()
1997 * can't handle characters above 128.
1998 */
1999 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002000vim_isspace(int x)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002001{
2002 return ((x >= 9 && x <= 13) || x == ' ');
2003}
2004
2005/************************************************************************
Bram Moolenaar383f9bc2005-01-19 22:18:32 +00002006 * Functions for handling growing arrays.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002007 */
2008
2009/*
2010 * Clear an allocated growing array.
2011 */
2012 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002013ga_clear(garray_T *gap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002014{
2015 vim_free(gap->ga_data);
2016 ga_init(gap);
2017}
2018
2019/*
2020 * Clear a growing array that contains a list of strings.
2021 */
2022 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002023ga_clear_strings(garray_T *gap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002024{
2025 int i;
2026
2027 for (i = 0; i < gap->ga_len; ++i)
2028 vim_free(((char_u **)(gap->ga_data))[i]);
2029 ga_clear(gap);
2030}
2031
2032/*
2033 * Initialize a growing array. Don't forget to set ga_itemsize and
2034 * ga_growsize! Or use ga_init2().
2035 */
2036 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002037ga_init(garray_T *gap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002038{
2039 gap->ga_data = NULL;
Bram Moolenaar86b68352004-12-27 21:59:20 +00002040 gap->ga_maxlen = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002041 gap->ga_len = 0;
2042}
2043
2044 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002045ga_init2(garray_T *gap, int itemsize, int growsize)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002046{
2047 ga_init(gap);
2048 gap->ga_itemsize = itemsize;
2049 gap->ga_growsize = growsize;
2050}
2051
2052/*
2053 * Make room in growing array "gap" for at least "n" items.
2054 * Return FAIL for failure, OK otherwise.
2055 */
2056 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002057ga_grow(garray_T *gap, int n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002058{
Bram Moolenaar7282bc32012-02-22 18:12:32 +01002059 size_t old_len;
2060 size_t new_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002061 char_u *pp;
2062
Bram Moolenaar86b68352004-12-27 21:59:20 +00002063 if (gap->ga_maxlen - gap->ga_len < n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002064 {
2065 if (n < gap->ga_growsize)
2066 n = gap->ga_growsize;
Bram Moolenaar7282bc32012-02-22 18:12:32 +01002067 new_len = gap->ga_itemsize * (gap->ga_len + n);
2068 pp = (gap->ga_data == NULL)
Bram Moolenaar4336cdf2012-02-29 13:58:47 +01002069 ? alloc((unsigned)new_len) : vim_realloc(gap->ga_data, new_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002070 if (pp == NULL)
2071 return FAIL;
Bram Moolenaar7282bc32012-02-22 18:12:32 +01002072 old_len = gap->ga_itemsize * gap->ga_maxlen;
2073 vim_memset(pp + old_len, 0, new_len - old_len);
Bram Moolenaar86b68352004-12-27 21:59:20 +00002074 gap->ga_maxlen = gap->ga_len + n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002075 gap->ga_data = pp;
2076 }
2077 return OK;
2078}
2079
2080/*
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02002081 * For a growing array that contains a list of strings: concatenate all the
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02002082 * strings with a separating "sep".
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02002083 * Returns NULL when out of memory.
2084 */
2085 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01002086ga_concat_strings(garray_T *gap, char *sep)
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02002087{
2088 int i;
2089 int len = 0;
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02002090 int sep_len = (int)STRLEN(sep);
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02002091 char_u *s;
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02002092 char_u *p;
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02002093
2094 for (i = 0; i < gap->ga_len; ++i)
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02002095 len += (int)STRLEN(((char_u **)(gap->ga_data))[i]) + sep_len;
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02002096
2097 s = alloc(len + 1);
2098 if (s != NULL)
2099 {
2100 *s = NUL;
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02002101 p = s;
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02002102 for (i = 0; i < gap->ga_len; ++i)
2103 {
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02002104 if (p != s)
2105 {
2106 STRCPY(p, sep);
2107 p += sep_len;
2108 }
2109 STRCPY(p, ((char_u **)(gap->ga_data))[i]);
2110 p += STRLEN(p);
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02002111 }
2112 }
2113 return s;
2114}
2115
Bram Moolenaar5a66dfb2017-03-01 20:40:39 +01002116#if defined(FEAT_VIMINFO) || defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaarb20e3342016-01-18 23:29:01 +01002117/*
2118 * Make a copy of string "p" and add it to "gap".
2119 * When out of memory nothing changes.
2120 */
2121 void
2122ga_add_string(garray_T *gap, char_u *p)
2123{
2124 char_u *cp = vim_strsave(p);
2125
2126 if (cp != NULL)
2127 {
2128 if (ga_grow(gap, 1) == OK)
2129 ((char_u **)(gap->ga_data))[gap->ga_len++] = cp;
2130 else
2131 vim_free(cp);
2132 }
2133}
2134#endif
2135
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02002136/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002137 * Concatenate a string to a growarray which contains characters.
Bram Moolenaar43345542015-11-29 17:35:35 +01002138 * When "s" is NULL does not do anything.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002139 * Note: Does NOT copy the NUL at the end!
2140 */
2141 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002142ga_concat(garray_T *gap, char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002143{
Bram Moolenaar43345542015-11-29 17:35:35 +01002144 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002145
Bram Moolenaar478af672017-04-10 22:22:42 +02002146 if (s == NULL || *s == NUL)
Bram Moolenaar43345542015-11-29 17:35:35 +01002147 return;
2148 len = (int)STRLEN(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002149 if (ga_grow(gap, len) == OK)
2150 {
2151 mch_memmove((char *)gap->ga_data + gap->ga_len, s, (size_t)len);
2152 gap->ga_len += len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002153 }
2154}
2155
2156/*
2157 * Append one byte to a growarray which contains bytes.
2158 */
2159 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002160ga_append(garray_T *gap, int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002161{
2162 if (ga_grow(gap, 1) == OK)
2163 {
2164 *((char *)gap->ga_data + gap->ga_len) = c;
2165 ++gap->ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002166 }
2167}
2168
Bram Moolenaar597a4222014-06-25 14:39:50 +02002169#if (defined(UNIX) && !defined(USE_SYSTEM)) || defined(WIN3264) \
2170 || defined(PROTO)
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02002171/*
2172 * Append the text in "gap" below the cursor line and clear "gap".
2173 */
2174 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002175append_ga_line(garray_T *gap)
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02002176{
2177 /* Remove trailing CR. */
2178 if (gap->ga_len > 0
2179 && !curbuf->b_p_bin
2180 && ((char_u *)gap->ga_data)[gap->ga_len - 1] == CAR)
2181 --gap->ga_len;
2182 ga_append(gap, NUL);
2183 ml_append(curwin->w_cursor.lnum++, gap->ga_data, 0, FALSE);
2184 gap->ga_len = 0;
2185}
2186#endif
2187
Bram Moolenaar071d4272004-06-13 20:20:40 +00002188/************************************************************************
2189 * functions that use lookup tables for various things, generally to do with
2190 * special key codes.
2191 */
2192
2193/*
2194 * Some useful tables.
2195 */
2196
2197static struct modmasktable
2198{
2199 short mod_mask; /* Bit-mask for particular key modifier */
2200 short mod_flag; /* Bit(s) for particular key modifier */
2201 char_u name; /* Single letter name of modifier */
2202} mod_mask_table[] =
2203{
2204 {MOD_MASK_ALT, MOD_MASK_ALT, (char_u)'M'},
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002205 {MOD_MASK_META, MOD_MASK_META, (char_u)'T'},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002206 {MOD_MASK_CTRL, MOD_MASK_CTRL, (char_u)'C'},
2207 {MOD_MASK_SHIFT, MOD_MASK_SHIFT, (char_u)'S'},
2208 {MOD_MASK_MULTI_CLICK, MOD_MASK_2CLICK, (char_u)'2'},
2209 {MOD_MASK_MULTI_CLICK, MOD_MASK_3CLICK, (char_u)'3'},
2210 {MOD_MASK_MULTI_CLICK, MOD_MASK_4CLICK, (char_u)'4'},
2211#ifdef MACOS
2212 {MOD_MASK_CMD, MOD_MASK_CMD, (char_u)'D'},
2213#endif
2214 /* 'A' must be the last one */
2215 {MOD_MASK_ALT, MOD_MASK_ALT, (char_u)'A'},
2216 {0, 0, NUL}
Bram Moolenaar423977d2017-01-22 15:05:12 +01002217 /* NOTE: when adding an entry, update MAX_KEY_NAME_LEN! */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002218};
2219
2220/*
2221 * Shifted key terminal codes and their unshifted equivalent.
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00002222 * Don't add mouse codes here, they are handled separately!
Bram Moolenaar071d4272004-06-13 20:20:40 +00002223 */
2224#define MOD_KEYS_ENTRY_SIZE 5
2225
2226static char_u modifier_keys_table[] =
2227{
2228/* mod mask with modifier without modifier */
2229 MOD_MASK_SHIFT, '&', '9', '@', '1', /* begin */
2230 MOD_MASK_SHIFT, '&', '0', '@', '2', /* cancel */
2231 MOD_MASK_SHIFT, '*', '1', '@', '4', /* command */
2232 MOD_MASK_SHIFT, '*', '2', '@', '5', /* copy */
2233 MOD_MASK_SHIFT, '*', '3', '@', '6', /* create */
2234 MOD_MASK_SHIFT, '*', '4', 'k', 'D', /* delete char */
2235 MOD_MASK_SHIFT, '*', '5', 'k', 'L', /* delete line */
2236 MOD_MASK_SHIFT, '*', '7', '@', '7', /* end */
2237 MOD_MASK_CTRL, KS_EXTRA, (int)KE_C_END, '@', '7', /* end */
2238 MOD_MASK_SHIFT, '*', '9', '@', '9', /* exit */
2239 MOD_MASK_SHIFT, '*', '0', '@', '0', /* find */
2240 MOD_MASK_SHIFT, '#', '1', '%', '1', /* help */
2241 MOD_MASK_SHIFT, '#', '2', 'k', 'h', /* home */
2242 MOD_MASK_CTRL, KS_EXTRA, (int)KE_C_HOME, 'k', 'h', /* home */
2243 MOD_MASK_SHIFT, '#', '3', 'k', 'I', /* insert */
2244 MOD_MASK_SHIFT, '#', '4', 'k', 'l', /* left arrow */
2245 MOD_MASK_CTRL, KS_EXTRA, (int)KE_C_LEFT, 'k', 'l', /* left arrow */
2246 MOD_MASK_SHIFT, '%', 'a', '%', '3', /* message */
2247 MOD_MASK_SHIFT, '%', 'b', '%', '4', /* move */
2248 MOD_MASK_SHIFT, '%', 'c', '%', '5', /* next */
2249 MOD_MASK_SHIFT, '%', 'd', '%', '7', /* options */
2250 MOD_MASK_SHIFT, '%', 'e', '%', '8', /* previous */
2251 MOD_MASK_SHIFT, '%', 'f', '%', '9', /* print */
2252 MOD_MASK_SHIFT, '%', 'g', '%', '0', /* redo */
2253 MOD_MASK_SHIFT, '%', 'h', '&', '3', /* replace */
2254 MOD_MASK_SHIFT, '%', 'i', 'k', 'r', /* right arr. */
2255 MOD_MASK_CTRL, KS_EXTRA, (int)KE_C_RIGHT, 'k', 'r', /* right arr. */
2256 MOD_MASK_SHIFT, '%', 'j', '&', '5', /* resume */
2257 MOD_MASK_SHIFT, '!', '1', '&', '6', /* save */
2258 MOD_MASK_SHIFT, '!', '2', '&', '7', /* suspend */
2259 MOD_MASK_SHIFT, '!', '3', '&', '8', /* undo */
2260 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_UP, 'k', 'u', /* up arrow */
2261 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_DOWN, 'k', 'd', /* down arrow */
2262
2263 /* vt100 F1 */
2264 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_XF1, KS_EXTRA, (int)KE_XF1,
2265 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_XF2, KS_EXTRA, (int)KE_XF2,
2266 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_XF3, KS_EXTRA, (int)KE_XF3,
2267 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_XF4, KS_EXTRA, (int)KE_XF4,
2268
2269 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F1, 'k', '1', /* F1 */
2270 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F2, 'k', '2',
2271 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F3, 'k', '3',
2272 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F4, 'k', '4',
2273 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F5, 'k', '5',
2274 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F6, 'k', '6',
2275 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F7, 'k', '7',
2276 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F8, 'k', '8',
2277 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F9, 'k', '9',
2278 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F10, 'k', ';', /* F10 */
2279
2280 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F11, 'F', '1',
2281 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F12, 'F', '2',
2282 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F13, 'F', '3',
2283 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F14, 'F', '4',
2284 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F15, 'F', '5',
2285 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F16, 'F', '6',
2286 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F17, 'F', '7',
2287 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F18, 'F', '8',
2288 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F19, 'F', '9',
2289 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F20, 'F', 'A',
2290
2291 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F21, 'F', 'B',
2292 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F22, 'F', 'C',
2293 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F23, 'F', 'D',
2294 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F24, 'F', 'E',
2295 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F25, 'F', 'F',
2296 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F26, 'F', 'G',
2297 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F27, 'F', 'H',
2298 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F28, 'F', 'I',
2299 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F29, 'F', 'J',
2300 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F30, 'F', 'K',
2301
2302 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F31, 'F', 'L',
2303 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F32, 'F', 'M',
2304 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F33, 'F', 'N',
2305 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F34, 'F', 'O',
2306 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F35, 'F', 'P',
2307 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F36, 'F', 'Q',
2308 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F37, 'F', 'R',
2309
2310 /* TAB pseudo code*/
2311 MOD_MASK_SHIFT, 'k', 'B', KS_EXTRA, (int)KE_TAB,
2312
2313 NUL
2314};
2315
2316static struct key_name_entry
2317{
2318 int key; /* Special key code or ascii value */
2319 char_u *name; /* Name of key */
2320} key_names_table[] =
2321{
2322 {' ', (char_u *)"Space"},
2323 {TAB, (char_u *)"Tab"},
2324 {K_TAB, (char_u *)"Tab"},
2325 {NL, (char_u *)"NL"},
2326 {NL, (char_u *)"NewLine"}, /* Alternative name */
2327 {NL, (char_u *)"LineFeed"}, /* Alternative name */
2328 {NL, (char_u *)"LF"}, /* Alternative name */
2329 {CAR, (char_u *)"CR"},
2330 {CAR, (char_u *)"Return"}, /* Alternative name */
2331 {CAR, (char_u *)"Enter"}, /* Alternative name */
2332 {K_BS, (char_u *)"BS"},
2333 {K_BS, (char_u *)"BackSpace"}, /* Alternative name */
2334 {ESC, (char_u *)"Esc"},
2335 {CSI, (char_u *)"CSI"},
2336 {K_CSI, (char_u *)"xCSI"},
2337 {'|', (char_u *)"Bar"},
2338 {'\\', (char_u *)"Bslash"},
2339 {K_DEL, (char_u *)"Del"},
2340 {K_DEL, (char_u *)"Delete"}, /* Alternative name */
2341 {K_KDEL, (char_u *)"kDel"},
2342 {K_UP, (char_u *)"Up"},
2343 {K_DOWN, (char_u *)"Down"},
2344 {K_LEFT, (char_u *)"Left"},
2345 {K_RIGHT, (char_u *)"Right"},
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002346 {K_XUP, (char_u *)"xUp"},
2347 {K_XDOWN, (char_u *)"xDown"},
2348 {K_XLEFT, (char_u *)"xLeft"},
2349 {K_XRIGHT, (char_u *)"xRight"},
Bram Moolenaarec2da362017-01-21 20:04:22 +01002350 {K_PS, (char_u *)"PasteStart"},
2351 {K_PE, (char_u *)"PasteEnd"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002352
2353 {K_F1, (char_u *)"F1"},
2354 {K_F2, (char_u *)"F2"},
2355 {K_F3, (char_u *)"F3"},
2356 {K_F4, (char_u *)"F4"},
2357 {K_F5, (char_u *)"F5"},
2358 {K_F6, (char_u *)"F6"},
2359 {K_F7, (char_u *)"F7"},
2360 {K_F8, (char_u *)"F8"},
2361 {K_F9, (char_u *)"F9"},
2362 {K_F10, (char_u *)"F10"},
2363
2364 {K_F11, (char_u *)"F11"},
2365 {K_F12, (char_u *)"F12"},
2366 {K_F13, (char_u *)"F13"},
2367 {K_F14, (char_u *)"F14"},
2368 {K_F15, (char_u *)"F15"},
2369 {K_F16, (char_u *)"F16"},
2370 {K_F17, (char_u *)"F17"},
2371 {K_F18, (char_u *)"F18"},
2372 {K_F19, (char_u *)"F19"},
2373 {K_F20, (char_u *)"F20"},
2374
2375 {K_F21, (char_u *)"F21"},
2376 {K_F22, (char_u *)"F22"},
2377 {K_F23, (char_u *)"F23"},
2378 {K_F24, (char_u *)"F24"},
2379 {K_F25, (char_u *)"F25"},
2380 {K_F26, (char_u *)"F26"},
2381 {K_F27, (char_u *)"F27"},
2382 {K_F28, (char_u *)"F28"},
2383 {K_F29, (char_u *)"F29"},
2384 {K_F30, (char_u *)"F30"},
2385
2386 {K_F31, (char_u *)"F31"},
2387 {K_F32, (char_u *)"F32"},
2388 {K_F33, (char_u *)"F33"},
2389 {K_F34, (char_u *)"F34"},
2390 {K_F35, (char_u *)"F35"},
2391 {K_F36, (char_u *)"F36"},
2392 {K_F37, (char_u *)"F37"},
2393
2394 {K_XF1, (char_u *)"xF1"},
2395 {K_XF2, (char_u *)"xF2"},
2396 {K_XF3, (char_u *)"xF3"},
2397 {K_XF4, (char_u *)"xF4"},
2398
2399 {K_HELP, (char_u *)"Help"},
2400 {K_UNDO, (char_u *)"Undo"},
2401 {K_INS, (char_u *)"Insert"},
2402 {K_INS, (char_u *)"Ins"}, /* Alternative name */
2403 {K_KINS, (char_u *)"kInsert"},
2404 {K_HOME, (char_u *)"Home"},
2405 {K_KHOME, (char_u *)"kHome"},
2406 {K_XHOME, (char_u *)"xHome"},
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002407 {K_ZHOME, (char_u *)"zHome"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002408 {K_END, (char_u *)"End"},
2409 {K_KEND, (char_u *)"kEnd"},
2410 {K_XEND, (char_u *)"xEnd"},
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002411 {K_ZEND, (char_u *)"zEnd"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002412 {K_PAGEUP, (char_u *)"PageUp"},
2413 {K_PAGEDOWN, (char_u *)"PageDown"},
2414 {K_KPAGEUP, (char_u *)"kPageUp"},
2415 {K_KPAGEDOWN, (char_u *)"kPageDown"},
2416
2417 {K_KPLUS, (char_u *)"kPlus"},
2418 {K_KMINUS, (char_u *)"kMinus"},
2419 {K_KDIVIDE, (char_u *)"kDivide"},
2420 {K_KMULTIPLY, (char_u *)"kMultiply"},
2421 {K_KENTER, (char_u *)"kEnter"},
2422 {K_KPOINT, (char_u *)"kPoint"},
2423
2424 {K_K0, (char_u *)"k0"},
2425 {K_K1, (char_u *)"k1"},
2426 {K_K2, (char_u *)"k2"},
2427 {K_K3, (char_u *)"k3"},
2428 {K_K4, (char_u *)"k4"},
2429 {K_K5, (char_u *)"k5"},
2430 {K_K6, (char_u *)"k6"},
2431 {K_K7, (char_u *)"k7"},
2432 {K_K8, (char_u *)"k8"},
2433 {K_K9, (char_u *)"k9"},
2434
2435 {'<', (char_u *)"lt"},
2436
2437 {K_MOUSE, (char_u *)"Mouse"},
Bram Moolenaar5af7d712012-01-20 17:15:51 +01002438#ifdef FEAT_MOUSE_NET
Bram Moolenaar071d4272004-06-13 20:20:40 +00002439 {K_NETTERM_MOUSE, (char_u *)"NetMouse"},
Bram Moolenaar5af7d712012-01-20 17:15:51 +01002440#endif
2441#ifdef FEAT_MOUSE_DEC
Bram Moolenaar071d4272004-06-13 20:20:40 +00002442 {K_DEC_MOUSE, (char_u *)"DecMouse"},
Bram Moolenaar5af7d712012-01-20 17:15:51 +01002443#endif
2444#ifdef FEAT_MOUSE_JSB
Bram Moolenaar071d4272004-06-13 20:20:40 +00002445 {K_JSBTERM_MOUSE, (char_u *)"JsbMouse"},
Bram Moolenaar5af7d712012-01-20 17:15:51 +01002446#endif
2447#ifdef FEAT_MOUSE_PTERM
Bram Moolenaar071d4272004-06-13 20:20:40 +00002448 {K_PTERM_MOUSE, (char_u *)"PtermMouse"},
Bram Moolenaar5af7d712012-01-20 17:15:51 +01002449#endif
2450#ifdef FEAT_MOUSE_URXVT
2451 {K_URXVT_MOUSE, (char_u *)"UrxvtMouse"},
2452#endif
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02002453#ifdef FEAT_MOUSE_SGR
2454 {K_SGR_MOUSE, (char_u *)"SgrMouse"},
Bram Moolenaara529ce02017-06-22 22:37:57 +02002455 {K_SGR_MOUSERELEASE, (char_u *)"SgrMouseRelelase"},
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02002456#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002457 {K_LEFTMOUSE, (char_u *)"LeftMouse"},
2458 {K_LEFTMOUSE_NM, (char_u *)"LeftMouseNM"},
2459 {K_LEFTDRAG, (char_u *)"LeftDrag"},
2460 {K_LEFTRELEASE, (char_u *)"LeftRelease"},
2461 {K_LEFTRELEASE_NM, (char_u *)"LeftReleaseNM"},
2462 {K_MIDDLEMOUSE, (char_u *)"MiddleMouse"},
2463 {K_MIDDLEDRAG, (char_u *)"MiddleDrag"},
2464 {K_MIDDLERELEASE, (char_u *)"MiddleRelease"},
2465 {K_RIGHTMOUSE, (char_u *)"RightMouse"},
2466 {K_RIGHTDRAG, (char_u *)"RightDrag"},
2467 {K_RIGHTRELEASE, (char_u *)"RightRelease"},
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02002468 {K_MOUSEDOWN, (char_u *)"ScrollWheelUp"},
2469 {K_MOUSEUP, (char_u *)"ScrollWheelDown"},
2470 {K_MOUSELEFT, (char_u *)"ScrollWheelRight"},
2471 {K_MOUSERIGHT, (char_u *)"ScrollWheelLeft"},
2472 {K_MOUSEDOWN, (char_u *)"MouseDown"}, /* OBSOLETE: Use */
2473 {K_MOUSEUP, (char_u *)"MouseUp"}, /* ScrollWheelXXX instead */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002474 {K_X1MOUSE, (char_u *)"X1Mouse"},
2475 {K_X1DRAG, (char_u *)"X1Drag"},
2476 {K_X1RELEASE, (char_u *)"X1Release"},
2477 {K_X2MOUSE, (char_u *)"X2Mouse"},
2478 {K_X2DRAG, (char_u *)"X2Drag"},
2479 {K_X2RELEASE, (char_u *)"X2Release"},
2480 {K_DROP, (char_u *)"Drop"},
2481 {K_ZERO, (char_u *)"Nul"},
2482#ifdef FEAT_EVAL
2483 {K_SNR, (char_u *)"SNR"},
2484#endif
2485 {K_PLUG, (char_u *)"Plug"},
Bram Moolenaar1db60c42014-09-23 16:49:46 +02002486 {K_CURSORHOLD, (char_u *)"CursorHold"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002487 {0, NULL}
Bram Moolenaar423977d2017-01-22 15:05:12 +01002488 /* NOTE: When adding a long name update MAX_KEY_NAME_LEN. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002489};
2490
2491#define KEY_NAMES_TABLE_LEN (sizeof(key_names_table) / sizeof(struct key_name_entry))
2492
2493#ifdef FEAT_MOUSE
2494static struct mousetable
2495{
2496 int pseudo_code; /* Code for pseudo mouse event */
2497 int button; /* Which mouse button is it? */
2498 int is_click; /* Is it a mouse button click event? */
2499 int is_drag; /* Is it a mouse drag event? */
2500} mouse_table[] =
2501{
2502 {(int)KE_LEFTMOUSE, MOUSE_LEFT, TRUE, FALSE},
2503#ifdef FEAT_GUI
2504 {(int)KE_LEFTMOUSE_NM, MOUSE_LEFT, TRUE, FALSE},
2505#endif
2506 {(int)KE_LEFTDRAG, MOUSE_LEFT, FALSE, TRUE},
2507 {(int)KE_LEFTRELEASE, MOUSE_LEFT, FALSE, FALSE},
2508#ifdef FEAT_GUI
2509 {(int)KE_LEFTRELEASE_NM, MOUSE_LEFT, FALSE, FALSE},
2510#endif
2511 {(int)KE_MIDDLEMOUSE, MOUSE_MIDDLE, TRUE, FALSE},
2512 {(int)KE_MIDDLEDRAG, MOUSE_MIDDLE, FALSE, TRUE},
2513 {(int)KE_MIDDLERELEASE, MOUSE_MIDDLE, FALSE, FALSE},
2514 {(int)KE_RIGHTMOUSE, MOUSE_RIGHT, TRUE, FALSE},
2515 {(int)KE_RIGHTDRAG, MOUSE_RIGHT, FALSE, TRUE},
2516 {(int)KE_RIGHTRELEASE, MOUSE_RIGHT, FALSE, FALSE},
2517 {(int)KE_X1MOUSE, MOUSE_X1, TRUE, FALSE},
2518 {(int)KE_X1DRAG, MOUSE_X1, FALSE, TRUE},
2519 {(int)KE_X1RELEASE, MOUSE_X1, FALSE, FALSE},
2520 {(int)KE_X2MOUSE, MOUSE_X2, TRUE, FALSE},
2521 {(int)KE_X2DRAG, MOUSE_X2, FALSE, TRUE},
2522 {(int)KE_X2RELEASE, MOUSE_X2, FALSE, FALSE},
2523 /* DRAG without CLICK */
2524 {(int)KE_IGNORE, MOUSE_RELEASE, FALSE, TRUE},
2525 /* RELEASE without CLICK */
2526 {(int)KE_IGNORE, MOUSE_RELEASE, FALSE, FALSE},
2527 {0, 0, 0, 0},
2528};
2529#endif /* FEAT_MOUSE */
2530
2531/*
2532 * Return the modifier mask bit (MOD_MASK_*) which corresponds to the given
2533 * modifier name ('S' for Shift, 'C' for Ctrl etc).
2534 */
2535 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002536name_to_mod_mask(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002537{
2538 int i;
2539
2540 c = TOUPPER_ASC(c);
2541 for (i = 0; mod_mask_table[i].mod_mask != 0; i++)
2542 if (c == mod_mask_table[i].name)
2543 return mod_mask_table[i].mod_flag;
2544 return 0;
2545}
2546
Bram Moolenaar071d4272004-06-13 20:20:40 +00002547/*
2548 * Check if if there is a special key code for "key" that includes the
2549 * modifiers specified.
2550 */
2551 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002552simplify_key(int key, int *modifiers)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002553{
2554 int i;
2555 int key0;
2556 int key1;
2557
2558 if (*modifiers & (MOD_MASK_SHIFT | MOD_MASK_CTRL | MOD_MASK_ALT))
2559 {
2560 /* TAB is a special case */
2561 if (key == TAB && (*modifiers & MOD_MASK_SHIFT))
2562 {
2563 *modifiers &= ~MOD_MASK_SHIFT;
2564 return K_S_TAB;
2565 }
2566 key0 = KEY2TERMCAP0(key);
2567 key1 = KEY2TERMCAP1(key);
2568 for (i = 0; modifier_keys_table[i] != NUL; i += MOD_KEYS_ENTRY_SIZE)
2569 if (key0 == modifier_keys_table[i + 3]
2570 && key1 == modifier_keys_table[i + 4]
2571 && (*modifiers & modifier_keys_table[i]))
2572 {
2573 *modifiers &= ~modifier_keys_table[i];
2574 return TERMCAP2KEY(modifier_keys_table[i + 1],
2575 modifier_keys_table[i + 2]);
2576 }
2577 }
2578 return key;
2579}
2580
2581/*
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002582 * Change <xHome> to <Home>, <xUp> to <Up>, etc.
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002583 */
2584 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002585handle_x_keys(int key)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002586{
2587 switch (key)
2588 {
2589 case K_XUP: return K_UP;
2590 case K_XDOWN: return K_DOWN;
2591 case K_XLEFT: return K_LEFT;
2592 case K_XRIGHT: return K_RIGHT;
2593 case K_XHOME: return K_HOME;
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002594 case K_ZHOME: return K_HOME;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002595 case K_XEND: return K_END;
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002596 case K_ZEND: return K_END;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002597 case K_XF1: return K_F1;
2598 case K_XF2: return K_F2;
2599 case K_XF3: return K_F3;
2600 case K_XF4: return K_F4;
2601 case K_S_XF1: return K_S_F1;
2602 case K_S_XF2: return K_S_F2;
2603 case K_S_XF3: return K_S_F3;
2604 case K_S_XF4: return K_S_F4;
2605 }
2606 return key;
2607}
2608
2609/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002610 * Return a string which contains the name of the given key when the given
2611 * modifiers are down.
2612 */
2613 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01002614get_special_key_name(int c, int modifiers)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002615{
2616 static char_u string[MAX_KEY_NAME_LEN + 1];
2617
2618 int i, idx;
2619 int table_idx;
2620 char_u *s;
2621
2622 string[0] = '<';
2623 idx = 1;
2624
2625 /* Key that stands for a normal character. */
2626 if (IS_SPECIAL(c) && KEY2TERMCAP0(c) == KS_KEY)
2627 c = KEY2TERMCAP1(c);
2628
2629 /*
2630 * Translate shifted special keys into unshifted keys and set modifier.
2631 * Same for CTRL and ALT modifiers.
2632 */
2633 if (IS_SPECIAL(c))
2634 {
2635 for (i = 0; modifier_keys_table[i] != 0; i += MOD_KEYS_ENTRY_SIZE)
2636 if ( KEY2TERMCAP0(c) == (int)modifier_keys_table[i + 1]
2637 && (int)KEY2TERMCAP1(c) == (int)modifier_keys_table[i + 2])
2638 {
2639 modifiers |= modifier_keys_table[i];
2640 c = TERMCAP2KEY(modifier_keys_table[i + 3],
2641 modifier_keys_table[i + 4]);
2642 break;
2643 }
2644 }
2645
2646 /* try to find the key in the special key table */
2647 table_idx = find_special_key_in_table(c);
2648
2649 /*
2650 * When not a known special key, and not a printable character, try to
2651 * extract modifiers.
2652 */
2653 if (c > 0
2654#ifdef FEAT_MBYTE
2655 && (*mb_char2len)(c) == 1
2656#endif
2657 )
2658 {
2659 if (table_idx < 0
2660 && (!vim_isprintc(c) || (c & 0x7f) == ' ')
2661 && (c & 0x80))
2662 {
2663 c &= 0x7f;
2664 modifiers |= MOD_MASK_ALT;
2665 /* try again, to find the un-alted key in the special key table */
2666 table_idx = find_special_key_in_table(c);
2667 }
2668 if (table_idx < 0 && !vim_isprintc(c) && c < ' ')
2669 {
2670#ifdef EBCDIC
2671 c = CtrlChar(c);
2672#else
2673 c += '@';
2674#endif
2675 modifiers |= MOD_MASK_CTRL;
2676 }
2677 }
2678
2679 /* translate the modifier into a string */
2680 for (i = 0; mod_mask_table[i].name != 'A'; i++)
2681 if ((modifiers & mod_mask_table[i].mod_mask)
2682 == mod_mask_table[i].mod_flag)
2683 {
2684 string[idx++] = mod_mask_table[i].name;
2685 string[idx++] = (char_u)'-';
2686 }
2687
2688 if (table_idx < 0) /* unknown special key, may output t_xx */
2689 {
2690 if (IS_SPECIAL(c))
2691 {
2692 string[idx++] = 't';
2693 string[idx++] = '_';
2694 string[idx++] = KEY2TERMCAP0(c);
2695 string[idx++] = KEY2TERMCAP1(c);
2696 }
2697 /* Not a special key, only modifiers, output directly */
2698 else
2699 {
2700#ifdef FEAT_MBYTE
2701 if (has_mbyte && (*mb_char2len)(c) > 1)
2702 idx += (*mb_char2bytes)(c, string + idx);
2703 else
2704#endif
2705 if (vim_isprintc(c))
2706 string[idx++] = c;
2707 else
2708 {
2709 s = transchar(c);
2710 while (*s)
2711 string[idx++] = *s++;
2712 }
2713 }
2714 }
2715 else /* use name of special key */
2716 {
Bram Moolenaar423977d2017-01-22 15:05:12 +01002717 size_t len = STRLEN(key_names_table[table_idx].name);
2718
2719 if (len + idx + 2 <= MAX_KEY_NAME_LEN)
2720 {
2721 STRCPY(string + idx, key_names_table[table_idx].name);
2722 idx += (int)len;
2723 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002724 }
2725 string[idx++] = '>';
2726 string[idx] = NUL;
2727 return string;
2728}
2729
2730/*
2731 * Try translating a <> name at (*srcp)[] to dst[].
2732 * Return the number of characters added to dst[], zero for no match.
2733 * If there is a match, srcp is advanced to after the <> name.
2734 * dst[] must be big enough to hold the result (up to six characters)!
2735 */
2736 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002737trans_special(
2738 char_u **srcp,
2739 char_u *dst,
Bram Moolenaar35a4cfa2016-08-14 16:07:48 +02002740 int keycode, /* prefer key code, e.g. K_DEL instead of DEL */
2741 int in_string) /* TRUE when inside a double quoted string */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002742{
2743 int modifiers = 0;
2744 int key;
2745 int dlen = 0;
2746
Bram Moolenaar35a4cfa2016-08-14 16:07:48 +02002747 key = find_special_key(srcp, &modifiers, keycode, FALSE, in_string);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002748 if (key == 0)
2749 return 0;
2750
2751 /* Put the appropriate modifier in a string */
2752 if (modifiers != 0)
2753 {
2754 dst[dlen++] = K_SPECIAL;
2755 dst[dlen++] = KS_MODIFIER;
2756 dst[dlen++] = modifiers;
2757 }
2758
2759 if (IS_SPECIAL(key))
2760 {
2761 dst[dlen++] = K_SPECIAL;
2762 dst[dlen++] = KEY2TERMCAP0(key);
2763 dst[dlen++] = KEY2TERMCAP1(key);
2764 }
2765#ifdef FEAT_MBYTE
2766 else if (has_mbyte && !keycode)
2767 dlen += (*mb_char2bytes)(key, dst + dlen);
2768#endif
2769 else if (keycode)
2770 dlen = (int)(add_char2buf(key, dst + dlen) - dst);
2771 else
2772 dst[dlen++] = key;
2773
2774 return dlen;
2775}
2776
2777/*
2778 * Try translating a <> name at (*srcp)[], return the key and modifiers.
2779 * srcp is advanced to after the <> name.
2780 * returns 0 if there is no match.
2781 */
2782 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002783find_special_key(
2784 char_u **srcp,
2785 int *modp,
2786 int keycode, /* prefer key code, e.g. K_DEL instead of DEL */
Bram Moolenaar35a4cfa2016-08-14 16:07:48 +02002787 int keep_x_key, /* don't translate xHome to Home key */
2788 int in_string) /* TRUE in string, double quote is escaped */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002789{
2790 char_u *last_dash;
2791 char_u *end_of_name;
2792 char_u *src;
2793 char_u *bp;
2794 int modifiers;
2795 int bit;
2796 int key;
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02002797 uvarnumber_T n;
Bram Moolenaarb8bf5412011-08-17 20:33:22 +02002798 int l;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002799
2800 src = *srcp;
2801 if (src[0] != '<')
2802 return 0;
2803
2804 /* Find end of modifier list */
2805 last_dash = src;
2806 for (bp = src + 1; *bp == '-' || vim_isIDc(*bp); bp++)
2807 {
2808 if (*bp == '-')
2809 {
2810 last_dash = bp;
Bram Moolenaarb8bf5412011-08-17 20:33:22 +02002811 if (bp[1] != NUL)
2812 {
2813#ifdef FEAT_MBYTE
2814 if (has_mbyte)
2815 l = mb_ptr2len(bp + 1);
2816 else
2817#endif
2818 l = 1;
Bram Moolenaar35a4cfa2016-08-14 16:07:48 +02002819 /* Anything accepted, like <C-?>.
2820 * <C-"> or <M-"> are not special in strings as " is
2821 * the string delimiter. With a backslash it works: <M-\"> */
2822 if (!(in_string && bp[1] == '"') && bp[2] == '>')
Bram Moolenaar1d90a5a2016-07-01 11:59:47 +02002823 bp += l;
Bram Moolenaar35a4cfa2016-08-14 16:07:48 +02002824 else if (in_string && bp[1] == '\\' && bp[2] == '"'
2825 && bp[3] == '>')
2826 bp += 2;
Bram Moolenaarb8bf5412011-08-17 20:33:22 +02002827 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002828 }
2829 if (bp[0] == 't' && bp[1] == '_' && bp[2] && bp[3])
2830 bp += 3; /* skip t_xx, xx may be '-' or '>' */
Bram Moolenaar792826c2011-08-19 22:29:02 +02002831 else if (STRNICMP(bp, "char-", 5) == 0)
2832 {
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01002833 vim_str2nr(bp + 5, NULL, &l, STR2NR_ALL, NULL, NULL, 0);
Bram Moolenaar792826c2011-08-19 22:29:02 +02002834 bp += l + 5;
2835 break;
2836 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002837 }
2838
2839 if (*bp == '>') /* found matching '>' */
2840 {
2841 end_of_name = bp + 1;
2842
Bram Moolenaar071d4272004-06-13 20:20:40 +00002843 /* Which modifiers are given? */
2844 modifiers = 0x0;
2845 for (bp = src + 1; bp < last_dash; bp++)
2846 {
2847 if (*bp != '-')
2848 {
2849 bit = name_to_mod_mask(*bp);
2850 if (bit == 0x0)
2851 break; /* Illegal modifier name */
2852 modifiers |= bit;
2853 }
2854 }
2855
2856 /*
2857 * Legal modifier name.
2858 */
2859 if (bp >= last_dash)
2860 {
Bram Moolenaarb8bf5412011-08-17 20:33:22 +02002861 if (STRNICMP(last_dash + 1, "char-", 5) == 0
2862 && VIM_ISDIGIT(last_dash[6]))
2863 {
2864 /* <Char-123> or <Char-033> or <Char-0x33> */
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01002865 vim_str2nr(last_dash + 6, NULL, NULL, STR2NR_ALL, NULL, &n, 0);
Bram Moolenaar792826c2011-08-19 22:29:02 +02002866 key = (int)n;
Bram Moolenaarb8bf5412011-08-17 20:33:22 +02002867 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002868 else
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002869 {
Bram Moolenaar35a4cfa2016-08-14 16:07:48 +02002870 int off = 1;
2871
2872 /* Modifier with single letter, or special key name. */
2873 if (in_string && last_dash[1] == '\\' && last_dash[2] == '"')
2874 off = 2;
Bram Moolenaar792826c2011-08-19 22:29:02 +02002875#ifdef FEAT_MBYTE
2876 if (has_mbyte)
Bram Moolenaar35a4cfa2016-08-14 16:07:48 +02002877 l = mb_ptr2len(last_dash + off);
Bram Moolenaar792826c2011-08-19 22:29:02 +02002878 else
2879#endif
2880 l = 1;
Bram Moolenaar35a4cfa2016-08-14 16:07:48 +02002881 if (modifiers != 0 && last_dash[l + off] == '>')
2882 key = PTR2CHAR(last_dash + off);
Bram Moolenaar792826c2011-08-19 22:29:02 +02002883 else
2884 {
Bram Moolenaar35a4cfa2016-08-14 16:07:48 +02002885 key = get_special_key_code(last_dash + off);
Bram Moolenaar792826c2011-08-19 22:29:02 +02002886 if (!keep_x_key)
2887 key = handle_x_keys(key);
2888 }
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002889 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002890
2891 /*
2892 * get_special_key_code() may return NUL for invalid
2893 * special key name.
2894 */
2895 if (key != NUL)
2896 {
2897 /*
2898 * Only use a modifier when there is no special key code that
2899 * includes the modifier.
2900 */
2901 key = simplify_key(key, &modifiers);
2902
2903 if (!keycode)
2904 {
2905 /* don't want keycode, use single byte code */
2906 if (key == K_BS)
2907 key = BS;
2908 else if (key == K_DEL || key == K_KDEL)
2909 key = DEL;
2910 }
2911
2912 /*
2913 * Normal Key with modifier: Try to make a single byte code.
2914 */
2915 if (!IS_SPECIAL(key))
2916 key = extract_modifiers(key, &modifiers);
2917
2918 *modp = modifiers;
2919 *srcp = end_of_name;
2920 return key;
2921 }
2922 }
2923 }
2924 return 0;
2925}
2926
2927/*
2928 * Try to include modifiers in the key.
2929 * Changes "Shift-a" to 'A', "Alt-A" to 0xc0, etc.
2930 */
2931 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002932extract_modifiers(int key, int *modp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002933{
2934 int modifiers = *modp;
2935
2936#ifdef MACOS
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02002937 /* Command-key really special, no fancynest */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002938 if (!(modifiers & MOD_MASK_CMD))
2939#endif
2940 if ((modifiers & MOD_MASK_SHIFT) && ASCII_ISALPHA(key))
2941 {
2942 key = TOUPPER_ASC(key);
2943 modifiers &= ~MOD_MASK_SHIFT;
2944 }
2945 if ((modifiers & MOD_MASK_CTRL)
2946#ifdef EBCDIC
2947 /* * TODO: EBCDIC Better use:
2948 * && (Ctrl_chr(key) || key == '?')
2949 * ??? */
2950 && strchr("?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_", key)
2951 != NULL
2952#else
2953 && ((key >= '?' && key <= '_') || ASCII_ISALPHA(key))
2954#endif
2955 )
2956 {
2957 key = Ctrl_chr(key);
2958 modifiers &= ~MOD_MASK_CTRL;
2959 /* <C-@> is <Nul> */
2960 if (key == 0)
2961 key = K_ZERO;
2962 }
2963#ifdef MACOS
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02002964 /* Command-key really special, no fancynest */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002965 if (!(modifiers & MOD_MASK_CMD))
2966#endif
2967 if ((modifiers & MOD_MASK_ALT) && key < 0x80
2968#ifdef FEAT_MBYTE
2969 && !enc_dbcs /* avoid creating a lead byte */
2970#endif
2971 )
2972 {
2973 key |= 0x80;
2974 modifiers &= ~MOD_MASK_ALT; /* remove the META modifier */
2975 }
2976
2977 *modp = modifiers;
2978 return key;
2979}
2980
2981/*
2982 * Try to find key "c" in the special key table.
2983 * Return the index when found, -1 when not found.
2984 */
2985 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002986find_special_key_in_table(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002987{
2988 int i;
2989
2990 for (i = 0; key_names_table[i].name != NULL; i++)
2991 if (c == key_names_table[i].key)
2992 break;
2993 if (key_names_table[i].name == NULL)
2994 i = -1;
2995 return i;
2996}
2997
2998/*
2999 * Find the special key with the given name (the given string does not have to
3000 * end with NUL, the name is assumed to end before the first non-idchar).
3001 * If the name starts with "t_" the next two characters are interpreted as a
3002 * termcap name.
3003 * Return the key code, or 0 if not found.
3004 */
3005 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003006get_special_key_code(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003007{
3008 char_u *table_name;
3009 char_u string[3];
3010 int i, j;
3011
3012 /*
3013 * If it's <t_xx> we get the code for xx from the termcap
3014 */
3015 if (name[0] == 't' && name[1] == '_' && name[2] != NUL && name[3] != NUL)
3016 {
3017 string[0] = name[2];
3018 string[1] = name[3];
3019 string[2] = NUL;
3020 if (add_termcap_entry(string, FALSE) == OK)
3021 return TERMCAP2KEY(name[2], name[3]);
3022 }
3023 else
3024 for (i = 0; key_names_table[i].name != NULL; i++)
3025 {
3026 table_name = key_names_table[i].name;
3027 for (j = 0; vim_isIDc(name[j]) && table_name[j] != NUL; j++)
3028 if (TOLOWER_ASC(table_name[j]) != TOLOWER_ASC(name[j]))
3029 break;
3030 if (!vim_isIDc(name[j]) && table_name[j] == NUL)
3031 return key_names_table[i].key;
3032 }
3033 return 0;
3034}
3035
Bram Moolenaar05bb9532008-07-04 09:44:11 +00003036#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003037 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01003038get_key_name(int i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003039{
Bram Moolenaare1fbddc2009-05-16 19:07:03 +00003040 if (i >= (int)KEY_NAMES_TABLE_LEN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003041 return NULL;
3042 return key_names_table[i].name;
3043}
3044#endif
3045
Bram Moolenaar05bb9532008-07-04 09:44:11 +00003046#if defined(FEAT_MOUSE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003047/*
3048 * Look up the given mouse code to return the relevant information in the other
3049 * arguments. Return which button is down or was released.
3050 */
3051 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003052get_mouse_button(int code, int *is_click, int *is_drag)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003053{
3054 int i;
3055
3056 for (i = 0; mouse_table[i].pseudo_code; i++)
3057 if (code == mouse_table[i].pseudo_code)
3058 {
3059 *is_click = mouse_table[i].is_click;
3060 *is_drag = mouse_table[i].is_drag;
3061 return mouse_table[i].button;
3062 }
3063 return 0; /* Shouldn't get here */
3064}
3065
3066/*
3067 * Return the appropriate pseudo mouse event token (KE_LEFTMOUSE etc) based on
3068 * the given information about which mouse button is down, and whether the
3069 * mouse was clicked, dragged or released.
3070 */
3071 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003072get_pseudo_mouse_code(
3073 int button, /* eg MOUSE_LEFT */
3074 int is_click,
3075 int is_drag)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003076{
3077 int i;
3078
3079 for (i = 0; mouse_table[i].pseudo_code; i++)
3080 if (button == mouse_table[i].button
3081 && is_click == mouse_table[i].is_click
3082 && is_drag == mouse_table[i].is_drag)
3083 {
3084#ifdef FEAT_GUI
Bram Moolenaarc91506a2005-04-24 22:04:21 +00003085 /* Trick: a non mappable left click and release has mouse_col -1
3086 * or added MOUSE_COLOFF. Used for 'mousefocus' in
3087 * gui_mouse_moved() */
3088 if (mouse_col < 0 || mouse_col > MOUSE_COLOFF)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003089 {
Bram Moolenaarc91506a2005-04-24 22:04:21 +00003090 if (mouse_col < 0)
3091 mouse_col = 0;
3092 else
3093 mouse_col -= MOUSE_COLOFF;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003094 if (mouse_table[i].pseudo_code == (int)KE_LEFTMOUSE)
3095 return (int)KE_LEFTMOUSE_NM;
3096 if (mouse_table[i].pseudo_code == (int)KE_LEFTRELEASE)
3097 return (int)KE_LEFTRELEASE_NM;
3098 }
3099#endif
3100 return mouse_table[i].pseudo_code;
3101 }
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00003102 return (int)KE_IGNORE; /* not recognized, ignore it */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003103}
3104#endif /* FEAT_MOUSE */
3105
3106/*
3107 * Return the current end-of-line type: EOL_DOS, EOL_UNIX or EOL_MAC.
3108 */
3109 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003110get_fileformat(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003111{
3112 int c = *buf->b_p_ff;
3113
3114 if (buf->b_p_bin || c == 'u')
3115 return EOL_UNIX;
3116 if (c == 'm')
3117 return EOL_MAC;
3118 return EOL_DOS;
3119}
3120
3121/*
3122 * Like get_fileformat(), but override 'fileformat' with "p" for "++opt=val"
3123 * argument.
3124 */
3125 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003126get_fileformat_force(
3127 buf_T *buf,
3128 exarg_T *eap) /* can be NULL! */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003129{
3130 int c;
3131
3132 if (eap != NULL && eap->force_ff != 0)
3133 c = eap->cmd[eap->force_ff];
3134 else
3135 {
3136 if ((eap != NULL && eap->force_bin != 0)
3137 ? (eap->force_bin == FORCE_BIN) : buf->b_p_bin)
3138 return EOL_UNIX;
3139 c = *buf->b_p_ff;
3140 }
3141 if (c == 'u')
3142 return EOL_UNIX;
3143 if (c == 'm')
3144 return EOL_MAC;
3145 return EOL_DOS;
3146}
3147
3148/*
3149 * Set the current end-of-line type to EOL_DOS, EOL_UNIX or EOL_MAC.
3150 * Sets both 'textmode' and 'fileformat'.
3151 * Note: Does _not_ set global value of 'textmode'!
3152 */
3153 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003154set_fileformat(
3155 int t,
3156 int opt_flags) /* OPT_LOCAL and/or OPT_GLOBAL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003157{
3158 char *p = NULL;
3159
3160 switch (t)
3161 {
3162 case EOL_DOS:
3163 p = FF_DOS;
3164 curbuf->b_p_tx = TRUE;
3165 break;
3166 case EOL_UNIX:
3167 p = FF_UNIX;
3168 curbuf->b_p_tx = FALSE;
3169 break;
3170 case EOL_MAC:
3171 p = FF_MAC;
3172 curbuf->b_p_tx = FALSE;
3173 break;
3174 }
3175 if (p != NULL)
3176 set_string_option_direct((char_u *)"ff", -1, (char_u *)p,
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00003177 OPT_FREE | opt_flags, 0);
3178
Bram Moolenaar071d4272004-06-13 20:20:40 +00003179#ifdef FEAT_WINDOWS
Bram Moolenaarf740b292006-02-16 22:11:02 +00003180 /* This may cause the buffer to become (un)modified. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003181 check_status(curbuf);
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00003182 redraw_tabline = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003183#endif
3184#ifdef FEAT_TITLE
3185 need_maketitle = TRUE; /* set window title later */
3186#endif
3187}
3188
3189/*
3190 * Return the default fileformat from 'fileformats'.
3191 */
3192 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003193default_fileformat(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003194{
3195 switch (*p_ffs)
3196 {
3197 case 'm': return EOL_MAC;
3198 case 'd': return EOL_DOS;
3199 }
3200 return EOL_UNIX;
3201}
3202
3203/*
3204 * Call shell. Calls mch_call_shell, with 'shellxquote' added.
3205 */
3206 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003207call_shell(char_u *cmd, int opt)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003208{
3209 char_u *ncmd;
3210 int retval;
Bram Moolenaar05159a02005-02-26 23:04:13 +00003211#ifdef FEAT_PROFILE
3212 proftime_T wait_time;
3213#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003214
3215 if (p_verbose > 3)
3216 {
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00003217 verbose_enter();
Bram Moolenaar051b7822005-05-19 21:00:46 +00003218 smsg((char_u *)_("Calling shell to execute: \"%s\""),
Bram Moolenaar071d4272004-06-13 20:20:40 +00003219 cmd == NULL ? p_sh : cmd);
3220 out_char('\n');
3221 cursor_on();
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00003222 verbose_leave();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003223 }
3224
Bram Moolenaar05159a02005-02-26 23:04:13 +00003225#ifdef FEAT_PROFILE
Bram Moolenaar01265852006-03-20 21:50:15 +00003226 if (do_profiling == PROF_YES)
Bram Moolenaar05159a02005-02-26 23:04:13 +00003227 prof_child_enter(&wait_time);
3228#endif
3229
Bram Moolenaar071d4272004-06-13 20:20:40 +00003230 if (*p_sh == NUL)
3231 {
3232 EMSG(_(e_shellempty));
3233 retval = -1;
3234 }
3235 else
3236 {
3237#ifdef FEAT_GUI_MSWIN
3238 /* Don't hide the pointer while executing a shell command. */
3239 gui_mch_mousehide(FALSE);
3240#endif
3241#ifdef FEAT_GUI
3242 ++hold_gui_events;
3243#endif
3244 /* The external command may update a tags file, clear cached tags. */
3245 tag_freematch();
3246
3247 if (cmd == NULL || *p_sxq == NUL)
3248 retval = mch_call_shell(cmd, opt);
3249 else
3250 {
Bram Moolenaarf66b3fc2012-02-20 22:18:30 +01003251 char_u *ecmd = cmd;
3252
3253 if (*p_sxe != NUL && STRCMP(p_sxq, "(") == 0)
3254 {
3255 ecmd = vim_strsave_escaped_ext(cmd, p_sxe, '^', FALSE);
3256 if (ecmd == NULL)
3257 ecmd = cmd;
3258 }
3259 ncmd = alloc((unsigned)(STRLEN(ecmd) + STRLEN(p_sxq) * 2 + 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003260 if (ncmd != NULL)
3261 {
3262 STRCPY(ncmd, p_sxq);
Bram Moolenaarf66b3fc2012-02-20 22:18:30 +01003263 STRCAT(ncmd, ecmd);
Bram Moolenaar034b1152012-02-19 18:19:30 +01003264 /* When 'shellxquote' is ( append ).
3265 * When 'shellxquote' is "( append )". */
3266 STRCAT(ncmd, STRCMP(p_sxq, "(") == 0 ? (char_u *)")"
3267 : STRCMP(p_sxq, "\"(") == 0 ? (char_u *)")\""
3268 : p_sxq);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003269 retval = mch_call_shell(ncmd, opt);
3270 vim_free(ncmd);
3271 }
3272 else
3273 retval = -1;
Bram Moolenaarf66b3fc2012-02-20 22:18:30 +01003274 if (ecmd != cmd)
3275 vim_free(ecmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003276 }
3277#ifdef FEAT_GUI
3278 --hold_gui_events;
3279#endif
3280 /*
3281 * Check the window size, in case it changed while executing the
3282 * external command.
3283 */
3284 shell_resized_check();
3285 }
3286
3287#ifdef FEAT_EVAL
3288 set_vim_var_nr(VV_SHELL_ERROR, (long)retval);
Bram Moolenaar05159a02005-02-26 23:04:13 +00003289# ifdef FEAT_PROFILE
Bram Moolenaar01265852006-03-20 21:50:15 +00003290 if (do_profiling == PROF_YES)
Bram Moolenaar05159a02005-02-26 23:04:13 +00003291 prof_child_exit(&wait_time);
3292# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003293#endif
3294
3295 return retval;
3296}
3297
3298/*
Bram Moolenaar01265852006-03-20 21:50:15 +00003299 * VISUAL, SELECTMODE and OP_PENDING State are never set, they are equal to
3300 * NORMAL State with a condition. This function returns the real State.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003301 */
3302 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003303get_real_state(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003304{
3305 if (State & NORMAL)
3306 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003307 if (VIsual_active)
Bram Moolenaar01265852006-03-20 21:50:15 +00003308 {
3309 if (VIsual_select)
3310 return SELECTMODE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003311 return VISUAL;
Bram Moolenaar01265852006-03-20 21:50:15 +00003312 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01003313 else if (finish_op)
3314 return OP_PENDING;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003315 }
3316 return State;
3317}
3318
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003319#if defined(FEAT_MBYTE) || defined(PROTO)
3320/*
3321 * Return TRUE if "p" points to just after a path separator.
Bram Moolenaarb5ce04d2011-07-07 17:15:33 +02003322 * Takes care of multi-byte characters.
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003323 * "b" must point to the start of the file name
3324 */
3325 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003326after_pathsep(char_u *b, char_u *p)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003327{
Bram Moolenaarb5ce04d2011-07-07 17:15:33 +02003328 return p > b && vim_ispathsep(p[-1])
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003329 && (!has_mbyte || (*mb_head_off)(b, p - 1) == 0);
3330}
3331#endif
3332
3333/*
3334 * Return TRUE if file names "f1" and "f2" are in the same directory.
3335 * "f1" may be a short name, "f2" must be a full path.
3336 */
3337 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003338same_directory(char_u *f1, char_u *f2)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003339{
3340 char_u ffname[MAXPATHL];
3341 char_u *t1;
3342 char_u *t2;
3343
3344 /* safety check */
3345 if (f1 == NULL || f2 == NULL)
3346 return FALSE;
3347
3348 (void)vim_FullName(f1, ffname, MAXPATHL, FALSE);
3349 t1 = gettail_sep(ffname);
3350 t2 = gettail_sep(f2);
3351 return (t1 - ffname == t2 - f2
3352 && pathcmp((char *)ffname, (char *)f2, (int)(t1 - ffname)) == 0);
3353}
3354
Bram Moolenaar071d4272004-06-13 20:20:40 +00003355#if defined(FEAT_SESSION) || defined(MSWIN) || defined(FEAT_GUI_MAC) \
Bram Moolenaar9372a112005-12-06 19:59:18 +00003356 || ((defined(FEAT_GUI_GTK)) \
Bram Moolenaar843ee412004-06-30 16:16:41 +00003357 && ( defined(FEAT_WINDOWS) || defined(FEAT_DND)) ) \
Bram Moolenaar071d4272004-06-13 20:20:40 +00003358 || defined(FEAT_SUN_WORKSHOP) || defined(FEAT_NETBEANS_INTG) \
3359 || defined(PROTO)
3360/*
3361 * Change to a file's directory.
3362 * Caller must call shorten_fnames()!
3363 * Return OK or FAIL.
3364 */
3365 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003366vim_chdirfile(char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003367{
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003368 char_u dir[MAXPATHL];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003369
Bram Moolenaarbbebc852005-07-18 21:47:53 +00003370 vim_strncpy(dir, fname, MAXPATHL - 1);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003371 *gettail_sep(dir) = NUL;
3372 return mch_chdir((char *)dir) == 0 ? OK : FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003373}
3374#endif
3375
3376#if defined(STAT_IGNORES_SLASH) || defined(PROTO)
3377/*
3378 * Check if "name" ends in a slash and is not a directory.
3379 * Used for systems where stat() ignores a trailing slash on a file name.
3380 * The Vim code assumes a trailing slash is only ignored for a directory.
3381 */
Bram Moolenaar91acfff2017-03-12 19:22:36 +01003382 static int
Bram Moolenaard8492792017-03-16 12:22:38 +01003383illegal_slash(const char *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003384{
3385 if (name[0] == NUL)
3386 return FALSE; /* no file name is not illegal */
3387 if (name[strlen(name) - 1] != '/')
3388 return FALSE; /* no trailing slash */
3389 if (mch_isdir((char_u *)name))
3390 return FALSE; /* trailing slash for a directory */
3391 return TRUE;
3392}
Bram Moolenaar91acfff2017-03-12 19:22:36 +01003393
3394/*
3395 * Special implementation of mch_stat() for Solaris.
3396 */
3397 int
3398vim_stat(const char *name, stat_T *stp)
3399{
3400 /* On Solaris stat() accepts "file/" as if it was "file". Return -1 if
3401 * the name ends in "/" and it's not a directory. */
Bram Moolenaard8492792017-03-16 12:22:38 +01003402 return illegal_slash(name) ? -1 : stat(name, stp);
Bram Moolenaar91acfff2017-03-12 19:22:36 +01003403}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003404#endif
3405
3406#if defined(CURSOR_SHAPE) || defined(PROTO)
3407
3408/*
3409 * Handling of cursor and mouse pointer shapes in various modes.
3410 */
3411
3412cursorentry_T shape_table[SHAPE_IDX_COUNT] =
3413{
3414 /* The values will be filled in from the 'guicursor' and 'mouseshape'
3415 * defaults when Vim starts.
3416 * Adjust the SHAPE_IDX_ defines when making changes! */
3417 {0, 0, 0, 700L, 400L, 250L, 0, 0, "n", SHAPE_CURSOR+SHAPE_MOUSE},
3418 {0, 0, 0, 700L, 400L, 250L, 0, 0, "v", SHAPE_CURSOR+SHAPE_MOUSE},
3419 {0, 0, 0, 700L, 400L, 250L, 0, 0, "i", SHAPE_CURSOR+SHAPE_MOUSE},
3420 {0, 0, 0, 700L, 400L, 250L, 0, 0, "r", SHAPE_CURSOR+SHAPE_MOUSE},
3421 {0, 0, 0, 700L, 400L, 250L, 0, 0, "c", SHAPE_CURSOR+SHAPE_MOUSE},
3422 {0, 0, 0, 700L, 400L, 250L, 0, 0, "ci", SHAPE_CURSOR+SHAPE_MOUSE},
3423 {0, 0, 0, 700L, 400L, 250L, 0, 0, "cr", SHAPE_CURSOR+SHAPE_MOUSE},
3424 {0, 0, 0, 700L, 400L, 250L, 0, 0, "o", SHAPE_CURSOR+SHAPE_MOUSE},
3425 {0, 0, 0, 700L, 400L, 250L, 0, 0, "ve", SHAPE_CURSOR+SHAPE_MOUSE},
3426 {0, 0, 0, 0L, 0L, 0L, 0, 0, "e", SHAPE_MOUSE},
3427 {0, 0, 0, 0L, 0L, 0L, 0, 0, "s", SHAPE_MOUSE},
3428 {0, 0, 0, 0L, 0L, 0L, 0, 0, "sd", SHAPE_MOUSE},
3429 {0, 0, 0, 0L, 0L, 0L, 0, 0, "vs", SHAPE_MOUSE},
3430 {0, 0, 0, 0L, 0L, 0L, 0, 0, "vd", SHAPE_MOUSE},
3431 {0, 0, 0, 0L, 0L, 0L, 0, 0, "m", SHAPE_MOUSE},
3432 {0, 0, 0, 0L, 0L, 0L, 0, 0, "ml", SHAPE_MOUSE},
3433 {0, 0, 0, 100L, 100L, 100L, 0, 0, "sm", SHAPE_CURSOR},
3434};
3435
3436#ifdef FEAT_MOUSESHAPE
3437/*
3438 * Table with names for mouse shapes. Keep in sync with all the tables for
3439 * mch_set_mouse_shape()!.
3440 */
3441static char * mshape_names[] =
3442{
3443 "arrow", /* default, must be the first one */
3444 "blank", /* hidden */
3445 "beam",
3446 "updown",
3447 "udsizing",
3448 "leftright",
3449 "lrsizing",
3450 "busy",
3451 "no",
3452 "crosshair",
3453 "hand1",
3454 "hand2",
3455 "pencil",
3456 "question",
3457 "rightup-arrow",
3458 "up-arrow",
3459 NULL
3460};
3461#endif
3462
3463/*
3464 * Parse the 'guicursor' option ("what" is SHAPE_CURSOR) or 'mouseshape'
3465 * ("what" is SHAPE_MOUSE).
3466 * Returns error message for an illegal option, NULL otherwise.
3467 */
3468 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01003469parse_shape_opt(int what)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003470{
3471 char_u *modep;
3472 char_u *colonp;
3473 char_u *commap;
3474 char_u *slashp;
3475 char_u *p, *endp;
3476 int idx = 0; /* init for GCC */
3477 int all_idx;
3478 int len;
3479 int i;
3480 long n;
3481 int found_ve = FALSE; /* found "ve" flag */
3482 int round;
3483
3484 /*
3485 * First round: check for errors; second round: do it for real.
3486 */
3487 for (round = 1; round <= 2; ++round)
3488 {
3489 /*
3490 * Repeat for all comma separated parts.
3491 */
3492#ifdef FEAT_MOUSESHAPE
3493 if (what == SHAPE_MOUSE)
3494 modep = p_mouseshape;
3495 else
3496#endif
3497 modep = p_guicursor;
3498 while (*modep != NUL)
3499 {
3500 colonp = vim_strchr(modep, ':');
Bram Moolenaar24922ec2017-02-23 17:59:22 +01003501 commap = vim_strchr(modep, ',');
3502
3503 if (colonp == NULL || (commap != NULL && commap < colonp))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003504 return (char_u *)N_("E545: Missing colon");
3505 if (colonp == modep)
3506 return (char_u *)N_("E546: Illegal mode");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003507
3508 /*
3509 * Repeat for all mode's before the colon.
3510 * For the 'a' mode, we loop to handle all the modes.
3511 */
3512 all_idx = -1;
3513 while (modep < colonp || all_idx >= 0)
3514 {
3515 if (all_idx < 0)
3516 {
3517 /* Find the mode. */
3518 if (modep[1] == '-' || modep[1] == ':')
3519 len = 1;
3520 else
3521 len = 2;
3522 if (len == 1 && TOLOWER_ASC(modep[0]) == 'a')
3523 all_idx = SHAPE_IDX_COUNT - 1;
3524 else
3525 {
3526 for (idx = 0; idx < SHAPE_IDX_COUNT; ++idx)
3527 if (STRNICMP(modep, shape_table[idx].name, len)
3528 == 0)
3529 break;
3530 if (idx == SHAPE_IDX_COUNT
3531 || (shape_table[idx].used_for & what) == 0)
3532 return (char_u *)N_("E546: Illegal mode");
3533 if (len == 2 && modep[0] == 'v' && modep[1] == 'e')
3534 found_ve = TRUE;
3535 }
3536 modep += len + 1;
3537 }
3538
3539 if (all_idx >= 0)
3540 idx = all_idx--;
3541 else if (round == 2)
3542 {
3543#ifdef FEAT_MOUSESHAPE
3544 if (what == SHAPE_MOUSE)
3545 {
3546 /* Set the default, for the missing parts */
3547 shape_table[idx].mshape = 0;
3548 }
3549 else
3550#endif
3551 {
3552 /* Set the defaults, for the missing parts */
3553 shape_table[idx].shape = SHAPE_BLOCK;
3554 shape_table[idx].blinkwait = 700L;
3555 shape_table[idx].blinkon = 400L;
3556 shape_table[idx].blinkoff = 250L;
3557 }
3558 }
3559
3560 /* Parse the part after the colon */
3561 for (p = colonp + 1; *p && *p != ','; )
3562 {
3563#ifdef FEAT_MOUSESHAPE
3564 if (what == SHAPE_MOUSE)
3565 {
3566 for (i = 0; ; ++i)
3567 {
3568 if (mshape_names[i] == NULL)
3569 {
3570 if (!VIM_ISDIGIT(*p))
3571 return (char_u *)N_("E547: Illegal mouseshape");
3572 if (round == 2)
3573 shape_table[idx].mshape =
3574 getdigits(&p) + MSHAPE_NUMBERED;
3575 else
3576 (void)getdigits(&p);
3577 break;
3578 }
3579 len = (int)STRLEN(mshape_names[i]);
3580 if (STRNICMP(p, mshape_names[i], len) == 0)
3581 {
3582 if (round == 2)
3583 shape_table[idx].mshape = i;
3584 p += len;
3585 break;
3586 }
3587 }
3588 }
3589 else /* if (what == SHAPE_MOUSE) */
3590#endif
3591 {
3592 /*
3593 * First handle the ones with a number argument.
3594 */
3595 i = *p;
3596 len = 0;
3597 if (STRNICMP(p, "ver", 3) == 0)
3598 len = 3;
3599 else if (STRNICMP(p, "hor", 3) == 0)
3600 len = 3;
3601 else if (STRNICMP(p, "blinkwait", 9) == 0)
3602 len = 9;
3603 else if (STRNICMP(p, "blinkon", 7) == 0)
3604 len = 7;
3605 else if (STRNICMP(p, "blinkoff", 8) == 0)
3606 len = 8;
3607 if (len != 0)
3608 {
3609 p += len;
3610 if (!VIM_ISDIGIT(*p))
3611 return (char_u *)N_("E548: digit expected");
3612 n = getdigits(&p);
3613 if (len == 3) /* "ver" or "hor" */
3614 {
3615 if (n == 0)
3616 return (char_u *)N_("E549: Illegal percentage");
3617 if (round == 2)
3618 {
3619 if (TOLOWER_ASC(i) == 'v')
3620 shape_table[idx].shape = SHAPE_VER;
3621 else
3622 shape_table[idx].shape = SHAPE_HOR;
3623 shape_table[idx].percentage = n;
3624 }
3625 }
3626 else if (round == 2)
3627 {
3628 if (len == 9)
3629 shape_table[idx].blinkwait = n;
3630 else if (len == 7)
3631 shape_table[idx].blinkon = n;
3632 else
3633 shape_table[idx].blinkoff = n;
3634 }
3635 }
3636 else if (STRNICMP(p, "block", 5) == 0)
3637 {
3638 if (round == 2)
3639 shape_table[idx].shape = SHAPE_BLOCK;
3640 p += 5;
3641 }
3642 else /* must be a highlight group name then */
3643 {
3644 endp = vim_strchr(p, '-');
3645 if (commap == NULL) /* last part */
3646 {
3647 if (endp == NULL)
3648 endp = p + STRLEN(p); /* find end of part */
3649 }
3650 else if (endp > commap || endp == NULL)
3651 endp = commap;
3652 slashp = vim_strchr(p, '/');
3653 if (slashp != NULL && slashp < endp)
3654 {
3655 /* "group/langmap_group" */
3656 i = syn_check_group(p, (int)(slashp - p));
3657 p = slashp + 1;
3658 }
3659 if (round == 2)
3660 {
3661 shape_table[idx].id = syn_check_group(p,
3662 (int)(endp - p));
3663 shape_table[idx].id_lm = shape_table[idx].id;
3664 if (slashp != NULL && slashp < endp)
3665 shape_table[idx].id = i;
3666 }
3667 p = endp;
3668 }
3669 } /* if (what != SHAPE_MOUSE) */
3670
3671 if (*p == '-')
3672 ++p;
3673 }
3674 }
3675 modep = p;
3676 if (*modep == ',')
3677 ++modep;
3678 }
3679 }
3680
3681 /* If the 's' flag is not given, use the 'v' cursor for 's' */
3682 if (!found_ve)
3683 {
3684#ifdef FEAT_MOUSESHAPE
3685 if (what == SHAPE_MOUSE)
3686 {
3687 shape_table[SHAPE_IDX_VE].mshape = shape_table[SHAPE_IDX_V].mshape;
3688 }
3689 else
3690#endif
3691 {
3692 shape_table[SHAPE_IDX_VE].shape = shape_table[SHAPE_IDX_V].shape;
3693 shape_table[SHAPE_IDX_VE].percentage =
3694 shape_table[SHAPE_IDX_V].percentage;
3695 shape_table[SHAPE_IDX_VE].blinkwait =
3696 shape_table[SHAPE_IDX_V].blinkwait;
3697 shape_table[SHAPE_IDX_VE].blinkon =
3698 shape_table[SHAPE_IDX_V].blinkon;
3699 shape_table[SHAPE_IDX_VE].blinkoff =
3700 shape_table[SHAPE_IDX_V].blinkoff;
3701 shape_table[SHAPE_IDX_VE].id = shape_table[SHAPE_IDX_V].id;
3702 shape_table[SHAPE_IDX_VE].id_lm = shape_table[SHAPE_IDX_V].id_lm;
3703 }
3704 }
3705
3706 return NULL;
3707}
3708
Bram Moolenaarac6e65f2005-08-29 22:25:38 +00003709# if defined(MCH_CURSOR_SHAPE) || defined(FEAT_GUI) \
3710 || defined(FEAT_MOUSESHAPE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003711/*
3712 * Return the index into shape_table[] for the current mode.
3713 * When "mouse" is TRUE, consider indexes valid for the mouse pointer.
3714 */
3715 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003716get_shape_idx(int mouse)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003717{
3718#ifdef FEAT_MOUSESHAPE
3719 if (mouse && (State == HITRETURN || State == ASKMORE))
3720 {
3721# ifdef FEAT_GUI
Bram Moolenaar9588a0f2005-01-08 21:45:39 +00003722 int x, y;
3723 gui_mch_getmouse(&x, &y);
3724 if (Y_2_ROW(y) == Rows - 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003725 return SHAPE_IDX_MOREL;
3726# endif
3727 return SHAPE_IDX_MORE;
3728 }
3729 if (mouse && drag_status_line)
3730 return SHAPE_IDX_SDRAG;
Bram Moolenaar44a2f922016-03-19 22:11:51 +01003731# ifdef FEAT_WINDOWS
Bram Moolenaar071d4272004-06-13 20:20:40 +00003732 if (mouse && drag_sep_line)
3733 return SHAPE_IDX_VDRAG;
3734# endif
3735#endif
3736 if (!mouse && State == SHOWMATCH)
3737 return SHAPE_IDX_SM;
3738#ifdef FEAT_VREPLACE
3739 if (State & VREPLACE_FLAG)
3740 return SHAPE_IDX_R;
3741#endif
3742 if (State & REPLACE_FLAG)
3743 return SHAPE_IDX_R;
3744 if (State & INSERT)
3745 return SHAPE_IDX_I;
3746 if (State & CMDLINE)
3747 {
3748 if (cmdline_at_end())
3749 return SHAPE_IDX_C;
3750 if (cmdline_overstrike())
3751 return SHAPE_IDX_CR;
3752 return SHAPE_IDX_CI;
3753 }
3754 if (finish_op)
3755 return SHAPE_IDX_O;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003756 if (VIsual_active)
3757 {
3758 if (*p_sel == 'e')
3759 return SHAPE_IDX_VE;
3760 else
3761 return SHAPE_IDX_V;
3762 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003763 return SHAPE_IDX_N;
3764}
Bram Moolenaarac6e65f2005-08-29 22:25:38 +00003765#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003766
3767# if defined(FEAT_MOUSESHAPE) || defined(PROTO)
3768static int old_mouse_shape = 0;
3769
3770/*
3771 * Set the mouse shape:
3772 * If "shape" is -1, use shape depending on the current mode,
3773 * depending on the current state.
3774 * If "shape" is -2, only update the shape when it's CLINE or STATUS (used
3775 * when the mouse moves off the status or command line).
3776 */
3777 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003778update_mouseshape(int shape_idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003779{
3780 int new_mouse_shape;
3781
3782 /* Only works in GUI mode. */
Bram Moolenaar6bb68362005-03-22 23:03:44 +00003783 if (!gui.in_use || gui.starting)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003784 return;
3785
3786 /* Postpone the updating when more is to come. Speeds up executing of
3787 * mappings. */
3788 if (shape_idx == -1 && char_avail())
3789 {
3790 postponed_mouseshape = TRUE;
3791 return;
3792 }
3793
Bram Moolenaar14716812006-05-04 21:54:08 +00003794 /* When ignoring the mouse don't change shape on the statusline. */
3795 if (*p_mouse == NUL
3796 && (shape_idx == SHAPE_IDX_CLINE
3797 || shape_idx == SHAPE_IDX_STATUS
3798 || shape_idx == SHAPE_IDX_VSEP))
3799 shape_idx = -2;
3800
Bram Moolenaar071d4272004-06-13 20:20:40 +00003801 if (shape_idx == -2
3802 && old_mouse_shape != shape_table[SHAPE_IDX_CLINE].mshape
3803 && old_mouse_shape != shape_table[SHAPE_IDX_STATUS].mshape
3804 && old_mouse_shape != shape_table[SHAPE_IDX_VSEP].mshape)
3805 return;
3806 if (shape_idx < 0)
3807 new_mouse_shape = shape_table[get_shape_idx(TRUE)].mshape;
3808 else
3809 new_mouse_shape = shape_table[shape_idx].mshape;
3810 if (new_mouse_shape != old_mouse_shape)
3811 {
3812 mch_set_mouse_shape(new_mouse_shape);
3813 old_mouse_shape = new_mouse_shape;
3814 }
3815 postponed_mouseshape = FALSE;
3816}
3817# endif
3818
3819#endif /* CURSOR_SHAPE */
3820
3821
Bram Moolenaar071d4272004-06-13 20:20:40 +00003822/* TODO: make some #ifdef for this */
3823/*--------[ file searching ]-------------------------------------------------*/
3824/*
3825 * File searching functions for 'path', 'tags' and 'cdpath' options.
3826 * External visible functions:
3827 * vim_findfile_init() creates/initialises the search context
3828 * vim_findfile_free_visited() free list of visited files/dirs of search
3829 * context
3830 * vim_findfile() find a file in the search context
3831 * vim_findfile_cleanup() cleanup/free search context created by
3832 * vim_findfile_init()
3833 *
3834 * All static functions and variables start with 'ff_'
3835 *
3836 * In general it works like this:
3837 * First you create yourself a search context by calling vim_findfile_init().
3838 * It is possible to give a search context from a previous call to
3839 * vim_findfile_init(), so it can be reused. After this you call vim_findfile()
3840 * until you are satisfied with the result or it returns NULL. On every call it
3841 * returns the next file which matches the conditions given to
3842 * vim_findfile_init(). If it doesn't find a next file it returns NULL.
3843 *
3844 * It is possible to call vim_findfile_init() again to reinitialise your search
3845 * with some new parameters. Don't forget to pass your old search context to
3846 * it, so it can reuse it and especially reuse the list of already visited
3847 * directories. If you want to delete the list of already visited directories
3848 * simply call vim_findfile_free_visited().
3849 *
3850 * When you are done call vim_findfile_cleanup() to free the search context.
3851 *
3852 * The function vim_findfile_init() has a long comment, which describes the
3853 * needed parameters.
3854 *
3855 *
3856 *
3857 * ATTENTION:
3858 * ==========
Bram Moolenaar77f66d62007-02-20 02:16:18 +00003859 * Also we use an allocated search context here, this functions are NOT
Bram Moolenaar071d4272004-06-13 20:20:40 +00003860 * thread-safe!!!!!
3861 *
3862 * To minimize parameter passing (or because I'm to lazy), only the
3863 * external visible functions get a search context as a parameter. This is
3864 * then assigned to a static global, which is used throughout the local
3865 * functions.
3866 */
3867
3868/*
3869 * type for the directory search stack
3870 */
3871typedef struct ff_stack
3872{
3873 struct ff_stack *ffs_prev;
3874
3875 /* the fix part (no wildcards) and the part containing the wildcards
3876 * of the search path
3877 */
3878 char_u *ffs_fix_path;
3879#ifdef FEAT_PATH_EXTRA
3880 char_u *ffs_wc_path;
3881#endif
3882
3883 /* files/dirs found in the above directory, matched by the first wildcard
3884 * of wc_part
3885 */
3886 char_u **ffs_filearray;
3887 int ffs_filearray_size;
3888 char_u ffs_filearray_cur; /* needed for partly handled dirs */
3889
3890 /* to store status of partly handled directories
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00003891 * 0: we work on this directory for the first time
Bram Moolenaar071d4272004-06-13 20:20:40 +00003892 * 1: this directory was partly searched in an earlier step
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00003893 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003894 int ffs_stage;
3895
3896 /* How deep are we in the directory tree?
3897 * Counts backward from value of level parameter to vim_findfile_init
3898 */
3899 int ffs_level;
3900
3901 /* Did we already expand '**' to an empty string? */
3902 int ffs_star_star_empty;
3903} ff_stack_T;
3904
3905/*
3906 * type for already visited directories or files.
3907 */
3908typedef struct ff_visited
3909{
3910 struct ff_visited *ffv_next;
3911
3912#ifdef FEAT_PATH_EXTRA
3913 /* Visited directories are different if the wildcard string are
3914 * different. So we have to save it.
3915 */
3916 char_u *ffv_wc_path;
3917#endif
3918 /* for unix use inode etc for comparison (needed because of links), else
3919 * use filename.
3920 */
3921#ifdef UNIX
Bram Moolenaare1fbddc2009-05-16 19:07:03 +00003922 int ffv_dev_valid; /* ffv_dev and ffv_ino were set */
3923 dev_t ffv_dev; /* device number */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003924 ino_t ffv_ino; /* inode number */
3925#endif
3926 /* The memory for this struct is allocated according to the length of
3927 * ffv_fname.
3928 */
3929 char_u ffv_fname[1]; /* actually longer */
3930} ff_visited_T;
3931
3932/*
3933 * We might have to manage several visited lists during a search.
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00003934 * This is especially needed for the tags option. If tags is set to:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003935 * "./++/tags,./++/TAGS,++/tags" (replace + with *)
3936 * So we have to do 3 searches:
3937 * 1) search from the current files directory downward for the file "tags"
3938 * 2) search from the current files directory downward for the file "TAGS"
3939 * 3) search from Vims current directory downwards for the file "tags"
3940 * As you can see, the first and the third search are for the same file, so for
3941 * the third search we can use the visited list of the first search. For the
3942 * second search we must start from a empty visited list.
3943 * The struct ff_visited_list_hdr is used to manage a linked list of already
3944 * visited lists.
3945 */
3946typedef struct ff_visited_list_hdr
3947{
3948 struct ff_visited_list_hdr *ffvl_next;
3949
3950 /* the filename the attached visited list is for */
3951 char_u *ffvl_filename;
3952
3953 ff_visited_T *ffvl_visited_list;
3954
3955} ff_visited_list_hdr_T;
3956
3957
3958/*
3959 * '**' can be expanded to several directory levels.
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00003960 * Set the default maximum depth.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003961 */
3962#define FF_MAX_STAR_STAR_EXPAND ((char_u)30)
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00003963
Bram Moolenaar071d4272004-06-13 20:20:40 +00003964/*
3965 * The search context:
3966 * ffsc_stack_ptr: the stack for the dirs to search
3967 * ffsc_visited_list: the currently active visited list
3968 * ffsc_dir_visited_list: the currently active visited list for search dirs
3969 * ffsc_visited_lists_list: the list of all visited lists
3970 * ffsc_dir_visited_lists_list: the list of all visited lists for search dirs
3971 * ffsc_file_to_search: the file to search for
3972 * ffsc_start_dir: the starting directory, if search path was relative
3973 * ffsc_fix_path: the fix part of the given path (without wildcards)
3974 * Needed for upward search.
3975 * ffsc_wc_path: the part of the given path containing wildcards
3976 * ffsc_level: how many levels of dirs to search downwards
3977 * ffsc_stopdirs_v: array of stop directories for upward search
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00003978 * ffsc_find_what: FINDFILE_BOTH, FINDFILE_DIR or FINDFILE_FILE
Bram Moolenaar463ee342010-08-08 18:17:52 +02003979 * ffsc_tagfile: searching for tags file, don't use 'suffixesadd'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003980 */
3981typedef struct ff_search_ctx_T
3982{
3983 ff_stack_T *ffsc_stack_ptr;
3984 ff_visited_list_hdr_T *ffsc_visited_list;
3985 ff_visited_list_hdr_T *ffsc_dir_visited_list;
3986 ff_visited_list_hdr_T *ffsc_visited_lists_list;
3987 ff_visited_list_hdr_T *ffsc_dir_visited_lists_list;
3988 char_u *ffsc_file_to_search;
3989 char_u *ffsc_start_dir;
3990 char_u *ffsc_fix_path;
3991#ifdef FEAT_PATH_EXTRA
3992 char_u *ffsc_wc_path;
3993 int ffsc_level;
3994 char_u **ffsc_stopdirs_v;
3995#endif
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00003996 int ffsc_find_what;
Bram Moolenaar463ee342010-08-08 18:17:52 +02003997 int ffsc_tagfile;
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003998} ff_search_ctx_T;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003999
Bram Moolenaar071d4272004-06-13 20:20:40 +00004000/* locally needed functions */
4001#ifdef FEAT_PATH_EXTRA
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01004002static int ff_check_visited(ff_visited_T **, char_u *, char_u *);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004003#else
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01004004static int ff_check_visited(ff_visited_T **, char_u *);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004005#endif
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01004006static void vim_findfile_free_visited_list(ff_visited_list_hdr_T **list_headp);
4007static void ff_free_visited_list(ff_visited_T *vl);
4008static 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 +00004009#ifdef FEAT_PATH_EXTRA
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01004010static int ff_wc_equal(char_u *s1, char_u *s2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004011#endif
4012
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01004013static void ff_push(ff_search_ctx_T *search_ctx, ff_stack_T *stack_ptr);
4014static ff_stack_T *ff_pop(ff_search_ctx_T *search_ctx);
4015static void ff_clear(ff_search_ctx_T *search_ctx);
4016static void ff_free_stack_element(ff_stack_T *stack_ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004017#ifdef FEAT_PATH_EXTRA
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01004018static ff_stack_T *ff_create_stack_element(char_u *, char_u *, int, int);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004019#else
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01004020static ff_stack_T *ff_create_stack_element(char_u *, int, int);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004021#endif
4022#ifdef FEAT_PATH_EXTRA
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01004023static int ff_path_in_stoplist(char_u *, int, char_u **);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004024#endif
4025
Bram Moolenaarb9ba4032011-12-08 17:49:35 +01004026static char_u e_pathtoolong[] = N_("E854: path too long for completion");
4027
Bram Moolenaar071d4272004-06-13 20:20:40 +00004028#if 0
4029/*
4030 * if someone likes findfirst/findnext, here are the functions
4031 * NOT TESTED!!
4032 */
4033
4034static void *ff_fn_search_context = NULL;
4035
4036 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01004037vim_findfirst(char_u *path, char_u *filename, int level)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004038{
4039 ff_fn_search_context =
4040 vim_findfile_init(path, filename, NULL, level, TRUE, FALSE,
4041 ff_fn_search_context, rel_fname);
4042 if (NULL == ff_fn_search_context)
4043 return NULL;
4044 else
4045 return vim_findnext()
4046}
4047
4048 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01004049vim_findnext(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004050{
4051 char_u *ret = vim_findfile(ff_fn_search_context);
4052
4053 if (NULL == ret)
4054 {
4055 vim_findfile_cleanup(ff_fn_search_context);
4056 ff_fn_search_context = NULL;
4057 }
4058 return ret;
4059}
4060#endif
4061
4062/*
Bram Moolenaare2b590e2010-08-08 18:29:48 +02004063 * Initialization routine for vim_findfile().
Bram Moolenaar071d4272004-06-13 20:20:40 +00004064 *
Bram Moolenaarbe18d102010-05-22 21:37:53 +02004065 * Returns the newly allocated search context or NULL if an error occurred.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004066 *
4067 * Don't forget to clean up by calling vim_findfile_cleanup() if you are done
4068 * with the search context.
4069 *
4070 * Find the file 'filename' in the directory 'path'.
4071 * The parameter 'path' may contain wildcards. If so only search 'level'
4072 * directories deep. The parameter 'level' is the absolute maximum and is
4073 * not related to restricts given to the '**' wildcard. If 'level' is 100
4074 * and you use '**200' vim_findfile() will stop after 100 levels.
4075 *
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004076 * 'filename' cannot contain wildcards! It is used as-is, no backslashes to
4077 * escape special characters.
4078 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00004079 * If 'stopdirs' is not NULL and nothing is found downward, the search is
4080 * restarted on the next higher directory level. This is repeated until the
4081 * start-directory of a search is contained in 'stopdirs'. 'stopdirs' has the
4082 * format ";*<dirname>*\(;<dirname>\)*;\=$".
4083 *
4084 * If the 'path' is relative, the starting dir for the search is either VIM's
4085 * current dir or if the path starts with "./" the current files dir.
Bram Moolenaarbe18d102010-05-22 21:37:53 +02004086 * If the 'path' is absolute, the starting dir is that part of the path before
Bram Moolenaar071d4272004-06-13 20:20:40 +00004087 * the first wildcard.
4088 *
4089 * Upward search is only done on the starting dir.
4090 *
4091 * If 'free_visited' is TRUE the list of already visited files/directories is
4092 * cleared. Set this to FALSE if you just want to search from another
4093 * directory, but want to be sure that no directory from a previous search is
4094 * searched again. This is useful if you search for a file at different places.
4095 * The list of visited files/dirs can also be cleared with the function
4096 * vim_findfile_free_visited().
4097 *
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004098 * Set the parameter 'find_what' to FINDFILE_DIR if you want to search for
4099 * directories only, FINDFILE_FILE for files only, FINDFILE_BOTH for both.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004100 *
4101 * A search context returned by a previous call to vim_findfile_init() can be
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004102 * passed in the parameter "search_ctx_arg". This context is reused and
4103 * reinitialized with the new parameters. The list of already visited
Bram Moolenaar071d4272004-06-13 20:20:40 +00004104 * directories from this context is only deleted if the parameter
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004105 * "free_visited" is true. Be aware that the passed "search_ctx_arg" is freed
4106 * if the reinitialization fails.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004107 *
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004108 * If you don't have a search context from a previous call "search_ctx_arg"
4109 * must be NULL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004110 *
4111 * This function silently ignores a few errors, vim_findfile() will have
4112 * limited functionality then.
4113 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004114 void *
Bram Moolenaar9b578142016-01-30 19:39:49 +01004115vim_findfile_init(
4116 char_u *path,
4117 char_u *filename,
4118 char_u *stopdirs UNUSED,
4119 int level,
4120 int free_visited,
4121 int find_what,
4122 void *search_ctx_arg,
4123 int tagfile, /* expanding names of tags files */
4124 char_u *rel_fname) /* file name to use for "." */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004125{
4126#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004127 char_u *wc_part;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004128#endif
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004129 ff_stack_T *sptr;
4130 ff_search_ctx_T *search_ctx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004131
4132 /* If a search context is given by the caller, reuse it, else allocate a
4133 * new one.
4134 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004135 if (search_ctx_arg != NULL)
4136 search_ctx = search_ctx_arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004137 else
4138 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004139 search_ctx = (ff_search_ctx_T*)alloc((unsigned)sizeof(ff_search_ctx_T));
4140 if (search_ctx == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004141 goto error_return;
Bram Moolenaar7db5fc82010-05-24 11:59:29 +02004142 vim_memset(search_ctx, 0, sizeof(ff_search_ctx_T));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004143 }
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004144 search_ctx->ffsc_find_what = find_what;
Bram Moolenaar463ee342010-08-08 18:17:52 +02004145 search_ctx->ffsc_tagfile = tagfile;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004146
4147 /* clear the search context, but NOT the visited lists */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004148 ff_clear(search_ctx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004149
4150 /* clear visited list if wanted */
4151 if (free_visited == TRUE)
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004152 vim_findfile_free_visited(search_ctx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004153 else
4154 {
4155 /* Reuse old visited lists. Get the visited list for the given
4156 * filename. If no list for the current filename exists, creates a new
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004157 * one. */
4158 search_ctx->ffsc_visited_list = ff_get_visited_list(filename,
4159 &search_ctx->ffsc_visited_lists_list);
4160 if (search_ctx->ffsc_visited_list == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004161 goto error_return;
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004162 search_ctx->ffsc_dir_visited_list = ff_get_visited_list(filename,
4163 &search_ctx->ffsc_dir_visited_lists_list);
4164 if (search_ctx->ffsc_dir_visited_list == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004165 goto error_return;
4166 }
4167
4168 if (ff_expand_buffer == NULL)
4169 {
4170 ff_expand_buffer = (char_u*)alloc(MAXPATHL);
4171 if (ff_expand_buffer == NULL)
4172 goto error_return;
4173 }
4174
4175 /* Store information on starting dir now if path is relative.
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00004176 * If path is absolute, we do that later. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004177 if (path[0] == '.'
4178 && (vim_ispathsep(path[1]) || path[1] == NUL)
4179 && (!tagfile || vim_strchr(p_cpo, CPO_DOTTAG) == NULL)
4180 && rel_fname != NULL)
4181 {
4182 int len = (int)(gettail(rel_fname) - rel_fname);
4183
4184 if (!vim_isAbsName(rel_fname) && len + 1 < MAXPATHL)
4185 {
4186 /* Make the start dir an absolute path name. */
Bram Moolenaarbbebc852005-07-18 21:47:53 +00004187 vim_strncpy(ff_expand_buffer, rel_fname, len);
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004188 search_ctx->ffsc_start_dir = FullName_save(ff_expand_buffer, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004189 }
4190 else
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004191 search_ctx->ffsc_start_dir = vim_strnsave(rel_fname, len);
4192 if (search_ctx->ffsc_start_dir == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004193 goto error_return;
4194 if (*++path != NUL)
4195 ++path;
4196 }
4197 else if (*path == NUL || !vim_isAbsName(path))
4198 {
4199#ifdef BACKSLASH_IN_FILENAME
4200 /* "c:dir" needs "c:" to be expanded, otherwise use current dir */
4201 if (*path != NUL && path[1] == ':')
4202 {
4203 char_u drive[3];
4204
4205 drive[0] = path[0];
4206 drive[1] = ':';
4207 drive[2] = NUL;
4208 if (vim_FullName(drive, ff_expand_buffer, MAXPATHL, TRUE) == FAIL)
4209 goto error_return;
4210 path += 2;
4211 }
4212 else
4213#endif
4214 if (mch_dirname(ff_expand_buffer, MAXPATHL) == FAIL)
4215 goto error_return;
4216
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004217 search_ctx->ffsc_start_dir = vim_strsave(ff_expand_buffer);
4218 if (search_ctx->ffsc_start_dir == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004219 goto error_return;
4220
4221#ifdef BACKSLASH_IN_FILENAME
4222 /* A path that starts with "/dir" is relative to the drive, not to the
4223 * directory (but not for "//machine/dir"). Only use the drive name. */
4224 if ((*path == '/' || *path == '\\')
4225 && path[1] != path[0]
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004226 && search_ctx->ffsc_start_dir[1] == ':')
4227 search_ctx->ffsc_start_dir[2] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004228#endif
4229 }
4230
4231#ifdef FEAT_PATH_EXTRA
4232 /*
4233 * If stopdirs are given, split them into an array of pointers.
4234 * If this fails (mem allocation), there is no upward search at all or a
4235 * stop directory is not recognized -> continue silently.
4236 * If stopdirs just contains a ";" or is empty,
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004237 * search_ctx->ffsc_stopdirs_v will only contain a NULL pointer. This
Bram Moolenaar071d4272004-06-13 20:20:40 +00004238 * is handled as unlimited upward search. See function
4239 * ff_path_in_stoplist() for details.
4240 */
4241 if (stopdirs != NULL)
4242 {
4243 char_u *walker = stopdirs;
4244 int dircount;
4245
4246 while (*walker == ';')
4247 walker++;
4248
4249 dircount = 1;
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004250 search_ctx->ffsc_stopdirs_v =
4251 (char_u **)alloc((unsigned)sizeof(char_u *));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004252
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004253 if (search_ctx->ffsc_stopdirs_v != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004254 {
4255 do
4256 {
4257 char_u *helper;
4258 void *ptr;
4259
4260 helper = walker;
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004261 ptr = vim_realloc(search_ctx->ffsc_stopdirs_v,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004262 (dircount + 1) * sizeof(char_u *));
4263 if (ptr)
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004264 search_ctx->ffsc_stopdirs_v = ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004265 else
4266 /* ignore, keep what we have and continue */
4267 break;
4268 walker = vim_strchr(walker, ';');
4269 if (walker)
4270 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004271 search_ctx->ffsc_stopdirs_v[dircount-1] =
4272 vim_strnsave(helper, (int)(walker - helper));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004273 walker++;
4274 }
4275 else
4276 /* this might be "", which means ascent till top
4277 * of directory tree.
4278 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004279 search_ctx->ffsc_stopdirs_v[dircount-1] =
4280 vim_strsave(helper);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004281
4282 dircount++;
4283
4284 } while (walker != NULL);
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004285 search_ctx->ffsc_stopdirs_v[dircount-1] = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004286 }
4287 }
4288#endif
4289
4290#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004291 search_ctx->ffsc_level = level;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004292
4293 /* split into:
4294 * -fix path
4295 * -wildcard_stuff (might be NULL)
4296 */
4297 wc_part = vim_strchr(path, '*');
4298 if (wc_part != NULL)
4299 {
4300 int llevel;
4301 int len;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00004302 char *errpt;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004303
4304 /* save the fix part of the path */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004305 search_ctx->ffsc_fix_path = vim_strnsave(path, (int)(wc_part - path));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004306
4307 /*
4308 * copy wc_path and add restricts to the '**' wildcard.
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00004309 * The octet after a '**' is used as a (binary) counter.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004310 * So '**3' is transposed to '**^C' ('^C' is ASCII value 3)
4311 * or '**76' is transposed to '**N'( 'N' is ASCII value 76).
4312 * For EBCDIC you get different character values.
4313 * If no restrict is given after '**' the default is used.
Bram Moolenaar21160b92009-11-11 15:56:10 +00004314 * Due to this technique the path looks awful if you print it as a
Bram Moolenaar071d4272004-06-13 20:20:40 +00004315 * string.
4316 */
4317 len = 0;
4318 while (*wc_part != NUL)
4319 {
Bram Moolenaarb9ba4032011-12-08 17:49:35 +01004320 if (len + 5 >= MAXPATHL)
4321 {
4322 EMSG(_(e_pathtoolong));
4323 break;
4324 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004325 if (STRNCMP(wc_part, "**", 2) == 0)
4326 {
4327 ff_expand_buffer[len++] = *wc_part++;
4328 ff_expand_buffer[len++] = *wc_part++;
4329
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00004330 llevel = strtol((char *)wc_part, &errpt, 10);
4331 if ((char_u *)errpt != wc_part && llevel > 0 && llevel < 255)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004332 ff_expand_buffer[len++] = llevel;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00004333 else if ((char_u *)errpt != wc_part && llevel == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004334 /* restrict is 0 -> remove already added '**' */
4335 len -= 2;
4336 else
4337 ff_expand_buffer[len++] = FF_MAX_STAR_STAR_EXPAND;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00004338 wc_part = (char_u *)errpt;
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00004339 if (*wc_part != NUL && !vim_ispathsep(*wc_part))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004340 {
4341 EMSG2(_("E343: Invalid path: '**[number]' must be at the end of the path or be followed by '%s'."), PATHSEPSTR);
4342 goto error_return;
4343 }
4344 }
4345 else
4346 ff_expand_buffer[len++] = *wc_part++;
4347 }
4348 ff_expand_buffer[len] = NUL;
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004349 search_ctx->ffsc_wc_path = vim_strsave(ff_expand_buffer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004350
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004351 if (search_ctx->ffsc_wc_path == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004352 goto error_return;
4353 }
4354 else
4355#endif
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004356 search_ctx->ffsc_fix_path = vim_strsave(path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004357
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004358 if (search_ctx->ffsc_start_dir == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004359 {
4360 /* store the fix part as startdir.
4361 * This is needed if the parameter path is fully qualified.
4362 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004363 search_ctx->ffsc_start_dir = vim_strsave(search_ctx->ffsc_fix_path);
Bram Moolenaara9d52e32010-07-31 16:44:19 +02004364 if (search_ctx->ffsc_start_dir == NULL)
4365 goto error_return;
4366 search_ctx->ffsc_fix_path[0] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004367 }
4368
4369 /* create an absolute path */
Bram Moolenaarb9ba4032011-12-08 17:49:35 +01004370 if (STRLEN(search_ctx->ffsc_start_dir)
4371 + STRLEN(search_ctx->ffsc_fix_path) + 3 >= MAXPATHL)
4372 {
4373 EMSG(_(e_pathtoolong));
4374 goto error_return;
4375 }
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004376 STRCPY(ff_expand_buffer, search_ctx->ffsc_start_dir);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004377 add_pathsep(ff_expand_buffer);
Bram Moolenaarf4c5fcb2013-07-03 17:14:00 +02004378 {
Bram Moolenaar61214042013-07-04 21:19:33 +02004379 int eb_len = (int)STRLEN(ff_expand_buffer);
4380 char_u *buf = alloc(eb_len
4381 + (int)STRLEN(search_ctx->ffsc_fix_path) + 1);
Bram Moolenaarf4c5fcb2013-07-03 17:14:00 +02004382
4383 STRCPY(buf, ff_expand_buffer);
Bram Moolenaar0f5a5ed2013-07-03 17:51:17 +02004384 STRCPY(buf + eb_len, search_ctx->ffsc_fix_path);
Bram Moolenaarf4c5fcb2013-07-03 17:14:00 +02004385 if (mch_isdir(buf))
4386 {
4387 STRCAT(ff_expand_buffer, search_ctx->ffsc_fix_path);
4388 add_pathsep(ff_expand_buffer);
4389 }
4390#ifdef FEAT_PATH_EXTRA
4391 else
4392 {
Bram Moolenaaree0ee2a2013-07-03 21:19:07 +02004393 char_u *p = gettail(search_ctx->ffsc_fix_path);
Bram Moolenaar5f4c8402014-01-06 06:19:11 +01004394 char_u *wc_path = NULL;
4395 char_u *temp = NULL;
Bram Moolenaarf4c5fcb2013-07-03 17:14:00 +02004396 int len = 0;
4397
Bram Moolenaaree0ee2a2013-07-03 21:19:07 +02004398 if (p > search_ctx->ffsc_fix_path)
Bram Moolenaarf4c5fcb2013-07-03 17:14:00 +02004399 {
Bram Moolenaar61214042013-07-04 21:19:33 +02004400 len = (int)(p - search_ctx->ffsc_fix_path) - 1;
Bram Moolenaarf4c5fcb2013-07-03 17:14:00 +02004401 STRNCAT(ff_expand_buffer, search_ctx->ffsc_fix_path, len);
4402 add_pathsep(ff_expand_buffer);
4403 }
4404 else
Bram Moolenaar61214042013-07-04 21:19:33 +02004405 len = (int)STRLEN(search_ctx->ffsc_fix_path);
Bram Moolenaarf4c5fcb2013-07-03 17:14:00 +02004406
4407 if (search_ctx->ffsc_wc_path != NULL)
4408 {
4409 wc_path = vim_strsave(search_ctx->ffsc_wc_path);
Bram Moolenaar61214042013-07-04 21:19:33 +02004410 temp = alloc((int)(STRLEN(search_ctx->ffsc_wc_path)
Bram Moolenaare8785f22013-07-07 16:15:35 +02004411 + STRLEN(search_ctx->ffsc_fix_path + len)
4412 + 1));
Bram Moolenaarc79a5452015-09-29 12:08:42 +02004413 if (temp == NULL || wc_path == NULL)
4414 {
4415 vim_free(buf);
4416 vim_free(temp);
4417 vim_free(wc_path);
4418 goto error_return;
4419 }
Bram Moolenaarf4c5fcb2013-07-03 17:14:00 +02004420
Bram Moolenaarc79a5452015-09-29 12:08:42 +02004421 STRCPY(temp, search_ctx->ffsc_fix_path + len);
4422 STRCAT(temp, search_ctx->ffsc_wc_path);
4423 vim_free(search_ctx->ffsc_wc_path);
Bram Moolenaarf4c5fcb2013-07-03 17:14:00 +02004424 vim_free(wc_path);
Bram Moolenaarc79a5452015-09-29 12:08:42 +02004425 search_ctx->ffsc_wc_path = temp;
Bram Moolenaarf4c5fcb2013-07-03 17:14:00 +02004426 }
Bram Moolenaarf4c5fcb2013-07-03 17:14:00 +02004427 }
4428#endif
4429 vim_free(buf);
4430 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004431
4432 sptr = ff_create_stack_element(ff_expand_buffer,
4433#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004434 search_ctx->ffsc_wc_path,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004435#endif
4436 level, 0);
4437
4438 if (sptr == NULL)
4439 goto error_return;
4440
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004441 ff_push(search_ctx, sptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004442
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004443 search_ctx->ffsc_file_to_search = vim_strsave(filename);
4444 if (search_ctx->ffsc_file_to_search == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004445 goto error_return;
4446
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004447 return search_ctx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004448
4449error_return:
4450 /*
4451 * We clear the search context now!
4452 * Even when the caller gave us a (perhaps valid) context we free it here,
4453 * as we might have already destroyed it.
4454 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004455 vim_findfile_cleanup(search_ctx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004456 return NULL;
4457}
4458
4459#if defined(FEAT_PATH_EXTRA) || defined(PROTO)
4460/*
4461 * Get the stopdir string. Check that ';' is not escaped.
4462 */
4463 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01004464vim_findfile_stopdir(char_u *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004465{
4466 char_u *r_ptr = buf;
4467
4468 while (*r_ptr != NUL && *r_ptr != ';')
4469 {
4470 if (r_ptr[0] == '\\' && r_ptr[1] == ';')
4471 {
Bram Moolenaar0b573a52011-07-27 17:31:47 +02004472 /* Overwrite the escape char,
4473 * use STRLEN(r_ptr) to move the trailing '\0'. */
Bram Moolenaar446cb832008-06-24 21:56:24 +00004474 STRMOVE(r_ptr, r_ptr + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004475 r_ptr++;
4476 }
4477 r_ptr++;
4478 }
4479 if (*r_ptr == ';')
4480 {
4481 *r_ptr = 0;
4482 r_ptr++;
4483 }
4484 else if (*r_ptr == NUL)
4485 r_ptr = NULL;
4486 return r_ptr;
4487}
4488#endif
4489
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004490/*
4491 * Clean up the given search context. Can handle a NULL pointer.
4492 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004493 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004494vim_findfile_cleanup(void *ctx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004495{
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00004496 if (ctx == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004497 return;
4498
Bram Moolenaar071d4272004-06-13 20:20:40 +00004499 vim_findfile_free_visited(ctx);
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004500 ff_clear(ctx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004501 vim_free(ctx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004502}
4503
4504/*
4505 * Find a file in a search context.
4506 * The search context was created with vim_findfile_init() above.
4507 * Return a pointer to an allocated file name or NULL if nothing found.
4508 * To get all matching files call this function until you get NULL.
4509 *
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00004510 * If the passed search_context is NULL, NULL is returned.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004511 *
4512 * The search algorithm is depth first. To change this replace the
4513 * stack with a list (don't forget to leave partly searched directories on the
4514 * top of the list).
4515 */
4516 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01004517vim_findfile(void *search_ctx_arg)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004518{
4519 char_u *file_path;
4520#ifdef FEAT_PATH_EXTRA
4521 char_u *rest_of_wildcards;
4522 char_u *path_end = NULL;
4523#endif
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004524 ff_stack_T *stackp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004525#if defined(FEAT_SEARCHPATH) || defined(FEAT_PATH_EXTRA)
4526 int len;
4527#endif
4528 int i;
4529 char_u *p;
4530#ifdef FEAT_SEARCHPATH
4531 char_u *suf;
4532#endif
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004533 ff_search_ctx_T *search_ctx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004534
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004535 if (search_ctx_arg == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004536 return NULL;
4537
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004538 search_ctx = (ff_search_ctx_T *)search_ctx_arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004539
4540 /*
4541 * filepath is used as buffer for various actions and as the storage to
4542 * return a found filename.
4543 */
4544 if ((file_path = alloc((int)MAXPATHL)) == NULL)
4545 return NULL;
4546
4547#ifdef FEAT_PATH_EXTRA
4548 /* store the end of the start dir -- needed for upward search */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004549 if (search_ctx->ffsc_start_dir != NULL)
4550 path_end = &search_ctx->ffsc_start_dir[
4551 STRLEN(search_ctx->ffsc_start_dir)];
Bram Moolenaar071d4272004-06-13 20:20:40 +00004552#endif
4553
4554#ifdef FEAT_PATH_EXTRA
4555 /* upward search loop */
4556 for (;;)
4557 {
4558#endif
4559 /* downward search loop */
4560 for (;;)
4561 {
4562 /* check if user user wants to stop the search*/
4563 ui_breakcheck();
4564 if (got_int)
4565 break;
4566
4567 /* get directory to work on from stack */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004568 stackp = ff_pop(search_ctx);
4569 if (stackp == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004570 break;
4571
4572 /*
4573 * TODO: decide if we leave this test in
4574 *
4575 * GOOD: don't search a directory(-tree) twice.
4576 * BAD: - check linked list for every new directory entered.
4577 * - check for double files also done below
4578 *
4579 * Here we check if we already searched this directory.
4580 * We already searched a directory if:
4581 * 1) The directory is the same.
4582 * 2) We would use the same wildcard string.
4583 *
4584 * Good if you have links on same directory via several ways
4585 * or you have selfreferences in directories (e.g. SuSE Linux 6.3:
4586 * /etc/rc.d/init.d is linked to /etc/rc.d -> endless loop)
4587 *
4588 * This check is only needed for directories we work on for the
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004589 * first time (hence stackp->ff_filearray == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004590 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004591 if (stackp->ffs_filearray == NULL
4592 && ff_check_visited(&search_ctx->ffsc_dir_visited_list
Bram Moolenaar071d4272004-06-13 20:20:40 +00004593 ->ffvl_visited_list,
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004594 stackp->ffs_fix_path
Bram Moolenaar071d4272004-06-13 20:20:40 +00004595#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004596 , stackp->ffs_wc_path
Bram Moolenaar071d4272004-06-13 20:20:40 +00004597#endif
4598 ) == FAIL)
4599 {
4600#ifdef FF_VERBOSE
4601 if (p_verbose >= 5)
4602 {
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004603 verbose_enter_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004604 smsg((char_u *)"Already Searched: %s (%s)",
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004605 stackp->ffs_fix_path, stackp->ffs_wc_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004606 /* don't overwrite this either */
4607 msg_puts((char_u *)"\n");
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004608 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004609 }
4610#endif
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004611 ff_free_stack_element(stackp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004612 continue;
4613 }
4614#ifdef FF_VERBOSE
4615 else if (p_verbose >= 5)
4616 {
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004617 verbose_enter_scroll();
Bram Moolenaar051b7822005-05-19 21:00:46 +00004618 smsg((char_u *)"Searching: %s (%s)",
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004619 stackp->ffs_fix_path, stackp->ffs_wc_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004620 /* don't overwrite this either */
4621 msg_puts((char_u *)"\n");
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004622 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004623 }
4624#endif
4625
4626 /* check depth */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004627 if (stackp->ffs_level <= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004628 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004629 ff_free_stack_element(stackp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004630 continue;
4631 }
4632
4633 file_path[0] = NUL;
4634
4635 /*
4636 * If no filearray till now expand wildcards
4637 * The function expand_wildcards() can handle an array of paths
4638 * and all possible expands are returned in one array. We use this
4639 * to handle the expansion of '**' into an empty string.
4640 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004641 if (stackp->ffs_filearray == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004642 {
4643 char_u *dirptrs[2];
4644
4645 /* we use filepath to build the path expand_wildcards() should
4646 * expand.
4647 */
4648 dirptrs[0] = file_path;
4649 dirptrs[1] = NULL;
4650
4651 /* if we have a start dir copy it in */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004652 if (!vim_isAbsName(stackp->ffs_fix_path)
4653 && search_ctx->ffsc_start_dir)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004654 {
Bram Moolenaar15618fa2017-03-19 21:37:13 +01004655 if (STRLEN(search_ctx->ffsc_start_dir) + 1 < MAXPATHL)
4656 {
4657 STRCPY(file_path, search_ctx->ffsc_start_dir);
4658 add_pathsep(file_path);
4659 }
4660 else
4661 goto fail;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004662 }
4663
4664 /* append the fix part of the search path */
Bram Moolenaar15618fa2017-03-19 21:37:13 +01004665 if (STRLEN(file_path) + STRLEN(stackp->ffs_fix_path) + 1 < MAXPATHL)
4666 {
4667 STRCAT(file_path, stackp->ffs_fix_path);
4668 add_pathsep(file_path);
4669 }
4670 else
4671 goto fail;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004672
4673#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004674 rest_of_wildcards = stackp->ffs_wc_path;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004675 if (*rest_of_wildcards != NUL)
4676 {
4677 len = (int)STRLEN(file_path);
4678 if (STRNCMP(rest_of_wildcards, "**", 2) == 0)
4679 {
4680 /* pointer to the restrict byte
4681 * The restrict byte is not a character!
4682 */
4683 p = rest_of_wildcards + 2;
4684
4685 if (*p > 0)
4686 {
4687 (*p)--;
Bram Moolenaar15618fa2017-03-19 21:37:13 +01004688 if (len + 1 < MAXPATHL)
4689 file_path[len++] = '*';
4690 else
4691 goto fail;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004692 }
4693
4694 if (*p == 0)
4695 {
4696 /* remove '**<numb> from wildcards */
Bram Moolenaar446cb832008-06-24 21:56:24 +00004697 STRMOVE(rest_of_wildcards, rest_of_wildcards + 3);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004698 }
4699 else
4700 rest_of_wildcards += 3;
4701
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004702 if (stackp->ffs_star_star_empty == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004703 {
4704 /* if not done before, expand '**' to empty */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004705 stackp->ffs_star_star_empty = 1;
4706 dirptrs[1] = stackp->ffs_fix_path;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004707 }
4708 }
4709
4710 /*
4711 * Here we copy until the next path separator or the end of
4712 * the path. If we stop at a path separator, there is
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00004713 * still something else left. This is handled below by
Bram Moolenaar071d4272004-06-13 20:20:40 +00004714 * pushing every directory returned from expand_wildcards()
4715 * on the stack again for further search.
4716 */
4717 while (*rest_of_wildcards
4718 && !vim_ispathsep(*rest_of_wildcards))
Bram Moolenaar15618fa2017-03-19 21:37:13 +01004719 if (len + 1 < MAXPATHL)
4720 file_path[len++] = *rest_of_wildcards++;
4721 else
4722 goto fail;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004723
4724 file_path[len] = NUL;
4725 if (vim_ispathsep(*rest_of_wildcards))
4726 rest_of_wildcards++;
4727 }
4728#endif
4729
4730 /*
4731 * Expand wildcards like "*" and "$VAR".
4732 * If the path is a URL don't try this.
4733 */
4734 if (path_with_url(dirptrs[0]))
4735 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004736 stackp->ffs_filearray = (char_u **)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004737 alloc((unsigned)sizeof(char *));
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004738 if (stackp->ffs_filearray != NULL
4739 && (stackp->ffs_filearray[0]
Bram Moolenaar071d4272004-06-13 20:20:40 +00004740 = vim_strsave(dirptrs[0])) != NULL)
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004741 stackp->ffs_filearray_size = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004742 else
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004743 stackp->ffs_filearray_size = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004744 }
4745 else
Bram Moolenaar0b573a52011-07-27 17:31:47 +02004746 /* Add EW_NOTWILD because the expanded path may contain
4747 * wildcard characters that are to be taken literally.
4748 * This is a bit of a hack. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004749 expand_wildcards((dirptrs[1] == NULL) ? 1 : 2, dirptrs,
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004750 &stackp->ffs_filearray_size,
4751 &stackp->ffs_filearray,
Bram Moolenaar0b573a52011-07-27 17:31:47 +02004752 EW_DIR|EW_ADDSLASH|EW_SILENT|EW_NOTWILD);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004753
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004754 stackp->ffs_filearray_cur = 0;
4755 stackp->ffs_stage = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004756 }
4757#ifdef FEAT_PATH_EXTRA
4758 else
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004759 rest_of_wildcards = &stackp->ffs_wc_path[
4760 STRLEN(stackp->ffs_wc_path)];
Bram Moolenaar071d4272004-06-13 20:20:40 +00004761#endif
4762
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004763 if (stackp->ffs_stage == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004764 {
4765 /* this is the first time we work on this directory */
4766#ifdef FEAT_PATH_EXTRA
4767 if (*rest_of_wildcards == NUL)
4768#endif
4769 {
4770 /*
Bram Moolenaar473de612013-06-08 18:19:48 +02004771 * We don't have further wildcards to expand, so we have to
4772 * check for the final file now.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004773 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004774 for (i = stackp->ffs_filearray_cur;
4775 i < stackp->ffs_filearray_size; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004776 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004777 if (!path_with_url(stackp->ffs_filearray[i])
4778 && !mch_isdir(stackp->ffs_filearray[i]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004779 continue; /* not a directory */
4780
Bram Moolenaar21160b92009-11-11 15:56:10 +00004781 /* prepare the filename to be checked for existence
Bram Moolenaar071d4272004-06-13 20:20:40 +00004782 * below */
Bram Moolenaar15618fa2017-03-19 21:37:13 +01004783 if (STRLEN(stackp->ffs_filearray[i]) + 1
4784 + STRLEN(search_ctx->ffsc_file_to_search) < MAXPATHL)
4785 {
4786 STRCPY(file_path, stackp->ffs_filearray[i]);
4787 add_pathsep(file_path);
4788 STRCAT(file_path, search_ctx->ffsc_file_to_search);
4789 }
4790 else
4791 goto fail;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004792
4793 /*
4794 * Try without extra suffix and then with suffixes
4795 * from 'suffixesadd'.
4796 */
4797#ifdef FEAT_SEARCHPATH
4798 len = (int)STRLEN(file_path);
Bram Moolenaar463ee342010-08-08 18:17:52 +02004799 if (search_ctx->ffsc_tagfile)
4800 suf = (char_u *)"";
4801 else
4802 suf = curbuf->b_p_sua;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004803 for (;;)
4804#endif
4805 {
4806 /* if file exists and we didn't already find it */
4807 if ((path_with_url(file_path)
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004808 || (mch_getperm(file_path) >= 0
4809 && (search_ctx->ffsc_find_what
4810 == FINDFILE_BOTH
4811 || ((search_ctx->ffsc_find_what
4812 == FINDFILE_DIR)
4813 == mch_isdir(file_path)))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004814#ifndef FF_VERBOSE
4815 && (ff_check_visited(
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004816 &search_ctx->ffsc_visited_list->ffvl_visited_list,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004817 file_path
4818#ifdef FEAT_PATH_EXTRA
4819 , (char_u *)""
4820#endif
4821 ) == OK)
4822#endif
4823 )
4824 {
4825#ifdef FF_VERBOSE
4826 if (ff_check_visited(
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004827 &search_ctx->ffsc_visited_list->ffvl_visited_list,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004828 file_path
4829#ifdef FEAT_PATH_EXTRA
4830 , (char_u *)""
4831#endif
4832 ) == FAIL)
4833 {
4834 if (p_verbose >= 5)
4835 {
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004836 verbose_enter_scroll();
Bram Moolenaar051b7822005-05-19 21:00:46 +00004837 smsg((char_u *)"Already: %s",
Bram Moolenaar071d4272004-06-13 20:20:40 +00004838 file_path);
4839 /* don't overwrite this either */
4840 msg_puts((char_u *)"\n");
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004841 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004842 }
4843 continue;
4844 }
4845#endif
4846
4847 /* push dir to examine rest of subdirs later */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004848 stackp->ffs_filearray_cur = i + 1;
4849 ff_push(search_ctx, stackp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004850
Bram Moolenaar6bab9fa2009-01-22 20:32:12 +00004851 if (!path_with_url(file_path))
4852 simplify_filename(file_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004853 if (mch_dirname(ff_expand_buffer, MAXPATHL)
4854 == OK)
4855 {
4856 p = shorten_fname(file_path,
4857 ff_expand_buffer);
4858 if (p != NULL)
Bram Moolenaar446cb832008-06-24 21:56:24 +00004859 STRMOVE(file_path, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004860 }
4861#ifdef FF_VERBOSE
4862 if (p_verbose >= 5)
4863 {
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004864 verbose_enter_scroll();
Bram Moolenaar051b7822005-05-19 21:00:46 +00004865 smsg((char_u *)"HIT: %s", file_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004866 /* don't overwrite this either */
4867 msg_puts((char_u *)"\n");
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004868 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004869 }
4870#endif
4871 return file_path;
4872 }
4873
4874#ifdef FEAT_SEARCHPATH
4875 /* Not found or found already, try next suffix. */
4876 if (*suf == NUL)
4877 break;
4878 copy_option_part(&suf, file_path + len,
4879 MAXPATHL - len, ",");
4880#endif
4881 }
4882 }
4883 }
4884#ifdef FEAT_PATH_EXTRA
4885 else
4886 {
4887 /*
4888 * still wildcards left, push the directories for further
4889 * search
4890 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004891 for (i = stackp->ffs_filearray_cur;
4892 i < stackp->ffs_filearray_size; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004893 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004894 if (!mch_isdir(stackp->ffs_filearray[i]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004895 continue; /* not a directory */
4896
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004897 ff_push(search_ctx,
4898 ff_create_stack_element(
4899 stackp->ffs_filearray[i],
4900 rest_of_wildcards,
4901 stackp->ffs_level - 1, 0));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004902 }
4903 }
4904#endif
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004905 stackp->ffs_filearray_cur = 0;
4906 stackp->ffs_stage = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004907 }
4908
4909#ifdef FEAT_PATH_EXTRA
4910 /*
4911 * if wildcards contains '**' we have to descent till we reach the
4912 * leaves of the directory tree.
4913 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004914 if (STRNCMP(stackp->ffs_wc_path, "**", 2) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004915 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004916 for (i = stackp->ffs_filearray_cur;
4917 i < stackp->ffs_filearray_size; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004918 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004919 if (fnamecmp(stackp->ffs_filearray[i],
4920 stackp->ffs_fix_path) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004921 continue; /* don't repush same directory */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004922 if (!mch_isdir(stackp->ffs_filearray[i]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004923 continue; /* not a directory */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004924 ff_push(search_ctx,
4925 ff_create_stack_element(stackp->ffs_filearray[i],
4926 stackp->ffs_wc_path, stackp->ffs_level - 1, 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004927 }
4928 }
4929#endif
4930
4931 /* we are done with the current directory */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004932 ff_free_stack_element(stackp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004933
4934 }
4935
4936#ifdef FEAT_PATH_EXTRA
4937 /* If we reached this, we didn't find anything downwards.
4938 * Let's check if we should do an upward search.
4939 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004940 if (search_ctx->ffsc_start_dir
4941 && search_ctx->ffsc_stopdirs_v != NULL && !got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004942 {
4943 ff_stack_T *sptr;
4944
4945 /* is the last starting directory in the stop list? */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004946 if (ff_path_in_stoplist(search_ctx->ffsc_start_dir,
4947 (int)(path_end - search_ctx->ffsc_start_dir),
4948 search_ctx->ffsc_stopdirs_v) == TRUE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004949 break;
4950
4951 /* cut of last dir */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004952 while (path_end > search_ctx->ffsc_start_dir
4953 && vim_ispathsep(*path_end))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004954 path_end--;
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004955 while (path_end > search_ctx->ffsc_start_dir
4956 && !vim_ispathsep(path_end[-1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004957 path_end--;
4958 *path_end = 0;
4959 path_end--;
4960
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004961 if (*search_ctx->ffsc_start_dir == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004962 break;
4963
Bram Moolenaar15618fa2017-03-19 21:37:13 +01004964 if (STRLEN(search_ctx->ffsc_start_dir) + 1
4965 + STRLEN(search_ctx->ffsc_fix_path) < MAXPATHL)
4966 {
4967 STRCPY(file_path, search_ctx->ffsc_start_dir);
4968 add_pathsep(file_path);
4969 STRCAT(file_path, search_ctx->ffsc_fix_path);
4970 }
4971 else
4972 goto fail;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004973
4974 /* create a new stack entry */
4975 sptr = ff_create_stack_element(file_path,
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004976 search_ctx->ffsc_wc_path, search_ctx->ffsc_level, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004977 if (sptr == NULL)
4978 break;
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004979 ff_push(search_ctx, sptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004980 }
4981 else
4982 break;
4983 }
4984#endif
4985
Bram Moolenaar15618fa2017-03-19 21:37:13 +01004986fail:
Bram Moolenaar071d4272004-06-13 20:20:40 +00004987 vim_free(file_path);
4988 return NULL;
4989}
4990
4991/*
4992 * Free the list of lists of visited files and directories
4993 * Can handle it if the passed search_context is NULL;
4994 */
4995 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004996vim_findfile_free_visited(void *search_ctx_arg)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004997{
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004998 ff_search_ctx_T *search_ctx;
4999
5000 if (search_ctx_arg == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005001 return;
5002
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005003 search_ctx = (ff_search_ctx_T *)search_ctx_arg;
5004 vim_findfile_free_visited_list(&search_ctx->ffsc_visited_lists_list);
5005 vim_findfile_free_visited_list(&search_ctx->ffsc_dir_visited_lists_list);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005006}
5007
5008 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005009vim_findfile_free_visited_list(ff_visited_list_hdr_T **list_headp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005010{
5011 ff_visited_list_hdr_T *vp;
5012
5013 while (*list_headp != NULL)
5014 {
5015 vp = (*list_headp)->ffvl_next;
5016 ff_free_visited_list((*list_headp)->ffvl_visited_list);
5017
5018 vim_free((*list_headp)->ffvl_filename);
5019 vim_free(*list_headp);
5020 *list_headp = vp;
5021 }
5022 *list_headp = NULL;
5023}
5024
5025 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005026ff_free_visited_list(ff_visited_T *vl)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005027{
5028 ff_visited_T *vp;
5029
5030 while (vl != NULL)
5031 {
5032 vp = vl->ffv_next;
5033#ifdef FEAT_PATH_EXTRA
5034 vim_free(vl->ffv_wc_path);
5035#endif
5036 vim_free(vl);
5037 vl = vp;
5038 }
5039 vl = NULL;
5040}
5041
5042/*
5043 * Returns the already visited list for the given filename. If none is found it
5044 * allocates a new one.
5045 */
5046 static ff_visited_list_hdr_T*
Bram Moolenaar9b578142016-01-30 19:39:49 +01005047ff_get_visited_list(
5048 char_u *filename,
5049 ff_visited_list_hdr_T **list_headp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005050{
5051 ff_visited_list_hdr_T *retptr = NULL;
5052
5053 /* check if a visited list for the given filename exists */
5054 if (*list_headp != NULL)
5055 {
5056 retptr = *list_headp;
5057 while (retptr != NULL)
5058 {
5059 if (fnamecmp(filename, retptr->ffvl_filename) == 0)
5060 {
5061#ifdef FF_VERBOSE
5062 if (p_verbose >= 5)
5063 {
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00005064 verbose_enter_scroll();
Bram Moolenaar051b7822005-05-19 21:00:46 +00005065 smsg((char_u *)"ff_get_visited_list: FOUND list for %s",
Bram Moolenaar071d4272004-06-13 20:20:40 +00005066 filename);
5067 /* don't overwrite this either */
5068 msg_puts((char_u *)"\n");
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00005069 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005070 }
5071#endif
5072 return retptr;
5073 }
5074 retptr = retptr->ffvl_next;
5075 }
5076 }
5077
5078#ifdef FF_VERBOSE
5079 if (p_verbose >= 5)
5080 {
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00005081 verbose_enter_scroll();
Bram Moolenaar051b7822005-05-19 21:00:46 +00005082 smsg((char_u *)"ff_get_visited_list: new list for %s", filename);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005083 /* don't overwrite this either */
5084 msg_puts((char_u *)"\n");
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00005085 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005086 }
5087#endif
5088
5089 /*
5090 * if we reach this we didn't find a list and we have to allocate new list
5091 */
5092 retptr = (ff_visited_list_hdr_T*)alloc((unsigned)sizeof(*retptr));
5093 if (retptr == NULL)
5094 return NULL;
5095
5096 retptr->ffvl_visited_list = NULL;
5097 retptr->ffvl_filename = vim_strsave(filename);
5098 if (retptr->ffvl_filename == NULL)
5099 {
5100 vim_free(retptr);
5101 return NULL;
5102 }
5103 retptr->ffvl_next = *list_headp;
5104 *list_headp = retptr;
5105
5106 return retptr;
5107}
5108
5109#ifdef FEAT_PATH_EXTRA
5110/*
5111 * check if two wildcard paths are equal. Returns TRUE or FALSE.
5112 * They are equal if:
5113 * - both paths are NULL
5114 * - they have the same length
5115 * - char by char comparison is OK
5116 * - the only differences are in the counters behind a '**', so
5117 * '**\20' is equal to '**\24'
5118 */
5119 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01005120ff_wc_equal(char_u *s1, char_u *s2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005121{
Bram Moolenaarf6470c22015-08-25 16:31:40 +02005122 int i, j;
Bram Moolenaard43f0952015-08-27 22:30:47 +02005123 int c1 = NUL;
5124 int c2 = NUL;
Bram Moolenaard0e2d942013-03-19 18:31:49 +01005125 int prev1 = NUL;
5126 int prev2 = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005127
5128 if (s1 == s2)
5129 return TRUE;
5130
5131 if (s1 == NULL || s2 == NULL)
5132 return FALSE;
5133
Bram Moolenaard43f0952015-08-27 22:30:47 +02005134 for (i = 0, j = 0; s1[i] != NUL && s2[j] != NUL;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005135 {
Bram Moolenaard43f0952015-08-27 22:30:47 +02005136 c1 = PTR2CHAR(s1 + i);
5137 c2 = PTR2CHAR(s2 + j);
Bram Moolenaard0e2d942013-03-19 18:31:49 +01005138
5139 if ((p_fic ? MB_TOLOWER(c1) != MB_TOLOWER(c2) : c1 != c2)
5140 && (prev1 != '*' || prev2 != '*'))
Bram Moolenaard43f0952015-08-27 22:30:47 +02005141 return FALSE;
Bram Moolenaard0e2d942013-03-19 18:31:49 +01005142 prev2 = prev1;
5143 prev1 = c1;
Bram Moolenaarf6470c22015-08-25 16:31:40 +02005144
5145 i += MB_PTR2LEN(s1 + i);
5146 j += MB_PTR2LEN(s2 + j);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005147 }
Bram Moolenaar4d0c7bc2015-09-25 16:38:01 +02005148 return s1[i] == s2[j];
Bram Moolenaar071d4272004-06-13 20:20:40 +00005149}
5150#endif
5151
5152/*
5153 * maintains the list of already visited files and dirs
5154 * returns FAIL if the given file/dir is already in the list
5155 * returns OK if it is newly added
5156 *
5157 * TODO: What to do on memory allocation problems?
5158 * -> return TRUE - Better the file is found several times instead of
5159 * never.
5160 */
5161 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01005162ff_check_visited(
5163 ff_visited_T **visited_list,
5164 char_u *fname
Bram Moolenaar071d4272004-06-13 20:20:40 +00005165#ifdef FEAT_PATH_EXTRA
Bram Moolenaar9b578142016-01-30 19:39:49 +01005166 , char_u *wc_path
Bram Moolenaar071d4272004-06-13 20:20:40 +00005167#endif
Bram Moolenaar9b578142016-01-30 19:39:49 +01005168 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00005169{
5170 ff_visited_T *vp;
5171#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02005172 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005173 int url = FALSE;
5174#endif
5175
5176 /* For an URL we only compare the name, otherwise we compare the
5177 * device/inode (unix) or the full path name (not Unix). */
5178 if (path_with_url(fname))
5179 {
Bram Moolenaarbbebc852005-07-18 21:47:53 +00005180 vim_strncpy(ff_expand_buffer, fname, MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005181#ifdef UNIX
5182 url = TRUE;
5183#endif
5184 }
5185 else
5186 {
5187 ff_expand_buffer[0] = NUL;
5188#ifdef UNIX
5189 if (mch_stat((char *)fname, &st) < 0)
5190#else
5191 if (vim_FullName(fname, ff_expand_buffer, MAXPATHL, TRUE) == FAIL)
5192#endif
5193 return FAIL;
5194 }
5195
5196 /* check against list of already visited files */
5197 for (vp = *visited_list; vp != NULL; vp = vp->ffv_next)
5198 {
5199 if (
5200#ifdef UNIX
Bram Moolenaare1fbddc2009-05-16 19:07:03 +00005201 !url ? (vp->ffv_dev_valid && vp->ffv_dev == st.st_dev
5202 && vp->ffv_ino == st.st_ino)
5203 :
Bram Moolenaar071d4272004-06-13 20:20:40 +00005204#endif
5205 fnamecmp(vp->ffv_fname, ff_expand_buffer) == 0
5206 )
5207 {
5208#ifdef FEAT_PATH_EXTRA
5209 /* are the wildcard parts equal */
5210 if (ff_wc_equal(vp->ffv_wc_path, wc_path) == TRUE)
5211#endif
5212 /* already visited */
5213 return FAIL;
5214 }
5215 }
5216
5217 /*
5218 * New file/dir. Add it to the list of visited files/dirs.
5219 */
5220 vp = (ff_visited_T *)alloc((unsigned)(sizeof(ff_visited_T)
5221 + STRLEN(ff_expand_buffer)));
5222
5223 if (vp != NULL)
5224 {
5225#ifdef UNIX
5226 if (!url)
5227 {
Bram Moolenaare1fbddc2009-05-16 19:07:03 +00005228 vp->ffv_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005229 vp->ffv_ino = st.st_ino;
5230 vp->ffv_dev = st.st_dev;
5231 vp->ffv_fname[0] = NUL;
5232 }
5233 else
5234 {
Bram Moolenaare1fbddc2009-05-16 19:07:03 +00005235 vp->ffv_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005236#endif
5237 STRCPY(vp->ffv_fname, ff_expand_buffer);
5238#ifdef UNIX
5239 }
5240#endif
5241#ifdef FEAT_PATH_EXTRA
5242 if (wc_path != NULL)
5243 vp->ffv_wc_path = vim_strsave(wc_path);
5244 else
5245 vp->ffv_wc_path = NULL;
5246#endif
5247
5248 vp->ffv_next = *visited_list;
5249 *visited_list = vp;
5250 }
5251
5252 return OK;
5253}
5254
5255/*
5256 * create stack element from given path pieces
5257 */
5258 static ff_stack_T *
Bram Moolenaar9b578142016-01-30 19:39:49 +01005259ff_create_stack_element(
5260 char_u *fix_part,
Bram Moolenaar071d4272004-06-13 20:20:40 +00005261#ifdef FEAT_PATH_EXTRA
Bram Moolenaar9b578142016-01-30 19:39:49 +01005262 char_u *wc_part,
Bram Moolenaar071d4272004-06-13 20:20:40 +00005263#endif
Bram Moolenaar9b578142016-01-30 19:39:49 +01005264 int level,
5265 int star_star_empty)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005266{
5267 ff_stack_T *new;
5268
5269 new = (ff_stack_T *)alloc((unsigned)sizeof(ff_stack_T));
5270 if (new == NULL)
5271 return NULL;
5272
5273 new->ffs_prev = NULL;
5274 new->ffs_filearray = NULL;
5275 new->ffs_filearray_size = 0;
5276 new->ffs_filearray_cur = 0;
5277 new->ffs_stage = 0;
5278 new->ffs_level = level;
Bram Moolenaar945ec092016-06-08 21:17:43 +02005279 new->ffs_star_star_empty = star_star_empty;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005280
5281 /* the following saves NULL pointer checks in vim_findfile */
5282 if (fix_part == NULL)
5283 fix_part = (char_u *)"";
5284 new->ffs_fix_path = vim_strsave(fix_part);
5285
5286#ifdef FEAT_PATH_EXTRA
5287 if (wc_part == NULL)
5288 wc_part = (char_u *)"";
5289 new->ffs_wc_path = vim_strsave(wc_part);
5290#endif
5291
5292 if (new->ffs_fix_path == NULL
5293#ifdef FEAT_PATH_EXTRA
5294 || new->ffs_wc_path == NULL
5295#endif
5296 )
5297 {
5298 ff_free_stack_element(new);
5299 new = NULL;
5300 }
5301
5302 return new;
5303}
5304
5305/*
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005306 * Push a dir on the directory stack.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005307 */
5308 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005309ff_push(ff_search_ctx_T *search_ctx, ff_stack_T *stack_ptr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005310{
5311 /* check for NULL pointer, not to return an error to the user, but
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005312 * to prevent a crash */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005313 if (stack_ptr != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005314 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005315 stack_ptr->ffs_prev = search_ctx->ffsc_stack_ptr;
5316 search_ctx->ffsc_stack_ptr = stack_ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005317 }
5318}
5319
5320/*
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005321 * Pop a dir from the directory stack.
5322 * Returns NULL if stack is empty.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005323 */
5324 static ff_stack_T *
Bram Moolenaar9b578142016-01-30 19:39:49 +01005325ff_pop(ff_search_ctx_T *search_ctx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005326{
5327 ff_stack_T *sptr;
5328
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005329 sptr = search_ctx->ffsc_stack_ptr;
5330 if (search_ctx->ffsc_stack_ptr != NULL)
5331 search_ctx->ffsc_stack_ptr = search_ctx->ffsc_stack_ptr->ffs_prev;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005332
5333 return sptr;
5334}
5335
5336/*
5337 * free the given stack element
5338 */
5339 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005340ff_free_stack_element(ff_stack_T *stack_ptr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005341{
5342 /* vim_free handles possible NULL pointers */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005343 vim_free(stack_ptr->ffs_fix_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005344#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005345 vim_free(stack_ptr->ffs_wc_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005346#endif
5347
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005348 if (stack_ptr->ffs_filearray != NULL)
5349 FreeWild(stack_ptr->ffs_filearray_size, stack_ptr->ffs_filearray);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005350
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005351 vim_free(stack_ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005352}
5353
5354/*
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005355 * Clear the search context, but NOT the visited list.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005356 */
5357 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005358ff_clear(ff_search_ctx_T *search_ctx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005359{
5360 ff_stack_T *sptr;
5361
5362 /* clear up stack */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005363 while ((sptr = ff_pop(search_ctx)) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005364 ff_free_stack_element(sptr);
5365
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005366 vim_free(search_ctx->ffsc_file_to_search);
5367 vim_free(search_ctx->ffsc_start_dir);
5368 vim_free(search_ctx->ffsc_fix_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005369#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005370 vim_free(search_ctx->ffsc_wc_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005371#endif
5372
5373#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005374 if (search_ctx->ffsc_stopdirs_v != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005375 {
5376 int i = 0;
5377
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005378 while (search_ctx->ffsc_stopdirs_v[i] != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005379 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005380 vim_free(search_ctx->ffsc_stopdirs_v[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005381 i++;
5382 }
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005383 vim_free(search_ctx->ffsc_stopdirs_v);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005384 }
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005385 search_ctx->ffsc_stopdirs_v = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005386#endif
5387
5388 /* reset everything */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005389 search_ctx->ffsc_file_to_search = NULL;
5390 search_ctx->ffsc_start_dir = NULL;
5391 search_ctx->ffsc_fix_path = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005392#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005393 search_ctx->ffsc_wc_path = NULL;
5394 search_ctx->ffsc_level = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005395#endif
5396}
5397
5398#ifdef FEAT_PATH_EXTRA
5399/*
5400 * check if the given path is in the stopdirs
5401 * returns TRUE if yes else FALSE
5402 */
5403 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01005404ff_path_in_stoplist(char_u *path, int path_len, char_u **stopdirs_v)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005405{
5406 int i = 0;
5407
5408 /* eat up trailing path separators, except the first */
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00005409 while (path_len > 1 && vim_ispathsep(path[path_len - 1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005410 path_len--;
5411
5412 /* if no path consider it as match */
5413 if (path_len == 0)
5414 return TRUE;
5415
5416 for (i = 0; stopdirs_v[i] != NULL; i++)
5417 {
5418 if ((int)STRLEN(stopdirs_v[i]) > path_len)
5419 {
5420 /* match for parent directory. So '/home' also matches
5421 * '/home/rks'. Check for PATHSEP in stopdirs_v[i], else
5422 * '/home/r' would also match '/home/rks'
5423 */
5424 if (fnamencmp(stopdirs_v[i], path, path_len) == 0
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00005425 && vim_ispathsep(stopdirs_v[i][path_len]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005426 return TRUE;
5427 }
5428 else
5429 {
5430 if (fnamecmp(stopdirs_v[i], path) == 0)
5431 return TRUE;
5432 }
5433 }
5434 return FALSE;
5435}
5436#endif
5437
5438#if defined(FEAT_SEARCHPATH) || defined(PROTO)
5439/*
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005440 * Find the file name "ptr[len]" in the path. Also finds directory names.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005441 *
5442 * On the first call set the parameter 'first' to TRUE to initialize
5443 * the search. For repeating calls to FALSE.
5444 *
5445 * Repeating calls will return other files called 'ptr[len]' from the path.
5446 *
5447 * Only on the first call 'ptr' and 'len' are used. For repeating calls they
5448 * don't need valid values.
5449 *
5450 * If nothing found on the first call the option FNAME_MESS will issue the
5451 * message:
5452 * 'Can't find file "<file>" in path'
5453 * On repeating calls:
5454 * 'No more file "<file>" found in path'
5455 *
5456 * options:
5457 * FNAME_MESS give error message when not found
5458 *
5459 * Uses NameBuff[]!
5460 *
5461 * Returns an allocated string for the file name. NULL for error.
5462 *
5463 */
5464 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01005465find_file_in_path(
5466 char_u *ptr, /* file name */
5467 int len, /* length of file name */
5468 int options,
5469 int first, /* use count'th matching file name */
5470 char_u *rel_fname) /* file name searching relative to */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005471{
5472 return find_file_in_path_option(ptr, len, options, first,
5473 *curbuf->b_p_path == NUL ? p_path : curbuf->b_p_path,
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005474 FINDFILE_BOTH, rel_fname, curbuf->b_p_sua);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005475}
5476
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005477static char_u *ff_file_to_find = NULL;
5478static void *fdip_search_ctx = NULL;
5479
5480#if defined(EXITFREE)
5481 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005482free_findfile(void)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005483{
5484 vim_free(ff_file_to_find);
5485 vim_findfile_cleanup(fdip_search_ctx);
5486}
5487#endif
5488
Bram Moolenaar071d4272004-06-13 20:20:40 +00005489/*
5490 * Find the directory name "ptr[len]" in the path.
5491 *
5492 * options:
5493 * FNAME_MESS give error message when not found
Bram Moolenaard45c07a2015-02-27 17:19:10 +01005494 * FNAME_UNESC unescape backslashes.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005495 *
5496 * Uses NameBuff[]!
5497 *
5498 * Returns an allocated string for the file name. NULL for error.
5499 */
5500 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01005501find_directory_in_path(
5502 char_u *ptr, /* file name */
5503 int len, /* length of file name */
5504 int options,
5505 char_u *rel_fname) /* file name searching relative to */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005506{
5507 return find_file_in_path_option(ptr, len, options, TRUE, p_cdpath,
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005508 FINDFILE_DIR, rel_fname, (char_u *)"");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005509}
5510
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00005511 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01005512find_file_in_path_option(
5513 char_u *ptr, /* file name */
5514 int len, /* length of file name */
5515 int options,
5516 int first, /* use count'th matching file name */
5517 char_u *path_option, /* p_path or p_cdpath */
5518 int find_what, /* FINDFILE_FILE, _DIR or _BOTH */
5519 char_u *rel_fname, /* file name we are looking relative to. */
5520 char_u *suffixes) /* list of suffixes, 'suffixesadd' option */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005521{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005522 static char_u *dir;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005523 static int did_findfile_init = FALSE;
5524 char_u save_char;
5525 char_u *file_name = NULL;
5526 char_u *buf = NULL;
5527 int rel_to_curdir;
5528#ifdef AMIGA
5529 struct Process *proc = (struct Process *)FindTask(0L);
5530 APTR save_winptr = proc->pr_WindowPtr;
5531
5532 /* Avoid a requester here for a volume that doesn't exist. */
5533 proc->pr_WindowPtr = (APTR)-1L;
5534#endif
5535
5536 if (first == TRUE)
5537 {
5538 /* copy file name into NameBuff, expanding environment variables */
5539 save_char = ptr[len];
5540 ptr[len] = NUL;
Bram Moolenaar58adb142016-01-16 21:50:51 +01005541 expand_env_esc(ptr, NameBuff, MAXPATHL, FALSE, TRUE, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005542 ptr[len] = save_char;
5543
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005544 vim_free(ff_file_to_find);
5545 ff_file_to_find = vim_strsave(NameBuff);
5546 if (ff_file_to_find == NULL) /* out of memory */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005547 {
5548 file_name = NULL;
5549 goto theend;
5550 }
Bram Moolenaard45c07a2015-02-27 17:19:10 +01005551 if (options & FNAME_UNESC)
5552 {
5553 /* Change all "\ " to " ". */
5554 for (ptr = ff_file_to_find; *ptr != NUL; ++ptr)
5555 if (ptr[0] == '\\' && ptr[1] == ' ')
5556 mch_memmove(ptr, ptr + 1, STRLEN(ptr));
5557 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005558 }
5559
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005560 rel_to_curdir = (ff_file_to_find[0] == '.'
5561 && (ff_file_to_find[1] == NUL
5562 || vim_ispathsep(ff_file_to_find[1])
5563 || (ff_file_to_find[1] == '.'
5564 && (ff_file_to_find[2] == NUL
5565 || vim_ispathsep(ff_file_to_find[2])))));
5566 if (vim_isAbsName(ff_file_to_find)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005567 /* "..", "../path", "." and "./path": don't use the path_option */
5568 || rel_to_curdir
Bram Moolenaar48e330a2016-02-23 14:53:34 +01005569#if defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005570 /* handle "\tmp" as absolute path */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005571 || vim_ispathsep(ff_file_to_find[0])
Bram Moolenaar21160b92009-11-11 15:56:10 +00005572 /* handle "c:name" as absolute path */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005573 || (ff_file_to_find[0] != NUL && ff_file_to_find[1] == ':')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005574#endif
5575#ifdef AMIGA
5576 /* handle ":tmp" as absolute path */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005577 || ff_file_to_find[0] == ':'
Bram Moolenaar071d4272004-06-13 20:20:40 +00005578#endif
5579 )
5580 {
5581 /*
5582 * Absolute path, no need to use "path_option".
5583 * If this is not a first call, return NULL. We already returned a
5584 * filename on the first call.
5585 */
5586 if (first == TRUE)
5587 {
5588 int l;
5589 int run;
5590
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005591 if (path_with_url(ff_file_to_find))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005592 {
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005593 file_name = vim_strsave(ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005594 goto theend;
5595 }
5596
5597 /* When FNAME_REL flag given first use the directory of the file.
5598 * Otherwise or when this fails use the current directory. */
5599 for (run = 1; run <= 2; ++run)
5600 {
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005601 l = (int)STRLEN(ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005602 if (run == 1
5603 && rel_to_curdir
5604 && (options & FNAME_REL)
5605 && rel_fname != NULL
5606 && STRLEN(rel_fname) + l < MAXPATHL)
5607 {
5608 STRCPY(NameBuff, rel_fname);
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005609 STRCPY(gettail(NameBuff), ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005610 l = (int)STRLEN(NameBuff);
5611 }
5612 else
5613 {
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005614 STRCPY(NameBuff, ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005615 run = 2;
5616 }
5617
5618 /* When the file doesn't exist, try adding parts of
5619 * 'suffixesadd'. */
Bram Moolenaar433f7c82006-03-21 21:29:36 +00005620 buf = suffixes;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005621 for (;;)
5622 {
Bram Moolenaar48e330a2016-02-23 14:53:34 +01005623 if (mch_getperm(NameBuff) >= 0
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005624 && (find_what == FINDFILE_BOTH
5625 || ((find_what == FINDFILE_DIR)
Bram Moolenaar48e330a2016-02-23 14:53:34 +01005626 == mch_isdir(NameBuff))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005627 {
5628 file_name = vim_strsave(NameBuff);
5629 goto theend;
5630 }
5631 if (*buf == NUL)
5632 break;
5633 copy_option_part(&buf, NameBuff + l, MAXPATHL - l, ",");
5634 }
5635 }
5636 }
5637 }
5638 else
5639 {
5640 /*
5641 * Loop over all paths in the 'path' or 'cdpath' option.
5642 * When "first" is set, first setup to the start of the option.
5643 * Otherwise continue to find the next match.
5644 */
5645 if (first == TRUE)
5646 {
5647 /* vim_findfile_free_visited can handle a possible NULL pointer */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005648 vim_findfile_free_visited(fdip_search_ctx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005649 dir = path_option;
5650 did_findfile_init = FALSE;
5651 }
5652
5653 for (;;)
5654 {
5655 if (did_findfile_init)
5656 {
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005657 file_name = vim_findfile(fdip_search_ctx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005658 if (file_name != NULL)
5659 break;
5660
5661 did_findfile_init = FALSE;
5662 }
5663 else
5664 {
5665 char_u *r_ptr;
5666
5667 if (dir == NULL || *dir == NUL)
5668 {
5669 /* We searched all paths of the option, now we can
5670 * free the search context. */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005671 vim_findfile_cleanup(fdip_search_ctx);
5672 fdip_search_ctx = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005673 break;
5674 }
5675
5676 if ((buf = alloc((int)(MAXPATHL))) == NULL)
5677 break;
5678
5679 /* copy next path */
5680 buf[0] = 0;
5681 copy_option_part(&dir, buf, MAXPATHL, " ,");
5682
5683#ifdef FEAT_PATH_EXTRA
5684 /* get the stopdir string */
5685 r_ptr = vim_findfile_stopdir(buf);
5686#else
5687 r_ptr = NULL;
5688#endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005689 fdip_search_ctx = vim_findfile_init(buf, ff_file_to_find,
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005690 r_ptr, 100, FALSE, find_what,
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005691 fdip_search_ctx, FALSE, rel_fname);
5692 if (fdip_search_ctx != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005693 did_findfile_init = TRUE;
5694 vim_free(buf);
5695 }
5696 }
5697 }
5698 if (file_name == NULL && (options & FNAME_MESS))
5699 {
5700 if (first == TRUE)
5701 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005702 if (find_what == FINDFILE_DIR)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005703 EMSG2(_("E344: Can't find directory \"%s\" in cdpath"),
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005704 ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005705 else
5706 EMSG2(_("E345: Can't find file \"%s\" in path"),
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005707 ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005708 }
5709 else
5710 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005711 if (find_what == FINDFILE_DIR)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005712 EMSG2(_("E346: No more directory \"%s\" found in cdpath"),
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005713 ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005714 else
5715 EMSG2(_("E347: No more file \"%s\" found in path"),
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005716 ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005717 }
5718 }
5719
5720theend:
5721#ifdef AMIGA
5722 proc->pr_WindowPtr = save_winptr;
5723#endif
5724 return file_name;
5725}
5726
5727#endif /* FEAT_SEARCHPATH */
5728
5729/*
5730 * Change directory to "new_dir". If FEAT_SEARCHPATH is defined, search
5731 * 'cdpath' for relative directory names, otherwise just mch_chdir().
5732 */
5733 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01005734vim_chdir(char_u *new_dir)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005735{
5736#ifndef FEAT_SEARCHPATH
5737 return mch_chdir((char *)new_dir);
5738#else
5739 char_u *dir_name;
5740 int r;
5741
5742 dir_name = find_directory_in_path(new_dir, (int)STRLEN(new_dir),
5743 FNAME_MESS, curbuf->b_ffname);
5744 if (dir_name == NULL)
5745 return -1;
5746 r = mch_chdir((char *)dir_name);
5747 vim_free(dir_name);
5748 return r;
5749#endif
5750}
5751
5752/*
Bram Moolenaarbbebc852005-07-18 21:47:53 +00005753 * Get user name from machine-specific function.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005754 * Returns the user name in "buf[len]".
Bram Moolenaarbbebc852005-07-18 21:47:53 +00005755 * Some systems are quite slow in obtaining the user name (Windows NT), thus
5756 * cache the result.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005757 * Returns OK or FAIL.
5758 */
5759 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01005760get_user_name(char_u *buf, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005761{
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005762 if (username == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005763 {
5764 if (mch_get_user_name(buf, len) == FAIL)
5765 return FAIL;
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005766 username = vim_strsave(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005767 }
5768 else
Bram Moolenaarbbebc852005-07-18 21:47:53 +00005769 vim_strncpy(buf, username, len - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005770 return OK;
5771}
5772
5773#ifndef HAVE_QSORT
5774/*
5775 * Our own qsort(), for systems that don't have it.
5776 * It's simple and slow. From the K&R C book.
5777 */
5778 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005779qsort(
5780 void *base,
5781 size_t elm_count,
5782 size_t elm_size,
5783 int (*cmp)(const void *, const void *))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005784{
5785 char_u *buf;
5786 char_u *p1;
5787 char_u *p2;
5788 int i, j;
5789 int gap;
5790
5791 buf = alloc((unsigned)elm_size);
5792 if (buf == NULL)
5793 return;
5794
5795 for (gap = elm_count / 2; gap > 0; gap /= 2)
5796 for (i = gap; i < elm_count; ++i)
5797 for (j = i - gap; j >= 0; j -= gap)
5798 {
5799 /* Compare the elements. */
5800 p1 = (char_u *)base + j * elm_size;
5801 p2 = (char_u *)base + (j + gap) * elm_size;
5802 if ((*cmp)((void *)p1, (void *)p2) <= 0)
5803 break;
Bram Moolenaar21160b92009-11-11 15:56:10 +00005804 /* Exchange the elements. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005805 mch_memmove(buf, p1, elm_size);
5806 mch_memmove(p1, p2, elm_size);
5807 mch_memmove(p2, buf, elm_size);
5808 }
5809
5810 vim_free(buf);
5811}
5812#endif
5813
Bram Moolenaar071d4272004-06-13 20:20:40 +00005814/*
5815 * Sort an array of strings.
5816 */
5817static int
5818#ifdef __BORLANDC__
5819_RTLENTRYF
5820#endif
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01005821sort_compare(const void *s1, const void *s2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005822
5823 static int
5824#ifdef __BORLANDC__
5825_RTLENTRYF
5826#endif
Bram Moolenaar9b578142016-01-30 19:39:49 +01005827sort_compare(const void *s1, const void *s2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005828{
5829 return STRCMP(*(char **)s1, *(char **)s2);
5830}
5831
5832 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005833sort_strings(
5834 char_u **files,
5835 int count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005836{
5837 qsort((void *)files, (size_t)count, sizeof(char_u *), sort_compare);
5838}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005839
5840#if !defined(NO_EXPANDPATH) || defined(PROTO)
5841/*
5842 * Compare path "p[]" to "q[]".
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005843 * If "maxlen" >= 0 compare "p[maxlen]" to "q[maxlen]"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005844 * Return value like strcmp(p, q), but consider path separators.
5845 */
5846 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01005847pathcmp(const char *p, const char *q, int maxlen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005848{
Bram Moolenaarf6470c22015-08-25 16:31:40 +02005849 int i, j;
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02005850 int c1, c2;
Bram Moolenaar86b68352004-12-27 21:59:20 +00005851 const char *s = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005852
Bram Moolenaarf6470c22015-08-25 16:31:40 +02005853 for (i = 0, j = 0; maxlen < 0 || (i < maxlen && j < maxlen);)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005854 {
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02005855 c1 = PTR2CHAR((char_u *)p + i);
Bram Moolenaarf6470c22015-08-25 16:31:40 +02005856 c2 = PTR2CHAR((char_u *)q + j);
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02005857
Bram Moolenaar071d4272004-06-13 20:20:40 +00005858 /* End of "p": check if "q" also ends or just has a slash. */
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02005859 if (c1 == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005860 {
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02005861 if (c2 == NUL) /* full match */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005862 return 0;
5863 s = q;
Bram Moolenaarf6470c22015-08-25 16:31:40 +02005864 i = j;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005865 break;
5866 }
5867
5868 /* End of "q": check if "p" just has a slash. */
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02005869 if (c2 == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005870 {
5871 s = p;
5872 break;
5873 }
5874
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02005875 if ((p_fic ? MB_TOUPPER(c1) != MB_TOUPPER(c2) : c1 != c2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005876#ifdef BACKSLASH_IN_FILENAME
5877 /* consider '/' and '\\' to be equal */
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02005878 && !((c1 == '/' && c2 == '\\')
5879 || (c1 == '\\' && c2 == '/'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005880#endif
5881 )
5882 {
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02005883 if (vim_ispathsep(c1))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005884 return -1;
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02005885 if (vim_ispathsep(c2))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005886 return 1;
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02005887 return p_fic ? MB_TOUPPER(c1) - MB_TOUPPER(c2)
5888 : c1 - c2; /* no match */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005889 }
Bram Moolenaarf6470c22015-08-25 16:31:40 +02005890
5891 i += MB_PTR2LEN((char_u *)p + i);
5892 j += MB_PTR2LEN((char_u *)q + j);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005893 }
Bram Moolenaarf6470c22015-08-25 16:31:40 +02005894 if (s == NULL) /* "i" or "j" ran into "maxlen" */
Bram Moolenaar86b68352004-12-27 21:59:20 +00005895 return 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005896
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02005897 c1 = PTR2CHAR((char_u *)s + i);
5898 c2 = PTR2CHAR((char_u *)s + i + MB_PTR2LEN((char_u *)s + i));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005899 /* ignore a trailing slash, but not "//" or ":/" */
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02005900 if (c2 == NUL
Bram Moolenaar86b68352004-12-27 21:59:20 +00005901 && i > 0
5902 && !after_pathsep((char_u *)s, (char_u *)s + i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005903#ifdef BACKSLASH_IN_FILENAME
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02005904 && (c1 == '/' || c1 == '\\')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005905#else
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02005906 && c1 == '/'
Bram Moolenaar071d4272004-06-13 20:20:40 +00005907#endif
Bram Moolenaar86b68352004-12-27 21:59:20 +00005908 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00005909 return 0; /* match with trailing slash */
5910 if (s == q)
5911 return -1; /* no match */
5912 return 1;
5913}
5914#endif
5915
Bram Moolenaar071d4272004-06-13 20:20:40 +00005916/*
5917 * The putenv() implementation below comes from the "screen" program.
5918 * Included with permission from Juergen Weigert.
5919 * See pty.c for the copyright notice.
5920 */
5921
5922/*
5923 * putenv -- put value into environment
5924 *
5925 * Usage: i = putenv (string)
5926 * int i;
5927 * char *string;
5928 *
5929 * where string is of the form <name>=<value>.
5930 * Putenv returns 0 normally, -1 on error (not enough core for malloc).
5931 *
5932 * Putenv may need to add a new name into the environment, or to
5933 * associate a value longer than the current value with a particular
5934 * name. So, to make life simpler, putenv() copies your entire
5935 * environment into the heap (i.e. malloc()) from the stack
5936 * (i.e. where it resides when your process is initiated) the first
5937 * time you call it.
5938 *
5939 * (history removed, not very interesting. See the "screen" sources.)
5940 */
5941
5942#if !defined(HAVE_SETENV) && !defined(HAVE_PUTENV)
5943
5944#define EXTRASIZE 5 /* increment to add to env. size */
5945
5946static int envsize = -1; /* current size of environment */
5947#ifndef MACOS_CLASSIC
5948extern
5949#endif
5950 char **environ; /* the global which is your env. */
5951
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01005952static int findenv(char *name); /* look for a name in the env. */
5953static int newenv(void); /* copy env. from stack to heap */
5954static int moreenv(void); /* incr. size of env. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005955
5956 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01005957putenv(const char *string)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005958{
5959 int i;
5960 char *p;
5961
5962 if (envsize < 0)
5963 { /* first time putenv called */
5964 if (newenv() < 0) /* copy env. to heap */
5965 return -1;
5966 }
5967
5968 i = findenv((char *)string); /* look for name in environment */
5969
5970 if (i < 0)
5971 { /* name must be added */
5972 for (i = 0; environ[i]; i++);
5973 if (i >= (envsize - 1))
5974 { /* need new slot */
5975 if (moreenv() < 0)
5976 return -1;
5977 }
5978 p = (char *)alloc((unsigned)(strlen(string) + 1));
5979 if (p == NULL) /* not enough core */
5980 return -1;
5981 environ[i + 1] = 0; /* new end of env. */
5982 }
5983 else
5984 { /* name already in env. */
5985 p = vim_realloc(environ[i], strlen(string) + 1);
5986 if (p == NULL)
5987 return -1;
5988 }
5989 sprintf(p, "%s", string); /* copy into env. */
5990 environ[i] = p;
5991
5992 return 0;
5993}
5994
5995 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01005996findenv(char *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005997{
5998 char *namechar, *envchar;
5999 int i, found;
6000
6001 found = 0;
6002 for (i = 0; environ[i] && !found; i++)
6003 {
6004 envchar = environ[i];
6005 namechar = name;
6006 while (*namechar && *namechar != '=' && (*namechar == *envchar))
6007 {
6008 namechar++;
6009 envchar++;
6010 }
6011 found = ((*namechar == '\0' || *namechar == '=') && *envchar == '=');
6012 }
6013 return found ? i - 1 : -1;
6014}
6015
6016 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01006017newenv(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006018{
6019 char **env, *elem;
6020 int i, esize;
6021
6022#ifdef MACOS
6023 /* for Mac a new, empty environment is created */
6024 i = 0;
6025#else
6026 for (i = 0; environ[i]; i++)
6027 ;
6028#endif
6029 esize = i + EXTRASIZE + 1;
6030 env = (char **)alloc((unsigned)(esize * sizeof (elem)));
6031 if (env == NULL)
6032 return -1;
6033
6034#ifndef MACOS
6035 for (i = 0; environ[i]; i++)
6036 {
6037 elem = (char *)alloc((unsigned)(strlen(environ[i]) + 1));
6038 if (elem == NULL)
6039 return -1;
6040 env[i] = elem;
6041 strcpy(elem, environ[i]);
6042 }
6043#endif
6044
6045 env[i] = 0;
6046 environ = env;
6047 envsize = esize;
6048 return 0;
6049}
6050
6051 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01006052moreenv(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006053{
6054 int esize;
6055 char **env;
6056
6057 esize = envsize + EXTRASIZE;
6058 env = (char **)vim_realloc((char *)environ, esize * sizeof (*env));
6059 if (env == 0)
6060 return -1;
6061 environ = env;
6062 envsize = esize;
6063 return 0;
6064}
6065
6066# ifdef USE_VIMPTY_GETENV
Bram Moolenaar613fe7a2017-07-22 21:11:53 +02006067/*
6068 * Used for mch_getenv() for Mac.
6069 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006070 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01006071vimpty_getenv(const char_u *string)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006072{
6073 int i;
6074 char_u *p;
6075
6076 if (envsize < 0)
6077 return NULL;
6078
6079 i = findenv((char *)string);
6080
6081 if (i < 0)
6082 return NULL;
6083
6084 p = vim_strchr((char_u *)environ[i], '=');
6085 return (p + 1);
6086}
6087# endif
6088
6089#endif /* !defined(HAVE_SETENV) && !defined(HAVE_PUTENV) */
Bram Moolenaarc4a06d32005-06-07 21:04:49 +00006090
Bram Moolenaarc4956c82006-03-12 21:58:43 +00006091#if defined(FEAT_EVAL) || defined(FEAT_SPELL) || defined(PROTO)
Bram Moolenaarc4a06d32005-06-07 21:04:49 +00006092/*
6093 * Return 0 for not writable, 1 for writable file, 2 for a dir which we have
6094 * rights to write into.
6095 */
6096 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01006097filewritable(char_u *fname)
Bram Moolenaarc4a06d32005-06-07 21:04:49 +00006098{
6099 int retval = 0;
6100#if defined(UNIX) || defined(VMS)
6101 int perm = 0;
6102#endif
6103
6104#if defined(UNIX) || defined(VMS)
6105 perm = mch_getperm(fname);
6106#endif
6107#ifndef MACOS_CLASSIC /* TODO: get either mch_writable or mch_access */
6108 if (
6109# ifdef WIN3264
6110 mch_writable(fname) &&
6111# else
6112# if defined(UNIX) || defined(VMS)
6113 (perm & 0222) &&
6114# endif
6115# endif
6116 mch_access((char *)fname, W_OK) == 0
6117 )
6118#endif
6119 {
6120 ++retval;
6121 if (mch_isdir(fname))
6122 ++retval;
6123 }
6124 return retval;
6125}
6126#endif
Bram Moolenaar6bab4d12005-06-16 21:53:56 +00006127
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006128#if defined(FEAT_SPELL) || defined(FEAT_PERSISTENT_UNDO) || defined(PROTO)
6129/*
6130 * Read 2 bytes from "fd" and turn them into an int, MSB first.
6131 */
6132 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01006133get2c(FILE *fd)
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006134{
Bram Moolenaar9db58062010-05-29 20:33:07 +02006135 int n;
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006136
6137 n = getc(fd);
6138 n = (n << 8) + getc(fd);
6139 return n;
6140}
6141
6142/*
6143 * Read 3 bytes from "fd" and turn them into an int, MSB first.
6144 */
6145 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01006146get3c(FILE *fd)
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006147{
Bram Moolenaar9db58062010-05-29 20:33:07 +02006148 int n;
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006149
6150 n = getc(fd);
6151 n = (n << 8) + getc(fd);
6152 n = (n << 8) + getc(fd);
6153 return n;
6154}
6155
6156/*
6157 * Read 4 bytes from "fd" and turn them into an int, MSB first.
6158 */
6159 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01006160get4c(FILE *fd)
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006161{
Bram Moolenaar95235e62013-09-08 16:07:07 +02006162 /* Use unsigned rather than int otherwise result is undefined
6163 * when left-shift sets the MSB. */
6164 unsigned n;
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006165
Bram Moolenaar95235e62013-09-08 16:07:07 +02006166 n = (unsigned)getc(fd);
6167 n = (n << 8) + (unsigned)getc(fd);
6168 n = (n << 8) + (unsigned)getc(fd);
6169 n = (n << 8) + (unsigned)getc(fd);
6170 return (int)n;
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006171}
6172
6173/*
Bram Moolenaarf4fba6d2016-06-26 16:44:24 +02006174 * Read 8 bytes from "fd" and turn them into a time_T, MSB first.
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006175 */
Bram Moolenaarf4fba6d2016-06-26 16:44:24 +02006176 time_T
Bram Moolenaar9b578142016-01-30 19:39:49 +01006177get8ctime(FILE *fd)
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006178{
Bram Moolenaarf4fba6d2016-06-26 16:44:24 +02006179 time_T n = 0;
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006180 int i;
6181
6182 for (i = 0; i < 8; ++i)
6183 n = (n << 8) + getc(fd);
6184 return n;
6185}
6186
6187/*
6188 * Read a string of length "cnt" from "fd" into allocated memory.
6189 * Returns NULL when out of memory or unable to read that many bytes.
6190 */
6191 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01006192read_string(FILE *fd, int cnt)
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006193{
6194 char_u *str;
6195 int i;
6196 int c;
6197
6198 /* allocate memory */
6199 str = alloc((unsigned)cnt + 1);
6200 if (str != NULL)
6201 {
6202 /* Read the string. Quit when running into the EOF. */
6203 for (i = 0; i < cnt; ++i)
6204 {
6205 c = getc(fd);
6206 if (c == EOF)
6207 {
6208 vim_free(str);
6209 return NULL;
6210 }
6211 str[i] = c;
6212 }
6213 str[i] = NUL;
6214 }
6215 return str;
6216}
6217
6218/*
6219 * Write a number to file "fd", MSB first, in "len" bytes.
6220 */
6221 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01006222put_bytes(FILE *fd, long_u nr, int len)
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006223{
6224 int i;
6225
6226 for (i = len - 1; i >= 0; --i)
6227 if (putc((int)(nr >> (i * 8)), fd) == EOF)
6228 return FAIL;
6229 return OK;
6230}
6231
6232#ifdef _MSC_VER
6233# if (_MSC_VER <= 1200)
6234/* This line is required for VC6 without the service pack. Also see the
6235 * matching #pragma below. */
6236 # pragma optimize("", off)
6237# endif
6238#endif
6239
6240/*
Bram Moolenaarf4fba6d2016-06-26 16:44:24 +02006241 * Write time_T to file "fd" in 8 bytes.
Bram Moolenaar285bf842016-01-07 22:34:01 +01006242 * Returns FAIL when the write failed.
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006243 */
Bram Moolenaar285bf842016-01-07 22:34:01 +01006244 int
Bram Moolenaarf4fba6d2016-06-26 16:44:24 +02006245put_time(FILE *fd, time_T the_time)
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006246{
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02006247 char_u buf[8];
6248
6249 time_to_bytes(the_time, buf);
Bram Moolenaar285bf842016-01-07 22:34:01 +01006250 return fwrite(buf, (size_t)8, (size_t)1, fd) == 1 ? OK : FAIL;
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02006251}
6252
6253/*
Bram Moolenaarf4fba6d2016-06-26 16:44:24 +02006254 * Write time_T to "buf[8]".
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02006255 */
6256 void
Bram Moolenaarf4fba6d2016-06-26 16:44:24 +02006257time_to_bytes(time_T the_time, char_u *buf)
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02006258{
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006259 int c;
6260 int i;
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02006261 int bi = 0;
Bram Moolenaarf4fba6d2016-06-26 16:44:24 +02006262 time_T wtime = the_time;
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006263
Bram Moolenaarf4fba6d2016-06-26 16:44:24 +02006264 /* time_T can be up to 8 bytes in size, more than long_u, thus we
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006265 * can't use put_bytes() here.
6266 * Another problem is that ">>" may do an arithmetic shift that keeps the
Bram Moolenaar644fdff2010-05-30 13:26:21 +02006267 * sign. This happens for large values of wtime. A cast to long_u may
Bram Moolenaarf4fba6d2016-06-26 16:44:24 +02006268 * truncate if time_T is 8 bytes. So only use a cast when it is 4 bytes,
Bram Moolenaar644fdff2010-05-30 13:26:21 +02006269 * it's safe to assume that long_u is 4 bytes or more and when using 8
6270 * bytes the top bit won't be set. */
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006271 for (i = 7; i >= 0; --i)
6272 {
Bram Moolenaarf4fba6d2016-06-26 16:44:24 +02006273 if (i + 1 > (int)sizeof(time_T))
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006274 /* ">>" doesn't work well when shifting more bits than avail */
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02006275 buf[bi++] = 0;
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006276 else
6277 {
Bram Moolenaar644fdff2010-05-30 13:26:21 +02006278#if defined(SIZEOF_TIME_T) && SIZEOF_TIME_T > 4
Bram Moolenaarbbd6afe2010-06-02 20:32:23 +02006279 c = (int)(wtime >> (i * 8));
Bram Moolenaar644fdff2010-05-30 13:26:21 +02006280#else
Bram Moolenaarbbd6afe2010-06-02 20:32:23 +02006281 c = (int)((long_u)wtime >> (i * 8));
Bram Moolenaar644fdff2010-05-30 13:26:21 +02006282#endif
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02006283 buf[bi++] = c;
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006284 }
6285 }
6286}
6287
6288#ifdef _MSC_VER
6289# if (_MSC_VER <= 1200)
6290 # pragma optimize("", on)
6291# endif
6292#endif
6293
6294#endif
Bram Moolenaar10b7b392012-01-10 16:28:45 +01006295
6296#if (defined(FEAT_MBYTE) && defined(FEAT_QUICKFIX)) \
6297 || defined(FEAT_SPELL) || defined(PROTO)
6298/*
6299 * Return TRUE if string "s" contains a non-ASCII character (128 or higher).
6300 * When "s" is NULL FALSE is returned.
6301 */
6302 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01006303has_non_ascii(char_u *s)
Bram Moolenaar10b7b392012-01-10 16:28:45 +01006304{
6305 char_u *p;
6306
6307 if (s != NULL)
6308 for (p = s; *p != NUL; ++p)
6309 if (*p >= 128)
6310 return TRUE;
6311 return FALSE;
6312}
6313#endif
Bram Moolenaar93c88e02015-09-15 14:12:05 +02006314
6315#if defined(MESSAGE_QUEUE) || defined(PROTO)
6316/*
6317 * Process messages that have been queued for netbeans or clientserver.
Bram Moolenaar3a117e12016-10-30 21:57:52 +01006318 * Also check if any jobs have ended.
Bram Moolenaar93c88e02015-09-15 14:12:05 +02006319 * These functions can call arbitrary vimscript and should only be called when
6320 * it is safe to do so.
6321 */
6322 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006323parse_queued_messages(void)
Bram Moolenaar93c88e02015-09-15 14:12:05 +02006324{
Bram Moolenaarb7522a22016-02-21 17:20:55 +01006325 /* For Win32 mch_breakcheck() does not check for input, do it here. */
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01006326# if defined(WIN32) && defined(FEAT_JOB_CHANNEL)
Bram Moolenaar13ebb032017-08-26 22:02:51 +02006327 channel_handle_events(FALSE);
Bram Moolenaarb7522a22016-02-21 17:20:55 +01006328# endif
6329
Bram Moolenaar93c88e02015-09-15 14:12:05 +02006330# ifdef FEAT_NETBEANS_INTG
6331 /* Process the queued netbeans messages. */
6332 netbeans_parse_messages();
6333# endif
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01006334# ifdef FEAT_JOB_CHANNEL
Bram Moolenaar8b877ac2016-03-28 19:16:20 +02006335 /* Write any buffer lines still to be written. */
6336 channel_write_any_lines();
6337
Bram Moolenaar20fb9f32016-01-30 23:20:33 +01006338 /* Process the messages queued on channels. */
6339 channel_parse_messages();
6340# endif
Bram Moolenaar95346802015-09-15 15:57:29 +02006341# if defined(FEAT_CLIENTSERVER) && defined(FEAT_X11)
Bram Moolenaar93c88e02015-09-15 14:12:05 +02006342 /* Process the queued clientserver messages. */
6343 server_parse_messages();
6344# endif
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01006345# ifdef FEAT_JOB_CHANNEL
Bram Moolenaaree1cffc2016-02-21 19:14:41 +01006346 /* Check if any jobs have ended. */
6347 job_check_ended();
6348# endif
Bram Moolenaar93c88e02015-09-15 14:12:05 +02006349}
6350#endif
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01006351
Bram Moolenaar51628222016-12-01 23:03:28 +01006352#ifndef PROTO /* proto is defined in vim.h */
6353# ifdef ELAPSED_TIMEVAL
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01006354/*
6355 * Return time in msec since "start_tv".
6356 */
6357 long
6358elapsed(struct timeval *start_tv)
6359{
6360 struct timeval now_tv;
6361
6362 gettimeofday(&now_tv, NULL);
6363 return (now_tv.tv_sec - start_tv->tv_sec) * 1000L
6364 + (now_tv.tv_usec - start_tv->tv_usec) / 1000L;
6365}
Bram Moolenaar51628222016-12-01 23:03:28 +01006366# endif
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01006367
Bram Moolenaar51628222016-12-01 23:03:28 +01006368# ifdef ELAPSED_TICKCOUNT
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01006369/*
6370 * Return time in msec since "start_tick".
6371 */
6372 long
6373elapsed(DWORD start_tick)
6374{
6375 DWORD now = GetTickCount();
6376
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01006377 return (long)now - (long)start_tick;
6378}
Bram Moolenaar51628222016-12-01 23:03:28 +01006379# endif
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01006380#endif