blob: cfdfc4c4ac670b633a8f20f0901c99c14d151130 [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 Moolenaar1cd871b2004-12-19 22:46:22 +0000199 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)
608 win->w_cursor.coladd = oldcoladd - win->w_cursor.col;
Bram Moolenaar552c8a52009-03-11 16:29:20 +0000609 else
610 /* avoid weird number when there is a miscalculation or overflow */
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200611 win->w_cursor.coladd = 0;
Bram Moolenaar552c8a52009-03-11 16:29:20 +0000612 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000613#endif
614}
615
616/*
617 * make sure curwin->w_cursor in on a valid character
618 */
619 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100620check_cursor(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000621{
622 check_cursor_lnum();
623 check_cursor_col();
624}
625
626#if defined(FEAT_TEXTOBJ) || defined(PROTO)
627/*
628 * Make sure curwin->w_cursor is not on the NUL at the end of the line.
629 * Allow it when in Visual mode and 'selection' is not "old".
630 */
631 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100632adjust_cursor_col(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000633{
634 if (curwin->w_cursor.col > 0
Bram Moolenaar071d4272004-06-13 20:20:40 +0000635 && (!VIsual_active || *p_sel == 'o')
Bram Moolenaar071d4272004-06-13 20:20:40 +0000636 && gchar_cursor() == NUL)
637 --curwin->w_cursor.col;
638}
639#endif
640
641/*
642 * When curwin->w_leftcol has changed, adjust the cursor position.
643 * Return TRUE if the cursor was moved.
644 */
645 int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100646leftcol_changed(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000647{
648 long lastcol;
649 colnr_T s, e;
650 int retval = FALSE;
651
652 changed_cline_bef_curs();
653 lastcol = curwin->w_leftcol + W_WIDTH(curwin) - curwin_col_off() - 1;
654 validate_virtcol();
655
656 /*
657 * If the cursor is right or left of the screen, move it to last or first
658 * character.
659 */
660 if (curwin->w_virtcol > (colnr_T)(lastcol - p_siso))
661 {
662 retval = TRUE;
663 coladvance((colnr_T)(lastcol - p_siso));
664 }
665 else if (curwin->w_virtcol < curwin->w_leftcol + p_siso)
666 {
667 retval = TRUE;
668 (void)coladvance((colnr_T)(curwin->w_leftcol + p_siso));
669 }
670
671 /*
672 * If the start of the character under the cursor is not on the screen,
673 * advance the cursor one more char. If this fails (last char of the
674 * line) adjust the scrolling.
675 */
676 getvvcol(curwin, &curwin->w_cursor, &s, NULL, &e);
677 if (e > (colnr_T)lastcol)
678 {
679 retval = TRUE;
680 coladvance(s - 1);
681 }
682 else if (s < curwin->w_leftcol)
683 {
684 retval = TRUE;
685 if (coladvance(e + 1) == FAIL) /* there isn't another character */
686 {
687 curwin->w_leftcol = s; /* adjust w_leftcol instead */
688 changed_cline_bef_curs();
689 }
690 }
691
692 if (retval)
693 curwin->w_set_curswant = TRUE;
694 redraw_later(NOT_VALID);
695 return retval;
696}
697
698/**********************************************************************
699 * Various routines dealing with allocation and deallocation of memory.
700 */
701
702#if defined(MEM_PROFILE) || defined(PROTO)
703
704# define MEM_SIZES 8200
705static long_u mem_allocs[MEM_SIZES];
706static long_u mem_frees[MEM_SIZES];
707static long_u mem_allocated;
708static long_u mem_freed;
709static long_u mem_peak;
710static long_u num_alloc;
711static long_u num_freed;
712
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100713static void mem_pre_alloc_s(size_t *sizep);
714static void mem_pre_alloc_l(long_u *sizep);
715static void mem_post_alloc(void **pp, size_t size);
716static void mem_pre_free(void **pp);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000717
718 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100719mem_pre_alloc_s(size_t *sizep)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000720{
721 *sizep += sizeof(size_t);
722}
723
724 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100725mem_pre_alloc_l(long_u *sizep)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000726{
727 *sizep += sizeof(size_t);
728}
729
730 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100731mem_post_alloc(
732 void **pp,
733 size_t size)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000734{
735 if (*pp == NULL)
736 return;
737 size -= sizeof(size_t);
738 *(long_u *)*pp = size;
739 if (size <= MEM_SIZES-1)
740 mem_allocs[size-1]++;
741 else
742 mem_allocs[MEM_SIZES-1]++;
743 mem_allocated += size;
744 if (mem_allocated - mem_freed > mem_peak)
745 mem_peak = mem_allocated - mem_freed;
746 num_alloc++;
747 *pp = (void *)((char *)*pp + sizeof(size_t));
748}
749
750 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100751mem_pre_free(void **pp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000752{
753 long_u size;
754
755 *pp = (void *)((char *)*pp - sizeof(size_t));
756 size = *(size_t *)*pp;
757 if (size <= MEM_SIZES-1)
758 mem_frees[size-1]++;
759 else
760 mem_frees[MEM_SIZES-1]++;
761 mem_freed += size;
762 num_freed++;
763}
764
765/*
766 * called on exit via atexit()
767 */
768 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100769vim_mem_profile_dump(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000770{
771 int i, j;
772
773 printf("\r\n");
774 j = 0;
775 for (i = 0; i < MEM_SIZES - 1; i++)
776 {
777 if (mem_allocs[i] || mem_frees[i])
778 {
779 if (mem_frees[i] > mem_allocs[i])
780 printf("\r\n%s", _("ERROR: "));
781 printf("[%4d / %4lu-%-4lu] ", i + 1, mem_allocs[i], mem_frees[i]);
782 j++;
783 if (j > 3)
784 {
785 j = 0;
786 printf("\r\n");
787 }
788 }
789 }
790
791 i = MEM_SIZES - 1;
792 if (mem_allocs[i])
793 {
794 printf("\r\n");
795 if (mem_frees[i] > mem_allocs[i])
Bram Moolenaar2f1e0502010-08-13 11:18:02 +0200796 puts(_("ERROR: "));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000797 printf("[>%d / %4lu-%-4lu]", i, mem_allocs[i], mem_frees[i]);
798 }
799
800 printf(_("\n[bytes] total alloc-freed %lu-%lu, in use %lu, peak use %lu\n"),
801 mem_allocated, mem_freed, mem_allocated - mem_freed, mem_peak);
802 printf(_("[calls] total re/malloc()'s %lu, total free()'s %lu\n\n"),
803 num_alloc, num_freed);
804}
805
806#endif /* MEM_PROFILE */
807
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +0100808#ifdef FEAT_EVAL
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100809static int alloc_does_fail(long_u size);
Bram Moolenaara260b872016-01-15 20:48:22 +0100810
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +0100811 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100812alloc_does_fail(long_u size)
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +0100813{
814 if (alloc_fail_countdown == 0)
815 {
816 if (--alloc_fail_repeat <= 0)
817 alloc_fail_id = 0;
Bram Moolenaara260b872016-01-15 20:48:22 +0100818 do_outofmem_msg(size);
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +0100819 return TRUE;
820 }
821 --alloc_fail_countdown;
822 return FALSE;
823}
824#endif
825
Bram Moolenaar071d4272004-06-13 20:20:40 +0000826/*
827 * Some memory is reserved for error messages and for being able to
828 * call mf_release_all(), which needs some memory for mf_trans_add().
829 */
Bram Moolenaar48e330a2016-02-23 14:53:34 +0100830#define KEEP_ROOM (2 * 8192L)
Bram Moolenaar11b73d62012-06-29 15:51:30 +0200831#define KEEP_ROOM_KB (KEEP_ROOM / 1024L)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000832
833/*
Bram Moolenaar2a329742008-04-01 12:53:43 +0000834 * Note: if unsigned is 16 bits we can only allocate up to 64K with alloc().
Bram Moolenaar071d4272004-06-13 20:20:40 +0000835 * Use lalloc for larger blocks.
836 */
837 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +0100838alloc(unsigned size)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000839{
840 return (lalloc((long_u)size, TRUE));
841}
842
843/*
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +0100844 * alloc() with an ID for alloc_fail().
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +0100845 */
846 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +0100847alloc_id(unsigned size, alloc_id_T id UNUSED)
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +0100848{
849#ifdef FEAT_EVAL
Bram Moolenaara260b872016-01-15 20:48:22 +0100850 if (alloc_fail_id == id && alloc_does_fail((long_u)size))
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +0100851 return NULL;
852#endif
853 return (lalloc((long_u)size, TRUE));
854}
855
856/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000857 * Allocate memory and set all bytes to zero.
858 */
859 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +0100860alloc_clear(unsigned size)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000861{
862 char_u *p;
863
Bram Moolenaar2f1e0502010-08-13 11:18:02 +0200864 p = lalloc((long_u)size, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000865 if (p != NULL)
866 (void)vim_memset(p, 0, (size_t)size);
867 return p;
868}
869
870/*
871 * alloc() with check for maximum line length
872 */
873 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +0100874alloc_check(unsigned size)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000875{
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200876#if !defined(UNIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000877 if (sizeof(int) == 2 && size > 0x7fff)
878 {
879 /* Don't hide this message */
880 emsg_silent = 0;
881 EMSG(_("E340: Line is becoming too long"));
882 return NULL;
883 }
884#endif
885 return (lalloc((long_u)size, TRUE));
886}
887
888/*
889 * Allocate memory like lalloc() and set all bytes to zero.
890 */
891 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +0100892lalloc_clear(long_u size, int message)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000893{
894 char_u *p;
895
896 p = (lalloc(size, message));
897 if (p != NULL)
898 (void)vim_memset(p, 0, (size_t)size);
899 return p;
900}
901
902/*
903 * Low level memory allocation function.
904 * This is used often, KEEP IT FAST!
905 */
906 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +0100907lalloc(long_u size, int message)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000908{
909 char_u *p; /* pointer to new storage space */
910 static int releasing = FALSE; /* don't do mf_release_all() recursive */
911 int try_again;
Bram Moolenaar48e330a2016-02-23 14:53:34 +0100912#if defined(HAVE_AVAIL_MEM)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000913 static long_u allocated = 0; /* allocated since last avail check */
914#endif
915
916 /* Safety check for allocating zero bytes */
917 if (size == 0)
918 {
919 /* Don't hide this message */
920 emsg_silent = 0;
Bram Moolenaar95f09602016-11-10 20:01:45 +0100921 IEMSGN(_("E341: Internal error: lalloc(%ld, )"), size);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000922 return NULL;
923 }
924
925#ifdef MEM_PROFILE
926 mem_pre_alloc_l(&size);
927#endif
928
Bram Moolenaar071d4272004-06-13 20:20:40 +0000929 /*
930 * Loop when out of memory: Try to release some memfile blocks and
931 * if some blocks are released call malloc again.
932 */
933 for (;;)
934 {
935 /*
936 * Handle three kind of systems:
937 * 1. No check for available memory: Just return.
938 * 2. Slow check for available memory: call mch_avail_mem() after
939 * allocating KEEP_ROOM amount of memory.
940 * 3. Strict check for available memory: call mch_avail_mem()
941 */
942 if ((p = (char_u *)malloc((size_t)size)) != NULL)
943 {
944#ifndef HAVE_AVAIL_MEM
945 /* 1. No check for available memory: Just return. */
946 goto theend;
947#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000948 /* 2. Slow check for available memory: call mch_avail_mem() after
949 * allocating (KEEP_ROOM / 2) amount of memory. */
950 allocated += size;
951 if (allocated < KEEP_ROOM / 2)
952 goto theend;
953 allocated = 0;
Bram Moolenaar48e330a2016-02-23 14:53:34 +0100954
Bram Moolenaar071d4272004-06-13 20:20:40 +0000955 /* 3. check for available memory: call mch_avail_mem() */
Bram Moolenaar11b73d62012-06-29 15:51:30 +0200956 if (mch_avail_mem(TRUE) < KEEP_ROOM_KB && !releasing)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000957 {
Bram Moolenaar5a221812008-11-12 12:08:45 +0000958 free((char *)p); /* System is low... no go! */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000959 p = NULL;
960 }
961 else
962 goto theend;
963#endif
964 }
965 /*
966 * Remember that mf_release_all() is being called to avoid an endless
967 * loop, because mf_release_all() may call alloc() recursively.
968 */
969 if (releasing)
970 break;
971 releasing = TRUE;
Bram Moolenaar661b1822005-07-28 22:36:45 +0000972
973 clear_sb_text(); /* free any scrollback text */
974 try_again = mf_release_all(); /* release as many blocks as possible */
Bram Moolenaar661b1822005-07-28 22:36:45 +0000975
Bram Moolenaar071d4272004-06-13 20:20:40 +0000976 releasing = FALSE;
977 if (!try_again)
978 break;
979 }
980
981 if (message && p == NULL)
982 do_outofmem_msg(size);
983
984theend:
985#ifdef MEM_PROFILE
986 mem_post_alloc((void **)&p, (size_t)size);
987#endif
988 return p;
989}
990
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +0100991/*
992 * lalloc() with an ID for alloc_fail().
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +0100993 */
994 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +0100995lalloc_id(long_u size, int message, alloc_id_T id UNUSED)
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +0100996{
997#ifdef FEAT_EVAL
Bram Moolenaara260b872016-01-15 20:48:22 +0100998 if (alloc_fail_id == id && alloc_does_fail(size))
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +0100999 return NULL;
1000#endif
1001 return (lalloc((long_u)size, message));
1002}
1003
Bram Moolenaar071d4272004-06-13 20:20:40 +00001004#if defined(MEM_PROFILE) || defined(PROTO)
1005/*
1006 * realloc() with memory profiling.
1007 */
1008 void *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001009mem_realloc(void *ptr, size_t size)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001010{
1011 void *p;
1012
1013 mem_pre_free(&ptr);
1014 mem_pre_alloc_s(&size);
1015
1016 p = realloc(ptr, size);
1017
1018 mem_post_alloc(&p, size);
1019
1020 return p;
1021}
1022#endif
1023
1024/*
1025* Avoid repeating the error message many times (they take 1 second each).
1026* Did_outofmem_msg is reset when a character is read.
1027*/
1028 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001029do_outofmem_msg(long_u size)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001030{
1031 if (!did_outofmem_msg)
1032 {
1033 /* Don't hide this message */
1034 emsg_silent = 0;
Bram Moolenaar79739e12011-10-26 11:41:00 +02001035
1036 /* Must come first to avoid coming back here when printing the error
1037 * message fails, e.g. when setting v:errmsg. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001038 did_outofmem_msg = TRUE;
Bram Moolenaar79739e12011-10-26 11:41:00 +02001039
1040 EMSGN(_("E342: Out of memory! (allocating %lu bytes)"), size);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001041 }
1042}
1043
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001044#if defined(EXITFREE) || defined(PROTO)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001045
1046# if defined(FEAT_SEARCHPATH)
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01001047static void free_findfile(void);
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001048# endif
1049
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001050/*
1051 * Free everything that we allocated.
1052 * Can be used to detect memory leaks, e.g., with ccmalloc.
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001053 * NOTE: This is tricky! Things are freed that functions depend on. Don't be
1054 * surprised if Vim crashes...
1055 * Some things can't be freed, esp. things local to a library function.
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001056 */
1057 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001058free_all_mem(void)
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001059{
1060 buf_T *buf, *nextbuf;
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001061
1062 /* When we cause a crash here it is caught and Vim tries to exit cleanly.
1063 * Don't try freeing everything again. */
Bram Moolenaarb89a25f2016-06-01 23:08:39 +02001064 if (entered_free_all_mem)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001065 return;
Bram Moolenaarb89a25f2016-06-01 23:08:39 +02001066 entered_free_all_mem = TRUE;
Bram Moolenaara9673212016-06-01 22:21:06 +02001067
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001068# ifdef FEAT_AUTOCMD
Bram Moolenaar5d2bae82014-09-19 14:26:36 +02001069 /* Don't want to trigger autocommands from here on. */
1070 block_autocmds();
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001071# endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001072
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001073# ifdef FEAT_WINDOWS
Bram Moolenaar5bedfc62010-07-20 22:30:01 +02001074 /* Close all tabs and windows. Reset 'equalalways' to avoid redraws. */
1075 p_ea = FALSE;
Bram Moolenaar7d47b6e2006-03-15 22:59:18 +00001076 if (first_tabpage->tp_next != NULL)
1077 do_cmdline_cmd((char_u *)"tabonly!");
Bram Moolenaar95f09602016-11-10 20:01:45 +01001078 if (!ONE_WINDOW)
Bram Moolenaar7d47b6e2006-03-15 22:59:18 +00001079 do_cmdline_cmd((char_u *)"only!");
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001080# endif
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00001081
Bram Moolenaarc4956c82006-03-12 21:58:43 +00001082# if defined(FEAT_SPELL)
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001083 /* Free all spell info. */
1084 spell_free_all();
1085# endif
1086
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001087# if defined(FEAT_USR_CMDS)
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001088 /* Clear user commands (before deleting buffers). */
1089 ex_comclear(NULL);
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001090# endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001091
1092# ifdef FEAT_MENU
1093 /* Clear menus. */
1094 do_cmdline_cmd((char_u *)"aunmenu *");
Bram Moolenaar21160b92009-11-11 15:56:10 +00001095# ifdef FEAT_MULTI_LANG
1096 do_cmdline_cmd((char_u *)"menutranslate clear");
1097# endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001098# endif
1099
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001100 /* Clear mappings, abbreviations, breakpoints. */
Bram Moolenaar21160b92009-11-11 15:56:10 +00001101 do_cmdline_cmd((char_u *)"lmapclear");
1102 do_cmdline_cmd((char_u *)"xmapclear");
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001103 do_cmdline_cmd((char_u *)"mapclear");
1104 do_cmdline_cmd((char_u *)"mapclear!");
1105 do_cmdline_cmd((char_u *)"abclear");
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001106# if defined(FEAT_EVAL)
1107 do_cmdline_cmd((char_u *)"breakdel *");
1108# endif
Bram Moolenaar1e498f52005-06-26 22:29:44 +00001109# if defined(FEAT_PROFILE)
1110 do_cmdline_cmd((char_u *)"profdel *");
1111# endif
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00001112# if defined(FEAT_KEYMAP)
1113 do_cmdline_cmd((char_u *)"set keymap=");
1114#endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001115
1116# ifdef FEAT_TITLE
1117 free_titles();
1118# endif
1119# if defined(FEAT_SEARCHPATH)
1120 free_findfile();
1121# endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001122
1123 /* Obviously named calls. */
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001124# if defined(FEAT_AUTOCMD)
1125 free_all_autocmds();
1126# endif
1127 clear_termcodes();
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001128 free_all_options();
1129 free_all_marks();
1130 alist_clear(&global_alist);
1131 free_homedir();
Bram Moolenaar24305862012-08-15 14:05:05 +02001132# if defined(FEAT_CMDL_COMPL)
1133 free_users();
1134# endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001135 free_search_patterns();
1136 free_old_sub();
1137 free_last_insert();
1138 free_prev_shellcmd();
1139 free_regexp_stuff();
1140 free_tag_stuff();
1141 free_cd_dir();
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00001142# ifdef FEAT_SIGNS
1143 free_signs();
1144# endif
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001145# ifdef FEAT_EVAL
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001146 set_expr_line(NULL);
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001147# endif
1148# ifdef FEAT_DIFF
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00001149 diff_clear(curtab);
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001150# endif
Bram Moolenaara40ceaf2006-01-13 22:35:40 +00001151 clear_sb_text(); /* free any scrollback text */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001152
1153 /* Free some global vars. */
1154 vim_free(username);
Bram Moolenaaraf92ee82007-10-07 13:45:08 +00001155# ifdef FEAT_CLIPBOARD
Bram Moolenaar473de612013-06-08 18:19:48 +02001156 vim_regfree(clip_exclude_prog);
Bram Moolenaaraf92ee82007-10-07 13:45:08 +00001157# endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001158 vim_free(last_cmdline);
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001159# ifdef FEAT_CMDHIST
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001160 vim_free(new_last_cmdline);
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001161# endif
Bram Moolenaar238a5642006-02-21 22:12:05 +00001162 set_keep_msg(NULL, 0);
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001163 vim_free(ff_expand_buffer);
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001164
1165 /* Clear cmdline history. */
1166 p_hi = 0;
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001167# ifdef FEAT_CMDHIST
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001168 init_history();
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001169# endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001170
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001171#ifdef FEAT_QUICKFIX
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001172 {
Bram Moolenaarbd1e5d22009-04-29 09:02:44 +00001173 win_T *win;
1174 tabpage_T *tab;
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001175
1176 qf_free_all(NULL);
1177 /* Free all location lists */
Bram Moolenaarbd1e5d22009-04-29 09:02:44 +00001178 FOR_ALL_TAB_WINDOWS(tab, win)
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001179 qf_free_all(win);
1180 }
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001181#endif
1182
1183 /* Close all script inputs. */
1184 close_all_scripts();
1185
1186#if defined(FEAT_WINDOWS)
1187 /* Destroy all windows. Must come before freeing buffers. */
1188 win_free_all();
1189#endif
1190
Bram Moolenaar2a329742008-04-01 12:53:43 +00001191 /* Free all buffers. Reset 'autochdir' to avoid accessing things that
1192 * were freed already. */
1193#ifdef FEAT_AUTOCHDIR
1194 p_acd = FALSE;
1195#endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001196 for (buf = firstbuf; buf != NULL; )
1197 {
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001198 bufref_T bufref;
1199
1200 set_bufref(&bufref, buf);
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001201 nextbuf = buf->b_next;
Bram Moolenaar42ec6562012-02-22 14:58:37 +01001202 close_buffer(NULL, buf, DOBUF_WIPE, FALSE);
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001203 if (bufref_valid(&bufref))
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001204 buf = nextbuf; /* didn't work, try next one */
1205 else
1206 buf = firstbuf;
1207 }
1208
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001209#ifdef FEAT_ARABIC
1210 free_cmdline_buf();
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001211#endif
1212
1213 /* Clear registers. */
1214 clear_registers();
1215 ResetRedobuff();
1216 ResetRedobuff();
1217
Bram Moolenaar85c79d32007-02-20 01:59:20 +00001218#if defined(FEAT_CLIENTSERVER) && defined(FEAT_X11)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001219 vim_free(serverDelayedStartName);
1220#endif
1221
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001222 /* highlight info */
1223 free_highlight();
1224
Bram Moolenaar1e498f52005-06-26 22:29:44 +00001225 reset_last_sourcing();
1226
Bram Moolenaar7d47b6e2006-03-15 22:59:18 +00001227#ifdef FEAT_WINDOWS
Bram Moolenaar06a89a52006-04-29 22:01:03 +00001228 free_tabpage(first_tabpage);
1229 first_tabpage = NULL;
Bram Moolenaar7d47b6e2006-03-15 22:59:18 +00001230#endif
1231
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001232# ifdef UNIX
1233 /* Machine-specific free. */
1234 mch_free_mem();
1235# endif
1236
1237 /* message history */
1238 for (;;)
1239 if (delete_first_msg() == FAIL)
1240 break;
1241
Bram Moolenaar655da312016-05-28 22:22:34 +02001242# ifdef FEAT_JOB_CHANNEL
1243 channel_free_all();
Bram Moolenaar655da312016-05-28 22:22:34 +02001244# endif
Bram Moolenaar623e2632016-07-30 22:47:56 +02001245#ifdef FEAT_TIMERS
1246 timer_free_all();
1247#endif
Bram Moolenaar437bafe2016-08-01 15:40:54 +02001248# ifdef FEAT_EVAL
1249 /* must be after channel_free_all() with unrefs partials */
1250 eval_clear();
1251# endif
1252# ifdef FEAT_JOB_CHANNEL
1253 /* must be after eval_clear() with unrefs jobs */
1254 job_free_all();
1255# endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001256
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001257 free_termoptions();
1258
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001259 /* screenlines (can't display anything now!) */
1260 free_screenlines();
1261
1262#if defined(USE_XSMP)
1263 xsmp_close();
1264#endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001265#ifdef FEAT_GUI_GTK
1266 gui_mch_free_all();
1267#endif
1268 clear_hl_tables();
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001269
1270 vim_free(IObuff);
1271 vim_free(NameBuff);
1272}
1273#endif
1274
Bram Moolenaar071d4272004-06-13 20:20:40 +00001275/*
Bram Moolenaare980d8a2010-12-08 13:11:21 +01001276 * Copy "string" into newly allocated memory.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001277 */
1278 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001279vim_strsave(char_u *string)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001280{
1281 char_u *p;
1282 unsigned len;
1283
1284 len = (unsigned)STRLEN(string) + 1;
1285 p = alloc(len);
1286 if (p != NULL)
1287 mch_memmove(p, string, (size_t)len);
1288 return p;
1289}
1290
Bram Moolenaare980d8a2010-12-08 13:11:21 +01001291/*
1292 * Copy up to "len" bytes of "string" into newly allocated memory and
1293 * terminate with a NUL.
1294 * The allocated memory always has size "len + 1", also when "string" is
1295 * shorter.
1296 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001297 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001298vim_strnsave(char_u *string, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001299{
1300 char_u *p;
1301
1302 p = alloc((unsigned)(len + 1));
1303 if (p != NULL)
1304 {
1305 STRNCPY(p, string, len);
1306 p[len] = NUL;
1307 }
1308 return p;
1309}
1310
Bram Moolenaar071d4272004-06-13 20:20:40 +00001311/*
1312 * Same as vim_strsave(), but any characters found in esc_chars are preceded
1313 * by a backslash.
1314 */
1315 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001316vim_strsave_escaped(char_u *string, char_u *esc_chars)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001317{
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001318 return vim_strsave_escaped_ext(string, esc_chars, '\\', FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001319}
1320
1321/*
1322 * Same as vim_strsave_escaped(), but when "bsl" is TRUE also escape
1323 * characters where rem_backslash() would remove the backslash.
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001324 * Escape the characters with "cc".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001325 */
1326 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001327vim_strsave_escaped_ext(
1328 char_u *string,
1329 char_u *esc_chars,
1330 int cc,
1331 int bsl)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001332{
1333 char_u *p;
1334 char_u *p2;
1335 char_u *escaped_string;
1336 unsigned length;
1337#ifdef FEAT_MBYTE
1338 int l;
1339#endif
1340
1341 /*
1342 * First count the number of backslashes required.
1343 * Then allocate the memory and insert them.
1344 */
1345 length = 1; /* count the trailing NUL */
1346 for (p = string; *p; p++)
1347 {
1348#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001349 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001350 {
1351 length += l; /* count a multibyte char */
1352 p += l - 1;
1353 continue;
1354 }
1355#endif
1356 if (vim_strchr(esc_chars, *p) != NULL || (bsl && rem_backslash(p)))
1357 ++length; /* count a backslash */
1358 ++length; /* count an ordinary char */
1359 }
1360 escaped_string = alloc(length);
1361 if (escaped_string != NULL)
1362 {
1363 p2 = escaped_string;
1364 for (p = string; *p; p++)
1365 {
1366#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001367 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001368 {
1369 mch_memmove(p2, p, (size_t)l);
1370 p2 += l;
1371 p += l - 1; /* skip multibyte char */
1372 continue;
1373 }
1374#endif
1375 if (vim_strchr(esc_chars, *p) != NULL || (bsl && rem_backslash(p)))
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001376 *p2++ = cc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001377 *p2++ = *p;
1378 }
1379 *p2 = NUL;
1380 }
1381 return escaped_string;
1382}
1383
Bram Moolenaar7693ec62008-07-24 18:29:37 +00001384/*
1385 * Return TRUE when 'shell' has "csh" in the tail.
1386 */
1387 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001388csh_like_shell(void)
Bram Moolenaar7693ec62008-07-24 18:29:37 +00001389{
1390 return (strstr((char *)gettail(p_sh), "csh") != NULL);
1391}
Bram Moolenaar7693ec62008-07-24 18:29:37 +00001392
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001393/*
1394 * Escape "string" for use as a shell argument with system().
Bram Moolenaar21160b92009-11-11 15:56:10 +00001395 * This uses single quotes, except when we know we need to use double quotes
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001396 * (MS-DOS and MS-Windows without 'shellslash' set).
Bram Moolenaarffd66c42008-07-16 20:43:37 +00001397 * Escape a newline, depending on the 'shell' option.
1398 * When "do_special" is TRUE also replace "!", "%", "#" and things starting
1399 * with "<" like "<cfile>".
Bram Moolenaar26df0922014-02-23 23:39:13 +01001400 * When "do_newline" is FALSE do not escape newline unless it is csh shell.
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001401 * Returns the result in allocated memory, NULL if we have run out.
1402 */
1403 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001404vim_strsave_shellescape(char_u *string, int do_special, int do_newline)
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001405{
1406 unsigned length;
1407 char_u *p;
1408 char_u *d;
1409 char_u *escaped_string;
Bram Moolenaar05bb9532008-07-04 09:44:11 +00001410 int l;
Bram Moolenaarffd66c42008-07-16 20:43:37 +00001411 int csh_like;
1412
1413 /* Only csh and similar shells expand '!' within single quotes. For sh and
1414 * the like we must not put a backslash before it, it will be taken
1415 * literally. If do_special is set the '!' will be escaped twice.
1416 * Csh also needs to have "\n" escaped twice when do_special is set. */
Bram Moolenaar7693ec62008-07-24 18:29:37 +00001417 csh_like = csh_like_shell();
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001418
1419 /* First count the number of extra bytes required. */
Bram Moolenaar77f66d62007-02-20 02:16:18 +00001420 length = (unsigned)STRLEN(string) + 3; /* two quotes and a trailing NUL */
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001421 for (p = string; *p != NUL; mb_ptr_adv(p))
1422 {
Bram Moolenaarcea912a2016-10-12 14:20:24 +02001423# ifdef WIN32
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001424 if (!p_ssl)
1425 {
1426 if (*p == '"')
1427 ++length; /* " -> "" */
1428 }
1429 else
1430# endif
1431 if (*p == '\'')
1432 length += 3; /* ' => '\'' */
Bram Moolenaar26df0922014-02-23 23:39:13 +01001433 if ((*p == '\n' && (csh_like || do_newline))
1434 || (*p == '!' && (csh_like || do_special)))
Bram Moolenaarffd66c42008-07-16 20:43:37 +00001435 {
1436 ++length; /* insert backslash */
1437 if (csh_like && do_special)
1438 ++length; /* insert backslash */
1439 }
Bram Moolenaar05bb9532008-07-04 09:44:11 +00001440 if (do_special && find_cmdline_var(p, &l) >= 0)
1441 {
1442 ++length; /* insert backslash */
1443 p += l - 1;
1444 }
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001445 }
1446
1447 /* Allocate memory for the result and fill it. */
1448 escaped_string = alloc(length);
1449 if (escaped_string != NULL)
1450 {
1451 d = escaped_string;
1452
1453 /* add opening quote */
Bram Moolenaarcea912a2016-10-12 14:20:24 +02001454# ifdef WIN32
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001455 if (!p_ssl)
1456 *d++ = '"';
1457 else
1458# endif
1459 *d++ = '\'';
1460
1461 for (p = string; *p != NUL; )
1462 {
Bram Moolenaarcea912a2016-10-12 14:20:24 +02001463# ifdef WIN32
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001464 if (!p_ssl)
1465 {
1466 if (*p == '"')
1467 {
1468 *d++ = '"';
1469 *d++ = '"';
1470 ++p;
1471 continue;
1472 }
1473 }
1474 else
1475# endif
1476 if (*p == '\'')
1477 {
Bram Moolenaar05bb9532008-07-04 09:44:11 +00001478 *d++ = '\'';
1479 *d++ = '\\';
1480 *d++ = '\'';
1481 *d++ = '\'';
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001482 ++p;
1483 continue;
1484 }
Bram Moolenaar26df0922014-02-23 23:39:13 +01001485 if ((*p == '\n' && (csh_like || do_newline))
1486 || (*p == '!' && (csh_like || do_special)))
Bram Moolenaarffd66c42008-07-16 20:43:37 +00001487 {
1488 *d++ = '\\';
1489 if (csh_like && do_special)
1490 *d++ = '\\';
1491 *d++ = *p++;
1492 continue;
1493 }
Bram Moolenaar05bb9532008-07-04 09:44:11 +00001494 if (do_special && find_cmdline_var(p, &l) >= 0)
1495 {
1496 *d++ = '\\'; /* insert backslash */
1497 while (--l >= 0) /* copy the var */
1498 *d++ = *p++;
Bram Moolenaar099d01d2009-11-25 16:14:45 +00001499 continue;
Bram Moolenaar05bb9532008-07-04 09:44:11 +00001500 }
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001501
1502 MB_COPY_CHAR(p, d);
1503 }
1504
1505 /* add terminating quote and finish with a NUL */
Bram Moolenaarcea912a2016-10-12 14:20:24 +02001506# ifdef WIN32
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001507 if (!p_ssl)
1508 *d++ = '"';
1509 else
1510# endif
1511 *d++ = '\'';
1512 *d = NUL;
1513 }
1514
1515 return escaped_string;
1516}
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001517
Bram Moolenaar071d4272004-06-13 20:20:40 +00001518/*
1519 * Like vim_strsave(), but make all characters uppercase.
1520 * This uses ASCII lower-to-upper case translation, language independent.
1521 */
1522 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001523vim_strsave_up(char_u *string)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001524{
1525 char_u *p1;
1526
1527 p1 = vim_strsave(string);
1528 vim_strup(p1);
1529 return p1;
1530}
1531
1532/*
1533 * Like vim_strnsave(), 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_strnsave_up(char_u *string, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001538{
1539 char_u *p1;
1540
1541 p1 = vim_strnsave(string, len);
1542 vim_strup(p1);
1543 return p1;
1544}
1545
1546/*
1547 * ASCII lower-to-upper case translation, language independent.
1548 */
1549 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001550vim_strup(
1551 char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001552{
1553 char_u *p2;
1554 int c;
1555
1556 if (p != NULL)
1557 {
1558 p2 = p;
1559 while ((c = *p2) != NUL)
1560#ifdef EBCDIC
1561 *p2++ = isalpha(c) ? toupper(c) : c;
1562#else
1563 *p2++ = (c < 'a' || c > 'z') ? c : (c - 0x20);
1564#endif
1565 }
1566}
1567
Bram Moolenaarc4956c82006-03-12 21:58:43 +00001568#if defined(FEAT_EVAL) || defined(FEAT_SPELL) || defined(PROTO)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001569/*
1570 * Make string "s" all upper-case and return it in allocated memory.
1571 * Handles multi-byte characters as well as possible.
1572 * Returns NULL when out of memory.
1573 */
1574 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001575strup_save(char_u *orig)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001576{
1577 char_u *p;
1578 char_u *res;
1579
1580 res = p = vim_strsave(orig);
1581
1582 if (res != NULL)
1583 while (*p != NUL)
1584 {
1585# ifdef FEAT_MBYTE
1586 int l;
1587
1588 if (enc_utf8)
1589 {
1590 int c, uc;
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001591 int newl;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001592 char_u *s;
1593
1594 c = utf_ptr2char(p);
1595 uc = utf_toupper(c);
1596
1597 /* Reallocate string when byte count changes. This is rare,
1598 * thus it's OK to do another malloc()/free(). */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001599 l = utf_ptr2len(p);
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001600 newl = utf_char2len(uc);
1601 if (newl != l)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001602 {
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001603 s = alloc((unsigned)STRLEN(res) + 1 + newl - l);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001604 if (s == NULL)
Bram Moolenaarcc5b22b2017-01-26 22:51:56 +01001605 {
1606 vim_free(res);
1607 return NULL;
1608 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001609 mch_memmove(s, res, p - res);
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001610 STRCPY(s + (p - res) + newl, p + l);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001611 p = s + (p - res);
1612 vim_free(res);
1613 res = s;
1614 }
1615
1616 utf_char2bytes(uc, p);
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001617 p += newl;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001618 }
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001619 else if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001620 p += l; /* skip multi-byte character */
1621 else
1622# endif
1623 {
1624 *p = TOUPPER_LOC(*p); /* note that toupper() can be a macro */
1625 p++;
1626 }
1627 }
1628
1629 return res;
1630}
Bram Moolenaarcc5b22b2017-01-26 22:51:56 +01001631
1632/*
1633 * Make string "s" all lower-case and return it in allocated memory.
1634 * Handles multi-byte characters as well as possible.
1635 * Returns NULL when out of memory.
1636 */
1637 char_u *
1638strlow_save(char_u *orig)
1639{
1640 char_u *p;
1641 char_u *res;
1642
1643 res = p = vim_strsave(orig);
1644
1645 if (res != NULL)
1646 while (*p != NUL)
1647 {
1648# ifdef FEAT_MBYTE
1649 int l;
1650
1651 if (enc_utf8)
1652 {
1653 int c, lc;
1654 int newl;
1655 char_u *s;
1656
1657 c = utf_ptr2char(p);
1658 lc = utf_tolower(c);
1659
1660 /* Reallocate string when byte count changes. This is rare,
1661 * thus it's OK to do another malloc()/free(). */
1662 l = utf_ptr2len(p);
1663 newl = utf_char2len(lc);
1664 if (newl != l)
1665 {
1666 s = alloc((unsigned)STRLEN(res) + 1 + newl - l);
1667 if (s == NULL)
1668 {
1669 vim_free(res);
1670 return NULL;
1671 }
1672 mch_memmove(s, res, p - res);
1673 STRCPY(s + (p - res) + newl, p + l);
1674 p = s + (p - res);
1675 vim_free(res);
1676 res = s;
1677 }
1678
1679 utf_char2bytes(lc, p);
1680 p += newl;
1681 }
1682 else if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
1683 p += l; /* skip multi-byte character */
1684 else
1685# endif
1686 {
1687 *p = TOLOWER_LOC(*p); /* note that tolower() can be a macro */
1688 p++;
1689 }
1690 }
1691
1692 return res;
1693}
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001694#endif
1695
Bram Moolenaar071d4272004-06-13 20:20:40 +00001696/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001697 * delete spaces at the end of a string
1698 */
1699 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001700del_trailing_spaces(char_u *ptr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001701{
1702 char_u *q;
1703
1704 q = ptr + STRLEN(ptr);
1705 while (--q > ptr && vim_iswhite(q[0]) && q[-1] != '\\' && q[-1] != Ctrl_V)
1706 *q = NUL;
1707}
1708
1709/*
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001710 * Like strncpy(), but always terminate the result with one NUL.
Bram Moolenaard042c562005-06-30 22:04:15 +00001711 * "to" must be "len + 1" long!
Bram Moolenaar071d4272004-06-13 20:20:40 +00001712 */
1713 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001714vim_strncpy(char_u *to, char_u *from, size_t len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001715{
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001716 STRNCPY(to, from, len);
1717 to[len] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001718}
1719
1720/*
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02001721 * Like strcat(), but make sure the result fits in "tosize" bytes and is
Bram Moolenaar45600ce2017-01-27 21:54:07 +01001722 * always NUL terminated. "from" and "to" may overlap.
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02001723 */
1724 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001725vim_strcat(char_u *to, char_u *from, size_t tosize)
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02001726{
1727 size_t tolen = STRLEN(to);
1728 size_t fromlen = STRLEN(from);
1729
1730 if (tolen + fromlen + 1 > tosize)
1731 {
1732 mch_memmove(to + tolen, from, tosize - tolen - 1);
1733 to[tosize - 1] = NUL;
1734 }
1735 else
Bram Moolenaar45600ce2017-01-27 21:54:07 +01001736 mch_memmove(to + tolen, from, fromlen + 1);
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02001737}
1738
1739/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001740 * Isolate one part of a string option where parts are separated with
1741 * "sep_chars".
Bram Moolenaar83bab712005-08-01 21:58:57 +00001742 * The part is copied into "buf[maxlen]".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001743 * "*option" is advanced to the next part.
1744 * The length is returned.
1745 */
1746 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001747copy_option_part(
1748 char_u **option,
1749 char_u *buf,
1750 int maxlen,
1751 char *sep_chars)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001752{
1753 int len = 0;
1754 char_u *p = *option;
1755
1756 /* skip '.' at start of option part, for 'suffixes' */
1757 if (*p == '.')
1758 buf[len++] = *p++;
1759 while (*p != NUL && vim_strchr((char_u *)sep_chars, *p) == NULL)
1760 {
1761 /*
1762 * Skip backslash before a separator character and space.
1763 */
1764 if (p[0] == '\\' && vim_strchr((char_u *)sep_chars, p[1]) != NULL)
1765 ++p;
1766 if (len < maxlen - 1)
1767 buf[len++] = *p;
1768 ++p;
1769 }
1770 buf[len] = NUL;
1771
1772 if (*p != NUL && *p != ',') /* skip non-standard separator */
1773 ++p;
1774 p = skip_to_option_part(p); /* p points to next file name */
1775
1776 *option = p;
1777 return len;
1778}
1779
1780/*
Bram Moolenaar4770d092006-01-12 23:22:24 +00001781 * Replacement for free() that ignores NULL pointers.
1782 * Also skip free() when exiting for sure, this helps when we caught a deadly
1783 * signal that was caused by a crash in free().
Bram Moolenaar071d4272004-06-13 20:20:40 +00001784 */
1785 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001786vim_free(void *x)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001787{
Bram Moolenaar4770d092006-01-12 23:22:24 +00001788 if (x != NULL && !really_exiting)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001789 {
1790#ifdef MEM_PROFILE
1791 mem_pre_free(&x);
1792#endif
1793 free(x);
1794 }
1795}
1796
1797#ifndef HAVE_MEMSET
1798 void *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001799vim_memset(void *ptr, int c, size_t size)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001800{
1801 char *p = ptr;
1802
1803 while (size-- > 0)
1804 *p++ = c;
1805 return ptr;
1806}
1807#endif
1808
Bram Moolenaar071d4272004-06-13 20:20:40 +00001809#if (!defined(HAVE_STRCASECMP) && !defined(HAVE_STRICMP)) || defined(PROTO)
1810/*
1811 * Compare two strings, ignoring case, using current locale.
1812 * Doesn't work for multi-byte characters.
1813 * return 0 for match, < 0 for smaller, > 0 for bigger
1814 */
1815 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001816vim_stricmp(char *s1, char *s2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001817{
1818 int i;
1819
1820 for (;;)
1821 {
1822 i = (int)TOLOWER_LOC(*s1) - (int)TOLOWER_LOC(*s2);
1823 if (i != 0)
1824 return i; /* this character different */
1825 if (*s1 == NUL)
1826 break; /* strings match until NUL */
1827 ++s1;
1828 ++s2;
1829 }
1830 return 0; /* strings match */
1831}
1832#endif
1833
1834#if (!defined(HAVE_STRNCASECMP) && !defined(HAVE_STRNICMP)) || defined(PROTO)
1835/*
1836 * Compare two strings, for length "len", ignoring case, using current locale.
1837 * Doesn't work for multi-byte characters.
1838 * return 0 for match, < 0 for smaller, > 0 for bigger
1839 */
1840 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001841vim_strnicmp(char *s1, char *s2, size_t len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001842{
1843 int i;
1844
1845 while (len > 0)
1846 {
1847 i = (int)TOLOWER_LOC(*s1) - (int)TOLOWER_LOC(*s2);
1848 if (i != 0)
1849 return i; /* this character different */
1850 if (*s1 == NUL)
1851 break; /* strings match until NUL */
1852 ++s1;
1853 ++s2;
1854 --len;
1855 }
1856 return 0; /* strings match */
1857}
1858#endif
1859
Bram Moolenaar071d4272004-06-13 20:20:40 +00001860/*
1861 * Version of strchr() and strrchr() that handle unsigned char strings
Bram Moolenaar05159a02005-02-26 23:04:13 +00001862 * with characters from 128 to 255 correctly. It also doesn't return a
1863 * pointer to the NUL at the end of the string.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001864 */
1865 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001866vim_strchr(char_u *string, int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001867{
1868 char_u *p;
1869 int b;
1870
1871 p = string;
1872#ifdef FEAT_MBYTE
1873 if (enc_utf8 && c >= 0x80)
1874 {
1875 while (*p != NUL)
1876 {
Bram Moolenaard82a2a92015-04-21 14:02:35 +02001877 int l = (*mb_ptr2len)(p);
1878
1879 /* Avoid matching an illegal byte here. */
1880 if (utf_ptr2char(p) == c && l > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001881 return p;
Bram Moolenaard82a2a92015-04-21 14:02:35 +02001882 p += l;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001883 }
1884 return NULL;
1885 }
1886 if (enc_dbcs != 0 && c > 255)
1887 {
1888 int n2 = c & 0xff;
1889
1890 c = ((unsigned)c >> 8) & 0xff;
1891 while ((b = *p) != NUL)
1892 {
1893 if (b == c && p[1] == n2)
1894 return p;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001895 p += (*mb_ptr2len)(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001896 }
1897 return NULL;
1898 }
1899 if (has_mbyte)
1900 {
1901 while ((b = *p) != NUL)
1902 {
1903 if (b == c)
1904 return p;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001905 p += (*mb_ptr2len)(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001906 }
1907 return NULL;
1908 }
1909#endif
1910 while ((b = *p) != NUL)
1911 {
1912 if (b == c)
1913 return p;
1914 ++p;
1915 }
1916 return NULL;
1917}
1918
1919/*
Bram Moolenaar05159a02005-02-26 23:04:13 +00001920 * Version of strchr() that only works for bytes and handles unsigned char
1921 * strings with characters above 128 correctly. It also doesn't return a
1922 * pointer to the NUL at the end of the string.
1923 */
1924 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001925vim_strbyte(char_u *string, int c)
Bram Moolenaar05159a02005-02-26 23:04:13 +00001926{
1927 char_u *p = string;
1928
1929 while (*p != NUL)
1930 {
1931 if (*p == c)
1932 return p;
1933 ++p;
1934 }
1935 return NULL;
1936}
1937
1938/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001939 * Search for last occurrence of "c" in "string".
Bram Moolenaarac6e65f2005-08-29 22:25:38 +00001940 * Return NULL if not found.
Bram Moolenaar05159a02005-02-26 23:04:13 +00001941 * Does not handle multi-byte char for "c"!
Bram Moolenaar071d4272004-06-13 20:20:40 +00001942 */
1943 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001944vim_strrchr(char_u *string, int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001945{
1946 char_u *retval = NULL;
Bram Moolenaar05159a02005-02-26 23:04:13 +00001947 char_u *p = string;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001948
Bram Moolenaar05159a02005-02-26 23:04:13 +00001949 while (*p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001950 {
Bram Moolenaar05159a02005-02-26 23:04:13 +00001951 if (*p == c)
1952 retval = p;
1953 mb_ptr_adv(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001954 }
1955 return retval;
1956}
1957
1958/*
1959 * Vim's version of strpbrk(), in case it's missing.
1960 * Don't generate a prototype for this, causes problems when it's not used.
1961 */
1962#ifndef PROTO
1963# ifndef HAVE_STRPBRK
1964# ifdef vim_strpbrk
1965# undef vim_strpbrk
1966# endif
1967 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001968vim_strpbrk(char_u *s, char_u *charset)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001969{
1970 while (*s)
1971 {
1972 if (vim_strchr(charset, *s) != NULL)
1973 return s;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001974 mb_ptr_adv(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001975 }
1976 return NULL;
1977}
1978# endif
1979#endif
1980
1981/*
1982 * Vim has its own isspace() function, because on some machines isspace()
1983 * can't handle characters above 128.
1984 */
1985 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001986vim_isspace(int x)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001987{
1988 return ((x >= 9 && x <= 13) || x == ' ');
1989}
1990
1991/************************************************************************
Bram Moolenaar383f9bc2005-01-19 22:18:32 +00001992 * Functions for handling growing arrays.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001993 */
1994
1995/*
1996 * Clear an allocated growing array.
1997 */
1998 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001999ga_clear(garray_T *gap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002000{
2001 vim_free(gap->ga_data);
2002 ga_init(gap);
2003}
2004
2005/*
2006 * Clear a growing array that contains a list of strings.
2007 */
2008 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002009ga_clear_strings(garray_T *gap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002010{
2011 int i;
2012
2013 for (i = 0; i < gap->ga_len; ++i)
2014 vim_free(((char_u **)(gap->ga_data))[i]);
2015 ga_clear(gap);
2016}
2017
2018/*
2019 * Initialize a growing array. Don't forget to set ga_itemsize and
2020 * ga_growsize! Or use ga_init2().
2021 */
2022 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002023ga_init(garray_T *gap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002024{
2025 gap->ga_data = NULL;
Bram Moolenaar86b68352004-12-27 21:59:20 +00002026 gap->ga_maxlen = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002027 gap->ga_len = 0;
2028}
2029
2030 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002031ga_init2(garray_T *gap, int itemsize, int growsize)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002032{
2033 ga_init(gap);
2034 gap->ga_itemsize = itemsize;
2035 gap->ga_growsize = growsize;
2036}
2037
2038/*
2039 * Make room in growing array "gap" for at least "n" items.
2040 * Return FAIL for failure, OK otherwise.
2041 */
2042 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002043ga_grow(garray_T *gap, int n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002044{
Bram Moolenaar7282bc32012-02-22 18:12:32 +01002045 size_t old_len;
2046 size_t new_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002047 char_u *pp;
2048
Bram Moolenaar86b68352004-12-27 21:59:20 +00002049 if (gap->ga_maxlen - gap->ga_len < n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002050 {
2051 if (n < gap->ga_growsize)
2052 n = gap->ga_growsize;
Bram Moolenaar7282bc32012-02-22 18:12:32 +01002053 new_len = gap->ga_itemsize * (gap->ga_len + n);
2054 pp = (gap->ga_data == NULL)
Bram Moolenaar4336cdf2012-02-29 13:58:47 +01002055 ? alloc((unsigned)new_len) : vim_realloc(gap->ga_data, new_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002056 if (pp == NULL)
2057 return FAIL;
Bram Moolenaar7282bc32012-02-22 18:12:32 +01002058 old_len = gap->ga_itemsize * gap->ga_maxlen;
2059 vim_memset(pp + old_len, 0, new_len - old_len);
Bram Moolenaar86b68352004-12-27 21:59:20 +00002060 gap->ga_maxlen = gap->ga_len + n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002061 gap->ga_data = pp;
2062 }
2063 return OK;
2064}
2065
2066/*
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02002067 * For a growing array that contains a list of strings: concatenate all the
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02002068 * strings with a separating "sep".
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02002069 * Returns NULL when out of memory.
2070 */
2071 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01002072ga_concat_strings(garray_T *gap, char *sep)
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02002073{
2074 int i;
2075 int len = 0;
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02002076 int sep_len = (int)STRLEN(sep);
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02002077 char_u *s;
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02002078 char_u *p;
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02002079
2080 for (i = 0; i < gap->ga_len; ++i)
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02002081 len += (int)STRLEN(((char_u **)(gap->ga_data))[i]) + sep_len;
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02002082
2083 s = alloc(len + 1);
2084 if (s != NULL)
2085 {
2086 *s = NUL;
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02002087 p = s;
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02002088 for (i = 0; i < gap->ga_len; ++i)
2089 {
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02002090 if (p != s)
2091 {
2092 STRCPY(p, sep);
2093 p += sep_len;
2094 }
2095 STRCPY(p, ((char_u **)(gap->ga_data))[i]);
2096 p += STRLEN(p);
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02002097 }
2098 }
2099 return s;
2100}
2101
Bram Moolenaar5a66dfb2017-03-01 20:40:39 +01002102#if defined(FEAT_VIMINFO) || defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaarb20e3342016-01-18 23:29:01 +01002103/*
2104 * Make a copy of string "p" and add it to "gap".
2105 * When out of memory nothing changes.
2106 */
2107 void
2108ga_add_string(garray_T *gap, char_u *p)
2109{
2110 char_u *cp = vim_strsave(p);
2111
2112 if (cp != NULL)
2113 {
2114 if (ga_grow(gap, 1) == OK)
2115 ((char_u **)(gap->ga_data))[gap->ga_len++] = cp;
2116 else
2117 vim_free(cp);
2118 }
2119}
2120#endif
2121
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02002122/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002123 * Concatenate a string to a growarray which contains characters.
Bram Moolenaar43345542015-11-29 17:35:35 +01002124 * When "s" is NULL does not do anything.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002125 * Note: Does NOT copy the NUL at the end!
2126 */
2127 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002128ga_concat(garray_T *gap, char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002129{
Bram Moolenaar43345542015-11-29 17:35:35 +01002130 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002131
Bram Moolenaar43345542015-11-29 17:35:35 +01002132 if (s == NULL)
2133 return;
2134 len = (int)STRLEN(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002135 if (ga_grow(gap, len) == OK)
2136 {
2137 mch_memmove((char *)gap->ga_data + gap->ga_len, s, (size_t)len);
2138 gap->ga_len += len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002139 }
2140}
2141
2142/*
2143 * Append one byte to a growarray which contains bytes.
2144 */
2145 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002146ga_append(garray_T *gap, int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002147{
2148 if (ga_grow(gap, 1) == OK)
2149 {
2150 *((char *)gap->ga_data + gap->ga_len) = c;
2151 ++gap->ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002152 }
2153}
2154
Bram Moolenaar597a4222014-06-25 14:39:50 +02002155#if (defined(UNIX) && !defined(USE_SYSTEM)) || defined(WIN3264) \
2156 || defined(PROTO)
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02002157/*
2158 * Append the text in "gap" below the cursor line and clear "gap".
2159 */
2160 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002161append_ga_line(garray_T *gap)
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02002162{
2163 /* Remove trailing CR. */
2164 if (gap->ga_len > 0
2165 && !curbuf->b_p_bin
2166 && ((char_u *)gap->ga_data)[gap->ga_len - 1] == CAR)
2167 --gap->ga_len;
2168 ga_append(gap, NUL);
2169 ml_append(curwin->w_cursor.lnum++, gap->ga_data, 0, FALSE);
2170 gap->ga_len = 0;
2171}
2172#endif
2173
Bram Moolenaar071d4272004-06-13 20:20:40 +00002174/************************************************************************
2175 * functions that use lookup tables for various things, generally to do with
2176 * special key codes.
2177 */
2178
2179/*
2180 * Some useful tables.
2181 */
2182
2183static struct modmasktable
2184{
2185 short mod_mask; /* Bit-mask for particular key modifier */
2186 short mod_flag; /* Bit(s) for particular key modifier */
2187 char_u name; /* Single letter name of modifier */
2188} mod_mask_table[] =
2189{
2190 {MOD_MASK_ALT, MOD_MASK_ALT, (char_u)'M'},
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002191 {MOD_MASK_META, MOD_MASK_META, (char_u)'T'},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002192 {MOD_MASK_CTRL, MOD_MASK_CTRL, (char_u)'C'},
2193 {MOD_MASK_SHIFT, MOD_MASK_SHIFT, (char_u)'S'},
2194 {MOD_MASK_MULTI_CLICK, MOD_MASK_2CLICK, (char_u)'2'},
2195 {MOD_MASK_MULTI_CLICK, MOD_MASK_3CLICK, (char_u)'3'},
2196 {MOD_MASK_MULTI_CLICK, MOD_MASK_4CLICK, (char_u)'4'},
2197#ifdef MACOS
2198 {MOD_MASK_CMD, MOD_MASK_CMD, (char_u)'D'},
2199#endif
2200 /* 'A' must be the last one */
2201 {MOD_MASK_ALT, MOD_MASK_ALT, (char_u)'A'},
2202 {0, 0, NUL}
Bram Moolenaar423977d2017-01-22 15:05:12 +01002203 /* NOTE: when adding an entry, update MAX_KEY_NAME_LEN! */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002204};
2205
2206/*
2207 * Shifted key terminal codes and their unshifted equivalent.
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00002208 * Don't add mouse codes here, they are handled separately!
Bram Moolenaar071d4272004-06-13 20:20:40 +00002209 */
2210#define MOD_KEYS_ENTRY_SIZE 5
2211
2212static char_u modifier_keys_table[] =
2213{
2214/* mod mask with modifier without modifier */
2215 MOD_MASK_SHIFT, '&', '9', '@', '1', /* begin */
2216 MOD_MASK_SHIFT, '&', '0', '@', '2', /* cancel */
2217 MOD_MASK_SHIFT, '*', '1', '@', '4', /* command */
2218 MOD_MASK_SHIFT, '*', '2', '@', '5', /* copy */
2219 MOD_MASK_SHIFT, '*', '3', '@', '6', /* create */
2220 MOD_MASK_SHIFT, '*', '4', 'k', 'D', /* delete char */
2221 MOD_MASK_SHIFT, '*', '5', 'k', 'L', /* delete line */
2222 MOD_MASK_SHIFT, '*', '7', '@', '7', /* end */
2223 MOD_MASK_CTRL, KS_EXTRA, (int)KE_C_END, '@', '7', /* end */
2224 MOD_MASK_SHIFT, '*', '9', '@', '9', /* exit */
2225 MOD_MASK_SHIFT, '*', '0', '@', '0', /* find */
2226 MOD_MASK_SHIFT, '#', '1', '%', '1', /* help */
2227 MOD_MASK_SHIFT, '#', '2', 'k', 'h', /* home */
2228 MOD_MASK_CTRL, KS_EXTRA, (int)KE_C_HOME, 'k', 'h', /* home */
2229 MOD_MASK_SHIFT, '#', '3', 'k', 'I', /* insert */
2230 MOD_MASK_SHIFT, '#', '4', 'k', 'l', /* left arrow */
2231 MOD_MASK_CTRL, KS_EXTRA, (int)KE_C_LEFT, 'k', 'l', /* left arrow */
2232 MOD_MASK_SHIFT, '%', 'a', '%', '3', /* message */
2233 MOD_MASK_SHIFT, '%', 'b', '%', '4', /* move */
2234 MOD_MASK_SHIFT, '%', 'c', '%', '5', /* next */
2235 MOD_MASK_SHIFT, '%', 'd', '%', '7', /* options */
2236 MOD_MASK_SHIFT, '%', 'e', '%', '8', /* previous */
2237 MOD_MASK_SHIFT, '%', 'f', '%', '9', /* print */
2238 MOD_MASK_SHIFT, '%', 'g', '%', '0', /* redo */
2239 MOD_MASK_SHIFT, '%', 'h', '&', '3', /* replace */
2240 MOD_MASK_SHIFT, '%', 'i', 'k', 'r', /* right arr. */
2241 MOD_MASK_CTRL, KS_EXTRA, (int)KE_C_RIGHT, 'k', 'r', /* right arr. */
2242 MOD_MASK_SHIFT, '%', 'j', '&', '5', /* resume */
2243 MOD_MASK_SHIFT, '!', '1', '&', '6', /* save */
2244 MOD_MASK_SHIFT, '!', '2', '&', '7', /* suspend */
2245 MOD_MASK_SHIFT, '!', '3', '&', '8', /* undo */
2246 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_UP, 'k', 'u', /* up arrow */
2247 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_DOWN, 'k', 'd', /* down arrow */
2248
2249 /* vt100 F1 */
2250 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_XF1, KS_EXTRA, (int)KE_XF1,
2251 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_XF2, KS_EXTRA, (int)KE_XF2,
2252 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_XF3, KS_EXTRA, (int)KE_XF3,
2253 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_XF4, KS_EXTRA, (int)KE_XF4,
2254
2255 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F1, 'k', '1', /* F1 */
2256 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F2, 'k', '2',
2257 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F3, 'k', '3',
2258 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F4, 'k', '4',
2259 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F5, 'k', '5',
2260 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F6, 'k', '6',
2261 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F7, 'k', '7',
2262 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F8, 'k', '8',
2263 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F9, 'k', '9',
2264 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F10, 'k', ';', /* F10 */
2265
2266 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F11, 'F', '1',
2267 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F12, 'F', '2',
2268 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F13, 'F', '3',
2269 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F14, 'F', '4',
2270 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F15, 'F', '5',
2271 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F16, 'F', '6',
2272 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F17, 'F', '7',
2273 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F18, 'F', '8',
2274 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F19, 'F', '9',
2275 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F20, 'F', 'A',
2276
2277 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F21, 'F', 'B',
2278 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F22, 'F', 'C',
2279 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F23, 'F', 'D',
2280 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F24, 'F', 'E',
2281 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F25, 'F', 'F',
2282 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F26, 'F', 'G',
2283 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F27, 'F', 'H',
2284 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F28, 'F', 'I',
2285 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F29, 'F', 'J',
2286 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F30, 'F', 'K',
2287
2288 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F31, 'F', 'L',
2289 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F32, 'F', 'M',
2290 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F33, 'F', 'N',
2291 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F34, 'F', 'O',
2292 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F35, 'F', 'P',
2293 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F36, 'F', 'Q',
2294 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F37, 'F', 'R',
2295
2296 /* TAB pseudo code*/
2297 MOD_MASK_SHIFT, 'k', 'B', KS_EXTRA, (int)KE_TAB,
2298
2299 NUL
2300};
2301
2302static struct key_name_entry
2303{
2304 int key; /* Special key code or ascii value */
2305 char_u *name; /* Name of key */
2306} key_names_table[] =
2307{
2308 {' ', (char_u *)"Space"},
2309 {TAB, (char_u *)"Tab"},
2310 {K_TAB, (char_u *)"Tab"},
2311 {NL, (char_u *)"NL"},
2312 {NL, (char_u *)"NewLine"}, /* Alternative name */
2313 {NL, (char_u *)"LineFeed"}, /* Alternative name */
2314 {NL, (char_u *)"LF"}, /* Alternative name */
2315 {CAR, (char_u *)"CR"},
2316 {CAR, (char_u *)"Return"}, /* Alternative name */
2317 {CAR, (char_u *)"Enter"}, /* Alternative name */
2318 {K_BS, (char_u *)"BS"},
2319 {K_BS, (char_u *)"BackSpace"}, /* Alternative name */
2320 {ESC, (char_u *)"Esc"},
2321 {CSI, (char_u *)"CSI"},
2322 {K_CSI, (char_u *)"xCSI"},
2323 {'|', (char_u *)"Bar"},
2324 {'\\', (char_u *)"Bslash"},
2325 {K_DEL, (char_u *)"Del"},
2326 {K_DEL, (char_u *)"Delete"}, /* Alternative name */
2327 {K_KDEL, (char_u *)"kDel"},
2328 {K_UP, (char_u *)"Up"},
2329 {K_DOWN, (char_u *)"Down"},
2330 {K_LEFT, (char_u *)"Left"},
2331 {K_RIGHT, (char_u *)"Right"},
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002332 {K_XUP, (char_u *)"xUp"},
2333 {K_XDOWN, (char_u *)"xDown"},
2334 {K_XLEFT, (char_u *)"xLeft"},
2335 {K_XRIGHT, (char_u *)"xRight"},
Bram Moolenaarec2da362017-01-21 20:04:22 +01002336 {K_PS, (char_u *)"PasteStart"},
2337 {K_PE, (char_u *)"PasteEnd"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002338
2339 {K_F1, (char_u *)"F1"},
2340 {K_F2, (char_u *)"F2"},
2341 {K_F3, (char_u *)"F3"},
2342 {K_F4, (char_u *)"F4"},
2343 {K_F5, (char_u *)"F5"},
2344 {K_F6, (char_u *)"F6"},
2345 {K_F7, (char_u *)"F7"},
2346 {K_F8, (char_u *)"F8"},
2347 {K_F9, (char_u *)"F9"},
2348 {K_F10, (char_u *)"F10"},
2349
2350 {K_F11, (char_u *)"F11"},
2351 {K_F12, (char_u *)"F12"},
2352 {K_F13, (char_u *)"F13"},
2353 {K_F14, (char_u *)"F14"},
2354 {K_F15, (char_u *)"F15"},
2355 {K_F16, (char_u *)"F16"},
2356 {K_F17, (char_u *)"F17"},
2357 {K_F18, (char_u *)"F18"},
2358 {K_F19, (char_u *)"F19"},
2359 {K_F20, (char_u *)"F20"},
2360
2361 {K_F21, (char_u *)"F21"},
2362 {K_F22, (char_u *)"F22"},
2363 {K_F23, (char_u *)"F23"},
2364 {K_F24, (char_u *)"F24"},
2365 {K_F25, (char_u *)"F25"},
2366 {K_F26, (char_u *)"F26"},
2367 {K_F27, (char_u *)"F27"},
2368 {K_F28, (char_u *)"F28"},
2369 {K_F29, (char_u *)"F29"},
2370 {K_F30, (char_u *)"F30"},
2371
2372 {K_F31, (char_u *)"F31"},
2373 {K_F32, (char_u *)"F32"},
2374 {K_F33, (char_u *)"F33"},
2375 {K_F34, (char_u *)"F34"},
2376 {K_F35, (char_u *)"F35"},
2377 {K_F36, (char_u *)"F36"},
2378 {K_F37, (char_u *)"F37"},
2379
2380 {K_XF1, (char_u *)"xF1"},
2381 {K_XF2, (char_u *)"xF2"},
2382 {K_XF3, (char_u *)"xF3"},
2383 {K_XF4, (char_u *)"xF4"},
2384
2385 {K_HELP, (char_u *)"Help"},
2386 {K_UNDO, (char_u *)"Undo"},
2387 {K_INS, (char_u *)"Insert"},
2388 {K_INS, (char_u *)"Ins"}, /* Alternative name */
2389 {K_KINS, (char_u *)"kInsert"},
2390 {K_HOME, (char_u *)"Home"},
2391 {K_KHOME, (char_u *)"kHome"},
2392 {K_XHOME, (char_u *)"xHome"},
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002393 {K_ZHOME, (char_u *)"zHome"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002394 {K_END, (char_u *)"End"},
2395 {K_KEND, (char_u *)"kEnd"},
2396 {K_XEND, (char_u *)"xEnd"},
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002397 {K_ZEND, (char_u *)"zEnd"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002398 {K_PAGEUP, (char_u *)"PageUp"},
2399 {K_PAGEDOWN, (char_u *)"PageDown"},
2400 {K_KPAGEUP, (char_u *)"kPageUp"},
2401 {K_KPAGEDOWN, (char_u *)"kPageDown"},
2402
2403 {K_KPLUS, (char_u *)"kPlus"},
2404 {K_KMINUS, (char_u *)"kMinus"},
2405 {K_KDIVIDE, (char_u *)"kDivide"},
2406 {K_KMULTIPLY, (char_u *)"kMultiply"},
2407 {K_KENTER, (char_u *)"kEnter"},
2408 {K_KPOINT, (char_u *)"kPoint"},
2409
2410 {K_K0, (char_u *)"k0"},
2411 {K_K1, (char_u *)"k1"},
2412 {K_K2, (char_u *)"k2"},
2413 {K_K3, (char_u *)"k3"},
2414 {K_K4, (char_u *)"k4"},
2415 {K_K5, (char_u *)"k5"},
2416 {K_K6, (char_u *)"k6"},
2417 {K_K7, (char_u *)"k7"},
2418 {K_K8, (char_u *)"k8"},
2419 {K_K9, (char_u *)"k9"},
2420
2421 {'<', (char_u *)"lt"},
2422
2423 {K_MOUSE, (char_u *)"Mouse"},
Bram Moolenaar5af7d712012-01-20 17:15:51 +01002424#ifdef FEAT_MOUSE_NET
Bram Moolenaar071d4272004-06-13 20:20:40 +00002425 {K_NETTERM_MOUSE, (char_u *)"NetMouse"},
Bram Moolenaar5af7d712012-01-20 17:15:51 +01002426#endif
2427#ifdef FEAT_MOUSE_DEC
Bram Moolenaar071d4272004-06-13 20:20:40 +00002428 {K_DEC_MOUSE, (char_u *)"DecMouse"},
Bram Moolenaar5af7d712012-01-20 17:15:51 +01002429#endif
2430#ifdef FEAT_MOUSE_JSB
Bram Moolenaar071d4272004-06-13 20:20:40 +00002431 {K_JSBTERM_MOUSE, (char_u *)"JsbMouse"},
Bram Moolenaar5af7d712012-01-20 17:15:51 +01002432#endif
2433#ifdef FEAT_MOUSE_PTERM
Bram Moolenaar071d4272004-06-13 20:20:40 +00002434 {K_PTERM_MOUSE, (char_u *)"PtermMouse"},
Bram Moolenaar5af7d712012-01-20 17:15:51 +01002435#endif
2436#ifdef FEAT_MOUSE_URXVT
2437 {K_URXVT_MOUSE, (char_u *)"UrxvtMouse"},
2438#endif
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02002439#ifdef FEAT_MOUSE_SGR
2440 {K_SGR_MOUSE, (char_u *)"SgrMouse"},
2441#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002442 {K_LEFTMOUSE, (char_u *)"LeftMouse"},
2443 {K_LEFTMOUSE_NM, (char_u *)"LeftMouseNM"},
2444 {K_LEFTDRAG, (char_u *)"LeftDrag"},
2445 {K_LEFTRELEASE, (char_u *)"LeftRelease"},
2446 {K_LEFTRELEASE_NM, (char_u *)"LeftReleaseNM"},
2447 {K_MIDDLEMOUSE, (char_u *)"MiddleMouse"},
2448 {K_MIDDLEDRAG, (char_u *)"MiddleDrag"},
2449 {K_MIDDLERELEASE, (char_u *)"MiddleRelease"},
2450 {K_RIGHTMOUSE, (char_u *)"RightMouse"},
2451 {K_RIGHTDRAG, (char_u *)"RightDrag"},
2452 {K_RIGHTRELEASE, (char_u *)"RightRelease"},
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02002453 {K_MOUSEDOWN, (char_u *)"ScrollWheelUp"},
2454 {K_MOUSEUP, (char_u *)"ScrollWheelDown"},
2455 {K_MOUSELEFT, (char_u *)"ScrollWheelRight"},
2456 {K_MOUSERIGHT, (char_u *)"ScrollWheelLeft"},
2457 {K_MOUSEDOWN, (char_u *)"MouseDown"}, /* OBSOLETE: Use */
2458 {K_MOUSEUP, (char_u *)"MouseUp"}, /* ScrollWheelXXX instead */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002459 {K_X1MOUSE, (char_u *)"X1Mouse"},
2460 {K_X1DRAG, (char_u *)"X1Drag"},
2461 {K_X1RELEASE, (char_u *)"X1Release"},
2462 {K_X2MOUSE, (char_u *)"X2Mouse"},
2463 {K_X2DRAG, (char_u *)"X2Drag"},
2464 {K_X2RELEASE, (char_u *)"X2Release"},
2465 {K_DROP, (char_u *)"Drop"},
2466 {K_ZERO, (char_u *)"Nul"},
2467#ifdef FEAT_EVAL
2468 {K_SNR, (char_u *)"SNR"},
2469#endif
2470 {K_PLUG, (char_u *)"Plug"},
Bram Moolenaar1db60c42014-09-23 16:49:46 +02002471 {K_CURSORHOLD, (char_u *)"CursorHold"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002472 {0, NULL}
Bram Moolenaar423977d2017-01-22 15:05:12 +01002473 /* NOTE: When adding a long name update MAX_KEY_NAME_LEN. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002474};
2475
2476#define KEY_NAMES_TABLE_LEN (sizeof(key_names_table) / sizeof(struct key_name_entry))
2477
2478#ifdef FEAT_MOUSE
2479static struct mousetable
2480{
2481 int pseudo_code; /* Code for pseudo mouse event */
2482 int button; /* Which mouse button is it? */
2483 int is_click; /* Is it a mouse button click event? */
2484 int is_drag; /* Is it a mouse drag event? */
2485} mouse_table[] =
2486{
2487 {(int)KE_LEFTMOUSE, MOUSE_LEFT, TRUE, FALSE},
2488#ifdef FEAT_GUI
2489 {(int)KE_LEFTMOUSE_NM, MOUSE_LEFT, TRUE, FALSE},
2490#endif
2491 {(int)KE_LEFTDRAG, MOUSE_LEFT, FALSE, TRUE},
2492 {(int)KE_LEFTRELEASE, MOUSE_LEFT, FALSE, FALSE},
2493#ifdef FEAT_GUI
2494 {(int)KE_LEFTRELEASE_NM, MOUSE_LEFT, FALSE, FALSE},
2495#endif
2496 {(int)KE_MIDDLEMOUSE, MOUSE_MIDDLE, TRUE, FALSE},
2497 {(int)KE_MIDDLEDRAG, MOUSE_MIDDLE, FALSE, TRUE},
2498 {(int)KE_MIDDLERELEASE, MOUSE_MIDDLE, FALSE, FALSE},
2499 {(int)KE_RIGHTMOUSE, MOUSE_RIGHT, TRUE, FALSE},
2500 {(int)KE_RIGHTDRAG, MOUSE_RIGHT, FALSE, TRUE},
2501 {(int)KE_RIGHTRELEASE, MOUSE_RIGHT, FALSE, FALSE},
2502 {(int)KE_X1MOUSE, MOUSE_X1, TRUE, FALSE},
2503 {(int)KE_X1DRAG, MOUSE_X1, FALSE, TRUE},
2504 {(int)KE_X1RELEASE, MOUSE_X1, FALSE, FALSE},
2505 {(int)KE_X2MOUSE, MOUSE_X2, TRUE, FALSE},
2506 {(int)KE_X2DRAG, MOUSE_X2, FALSE, TRUE},
2507 {(int)KE_X2RELEASE, MOUSE_X2, FALSE, FALSE},
2508 /* DRAG without CLICK */
2509 {(int)KE_IGNORE, MOUSE_RELEASE, FALSE, TRUE},
2510 /* RELEASE without CLICK */
2511 {(int)KE_IGNORE, MOUSE_RELEASE, FALSE, FALSE},
2512 {0, 0, 0, 0},
2513};
2514#endif /* FEAT_MOUSE */
2515
2516/*
2517 * Return the modifier mask bit (MOD_MASK_*) which corresponds to the given
2518 * modifier name ('S' for Shift, 'C' for Ctrl etc).
2519 */
2520 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002521name_to_mod_mask(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002522{
2523 int i;
2524
2525 c = TOUPPER_ASC(c);
2526 for (i = 0; mod_mask_table[i].mod_mask != 0; i++)
2527 if (c == mod_mask_table[i].name)
2528 return mod_mask_table[i].mod_flag;
2529 return 0;
2530}
2531
Bram Moolenaar071d4272004-06-13 20:20:40 +00002532/*
2533 * Check if if there is a special key code for "key" that includes the
2534 * modifiers specified.
2535 */
2536 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002537simplify_key(int key, int *modifiers)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002538{
2539 int i;
2540 int key0;
2541 int key1;
2542
2543 if (*modifiers & (MOD_MASK_SHIFT | MOD_MASK_CTRL | MOD_MASK_ALT))
2544 {
2545 /* TAB is a special case */
2546 if (key == TAB && (*modifiers & MOD_MASK_SHIFT))
2547 {
2548 *modifiers &= ~MOD_MASK_SHIFT;
2549 return K_S_TAB;
2550 }
2551 key0 = KEY2TERMCAP0(key);
2552 key1 = KEY2TERMCAP1(key);
2553 for (i = 0; modifier_keys_table[i] != NUL; i += MOD_KEYS_ENTRY_SIZE)
2554 if (key0 == modifier_keys_table[i + 3]
2555 && key1 == modifier_keys_table[i + 4]
2556 && (*modifiers & modifier_keys_table[i]))
2557 {
2558 *modifiers &= ~modifier_keys_table[i];
2559 return TERMCAP2KEY(modifier_keys_table[i + 1],
2560 modifier_keys_table[i + 2]);
2561 }
2562 }
2563 return key;
2564}
2565
2566/*
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002567 * Change <xHome> to <Home>, <xUp> to <Up>, etc.
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002568 */
2569 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002570handle_x_keys(int key)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002571{
2572 switch (key)
2573 {
2574 case K_XUP: return K_UP;
2575 case K_XDOWN: return K_DOWN;
2576 case K_XLEFT: return K_LEFT;
2577 case K_XRIGHT: return K_RIGHT;
2578 case K_XHOME: return K_HOME;
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002579 case K_ZHOME: return K_HOME;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002580 case K_XEND: return K_END;
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002581 case K_ZEND: return K_END;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002582 case K_XF1: return K_F1;
2583 case K_XF2: return K_F2;
2584 case K_XF3: return K_F3;
2585 case K_XF4: return K_F4;
2586 case K_S_XF1: return K_S_F1;
2587 case K_S_XF2: return K_S_F2;
2588 case K_S_XF3: return K_S_F3;
2589 case K_S_XF4: return K_S_F4;
2590 }
2591 return key;
2592}
2593
2594/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002595 * Return a string which contains the name of the given key when the given
2596 * modifiers are down.
2597 */
2598 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01002599get_special_key_name(int c, int modifiers)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002600{
2601 static char_u string[MAX_KEY_NAME_LEN + 1];
2602
2603 int i, idx;
2604 int table_idx;
2605 char_u *s;
2606
2607 string[0] = '<';
2608 idx = 1;
2609
2610 /* Key that stands for a normal character. */
2611 if (IS_SPECIAL(c) && KEY2TERMCAP0(c) == KS_KEY)
2612 c = KEY2TERMCAP1(c);
2613
2614 /*
2615 * Translate shifted special keys into unshifted keys and set modifier.
2616 * Same for CTRL and ALT modifiers.
2617 */
2618 if (IS_SPECIAL(c))
2619 {
2620 for (i = 0; modifier_keys_table[i] != 0; i += MOD_KEYS_ENTRY_SIZE)
2621 if ( KEY2TERMCAP0(c) == (int)modifier_keys_table[i + 1]
2622 && (int)KEY2TERMCAP1(c) == (int)modifier_keys_table[i + 2])
2623 {
2624 modifiers |= modifier_keys_table[i];
2625 c = TERMCAP2KEY(modifier_keys_table[i + 3],
2626 modifier_keys_table[i + 4]);
2627 break;
2628 }
2629 }
2630
2631 /* try to find the key in the special key table */
2632 table_idx = find_special_key_in_table(c);
2633
2634 /*
2635 * When not a known special key, and not a printable character, try to
2636 * extract modifiers.
2637 */
2638 if (c > 0
2639#ifdef FEAT_MBYTE
2640 && (*mb_char2len)(c) == 1
2641#endif
2642 )
2643 {
2644 if (table_idx < 0
2645 && (!vim_isprintc(c) || (c & 0x7f) == ' ')
2646 && (c & 0x80))
2647 {
2648 c &= 0x7f;
2649 modifiers |= MOD_MASK_ALT;
2650 /* try again, to find the un-alted key in the special key table */
2651 table_idx = find_special_key_in_table(c);
2652 }
2653 if (table_idx < 0 && !vim_isprintc(c) && c < ' ')
2654 {
2655#ifdef EBCDIC
2656 c = CtrlChar(c);
2657#else
2658 c += '@';
2659#endif
2660 modifiers |= MOD_MASK_CTRL;
2661 }
2662 }
2663
2664 /* translate the modifier into a string */
2665 for (i = 0; mod_mask_table[i].name != 'A'; i++)
2666 if ((modifiers & mod_mask_table[i].mod_mask)
2667 == mod_mask_table[i].mod_flag)
2668 {
2669 string[idx++] = mod_mask_table[i].name;
2670 string[idx++] = (char_u)'-';
2671 }
2672
2673 if (table_idx < 0) /* unknown special key, may output t_xx */
2674 {
2675 if (IS_SPECIAL(c))
2676 {
2677 string[idx++] = 't';
2678 string[idx++] = '_';
2679 string[idx++] = KEY2TERMCAP0(c);
2680 string[idx++] = KEY2TERMCAP1(c);
2681 }
2682 /* Not a special key, only modifiers, output directly */
2683 else
2684 {
2685#ifdef FEAT_MBYTE
2686 if (has_mbyte && (*mb_char2len)(c) > 1)
2687 idx += (*mb_char2bytes)(c, string + idx);
2688 else
2689#endif
2690 if (vim_isprintc(c))
2691 string[idx++] = c;
2692 else
2693 {
2694 s = transchar(c);
2695 while (*s)
2696 string[idx++] = *s++;
2697 }
2698 }
2699 }
2700 else /* use name of special key */
2701 {
Bram Moolenaar423977d2017-01-22 15:05:12 +01002702 size_t len = STRLEN(key_names_table[table_idx].name);
2703
2704 if (len + idx + 2 <= MAX_KEY_NAME_LEN)
2705 {
2706 STRCPY(string + idx, key_names_table[table_idx].name);
2707 idx += (int)len;
2708 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002709 }
2710 string[idx++] = '>';
2711 string[idx] = NUL;
2712 return string;
2713}
2714
2715/*
2716 * Try translating a <> name at (*srcp)[] to dst[].
2717 * Return the number of characters added to dst[], zero for no match.
2718 * If there is a match, srcp is advanced to after the <> name.
2719 * dst[] must be big enough to hold the result (up to six characters)!
2720 */
2721 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002722trans_special(
2723 char_u **srcp,
2724 char_u *dst,
Bram Moolenaar35a4cfa2016-08-14 16:07:48 +02002725 int keycode, /* prefer key code, e.g. K_DEL instead of DEL */
2726 int in_string) /* TRUE when inside a double quoted string */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002727{
2728 int modifiers = 0;
2729 int key;
2730 int dlen = 0;
2731
Bram Moolenaar35a4cfa2016-08-14 16:07:48 +02002732 key = find_special_key(srcp, &modifiers, keycode, FALSE, in_string);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002733 if (key == 0)
2734 return 0;
2735
2736 /* Put the appropriate modifier in a string */
2737 if (modifiers != 0)
2738 {
2739 dst[dlen++] = K_SPECIAL;
2740 dst[dlen++] = KS_MODIFIER;
2741 dst[dlen++] = modifiers;
2742 }
2743
2744 if (IS_SPECIAL(key))
2745 {
2746 dst[dlen++] = K_SPECIAL;
2747 dst[dlen++] = KEY2TERMCAP0(key);
2748 dst[dlen++] = KEY2TERMCAP1(key);
2749 }
2750#ifdef FEAT_MBYTE
2751 else if (has_mbyte && !keycode)
2752 dlen += (*mb_char2bytes)(key, dst + dlen);
2753#endif
2754 else if (keycode)
2755 dlen = (int)(add_char2buf(key, dst + dlen) - dst);
2756 else
2757 dst[dlen++] = key;
2758
2759 return dlen;
2760}
2761
2762/*
2763 * Try translating a <> name at (*srcp)[], return the key and modifiers.
2764 * srcp is advanced to after the <> name.
2765 * returns 0 if there is no match.
2766 */
2767 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002768find_special_key(
2769 char_u **srcp,
2770 int *modp,
2771 int keycode, /* prefer key code, e.g. K_DEL instead of DEL */
Bram Moolenaar35a4cfa2016-08-14 16:07:48 +02002772 int keep_x_key, /* don't translate xHome to Home key */
2773 int in_string) /* TRUE in string, double quote is escaped */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002774{
2775 char_u *last_dash;
2776 char_u *end_of_name;
2777 char_u *src;
2778 char_u *bp;
2779 int modifiers;
2780 int bit;
2781 int key;
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02002782 uvarnumber_T n;
Bram Moolenaarb8bf5412011-08-17 20:33:22 +02002783 int l;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002784
2785 src = *srcp;
2786 if (src[0] != '<')
2787 return 0;
2788
2789 /* Find end of modifier list */
2790 last_dash = src;
2791 for (bp = src + 1; *bp == '-' || vim_isIDc(*bp); bp++)
2792 {
2793 if (*bp == '-')
2794 {
2795 last_dash = bp;
Bram Moolenaarb8bf5412011-08-17 20:33:22 +02002796 if (bp[1] != NUL)
2797 {
2798#ifdef FEAT_MBYTE
2799 if (has_mbyte)
2800 l = mb_ptr2len(bp + 1);
2801 else
2802#endif
2803 l = 1;
Bram Moolenaar35a4cfa2016-08-14 16:07:48 +02002804 /* Anything accepted, like <C-?>.
2805 * <C-"> or <M-"> are not special in strings as " is
2806 * the string delimiter. With a backslash it works: <M-\"> */
2807 if (!(in_string && bp[1] == '"') && bp[2] == '>')
Bram Moolenaar1d90a5a2016-07-01 11:59:47 +02002808 bp += l;
Bram Moolenaar35a4cfa2016-08-14 16:07:48 +02002809 else if (in_string && bp[1] == '\\' && bp[2] == '"'
2810 && bp[3] == '>')
2811 bp += 2;
Bram Moolenaarb8bf5412011-08-17 20:33:22 +02002812 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002813 }
2814 if (bp[0] == 't' && bp[1] == '_' && bp[2] && bp[3])
2815 bp += 3; /* skip t_xx, xx may be '-' or '>' */
Bram Moolenaar792826c2011-08-19 22:29:02 +02002816 else if (STRNICMP(bp, "char-", 5) == 0)
2817 {
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01002818 vim_str2nr(bp + 5, NULL, &l, STR2NR_ALL, NULL, NULL, 0);
Bram Moolenaar792826c2011-08-19 22:29:02 +02002819 bp += l + 5;
2820 break;
2821 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002822 }
2823
2824 if (*bp == '>') /* found matching '>' */
2825 {
2826 end_of_name = bp + 1;
2827
Bram Moolenaar071d4272004-06-13 20:20:40 +00002828 /* Which modifiers are given? */
2829 modifiers = 0x0;
2830 for (bp = src + 1; bp < last_dash; bp++)
2831 {
2832 if (*bp != '-')
2833 {
2834 bit = name_to_mod_mask(*bp);
2835 if (bit == 0x0)
2836 break; /* Illegal modifier name */
2837 modifiers |= bit;
2838 }
2839 }
2840
2841 /*
2842 * Legal modifier name.
2843 */
2844 if (bp >= last_dash)
2845 {
Bram Moolenaarb8bf5412011-08-17 20:33:22 +02002846 if (STRNICMP(last_dash + 1, "char-", 5) == 0
2847 && VIM_ISDIGIT(last_dash[6]))
2848 {
2849 /* <Char-123> or <Char-033> or <Char-0x33> */
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01002850 vim_str2nr(last_dash + 6, NULL, NULL, STR2NR_ALL, NULL, &n, 0);
Bram Moolenaar792826c2011-08-19 22:29:02 +02002851 key = (int)n;
Bram Moolenaarb8bf5412011-08-17 20:33:22 +02002852 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002853 else
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002854 {
Bram Moolenaar35a4cfa2016-08-14 16:07:48 +02002855 int off = 1;
2856
2857 /* Modifier with single letter, or special key name. */
2858 if (in_string && last_dash[1] == '\\' && last_dash[2] == '"')
2859 off = 2;
Bram Moolenaar792826c2011-08-19 22:29:02 +02002860#ifdef FEAT_MBYTE
2861 if (has_mbyte)
Bram Moolenaar35a4cfa2016-08-14 16:07:48 +02002862 l = mb_ptr2len(last_dash + off);
Bram Moolenaar792826c2011-08-19 22:29:02 +02002863 else
2864#endif
2865 l = 1;
Bram Moolenaar35a4cfa2016-08-14 16:07:48 +02002866 if (modifiers != 0 && last_dash[l + off] == '>')
2867 key = PTR2CHAR(last_dash + off);
Bram Moolenaar792826c2011-08-19 22:29:02 +02002868 else
2869 {
Bram Moolenaar35a4cfa2016-08-14 16:07:48 +02002870 key = get_special_key_code(last_dash + off);
Bram Moolenaar792826c2011-08-19 22:29:02 +02002871 if (!keep_x_key)
2872 key = handle_x_keys(key);
2873 }
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002874 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002875
2876 /*
2877 * get_special_key_code() may return NUL for invalid
2878 * special key name.
2879 */
2880 if (key != NUL)
2881 {
2882 /*
2883 * Only use a modifier when there is no special key code that
2884 * includes the modifier.
2885 */
2886 key = simplify_key(key, &modifiers);
2887
2888 if (!keycode)
2889 {
2890 /* don't want keycode, use single byte code */
2891 if (key == K_BS)
2892 key = BS;
2893 else if (key == K_DEL || key == K_KDEL)
2894 key = DEL;
2895 }
2896
2897 /*
2898 * Normal Key with modifier: Try to make a single byte code.
2899 */
2900 if (!IS_SPECIAL(key))
2901 key = extract_modifiers(key, &modifiers);
2902
2903 *modp = modifiers;
2904 *srcp = end_of_name;
2905 return key;
2906 }
2907 }
2908 }
2909 return 0;
2910}
2911
2912/*
2913 * Try to include modifiers in the key.
2914 * Changes "Shift-a" to 'A', "Alt-A" to 0xc0, etc.
2915 */
2916 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002917extract_modifiers(int key, int *modp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002918{
2919 int modifiers = *modp;
2920
2921#ifdef MACOS
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02002922 /* Command-key really special, no fancynest */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002923 if (!(modifiers & MOD_MASK_CMD))
2924#endif
2925 if ((modifiers & MOD_MASK_SHIFT) && ASCII_ISALPHA(key))
2926 {
2927 key = TOUPPER_ASC(key);
2928 modifiers &= ~MOD_MASK_SHIFT;
2929 }
2930 if ((modifiers & MOD_MASK_CTRL)
2931#ifdef EBCDIC
2932 /* * TODO: EBCDIC Better use:
2933 * && (Ctrl_chr(key) || key == '?')
2934 * ??? */
2935 && strchr("?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_", key)
2936 != NULL
2937#else
2938 && ((key >= '?' && key <= '_') || ASCII_ISALPHA(key))
2939#endif
2940 )
2941 {
2942 key = Ctrl_chr(key);
2943 modifiers &= ~MOD_MASK_CTRL;
2944 /* <C-@> is <Nul> */
2945 if (key == 0)
2946 key = K_ZERO;
2947 }
2948#ifdef MACOS
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02002949 /* Command-key really special, no fancynest */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002950 if (!(modifiers & MOD_MASK_CMD))
2951#endif
2952 if ((modifiers & MOD_MASK_ALT) && key < 0x80
2953#ifdef FEAT_MBYTE
2954 && !enc_dbcs /* avoid creating a lead byte */
2955#endif
2956 )
2957 {
2958 key |= 0x80;
2959 modifiers &= ~MOD_MASK_ALT; /* remove the META modifier */
2960 }
2961
2962 *modp = modifiers;
2963 return key;
2964}
2965
2966/*
2967 * Try to find key "c" in the special key table.
2968 * Return the index when found, -1 when not found.
2969 */
2970 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002971find_special_key_in_table(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002972{
2973 int i;
2974
2975 for (i = 0; key_names_table[i].name != NULL; i++)
2976 if (c == key_names_table[i].key)
2977 break;
2978 if (key_names_table[i].name == NULL)
2979 i = -1;
2980 return i;
2981}
2982
2983/*
2984 * Find the special key with the given name (the given string does not have to
2985 * end with NUL, the name is assumed to end before the first non-idchar).
2986 * If the name starts with "t_" the next two characters are interpreted as a
2987 * termcap name.
2988 * Return the key code, or 0 if not found.
2989 */
2990 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002991get_special_key_code(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002992{
2993 char_u *table_name;
2994 char_u string[3];
2995 int i, j;
2996
2997 /*
2998 * If it's <t_xx> we get the code for xx from the termcap
2999 */
3000 if (name[0] == 't' && name[1] == '_' && name[2] != NUL && name[3] != NUL)
3001 {
3002 string[0] = name[2];
3003 string[1] = name[3];
3004 string[2] = NUL;
3005 if (add_termcap_entry(string, FALSE) == OK)
3006 return TERMCAP2KEY(name[2], name[3]);
3007 }
3008 else
3009 for (i = 0; key_names_table[i].name != NULL; i++)
3010 {
3011 table_name = key_names_table[i].name;
3012 for (j = 0; vim_isIDc(name[j]) && table_name[j] != NUL; j++)
3013 if (TOLOWER_ASC(table_name[j]) != TOLOWER_ASC(name[j]))
3014 break;
3015 if (!vim_isIDc(name[j]) && table_name[j] == NUL)
3016 return key_names_table[i].key;
3017 }
3018 return 0;
3019}
3020
Bram Moolenaar05bb9532008-07-04 09:44:11 +00003021#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003022 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01003023get_key_name(int i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003024{
Bram Moolenaare1fbddc2009-05-16 19:07:03 +00003025 if (i >= (int)KEY_NAMES_TABLE_LEN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003026 return NULL;
3027 return key_names_table[i].name;
3028}
3029#endif
3030
Bram Moolenaar05bb9532008-07-04 09:44:11 +00003031#if defined(FEAT_MOUSE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003032/*
3033 * Look up the given mouse code to return the relevant information in the other
3034 * arguments. Return which button is down or was released.
3035 */
3036 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003037get_mouse_button(int code, int *is_click, int *is_drag)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003038{
3039 int i;
3040
3041 for (i = 0; mouse_table[i].pseudo_code; i++)
3042 if (code == mouse_table[i].pseudo_code)
3043 {
3044 *is_click = mouse_table[i].is_click;
3045 *is_drag = mouse_table[i].is_drag;
3046 return mouse_table[i].button;
3047 }
3048 return 0; /* Shouldn't get here */
3049}
3050
3051/*
3052 * Return the appropriate pseudo mouse event token (KE_LEFTMOUSE etc) based on
3053 * the given information about which mouse button is down, and whether the
3054 * mouse was clicked, dragged or released.
3055 */
3056 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003057get_pseudo_mouse_code(
3058 int button, /* eg MOUSE_LEFT */
3059 int is_click,
3060 int is_drag)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003061{
3062 int i;
3063
3064 for (i = 0; mouse_table[i].pseudo_code; i++)
3065 if (button == mouse_table[i].button
3066 && is_click == mouse_table[i].is_click
3067 && is_drag == mouse_table[i].is_drag)
3068 {
3069#ifdef FEAT_GUI
Bram Moolenaarc91506a2005-04-24 22:04:21 +00003070 /* Trick: a non mappable left click and release has mouse_col -1
3071 * or added MOUSE_COLOFF. Used for 'mousefocus' in
3072 * gui_mouse_moved() */
3073 if (mouse_col < 0 || mouse_col > MOUSE_COLOFF)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003074 {
Bram Moolenaarc91506a2005-04-24 22:04:21 +00003075 if (mouse_col < 0)
3076 mouse_col = 0;
3077 else
3078 mouse_col -= MOUSE_COLOFF;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003079 if (mouse_table[i].pseudo_code == (int)KE_LEFTMOUSE)
3080 return (int)KE_LEFTMOUSE_NM;
3081 if (mouse_table[i].pseudo_code == (int)KE_LEFTRELEASE)
3082 return (int)KE_LEFTRELEASE_NM;
3083 }
3084#endif
3085 return mouse_table[i].pseudo_code;
3086 }
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00003087 return (int)KE_IGNORE; /* not recognized, ignore it */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003088}
3089#endif /* FEAT_MOUSE */
3090
3091/*
3092 * Return the current end-of-line type: EOL_DOS, EOL_UNIX or EOL_MAC.
3093 */
3094 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003095get_fileformat(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003096{
3097 int c = *buf->b_p_ff;
3098
3099 if (buf->b_p_bin || c == 'u')
3100 return EOL_UNIX;
3101 if (c == 'm')
3102 return EOL_MAC;
3103 return EOL_DOS;
3104}
3105
3106/*
3107 * Like get_fileformat(), but override 'fileformat' with "p" for "++opt=val"
3108 * argument.
3109 */
3110 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003111get_fileformat_force(
3112 buf_T *buf,
3113 exarg_T *eap) /* can be NULL! */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003114{
3115 int c;
3116
3117 if (eap != NULL && eap->force_ff != 0)
3118 c = eap->cmd[eap->force_ff];
3119 else
3120 {
3121 if ((eap != NULL && eap->force_bin != 0)
3122 ? (eap->force_bin == FORCE_BIN) : buf->b_p_bin)
3123 return EOL_UNIX;
3124 c = *buf->b_p_ff;
3125 }
3126 if (c == 'u')
3127 return EOL_UNIX;
3128 if (c == 'm')
3129 return EOL_MAC;
3130 return EOL_DOS;
3131}
3132
3133/*
3134 * Set the current end-of-line type to EOL_DOS, EOL_UNIX or EOL_MAC.
3135 * Sets both 'textmode' and 'fileformat'.
3136 * Note: Does _not_ set global value of 'textmode'!
3137 */
3138 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003139set_fileformat(
3140 int t,
3141 int opt_flags) /* OPT_LOCAL and/or OPT_GLOBAL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003142{
3143 char *p = NULL;
3144
3145 switch (t)
3146 {
3147 case EOL_DOS:
3148 p = FF_DOS;
3149 curbuf->b_p_tx = TRUE;
3150 break;
3151 case EOL_UNIX:
3152 p = FF_UNIX;
3153 curbuf->b_p_tx = FALSE;
3154 break;
3155 case EOL_MAC:
3156 p = FF_MAC;
3157 curbuf->b_p_tx = FALSE;
3158 break;
3159 }
3160 if (p != NULL)
3161 set_string_option_direct((char_u *)"ff", -1, (char_u *)p,
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00003162 OPT_FREE | opt_flags, 0);
3163
Bram Moolenaar071d4272004-06-13 20:20:40 +00003164#ifdef FEAT_WINDOWS
Bram Moolenaarf740b292006-02-16 22:11:02 +00003165 /* This may cause the buffer to become (un)modified. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003166 check_status(curbuf);
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00003167 redraw_tabline = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003168#endif
3169#ifdef FEAT_TITLE
3170 need_maketitle = TRUE; /* set window title later */
3171#endif
3172}
3173
3174/*
3175 * Return the default fileformat from 'fileformats'.
3176 */
3177 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003178default_fileformat(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003179{
3180 switch (*p_ffs)
3181 {
3182 case 'm': return EOL_MAC;
3183 case 'd': return EOL_DOS;
3184 }
3185 return EOL_UNIX;
3186}
3187
3188/*
3189 * Call shell. Calls mch_call_shell, with 'shellxquote' added.
3190 */
3191 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003192call_shell(char_u *cmd, int opt)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003193{
3194 char_u *ncmd;
3195 int retval;
Bram Moolenaar05159a02005-02-26 23:04:13 +00003196#ifdef FEAT_PROFILE
3197 proftime_T wait_time;
3198#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003199
3200 if (p_verbose > 3)
3201 {
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00003202 verbose_enter();
Bram Moolenaar051b7822005-05-19 21:00:46 +00003203 smsg((char_u *)_("Calling shell to execute: \"%s\""),
Bram Moolenaar071d4272004-06-13 20:20:40 +00003204 cmd == NULL ? p_sh : cmd);
3205 out_char('\n');
3206 cursor_on();
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00003207 verbose_leave();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003208 }
3209
Bram Moolenaar05159a02005-02-26 23:04:13 +00003210#ifdef FEAT_PROFILE
Bram Moolenaar01265852006-03-20 21:50:15 +00003211 if (do_profiling == PROF_YES)
Bram Moolenaar05159a02005-02-26 23:04:13 +00003212 prof_child_enter(&wait_time);
3213#endif
3214
Bram Moolenaar071d4272004-06-13 20:20:40 +00003215 if (*p_sh == NUL)
3216 {
3217 EMSG(_(e_shellempty));
3218 retval = -1;
3219 }
3220 else
3221 {
3222#ifdef FEAT_GUI_MSWIN
3223 /* Don't hide the pointer while executing a shell command. */
3224 gui_mch_mousehide(FALSE);
3225#endif
3226#ifdef FEAT_GUI
3227 ++hold_gui_events;
3228#endif
3229 /* The external command may update a tags file, clear cached tags. */
3230 tag_freematch();
3231
3232 if (cmd == NULL || *p_sxq == NUL)
3233 retval = mch_call_shell(cmd, opt);
3234 else
3235 {
Bram Moolenaarf66b3fc2012-02-20 22:18:30 +01003236 char_u *ecmd = cmd;
3237
3238 if (*p_sxe != NUL && STRCMP(p_sxq, "(") == 0)
3239 {
3240 ecmd = vim_strsave_escaped_ext(cmd, p_sxe, '^', FALSE);
3241 if (ecmd == NULL)
3242 ecmd = cmd;
3243 }
3244 ncmd = alloc((unsigned)(STRLEN(ecmd) + STRLEN(p_sxq) * 2 + 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003245 if (ncmd != NULL)
3246 {
3247 STRCPY(ncmd, p_sxq);
Bram Moolenaarf66b3fc2012-02-20 22:18:30 +01003248 STRCAT(ncmd, ecmd);
Bram Moolenaar034b1152012-02-19 18:19:30 +01003249 /* When 'shellxquote' is ( append ).
3250 * When 'shellxquote' is "( append )". */
3251 STRCAT(ncmd, STRCMP(p_sxq, "(") == 0 ? (char_u *)")"
3252 : STRCMP(p_sxq, "\"(") == 0 ? (char_u *)")\""
3253 : p_sxq);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003254 retval = mch_call_shell(ncmd, opt);
3255 vim_free(ncmd);
3256 }
3257 else
3258 retval = -1;
Bram Moolenaarf66b3fc2012-02-20 22:18:30 +01003259 if (ecmd != cmd)
3260 vim_free(ecmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003261 }
3262#ifdef FEAT_GUI
3263 --hold_gui_events;
3264#endif
3265 /*
3266 * Check the window size, in case it changed while executing the
3267 * external command.
3268 */
3269 shell_resized_check();
3270 }
3271
3272#ifdef FEAT_EVAL
3273 set_vim_var_nr(VV_SHELL_ERROR, (long)retval);
Bram Moolenaar05159a02005-02-26 23:04:13 +00003274# ifdef FEAT_PROFILE
Bram Moolenaar01265852006-03-20 21:50:15 +00003275 if (do_profiling == PROF_YES)
Bram Moolenaar05159a02005-02-26 23:04:13 +00003276 prof_child_exit(&wait_time);
3277# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003278#endif
3279
3280 return retval;
3281}
3282
3283/*
Bram Moolenaar01265852006-03-20 21:50:15 +00003284 * VISUAL, SELECTMODE and OP_PENDING State are never set, they are equal to
3285 * NORMAL State with a condition. This function returns the real State.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003286 */
3287 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003288get_real_state(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003289{
3290 if (State & NORMAL)
3291 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003292 if (VIsual_active)
Bram Moolenaar01265852006-03-20 21:50:15 +00003293 {
3294 if (VIsual_select)
3295 return SELECTMODE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003296 return VISUAL;
Bram Moolenaar01265852006-03-20 21:50:15 +00003297 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01003298 else if (finish_op)
3299 return OP_PENDING;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003300 }
3301 return State;
3302}
3303
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003304#if defined(FEAT_MBYTE) || defined(PROTO)
3305/*
3306 * Return TRUE if "p" points to just after a path separator.
Bram Moolenaarb5ce04d2011-07-07 17:15:33 +02003307 * Takes care of multi-byte characters.
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003308 * "b" must point to the start of the file name
3309 */
3310 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003311after_pathsep(char_u *b, char_u *p)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003312{
Bram Moolenaarb5ce04d2011-07-07 17:15:33 +02003313 return p > b && vim_ispathsep(p[-1])
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003314 && (!has_mbyte || (*mb_head_off)(b, p - 1) == 0);
3315}
3316#endif
3317
3318/*
3319 * Return TRUE if file names "f1" and "f2" are in the same directory.
3320 * "f1" may be a short name, "f2" must be a full path.
3321 */
3322 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003323same_directory(char_u *f1, char_u *f2)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003324{
3325 char_u ffname[MAXPATHL];
3326 char_u *t1;
3327 char_u *t2;
3328
3329 /* safety check */
3330 if (f1 == NULL || f2 == NULL)
3331 return FALSE;
3332
3333 (void)vim_FullName(f1, ffname, MAXPATHL, FALSE);
3334 t1 = gettail_sep(ffname);
3335 t2 = gettail_sep(f2);
3336 return (t1 - ffname == t2 - f2
3337 && pathcmp((char *)ffname, (char *)f2, (int)(t1 - ffname)) == 0);
3338}
3339
Bram Moolenaar071d4272004-06-13 20:20:40 +00003340#if defined(FEAT_SESSION) || defined(MSWIN) || defined(FEAT_GUI_MAC) \
Bram Moolenaar9372a112005-12-06 19:59:18 +00003341 || ((defined(FEAT_GUI_GTK)) \
Bram Moolenaar843ee412004-06-30 16:16:41 +00003342 && ( defined(FEAT_WINDOWS) || defined(FEAT_DND)) ) \
Bram Moolenaar071d4272004-06-13 20:20:40 +00003343 || defined(FEAT_SUN_WORKSHOP) || defined(FEAT_NETBEANS_INTG) \
3344 || defined(PROTO)
3345/*
3346 * Change to a file's directory.
3347 * Caller must call shorten_fnames()!
3348 * Return OK or FAIL.
3349 */
3350 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003351vim_chdirfile(char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003352{
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003353 char_u dir[MAXPATHL];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003354
Bram Moolenaarbbebc852005-07-18 21:47:53 +00003355 vim_strncpy(dir, fname, MAXPATHL - 1);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003356 *gettail_sep(dir) = NUL;
3357 return mch_chdir((char *)dir) == 0 ? OK : FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003358}
3359#endif
3360
3361#if defined(STAT_IGNORES_SLASH) || defined(PROTO)
3362/*
3363 * Check if "name" ends in a slash and is not a directory.
3364 * Used for systems where stat() ignores a trailing slash on a file name.
3365 * The Vim code assumes a trailing slash is only ignored for a directory.
3366 */
3367 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003368illegal_slash(char *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003369{
3370 if (name[0] == NUL)
3371 return FALSE; /* no file name is not illegal */
3372 if (name[strlen(name) - 1] != '/')
3373 return FALSE; /* no trailing slash */
3374 if (mch_isdir((char_u *)name))
3375 return FALSE; /* trailing slash for a directory */
3376 return TRUE;
3377}
3378#endif
3379
3380#if defined(CURSOR_SHAPE) || defined(PROTO)
3381
3382/*
3383 * Handling of cursor and mouse pointer shapes in various modes.
3384 */
3385
3386cursorentry_T shape_table[SHAPE_IDX_COUNT] =
3387{
3388 /* The values will be filled in from the 'guicursor' and 'mouseshape'
3389 * defaults when Vim starts.
3390 * Adjust the SHAPE_IDX_ defines when making changes! */
3391 {0, 0, 0, 700L, 400L, 250L, 0, 0, "n", SHAPE_CURSOR+SHAPE_MOUSE},
3392 {0, 0, 0, 700L, 400L, 250L, 0, 0, "v", SHAPE_CURSOR+SHAPE_MOUSE},
3393 {0, 0, 0, 700L, 400L, 250L, 0, 0, "i", SHAPE_CURSOR+SHAPE_MOUSE},
3394 {0, 0, 0, 700L, 400L, 250L, 0, 0, "r", SHAPE_CURSOR+SHAPE_MOUSE},
3395 {0, 0, 0, 700L, 400L, 250L, 0, 0, "c", SHAPE_CURSOR+SHAPE_MOUSE},
3396 {0, 0, 0, 700L, 400L, 250L, 0, 0, "ci", SHAPE_CURSOR+SHAPE_MOUSE},
3397 {0, 0, 0, 700L, 400L, 250L, 0, 0, "cr", SHAPE_CURSOR+SHAPE_MOUSE},
3398 {0, 0, 0, 700L, 400L, 250L, 0, 0, "o", SHAPE_CURSOR+SHAPE_MOUSE},
3399 {0, 0, 0, 700L, 400L, 250L, 0, 0, "ve", SHAPE_CURSOR+SHAPE_MOUSE},
3400 {0, 0, 0, 0L, 0L, 0L, 0, 0, "e", SHAPE_MOUSE},
3401 {0, 0, 0, 0L, 0L, 0L, 0, 0, "s", SHAPE_MOUSE},
3402 {0, 0, 0, 0L, 0L, 0L, 0, 0, "sd", SHAPE_MOUSE},
3403 {0, 0, 0, 0L, 0L, 0L, 0, 0, "vs", SHAPE_MOUSE},
3404 {0, 0, 0, 0L, 0L, 0L, 0, 0, "vd", SHAPE_MOUSE},
3405 {0, 0, 0, 0L, 0L, 0L, 0, 0, "m", SHAPE_MOUSE},
3406 {0, 0, 0, 0L, 0L, 0L, 0, 0, "ml", SHAPE_MOUSE},
3407 {0, 0, 0, 100L, 100L, 100L, 0, 0, "sm", SHAPE_CURSOR},
3408};
3409
3410#ifdef FEAT_MOUSESHAPE
3411/*
3412 * Table with names for mouse shapes. Keep in sync with all the tables for
3413 * mch_set_mouse_shape()!.
3414 */
3415static char * mshape_names[] =
3416{
3417 "arrow", /* default, must be the first one */
3418 "blank", /* hidden */
3419 "beam",
3420 "updown",
3421 "udsizing",
3422 "leftright",
3423 "lrsizing",
3424 "busy",
3425 "no",
3426 "crosshair",
3427 "hand1",
3428 "hand2",
3429 "pencil",
3430 "question",
3431 "rightup-arrow",
3432 "up-arrow",
3433 NULL
3434};
3435#endif
3436
3437/*
3438 * Parse the 'guicursor' option ("what" is SHAPE_CURSOR) or 'mouseshape'
3439 * ("what" is SHAPE_MOUSE).
3440 * Returns error message for an illegal option, NULL otherwise.
3441 */
3442 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01003443parse_shape_opt(int what)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003444{
3445 char_u *modep;
3446 char_u *colonp;
3447 char_u *commap;
3448 char_u *slashp;
3449 char_u *p, *endp;
3450 int idx = 0; /* init for GCC */
3451 int all_idx;
3452 int len;
3453 int i;
3454 long n;
3455 int found_ve = FALSE; /* found "ve" flag */
3456 int round;
3457
3458 /*
3459 * First round: check for errors; second round: do it for real.
3460 */
3461 for (round = 1; round <= 2; ++round)
3462 {
3463 /*
3464 * Repeat for all comma separated parts.
3465 */
3466#ifdef FEAT_MOUSESHAPE
3467 if (what == SHAPE_MOUSE)
3468 modep = p_mouseshape;
3469 else
3470#endif
3471 modep = p_guicursor;
3472 while (*modep != NUL)
3473 {
3474 colonp = vim_strchr(modep, ':');
Bram Moolenaar24922ec2017-02-23 17:59:22 +01003475 commap = vim_strchr(modep, ',');
3476
3477 if (colonp == NULL || (commap != NULL && commap < colonp))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003478 return (char_u *)N_("E545: Missing colon");
3479 if (colonp == modep)
3480 return (char_u *)N_("E546: Illegal mode");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003481
3482 /*
3483 * Repeat for all mode's before the colon.
3484 * For the 'a' mode, we loop to handle all the modes.
3485 */
3486 all_idx = -1;
3487 while (modep < colonp || all_idx >= 0)
3488 {
3489 if (all_idx < 0)
3490 {
3491 /* Find the mode. */
3492 if (modep[1] == '-' || modep[1] == ':')
3493 len = 1;
3494 else
3495 len = 2;
3496 if (len == 1 && TOLOWER_ASC(modep[0]) == 'a')
3497 all_idx = SHAPE_IDX_COUNT - 1;
3498 else
3499 {
3500 for (idx = 0; idx < SHAPE_IDX_COUNT; ++idx)
3501 if (STRNICMP(modep, shape_table[idx].name, len)
3502 == 0)
3503 break;
3504 if (idx == SHAPE_IDX_COUNT
3505 || (shape_table[idx].used_for & what) == 0)
3506 return (char_u *)N_("E546: Illegal mode");
3507 if (len == 2 && modep[0] == 'v' && modep[1] == 'e')
3508 found_ve = TRUE;
3509 }
3510 modep += len + 1;
3511 }
3512
3513 if (all_idx >= 0)
3514 idx = all_idx--;
3515 else if (round == 2)
3516 {
3517#ifdef FEAT_MOUSESHAPE
3518 if (what == SHAPE_MOUSE)
3519 {
3520 /* Set the default, for the missing parts */
3521 shape_table[idx].mshape = 0;
3522 }
3523 else
3524#endif
3525 {
3526 /* Set the defaults, for the missing parts */
3527 shape_table[idx].shape = SHAPE_BLOCK;
3528 shape_table[idx].blinkwait = 700L;
3529 shape_table[idx].blinkon = 400L;
3530 shape_table[idx].blinkoff = 250L;
3531 }
3532 }
3533
3534 /* Parse the part after the colon */
3535 for (p = colonp + 1; *p && *p != ','; )
3536 {
3537#ifdef FEAT_MOUSESHAPE
3538 if (what == SHAPE_MOUSE)
3539 {
3540 for (i = 0; ; ++i)
3541 {
3542 if (mshape_names[i] == NULL)
3543 {
3544 if (!VIM_ISDIGIT(*p))
3545 return (char_u *)N_("E547: Illegal mouseshape");
3546 if (round == 2)
3547 shape_table[idx].mshape =
3548 getdigits(&p) + MSHAPE_NUMBERED;
3549 else
3550 (void)getdigits(&p);
3551 break;
3552 }
3553 len = (int)STRLEN(mshape_names[i]);
3554 if (STRNICMP(p, mshape_names[i], len) == 0)
3555 {
3556 if (round == 2)
3557 shape_table[idx].mshape = i;
3558 p += len;
3559 break;
3560 }
3561 }
3562 }
3563 else /* if (what == SHAPE_MOUSE) */
3564#endif
3565 {
3566 /*
3567 * First handle the ones with a number argument.
3568 */
3569 i = *p;
3570 len = 0;
3571 if (STRNICMP(p, "ver", 3) == 0)
3572 len = 3;
3573 else if (STRNICMP(p, "hor", 3) == 0)
3574 len = 3;
3575 else if (STRNICMP(p, "blinkwait", 9) == 0)
3576 len = 9;
3577 else if (STRNICMP(p, "blinkon", 7) == 0)
3578 len = 7;
3579 else if (STRNICMP(p, "blinkoff", 8) == 0)
3580 len = 8;
3581 if (len != 0)
3582 {
3583 p += len;
3584 if (!VIM_ISDIGIT(*p))
3585 return (char_u *)N_("E548: digit expected");
3586 n = getdigits(&p);
3587 if (len == 3) /* "ver" or "hor" */
3588 {
3589 if (n == 0)
3590 return (char_u *)N_("E549: Illegal percentage");
3591 if (round == 2)
3592 {
3593 if (TOLOWER_ASC(i) == 'v')
3594 shape_table[idx].shape = SHAPE_VER;
3595 else
3596 shape_table[idx].shape = SHAPE_HOR;
3597 shape_table[idx].percentage = n;
3598 }
3599 }
3600 else if (round == 2)
3601 {
3602 if (len == 9)
3603 shape_table[idx].blinkwait = n;
3604 else if (len == 7)
3605 shape_table[idx].blinkon = n;
3606 else
3607 shape_table[idx].blinkoff = n;
3608 }
3609 }
3610 else if (STRNICMP(p, "block", 5) == 0)
3611 {
3612 if (round == 2)
3613 shape_table[idx].shape = SHAPE_BLOCK;
3614 p += 5;
3615 }
3616 else /* must be a highlight group name then */
3617 {
3618 endp = vim_strchr(p, '-');
3619 if (commap == NULL) /* last part */
3620 {
3621 if (endp == NULL)
3622 endp = p + STRLEN(p); /* find end of part */
3623 }
3624 else if (endp > commap || endp == NULL)
3625 endp = commap;
3626 slashp = vim_strchr(p, '/');
3627 if (slashp != NULL && slashp < endp)
3628 {
3629 /* "group/langmap_group" */
3630 i = syn_check_group(p, (int)(slashp - p));
3631 p = slashp + 1;
3632 }
3633 if (round == 2)
3634 {
3635 shape_table[idx].id = syn_check_group(p,
3636 (int)(endp - p));
3637 shape_table[idx].id_lm = shape_table[idx].id;
3638 if (slashp != NULL && slashp < endp)
3639 shape_table[idx].id = i;
3640 }
3641 p = endp;
3642 }
3643 } /* if (what != SHAPE_MOUSE) */
3644
3645 if (*p == '-')
3646 ++p;
3647 }
3648 }
3649 modep = p;
3650 if (*modep == ',')
3651 ++modep;
3652 }
3653 }
3654
3655 /* If the 's' flag is not given, use the 'v' cursor for 's' */
3656 if (!found_ve)
3657 {
3658#ifdef FEAT_MOUSESHAPE
3659 if (what == SHAPE_MOUSE)
3660 {
3661 shape_table[SHAPE_IDX_VE].mshape = shape_table[SHAPE_IDX_V].mshape;
3662 }
3663 else
3664#endif
3665 {
3666 shape_table[SHAPE_IDX_VE].shape = shape_table[SHAPE_IDX_V].shape;
3667 shape_table[SHAPE_IDX_VE].percentage =
3668 shape_table[SHAPE_IDX_V].percentage;
3669 shape_table[SHAPE_IDX_VE].blinkwait =
3670 shape_table[SHAPE_IDX_V].blinkwait;
3671 shape_table[SHAPE_IDX_VE].blinkon =
3672 shape_table[SHAPE_IDX_V].blinkon;
3673 shape_table[SHAPE_IDX_VE].blinkoff =
3674 shape_table[SHAPE_IDX_V].blinkoff;
3675 shape_table[SHAPE_IDX_VE].id = shape_table[SHAPE_IDX_V].id;
3676 shape_table[SHAPE_IDX_VE].id_lm = shape_table[SHAPE_IDX_V].id_lm;
3677 }
3678 }
3679
3680 return NULL;
3681}
3682
Bram Moolenaarac6e65f2005-08-29 22:25:38 +00003683# if defined(MCH_CURSOR_SHAPE) || defined(FEAT_GUI) \
3684 || defined(FEAT_MOUSESHAPE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003685/*
3686 * Return the index into shape_table[] for the current mode.
3687 * When "mouse" is TRUE, consider indexes valid for the mouse pointer.
3688 */
3689 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003690get_shape_idx(int mouse)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003691{
3692#ifdef FEAT_MOUSESHAPE
3693 if (mouse && (State == HITRETURN || State == ASKMORE))
3694 {
3695# ifdef FEAT_GUI
Bram Moolenaar9588a0f2005-01-08 21:45:39 +00003696 int x, y;
3697 gui_mch_getmouse(&x, &y);
3698 if (Y_2_ROW(y) == Rows - 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003699 return SHAPE_IDX_MOREL;
3700# endif
3701 return SHAPE_IDX_MORE;
3702 }
3703 if (mouse && drag_status_line)
3704 return SHAPE_IDX_SDRAG;
Bram Moolenaar44a2f922016-03-19 22:11:51 +01003705# ifdef FEAT_WINDOWS
Bram Moolenaar071d4272004-06-13 20:20:40 +00003706 if (mouse && drag_sep_line)
3707 return SHAPE_IDX_VDRAG;
3708# endif
3709#endif
3710 if (!mouse && State == SHOWMATCH)
3711 return SHAPE_IDX_SM;
3712#ifdef FEAT_VREPLACE
3713 if (State & VREPLACE_FLAG)
3714 return SHAPE_IDX_R;
3715#endif
3716 if (State & REPLACE_FLAG)
3717 return SHAPE_IDX_R;
3718 if (State & INSERT)
3719 return SHAPE_IDX_I;
3720 if (State & CMDLINE)
3721 {
3722 if (cmdline_at_end())
3723 return SHAPE_IDX_C;
3724 if (cmdline_overstrike())
3725 return SHAPE_IDX_CR;
3726 return SHAPE_IDX_CI;
3727 }
3728 if (finish_op)
3729 return SHAPE_IDX_O;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003730 if (VIsual_active)
3731 {
3732 if (*p_sel == 'e')
3733 return SHAPE_IDX_VE;
3734 else
3735 return SHAPE_IDX_V;
3736 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003737 return SHAPE_IDX_N;
3738}
Bram Moolenaarac6e65f2005-08-29 22:25:38 +00003739#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003740
3741# if defined(FEAT_MOUSESHAPE) || defined(PROTO)
3742static int old_mouse_shape = 0;
3743
3744/*
3745 * Set the mouse shape:
3746 * If "shape" is -1, use shape depending on the current mode,
3747 * depending on the current state.
3748 * If "shape" is -2, only update the shape when it's CLINE or STATUS (used
3749 * when the mouse moves off the status or command line).
3750 */
3751 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003752update_mouseshape(int shape_idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003753{
3754 int new_mouse_shape;
3755
3756 /* Only works in GUI mode. */
Bram Moolenaar6bb68362005-03-22 23:03:44 +00003757 if (!gui.in_use || gui.starting)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003758 return;
3759
3760 /* Postpone the updating when more is to come. Speeds up executing of
3761 * mappings. */
3762 if (shape_idx == -1 && char_avail())
3763 {
3764 postponed_mouseshape = TRUE;
3765 return;
3766 }
3767
Bram Moolenaar14716812006-05-04 21:54:08 +00003768 /* When ignoring the mouse don't change shape on the statusline. */
3769 if (*p_mouse == NUL
3770 && (shape_idx == SHAPE_IDX_CLINE
3771 || shape_idx == SHAPE_IDX_STATUS
3772 || shape_idx == SHAPE_IDX_VSEP))
3773 shape_idx = -2;
3774
Bram Moolenaar071d4272004-06-13 20:20:40 +00003775 if (shape_idx == -2
3776 && old_mouse_shape != shape_table[SHAPE_IDX_CLINE].mshape
3777 && old_mouse_shape != shape_table[SHAPE_IDX_STATUS].mshape
3778 && old_mouse_shape != shape_table[SHAPE_IDX_VSEP].mshape)
3779 return;
3780 if (shape_idx < 0)
3781 new_mouse_shape = shape_table[get_shape_idx(TRUE)].mshape;
3782 else
3783 new_mouse_shape = shape_table[shape_idx].mshape;
3784 if (new_mouse_shape != old_mouse_shape)
3785 {
3786 mch_set_mouse_shape(new_mouse_shape);
3787 old_mouse_shape = new_mouse_shape;
3788 }
3789 postponed_mouseshape = FALSE;
3790}
3791# endif
3792
3793#endif /* CURSOR_SHAPE */
3794
3795
Bram Moolenaar071d4272004-06-13 20:20:40 +00003796/* TODO: make some #ifdef for this */
3797/*--------[ file searching ]-------------------------------------------------*/
3798/*
3799 * File searching functions for 'path', 'tags' and 'cdpath' options.
3800 * External visible functions:
3801 * vim_findfile_init() creates/initialises the search context
3802 * vim_findfile_free_visited() free list of visited files/dirs of search
3803 * context
3804 * vim_findfile() find a file in the search context
3805 * vim_findfile_cleanup() cleanup/free search context created by
3806 * vim_findfile_init()
3807 *
3808 * All static functions and variables start with 'ff_'
3809 *
3810 * In general it works like this:
3811 * First you create yourself a search context by calling vim_findfile_init().
3812 * It is possible to give a search context from a previous call to
3813 * vim_findfile_init(), so it can be reused. After this you call vim_findfile()
3814 * until you are satisfied with the result or it returns NULL. On every call it
3815 * returns the next file which matches the conditions given to
3816 * vim_findfile_init(). If it doesn't find a next file it returns NULL.
3817 *
3818 * It is possible to call vim_findfile_init() again to reinitialise your search
3819 * with some new parameters. Don't forget to pass your old search context to
3820 * it, so it can reuse it and especially reuse the list of already visited
3821 * directories. If you want to delete the list of already visited directories
3822 * simply call vim_findfile_free_visited().
3823 *
3824 * When you are done call vim_findfile_cleanup() to free the search context.
3825 *
3826 * The function vim_findfile_init() has a long comment, which describes the
3827 * needed parameters.
3828 *
3829 *
3830 *
3831 * ATTENTION:
3832 * ==========
Bram Moolenaar77f66d62007-02-20 02:16:18 +00003833 * Also we use an allocated search context here, this functions are NOT
Bram Moolenaar071d4272004-06-13 20:20:40 +00003834 * thread-safe!!!!!
3835 *
3836 * To minimize parameter passing (or because I'm to lazy), only the
3837 * external visible functions get a search context as a parameter. This is
3838 * then assigned to a static global, which is used throughout the local
3839 * functions.
3840 */
3841
3842/*
3843 * type for the directory search stack
3844 */
3845typedef struct ff_stack
3846{
3847 struct ff_stack *ffs_prev;
3848
3849 /* the fix part (no wildcards) and the part containing the wildcards
3850 * of the search path
3851 */
3852 char_u *ffs_fix_path;
3853#ifdef FEAT_PATH_EXTRA
3854 char_u *ffs_wc_path;
3855#endif
3856
3857 /* files/dirs found in the above directory, matched by the first wildcard
3858 * of wc_part
3859 */
3860 char_u **ffs_filearray;
3861 int ffs_filearray_size;
3862 char_u ffs_filearray_cur; /* needed for partly handled dirs */
3863
3864 /* to store status of partly handled directories
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00003865 * 0: we work on this directory for the first time
Bram Moolenaar071d4272004-06-13 20:20:40 +00003866 * 1: this directory was partly searched in an earlier step
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00003867 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003868 int ffs_stage;
3869
3870 /* How deep are we in the directory tree?
3871 * Counts backward from value of level parameter to vim_findfile_init
3872 */
3873 int ffs_level;
3874
3875 /* Did we already expand '**' to an empty string? */
3876 int ffs_star_star_empty;
3877} ff_stack_T;
3878
3879/*
3880 * type for already visited directories or files.
3881 */
3882typedef struct ff_visited
3883{
3884 struct ff_visited *ffv_next;
3885
3886#ifdef FEAT_PATH_EXTRA
3887 /* Visited directories are different if the wildcard string are
3888 * different. So we have to save it.
3889 */
3890 char_u *ffv_wc_path;
3891#endif
3892 /* for unix use inode etc for comparison (needed because of links), else
3893 * use filename.
3894 */
3895#ifdef UNIX
Bram Moolenaare1fbddc2009-05-16 19:07:03 +00003896 int ffv_dev_valid; /* ffv_dev and ffv_ino were set */
3897 dev_t ffv_dev; /* device number */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003898 ino_t ffv_ino; /* inode number */
3899#endif
3900 /* The memory for this struct is allocated according to the length of
3901 * ffv_fname.
3902 */
3903 char_u ffv_fname[1]; /* actually longer */
3904} ff_visited_T;
3905
3906/*
3907 * We might have to manage several visited lists during a search.
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00003908 * This is especially needed for the tags option. If tags is set to:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003909 * "./++/tags,./++/TAGS,++/tags" (replace + with *)
3910 * So we have to do 3 searches:
3911 * 1) search from the current files directory downward for the file "tags"
3912 * 2) search from the current files directory downward for the file "TAGS"
3913 * 3) search from Vims current directory downwards for the file "tags"
3914 * As you can see, the first and the third search are for the same file, so for
3915 * the third search we can use the visited list of the first search. For the
3916 * second search we must start from a empty visited list.
3917 * The struct ff_visited_list_hdr is used to manage a linked list of already
3918 * visited lists.
3919 */
3920typedef struct ff_visited_list_hdr
3921{
3922 struct ff_visited_list_hdr *ffvl_next;
3923
3924 /* the filename the attached visited list is for */
3925 char_u *ffvl_filename;
3926
3927 ff_visited_T *ffvl_visited_list;
3928
3929} ff_visited_list_hdr_T;
3930
3931
3932/*
3933 * '**' can be expanded to several directory levels.
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00003934 * Set the default maximum depth.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003935 */
3936#define FF_MAX_STAR_STAR_EXPAND ((char_u)30)
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00003937
Bram Moolenaar071d4272004-06-13 20:20:40 +00003938/*
3939 * The search context:
3940 * ffsc_stack_ptr: the stack for the dirs to search
3941 * ffsc_visited_list: the currently active visited list
3942 * ffsc_dir_visited_list: the currently active visited list for search dirs
3943 * ffsc_visited_lists_list: the list of all visited lists
3944 * ffsc_dir_visited_lists_list: the list of all visited lists for search dirs
3945 * ffsc_file_to_search: the file to search for
3946 * ffsc_start_dir: the starting directory, if search path was relative
3947 * ffsc_fix_path: the fix part of the given path (without wildcards)
3948 * Needed for upward search.
3949 * ffsc_wc_path: the part of the given path containing wildcards
3950 * ffsc_level: how many levels of dirs to search downwards
3951 * ffsc_stopdirs_v: array of stop directories for upward search
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00003952 * ffsc_find_what: FINDFILE_BOTH, FINDFILE_DIR or FINDFILE_FILE
Bram Moolenaar463ee342010-08-08 18:17:52 +02003953 * ffsc_tagfile: searching for tags file, don't use 'suffixesadd'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003954 */
3955typedef struct ff_search_ctx_T
3956{
3957 ff_stack_T *ffsc_stack_ptr;
3958 ff_visited_list_hdr_T *ffsc_visited_list;
3959 ff_visited_list_hdr_T *ffsc_dir_visited_list;
3960 ff_visited_list_hdr_T *ffsc_visited_lists_list;
3961 ff_visited_list_hdr_T *ffsc_dir_visited_lists_list;
3962 char_u *ffsc_file_to_search;
3963 char_u *ffsc_start_dir;
3964 char_u *ffsc_fix_path;
3965#ifdef FEAT_PATH_EXTRA
3966 char_u *ffsc_wc_path;
3967 int ffsc_level;
3968 char_u **ffsc_stopdirs_v;
3969#endif
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00003970 int ffsc_find_what;
Bram Moolenaar463ee342010-08-08 18:17:52 +02003971 int ffsc_tagfile;
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003972} ff_search_ctx_T;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003973
Bram Moolenaar071d4272004-06-13 20:20:40 +00003974/* locally needed functions */
3975#ifdef FEAT_PATH_EXTRA
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01003976static int ff_check_visited(ff_visited_T **, char_u *, char_u *);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003977#else
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01003978static int ff_check_visited(ff_visited_T **, char_u *);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003979#endif
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01003980static void vim_findfile_free_visited_list(ff_visited_list_hdr_T **list_headp);
3981static void ff_free_visited_list(ff_visited_T *vl);
3982static 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 +00003983#ifdef FEAT_PATH_EXTRA
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01003984static int ff_wc_equal(char_u *s1, char_u *s2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003985#endif
3986
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01003987static void ff_push(ff_search_ctx_T *search_ctx, ff_stack_T *stack_ptr);
3988static ff_stack_T *ff_pop(ff_search_ctx_T *search_ctx);
3989static void ff_clear(ff_search_ctx_T *search_ctx);
3990static void ff_free_stack_element(ff_stack_T *stack_ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003991#ifdef FEAT_PATH_EXTRA
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01003992static ff_stack_T *ff_create_stack_element(char_u *, char_u *, int, int);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003993#else
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01003994static ff_stack_T *ff_create_stack_element(char_u *, int, int);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003995#endif
3996#ifdef FEAT_PATH_EXTRA
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01003997static int ff_path_in_stoplist(char_u *, int, char_u **);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003998#endif
3999
Bram Moolenaarb9ba4032011-12-08 17:49:35 +01004000static char_u e_pathtoolong[] = N_("E854: path too long for completion");
4001
Bram Moolenaar071d4272004-06-13 20:20:40 +00004002#if 0
4003/*
4004 * if someone likes findfirst/findnext, here are the functions
4005 * NOT TESTED!!
4006 */
4007
4008static void *ff_fn_search_context = NULL;
4009
4010 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01004011vim_findfirst(char_u *path, char_u *filename, int level)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004012{
4013 ff_fn_search_context =
4014 vim_findfile_init(path, filename, NULL, level, TRUE, FALSE,
4015 ff_fn_search_context, rel_fname);
4016 if (NULL == ff_fn_search_context)
4017 return NULL;
4018 else
4019 return vim_findnext()
4020}
4021
4022 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01004023vim_findnext(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004024{
4025 char_u *ret = vim_findfile(ff_fn_search_context);
4026
4027 if (NULL == ret)
4028 {
4029 vim_findfile_cleanup(ff_fn_search_context);
4030 ff_fn_search_context = NULL;
4031 }
4032 return ret;
4033}
4034#endif
4035
4036/*
Bram Moolenaare2b590e2010-08-08 18:29:48 +02004037 * Initialization routine for vim_findfile().
Bram Moolenaar071d4272004-06-13 20:20:40 +00004038 *
Bram Moolenaarbe18d102010-05-22 21:37:53 +02004039 * Returns the newly allocated search context or NULL if an error occurred.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004040 *
4041 * Don't forget to clean up by calling vim_findfile_cleanup() if you are done
4042 * with the search context.
4043 *
4044 * Find the file 'filename' in the directory 'path'.
4045 * The parameter 'path' may contain wildcards. If so only search 'level'
4046 * directories deep. The parameter 'level' is the absolute maximum and is
4047 * not related to restricts given to the '**' wildcard. If 'level' is 100
4048 * and you use '**200' vim_findfile() will stop after 100 levels.
4049 *
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004050 * 'filename' cannot contain wildcards! It is used as-is, no backslashes to
4051 * escape special characters.
4052 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00004053 * If 'stopdirs' is not NULL and nothing is found downward, the search is
4054 * restarted on the next higher directory level. This is repeated until the
4055 * start-directory of a search is contained in 'stopdirs'. 'stopdirs' has the
4056 * format ";*<dirname>*\(;<dirname>\)*;\=$".
4057 *
4058 * If the 'path' is relative, the starting dir for the search is either VIM's
4059 * current dir or if the path starts with "./" the current files dir.
Bram Moolenaarbe18d102010-05-22 21:37:53 +02004060 * If the 'path' is absolute, the starting dir is that part of the path before
Bram Moolenaar071d4272004-06-13 20:20:40 +00004061 * the first wildcard.
4062 *
4063 * Upward search is only done on the starting dir.
4064 *
4065 * If 'free_visited' is TRUE the list of already visited files/directories is
4066 * cleared. Set this to FALSE if you just want to search from another
4067 * directory, but want to be sure that no directory from a previous search is
4068 * searched again. This is useful if you search for a file at different places.
4069 * The list of visited files/dirs can also be cleared with the function
4070 * vim_findfile_free_visited().
4071 *
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004072 * Set the parameter 'find_what' to FINDFILE_DIR if you want to search for
4073 * directories only, FINDFILE_FILE for files only, FINDFILE_BOTH for both.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004074 *
4075 * A search context returned by a previous call to vim_findfile_init() can be
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004076 * passed in the parameter "search_ctx_arg". This context is reused and
4077 * reinitialized with the new parameters. The list of already visited
Bram Moolenaar071d4272004-06-13 20:20:40 +00004078 * directories from this context is only deleted if the parameter
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004079 * "free_visited" is true. Be aware that the passed "search_ctx_arg" is freed
4080 * if the reinitialization fails.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004081 *
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004082 * If you don't have a search context from a previous call "search_ctx_arg"
4083 * must be NULL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004084 *
4085 * This function silently ignores a few errors, vim_findfile() will have
4086 * limited functionality then.
4087 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004088 void *
Bram Moolenaar9b578142016-01-30 19:39:49 +01004089vim_findfile_init(
4090 char_u *path,
4091 char_u *filename,
4092 char_u *stopdirs UNUSED,
4093 int level,
4094 int free_visited,
4095 int find_what,
4096 void *search_ctx_arg,
4097 int tagfile, /* expanding names of tags files */
4098 char_u *rel_fname) /* file name to use for "." */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004099{
4100#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004101 char_u *wc_part;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004102#endif
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004103 ff_stack_T *sptr;
4104 ff_search_ctx_T *search_ctx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004105
4106 /* If a search context is given by the caller, reuse it, else allocate a
4107 * new one.
4108 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004109 if (search_ctx_arg != NULL)
4110 search_ctx = search_ctx_arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004111 else
4112 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004113 search_ctx = (ff_search_ctx_T*)alloc((unsigned)sizeof(ff_search_ctx_T));
4114 if (search_ctx == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004115 goto error_return;
Bram Moolenaar7db5fc82010-05-24 11:59:29 +02004116 vim_memset(search_ctx, 0, sizeof(ff_search_ctx_T));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004117 }
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004118 search_ctx->ffsc_find_what = find_what;
Bram Moolenaar463ee342010-08-08 18:17:52 +02004119 search_ctx->ffsc_tagfile = tagfile;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004120
4121 /* clear the search context, but NOT the visited lists */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004122 ff_clear(search_ctx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004123
4124 /* clear visited list if wanted */
4125 if (free_visited == TRUE)
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004126 vim_findfile_free_visited(search_ctx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004127 else
4128 {
4129 /* Reuse old visited lists. Get the visited list for the given
4130 * filename. If no list for the current filename exists, creates a new
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004131 * one. */
4132 search_ctx->ffsc_visited_list = ff_get_visited_list(filename,
4133 &search_ctx->ffsc_visited_lists_list);
4134 if (search_ctx->ffsc_visited_list == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004135 goto error_return;
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004136 search_ctx->ffsc_dir_visited_list = ff_get_visited_list(filename,
4137 &search_ctx->ffsc_dir_visited_lists_list);
4138 if (search_ctx->ffsc_dir_visited_list == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004139 goto error_return;
4140 }
4141
4142 if (ff_expand_buffer == NULL)
4143 {
4144 ff_expand_buffer = (char_u*)alloc(MAXPATHL);
4145 if (ff_expand_buffer == NULL)
4146 goto error_return;
4147 }
4148
4149 /* Store information on starting dir now if path is relative.
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00004150 * If path is absolute, we do that later. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004151 if (path[0] == '.'
4152 && (vim_ispathsep(path[1]) || path[1] == NUL)
4153 && (!tagfile || vim_strchr(p_cpo, CPO_DOTTAG) == NULL)
4154 && rel_fname != NULL)
4155 {
4156 int len = (int)(gettail(rel_fname) - rel_fname);
4157
4158 if (!vim_isAbsName(rel_fname) && len + 1 < MAXPATHL)
4159 {
4160 /* Make the start dir an absolute path name. */
Bram Moolenaarbbebc852005-07-18 21:47:53 +00004161 vim_strncpy(ff_expand_buffer, rel_fname, len);
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004162 search_ctx->ffsc_start_dir = FullName_save(ff_expand_buffer, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004163 }
4164 else
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004165 search_ctx->ffsc_start_dir = vim_strnsave(rel_fname, len);
4166 if (search_ctx->ffsc_start_dir == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004167 goto error_return;
4168 if (*++path != NUL)
4169 ++path;
4170 }
4171 else if (*path == NUL || !vim_isAbsName(path))
4172 {
4173#ifdef BACKSLASH_IN_FILENAME
4174 /* "c:dir" needs "c:" to be expanded, otherwise use current dir */
4175 if (*path != NUL && path[1] == ':')
4176 {
4177 char_u drive[3];
4178
4179 drive[0] = path[0];
4180 drive[1] = ':';
4181 drive[2] = NUL;
4182 if (vim_FullName(drive, ff_expand_buffer, MAXPATHL, TRUE) == FAIL)
4183 goto error_return;
4184 path += 2;
4185 }
4186 else
4187#endif
4188 if (mch_dirname(ff_expand_buffer, MAXPATHL) == FAIL)
4189 goto error_return;
4190
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004191 search_ctx->ffsc_start_dir = vim_strsave(ff_expand_buffer);
4192 if (search_ctx->ffsc_start_dir == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004193 goto error_return;
4194
4195#ifdef BACKSLASH_IN_FILENAME
4196 /* A path that starts with "/dir" is relative to the drive, not to the
4197 * directory (but not for "//machine/dir"). Only use the drive name. */
4198 if ((*path == '/' || *path == '\\')
4199 && path[1] != path[0]
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004200 && search_ctx->ffsc_start_dir[1] == ':')
4201 search_ctx->ffsc_start_dir[2] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004202#endif
4203 }
4204
4205#ifdef FEAT_PATH_EXTRA
4206 /*
4207 * If stopdirs are given, split them into an array of pointers.
4208 * If this fails (mem allocation), there is no upward search at all or a
4209 * stop directory is not recognized -> continue silently.
4210 * If stopdirs just contains a ";" or is empty,
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004211 * search_ctx->ffsc_stopdirs_v will only contain a NULL pointer. This
Bram Moolenaar071d4272004-06-13 20:20:40 +00004212 * is handled as unlimited upward search. See function
4213 * ff_path_in_stoplist() for details.
4214 */
4215 if (stopdirs != NULL)
4216 {
4217 char_u *walker = stopdirs;
4218 int dircount;
4219
4220 while (*walker == ';')
4221 walker++;
4222
4223 dircount = 1;
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004224 search_ctx->ffsc_stopdirs_v =
4225 (char_u **)alloc((unsigned)sizeof(char_u *));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004226
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004227 if (search_ctx->ffsc_stopdirs_v != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004228 {
4229 do
4230 {
4231 char_u *helper;
4232 void *ptr;
4233
4234 helper = walker;
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004235 ptr = vim_realloc(search_ctx->ffsc_stopdirs_v,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004236 (dircount + 1) * sizeof(char_u *));
4237 if (ptr)
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004238 search_ctx->ffsc_stopdirs_v = ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004239 else
4240 /* ignore, keep what we have and continue */
4241 break;
4242 walker = vim_strchr(walker, ';');
4243 if (walker)
4244 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004245 search_ctx->ffsc_stopdirs_v[dircount-1] =
4246 vim_strnsave(helper, (int)(walker - helper));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004247 walker++;
4248 }
4249 else
4250 /* this might be "", which means ascent till top
4251 * of directory tree.
4252 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004253 search_ctx->ffsc_stopdirs_v[dircount-1] =
4254 vim_strsave(helper);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004255
4256 dircount++;
4257
4258 } while (walker != NULL);
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004259 search_ctx->ffsc_stopdirs_v[dircount-1] = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004260 }
4261 }
4262#endif
4263
4264#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004265 search_ctx->ffsc_level = level;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004266
4267 /* split into:
4268 * -fix path
4269 * -wildcard_stuff (might be NULL)
4270 */
4271 wc_part = vim_strchr(path, '*');
4272 if (wc_part != NULL)
4273 {
4274 int llevel;
4275 int len;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00004276 char *errpt;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004277
4278 /* save the fix part of the path */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004279 search_ctx->ffsc_fix_path = vim_strnsave(path, (int)(wc_part - path));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004280
4281 /*
4282 * copy wc_path and add restricts to the '**' wildcard.
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00004283 * The octet after a '**' is used as a (binary) counter.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004284 * So '**3' is transposed to '**^C' ('^C' is ASCII value 3)
4285 * or '**76' is transposed to '**N'( 'N' is ASCII value 76).
4286 * For EBCDIC you get different character values.
4287 * If no restrict is given after '**' the default is used.
Bram Moolenaar21160b92009-11-11 15:56:10 +00004288 * Due to this technique the path looks awful if you print it as a
Bram Moolenaar071d4272004-06-13 20:20:40 +00004289 * string.
4290 */
4291 len = 0;
4292 while (*wc_part != NUL)
4293 {
Bram Moolenaarb9ba4032011-12-08 17:49:35 +01004294 if (len + 5 >= MAXPATHL)
4295 {
4296 EMSG(_(e_pathtoolong));
4297 break;
4298 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004299 if (STRNCMP(wc_part, "**", 2) == 0)
4300 {
4301 ff_expand_buffer[len++] = *wc_part++;
4302 ff_expand_buffer[len++] = *wc_part++;
4303
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00004304 llevel = strtol((char *)wc_part, &errpt, 10);
4305 if ((char_u *)errpt != wc_part && llevel > 0 && llevel < 255)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004306 ff_expand_buffer[len++] = llevel;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00004307 else if ((char_u *)errpt != wc_part && llevel == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004308 /* restrict is 0 -> remove already added '**' */
4309 len -= 2;
4310 else
4311 ff_expand_buffer[len++] = FF_MAX_STAR_STAR_EXPAND;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00004312 wc_part = (char_u *)errpt;
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00004313 if (*wc_part != NUL && !vim_ispathsep(*wc_part))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004314 {
4315 EMSG2(_("E343: Invalid path: '**[number]' must be at the end of the path or be followed by '%s'."), PATHSEPSTR);
4316 goto error_return;
4317 }
4318 }
4319 else
4320 ff_expand_buffer[len++] = *wc_part++;
4321 }
4322 ff_expand_buffer[len] = NUL;
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004323 search_ctx->ffsc_wc_path = vim_strsave(ff_expand_buffer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004324
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004325 if (search_ctx->ffsc_wc_path == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004326 goto error_return;
4327 }
4328 else
4329#endif
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004330 search_ctx->ffsc_fix_path = vim_strsave(path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004331
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004332 if (search_ctx->ffsc_start_dir == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004333 {
4334 /* store the fix part as startdir.
4335 * This is needed if the parameter path is fully qualified.
4336 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004337 search_ctx->ffsc_start_dir = vim_strsave(search_ctx->ffsc_fix_path);
Bram Moolenaara9d52e32010-07-31 16:44:19 +02004338 if (search_ctx->ffsc_start_dir == NULL)
4339 goto error_return;
4340 search_ctx->ffsc_fix_path[0] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004341 }
4342
4343 /* create an absolute path */
Bram Moolenaarb9ba4032011-12-08 17:49:35 +01004344 if (STRLEN(search_ctx->ffsc_start_dir)
4345 + STRLEN(search_ctx->ffsc_fix_path) + 3 >= MAXPATHL)
4346 {
4347 EMSG(_(e_pathtoolong));
4348 goto error_return;
4349 }
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004350 STRCPY(ff_expand_buffer, search_ctx->ffsc_start_dir);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004351 add_pathsep(ff_expand_buffer);
Bram Moolenaarf4c5fcb2013-07-03 17:14:00 +02004352 {
Bram Moolenaar61214042013-07-04 21:19:33 +02004353 int eb_len = (int)STRLEN(ff_expand_buffer);
4354 char_u *buf = alloc(eb_len
4355 + (int)STRLEN(search_ctx->ffsc_fix_path) + 1);
Bram Moolenaarf4c5fcb2013-07-03 17:14:00 +02004356
4357 STRCPY(buf, ff_expand_buffer);
Bram Moolenaar0f5a5ed2013-07-03 17:51:17 +02004358 STRCPY(buf + eb_len, search_ctx->ffsc_fix_path);
Bram Moolenaarf4c5fcb2013-07-03 17:14:00 +02004359 if (mch_isdir(buf))
4360 {
4361 STRCAT(ff_expand_buffer, search_ctx->ffsc_fix_path);
4362 add_pathsep(ff_expand_buffer);
4363 }
4364#ifdef FEAT_PATH_EXTRA
4365 else
4366 {
Bram Moolenaaree0ee2a2013-07-03 21:19:07 +02004367 char_u *p = gettail(search_ctx->ffsc_fix_path);
Bram Moolenaar5f4c8402014-01-06 06:19:11 +01004368 char_u *wc_path = NULL;
4369 char_u *temp = NULL;
Bram Moolenaarf4c5fcb2013-07-03 17:14:00 +02004370 int len = 0;
4371
Bram Moolenaaree0ee2a2013-07-03 21:19:07 +02004372 if (p > search_ctx->ffsc_fix_path)
Bram Moolenaarf4c5fcb2013-07-03 17:14:00 +02004373 {
Bram Moolenaar61214042013-07-04 21:19:33 +02004374 len = (int)(p - search_ctx->ffsc_fix_path) - 1;
Bram Moolenaarf4c5fcb2013-07-03 17:14:00 +02004375 STRNCAT(ff_expand_buffer, search_ctx->ffsc_fix_path, len);
4376 add_pathsep(ff_expand_buffer);
4377 }
4378 else
Bram Moolenaar61214042013-07-04 21:19:33 +02004379 len = (int)STRLEN(search_ctx->ffsc_fix_path);
Bram Moolenaarf4c5fcb2013-07-03 17:14:00 +02004380
4381 if (search_ctx->ffsc_wc_path != NULL)
4382 {
4383 wc_path = vim_strsave(search_ctx->ffsc_wc_path);
Bram Moolenaar61214042013-07-04 21:19:33 +02004384 temp = alloc((int)(STRLEN(search_ctx->ffsc_wc_path)
Bram Moolenaare8785f22013-07-07 16:15:35 +02004385 + STRLEN(search_ctx->ffsc_fix_path + len)
4386 + 1));
Bram Moolenaarc79a5452015-09-29 12:08:42 +02004387 if (temp == NULL || wc_path == NULL)
4388 {
4389 vim_free(buf);
4390 vim_free(temp);
4391 vim_free(wc_path);
4392 goto error_return;
4393 }
Bram Moolenaarf4c5fcb2013-07-03 17:14:00 +02004394
Bram Moolenaarc79a5452015-09-29 12:08:42 +02004395 STRCPY(temp, search_ctx->ffsc_fix_path + len);
4396 STRCAT(temp, search_ctx->ffsc_wc_path);
4397 vim_free(search_ctx->ffsc_wc_path);
Bram Moolenaarf4c5fcb2013-07-03 17:14:00 +02004398 vim_free(wc_path);
Bram Moolenaarc79a5452015-09-29 12:08:42 +02004399 search_ctx->ffsc_wc_path = temp;
Bram Moolenaarf4c5fcb2013-07-03 17:14:00 +02004400 }
Bram Moolenaarf4c5fcb2013-07-03 17:14:00 +02004401 }
4402#endif
4403 vim_free(buf);
4404 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004405
4406 sptr = ff_create_stack_element(ff_expand_buffer,
4407#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004408 search_ctx->ffsc_wc_path,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004409#endif
4410 level, 0);
4411
4412 if (sptr == NULL)
4413 goto error_return;
4414
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004415 ff_push(search_ctx, sptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004416
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004417 search_ctx->ffsc_file_to_search = vim_strsave(filename);
4418 if (search_ctx->ffsc_file_to_search == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004419 goto error_return;
4420
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004421 return search_ctx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004422
4423error_return:
4424 /*
4425 * We clear the search context now!
4426 * Even when the caller gave us a (perhaps valid) context we free it here,
4427 * as we might have already destroyed it.
4428 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004429 vim_findfile_cleanup(search_ctx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004430 return NULL;
4431}
4432
4433#if defined(FEAT_PATH_EXTRA) || defined(PROTO)
4434/*
4435 * Get the stopdir string. Check that ';' is not escaped.
4436 */
4437 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01004438vim_findfile_stopdir(char_u *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004439{
4440 char_u *r_ptr = buf;
4441
4442 while (*r_ptr != NUL && *r_ptr != ';')
4443 {
4444 if (r_ptr[0] == '\\' && r_ptr[1] == ';')
4445 {
Bram Moolenaar0b573a52011-07-27 17:31:47 +02004446 /* Overwrite the escape char,
4447 * use STRLEN(r_ptr) to move the trailing '\0'. */
Bram Moolenaar446cb832008-06-24 21:56:24 +00004448 STRMOVE(r_ptr, r_ptr + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004449 r_ptr++;
4450 }
4451 r_ptr++;
4452 }
4453 if (*r_ptr == ';')
4454 {
4455 *r_ptr = 0;
4456 r_ptr++;
4457 }
4458 else if (*r_ptr == NUL)
4459 r_ptr = NULL;
4460 return r_ptr;
4461}
4462#endif
4463
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004464/*
4465 * Clean up the given search context. Can handle a NULL pointer.
4466 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004467 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004468vim_findfile_cleanup(void *ctx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004469{
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00004470 if (ctx == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004471 return;
4472
Bram Moolenaar071d4272004-06-13 20:20:40 +00004473 vim_findfile_free_visited(ctx);
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004474 ff_clear(ctx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004475 vim_free(ctx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004476}
4477
4478/*
4479 * Find a file in a search context.
4480 * The search context was created with vim_findfile_init() above.
4481 * Return a pointer to an allocated file name or NULL if nothing found.
4482 * To get all matching files call this function until you get NULL.
4483 *
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00004484 * If the passed search_context is NULL, NULL is returned.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004485 *
4486 * The search algorithm is depth first. To change this replace the
4487 * stack with a list (don't forget to leave partly searched directories on the
4488 * top of the list).
4489 */
4490 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01004491vim_findfile(void *search_ctx_arg)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004492{
4493 char_u *file_path;
4494#ifdef FEAT_PATH_EXTRA
4495 char_u *rest_of_wildcards;
4496 char_u *path_end = NULL;
4497#endif
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004498 ff_stack_T *stackp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004499#if defined(FEAT_SEARCHPATH) || defined(FEAT_PATH_EXTRA)
4500 int len;
4501#endif
4502 int i;
4503 char_u *p;
4504#ifdef FEAT_SEARCHPATH
4505 char_u *suf;
4506#endif
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004507 ff_search_ctx_T *search_ctx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004508
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004509 if (search_ctx_arg == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004510 return NULL;
4511
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004512 search_ctx = (ff_search_ctx_T *)search_ctx_arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004513
4514 /*
4515 * filepath is used as buffer for various actions and as the storage to
4516 * return a found filename.
4517 */
4518 if ((file_path = alloc((int)MAXPATHL)) == NULL)
4519 return NULL;
4520
4521#ifdef FEAT_PATH_EXTRA
4522 /* store the end of the start dir -- needed for upward search */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004523 if (search_ctx->ffsc_start_dir != NULL)
4524 path_end = &search_ctx->ffsc_start_dir[
4525 STRLEN(search_ctx->ffsc_start_dir)];
Bram Moolenaar071d4272004-06-13 20:20:40 +00004526#endif
4527
4528#ifdef FEAT_PATH_EXTRA
4529 /* upward search loop */
4530 for (;;)
4531 {
4532#endif
4533 /* downward search loop */
4534 for (;;)
4535 {
4536 /* check if user user wants to stop the search*/
4537 ui_breakcheck();
4538 if (got_int)
4539 break;
4540
4541 /* get directory to work on from stack */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004542 stackp = ff_pop(search_ctx);
4543 if (stackp == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004544 break;
4545
4546 /*
4547 * TODO: decide if we leave this test in
4548 *
4549 * GOOD: don't search a directory(-tree) twice.
4550 * BAD: - check linked list for every new directory entered.
4551 * - check for double files also done below
4552 *
4553 * Here we check if we already searched this directory.
4554 * We already searched a directory if:
4555 * 1) The directory is the same.
4556 * 2) We would use the same wildcard string.
4557 *
4558 * Good if you have links on same directory via several ways
4559 * or you have selfreferences in directories (e.g. SuSE Linux 6.3:
4560 * /etc/rc.d/init.d is linked to /etc/rc.d -> endless loop)
4561 *
4562 * This check is only needed for directories we work on for the
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004563 * first time (hence stackp->ff_filearray == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004564 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004565 if (stackp->ffs_filearray == NULL
4566 && ff_check_visited(&search_ctx->ffsc_dir_visited_list
Bram Moolenaar071d4272004-06-13 20:20:40 +00004567 ->ffvl_visited_list,
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004568 stackp->ffs_fix_path
Bram Moolenaar071d4272004-06-13 20:20:40 +00004569#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004570 , stackp->ffs_wc_path
Bram Moolenaar071d4272004-06-13 20:20:40 +00004571#endif
4572 ) == FAIL)
4573 {
4574#ifdef FF_VERBOSE
4575 if (p_verbose >= 5)
4576 {
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004577 verbose_enter_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004578 smsg((char_u *)"Already Searched: %s (%s)",
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004579 stackp->ffs_fix_path, stackp->ffs_wc_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004580 /* don't overwrite this either */
4581 msg_puts((char_u *)"\n");
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004582 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004583 }
4584#endif
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004585 ff_free_stack_element(stackp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004586 continue;
4587 }
4588#ifdef FF_VERBOSE
4589 else if (p_verbose >= 5)
4590 {
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004591 verbose_enter_scroll();
Bram Moolenaar051b7822005-05-19 21:00:46 +00004592 smsg((char_u *)"Searching: %s (%s)",
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004593 stackp->ffs_fix_path, stackp->ffs_wc_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004594 /* don't overwrite this either */
4595 msg_puts((char_u *)"\n");
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004596 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004597 }
4598#endif
4599
4600 /* check depth */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004601 if (stackp->ffs_level <= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004602 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004603 ff_free_stack_element(stackp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004604 continue;
4605 }
4606
4607 file_path[0] = NUL;
4608
4609 /*
4610 * If no filearray till now expand wildcards
4611 * The function expand_wildcards() can handle an array of paths
4612 * and all possible expands are returned in one array. We use this
4613 * to handle the expansion of '**' into an empty string.
4614 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004615 if (stackp->ffs_filearray == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004616 {
4617 char_u *dirptrs[2];
4618
4619 /* we use filepath to build the path expand_wildcards() should
4620 * expand.
4621 */
4622 dirptrs[0] = file_path;
4623 dirptrs[1] = NULL;
4624
4625 /* if we have a start dir copy it in */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004626 if (!vim_isAbsName(stackp->ffs_fix_path)
4627 && search_ctx->ffsc_start_dir)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004628 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004629 STRCPY(file_path, search_ctx->ffsc_start_dir);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004630 add_pathsep(file_path);
4631 }
4632
4633 /* append the fix part of the search path */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004634 STRCAT(file_path, stackp->ffs_fix_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004635 add_pathsep(file_path);
4636
4637#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004638 rest_of_wildcards = stackp->ffs_wc_path;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004639 if (*rest_of_wildcards != NUL)
4640 {
4641 len = (int)STRLEN(file_path);
4642 if (STRNCMP(rest_of_wildcards, "**", 2) == 0)
4643 {
4644 /* pointer to the restrict byte
4645 * The restrict byte is not a character!
4646 */
4647 p = rest_of_wildcards + 2;
4648
4649 if (*p > 0)
4650 {
4651 (*p)--;
4652 file_path[len++] = '*';
4653 }
4654
4655 if (*p == 0)
4656 {
4657 /* remove '**<numb> from wildcards */
Bram Moolenaar446cb832008-06-24 21:56:24 +00004658 STRMOVE(rest_of_wildcards, rest_of_wildcards + 3);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004659 }
4660 else
4661 rest_of_wildcards += 3;
4662
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004663 if (stackp->ffs_star_star_empty == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004664 {
4665 /* if not done before, expand '**' to empty */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004666 stackp->ffs_star_star_empty = 1;
4667 dirptrs[1] = stackp->ffs_fix_path;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004668 }
4669 }
4670
4671 /*
4672 * Here we copy until the next path separator or the end of
4673 * the path. If we stop at a path separator, there is
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00004674 * still something else left. This is handled below by
Bram Moolenaar071d4272004-06-13 20:20:40 +00004675 * pushing every directory returned from expand_wildcards()
4676 * on the stack again for further search.
4677 */
4678 while (*rest_of_wildcards
4679 && !vim_ispathsep(*rest_of_wildcards))
4680 file_path[len++] = *rest_of_wildcards++;
4681
4682 file_path[len] = NUL;
4683 if (vim_ispathsep(*rest_of_wildcards))
4684 rest_of_wildcards++;
4685 }
4686#endif
4687
4688 /*
4689 * Expand wildcards like "*" and "$VAR".
4690 * If the path is a URL don't try this.
4691 */
4692 if (path_with_url(dirptrs[0]))
4693 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004694 stackp->ffs_filearray = (char_u **)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004695 alloc((unsigned)sizeof(char *));
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004696 if (stackp->ffs_filearray != NULL
4697 && (stackp->ffs_filearray[0]
Bram Moolenaar071d4272004-06-13 20:20:40 +00004698 = vim_strsave(dirptrs[0])) != NULL)
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004699 stackp->ffs_filearray_size = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004700 else
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004701 stackp->ffs_filearray_size = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004702 }
4703 else
Bram Moolenaar0b573a52011-07-27 17:31:47 +02004704 /* Add EW_NOTWILD because the expanded path may contain
4705 * wildcard characters that are to be taken literally.
4706 * This is a bit of a hack. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004707 expand_wildcards((dirptrs[1] == NULL) ? 1 : 2, dirptrs,
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004708 &stackp->ffs_filearray_size,
4709 &stackp->ffs_filearray,
Bram Moolenaar0b573a52011-07-27 17:31:47 +02004710 EW_DIR|EW_ADDSLASH|EW_SILENT|EW_NOTWILD);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004711
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004712 stackp->ffs_filearray_cur = 0;
4713 stackp->ffs_stage = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004714 }
4715#ifdef FEAT_PATH_EXTRA
4716 else
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004717 rest_of_wildcards = &stackp->ffs_wc_path[
4718 STRLEN(stackp->ffs_wc_path)];
Bram Moolenaar071d4272004-06-13 20:20:40 +00004719#endif
4720
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004721 if (stackp->ffs_stage == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004722 {
4723 /* this is the first time we work on this directory */
4724#ifdef FEAT_PATH_EXTRA
4725 if (*rest_of_wildcards == NUL)
4726#endif
4727 {
4728 /*
Bram Moolenaar473de612013-06-08 18:19:48 +02004729 * We don't have further wildcards to expand, so we have to
4730 * check for the final file now.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004731 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004732 for (i = stackp->ffs_filearray_cur;
4733 i < stackp->ffs_filearray_size; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004734 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004735 if (!path_with_url(stackp->ffs_filearray[i])
4736 && !mch_isdir(stackp->ffs_filearray[i]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004737 continue; /* not a directory */
4738
Bram Moolenaar21160b92009-11-11 15:56:10 +00004739 /* prepare the filename to be checked for existence
Bram Moolenaar071d4272004-06-13 20:20:40 +00004740 * below */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004741 STRCPY(file_path, stackp->ffs_filearray[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004742 add_pathsep(file_path);
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004743 STRCAT(file_path, search_ctx->ffsc_file_to_search);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004744
4745 /*
4746 * Try without extra suffix and then with suffixes
4747 * from 'suffixesadd'.
4748 */
4749#ifdef FEAT_SEARCHPATH
4750 len = (int)STRLEN(file_path);
Bram Moolenaar463ee342010-08-08 18:17:52 +02004751 if (search_ctx->ffsc_tagfile)
4752 suf = (char_u *)"";
4753 else
4754 suf = curbuf->b_p_sua;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004755 for (;;)
4756#endif
4757 {
4758 /* if file exists and we didn't already find it */
4759 if ((path_with_url(file_path)
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004760 || (mch_getperm(file_path) >= 0
4761 && (search_ctx->ffsc_find_what
4762 == FINDFILE_BOTH
4763 || ((search_ctx->ffsc_find_what
4764 == FINDFILE_DIR)
4765 == mch_isdir(file_path)))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004766#ifndef FF_VERBOSE
4767 && (ff_check_visited(
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004768 &search_ctx->ffsc_visited_list->ffvl_visited_list,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004769 file_path
4770#ifdef FEAT_PATH_EXTRA
4771 , (char_u *)""
4772#endif
4773 ) == OK)
4774#endif
4775 )
4776 {
4777#ifdef FF_VERBOSE
4778 if (ff_check_visited(
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004779 &search_ctx->ffsc_visited_list->ffvl_visited_list,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004780 file_path
4781#ifdef FEAT_PATH_EXTRA
4782 , (char_u *)""
4783#endif
4784 ) == FAIL)
4785 {
4786 if (p_verbose >= 5)
4787 {
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004788 verbose_enter_scroll();
Bram Moolenaar051b7822005-05-19 21:00:46 +00004789 smsg((char_u *)"Already: %s",
Bram Moolenaar071d4272004-06-13 20:20:40 +00004790 file_path);
4791 /* don't overwrite this either */
4792 msg_puts((char_u *)"\n");
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004793 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004794 }
4795 continue;
4796 }
4797#endif
4798
4799 /* push dir to examine rest of subdirs later */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004800 stackp->ffs_filearray_cur = i + 1;
4801 ff_push(search_ctx, stackp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004802
Bram Moolenaar6bab9fa2009-01-22 20:32:12 +00004803 if (!path_with_url(file_path))
4804 simplify_filename(file_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004805 if (mch_dirname(ff_expand_buffer, MAXPATHL)
4806 == OK)
4807 {
4808 p = shorten_fname(file_path,
4809 ff_expand_buffer);
4810 if (p != NULL)
Bram Moolenaar446cb832008-06-24 21:56:24 +00004811 STRMOVE(file_path, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004812 }
4813#ifdef FF_VERBOSE
4814 if (p_verbose >= 5)
4815 {
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004816 verbose_enter_scroll();
Bram Moolenaar051b7822005-05-19 21:00:46 +00004817 smsg((char_u *)"HIT: %s", file_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004818 /* don't overwrite this either */
4819 msg_puts((char_u *)"\n");
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004820 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004821 }
4822#endif
4823 return file_path;
4824 }
4825
4826#ifdef FEAT_SEARCHPATH
4827 /* Not found or found already, try next suffix. */
4828 if (*suf == NUL)
4829 break;
4830 copy_option_part(&suf, file_path + len,
4831 MAXPATHL - len, ",");
4832#endif
4833 }
4834 }
4835 }
4836#ifdef FEAT_PATH_EXTRA
4837 else
4838 {
4839 /*
4840 * still wildcards left, push the directories for further
4841 * search
4842 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004843 for (i = stackp->ffs_filearray_cur;
4844 i < stackp->ffs_filearray_size; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004845 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004846 if (!mch_isdir(stackp->ffs_filearray[i]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004847 continue; /* not a directory */
4848
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004849 ff_push(search_ctx,
4850 ff_create_stack_element(
4851 stackp->ffs_filearray[i],
4852 rest_of_wildcards,
4853 stackp->ffs_level - 1, 0));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004854 }
4855 }
4856#endif
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004857 stackp->ffs_filearray_cur = 0;
4858 stackp->ffs_stage = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004859 }
4860
4861#ifdef FEAT_PATH_EXTRA
4862 /*
4863 * if wildcards contains '**' we have to descent till we reach the
4864 * leaves of the directory tree.
4865 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004866 if (STRNCMP(stackp->ffs_wc_path, "**", 2) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004867 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004868 for (i = stackp->ffs_filearray_cur;
4869 i < stackp->ffs_filearray_size; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004870 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004871 if (fnamecmp(stackp->ffs_filearray[i],
4872 stackp->ffs_fix_path) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004873 continue; /* don't repush same directory */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004874 if (!mch_isdir(stackp->ffs_filearray[i]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004875 continue; /* not a directory */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004876 ff_push(search_ctx,
4877 ff_create_stack_element(stackp->ffs_filearray[i],
4878 stackp->ffs_wc_path, stackp->ffs_level - 1, 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004879 }
4880 }
4881#endif
4882
4883 /* we are done with the current directory */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004884 ff_free_stack_element(stackp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004885
4886 }
4887
4888#ifdef FEAT_PATH_EXTRA
4889 /* If we reached this, we didn't find anything downwards.
4890 * Let's check if we should do an upward search.
4891 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004892 if (search_ctx->ffsc_start_dir
4893 && search_ctx->ffsc_stopdirs_v != NULL && !got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004894 {
4895 ff_stack_T *sptr;
4896
4897 /* is the last starting directory in the stop list? */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004898 if (ff_path_in_stoplist(search_ctx->ffsc_start_dir,
4899 (int)(path_end - search_ctx->ffsc_start_dir),
4900 search_ctx->ffsc_stopdirs_v) == TRUE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004901 break;
4902
4903 /* cut of last dir */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004904 while (path_end > search_ctx->ffsc_start_dir
4905 && vim_ispathsep(*path_end))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004906 path_end--;
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004907 while (path_end > search_ctx->ffsc_start_dir
4908 && !vim_ispathsep(path_end[-1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004909 path_end--;
4910 *path_end = 0;
4911 path_end--;
4912
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004913 if (*search_ctx->ffsc_start_dir == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004914 break;
4915
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004916 STRCPY(file_path, search_ctx->ffsc_start_dir);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004917 add_pathsep(file_path);
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004918 STRCAT(file_path, search_ctx->ffsc_fix_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004919
4920 /* create a new stack entry */
4921 sptr = ff_create_stack_element(file_path,
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004922 search_ctx->ffsc_wc_path, search_ctx->ffsc_level, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004923 if (sptr == NULL)
4924 break;
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004925 ff_push(search_ctx, sptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004926 }
4927 else
4928 break;
4929 }
4930#endif
4931
4932 vim_free(file_path);
4933 return NULL;
4934}
4935
4936/*
4937 * Free the list of lists of visited files and directories
4938 * Can handle it if the passed search_context is NULL;
4939 */
4940 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004941vim_findfile_free_visited(void *search_ctx_arg)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004942{
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004943 ff_search_ctx_T *search_ctx;
4944
4945 if (search_ctx_arg == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004946 return;
4947
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004948 search_ctx = (ff_search_ctx_T *)search_ctx_arg;
4949 vim_findfile_free_visited_list(&search_ctx->ffsc_visited_lists_list);
4950 vim_findfile_free_visited_list(&search_ctx->ffsc_dir_visited_lists_list);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004951}
4952
4953 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004954vim_findfile_free_visited_list(ff_visited_list_hdr_T **list_headp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004955{
4956 ff_visited_list_hdr_T *vp;
4957
4958 while (*list_headp != NULL)
4959 {
4960 vp = (*list_headp)->ffvl_next;
4961 ff_free_visited_list((*list_headp)->ffvl_visited_list);
4962
4963 vim_free((*list_headp)->ffvl_filename);
4964 vim_free(*list_headp);
4965 *list_headp = vp;
4966 }
4967 *list_headp = NULL;
4968}
4969
4970 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004971ff_free_visited_list(ff_visited_T *vl)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004972{
4973 ff_visited_T *vp;
4974
4975 while (vl != NULL)
4976 {
4977 vp = vl->ffv_next;
4978#ifdef FEAT_PATH_EXTRA
4979 vim_free(vl->ffv_wc_path);
4980#endif
4981 vim_free(vl);
4982 vl = vp;
4983 }
4984 vl = NULL;
4985}
4986
4987/*
4988 * Returns the already visited list for the given filename. If none is found it
4989 * allocates a new one.
4990 */
4991 static ff_visited_list_hdr_T*
Bram Moolenaar9b578142016-01-30 19:39:49 +01004992ff_get_visited_list(
4993 char_u *filename,
4994 ff_visited_list_hdr_T **list_headp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004995{
4996 ff_visited_list_hdr_T *retptr = NULL;
4997
4998 /* check if a visited list for the given filename exists */
4999 if (*list_headp != NULL)
5000 {
5001 retptr = *list_headp;
5002 while (retptr != NULL)
5003 {
5004 if (fnamecmp(filename, retptr->ffvl_filename) == 0)
5005 {
5006#ifdef FF_VERBOSE
5007 if (p_verbose >= 5)
5008 {
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00005009 verbose_enter_scroll();
Bram Moolenaar051b7822005-05-19 21:00:46 +00005010 smsg((char_u *)"ff_get_visited_list: FOUND list for %s",
Bram Moolenaar071d4272004-06-13 20:20:40 +00005011 filename);
5012 /* don't overwrite this either */
5013 msg_puts((char_u *)"\n");
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00005014 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005015 }
5016#endif
5017 return retptr;
5018 }
5019 retptr = retptr->ffvl_next;
5020 }
5021 }
5022
5023#ifdef FF_VERBOSE
5024 if (p_verbose >= 5)
5025 {
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00005026 verbose_enter_scroll();
Bram Moolenaar051b7822005-05-19 21:00:46 +00005027 smsg((char_u *)"ff_get_visited_list: new list for %s", filename);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005028 /* don't overwrite this either */
5029 msg_puts((char_u *)"\n");
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00005030 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005031 }
5032#endif
5033
5034 /*
5035 * if we reach this we didn't find a list and we have to allocate new list
5036 */
5037 retptr = (ff_visited_list_hdr_T*)alloc((unsigned)sizeof(*retptr));
5038 if (retptr == NULL)
5039 return NULL;
5040
5041 retptr->ffvl_visited_list = NULL;
5042 retptr->ffvl_filename = vim_strsave(filename);
5043 if (retptr->ffvl_filename == NULL)
5044 {
5045 vim_free(retptr);
5046 return NULL;
5047 }
5048 retptr->ffvl_next = *list_headp;
5049 *list_headp = retptr;
5050
5051 return retptr;
5052}
5053
5054#ifdef FEAT_PATH_EXTRA
5055/*
5056 * check if two wildcard paths are equal. Returns TRUE or FALSE.
5057 * They are equal if:
5058 * - both paths are NULL
5059 * - they have the same length
5060 * - char by char comparison is OK
5061 * - the only differences are in the counters behind a '**', so
5062 * '**\20' is equal to '**\24'
5063 */
5064 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01005065ff_wc_equal(char_u *s1, char_u *s2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005066{
Bram Moolenaarf6470c22015-08-25 16:31:40 +02005067 int i, j;
Bram Moolenaard43f0952015-08-27 22:30:47 +02005068 int c1 = NUL;
5069 int c2 = NUL;
Bram Moolenaard0e2d942013-03-19 18:31:49 +01005070 int prev1 = NUL;
5071 int prev2 = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005072
5073 if (s1 == s2)
5074 return TRUE;
5075
5076 if (s1 == NULL || s2 == NULL)
5077 return FALSE;
5078
Bram Moolenaard43f0952015-08-27 22:30:47 +02005079 for (i = 0, j = 0; s1[i] != NUL && s2[j] != NUL;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005080 {
Bram Moolenaard43f0952015-08-27 22:30:47 +02005081 c1 = PTR2CHAR(s1 + i);
5082 c2 = PTR2CHAR(s2 + j);
Bram Moolenaard0e2d942013-03-19 18:31:49 +01005083
5084 if ((p_fic ? MB_TOLOWER(c1) != MB_TOLOWER(c2) : c1 != c2)
5085 && (prev1 != '*' || prev2 != '*'))
Bram Moolenaard43f0952015-08-27 22:30:47 +02005086 return FALSE;
Bram Moolenaard0e2d942013-03-19 18:31:49 +01005087 prev2 = prev1;
5088 prev1 = c1;
Bram Moolenaarf6470c22015-08-25 16:31:40 +02005089
5090 i += MB_PTR2LEN(s1 + i);
5091 j += MB_PTR2LEN(s2 + j);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005092 }
Bram Moolenaar4d0c7bc2015-09-25 16:38:01 +02005093 return s1[i] == s2[j];
Bram Moolenaar071d4272004-06-13 20:20:40 +00005094}
5095#endif
5096
5097/*
5098 * maintains the list of already visited files and dirs
5099 * returns FAIL if the given file/dir is already in the list
5100 * returns OK if it is newly added
5101 *
5102 * TODO: What to do on memory allocation problems?
5103 * -> return TRUE - Better the file is found several times instead of
5104 * never.
5105 */
5106 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01005107ff_check_visited(
5108 ff_visited_T **visited_list,
5109 char_u *fname
Bram Moolenaar071d4272004-06-13 20:20:40 +00005110#ifdef FEAT_PATH_EXTRA
Bram Moolenaar9b578142016-01-30 19:39:49 +01005111 , char_u *wc_path
Bram Moolenaar071d4272004-06-13 20:20:40 +00005112#endif
Bram Moolenaar9b578142016-01-30 19:39:49 +01005113 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00005114{
5115 ff_visited_T *vp;
5116#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02005117 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005118 int url = FALSE;
5119#endif
5120
5121 /* For an URL we only compare the name, otherwise we compare the
5122 * device/inode (unix) or the full path name (not Unix). */
5123 if (path_with_url(fname))
5124 {
Bram Moolenaarbbebc852005-07-18 21:47:53 +00005125 vim_strncpy(ff_expand_buffer, fname, MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005126#ifdef UNIX
5127 url = TRUE;
5128#endif
5129 }
5130 else
5131 {
5132 ff_expand_buffer[0] = NUL;
5133#ifdef UNIX
5134 if (mch_stat((char *)fname, &st) < 0)
5135#else
5136 if (vim_FullName(fname, ff_expand_buffer, MAXPATHL, TRUE) == FAIL)
5137#endif
5138 return FAIL;
5139 }
5140
5141 /* check against list of already visited files */
5142 for (vp = *visited_list; vp != NULL; vp = vp->ffv_next)
5143 {
5144 if (
5145#ifdef UNIX
Bram Moolenaare1fbddc2009-05-16 19:07:03 +00005146 !url ? (vp->ffv_dev_valid && vp->ffv_dev == st.st_dev
5147 && vp->ffv_ino == st.st_ino)
5148 :
Bram Moolenaar071d4272004-06-13 20:20:40 +00005149#endif
5150 fnamecmp(vp->ffv_fname, ff_expand_buffer) == 0
5151 )
5152 {
5153#ifdef FEAT_PATH_EXTRA
5154 /* are the wildcard parts equal */
5155 if (ff_wc_equal(vp->ffv_wc_path, wc_path) == TRUE)
5156#endif
5157 /* already visited */
5158 return FAIL;
5159 }
5160 }
5161
5162 /*
5163 * New file/dir. Add it to the list of visited files/dirs.
5164 */
5165 vp = (ff_visited_T *)alloc((unsigned)(sizeof(ff_visited_T)
5166 + STRLEN(ff_expand_buffer)));
5167
5168 if (vp != NULL)
5169 {
5170#ifdef UNIX
5171 if (!url)
5172 {
Bram Moolenaare1fbddc2009-05-16 19:07:03 +00005173 vp->ffv_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005174 vp->ffv_ino = st.st_ino;
5175 vp->ffv_dev = st.st_dev;
5176 vp->ffv_fname[0] = NUL;
5177 }
5178 else
5179 {
Bram Moolenaare1fbddc2009-05-16 19:07:03 +00005180 vp->ffv_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005181#endif
5182 STRCPY(vp->ffv_fname, ff_expand_buffer);
5183#ifdef UNIX
5184 }
5185#endif
5186#ifdef FEAT_PATH_EXTRA
5187 if (wc_path != NULL)
5188 vp->ffv_wc_path = vim_strsave(wc_path);
5189 else
5190 vp->ffv_wc_path = NULL;
5191#endif
5192
5193 vp->ffv_next = *visited_list;
5194 *visited_list = vp;
5195 }
5196
5197 return OK;
5198}
5199
5200/*
5201 * create stack element from given path pieces
5202 */
5203 static ff_stack_T *
Bram Moolenaar9b578142016-01-30 19:39:49 +01005204ff_create_stack_element(
5205 char_u *fix_part,
Bram Moolenaar071d4272004-06-13 20:20:40 +00005206#ifdef FEAT_PATH_EXTRA
Bram Moolenaar9b578142016-01-30 19:39:49 +01005207 char_u *wc_part,
Bram Moolenaar071d4272004-06-13 20:20:40 +00005208#endif
Bram Moolenaar9b578142016-01-30 19:39:49 +01005209 int level,
5210 int star_star_empty)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005211{
5212 ff_stack_T *new;
5213
5214 new = (ff_stack_T *)alloc((unsigned)sizeof(ff_stack_T));
5215 if (new == NULL)
5216 return NULL;
5217
5218 new->ffs_prev = NULL;
5219 new->ffs_filearray = NULL;
5220 new->ffs_filearray_size = 0;
5221 new->ffs_filearray_cur = 0;
5222 new->ffs_stage = 0;
5223 new->ffs_level = level;
Bram Moolenaar945ec092016-06-08 21:17:43 +02005224 new->ffs_star_star_empty = star_star_empty;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005225
5226 /* the following saves NULL pointer checks in vim_findfile */
5227 if (fix_part == NULL)
5228 fix_part = (char_u *)"";
5229 new->ffs_fix_path = vim_strsave(fix_part);
5230
5231#ifdef FEAT_PATH_EXTRA
5232 if (wc_part == NULL)
5233 wc_part = (char_u *)"";
5234 new->ffs_wc_path = vim_strsave(wc_part);
5235#endif
5236
5237 if (new->ffs_fix_path == NULL
5238#ifdef FEAT_PATH_EXTRA
5239 || new->ffs_wc_path == NULL
5240#endif
5241 )
5242 {
5243 ff_free_stack_element(new);
5244 new = NULL;
5245 }
5246
5247 return new;
5248}
5249
5250/*
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005251 * Push a dir on the directory stack.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005252 */
5253 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005254ff_push(ff_search_ctx_T *search_ctx, ff_stack_T *stack_ptr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005255{
5256 /* check for NULL pointer, not to return an error to the user, but
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005257 * to prevent a crash */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005258 if (stack_ptr != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005259 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005260 stack_ptr->ffs_prev = search_ctx->ffsc_stack_ptr;
5261 search_ctx->ffsc_stack_ptr = stack_ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005262 }
5263}
5264
5265/*
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005266 * Pop a dir from the directory stack.
5267 * Returns NULL if stack is empty.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005268 */
5269 static ff_stack_T *
Bram Moolenaar9b578142016-01-30 19:39:49 +01005270ff_pop(ff_search_ctx_T *search_ctx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005271{
5272 ff_stack_T *sptr;
5273
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005274 sptr = search_ctx->ffsc_stack_ptr;
5275 if (search_ctx->ffsc_stack_ptr != NULL)
5276 search_ctx->ffsc_stack_ptr = search_ctx->ffsc_stack_ptr->ffs_prev;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005277
5278 return sptr;
5279}
5280
5281/*
5282 * free the given stack element
5283 */
5284 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005285ff_free_stack_element(ff_stack_T *stack_ptr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005286{
5287 /* vim_free handles possible NULL pointers */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005288 vim_free(stack_ptr->ffs_fix_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005289#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005290 vim_free(stack_ptr->ffs_wc_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005291#endif
5292
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005293 if (stack_ptr->ffs_filearray != NULL)
5294 FreeWild(stack_ptr->ffs_filearray_size, stack_ptr->ffs_filearray);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005295
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005296 vim_free(stack_ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005297}
5298
5299/*
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005300 * Clear the search context, but NOT the visited list.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005301 */
5302 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005303ff_clear(ff_search_ctx_T *search_ctx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005304{
5305 ff_stack_T *sptr;
5306
5307 /* clear up stack */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005308 while ((sptr = ff_pop(search_ctx)) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005309 ff_free_stack_element(sptr);
5310
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005311 vim_free(search_ctx->ffsc_file_to_search);
5312 vim_free(search_ctx->ffsc_start_dir);
5313 vim_free(search_ctx->ffsc_fix_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005314#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005315 vim_free(search_ctx->ffsc_wc_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005316#endif
5317
5318#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005319 if (search_ctx->ffsc_stopdirs_v != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005320 {
5321 int i = 0;
5322
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005323 while (search_ctx->ffsc_stopdirs_v[i] != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005324 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005325 vim_free(search_ctx->ffsc_stopdirs_v[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005326 i++;
5327 }
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005328 vim_free(search_ctx->ffsc_stopdirs_v);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005329 }
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005330 search_ctx->ffsc_stopdirs_v = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005331#endif
5332
5333 /* reset everything */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005334 search_ctx->ffsc_file_to_search = NULL;
5335 search_ctx->ffsc_start_dir = NULL;
5336 search_ctx->ffsc_fix_path = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005337#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005338 search_ctx->ffsc_wc_path = NULL;
5339 search_ctx->ffsc_level = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005340#endif
5341}
5342
5343#ifdef FEAT_PATH_EXTRA
5344/*
5345 * check if the given path is in the stopdirs
5346 * returns TRUE if yes else FALSE
5347 */
5348 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01005349ff_path_in_stoplist(char_u *path, int path_len, char_u **stopdirs_v)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005350{
5351 int i = 0;
5352
5353 /* eat up trailing path separators, except the first */
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00005354 while (path_len > 1 && vim_ispathsep(path[path_len - 1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005355 path_len--;
5356
5357 /* if no path consider it as match */
5358 if (path_len == 0)
5359 return TRUE;
5360
5361 for (i = 0; stopdirs_v[i] != NULL; i++)
5362 {
5363 if ((int)STRLEN(stopdirs_v[i]) > path_len)
5364 {
5365 /* match for parent directory. So '/home' also matches
5366 * '/home/rks'. Check for PATHSEP in stopdirs_v[i], else
5367 * '/home/r' would also match '/home/rks'
5368 */
5369 if (fnamencmp(stopdirs_v[i], path, path_len) == 0
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00005370 && vim_ispathsep(stopdirs_v[i][path_len]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005371 return TRUE;
5372 }
5373 else
5374 {
5375 if (fnamecmp(stopdirs_v[i], path) == 0)
5376 return TRUE;
5377 }
5378 }
5379 return FALSE;
5380}
5381#endif
5382
5383#if defined(FEAT_SEARCHPATH) || defined(PROTO)
5384/*
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005385 * Find the file name "ptr[len]" in the path. Also finds directory names.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005386 *
5387 * On the first call set the parameter 'first' to TRUE to initialize
5388 * the search. For repeating calls to FALSE.
5389 *
5390 * Repeating calls will return other files called 'ptr[len]' from the path.
5391 *
5392 * Only on the first call 'ptr' and 'len' are used. For repeating calls they
5393 * don't need valid values.
5394 *
5395 * If nothing found on the first call the option FNAME_MESS will issue the
5396 * message:
5397 * 'Can't find file "<file>" in path'
5398 * On repeating calls:
5399 * 'No more file "<file>" found in path'
5400 *
5401 * options:
5402 * FNAME_MESS give error message when not found
5403 *
5404 * Uses NameBuff[]!
5405 *
5406 * Returns an allocated string for the file name. NULL for error.
5407 *
5408 */
5409 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01005410find_file_in_path(
5411 char_u *ptr, /* file name */
5412 int len, /* length of file name */
5413 int options,
5414 int first, /* use count'th matching file name */
5415 char_u *rel_fname) /* file name searching relative to */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005416{
5417 return find_file_in_path_option(ptr, len, options, first,
5418 *curbuf->b_p_path == NUL ? p_path : curbuf->b_p_path,
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005419 FINDFILE_BOTH, rel_fname, curbuf->b_p_sua);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005420}
5421
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005422static char_u *ff_file_to_find = NULL;
5423static void *fdip_search_ctx = NULL;
5424
5425#if defined(EXITFREE)
5426 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005427free_findfile(void)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005428{
5429 vim_free(ff_file_to_find);
5430 vim_findfile_cleanup(fdip_search_ctx);
5431}
5432#endif
5433
Bram Moolenaar071d4272004-06-13 20:20:40 +00005434/*
5435 * Find the directory name "ptr[len]" in the path.
5436 *
5437 * options:
5438 * FNAME_MESS give error message when not found
Bram Moolenaard45c07a2015-02-27 17:19:10 +01005439 * FNAME_UNESC unescape backslashes.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005440 *
5441 * Uses NameBuff[]!
5442 *
5443 * Returns an allocated string for the file name. NULL for error.
5444 */
5445 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01005446find_directory_in_path(
5447 char_u *ptr, /* file name */
5448 int len, /* length of file name */
5449 int options,
5450 char_u *rel_fname) /* file name searching relative to */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005451{
5452 return find_file_in_path_option(ptr, len, options, TRUE, p_cdpath,
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005453 FINDFILE_DIR, rel_fname, (char_u *)"");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005454}
5455
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00005456 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01005457find_file_in_path_option(
5458 char_u *ptr, /* file name */
5459 int len, /* length of file name */
5460 int options,
5461 int first, /* use count'th matching file name */
5462 char_u *path_option, /* p_path or p_cdpath */
5463 int find_what, /* FINDFILE_FILE, _DIR or _BOTH */
5464 char_u *rel_fname, /* file name we are looking relative to. */
5465 char_u *suffixes) /* list of suffixes, 'suffixesadd' option */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005466{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005467 static char_u *dir;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005468 static int did_findfile_init = FALSE;
5469 char_u save_char;
5470 char_u *file_name = NULL;
5471 char_u *buf = NULL;
5472 int rel_to_curdir;
5473#ifdef AMIGA
5474 struct Process *proc = (struct Process *)FindTask(0L);
5475 APTR save_winptr = proc->pr_WindowPtr;
5476
5477 /* Avoid a requester here for a volume that doesn't exist. */
5478 proc->pr_WindowPtr = (APTR)-1L;
5479#endif
5480
5481 if (first == TRUE)
5482 {
5483 /* copy file name into NameBuff, expanding environment variables */
5484 save_char = ptr[len];
5485 ptr[len] = NUL;
Bram Moolenaar58adb142016-01-16 21:50:51 +01005486 expand_env_esc(ptr, NameBuff, MAXPATHL, FALSE, TRUE, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005487 ptr[len] = save_char;
5488
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005489 vim_free(ff_file_to_find);
5490 ff_file_to_find = vim_strsave(NameBuff);
5491 if (ff_file_to_find == NULL) /* out of memory */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005492 {
5493 file_name = NULL;
5494 goto theend;
5495 }
Bram Moolenaard45c07a2015-02-27 17:19:10 +01005496 if (options & FNAME_UNESC)
5497 {
5498 /* Change all "\ " to " ". */
5499 for (ptr = ff_file_to_find; *ptr != NUL; ++ptr)
5500 if (ptr[0] == '\\' && ptr[1] == ' ')
5501 mch_memmove(ptr, ptr + 1, STRLEN(ptr));
5502 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005503 }
5504
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005505 rel_to_curdir = (ff_file_to_find[0] == '.'
5506 && (ff_file_to_find[1] == NUL
5507 || vim_ispathsep(ff_file_to_find[1])
5508 || (ff_file_to_find[1] == '.'
5509 && (ff_file_to_find[2] == NUL
5510 || vim_ispathsep(ff_file_to_find[2])))));
5511 if (vim_isAbsName(ff_file_to_find)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005512 /* "..", "../path", "." and "./path": don't use the path_option */
5513 || rel_to_curdir
Bram Moolenaar48e330a2016-02-23 14:53:34 +01005514#if defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005515 /* handle "\tmp" as absolute path */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005516 || vim_ispathsep(ff_file_to_find[0])
Bram Moolenaar21160b92009-11-11 15:56:10 +00005517 /* handle "c:name" as absolute path */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005518 || (ff_file_to_find[0] != NUL && ff_file_to_find[1] == ':')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005519#endif
5520#ifdef AMIGA
5521 /* handle ":tmp" as absolute path */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005522 || ff_file_to_find[0] == ':'
Bram Moolenaar071d4272004-06-13 20:20:40 +00005523#endif
5524 )
5525 {
5526 /*
5527 * Absolute path, no need to use "path_option".
5528 * If this is not a first call, return NULL. We already returned a
5529 * filename on the first call.
5530 */
5531 if (first == TRUE)
5532 {
5533 int l;
5534 int run;
5535
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005536 if (path_with_url(ff_file_to_find))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005537 {
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005538 file_name = vim_strsave(ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005539 goto theend;
5540 }
5541
5542 /* When FNAME_REL flag given first use the directory of the file.
5543 * Otherwise or when this fails use the current directory. */
5544 for (run = 1; run <= 2; ++run)
5545 {
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005546 l = (int)STRLEN(ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005547 if (run == 1
5548 && rel_to_curdir
5549 && (options & FNAME_REL)
5550 && rel_fname != NULL
5551 && STRLEN(rel_fname) + l < MAXPATHL)
5552 {
5553 STRCPY(NameBuff, rel_fname);
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005554 STRCPY(gettail(NameBuff), ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005555 l = (int)STRLEN(NameBuff);
5556 }
5557 else
5558 {
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005559 STRCPY(NameBuff, ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005560 run = 2;
5561 }
5562
5563 /* When the file doesn't exist, try adding parts of
5564 * 'suffixesadd'. */
Bram Moolenaar433f7c82006-03-21 21:29:36 +00005565 buf = suffixes;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005566 for (;;)
5567 {
Bram Moolenaar48e330a2016-02-23 14:53:34 +01005568 if (mch_getperm(NameBuff) >= 0
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005569 && (find_what == FINDFILE_BOTH
5570 || ((find_what == FINDFILE_DIR)
Bram Moolenaar48e330a2016-02-23 14:53:34 +01005571 == mch_isdir(NameBuff))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005572 {
5573 file_name = vim_strsave(NameBuff);
5574 goto theend;
5575 }
5576 if (*buf == NUL)
5577 break;
5578 copy_option_part(&buf, NameBuff + l, MAXPATHL - l, ",");
5579 }
5580 }
5581 }
5582 }
5583 else
5584 {
5585 /*
5586 * Loop over all paths in the 'path' or 'cdpath' option.
5587 * When "first" is set, first setup to the start of the option.
5588 * Otherwise continue to find the next match.
5589 */
5590 if (first == TRUE)
5591 {
5592 /* vim_findfile_free_visited can handle a possible NULL pointer */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005593 vim_findfile_free_visited(fdip_search_ctx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005594 dir = path_option;
5595 did_findfile_init = FALSE;
5596 }
5597
5598 for (;;)
5599 {
5600 if (did_findfile_init)
5601 {
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005602 file_name = vim_findfile(fdip_search_ctx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005603 if (file_name != NULL)
5604 break;
5605
5606 did_findfile_init = FALSE;
5607 }
5608 else
5609 {
5610 char_u *r_ptr;
5611
5612 if (dir == NULL || *dir == NUL)
5613 {
5614 /* We searched all paths of the option, now we can
5615 * free the search context. */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005616 vim_findfile_cleanup(fdip_search_ctx);
5617 fdip_search_ctx = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005618 break;
5619 }
5620
5621 if ((buf = alloc((int)(MAXPATHL))) == NULL)
5622 break;
5623
5624 /* copy next path */
5625 buf[0] = 0;
5626 copy_option_part(&dir, buf, MAXPATHL, " ,");
5627
5628#ifdef FEAT_PATH_EXTRA
5629 /* get the stopdir string */
5630 r_ptr = vim_findfile_stopdir(buf);
5631#else
5632 r_ptr = NULL;
5633#endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005634 fdip_search_ctx = vim_findfile_init(buf, ff_file_to_find,
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005635 r_ptr, 100, FALSE, find_what,
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005636 fdip_search_ctx, FALSE, rel_fname);
5637 if (fdip_search_ctx != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005638 did_findfile_init = TRUE;
5639 vim_free(buf);
5640 }
5641 }
5642 }
5643 if (file_name == NULL && (options & FNAME_MESS))
5644 {
5645 if (first == TRUE)
5646 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005647 if (find_what == FINDFILE_DIR)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005648 EMSG2(_("E344: Can't find directory \"%s\" in cdpath"),
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005649 ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005650 else
5651 EMSG2(_("E345: Can't find file \"%s\" in path"),
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005652 ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005653 }
5654 else
5655 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005656 if (find_what == FINDFILE_DIR)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005657 EMSG2(_("E346: No more directory \"%s\" found in cdpath"),
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005658 ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005659 else
5660 EMSG2(_("E347: No more file \"%s\" found in path"),
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005661 ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005662 }
5663 }
5664
5665theend:
5666#ifdef AMIGA
5667 proc->pr_WindowPtr = save_winptr;
5668#endif
5669 return file_name;
5670}
5671
5672#endif /* FEAT_SEARCHPATH */
5673
5674/*
5675 * Change directory to "new_dir". If FEAT_SEARCHPATH is defined, search
5676 * 'cdpath' for relative directory names, otherwise just mch_chdir().
5677 */
5678 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01005679vim_chdir(char_u *new_dir)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005680{
5681#ifndef FEAT_SEARCHPATH
5682 return mch_chdir((char *)new_dir);
5683#else
5684 char_u *dir_name;
5685 int r;
5686
5687 dir_name = find_directory_in_path(new_dir, (int)STRLEN(new_dir),
5688 FNAME_MESS, curbuf->b_ffname);
5689 if (dir_name == NULL)
5690 return -1;
5691 r = mch_chdir((char *)dir_name);
5692 vim_free(dir_name);
5693 return r;
5694#endif
5695}
5696
5697/*
Bram Moolenaarbbebc852005-07-18 21:47:53 +00005698 * Get user name from machine-specific function.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005699 * Returns the user name in "buf[len]".
Bram Moolenaarbbebc852005-07-18 21:47:53 +00005700 * Some systems are quite slow in obtaining the user name (Windows NT), thus
5701 * cache the result.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005702 * Returns OK or FAIL.
5703 */
5704 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01005705get_user_name(char_u *buf, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005706{
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005707 if (username == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005708 {
5709 if (mch_get_user_name(buf, len) == FAIL)
5710 return FAIL;
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005711 username = vim_strsave(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005712 }
5713 else
Bram Moolenaarbbebc852005-07-18 21:47:53 +00005714 vim_strncpy(buf, username, len - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005715 return OK;
5716}
5717
5718#ifndef HAVE_QSORT
5719/*
5720 * Our own qsort(), for systems that don't have it.
5721 * It's simple and slow. From the K&R C book.
5722 */
5723 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005724qsort(
5725 void *base,
5726 size_t elm_count,
5727 size_t elm_size,
5728 int (*cmp)(const void *, const void *))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005729{
5730 char_u *buf;
5731 char_u *p1;
5732 char_u *p2;
5733 int i, j;
5734 int gap;
5735
5736 buf = alloc((unsigned)elm_size);
5737 if (buf == NULL)
5738 return;
5739
5740 for (gap = elm_count / 2; gap > 0; gap /= 2)
5741 for (i = gap; i < elm_count; ++i)
5742 for (j = i - gap; j >= 0; j -= gap)
5743 {
5744 /* Compare the elements. */
5745 p1 = (char_u *)base + j * elm_size;
5746 p2 = (char_u *)base + (j + gap) * elm_size;
5747 if ((*cmp)((void *)p1, (void *)p2) <= 0)
5748 break;
Bram Moolenaar21160b92009-11-11 15:56:10 +00005749 /* Exchange the elements. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005750 mch_memmove(buf, p1, elm_size);
5751 mch_memmove(p1, p2, elm_size);
5752 mch_memmove(p2, buf, elm_size);
5753 }
5754
5755 vim_free(buf);
5756}
5757#endif
5758
Bram Moolenaar071d4272004-06-13 20:20:40 +00005759/*
5760 * Sort an array of strings.
5761 */
5762static int
5763#ifdef __BORLANDC__
5764_RTLENTRYF
5765#endif
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01005766sort_compare(const void *s1, const void *s2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005767
5768 static int
5769#ifdef __BORLANDC__
5770_RTLENTRYF
5771#endif
Bram Moolenaar9b578142016-01-30 19:39:49 +01005772sort_compare(const void *s1, const void *s2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005773{
5774 return STRCMP(*(char **)s1, *(char **)s2);
5775}
5776
5777 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01005778sort_strings(
5779 char_u **files,
5780 int count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005781{
5782 qsort((void *)files, (size_t)count, sizeof(char_u *), sort_compare);
5783}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005784
5785#if !defined(NO_EXPANDPATH) || defined(PROTO)
5786/*
5787 * Compare path "p[]" to "q[]".
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005788 * If "maxlen" >= 0 compare "p[maxlen]" to "q[maxlen]"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005789 * Return value like strcmp(p, q), but consider path separators.
5790 */
5791 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01005792pathcmp(const char *p, const char *q, int maxlen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005793{
Bram Moolenaarf6470c22015-08-25 16:31:40 +02005794 int i, j;
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02005795 int c1, c2;
Bram Moolenaar86b68352004-12-27 21:59:20 +00005796 const char *s = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005797
Bram Moolenaarf6470c22015-08-25 16:31:40 +02005798 for (i = 0, j = 0; maxlen < 0 || (i < maxlen && j < maxlen);)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005799 {
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02005800 c1 = PTR2CHAR((char_u *)p + i);
Bram Moolenaarf6470c22015-08-25 16:31:40 +02005801 c2 = PTR2CHAR((char_u *)q + j);
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02005802
Bram Moolenaar071d4272004-06-13 20:20:40 +00005803 /* End of "p": check if "q" also ends or just has a slash. */
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02005804 if (c1 == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005805 {
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02005806 if (c2 == NUL) /* full match */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005807 return 0;
5808 s = q;
Bram Moolenaarf6470c22015-08-25 16:31:40 +02005809 i = j;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005810 break;
5811 }
5812
5813 /* End of "q": check if "p" just has a slash. */
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02005814 if (c2 == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005815 {
5816 s = p;
5817 break;
5818 }
5819
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02005820 if ((p_fic ? MB_TOUPPER(c1) != MB_TOUPPER(c2) : c1 != c2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005821#ifdef BACKSLASH_IN_FILENAME
5822 /* consider '/' and '\\' to be equal */
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02005823 && !((c1 == '/' && c2 == '\\')
5824 || (c1 == '\\' && c2 == '/'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005825#endif
5826 )
5827 {
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02005828 if (vim_ispathsep(c1))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005829 return -1;
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02005830 if (vim_ispathsep(c2))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005831 return 1;
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02005832 return p_fic ? MB_TOUPPER(c1) - MB_TOUPPER(c2)
5833 : c1 - c2; /* no match */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005834 }
Bram Moolenaarf6470c22015-08-25 16:31:40 +02005835
5836 i += MB_PTR2LEN((char_u *)p + i);
5837 j += MB_PTR2LEN((char_u *)q + j);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005838 }
Bram Moolenaarf6470c22015-08-25 16:31:40 +02005839 if (s == NULL) /* "i" or "j" ran into "maxlen" */
Bram Moolenaar86b68352004-12-27 21:59:20 +00005840 return 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005841
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02005842 c1 = PTR2CHAR((char_u *)s + i);
5843 c2 = PTR2CHAR((char_u *)s + i + MB_PTR2LEN((char_u *)s + i));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005844 /* ignore a trailing slash, but not "//" or ":/" */
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02005845 if (c2 == NUL
Bram Moolenaar86b68352004-12-27 21:59:20 +00005846 && i > 0
5847 && !after_pathsep((char_u *)s, (char_u *)s + i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005848#ifdef BACKSLASH_IN_FILENAME
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02005849 && (c1 == '/' || c1 == '\\')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005850#else
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02005851 && c1 == '/'
Bram Moolenaar071d4272004-06-13 20:20:40 +00005852#endif
Bram Moolenaar86b68352004-12-27 21:59:20 +00005853 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00005854 return 0; /* match with trailing slash */
5855 if (s == q)
5856 return -1; /* no match */
5857 return 1;
5858}
5859#endif
5860
Bram Moolenaar071d4272004-06-13 20:20:40 +00005861/*
5862 * The putenv() implementation below comes from the "screen" program.
5863 * Included with permission from Juergen Weigert.
5864 * See pty.c for the copyright notice.
5865 */
5866
5867/*
5868 * putenv -- put value into environment
5869 *
5870 * Usage: i = putenv (string)
5871 * int i;
5872 * char *string;
5873 *
5874 * where string is of the form <name>=<value>.
5875 * Putenv returns 0 normally, -1 on error (not enough core for malloc).
5876 *
5877 * Putenv may need to add a new name into the environment, or to
5878 * associate a value longer than the current value with a particular
5879 * name. So, to make life simpler, putenv() copies your entire
5880 * environment into the heap (i.e. malloc()) from the stack
5881 * (i.e. where it resides when your process is initiated) the first
5882 * time you call it.
5883 *
5884 * (history removed, not very interesting. See the "screen" sources.)
5885 */
5886
5887#if !defined(HAVE_SETENV) && !defined(HAVE_PUTENV)
5888
5889#define EXTRASIZE 5 /* increment to add to env. size */
5890
5891static int envsize = -1; /* current size of environment */
5892#ifndef MACOS_CLASSIC
5893extern
5894#endif
5895 char **environ; /* the global which is your env. */
5896
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01005897static int findenv(char *name); /* look for a name in the env. */
5898static int newenv(void); /* copy env. from stack to heap */
5899static int moreenv(void); /* incr. size of env. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005900
5901 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01005902putenv(const char *string)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005903{
5904 int i;
5905 char *p;
5906
5907 if (envsize < 0)
5908 { /* first time putenv called */
5909 if (newenv() < 0) /* copy env. to heap */
5910 return -1;
5911 }
5912
5913 i = findenv((char *)string); /* look for name in environment */
5914
5915 if (i < 0)
5916 { /* name must be added */
5917 for (i = 0; environ[i]; i++);
5918 if (i >= (envsize - 1))
5919 { /* need new slot */
5920 if (moreenv() < 0)
5921 return -1;
5922 }
5923 p = (char *)alloc((unsigned)(strlen(string) + 1));
5924 if (p == NULL) /* not enough core */
5925 return -1;
5926 environ[i + 1] = 0; /* new end of env. */
5927 }
5928 else
5929 { /* name already in env. */
5930 p = vim_realloc(environ[i], strlen(string) + 1);
5931 if (p == NULL)
5932 return -1;
5933 }
5934 sprintf(p, "%s", string); /* copy into env. */
5935 environ[i] = p;
5936
5937 return 0;
5938}
5939
5940 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01005941findenv(char *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005942{
5943 char *namechar, *envchar;
5944 int i, found;
5945
5946 found = 0;
5947 for (i = 0; environ[i] && !found; i++)
5948 {
5949 envchar = environ[i];
5950 namechar = name;
5951 while (*namechar && *namechar != '=' && (*namechar == *envchar))
5952 {
5953 namechar++;
5954 envchar++;
5955 }
5956 found = ((*namechar == '\0' || *namechar == '=') && *envchar == '=');
5957 }
5958 return found ? i - 1 : -1;
5959}
5960
5961 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01005962newenv(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005963{
5964 char **env, *elem;
5965 int i, esize;
5966
5967#ifdef MACOS
5968 /* for Mac a new, empty environment is created */
5969 i = 0;
5970#else
5971 for (i = 0; environ[i]; i++)
5972 ;
5973#endif
5974 esize = i + EXTRASIZE + 1;
5975 env = (char **)alloc((unsigned)(esize * sizeof (elem)));
5976 if (env == NULL)
5977 return -1;
5978
5979#ifndef MACOS
5980 for (i = 0; environ[i]; i++)
5981 {
5982 elem = (char *)alloc((unsigned)(strlen(environ[i]) + 1));
5983 if (elem == NULL)
5984 return -1;
5985 env[i] = elem;
5986 strcpy(elem, environ[i]);
5987 }
5988#endif
5989
5990 env[i] = 0;
5991 environ = env;
5992 envsize = esize;
5993 return 0;
5994}
5995
5996 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01005997moreenv(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005998{
5999 int esize;
6000 char **env;
6001
6002 esize = envsize + EXTRASIZE;
6003 env = (char **)vim_realloc((char *)environ, esize * sizeof (*env));
6004 if (env == 0)
6005 return -1;
6006 environ = env;
6007 envsize = esize;
6008 return 0;
6009}
6010
6011# ifdef USE_VIMPTY_GETENV
6012 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01006013vimpty_getenv(const char_u *string)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006014{
6015 int i;
6016 char_u *p;
6017
6018 if (envsize < 0)
6019 return NULL;
6020
6021 i = findenv((char *)string);
6022
6023 if (i < 0)
6024 return NULL;
6025
6026 p = vim_strchr((char_u *)environ[i], '=');
6027 return (p + 1);
6028}
6029# endif
6030
6031#endif /* !defined(HAVE_SETENV) && !defined(HAVE_PUTENV) */
Bram Moolenaarc4a06d32005-06-07 21:04:49 +00006032
Bram Moolenaarc4956c82006-03-12 21:58:43 +00006033#if defined(FEAT_EVAL) || defined(FEAT_SPELL) || defined(PROTO)
Bram Moolenaarc4a06d32005-06-07 21:04:49 +00006034/*
6035 * Return 0 for not writable, 1 for writable file, 2 for a dir which we have
6036 * rights to write into.
6037 */
6038 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01006039filewritable(char_u *fname)
Bram Moolenaarc4a06d32005-06-07 21:04:49 +00006040{
6041 int retval = 0;
6042#if defined(UNIX) || defined(VMS)
6043 int perm = 0;
6044#endif
6045
6046#if defined(UNIX) || defined(VMS)
6047 perm = mch_getperm(fname);
6048#endif
6049#ifndef MACOS_CLASSIC /* TODO: get either mch_writable or mch_access */
6050 if (
6051# ifdef WIN3264
6052 mch_writable(fname) &&
6053# else
6054# if defined(UNIX) || defined(VMS)
6055 (perm & 0222) &&
6056# endif
6057# endif
6058 mch_access((char *)fname, W_OK) == 0
6059 )
6060#endif
6061 {
6062 ++retval;
6063 if (mch_isdir(fname))
6064 ++retval;
6065 }
6066 return retval;
6067}
6068#endif
Bram Moolenaar6bab4d12005-06-16 21:53:56 +00006069
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006070#if defined(FEAT_SPELL) || defined(FEAT_PERSISTENT_UNDO) || defined(PROTO)
6071/*
6072 * Read 2 bytes from "fd" and turn them into an int, MSB first.
6073 */
6074 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01006075get2c(FILE *fd)
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006076{
Bram Moolenaar9db58062010-05-29 20:33:07 +02006077 int n;
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006078
6079 n = getc(fd);
6080 n = (n << 8) + getc(fd);
6081 return n;
6082}
6083
6084/*
6085 * Read 3 bytes from "fd" and turn them into an int, MSB first.
6086 */
6087 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01006088get3c(FILE *fd)
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006089{
Bram Moolenaar9db58062010-05-29 20:33:07 +02006090 int n;
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006091
6092 n = getc(fd);
6093 n = (n << 8) + getc(fd);
6094 n = (n << 8) + getc(fd);
6095 return n;
6096}
6097
6098/*
6099 * Read 4 bytes from "fd" and turn them into an int, MSB first.
6100 */
6101 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01006102get4c(FILE *fd)
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006103{
Bram Moolenaar95235e62013-09-08 16:07:07 +02006104 /* Use unsigned rather than int otherwise result is undefined
6105 * when left-shift sets the MSB. */
6106 unsigned n;
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006107
Bram Moolenaar95235e62013-09-08 16:07:07 +02006108 n = (unsigned)getc(fd);
6109 n = (n << 8) + (unsigned)getc(fd);
6110 n = (n << 8) + (unsigned)getc(fd);
6111 n = (n << 8) + (unsigned)getc(fd);
6112 return (int)n;
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006113}
6114
6115/*
Bram Moolenaarf4fba6d2016-06-26 16:44:24 +02006116 * Read 8 bytes from "fd" and turn them into a time_T, MSB first.
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006117 */
Bram Moolenaarf4fba6d2016-06-26 16:44:24 +02006118 time_T
Bram Moolenaar9b578142016-01-30 19:39:49 +01006119get8ctime(FILE *fd)
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006120{
Bram Moolenaarf4fba6d2016-06-26 16:44:24 +02006121 time_T n = 0;
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006122 int i;
6123
6124 for (i = 0; i < 8; ++i)
6125 n = (n << 8) + getc(fd);
6126 return n;
6127}
6128
6129/*
6130 * Read a string of length "cnt" from "fd" into allocated memory.
6131 * Returns NULL when out of memory or unable to read that many bytes.
6132 */
6133 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01006134read_string(FILE *fd, int cnt)
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006135{
6136 char_u *str;
6137 int i;
6138 int c;
6139
6140 /* allocate memory */
6141 str = alloc((unsigned)cnt + 1);
6142 if (str != NULL)
6143 {
6144 /* Read the string. Quit when running into the EOF. */
6145 for (i = 0; i < cnt; ++i)
6146 {
6147 c = getc(fd);
6148 if (c == EOF)
6149 {
6150 vim_free(str);
6151 return NULL;
6152 }
6153 str[i] = c;
6154 }
6155 str[i] = NUL;
6156 }
6157 return str;
6158}
6159
6160/*
6161 * Write a number to file "fd", MSB first, in "len" bytes.
6162 */
6163 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01006164put_bytes(FILE *fd, long_u nr, int len)
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006165{
6166 int i;
6167
6168 for (i = len - 1; i >= 0; --i)
6169 if (putc((int)(nr >> (i * 8)), fd) == EOF)
6170 return FAIL;
6171 return OK;
6172}
6173
6174#ifdef _MSC_VER
6175# if (_MSC_VER <= 1200)
6176/* This line is required for VC6 without the service pack. Also see the
6177 * matching #pragma below. */
6178 # pragma optimize("", off)
6179# endif
6180#endif
6181
6182/*
Bram Moolenaarf4fba6d2016-06-26 16:44:24 +02006183 * Write time_T to file "fd" in 8 bytes.
Bram Moolenaar285bf842016-01-07 22:34:01 +01006184 * Returns FAIL when the write failed.
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006185 */
Bram Moolenaar285bf842016-01-07 22:34:01 +01006186 int
Bram Moolenaarf4fba6d2016-06-26 16:44:24 +02006187put_time(FILE *fd, time_T the_time)
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006188{
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02006189 char_u buf[8];
6190
6191 time_to_bytes(the_time, buf);
Bram Moolenaar285bf842016-01-07 22:34:01 +01006192 return fwrite(buf, (size_t)8, (size_t)1, fd) == 1 ? OK : FAIL;
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02006193}
6194
6195/*
Bram Moolenaarf4fba6d2016-06-26 16:44:24 +02006196 * Write time_T to "buf[8]".
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02006197 */
6198 void
Bram Moolenaarf4fba6d2016-06-26 16:44:24 +02006199time_to_bytes(time_T the_time, char_u *buf)
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02006200{
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006201 int c;
6202 int i;
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02006203 int bi = 0;
Bram Moolenaarf4fba6d2016-06-26 16:44:24 +02006204 time_T wtime = the_time;
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006205
Bram Moolenaarf4fba6d2016-06-26 16:44:24 +02006206 /* time_T can be up to 8 bytes in size, more than long_u, thus we
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006207 * can't use put_bytes() here.
6208 * Another problem is that ">>" may do an arithmetic shift that keeps the
Bram Moolenaar644fdff2010-05-30 13:26:21 +02006209 * sign. This happens for large values of wtime. A cast to long_u may
Bram Moolenaarf4fba6d2016-06-26 16:44:24 +02006210 * truncate if time_T is 8 bytes. So only use a cast when it is 4 bytes,
Bram Moolenaar644fdff2010-05-30 13:26:21 +02006211 * it's safe to assume that long_u is 4 bytes or more and when using 8
6212 * bytes the top bit won't be set. */
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006213 for (i = 7; i >= 0; --i)
6214 {
Bram Moolenaarf4fba6d2016-06-26 16:44:24 +02006215 if (i + 1 > (int)sizeof(time_T))
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006216 /* ">>" doesn't work well when shifting more bits than avail */
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02006217 buf[bi++] = 0;
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006218 else
6219 {
Bram Moolenaar644fdff2010-05-30 13:26:21 +02006220#if defined(SIZEOF_TIME_T) && SIZEOF_TIME_T > 4
Bram Moolenaarbbd6afe2010-06-02 20:32:23 +02006221 c = (int)(wtime >> (i * 8));
Bram Moolenaar644fdff2010-05-30 13:26:21 +02006222#else
Bram Moolenaarbbd6afe2010-06-02 20:32:23 +02006223 c = (int)((long_u)wtime >> (i * 8));
Bram Moolenaar644fdff2010-05-30 13:26:21 +02006224#endif
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02006225 buf[bi++] = c;
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006226 }
6227 }
6228}
6229
6230#ifdef _MSC_VER
6231# if (_MSC_VER <= 1200)
6232 # pragma optimize("", on)
6233# endif
6234#endif
6235
6236#endif
Bram Moolenaar10b7b392012-01-10 16:28:45 +01006237
6238#if (defined(FEAT_MBYTE) && defined(FEAT_QUICKFIX)) \
6239 || defined(FEAT_SPELL) || defined(PROTO)
6240/*
6241 * Return TRUE if string "s" contains a non-ASCII character (128 or higher).
6242 * When "s" is NULL FALSE is returned.
6243 */
6244 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01006245has_non_ascii(char_u *s)
Bram Moolenaar10b7b392012-01-10 16:28:45 +01006246{
6247 char_u *p;
6248
6249 if (s != NULL)
6250 for (p = s; *p != NUL; ++p)
6251 if (*p >= 128)
6252 return TRUE;
6253 return FALSE;
6254}
6255#endif
Bram Moolenaar93c88e02015-09-15 14:12:05 +02006256
6257#if defined(MESSAGE_QUEUE) || defined(PROTO)
6258/*
6259 * Process messages that have been queued for netbeans or clientserver.
Bram Moolenaar3a117e12016-10-30 21:57:52 +01006260 * Also check if any jobs have ended.
Bram Moolenaar93c88e02015-09-15 14:12:05 +02006261 * These functions can call arbitrary vimscript and should only be called when
6262 * it is safe to do so.
6263 */
6264 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01006265parse_queued_messages(void)
Bram Moolenaar93c88e02015-09-15 14:12:05 +02006266{
Bram Moolenaarb7522a22016-02-21 17:20:55 +01006267 /* For Win32 mch_breakcheck() does not check for input, do it here. */
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01006268# if defined(WIN32) && defined(FEAT_JOB_CHANNEL)
Bram Moolenaarb7522a22016-02-21 17:20:55 +01006269 channel_handle_events();
6270# endif
6271
Bram Moolenaar93c88e02015-09-15 14:12:05 +02006272# ifdef FEAT_NETBEANS_INTG
6273 /* Process the queued netbeans messages. */
6274 netbeans_parse_messages();
6275# endif
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01006276# ifdef FEAT_JOB_CHANNEL
Bram Moolenaar8b877ac2016-03-28 19:16:20 +02006277 /* Write any buffer lines still to be written. */
6278 channel_write_any_lines();
6279
Bram Moolenaar20fb9f32016-01-30 23:20:33 +01006280 /* Process the messages queued on channels. */
6281 channel_parse_messages();
6282# endif
Bram Moolenaar95346802015-09-15 15:57:29 +02006283# if defined(FEAT_CLIENTSERVER) && defined(FEAT_X11)
Bram Moolenaar93c88e02015-09-15 14:12:05 +02006284 /* Process the queued clientserver messages. */
6285 server_parse_messages();
6286# endif
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01006287# ifdef FEAT_JOB_CHANNEL
Bram Moolenaaree1cffc2016-02-21 19:14:41 +01006288 /* Check if any jobs have ended. */
6289 job_check_ended();
6290# endif
Bram Moolenaar93c88e02015-09-15 14:12:05 +02006291}
6292#endif
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01006293
Bram Moolenaar51628222016-12-01 23:03:28 +01006294#ifndef PROTO /* proto is defined in vim.h */
6295# ifdef ELAPSED_TIMEVAL
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01006296/*
6297 * Return time in msec since "start_tv".
6298 */
6299 long
6300elapsed(struct timeval *start_tv)
6301{
6302 struct timeval now_tv;
6303
6304 gettimeofday(&now_tv, NULL);
6305 return (now_tv.tv_sec - start_tv->tv_sec) * 1000L
6306 + (now_tv.tv_usec - start_tv->tv_usec) / 1000L;
6307}
Bram Moolenaar51628222016-12-01 23:03:28 +01006308# endif
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01006309
Bram Moolenaar51628222016-12-01 23:03:28 +01006310# ifdef ELAPSED_TICKCOUNT
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01006311/*
6312 * Return time in msec since "start_tick".
6313 */
6314 long
6315elapsed(DWORD start_tick)
6316{
6317 DWORD now = GetTickCount();
6318
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01006319 return (long)now - (long)start_tick;
6320}
Bram Moolenaar51628222016-12-01 23:03:28 +01006321# endif
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01006322#endif