blob: 1f8878f674e7d74d2b5c519b74099e04deefe78d [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001/* vi:set ts=8 sts=4 sw=4:
2 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
9
10/*
11 * misc2.c: Various functions.
12 */
13#include "vim.h"
14
Bram Moolenaarf461c8e2005-06-25 23:04:51 +000015static char_u *username = NULL; /* cached result of mch_get_user_name() */
16
17static char_u *ff_expand_buffer = NULL; /* used for expanding filenames */
18
Bram Moolenaar071d4272004-06-13 20:20:40 +000019#if defined(FEAT_VIRTUALEDIT) || defined(PROTO)
20static int coladvance2 __ARGS((pos_T *pos, int addspaces, int finetune, colnr_T wcol));
21
22/*
23 * Return TRUE if in the current mode we need to use virtual.
24 */
25 int
26virtual_active()
27{
28 /* While an operator is being executed we return "virtual_op", because
29 * VIsual_active has already been reset, thus we can't check for "block"
30 * being used. */
31 if (virtual_op != MAYBE)
32 return virtual_op;
33 return (ve_flags == VE_ALL
Bram Moolenaar071d4272004-06-13 20:20:40 +000034 || ((ve_flags & VE_BLOCK) && VIsual_active && VIsual_mode == Ctrl_V)
Bram Moolenaar071d4272004-06-13 20:20:40 +000035 || ((ve_flags & VE_INSERT) && (State & INSERT)));
36}
37
38/*
39 * Get the screen position of the cursor.
40 */
41 int
42getviscol()
43{
44 colnr_T x;
45
46 getvvcol(curwin, &curwin->w_cursor, &x, NULL, NULL);
47 return (int)x;
48}
49
50/*
51 * Get the screen position of character col with a coladd in the cursor line.
52 */
53 int
54getviscol2(col, coladd)
55 colnr_T col;
56 colnr_T coladd;
57{
58 colnr_T x;
59 pos_T pos;
60
61 pos.lnum = curwin->w_cursor.lnum;
62 pos.col = col;
63 pos.coladd = coladd;
64 getvvcol(curwin, &pos, &x, NULL, NULL);
65 return (int)x;
66}
67
68/*
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +000069 * Go to column "wcol", and add/insert white space as necessary to get the
Bram Moolenaar071d4272004-06-13 20:20:40 +000070 * cursor in that column.
71 * The caller must have saved the cursor line for undo!
72 */
73 int
74coladvance_force(wcol)
75 colnr_T wcol;
76{
77 int rc = coladvance2(&curwin->w_cursor, TRUE, FALSE, wcol);
78
79 if (wcol == MAXCOL)
80 curwin->w_valid &= ~VALID_VIRTCOL;
81 else
82 {
83 /* Virtcol is valid */
84 curwin->w_valid |= VALID_VIRTCOL;
85 curwin->w_virtcol = wcol;
86 }
87 return rc;
88}
89#endif
90
91/*
92 * Try to advance the Cursor to the specified screen column.
93 * If virtual editing: fine tune the cursor position.
94 * Note that all virtual positions off the end of a line should share
95 * a curwin->w_cursor.col value (n.b. this is equal to STRLEN(line)),
96 * beginning at coladd 0.
97 *
98 * return OK if desired column is reached, FAIL if not
99 */
100 int
101coladvance(wcol)
102 colnr_T wcol;
103{
104 int rc = getvpos(&curwin->w_cursor, wcol);
105
106 if (wcol == MAXCOL || rc == FAIL)
107 curwin->w_valid &= ~VALID_VIRTCOL;
Bram Moolenaardfccaf02004-12-31 20:56:11 +0000108 else if (*ml_get_cursor() != TAB)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000109 {
Bram Moolenaardfccaf02004-12-31 20:56:11 +0000110 /* Virtcol is valid when not on a TAB */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000111 curwin->w_valid |= VALID_VIRTCOL;
112 curwin->w_virtcol = wcol;
113 }
114 return rc;
115}
116
117/*
118 * Return in "pos" the position of the cursor advanced to screen column "wcol".
119 * return OK if desired column is reached, FAIL if not
120 */
121 int
122getvpos(pos, wcol)
123 pos_T *pos;
124 colnr_T wcol;
125{
126#ifdef FEAT_VIRTUALEDIT
127 return coladvance2(pos, FALSE, virtual_active(), wcol);
128}
129
130 static int
131coladvance2(pos, addspaces, finetune, wcol)
132 pos_T *pos;
133 int addspaces; /* change the text to achieve our goal? */
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +0000134 int finetune; /* change char offset for the exact column */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000135 colnr_T wcol; /* column to move to */
136{
137#endif
138 int idx;
139 char_u *ptr;
140 char_u *line;
141 colnr_T col = 0;
142 int csize = 0;
143 int one_more;
144#ifdef FEAT_LINEBREAK
145 int head = 0;
146#endif
147
Bram Moolenaarefd2bf12006-03-16 21:41:35 +0000148 one_more = (State & INSERT)
149 || restart_edit != NUL
Bram Moolenaarefd2bf12006-03-16 21:41:35 +0000150 || (VIsual_active && *p_sel != 'o')
Bram Moolenaarefd2bf12006-03-16 21:41:35 +0000151#ifdef FEAT_VIRTUALEDIT
Bram Moolenaar97b2ad32006-03-18 21:40:56 +0000152 || ((ve_flags & VE_ONEMORE) && wcol < MAXCOL)
Bram Moolenaarefd2bf12006-03-16 21:41:35 +0000153#endif
154 ;
Bram Moolenaara1381de2009-11-03 15:44:21 +0000155 line = ml_get_buf(curbuf, pos->lnum, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000156
157 if (wcol >= MAXCOL)
158 {
159 idx = (int)STRLEN(line) - 1 + one_more;
160 col = wcol;
161
162#ifdef FEAT_VIRTUALEDIT
163 if ((addspaces || finetune) && !VIsual_active)
164 {
165 curwin->w_curswant = linetabsize(line) + one_more;
166 if (curwin->w_curswant > 0)
167 --curwin->w_curswant;
168 }
169#endif
170 }
171 else
172 {
173#ifdef FEAT_VIRTUALEDIT
174 int width = W_WIDTH(curwin) - win_col_off(curwin);
175
Bram Moolenaarebefac62005-12-28 22:39:57 +0000176 if (finetune
Bram Moolenaar071d4272004-06-13 20:20:40 +0000177 && curwin->w_p_wrap
178# ifdef FEAT_VERTSPLIT
179 && curwin->w_width != 0
180# endif
181 && wcol >= (colnr_T)width)
182 {
183 csize = linetabsize(line);
184 if (csize > 0)
185 csize--;
186
Bram Moolenaarebefac62005-12-28 22:39:57 +0000187 if (wcol / width > (colnr_T)csize / width
188 && ((State & INSERT) == 0 || (int)wcol > csize + 1))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000189 {
190 /* In case of line wrapping don't move the cursor beyond the
Bram Moolenaarebefac62005-12-28 22:39:57 +0000191 * right screen edge. In Insert mode allow going just beyond
192 * the last character (like what happens when typing and
193 * reaching the right window edge). */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000194 wcol = (csize / width + 1) * width - 1;
195 }
196 }
197#endif
198
Bram Moolenaar071d4272004-06-13 20:20:40 +0000199 ptr = line;
200 while (col <= wcol && *ptr != NUL)
201 {
202 /* Count a tab for what it's worth (if list mode not on) */
203#ifdef FEAT_LINEBREAK
Bram Moolenaar597a4222014-06-25 14:39:50 +0200204 csize = win_lbr_chartabsize(curwin, line, ptr, col, &head);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000205 mb_ptr_adv(ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000206#else
Bram Moolenaar597a4222014-06-25 14:39:50 +0200207 csize = lbr_chartabsize_adv(line, &ptr, col);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000208#endif
209 col += csize;
210 }
211 idx = (int)(ptr - line);
212 /*
213 * Handle all the special cases. The virtual_active() check
214 * is needed to ensure that a virtual position off the end of
215 * a line has the correct indexing. The one_more comparison
216 * replaces an explicit add of one_more later on.
217 */
218 if (col > wcol || (!virtual_active() && one_more == 0))
219 {
220 idx -= 1;
221# ifdef FEAT_LINEBREAK
222 /* Don't count the chars from 'showbreak'. */
223 csize -= head;
224# endif
225 col -= csize;
226 }
227
228#ifdef FEAT_VIRTUALEDIT
229 if (virtual_active()
230 && addspaces
231 && ((col != wcol && col != wcol + 1) || csize > 1))
232 {
233 /* 'virtualedit' is set: The difference between wcol and col is
234 * filled with spaces. */
235
236 if (line[idx] == NUL)
237 {
238 /* Append spaces */
239 int correct = wcol - col;
240 char_u *newline = alloc(idx + correct + 1);
241 int t;
242
243 if (newline == NULL)
244 return FAIL;
245
246 for (t = 0; t < idx; ++t)
247 newline[t] = line[t];
248
249 for (t = 0; t < correct; ++t)
250 newline[t + idx] = ' ';
251
252 newline[idx + correct] = NUL;
253
254 ml_replace(pos->lnum, newline, FALSE);
255 changed_bytes(pos->lnum, (colnr_T)idx);
256 idx += correct;
257 col = wcol;
258 }
259 else
260 {
261 /* Break a tab */
262 int linelen = (int)STRLEN(line);
263 int correct = wcol - col - csize + 1; /* negative!! */
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000264 char_u *newline;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000265 int t, s = 0;
266 int v;
267
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000268 if (-correct > csize)
269 return FAIL;
270
271 newline = alloc(linelen + csize);
272 if (newline == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000273 return FAIL;
274
275 for (t = 0; t < linelen; t++)
276 {
277 if (t != idx)
278 newline[s++] = line[t];
279 else
280 for (v = 0; v < csize; v++)
281 newline[s++] = ' ';
282 }
283
284 newline[linelen + csize - 1] = NUL;
285
286 ml_replace(pos->lnum, newline, FALSE);
287 changed_bytes(pos->lnum, idx);
288 idx += (csize - 1 + correct);
289 col += correct;
290 }
291 }
292#endif
293 }
294
295 if (idx < 0)
296 pos->col = 0;
297 else
298 pos->col = idx;
299
300#ifdef FEAT_VIRTUALEDIT
301 pos->coladd = 0;
302
303 if (finetune)
304 {
305 if (wcol == MAXCOL)
306 {
307 /* The width of the last character is used to set coladd. */
308 if (!one_more)
309 {
310 colnr_T scol, ecol;
311
312 getvcol(curwin, pos, &scol, NULL, &ecol);
313 pos->coladd = ecol - scol;
314 }
315 }
316 else
317 {
318 int b = (int)wcol - (int)col;
319
320 /* The difference between wcol and col is used to set coladd. */
321 if (b > 0 && b < (MAXCOL - 2 * W_WIDTH(curwin)))
322 pos->coladd = b;
323
324 col += b;
325 }
326 }
327#endif
328
329#ifdef FEAT_MBYTE
Bram Moolenaara1381de2009-11-03 15:44:21 +0000330 /* prevent from moving onto a trail byte */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000331 if (has_mbyte)
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200332 mb_adjustpos(curbuf, pos);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000333#endif
334
335 if (col < wcol)
336 return FAIL;
337 return OK;
338}
339
340/*
Bram Moolenaar446cb832008-06-24 21:56:24 +0000341 * Increment the cursor position. See inc() for return values.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000342 */
343 int
344inc_cursor()
345{
346 return inc(&curwin->w_cursor);
347}
348
Bram Moolenaar446cb832008-06-24 21:56:24 +0000349/*
350 * Increment the line pointer "lp" crossing line boundaries as necessary.
351 * Return 1 when going to the next line.
352 * Return 2 when moving forward onto a NUL at the end of the line).
353 * Return -1 when at the end of file.
354 * Return 0 otherwise.
355 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000356 int
357inc(lp)
358 pos_T *lp;
359{
360 char_u *p = ml_get_pos(lp);
361
362 if (*p != NUL) /* still within line, move to next char (may be NUL) */
363 {
364#ifdef FEAT_MBYTE
365 if (has_mbyte)
366 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000367 int l = (*mb_ptr2len)(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000368
369 lp->col += l;
370 return ((p[l] != NUL) ? 0 : 2);
371 }
372#endif
373 lp->col++;
374#ifdef FEAT_VIRTUALEDIT
375 lp->coladd = 0;
376#endif
377 return ((p[1] != NUL) ? 0 : 2);
378 }
379 if (lp->lnum != curbuf->b_ml.ml_line_count) /* there is a next line */
380 {
381 lp->col = 0;
382 lp->lnum++;
383#ifdef FEAT_VIRTUALEDIT
384 lp->coladd = 0;
385#endif
386 return 1;
387 }
388 return -1;
389}
390
391/*
392 * incl(lp): same as inc(), but skip the NUL at the end of non-empty lines
393 */
394 int
395incl(lp)
396 pos_T *lp;
397{
398 int r;
399
400 if ((r = inc(lp)) >= 1 && lp->col)
401 r = inc(lp);
402 return r;
403}
404
405/*
406 * dec(p)
407 *
408 * Decrement the line pointer 'p' crossing line boundaries as necessary.
409 * Return 1 when crossing a line, -1 when at start of file, 0 otherwise.
410 */
411 int
412dec_cursor()
413{
414 return dec(&curwin->w_cursor);
415}
416
417 int
418dec(lp)
419 pos_T *lp;
420{
421 char_u *p;
422
423#ifdef FEAT_VIRTUALEDIT
424 lp->coladd = 0;
425#endif
426 if (lp->col > 0) /* still within line */
427 {
428 lp->col--;
429#ifdef FEAT_MBYTE
430 if (has_mbyte)
431 {
432 p = ml_get(lp->lnum);
433 lp->col -= (*mb_head_off)(p, p + lp->col);
434 }
435#endif
436 return 0;
437 }
438 if (lp->lnum > 1) /* there is a prior line */
439 {
440 lp->lnum--;
441 p = ml_get(lp->lnum);
442 lp->col = (colnr_T)STRLEN(p);
443#ifdef FEAT_MBYTE
444 if (has_mbyte)
445 lp->col -= (*mb_head_off)(p, p + lp->col);
446#endif
447 return 1;
448 }
449 return -1; /* at start of file */
450}
451
452/*
453 * decl(lp): same as dec(), but skip the NUL at the end of non-empty lines
454 */
455 int
456decl(lp)
457 pos_T *lp;
458{
459 int r;
460
461 if ((r = dec(lp)) == 1 && lp->col)
462 r = dec(lp);
463 return r;
464}
465
466/*
Bram Moolenaar64486672010-05-16 15:46:46 +0200467 * Get the line number relative to the current cursor position, i.e. the
468 * difference between line number and cursor position. Only look for lines that
469 * can be visible, folded lines don't count.
470 */
471 linenr_T
472get_cursor_rel_lnum(wp, lnum)
473 win_T *wp;
474 linenr_T lnum; /* line number to get the result for */
475{
476 linenr_T cursor = wp->w_cursor.lnum;
477 linenr_T retval = 0;
478
479#ifdef FEAT_FOLDING
480 if (hasAnyFolding(wp))
481 {
482 if (lnum > cursor)
483 {
484 while (lnum > cursor)
485 {
Bram Moolenaar0bd7b3f2013-12-14 12:48:58 +0100486 (void)hasFoldingWin(wp, lnum, &lnum, NULL, TRUE, NULL);
Bram Moolenaar64486672010-05-16 15:46:46 +0200487 /* if lnum and cursor are in the same fold,
488 * now lnum <= cursor */
489 if (lnum > cursor)
490 retval++;
491 lnum--;
492 }
493 }
494 else if (lnum < cursor)
495 {
496 while (lnum < cursor)
497 {
Bram Moolenaar0bd7b3f2013-12-14 12:48:58 +0100498 (void)hasFoldingWin(wp, lnum, NULL, &lnum, TRUE, NULL);
Bram Moolenaar64486672010-05-16 15:46:46 +0200499 /* if lnum and cursor are in the same fold,
500 * now lnum >= cursor */
501 if (lnum < cursor)
502 retval--;
503 lnum++;
504 }
505 }
506 /* else if (lnum == cursor)
507 * retval = 0;
508 */
509 }
510 else
511#endif
512 retval = lnum - cursor;
513
514 return retval;
515}
516
517/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000518 * Make sure curwin->w_cursor.lnum is valid.
519 */
520 void
521check_cursor_lnum()
522{
523 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
524 {
525#ifdef FEAT_FOLDING
526 /* If there is a closed fold at the end of the file, put the cursor in
527 * its first line. Otherwise in the last line. */
528 if (!hasFolding(curbuf->b_ml.ml_line_count,
529 &curwin->w_cursor.lnum, NULL))
530#endif
531 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
532 }
533 if (curwin->w_cursor.lnum <= 0)
534 curwin->w_cursor.lnum = 1;
535}
536
537/*
538 * Make sure curwin->w_cursor.col is valid.
539 */
540 void
541check_cursor_col()
542{
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200543 check_cursor_col_win(curwin);
544}
545
546/*
547 * Make sure win->w_cursor.col is valid.
548 */
549 void
550check_cursor_col_win(win)
551 win_T *win;
552{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000553 colnr_T len;
554#ifdef FEAT_VIRTUALEDIT
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200555 colnr_T oldcol = win->w_cursor.col;
556 colnr_T oldcoladd = win->w_cursor.col + win->w_cursor.coladd;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000557#endif
558
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200559 len = (colnr_T)STRLEN(ml_get_buf(win->w_buffer, win->w_cursor.lnum, FALSE));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000560 if (len == 0)
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200561 win->w_cursor.col = 0;
562 else if (win->w_cursor.col >= len)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000563 {
Bram Moolenaar33f54432008-01-04 20:25:44 +0000564 /* Allow cursor past end-of-line when:
565 * - in Insert mode or restarting Insert mode
566 * - in Visual mode and 'selection' isn't "old"
567 * - 'virtualedit' is set */
Bram Moolenaarebefac62005-12-28 22:39:57 +0000568 if ((State & INSERT) || restart_edit
Bram Moolenaar071d4272004-06-13 20:20:40 +0000569 || (VIsual_active && *p_sel != 'o')
Bram Moolenaar33f54432008-01-04 20:25:44 +0000570#ifdef FEAT_VIRTUALEDIT
571 || (ve_flags & VE_ONEMORE)
572#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000573 || virtual_active())
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200574 win->w_cursor.col = len;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000575 else
Bram Moolenaar87c19962007-04-26 08:54:21 +0000576 {
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200577 win->w_cursor.col = len - 1;
Bram Moolenaar87c19962007-04-26 08:54:21 +0000578#ifdef FEAT_MBYTE
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200579 /* Move the cursor to the head byte. */
Bram Moolenaar87c19962007-04-26 08:54:21 +0000580 if (has_mbyte)
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200581 mb_adjustpos(win->w_buffer, &win->w_cursor);
Bram Moolenaar87c19962007-04-26 08:54:21 +0000582#endif
583 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000584 }
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200585 else if (win->w_cursor.col < 0)
586 win->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000587
588#ifdef FEAT_VIRTUALEDIT
589 /* If virtual editing is on, we can leave the cursor on the old position,
590 * only we must set it to virtual. But don't do it when at the end of the
591 * line. */
592 if (oldcol == MAXCOL)
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200593 win->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000594 else if (ve_flags == VE_ALL)
Bram Moolenaar552c8a52009-03-11 16:29:20 +0000595 {
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200596 if (oldcoladd > win->w_cursor.col)
597 win->w_cursor.coladd = oldcoladd - win->w_cursor.col;
Bram Moolenaar552c8a52009-03-11 16:29:20 +0000598 else
599 /* avoid weird number when there is a miscalculation or overflow */
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200600 win->w_cursor.coladd = 0;
Bram Moolenaar552c8a52009-03-11 16:29:20 +0000601 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000602#endif
603}
604
605/*
606 * make sure curwin->w_cursor in on a valid character
607 */
608 void
609check_cursor()
610{
611 check_cursor_lnum();
612 check_cursor_col();
613}
614
615#if defined(FEAT_TEXTOBJ) || defined(PROTO)
616/*
617 * Make sure curwin->w_cursor is not on the NUL at the end of the line.
618 * Allow it when in Visual mode and 'selection' is not "old".
619 */
620 void
621adjust_cursor_col()
622{
623 if (curwin->w_cursor.col > 0
Bram Moolenaar071d4272004-06-13 20:20:40 +0000624 && (!VIsual_active || *p_sel == 'o')
Bram Moolenaar071d4272004-06-13 20:20:40 +0000625 && gchar_cursor() == NUL)
626 --curwin->w_cursor.col;
627}
628#endif
629
630/*
631 * When curwin->w_leftcol has changed, adjust the cursor position.
632 * Return TRUE if the cursor was moved.
633 */
634 int
635leftcol_changed()
636{
637 long lastcol;
638 colnr_T s, e;
639 int retval = FALSE;
640
641 changed_cline_bef_curs();
642 lastcol = curwin->w_leftcol + W_WIDTH(curwin) - curwin_col_off() - 1;
643 validate_virtcol();
644
645 /*
646 * If the cursor is right or left of the screen, move it to last or first
647 * character.
648 */
649 if (curwin->w_virtcol > (colnr_T)(lastcol - p_siso))
650 {
651 retval = TRUE;
652 coladvance((colnr_T)(lastcol - p_siso));
653 }
654 else if (curwin->w_virtcol < curwin->w_leftcol + p_siso)
655 {
656 retval = TRUE;
657 (void)coladvance((colnr_T)(curwin->w_leftcol + p_siso));
658 }
659
660 /*
661 * If the start of the character under the cursor is not on the screen,
662 * advance the cursor one more char. If this fails (last char of the
663 * line) adjust the scrolling.
664 */
665 getvvcol(curwin, &curwin->w_cursor, &s, NULL, &e);
666 if (e > (colnr_T)lastcol)
667 {
668 retval = TRUE;
669 coladvance(s - 1);
670 }
671 else if (s < curwin->w_leftcol)
672 {
673 retval = TRUE;
674 if (coladvance(e + 1) == FAIL) /* there isn't another character */
675 {
676 curwin->w_leftcol = s; /* adjust w_leftcol instead */
677 changed_cline_bef_curs();
678 }
679 }
680
681 if (retval)
682 curwin->w_set_curswant = TRUE;
683 redraw_later(NOT_VALID);
684 return retval;
685}
686
687/**********************************************************************
688 * Various routines dealing with allocation and deallocation of memory.
689 */
690
691#if defined(MEM_PROFILE) || defined(PROTO)
692
693# define MEM_SIZES 8200
694static long_u mem_allocs[MEM_SIZES];
695static long_u mem_frees[MEM_SIZES];
696static long_u mem_allocated;
697static long_u mem_freed;
698static long_u mem_peak;
699static long_u num_alloc;
700static long_u num_freed;
701
702static void mem_pre_alloc_s __ARGS((size_t *sizep));
703static void mem_pre_alloc_l __ARGS((long_u *sizep));
704static void mem_post_alloc __ARGS((void **pp, size_t size));
705static void mem_pre_free __ARGS((void **pp));
706
707 static void
708mem_pre_alloc_s(sizep)
709 size_t *sizep;
710{
711 *sizep += sizeof(size_t);
712}
713
714 static void
715mem_pre_alloc_l(sizep)
716 long_u *sizep;
717{
718 *sizep += sizeof(size_t);
719}
720
721 static void
722mem_post_alloc(pp, size)
723 void **pp;
724 size_t size;
725{
726 if (*pp == NULL)
727 return;
728 size -= sizeof(size_t);
729 *(long_u *)*pp = size;
730 if (size <= MEM_SIZES-1)
731 mem_allocs[size-1]++;
732 else
733 mem_allocs[MEM_SIZES-1]++;
734 mem_allocated += size;
735 if (mem_allocated - mem_freed > mem_peak)
736 mem_peak = mem_allocated - mem_freed;
737 num_alloc++;
738 *pp = (void *)((char *)*pp + sizeof(size_t));
739}
740
741 static void
742mem_pre_free(pp)
743 void **pp;
744{
745 long_u size;
746
747 *pp = (void *)((char *)*pp - sizeof(size_t));
748 size = *(size_t *)*pp;
749 if (size <= MEM_SIZES-1)
750 mem_frees[size-1]++;
751 else
752 mem_frees[MEM_SIZES-1]++;
753 mem_freed += size;
754 num_freed++;
755}
756
757/*
758 * called on exit via atexit()
759 */
760 void
761vim_mem_profile_dump()
762{
763 int i, j;
764
765 printf("\r\n");
766 j = 0;
767 for (i = 0; i < MEM_SIZES - 1; i++)
768 {
769 if (mem_allocs[i] || mem_frees[i])
770 {
771 if (mem_frees[i] > mem_allocs[i])
772 printf("\r\n%s", _("ERROR: "));
773 printf("[%4d / %4lu-%-4lu] ", i + 1, mem_allocs[i], mem_frees[i]);
774 j++;
775 if (j > 3)
776 {
777 j = 0;
778 printf("\r\n");
779 }
780 }
781 }
782
783 i = MEM_SIZES - 1;
784 if (mem_allocs[i])
785 {
786 printf("\r\n");
787 if (mem_frees[i] > mem_allocs[i])
Bram Moolenaar2f1e0502010-08-13 11:18:02 +0200788 puts(_("ERROR: "));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000789 printf("[>%d / %4lu-%-4lu]", i, mem_allocs[i], mem_frees[i]);
790 }
791
792 printf(_("\n[bytes] total alloc-freed %lu-%lu, in use %lu, peak use %lu\n"),
793 mem_allocated, mem_freed, mem_allocated - mem_freed, mem_peak);
794 printf(_("[calls] total re/malloc()'s %lu, total free()'s %lu\n\n"),
795 num_alloc, num_freed);
796}
797
798#endif /* MEM_PROFILE */
799
800/*
801 * Some memory is reserved for error messages and for being able to
802 * call mf_release_all(), which needs some memory for mf_trans_add().
803 */
804#if defined(MSDOS) && !defined(DJGPP)
805# define SMALL_MEM
806# define KEEP_ROOM 8192L
807#else
808# define KEEP_ROOM (2 * 8192L)
809#endif
Bram Moolenaar11b73d62012-06-29 15:51:30 +0200810#define KEEP_ROOM_KB (KEEP_ROOM / 1024L)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000811
812/*
Bram Moolenaar2a329742008-04-01 12:53:43 +0000813 * Note: if unsigned is 16 bits we can only allocate up to 64K with alloc().
Bram Moolenaar071d4272004-06-13 20:20:40 +0000814 * Use lalloc for larger blocks.
815 */
816 char_u *
817alloc(size)
818 unsigned size;
819{
820 return (lalloc((long_u)size, TRUE));
821}
822
823/*
824 * Allocate memory and set all bytes to zero.
825 */
826 char_u *
827alloc_clear(size)
828 unsigned size;
829{
830 char_u *p;
831
Bram Moolenaar2f1e0502010-08-13 11:18:02 +0200832 p = lalloc((long_u)size, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000833 if (p != NULL)
834 (void)vim_memset(p, 0, (size_t)size);
835 return p;
836}
837
838/*
839 * alloc() with check for maximum line length
840 */
841 char_u *
842alloc_check(size)
843 unsigned size;
844{
845#if !defined(UNIX) && !defined(__EMX__)
846 if (sizeof(int) == 2 && size > 0x7fff)
847 {
848 /* Don't hide this message */
849 emsg_silent = 0;
850 EMSG(_("E340: Line is becoming too long"));
851 return NULL;
852 }
853#endif
854 return (lalloc((long_u)size, TRUE));
855}
856
857/*
858 * Allocate memory like lalloc() and set all bytes to zero.
859 */
860 char_u *
861lalloc_clear(size, message)
862 long_u size;
863 int message;
864{
865 char_u *p;
866
867 p = (lalloc(size, message));
868 if (p != NULL)
869 (void)vim_memset(p, 0, (size_t)size);
870 return p;
871}
872
873/*
874 * Low level memory allocation function.
875 * This is used often, KEEP IT FAST!
876 */
877 char_u *
878lalloc(size, message)
879 long_u size;
880 int message;
881{
882 char_u *p; /* pointer to new storage space */
883 static int releasing = FALSE; /* don't do mf_release_all() recursive */
884 int try_again;
885#if defined(HAVE_AVAIL_MEM) && !defined(SMALL_MEM)
886 static long_u allocated = 0; /* allocated since last avail check */
887#endif
888
889 /* Safety check for allocating zero bytes */
890 if (size == 0)
891 {
892 /* Don't hide this message */
893 emsg_silent = 0;
894 EMSGN(_("E341: Internal error: lalloc(%ld, )"), size);
895 return NULL;
896 }
897
898#ifdef MEM_PROFILE
899 mem_pre_alloc_l(&size);
900#endif
901
902#if defined(MSDOS) && !defined(DJGPP)
903 if (size >= 0xfff0) /* in MSDOS we can't deal with >64K blocks */
904 p = NULL;
905 else
906#endif
907
908 /*
909 * Loop when out of memory: Try to release some memfile blocks and
910 * if some blocks are released call malloc again.
911 */
912 for (;;)
913 {
914 /*
915 * Handle three kind of systems:
916 * 1. No check for available memory: Just return.
917 * 2. Slow check for available memory: call mch_avail_mem() after
918 * allocating KEEP_ROOM amount of memory.
919 * 3. Strict check for available memory: call mch_avail_mem()
920 */
921 if ((p = (char_u *)malloc((size_t)size)) != NULL)
922 {
923#ifndef HAVE_AVAIL_MEM
924 /* 1. No check for available memory: Just return. */
925 goto theend;
926#else
927# ifndef SMALL_MEM
928 /* 2. Slow check for available memory: call mch_avail_mem() after
929 * allocating (KEEP_ROOM / 2) amount of memory. */
930 allocated += size;
931 if (allocated < KEEP_ROOM / 2)
932 goto theend;
933 allocated = 0;
934# endif
935 /* 3. check for available memory: call mch_avail_mem() */
Bram Moolenaar11b73d62012-06-29 15:51:30 +0200936 if (mch_avail_mem(TRUE) < KEEP_ROOM_KB && !releasing)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000937 {
Bram Moolenaar5a221812008-11-12 12:08:45 +0000938 free((char *)p); /* System is low... no go! */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000939 p = NULL;
940 }
941 else
942 goto theend;
943#endif
944 }
945 /*
946 * Remember that mf_release_all() is being called to avoid an endless
947 * loop, because mf_release_all() may call alloc() recursively.
948 */
949 if (releasing)
950 break;
951 releasing = TRUE;
Bram Moolenaar661b1822005-07-28 22:36:45 +0000952
953 clear_sb_text(); /* free any scrollback text */
954 try_again = mf_release_all(); /* release as many blocks as possible */
Bram Moolenaar39a58ca2005-06-27 22:42:44 +0000955#ifdef FEAT_EVAL
Bram Moolenaar661b1822005-07-28 22:36:45 +0000956 try_again |= garbage_collect(); /* cleanup recursive lists/dicts */
Bram Moolenaar39a58ca2005-06-27 22:42:44 +0000957#endif
Bram Moolenaar661b1822005-07-28 22:36:45 +0000958
Bram Moolenaar071d4272004-06-13 20:20:40 +0000959 releasing = FALSE;
960 if (!try_again)
961 break;
962 }
963
964 if (message && p == NULL)
965 do_outofmem_msg(size);
966
967theend:
968#ifdef MEM_PROFILE
969 mem_post_alloc((void **)&p, (size_t)size);
970#endif
971 return p;
972}
973
974#if defined(MEM_PROFILE) || defined(PROTO)
975/*
976 * realloc() with memory profiling.
977 */
978 void *
979mem_realloc(ptr, size)
980 void *ptr;
981 size_t size;
982{
983 void *p;
984
985 mem_pre_free(&ptr);
986 mem_pre_alloc_s(&size);
987
988 p = realloc(ptr, size);
989
990 mem_post_alloc(&p, size);
991
992 return p;
993}
994#endif
995
996/*
997* Avoid repeating the error message many times (they take 1 second each).
998* Did_outofmem_msg is reset when a character is read.
999*/
1000 void
1001do_outofmem_msg(size)
1002 long_u size;
1003{
1004 if (!did_outofmem_msg)
1005 {
1006 /* Don't hide this message */
1007 emsg_silent = 0;
Bram Moolenaar79739e12011-10-26 11:41:00 +02001008
1009 /* Must come first to avoid coming back here when printing the error
1010 * message fails, e.g. when setting v:errmsg. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001011 did_outofmem_msg = TRUE;
Bram Moolenaar79739e12011-10-26 11:41:00 +02001012
1013 EMSGN(_("E342: Out of memory! (allocating %lu bytes)"), size);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001014 }
1015}
1016
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001017#if defined(EXITFREE) || defined(PROTO)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001018
1019# if defined(FEAT_SEARCHPATH)
1020static void free_findfile __ARGS((void));
1021# endif
1022
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001023/*
1024 * Free everything that we allocated.
1025 * Can be used to detect memory leaks, e.g., with ccmalloc.
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001026 * NOTE: This is tricky! Things are freed that functions depend on. Don't be
1027 * surprised if Vim crashes...
1028 * Some things can't be freed, esp. things local to a library function.
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001029 */
1030 void
1031free_all_mem()
1032{
1033 buf_T *buf, *nextbuf;
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001034 static int entered = FALSE;
1035
1036 /* When we cause a crash here it is caught and Vim tries to exit cleanly.
1037 * Don't try freeing everything again. */
1038 if (entered)
1039 return;
1040 entered = TRUE;
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001041
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001042# ifdef FEAT_AUTOCMD
Bram Moolenaar78ab3312007-09-29 12:16:41 +00001043 block_autocmds(); /* don't want to trigger autocommands here */
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001044# endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001045
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001046# ifdef FEAT_WINDOWS
Bram Moolenaar5bedfc62010-07-20 22:30:01 +02001047 /* Close all tabs and windows. Reset 'equalalways' to avoid redraws. */
1048 p_ea = FALSE;
Bram Moolenaar7d47b6e2006-03-15 22:59:18 +00001049 if (first_tabpage->tp_next != NULL)
1050 do_cmdline_cmd((char_u *)"tabonly!");
1051 if (firstwin != lastwin)
1052 do_cmdline_cmd((char_u *)"only!");
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001053# endif
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00001054
Bram Moolenaarc4956c82006-03-12 21:58:43 +00001055# if defined(FEAT_SPELL)
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001056 /* Free all spell info. */
1057 spell_free_all();
1058# endif
1059
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001060# if defined(FEAT_USR_CMDS)
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001061 /* Clear user commands (before deleting buffers). */
1062 ex_comclear(NULL);
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001063# endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001064
1065# ifdef FEAT_MENU
1066 /* Clear menus. */
1067 do_cmdline_cmd((char_u *)"aunmenu *");
Bram Moolenaar21160b92009-11-11 15:56:10 +00001068# ifdef FEAT_MULTI_LANG
1069 do_cmdline_cmd((char_u *)"menutranslate clear");
1070# endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001071# endif
1072
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001073 /* Clear mappings, abbreviations, breakpoints. */
Bram Moolenaar21160b92009-11-11 15:56:10 +00001074 do_cmdline_cmd((char_u *)"lmapclear");
1075 do_cmdline_cmd((char_u *)"xmapclear");
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001076 do_cmdline_cmd((char_u *)"mapclear");
1077 do_cmdline_cmd((char_u *)"mapclear!");
1078 do_cmdline_cmd((char_u *)"abclear");
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001079# if defined(FEAT_EVAL)
1080 do_cmdline_cmd((char_u *)"breakdel *");
1081# endif
Bram Moolenaar1e498f52005-06-26 22:29:44 +00001082# if defined(FEAT_PROFILE)
1083 do_cmdline_cmd((char_u *)"profdel *");
1084# endif
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00001085# if defined(FEAT_KEYMAP)
1086 do_cmdline_cmd((char_u *)"set keymap=");
1087#endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001088
1089# ifdef FEAT_TITLE
1090 free_titles();
1091# endif
1092# if defined(FEAT_SEARCHPATH)
1093 free_findfile();
1094# endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001095
1096 /* Obviously named calls. */
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001097# if defined(FEAT_AUTOCMD)
1098 free_all_autocmds();
1099# endif
1100 clear_termcodes();
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001101 free_all_options();
1102 free_all_marks();
1103 alist_clear(&global_alist);
1104 free_homedir();
Bram Moolenaar24305862012-08-15 14:05:05 +02001105# if defined(FEAT_CMDL_COMPL)
1106 free_users();
1107# endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001108 free_search_patterns();
1109 free_old_sub();
1110 free_last_insert();
1111 free_prev_shellcmd();
1112 free_regexp_stuff();
1113 free_tag_stuff();
1114 free_cd_dir();
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00001115# ifdef FEAT_SIGNS
1116 free_signs();
1117# endif
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001118# ifdef FEAT_EVAL
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001119 set_expr_line(NULL);
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001120# endif
1121# ifdef FEAT_DIFF
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00001122 diff_clear(curtab);
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001123# endif
Bram Moolenaara40ceaf2006-01-13 22:35:40 +00001124 clear_sb_text(); /* free any scrollback text */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001125
1126 /* Free some global vars. */
1127 vim_free(username);
Bram Moolenaaraf92ee82007-10-07 13:45:08 +00001128# ifdef FEAT_CLIPBOARD
Bram Moolenaar473de612013-06-08 18:19:48 +02001129 vim_regfree(clip_exclude_prog);
Bram Moolenaaraf92ee82007-10-07 13:45:08 +00001130# endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001131 vim_free(last_cmdline);
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001132# ifdef FEAT_CMDHIST
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001133 vim_free(new_last_cmdline);
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001134# endif
Bram Moolenaar238a5642006-02-21 22:12:05 +00001135 set_keep_msg(NULL, 0);
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001136 vim_free(ff_expand_buffer);
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001137
1138 /* Clear cmdline history. */
1139 p_hi = 0;
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001140# ifdef FEAT_CMDHIST
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001141 init_history();
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001142# endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001143
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001144#ifdef FEAT_QUICKFIX
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001145 {
Bram Moolenaarbd1e5d22009-04-29 09:02:44 +00001146 win_T *win;
1147 tabpage_T *tab;
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001148
1149 qf_free_all(NULL);
1150 /* Free all location lists */
Bram Moolenaarbd1e5d22009-04-29 09:02:44 +00001151 FOR_ALL_TAB_WINDOWS(tab, win)
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001152 qf_free_all(win);
1153 }
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001154#endif
1155
1156 /* Close all script inputs. */
1157 close_all_scripts();
1158
1159#if defined(FEAT_WINDOWS)
1160 /* Destroy all windows. Must come before freeing buffers. */
1161 win_free_all();
1162#endif
1163
Bram Moolenaar2a329742008-04-01 12:53:43 +00001164 /* Free all buffers. Reset 'autochdir' to avoid accessing things that
1165 * were freed already. */
1166#ifdef FEAT_AUTOCHDIR
1167 p_acd = FALSE;
1168#endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001169 for (buf = firstbuf; buf != NULL; )
1170 {
1171 nextbuf = buf->b_next;
Bram Moolenaar42ec6562012-02-22 14:58:37 +01001172 close_buffer(NULL, buf, DOBUF_WIPE, FALSE);
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001173 if (buf_valid(buf))
1174 buf = nextbuf; /* didn't work, try next one */
1175 else
1176 buf = firstbuf;
1177 }
1178
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001179#ifdef FEAT_ARABIC
1180 free_cmdline_buf();
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001181#endif
1182
1183 /* Clear registers. */
1184 clear_registers();
1185 ResetRedobuff();
1186 ResetRedobuff();
1187
Bram Moolenaar85c79d32007-02-20 01:59:20 +00001188#if defined(FEAT_CLIENTSERVER) && defined(FEAT_X11)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001189 vim_free(serverDelayedStartName);
1190#endif
1191
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001192 /* highlight info */
1193 free_highlight();
1194
Bram Moolenaar1e498f52005-06-26 22:29:44 +00001195 reset_last_sourcing();
1196
Bram Moolenaar7d47b6e2006-03-15 22:59:18 +00001197#ifdef FEAT_WINDOWS
Bram Moolenaar06a89a52006-04-29 22:01:03 +00001198 free_tabpage(first_tabpage);
1199 first_tabpage = NULL;
Bram Moolenaar7d47b6e2006-03-15 22:59:18 +00001200#endif
1201
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001202# ifdef UNIX
1203 /* Machine-specific free. */
1204 mch_free_mem();
1205# endif
1206
1207 /* message history */
1208 for (;;)
1209 if (delete_first_msg() == FAIL)
1210 break;
1211
1212# ifdef FEAT_EVAL
1213 eval_clear();
1214# endif
1215
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001216 free_termoptions();
1217
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001218 /* screenlines (can't display anything now!) */
1219 free_screenlines();
1220
1221#if defined(USE_XSMP)
1222 xsmp_close();
1223#endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001224#ifdef FEAT_GUI_GTK
1225 gui_mch_free_all();
1226#endif
1227 clear_hl_tables();
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001228
1229 vim_free(IObuff);
1230 vim_free(NameBuff);
1231}
1232#endif
1233
Bram Moolenaar071d4272004-06-13 20:20:40 +00001234/*
Bram Moolenaare980d8a2010-12-08 13:11:21 +01001235 * Copy "string" into newly allocated memory.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001236 */
1237 char_u *
1238vim_strsave(string)
1239 char_u *string;
1240{
1241 char_u *p;
1242 unsigned len;
1243
1244 len = (unsigned)STRLEN(string) + 1;
1245 p = alloc(len);
1246 if (p != NULL)
1247 mch_memmove(p, string, (size_t)len);
1248 return p;
1249}
1250
Bram Moolenaare980d8a2010-12-08 13:11:21 +01001251/*
1252 * Copy up to "len" bytes of "string" into newly allocated memory and
1253 * terminate with a NUL.
1254 * The allocated memory always has size "len + 1", also when "string" is
1255 * shorter.
1256 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001257 char_u *
1258vim_strnsave(string, len)
1259 char_u *string;
1260 int len;
1261{
1262 char_u *p;
1263
1264 p = alloc((unsigned)(len + 1));
1265 if (p != NULL)
1266 {
1267 STRNCPY(p, string, len);
1268 p[len] = NUL;
1269 }
1270 return p;
1271}
1272
Bram Moolenaar071d4272004-06-13 20:20:40 +00001273/*
1274 * Same as vim_strsave(), but any characters found in esc_chars are preceded
1275 * by a backslash.
1276 */
1277 char_u *
1278vim_strsave_escaped(string, esc_chars)
1279 char_u *string;
1280 char_u *esc_chars;
1281{
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001282 return vim_strsave_escaped_ext(string, esc_chars, '\\', FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001283}
1284
1285/*
1286 * Same as vim_strsave_escaped(), but when "bsl" is TRUE also escape
1287 * characters where rem_backslash() would remove the backslash.
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001288 * Escape the characters with "cc".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001289 */
1290 char_u *
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001291vim_strsave_escaped_ext(string, esc_chars, cc, bsl)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001292 char_u *string;
1293 char_u *esc_chars;
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001294 int cc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001295 int bsl;
1296{
1297 char_u *p;
1298 char_u *p2;
1299 char_u *escaped_string;
1300 unsigned length;
1301#ifdef FEAT_MBYTE
1302 int l;
1303#endif
1304
1305 /*
1306 * First count the number of backslashes required.
1307 * Then allocate the memory and insert them.
1308 */
1309 length = 1; /* count the trailing NUL */
1310 for (p = string; *p; p++)
1311 {
1312#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001313 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001314 {
1315 length += l; /* count a multibyte char */
1316 p += l - 1;
1317 continue;
1318 }
1319#endif
1320 if (vim_strchr(esc_chars, *p) != NULL || (bsl && rem_backslash(p)))
1321 ++length; /* count a backslash */
1322 ++length; /* count an ordinary char */
1323 }
1324 escaped_string = alloc(length);
1325 if (escaped_string != NULL)
1326 {
1327 p2 = escaped_string;
1328 for (p = string; *p; p++)
1329 {
1330#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001331 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001332 {
1333 mch_memmove(p2, p, (size_t)l);
1334 p2 += l;
1335 p += l - 1; /* skip multibyte char */
1336 continue;
1337 }
1338#endif
1339 if (vim_strchr(esc_chars, *p) != NULL || (bsl && rem_backslash(p)))
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001340 *p2++ = cc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001341 *p2++ = *p;
1342 }
1343 *p2 = NUL;
1344 }
1345 return escaped_string;
1346}
1347
Bram Moolenaar7693ec62008-07-24 18:29:37 +00001348/*
1349 * Return TRUE when 'shell' has "csh" in the tail.
1350 */
1351 int
1352csh_like_shell()
1353{
1354 return (strstr((char *)gettail(p_sh), "csh") != NULL);
1355}
Bram Moolenaar7693ec62008-07-24 18:29:37 +00001356
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001357/*
1358 * Escape "string" for use as a shell argument with system().
Bram Moolenaar21160b92009-11-11 15:56:10 +00001359 * This uses single quotes, except when we know we need to use double quotes
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001360 * (MS-DOS and MS-Windows without 'shellslash' set).
Bram Moolenaarffd66c42008-07-16 20:43:37 +00001361 * Escape a newline, depending on the 'shell' option.
1362 * When "do_special" is TRUE also replace "!", "%", "#" and things starting
1363 * with "<" like "<cfile>".
Bram Moolenaar26df0922014-02-23 23:39:13 +01001364 * When "do_newline" is FALSE do not escape newline unless it is csh shell.
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001365 * Returns the result in allocated memory, NULL if we have run out.
1366 */
1367 char_u *
Bram Moolenaar26df0922014-02-23 23:39:13 +01001368vim_strsave_shellescape(string, do_special, do_newline)
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001369 char_u *string;
Bram Moolenaar05bb9532008-07-04 09:44:11 +00001370 int do_special;
Bram Moolenaar26df0922014-02-23 23:39:13 +01001371 int do_newline;
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001372{
1373 unsigned length;
1374 char_u *p;
1375 char_u *d;
1376 char_u *escaped_string;
Bram Moolenaar05bb9532008-07-04 09:44:11 +00001377 int l;
Bram Moolenaarffd66c42008-07-16 20:43:37 +00001378 int csh_like;
1379
1380 /* Only csh and similar shells expand '!' within single quotes. For sh and
1381 * the like we must not put a backslash before it, it will be taken
1382 * literally. If do_special is set the '!' will be escaped twice.
1383 * Csh also needs to have "\n" escaped twice when do_special is set. */
Bram Moolenaar7693ec62008-07-24 18:29:37 +00001384 csh_like = csh_like_shell();
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001385
1386 /* First count the number of extra bytes required. */
Bram Moolenaar77f66d62007-02-20 02:16:18 +00001387 length = (unsigned)STRLEN(string) + 3; /* two quotes and a trailing NUL */
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001388 for (p = string; *p != NUL; mb_ptr_adv(p))
1389 {
1390# if defined(WIN32) || defined(WIN16) || defined(DOS)
1391 if (!p_ssl)
1392 {
1393 if (*p == '"')
1394 ++length; /* " -> "" */
1395 }
1396 else
1397# endif
1398 if (*p == '\'')
1399 length += 3; /* ' => '\'' */
Bram Moolenaar26df0922014-02-23 23:39:13 +01001400 if ((*p == '\n' && (csh_like || do_newline))
1401 || (*p == '!' && (csh_like || do_special)))
Bram Moolenaarffd66c42008-07-16 20:43:37 +00001402 {
1403 ++length; /* insert backslash */
1404 if (csh_like && do_special)
1405 ++length; /* insert backslash */
1406 }
Bram Moolenaar05bb9532008-07-04 09:44:11 +00001407 if (do_special && find_cmdline_var(p, &l) >= 0)
1408 {
1409 ++length; /* insert backslash */
1410 p += l - 1;
1411 }
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001412 }
1413
1414 /* Allocate memory for the result and fill it. */
1415 escaped_string = alloc(length);
1416 if (escaped_string != NULL)
1417 {
1418 d = escaped_string;
1419
1420 /* add opening quote */
1421# if defined(WIN32) || defined(WIN16) || defined(DOS)
1422 if (!p_ssl)
1423 *d++ = '"';
1424 else
1425# endif
1426 *d++ = '\'';
1427
1428 for (p = string; *p != NUL; )
1429 {
1430# if defined(WIN32) || defined(WIN16) || defined(DOS)
1431 if (!p_ssl)
1432 {
1433 if (*p == '"')
1434 {
1435 *d++ = '"';
1436 *d++ = '"';
1437 ++p;
1438 continue;
1439 }
1440 }
1441 else
1442# endif
1443 if (*p == '\'')
1444 {
Bram Moolenaar05bb9532008-07-04 09:44:11 +00001445 *d++ = '\'';
1446 *d++ = '\\';
1447 *d++ = '\'';
1448 *d++ = '\'';
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001449 ++p;
1450 continue;
1451 }
Bram Moolenaar26df0922014-02-23 23:39:13 +01001452 if ((*p == '\n' && (csh_like || do_newline))
1453 || (*p == '!' && (csh_like || do_special)))
Bram Moolenaarffd66c42008-07-16 20:43:37 +00001454 {
1455 *d++ = '\\';
1456 if (csh_like && do_special)
1457 *d++ = '\\';
1458 *d++ = *p++;
1459 continue;
1460 }
Bram Moolenaar05bb9532008-07-04 09:44:11 +00001461 if (do_special && find_cmdline_var(p, &l) >= 0)
1462 {
1463 *d++ = '\\'; /* insert backslash */
1464 while (--l >= 0) /* copy the var */
1465 *d++ = *p++;
Bram Moolenaar099d01d2009-11-25 16:14:45 +00001466 continue;
Bram Moolenaar05bb9532008-07-04 09:44:11 +00001467 }
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001468
1469 MB_COPY_CHAR(p, d);
1470 }
1471
1472 /* add terminating quote and finish with a NUL */
1473# if defined(WIN32) || defined(WIN16) || defined(DOS)
1474 if (!p_ssl)
1475 *d++ = '"';
1476 else
1477# endif
1478 *d++ = '\'';
1479 *d = NUL;
1480 }
1481
1482 return escaped_string;
1483}
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001484
Bram Moolenaar071d4272004-06-13 20:20:40 +00001485/*
1486 * Like vim_strsave(), but make all characters uppercase.
1487 * This uses ASCII lower-to-upper case translation, language independent.
1488 */
1489 char_u *
1490vim_strsave_up(string)
1491 char_u *string;
1492{
1493 char_u *p1;
1494
1495 p1 = vim_strsave(string);
1496 vim_strup(p1);
1497 return p1;
1498}
1499
1500/*
1501 * Like vim_strnsave(), but make all characters uppercase.
1502 * This uses ASCII lower-to-upper case translation, language independent.
1503 */
1504 char_u *
1505vim_strnsave_up(string, len)
1506 char_u *string;
1507 int len;
1508{
1509 char_u *p1;
1510
1511 p1 = vim_strnsave(string, len);
1512 vim_strup(p1);
1513 return p1;
1514}
1515
1516/*
1517 * ASCII lower-to-upper case translation, language independent.
1518 */
1519 void
1520vim_strup(p)
1521 char_u *p;
1522{
1523 char_u *p2;
1524 int c;
1525
1526 if (p != NULL)
1527 {
1528 p2 = p;
1529 while ((c = *p2) != NUL)
1530#ifdef EBCDIC
1531 *p2++ = isalpha(c) ? toupper(c) : c;
1532#else
1533 *p2++ = (c < 'a' || c > 'z') ? c : (c - 0x20);
1534#endif
1535 }
1536}
1537
Bram Moolenaarc4956c82006-03-12 21:58:43 +00001538#if defined(FEAT_EVAL) || defined(FEAT_SPELL) || defined(PROTO)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001539/*
1540 * Make string "s" all upper-case and return it in allocated memory.
1541 * Handles multi-byte characters as well as possible.
1542 * Returns NULL when out of memory.
1543 */
1544 char_u *
1545strup_save(orig)
1546 char_u *orig;
1547{
1548 char_u *p;
1549 char_u *res;
1550
1551 res = p = vim_strsave(orig);
1552
1553 if (res != NULL)
1554 while (*p != NUL)
1555 {
1556# ifdef FEAT_MBYTE
1557 int l;
1558
1559 if (enc_utf8)
1560 {
1561 int c, uc;
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001562 int newl;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001563 char_u *s;
1564
1565 c = utf_ptr2char(p);
1566 uc = utf_toupper(c);
1567
1568 /* Reallocate string when byte count changes. This is rare,
1569 * thus it's OK to do another malloc()/free(). */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001570 l = utf_ptr2len(p);
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001571 newl = utf_char2len(uc);
1572 if (newl != l)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001573 {
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001574 s = alloc((unsigned)STRLEN(res) + 1 + newl - l);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001575 if (s == NULL)
1576 break;
1577 mch_memmove(s, res, p - res);
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001578 STRCPY(s + (p - res) + newl, p + l);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001579 p = s + (p - res);
1580 vim_free(res);
1581 res = s;
1582 }
1583
1584 utf_char2bytes(uc, p);
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001585 p += newl;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001586 }
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001587 else if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001588 p += l; /* skip multi-byte character */
1589 else
1590# endif
1591 {
1592 *p = TOUPPER_LOC(*p); /* note that toupper() can be a macro */
1593 p++;
1594 }
1595 }
1596
1597 return res;
1598}
1599#endif
1600
Bram Moolenaar071d4272004-06-13 20:20:40 +00001601/*
1602 * copy a space a number of times
1603 */
1604 void
1605copy_spaces(ptr, count)
1606 char_u *ptr;
1607 size_t count;
1608{
1609 size_t i = count;
1610 char_u *p = ptr;
1611
1612 while (i--)
1613 *p++ = ' ';
1614}
1615
1616#if defined(FEAT_VISUALEXTRA) || defined(PROTO)
1617/*
1618 * Copy a character a number of times.
Bram Moolenaar21160b92009-11-11 15:56:10 +00001619 * Does not work for multi-byte characters!
Bram Moolenaar071d4272004-06-13 20:20:40 +00001620 */
1621 void
1622copy_chars(ptr, count, c)
1623 char_u *ptr;
1624 size_t count;
1625 int c;
1626{
1627 size_t i = count;
1628 char_u *p = ptr;
1629
1630 while (i--)
1631 *p++ = c;
1632}
1633#endif
1634
1635/*
1636 * delete spaces at the end of a string
1637 */
1638 void
1639del_trailing_spaces(ptr)
1640 char_u *ptr;
1641{
1642 char_u *q;
1643
1644 q = ptr + STRLEN(ptr);
1645 while (--q > ptr && vim_iswhite(q[0]) && q[-1] != '\\' && q[-1] != Ctrl_V)
1646 *q = NUL;
1647}
1648
1649/*
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001650 * Like strncpy(), but always terminate the result with one NUL.
Bram Moolenaard042c562005-06-30 22:04:15 +00001651 * "to" must be "len + 1" long!
Bram Moolenaar071d4272004-06-13 20:20:40 +00001652 */
1653 void
1654vim_strncpy(to, from, len)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001655 char_u *to;
1656 char_u *from;
Bram Moolenaarbbebc852005-07-18 21:47:53 +00001657 size_t len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001658{
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001659 STRNCPY(to, from, len);
1660 to[len] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001661}
1662
1663/*
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02001664 * Like strcat(), but make sure the result fits in "tosize" bytes and is
1665 * always NUL terminated.
1666 */
1667 void
1668vim_strcat(to, from, tosize)
1669 char_u *to;
1670 char_u *from;
1671 size_t tosize;
1672{
1673 size_t tolen = STRLEN(to);
1674 size_t fromlen = STRLEN(from);
1675
1676 if (tolen + fromlen + 1 > tosize)
1677 {
1678 mch_memmove(to + tolen, from, tosize - tolen - 1);
1679 to[tosize - 1] = NUL;
1680 }
1681 else
1682 STRCPY(to + tolen, from);
1683}
1684
1685/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001686 * Isolate one part of a string option where parts are separated with
1687 * "sep_chars".
Bram Moolenaar83bab712005-08-01 21:58:57 +00001688 * The part is copied into "buf[maxlen]".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001689 * "*option" is advanced to the next part.
1690 * The length is returned.
1691 */
1692 int
1693copy_option_part(option, buf, maxlen, sep_chars)
1694 char_u **option;
1695 char_u *buf;
1696 int maxlen;
1697 char *sep_chars;
1698{
1699 int len = 0;
1700 char_u *p = *option;
1701
1702 /* skip '.' at start of option part, for 'suffixes' */
1703 if (*p == '.')
1704 buf[len++] = *p++;
1705 while (*p != NUL && vim_strchr((char_u *)sep_chars, *p) == NULL)
1706 {
1707 /*
1708 * Skip backslash before a separator character and space.
1709 */
1710 if (p[0] == '\\' && vim_strchr((char_u *)sep_chars, p[1]) != NULL)
1711 ++p;
1712 if (len < maxlen - 1)
1713 buf[len++] = *p;
1714 ++p;
1715 }
1716 buf[len] = NUL;
1717
1718 if (*p != NUL && *p != ',') /* skip non-standard separator */
1719 ++p;
1720 p = skip_to_option_part(p); /* p points to next file name */
1721
1722 *option = p;
1723 return len;
1724}
1725
1726/*
Bram Moolenaar4770d092006-01-12 23:22:24 +00001727 * Replacement for free() that ignores NULL pointers.
1728 * Also skip free() when exiting for sure, this helps when we caught a deadly
1729 * signal that was caused by a crash in free().
Bram Moolenaar071d4272004-06-13 20:20:40 +00001730 */
1731 void
1732vim_free(x)
1733 void *x;
1734{
Bram Moolenaar4770d092006-01-12 23:22:24 +00001735 if (x != NULL && !really_exiting)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001736 {
1737#ifdef MEM_PROFILE
1738 mem_pre_free(&x);
1739#endif
1740 free(x);
1741 }
1742}
1743
1744#ifndef HAVE_MEMSET
1745 void *
1746vim_memset(ptr, c, size)
1747 void *ptr;
1748 int c;
1749 size_t size;
1750{
1751 char *p = ptr;
1752
1753 while (size-- > 0)
1754 *p++ = c;
1755 return ptr;
1756}
1757#endif
1758
1759#ifdef VIM_MEMCMP
1760/*
1761 * Return zero when "b1" and "b2" are the same for "len" bytes.
1762 * Return non-zero otherwise.
1763 */
1764 int
1765vim_memcmp(b1, b2, len)
1766 void *b1;
1767 void *b2;
1768 size_t len;
1769{
1770 char_u *p1 = (char_u *)b1, *p2 = (char_u *)b2;
1771
1772 for ( ; len > 0; --len)
1773 {
1774 if (*p1 != *p2)
1775 return 1;
1776 ++p1;
1777 ++p2;
1778 }
1779 return 0;
1780}
1781#endif
1782
1783#ifdef VIM_MEMMOVE
1784/*
1785 * Version of memmove() that handles overlapping source and destination.
1786 * For systems that don't have a function that is guaranteed to do that (SYSV).
1787 */
1788 void
1789mch_memmove(dst_arg, src_arg, len)
1790 void *src_arg, *dst_arg;
1791 size_t len;
1792{
1793 /*
1794 * A void doesn't have a size, we use char pointers.
1795 */
1796 char *dst = dst_arg, *src = src_arg;
1797
1798 /* overlap, copy backwards */
1799 if (dst > src && dst < src + len)
1800 {
1801 src += len;
1802 dst += len;
1803 while (len-- > 0)
1804 *--dst = *--src;
1805 }
1806 else /* copy forwards */
1807 while (len-- > 0)
1808 *dst++ = *src++;
1809}
1810#endif
1811
1812#if (!defined(HAVE_STRCASECMP) && !defined(HAVE_STRICMP)) || defined(PROTO)
1813/*
1814 * Compare two strings, ignoring case, using current locale.
1815 * Doesn't work for multi-byte characters.
1816 * return 0 for match, < 0 for smaller, > 0 for bigger
1817 */
1818 int
1819vim_stricmp(s1, s2)
1820 char *s1;
1821 char *s2;
1822{
1823 int i;
1824
1825 for (;;)
1826 {
1827 i = (int)TOLOWER_LOC(*s1) - (int)TOLOWER_LOC(*s2);
1828 if (i != 0)
1829 return i; /* this character different */
1830 if (*s1 == NUL)
1831 break; /* strings match until NUL */
1832 ++s1;
1833 ++s2;
1834 }
1835 return 0; /* strings match */
1836}
1837#endif
1838
1839#if (!defined(HAVE_STRNCASECMP) && !defined(HAVE_STRNICMP)) || defined(PROTO)
1840/*
1841 * Compare two strings, for length "len", ignoring case, using current locale.
1842 * Doesn't work for multi-byte characters.
1843 * return 0 for match, < 0 for smaller, > 0 for bigger
1844 */
1845 int
1846vim_strnicmp(s1, s2, len)
1847 char *s1;
1848 char *s2;
1849 size_t len;
1850{
1851 int i;
1852
1853 while (len > 0)
1854 {
1855 i = (int)TOLOWER_LOC(*s1) - (int)TOLOWER_LOC(*s2);
1856 if (i != 0)
1857 return i; /* this character different */
1858 if (*s1 == NUL)
1859 break; /* strings match until NUL */
1860 ++s1;
1861 ++s2;
1862 --len;
1863 }
1864 return 0; /* strings match */
1865}
1866#endif
1867
Bram Moolenaar071d4272004-06-13 20:20:40 +00001868/*
1869 * Version of strchr() and strrchr() that handle unsigned char strings
Bram Moolenaar05159a02005-02-26 23:04:13 +00001870 * with characters from 128 to 255 correctly. It also doesn't return a
1871 * pointer to the NUL at the end of the string.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001872 */
1873 char_u *
1874vim_strchr(string, c)
1875 char_u *string;
1876 int c;
1877{
1878 char_u *p;
1879 int b;
1880
1881 p = string;
1882#ifdef FEAT_MBYTE
1883 if (enc_utf8 && c >= 0x80)
1884 {
1885 while (*p != NUL)
1886 {
1887 if (utf_ptr2char(p) == c)
1888 return p;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001889 p += (*mb_ptr2len)(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001890 }
1891 return NULL;
1892 }
1893 if (enc_dbcs != 0 && c > 255)
1894 {
1895 int n2 = c & 0xff;
1896
1897 c = ((unsigned)c >> 8) & 0xff;
1898 while ((b = *p) != NUL)
1899 {
1900 if (b == c && p[1] == n2)
1901 return p;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001902 p += (*mb_ptr2len)(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001903 }
1904 return NULL;
1905 }
1906 if (has_mbyte)
1907 {
1908 while ((b = *p) != NUL)
1909 {
1910 if (b == c)
1911 return p;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001912 p += (*mb_ptr2len)(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001913 }
1914 return NULL;
1915 }
1916#endif
1917 while ((b = *p) != NUL)
1918 {
1919 if (b == c)
1920 return p;
1921 ++p;
1922 }
1923 return NULL;
1924}
1925
1926/*
Bram Moolenaar05159a02005-02-26 23:04:13 +00001927 * Version of strchr() that only works for bytes and handles unsigned char
1928 * strings with characters above 128 correctly. It also doesn't return a
1929 * pointer to the NUL at the end of the string.
1930 */
1931 char_u *
1932vim_strbyte(string, c)
1933 char_u *string;
1934 int c;
1935{
1936 char_u *p = string;
1937
1938 while (*p != NUL)
1939 {
1940 if (*p == c)
1941 return p;
1942 ++p;
1943 }
1944 return NULL;
1945}
1946
1947/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001948 * Search for last occurrence of "c" in "string".
Bram Moolenaarac6e65f2005-08-29 22:25:38 +00001949 * Return NULL if not found.
Bram Moolenaar05159a02005-02-26 23:04:13 +00001950 * Does not handle multi-byte char for "c"!
Bram Moolenaar071d4272004-06-13 20:20:40 +00001951 */
1952 char_u *
1953vim_strrchr(string, c)
1954 char_u *string;
1955 int c;
1956{
1957 char_u *retval = NULL;
Bram Moolenaar05159a02005-02-26 23:04:13 +00001958 char_u *p = string;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001959
Bram Moolenaar05159a02005-02-26 23:04:13 +00001960 while (*p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001961 {
Bram Moolenaar05159a02005-02-26 23:04:13 +00001962 if (*p == c)
1963 retval = p;
1964 mb_ptr_adv(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001965 }
1966 return retval;
1967}
1968
1969/*
1970 * Vim's version of strpbrk(), in case it's missing.
1971 * Don't generate a prototype for this, causes problems when it's not used.
1972 */
1973#ifndef PROTO
1974# ifndef HAVE_STRPBRK
1975# ifdef vim_strpbrk
1976# undef vim_strpbrk
1977# endif
1978 char_u *
1979vim_strpbrk(s, charset)
1980 char_u *s;
1981 char_u *charset;
1982{
1983 while (*s)
1984 {
1985 if (vim_strchr(charset, *s) != NULL)
1986 return s;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001987 mb_ptr_adv(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001988 }
1989 return NULL;
1990}
1991# endif
1992#endif
1993
1994/*
1995 * Vim has its own isspace() function, because on some machines isspace()
1996 * can't handle characters above 128.
1997 */
1998 int
1999vim_isspace(x)
2000 int x;
2001{
2002 return ((x >= 9 && x <= 13) || x == ' ');
2003}
2004
2005/************************************************************************
Bram Moolenaar383f9bc2005-01-19 22:18:32 +00002006 * Functions for handling growing arrays.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002007 */
2008
2009/*
2010 * Clear an allocated growing array.
2011 */
2012 void
2013ga_clear(gap)
2014 garray_T *gap;
2015{
2016 vim_free(gap->ga_data);
2017 ga_init(gap);
2018}
2019
2020/*
2021 * Clear a growing array that contains a list of strings.
2022 */
2023 void
2024ga_clear_strings(gap)
2025 garray_T *gap;
2026{
2027 int i;
2028
2029 for (i = 0; i < gap->ga_len; ++i)
2030 vim_free(((char_u **)(gap->ga_data))[i]);
2031 ga_clear(gap);
2032}
2033
2034/*
2035 * Initialize a growing array. Don't forget to set ga_itemsize and
2036 * ga_growsize! Or use ga_init2().
2037 */
2038 void
2039ga_init(gap)
2040 garray_T *gap;
2041{
2042 gap->ga_data = NULL;
Bram Moolenaar86b68352004-12-27 21:59:20 +00002043 gap->ga_maxlen = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002044 gap->ga_len = 0;
2045}
2046
2047 void
2048ga_init2(gap, itemsize, growsize)
2049 garray_T *gap;
2050 int itemsize;
2051 int growsize;
2052{
2053 ga_init(gap);
2054 gap->ga_itemsize = itemsize;
2055 gap->ga_growsize = growsize;
2056}
2057
2058/*
2059 * Make room in growing array "gap" for at least "n" items.
2060 * Return FAIL for failure, OK otherwise.
2061 */
2062 int
2063ga_grow(gap, n)
2064 garray_T *gap;
2065 int n;
2066{
Bram Moolenaar7282bc32012-02-22 18:12:32 +01002067 size_t old_len;
2068 size_t new_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002069 char_u *pp;
2070
Bram Moolenaar86b68352004-12-27 21:59:20 +00002071 if (gap->ga_maxlen - gap->ga_len < n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002072 {
2073 if (n < gap->ga_growsize)
2074 n = gap->ga_growsize;
Bram Moolenaar7282bc32012-02-22 18:12:32 +01002075 new_len = gap->ga_itemsize * (gap->ga_len + n);
2076 pp = (gap->ga_data == NULL)
Bram Moolenaar4336cdf2012-02-29 13:58:47 +01002077 ? alloc((unsigned)new_len) : vim_realloc(gap->ga_data, new_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002078 if (pp == NULL)
2079 return FAIL;
Bram Moolenaar7282bc32012-02-22 18:12:32 +01002080 old_len = gap->ga_itemsize * gap->ga_maxlen;
2081 vim_memset(pp + old_len, 0, new_len - old_len);
Bram Moolenaar86b68352004-12-27 21:59:20 +00002082 gap->ga_maxlen = gap->ga_len + n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002083 gap->ga_data = pp;
2084 }
2085 return OK;
2086}
2087
2088/*
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02002089 * For a growing array that contains a list of strings: concatenate all the
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02002090 * strings with a separating "sep".
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02002091 * Returns NULL when out of memory.
2092 */
2093 char_u *
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02002094ga_concat_strings(gap, sep)
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02002095 garray_T *gap;
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02002096 char *sep;
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02002097{
2098 int i;
2099 int len = 0;
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02002100 int sep_len = (int)STRLEN(sep);
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02002101 char_u *s;
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02002102 char_u *p;
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02002103
2104 for (i = 0; i < gap->ga_len; ++i)
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02002105 len += (int)STRLEN(((char_u **)(gap->ga_data))[i]) + sep_len;
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02002106
2107 s = alloc(len + 1);
2108 if (s != NULL)
2109 {
2110 *s = NUL;
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02002111 p = s;
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02002112 for (i = 0; i < gap->ga_len; ++i)
2113 {
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02002114 if (p != s)
2115 {
2116 STRCPY(p, sep);
2117 p += sep_len;
2118 }
2119 STRCPY(p, ((char_u **)(gap->ga_data))[i]);
2120 p += STRLEN(p);
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02002121 }
2122 }
2123 return s;
2124}
2125
2126/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002127 * Concatenate a string to a growarray which contains characters.
2128 * Note: Does NOT copy the NUL at the end!
2129 */
2130 void
2131ga_concat(gap, s)
2132 garray_T *gap;
2133 char_u *s;
2134{
2135 int len = (int)STRLEN(s);
2136
2137 if (ga_grow(gap, len) == OK)
2138 {
2139 mch_memmove((char *)gap->ga_data + gap->ga_len, s, (size_t)len);
2140 gap->ga_len += len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002141 }
2142}
2143
2144/*
2145 * Append one byte to a growarray which contains bytes.
2146 */
2147 void
2148ga_append(gap, c)
2149 garray_T *gap;
2150 int c;
2151{
2152 if (ga_grow(gap, 1) == OK)
2153 {
2154 *((char *)gap->ga_data + gap->ga_len) = c;
2155 ++gap->ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002156 }
2157}
2158
Bram Moolenaar597a4222014-06-25 14:39:50 +02002159#if (defined(UNIX) && !defined(USE_SYSTEM)) || defined(WIN3264) \
2160 || defined(PROTO)
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02002161/*
2162 * Append the text in "gap" below the cursor line and clear "gap".
2163 */
2164 void
2165append_ga_line(gap)
2166 garray_T *gap;
2167{
2168 /* Remove trailing CR. */
2169 if (gap->ga_len > 0
2170 && !curbuf->b_p_bin
2171 && ((char_u *)gap->ga_data)[gap->ga_len - 1] == CAR)
2172 --gap->ga_len;
2173 ga_append(gap, NUL);
2174 ml_append(curwin->w_cursor.lnum++, gap->ga_data, 0, FALSE);
2175 gap->ga_len = 0;
2176}
2177#endif
2178
Bram Moolenaar071d4272004-06-13 20:20:40 +00002179/************************************************************************
2180 * functions that use lookup tables for various things, generally to do with
2181 * special key codes.
2182 */
2183
2184/*
2185 * Some useful tables.
2186 */
2187
2188static struct modmasktable
2189{
2190 short mod_mask; /* Bit-mask for particular key modifier */
2191 short mod_flag; /* Bit(s) for particular key modifier */
2192 char_u name; /* Single letter name of modifier */
2193} mod_mask_table[] =
2194{
2195 {MOD_MASK_ALT, MOD_MASK_ALT, (char_u)'M'},
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002196 {MOD_MASK_META, MOD_MASK_META, (char_u)'T'},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002197 {MOD_MASK_CTRL, MOD_MASK_CTRL, (char_u)'C'},
2198 {MOD_MASK_SHIFT, MOD_MASK_SHIFT, (char_u)'S'},
2199 {MOD_MASK_MULTI_CLICK, MOD_MASK_2CLICK, (char_u)'2'},
2200 {MOD_MASK_MULTI_CLICK, MOD_MASK_3CLICK, (char_u)'3'},
2201 {MOD_MASK_MULTI_CLICK, MOD_MASK_4CLICK, (char_u)'4'},
2202#ifdef MACOS
2203 {MOD_MASK_CMD, MOD_MASK_CMD, (char_u)'D'},
2204#endif
2205 /* 'A' must be the last one */
2206 {MOD_MASK_ALT, MOD_MASK_ALT, (char_u)'A'},
2207 {0, 0, NUL}
2208};
2209
2210/*
2211 * Shifted key terminal codes and their unshifted equivalent.
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00002212 * Don't add mouse codes here, they are handled separately!
Bram Moolenaar071d4272004-06-13 20:20:40 +00002213 */
2214#define MOD_KEYS_ENTRY_SIZE 5
2215
2216static char_u modifier_keys_table[] =
2217{
2218/* mod mask with modifier without modifier */
2219 MOD_MASK_SHIFT, '&', '9', '@', '1', /* begin */
2220 MOD_MASK_SHIFT, '&', '0', '@', '2', /* cancel */
2221 MOD_MASK_SHIFT, '*', '1', '@', '4', /* command */
2222 MOD_MASK_SHIFT, '*', '2', '@', '5', /* copy */
2223 MOD_MASK_SHIFT, '*', '3', '@', '6', /* create */
2224 MOD_MASK_SHIFT, '*', '4', 'k', 'D', /* delete char */
2225 MOD_MASK_SHIFT, '*', '5', 'k', 'L', /* delete line */
2226 MOD_MASK_SHIFT, '*', '7', '@', '7', /* end */
2227 MOD_MASK_CTRL, KS_EXTRA, (int)KE_C_END, '@', '7', /* end */
2228 MOD_MASK_SHIFT, '*', '9', '@', '9', /* exit */
2229 MOD_MASK_SHIFT, '*', '0', '@', '0', /* find */
2230 MOD_MASK_SHIFT, '#', '1', '%', '1', /* help */
2231 MOD_MASK_SHIFT, '#', '2', 'k', 'h', /* home */
2232 MOD_MASK_CTRL, KS_EXTRA, (int)KE_C_HOME, 'k', 'h', /* home */
2233 MOD_MASK_SHIFT, '#', '3', 'k', 'I', /* insert */
2234 MOD_MASK_SHIFT, '#', '4', 'k', 'l', /* left arrow */
2235 MOD_MASK_CTRL, KS_EXTRA, (int)KE_C_LEFT, 'k', 'l', /* left arrow */
2236 MOD_MASK_SHIFT, '%', 'a', '%', '3', /* message */
2237 MOD_MASK_SHIFT, '%', 'b', '%', '4', /* move */
2238 MOD_MASK_SHIFT, '%', 'c', '%', '5', /* next */
2239 MOD_MASK_SHIFT, '%', 'd', '%', '7', /* options */
2240 MOD_MASK_SHIFT, '%', 'e', '%', '8', /* previous */
2241 MOD_MASK_SHIFT, '%', 'f', '%', '9', /* print */
2242 MOD_MASK_SHIFT, '%', 'g', '%', '0', /* redo */
2243 MOD_MASK_SHIFT, '%', 'h', '&', '3', /* replace */
2244 MOD_MASK_SHIFT, '%', 'i', 'k', 'r', /* right arr. */
2245 MOD_MASK_CTRL, KS_EXTRA, (int)KE_C_RIGHT, 'k', 'r', /* right arr. */
2246 MOD_MASK_SHIFT, '%', 'j', '&', '5', /* resume */
2247 MOD_MASK_SHIFT, '!', '1', '&', '6', /* save */
2248 MOD_MASK_SHIFT, '!', '2', '&', '7', /* suspend */
2249 MOD_MASK_SHIFT, '!', '3', '&', '8', /* undo */
2250 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_UP, 'k', 'u', /* up arrow */
2251 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_DOWN, 'k', 'd', /* down arrow */
2252
2253 /* vt100 F1 */
2254 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_XF1, KS_EXTRA, (int)KE_XF1,
2255 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_XF2, KS_EXTRA, (int)KE_XF2,
2256 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_XF3, KS_EXTRA, (int)KE_XF3,
2257 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_XF4, KS_EXTRA, (int)KE_XF4,
2258
2259 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F1, 'k', '1', /* F1 */
2260 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F2, 'k', '2',
2261 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F3, 'k', '3',
2262 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F4, 'k', '4',
2263 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F5, 'k', '5',
2264 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F6, 'k', '6',
2265 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F7, 'k', '7',
2266 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F8, 'k', '8',
2267 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F9, 'k', '9',
2268 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F10, 'k', ';', /* F10 */
2269
2270 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F11, 'F', '1',
2271 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F12, 'F', '2',
2272 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F13, 'F', '3',
2273 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F14, 'F', '4',
2274 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F15, 'F', '5',
2275 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F16, 'F', '6',
2276 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F17, 'F', '7',
2277 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F18, 'F', '8',
2278 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F19, 'F', '9',
2279 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F20, 'F', 'A',
2280
2281 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F21, 'F', 'B',
2282 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F22, 'F', 'C',
2283 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F23, 'F', 'D',
2284 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F24, 'F', 'E',
2285 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F25, 'F', 'F',
2286 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F26, 'F', 'G',
2287 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F27, 'F', 'H',
2288 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F28, 'F', 'I',
2289 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F29, 'F', 'J',
2290 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F30, 'F', 'K',
2291
2292 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F31, 'F', 'L',
2293 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F32, 'F', 'M',
2294 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F33, 'F', 'N',
2295 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F34, 'F', 'O',
2296 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F35, 'F', 'P',
2297 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F36, 'F', 'Q',
2298 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F37, 'F', 'R',
2299
2300 /* TAB pseudo code*/
2301 MOD_MASK_SHIFT, 'k', 'B', KS_EXTRA, (int)KE_TAB,
2302
2303 NUL
2304};
2305
2306static struct key_name_entry
2307{
2308 int key; /* Special key code or ascii value */
2309 char_u *name; /* Name of key */
2310} key_names_table[] =
2311{
2312 {' ', (char_u *)"Space"},
2313 {TAB, (char_u *)"Tab"},
2314 {K_TAB, (char_u *)"Tab"},
2315 {NL, (char_u *)"NL"},
2316 {NL, (char_u *)"NewLine"}, /* Alternative name */
2317 {NL, (char_u *)"LineFeed"}, /* Alternative name */
2318 {NL, (char_u *)"LF"}, /* Alternative name */
2319 {CAR, (char_u *)"CR"},
2320 {CAR, (char_u *)"Return"}, /* Alternative name */
2321 {CAR, (char_u *)"Enter"}, /* Alternative name */
2322 {K_BS, (char_u *)"BS"},
2323 {K_BS, (char_u *)"BackSpace"}, /* Alternative name */
2324 {ESC, (char_u *)"Esc"},
2325 {CSI, (char_u *)"CSI"},
2326 {K_CSI, (char_u *)"xCSI"},
2327 {'|', (char_u *)"Bar"},
2328 {'\\', (char_u *)"Bslash"},
2329 {K_DEL, (char_u *)"Del"},
2330 {K_DEL, (char_u *)"Delete"}, /* Alternative name */
2331 {K_KDEL, (char_u *)"kDel"},
2332 {K_UP, (char_u *)"Up"},
2333 {K_DOWN, (char_u *)"Down"},
2334 {K_LEFT, (char_u *)"Left"},
2335 {K_RIGHT, (char_u *)"Right"},
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002336 {K_XUP, (char_u *)"xUp"},
2337 {K_XDOWN, (char_u *)"xDown"},
2338 {K_XLEFT, (char_u *)"xLeft"},
2339 {K_XRIGHT, (char_u *)"xRight"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002340
2341 {K_F1, (char_u *)"F1"},
2342 {K_F2, (char_u *)"F2"},
2343 {K_F3, (char_u *)"F3"},
2344 {K_F4, (char_u *)"F4"},
2345 {K_F5, (char_u *)"F5"},
2346 {K_F6, (char_u *)"F6"},
2347 {K_F7, (char_u *)"F7"},
2348 {K_F8, (char_u *)"F8"},
2349 {K_F9, (char_u *)"F9"},
2350 {K_F10, (char_u *)"F10"},
2351
2352 {K_F11, (char_u *)"F11"},
2353 {K_F12, (char_u *)"F12"},
2354 {K_F13, (char_u *)"F13"},
2355 {K_F14, (char_u *)"F14"},
2356 {K_F15, (char_u *)"F15"},
2357 {K_F16, (char_u *)"F16"},
2358 {K_F17, (char_u *)"F17"},
2359 {K_F18, (char_u *)"F18"},
2360 {K_F19, (char_u *)"F19"},
2361 {K_F20, (char_u *)"F20"},
2362
2363 {K_F21, (char_u *)"F21"},
2364 {K_F22, (char_u *)"F22"},
2365 {K_F23, (char_u *)"F23"},
2366 {K_F24, (char_u *)"F24"},
2367 {K_F25, (char_u *)"F25"},
2368 {K_F26, (char_u *)"F26"},
2369 {K_F27, (char_u *)"F27"},
2370 {K_F28, (char_u *)"F28"},
2371 {K_F29, (char_u *)"F29"},
2372 {K_F30, (char_u *)"F30"},
2373
2374 {K_F31, (char_u *)"F31"},
2375 {K_F32, (char_u *)"F32"},
2376 {K_F33, (char_u *)"F33"},
2377 {K_F34, (char_u *)"F34"},
2378 {K_F35, (char_u *)"F35"},
2379 {K_F36, (char_u *)"F36"},
2380 {K_F37, (char_u *)"F37"},
2381
2382 {K_XF1, (char_u *)"xF1"},
2383 {K_XF2, (char_u *)"xF2"},
2384 {K_XF3, (char_u *)"xF3"},
2385 {K_XF4, (char_u *)"xF4"},
2386
2387 {K_HELP, (char_u *)"Help"},
2388 {K_UNDO, (char_u *)"Undo"},
2389 {K_INS, (char_u *)"Insert"},
2390 {K_INS, (char_u *)"Ins"}, /* Alternative name */
2391 {K_KINS, (char_u *)"kInsert"},
2392 {K_HOME, (char_u *)"Home"},
2393 {K_KHOME, (char_u *)"kHome"},
2394 {K_XHOME, (char_u *)"xHome"},
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002395 {K_ZHOME, (char_u *)"zHome"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002396 {K_END, (char_u *)"End"},
2397 {K_KEND, (char_u *)"kEnd"},
2398 {K_XEND, (char_u *)"xEnd"},
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002399 {K_ZEND, (char_u *)"zEnd"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002400 {K_PAGEUP, (char_u *)"PageUp"},
2401 {K_PAGEDOWN, (char_u *)"PageDown"},
2402 {K_KPAGEUP, (char_u *)"kPageUp"},
2403 {K_KPAGEDOWN, (char_u *)"kPageDown"},
2404
2405 {K_KPLUS, (char_u *)"kPlus"},
2406 {K_KMINUS, (char_u *)"kMinus"},
2407 {K_KDIVIDE, (char_u *)"kDivide"},
2408 {K_KMULTIPLY, (char_u *)"kMultiply"},
2409 {K_KENTER, (char_u *)"kEnter"},
2410 {K_KPOINT, (char_u *)"kPoint"},
2411
2412 {K_K0, (char_u *)"k0"},
2413 {K_K1, (char_u *)"k1"},
2414 {K_K2, (char_u *)"k2"},
2415 {K_K3, (char_u *)"k3"},
2416 {K_K4, (char_u *)"k4"},
2417 {K_K5, (char_u *)"k5"},
2418 {K_K6, (char_u *)"k6"},
2419 {K_K7, (char_u *)"k7"},
2420 {K_K8, (char_u *)"k8"},
2421 {K_K9, (char_u *)"k9"},
2422
2423 {'<', (char_u *)"lt"},
2424
2425 {K_MOUSE, (char_u *)"Mouse"},
Bram Moolenaar5af7d712012-01-20 17:15:51 +01002426#ifdef FEAT_MOUSE_NET
Bram Moolenaar071d4272004-06-13 20:20:40 +00002427 {K_NETTERM_MOUSE, (char_u *)"NetMouse"},
Bram Moolenaar5af7d712012-01-20 17:15:51 +01002428#endif
2429#ifdef FEAT_MOUSE_DEC
Bram Moolenaar071d4272004-06-13 20:20:40 +00002430 {K_DEC_MOUSE, (char_u *)"DecMouse"},
Bram Moolenaar5af7d712012-01-20 17:15:51 +01002431#endif
2432#ifdef FEAT_MOUSE_JSB
Bram Moolenaar071d4272004-06-13 20:20:40 +00002433 {K_JSBTERM_MOUSE, (char_u *)"JsbMouse"},
Bram Moolenaar5af7d712012-01-20 17:15:51 +01002434#endif
2435#ifdef FEAT_MOUSE_PTERM
Bram Moolenaar071d4272004-06-13 20:20:40 +00002436 {K_PTERM_MOUSE, (char_u *)"PtermMouse"},
Bram Moolenaar5af7d712012-01-20 17:15:51 +01002437#endif
2438#ifdef FEAT_MOUSE_URXVT
2439 {K_URXVT_MOUSE, (char_u *)"UrxvtMouse"},
2440#endif
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02002441#ifdef FEAT_MOUSE_SGR
2442 {K_SGR_MOUSE, (char_u *)"SgrMouse"},
2443#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002444 {K_LEFTMOUSE, (char_u *)"LeftMouse"},
2445 {K_LEFTMOUSE_NM, (char_u *)"LeftMouseNM"},
2446 {K_LEFTDRAG, (char_u *)"LeftDrag"},
2447 {K_LEFTRELEASE, (char_u *)"LeftRelease"},
2448 {K_LEFTRELEASE_NM, (char_u *)"LeftReleaseNM"},
2449 {K_MIDDLEMOUSE, (char_u *)"MiddleMouse"},
2450 {K_MIDDLEDRAG, (char_u *)"MiddleDrag"},
2451 {K_MIDDLERELEASE, (char_u *)"MiddleRelease"},
2452 {K_RIGHTMOUSE, (char_u *)"RightMouse"},
2453 {K_RIGHTDRAG, (char_u *)"RightDrag"},
2454 {K_RIGHTRELEASE, (char_u *)"RightRelease"},
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02002455 {K_MOUSEDOWN, (char_u *)"ScrollWheelUp"},
2456 {K_MOUSEUP, (char_u *)"ScrollWheelDown"},
2457 {K_MOUSELEFT, (char_u *)"ScrollWheelRight"},
2458 {K_MOUSERIGHT, (char_u *)"ScrollWheelLeft"},
2459 {K_MOUSEDOWN, (char_u *)"MouseDown"}, /* OBSOLETE: Use */
2460 {K_MOUSEUP, (char_u *)"MouseUp"}, /* ScrollWheelXXX instead */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002461 {K_X1MOUSE, (char_u *)"X1Mouse"},
2462 {K_X1DRAG, (char_u *)"X1Drag"},
2463 {K_X1RELEASE, (char_u *)"X1Release"},
2464 {K_X2MOUSE, (char_u *)"X2Mouse"},
2465 {K_X2DRAG, (char_u *)"X2Drag"},
2466 {K_X2RELEASE, (char_u *)"X2Release"},
2467 {K_DROP, (char_u *)"Drop"},
2468 {K_ZERO, (char_u *)"Nul"},
2469#ifdef FEAT_EVAL
2470 {K_SNR, (char_u *)"SNR"},
2471#endif
2472 {K_PLUG, (char_u *)"Plug"},
2473 {0, NULL}
2474};
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
2521name_to_mod_mask(c)
2522 int c;
2523{
2524 int i;
2525
2526 c = TOUPPER_ASC(c);
2527 for (i = 0; mod_mask_table[i].mod_mask != 0; i++)
2528 if (c == mod_mask_table[i].name)
2529 return mod_mask_table[i].mod_flag;
2530 return 0;
2531}
2532
Bram Moolenaar071d4272004-06-13 20:20:40 +00002533/*
2534 * Check if if there is a special key code for "key" that includes the
2535 * modifiers specified.
2536 */
2537 int
2538simplify_key(key, modifiers)
2539 int key;
2540 int *modifiers;
2541{
2542 int i;
2543 int key0;
2544 int key1;
2545
2546 if (*modifiers & (MOD_MASK_SHIFT | MOD_MASK_CTRL | MOD_MASK_ALT))
2547 {
2548 /* TAB is a special case */
2549 if (key == TAB && (*modifiers & MOD_MASK_SHIFT))
2550 {
2551 *modifiers &= ~MOD_MASK_SHIFT;
2552 return K_S_TAB;
2553 }
2554 key0 = KEY2TERMCAP0(key);
2555 key1 = KEY2TERMCAP1(key);
2556 for (i = 0; modifier_keys_table[i] != NUL; i += MOD_KEYS_ENTRY_SIZE)
2557 if (key0 == modifier_keys_table[i + 3]
2558 && key1 == modifier_keys_table[i + 4]
2559 && (*modifiers & modifier_keys_table[i]))
2560 {
2561 *modifiers &= ~modifier_keys_table[i];
2562 return TERMCAP2KEY(modifier_keys_table[i + 1],
2563 modifier_keys_table[i + 2]);
2564 }
2565 }
2566 return key;
2567}
2568
2569/*
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002570 * Change <xHome> to <Home>, <xUp> to <Up>, etc.
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002571 */
2572 int
2573handle_x_keys(key)
2574 int key;
2575{
2576 switch (key)
2577 {
2578 case K_XUP: return K_UP;
2579 case K_XDOWN: return K_DOWN;
2580 case K_XLEFT: return K_LEFT;
2581 case K_XRIGHT: return K_RIGHT;
2582 case K_XHOME: return K_HOME;
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002583 case K_ZHOME: return K_HOME;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002584 case K_XEND: return K_END;
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002585 case K_ZEND: return K_END;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002586 case K_XF1: return K_F1;
2587 case K_XF2: return K_F2;
2588 case K_XF3: return K_F3;
2589 case K_XF4: return K_F4;
2590 case K_S_XF1: return K_S_F1;
2591 case K_S_XF2: return K_S_F2;
2592 case K_S_XF3: return K_S_F3;
2593 case K_S_XF4: return K_S_F4;
2594 }
2595 return key;
2596}
2597
2598/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002599 * Return a string which contains the name of the given key when the given
2600 * modifiers are down.
2601 */
2602 char_u *
2603get_special_key_name(c, modifiers)
2604 int c;
2605 int modifiers;
2606{
2607 static char_u string[MAX_KEY_NAME_LEN + 1];
2608
2609 int i, idx;
2610 int table_idx;
2611 char_u *s;
2612
2613 string[0] = '<';
2614 idx = 1;
2615
2616 /* Key that stands for a normal character. */
2617 if (IS_SPECIAL(c) && KEY2TERMCAP0(c) == KS_KEY)
2618 c = KEY2TERMCAP1(c);
2619
2620 /*
2621 * Translate shifted special keys into unshifted keys and set modifier.
2622 * Same for CTRL and ALT modifiers.
2623 */
2624 if (IS_SPECIAL(c))
2625 {
2626 for (i = 0; modifier_keys_table[i] != 0; i += MOD_KEYS_ENTRY_SIZE)
2627 if ( KEY2TERMCAP0(c) == (int)modifier_keys_table[i + 1]
2628 && (int)KEY2TERMCAP1(c) == (int)modifier_keys_table[i + 2])
2629 {
2630 modifiers |= modifier_keys_table[i];
2631 c = TERMCAP2KEY(modifier_keys_table[i + 3],
2632 modifier_keys_table[i + 4]);
2633 break;
2634 }
2635 }
2636
2637 /* try to find the key in the special key table */
2638 table_idx = find_special_key_in_table(c);
2639
2640 /*
2641 * When not a known special key, and not a printable character, try to
2642 * extract modifiers.
2643 */
2644 if (c > 0
2645#ifdef FEAT_MBYTE
2646 && (*mb_char2len)(c) == 1
2647#endif
2648 )
2649 {
2650 if (table_idx < 0
2651 && (!vim_isprintc(c) || (c & 0x7f) == ' ')
2652 && (c & 0x80))
2653 {
2654 c &= 0x7f;
2655 modifiers |= MOD_MASK_ALT;
2656 /* try again, to find the un-alted key in the special key table */
2657 table_idx = find_special_key_in_table(c);
2658 }
2659 if (table_idx < 0 && !vim_isprintc(c) && c < ' ')
2660 {
2661#ifdef EBCDIC
2662 c = CtrlChar(c);
2663#else
2664 c += '@';
2665#endif
2666 modifiers |= MOD_MASK_CTRL;
2667 }
2668 }
2669
2670 /* translate the modifier into a string */
2671 for (i = 0; mod_mask_table[i].name != 'A'; i++)
2672 if ((modifiers & mod_mask_table[i].mod_mask)
2673 == mod_mask_table[i].mod_flag)
2674 {
2675 string[idx++] = mod_mask_table[i].name;
2676 string[idx++] = (char_u)'-';
2677 }
2678
2679 if (table_idx < 0) /* unknown special key, may output t_xx */
2680 {
2681 if (IS_SPECIAL(c))
2682 {
2683 string[idx++] = 't';
2684 string[idx++] = '_';
2685 string[idx++] = KEY2TERMCAP0(c);
2686 string[idx++] = KEY2TERMCAP1(c);
2687 }
2688 /* Not a special key, only modifiers, output directly */
2689 else
2690 {
2691#ifdef FEAT_MBYTE
2692 if (has_mbyte && (*mb_char2len)(c) > 1)
2693 idx += (*mb_char2bytes)(c, string + idx);
2694 else
2695#endif
2696 if (vim_isprintc(c))
2697 string[idx++] = c;
2698 else
2699 {
2700 s = transchar(c);
2701 while (*s)
2702 string[idx++] = *s++;
2703 }
2704 }
2705 }
2706 else /* use name of special key */
2707 {
2708 STRCPY(string + idx, key_names_table[table_idx].name);
2709 idx = (int)STRLEN(string);
2710 }
2711 string[idx++] = '>';
2712 string[idx] = NUL;
2713 return string;
2714}
2715
2716/*
2717 * Try translating a <> name at (*srcp)[] to dst[].
2718 * Return the number of characters added to dst[], zero for no match.
2719 * If there is a match, srcp is advanced to after the <> name.
2720 * dst[] must be big enough to hold the result (up to six characters)!
2721 */
2722 int
2723trans_special(srcp, dst, keycode)
2724 char_u **srcp;
2725 char_u *dst;
2726 int keycode; /* prefer key code, e.g. K_DEL instead of DEL */
2727{
2728 int modifiers = 0;
2729 int key;
2730 int dlen = 0;
2731
Bram Moolenaar2a8ced02008-12-24 11:54:31 +00002732 key = find_special_key(srcp, &modifiers, keycode, FALSE);
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 Moolenaar2a8ced02008-12-24 11:54:31 +00002768find_special_key(srcp, modp, keycode, keep_x_key)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002769 char_u **srcp;
2770 int *modp;
Bram Moolenaar2a8ced02008-12-24 11:54:31 +00002771 int keycode; /* prefer key code, e.g. K_DEL instead of DEL */
2772 int keep_x_key; /* don't translate xHome to Home key */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002773{
2774 char_u *last_dash;
2775 char_u *end_of_name;
2776 char_u *src;
2777 char_u *bp;
2778 int modifiers;
2779 int bit;
2780 int key;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002781 unsigned long n;
Bram Moolenaarb8bf5412011-08-17 20:33:22 +02002782 int l;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002783
2784 src = *srcp;
2785 if (src[0] != '<')
2786 return 0;
2787
2788 /* Find end of modifier list */
2789 last_dash = src;
2790 for (bp = src + 1; *bp == '-' || vim_isIDc(*bp); bp++)
2791 {
2792 if (*bp == '-')
2793 {
2794 last_dash = bp;
Bram Moolenaarb8bf5412011-08-17 20:33:22 +02002795 if (bp[1] != NUL)
2796 {
2797#ifdef FEAT_MBYTE
2798 if (has_mbyte)
2799 l = mb_ptr2len(bp + 1);
2800 else
2801#endif
2802 l = 1;
2803 if (bp[l + 1] == '>')
2804 bp += l; /* anything accepted, like <C-?> */
2805 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002806 }
2807 if (bp[0] == 't' && bp[1] == '_' && bp[2] && bp[3])
2808 bp += 3; /* skip t_xx, xx may be '-' or '>' */
Bram Moolenaar792826c2011-08-19 22:29:02 +02002809 else if (STRNICMP(bp, "char-", 5) == 0)
2810 {
2811 vim_str2nr(bp + 5, NULL, &l, TRUE, TRUE, NULL, NULL);
2812 bp += l + 5;
2813 break;
2814 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002815 }
2816
2817 if (*bp == '>') /* found matching '>' */
2818 {
2819 end_of_name = bp + 1;
2820
Bram Moolenaar071d4272004-06-13 20:20:40 +00002821 /* Which modifiers are given? */
2822 modifiers = 0x0;
2823 for (bp = src + 1; bp < last_dash; bp++)
2824 {
2825 if (*bp != '-')
2826 {
2827 bit = name_to_mod_mask(*bp);
2828 if (bit == 0x0)
2829 break; /* Illegal modifier name */
2830 modifiers |= bit;
2831 }
2832 }
2833
2834 /*
2835 * Legal modifier name.
2836 */
2837 if (bp >= last_dash)
2838 {
Bram Moolenaarb8bf5412011-08-17 20:33:22 +02002839 if (STRNICMP(last_dash + 1, "char-", 5) == 0
2840 && VIM_ISDIGIT(last_dash[6]))
2841 {
2842 /* <Char-123> or <Char-033> or <Char-0x33> */
2843 vim_str2nr(last_dash + 6, NULL, NULL, TRUE, TRUE, NULL, &n);
Bram Moolenaar792826c2011-08-19 22:29:02 +02002844 key = (int)n;
Bram Moolenaarb8bf5412011-08-17 20:33:22 +02002845 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002846 else
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002847 {
Bram Moolenaar792826c2011-08-19 22:29:02 +02002848 /*
2849 * Modifier with single letter, or special key name.
2850 */
2851#ifdef FEAT_MBYTE
2852 if (has_mbyte)
2853 l = mb_ptr2len(last_dash + 1);
2854 else
2855#endif
2856 l = 1;
2857 if (modifiers != 0 && last_dash[l + 1] == '>')
2858 key = PTR2CHAR(last_dash + 1);
2859 else
2860 {
2861 key = get_special_key_code(last_dash + 1);
2862 if (!keep_x_key)
2863 key = handle_x_keys(key);
2864 }
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002865 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002866
2867 /*
2868 * get_special_key_code() may return NUL for invalid
2869 * special key name.
2870 */
2871 if (key != NUL)
2872 {
2873 /*
2874 * Only use a modifier when there is no special key code that
2875 * includes the modifier.
2876 */
2877 key = simplify_key(key, &modifiers);
2878
2879 if (!keycode)
2880 {
2881 /* don't want keycode, use single byte code */
2882 if (key == K_BS)
2883 key = BS;
2884 else if (key == K_DEL || key == K_KDEL)
2885 key = DEL;
2886 }
2887
2888 /*
2889 * Normal Key with modifier: Try to make a single byte code.
2890 */
2891 if (!IS_SPECIAL(key))
2892 key = extract_modifiers(key, &modifiers);
2893
2894 *modp = modifiers;
2895 *srcp = end_of_name;
2896 return key;
2897 }
2898 }
2899 }
2900 return 0;
2901}
2902
2903/*
2904 * Try to include modifiers in the key.
2905 * Changes "Shift-a" to 'A', "Alt-A" to 0xc0, etc.
2906 */
2907 int
2908extract_modifiers(key, modp)
2909 int key;
2910 int *modp;
2911{
2912 int modifiers = *modp;
2913
2914#ifdef MACOS
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02002915 /* Command-key really special, no fancynest */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002916 if (!(modifiers & MOD_MASK_CMD))
2917#endif
2918 if ((modifiers & MOD_MASK_SHIFT) && ASCII_ISALPHA(key))
2919 {
2920 key = TOUPPER_ASC(key);
2921 modifiers &= ~MOD_MASK_SHIFT;
2922 }
2923 if ((modifiers & MOD_MASK_CTRL)
2924#ifdef EBCDIC
2925 /* * TODO: EBCDIC Better use:
2926 * && (Ctrl_chr(key) || key == '?')
2927 * ??? */
2928 && strchr("?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_", key)
2929 != NULL
2930#else
2931 && ((key >= '?' && key <= '_') || ASCII_ISALPHA(key))
2932#endif
2933 )
2934 {
2935 key = Ctrl_chr(key);
2936 modifiers &= ~MOD_MASK_CTRL;
2937 /* <C-@> is <Nul> */
2938 if (key == 0)
2939 key = K_ZERO;
2940 }
2941#ifdef MACOS
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02002942 /* Command-key really special, no fancynest */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002943 if (!(modifiers & MOD_MASK_CMD))
2944#endif
2945 if ((modifiers & MOD_MASK_ALT) && key < 0x80
2946#ifdef FEAT_MBYTE
2947 && !enc_dbcs /* avoid creating a lead byte */
2948#endif
2949 )
2950 {
2951 key |= 0x80;
2952 modifiers &= ~MOD_MASK_ALT; /* remove the META modifier */
2953 }
2954
2955 *modp = modifiers;
2956 return key;
2957}
2958
2959/*
2960 * Try to find key "c" in the special key table.
2961 * Return the index when found, -1 when not found.
2962 */
2963 int
2964find_special_key_in_table(c)
2965 int c;
2966{
2967 int i;
2968
2969 for (i = 0; key_names_table[i].name != NULL; i++)
2970 if (c == key_names_table[i].key)
2971 break;
2972 if (key_names_table[i].name == NULL)
2973 i = -1;
2974 return i;
2975}
2976
2977/*
2978 * Find the special key with the given name (the given string does not have to
2979 * end with NUL, the name is assumed to end before the first non-idchar).
2980 * If the name starts with "t_" the next two characters are interpreted as a
2981 * termcap name.
2982 * Return the key code, or 0 if not found.
2983 */
2984 int
2985get_special_key_code(name)
2986 char_u *name;
2987{
2988 char_u *table_name;
2989 char_u string[3];
2990 int i, j;
2991
2992 /*
2993 * If it's <t_xx> we get the code for xx from the termcap
2994 */
2995 if (name[0] == 't' && name[1] == '_' && name[2] != NUL && name[3] != NUL)
2996 {
2997 string[0] = name[2];
2998 string[1] = name[3];
2999 string[2] = NUL;
3000 if (add_termcap_entry(string, FALSE) == OK)
3001 return TERMCAP2KEY(name[2], name[3]);
3002 }
3003 else
3004 for (i = 0; key_names_table[i].name != NULL; i++)
3005 {
3006 table_name = key_names_table[i].name;
3007 for (j = 0; vim_isIDc(name[j]) && table_name[j] != NUL; j++)
3008 if (TOLOWER_ASC(table_name[j]) != TOLOWER_ASC(name[j]))
3009 break;
3010 if (!vim_isIDc(name[j]) && table_name[j] == NUL)
3011 return key_names_table[i].key;
3012 }
3013 return 0;
3014}
3015
Bram Moolenaar05bb9532008-07-04 09:44:11 +00003016#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003017 char_u *
3018get_key_name(i)
3019 int i;
3020{
Bram Moolenaare1fbddc2009-05-16 19:07:03 +00003021 if (i >= (int)KEY_NAMES_TABLE_LEN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003022 return NULL;
3023 return key_names_table[i].name;
3024}
3025#endif
3026
Bram Moolenaar05bb9532008-07-04 09:44:11 +00003027#if defined(FEAT_MOUSE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003028/*
3029 * Look up the given mouse code to return the relevant information in the other
3030 * arguments. Return which button is down or was released.
3031 */
3032 int
3033get_mouse_button(code, is_click, is_drag)
3034 int code;
3035 int *is_click;
3036 int *is_drag;
3037{
3038 int i;
3039
3040 for (i = 0; mouse_table[i].pseudo_code; i++)
3041 if (code == mouse_table[i].pseudo_code)
3042 {
3043 *is_click = mouse_table[i].is_click;
3044 *is_drag = mouse_table[i].is_drag;
3045 return mouse_table[i].button;
3046 }
3047 return 0; /* Shouldn't get here */
3048}
3049
3050/*
3051 * Return the appropriate pseudo mouse event token (KE_LEFTMOUSE etc) based on
3052 * the given information about which mouse button is down, and whether the
3053 * mouse was clicked, dragged or released.
3054 */
3055 int
3056get_pseudo_mouse_code(button, is_click, is_drag)
3057 int button; /* eg MOUSE_LEFT */
3058 int is_click;
3059 int is_drag;
3060{
3061 int i;
3062
3063 for (i = 0; mouse_table[i].pseudo_code; i++)
3064 if (button == mouse_table[i].button
3065 && is_click == mouse_table[i].is_click
3066 && is_drag == mouse_table[i].is_drag)
3067 {
3068#ifdef FEAT_GUI
Bram Moolenaarc91506a2005-04-24 22:04:21 +00003069 /* Trick: a non mappable left click and release has mouse_col -1
3070 * or added MOUSE_COLOFF. Used for 'mousefocus' in
3071 * gui_mouse_moved() */
3072 if (mouse_col < 0 || mouse_col > MOUSE_COLOFF)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003073 {
Bram Moolenaarc91506a2005-04-24 22:04:21 +00003074 if (mouse_col < 0)
3075 mouse_col = 0;
3076 else
3077 mouse_col -= MOUSE_COLOFF;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003078 if (mouse_table[i].pseudo_code == (int)KE_LEFTMOUSE)
3079 return (int)KE_LEFTMOUSE_NM;
3080 if (mouse_table[i].pseudo_code == (int)KE_LEFTRELEASE)
3081 return (int)KE_LEFTRELEASE_NM;
3082 }
3083#endif
3084 return mouse_table[i].pseudo_code;
3085 }
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00003086 return (int)KE_IGNORE; /* not recognized, ignore it */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003087}
3088#endif /* FEAT_MOUSE */
3089
3090/*
3091 * Return the current end-of-line type: EOL_DOS, EOL_UNIX or EOL_MAC.
3092 */
3093 int
3094get_fileformat(buf)
3095 buf_T *buf;
3096{
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
3111get_fileformat_force(buf, eap)
3112 buf_T *buf;
3113 exarg_T *eap; /* can be NULL! */
3114{
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
3139set_fileformat(t, opt_flags)
3140 int t;
3141 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
3142{
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
3178default_fileformat()
3179{
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
3192call_shell(cmd, opt)
3193 char_u *cmd;
3194 int opt;
3195{
3196 char_u *ncmd;
3197 int retval;
Bram Moolenaar05159a02005-02-26 23:04:13 +00003198#ifdef FEAT_PROFILE
3199 proftime_T wait_time;
3200#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003201
3202 if (p_verbose > 3)
3203 {
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00003204 verbose_enter();
Bram Moolenaar051b7822005-05-19 21:00:46 +00003205 smsg((char_u *)_("Calling shell to execute: \"%s\""),
Bram Moolenaar071d4272004-06-13 20:20:40 +00003206 cmd == NULL ? p_sh : cmd);
3207 out_char('\n');
3208 cursor_on();
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00003209 verbose_leave();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003210 }
3211
Bram Moolenaar05159a02005-02-26 23:04:13 +00003212#ifdef FEAT_PROFILE
Bram Moolenaar01265852006-03-20 21:50:15 +00003213 if (do_profiling == PROF_YES)
Bram Moolenaar05159a02005-02-26 23:04:13 +00003214 prof_child_enter(&wait_time);
3215#endif
3216
Bram Moolenaar071d4272004-06-13 20:20:40 +00003217 if (*p_sh == NUL)
3218 {
3219 EMSG(_(e_shellempty));
3220 retval = -1;
3221 }
3222 else
3223 {
3224#ifdef FEAT_GUI_MSWIN
3225 /* Don't hide the pointer while executing a shell command. */
3226 gui_mch_mousehide(FALSE);
3227#endif
3228#ifdef FEAT_GUI
3229 ++hold_gui_events;
3230#endif
3231 /* The external command may update a tags file, clear cached tags. */
3232 tag_freematch();
3233
3234 if (cmd == NULL || *p_sxq == NUL)
3235 retval = mch_call_shell(cmd, opt);
3236 else
3237 {
Bram Moolenaarf66b3fc2012-02-20 22:18:30 +01003238 char_u *ecmd = cmd;
3239
3240 if (*p_sxe != NUL && STRCMP(p_sxq, "(") == 0)
3241 {
3242 ecmd = vim_strsave_escaped_ext(cmd, p_sxe, '^', FALSE);
3243 if (ecmd == NULL)
3244 ecmd = cmd;
3245 }
3246 ncmd = alloc((unsigned)(STRLEN(ecmd) + STRLEN(p_sxq) * 2 + 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003247 if (ncmd != NULL)
3248 {
3249 STRCPY(ncmd, p_sxq);
Bram Moolenaarf66b3fc2012-02-20 22:18:30 +01003250 STRCAT(ncmd, ecmd);
Bram Moolenaar034b1152012-02-19 18:19:30 +01003251 /* When 'shellxquote' is ( append ).
3252 * When 'shellxquote' is "( append )". */
3253 STRCAT(ncmd, STRCMP(p_sxq, "(") == 0 ? (char_u *)")"
3254 : STRCMP(p_sxq, "\"(") == 0 ? (char_u *)")\""
3255 : p_sxq);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003256 retval = mch_call_shell(ncmd, opt);
3257 vim_free(ncmd);
3258 }
3259 else
3260 retval = -1;
Bram Moolenaarf66b3fc2012-02-20 22:18:30 +01003261 if (ecmd != cmd)
3262 vim_free(ecmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003263 }
3264#ifdef FEAT_GUI
3265 --hold_gui_events;
3266#endif
3267 /*
3268 * Check the window size, in case it changed while executing the
3269 * external command.
3270 */
3271 shell_resized_check();
3272 }
3273
3274#ifdef FEAT_EVAL
3275 set_vim_var_nr(VV_SHELL_ERROR, (long)retval);
Bram Moolenaar05159a02005-02-26 23:04:13 +00003276# ifdef FEAT_PROFILE
Bram Moolenaar01265852006-03-20 21:50:15 +00003277 if (do_profiling == PROF_YES)
Bram Moolenaar05159a02005-02-26 23:04:13 +00003278 prof_child_exit(&wait_time);
3279# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003280#endif
3281
3282 return retval;
3283}
3284
3285/*
Bram Moolenaar01265852006-03-20 21:50:15 +00003286 * VISUAL, SELECTMODE and OP_PENDING State are never set, they are equal to
3287 * NORMAL State with a condition. This function returns the real State.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003288 */
3289 int
3290get_real_state()
3291{
3292 if (State & NORMAL)
3293 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003294 if (VIsual_active)
Bram Moolenaar01265852006-03-20 21:50:15 +00003295 {
3296 if (VIsual_select)
3297 return SELECTMODE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003298 return VISUAL;
Bram Moolenaar01265852006-03-20 21:50:15 +00003299 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01003300 else if (finish_op)
3301 return OP_PENDING;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003302 }
3303 return State;
3304}
3305
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003306#if defined(FEAT_MBYTE) || defined(PROTO)
3307/*
3308 * Return TRUE if "p" points to just after a path separator.
Bram Moolenaarb5ce04d2011-07-07 17:15:33 +02003309 * Takes care of multi-byte characters.
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003310 * "b" must point to the start of the file name
3311 */
3312 int
3313after_pathsep(b, p)
3314 char_u *b;
3315 char_u *p;
3316{
Bram Moolenaarb5ce04d2011-07-07 17:15:33 +02003317 return p > b && vim_ispathsep(p[-1])
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003318 && (!has_mbyte || (*mb_head_off)(b, p - 1) == 0);
3319}
3320#endif
3321
3322/*
3323 * Return TRUE if file names "f1" and "f2" are in the same directory.
3324 * "f1" may be a short name, "f2" must be a full path.
3325 */
3326 int
3327same_directory(f1, f2)
3328 char_u *f1;
3329 char_u *f2;
3330{
3331 char_u ffname[MAXPATHL];
3332 char_u *t1;
3333 char_u *t2;
3334
3335 /* safety check */
3336 if (f1 == NULL || f2 == NULL)
3337 return FALSE;
3338
3339 (void)vim_FullName(f1, ffname, MAXPATHL, FALSE);
3340 t1 = gettail_sep(ffname);
3341 t2 = gettail_sep(f2);
3342 return (t1 - ffname == t2 - f2
3343 && pathcmp((char *)ffname, (char *)f2, (int)(t1 - ffname)) == 0);
3344}
3345
Bram Moolenaar071d4272004-06-13 20:20:40 +00003346#if defined(FEAT_SESSION) || defined(MSWIN) || defined(FEAT_GUI_MAC) \
Bram Moolenaar9372a112005-12-06 19:59:18 +00003347 || ((defined(FEAT_GUI_GTK)) \
Bram Moolenaar843ee412004-06-30 16:16:41 +00003348 && ( defined(FEAT_WINDOWS) || defined(FEAT_DND)) ) \
Bram Moolenaar071d4272004-06-13 20:20:40 +00003349 || defined(FEAT_SUN_WORKSHOP) || defined(FEAT_NETBEANS_INTG) \
3350 || defined(PROTO)
3351/*
3352 * Change to a file's directory.
3353 * Caller must call shorten_fnames()!
3354 * Return OK or FAIL.
3355 */
3356 int
3357vim_chdirfile(fname)
3358 char_u *fname;
3359{
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003360 char_u dir[MAXPATHL];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003361
Bram Moolenaarbbebc852005-07-18 21:47:53 +00003362 vim_strncpy(dir, fname, MAXPATHL - 1);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003363 *gettail_sep(dir) = NUL;
3364 return mch_chdir((char *)dir) == 0 ? OK : FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003365}
3366#endif
3367
3368#if defined(STAT_IGNORES_SLASH) || defined(PROTO)
3369/*
3370 * Check if "name" ends in a slash and is not a directory.
3371 * Used for systems where stat() ignores a trailing slash on a file name.
3372 * The Vim code assumes a trailing slash is only ignored for a directory.
3373 */
3374 int
3375illegal_slash(name)
3376 char *name;
3377{
3378 if (name[0] == NUL)
3379 return FALSE; /* no file name is not illegal */
3380 if (name[strlen(name) - 1] != '/')
3381 return FALSE; /* no trailing slash */
3382 if (mch_isdir((char_u *)name))
3383 return FALSE; /* trailing slash for a directory */
3384 return TRUE;
3385}
3386#endif
3387
3388#if defined(CURSOR_SHAPE) || defined(PROTO)
3389
3390/*
3391 * Handling of cursor and mouse pointer shapes in various modes.
3392 */
3393
3394cursorentry_T shape_table[SHAPE_IDX_COUNT] =
3395{
3396 /* The values will be filled in from the 'guicursor' and 'mouseshape'
3397 * defaults when Vim starts.
3398 * Adjust the SHAPE_IDX_ defines when making changes! */
3399 {0, 0, 0, 700L, 400L, 250L, 0, 0, "n", SHAPE_CURSOR+SHAPE_MOUSE},
3400 {0, 0, 0, 700L, 400L, 250L, 0, 0, "v", SHAPE_CURSOR+SHAPE_MOUSE},
3401 {0, 0, 0, 700L, 400L, 250L, 0, 0, "i", SHAPE_CURSOR+SHAPE_MOUSE},
3402 {0, 0, 0, 700L, 400L, 250L, 0, 0, "r", SHAPE_CURSOR+SHAPE_MOUSE},
3403 {0, 0, 0, 700L, 400L, 250L, 0, 0, "c", SHAPE_CURSOR+SHAPE_MOUSE},
3404 {0, 0, 0, 700L, 400L, 250L, 0, 0, "ci", SHAPE_CURSOR+SHAPE_MOUSE},
3405 {0, 0, 0, 700L, 400L, 250L, 0, 0, "cr", SHAPE_CURSOR+SHAPE_MOUSE},
3406 {0, 0, 0, 700L, 400L, 250L, 0, 0, "o", SHAPE_CURSOR+SHAPE_MOUSE},
3407 {0, 0, 0, 700L, 400L, 250L, 0, 0, "ve", SHAPE_CURSOR+SHAPE_MOUSE},
3408 {0, 0, 0, 0L, 0L, 0L, 0, 0, "e", SHAPE_MOUSE},
3409 {0, 0, 0, 0L, 0L, 0L, 0, 0, "s", SHAPE_MOUSE},
3410 {0, 0, 0, 0L, 0L, 0L, 0, 0, "sd", SHAPE_MOUSE},
3411 {0, 0, 0, 0L, 0L, 0L, 0, 0, "vs", SHAPE_MOUSE},
3412 {0, 0, 0, 0L, 0L, 0L, 0, 0, "vd", SHAPE_MOUSE},
3413 {0, 0, 0, 0L, 0L, 0L, 0, 0, "m", SHAPE_MOUSE},
3414 {0, 0, 0, 0L, 0L, 0L, 0, 0, "ml", SHAPE_MOUSE},
3415 {0, 0, 0, 100L, 100L, 100L, 0, 0, "sm", SHAPE_CURSOR},
3416};
3417
3418#ifdef FEAT_MOUSESHAPE
3419/*
3420 * Table with names for mouse shapes. Keep in sync with all the tables for
3421 * mch_set_mouse_shape()!.
3422 */
3423static char * mshape_names[] =
3424{
3425 "arrow", /* default, must be the first one */
3426 "blank", /* hidden */
3427 "beam",
3428 "updown",
3429 "udsizing",
3430 "leftright",
3431 "lrsizing",
3432 "busy",
3433 "no",
3434 "crosshair",
3435 "hand1",
3436 "hand2",
3437 "pencil",
3438 "question",
3439 "rightup-arrow",
3440 "up-arrow",
3441 NULL
3442};
3443#endif
3444
3445/*
3446 * Parse the 'guicursor' option ("what" is SHAPE_CURSOR) or 'mouseshape'
3447 * ("what" is SHAPE_MOUSE).
3448 * Returns error message for an illegal option, NULL otherwise.
3449 */
3450 char_u *
3451parse_shape_opt(what)
3452 int what;
3453{
3454 char_u *modep;
3455 char_u *colonp;
3456 char_u *commap;
3457 char_u *slashp;
3458 char_u *p, *endp;
3459 int idx = 0; /* init for GCC */
3460 int all_idx;
3461 int len;
3462 int i;
3463 long n;
3464 int found_ve = FALSE; /* found "ve" flag */
3465 int round;
3466
3467 /*
3468 * First round: check for errors; second round: do it for real.
3469 */
3470 for (round = 1; round <= 2; ++round)
3471 {
3472 /*
3473 * Repeat for all comma separated parts.
3474 */
3475#ifdef FEAT_MOUSESHAPE
3476 if (what == SHAPE_MOUSE)
3477 modep = p_mouseshape;
3478 else
3479#endif
3480 modep = p_guicursor;
3481 while (*modep != NUL)
3482 {
3483 colonp = vim_strchr(modep, ':');
3484 if (colonp == NULL)
3485 return (char_u *)N_("E545: Missing colon");
3486 if (colonp == modep)
3487 return (char_u *)N_("E546: Illegal mode");
3488 commap = vim_strchr(modep, ',');
3489
3490 /*
3491 * Repeat for all mode's before the colon.
3492 * For the 'a' mode, we loop to handle all the modes.
3493 */
3494 all_idx = -1;
3495 while (modep < colonp || all_idx >= 0)
3496 {
3497 if (all_idx < 0)
3498 {
3499 /* Find the mode. */
3500 if (modep[1] == '-' || modep[1] == ':')
3501 len = 1;
3502 else
3503 len = 2;
3504 if (len == 1 && TOLOWER_ASC(modep[0]) == 'a')
3505 all_idx = SHAPE_IDX_COUNT - 1;
3506 else
3507 {
3508 for (idx = 0; idx < SHAPE_IDX_COUNT; ++idx)
3509 if (STRNICMP(modep, shape_table[idx].name, len)
3510 == 0)
3511 break;
3512 if (idx == SHAPE_IDX_COUNT
3513 || (shape_table[idx].used_for & what) == 0)
3514 return (char_u *)N_("E546: Illegal mode");
3515 if (len == 2 && modep[0] == 'v' && modep[1] == 'e')
3516 found_ve = TRUE;
3517 }
3518 modep += len + 1;
3519 }
3520
3521 if (all_idx >= 0)
3522 idx = all_idx--;
3523 else if (round == 2)
3524 {
3525#ifdef FEAT_MOUSESHAPE
3526 if (what == SHAPE_MOUSE)
3527 {
3528 /* Set the default, for the missing parts */
3529 shape_table[idx].mshape = 0;
3530 }
3531 else
3532#endif
3533 {
3534 /* Set the defaults, for the missing parts */
3535 shape_table[idx].shape = SHAPE_BLOCK;
3536 shape_table[idx].blinkwait = 700L;
3537 shape_table[idx].blinkon = 400L;
3538 shape_table[idx].blinkoff = 250L;
3539 }
3540 }
3541
3542 /* Parse the part after the colon */
3543 for (p = colonp + 1; *p && *p != ','; )
3544 {
3545#ifdef FEAT_MOUSESHAPE
3546 if (what == SHAPE_MOUSE)
3547 {
3548 for (i = 0; ; ++i)
3549 {
3550 if (mshape_names[i] == NULL)
3551 {
3552 if (!VIM_ISDIGIT(*p))
3553 return (char_u *)N_("E547: Illegal mouseshape");
3554 if (round == 2)
3555 shape_table[idx].mshape =
3556 getdigits(&p) + MSHAPE_NUMBERED;
3557 else
3558 (void)getdigits(&p);
3559 break;
3560 }
3561 len = (int)STRLEN(mshape_names[i]);
3562 if (STRNICMP(p, mshape_names[i], len) == 0)
3563 {
3564 if (round == 2)
3565 shape_table[idx].mshape = i;
3566 p += len;
3567 break;
3568 }
3569 }
3570 }
3571 else /* if (what == SHAPE_MOUSE) */
3572#endif
3573 {
3574 /*
3575 * First handle the ones with a number argument.
3576 */
3577 i = *p;
3578 len = 0;
3579 if (STRNICMP(p, "ver", 3) == 0)
3580 len = 3;
3581 else if (STRNICMP(p, "hor", 3) == 0)
3582 len = 3;
3583 else if (STRNICMP(p, "blinkwait", 9) == 0)
3584 len = 9;
3585 else if (STRNICMP(p, "blinkon", 7) == 0)
3586 len = 7;
3587 else if (STRNICMP(p, "blinkoff", 8) == 0)
3588 len = 8;
3589 if (len != 0)
3590 {
3591 p += len;
3592 if (!VIM_ISDIGIT(*p))
3593 return (char_u *)N_("E548: digit expected");
3594 n = getdigits(&p);
3595 if (len == 3) /* "ver" or "hor" */
3596 {
3597 if (n == 0)
3598 return (char_u *)N_("E549: Illegal percentage");
3599 if (round == 2)
3600 {
3601 if (TOLOWER_ASC(i) == 'v')
3602 shape_table[idx].shape = SHAPE_VER;
3603 else
3604 shape_table[idx].shape = SHAPE_HOR;
3605 shape_table[idx].percentage = n;
3606 }
3607 }
3608 else if (round == 2)
3609 {
3610 if (len == 9)
3611 shape_table[idx].blinkwait = n;
3612 else if (len == 7)
3613 shape_table[idx].blinkon = n;
3614 else
3615 shape_table[idx].blinkoff = n;
3616 }
3617 }
3618 else if (STRNICMP(p, "block", 5) == 0)
3619 {
3620 if (round == 2)
3621 shape_table[idx].shape = SHAPE_BLOCK;
3622 p += 5;
3623 }
3624 else /* must be a highlight group name then */
3625 {
3626 endp = vim_strchr(p, '-');
3627 if (commap == NULL) /* last part */
3628 {
3629 if (endp == NULL)
3630 endp = p + STRLEN(p); /* find end of part */
3631 }
3632 else if (endp > commap || endp == NULL)
3633 endp = commap;
3634 slashp = vim_strchr(p, '/');
3635 if (slashp != NULL && slashp < endp)
3636 {
3637 /* "group/langmap_group" */
3638 i = syn_check_group(p, (int)(slashp - p));
3639 p = slashp + 1;
3640 }
3641 if (round == 2)
3642 {
3643 shape_table[idx].id = syn_check_group(p,
3644 (int)(endp - p));
3645 shape_table[idx].id_lm = shape_table[idx].id;
3646 if (slashp != NULL && slashp < endp)
3647 shape_table[idx].id = i;
3648 }
3649 p = endp;
3650 }
3651 } /* if (what != SHAPE_MOUSE) */
3652
3653 if (*p == '-')
3654 ++p;
3655 }
3656 }
3657 modep = p;
3658 if (*modep == ',')
3659 ++modep;
3660 }
3661 }
3662
3663 /* If the 's' flag is not given, use the 'v' cursor for 's' */
3664 if (!found_ve)
3665 {
3666#ifdef FEAT_MOUSESHAPE
3667 if (what == SHAPE_MOUSE)
3668 {
3669 shape_table[SHAPE_IDX_VE].mshape = shape_table[SHAPE_IDX_V].mshape;
3670 }
3671 else
3672#endif
3673 {
3674 shape_table[SHAPE_IDX_VE].shape = shape_table[SHAPE_IDX_V].shape;
3675 shape_table[SHAPE_IDX_VE].percentage =
3676 shape_table[SHAPE_IDX_V].percentage;
3677 shape_table[SHAPE_IDX_VE].blinkwait =
3678 shape_table[SHAPE_IDX_V].blinkwait;
3679 shape_table[SHAPE_IDX_VE].blinkon =
3680 shape_table[SHAPE_IDX_V].blinkon;
3681 shape_table[SHAPE_IDX_VE].blinkoff =
3682 shape_table[SHAPE_IDX_V].blinkoff;
3683 shape_table[SHAPE_IDX_VE].id = shape_table[SHAPE_IDX_V].id;
3684 shape_table[SHAPE_IDX_VE].id_lm = shape_table[SHAPE_IDX_V].id_lm;
3685 }
3686 }
3687
3688 return NULL;
3689}
3690
Bram Moolenaarac6e65f2005-08-29 22:25:38 +00003691# if defined(MCH_CURSOR_SHAPE) || defined(FEAT_GUI) \
3692 || defined(FEAT_MOUSESHAPE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003693/*
3694 * Return the index into shape_table[] for the current mode.
3695 * When "mouse" is TRUE, consider indexes valid for the mouse pointer.
3696 */
3697 int
3698get_shape_idx(mouse)
3699 int mouse;
3700{
3701#ifdef FEAT_MOUSESHAPE
3702 if (mouse && (State == HITRETURN || State == ASKMORE))
3703 {
3704# ifdef FEAT_GUI
Bram Moolenaar9588a0f2005-01-08 21:45:39 +00003705 int x, y;
3706 gui_mch_getmouse(&x, &y);
3707 if (Y_2_ROW(y) == Rows - 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003708 return SHAPE_IDX_MOREL;
3709# endif
3710 return SHAPE_IDX_MORE;
3711 }
3712 if (mouse && drag_status_line)
3713 return SHAPE_IDX_SDRAG;
3714# ifdef FEAT_VERTSPLIT
3715 if (mouse && drag_sep_line)
3716 return SHAPE_IDX_VDRAG;
3717# endif
3718#endif
3719 if (!mouse && State == SHOWMATCH)
3720 return SHAPE_IDX_SM;
3721#ifdef FEAT_VREPLACE
3722 if (State & VREPLACE_FLAG)
3723 return SHAPE_IDX_R;
3724#endif
3725 if (State & REPLACE_FLAG)
3726 return SHAPE_IDX_R;
3727 if (State & INSERT)
3728 return SHAPE_IDX_I;
3729 if (State & CMDLINE)
3730 {
3731 if (cmdline_at_end())
3732 return SHAPE_IDX_C;
3733 if (cmdline_overstrike())
3734 return SHAPE_IDX_CR;
3735 return SHAPE_IDX_CI;
3736 }
3737 if (finish_op)
3738 return SHAPE_IDX_O;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003739 if (VIsual_active)
3740 {
3741 if (*p_sel == 'e')
3742 return SHAPE_IDX_VE;
3743 else
3744 return SHAPE_IDX_V;
3745 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003746 return SHAPE_IDX_N;
3747}
Bram Moolenaarac6e65f2005-08-29 22:25:38 +00003748#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003749
3750# if defined(FEAT_MOUSESHAPE) || defined(PROTO)
3751static int old_mouse_shape = 0;
3752
3753/*
3754 * Set the mouse shape:
3755 * If "shape" is -1, use shape depending on the current mode,
3756 * depending on the current state.
3757 * If "shape" is -2, only update the shape when it's CLINE or STATUS (used
3758 * when the mouse moves off the status or command line).
3759 */
3760 void
3761update_mouseshape(shape_idx)
3762 int shape_idx;
3763{
3764 int new_mouse_shape;
3765
3766 /* Only works in GUI mode. */
Bram Moolenaar6bb68362005-03-22 23:03:44 +00003767 if (!gui.in_use || gui.starting)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003768 return;
3769
3770 /* Postpone the updating when more is to come. Speeds up executing of
3771 * mappings. */
3772 if (shape_idx == -1 && char_avail())
3773 {
3774 postponed_mouseshape = TRUE;
3775 return;
3776 }
3777
Bram Moolenaar14716812006-05-04 21:54:08 +00003778 /* When ignoring the mouse don't change shape on the statusline. */
3779 if (*p_mouse == NUL
3780 && (shape_idx == SHAPE_IDX_CLINE
3781 || shape_idx == SHAPE_IDX_STATUS
3782 || shape_idx == SHAPE_IDX_VSEP))
3783 shape_idx = -2;
3784
Bram Moolenaar071d4272004-06-13 20:20:40 +00003785 if (shape_idx == -2
3786 && old_mouse_shape != shape_table[SHAPE_IDX_CLINE].mshape
3787 && old_mouse_shape != shape_table[SHAPE_IDX_STATUS].mshape
3788 && old_mouse_shape != shape_table[SHAPE_IDX_VSEP].mshape)
3789 return;
3790 if (shape_idx < 0)
3791 new_mouse_shape = shape_table[get_shape_idx(TRUE)].mshape;
3792 else
3793 new_mouse_shape = shape_table[shape_idx].mshape;
3794 if (new_mouse_shape != old_mouse_shape)
3795 {
3796 mch_set_mouse_shape(new_mouse_shape);
3797 old_mouse_shape = new_mouse_shape;
3798 }
3799 postponed_mouseshape = FALSE;
3800}
3801# endif
3802
3803#endif /* CURSOR_SHAPE */
3804
3805
Bram Moolenaar071d4272004-06-13 20:20:40 +00003806/* TODO: make some #ifdef for this */
3807/*--------[ file searching ]-------------------------------------------------*/
3808/*
3809 * File searching functions for 'path', 'tags' and 'cdpath' options.
3810 * External visible functions:
3811 * vim_findfile_init() creates/initialises the search context
3812 * vim_findfile_free_visited() free list of visited files/dirs of search
3813 * context
3814 * vim_findfile() find a file in the search context
3815 * vim_findfile_cleanup() cleanup/free search context created by
3816 * vim_findfile_init()
3817 *
3818 * All static functions and variables start with 'ff_'
3819 *
3820 * In general it works like this:
3821 * First you create yourself a search context by calling vim_findfile_init().
3822 * It is possible to give a search context from a previous call to
3823 * vim_findfile_init(), so it can be reused. After this you call vim_findfile()
3824 * until you are satisfied with the result or it returns NULL. On every call it
3825 * returns the next file which matches the conditions given to
3826 * vim_findfile_init(). If it doesn't find a next file it returns NULL.
3827 *
3828 * It is possible to call vim_findfile_init() again to reinitialise your search
3829 * with some new parameters. Don't forget to pass your old search context to
3830 * it, so it can reuse it and especially reuse the list of already visited
3831 * directories. If you want to delete the list of already visited directories
3832 * simply call vim_findfile_free_visited().
3833 *
3834 * When you are done call vim_findfile_cleanup() to free the search context.
3835 *
3836 * The function vim_findfile_init() has a long comment, which describes the
3837 * needed parameters.
3838 *
3839 *
3840 *
3841 * ATTENTION:
3842 * ==========
Bram Moolenaar77f66d62007-02-20 02:16:18 +00003843 * Also we use an allocated search context here, this functions are NOT
Bram Moolenaar071d4272004-06-13 20:20:40 +00003844 * thread-safe!!!!!
3845 *
3846 * To minimize parameter passing (or because I'm to lazy), only the
3847 * external visible functions get a search context as a parameter. This is
3848 * then assigned to a static global, which is used throughout the local
3849 * functions.
3850 */
3851
3852/*
3853 * type for the directory search stack
3854 */
3855typedef struct ff_stack
3856{
3857 struct ff_stack *ffs_prev;
3858
3859 /* the fix part (no wildcards) and the part containing the wildcards
3860 * of the search path
3861 */
3862 char_u *ffs_fix_path;
3863#ifdef FEAT_PATH_EXTRA
3864 char_u *ffs_wc_path;
3865#endif
3866
3867 /* files/dirs found in the above directory, matched by the first wildcard
3868 * of wc_part
3869 */
3870 char_u **ffs_filearray;
3871 int ffs_filearray_size;
3872 char_u ffs_filearray_cur; /* needed for partly handled dirs */
3873
3874 /* to store status of partly handled directories
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00003875 * 0: we work on this directory for the first time
Bram Moolenaar071d4272004-06-13 20:20:40 +00003876 * 1: this directory was partly searched in an earlier step
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00003877 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003878 int ffs_stage;
3879
3880 /* How deep are we in the directory tree?
3881 * Counts backward from value of level parameter to vim_findfile_init
3882 */
3883 int ffs_level;
3884
3885 /* Did we already expand '**' to an empty string? */
3886 int ffs_star_star_empty;
3887} ff_stack_T;
3888
3889/*
3890 * type for already visited directories or files.
3891 */
3892typedef struct ff_visited
3893{
3894 struct ff_visited *ffv_next;
3895
3896#ifdef FEAT_PATH_EXTRA
3897 /* Visited directories are different if the wildcard string are
3898 * different. So we have to save it.
3899 */
3900 char_u *ffv_wc_path;
3901#endif
3902 /* for unix use inode etc for comparison (needed because of links), else
3903 * use filename.
3904 */
3905#ifdef UNIX
Bram Moolenaare1fbddc2009-05-16 19:07:03 +00003906 int ffv_dev_valid; /* ffv_dev and ffv_ino were set */
3907 dev_t ffv_dev; /* device number */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003908 ino_t ffv_ino; /* inode number */
3909#endif
3910 /* The memory for this struct is allocated according to the length of
3911 * ffv_fname.
3912 */
3913 char_u ffv_fname[1]; /* actually longer */
3914} ff_visited_T;
3915
3916/*
3917 * We might have to manage several visited lists during a search.
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00003918 * This is especially needed for the tags option. If tags is set to:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003919 * "./++/tags,./++/TAGS,++/tags" (replace + with *)
3920 * So we have to do 3 searches:
3921 * 1) search from the current files directory downward for the file "tags"
3922 * 2) search from the current files directory downward for the file "TAGS"
3923 * 3) search from Vims current directory downwards for the file "tags"
3924 * As you can see, the first and the third search are for the same file, so for
3925 * the third search we can use the visited list of the first search. For the
3926 * second search we must start from a empty visited list.
3927 * The struct ff_visited_list_hdr is used to manage a linked list of already
3928 * visited lists.
3929 */
3930typedef struct ff_visited_list_hdr
3931{
3932 struct ff_visited_list_hdr *ffvl_next;
3933
3934 /* the filename the attached visited list is for */
3935 char_u *ffvl_filename;
3936
3937 ff_visited_T *ffvl_visited_list;
3938
3939} ff_visited_list_hdr_T;
3940
3941
3942/*
3943 * '**' can be expanded to several directory levels.
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00003944 * Set the default maximum depth.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003945 */
3946#define FF_MAX_STAR_STAR_EXPAND ((char_u)30)
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00003947
Bram Moolenaar071d4272004-06-13 20:20:40 +00003948/*
3949 * The search context:
3950 * ffsc_stack_ptr: the stack for the dirs to search
3951 * ffsc_visited_list: the currently active visited list
3952 * ffsc_dir_visited_list: the currently active visited list for search dirs
3953 * ffsc_visited_lists_list: the list of all visited lists
3954 * ffsc_dir_visited_lists_list: the list of all visited lists for search dirs
3955 * ffsc_file_to_search: the file to search for
3956 * ffsc_start_dir: the starting directory, if search path was relative
3957 * ffsc_fix_path: the fix part of the given path (without wildcards)
3958 * Needed for upward search.
3959 * ffsc_wc_path: the part of the given path containing wildcards
3960 * ffsc_level: how many levels of dirs to search downwards
3961 * ffsc_stopdirs_v: array of stop directories for upward search
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00003962 * ffsc_find_what: FINDFILE_BOTH, FINDFILE_DIR or FINDFILE_FILE
Bram Moolenaar463ee342010-08-08 18:17:52 +02003963 * ffsc_tagfile: searching for tags file, don't use 'suffixesadd'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003964 */
3965typedef struct ff_search_ctx_T
3966{
3967 ff_stack_T *ffsc_stack_ptr;
3968 ff_visited_list_hdr_T *ffsc_visited_list;
3969 ff_visited_list_hdr_T *ffsc_dir_visited_list;
3970 ff_visited_list_hdr_T *ffsc_visited_lists_list;
3971 ff_visited_list_hdr_T *ffsc_dir_visited_lists_list;
3972 char_u *ffsc_file_to_search;
3973 char_u *ffsc_start_dir;
3974 char_u *ffsc_fix_path;
3975#ifdef FEAT_PATH_EXTRA
3976 char_u *ffsc_wc_path;
3977 int ffsc_level;
3978 char_u **ffsc_stopdirs_v;
3979#endif
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00003980 int ffsc_find_what;
Bram Moolenaar463ee342010-08-08 18:17:52 +02003981 int ffsc_tagfile;
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003982} ff_search_ctx_T;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003983
Bram Moolenaar071d4272004-06-13 20:20:40 +00003984/* locally needed functions */
3985#ifdef FEAT_PATH_EXTRA
3986static int ff_check_visited __ARGS((ff_visited_T **, char_u *, char_u *));
3987#else
3988static int ff_check_visited __ARGS((ff_visited_T **, char_u *));
3989#endif
3990static void vim_findfile_free_visited_list __ARGS((ff_visited_list_hdr_T **list_headp));
3991static void ff_free_visited_list __ARGS((ff_visited_T *vl));
3992static ff_visited_list_hdr_T* ff_get_visited_list __ARGS((char_u *, ff_visited_list_hdr_T **list_headp));
3993#ifdef FEAT_PATH_EXTRA
3994static int ff_wc_equal __ARGS((char_u *s1, char_u *s2));
3995#endif
3996
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00003997static void ff_push __ARGS((ff_search_ctx_T *search_ctx, ff_stack_T *stack_ptr));
3998static ff_stack_T *ff_pop __ARGS((ff_search_ctx_T *search_ctx));
3999static void ff_clear __ARGS((ff_search_ctx_T *search_ctx));
4000static void ff_free_stack_element __ARGS((ff_stack_T *stack_ptr));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004001#ifdef FEAT_PATH_EXTRA
4002static ff_stack_T *ff_create_stack_element __ARGS((char_u *, char_u *, int, int));
4003#else
4004static ff_stack_T *ff_create_stack_element __ARGS((char_u *, int, int));
4005#endif
4006#ifdef FEAT_PATH_EXTRA
4007static int ff_path_in_stoplist __ARGS((char_u *, int, char_u **));
4008#endif
4009
Bram Moolenaarb9ba4032011-12-08 17:49:35 +01004010static char_u e_pathtoolong[] = N_("E854: path too long for completion");
4011
Bram Moolenaar071d4272004-06-13 20:20:40 +00004012#if 0
4013/*
4014 * if someone likes findfirst/findnext, here are the functions
4015 * NOT TESTED!!
4016 */
4017
4018static void *ff_fn_search_context = NULL;
4019
4020 char_u *
4021vim_findfirst(path, filename, level)
4022 char_u *path;
4023 char_u *filename;
4024 int level;
4025{
4026 ff_fn_search_context =
4027 vim_findfile_init(path, filename, NULL, level, TRUE, FALSE,
4028 ff_fn_search_context, rel_fname);
4029 if (NULL == ff_fn_search_context)
4030 return NULL;
4031 else
4032 return vim_findnext()
4033}
4034
4035 char_u *
4036vim_findnext()
4037{
4038 char_u *ret = vim_findfile(ff_fn_search_context);
4039
4040 if (NULL == ret)
4041 {
4042 vim_findfile_cleanup(ff_fn_search_context);
4043 ff_fn_search_context = NULL;
4044 }
4045 return ret;
4046}
4047#endif
4048
4049/*
Bram Moolenaare2b590e2010-08-08 18:29:48 +02004050 * Initialization routine for vim_findfile().
Bram Moolenaar071d4272004-06-13 20:20:40 +00004051 *
Bram Moolenaarbe18d102010-05-22 21:37:53 +02004052 * Returns the newly allocated search context or NULL if an error occurred.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004053 *
4054 * Don't forget to clean up by calling vim_findfile_cleanup() if you are done
4055 * with the search context.
4056 *
4057 * Find the file 'filename' in the directory 'path'.
4058 * The parameter 'path' may contain wildcards. If so only search 'level'
4059 * directories deep. The parameter 'level' is the absolute maximum and is
4060 * not related to restricts given to the '**' wildcard. If 'level' is 100
4061 * and you use '**200' vim_findfile() will stop after 100 levels.
4062 *
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004063 * 'filename' cannot contain wildcards! It is used as-is, no backslashes to
4064 * escape special characters.
4065 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00004066 * If 'stopdirs' is not NULL and nothing is found downward, the search is
4067 * restarted on the next higher directory level. This is repeated until the
4068 * start-directory of a search is contained in 'stopdirs'. 'stopdirs' has the
4069 * format ";*<dirname>*\(;<dirname>\)*;\=$".
4070 *
4071 * If the 'path' is relative, the starting dir for the search is either VIM's
4072 * current dir or if the path starts with "./" the current files dir.
Bram Moolenaarbe18d102010-05-22 21:37:53 +02004073 * If the 'path' is absolute, the starting dir is that part of the path before
Bram Moolenaar071d4272004-06-13 20:20:40 +00004074 * the first wildcard.
4075 *
4076 * Upward search is only done on the starting dir.
4077 *
4078 * If 'free_visited' is TRUE the list of already visited files/directories is
4079 * cleared. Set this to FALSE if you just want to search from another
4080 * directory, but want to be sure that no directory from a previous search is
4081 * searched again. This is useful if you search for a file at different places.
4082 * The list of visited files/dirs can also be cleared with the function
4083 * vim_findfile_free_visited().
4084 *
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004085 * Set the parameter 'find_what' to FINDFILE_DIR if you want to search for
4086 * directories only, FINDFILE_FILE for files only, FINDFILE_BOTH for both.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004087 *
4088 * A search context returned by a previous call to vim_findfile_init() can be
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004089 * passed in the parameter "search_ctx_arg". This context is reused and
4090 * reinitialized with the new parameters. The list of already visited
Bram Moolenaar071d4272004-06-13 20:20:40 +00004091 * directories from this context is only deleted if the parameter
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004092 * "free_visited" is true. Be aware that the passed "search_ctx_arg" is freed
4093 * if the reinitialization fails.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004094 *
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004095 * If you don't have a search context from a previous call "search_ctx_arg"
4096 * must be NULL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004097 *
4098 * This function silently ignores a few errors, vim_findfile() will have
4099 * limited functionality then.
4100 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004101 void *
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004102vim_findfile_init(path, filename, stopdirs, level, free_visited, find_what,
4103 search_ctx_arg, tagfile, rel_fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004104 char_u *path;
4105 char_u *filename;
Bram Moolenaare1fbddc2009-05-16 19:07:03 +00004106 char_u *stopdirs UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004107 int level;
4108 int free_visited;
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004109 int find_what;
4110 void *search_ctx_arg;
Bram Moolenaar463ee342010-08-08 18:17:52 +02004111 int tagfile; /* expanding names of tags files */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004112 char_u *rel_fname; /* file name to use for "." */
4113{
4114#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004115 char_u *wc_part;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004116#endif
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004117 ff_stack_T *sptr;
4118 ff_search_ctx_T *search_ctx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004119
4120 /* If a search context is given by the caller, reuse it, else allocate a
4121 * new one.
4122 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004123 if (search_ctx_arg != NULL)
4124 search_ctx = search_ctx_arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004125 else
4126 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004127 search_ctx = (ff_search_ctx_T*)alloc((unsigned)sizeof(ff_search_ctx_T));
4128 if (search_ctx == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004129 goto error_return;
Bram Moolenaar7db5fc82010-05-24 11:59:29 +02004130 vim_memset(search_ctx, 0, sizeof(ff_search_ctx_T));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004131 }
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004132 search_ctx->ffsc_find_what = find_what;
Bram Moolenaar463ee342010-08-08 18:17:52 +02004133 search_ctx->ffsc_tagfile = tagfile;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004134
4135 /* clear the search context, but NOT the visited lists */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004136 ff_clear(search_ctx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004137
4138 /* clear visited list if wanted */
4139 if (free_visited == TRUE)
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004140 vim_findfile_free_visited(search_ctx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004141 else
4142 {
4143 /* Reuse old visited lists. Get the visited list for the given
4144 * filename. If no list for the current filename exists, creates a new
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004145 * one. */
4146 search_ctx->ffsc_visited_list = ff_get_visited_list(filename,
4147 &search_ctx->ffsc_visited_lists_list);
4148 if (search_ctx->ffsc_visited_list == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004149 goto error_return;
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004150 search_ctx->ffsc_dir_visited_list = ff_get_visited_list(filename,
4151 &search_ctx->ffsc_dir_visited_lists_list);
4152 if (search_ctx->ffsc_dir_visited_list == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004153 goto error_return;
4154 }
4155
4156 if (ff_expand_buffer == NULL)
4157 {
4158 ff_expand_buffer = (char_u*)alloc(MAXPATHL);
4159 if (ff_expand_buffer == NULL)
4160 goto error_return;
4161 }
4162
4163 /* Store information on starting dir now if path is relative.
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00004164 * If path is absolute, we do that later. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004165 if (path[0] == '.'
4166 && (vim_ispathsep(path[1]) || path[1] == NUL)
4167 && (!tagfile || vim_strchr(p_cpo, CPO_DOTTAG) == NULL)
4168 && rel_fname != NULL)
4169 {
4170 int len = (int)(gettail(rel_fname) - rel_fname);
4171
4172 if (!vim_isAbsName(rel_fname) && len + 1 < MAXPATHL)
4173 {
4174 /* Make the start dir an absolute path name. */
Bram Moolenaarbbebc852005-07-18 21:47:53 +00004175 vim_strncpy(ff_expand_buffer, rel_fname, len);
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004176 search_ctx->ffsc_start_dir = FullName_save(ff_expand_buffer, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004177 }
4178 else
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004179 search_ctx->ffsc_start_dir = vim_strnsave(rel_fname, len);
4180 if (search_ctx->ffsc_start_dir == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004181 goto error_return;
4182 if (*++path != NUL)
4183 ++path;
4184 }
4185 else if (*path == NUL || !vim_isAbsName(path))
4186 {
4187#ifdef BACKSLASH_IN_FILENAME
4188 /* "c:dir" needs "c:" to be expanded, otherwise use current dir */
4189 if (*path != NUL && path[1] == ':')
4190 {
4191 char_u drive[3];
4192
4193 drive[0] = path[0];
4194 drive[1] = ':';
4195 drive[2] = NUL;
4196 if (vim_FullName(drive, ff_expand_buffer, MAXPATHL, TRUE) == FAIL)
4197 goto error_return;
4198 path += 2;
4199 }
4200 else
4201#endif
4202 if (mch_dirname(ff_expand_buffer, MAXPATHL) == FAIL)
4203 goto error_return;
4204
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004205 search_ctx->ffsc_start_dir = vim_strsave(ff_expand_buffer);
4206 if (search_ctx->ffsc_start_dir == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004207 goto error_return;
4208
4209#ifdef BACKSLASH_IN_FILENAME
4210 /* A path that starts with "/dir" is relative to the drive, not to the
4211 * directory (but not for "//machine/dir"). Only use the drive name. */
4212 if ((*path == '/' || *path == '\\')
4213 && path[1] != path[0]
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004214 && search_ctx->ffsc_start_dir[1] == ':')
4215 search_ctx->ffsc_start_dir[2] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004216#endif
4217 }
4218
4219#ifdef FEAT_PATH_EXTRA
4220 /*
4221 * If stopdirs are given, split them into an array of pointers.
4222 * If this fails (mem allocation), there is no upward search at all or a
4223 * stop directory is not recognized -> continue silently.
4224 * If stopdirs just contains a ";" or is empty,
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004225 * search_ctx->ffsc_stopdirs_v will only contain a NULL pointer. This
Bram Moolenaar071d4272004-06-13 20:20:40 +00004226 * is handled as unlimited upward search. See function
4227 * ff_path_in_stoplist() for details.
4228 */
4229 if (stopdirs != NULL)
4230 {
4231 char_u *walker = stopdirs;
4232 int dircount;
4233
4234 while (*walker == ';')
4235 walker++;
4236
4237 dircount = 1;
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004238 search_ctx->ffsc_stopdirs_v =
4239 (char_u **)alloc((unsigned)sizeof(char_u *));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004240
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004241 if (search_ctx->ffsc_stopdirs_v != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004242 {
4243 do
4244 {
4245 char_u *helper;
4246 void *ptr;
4247
4248 helper = walker;
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004249 ptr = vim_realloc(search_ctx->ffsc_stopdirs_v,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004250 (dircount + 1) * sizeof(char_u *));
4251 if (ptr)
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004252 search_ctx->ffsc_stopdirs_v = ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004253 else
4254 /* ignore, keep what we have and continue */
4255 break;
4256 walker = vim_strchr(walker, ';');
4257 if (walker)
4258 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004259 search_ctx->ffsc_stopdirs_v[dircount-1] =
4260 vim_strnsave(helper, (int)(walker - helper));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004261 walker++;
4262 }
4263 else
4264 /* this might be "", which means ascent till top
4265 * of directory tree.
4266 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004267 search_ctx->ffsc_stopdirs_v[dircount-1] =
4268 vim_strsave(helper);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004269
4270 dircount++;
4271
4272 } while (walker != NULL);
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004273 search_ctx->ffsc_stopdirs_v[dircount-1] = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004274 }
4275 }
4276#endif
4277
4278#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004279 search_ctx->ffsc_level = level;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004280
4281 /* split into:
4282 * -fix path
4283 * -wildcard_stuff (might be NULL)
4284 */
4285 wc_part = vim_strchr(path, '*');
4286 if (wc_part != NULL)
4287 {
4288 int llevel;
4289 int len;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00004290 char *errpt;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004291
4292 /* save the fix part of the path */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004293 search_ctx->ffsc_fix_path = vim_strnsave(path, (int)(wc_part - path));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004294
4295 /*
4296 * copy wc_path and add restricts to the '**' wildcard.
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00004297 * The octet after a '**' is used as a (binary) counter.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004298 * So '**3' is transposed to '**^C' ('^C' is ASCII value 3)
4299 * or '**76' is transposed to '**N'( 'N' is ASCII value 76).
4300 * For EBCDIC you get different character values.
4301 * If no restrict is given after '**' the default is used.
Bram Moolenaar21160b92009-11-11 15:56:10 +00004302 * Due to this technique the path looks awful if you print it as a
Bram Moolenaar071d4272004-06-13 20:20:40 +00004303 * string.
4304 */
4305 len = 0;
4306 while (*wc_part != NUL)
4307 {
Bram Moolenaarb9ba4032011-12-08 17:49:35 +01004308 if (len + 5 >= MAXPATHL)
4309 {
4310 EMSG(_(e_pathtoolong));
4311 break;
4312 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004313 if (STRNCMP(wc_part, "**", 2) == 0)
4314 {
4315 ff_expand_buffer[len++] = *wc_part++;
4316 ff_expand_buffer[len++] = *wc_part++;
4317
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00004318 llevel = strtol((char *)wc_part, &errpt, 10);
4319 if ((char_u *)errpt != wc_part && llevel > 0 && llevel < 255)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004320 ff_expand_buffer[len++] = llevel;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00004321 else if ((char_u *)errpt != wc_part && llevel == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004322 /* restrict is 0 -> remove already added '**' */
4323 len -= 2;
4324 else
4325 ff_expand_buffer[len++] = FF_MAX_STAR_STAR_EXPAND;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00004326 wc_part = (char_u *)errpt;
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00004327 if (*wc_part != NUL && !vim_ispathsep(*wc_part))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004328 {
4329 EMSG2(_("E343: Invalid path: '**[number]' must be at the end of the path or be followed by '%s'."), PATHSEPSTR);
4330 goto error_return;
4331 }
4332 }
4333 else
4334 ff_expand_buffer[len++] = *wc_part++;
4335 }
4336 ff_expand_buffer[len] = NUL;
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004337 search_ctx->ffsc_wc_path = vim_strsave(ff_expand_buffer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004338
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004339 if (search_ctx->ffsc_wc_path == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004340 goto error_return;
4341 }
4342 else
4343#endif
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004344 search_ctx->ffsc_fix_path = vim_strsave(path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004345
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004346 if (search_ctx->ffsc_start_dir == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004347 {
4348 /* store the fix part as startdir.
4349 * This is needed if the parameter path is fully qualified.
4350 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004351 search_ctx->ffsc_start_dir = vim_strsave(search_ctx->ffsc_fix_path);
Bram Moolenaara9d52e32010-07-31 16:44:19 +02004352 if (search_ctx->ffsc_start_dir == NULL)
4353 goto error_return;
4354 search_ctx->ffsc_fix_path[0] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004355 }
4356
4357 /* create an absolute path */
Bram Moolenaarb9ba4032011-12-08 17:49:35 +01004358 if (STRLEN(search_ctx->ffsc_start_dir)
4359 + STRLEN(search_ctx->ffsc_fix_path) + 3 >= MAXPATHL)
4360 {
4361 EMSG(_(e_pathtoolong));
4362 goto error_return;
4363 }
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004364 STRCPY(ff_expand_buffer, search_ctx->ffsc_start_dir);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004365 add_pathsep(ff_expand_buffer);
Bram Moolenaarf4c5fcb2013-07-03 17:14:00 +02004366 {
Bram Moolenaar61214042013-07-04 21:19:33 +02004367 int eb_len = (int)STRLEN(ff_expand_buffer);
4368 char_u *buf = alloc(eb_len
4369 + (int)STRLEN(search_ctx->ffsc_fix_path) + 1);
Bram Moolenaarf4c5fcb2013-07-03 17:14:00 +02004370
4371 STRCPY(buf, ff_expand_buffer);
Bram Moolenaar0f5a5ed2013-07-03 17:51:17 +02004372 STRCPY(buf + eb_len, search_ctx->ffsc_fix_path);
Bram Moolenaarf4c5fcb2013-07-03 17:14:00 +02004373 if (mch_isdir(buf))
4374 {
4375 STRCAT(ff_expand_buffer, search_ctx->ffsc_fix_path);
4376 add_pathsep(ff_expand_buffer);
4377 }
4378#ifdef FEAT_PATH_EXTRA
4379 else
4380 {
Bram Moolenaaree0ee2a2013-07-03 21:19:07 +02004381 char_u *p = gettail(search_ctx->ffsc_fix_path);
Bram Moolenaar5f4c8402014-01-06 06:19:11 +01004382 char_u *wc_path = NULL;
4383 char_u *temp = NULL;
Bram Moolenaarf4c5fcb2013-07-03 17:14:00 +02004384 int len = 0;
4385
Bram Moolenaaree0ee2a2013-07-03 21:19:07 +02004386 if (p > search_ctx->ffsc_fix_path)
Bram Moolenaarf4c5fcb2013-07-03 17:14:00 +02004387 {
Bram Moolenaar61214042013-07-04 21:19:33 +02004388 len = (int)(p - search_ctx->ffsc_fix_path) - 1;
Bram Moolenaarf4c5fcb2013-07-03 17:14:00 +02004389 STRNCAT(ff_expand_buffer, search_ctx->ffsc_fix_path, len);
4390 add_pathsep(ff_expand_buffer);
4391 }
4392 else
Bram Moolenaar61214042013-07-04 21:19:33 +02004393 len = (int)STRLEN(search_ctx->ffsc_fix_path);
Bram Moolenaarf4c5fcb2013-07-03 17:14:00 +02004394
4395 if (search_ctx->ffsc_wc_path != NULL)
4396 {
4397 wc_path = vim_strsave(search_ctx->ffsc_wc_path);
Bram Moolenaar61214042013-07-04 21:19:33 +02004398 temp = alloc((int)(STRLEN(search_ctx->ffsc_wc_path)
Bram Moolenaare8785f22013-07-07 16:15:35 +02004399 + STRLEN(search_ctx->ffsc_fix_path + len)
4400 + 1));
Bram Moolenaarf4c5fcb2013-07-03 17:14:00 +02004401 }
4402
4403 if (temp == NULL || wc_path == NULL)
4404 {
4405 vim_free(buf);
4406 vim_free(temp);
4407 vim_free(wc_path);
4408 goto error_return;
4409 }
4410
4411 STRCPY(temp, search_ctx->ffsc_fix_path + len);
4412 STRCAT(temp, search_ctx->ffsc_wc_path);
4413 vim_free(search_ctx->ffsc_wc_path);
4414 vim_free(wc_path);
4415 search_ctx->ffsc_wc_path = temp;
4416 }
4417#endif
4418 vim_free(buf);
4419 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004420
4421 sptr = ff_create_stack_element(ff_expand_buffer,
4422#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004423 search_ctx->ffsc_wc_path,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004424#endif
4425 level, 0);
4426
4427 if (sptr == NULL)
4428 goto error_return;
4429
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004430 ff_push(search_ctx, sptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004431
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004432 search_ctx->ffsc_file_to_search = vim_strsave(filename);
4433 if (search_ctx->ffsc_file_to_search == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004434 goto error_return;
4435
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004436 return search_ctx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004437
4438error_return:
4439 /*
4440 * We clear the search context now!
4441 * Even when the caller gave us a (perhaps valid) context we free it here,
4442 * as we might have already destroyed it.
4443 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004444 vim_findfile_cleanup(search_ctx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004445 return NULL;
4446}
4447
4448#if defined(FEAT_PATH_EXTRA) || defined(PROTO)
4449/*
4450 * Get the stopdir string. Check that ';' is not escaped.
4451 */
4452 char_u *
4453vim_findfile_stopdir(buf)
4454 char_u *buf;
4455{
4456 char_u *r_ptr = buf;
4457
4458 while (*r_ptr != NUL && *r_ptr != ';')
4459 {
4460 if (r_ptr[0] == '\\' && r_ptr[1] == ';')
4461 {
Bram Moolenaar0b573a52011-07-27 17:31:47 +02004462 /* Overwrite the escape char,
4463 * use STRLEN(r_ptr) to move the trailing '\0'. */
Bram Moolenaar446cb832008-06-24 21:56:24 +00004464 STRMOVE(r_ptr, r_ptr + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004465 r_ptr++;
4466 }
4467 r_ptr++;
4468 }
4469 if (*r_ptr == ';')
4470 {
4471 *r_ptr = 0;
4472 r_ptr++;
4473 }
4474 else if (*r_ptr == NUL)
4475 r_ptr = NULL;
4476 return r_ptr;
4477}
4478#endif
4479
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004480/*
4481 * Clean up the given search context. Can handle a NULL pointer.
4482 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004483 void
4484vim_findfile_cleanup(ctx)
4485 void *ctx;
4486{
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00004487 if (ctx == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004488 return;
4489
Bram Moolenaar071d4272004-06-13 20:20:40 +00004490 vim_findfile_free_visited(ctx);
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004491 ff_clear(ctx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004492 vim_free(ctx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004493}
4494
4495/*
4496 * Find a file in a search context.
4497 * The search context was created with vim_findfile_init() above.
4498 * Return a pointer to an allocated file name or NULL if nothing found.
4499 * To get all matching files call this function until you get NULL.
4500 *
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00004501 * If the passed search_context is NULL, NULL is returned.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004502 *
4503 * The search algorithm is depth first. To change this replace the
4504 * stack with a list (don't forget to leave partly searched directories on the
4505 * top of the list).
4506 */
4507 char_u *
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004508vim_findfile(search_ctx_arg)
4509 void *search_ctx_arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004510{
4511 char_u *file_path;
4512#ifdef FEAT_PATH_EXTRA
4513 char_u *rest_of_wildcards;
4514 char_u *path_end = NULL;
4515#endif
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004516 ff_stack_T *stackp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004517#if defined(FEAT_SEARCHPATH) || defined(FEAT_PATH_EXTRA)
4518 int len;
4519#endif
4520 int i;
4521 char_u *p;
4522#ifdef FEAT_SEARCHPATH
4523 char_u *suf;
4524#endif
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004525 ff_search_ctx_T *search_ctx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004526
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004527 if (search_ctx_arg == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004528 return NULL;
4529
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004530 search_ctx = (ff_search_ctx_T *)search_ctx_arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004531
4532 /*
4533 * filepath is used as buffer for various actions and as the storage to
4534 * return a found filename.
4535 */
4536 if ((file_path = alloc((int)MAXPATHL)) == NULL)
4537 return NULL;
4538
4539#ifdef FEAT_PATH_EXTRA
4540 /* store the end of the start dir -- needed for upward search */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004541 if (search_ctx->ffsc_start_dir != NULL)
4542 path_end = &search_ctx->ffsc_start_dir[
4543 STRLEN(search_ctx->ffsc_start_dir)];
Bram Moolenaar071d4272004-06-13 20:20:40 +00004544#endif
4545
4546#ifdef FEAT_PATH_EXTRA
4547 /* upward search loop */
4548 for (;;)
4549 {
4550#endif
4551 /* downward search loop */
4552 for (;;)
4553 {
4554 /* check if user user wants to stop the search*/
4555 ui_breakcheck();
4556 if (got_int)
4557 break;
4558
4559 /* get directory to work on from stack */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004560 stackp = ff_pop(search_ctx);
4561 if (stackp == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004562 break;
4563
4564 /*
4565 * TODO: decide if we leave this test in
4566 *
4567 * GOOD: don't search a directory(-tree) twice.
4568 * BAD: - check linked list for every new directory entered.
4569 * - check for double files also done below
4570 *
4571 * Here we check if we already searched this directory.
4572 * We already searched a directory if:
4573 * 1) The directory is the same.
4574 * 2) We would use the same wildcard string.
4575 *
4576 * Good if you have links on same directory via several ways
4577 * or you have selfreferences in directories (e.g. SuSE Linux 6.3:
4578 * /etc/rc.d/init.d is linked to /etc/rc.d -> endless loop)
4579 *
4580 * This check is only needed for directories we work on for the
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004581 * first time (hence stackp->ff_filearray == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004582 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004583 if (stackp->ffs_filearray == NULL
4584 && ff_check_visited(&search_ctx->ffsc_dir_visited_list
Bram Moolenaar071d4272004-06-13 20:20:40 +00004585 ->ffvl_visited_list,
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004586 stackp->ffs_fix_path
Bram Moolenaar071d4272004-06-13 20:20:40 +00004587#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004588 , stackp->ffs_wc_path
Bram Moolenaar071d4272004-06-13 20:20:40 +00004589#endif
4590 ) == FAIL)
4591 {
4592#ifdef FF_VERBOSE
4593 if (p_verbose >= 5)
4594 {
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004595 verbose_enter_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004596 smsg((char_u *)"Already Searched: %s (%s)",
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004597 stackp->ffs_fix_path, stackp->ffs_wc_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004598 /* don't overwrite this either */
4599 msg_puts((char_u *)"\n");
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004600 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004601 }
4602#endif
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004603 ff_free_stack_element(stackp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004604 continue;
4605 }
4606#ifdef FF_VERBOSE
4607 else if (p_verbose >= 5)
4608 {
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004609 verbose_enter_scroll();
Bram Moolenaar051b7822005-05-19 21:00:46 +00004610 smsg((char_u *)"Searching: %s (%s)",
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004611 stackp->ffs_fix_path, stackp->ffs_wc_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004612 /* don't overwrite this either */
4613 msg_puts((char_u *)"\n");
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004614 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004615 }
4616#endif
4617
4618 /* check depth */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004619 if (stackp->ffs_level <= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004620 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004621 ff_free_stack_element(stackp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004622 continue;
4623 }
4624
4625 file_path[0] = NUL;
4626
4627 /*
4628 * If no filearray till now expand wildcards
4629 * The function expand_wildcards() can handle an array of paths
4630 * and all possible expands are returned in one array. We use this
4631 * to handle the expansion of '**' into an empty string.
4632 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004633 if (stackp->ffs_filearray == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004634 {
4635 char_u *dirptrs[2];
4636
4637 /* we use filepath to build the path expand_wildcards() should
4638 * expand.
4639 */
4640 dirptrs[0] = file_path;
4641 dirptrs[1] = NULL;
4642
4643 /* if we have a start dir copy it in */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004644 if (!vim_isAbsName(stackp->ffs_fix_path)
4645 && search_ctx->ffsc_start_dir)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004646 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004647 STRCPY(file_path, search_ctx->ffsc_start_dir);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004648 add_pathsep(file_path);
4649 }
4650
4651 /* append the fix part of the search path */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004652 STRCAT(file_path, stackp->ffs_fix_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004653 add_pathsep(file_path);
4654
4655#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004656 rest_of_wildcards = stackp->ffs_wc_path;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004657 if (*rest_of_wildcards != NUL)
4658 {
4659 len = (int)STRLEN(file_path);
4660 if (STRNCMP(rest_of_wildcards, "**", 2) == 0)
4661 {
4662 /* pointer to the restrict byte
4663 * The restrict byte is not a character!
4664 */
4665 p = rest_of_wildcards + 2;
4666
4667 if (*p > 0)
4668 {
4669 (*p)--;
4670 file_path[len++] = '*';
4671 }
4672
4673 if (*p == 0)
4674 {
4675 /* remove '**<numb> from wildcards */
Bram Moolenaar446cb832008-06-24 21:56:24 +00004676 STRMOVE(rest_of_wildcards, rest_of_wildcards + 3);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004677 }
4678 else
4679 rest_of_wildcards += 3;
4680
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004681 if (stackp->ffs_star_star_empty == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004682 {
4683 /* if not done before, expand '**' to empty */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004684 stackp->ffs_star_star_empty = 1;
4685 dirptrs[1] = stackp->ffs_fix_path;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004686 }
4687 }
4688
4689 /*
4690 * Here we copy until the next path separator or the end of
4691 * the path. If we stop at a path separator, there is
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00004692 * still something else left. This is handled below by
Bram Moolenaar071d4272004-06-13 20:20:40 +00004693 * pushing every directory returned from expand_wildcards()
4694 * on the stack again for further search.
4695 */
4696 while (*rest_of_wildcards
4697 && !vim_ispathsep(*rest_of_wildcards))
4698 file_path[len++] = *rest_of_wildcards++;
4699
4700 file_path[len] = NUL;
4701 if (vim_ispathsep(*rest_of_wildcards))
4702 rest_of_wildcards++;
4703 }
4704#endif
4705
4706 /*
4707 * Expand wildcards like "*" and "$VAR".
4708 * If the path is a URL don't try this.
4709 */
4710 if (path_with_url(dirptrs[0]))
4711 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004712 stackp->ffs_filearray = (char_u **)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004713 alloc((unsigned)sizeof(char *));
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004714 if (stackp->ffs_filearray != NULL
4715 && (stackp->ffs_filearray[0]
Bram Moolenaar071d4272004-06-13 20:20:40 +00004716 = vim_strsave(dirptrs[0])) != NULL)
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004717 stackp->ffs_filearray_size = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004718 else
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004719 stackp->ffs_filearray_size = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004720 }
4721 else
Bram Moolenaar0b573a52011-07-27 17:31:47 +02004722 /* Add EW_NOTWILD because the expanded path may contain
4723 * wildcard characters that are to be taken literally.
4724 * This is a bit of a hack. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004725 expand_wildcards((dirptrs[1] == NULL) ? 1 : 2, dirptrs,
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004726 &stackp->ffs_filearray_size,
4727 &stackp->ffs_filearray,
Bram Moolenaar0b573a52011-07-27 17:31:47 +02004728 EW_DIR|EW_ADDSLASH|EW_SILENT|EW_NOTWILD);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004729
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004730 stackp->ffs_filearray_cur = 0;
4731 stackp->ffs_stage = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004732 }
4733#ifdef FEAT_PATH_EXTRA
4734 else
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004735 rest_of_wildcards = &stackp->ffs_wc_path[
4736 STRLEN(stackp->ffs_wc_path)];
Bram Moolenaar071d4272004-06-13 20:20:40 +00004737#endif
4738
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004739 if (stackp->ffs_stage == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004740 {
4741 /* this is the first time we work on this directory */
4742#ifdef FEAT_PATH_EXTRA
4743 if (*rest_of_wildcards == NUL)
4744#endif
4745 {
4746 /*
Bram Moolenaar473de612013-06-08 18:19:48 +02004747 * We don't have further wildcards to expand, so we have to
4748 * check for the final file now.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004749 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004750 for (i = stackp->ffs_filearray_cur;
4751 i < stackp->ffs_filearray_size; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004752 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004753 if (!path_with_url(stackp->ffs_filearray[i])
4754 && !mch_isdir(stackp->ffs_filearray[i]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004755 continue; /* not a directory */
4756
Bram Moolenaar21160b92009-11-11 15:56:10 +00004757 /* prepare the filename to be checked for existence
Bram Moolenaar071d4272004-06-13 20:20:40 +00004758 * below */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004759 STRCPY(file_path, stackp->ffs_filearray[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004760 add_pathsep(file_path);
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004761 STRCAT(file_path, search_ctx->ffsc_file_to_search);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004762
4763 /*
4764 * Try without extra suffix and then with suffixes
4765 * from 'suffixesadd'.
4766 */
4767#ifdef FEAT_SEARCHPATH
4768 len = (int)STRLEN(file_path);
Bram Moolenaar463ee342010-08-08 18:17:52 +02004769 if (search_ctx->ffsc_tagfile)
4770 suf = (char_u *)"";
4771 else
4772 suf = curbuf->b_p_sua;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004773 for (;;)
4774#endif
4775 {
4776 /* if file exists and we didn't already find it */
4777 if ((path_with_url(file_path)
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004778 || (mch_getperm(file_path) >= 0
4779 && (search_ctx->ffsc_find_what
4780 == FINDFILE_BOTH
4781 || ((search_ctx->ffsc_find_what
4782 == FINDFILE_DIR)
4783 == mch_isdir(file_path)))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004784#ifndef FF_VERBOSE
4785 && (ff_check_visited(
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004786 &search_ctx->ffsc_visited_list->ffvl_visited_list,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004787 file_path
4788#ifdef FEAT_PATH_EXTRA
4789 , (char_u *)""
4790#endif
4791 ) == OK)
4792#endif
4793 )
4794 {
4795#ifdef FF_VERBOSE
4796 if (ff_check_visited(
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004797 &search_ctx->ffsc_visited_list->ffvl_visited_list,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004798 file_path
4799#ifdef FEAT_PATH_EXTRA
4800 , (char_u *)""
4801#endif
4802 ) == FAIL)
4803 {
4804 if (p_verbose >= 5)
4805 {
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004806 verbose_enter_scroll();
Bram Moolenaar051b7822005-05-19 21:00:46 +00004807 smsg((char_u *)"Already: %s",
Bram Moolenaar071d4272004-06-13 20:20:40 +00004808 file_path);
4809 /* don't overwrite this either */
4810 msg_puts((char_u *)"\n");
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004811 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004812 }
4813 continue;
4814 }
4815#endif
4816
4817 /* push dir to examine rest of subdirs later */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004818 stackp->ffs_filearray_cur = i + 1;
4819 ff_push(search_ctx, stackp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004820
Bram Moolenaar6bab9fa2009-01-22 20:32:12 +00004821 if (!path_with_url(file_path))
4822 simplify_filename(file_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004823 if (mch_dirname(ff_expand_buffer, MAXPATHL)
4824 == OK)
4825 {
4826 p = shorten_fname(file_path,
4827 ff_expand_buffer);
4828 if (p != NULL)
Bram Moolenaar446cb832008-06-24 21:56:24 +00004829 STRMOVE(file_path, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004830 }
4831#ifdef FF_VERBOSE
4832 if (p_verbose >= 5)
4833 {
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004834 verbose_enter_scroll();
Bram Moolenaar051b7822005-05-19 21:00:46 +00004835 smsg((char_u *)"HIT: %s", file_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004836 /* don't overwrite this either */
4837 msg_puts((char_u *)"\n");
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004838 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004839 }
4840#endif
4841 return file_path;
4842 }
4843
4844#ifdef FEAT_SEARCHPATH
4845 /* Not found or found already, try next suffix. */
4846 if (*suf == NUL)
4847 break;
4848 copy_option_part(&suf, file_path + len,
4849 MAXPATHL - len, ",");
4850#endif
4851 }
4852 }
4853 }
4854#ifdef FEAT_PATH_EXTRA
4855 else
4856 {
4857 /*
4858 * still wildcards left, push the directories for further
4859 * search
4860 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004861 for (i = stackp->ffs_filearray_cur;
4862 i < stackp->ffs_filearray_size; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004863 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004864 if (!mch_isdir(stackp->ffs_filearray[i]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004865 continue; /* not a directory */
4866
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004867 ff_push(search_ctx,
4868 ff_create_stack_element(
4869 stackp->ffs_filearray[i],
4870 rest_of_wildcards,
4871 stackp->ffs_level - 1, 0));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004872 }
4873 }
4874#endif
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004875 stackp->ffs_filearray_cur = 0;
4876 stackp->ffs_stage = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004877 }
4878
4879#ifdef FEAT_PATH_EXTRA
4880 /*
4881 * if wildcards contains '**' we have to descent till we reach the
4882 * leaves of the directory tree.
4883 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004884 if (STRNCMP(stackp->ffs_wc_path, "**", 2) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004885 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004886 for (i = stackp->ffs_filearray_cur;
4887 i < stackp->ffs_filearray_size; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004888 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004889 if (fnamecmp(stackp->ffs_filearray[i],
4890 stackp->ffs_fix_path) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004891 continue; /* don't repush same directory */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004892 if (!mch_isdir(stackp->ffs_filearray[i]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004893 continue; /* not a directory */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004894 ff_push(search_ctx,
4895 ff_create_stack_element(stackp->ffs_filearray[i],
4896 stackp->ffs_wc_path, stackp->ffs_level - 1, 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004897 }
4898 }
4899#endif
4900
4901 /* we are done with the current directory */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004902 ff_free_stack_element(stackp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004903
4904 }
4905
4906#ifdef FEAT_PATH_EXTRA
4907 /* If we reached this, we didn't find anything downwards.
4908 * Let's check if we should do an upward search.
4909 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004910 if (search_ctx->ffsc_start_dir
4911 && search_ctx->ffsc_stopdirs_v != NULL && !got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004912 {
4913 ff_stack_T *sptr;
4914
4915 /* is the last starting directory in the stop list? */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004916 if (ff_path_in_stoplist(search_ctx->ffsc_start_dir,
4917 (int)(path_end - search_ctx->ffsc_start_dir),
4918 search_ctx->ffsc_stopdirs_v) == TRUE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004919 break;
4920
4921 /* cut of last dir */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004922 while (path_end > search_ctx->ffsc_start_dir
4923 && vim_ispathsep(*path_end))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004924 path_end--;
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004925 while (path_end > search_ctx->ffsc_start_dir
4926 && !vim_ispathsep(path_end[-1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004927 path_end--;
4928 *path_end = 0;
4929 path_end--;
4930
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004931 if (*search_ctx->ffsc_start_dir == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004932 break;
4933
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004934 STRCPY(file_path, search_ctx->ffsc_start_dir);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004935 add_pathsep(file_path);
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004936 STRCAT(file_path, search_ctx->ffsc_fix_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004937
4938 /* create a new stack entry */
4939 sptr = ff_create_stack_element(file_path,
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004940 search_ctx->ffsc_wc_path, search_ctx->ffsc_level, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004941 if (sptr == NULL)
4942 break;
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004943 ff_push(search_ctx, sptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004944 }
4945 else
4946 break;
4947 }
4948#endif
4949
4950 vim_free(file_path);
4951 return NULL;
4952}
4953
4954/*
4955 * Free the list of lists of visited files and directories
4956 * Can handle it if the passed search_context is NULL;
4957 */
4958 void
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004959vim_findfile_free_visited(search_ctx_arg)
4960 void *search_ctx_arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004961{
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004962 ff_search_ctx_T *search_ctx;
4963
4964 if (search_ctx_arg == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004965 return;
4966
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004967 search_ctx = (ff_search_ctx_T *)search_ctx_arg;
4968 vim_findfile_free_visited_list(&search_ctx->ffsc_visited_lists_list);
4969 vim_findfile_free_visited_list(&search_ctx->ffsc_dir_visited_lists_list);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004970}
4971
4972 static void
4973vim_findfile_free_visited_list(list_headp)
4974 ff_visited_list_hdr_T **list_headp;
4975{
4976 ff_visited_list_hdr_T *vp;
4977
4978 while (*list_headp != NULL)
4979 {
4980 vp = (*list_headp)->ffvl_next;
4981 ff_free_visited_list((*list_headp)->ffvl_visited_list);
4982
4983 vim_free((*list_headp)->ffvl_filename);
4984 vim_free(*list_headp);
4985 *list_headp = vp;
4986 }
4987 *list_headp = NULL;
4988}
4989
4990 static void
4991ff_free_visited_list(vl)
4992 ff_visited_T *vl;
4993{
4994 ff_visited_T *vp;
4995
4996 while (vl != NULL)
4997 {
4998 vp = vl->ffv_next;
4999#ifdef FEAT_PATH_EXTRA
5000 vim_free(vl->ffv_wc_path);
5001#endif
5002 vim_free(vl);
5003 vl = vp;
5004 }
5005 vl = NULL;
5006}
5007
5008/*
5009 * Returns the already visited list for the given filename. If none is found it
5010 * allocates a new one.
5011 */
5012 static ff_visited_list_hdr_T*
5013ff_get_visited_list(filename, list_headp)
5014 char_u *filename;
5015 ff_visited_list_hdr_T **list_headp;
5016{
5017 ff_visited_list_hdr_T *retptr = NULL;
5018
5019 /* check if a visited list for the given filename exists */
5020 if (*list_headp != NULL)
5021 {
5022 retptr = *list_headp;
5023 while (retptr != NULL)
5024 {
5025 if (fnamecmp(filename, retptr->ffvl_filename) == 0)
5026 {
5027#ifdef FF_VERBOSE
5028 if (p_verbose >= 5)
5029 {
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00005030 verbose_enter_scroll();
Bram Moolenaar051b7822005-05-19 21:00:46 +00005031 smsg((char_u *)"ff_get_visited_list: FOUND list for %s",
Bram Moolenaar071d4272004-06-13 20:20:40 +00005032 filename);
5033 /* don't overwrite this either */
5034 msg_puts((char_u *)"\n");
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00005035 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005036 }
5037#endif
5038 return retptr;
5039 }
5040 retptr = retptr->ffvl_next;
5041 }
5042 }
5043
5044#ifdef FF_VERBOSE
5045 if (p_verbose >= 5)
5046 {
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00005047 verbose_enter_scroll();
Bram Moolenaar051b7822005-05-19 21:00:46 +00005048 smsg((char_u *)"ff_get_visited_list: new list for %s", filename);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005049 /* don't overwrite this either */
5050 msg_puts((char_u *)"\n");
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00005051 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005052 }
5053#endif
5054
5055 /*
5056 * if we reach this we didn't find a list and we have to allocate new list
5057 */
5058 retptr = (ff_visited_list_hdr_T*)alloc((unsigned)sizeof(*retptr));
5059 if (retptr == NULL)
5060 return NULL;
5061
5062 retptr->ffvl_visited_list = NULL;
5063 retptr->ffvl_filename = vim_strsave(filename);
5064 if (retptr->ffvl_filename == NULL)
5065 {
5066 vim_free(retptr);
5067 return NULL;
5068 }
5069 retptr->ffvl_next = *list_headp;
5070 *list_headp = retptr;
5071
5072 return retptr;
5073}
5074
5075#ifdef FEAT_PATH_EXTRA
5076/*
5077 * check if two wildcard paths are equal. Returns TRUE or FALSE.
5078 * They are equal if:
5079 * - both paths are NULL
5080 * - they have the same length
5081 * - char by char comparison is OK
5082 * - the only differences are in the counters behind a '**', so
5083 * '**\20' is equal to '**\24'
5084 */
5085 static int
5086ff_wc_equal(s1, s2)
5087 char_u *s1;
5088 char_u *s2;
5089{
5090 int i;
Bram Moolenaard0e2d942013-03-19 18:31:49 +01005091 int prev1 = NUL;
5092 int prev2 = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005093
5094 if (s1 == s2)
5095 return TRUE;
5096
5097 if (s1 == NULL || s2 == NULL)
5098 return FALSE;
5099
5100 if (STRLEN(s1) != STRLEN(s2))
5101 return FAIL;
5102
Bram Moolenaard0e2d942013-03-19 18:31:49 +01005103 for (i = 0; s1[i] != NUL && s2[i] != NUL; i += MB_PTR2LEN(s1 + i))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005104 {
Bram Moolenaard0e2d942013-03-19 18:31:49 +01005105 int c1 = PTR2CHAR(s1 + i);
5106 int c2 = PTR2CHAR(s2 + i);
5107
5108 if ((p_fic ? MB_TOLOWER(c1) != MB_TOLOWER(c2) : c1 != c2)
5109 && (prev1 != '*' || prev2 != '*'))
5110 return FAIL;
5111 prev2 = prev1;
5112 prev1 = c1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005113 }
5114 return TRUE;
5115}
5116#endif
5117
5118/*
5119 * maintains the list of already visited files and dirs
5120 * returns FAIL if the given file/dir is already in the list
5121 * returns OK if it is newly added
5122 *
5123 * TODO: What to do on memory allocation problems?
5124 * -> return TRUE - Better the file is found several times instead of
5125 * never.
5126 */
5127 static int
5128ff_check_visited(visited_list, fname
5129#ifdef FEAT_PATH_EXTRA
5130 , wc_path
5131#endif
5132 )
5133 ff_visited_T **visited_list;
5134 char_u *fname;
5135#ifdef FEAT_PATH_EXTRA
5136 char_u *wc_path;
5137#endif
5138{
5139 ff_visited_T *vp;
5140#ifdef UNIX
5141 struct stat st;
5142 int url = FALSE;
5143#endif
5144
5145 /* For an URL we only compare the name, otherwise we compare the
5146 * device/inode (unix) or the full path name (not Unix). */
5147 if (path_with_url(fname))
5148 {
Bram Moolenaarbbebc852005-07-18 21:47:53 +00005149 vim_strncpy(ff_expand_buffer, fname, MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005150#ifdef UNIX
5151 url = TRUE;
5152#endif
5153 }
5154 else
5155 {
5156 ff_expand_buffer[0] = NUL;
5157#ifdef UNIX
5158 if (mch_stat((char *)fname, &st) < 0)
5159#else
5160 if (vim_FullName(fname, ff_expand_buffer, MAXPATHL, TRUE) == FAIL)
5161#endif
5162 return FAIL;
5163 }
5164
5165 /* check against list of already visited files */
5166 for (vp = *visited_list; vp != NULL; vp = vp->ffv_next)
5167 {
5168 if (
5169#ifdef UNIX
Bram Moolenaare1fbddc2009-05-16 19:07:03 +00005170 !url ? (vp->ffv_dev_valid && vp->ffv_dev == st.st_dev
5171 && vp->ffv_ino == st.st_ino)
5172 :
Bram Moolenaar071d4272004-06-13 20:20:40 +00005173#endif
5174 fnamecmp(vp->ffv_fname, ff_expand_buffer) == 0
5175 )
5176 {
5177#ifdef FEAT_PATH_EXTRA
5178 /* are the wildcard parts equal */
5179 if (ff_wc_equal(vp->ffv_wc_path, wc_path) == TRUE)
5180#endif
5181 /* already visited */
5182 return FAIL;
5183 }
5184 }
5185
5186 /*
5187 * New file/dir. Add it to the list of visited files/dirs.
5188 */
5189 vp = (ff_visited_T *)alloc((unsigned)(sizeof(ff_visited_T)
5190 + STRLEN(ff_expand_buffer)));
5191
5192 if (vp != NULL)
5193 {
5194#ifdef UNIX
5195 if (!url)
5196 {
Bram Moolenaare1fbddc2009-05-16 19:07:03 +00005197 vp->ffv_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005198 vp->ffv_ino = st.st_ino;
5199 vp->ffv_dev = st.st_dev;
5200 vp->ffv_fname[0] = NUL;
5201 }
5202 else
5203 {
Bram Moolenaare1fbddc2009-05-16 19:07:03 +00005204 vp->ffv_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005205#endif
5206 STRCPY(vp->ffv_fname, ff_expand_buffer);
5207#ifdef UNIX
5208 }
5209#endif
5210#ifdef FEAT_PATH_EXTRA
5211 if (wc_path != NULL)
5212 vp->ffv_wc_path = vim_strsave(wc_path);
5213 else
5214 vp->ffv_wc_path = NULL;
5215#endif
5216
5217 vp->ffv_next = *visited_list;
5218 *visited_list = vp;
5219 }
5220
5221 return OK;
5222}
5223
5224/*
5225 * create stack element from given path pieces
5226 */
5227 static ff_stack_T *
5228ff_create_stack_element(fix_part,
5229#ifdef FEAT_PATH_EXTRA
5230 wc_part,
5231#endif
5232 level, star_star_empty)
5233 char_u *fix_part;
5234#ifdef FEAT_PATH_EXTRA
5235 char_u *wc_part;
5236#endif
5237 int level;
5238 int star_star_empty;
5239{
5240 ff_stack_T *new;
5241
5242 new = (ff_stack_T *)alloc((unsigned)sizeof(ff_stack_T));
5243 if (new == NULL)
5244 return NULL;
5245
5246 new->ffs_prev = NULL;
5247 new->ffs_filearray = NULL;
5248 new->ffs_filearray_size = 0;
5249 new->ffs_filearray_cur = 0;
5250 new->ffs_stage = 0;
5251 new->ffs_level = level;
5252 new->ffs_star_star_empty = star_star_empty;;
5253
5254 /* the following saves NULL pointer checks in vim_findfile */
5255 if (fix_part == NULL)
5256 fix_part = (char_u *)"";
5257 new->ffs_fix_path = vim_strsave(fix_part);
5258
5259#ifdef FEAT_PATH_EXTRA
5260 if (wc_part == NULL)
5261 wc_part = (char_u *)"";
5262 new->ffs_wc_path = vim_strsave(wc_part);
5263#endif
5264
5265 if (new->ffs_fix_path == NULL
5266#ifdef FEAT_PATH_EXTRA
5267 || new->ffs_wc_path == NULL
5268#endif
5269 )
5270 {
5271 ff_free_stack_element(new);
5272 new = NULL;
5273 }
5274
5275 return new;
5276}
5277
5278/*
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005279 * Push a dir on the directory stack.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005280 */
5281 static void
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005282ff_push(search_ctx, stack_ptr)
5283 ff_search_ctx_T *search_ctx;
5284 ff_stack_T *stack_ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005285{
5286 /* check for NULL pointer, not to return an error to the user, but
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005287 * to prevent a crash */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005288 if (stack_ptr != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005289 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005290 stack_ptr->ffs_prev = search_ctx->ffsc_stack_ptr;
5291 search_ctx->ffsc_stack_ptr = stack_ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005292 }
5293}
5294
5295/*
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005296 * Pop a dir from the directory stack.
5297 * Returns NULL if stack is empty.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005298 */
5299 static ff_stack_T *
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005300ff_pop(search_ctx)
5301 ff_search_ctx_T *search_ctx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005302{
5303 ff_stack_T *sptr;
5304
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005305 sptr = search_ctx->ffsc_stack_ptr;
5306 if (search_ctx->ffsc_stack_ptr != NULL)
5307 search_ctx->ffsc_stack_ptr = search_ctx->ffsc_stack_ptr->ffs_prev;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005308
5309 return sptr;
5310}
5311
5312/*
5313 * free the given stack element
5314 */
5315 static void
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005316ff_free_stack_element(stack_ptr)
5317 ff_stack_T *stack_ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005318{
5319 /* vim_free handles possible NULL pointers */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005320 vim_free(stack_ptr->ffs_fix_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005321#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005322 vim_free(stack_ptr->ffs_wc_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005323#endif
5324
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005325 if (stack_ptr->ffs_filearray != NULL)
5326 FreeWild(stack_ptr->ffs_filearray_size, stack_ptr->ffs_filearray);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005327
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005328 vim_free(stack_ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005329}
5330
5331/*
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005332 * Clear the search context, but NOT the visited list.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005333 */
5334 static void
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005335ff_clear(search_ctx)
5336 ff_search_ctx_T *search_ctx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005337{
5338 ff_stack_T *sptr;
5339
5340 /* clear up stack */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005341 while ((sptr = ff_pop(search_ctx)) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005342 ff_free_stack_element(sptr);
5343
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005344 vim_free(search_ctx->ffsc_file_to_search);
5345 vim_free(search_ctx->ffsc_start_dir);
5346 vim_free(search_ctx->ffsc_fix_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005347#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005348 vim_free(search_ctx->ffsc_wc_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005349#endif
5350
5351#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005352 if (search_ctx->ffsc_stopdirs_v != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005353 {
5354 int i = 0;
5355
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005356 while (search_ctx->ffsc_stopdirs_v[i] != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005357 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005358 vim_free(search_ctx->ffsc_stopdirs_v[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005359 i++;
5360 }
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005361 vim_free(search_ctx->ffsc_stopdirs_v);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005362 }
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005363 search_ctx->ffsc_stopdirs_v = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005364#endif
5365
5366 /* reset everything */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005367 search_ctx->ffsc_file_to_search = NULL;
5368 search_ctx->ffsc_start_dir = NULL;
5369 search_ctx->ffsc_fix_path = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005370#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005371 search_ctx->ffsc_wc_path = NULL;
5372 search_ctx->ffsc_level = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005373#endif
5374}
5375
5376#ifdef FEAT_PATH_EXTRA
5377/*
5378 * check if the given path is in the stopdirs
5379 * returns TRUE if yes else FALSE
5380 */
5381 static int
5382ff_path_in_stoplist(path, path_len, stopdirs_v)
5383 char_u *path;
5384 int path_len;
5385 char_u **stopdirs_v;
5386{
5387 int i = 0;
5388
5389 /* eat up trailing path separators, except the first */
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00005390 while (path_len > 1 && vim_ispathsep(path[path_len - 1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005391 path_len--;
5392
5393 /* if no path consider it as match */
5394 if (path_len == 0)
5395 return TRUE;
5396
5397 for (i = 0; stopdirs_v[i] != NULL; i++)
5398 {
5399 if ((int)STRLEN(stopdirs_v[i]) > path_len)
5400 {
5401 /* match for parent directory. So '/home' also matches
5402 * '/home/rks'. Check for PATHSEP in stopdirs_v[i], else
5403 * '/home/r' would also match '/home/rks'
5404 */
5405 if (fnamencmp(stopdirs_v[i], path, path_len) == 0
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00005406 && vim_ispathsep(stopdirs_v[i][path_len]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005407 return TRUE;
5408 }
5409 else
5410 {
5411 if (fnamecmp(stopdirs_v[i], path) == 0)
5412 return TRUE;
5413 }
5414 }
5415 return FALSE;
5416}
5417#endif
5418
5419#if defined(FEAT_SEARCHPATH) || defined(PROTO)
5420/*
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005421 * Find the file name "ptr[len]" in the path. Also finds directory names.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005422 *
5423 * On the first call set the parameter 'first' to TRUE to initialize
5424 * the search. For repeating calls to FALSE.
5425 *
5426 * Repeating calls will return other files called 'ptr[len]' from the path.
5427 *
5428 * Only on the first call 'ptr' and 'len' are used. For repeating calls they
5429 * don't need valid values.
5430 *
5431 * If nothing found on the first call the option FNAME_MESS will issue the
5432 * message:
5433 * 'Can't find file "<file>" in path'
5434 * On repeating calls:
5435 * 'No more file "<file>" found in path'
5436 *
5437 * options:
5438 * FNAME_MESS give error message when not found
5439 *
5440 * Uses NameBuff[]!
5441 *
5442 * Returns an allocated string for the file name. NULL for error.
5443 *
5444 */
5445 char_u *
5446find_file_in_path(ptr, len, options, first, rel_fname)
5447 char_u *ptr; /* file name */
5448 int len; /* length of file name */
5449 int options;
5450 int first; /* use count'th matching file name */
5451 char_u *rel_fname; /* file name searching relative to */
5452{
5453 return find_file_in_path_option(ptr, len, options, first,
5454 *curbuf->b_p_path == NUL ? p_path : curbuf->b_p_path,
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005455 FINDFILE_BOTH, rel_fname, curbuf->b_p_sua);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005456}
5457
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005458static char_u *ff_file_to_find = NULL;
5459static void *fdip_search_ctx = NULL;
5460
5461#if defined(EXITFREE)
5462 static void
5463free_findfile()
5464{
5465 vim_free(ff_file_to_find);
5466 vim_findfile_cleanup(fdip_search_ctx);
5467}
5468#endif
5469
Bram Moolenaar071d4272004-06-13 20:20:40 +00005470/*
5471 * Find the directory name "ptr[len]" in the path.
5472 *
5473 * options:
5474 * FNAME_MESS give error message when not found
5475 *
5476 * Uses NameBuff[]!
5477 *
5478 * Returns an allocated string for the file name. NULL for error.
5479 */
5480 char_u *
5481find_directory_in_path(ptr, len, options, rel_fname)
5482 char_u *ptr; /* file name */
5483 int len; /* length of file name */
5484 int options;
5485 char_u *rel_fname; /* file name searching relative to */
5486{
5487 return find_file_in_path_option(ptr, len, options, TRUE, p_cdpath,
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005488 FINDFILE_DIR, rel_fname, (char_u *)"");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005489}
5490
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00005491 char_u *
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005492find_file_in_path_option(ptr, len, options, first, path_option, find_what, rel_fname, suffixes)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005493 char_u *ptr; /* file name */
5494 int len; /* length of file name */
5495 int options;
5496 int first; /* use count'th matching file name */
5497 char_u *path_option; /* p_path or p_cdpath */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005498 int find_what; /* FINDFILE_FILE, _DIR or _BOTH */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005499 char_u *rel_fname; /* file name we are looking relative to. */
Bram Moolenaar433f7c82006-03-21 21:29:36 +00005500 char_u *suffixes; /* list of suffixes, 'suffixesadd' option */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005501{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005502 static char_u *dir;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005503 static int did_findfile_init = FALSE;
5504 char_u save_char;
5505 char_u *file_name = NULL;
5506 char_u *buf = NULL;
5507 int rel_to_curdir;
5508#ifdef AMIGA
5509 struct Process *proc = (struct Process *)FindTask(0L);
5510 APTR save_winptr = proc->pr_WindowPtr;
5511
5512 /* Avoid a requester here for a volume that doesn't exist. */
5513 proc->pr_WindowPtr = (APTR)-1L;
5514#endif
5515
5516 if (first == TRUE)
5517 {
5518 /* copy file name into NameBuff, expanding environment variables */
5519 save_char = ptr[len];
5520 ptr[len] = NUL;
5521 expand_env(ptr, NameBuff, MAXPATHL);
5522 ptr[len] = save_char;
5523
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005524 vim_free(ff_file_to_find);
5525 ff_file_to_find = vim_strsave(NameBuff);
5526 if (ff_file_to_find == NULL) /* out of memory */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005527 {
5528 file_name = NULL;
5529 goto theend;
5530 }
5531 }
5532
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005533 rel_to_curdir = (ff_file_to_find[0] == '.'
5534 && (ff_file_to_find[1] == NUL
5535 || vim_ispathsep(ff_file_to_find[1])
5536 || (ff_file_to_find[1] == '.'
5537 && (ff_file_to_find[2] == NUL
5538 || vim_ispathsep(ff_file_to_find[2])))));
5539 if (vim_isAbsName(ff_file_to_find)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005540 /* "..", "../path", "." and "./path": don't use the path_option */
5541 || rel_to_curdir
5542#if defined(MSWIN) || defined(MSDOS) || defined(OS2)
5543 /* handle "\tmp" as absolute path */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005544 || vim_ispathsep(ff_file_to_find[0])
Bram Moolenaar21160b92009-11-11 15:56:10 +00005545 /* handle "c:name" as absolute path */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005546 || (ff_file_to_find[0] != NUL && ff_file_to_find[1] == ':')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005547#endif
5548#ifdef AMIGA
5549 /* handle ":tmp" as absolute path */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005550 || ff_file_to_find[0] == ':'
Bram Moolenaar071d4272004-06-13 20:20:40 +00005551#endif
5552 )
5553 {
5554 /*
5555 * Absolute path, no need to use "path_option".
5556 * If this is not a first call, return NULL. We already returned a
5557 * filename on the first call.
5558 */
5559 if (first == TRUE)
5560 {
5561 int l;
5562 int run;
5563
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005564 if (path_with_url(ff_file_to_find))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005565 {
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005566 file_name = vim_strsave(ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005567 goto theend;
5568 }
5569
5570 /* When FNAME_REL flag given first use the directory of the file.
5571 * Otherwise or when this fails use the current directory. */
5572 for (run = 1; run <= 2; ++run)
5573 {
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005574 l = (int)STRLEN(ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005575 if (run == 1
5576 && rel_to_curdir
5577 && (options & FNAME_REL)
5578 && rel_fname != NULL
5579 && STRLEN(rel_fname) + l < MAXPATHL)
5580 {
5581 STRCPY(NameBuff, rel_fname);
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005582 STRCPY(gettail(NameBuff), ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005583 l = (int)STRLEN(NameBuff);
5584 }
5585 else
5586 {
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005587 STRCPY(NameBuff, ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005588 run = 2;
5589 }
5590
5591 /* When the file doesn't exist, try adding parts of
5592 * 'suffixesadd'. */
Bram Moolenaar433f7c82006-03-21 21:29:36 +00005593 buf = suffixes;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005594 for (;;)
5595 {
5596 if (
5597#ifdef DJGPP
5598 /* "C:" by itself will fail for mch_getperm(),
5599 * assume it's always valid. */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005600 (find_what != FINDFILE_FILE && NameBuff[0] != NUL
Bram Moolenaar071d4272004-06-13 20:20:40 +00005601 && NameBuff[1] == ':'
5602 && NameBuff[2] == NUL) ||
5603#endif
5604 (mch_getperm(NameBuff) >= 0
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005605 && (find_what == FINDFILE_BOTH
5606 || ((find_what == FINDFILE_DIR)
5607 == mch_isdir(NameBuff)))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005608 {
5609 file_name = vim_strsave(NameBuff);
5610 goto theend;
5611 }
5612 if (*buf == NUL)
5613 break;
5614 copy_option_part(&buf, NameBuff + l, MAXPATHL - l, ",");
5615 }
5616 }
5617 }
5618 }
5619 else
5620 {
5621 /*
5622 * Loop over all paths in the 'path' or 'cdpath' option.
5623 * When "first" is set, first setup to the start of the option.
5624 * Otherwise continue to find the next match.
5625 */
5626 if (first == TRUE)
5627 {
5628 /* vim_findfile_free_visited can handle a possible NULL pointer */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005629 vim_findfile_free_visited(fdip_search_ctx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005630 dir = path_option;
5631 did_findfile_init = FALSE;
5632 }
5633
5634 for (;;)
5635 {
5636 if (did_findfile_init)
5637 {
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005638 file_name = vim_findfile(fdip_search_ctx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005639 if (file_name != NULL)
5640 break;
5641
5642 did_findfile_init = FALSE;
5643 }
5644 else
5645 {
5646 char_u *r_ptr;
5647
5648 if (dir == NULL || *dir == NUL)
5649 {
5650 /* We searched all paths of the option, now we can
5651 * free the search context. */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005652 vim_findfile_cleanup(fdip_search_ctx);
5653 fdip_search_ctx = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005654 break;
5655 }
5656
5657 if ((buf = alloc((int)(MAXPATHL))) == NULL)
5658 break;
5659
5660 /* copy next path */
5661 buf[0] = 0;
5662 copy_option_part(&dir, buf, MAXPATHL, " ,");
5663
5664#ifdef FEAT_PATH_EXTRA
5665 /* get the stopdir string */
5666 r_ptr = vim_findfile_stopdir(buf);
5667#else
5668 r_ptr = NULL;
5669#endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005670 fdip_search_ctx = vim_findfile_init(buf, ff_file_to_find,
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005671 r_ptr, 100, FALSE, find_what,
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005672 fdip_search_ctx, FALSE, rel_fname);
5673 if (fdip_search_ctx != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005674 did_findfile_init = TRUE;
5675 vim_free(buf);
5676 }
5677 }
5678 }
5679 if (file_name == NULL && (options & FNAME_MESS))
5680 {
5681 if (first == TRUE)
5682 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005683 if (find_what == FINDFILE_DIR)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005684 EMSG2(_("E344: Can't find directory \"%s\" in cdpath"),
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005685 ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005686 else
5687 EMSG2(_("E345: Can't find file \"%s\" in path"),
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005688 ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005689 }
5690 else
5691 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005692 if (find_what == FINDFILE_DIR)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005693 EMSG2(_("E346: No more directory \"%s\" found in cdpath"),
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005694 ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005695 else
5696 EMSG2(_("E347: No more file \"%s\" found in path"),
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005697 ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005698 }
5699 }
5700
5701theend:
5702#ifdef AMIGA
5703 proc->pr_WindowPtr = save_winptr;
5704#endif
5705 return file_name;
5706}
5707
5708#endif /* FEAT_SEARCHPATH */
5709
5710/*
5711 * Change directory to "new_dir". If FEAT_SEARCHPATH is defined, search
5712 * 'cdpath' for relative directory names, otherwise just mch_chdir().
5713 */
5714 int
5715vim_chdir(new_dir)
5716 char_u *new_dir;
5717{
5718#ifndef FEAT_SEARCHPATH
5719 return mch_chdir((char *)new_dir);
5720#else
5721 char_u *dir_name;
5722 int r;
5723
5724 dir_name = find_directory_in_path(new_dir, (int)STRLEN(new_dir),
5725 FNAME_MESS, curbuf->b_ffname);
5726 if (dir_name == NULL)
5727 return -1;
5728 r = mch_chdir((char *)dir_name);
5729 vim_free(dir_name);
5730 return r;
5731#endif
5732}
5733
5734/*
Bram Moolenaarbbebc852005-07-18 21:47:53 +00005735 * Get user name from machine-specific function.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005736 * Returns the user name in "buf[len]".
Bram Moolenaarbbebc852005-07-18 21:47:53 +00005737 * Some systems are quite slow in obtaining the user name (Windows NT), thus
5738 * cache the result.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005739 * Returns OK or FAIL.
5740 */
5741 int
5742get_user_name(buf, len)
5743 char_u *buf;
5744 int len;
5745{
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005746 if (username == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005747 {
5748 if (mch_get_user_name(buf, len) == FAIL)
5749 return FAIL;
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005750 username = vim_strsave(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005751 }
5752 else
Bram Moolenaarbbebc852005-07-18 21:47:53 +00005753 vim_strncpy(buf, username, len - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005754 return OK;
5755}
5756
5757#ifndef HAVE_QSORT
5758/*
5759 * Our own qsort(), for systems that don't have it.
5760 * It's simple and slow. From the K&R C book.
5761 */
5762 void
5763qsort(base, elm_count, elm_size, cmp)
5764 void *base;
5765 size_t elm_count;
5766 size_t elm_size;
5767 int (*cmp) __ARGS((const void *, const void *));
5768{
5769 char_u *buf;
5770 char_u *p1;
5771 char_u *p2;
5772 int i, j;
5773 int gap;
5774
5775 buf = alloc((unsigned)elm_size);
5776 if (buf == NULL)
5777 return;
5778
5779 for (gap = elm_count / 2; gap > 0; gap /= 2)
5780 for (i = gap; i < elm_count; ++i)
5781 for (j = i - gap; j >= 0; j -= gap)
5782 {
5783 /* Compare the elements. */
5784 p1 = (char_u *)base + j * elm_size;
5785 p2 = (char_u *)base + (j + gap) * elm_size;
5786 if ((*cmp)((void *)p1, (void *)p2) <= 0)
5787 break;
Bram Moolenaar21160b92009-11-11 15:56:10 +00005788 /* Exchange the elements. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005789 mch_memmove(buf, p1, elm_size);
5790 mch_memmove(p1, p2, elm_size);
5791 mch_memmove(p2, buf, elm_size);
5792 }
5793
5794 vim_free(buf);
5795}
5796#endif
5797
Bram Moolenaar071d4272004-06-13 20:20:40 +00005798/*
5799 * Sort an array of strings.
5800 */
5801static int
5802#ifdef __BORLANDC__
5803_RTLENTRYF
5804#endif
5805sort_compare __ARGS((const void *s1, const void *s2));
5806
5807 static int
5808#ifdef __BORLANDC__
5809_RTLENTRYF
5810#endif
5811sort_compare(s1, s2)
5812 const void *s1;
5813 const void *s2;
5814{
5815 return STRCMP(*(char **)s1, *(char **)s2);
5816}
5817
5818 void
5819sort_strings(files, count)
5820 char_u **files;
5821 int count;
5822{
5823 qsort((void *)files, (size_t)count, sizeof(char_u *), sort_compare);
5824}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005825
5826#if !defined(NO_EXPANDPATH) || defined(PROTO)
5827/*
5828 * Compare path "p[]" to "q[]".
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005829 * If "maxlen" >= 0 compare "p[maxlen]" to "q[maxlen]"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005830 * Return value like strcmp(p, q), but consider path separators.
5831 */
5832 int
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005833pathcmp(p, q, maxlen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005834 const char *p, *q;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005835 int maxlen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005836{
5837 int i;
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02005838 int c1, c2;
Bram Moolenaar86b68352004-12-27 21:59:20 +00005839 const char *s = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005840
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02005841 for (i = 0; maxlen < 0 || i < maxlen; i += MB_PTR2LEN((char_u *)p + i))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005842 {
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02005843 c1 = PTR2CHAR((char_u *)p + i);
5844 c2 = PTR2CHAR((char_u *)q + i);
5845
Bram Moolenaar071d4272004-06-13 20:20:40 +00005846 /* End of "p": check if "q" also ends or just has a slash. */
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02005847 if (c1 == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005848 {
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02005849 if (c2 == NUL) /* full match */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005850 return 0;
5851 s = q;
5852 break;
5853 }
5854
5855 /* End of "q": check if "p" just has a slash. */
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02005856 if (c2 == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005857 {
5858 s = p;
5859 break;
5860 }
5861
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02005862 if ((p_fic ? MB_TOUPPER(c1) != MB_TOUPPER(c2) : c1 != c2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005863#ifdef BACKSLASH_IN_FILENAME
5864 /* consider '/' and '\\' to be equal */
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02005865 && !((c1 == '/' && c2 == '\\')
5866 || (c1 == '\\' && c2 == '/'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005867#endif
5868 )
5869 {
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02005870 if (vim_ispathsep(c1))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005871 return -1;
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02005872 if (vim_ispathsep(c2))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005873 return 1;
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02005874 return p_fic ? MB_TOUPPER(c1) - MB_TOUPPER(c2)
5875 : c1 - c2; /* no match */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005876 }
5877 }
Bram Moolenaar86b68352004-12-27 21:59:20 +00005878 if (s == NULL) /* "i" ran into "maxlen" */
5879 return 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005880
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02005881 c1 = PTR2CHAR((char_u *)s + i);
5882 c2 = PTR2CHAR((char_u *)s + i + MB_PTR2LEN((char_u *)s + i));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005883 /* ignore a trailing slash, but not "//" or ":/" */
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02005884 if (c2 == NUL
Bram Moolenaar86b68352004-12-27 21:59:20 +00005885 && i > 0
5886 && !after_pathsep((char_u *)s, (char_u *)s + i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005887#ifdef BACKSLASH_IN_FILENAME
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02005888 && (c1 == '/' || c1 == '\\')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005889#else
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02005890 && c1 == '/'
Bram Moolenaar071d4272004-06-13 20:20:40 +00005891#endif
Bram Moolenaar86b68352004-12-27 21:59:20 +00005892 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00005893 return 0; /* match with trailing slash */
5894 if (s == q)
5895 return -1; /* no match */
5896 return 1;
5897}
5898#endif
5899
Bram Moolenaar071d4272004-06-13 20:20:40 +00005900/*
5901 * The putenv() implementation below comes from the "screen" program.
5902 * Included with permission from Juergen Weigert.
5903 * See pty.c for the copyright notice.
5904 */
5905
5906/*
5907 * putenv -- put value into environment
5908 *
5909 * Usage: i = putenv (string)
5910 * int i;
5911 * char *string;
5912 *
5913 * where string is of the form <name>=<value>.
5914 * Putenv returns 0 normally, -1 on error (not enough core for malloc).
5915 *
5916 * Putenv may need to add a new name into the environment, or to
5917 * associate a value longer than the current value with a particular
5918 * name. So, to make life simpler, putenv() copies your entire
5919 * environment into the heap (i.e. malloc()) from the stack
5920 * (i.e. where it resides when your process is initiated) the first
5921 * time you call it.
5922 *
5923 * (history removed, not very interesting. See the "screen" sources.)
5924 */
5925
5926#if !defined(HAVE_SETENV) && !defined(HAVE_PUTENV)
5927
5928#define EXTRASIZE 5 /* increment to add to env. size */
5929
5930static int envsize = -1; /* current size of environment */
5931#ifndef MACOS_CLASSIC
5932extern
5933#endif
5934 char **environ; /* the global which is your env. */
5935
5936static int findenv __ARGS((char *name)); /* look for a name in the env. */
5937static int newenv __ARGS((void)); /* copy env. from stack to heap */
5938static int moreenv __ARGS((void)); /* incr. size of env. */
5939
5940 int
5941putenv(string)
5942 const char *string;
5943{
5944 int i;
5945 char *p;
5946
5947 if (envsize < 0)
5948 { /* first time putenv called */
5949 if (newenv() < 0) /* copy env. to heap */
5950 return -1;
5951 }
5952
5953 i = findenv((char *)string); /* look for name in environment */
5954
5955 if (i < 0)
5956 { /* name must be added */
5957 for (i = 0; environ[i]; i++);
5958 if (i >= (envsize - 1))
5959 { /* need new slot */
5960 if (moreenv() < 0)
5961 return -1;
5962 }
5963 p = (char *)alloc((unsigned)(strlen(string) + 1));
5964 if (p == NULL) /* not enough core */
5965 return -1;
5966 environ[i + 1] = 0; /* new end of env. */
5967 }
5968 else
5969 { /* name already in env. */
5970 p = vim_realloc(environ[i], strlen(string) + 1);
5971 if (p == NULL)
5972 return -1;
5973 }
5974 sprintf(p, "%s", string); /* copy into env. */
5975 environ[i] = p;
5976
5977 return 0;
5978}
5979
5980 static int
5981findenv(name)
5982 char *name;
5983{
5984 char *namechar, *envchar;
5985 int i, found;
5986
5987 found = 0;
5988 for (i = 0; environ[i] && !found; i++)
5989 {
5990 envchar = environ[i];
5991 namechar = name;
5992 while (*namechar && *namechar != '=' && (*namechar == *envchar))
5993 {
5994 namechar++;
5995 envchar++;
5996 }
5997 found = ((*namechar == '\0' || *namechar == '=') && *envchar == '=');
5998 }
5999 return found ? i - 1 : -1;
6000}
6001
6002 static int
6003newenv()
6004{
6005 char **env, *elem;
6006 int i, esize;
6007
6008#ifdef MACOS
6009 /* for Mac a new, empty environment is created */
6010 i = 0;
6011#else
6012 for (i = 0; environ[i]; i++)
6013 ;
6014#endif
6015 esize = i + EXTRASIZE + 1;
6016 env = (char **)alloc((unsigned)(esize * sizeof (elem)));
6017 if (env == NULL)
6018 return -1;
6019
6020#ifndef MACOS
6021 for (i = 0; environ[i]; i++)
6022 {
6023 elem = (char *)alloc((unsigned)(strlen(environ[i]) + 1));
6024 if (elem == NULL)
6025 return -1;
6026 env[i] = elem;
6027 strcpy(elem, environ[i]);
6028 }
6029#endif
6030
6031 env[i] = 0;
6032 environ = env;
6033 envsize = esize;
6034 return 0;
6035}
6036
6037 static int
6038moreenv()
6039{
6040 int esize;
6041 char **env;
6042
6043 esize = envsize + EXTRASIZE;
6044 env = (char **)vim_realloc((char *)environ, esize * sizeof (*env));
6045 if (env == 0)
6046 return -1;
6047 environ = env;
6048 envsize = esize;
6049 return 0;
6050}
6051
6052# ifdef USE_VIMPTY_GETENV
6053 char_u *
6054vimpty_getenv(string)
6055 const char_u *string;
6056{
6057 int i;
6058 char_u *p;
6059
6060 if (envsize < 0)
6061 return NULL;
6062
6063 i = findenv((char *)string);
6064
6065 if (i < 0)
6066 return NULL;
6067
6068 p = vim_strchr((char_u *)environ[i], '=');
6069 return (p + 1);
6070}
6071# endif
6072
6073#endif /* !defined(HAVE_SETENV) && !defined(HAVE_PUTENV) */
Bram Moolenaarc4a06d32005-06-07 21:04:49 +00006074
Bram Moolenaarc4956c82006-03-12 21:58:43 +00006075#if defined(FEAT_EVAL) || defined(FEAT_SPELL) || defined(PROTO)
Bram Moolenaarc4a06d32005-06-07 21:04:49 +00006076/*
6077 * Return 0 for not writable, 1 for writable file, 2 for a dir which we have
6078 * rights to write into.
6079 */
6080 int
6081filewritable(fname)
6082 char_u *fname;
6083{
6084 int retval = 0;
6085#if defined(UNIX) || defined(VMS)
6086 int perm = 0;
6087#endif
6088
6089#if defined(UNIX) || defined(VMS)
6090 perm = mch_getperm(fname);
6091#endif
6092#ifndef MACOS_CLASSIC /* TODO: get either mch_writable or mch_access */
6093 if (
6094# ifdef WIN3264
6095 mch_writable(fname) &&
6096# else
6097# if defined(UNIX) || defined(VMS)
6098 (perm & 0222) &&
6099# endif
6100# endif
6101 mch_access((char *)fname, W_OK) == 0
6102 )
6103#endif
6104 {
6105 ++retval;
6106 if (mch_isdir(fname))
6107 ++retval;
6108 }
6109 return retval;
6110}
6111#endif
Bram Moolenaar6bab4d12005-06-16 21:53:56 +00006112
6113/*
6114 * Print an error message with one or two "%s" and one or two string arguments.
6115 * This is not in message.c to avoid a warning for prototypes.
6116 */
6117 int
6118emsg3(s, a1, a2)
6119 char_u *s, *a1, *a2;
6120{
Bram Moolenaareb3593b2006-04-22 22:33:57 +00006121 if (emsg_not_now())
Bram Moolenaar6bab4d12005-06-16 21:53:56 +00006122 return TRUE; /* no error messages at the moment */
Bram Moolenaar6f192452007-11-08 19:49:02 +00006123#ifdef HAVE_STDARG_H
6124 vim_snprintf((char *)IObuff, IOSIZE, (char *)s, a1, a2);
6125#else
Bram Moolenaareb3593b2006-04-22 22:33:57 +00006126 vim_snprintf((char *)IObuff, IOSIZE, (char *)s, (long_u)a1, (long_u)a2);
Bram Moolenaar6f192452007-11-08 19:49:02 +00006127#endif
Bram Moolenaar6bab4d12005-06-16 21:53:56 +00006128 return emsg(IObuff);
6129}
6130
6131/*
6132 * Print an error message with one "%ld" and one long int argument.
6133 * This is not in message.c to avoid a warning for prototypes.
6134 */
6135 int
6136emsgn(s, n)
6137 char_u *s;
6138 long n;
6139{
Bram Moolenaareb3593b2006-04-22 22:33:57 +00006140 if (emsg_not_now())
Bram Moolenaar6bab4d12005-06-16 21:53:56 +00006141 return TRUE; /* no error messages at the moment */
6142 vim_snprintf((char *)IObuff, IOSIZE, (char *)s, n);
6143 return emsg(IObuff);
6144}
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006145
6146#if defined(FEAT_SPELL) || defined(FEAT_PERSISTENT_UNDO) || defined(PROTO)
6147/*
6148 * Read 2 bytes from "fd" and turn them into an int, MSB first.
6149 */
6150 int
6151get2c(fd)
6152 FILE *fd;
6153{
Bram Moolenaar9db58062010-05-29 20:33:07 +02006154 int n;
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006155
6156 n = getc(fd);
6157 n = (n << 8) + getc(fd);
6158 return n;
6159}
6160
6161/*
6162 * Read 3 bytes from "fd" and turn them into an int, MSB first.
6163 */
6164 int
6165get3c(fd)
6166 FILE *fd;
6167{
Bram Moolenaar9db58062010-05-29 20:33:07 +02006168 int n;
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006169
6170 n = getc(fd);
6171 n = (n << 8) + getc(fd);
6172 n = (n << 8) + getc(fd);
6173 return n;
6174}
6175
6176/*
6177 * Read 4 bytes from "fd" and turn them into an int, MSB first.
6178 */
6179 int
6180get4c(fd)
6181 FILE *fd;
6182{
Bram Moolenaar95235e62013-09-08 16:07:07 +02006183 /* Use unsigned rather than int otherwise result is undefined
6184 * when left-shift sets the MSB. */
6185 unsigned n;
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006186
Bram Moolenaar95235e62013-09-08 16:07:07 +02006187 n = (unsigned)getc(fd);
6188 n = (n << 8) + (unsigned)getc(fd);
6189 n = (n << 8) + (unsigned)getc(fd);
6190 n = (n << 8) + (unsigned)getc(fd);
6191 return (int)n;
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006192}
6193
6194/*
6195 * Read 8 bytes from "fd" and turn them into a time_t, MSB first.
6196 */
6197 time_t
6198get8ctime(fd)
6199 FILE *fd;
6200{
6201 time_t n = 0;
6202 int i;
6203
6204 for (i = 0; i < 8; ++i)
6205 n = (n << 8) + getc(fd);
6206 return n;
6207}
6208
6209/*
6210 * Read a string of length "cnt" from "fd" into allocated memory.
6211 * Returns NULL when out of memory or unable to read that many bytes.
6212 */
6213 char_u *
6214read_string(fd, cnt)
6215 FILE *fd;
6216 int cnt;
6217{
6218 char_u *str;
6219 int i;
6220 int c;
6221
6222 /* allocate memory */
6223 str = alloc((unsigned)cnt + 1);
6224 if (str != NULL)
6225 {
6226 /* Read the string. Quit when running into the EOF. */
6227 for (i = 0; i < cnt; ++i)
6228 {
6229 c = getc(fd);
6230 if (c == EOF)
6231 {
6232 vim_free(str);
6233 return NULL;
6234 }
6235 str[i] = c;
6236 }
6237 str[i] = NUL;
6238 }
6239 return str;
6240}
6241
6242/*
6243 * Write a number to file "fd", MSB first, in "len" bytes.
6244 */
6245 int
6246put_bytes(fd, nr, len)
6247 FILE *fd;
6248 long_u nr;
6249 int len;
6250{
6251 int i;
6252
6253 for (i = len - 1; i >= 0; --i)
6254 if (putc((int)(nr >> (i * 8)), fd) == EOF)
6255 return FAIL;
6256 return OK;
6257}
6258
6259#ifdef _MSC_VER
6260# if (_MSC_VER <= 1200)
6261/* This line is required for VC6 without the service pack. Also see the
6262 * matching #pragma below. */
6263 # pragma optimize("", off)
6264# endif
6265#endif
6266
6267/*
6268 * Write time_t to file "fd" in 8 bytes.
6269 */
6270 void
6271put_time(fd, the_time)
6272 FILE *fd;
6273 time_t the_time;
6274{
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02006275 char_u buf[8];
6276
6277 time_to_bytes(the_time, buf);
6278 fwrite(buf, (size_t)8, (size_t)1, fd);
6279}
6280
6281/*
6282 * Write time_t to "buf[8]".
6283 */
6284 void
6285time_to_bytes(the_time, buf)
6286 time_t the_time;
6287 char_u *buf;
6288{
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006289 int c;
6290 int i;
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02006291 int bi = 0;
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006292 time_t wtime = the_time;
6293
6294 /* time_t can be up to 8 bytes in size, more than long_u, thus we
6295 * can't use put_bytes() here.
6296 * Another problem is that ">>" may do an arithmetic shift that keeps the
Bram Moolenaar644fdff2010-05-30 13:26:21 +02006297 * sign. This happens for large values of wtime. A cast to long_u may
6298 * truncate if time_t is 8 bytes. So only use a cast when it is 4 bytes,
6299 * it's safe to assume that long_u is 4 bytes or more and when using 8
6300 * bytes the top bit won't be set. */
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006301 for (i = 7; i >= 0; --i)
6302 {
6303 if (i + 1 > (int)sizeof(time_t))
6304 /* ">>" doesn't work well when shifting more bits than avail */
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02006305 buf[bi++] = 0;
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006306 else
6307 {
Bram Moolenaar644fdff2010-05-30 13:26:21 +02006308#if defined(SIZEOF_TIME_T) && SIZEOF_TIME_T > 4
Bram Moolenaarbbd6afe2010-06-02 20:32:23 +02006309 c = (int)(wtime >> (i * 8));
Bram Moolenaar644fdff2010-05-30 13:26:21 +02006310#else
Bram Moolenaarbbd6afe2010-06-02 20:32:23 +02006311 c = (int)((long_u)wtime >> (i * 8));
Bram Moolenaar644fdff2010-05-30 13:26:21 +02006312#endif
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02006313 buf[bi++] = c;
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006314 }
6315 }
6316}
6317
6318#ifdef _MSC_VER
6319# if (_MSC_VER <= 1200)
6320 # pragma optimize("", on)
6321# endif
6322#endif
6323
6324#endif
Bram Moolenaar10b7b392012-01-10 16:28:45 +01006325
6326#if (defined(FEAT_MBYTE) && defined(FEAT_QUICKFIX)) \
6327 || defined(FEAT_SPELL) || defined(PROTO)
6328/*
6329 * Return TRUE if string "s" contains a non-ASCII character (128 or higher).
6330 * When "s" is NULL FALSE is returned.
6331 */
6332 int
6333has_non_ascii(s)
6334 char_u *s;
6335{
6336 char_u *p;
6337
6338 if (s != NULL)
6339 for (p = s; *p != NUL; ++p)
6340 if (*p >= 128)
6341 return TRUE;
6342 return FALSE;
6343}
6344#endif