blob: f075639b0d8dfa72a0d2a6ecc6fd7b603585eefc [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
34# ifdef FEAT_VISUAL
35 || ((ve_flags & VE_BLOCK) && VIsual_active && VIsual_mode == Ctrl_V)
36# endif
37 || ((ve_flags & VE_INSERT) && (State & INSERT)));
38}
39
40/*
41 * Get the screen position of the cursor.
42 */
43 int
44getviscol()
45{
46 colnr_T x;
47
48 getvvcol(curwin, &curwin->w_cursor, &x, NULL, NULL);
49 return (int)x;
50}
51
52/*
53 * Get the screen position of character col with a coladd in the cursor line.
54 */
55 int
56getviscol2(col, coladd)
57 colnr_T col;
58 colnr_T coladd;
59{
60 colnr_T x;
61 pos_T pos;
62
63 pos.lnum = curwin->w_cursor.lnum;
64 pos.col = col;
65 pos.coladd = coladd;
66 getvvcol(curwin, &pos, &x, NULL, NULL);
67 return (int)x;
68}
69
70/*
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +000071 * Go to column "wcol", and add/insert white space as necessary to get the
Bram Moolenaar071d4272004-06-13 20:20:40 +000072 * cursor in that column.
73 * The caller must have saved the cursor line for undo!
74 */
75 int
76coladvance_force(wcol)
77 colnr_T wcol;
78{
79 int rc = coladvance2(&curwin->w_cursor, TRUE, FALSE, wcol);
80
81 if (wcol == MAXCOL)
82 curwin->w_valid &= ~VALID_VIRTCOL;
83 else
84 {
85 /* Virtcol is valid */
86 curwin->w_valid |= VALID_VIRTCOL;
87 curwin->w_virtcol = wcol;
88 }
89 return rc;
90}
91#endif
92
93/*
94 * Try to advance the Cursor to the specified screen column.
95 * If virtual editing: fine tune the cursor position.
96 * Note that all virtual positions off the end of a line should share
97 * a curwin->w_cursor.col value (n.b. this is equal to STRLEN(line)),
98 * beginning at coladd 0.
99 *
100 * return OK if desired column is reached, FAIL if not
101 */
102 int
103coladvance(wcol)
104 colnr_T wcol;
105{
106 int rc = getvpos(&curwin->w_cursor, wcol);
107
108 if (wcol == MAXCOL || rc == FAIL)
109 curwin->w_valid &= ~VALID_VIRTCOL;
Bram Moolenaardfccaf02004-12-31 20:56:11 +0000110 else if (*ml_get_cursor() != TAB)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000111 {
Bram Moolenaardfccaf02004-12-31 20:56:11 +0000112 /* Virtcol is valid when not on a TAB */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000113 curwin->w_valid |= VALID_VIRTCOL;
114 curwin->w_virtcol = wcol;
115 }
116 return rc;
117}
118
119/*
120 * Return in "pos" the position of the cursor advanced to screen column "wcol".
121 * return OK if desired column is reached, FAIL if not
122 */
123 int
124getvpos(pos, wcol)
125 pos_T *pos;
126 colnr_T wcol;
127{
128#ifdef FEAT_VIRTUALEDIT
129 return coladvance2(pos, FALSE, virtual_active(), wcol);
130}
131
132 static int
133coladvance2(pos, addspaces, finetune, wcol)
134 pos_T *pos;
135 int addspaces; /* change the text to achieve our goal? */
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +0000136 int finetune; /* change char offset for the exact column */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000137 colnr_T wcol; /* column to move to */
138{
139#endif
140 int idx;
141 char_u *ptr;
142 char_u *line;
143 colnr_T col = 0;
144 int csize = 0;
145 int one_more;
146#ifdef FEAT_LINEBREAK
147 int head = 0;
148#endif
149
Bram Moolenaarefd2bf12006-03-16 21:41:35 +0000150 one_more = (State & INSERT)
151 || restart_edit != NUL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000152#ifdef FEAT_VISUAL
Bram Moolenaarefd2bf12006-03-16 21:41:35 +0000153 || (VIsual_active && *p_sel != 'o')
Bram Moolenaar071d4272004-06-13 20:20:40 +0000154#endif
Bram Moolenaarefd2bf12006-03-16 21:41:35 +0000155#ifdef FEAT_VIRTUALEDIT
Bram Moolenaar97b2ad32006-03-18 21:40:56 +0000156 || ((ve_flags & VE_ONEMORE) && wcol < MAXCOL)
Bram Moolenaarefd2bf12006-03-16 21:41:35 +0000157#endif
158 ;
Bram Moolenaara1381de2009-11-03 15:44:21 +0000159 line = ml_get_buf(curbuf, pos->lnum, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000160
161 if (wcol >= MAXCOL)
162 {
163 idx = (int)STRLEN(line) - 1 + one_more;
164 col = wcol;
165
166#ifdef FEAT_VIRTUALEDIT
167 if ((addspaces || finetune) && !VIsual_active)
168 {
169 curwin->w_curswant = linetabsize(line) + one_more;
170 if (curwin->w_curswant > 0)
171 --curwin->w_curswant;
172 }
173#endif
174 }
175 else
176 {
177#ifdef FEAT_VIRTUALEDIT
178 int width = W_WIDTH(curwin) - win_col_off(curwin);
179
Bram Moolenaarebefac62005-12-28 22:39:57 +0000180 if (finetune
Bram Moolenaar071d4272004-06-13 20:20:40 +0000181 && curwin->w_p_wrap
182# ifdef FEAT_VERTSPLIT
183 && curwin->w_width != 0
184# endif
185 && wcol >= (colnr_T)width)
186 {
187 csize = linetabsize(line);
188 if (csize > 0)
189 csize--;
190
Bram Moolenaarebefac62005-12-28 22:39:57 +0000191 if (wcol / width > (colnr_T)csize / width
192 && ((State & INSERT) == 0 || (int)wcol > csize + 1))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000193 {
194 /* In case of line wrapping don't move the cursor beyond the
Bram Moolenaarebefac62005-12-28 22:39:57 +0000195 * right screen edge. In Insert mode allow going just beyond
196 * the last character (like what happens when typing and
197 * reaching the right window edge). */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000198 wcol = (csize / width + 1) * width - 1;
199 }
200 }
201#endif
202
Bram Moolenaar071d4272004-06-13 20:20:40 +0000203 ptr = line;
204 while (col <= wcol && *ptr != NUL)
205 {
206 /* Count a tab for what it's worth (if list mode not on) */
207#ifdef FEAT_LINEBREAK
208 csize = win_lbr_chartabsize(curwin, ptr, col, &head);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000209 mb_ptr_adv(ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000210#else
211 csize = lbr_chartabsize_adv(&ptr, col);
212#endif
213 col += csize;
214 }
215 idx = (int)(ptr - line);
216 /*
217 * Handle all the special cases. The virtual_active() check
218 * is needed to ensure that a virtual position off the end of
219 * a line has the correct indexing. The one_more comparison
220 * replaces an explicit add of one_more later on.
221 */
222 if (col > wcol || (!virtual_active() && one_more == 0))
223 {
224 idx -= 1;
225# ifdef FEAT_LINEBREAK
226 /* Don't count the chars from 'showbreak'. */
227 csize -= head;
228# endif
229 col -= csize;
230 }
231
232#ifdef FEAT_VIRTUALEDIT
233 if (virtual_active()
234 && addspaces
235 && ((col != wcol && col != wcol + 1) || csize > 1))
236 {
237 /* 'virtualedit' is set: The difference between wcol and col is
238 * filled with spaces. */
239
240 if (line[idx] == NUL)
241 {
242 /* Append spaces */
243 int correct = wcol - col;
244 char_u *newline = alloc(idx + correct + 1);
245 int t;
246
247 if (newline == NULL)
248 return FAIL;
249
250 for (t = 0; t < idx; ++t)
251 newline[t] = line[t];
252
253 for (t = 0; t < correct; ++t)
254 newline[t + idx] = ' ';
255
256 newline[idx + correct] = NUL;
257
258 ml_replace(pos->lnum, newline, FALSE);
259 changed_bytes(pos->lnum, (colnr_T)idx);
260 idx += correct;
261 col = wcol;
262 }
263 else
264 {
265 /* Break a tab */
266 int linelen = (int)STRLEN(line);
267 int correct = wcol - col - csize + 1; /* negative!! */
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000268 char_u *newline;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000269 int t, s = 0;
270 int v;
271
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000272 if (-correct > csize)
273 return FAIL;
274
275 newline = alloc(linelen + csize);
276 if (newline == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000277 return FAIL;
278
279 for (t = 0; t < linelen; t++)
280 {
281 if (t != idx)
282 newline[s++] = line[t];
283 else
284 for (v = 0; v < csize; v++)
285 newline[s++] = ' ';
286 }
287
288 newline[linelen + csize - 1] = NUL;
289
290 ml_replace(pos->lnum, newline, FALSE);
291 changed_bytes(pos->lnum, idx);
292 idx += (csize - 1 + correct);
293 col += correct;
294 }
295 }
296#endif
297 }
298
299 if (idx < 0)
300 pos->col = 0;
301 else
302 pos->col = idx;
303
304#ifdef FEAT_VIRTUALEDIT
305 pos->coladd = 0;
306
307 if (finetune)
308 {
309 if (wcol == MAXCOL)
310 {
311 /* The width of the last character is used to set coladd. */
312 if (!one_more)
313 {
314 colnr_T scol, ecol;
315
316 getvcol(curwin, pos, &scol, NULL, &ecol);
317 pos->coladd = ecol - scol;
318 }
319 }
320 else
321 {
322 int b = (int)wcol - (int)col;
323
324 /* The difference between wcol and col is used to set coladd. */
325 if (b > 0 && b < (MAXCOL - 2 * W_WIDTH(curwin)))
326 pos->coladd = b;
327
328 col += b;
329 }
330 }
331#endif
332
333#ifdef FEAT_MBYTE
Bram Moolenaara1381de2009-11-03 15:44:21 +0000334 /* prevent from moving onto a trail byte */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000335 if (has_mbyte)
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200336 mb_adjustpos(curbuf, pos);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000337#endif
338
339 if (col < wcol)
340 return FAIL;
341 return OK;
342}
343
344/*
Bram Moolenaar446cb832008-06-24 21:56:24 +0000345 * Increment the cursor position. See inc() for return values.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000346 */
347 int
348inc_cursor()
349{
350 return inc(&curwin->w_cursor);
351}
352
Bram Moolenaar446cb832008-06-24 21:56:24 +0000353/*
354 * Increment the line pointer "lp" crossing line boundaries as necessary.
355 * Return 1 when going to the next line.
356 * Return 2 when moving forward onto a NUL at the end of the line).
357 * Return -1 when at the end of file.
358 * Return 0 otherwise.
359 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000360 int
361inc(lp)
362 pos_T *lp;
363{
364 char_u *p = ml_get_pos(lp);
365
366 if (*p != NUL) /* still within line, move to next char (may be NUL) */
367 {
368#ifdef FEAT_MBYTE
369 if (has_mbyte)
370 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000371 int l = (*mb_ptr2len)(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000372
373 lp->col += l;
374 return ((p[l] != NUL) ? 0 : 2);
375 }
376#endif
377 lp->col++;
378#ifdef FEAT_VIRTUALEDIT
379 lp->coladd = 0;
380#endif
381 return ((p[1] != NUL) ? 0 : 2);
382 }
383 if (lp->lnum != curbuf->b_ml.ml_line_count) /* there is a next line */
384 {
385 lp->col = 0;
386 lp->lnum++;
387#ifdef FEAT_VIRTUALEDIT
388 lp->coladd = 0;
389#endif
390 return 1;
391 }
392 return -1;
393}
394
395/*
396 * incl(lp): same as inc(), but skip the NUL at the end of non-empty lines
397 */
398 int
399incl(lp)
400 pos_T *lp;
401{
402 int r;
403
404 if ((r = inc(lp)) >= 1 && lp->col)
405 r = inc(lp);
406 return r;
407}
408
409/*
410 * dec(p)
411 *
412 * Decrement the line pointer 'p' crossing line boundaries as necessary.
413 * Return 1 when crossing a line, -1 when at start of file, 0 otherwise.
414 */
415 int
416dec_cursor()
417{
418 return dec(&curwin->w_cursor);
419}
420
421 int
422dec(lp)
423 pos_T *lp;
424{
425 char_u *p;
426
427#ifdef FEAT_VIRTUALEDIT
428 lp->coladd = 0;
429#endif
430 if (lp->col > 0) /* still within line */
431 {
432 lp->col--;
433#ifdef FEAT_MBYTE
434 if (has_mbyte)
435 {
436 p = ml_get(lp->lnum);
437 lp->col -= (*mb_head_off)(p, p + lp->col);
438 }
439#endif
440 return 0;
441 }
442 if (lp->lnum > 1) /* there is a prior line */
443 {
444 lp->lnum--;
445 p = ml_get(lp->lnum);
446 lp->col = (colnr_T)STRLEN(p);
447#ifdef FEAT_MBYTE
448 if (has_mbyte)
449 lp->col -= (*mb_head_off)(p, p + lp->col);
450#endif
451 return 1;
452 }
453 return -1; /* at start of file */
454}
455
456/*
457 * decl(lp): same as dec(), but skip the NUL at the end of non-empty lines
458 */
459 int
460decl(lp)
461 pos_T *lp;
462{
463 int r;
464
465 if ((r = dec(lp)) == 1 && lp->col)
466 r = dec(lp);
467 return r;
468}
469
470/*
Bram Moolenaar64486672010-05-16 15:46:46 +0200471 * Get the line number relative to the current cursor position, i.e. the
472 * difference between line number and cursor position. Only look for lines that
473 * can be visible, folded lines don't count.
474 */
475 linenr_T
476get_cursor_rel_lnum(wp, lnum)
477 win_T *wp;
478 linenr_T lnum; /* line number to get the result for */
479{
480 linenr_T cursor = wp->w_cursor.lnum;
481 linenr_T retval = 0;
482
483#ifdef FEAT_FOLDING
484 if (hasAnyFolding(wp))
485 {
486 if (lnum > cursor)
487 {
488 while (lnum > cursor)
489 {
490 (void)hasFolding(lnum, &lnum, NULL);
491 /* if lnum and cursor are in the same fold,
492 * now lnum <= cursor */
493 if (lnum > cursor)
494 retval++;
495 lnum--;
496 }
497 }
498 else if (lnum < cursor)
499 {
500 while (lnum < cursor)
501 {
502 (void)hasFolding(lnum, NULL, &lnum);
503 /* if lnum and cursor are in the same fold,
504 * now lnum >= cursor */
505 if (lnum < cursor)
506 retval--;
507 lnum++;
508 }
509 }
510 /* else if (lnum == cursor)
511 * retval = 0;
512 */
513 }
514 else
515#endif
516 retval = lnum - cursor;
517
518 return retval;
519}
520
521/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000522 * Make sure curwin->w_cursor.lnum is valid.
523 */
524 void
525check_cursor_lnum()
526{
527 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
528 {
529#ifdef FEAT_FOLDING
530 /* If there is a closed fold at the end of the file, put the cursor in
531 * its first line. Otherwise in the last line. */
532 if (!hasFolding(curbuf->b_ml.ml_line_count,
533 &curwin->w_cursor.lnum, NULL))
534#endif
535 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
536 }
537 if (curwin->w_cursor.lnum <= 0)
538 curwin->w_cursor.lnum = 1;
539}
540
541/*
542 * Make sure curwin->w_cursor.col is valid.
543 */
544 void
545check_cursor_col()
546{
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200547 check_cursor_col_win(curwin);
548}
549
550/*
551 * Make sure win->w_cursor.col is valid.
552 */
553 void
554check_cursor_col_win(win)
555 win_T *win;
556{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000557 colnr_T len;
558#ifdef FEAT_VIRTUALEDIT
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200559 colnr_T oldcol = win->w_cursor.col;
560 colnr_T oldcoladd = win->w_cursor.col + win->w_cursor.coladd;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000561#endif
562
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200563 len = (colnr_T)STRLEN(ml_get_buf(win->w_buffer, win->w_cursor.lnum, FALSE));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000564 if (len == 0)
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200565 win->w_cursor.col = 0;
566 else if (win->w_cursor.col >= len)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000567 {
Bram Moolenaar33f54432008-01-04 20:25:44 +0000568 /* Allow cursor past end-of-line when:
569 * - in Insert mode or restarting Insert mode
570 * - in Visual mode and 'selection' isn't "old"
571 * - 'virtualedit' is set */
Bram Moolenaarebefac62005-12-28 22:39:57 +0000572 if ((State & INSERT) || restart_edit
Bram Moolenaar071d4272004-06-13 20:20:40 +0000573#ifdef FEAT_VISUAL
574 || (VIsual_active && *p_sel != 'o')
575#endif
Bram Moolenaar33f54432008-01-04 20:25:44 +0000576#ifdef FEAT_VIRTUALEDIT
577 || (ve_flags & VE_ONEMORE)
578#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000579 || virtual_active())
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200580 win->w_cursor.col = len;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000581 else
Bram Moolenaar87c19962007-04-26 08:54:21 +0000582 {
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200583 win->w_cursor.col = len - 1;
Bram Moolenaar87c19962007-04-26 08:54:21 +0000584#ifdef FEAT_MBYTE
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200585 /* Move the cursor to the head byte. */
Bram Moolenaar87c19962007-04-26 08:54:21 +0000586 if (has_mbyte)
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200587 mb_adjustpos(win->w_buffer, &win->w_cursor);
Bram Moolenaar87c19962007-04-26 08:54:21 +0000588#endif
589 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000590 }
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200591 else if (win->w_cursor.col < 0)
592 win->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000593
594#ifdef FEAT_VIRTUALEDIT
595 /* If virtual editing is on, we can leave the cursor on the old position,
596 * only we must set it to virtual. But don't do it when at the end of the
597 * line. */
598 if (oldcol == MAXCOL)
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200599 win->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000600 else if (ve_flags == VE_ALL)
Bram Moolenaar552c8a52009-03-11 16:29:20 +0000601 {
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200602 if (oldcoladd > win->w_cursor.col)
603 win->w_cursor.coladd = oldcoladd - win->w_cursor.col;
Bram Moolenaar552c8a52009-03-11 16:29:20 +0000604 else
605 /* avoid weird number when there is a miscalculation or overflow */
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200606 win->w_cursor.coladd = 0;
Bram Moolenaar552c8a52009-03-11 16:29:20 +0000607 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000608#endif
609}
610
611/*
612 * make sure curwin->w_cursor in on a valid character
613 */
614 void
615check_cursor()
616{
617 check_cursor_lnum();
618 check_cursor_col();
619}
620
621#if defined(FEAT_TEXTOBJ) || defined(PROTO)
622/*
623 * Make sure curwin->w_cursor is not on the NUL at the end of the line.
624 * Allow it when in Visual mode and 'selection' is not "old".
625 */
626 void
627adjust_cursor_col()
628{
629 if (curwin->w_cursor.col > 0
630# ifdef FEAT_VISUAL
631 && (!VIsual_active || *p_sel == 'o')
632# endif
633 && gchar_cursor() == NUL)
634 --curwin->w_cursor.col;
635}
636#endif
637
638/*
639 * When curwin->w_leftcol has changed, adjust the cursor position.
640 * Return TRUE if the cursor was moved.
641 */
642 int
643leftcol_changed()
644{
645 long lastcol;
646 colnr_T s, e;
647 int retval = FALSE;
648
649 changed_cline_bef_curs();
650 lastcol = curwin->w_leftcol + W_WIDTH(curwin) - curwin_col_off() - 1;
651 validate_virtcol();
652
653 /*
654 * If the cursor is right or left of the screen, move it to last or first
655 * character.
656 */
657 if (curwin->w_virtcol > (colnr_T)(lastcol - p_siso))
658 {
659 retval = TRUE;
660 coladvance((colnr_T)(lastcol - p_siso));
661 }
662 else if (curwin->w_virtcol < curwin->w_leftcol + p_siso)
663 {
664 retval = TRUE;
665 (void)coladvance((colnr_T)(curwin->w_leftcol + p_siso));
666 }
667
668 /*
669 * If the start of the character under the cursor is not on the screen,
670 * advance the cursor one more char. If this fails (last char of the
671 * line) adjust the scrolling.
672 */
673 getvvcol(curwin, &curwin->w_cursor, &s, NULL, &e);
674 if (e > (colnr_T)lastcol)
675 {
676 retval = TRUE;
677 coladvance(s - 1);
678 }
679 else if (s < curwin->w_leftcol)
680 {
681 retval = TRUE;
682 if (coladvance(e + 1) == FAIL) /* there isn't another character */
683 {
684 curwin->w_leftcol = s; /* adjust w_leftcol instead */
685 changed_cline_bef_curs();
686 }
687 }
688
689 if (retval)
690 curwin->w_set_curswant = TRUE;
691 redraw_later(NOT_VALID);
692 return retval;
693}
694
695/**********************************************************************
696 * Various routines dealing with allocation and deallocation of memory.
697 */
698
699#if defined(MEM_PROFILE) || defined(PROTO)
700
701# define MEM_SIZES 8200
702static long_u mem_allocs[MEM_SIZES];
703static long_u mem_frees[MEM_SIZES];
704static long_u mem_allocated;
705static long_u mem_freed;
706static long_u mem_peak;
707static long_u num_alloc;
708static long_u num_freed;
709
710static void mem_pre_alloc_s __ARGS((size_t *sizep));
711static void mem_pre_alloc_l __ARGS((long_u *sizep));
712static void mem_post_alloc __ARGS((void **pp, size_t size));
713static void mem_pre_free __ARGS((void **pp));
714
715 static void
716mem_pre_alloc_s(sizep)
717 size_t *sizep;
718{
719 *sizep += sizeof(size_t);
720}
721
722 static void
723mem_pre_alloc_l(sizep)
724 long_u *sizep;
725{
726 *sizep += sizeof(size_t);
727}
728
729 static void
730mem_post_alloc(pp, size)
731 void **pp;
732 size_t size;
733{
734 if (*pp == NULL)
735 return;
736 size -= sizeof(size_t);
737 *(long_u *)*pp = size;
738 if (size <= MEM_SIZES-1)
739 mem_allocs[size-1]++;
740 else
741 mem_allocs[MEM_SIZES-1]++;
742 mem_allocated += size;
743 if (mem_allocated - mem_freed > mem_peak)
744 mem_peak = mem_allocated - mem_freed;
745 num_alloc++;
746 *pp = (void *)((char *)*pp + sizeof(size_t));
747}
748
749 static void
750mem_pre_free(pp)
751 void **pp;
752{
753 long_u size;
754
755 *pp = (void *)((char *)*pp - sizeof(size_t));
756 size = *(size_t *)*pp;
757 if (size <= MEM_SIZES-1)
758 mem_frees[size-1]++;
759 else
760 mem_frees[MEM_SIZES-1]++;
761 mem_freed += size;
762 num_freed++;
763}
764
765/*
766 * called on exit via atexit()
767 */
768 void
769vim_mem_profile_dump()
770{
771 int i, j;
772
773 printf("\r\n");
774 j = 0;
775 for (i = 0; i < MEM_SIZES - 1; i++)
776 {
777 if (mem_allocs[i] || mem_frees[i])
778 {
779 if (mem_frees[i] > mem_allocs[i])
780 printf("\r\n%s", _("ERROR: "));
781 printf("[%4d / %4lu-%-4lu] ", i + 1, mem_allocs[i], mem_frees[i]);
782 j++;
783 if (j > 3)
784 {
785 j = 0;
786 printf("\r\n");
787 }
788 }
789 }
790
791 i = MEM_SIZES - 1;
792 if (mem_allocs[i])
793 {
794 printf("\r\n");
795 if (mem_frees[i] > mem_allocs[i])
Bram Moolenaar2f1e0502010-08-13 11:18:02 +0200796 puts(_("ERROR: "));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000797 printf("[>%d / %4lu-%-4lu]", i, mem_allocs[i], mem_frees[i]);
798 }
799
800 printf(_("\n[bytes] total alloc-freed %lu-%lu, in use %lu, peak use %lu\n"),
801 mem_allocated, mem_freed, mem_allocated - mem_freed, mem_peak);
802 printf(_("[calls] total re/malloc()'s %lu, total free()'s %lu\n\n"),
803 num_alloc, num_freed);
804}
805
806#endif /* MEM_PROFILE */
807
808/*
809 * Some memory is reserved for error messages and for being able to
810 * call mf_release_all(), which needs some memory for mf_trans_add().
811 */
812#if defined(MSDOS) && !defined(DJGPP)
813# define SMALL_MEM
814# define KEEP_ROOM 8192L
815#else
816# define KEEP_ROOM (2 * 8192L)
817#endif
Bram Moolenaar11b73d62012-06-29 15:51:30 +0200818#define KEEP_ROOM_KB (KEEP_ROOM / 1024L)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000819
820/*
Bram Moolenaar2a329742008-04-01 12:53:43 +0000821 * Note: if unsigned is 16 bits we can only allocate up to 64K with alloc().
Bram Moolenaar071d4272004-06-13 20:20:40 +0000822 * Use lalloc for larger blocks.
823 */
824 char_u *
825alloc(size)
826 unsigned size;
827{
828 return (lalloc((long_u)size, TRUE));
829}
830
831/*
832 * Allocate memory and set all bytes to zero.
833 */
834 char_u *
835alloc_clear(size)
836 unsigned size;
837{
838 char_u *p;
839
Bram Moolenaar2f1e0502010-08-13 11:18:02 +0200840 p = lalloc((long_u)size, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000841 if (p != NULL)
842 (void)vim_memset(p, 0, (size_t)size);
843 return p;
844}
845
846/*
847 * alloc() with check for maximum line length
848 */
849 char_u *
850alloc_check(size)
851 unsigned size;
852{
853#if !defined(UNIX) && !defined(__EMX__)
854 if (sizeof(int) == 2 && size > 0x7fff)
855 {
856 /* Don't hide this message */
857 emsg_silent = 0;
858 EMSG(_("E340: Line is becoming too long"));
859 return NULL;
860 }
861#endif
862 return (lalloc((long_u)size, TRUE));
863}
864
865/*
866 * Allocate memory like lalloc() and set all bytes to zero.
867 */
868 char_u *
869lalloc_clear(size, message)
870 long_u size;
871 int message;
872{
873 char_u *p;
874
875 p = (lalloc(size, message));
876 if (p != NULL)
877 (void)vim_memset(p, 0, (size_t)size);
878 return p;
879}
880
881/*
882 * Low level memory allocation function.
883 * This is used often, KEEP IT FAST!
884 */
885 char_u *
886lalloc(size, message)
887 long_u size;
888 int message;
889{
890 char_u *p; /* pointer to new storage space */
891 static int releasing = FALSE; /* don't do mf_release_all() recursive */
892 int try_again;
893#if defined(HAVE_AVAIL_MEM) && !defined(SMALL_MEM)
894 static long_u allocated = 0; /* allocated since last avail check */
895#endif
896
897 /* Safety check for allocating zero bytes */
898 if (size == 0)
899 {
900 /* Don't hide this message */
901 emsg_silent = 0;
902 EMSGN(_("E341: Internal error: lalloc(%ld, )"), size);
903 return NULL;
904 }
905
906#ifdef MEM_PROFILE
907 mem_pre_alloc_l(&size);
908#endif
909
910#if defined(MSDOS) && !defined(DJGPP)
911 if (size >= 0xfff0) /* in MSDOS we can't deal with >64K blocks */
912 p = NULL;
913 else
914#endif
915
916 /*
917 * Loop when out of memory: Try to release some memfile blocks and
918 * if some blocks are released call malloc again.
919 */
920 for (;;)
921 {
922 /*
923 * Handle three kind of systems:
924 * 1. No check for available memory: Just return.
925 * 2. Slow check for available memory: call mch_avail_mem() after
926 * allocating KEEP_ROOM amount of memory.
927 * 3. Strict check for available memory: call mch_avail_mem()
928 */
929 if ((p = (char_u *)malloc((size_t)size)) != NULL)
930 {
931#ifndef HAVE_AVAIL_MEM
932 /* 1. No check for available memory: Just return. */
933 goto theend;
934#else
935# ifndef SMALL_MEM
936 /* 2. Slow check for available memory: call mch_avail_mem() after
937 * allocating (KEEP_ROOM / 2) amount of memory. */
938 allocated += size;
939 if (allocated < KEEP_ROOM / 2)
940 goto theend;
941 allocated = 0;
942# endif
943 /* 3. check for available memory: call mch_avail_mem() */
Bram Moolenaar11b73d62012-06-29 15:51:30 +0200944 if (mch_avail_mem(TRUE) < KEEP_ROOM_KB && !releasing)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000945 {
Bram Moolenaar5a221812008-11-12 12:08:45 +0000946 free((char *)p); /* System is low... no go! */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000947 p = NULL;
948 }
949 else
950 goto theend;
951#endif
952 }
953 /*
954 * Remember that mf_release_all() is being called to avoid an endless
955 * loop, because mf_release_all() may call alloc() recursively.
956 */
957 if (releasing)
958 break;
959 releasing = TRUE;
Bram Moolenaar661b1822005-07-28 22:36:45 +0000960
961 clear_sb_text(); /* free any scrollback text */
962 try_again = mf_release_all(); /* release as many blocks as possible */
Bram Moolenaar39a58ca2005-06-27 22:42:44 +0000963#ifdef FEAT_EVAL
Bram Moolenaar661b1822005-07-28 22:36:45 +0000964 try_again |= garbage_collect(); /* cleanup recursive lists/dicts */
Bram Moolenaar39a58ca2005-06-27 22:42:44 +0000965#endif
Bram Moolenaar661b1822005-07-28 22:36:45 +0000966
Bram Moolenaar071d4272004-06-13 20:20:40 +0000967 releasing = FALSE;
968 if (!try_again)
969 break;
970 }
971
972 if (message && p == NULL)
973 do_outofmem_msg(size);
974
975theend:
976#ifdef MEM_PROFILE
977 mem_post_alloc((void **)&p, (size_t)size);
978#endif
979 return p;
980}
981
982#if defined(MEM_PROFILE) || defined(PROTO)
983/*
984 * realloc() with memory profiling.
985 */
986 void *
987mem_realloc(ptr, size)
988 void *ptr;
989 size_t size;
990{
991 void *p;
992
993 mem_pre_free(&ptr);
994 mem_pre_alloc_s(&size);
995
996 p = realloc(ptr, size);
997
998 mem_post_alloc(&p, size);
999
1000 return p;
1001}
1002#endif
1003
1004/*
1005* Avoid repeating the error message many times (they take 1 second each).
1006* Did_outofmem_msg is reset when a character is read.
1007*/
1008 void
1009do_outofmem_msg(size)
1010 long_u size;
1011{
1012 if (!did_outofmem_msg)
1013 {
1014 /* Don't hide this message */
1015 emsg_silent = 0;
Bram Moolenaar79739e12011-10-26 11:41:00 +02001016
1017 /* Must come first to avoid coming back here when printing the error
1018 * message fails, e.g. when setting v:errmsg. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001019 did_outofmem_msg = TRUE;
Bram Moolenaar79739e12011-10-26 11:41:00 +02001020
1021 EMSGN(_("E342: Out of memory! (allocating %lu bytes)"), size);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001022 }
1023}
1024
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001025#if defined(EXITFREE) || defined(PROTO)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001026
1027# if defined(FEAT_SEARCHPATH)
1028static void free_findfile __ARGS((void));
1029# endif
1030
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001031/*
1032 * Free everything that we allocated.
1033 * Can be used to detect memory leaks, e.g., with ccmalloc.
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001034 * NOTE: This is tricky! Things are freed that functions depend on. Don't be
1035 * surprised if Vim crashes...
1036 * Some things can't be freed, esp. things local to a library function.
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001037 */
1038 void
1039free_all_mem()
1040{
1041 buf_T *buf, *nextbuf;
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001042 static int entered = FALSE;
1043
1044 /* When we cause a crash here it is caught and Vim tries to exit cleanly.
1045 * Don't try freeing everything again. */
1046 if (entered)
1047 return;
1048 entered = TRUE;
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001049
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001050# ifdef FEAT_AUTOCMD
Bram Moolenaar78ab3312007-09-29 12:16:41 +00001051 block_autocmds(); /* don't want to trigger autocommands here */
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001052# endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001053
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001054# ifdef FEAT_WINDOWS
Bram Moolenaar5bedfc62010-07-20 22:30:01 +02001055 /* Close all tabs and windows. Reset 'equalalways' to avoid redraws. */
1056 p_ea = FALSE;
Bram Moolenaar7d47b6e2006-03-15 22:59:18 +00001057 if (first_tabpage->tp_next != NULL)
1058 do_cmdline_cmd((char_u *)"tabonly!");
1059 if (firstwin != lastwin)
1060 do_cmdline_cmd((char_u *)"only!");
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001061# endif
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00001062
Bram Moolenaarc4956c82006-03-12 21:58:43 +00001063# if defined(FEAT_SPELL)
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001064 /* Free all spell info. */
1065 spell_free_all();
1066# endif
1067
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001068# if defined(FEAT_USR_CMDS)
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001069 /* Clear user commands (before deleting buffers). */
1070 ex_comclear(NULL);
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001071# endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001072
1073# ifdef FEAT_MENU
1074 /* Clear menus. */
1075 do_cmdline_cmd((char_u *)"aunmenu *");
Bram Moolenaar21160b92009-11-11 15:56:10 +00001076# ifdef FEAT_MULTI_LANG
1077 do_cmdline_cmd((char_u *)"menutranslate clear");
1078# endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001079# endif
1080
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001081 /* Clear mappings, abbreviations, breakpoints. */
Bram Moolenaar21160b92009-11-11 15:56:10 +00001082 do_cmdline_cmd((char_u *)"lmapclear");
1083 do_cmdline_cmd((char_u *)"xmapclear");
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001084 do_cmdline_cmd((char_u *)"mapclear");
1085 do_cmdline_cmd((char_u *)"mapclear!");
1086 do_cmdline_cmd((char_u *)"abclear");
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001087# if defined(FEAT_EVAL)
1088 do_cmdline_cmd((char_u *)"breakdel *");
1089# endif
Bram Moolenaar1e498f52005-06-26 22:29:44 +00001090# if defined(FEAT_PROFILE)
1091 do_cmdline_cmd((char_u *)"profdel *");
1092# endif
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00001093# if defined(FEAT_KEYMAP)
1094 do_cmdline_cmd((char_u *)"set keymap=");
1095#endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001096
1097# ifdef FEAT_TITLE
1098 free_titles();
1099# endif
1100# if defined(FEAT_SEARCHPATH)
1101 free_findfile();
1102# endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001103
1104 /* Obviously named calls. */
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001105# if defined(FEAT_AUTOCMD)
1106 free_all_autocmds();
1107# endif
1108 clear_termcodes();
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001109 free_all_options();
1110 free_all_marks();
1111 alist_clear(&global_alist);
1112 free_homedir();
Bram Moolenaar24305862012-08-15 14:05:05 +02001113# if defined(FEAT_CMDL_COMPL)
1114 free_users();
1115# endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001116 free_search_patterns();
1117 free_old_sub();
1118 free_last_insert();
1119 free_prev_shellcmd();
1120 free_regexp_stuff();
1121 free_tag_stuff();
1122 free_cd_dir();
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00001123# ifdef FEAT_SIGNS
1124 free_signs();
1125# endif
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001126# ifdef FEAT_EVAL
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001127 set_expr_line(NULL);
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001128# endif
1129# ifdef FEAT_DIFF
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00001130 diff_clear(curtab);
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001131# endif
Bram Moolenaara40ceaf2006-01-13 22:35:40 +00001132 clear_sb_text(); /* free any scrollback text */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001133
1134 /* Free some global vars. */
1135 vim_free(username);
Bram Moolenaaraf92ee82007-10-07 13:45:08 +00001136# ifdef FEAT_CLIPBOARD
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001137 vim_free(clip_exclude_prog);
Bram Moolenaaraf92ee82007-10-07 13:45:08 +00001138# endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001139 vim_free(last_cmdline);
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001140# ifdef FEAT_CMDHIST
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001141 vim_free(new_last_cmdline);
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001142# endif
Bram Moolenaar238a5642006-02-21 22:12:05 +00001143 set_keep_msg(NULL, 0);
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001144 vim_free(ff_expand_buffer);
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001145
1146 /* Clear cmdline history. */
1147 p_hi = 0;
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001148# ifdef FEAT_CMDHIST
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001149 init_history();
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001150# endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001151
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001152#ifdef FEAT_QUICKFIX
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001153 {
Bram Moolenaarbd1e5d22009-04-29 09:02:44 +00001154 win_T *win;
1155 tabpage_T *tab;
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001156
1157 qf_free_all(NULL);
1158 /* Free all location lists */
Bram Moolenaarbd1e5d22009-04-29 09:02:44 +00001159 FOR_ALL_TAB_WINDOWS(tab, win)
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001160 qf_free_all(win);
1161 }
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001162#endif
1163
1164 /* Close all script inputs. */
1165 close_all_scripts();
1166
1167#if defined(FEAT_WINDOWS)
1168 /* Destroy all windows. Must come before freeing buffers. */
1169 win_free_all();
1170#endif
1171
Bram Moolenaar2a329742008-04-01 12:53:43 +00001172 /* Free all buffers. Reset 'autochdir' to avoid accessing things that
1173 * were freed already. */
1174#ifdef FEAT_AUTOCHDIR
1175 p_acd = FALSE;
1176#endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001177 for (buf = firstbuf; buf != NULL; )
1178 {
1179 nextbuf = buf->b_next;
Bram Moolenaar42ec6562012-02-22 14:58:37 +01001180 close_buffer(NULL, buf, DOBUF_WIPE, FALSE);
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001181 if (buf_valid(buf))
1182 buf = nextbuf; /* didn't work, try next one */
1183 else
1184 buf = firstbuf;
1185 }
1186
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001187#ifdef FEAT_ARABIC
1188 free_cmdline_buf();
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001189#endif
1190
1191 /* Clear registers. */
1192 clear_registers();
1193 ResetRedobuff();
1194 ResetRedobuff();
1195
Bram Moolenaar85c79d32007-02-20 01:59:20 +00001196#if defined(FEAT_CLIENTSERVER) && defined(FEAT_X11)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001197 vim_free(serverDelayedStartName);
1198#endif
1199
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001200 /* highlight info */
1201 free_highlight();
1202
Bram Moolenaar1e498f52005-06-26 22:29:44 +00001203 reset_last_sourcing();
1204
Bram Moolenaar7d47b6e2006-03-15 22:59:18 +00001205#ifdef FEAT_WINDOWS
Bram Moolenaar06a89a52006-04-29 22:01:03 +00001206 free_tabpage(first_tabpage);
1207 first_tabpage = NULL;
Bram Moolenaar7d47b6e2006-03-15 22:59:18 +00001208#endif
1209
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001210# ifdef UNIX
1211 /* Machine-specific free. */
1212 mch_free_mem();
1213# endif
1214
1215 /* message history */
1216 for (;;)
1217 if (delete_first_msg() == FAIL)
1218 break;
1219
1220# ifdef FEAT_EVAL
1221 eval_clear();
1222# endif
1223
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001224 free_termoptions();
1225
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001226 /* screenlines (can't display anything now!) */
1227 free_screenlines();
1228
1229#if defined(USE_XSMP)
1230 xsmp_close();
1231#endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001232#ifdef FEAT_GUI_GTK
1233 gui_mch_free_all();
1234#endif
1235 clear_hl_tables();
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001236
1237 vim_free(IObuff);
1238 vim_free(NameBuff);
1239}
1240#endif
1241
Bram Moolenaar071d4272004-06-13 20:20:40 +00001242/*
Bram Moolenaare980d8a2010-12-08 13:11:21 +01001243 * Copy "string" into newly allocated memory.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001244 */
1245 char_u *
1246vim_strsave(string)
1247 char_u *string;
1248{
1249 char_u *p;
1250 unsigned len;
1251
1252 len = (unsigned)STRLEN(string) + 1;
1253 p = alloc(len);
1254 if (p != NULL)
1255 mch_memmove(p, string, (size_t)len);
1256 return p;
1257}
1258
Bram Moolenaare980d8a2010-12-08 13:11:21 +01001259/*
1260 * Copy up to "len" bytes of "string" into newly allocated memory and
1261 * terminate with a NUL.
1262 * The allocated memory always has size "len + 1", also when "string" is
1263 * shorter.
1264 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001265 char_u *
1266vim_strnsave(string, len)
1267 char_u *string;
1268 int len;
1269{
1270 char_u *p;
1271
1272 p = alloc((unsigned)(len + 1));
1273 if (p != NULL)
1274 {
1275 STRNCPY(p, string, len);
1276 p[len] = NUL;
1277 }
1278 return p;
1279}
1280
Bram Moolenaar071d4272004-06-13 20:20:40 +00001281/*
1282 * Same as vim_strsave(), but any characters found in esc_chars are preceded
1283 * by a backslash.
1284 */
1285 char_u *
1286vim_strsave_escaped(string, esc_chars)
1287 char_u *string;
1288 char_u *esc_chars;
1289{
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001290 return vim_strsave_escaped_ext(string, esc_chars, '\\', FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001291}
1292
1293/*
1294 * Same as vim_strsave_escaped(), but when "bsl" is TRUE also escape
1295 * characters where rem_backslash() would remove the backslash.
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001296 * Escape the characters with "cc".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001297 */
1298 char_u *
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001299vim_strsave_escaped_ext(string, esc_chars, cc, bsl)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001300 char_u *string;
1301 char_u *esc_chars;
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001302 int cc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001303 int bsl;
1304{
1305 char_u *p;
1306 char_u *p2;
1307 char_u *escaped_string;
1308 unsigned length;
1309#ifdef FEAT_MBYTE
1310 int l;
1311#endif
1312
1313 /*
1314 * First count the number of backslashes required.
1315 * Then allocate the memory and insert them.
1316 */
1317 length = 1; /* count the trailing NUL */
1318 for (p = string; *p; p++)
1319 {
1320#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001321 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001322 {
1323 length += l; /* count a multibyte char */
1324 p += l - 1;
1325 continue;
1326 }
1327#endif
1328 if (vim_strchr(esc_chars, *p) != NULL || (bsl && rem_backslash(p)))
1329 ++length; /* count a backslash */
1330 ++length; /* count an ordinary char */
1331 }
1332 escaped_string = alloc(length);
1333 if (escaped_string != NULL)
1334 {
1335 p2 = escaped_string;
1336 for (p = string; *p; p++)
1337 {
1338#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001339 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001340 {
1341 mch_memmove(p2, p, (size_t)l);
1342 p2 += l;
1343 p += l - 1; /* skip multibyte char */
1344 continue;
1345 }
1346#endif
1347 if (vim_strchr(esc_chars, *p) != NULL || (bsl && rem_backslash(p)))
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001348 *p2++ = cc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001349 *p2++ = *p;
1350 }
1351 *p2 = NUL;
1352 }
1353 return escaped_string;
1354}
1355
Bram Moolenaar7693ec62008-07-24 18:29:37 +00001356/*
1357 * Return TRUE when 'shell' has "csh" in the tail.
1358 */
1359 int
1360csh_like_shell()
1361{
1362 return (strstr((char *)gettail(p_sh), "csh") != NULL);
1363}
Bram Moolenaar7693ec62008-07-24 18:29:37 +00001364
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001365/*
1366 * Escape "string" for use as a shell argument with system().
Bram Moolenaar21160b92009-11-11 15:56:10 +00001367 * This uses single quotes, except when we know we need to use double quotes
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001368 * (MS-DOS and MS-Windows without 'shellslash' set).
Bram Moolenaarffd66c42008-07-16 20:43:37 +00001369 * Escape a newline, depending on the 'shell' option.
1370 * When "do_special" is TRUE also replace "!", "%", "#" and things starting
1371 * with "<" like "<cfile>".
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001372 * Returns the result in allocated memory, NULL if we have run out.
1373 */
1374 char_u *
Bram Moolenaar05bb9532008-07-04 09:44:11 +00001375vim_strsave_shellescape(string, do_special)
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001376 char_u *string;
Bram Moolenaar05bb9532008-07-04 09:44:11 +00001377 int do_special;
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001378{
1379 unsigned length;
1380 char_u *p;
1381 char_u *d;
1382 char_u *escaped_string;
Bram Moolenaar05bb9532008-07-04 09:44:11 +00001383 int l;
Bram Moolenaarffd66c42008-07-16 20:43:37 +00001384 int csh_like;
1385
1386 /* Only csh and similar shells expand '!' within single quotes. For sh and
1387 * the like we must not put a backslash before it, it will be taken
1388 * literally. If do_special is set the '!' will be escaped twice.
1389 * Csh also needs to have "\n" escaped twice when do_special is set. */
Bram Moolenaar7693ec62008-07-24 18:29:37 +00001390 csh_like = csh_like_shell();
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001391
1392 /* First count the number of extra bytes required. */
Bram Moolenaar77f66d62007-02-20 02:16:18 +00001393 length = (unsigned)STRLEN(string) + 3; /* two quotes and a trailing NUL */
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001394 for (p = string; *p != NUL; mb_ptr_adv(p))
1395 {
1396# if defined(WIN32) || defined(WIN16) || defined(DOS)
1397 if (!p_ssl)
1398 {
1399 if (*p == '"')
1400 ++length; /* " -> "" */
1401 }
1402 else
1403# endif
1404 if (*p == '\'')
1405 length += 3; /* ' => '\'' */
Bram Moolenaarffd66c42008-07-16 20:43:37 +00001406 if (*p == '\n' || (*p == '!' && (csh_like || do_special)))
1407 {
1408 ++length; /* insert backslash */
1409 if (csh_like && do_special)
1410 ++length; /* insert backslash */
1411 }
Bram Moolenaar05bb9532008-07-04 09:44:11 +00001412 if (do_special && find_cmdline_var(p, &l) >= 0)
1413 {
1414 ++length; /* insert backslash */
1415 p += l - 1;
1416 }
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001417 }
1418
1419 /* Allocate memory for the result and fill it. */
1420 escaped_string = alloc(length);
1421 if (escaped_string != NULL)
1422 {
1423 d = escaped_string;
1424
1425 /* add opening quote */
1426# if defined(WIN32) || defined(WIN16) || defined(DOS)
1427 if (!p_ssl)
1428 *d++ = '"';
1429 else
1430# endif
1431 *d++ = '\'';
1432
1433 for (p = string; *p != NUL; )
1434 {
1435# if defined(WIN32) || defined(WIN16) || defined(DOS)
1436 if (!p_ssl)
1437 {
1438 if (*p == '"')
1439 {
1440 *d++ = '"';
1441 *d++ = '"';
1442 ++p;
1443 continue;
1444 }
1445 }
1446 else
1447# endif
1448 if (*p == '\'')
1449 {
Bram Moolenaar05bb9532008-07-04 09:44:11 +00001450 *d++ = '\'';
1451 *d++ = '\\';
1452 *d++ = '\'';
1453 *d++ = '\'';
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001454 ++p;
1455 continue;
1456 }
Bram Moolenaarffd66c42008-07-16 20:43:37 +00001457 if (*p == '\n' || (*p == '!' && (csh_like || do_special)))
1458 {
1459 *d++ = '\\';
1460 if (csh_like && do_special)
1461 *d++ = '\\';
1462 *d++ = *p++;
1463 continue;
1464 }
Bram Moolenaar05bb9532008-07-04 09:44:11 +00001465 if (do_special && find_cmdline_var(p, &l) >= 0)
1466 {
1467 *d++ = '\\'; /* insert backslash */
1468 while (--l >= 0) /* copy the var */
1469 *d++ = *p++;
Bram Moolenaar099d01d2009-11-25 16:14:45 +00001470 continue;
Bram Moolenaar05bb9532008-07-04 09:44:11 +00001471 }
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001472
1473 MB_COPY_CHAR(p, d);
1474 }
1475
1476 /* add terminating quote and finish with a NUL */
1477# if defined(WIN32) || defined(WIN16) || defined(DOS)
1478 if (!p_ssl)
1479 *d++ = '"';
1480 else
1481# endif
1482 *d++ = '\'';
1483 *d = NUL;
1484 }
1485
1486 return escaped_string;
1487}
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001488
Bram Moolenaar071d4272004-06-13 20:20:40 +00001489/*
1490 * Like vim_strsave(), but make all characters uppercase.
1491 * This uses ASCII lower-to-upper case translation, language independent.
1492 */
1493 char_u *
1494vim_strsave_up(string)
1495 char_u *string;
1496{
1497 char_u *p1;
1498
1499 p1 = vim_strsave(string);
1500 vim_strup(p1);
1501 return p1;
1502}
1503
1504/*
1505 * Like vim_strnsave(), but make all characters uppercase.
1506 * This uses ASCII lower-to-upper case translation, language independent.
1507 */
1508 char_u *
1509vim_strnsave_up(string, len)
1510 char_u *string;
1511 int len;
1512{
1513 char_u *p1;
1514
1515 p1 = vim_strnsave(string, len);
1516 vim_strup(p1);
1517 return p1;
1518}
1519
1520/*
1521 * ASCII lower-to-upper case translation, language independent.
1522 */
1523 void
1524vim_strup(p)
1525 char_u *p;
1526{
1527 char_u *p2;
1528 int c;
1529
1530 if (p != NULL)
1531 {
1532 p2 = p;
1533 while ((c = *p2) != NUL)
1534#ifdef EBCDIC
1535 *p2++ = isalpha(c) ? toupper(c) : c;
1536#else
1537 *p2++ = (c < 'a' || c > 'z') ? c : (c - 0x20);
1538#endif
1539 }
1540}
1541
Bram Moolenaarc4956c82006-03-12 21:58:43 +00001542#if defined(FEAT_EVAL) || defined(FEAT_SPELL) || defined(PROTO)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001543/*
1544 * Make string "s" all upper-case and return it in allocated memory.
1545 * Handles multi-byte characters as well as possible.
1546 * Returns NULL when out of memory.
1547 */
1548 char_u *
1549strup_save(orig)
1550 char_u *orig;
1551{
1552 char_u *p;
1553 char_u *res;
1554
1555 res = p = vim_strsave(orig);
1556
1557 if (res != NULL)
1558 while (*p != NUL)
1559 {
1560# ifdef FEAT_MBYTE
1561 int l;
1562
1563 if (enc_utf8)
1564 {
1565 int c, uc;
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001566 int newl;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001567 char_u *s;
1568
1569 c = utf_ptr2char(p);
1570 uc = utf_toupper(c);
1571
1572 /* Reallocate string when byte count changes. This is rare,
1573 * thus it's OK to do another malloc()/free(). */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001574 l = utf_ptr2len(p);
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001575 newl = utf_char2len(uc);
1576 if (newl != l)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001577 {
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001578 s = alloc((unsigned)STRLEN(res) + 1 + newl - l);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001579 if (s == NULL)
1580 break;
1581 mch_memmove(s, res, p - res);
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001582 STRCPY(s + (p - res) + newl, p + l);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001583 p = s + (p - res);
1584 vim_free(res);
1585 res = s;
1586 }
1587
1588 utf_char2bytes(uc, p);
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001589 p += newl;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001590 }
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001591 else if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001592 p += l; /* skip multi-byte character */
1593 else
1594# endif
1595 {
1596 *p = TOUPPER_LOC(*p); /* note that toupper() can be a macro */
1597 p++;
1598 }
1599 }
1600
1601 return res;
1602}
1603#endif
1604
Bram Moolenaar071d4272004-06-13 20:20:40 +00001605/*
1606 * copy a space a number of times
1607 */
1608 void
1609copy_spaces(ptr, count)
1610 char_u *ptr;
1611 size_t count;
1612{
1613 size_t i = count;
1614 char_u *p = ptr;
1615
1616 while (i--)
1617 *p++ = ' ';
1618}
1619
1620#if defined(FEAT_VISUALEXTRA) || defined(PROTO)
1621/*
1622 * Copy a character a number of times.
Bram Moolenaar21160b92009-11-11 15:56:10 +00001623 * Does not work for multi-byte characters!
Bram Moolenaar071d4272004-06-13 20:20:40 +00001624 */
1625 void
1626copy_chars(ptr, count, c)
1627 char_u *ptr;
1628 size_t count;
1629 int c;
1630{
1631 size_t i = count;
1632 char_u *p = ptr;
1633
1634 while (i--)
1635 *p++ = c;
1636}
1637#endif
1638
1639/*
1640 * delete spaces at the end of a string
1641 */
1642 void
1643del_trailing_spaces(ptr)
1644 char_u *ptr;
1645{
1646 char_u *q;
1647
1648 q = ptr + STRLEN(ptr);
1649 while (--q > ptr && vim_iswhite(q[0]) && q[-1] != '\\' && q[-1] != Ctrl_V)
1650 *q = NUL;
1651}
1652
1653/*
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001654 * Like strncpy(), but always terminate the result with one NUL.
Bram Moolenaard042c562005-06-30 22:04:15 +00001655 * "to" must be "len + 1" long!
Bram Moolenaar071d4272004-06-13 20:20:40 +00001656 */
1657 void
1658vim_strncpy(to, from, len)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001659 char_u *to;
1660 char_u *from;
Bram Moolenaarbbebc852005-07-18 21:47:53 +00001661 size_t len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001662{
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001663 STRNCPY(to, from, len);
1664 to[len] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001665}
1666
1667/*
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02001668 * Like strcat(), but make sure the result fits in "tosize" bytes and is
1669 * always NUL terminated.
1670 */
1671 void
1672vim_strcat(to, from, tosize)
1673 char_u *to;
1674 char_u *from;
1675 size_t tosize;
1676{
1677 size_t tolen = STRLEN(to);
1678 size_t fromlen = STRLEN(from);
1679
1680 if (tolen + fromlen + 1 > tosize)
1681 {
1682 mch_memmove(to + tolen, from, tosize - tolen - 1);
1683 to[tosize - 1] = NUL;
1684 }
1685 else
1686 STRCPY(to + tolen, from);
1687}
1688
1689/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001690 * Isolate one part of a string option where parts are separated with
1691 * "sep_chars".
Bram Moolenaar83bab712005-08-01 21:58:57 +00001692 * The part is copied into "buf[maxlen]".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001693 * "*option" is advanced to the next part.
1694 * The length is returned.
1695 */
1696 int
1697copy_option_part(option, buf, maxlen, sep_chars)
1698 char_u **option;
1699 char_u *buf;
1700 int maxlen;
1701 char *sep_chars;
1702{
1703 int len = 0;
1704 char_u *p = *option;
1705
1706 /* skip '.' at start of option part, for 'suffixes' */
1707 if (*p == '.')
1708 buf[len++] = *p++;
1709 while (*p != NUL && vim_strchr((char_u *)sep_chars, *p) == NULL)
1710 {
1711 /*
1712 * Skip backslash before a separator character and space.
1713 */
1714 if (p[0] == '\\' && vim_strchr((char_u *)sep_chars, p[1]) != NULL)
1715 ++p;
1716 if (len < maxlen - 1)
1717 buf[len++] = *p;
1718 ++p;
1719 }
1720 buf[len] = NUL;
1721
1722 if (*p != NUL && *p != ',') /* skip non-standard separator */
1723 ++p;
1724 p = skip_to_option_part(p); /* p points to next file name */
1725
1726 *option = p;
1727 return len;
1728}
1729
1730/*
Bram Moolenaar4770d092006-01-12 23:22:24 +00001731 * Replacement for free() that ignores NULL pointers.
1732 * Also skip free() when exiting for sure, this helps when we caught a deadly
1733 * signal that was caused by a crash in free().
Bram Moolenaar071d4272004-06-13 20:20:40 +00001734 */
1735 void
1736vim_free(x)
1737 void *x;
1738{
Bram Moolenaar4770d092006-01-12 23:22:24 +00001739 if (x != NULL && !really_exiting)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001740 {
1741#ifdef MEM_PROFILE
1742 mem_pre_free(&x);
1743#endif
1744 free(x);
1745 }
1746}
1747
1748#ifndef HAVE_MEMSET
1749 void *
1750vim_memset(ptr, c, size)
1751 void *ptr;
1752 int c;
1753 size_t size;
1754{
1755 char *p = ptr;
1756
1757 while (size-- > 0)
1758 *p++ = c;
1759 return ptr;
1760}
1761#endif
1762
1763#ifdef VIM_MEMCMP
1764/*
1765 * Return zero when "b1" and "b2" are the same for "len" bytes.
1766 * Return non-zero otherwise.
1767 */
1768 int
1769vim_memcmp(b1, b2, len)
1770 void *b1;
1771 void *b2;
1772 size_t len;
1773{
1774 char_u *p1 = (char_u *)b1, *p2 = (char_u *)b2;
1775
1776 for ( ; len > 0; --len)
1777 {
1778 if (*p1 != *p2)
1779 return 1;
1780 ++p1;
1781 ++p2;
1782 }
1783 return 0;
1784}
1785#endif
1786
1787#ifdef VIM_MEMMOVE
1788/*
1789 * Version of memmove() that handles overlapping source and destination.
1790 * For systems that don't have a function that is guaranteed to do that (SYSV).
1791 */
1792 void
1793mch_memmove(dst_arg, src_arg, len)
1794 void *src_arg, *dst_arg;
1795 size_t len;
1796{
1797 /*
1798 * A void doesn't have a size, we use char pointers.
1799 */
1800 char *dst = dst_arg, *src = src_arg;
1801
1802 /* overlap, copy backwards */
1803 if (dst > src && dst < src + len)
1804 {
1805 src += len;
1806 dst += len;
1807 while (len-- > 0)
1808 *--dst = *--src;
1809 }
1810 else /* copy forwards */
1811 while (len-- > 0)
1812 *dst++ = *src++;
1813}
1814#endif
1815
1816#if (!defined(HAVE_STRCASECMP) && !defined(HAVE_STRICMP)) || defined(PROTO)
1817/*
1818 * Compare two strings, ignoring case, using current locale.
1819 * Doesn't work for multi-byte characters.
1820 * return 0 for match, < 0 for smaller, > 0 for bigger
1821 */
1822 int
1823vim_stricmp(s1, s2)
1824 char *s1;
1825 char *s2;
1826{
1827 int i;
1828
1829 for (;;)
1830 {
1831 i = (int)TOLOWER_LOC(*s1) - (int)TOLOWER_LOC(*s2);
1832 if (i != 0)
1833 return i; /* this character different */
1834 if (*s1 == NUL)
1835 break; /* strings match until NUL */
1836 ++s1;
1837 ++s2;
1838 }
1839 return 0; /* strings match */
1840}
1841#endif
1842
1843#if (!defined(HAVE_STRNCASECMP) && !defined(HAVE_STRNICMP)) || defined(PROTO)
1844/*
1845 * Compare two strings, for length "len", ignoring case, using current locale.
1846 * Doesn't work for multi-byte characters.
1847 * return 0 for match, < 0 for smaller, > 0 for bigger
1848 */
1849 int
1850vim_strnicmp(s1, s2, len)
1851 char *s1;
1852 char *s2;
1853 size_t len;
1854{
1855 int i;
1856
1857 while (len > 0)
1858 {
1859 i = (int)TOLOWER_LOC(*s1) - (int)TOLOWER_LOC(*s2);
1860 if (i != 0)
1861 return i; /* this character different */
1862 if (*s1 == NUL)
1863 break; /* strings match until NUL */
1864 ++s1;
1865 ++s2;
1866 --len;
1867 }
1868 return 0; /* strings match */
1869}
1870#endif
1871
Bram Moolenaar071d4272004-06-13 20:20:40 +00001872/*
1873 * Version of strchr() and strrchr() that handle unsigned char strings
Bram Moolenaar05159a02005-02-26 23:04:13 +00001874 * with characters from 128 to 255 correctly. It also doesn't return a
1875 * pointer to the NUL at the end of the string.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001876 */
1877 char_u *
1878vim_strchr(string, c)
1879 char_u *string;
1880 int c;
1881{
1882 char_u *p;
1883 int b;
1884
1885 p = string;
1886#ifdef FEAT_MBYTE
1887 if (enc_utf8 && c >= 0x80)
1888 {
1889 while (*p != NUL)
1890 {
1891 if (utf_ptr2char(p) == c)
1892 return p;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001893 p += (*mb_ptr2len)(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001894 }
1895 return NULL;
1896 }
1897 if (enc_dbcs != 0 && c > 255)
1898 {
1899 int n2 = c & 0xff;
1900
1901 c = ((unsigned)c >> 8) & 0xff;
1902 while ((b = *p) != NUL)
1903 {
1904 if (b == c && p[1] == n2)
1905 return p;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001906 p += (*mb_ptr2len)(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001907 }
1908 return NULL;
1909 }
1910 if (has_mbyte)
1911 {
1912 while ((b = *p) != NUL)
1913 {
1914 if (b == c)
1915 return p;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001916 p += (*mb_ptr2len)(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001917 }
1918 return NULL;
1919 }
1920#endif
1921 while ((b = *p) != NUL)
1922 {
1923 if (b == c)
1924 return p;
1925 ++p;
1926 }
1927 return NULL;
1928}
1929
1930/*
Bram Moolenaar05159a02005-02-26 23:04:13 +00001931 * Version of strchr() that only works for bytes and handles unsigned char
1932 * strings with characters above 128 correctly. It also doesn't return a
1933 * pointer to the NUL at the end of the string.
1934 */
1935 char_u *
1936vim_strbyte(string, c)
1937 char_u *string;
1938 int c;
1939{
1940 char_u *p = string;
1941
1942 while (*p != NUL)
1943 {
1944 if (*p == c)
1945 return p;
1946 ++p;
1947 }
1948 return NULL;
1949}
1950
1951/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001952 * Search for last occurrence of "c" in "string".
Bram Moolenaarac6e65f2005-08-29 22:25:38 +00001953 * Return NULL if not found.
Bram Moolenaar05159a02005-02-26 23:04:13 +00001954 * Does not handle multi-byte char for "c"!
Bram Moolenaar071d4272004-06-13 20:20:40 +00001955 */
1956 char_u *
1957vim_strrchr(string, c)
1958 char_u *string;
1959 int c;
1960{
1961 char_u *retval = NULL;
Bram Moolenaar05159a02005-02-26 23:04:13 +00001962 char_u *p = string;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001963
Bram Moolenaar05159a02005-02-26 23:04:13 +00001964 while (*p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001965 {
Bram Moolenaar05159a02005-02-26 23:04:13 +00001966 if (*p == c)
1967 retval = p;
1968 mb_ptr_adv(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001969 }
1970 return retval;
1971}
1972
1973/*
1974 * Vim's version of strpbrk(), in case it's missing.
1975 * Don't generate a prototype for this, causes problems when it's not used.
1976 */
1977#ifndef PROTO
1978# ifndef HAVE_STRPBRK
1979# ifdef vim_strpbrk
1980# undef vim_strpbrk
1981# endif
1982 char_u *
1983vim_strpbrk(s, charset)
1984 char_u *s;
1985 char_u *charset;
1986{
1987 while (*s)
1988 {
1989 if (vim_strchr(charset, *s) != NULL)
1990 return s;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001991 mb_ptr_adv(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001992 }
1993 return NULL;
1994}
1995# endif
1996#endif
1997
1998/*
1999 * Vim has its own isspace() function, because on some machines isspace()
2000 * can't handle characters above 128.
2001 */
2002 int
2003vim_isspace(x)
2004 int x;
2005{
2006 return ((x >= 9 && x <= 13) || x == ' ');
2007}
2008
2009/************************************************************************
Bram Moolenaar383f9bc2005-01-19 22:18:32 +00002010 * Functions for handling growing arrays.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002011 */
2012
2013/*
2014 * Clear an allocated growing array.
2015 */
2016 void
2017ga_clear(gap)
2018 garray_T *gap;
2019{
2020 vim_free(gap->ga_data);
2021 ga_init(gap);
2022}
2023
2024/*
2025 * Clear a growing array that contains a list of strings.
2026 */
2027 void
2028ga_clear_strings(gap)
2029 garray_T *gap;
2030{
2031 int i;
2032
2033 for (i = 0; i < gap->ga_len; ++i)
2034 vim_free(((char_u **)(gap->ga_data))[i]);
2035 ga_clear(gap);
2036}
2037
2038/*
2039 * Initialize a growing array. Don't forget to set ga_itemsize and
2040 * ga_growsize! Or use ga_init2().
2041 */
2042 void
2043ga_init(gap)
2044 garray_T *gap;
2045{
2046 gap->ga_data = NULL;
Bram Moolenaar86b68352004-12-27 21:59:20 +00002047 gap->ga_maxlen = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002048 gap->ga_len = 0;
2049}
2050
2051 void
2052ga_init2(gap, itemsize, growsize)
2053 garray_T *gap;
2054 int itemsize;
2055 int growsize;
2056{
2057 ga_init(gap);
2058 gap->ga_itemsize = itemsize;
2059 gap->ga_growsize = growsize;
2060}
2061
2062/*
2063 * Make room in growing array "gap" for at least "n" items.
2064 * Return FAIL for failure, OK otherwise.
2065 */
2066 int
2067ga_grow(gap, n)
2068 garray_T *gap;
2069 int n;
2070{
Bram Moolenaar7282bc32012-02-22 18:12:32 +01002071 size_t old_len;
2072 size_t new_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002073 char_u *pp;
2074
Bram Moolenaar86b68352004-12-27 21:59:20 +00002075 if (gap->ga_maxlen - gap->ga_len < n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002076 {
2077 if (n < gap->ga_growsize)
2078 n = gap->ga_growsize;
Bram Moolenaar7282bc32012-02-22 18:12:32 +01002079 new_len = gap->ga_itemsize * (gap->ga_len + n);
2080 pp = (gap->ga_data == NULL)
Bram Moolenaar4336cdf2012-02-29 13:58:47 +01002081 ? alloc((unsigned)new_len) : vim_realloc(gap->ga_data, new_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002082 if (pp == NULL)
2083 return FAIL;
Bram Moolenaar7282bc32012-02-22 18:12:32 +01002084 old_len = gap->ga_itemsize * gap->ga_maxlen;
2085 vim_memset(pp + old_len, 0, new_len - old_len);
Bram Moolenaar86b68352004-12-27 21:59:20 +00002086 gap->ga_maxlen = gap->ga_len + n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002087 gap->ga_data = pp;
2088 }
2089 return OK;
2090}
2091
2092/*
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02002093 * For a growing array that contains a list of strings: concatenate all the
2094 * strings with a separating comma.
2095 * Returns NULL when out of memory.
2096 */
2097 char_u *
2098ga_concat_strings(gap)
2099 garray_T *gap;
2100{
2101 int i;
2102 int len = 0;
2103 char_u *s;
2104
2105 for (i = 0; i < gap->ga_len; ++i)
2106 len += (int)STRLEN(((char_u **)(gap->ga_data))[i]) + 1;
2107
2108 s = alloc(len + 1);
2109 if (s != NULL)
2110 {
2111 *s = NUL;
2112 for (i = 0; i < gap->ga_len; ++i)
2113 {
2114 if (*s != NUL)
2115 STRCAT(s, ",");
2116 STRCAT(s, ((char_u **)(gap->ga_data))[i]);
2117 }
2118 }
2119 return s;
2120}
2121
2122/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002123 * Concatenate a string to a growarray which contains characters.
2124 * Note: Does NOT copy the NUL at the end!
2125 */
2126 void
2127ga_concat(gap, s)
2128 garray_T *gap;
2129 char_u *s;
2130{
2131 int len = (int)STRLEN(s);
2132
2133 if (ga_grow(gap, len) == OK)
2134 {
2135 mch_memmove((char *)gap->ga_data + gap->ga_len, s, (size_t)len);
2136 gap->ga_len += len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002137 }
2138}
2139
2140/*
2141 * Append one byte to a growarray which contains bytes.
2142 */
2143 void
2144ga_append(gap, c)
2145 garray_T *gap;
2146 int c;
2147{
2148 if (ga_grow(gap, 1) == OK)
2149 {
2150 *((char *)gap->ga_data + gap->ga_len) = c;
2151 ++gap->ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002152 }
2153}
2154
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02002155#if (defined(UNIX) && !defined(USE_SYSTEM)) || defined(WIN3264)
2156/*
2157 * Append the text in "gap" below the cursor line and clear "gap".
2158 */
2159 void
2160append_ga_line(gap)
2161 garray_T *gap;
2162{
2163 /* Remove trailing CR. */
2164 if (gap->ga_len > 0
2165 && !curbuf->b_p_bin
2166 && ((char_u *)gap->ga_data)[gap->ga_len - 1] == CAR)
2167 --gap->ga_len;
2168 ga_append(gap, NUL);
2169 ml_append(curwin->w_cursor.lnum++, gap->ga_data, 0, FALSE);
2170 gap->ga_len = 0;
2171}
2172#endif
2173
Bram Moolenaar071d4272004-06-13 20:20:40 +00002174/************************************************************************
2175 * functions that use lookup tables for various things, generally to do with
2176 * special key codes.
2177 */
2178
2179/*
2180 * Some useful tables.
2181 */
2182
2183static struct modmasktable
2184{
2185 short mod_mask; /* Bit-mask for particular key modifier */
2186 short mod_flag; /* Bit(s) for particular key modifier */
2187 char_u name; /* Single letter name of modifier */
2188} mod_mask_table[] =
2189{
2190 {MOD_MASK_ALT, MOD_MASK_ALT, (char_u)'M'},
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002191 {MOD_MASK_META, MOD_MASK_META, (char_u)'T'},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002192 {MOD_MASK_CTRL, MOD_MASK_CTRL, (char_u)'C'},
2193 {MOD_MASK_SHIFT, MOD_MASK_SHIFT, (char_u)'S'},
2194 {MOD_MASK_MULTI_CLICK, MOD_MASK_2CLICK, (char_u)'2'},
2195 {MOD_MASK_MULTI_CLICK, MOD_MASK_3CLICK, (char_u)'3'},
2196 {MOD_MASK_MULTI_CLICK, MOD_MASK_4CLICK, (char_u)'4'},
2197#ifdef MACOS
2198 {MOD_MASK_CMD, MOD_MASK_CMD, (char_u)'D'},
2199#endif
2200 /* 'A' must be the last one */
2201 {MOD_MASK_ALT, MOD_MASK_ALT, (char_u)'A'},
2202 {0, 0, NUL}
2203};
2204
2205/*
2206 * Shifted key terminal codes and their unshifted equivalent.
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00002207 * Don't add mouse codes here, they are handled separately!
Bram Moolenaar071d4272004-06-13 20:20:40 +00002208 */
2209#define MOD_KEYS_ENTRY_SIZE 5
2210
2211static char_u modifier_keys_table[] =
2212{
2213/* mod mask with modifier without modifier */
2214 MOD_MASK_SHIFT, '&', '9', '@', '1', /* begin */
2215 MOD_MASK_SHIFT, '&', '0', '@', '2', /* cancel */
2216 MOD_MASK_SHIFT, '*', '1', '@', '4', /* command */
2217 MOD_MASK_SHIFT, '*', '2', '@', '5', /* copy */
2218 MOD_MASK_SHIFT, '*', '3', '@', '6', /* create */
2219 MOD_MASK_SHIFT, '*', '4', 'k', 'D', /* delete char */
2220 MOD_MASK_SHIFT, '*', '5', 'k', 'L', /* delete line */
2221 MOD_MASK_SHIFT, '*', '7', '@', '7', /* end */
2222 MOD_MASK_CTRL, KS_EXTRA, (int)KE_C_END, '@', '7', /* end */
2223 MOD_MASK_SHIFT, '*', '9', '@', '9', /* exit */
2224 MOD_MASK_SHIFT, '*', '0', '@', '0', /* find */
2225 MOD_MASK_SHIFT, '#', '1', '%', '1', /* help */
2226 MOD_MASK_SHIFT, '#', '2', 'k', 'h', /* home */
2227 MOD_MASK_CTRL, KS_EXTRA, (int)KE_C_HOME, 'k', 'h', /* home */
2228 MOD_MASK_SHIFT, '#', '3', 'k', 'I', /* insert */
2229 MOD_MASK_SHIFT, '#', '4', 'k', 'l', /* left arrow */
2230 MOD_MASK_CTRL, KS_EXTRA, (int)KE_C_LEFT, 'k', 'l', /* left arrow */
2231 MOD_MASK_SHIFT, '%', 'a', '%', '3', /* message */
2232 MOD_MASK_SHIFT, '%', 'b', '%', '4', /* move */
2233 MOD_MASK_SHIFT, '%', 'c', '%', '5', /* next */
2234 MOD_MASK_SHIFT, '%', 'd', '%', '7', /* options */
2235 MOD_MASK_SHIFT, '%', 'e', '%', '8', /* previous */
2236 MOD_MASK_SHIFT, '%', 'f', '%', '9', /* print */
2237 MOD_MASK_SHIFT, '%', 'g', '%', '0', /* redo */
2238 MOD_MASK_SHIFT, '%', 'h', '&', '3', /* replace */
2239 MOD_MASK_SHIFT, '%', 'i', 'k', 'r', /* right arr. */
2240 MOD_MASK_CTRL, KS_EXTRA, (int)KE_C_RIGHT, 'k', 'r', /* right arr. */
2241 MOD_MASK_SHIFT, '%', 'j', '&', '5', /* resume */
2242 MOD_MASK_SHIFT, '!', '1', '&', '6', /* save */
2243 MOD_MASK_SHIFT, '!', '2', '&', '7', /* suspend */
2244 MOD_MASK_SHIFT, '!', '3', '&', '8', /* undo */
2245 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_UP, 'k', 'u', /* up arrow */
2246 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_DOWN, 'k', 'd', /* down arrow */
2247
2248 /* vt100 F1 */
2249 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_XF1, KS_EXTRA, (int)KE_XF1,
2250 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_XF2, KS_EXTRA, (int)KE_XF2,
2251 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_XF3, KS_EXTRA, (int)KE_XF3,
2252 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_XF4, KS_EXTRA, (int)KE_XF4,
2253
2254 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F1, 'k', '1', /* F1 */
2255 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F2, 'k', '2',
2256 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F3, 'k', '3',
2257 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F4, 'k', '4',
2258 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F5, 'k', '5',
2259 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F6, 'k', '6',
2260 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F7, 'k', '7',
2261 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F8, 'k', '8',
2262 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F9, 'k', '9',
2263 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F10, 'k', ';', /* F10 */
2264
2265 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F11, 'F', '1',
2266 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F12, 'F', '2',
2267 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F13, 'F', '3',
2268 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F14, 'F', '4',
2269 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F15, 'F', '5',
2270 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F16, 'F', '6',
2271 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F17, 'F', '7',
2272 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F18, 'F', '8',
2273 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F19, 'F', '9',
2274 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F20, 'F', 'A',
2275
2276 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F21, 'F', 'B',
2277 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F22, 'F', 'C',
2278 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F23, 'F', 'D',
2279 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F24, 'F', 'E',
2280 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F25, 'F', 'F',
2281 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F26, 'F', 'G',
2282 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F27, 'F', 'H',
2283 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F28, 'F', 'I',
2284 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F29, 'F', 'J',
2285 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F30, 'F', 'K',
2286
2287 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F31, 'F', 'L',
2288 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F32, 'F', 'M',
2289 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F33, 'F', 'N',
2290 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F34, 'F', 'O',
2291 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F35, 'F', 'P',
2292 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F36, 'F', 'Q',
2293 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F37, 'F', 'R',
2294
2295 /* TAB pseudo code*/
2296 MOD_MASK_SHIFT, 'k', 'B', KS_EXTRA, (int)KE_TAB,
2297
2298 NUL
2299};
2300
2301static struct key_name_entry
2302{
2303 int key; /* Special key code or ascii value */
2304 char_u *name; /* Name of key */
2305} key_names_table[] =
2306{
2307 {' ', (char_u *)"Space"},
2308 {TAB, (char_u *)"Tab"},
2309 {K_TAB, (char_u *)"Tab"},
2310 {NL, (char_u *)"NL"},
2311 {NL, (char_u *)"NewLine"}, /* Alternative name */
2312 {NL, (char_u *)"LineFeed"}, /* Alternative name */
2313 {NL, (char_u *)"LF"}, /* Alternative name */
2314 {CAR, (char_u *)"CR"},
2315 {CAR, (char_u *)"Return"}, /* Alternative name */
2316 {CAR, (char_u *)"Enter"}, /* Alternative name */
2317 {K_BS, (char_u *)"BS"},
2318 {K_BS, (char_u *)"BackSpace"}, /* Alternative name */
2319 {ESC, (char_u *)"Esc"},
2320 {CSI, (char_u *)"CSI"},
2321 {K_CSI, (char_u *)"xCSI"},
2322 {'|', (char_u *)"Bar"},
2323 {'\\', (char_u *)"Bslash"},
2324 {K_DEL, (char_u *)"Del"},
2325 {K_DEL, (char_u *)"Delete"}, /* Alternative name */
2326 {K_KDEL, (char_u *)"kDel"},
2327 {K_UP, (char_u *)"Up"},
2328 {K_DOWN, (char_u *)"Down"},
2329 {K_LEFT, (char_u *)"Left"},
2330 {K_RIGHT, (char_u *)"Right"},
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002331 {K_XUP, (char_u *)"xUp"},
2332 {K_XDOWN, (char_u *)"xDown"},
2333 {K_XLEFT, (char_u *)"xLeft"},
2334 {K_XRIGHT, (char_u *)"xRight"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002335
2336 {K_F1, (char_u *)"F1"},
2337 {K_F2, (char_u *)"F2"},
2338 {K_F3, (char_u *)"F3"},
2339 {K_F4, (char_u *)"F4"},
2340 {K_F5, (char_u *)"F5"},
2341 {K_F6, (char_u *)"F6"},
2342 {K_F7, (char_u *)"F7"},
2343 {K_F8, (char_u *)"F8"},
2344 {K_F9, (char_u *)"F9"},
2345 {K_F10, (char_u *)"F10"},
2346
2347 {K_F11, (char_u *)"F11"},
2348 {K_F12, (char_u *)"F12"},
2349 {K_F13, (char_u *)"F13"},
2350 {K_F14, (char_u *)"F14"},
2351 {K_F15, (char_u *)"F15"},
2352 {K_F16, (char_u *)"F16"},
2353 {K_F17, (char_u *)"F17"},
2354 {K_F18, (char_u *)"F18"},
2355 {K_F19, (char_u *)"F19"},
2356 {K_F20, (char_u *)"F20"},
2357
2358 {K_F21, (char_u *)"F21"},
2359 {K_F22, (char_u *)"F22"},
2360 {K_F23, (char_u *)"F23"},
2361 {K_F24, (char_u *)"F24"},
2362 {K_F25, (char_u *)"F25"},
2363 {K_F26, (char_u *)"F26"},
2364 {K_F27, (char_u *)"F27"},
2365 {K_F28, (char_u *)"F28"},
2366 {K_F29, (char_u *)"F29"},
2367 {K_F30, (char_u *)"F30"},
2368
2369 {K_F31, (char_u *)"F31"},
2370 {K_F32, (char_u *)"F32"},
2371 {K_F33, (char_u *)"F33"},
2372 {K_F34, (char_u *)"F34"},
2373 {K_F35, (char_u *)"F35"},
2374 {K_F36, (char_u *)"F36"},
2375 {K_F37, (char_u *)"F37"},
2376
2377 {K_XF1, (char_u *)"xF1"},
2378 {K_XF2, (char_u *)"xF2"},
2379 {K_XF3, (char_u *)"xF3"},
2380 {K_XF4, (char_u *)"xF4"},
2381
2382 {K_HELP, (char_u *)"Help"},
2383 {K_UNDO, (char_u *)"Undo"},
2384 {K_INS, (char_u *)"Insert"},
2385 {K_INS, (char_u *)"Ins"}, /* Alternative name */
2386 {K_KINS, (char_u *)"kInsert"},
2387 {K_HOME, (char_u *)"Home"},
2388 {K_KHOME, (char_u *)"kHome"},
2389 {K_XHOME, (char_u *)"xHome"},
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002390 {K_ZHOME, (char_u *)"zHome"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002391 {K_END, (char_u *)"End"},
2392 {K_KEND, (char_u *)"kEnd"},
2393 {K_XEND, (char_u *)"xEnd"},
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002394 {K_ZEND, (char_u *)"zEnd"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002395 {K_PAGEUP, (char_u *)"PageUp"},
2396 {K_PAGEDOWN, (char_u *)"PageDown"},
2397 {K_KPAGEUP, (char_u *)"kPageUp"},
2398 {K_KPAGEDOWN, (char_u *)"kPageDown"},
2399
2400 {K_KPLUS, (char_u *)"kPlus"},
2401 {K_KMINUS, (char_u *)"kMinus"},
2402 {K_KDIVIDE, (char_u *)"kDivide"},
2403 {K_KMULTIPLY, (char_u *)"kMultiply"},
2404 {K_KENTER, (char_u *)"kEnter"},
2405 {K_KPOINT, (char_u *)"kPoint"},
2406
2407 {K_K0, (char_u *)"k0"},
2408 {K_K1, (char_u *)"k1"},
2409 {K_K2, (char_u *)"k2"},
2410 {K_K3, (char_u *)"k3"},
2411 {K_K4, (char_u *)"k4"},
2412 {K_K5, (char_u *)"k5"},
2413 {K_K6, (char_u *)"k6"},
2414 {K_K7, (char_u *)"k7"},
2415 {K_K8, (char_u *)"k8"},
2416 {K_K9, (char_u *)"k9"},
2417
2418 {'<', (char_u *)"lt"},
2419
2420 {K_MOUSE, (char_u *)"Mouse"},
Bram Moolenaar5af7d712012-01-20 17:15:51 +01002421#ifdef FEAT_MOUSE_NET
Bram Moolenaar071d4272004-06-13 20:20:40 +00002422 {K_NETTERM_MOUSE, (char_u *)"NetMouse"},
Bram Moolenaar5af7d712012-01-20 17:15:51 +01002423#endif
2424#ifdef FEAT_MOUSE_DEC
Bram Moolenaar071d4272004-06-13 20:20:40 +00002425 {K_DEC_MOUSE, (char_u *)"DecMouse"},
Bram Moolenaar5af7d712012-01-20 17:15:51 +01002426#endif
2427#ifdef FEAT_MOUSE_JSB
Bram Moolenaar071d4272004-06-13 20:20:40 +00002428 {K_JSBTERM_MOUSE, (char_u *)"JsbMouse"},
Bram Moolenaar5af7d712012-01-20 17:15:51 +01002429#endif
2430#ifdef FEAT_MOUSE_PTERM
Bram Moolenaar071d4272004-06-13 20:20:40 +00002431 {K_PTERM_MOUSE, (char_u *)"PtermMouse"},
Bram Moolenaar5af7d712012-01-20 17:15:51 +01002432#endif
2433#ifdef FEAT_MOUSE_URXVT
2434 {K_URXVT_MOUSE, (char_u *)"UrxvtMouse"},
2435#endif
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02002436#ifdef FEAT_MOUSE_SGR
2437 {K_SGR_MOUSE, (char_u *)"SgrMouse"},
2438#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002439 {K_LEFTMOUSE, (char_u *)"LeftMouse"},
2440 {K_LEFTMOUSE_NM, (char_u *)"LeftMouseNM"},
2441 {K_LEFTDRAG, (char_u *)"LeftDrag"},
2442 {K_LEFTRELEASE, (char_u *)"LeftRelease"},
2443 {K_LEFTRELEASE_NM, (char_u *)"LeftReleaseNM"},
2444 {K_MIDDLEMOUSE, (char_u *)"MiddleMouse"},
2445 {K_MIDDLEDRAG, (char_u *)"MiddleDrag"},
2446 {K_MIDDLERELEASE, (char_u *)"MiddleRelease"},
2447 {K_RIGHTMOUSE, (char_u *)"RightMouse"},
2448 {K_RIGHTDRAG, (char_u *)"RightDrag"},
2449 {K_RIGHTRELEASE, (char_u *)"RightRelease"},
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02002450 {K_MOUSEDOWN, (char_u *)"ScrollWheelUp"},
2451 {K_MOUSEUP, (char_u *)"ScrollWheelDown"},
2452 {K_MOUSELEFT, (char_u *)"ScrollWheelRight"},
2453 {K_MOUSERIGHT, (char_u *)"ScrollWheelLeft"},
2454 {K_MOUSEDOWN, (char_u *)"MouseDown"}, /* OBSOLETE: Use */
2455 {K_MOUSEUP, (char_u *)"MouseUp"}, /* ScrollWheelXXX instead */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002456 {K_X1MOUSE, (char_u *)"X1Mouse"},
2457 {K_X1DRAG, (char_u *)"X1Drag"},
2458 {K_X1RELEASE, (char_u *)"X1Release"},
2459 {K_X2MOUSE, (char_u *)"X2Mouse"},
2460 {K_X2DRAG, (char_u *)"X2Drag"},
2461 {K_X2RELEASE, (char_u *)"X2Release"},
2462 {K_DROP, (char_u *)"Drop"},
2463 {K_ZERO, (char_u *)"Nul"},
2464#ifdef FEAT_EVAL
2465 {K_SNR, (char_u *)"SNR"},
2466#endif
2467 {K_PLUG, (char_u *)"Plug"},
2468 {0, NULL}
2469};
2470
2471#define KEY_NAMES_TABLE_LEN (sizeof(key_names_table) / sizeof(struct key_name_entry))
2472
2473#ifdef FEAT_MOUSE
2474static struct mousetable
2475{
2476 int pseudo_code; /* Code for pseudo mouse event */
2477 int button; /* Which mouse button is it? */
2478 int is_click; /* Is it a mouse button click event? */
2479 int is_drag; /* Is it a mouse drag event? */
2480} mouse_table[] =
2481{
2482 {(int)KE_LEFTMOUSE, MOUSE_LEFT, TRUE, FALSE},
2483#ifdef FEAT_GUI
2484 {(int)KE_LEFTMOUSE_NM, MOUSE_LEFT, TRUE, FALSE},
2485#endif
2486 {(int)KE_LEFTDRAG, MOUSE_LEFT, FALSE, TRUE},
2487 {(int)KE_LEFTRELEASE, MOUSE_LEFT, FALSE, FALSE},
2488#ifdef FEAT_GUI
2489 {(int)KE_LEFTRELEASE_NM, MOUSE_LEFT, FALSE, FALSE},
2490#endif
2491 {(int)KE_MIDDLEMOUSE, MOUSE_MIDDLE, TRUE, FALSE},
2492 {(int)KE_MIDDLEDRAG, MOUSE_MIDDLE, FALSE, TRUE},
2493 {(int)KE_MIDDLERELEASE, MOUSE_MIDDLE, FALSE, FALSE},
2494 {(int)KE_RIGHTMOUSE, MOUSE_RIGHT, TRUE, FALSE},
2495 {(int)KE_RIGHTDRAG, MOUSE_RIGHT, FALSE, TRUE},
2496 {(int)KE_RIGHTRELEASE, MOUSE_RIGHT, FALSE, FALSE},
2497 {(int)KE_X1MOUSE, MOUSE_X1, TRUE, FALSE},
2498 {(int)KE_X1DRAG, MOUSE_X1, FALSE, TRUE},
2499 {(int)KE_X1RELEASE, MOUSE_X1, FALSE, FALSE},
2500 {(int)KE_X2MOUSE, MOUSE_X2, TRUE, FALSE},
2501 {(int)KE_X2DRAG, MOUSE_X2, FALSE, TRUE},
2502 {(int)KE_X2RELEASE, MOUSE_X2, FALSE, FALSE},
2503 /* DRAG without CLICK */
2504 {(int)KE_IGNORE, MOUSE_RELEASE, FALSE, TRUE},
2505 /* RELEASE without CLICK */
2506 {(int)KE_IGNORE, MOUSE_RELEASE, FALSE, FALSE},
2507 {0, 0, 0, 0},
2508};
2509#endif /* FEAT_MOUSE */
2510
2511/*
2512 * Return the modifier mask bit (MOD_MASK_*) which corresponds to the given
2513 * modifier name ('S' for Shift, 'C' for Ctrl etc).
2514 */
2515 int
2516name_to_mod_mask(c)
2517 int c;
2518{
2519 int i;
2520
2521 c = TOUPPER_ASC(c);
2522 for (i = 0; mod_mask_table[i].mod_mask != 0; i++)
2523 if (c == mod_mask_table[i].name)
2524 return mod_mask_table[i].mod_flag;
2525 return 0;
2526}
2527
Bram Moolenaar071d4272004-06-13 20:20:40 +00002528/*
2529 * Check if if there is a special key code for "key" that includes the
2530 * modifiers specified.
2531 */
2532 int
2533simplify_key(key, modifiers)
2534 int key;
2535 int *modifiers;
2536{
2537 int i;
2538 int key0;
2539 int key1;
2540
2541 if (*modifiers & (MOD_MASK_SHIFT | MOD_MASK_CTRL | MOD_MASK_ALT))
2542 {
2543 /* TAB is a special case */
2544 if (key == TAB && (*modifiers & MOD_MASK_SHIFT))
2545 {
2546 *modifiers &= ~MOD_MASK_SHIFT;
2547 return K_S_TAB;
2548 }
2549 key0 = KEY2TERMCAP0(key);
2550 key1 = KEY2TERMCAP1(key);
2551 for (i = 0; modifier_keys_table[i] != NUL; i += MOD_KEYS_ENTRY_SIZE)
2552 if (key0 == modifier_keys_table[i + 3]
2553 && key1 == modifier_keys_table[i + 4]
2554 && (*modifiers & modifier_keys_table[i]))
2555 {
2556 *modifiers &= ~modifier_keys_table[i];
2557 return TERMCAP2KEY(modifier_keys_table[i + 1],
2558 modifier_keys_table[i + 2]);
2559 }
2560 }
2561 return key;
2562}
2563
2564/*
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002565 * Change <xHome> to <Home>, <xUp> to <Up>, etc.
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002566 */
2567 int
2568handle_x_keys(key)
2569 int key;
2570{
2571 switch (key)
2572 {
2573 case K_XUP: return K_UP;
2574 case K_XDOWN: return K_DOWN;
2575 case K_XLEFT: return K_LEFT;
2576 case K_XRIGHT: return K_RIGHT;
2577 case K_XHOME: return K_HOME;
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002578 case K_ZHOME: return K_HOME;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002579 case K_XEND: return K_END;
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002580 case K_ZEND: return K_END;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002581 case K_XF1: return K_F1;
2582 case K_XF2: return K_F2;
2583 case K_XF3: return K_F3;
2584 case K_XF4: return K_F4;
2585 case K_S_XF1: return K_S_F1;
2586 case K_S_XF2: return K_S_F2;
2587 case K_S_XF3: return K_S_F3;
2588 case K_S_XF4: return K_S_F4;
2589 }
2590 return key;
2591}
2592
2593/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002594 * Return a string which contains the name of the given key when the given
2595 * modifiers are down.
2596 */
2597 char_u *
2598get_special_key_name(c, modifiers)
2599 int c;
2600 int modifiers;
2601{
2602 static char_u string[MAX_KEY_NAME_LEN + 1];
2603
2604 int i, idx;
2605 int table_idx;
2606 char_u *s;
2607
2608 string[0] = '<';
2609 idx = 1;
2610
2611 /* Key that stands for a normal character. */
2612 if (IS_SPECIAL(c) && KEY2TERMCAP0(c) == KS_KEY)
2613 c = KEY2TERMCAP1(c);
2614
2615 /*
2616 * Translate shifted special keys into unshifted keys and set modifier.
2617 * Same for CTRL and ALT modifiers.
2618 */
2619 if (IS_SPECIAL(c))
2620 {
2621 for (i = 0; modifier_keys_table[i] != 0; i += MOD_KEYS_ENTRY_SIZE)
2622 if ( KEY2TERMCAP0(c) == (int)modifier_keys_table[i + 1]
2623 && (int)KEY2TERMCAP1(c) == (int)modifier_keys_table[i + 2])
2624 {
2625 modifiers |= modifier_keys_table[i];
2626 c = TERMCAP2KEY(modifier_keys_table[i + 3],
2627 modifier_keys_table[i + 4]);
2628 break;
2629 }
2630 }
2631
2632 /* try to find the key in the special key table */
2633 table_idx = find_special_key_in_table(c);
2634
2635 /*
2636 * When not a known special key, and not a printable character, try to
2637 * extract modifiers.
2638 */
2639 if (c > 0
2640#ifdef FEAT_MBYTE
2641 && (*mb_char2len)(c) == 1
2642#endif
2643 )
2644 {
2645 if (table_idx < 0
2646 && (!vim_isprintc(c) || (c & 0x7f) == ' ')
2647 && (c & 0x80))
2648 {
2649 c &= 0x7f;
2650 modifiers |= MOD_MASK_ALT;
2651 /* try again, to find the un-alted key in the special key table */
2652 table_idx = find_special_key_in_table(c);
2653 }
2654 if (table_idx < 0 && !vim_isprintc(c) && c < ' ')
2655 {
2656#ifdef EBCDIC
2657 c = CtrlChar(c);
2658#else
2659 c += '@';
2660#endif
2661 modifiers |= MOD_MASK_CTRL;
2662 }
2663 }
2664
2665 /* translate the modifier into a string */
2666 for (i = 0; mod_mask_table[i].name != 'A'; i++)
2667 if ((modifiers & mod_mask_table[i].mod_mask)
2668 == mod_mask_table[i].mod_flag)
2669 {
2670 string[idx++] = mod_mask_table[i].name;
2671 string[idx++] = (char_u)'-';
2672 }
2673
2674 if (table_idx < 0) /* unknown special key, may output t_xx */
2675 {
2676 if (IS_SPECIAL(c))
2677 {
2678 string[idx++] = 't';
2679 string[idx++] = '_';
2680 string[idx++] = KEY2TERMCAP0(c);
2681 string[idx++] = KEY2TERMCAP1(c);
2682 }
2683 /* Not a special key, only modifiers, output directly */
2684 else
2685 {
2686#ifdef FEAT_MBYTE
2687 if (has_mbyte && (*mb_char2len)(c) > 1)
2688 idx += (*mb_char2bytes)(c, string + idx);
2689 else
2690#endif
2691 if (vim_isprintc(c))
2692 string[idx++] = c;
2693 else
2694 {
2695 s = transchar(c);
2696 while (*s)
2697 string[idx++] = *s++;
2698 }
2699 }
2700 }
2701 else /* use name of special key */
2702 {
2703 STRCPY(string + idx, key_names_table[table_idx].name);
2704 idx = (int)STRLEN(string);
2705 }
2706 string[idx++] = '>';
2707 string[idx] = NUL;
2708 return string;
2709}
2710
2711/*
2712 * Try translating a <> name at (*srcp)[] to dst[].
2713 * Return the number of characters added to dst[], zero for no match.
2714 * If there is a match, srcp is advanced to after the <> name.
2715 * dst[] must be big enough to hold the result (up to six characters)!
2716 */
2717 int
2718trans_special(srcp, dst, keycode)
2719 char_u **srcp;
2720 char_u *dst;
2721 int keycode; /* prefer key code, e.g. K_DEL instead of DEL */
2722{
2723 int modifiers = 0;
2724 int key;
2725 int dlen = 0;
2726
Bram Moolenaar2a8ced02008-12-24 11:54:31 +00002727 key = find_special_key(srcp, &modifiers, keycode, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002728 if (key == 0)
2729 return 0;
2730
2731 /* Put the appropriate modifier in a string */
2732 if (modifiers != 0)
2733 {
2734 dst[dlen++] = K_SPECIAL;
2735 dst[dlen++] = KS_MODIFIER;
2736 dst[dlen++] = modifiers;
2737 }
2738
2739 if (IS_SPECIAL(key))
2740 {
2741 dst[dlen++] = K_SPECIAL;
2742 dst[dlen++] = KEY2TERMCAP0(key);
2743 dst[dlen++] = KEY2TERMCAP1(key);
2744 }
2745#ifdef FEAT_MBYTE
2746 else if (has_mbyte && !keycode)
2747 dlen += (*mb_char2bytes)(key, dst + dlen);
2748#endif
2749 else if (keycode)
2750 dlen = (int)(add_char2buf(key, dst + dlen) - dst);
2751 else
2752 dst[dlen++] = key;
2753
2754 return dlen;
2755}
2756
2757/*
2758 * Try translating a <> name at (*srcp)[], return the key and modifiers.
2759 * srcp is advanced to after the <> name.
2760 * returns 0 if there is no match.
2761 */
2762 int
Bram Moolenaar2a8ced02008-12-24 11:54:31 +00002763find_special_key(srcp, modp, keycode, keep_x_key)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002764 char_u **srcp;
2765 int *modp;
Bram Moolenaar2a8ced02008-12-24 11:54:31 +00002766 int keycode; /* prefer key code, e.g. K_DEL instead of DEL */
2767 int keep_x_key; /* don't translate xHome to Home key */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002768{
2769 char_u *last_dash;
2770 char_u *end_of_name;
2771 char_u *src;
2772 char_u *bp;
2773 int modifiers;
2774 int bit;
2775 int key;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002776 unsigned long n;
Bram Moolenaarb8bf5412011-08-17 20:33:22 +02002777 int l;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002778
2779 src = *srcp;
2780 if (src[0] != '<')
2781 return 0;
2782
2783 /* Find end of modifier list */
2784 last_dash = src;
2785 for (bp = src + 1; *bp == '-' || vim_isIDc(*bp); bp++)
2786 {
2787 if (*bp == '-')
2788 {
2789 last_dash = bp;
Bram Moolenaarb8bf5412011-08-17 20:33:22 +02002790 if (bp[1] != NUL)
2791 {
2792#ifdef FEAT_MBYTE
2793 if (has_mbyte)
2794 l = mb_ptr2len(bp + 1);
2795 else
2796#endif
2797 l = 1;
2798 if (bp[l + 1] == '>')
2799 bp += l; /* anything accepted, like <C-?> */
2800 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002801 }
2802 if (bp[0] == 't' && bp[1] == '_' && bp[2] && bp[3])
2803 bp += 3; /* skip t_xx, xx may be '-' or '>' */
Bram Moolenaar792826c2011-08-19 22:29:02 +02002804 else if (STRNICMP(bp, "char-", 5) == 0)
2805 {
2806 vim_str2nr(bp + 5, NULL, &l, TRUE, TRUE, NULL, NULL);
2807 bp += l + 5;
2808 break;
2809 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002810 }
2811
2812 if (*bp == '>') /* found matching '>' */
2813 {
2814 end_of_name = bp + 1;
2815
Bram Moolenaar071d4272004-06-13 20:20:40 +00002816 /* Which modifiers are given? */
2817 modifiers = 0x0;
2818 for (bp = src + 1; bp < last_dash; bp++)
2819 {
2820 if (*bp != '-')
2821 {
2822 bit = name_to_mod_mask(*bp);
2823 if (bit == 0x0)
2824 break; /* Illegal modifier name */
2825 modifiers |= bit;
2826 }
2827 }
2828
2829 /*
2830 * Legal modifier name.
2831 */
2832 if (bp >= last_dash)
2833 {
Bram Moolenaarb8bf5412011-08-17 20:33:22 +02002834 if (STRNICMP(last_dash + 1, "char-", 5) == 0
2835 && VIM_ISDIGIT(last_dash[6]))
2836 {
2837 /* <Char-123> or <Char-033> or <Char-0x33> */
2838 vim_str2nr(last_dash + 6, NULL, NULL, TRUE, TRUE, NULL, &n);
Bram Moolenaar792826c2011-08-19 22:29:02 +02002839 key = (int)n;
Bram Moolenaarb8bf5412011-08-17 20:33:22 +02002840 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002841 else
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002842 {
Bram Moolenaar792826c2011-08-19 22:29:02 +02002843 /*
2844 * Modifier with single letter, or special key name.
2845 */
2846#ifdef FEAT_MBYTE
2847 if (has_mbyte)
2848 l = mb_ptr2len(last_dash + 1);
2849 else
2850#endif
2851 l = 1;
2852 if (modifiers != 0 && last_dash[l + 1] == '>')
2853 key = PTR2CHAR(last_dash + 1);
2854 else
2855 {
2856 key = get_special_key_code(last_dash + 1);
2857 if (!keep_x_key)
2858 key = handle_x_keys(key);
2859 }
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002860 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002861
2862 /*
2863 * get_special_key_code() may return NUL for invalid
2864 * special key name.
2865 */
2866 if (key != NUL)
2867 {
2868 /*
2869 * Only use a modifier when there is no special key code that
2870 * includes the modifier.
2871 */
2872 key = simplify_key(key, &modifiers);
2873
2874 if (!keycode)
2875 {
2876 /* don't want keycode, use single byte code */
2877 if (key == K_BS)
2878 key = BS;
2879 else if (key == K_DEL || key == K_KDEL)
2880 key = DEL;
2881 }
2882
2883 /*
2884 * Normal Key with modifier: Try to make a single byte code.
2885 */
2886 if (!IS_SPECIAL(key))
2887 key = extract_modifiers(key, &modifiers);
2888
2889 *modp = modifiers;
2890 *srcp = end_of_name;
2891 return key;
2892 }
2893 }
2894 }
2895 return 0;
2896}
2897
2898/*
2899 * Try to include modifiers in the key.
2900 * Changes "Shift-a" to 'A', "Alt-A" to 0xc0, etc.
2901 */
2902 int
2903extract_modifiers(key, modp)
2904 int key;
2905 int *modp;
2906{
2907 int modifiers = *modp;
2908
2909#ifdef MACOS
2910 /* Command-key really special, No fancynest */
2911 if (!(modifiers & MOD_MASK_CMD))
2912#endif
2913 if ((modifiers & MOD_MASK_SHIFT) && ASCII_ISALPHA(key))
2914 {
2915 key = TOUPPER_ASC(key);
2916 modifiers &= ~MOD_MASK_SHIFT;
2917 }
2918 if ((modifiers & MOD_MASK_CTRL)
2919#ifdef EBCDIC
2920 /* * TODO: EBCDIC Better use:
2921 * && (Ctrl_chr(key) || key == '?')
2922 * ??? */
2923 && strchr("?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_", key)
2924 != NULL
2925#else
2926 && ((key >= '?' && key <= '_') || ASCII_ISALPHA(key))
2927#endif
2928 )
2929 {
2930 key = Ctrl_chr(key);
2931 modifiers &= ~MOD_MASK_CTRL;
2932 /* <C-@> is <Nul> */
2933 if (key == 0)
2934 key = K_ZERO;
2935 }
2936#ifdef MACOS
2937 /* Command-key really special, No fancynest */
2938 if (!(modifiers & MOD_MASK_CMD))
2939#endif
2940 if ((modifiers & MOD_MASK_ALT) && key < 0x80
2941#ifdef FEAT_MBYTE
2942 && !enc_dbcs /* avoid creating a lead byte */
2943#endif
2944 )
2945 {
2946 key |= 0x80;
2947 modifiers &= ~MOD_MASK_ALT; /* remove the META modifier */
2948 }
2949
2950 *modp = modifiers;
2951 return key;
2952}
2953
2954/*
2955 * Try to find key "c" in the special key table.
2956 * Return the index when found, -1 when not found.
2957 */
2958 int
2959find_special_key_in_table(c)
2960 int c;
2961{
2962 int i;
2963
2964 for (i = 0; key_names_table[i].name != NULL; i++)
2965 if (c == key_names_table[i].key)
2966 break;
2967 if (key_names_table[i].name == NULL)
2968 i = -1;
2969 return i;
2970}
2971
2972/*
2973 * Find the special key with the given name (the given string does not have to
2974 * end with NUL, the name is assumed to end before the first non-idchar).
2975 * If the name starts with "t_" the next two characters are interpreted as a
2976 * termcap name.
2977 * Return the key code, or 0 if not found.
2978 */
2979 int
2980get_special_key_code(name)
2981 char_u *name;
2982{
2983 char_u *table_name;
2984 char_u string[3];
2985 int i, j;
2986
2987 /*
2988 * If it's <t_xx> we get the code for xx from the termcap
2989 */
2990 if (name[0] == 't' && name[1] == '_' && name[2] != NUL && name[3] != NUL)
2991 {
2992 string[0] = name[2];
2993 string[1] = name[3];
2994 string[2] = NUL;
2995 if (add_termcap_entry(string, FALSE) == OK)
2996 return TERMCAP2KEY(name[2], name[3]);
2997 }
2998 else
2999 for (i = 0; key_names_table[i].name != NULL; i++)
3000 {
3001 table_name = key_names_table[i].name;
3002 for (j = 0; vim_isIDc(name[j]) && table_name[j] != NUL; j++)
3003 if (TOLOWER_ASC(table_name[j]) != TOLOWER_ASC(name[j]))
3004 break;
3005 if (!vim_isIDc(name[j]) && table_name[j] == NUL)
3006 return key_names_table[i].key;
3007 }
3008 return 0;
3009}
3010
Bram Moolenaar05bb9532008-07-04 09:44:11 +00003011#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003012 char_u *
3013get_key_name(i)
3014 int i;
3015{
Bram Moolenaare1fbddc2009-05-16 19:07:03 +00003016 if (i >= (int)KEY_NAMES_TABLE_LEN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003017 return NULL;
3018 return key_names_table[i].name;
3019}
3020#endif
3021
Bram Moolenaar05bb9532008-07-04 09:44:11 +00003022#if defined(FEAT_MOUSE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003023/*
3024 * Look up the given mouse code to return the relevant information in the other
3025 * arguments. Return which button is down or was released.
3026 */
3027 int
3028get_mouse_button(code, is_click, is_drag)
3029 int code;
3030 int *is_click;
3031 int *is_drag;
3032{
3033 int i;
3034
3035 for (i = 0; mouse_table[i].pseudo_code; i++)
3036 if (code == mouse_table[i].pseudo_code)
3037 {
3038 *is_click = mouse_table[i].is_click;
3039 *is_drag = mouse_table[i].is_drag;
3040 return mouse_table[i].button;
3041 }
3042 return 0; /* Shouldn't get here */
3043}
3044
3045/*
3046 * Return the appropriate pseudo mouse event token (KE_LEFTMOUSE etc) based on
3047 * the given information about which mouse button is down, and whether the
3048 * mouse was clicked, dragged or released.
3049 */
3050 int
3051get_pseudo_mouse_code(button, is_click, is_drag)
3052 int button; /* eg MOUSE_LEFT */
3053 int is_click;
3054 int is_drag;
3055{
3056 int i;
3057
3058 for (i = 0; mouse_table[i].pseudo_code; i++)
3059 if (button == mouse_table[i].button
3060 && is_click == mouse_table[i].is_click
3061 && is_drag == mouse_table[i].is_drag)
3062 {
3063#ifdef FEAT_GUI
Bram Moolenaarc91506a2005-04-24 22:04:21 +00003064 /* Trick: a non mappable left click and release has mouse_col -1
3065 * or added MOUSE_COLOFF. Used for 'mousefocus' in
3066 * gui_mouse_moved() */
3067 if (mouse_col < 0 || mouse_col > MOUSE_COLOFF)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003068 {
Bram Moolenaarc91506a2005-04-24 22:04:21 +00003069 if (mouse_col < 0)
3070 mouse_col = 0;
3071 else
3072 mouse_col -= MOUSE_COLOFF;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003073 if (mouse_table[i].pseudo_code == (int)KE_LEFTMOUSE)
3074 return (int)KE_LEFTMOUSE_NM;
3075 if (mouse_table[i].pseudo_code == (int)KE_LEFTRELEASE)
3076 return (int)KE_LEFTRELEASE_NM;
3077 }
3078#endif
3079 return mouse_table[i].pseudo_code;
3080 }
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00003081 return (int)KE_IGNORE; /* not recognized, ignore it */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003082}
3083#endif /* FEAT_MOUSE */
3084
3085/*
3086 * Return the current end-of-line type: EOL_DOS, EOL_UNIX or EOL_MAC.
3087 */
3088 int
3089get_fileformat(buf)
3090 buf_T *buf;
3091{
3092 int c = *buf->b_p_ff;
3093
3094 if (buf->b_p_bin || c == 'u')
3095 return EOL_UNIX;
3096 if (c == 'm')
3097 return EOL_MAC;
3098 return EOL_DOS;
3099}
3100
3101/*
3102 * Like get_fileformat(), but override 'fileformat' with "p" for "++opt=val"
3103 * argument.
3104 */
3105 int
3106get_fileformat_force(buf, eap)
3107 buf_T *buf;
3108 exarg_T *eap; /* can be NULL! */
3109{
3110 int c;
3111
3112 if (eap != NULL && eap->force_ff != 0)
3113 c = eap->cmd[eap->force_ff];
3114 else
3115 {
3116 if ((eap != NULL && eap->force_bin != 0)
3117 ? (eap->force_bin == FORCE_BIN) : buf->b_p_bin)
3118 return EOL_UNIX;
3119 c = *buf->b_p_ff;
3120 }
3121 if (c == 'u')
3122 return EOL_UNIX;
3123 if (c == 'm')
3124 return EOL_MAC;
3125 return EOL_DOS;
3126}
3127
3128/*
3129 * Set the current end-of-line type to EOL_DOS, EOL_UNIX or EOL_MAC.
3130 * Sets both 'textmode' and 'fileformat'.
3131 * Note: Does _not_ set global value of 'textmode'!
3132 */
3133 void
3134set_fileformat(t, opt_flags)
3135 int t;
3136 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
3137{
3138 char *p = NULL;
3139
3140 switch (t)
3141 {
3142 case EOL_DOS:
3143 p = FF_DOS;
3144 curbuf->b_p_tx = TRUE;
3145 break;
3146 case EOL_UNIX:
3147 p = FF_UNIX;
3148 curbuf->b_p_tx = FALSE;
3149 break;
3150 case EOL_MAC:
3151 p = FF_MAC;
3152 curbuf->b_p_tx = FALSE;
3153 break;
3154 }
3155 if (p != NULL)
3156 set_string_option_direct((char_u *)"ff", -1, (char_u *)p,
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00003157 OPT_FREE | opt_flags, 0);
3158
Bram Moolenaar071d4272004-06-13 20:20:40 +00003159#ifdef FEAT_WINDOWS
Bram Moolenaarf740b292006-02-16 22:11:02 +00003160 /* This may cause the buffer to become (un)modified. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003161 check_status(curbuf);
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00003162 redraw_tabline = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003163#endif
3164#ifdef FEAT_TITLE
3165 need_maketitle = TRUE; /* set window title later */
3166#endif
3167}
3168
3169/*
3170 * Return the default fileformat from 'fileformats'.
3171 */
3172 int
3173default_fileformat()
3174{
3175 switch (*p_ffs)
3176 {
3177 case 'm': return EOL_MAC;
3178 case 'd': return EOL_DOS;
3179 }
3180 return EOL_UNIX;
3181}
3182
3183/*
3184 * Call shell. Calls mch_call_shell, with 'shellxquote' added.
3185 */
3186 int
3187call_shell(cmd, opt)
3188 char_u *cmd;
3189 int opt;
3190{
3191 char_u *ncmd;
3192 int retval;
Bram Moolenaar05159a02005-02-26 23:04:13 +00003193#ifdef FEAT_PROFILE
3194 proftime_T wait_time;
3195#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003196
3197 if (p_verbose > 3)
3198 {
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00003199 verbose_enter();
Bram Moolenaar051b7822005-05-19 21:00:46 +00003200 smsg((char_u *)_("Calling shell to execute: \"%s\""),
Bram Moolenaar071d4272004-06-13 20:20:40 +00003201 cmd == NULL ? p_sh : cmd);
3202 out_char('\n');
3203 cursor_on();
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00003204 verbose_leave();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003205 }
3206
Bram Moolenaar05159a02005-02-26 23:04:13 +00003207#ifdef FEAT_PROFILE
Bram Moolenaar01265852006-03-20 21:50:15 +00003208 if (do_profiling == PROF_YES)
Bram Moolenaar05159a02005-02-26 23:04:13 +00003209 prof_child_enter(&wait_time);
3210#endif
3211
Bram Moolenaar071d4272004-06-13 20:20:40 +00003212 if (*p_sh == NUL)
3213 {
3214 EMSG(_(e_shellempty));
3215 retval = -1;
3216 }
3217 else
3218 {
3219#ifdef FEAT_GUI_MSWIN
3220 /* Don't hide the pointer while executing a shell command. */
3221 gui_mch_mousehide(FALSE);
3222#endif
3223#ifdef FEAT_GUI
3224 ++hold_gui_events;
3225#endif
3226 /* The external command may update a tags file, clear cached tags. */
3227 tag_freematch();
3228
3229 if (cmd == NULL || *p_sxq == NUL)
3230 retval = mch_call_shell(cmd, opt);
3231 else
3232 {
Bram Moolenaarf66b3fc2012-02-20 22:18:30 +01003233 char_u *ecmd = cmd;
3234
3235 if (*p_sxe != NUL && STRCMP(p_sxq, "(") == 0)
3236 {
3237 ecmd = vim_strsave_escaped_ext(cmd, p_sxe, '^', FALSE);
3238 if (ecmd == NULL)
3239 ecmd = cmd;
3240 }
3241 ncmd = alloc((unsigned)(STRLEN(ecmd) + STRLEN(p_sxq) * 2 + 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003242 if (ncmd != NULL)
3243 {
3244 STRCPY(ncmd, p_sxq);
Bram Moolenaarf66b3fc2012-02-20 22:18:30 +01003245 STRCAT(ncmd, ecmd);
Bram Moolenaar034b1152012-02-19 18:19:30 +01003246 /* When 'shellxquote' is ( append ).
3247 * When 'shellxquote' is "( append )". */
3248 STRCAT(ncmd, STRCMP(p_sxq, "(") == 0 ? (char_u *)")"
3249 : STRCMP(p_sxq, "\"(") == 0 ? (char_u *)")\""
3250 : p_sxq);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003251 retval = mch_call_shell(ncmd, opt);
3252 vim_free(ncmd);
3253 }
3254 else
3255 retval = -1;
Bram Moolenaarf66b3fc2012-02-20 22:18:30 +01003256 if (ecmd != cmd)
3257 vim_free(ecmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003258 }
3259#ifdef FEAT_GUI
3260 --hold_gui_events;
3261#endif
3262 /*
3263 * Check the window size, in case it changed while executing the
3264 * external command.
3265 */
3266 shell_resized_check();
3267 }
3268
3269#ifdef FEAT_EVAL
3270 set_vim_var_nr(VV_SHELL_ERROR, (long)retval);
Bram Moolenaar05159a02005-02-26 23:04:13 +00003271# ifdef FEAT_PROFILE
Bram Moolenaar01265852006-03-20 21:50:15 +00003272 if (do_profiling == PROF_YES)
Bram Moolenaar05159a02005-02-26 23:04:13 +00003273 prof_child_exit(&wait_time);
3274# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003275#endif
3276
3277 return retval;
3278}
3279
3280/*
Bram Moolenaar01265852006-03-20 21:50:15 +00003281 * VISUAL, SELECTMODE and OP_PENDING State are never set, they are equal to
3282 * NORMAL State with a condition. This function returns the real State.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003283 */
3284 int
3285get_real_state()
3286{
3287 if (State & NORMAL)
3288 {
3289#ifdef FEAT_VISUAL
3290 if (VIsual_active)
Bram Moolenaar01265852006-03-20 21:50:15 +00003291 {
3292 if (VIsual_select)
3293 return SELECTMODE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003294 return VISUAL;
Bram Moolenaar01265852006-03-20 21:50:15 +00003295 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003296 else
3297#endif
3298 if (finish_op)
Bram Moolenaar01265852006-03-20 21:50:15 +00003299 return OP_PENDING;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003300 }
3301 return State;
3302}
3303
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003304#if defined(FEAT_MBYTE) || defined(PROTO)
3305/*
3306 * Return TRUE if "p" points to just after a path separator.
Bram Moolenaarb5ce04d2011-07-07 17:15:33 +02003307 * Takes care of multi-byte characters.
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003308 * "b" must point to the start of the file name
3309 */
3310 int
3311after_pathsep(b, p)
3312 char_u *b;
3313 char_u *p;
3314{
Bram Moolenaarb5ce04d2011-07-07 17:15:33 +02003315 return p > b && vim_ispathsep(p[-1])
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003316 && (!has_mbyte || (*mb_head_off)(b, p - 1) == 0);
3317}
3318#endif
3319
3320/*
3321 * Return TRUE if file names "f1" and "f2" are in the same directory.
3322 * "f1" may be a short name, "f2" must be a full path.
3323 */
3324 int
3325same_directory(f1, f2)
3326 char_u *f1;
3327 char_u *f2;
3328{
3329 char_u ffname[MAXPATHL];
3330 char_u *t1;
3331 char_u *t2;
3332
3333 /* safety check */
3334 if (f1 == NULL || f2 == NULL)
3335 return FALSE;
3336
3337 (void)vim_FullName(f1, ffname, MAXPATHL, FALSE);
3338 t1 = gettail_sep(ffname);
3339 t2 = gettail_sep(f2);
3340 return (t1 - ffname == t2 - f2
3341 && pathcmp((char *)ffname, (char *)f2, (int)(t1 - ffname)) == 0);
3342}
3343
Bram Moolenaar071d4272004-06-13 20:20:40 +00003344#if defined(FEAT_SESSION) || defined(MSWIN) || defined(FEAT_GUI_MAC) \
Bram Moolenaar9372a112005-12-06 19:59:18 +00003345 || ((defined(FEAT_GUI_GTK)) \
Bram Moolenaar843ee412004-06-30 16:16:41 +00003346 && ( defined(FEAT_WINDOWS) || defined(FEAT_DND)) ) \
Bram Moolenaar071d4272004-06-13 20:20:40 +00003347 || defined(FEAT_SUN_WORKSHOP) || defined(FEAT_NETBEANS_INTG) \
3348 || defined(PROTO)
3349/*
3350 * Change to a file's directory.
3351 * Caller must call shorten_fnames()!
3352 * Return OK or FAIL.
3353 */
3354 int
3355vim_chdirfile(fname)
3356 char_u *fname;
3357{
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003358 char_u dir[MAXPATHL];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003359
Bram Moolenaarbbebc852005-07-18 21:47:53 +00003360 vim_strncpy(dir, fname, MAXPATHL - 1);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003361 *gettail_sep(dir) = NUL;
3362 return mch_chdir((char *)dir) == 0 ? OK : FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003363}
3364#endif
3365
3366#if defined(STAT_IGNORES_SLASH) || defined(PROTO)
3367/*
3368 * Check if "name" ends in a slash and is not a directory.
3369 * Used for systems where stat() ignores a trailing slash on a file name.
3370 * The Vim code assumes a trailing slash is only ignored for a directory.
3371 */
3372 int
3373illegal_slash(name)
3374 char *name;
3375{
3376 if (name[0] == NUL)
3377 return FALSE; /* no file name is not illegal */
3378 if (name[strlen(name) - 1] != '/')
3379 return FALSE; /* no trailing slash */
3380 if (mch_isdir((char_u *)name))
3381 return FALSE; /* trailing slash for a directory */
3382 return TRUE;
3383}
3384#endif
3385
3386#if defined(CURSOR_SHAPE) || defined(PROTO)
3387
3388/*
3389 * Handling of cursor and mouse pointer shapes in various modes.
3390 */
3391
3392cursorentry_T shape_table[SHAPE_IDX_COUNT] =
3393{
3394 /* The values will be filled in from the 'guicursor' and 'mouseshape'
3395 * defaults when Vim starts.
3396 * Adjust the SHAPE_IDX_ defines when making changes! */
3397 {0, 0, 0, 700L, 400L, 250L, 0, 0, "n", SHAPE_CURSOR+SHAPE_MOUSE},
3398 {0, 0, 0, 700L, 400L, 250L, 0, 0, "v", SHAPE_CURSOR+SHAPE_MOUSE},
3399 {0, 0, 0, 700L, 400L, 250L, 0, 0, "i", SHAPE_CURSOR+SHAPE_MOUSE},
3400 {0, 0, 0, 700L, 400L, 250L, 0, 0, "r", SHAPE_CURSOR+SHAPE_MOUSE},
3401 {0, 0, 0, 700L, 400L, 250L, 0, 0, "c", SHAPE_CURSOR+SHAPE_MOUSE},
3402 {0, 0, 0, 700L, 400L, 250L, 0, 0, "ci", SHAPE_CURSOR+SHAPE_MOUSE},
3403 {0, 0, 0, 700L, 400L, 250L, 0, 0, "cr", SHAPE_CURSOR+SHAPE_MOUSE},
3404 {0, 0, 0, 700L, 400L, 250L, 0, 0, "o", SHAPE_CURSOR+SHAPE_MOUSE},
3405 {0, 0, 0, 700L, 400L, 250L, 0, 0, "ve", SHAPE_CURSOR+SHAPE_MOUSE},
3406 {0, 0, 0, 0L, 0L, 0L, 0, 0, "e", SHAPE_MOUSE},
3407 {0, 0, 0, 0L, 0L, 0L, 0, 0, "s", SHAPE_MOUSE},
3408 {0, 0, 0, 0L, 0L, 0L, 0, 0, "sd", SHAPE_MOUSE},
3409 {0, 0, 0, 0L, 0L, 0L, 0, 0, "vs", SHAPE_MOUSE},
3410 {0, 0, 0, 0L, 0L, 0L, 0, 0, "vd", SHAPE_MOUSE},
3411 {0, 0, 0, 0L, 0L, 0L, 0, 0, "m", SHAPE_MOUSE},
3412 {0, 0, 0, 0L, 0L, 0L, 0, 0, "ml", SHAPE_MOUSE},
3413 {0, 0, 0, 100L, 100L, 100L, 0, 0, "sm", SHAPE_CURSOR},
3414};
3415
3416#ifdef FEAT_MOUSESHAPE
3417/*
3418 * Table with names for mouse shapes. Keep in sync with all the tables for
3419 * mch_set_mouse_shape()!.
3420 */
3421static char * mshape_names[] =
3422{
3423 "arrow", /* default, must be the first one */
3424 "blank", /* hidden */
3425 "beam",
3426 "updown",
3427 "udsizing",
3428 "leftright",
3429 "lrsizing",
3430 "busy",
3431 "no",
3432 "crosshair",
3433 "hand1",
3434 "hand2",
3435 "pencil",
3436 "question",
3437 "rightup-arrow",
3438 "up-arrow",
3439 NULL
3440};
3441#endif
3442
3443/*
3444 * Parse the 'guicursor' option ("what" is SHAPE_CURSOR) or 'mouseshape'
3445 * ("what" is SHAPE_MOUSE).
3446 * Returns error message for an illegal option, NULL otherwise.
3447 */
3448 char_u *
3449parse_shape_opt(what)
3450 int what;
3451{
3452 char_u *modep;
3453 char_u *colonp;
3454 char_u *commap;
3455 char_u *slashp;
3456 char_u *p, *endp;
3457 int idx = 0; /* init for GCC */
3458 int all_idx;
3459 int len;
3460 int i;
3461 long n;
3462 int found_ve = FALSE; /* found "ve" flag */
3463 int round;
3464
3465 /*
3466 * First round: check for errors; second round: do it for real.
3467 */
3468 for (round = 1; round <= 2; ++round)
3469 {
3470 /*
3471 * Repeat for all comma separated parts.
3472 */
3473#ifdef FEAT_MOUSESHAPE
3474 if (what == SHAPE_MOUSE)
3475 modep = p_mouseshape;
3476 else
3477#endif
3478 modep = p_guicursor;
3479 while (*modep != NUL)
3480 {
3481 colonp = vim_strchr(modep, ':');
3482 if (colonp == NULL)
3483 return (char_u *)N_("E545: Missing colon");
3484 if (colonp == modep)
3485 return (char_u *)N_("E546: Illegal mode");
3486 commap = vim_strchr(modep, ',');
3487
3488 /*
3489 * Repeat for all mode's before the colon.
3490 * For the 'a' mode, we loop to handle all the modes.
3491 */
3492 all_idx = -1;
3493 while (modep < colonp || all_idx >= 0)
3494 {
3495 if (all_idx < 0)
3496 {
3497 /* Find the mode. */
3498 if (modep[1] == '-' || modep[1] == ':')
3499 len = 1;
3500 else
3501 len = 2;
3502 if (len == 1 && TOLOWER_ASC(modep[0]) == 'a')
3503 all_idx = SHAPE_IDX_COUNT - 1;
3504 else
3505 {
3506 for (idx = 0; idx < SHAPE_IDX_COUNT; ++idx)
3507 if (STRNICMP(modep, shape_table[idx].name, len)
3508 == 0)
3509 break;
3510 if (idx == SHAPE_IDX_COUNT
3511 || (shape_table[idx].used_for & what) == 0)
3512 return (char_u *)N_("E546: Illegal mode");
3513 if (len == 2 && modep[0] == 'v' && modep[1] == 'e')
3514 found_ve = TRUE;
3515 }
3516 modep += len + 1;
3517 }
3518
3519 if (all_idx >= 0)
3520 idx = all_idx--;
3521 else if (round == 2)
3522 {
3523#ifdef FEAT_MOUSESHAPE
3524 if (what == SHAPE_MOUSE)
3525 {
3526 /* Set the default, for the missing parts */
3527 shape_table[idx].mshape = 0;
3528 }
3529 else
3530#endif
3531 {
3532 /* Set the defaults, for the missing parts */
3533 shape_table[idx].shape = SHAPE_BLOCK;
3534 shape_table[idx].blinkwait = 700L;
3535 shape_table[idx].blinkon = 400L;
3536 shape_table[idx].blinkoff = 250L;
3537 }
3538 }
3539
3540 /* Parse the part after the colon */
3541 for (p = colonp + 1; *p && *p != ','; )
3542 {
3543#ifdef FEAT_MOUSESHAPE
3544 if (what == SHAPE_MOUSE)
3545 {
3546 for (i = 0; ; ++i)
3547 {
3548 if (mshape_names[i] == NULL)
3549 {
3550 if (!VIM_ISDIGIT(*p))
3551 return (char_u *)N_("E547: Illegal mouseshape");
3552 if (round == 2)
3553 shape_table[idx].mshape =
3554 getdigits(&p) + MSHAPE_NUMBERED;
3555 else
3556 (void)getdigits(&p);
3557 break;
3558 }
3559 len = (int)STRLEN(mshape_names[i]);
3560 if (STRNICMP(p, mshape_names[i], len) == 0)
3561 {
3562 if (round == 2)
3563 shape_table[idx].mshape = i;
3564 p += len;
3565 break;
3566 }
3567 }
3568 }
3569 else /* if (what == SHAPE_MOUSE) */
3570#endif
3571 {
3572 /*
3573 * First handle the ones with a number argument.
3574 */
3575 i = *p;
3576 len = 0;
3577 if (STRNICMP(p, "ver", 3) == 0)
3578 len = 3;
3579 else if (STRNICMP(p, "hor", 3) == 0)
3580 len = 3;
3581 else if (STRNICMP(p, "blinkwait", 9) == 0)
3582 len = 9;
3583 else if (STRNICMP(p, "blinkon", 7) == 0)
3584 len = 7;
3585 else if (STRNICMP(p, "blinkoff", 8) == 0)
3586 len = 8;
3587 if (len != 0)
3588 {
3589 p += len;
3590 if (!VIM_ISDIGIT(*p))
3591 return (char_u *)N_("E548: digit expected");
3592 n = getdigits(&p);
3593 if (len == 3) /* "ver" or "hor" */
3594 {
3595 if (n == 0)
3596 return (char_u *)N_("E549: Illegal percentage");
3597 if (round == 2)
3598 {
3599 if (TOLOWER_ASC(i) == 'v')
3600 shape_table[idx].shape = SHAPE_VER;
3601 else
3602 shape_table[idx].shape = SHAPE_HOR;
3603 shape_table[idx].percentage = n;
3604 }
3605 }
3606 else if (round == 2)
3607 {
3608 if (len == 9)
3609 shape_table[idx].blinkwait = n;
3610 else if (len == 7)
3611 shape_table[idx].blinkon = n;
3612 else
3613 shape_table[idx].blinkoff = n;
3614 }
3615 }
3616 else if (STRNICMP(p, "block", 5) == 0)
3617 {
3618 if (round == 2)
3619 shape_table[idx].shape = SHAPE_BLOCK;
3620 p += 5;
3621 }
3622 else /* must be a highlight group name then */
3623 {
3624 endp = vim_strchr(p, '-');
3625 if (commap == NULL) /* last part */
3626 {
3627 if (endp == NULL)
3628 endp = p + STRLEN(p); /* find end of part */
3629 }
3630 else if (endp > commap || endp == NULL)
3631 endp = commap;
3632 slashp = vim_strchr(p, '/');
3633 if (slashp != NULL && slashp < endp)
3634 {
3635 /* "group/langmap_group" */
3636 i = syn_check_group(p, (int)(slashp - p));
3637 p = slashp + 1;
3638 }
3639 if (round == 2)
3640 {
3641 shape_table[idx].id = syn_check_group(p,
3642 (int)(endp - p));
3643 shape_table[idx].id_lm = shape_table[idx].id;
3644 if (slashp != NULL && slashp < endp)
3645 shape_table[idx].id = i;
3646 }
3647 p = endp;
3648 }
3649 } /* if (what != SHAPE_MOUSE) */
3650
3651 if (*p == '-')
3652 ++p;
3653 }
3654 }
3655 modep = p;
3656 if (*modep == ',')
3657 ++modep;
3658 }
3659 }
3660
3661 /* If the 's' flag is not given, use the 'v' cursor for 's' */
3662 if (!found_ve)
3663 {
3664#ifdef FEAT_MOUSESHAPE
3665 if (what == SHAPE_MOUSE)
3666 {
3667 shape_table[SHAPE_IDX_VE].mshape = shape_table[SHAPE_IDX_V].mshape;
3668 }
3669 else
3670#endif
3671 {
3672 shape_table[SHAPE_IDX_VE].shape = shape_table[SHAPE_IDX_V].shape;
3673 shape_table[SHAPE_IDX_VE].percentage =
3674 shape_table[SHAPE_IDX_V].percentage;
3675 shape_table[SHAPE_IDX_VE].blinkwait =
3676 shape_table[SHAPE_IDX_V].blinkwait;
3677 shape_table[SHAPE_IDX_VE].blinkon =
3678 shape_table[SHAPE_IDX_V].blinkon;
3679 shape_table[SHAPE_IDX_VE].blinkoff =
3680 shape_table[SHAPE_IDX_V].blinkoff;
3681 shape_table[SHAPE_IDX_VE].id = shape_table[SHAPE_IDX_V].id;
3682 shape_table[SHAPE_IDX_VE].id_lm = shape_table[SHAPE_IDX_V].id_lm;
3683 }
3684 }
3685
3686 return NULL;
3687}
3688
Bram Moolenaarac6e65f2005-08-29 22:25:38 +00003689# if defined(MCH_CURSOR_SHAPE) || defined(FEAT_GUI) \
3690 || defined(FEAT_MOUSESHAPE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003691/*
3692 * Return the index into shape_table[] for the current mode.
3693 * When "mouse" is TRUE, consider indexes valid for the mouse pointer.
3694 */
3695 int
3696get_shape_idx(mouse)
3697 int mouse;
3698{
3699#ifdef FEAT_MOUSESHAPE
3700 if (mouse && (State == HITRETURN || State == ASKMORE))
3701 {
3702# ifdef FEAT_GUI
Bram Moolenaar9588a0f2005-01-08 21:45:39 +00003703 int x, y;
3704 gui_mch_getmouse(&x, &y);
3705 if (Y_2_ROW(y) == Rows - 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003706 return SHAPE_IDX_MOREL;
3707# endif
3708 return SHAPE_IDX_MORE;
3709 }
3710 if (mouse && drag_status_line)
3711 return SHAPE_IDX_SDRAG;
3712# ifdef FEAT_VERTSPLIT
3713 if (mouse && drag_sep_line)
3714 return SHAPE_IDX_VDRAG;
3715# endif
3716#endif
3717 if (!mouse && State == SHOWMATCH)
3718 return SHAPE_IDX_SM;
3719#ifdef FEAT_VREPLACE
3720 if (State & VREPLACE_FLAG)
3721 return SHAPE_IDX_R;
3722#endif
3723 if (State & REPLACE_FLAG)
3724 return SHAPE_IDX_R;
3725 if (State & INSERT)
3726 return SHAPE_IDX_I;
3727 if (State & CMDLINE)
3728 {
3729 if (cmdline_at_end())
3730 return SHAPE_IDX_C;
3731 if (cmdline_overstrike())
3732 return SHAPE_IDX_CR;
3733 return SHAPE_IDX_CI;
3734 }
3735 if (finish_op)
3736 return SHAPE_IDX_O;
3737#ifdef FEAT_VISUAL
3738 if (VIsual_active)
3739 {
3740 if (*p_sel == 'e')
3741 return SHAPE_IDX_VE;
3742 else
3743 return SHAPE_IDX_V;
3744 }
3745#endif
3746 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
3806#ifdef FEAT_CRYPT
3807/*
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00003808 * Optional encryption support.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003809 * Mohsin Ahmed, mosh@sasi.com, 98-09-24
3810 * Based on zip/crypt sources.
3811 *
3812 * NOTE FOR USA: Since 2000 exporting this code from the USA is allowed to
3813 * most countries. There are a few exceptions, but that still should not be a
3814 * problem since this code was originally created in Europe and India.
Bram Moolenaar40e6a712010-05-16 22:32:54 +02003815 *
3816 * Blowfish addition originally made by Mohsin Ahmed,
3817 * http://www.cs.albany.edu/~mosh 2010-03-14
3818 * Based on blowfish by Bruce Schneier (http://www.schneier.com/blowfish.html)
3819 * and sha256 by Christophe Devine.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003820 */
3821
3822/* from zip.h */
3823
3824typedef unsigned short ush; /* unsigned 16-bit value */
3825typedef unsigned long ulg; /* unsigned 32-bit value */
3826
3827static void make_crc_tab __ARGS((void));
3828
Bram Moolenaard6f676d2005-06-01 21:51:55 +00003829static ulg crc_32_tab[256];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003830
3831/*
3832 * Fill the CRC table.
3833 */
3834 static void
3835make_crc_tab()
3836{
3837 ulg s,t,v;
3838 static int done = FALSE;
3839
3840 if (done)
3841 return;
3842 for (t = 0; t < 256; t++)
3843 {
3844 v = t;
3845 for (s = 0; s < 8; s++)
3846 v = (v >> 1) ^ ((v & 1) * (ulg)0xedb88320L);
3847 crc_32_tab[t] = v;
3848 }
3849 done = TRUE;
3850}
3851
3852#define CRC32(c, b) (crc_32_tab[((int)(c) ^ (b)) & 0xff] ^ ((c) >> 8))
3853
Bram Moolenaar071d4272004-06-13 20:20:40 +00003854static ulg keys[3]; /* keys defining the pseudo-random sequence */
3855
3856/*
Bram Moolenaar04c9baf2010-06-01 23:37:39 +02003857 * Return the next byte in the pseudo-random sequence.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003858 */
Bram Moolenaar04c9baf2010-06-01 23:37:39 +02003859#define DECRYPT_BYTE_ZIP(t) { \
3860 ush temp; \
3861 \
3862 temp = (ush)keys[2] | 2; \
Bram Moolenaar97d4ea72012-11-28 18:31:54 +01003863 t = (int)(((unsigned)(temp * (temp ^ 1U)) >> 8) & 0xff); \
Bram Moolenaar071d4272004-06-13 20:20:40 +00003864}
3865
3866/*
Bram Moolenaar04c9baf2010-06-01 23:37:39 +02003867 * Update the encryption keys with the next byte of plain text.
3868 */
3869#define UPDATE_KEYS_ZIP(c) { \
3870 keys[0] = CRC32(keys[0], (c)); \
3871 keys[1] += keys[0] & 0xff; \
3872 keys[1] = keys[1] * 134775813L + 1; \
3873 keys[2] = CRC32(keys[2], (int)(keys[1] >> 24)); \
3874}
3875
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02003876static int crypt_busy = 0;
3877static ulg saved_keys[3];
3878static int saved_crypt_method;
3879
3880/*
Bram Moolenaar49771f42010-07-20 17:32:38 +02003881 * Return int value for crypt method string:
3882 * 0 for "zip", the old method. Also for any non-valid value.
3883 * 1 for "blowfish".
3884 */
3885 int
3886crypt_method_from_string(s)
3887 char_u *s;
3888{
3889 return *s == 'b' ? 1 : 0;
3890}
3891
3892/*
3893 * Get the crypt method for buffer "buf" as a number.
3894 */
3895 int
3896get_crypt_method(buf)
3897 buf_T *buf;
3898{
3899 return crypt_method_from_string(*buf->b_p_cm == NUL ? p_cm : buf->b_p_cm);
3900}
3901
3902/*
3903 * Set the crypt method for buffer "buf" to "method" using the int value as
3904 * returned by crypt_method_from_string().
3905 */
3906 void
3907set_crypt_method(buf, method)
3908 buf_T *buf;
3909 int method;
3910{
3911 free_string_option(buf->b_p_cm);
3912 buf->b_p_cm = vim_strsave((char_u *)(method == 0 ? "zip" : "blowfish"));
3913}
3914
3915/*
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02003916 * Prepare for initializing encryption. If already doing encryption then save
3917 * the state.
Bram Moolenaar2f1e0502010-08-13 11:18:02 +02003918 * Must always be called symmetrically with crypt_pop_state().
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02003919 */
3920 void
3921crypt_push_state()
3922{
3923 if (crypt_busy == 1)
3924 {
3925 /* save the state */
3926 if (use_crypt_method == 0)
3927 {
3928 saved_keys[0] = keys[0];
3929 saved_keys[1] = keys[1];
3930 saved_keys[2] = keys[2];
3931 }
3932 else
3933 bf_crypt_save();
3934 saved_crypt_method = use_crypt_method;
3935 }
3936 else if (crypt_busy > 1)
3937 EMSG2(_(e_intern2), "crypt_push_state()");
3938 ++crypt_busy;
3939}
3940
3941/*
3942 * End encryption. If doing encryption before crypt_push_state() then restore
3943 * the saved state.
Bram Moolenaar2f1e0502010-08-13 11:18:02 +02003944 * Must always be called symmetrically with crypt_push_state().
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02003945 */
3946 void
3947crypt_pop_state()
3948{
3949 --crypt_busy;
3950 if (crypt_busy == 1)
3951 {
3952 use_crypt_method = saved_crypt_method;
3953 if (use_crypt_method == 0)
3954 {
3955 keys[0] = saved_keys[0];
3956 keys[1] = saved_keys[1];
3957 keys[2] = saved_keys[2];
3958 }
3959 else
3960 bf_crypt_restore();
3961 }
3962}
3963
Bram Moolenaar04c9baf2010-06-01 23:37:39 +02003964/*
3965 * Encrypt "from[len]" into "to[len]".
3966 * "from" and "to" can be equal to encrypt in place.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003967 */
Bram Moolenaar40e6a712010-05-16 22:32:54 +02003968 void
Bram Moolenaar04c9baf2010-06-01 23:37:39 +02003969crypt_encode(from, len, to)
3970 char_u *from;
3971 size_t len;
3972 char_u *to;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003973{
Bram Moolenaar04c9baf2010-06-01 23:37:39 +02003974 size_t i;
3975 int ztemp, t;
3976
3977 if (use_crypt_method == 0)
3978 for (i = 0; i < len; ++i)
3979 {
3980 ztemp = from[i];
3981 DECRYPT_BYTE_ZIP(t);
3982 UPDATE_KEYS_ZIP(ztemp);
3983 to[i] = t ^ ztemp;
3984 }
Bram Moolenaar40e6a712010-05-16 22:32:54 +02003985 else
Bram Moolenaarbbd6afe2010-06-02 20:32:23 +02003986 bf_crypt_encode(from, len, to);
Bram Moolenaar04c9baf2010-06-01 23:37:39 +02003987}
3988
3989/*
3990 * Decrypt "ptr[len]" in place.
3991 */
3992 void
3993crypt_decode(ptr, len)
3994 char_u *ptr;
3995 long len;
3996{
3997 char_u *p;
3998
3999 if (use_crypt_method == 0)
4000 for (p = ptr; p < ptr + len; ++p)
4001 {
4002 ush temp;
4003
4004 temp = (ush)keys[2] | 2;
Bram Moolenaar97d4ea72012-11-28 18:31:54 +01004005 temp = (int)(((unsigned)(temp * (temp ^ 1U)) >> 8) & 0xff);
Bram Moolenaar04c9baf2010-06-01 23:37:39 +02004006 UPDATE_KEYS_ZIP(*p ^= temp);
4007 }
4008 else
Bram Moolenaarbbd6afe2010-06-02 20:32:23 +02004009 bf_crypt_decode(ptr, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004010}
4011
4012/*
4013 * Initialize the encryption keys and the random header according to
4014 * the given password.
4015 * If "passwd" is NULL or empty, don't do anything.
4016 */
4017 void
4018crypt_init_keys(passwd)
4019 char_u *passwd; /* password string with which to modify keys */
4020{
4021 if (passwd != NULL && *passwd != NUL)
4022 {
Bram Moolenaar04c9baf2010-06-01 23:37:39 +02004023 if (use_crypt_method == 0)
Bram Moolenaarbbd6afe2010-06-02 20:32:23 +02004024 {
4025 char_u *p;
4026
4027 make_crc_tab();
4028 keys[0] = 305419896L;
4029 keys[1] = 591751049L;
4030 keys[2] = 878082192L;
4031 for (p = passwd; *p!= NUL; ++p)
Bram Moolenaar04c9baf2010-06-01 23:37:39 +02004032 {
Bram Moolenaarbbd6afe2010-06-02 20:32:23 +02004033 UPDATE_KEYS_ZIP((int)*p);
Bram Moolenaar04c9baf2010-06-01 23:37:39 +02004034 }
Bram Moolenaarbbd6afe2010-06-02 20:32:23 +02004035 }
Bram Moolenaar04c9baf2010-06-01 23:37:39 +02004036 else
Bram Moolenaarbbd6afe2010-06-02 20:32:23 +02004037 bf_crypt_init_keys(passwd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004038 }
4039}
4040
4041/*
Bram Moolenaar40e6a712010-05-16 22:32:54 +02004042 * Free an allocated crypt key. Clear the text to make sure it doesn't stay
4043 * in memory anywhere.
4044 */
4045 void
4046free_crypt_key(key)
4047 char_u *key;
4048{
4049 char_u *p;
4050
4051 if (key != NULL)
4052 {
4053 for (p = key; *p != NUL; ++p)
Bram Moolenaarbe18d102010-05-22 21:37:53 +02004054 *p = 0;
Bram Moolenaar40e6a712010-05-16 22:32:54 +02004055 vim_free(key);
4056 }
4057}
4058
4059/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004060 * Ask the user for a crypt key.
Bram Moolenaar40e6a712010-05-16 22:32:54 +02004061 * When "store" is TRUE, the new key is stored in the 'key' option, and the
Bram Moolenaar071d4272004-06-13 20:20:40 +00004062 * 'key' option value is returned: Don't free it.
4063 * When "store" is FALSE, the typed key is returned in allocated memory.
4064 * Returns NULL on failure.
4065 */
4066 char_u *
4067get_crypt_key(store, twice)
4068 int store;
4069 int twice; /* Ask for the key twice. */
4070{
4071 char_u *p1, *p2 = NULL;
4072 int round;
4073
4074 for (round = 0; ; ++round)
4075 {
4076 cmdline_star = TRUE;
4077 cmdline_row = msg_row;
4078 p1 = getcmdline_prompt(NUL, round == 0
4079 ? (char_u *)_("Enter encryption key: ")
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00004080 : (char_u *)_("Enter same key again: "), 0, EXPAND_NOTHING,
4081 NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004082 cmdline_star = FALSE;
4083
4084 if (p1 == NULL)
4085 break;
4086
4087 if (round == twice)
4088 {
4089 if (p2 != NULL && STRCMP(p1, p2) != 0)
4090 {
4091 MSG(_("Keys don't match!"));
Bram Moolenaar40e6a712010-05-16 22:32:54 +02004092 free_crypt_key(p1);
4093 free_crypt_key(p2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004094 p2 = NULL;
4095 round = -1; /* do it again */
4096 continue;
4097 }
Bram Moolenaar40e6a712010-05-16 22:32:54 +02004098
Bram Moolenaar071d4272004-06-13 20:20:40 +00004099 if (store)
4100 {
4101 set_option_value((char_u *)"key", 0L, p1, OPT_LOCAL);
Bram Moolenaar40e6a712010-05-16 22:32:54 +02004102 free_crypt_key(p1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004103 p1 = curbuf->b_p_key;
4104 }
4105 break;
4106 }
4107 p2 = p1;
4108 }
4109
4110 /* since the user typed this, no need to wait for return */
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02004111 if (msg_didout)
4112 msg_putchar('\n');
Bram Moolenaare4ce65d2010-08-04 20:12:32 +02004113 need_wait_return = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004114 msg_didout = FALSE;
4115
Bram Moolenaar40e6a712010-05-16 22:32:54 +02004116 free_crypt_key(p2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004117 return p1;
4118}
4119
4120#endif /* FEAT_CRYPT */
4121
4122/* TODO: make some #ifdef for this */
4123/*--------[ file searching ]-------------------------------------------------*/
4124/*
4125 * File searching functions for 'path', 'tags' and 'cdpath' options.
4126 * External visible functions:
4127 * vim_findfile_init() creates/initialises the search context
4128 * vim_findfile_free_visited() free list of visited files/dirs of search
4129 * context
4130 * vim_findfile() find a file in the search context
4131 * vim_findfile_cleanup() cleanup/free search context created by
4132 * vim_findfile_init()
4133 *
4134 * All static functions and variables start with 'ff_'
4135 *
4136 * In general it works like this:
4137 * First you create yourself a search context by calling vim_findfile_init().
4138 * It is possible to give a search context from a previous call to
4139 * vim_findfile_init(), so it can be reused. After this you call vim_findfile()
4140 * until you are satisfied with the result or it returns NULL. On every call it
4141 * returns the next file which matches the conditions given to
4142 * vim_findfile_init(). If it doesn't find a next file it returns NULL.
4143 *
4144 * It is possible to call vim_findfile_init() again to reinitialise your search
4145 * with some new parameters. Don't forget to pass your old search context to
4146 * it, so it can reuse it and especially reuse the list of already visited
4147 * directories. If you want to delete the list of already visited directories
4148 * simply call vim_findfile_free_visited().
4149 *
4150 * When you are done call vim_findfile_cleanup() to free the search context.
4151 *
4152 * The function vim_findfile_init() has a long comment, which describes the
4153 * needed parameters.
4154 *
4155 *
4156 *
4157 * ATTENTION:
4158 * ==========
Bram Moolenaar77f66d62007-02-20 02:16:18 +00004159 * Also we use an allocated search context here, this functions are NOT
Bram Moolenaar071d4272004-06-13 20:20:40 +00004160 * thread-safe!!!!!
4161 *
4162 * To minimize parameter passing (or because I'm to lazy), only the
4163 * external visible functions get a search context as a parameter. This is
4164 * then assigned to a static global, which is used throughout the local
4165 * functions.
4166 */
4167
4168/*
4169 * type for the directory search stack
4170 */
4171typedef struct ff_stack
4172{
4173 struct ff_stack *ffs_prev;
4174
4175 /* the fix part (no wildcards) and the part containing the wildcards
4176 * of the search path
4177 */
4178 char_u *ffs_fix_path;
4179#ifdef FEAT_PATH_EXTRA
4180 char_u *ffs_wc_path;
4181#endif
4182
4183 /* files/dirs found in the above directory, matched by the first wildcard
4184 * of wc_part
4185 */
4186 char_u **ffs_filearray;
4187 int ffs_filearray_size;
4188 char_u ffs_filearray_cur; /* needed for partly handled dirs */
4189
4190 /* to store status of partly handled directories
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004191 * 0: we work on this directory for the first time
Bram Moolenaar071d4272004-06-13 20:20:40 +00004192 * 1: this directory was partly searched in an earlier step
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004193 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004194 int ffs_stage;
4195
4196 /* How deep are we in the directory tree?
4197 * Counts backward from value of level parameter to vim_findfile_init
4198 */
4199 int ffs_level;
4200
4201 /* Did we already expand '**' to an empty string? */
4202 int ffs_star_star_empty;
4203} ff_stack_T;
4204
4205/*
4206 * type for already visited directories or files.
4207 */
4208typedef struct ff_visited
4209{
4210 struct ff_visited *ffv_next;
4211
4212#ifdef FEAT_PATH_EXTRA
4213 /* Visited directories are different if the wildcard string are
4214 * different. So we have to save it.
4215 */
4216 char_u *ffv_wc_path;
4217#endif
4218 /* for unix use inode etc for comparison (needed because of links), else
4219 * use filename.
4220 */
4221#ifdef UNIX
Bram Moolenaare1fbddc2009-05-16 19:07:03 +00004222 int ffv_dev_valid; /* ffv_dev and ffv_ino were set */
4223 dev_t ffv_dev; /* device number */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004224 ino_t ffv_ino; /* inode number */
4225#endif
4226 /* The memory for this struct is allocated according to the length of
4227 * ffv_fname.
4228 */
4229 char_u ffv_fname[1]; /* actually longer */
4230} ff_visited_T;
4231
4232/*
4233 * We might have to manage several visited lists during a search.
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00004234 * This is especially needed for the tags option. If tags is set to:
Bram Moolenaar071d4272004-06-13 20:20:40 +00004235 * "./++/tags,./++/TAGS,++/tags" (replace + with *)
4236 * So we have to do 3 searches:
4237 * 1) search from the current files directory downward for the file "tags"
4238 * 2) search from the current files directory downward for the file "TAGS"
4239 * 3) search from Vims current directory downwards for the file "tags"
4240 * As you can see, the first and the third search are for the same file, so for
4241 * the third search we can use the visited list of the first search. For the
4242 * second search we must start from a empty visited list.
4243 * The struct ff_visited_list_hdr is used to manage a linked list of already
4244 * visited lists.
4245 */
4246typedef struct ff_visited_list_hdr
4247{
4248 struct ff_visited_list_hdr *ffvl_next;
4249
4250 /* the filename the attached visited list is for */
4251 char_u *ffvl_filename;
4252
4253 ff_visited_T *ffvl_visited_list;
4254
4255} ff_visited_list_hdr_T;
4256
4257
4258/*
4259 * '**' can be expanded to several directory levels.
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00004260 * Set the default maximum depth.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004261 */
4262#define FF_MAX_STAR_STAR_EXPAND ((char_u)30)
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004263
Bram Moolenaar071d4272004-06-13 20:20:40 +00004264/*
4265 * The search context:
4266 * ffsc_stack_ptr: the stack for the dirs to search
4267 * ffsc_visited_list: the currently active visited list
4268 * ffsc_dir_visited_list: the currently active visited list for search dirs
4269 * ffsc_visited_lists_list: the list of all visited lists
4270 * ffsc_dir_visited_lists_list: the list of all visited lists for search dirs
4271 * ffsc_file_to_search: the file to search for
4272 * ffsc_start_dir: the starting directory, if search path was relative
4273 * ffsc_fix_path: the fix part of the given path (without wildcards)
4274 * Needed for upward search.
4275 * ffsc_wc_path: the part of the given path containing wildcards
4276 * ffsc_level: how many levels of dirs to search downwards
4277 * ffsc_stopdirs_v: array of stop directories for upward search
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004278 * ffsc_find_what: FINDFILE_BOTH, FINDFILE_DIR or FINDFILE_FILE
Bram Moolenaar463ee342010-08-08 18:17:52 +02004279 * ffsc_tagfile: searching for tags file, don't use 'suffixesadd'
Bram Moolenaar071d4272004-06-13 20:20:40 +00004280 */
4281typedef struct ff_search_ctx_T
4282{
4283 ff_stack_T *ffsc_stack_ptr;
4284 ff_visited_list_hdr_T *ffsc_visited_list;
4285 ff_visited_list_hdr_T *ffsc_dir_visited_list;
4286 ff_visited_list_hdr_T *ffsc_visited_lists_list;
4287 ff_visited_list_hdr_T *ffsc_dir_visited_lists_list;
4288 char_u *ffsc_file_to_search;
4289 char_u *ffsc_start_dir;
4290 char_u *ffsc_fix_path;
4291#ifdef FEAT_PATH_EXTRA
4292 char_u *ffsc_wc_path;
4293 int ffsc_level;
4294 char_u **ffsc_stopdirs_v;
4295#endif
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004296 int ffsc_find_what;
Bram Moolenaar463ee342010-08-08 18:17:52 +02004297 int ffsc_tagfile;
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00004298} ff_search_ctx_T;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004299
Bram Moolenaar071d4272004-06-13 20:20:40 +00004300/* locally needed functions */
4301#ifdef FEAT_PATH_EXTRA
4302static int ff_check_visited __ARGS((ff_visited_T **, char_u *, char_u *));
4303#else
4304static int ff_check_visited __ARGS((ff_visited_T **, char_u *));
4305#endif
4306static void vim_findfile_free_visited_list __ARGS((ff_visited_list_hdr_T **list_headp));
4307static void ff_free_visited_list __ARGS((ff_visited_T *vl));
4308static ff_visited_list_hdr_T* ff_get_visited_list __ARGS((char_u *, ff_visited_list_hdr_T **list_headp));
4309#ifdef FEAT_PATH_EXTRA
4310static int ff_wc_equal __ARGS((char_u *s1, char_u *s2));
4311#endif
4312
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004313static void ff_push __ARGS((ff_search_ctx_T *search_ctx, ff_stack_T *stack_ptr));
4314static ff_stack_T *ff_pop __ARGS((ff_search_ctx_T *search_ctx));
4315static void ff_clear __ARGS((ff_search_ctx_T *search_ctx));
4316static void ff_free_stack_element __ARGS((ff_stack_T *stack_ptr));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004317#ifdef FEAT_PATH_EXTRA
4318static ff_stack_T *ff_create_stack_element __ARGS((char_u *, char_u *, int, int));
4319#else
4320static ff_stack_T *ff_create_stack_element __ARGS((char_u *, int, int));
4321#endif
4322#ifdef FEAT_PATH_EXTRA
4323static int ff_path_in_stoplist __ARGS((char_u *, int, char_u **));
4324#endif
4325
Bram Moolenaarb9ba4032011-12-08 17:49:35 +01004326static char_u e_pathtoolong[] = N_("E854: path too long for completion");
4327
Bram Moolenaar071d4272004-06-13 20:20:40 +00004328#if 0
4329/*
4330 * if someone likes findfirst/findnext, here are the functions
4331 * NOT TESTED!!
4332 */
4333
4334static void *ff_fn_search_context = NULL;
4335
4336 char_u *
4337vim_findfirst(path, filename, level)
4338 char_u *path;
4339 char_u *filename;
4340 int level;
4341{
4342 ff_fn_search_context =
4343 vim_findfile_init(path, filename, NULL, level, TRUE, FALSE,
4344 ff_fn_search_context, rel_fname);
4345 if (NULL == ff_fn_search_context)
4346 return NULL;
4347 else
4348 return vim_findnext()
4349}
4350
4351 char_u *
4352vim_findnext()
4353{
4354 char_u *ret = vim_findfile(ff_fn_search_context);
4355
4356 if (NULL == ret)
4357 {
4358 vim_findfile_cleanup(ff_fn_search_context);
4359 ff_fn_search_context = NULL;
4360 }
4361 return ret;
4362}
4363#endif
4364
4365/*
Bram Moolenaare2b590e2010-08-08 18:29:48 +02004366 * Initialization routine for vim_findfile().
Bram Moolenaar071d4272004-06-13 20:20:40 +00004367 *
Bram Moolenaarbe18d102010-05-22 21:37:53 +02004368 * Returns the newly allocated search context or NULL if an error occurred.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004369 *
4370 * Don't forget to clean up by calling vim_findfile_cleanup() if you are done
4371 * with the search context.
4372 *
4373 * Find the file 'filename' in the directory 'path'.
4374 * The parameter 'path' may contain wildcards. If so only search 'level'
4375 * directories deep. The parameter 'level' is the absolute maximum and is
4376 * not related to restricts given to the '**' wildcard. If 'level' is 100
4377 * and you use '**200' vim_findfile() will stop after 100 levels.
4378 *
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004379 * 'filename' cannot contain wildcards! It is used as-is, no backslashes to
4380 * escape special characters.
4381 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00004382 * If 'stopdirs' is not NULL and nothing is found downward, the search is
4383 * restarted on the next higher directory level. This is repeated until the
4384 * start-directory of a search is contained in 'stopdirs'. 'stopdirs' has the
4385 * format ";*<dirname>*\(;<dirname>\)*;\=$".
4386 *
4387 * If the 'path' is relative, the starting dir for the search is either VIM's
4388 * current dir or if the path starts with "./" the current files dir.
Bram Moolenaarbe18d102010-05-22 21:37:53 +02004389 * If the 'path' is absolute, the starting dir is that part of the path before
Bram Moolenaar071d4272004-06-13 20:20:40 +00004390 * the first wildcard.
4391 *
4392 * Upward search is only done on the starting dir.
4393 *
4394 * If 'free_visited' is TRUE the list of already visited files/directories is
4395 * cleared. Set this to FALSE if you just want to search from another
4396 * directory, but want to be sure that no directory from a previous search is
4397 * searched again. This is useful if you search for a file at different places.
4398 * The list of visited files/dirs can also be cleared with the function
4399 * vim_findfile_free_visited().
4400 *
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004401 * Set the parameter 'find_what' to FINDFILE_DIR if you want to search for
4402 * directories only, FINDFILE_FILE for files only, FINDFILE_BOTH for both.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004403 *
4404 * A search context returned by a previous call to vim_findfile_init() can be
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004405 * passed in the parameter "search_ctx_arg". This context is reused and
4406 * reinitialized with the new parameters. The list of already visited
Bram Moolenaar071d4272004-06-13 20:20:40 +00004407 * directories from this context is only deleted if the parameter
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004408 * "free_visited" is true. Be aware that the passed "search_ctx_arg" is freed
4409 * if the reinitialization fails.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004410 *
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004411 * If you don't have a search context from a previous call "search_ctx_arg"
4412 * must be NULL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004413 *
4414 * This function silently ignores a few errors, vim_findfile() will have
4415 * limited functionality then.
4416 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004417 void *
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004418vim_findfile_init(path, filename, stopdirs, level, free_visited, find_what,
4419 search_ctx_arg, tagfile, rel_fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004420 char_u *path;
4421 char_u *filename;
Bram Moolenaare1fbddc2009-05-16 19:07:03 +00004422 char_u *stopdirs UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004423 int level;
4424 int free_visited;
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004425 int find_what;
4426 void *search_ctx_arg;
Bram Moolenaar463ee342010-08-08 18:17:52 +02004427 int tagfile; /* expanding names of tags files */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004428 char_u *rel_fname; /* file name to use for "." */
4429{
4430#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004431 char_u *wc_part;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004432#endif
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004433 ff_stack_T *sptr;
4434 ff_search_ctx_T *search_ctx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004435
4436 /* If a search context is given by the caller, reuse it, else allocate a
4437 * new one.
4438 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004439 if (search_ctx_arg != NULL)
4440 search_ctx = search_ctx_arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004441 else
4442 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004443 search_ctx = (ff_search_ctx_T*)alloc((unsigned)sizeof(ff_search_ctx_T));
4444 if (search_ctx == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004445 goto error_return;
Bram Moolenaar7db5fc82010-05-24 11:59:29 +02004446 vim_memset(search_ctx, 0, sizeof(ff_search_ctx_T));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004447 }
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004448 search_ctx->ffsc_find_what = find_what;
Bram Moolenaar463ee342010-08-08 18:17:52 +02004449 search_ctx->ffsc_tagfile = tagfile;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004450
4451 /* clear the search context, but NOT the visited lists */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004452 ff_clear(search_ctx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004453
4454 /* clear visited list if wanted */
4455 if (free_visited == TRUE)
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004456 vim_findfile_free_visited(search_ctx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004457 else
4458 {
4459 /* Reuse old visited lists. Get the visited list for the given
4460 * filename. If no list for the current filename exists, creates a new
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004461 * one. */
4462 search_ctx->ffsc_visited_list = ff_get_visited_list(filename,
4463 &search_ctx->ffsc_visited_lists_list);
4464 if (search_ctx->ffsc_visited_list == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004465 goto error_return;
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004466 search_ctx->ffsc_dir_visited_list = ff_get_visited_list(filename,
4467 &search_ctx->ffsc_dir_visited_lists_list);
4468 if (search_ctx->ffsc_dir_visited_list == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004469 goto error_return;
4470 }
4471
4472 if (ff_expand_buffer == NULL)
4473 {
4474 ff_expand_buffer = (char_u*)alloc(MAXPATHL);
4475 if (ff_expand_buffer == NULL)
4476 goto error_return;
4477 }
4478
4479 /* Store information on starting dir now if path is relative.
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00004480 * If path is absolute, we do that later. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004481 if (path[0] == '.'
4482 && (vim_ispathsep(path[1]) || path[1] == NUL)
4483 && (!tagfile || vim_strchr(p_cpo, CPO_DOTTAG) == NULL)
4484 && rel_fname != NULL)
4485 {
4486 int len = (int)(gettail(rel_fname) - rel_fname);
4487
4488 if (!vim_isAbsName(rel_fname) && len + 1 < MAXPATHL)
4489 {
4490 /* Make the start dir an absolute path name. */
Bram Moolenaarbbebc852005-07-18 21:47:53 +00004491 vim_strncpy(ff_expand_buffer, rel_fname, len);
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004492 search_ctx->ffsc_start_dir = FullName_save(ff_expand_buffer, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004493 }
4494 else
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004495 search_ctx->ffsc_start_dir = vim_strnsave(rel_fname, len);
4496 if (search_ctx->ffsc_start_dir == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004497 goto error_return;
4498 if (*++path != NUL)
4499 ++path;
4500 }
4501 else if (*path == NUL || !vim_isAbsName(path))
4502 {
4503#ifdef BACKSLASH_IN_FILENAME
4504 /* "c:dir" needs "c:" to be expanded, otherwise use current dir */
4505 if (*path != NUL && path[1] == ':')
4506 {
4507 char_u drive[3];
4508
4509 drive[0] = path[0];
4510 drive[1] = ':';
4511 drive[2] = NUL;
4512 if (vim_FullName(drive, ff_expand_buffer, MAXPATHL, TRUE) == FAIL)
4513 goto error_return;
4514 path += 2;
4515 }
4516 else
4517#endif
4518 if (mch_dirname(ff_expand_buffer, MAXPATHL) == FAIL)
4519 goto error_return;
4520
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004521 search_ctx->ffsc_start_dir = vim_strsave(ff_expand_buffer);
4522 if (search_ctx->ffsc_start_dir == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004523 goto error_return;
4524
4525#ifdef BACKSLASH_IN_FILENAME
4526 /* A path that starts with "/dir" is relative to the drive, not to the
4527 * directory (but not for "//machine/dir"). Only use the drive name. */
4528 if ((*path == '/' || *path == '\\')
4529 && path[1] != path[0]
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004530 && search_ctx->ffsc_start_dir[1] == ':')
4531 search_ctx->ffsc_start_dir[2] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004532#endif
4533 }
4534
4535#ifdef FEAT_PATH_EXTRA
4536 /*
4537 * If stopdirs are given, split them into an array of pointers.
4538 * If this fails (mem allocation), there is no upward search at all or a
4539 * stop directory is not recognized -> continue silently.
4540 * If stopdirs just contains a ";" or is empty,
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004541 * search_ctx->ffsc_stopdirs_v will only contain a NULL pointer. This
Bram Moolenaar071d4272004-06-13 20:20:40 +00004542 * is handled as unlimited upward search. See function
4543 * ff_path_in_stoplist() for details.
4544 */
4545 if (stopdirs != NULL)
4546 {
4547 char_u *walker = stopdirs;
4548 int dircount;
4549
4550 while (*walker == ';')
4551 walker++;
4552
4553 dircount = 1;
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004554 search_ctx->ffsc_stopdirs_v =
4555 (char_u **)alloc((unsigned)sizeof(char_u *));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004556
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004557 if (search_ctx->ffsc_stopdirs_v != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004558 {
4559 do
4560 {
4561 char_u *helper;
4562 void *ptr;
4563
4564 helper = walker;
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004565 ptr = vim_realloc(search_ctx->ffsc_stopdirs_v,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004566 (dircount + 1) * sizeof(char_u *));
4567 if (ptr)
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004568 search_ctx->ffsc_stopdirs_v = ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004569 else
4570 /* ignore, keep what we have and continue */
4571 break;
4572 walker = vim_strchr(walker, ';');
4573 if (walker)
4574 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004575 search_ctx->ffsc_stopdirs_v[dircount-1] =
4576 vim_strnsave(helper, (int)(walker - helper));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004577 walker++;
4578 }
4579 else
4580 /* this might be "", which means ascent till top
4581 * of directory tree.
4582 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004583 search_ctx->ffsc_stopdirs_v[dircount-1] =
4584 vim_strsave(helper);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004585
4586 dircount++;
4587
4588 } while (walker != NULL);
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004589 search_ctx->ffsc_stopdirs_v[dircount-1] = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004590 }
4591 }
4592#endif
4593
4594#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004595 search_ctx->ffsc_level = level;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004596
4597 /* split into:
4598 * -fix path
4599 * -wildcard_stuff (might be NULL)
4600 */
4601 wc_part = vim_strchr(path, '*');
4602 if (wc_part != NULL)
4603 {
4604 int llevel;
4605 int len;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00004606 char *errpt;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004607
4608 /* save the fix part of the path */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004609 search_ctx->ffsc_fix_path = vim_strnsave(path, (int)(wc_part - path));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004610
4611 /*
4612 * copy wc_path and add restricts to the '**' wildcard.
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00004613 * The octet after a '**' is used as a (binary) counter.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004614 * So '**3' is transposed to '**^C' ('^C' is ASCII value 3)
4615 * or '**76' is transposed to '**N'( 'N' is ASCII value 76).
4616 * For EBCDIC you get different character values.
4617 * If no restrict is given after '**' the default is used.
Bram Moolenaar21160b92009-11-11 15:56:10 +00004618 * Due to this technique the path looks awful if you print it as a
Bram Moolenaar071d4272004-06-13 20:20:40 +00004619 * string.
4620 */
4621 len = 0;
4622 while (*wc_part != NUL)
4623 {
Bram Moolenaarb9ba4032011-12-08 17:49:35 +01004624 if (len + 5 >= MAXPATHL)
4625 {
4626 EMSG(_(e_pathtoolong));
4627 break;
4628 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004629 if (STRNCMP(wc_part, "**", 2) == 0)
4630 {
4631 ff_expand_buffer[len++] = *wc_part++;
4632 ff_expand_buffer[len++] = *wc_part++;
4633
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00004634 llevel = strtol((char *)wc_part, &errpt, 10);
4635 if ((char_u *)errpt != wc_part && llevel > 0 && llevel < 255)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004636 ff_expand_buffer[len++] = llevel;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00004637 else if ((char_u *)errpt != wc_part && llevel == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004638 /* restrict is 0 -> remove already added '**' */
4639 len -= 2;
4640 else
4641 ff_expand_buffer[len++] = FF_MAX_STAR_STAR_EXPAND;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00004642 wc_part = (char_u *)errpt;
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00004643 if (*wc_part != NUL && !vim_ispathsep(*wc_part))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004644 {
4645 EMSG2(_("E343: Invalid path: '**[number]' must be at the end of the path or be followed by '%s'."), PATHSEPSTR);
4646 goto error_return;
4647 }
4648 }
4649 else
4650 ff_expand_buffer[len++] = *wc_part++;
4651 }
4652 ff_expand_buffer[len] = NUL;
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004653 search_ctx->ffsc_wc_path = vim_strsave(ff_expand_buffer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004654
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004655 if (search_ctx->ffsc_wc_path == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004656 goto error_return;
4657 }
4658 else
4659#endif
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004660 search_ctx->ffsc_fix_path = vim_strsave(path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004661
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004662 if (search_ctx->ffsc_start_dir == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004663 {
4664 /* store the fix part as startdir.
4665 * This is needed if the parameter path is fully qualified.
4666 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004667 search_ctx->ffsc_start_dir = vim_strsave(search_ctx->ffsc_fix_path);
Bram Moolenaara9d52e32010-07-31 16:44:19 +02004668 if (search_ctx->ffsc_start_dir == NULL)
4669 goto error_return;
4670 search_ctx->ffsc_fix_path[0] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004671 }
4672
4673 /* create an absolute path */
Bram Moolenaarb9ba4032011-12-08 17:49:35 +01004674 if (STRLEN(search_ctx->ffsc_start_dir)
4675 + STRLEN(search_ctx->ffsc_fix_path) + 3 >= MAXPATHL)
4676 {
4677 EMSG(_(e_pathtoolong));
4678 goto error_return;
4679 }
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004680 STRCPY(ff_expand_buffer, search_ctx->ffsc_start_dir);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004681 add_pathsep(ff_expand_buffer);
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004682 STRCAT(ff_expand_buffer, search_ctx->ffsc_fix_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004683 add_pathsep(ff_expand_buffer);
4684
4685 sptr = ff_create_stack_element(ff_expand_buffer,
4686#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004687 search_ctx->ffsc_wc_path,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004688#endif
4689 level, 0);
4690
4691 if (sptr == NULL)
4692 goto error_return;
4693
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004694 ff_push(search_ctx, sptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004695
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004696 search_ctx->ffsc_file_to_search = vim_strsave(filename);
4697 if (search_ctx->ffsc_file_to_search == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004698 goto error_return;
4699
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004700 return search_ctx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004701
4702error_return:
4703 /*
4704 * We clear the search context now!
4705 * Even when the caller gave us a (perhaps valid) context we free it here,
4706 * as we might have already destroyed it.
4707 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004708 vim_findfile_cleanup(search_ctx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004709 return NULL;
4710}
4711
4712#if defined(FEAT_PATH_EXTRA) || defined(PROTO)
4713/*
4714 * Get the stopdir string. Check that ';' is not escaped.
4715 */
4716 char_u *
4717vim_findfile_stopdir(buf)
4718 char_u *buf;
4719{
4720 char_u *r_ptr = buf;
4721
4722 while (*r_ptr != NUL && *r_ptr != ';')
4723 {
4724 if (r_ptr[0] == '\\' && r_ptr[1] == ';')
4725 {
Bram Moolenaar0b573a52011-07-27 17:31:47 +02004726 /* Overwrite the escape char,
4727 * use STRLEN(r_ptr) to move the trailing '\0'. */
Bram Moolenaar446cb832008-06-24 21:56:24 +00004728 STRMOVE(r_ptr, r_ptr + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004729 r_ptr++;
4730 }
4731 r_ptr++;
4732 }
4733 if (*r_ptr == ';')
4734 {
4735 *r_ptr = 0;
4736 r_ptr++;
4737 }
4738 else if (*r_ptr == NUL)
4739 r_ptr = NULL;
4740 return r_ptr;
4741}
4742#endif
4743
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004744/*
4745 * Clean up the given search context. Can handle a NULL pointer.
4746 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004747 void
4748vim_findfile_cleanup(ctx)
4749 void *ctx;
4750{
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00004751 if (ctx == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004752 return;
4753
Bram Moolenaar071d4272004-06-13 20:20:40 +00004754 vim_findfile_free_visited(ctx);
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004755 ff_clear(ctx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004756 vim_free(ctx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004757}
4758
4759/*
4760 * Find a file in a search context.
4761 * The search context was created with vim_findfile_init() above.
4762 * Return a pointer to an allocated file name or NULL if nothing found.
4763 * To get all matching files call this function until you get NULL.
4764 *
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00004765 * If the passed search_context is NULL, NULL is returned.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004766 *
4767 * The search algorithm is depth first. To change this replace the
4768 * stack with a list (don't forget to leave partly searched directories on the
4769 * top of the list).
4770 */
4771 char_u *
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004772vim_findfile(search_ctx_arg)
4773 void *search_ctx_arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004774{
4775 char_u *file_path;
4776#ifdef FEAT_PATH_EXTRA
4777 char_u *rest_of_wildcards;
4778 char_u *path_end = NULL;
4779#endif
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004780 ff_stack_T *stackp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004781#if defined(FEAT_SEARCHPATH) || defined(FEAT_PATH_EXTRA)
4782 int len;
4783#endif
4784 int i;
4785 char_u *p;
4786#ifdef FEAT_SEARCHPATH
4787 char_u *suf;
4788#endif
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004789 ff_search_ctx_T *search_ctx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004790
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004791 if (search_ctx_arg == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004792 return NULL;
4793
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004794 search_ctx = (ff_search_ctx_T *)search_ctx_arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004795
4796 /*
4797 * filepath is used as buffer for various actions and as the storage to
4798 * return a found filename.
4799 */
4800 if ((file_path = alloc((int)MAXPATHL)) == NULL)
4801 return NULL;
4802
4803#ifdef FEAT_PATH_EXTRA
4804 /* store the end of the start dir -- needed for upward search */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004805 if (search_ctx->ffsc_start_dir != NULL)
4806 path_end = &search_ctx->ffsc_start_dir[
4807 STRLEN(search_ctx->ffsc_start_dir)];
Bram Moolenaar071d4272004-06-13 20:20:40 +00004808#endif
4809
4810#ifdef FEAT_PATH_EXTRA
4811 /* upward search loop */
4812 for (;;)
4813 {
4814#endif
4815 /* downward search loop */
4816 for (;;)
4817 {
4818 /* check if user user wants to stop the search*/
4819 ui_breakcheck();
4820 if (got_int)
4821 break;
4822
4823 /* get directory to work on from stack */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004824 stackp = ff_pop(search_ctx);
4825 if (stackp == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004826 break;
4827
4828 /*
4829 * TODO: decide if we leave this test in
4830 *
4831 * GOOD: don't search a directory(-tree) twice.
4832 * BAD: - check linked list for every new directory entered.
4833 * - check for double files also done below
4834 *
4835 * Here we check if we already searched this directory.
4836 * We already searched a directory if:
4837 * 1) The directory is the same.
4838 * 2) We would use the same wildcard string.
4839 *
4840 * Good if you have links on same directory via several ways
4841 * or you have selfreferences in directories (e.g. SuSE Linux 6.3:
4842 * /etc/rc.d/init.d is linked to /etc/rc.d -> endless loop)
4843 *
4844 * This check is only needed for directories we work on for the
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004845 * first time (hence stackp->ff_filearray == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004846 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004847 if (stackp->ffs_filearray == NULL
4848 && ff_check_visited(&search_ctx->ffsc_dir_visited_list
Bram Moolenaar071d4272004-06-13 20:20:40 +00004849 ->ffvl_visited_list,
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004850 stackp->ffs_fix_path
Bram Moolenaar071d4272004-06-13 20:20:40 +00004851#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004852 , stackp->ffs_wc_path
Bram Moolenaar071d4272004-06-13 20:20:40 +00004853#endif
4854 ) == FAIL)
4855 {
4856#ifdef FF_VERBOSE
4857 if (p_verbose >= 5)
4858 {
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004859 verbose_enter_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004860 smsg((char_u *)"Already Searched: %s (%s)",
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004861 stackp->ffs_fix_path, stackp->ffs_wc_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004862 /* don't overwrite this either */
4863 msg_puts((char_u *)"\n");
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004864 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004865 }
4866#endif
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004867 ff_free_stack_element(stackp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004868 continue;
4869 }
4870#ifdef FF_VERBOSE
4871 else if (p_verbose >= 5)
4872 {
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004873 verbose_enter_scroll();
Bram Moolenaar051b7822005-05-19 21:00:46 +00004874 smsg((char_u *)"Searching: %s (%s)",
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004875 stackp->ffs_fix_path, stackp->ffs_wc_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004876 /* don't overwrite this either */
4877 msg_puts((char_u *)"\n");
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004878 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004879 }
4880#endif
4881
4882 /* check depth */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004883 if (stackp->ffs_level <= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004884 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004885 ff_free_stack_element(stackp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004886 continue;
4887 }
4888
4889 file_path[0] = NUL;
4890
4891 /*
4892 * If no filearray till now expand wildcards
4893 * The function expand_wildcards() can handle an array of paths
4894 * and all possible expands are returned in one array. We use this
4895 * to handle the expansion of '**' into an empty string.
4896 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004897 if (stackp->ffs_filearray == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004898 {
4899 char_u *dirptrs[2];
4900
4901 /* we use filepath to build the path expand_wildcards() should
4902 * expand.
4903 */
4904 dirptrs[0] = file_path;
4905 dirptrs[1] = NULL;
4906
4907 /* if we have a start dir copy it in */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004908 if (!vim_isAbsName(stackp->ffs_fix_path)
4909 && search_ctx->ffsc_start_dir)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004910 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004911 STRCPY(file_path, search_ctx->ffsc_start_dir);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004912 add_pathsep(file_path);
4913 }
4914
4915 /* append the fix part of the search path */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004916 STRCAT(file_path, stackp->ffs_fix_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004917 add_pathsep(file_path);
4918
4919#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004920 rest_of_wildcards = stackp->ffs_wc_path;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004921 if (*rest_of_wildcards != NUL)
4922 {
4923 len = (int)STRLEN(file_path);
4924 if (STRNCMP(rest_of_wildcards, "**", 2) == 0)
4925 {
4926 /* pointer to the restrict byte
4927 * The restrict byte is not a character!
4928 */
4929 p = rest_of_wildcards + 2;
4930
4931 if (*p > 0)
4932 {
4933 (*p)--;
4934 file_path[len++] = '*';
4935 }
4936
4937 if (*p == 0)
4938 {
4939 /* remove '**<numb> from wildcards */
Bram Moolenaar446cb832008-06-24 21:56:24 +00004940 STRMOVE(rest_of_wildcards, rest_of_wildcards + 3);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004941 }
4942 else
4943 rest_of_wildcards += 3;
4944
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004945 if (stackp->ffs_star_star_empty == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004946 {
4947 /* if not done before, expand '**' to empty */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004948 stackp->ffs_star_star_empty = 1;
4949 dirptrs[1] = stackp->ffs_fix_path;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004950 }
4951 }
4952
4953 /*
4954 * Here we copy until the next path separator or the end of
4955 * the path. If we stop at a path separator, there is
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00004956 * still something else left. This is handled below by
Bram Moolenaar071d4272004-06-13 20:20:40 +00004957 * pushing every directory returned from expand_wildcards()
4958 * on the stack again for further search.
4959 */
4960 while (*rest_of_wildcards
4961 && !vim_ispathsep(*rest_of_wildcards))
4962 file_path[len++] = *rest_of_wildcards++;
4963
4964 file_path[len] = NUL;
4965 if (vim_ispathsep(*rest_of_wildcards))
4966 rest_of_wildcards++;
4967 }
4968#endif
4969
4970 /*
4971 * Expand wildcards like "*" and "$VAR".
4972 * If the path is a URL don't try this.
4973 */
4974 if (path_with_url(dirptrs[0]))
4975 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004976 stackp->ffs_filearray = (char_u **)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004977 alloc((unsigned)sizeof(char *));
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004978 if (stackp->ffs_filearray != NULL
4979 && (stackp->ffs_filearray[0]
Bram Moolenaar071d4272004-06-13 20:20:40 +00004980 = vim_strsave(dirptrs[0])) != NULL)
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004981 stackp->ffs_filearray_size = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004982 else
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004983 stackp->ffs_filearray_size = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004984 }
4985 else
Bram Moolenaar0b573a52011-07-27 17:31:47 +02004986 /* Add EW_NOTWILD because the expanded path may contain
4987 * wildcard characters that are to be taken literally.
4988 * This is a bit of a hack. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004989 expand_wildcards((dirptrs[1] == NULL) ? 1 : 2, dirptrs,
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004990 &stackp->ffs_filearray_size,
4991 &stackp->ffs_filearray,
Bram Moolenaar0b573a52011-07-27 17:31:47 +02004992 EW_DIR|EW_ADDSLASH|EW_SILENT|EW_NOTWILD);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004993
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004994 stackp->ffs_filearray_cur = 0;
4995 stackp->ffs_stage = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004996 }
4997#ifdef FEAT_PATH_EXTRA
4998 else
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004999 rest_of_wildcards = &stackp->ffs_wc_path[
5000 STRLEN(stackp->ffs_wc_path)];
Bram Moolenaar071d4272004-06-13 20:20:40 +00005001#endif
5002
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005003 if (stackp->ffs_stage == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005004 {
5005 /* this is the first time we work on this directory */
5006#ifdef FEAT_PATH_EXTRA
5007 if (*rest_of_wildcards == NUL)
5008#endif
5009 {
5010 /*
5011 * we don't have further wildcards to expand, so we have to
5012 * check for the final file now
5013 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005014 for (i = stackp->ffs_filearray_cur;
5015 i < stackp->ffs_filearray_size; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005016 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005017 if (!path_with_url(stackp->ffs_filearray[i])
5018 && !mch_isdir(stackp->ffs_filearray[i]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005019 continue; /* not a directory */
5020
Bram Moolenaar21160b92009-11-11 15:56:10 +00005021 /* prepare the filename to be checked for existence
Bram Moolenaar071d4272004-06-13 20:20:40 +00005022 * below */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005023 STRCPY(file_path, stackp->ffs_filearray[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005024 add_pathsep(file_path);
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005025 STRCAT(file_path, search_ctx->ffsc_file_to_search);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005026
5027 /*
5028 * Try without extra suffix and then with suffixes
5029 * from 'suffixesadd'.
5030 */
5031#ifdef FEAT_SEARCHPATH
5032 len = (int)STRLEN(file_path);
Bram Moolenaar463ee342010-08-08 18:17:52 +02005033 if (search_ctx->ffsc_tagfile)
5034 suf = (char_u *)"";
5035 else
5036 suf = curbuf->b_p_sua;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005037 for (;;)
5038#endif
5039 {
5040 /* if file exists and we didn't already find it */
5041 if ((path_with_url(file_path)
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005042 || (mch_getperm(file_path) >= 0
5043 && (search_ctx->ffsc_find_what
5044 == FINDFILE_BOTH
5045 || ((search_ctx->ffsc_find_what
5046 == FINDFILE_DIR)
5047 == mch_isdir(file_path)))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005048#ifndef FF_VERBOSE
5049 && (ff_check_visited(
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005050 &search_ctx->ffsc_visited_list->ffvl_visited_list,
Bram Moolenaar071d4272004-06-13 20:20:40 +00005051 file_path
5052#ifdef FEAT_PATH_EXTRA
5053 , (char_u *)""
5054#endif
5055 ) == OK)
5056#endif
5057 )
5058 {
5059#ifdef FF_VERBOSE
5060 if (ff_check_visited(
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005061 &search_ctx->ffsc_visited_list->ffvl_visited_list,
Bram Moolenaar071d4272004-06-13 20:20:40 +00005062 file_path
5063#ifdef FEAT_PATH_EXTRA
5064 , (char_u *)""
5065#endif
5066 ) == FAIL)
5067 {
5068 if (p_verbose >= 5)
5069 {
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00005070 verbose_enter_scroll();
Bram Moolenaar051b7822005-05-19 21:00:46 +00005071 smsg((char_u *)"Already: %s",
Bram Moolenaar071d4272004-06-13 20:20:40 +00005072 file_path);
5073 /* don't overwrite this either */
5074 msg_puts((char_u *)"\n");
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00005075 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005076 }
5077 continue;
5078 }
5079#endif
5080
5081 /* push dir to examine rest of subdirs later */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005082 stackp->ffs_filearray_cur = i + 1;
5083 ff_push(search_ctx, stackp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005084
Bram Moolenaar6bab9fa2009-01-22 20:32:12 +00005085 if (!path_with_url(file_path))
5086 simplify_filename(file_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005087 if (mch_dirname(ff_expand_buffer, MAXPATHL)
5088 == OK)
5089 {
5090 p = shorten_fname(file_path,
5091 ff_expand_buffer);
5092 if (p != NULL)
Bram Moolenaar446cb832008-06-24 21:56:24 +00005093 STRMOVE(file_path, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005094 }
5095#ifdef FF_VERBOSE
5096 if (p_verbose >= 5)
5097 {
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00005098 verbose_enter_scroll();
Bram Moolenaar051b7822005-05-19 21:00:46 +00005099 smsg((char_u *)"HIT: %s", file_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005100 /* don't overwrite this either */
5101 msg_puts((char_u *)"\n");
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00005102 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005103 }
5104#endif
5105 return file_path;
5106 }
5107
5108#ifdef FEAT_SEARCHPATH
5109 /* Not found or found already, try next suffix. */
5110 if (*suf == NUL)
5111 break;
5112 copy_option_part(&suf, file_path + len,
5113 MAXPATHL - len, ",");
5114#endif
5115 }
5116 }
5117 }
5118#ifdef FEAT_PATH_EXTRA
5119 else
5120 {
5121 /*
5122 * still wildcards left, push the directories for further
5123 * search
5124 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005125 for (i = stackp->ffs_filearray_cur;
5126 i < stackp->ffs_filearray_size; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005127 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005128 if (!mch_isdir(stackp->ffs_filearray[i]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005129 continue; /* not a directory */
5130
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005131 ff_push(search_ctx,
5132 ff_create_stack_element(
5133 stackp->ffs_filearray[i],
5134 rest_of_wildcards,
5135 stackp->ffs_level - 1, 0));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005136 }
5137 }
5138#endif
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005139 stackp->ffs_filearray_cur = 0;
5140 stackp->ffs_stage = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005141 }
5142
5143#ifdef FEAT_PATH_EXTRA
5144 /*
5145 * if wildcards contains '**' we have to descent till we reach the
5146 * leaves of the directory tree.
5147 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005148 if (STRNCMP(stackp->ffs_wc_path, "**", 2) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005149 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005150 for (i = stackp->ffs_filearray_cur;
5151 i < stackp->ffs_filearray_size; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005152 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005153 if (fnamecmp(stackp->ffs_filearray[i],
5154 stackp->ffs_fix_path) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005155 continue; /* don't repush same directory */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005156 if (!mch_isdir(stackp->ffs_filearray[i]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005157 continue; /* not a directory */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005158 ff_push(search_ctx,
5159 ff_create_stack_element(stackp->ffs_filearray[i],
5160 stackp->ffs_wc_path, stackp->ffs_level - 1, 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005161 }
5162 }
5163#endif
5164
5165 /* we are done with the current directory */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005166 ff_free_stack_element(stackp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005167
5168 }
5169
5170#ifdef FEAT_PATH_EXTRA
5171 /* If we reached this, we didn't find anything downwards.
5172 * Let's check if we should do an upward search.
5173 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005174 if (search_ctx->ffsc_start_dir
5175 && search_ctx->ffsc_stopdirs_v != NULL && !got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005176 {
5177 ff_stack_T *sptr;
5178
5179 /* is the last starting directory in the stop list? */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005180 if (ff_path_in_stoplist(search_ctx->ffsc_start_dir,
5181 (int)(path_end - search_ctx->ffsc_start_dir),
5182 search_ctx->ffsc_stopdirs_v) == TRUE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005183 break;
5184
5185 /* cut of last dir */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005186 while (path_end > search_ctx->ffsc_start_dir
5187 && vim_ispathsep(*path_end))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005188 path_end--;
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005189 while (path_end > search_ctx->ffsc_start_dir
5190 && !vim_ispathsep(path_end[-1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005191 path_end--;
5192 *path_end = 0;
5193 path_end--;
5194
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005195 if (*search_ctx->ffsc_start_dir == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005196 break;
5197
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005198 STRCPY(file_path, search_ctx->ffsc_start_dir);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005199 add_pathsep(file_path);
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005200 STRCAT(file_path, search_ctx->ffsc_fix_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005201
5202 /* create a new stack entry */
5203 sptr = ff_create_stack_element(file_path,
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005204 search_ctx->ffsc_wc_path, search_ctx->ffsc_level, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005205 if (sptr == NULL)
5206 break;
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005207 ff_push(search_ctx, sptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005208 }
5209 else
5210 break;
5211 }
5212#endif
5213
5214 vim_free(file_path);
5215 return NULL;
5216}
5217
5218/*
5219 * Free the list of lists of visited files and directories
5220 * Can handle it if the passed search_context is NULL;
5221 */
5222 void
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005223vim_findfile_free_visited(search_ctx_arg)
5224 void *search_ctx_arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005225{
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005226 ff_search_ctx_T *search_ctx;
5227
5228 if (search_ctx_arg == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005229 return;
5230
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005231 search_ctx = (ff_search_ctx_T *)search_ctx_arg;
5232 vim_findfile_free_visited_list(&search_ctx->ffsc_visited_lists_list);
5233 vim_findfile_free_visited_list(&search_ctx->ffsc_dir_visited_lists_list);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005234}
5235
5236 static void
5237vim_findfile_free_visited_list(list_headp)
5238 ff_visited_list_hdr_T **list_headp;
5239{
5240 ff_visited_list_hdr_T *vp;
5241
5242 while (*list_headp != NULL)
5243 {
5244 vp = (*list_headp)->ffvl_next;
5245 ff_free_visited_list((*list_headp)->ffvl_visited_list);
5246
5247 vim_free((*list_headp)->ffvl_filename);
5248 vim_free(*list_headp);
5249 *list_headp = vp;
5250 }
5251 *list_headp = NULL;
5252}
5253
5254 static void
5255ff_free_visited_list(vl)
5256 ff_visited_T *vl;
5257{
5258 ff_visited_T *vp;
5259
5260 while (vl != NULL)
5261 {
5262 vp = vl->ffv_next;
5263#ifdef FEAT_PATH_EXTRA
5264 vim_free(vl->ffv_wc_path);
5265#endif
5266 vim_free(vl);
5267 vl = vp;
5268 }
5269 vl = NULL;
5270}
5271
5272/*
5273 * Returns the already visited list for the given filename. If none is found it
5274 * allocates a new one.
5275 */
5276 static ff_visited_list_hdr_T*
5277ff_get_visited_list(filename, list_headp)
5278 char_u *filename;
5279 ff_visited_list_hdr_T **list_headp;
5280{
5281 ff_visited_list_hdr_T *retptr = NULL;
5282
5283 /* check if a visited list for the given filename exists */
5284 if (*list_headp != NULL)
5285 {
5286 retptr = *list_headp;
5287 while (retptr != NULL)
5288 {
5289 if (fnamecmp(filename, retptr->ffvl_filename) == 0)
5290 {
5291#ifdef FF_VERBOSE
5292 if (p_verbose >= 5)
5293 {
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00005294 verbose_enter_scroll();
Bram Moolenaar051b7822005-05-19 21:00:46 +00005295 smsg((char_u *)"ff_get_visited_list: FOUND list for %s",
Bram Moolenaar071d4272004-06-13 20:20:40 +00005296 filename);
5297 /* don't overwrite this either */
5298 msg_puts((char_u *)"\n");
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00005299 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005300 }
5301#endif
5302 return retptr;
5303 }
5304 retptr = retptr->ffvl_next;
5305 }
5306 }
5307
5308#ifdef FF_VERBOSE
5309 if (p_verbose >= 5)
5310 {
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00005311 verbose_enter_scroll();
Bram Moolenaar051b7822005-05-19 21:00:46 +00005312 smsg((char_u *)"ff_get_visited_list: new list for %s", filename);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005313 /* don't overwrite this either */
5314 msg_puts((char_u *)"\n");
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00005315 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005316 }
5317#endif
5318
5319 /*
5320 * if we reach this we didn't find a list and we have to allocate new list
5321 */
5322 retptr = (ff_visited_list_hdr_T*)alloc((unsigned)sizeof(*retptr));
5323 if (retptr == NULL)
5324 return NULL;
5325
5326 retptr->ffvl_visited_list = NULL;
5327 retptr->ffvl_filename = vim_strsave(filename);
5328 if (retptr->ffvl_filename == NULL)
5329 {
5330 vim_free(retptr);
5331 return NULL;
5332 }
5333 retptr->ffvl_next = *list_headp;
5334 *list_headp = retptr;
5335
5336 return retptr;
5337}
5338
5339#ifdef FEAT_PATH_EXTRA
5340/*
5341 * check if two wildcard paths are equal. Returns TRUE or FALSE.
5342 * They are equal if:
5343 * - both paths are NULL
5344 * - they have the same length
5345 * - char by char comparison is OK
5346 * - the only differences are in the counters behind a '**', so
5347 * '**\20' is equal to '**\24'
5348 */
5349 static int
5350ff_wc_equal(s1, s2)
5351 char_u *s1;
5352 char_u *s2;
5353{
5354 int i;
5355
5356 if (s1 == s2)
5357 return TRUE;
5358
5359 if (s1 == NULL || s2 == NULL)
5360 return FALSE;
5361
5362 if (STRLEN(s1) != STRLEN(s2))
5363 return FAIL;
5364
Bram Moolenaar71afbfe2013-03-19 16:49:16 +01005365 /* TODO: handle multi-byte characters. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005366 for (i = 0; s1[i] != NUL && s2[i] != NUL; i++)
5367 {
5368 if (s1[i] != s2[i]
Bram Moolenaar71afbfe2013-03-19 16:49:16 +01005369 && (!p_fic || TOUPPER_LOC(s1[i]) != TOUPPER_LOC(s2[i])))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005370 {
5371 if (i >= 2)
5372 if (s1[i-1] == '*' && s1[i-2] == '*')
5373 continue;
5374 else
5375 return FAIL;
5376 else
5377 return FAIL;
5378 }
5379 }
5380 return TRUE;
5381}
5382#endif
5383
5384/*
5385 * maintains the list of already visited files and dirs
5386 * returns FAIL if the given file/dir is already in the list
5387 * returns OK if it is newly added
5388 *
5389 * TODO: What to do on memory allocation problems?
5390 * -> return TRUE - Better the file is found several times instead of
5391 * never.
5392 */
5393 static int
5394ff_check_visited(visited_list, fname
5395#ifdef FEAT_PATH_EXTRA
5396 , wc_path
5397#endif
5398 )
5399 ff_visited_T **visited_list;
5400 char_u *fname;
5401#ifdef FEAT_PATH_EXTRA
5402 char_u *wc_path;
5403#endif
5404{
5405 ff_visited_T *vp;
5406#ifdef UNIX
5407 struct stat st;
5408 int url = FALSE;
5409#endif
5410
5411 /* For an URL we only compare the name, otherwise we compare the
5412 * device/inode (unix) or the full path name (not Unix). */
5413 if (path_with_url(fname))
5414 {
Bram Moolenaarbbebc852005-07-18 21:47:53 +00005415 vim_strncpy(ff_expand_buffer, fname, MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005416#ifdef UNIX
5417 url = TRUE;
5418#endif
5419 }
5420 else
5421 {
5422 ff_expand_buffer[0] = NUL;
5423#ifdef UNIX
5424 if (mch_stat((char *)fname, &st) < 0)
5425#else
5426 if (vim_FullName(fname, ff_expand_buffer, MAXPATHL, TRUE) == FAIL)
5427#endif
5428 return FAIL;
5429 }
5430
5431 /* check against list of already visited files */
5432 for (vp = *visited_list; vp != NULL; vp = vp->ffv_next)
5433 {
5434 if (
5435#ifdef UNIX
Bram Moolenaare1fbddc2009-05-16 19:07:03 +00005436 !url ? (vp->ffv_dev_valid && vp->ffv_dev == st.st_dev
5437 && vp->ffv_ino == st.st_ino)
5438 :
Bram Moolenaar071d4272004-06-13 20:20:40 +00005439#endif
5440 fnamecmp(vp->ffv_fname, ff_expand_buffer) == 0
5441 )
5442 {
5443#ifdef FEAT_PATH_EXTRA
5444 /* are the wildcard parts equal */
5445 if (ff_wc_equal(vp->ffv_wc_path, wc_path) == TRUE)
5446#endif
5447 /* already visited */
5448 return FAIL;
5449 }
5450 }
5451
5452 /*
5453 * New file/dir. Add it to the list of visited files/dirs.
5454 */
5455 vp = (ff_visited_T *)alloc((unsigned)(sizeof(ff_visited_T)
5456 + STRLEN(ff_expand_buffer)));
5457
5458 if (vp != NULL)
5459 {
5460#ifdef UNIX
5461 if (!url)
5462 {
Bram Moolenaare1fbddc2009-05-16 19:07:03 +00005463 vp->ffv_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005464 vp->ffv_ino = st.st_ino;
5465 vp->ffv_dev = st.st_dev;
5466 vp->ffv_fname[0] = NUL;
5467 }
5468 else
5469 {
Bram Moolenaare1fbddc2009-05-16 19:07:03 +00005470 vp->ffv_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005471#endif
5472 STRCPY(vp->ffv_fname, ff_expand_buffer);
5473#ifdef UNIX
5474 }
5475#endif
5476#ifdef FEAT_PATH_EXTRA
5477 if (wc_path != NULL)
5478 vp->ffv_wc_path = vim_strsave(wc_path);
5479 else
5480 vp->ffv_wc_path = NULL;
5481#endif
5482
5483 vp->ffv_next = *visited_list;
5484 *visited_list = vp;
5485 }
5486
5487 return OK;
5488}
5489
5490/*
5491 * create stack element from given path pieces
5492 */
5493 static ff_stack_T *
5494ff_create_stack_element(fix_part,
5495#ifdef FEAT_PATH_EXTRA
5496 wc_part,
5497#endif
5498 level, star_star_empty)
5499 char_u *fix_part;
5500#ifdef FEAT_PATH_EXTRA
5501 char_u *wc_part;
5502#endif
5503 int level;
5504 int star_star_empty;
5505{
5506 ff_stack_T *new;
5507
5508 new = (ff_stack_T *)alloc((unsigned)sizeof(ff_stack_T));
5509 if (new == NULL)
5510 return NULL;
5511
5512 new->ffs_prev = NULL;
5513 new->ffs_filearray = NULL;
5514 new->ffs_filearray_size = 0;
5515 new->ffs_filearray_cur = 0;
5516 new->ffs_stage = 0;
5517 new->ffs_level = level;
5518 new->ffs_star_star_empty = star_star_empty;;
5519
5520 /* the following saves NULL pointer checks in vim_findfile */
5521 if (fix_part == NULL)
5522 fix_part = (char_u *)"";
5523 new->ffs_fix_path = vim_strsave(fix_part);
5524
5525#ifdef FEAT_PATH_EXTRA
5526 if (wc_part == NULL)
5527 wc_part = (char_u *)"";
5528 new->ffs_wc_path = vim_strsave(wc_part);
5529#endif
5530
5531 if (new->ffs_fix_path == NULL
5532#ifdef FEAT_PATH_EXTRA
5533 || new->ffs_wc_path == NULL
5534#endif
5535 )
5536 {
5537 ff_free_stack_element(new);
5538 new = NULL;
5539 }
5540
5541 return new;
5542}
5543
5544/*
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005545 * Push a dir on the directory stack.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005546 */
5547 static void
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005548ff_push(search_ctx, stack_ptr)
5549 ff_search_ctx_T *search_ctx;
5550 ff_stack_T *stack_ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005551{
5552 /* check for NULL pointer, not to return an error to the user, but
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005553 * to prevent a crash */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005554 if (stack_ptr != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005555 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005556 stack_ptr->ffs_prev = search_ctx->ffsc_stack_ptr;
5557 search_ctx->ffsc_stack_ptr = stack_ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005558 }
5559}
5560
5561/*
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005562 * Pop a dir from the directory stack.
5563 * Returns NULL if stack is empty.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005564 */
5565 static ff_stack_T *
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005566ff_pop(search_ctx)
5567 ff_search_ctx_T *search_ctx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005568{
5569 ff_stack_T *sptr;
5570
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005571 sptr = search_ctx->ffsc_stack_ptr;
5572 if (search_ctx->ffsc_stack_ptr != NULL)
5573 search_ctx->ffsc_stack_ptr = search_ctx->ffsc_stack_ptr->ffs_prev;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005574
5575 return sptr;
5576}
5577
5578/*
5579 * free the given stack element
5580 */
5581 static void
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005582ff_free_stack_element(stack_ptr)
5583 ff_stack_T *stack_ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005584{
5585 /* vim_free handles possible NULL pointers */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005586 vim_free(stack_ptr->ffs_fix_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005587#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005588 vim_free(stack_ptr->ffs_wc_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005589#endif
5590
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005591 if (stack_ptr->ffs_filearray != NULL)
5592 FreeWild(stack_ptr->ffs_filearray_size, stack_ptr->ffs_filearray);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005593
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005594 vim_free(stack_ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005595}
5596
5597/*
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005598 * Clear the search context, but NOT the visited list.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005599 */
5600 static void
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005601ff_clear(search_ctx)
5602 ff_search_ctx_T *search_ctx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005603{
5604 ff_stack_T *sptr;
5605
5606 /* clear up stack */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005607 while ((sptr = ff_pop(search_ctx)) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005608 ff_free_stack_element(sptr);
5609
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005610 vim_free(search_ctx->ffsc_file_to_search);
5611 vim_free(search_ctx->ffsc_start_dir);
5612 vim_free(search_ctx->ffsc_fix_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005613#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005614 vim_free(search_ctx->ffsc_wc_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005615#endif
5616
5617#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005618 if (search_ctx->ffsc_stopdirs_v != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005619 {
5620 int i = 0;
5621
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005622 while (search_ctx->ffsc_stopdirs_v[i] != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005623 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005624 vim_free(search_ctx->ffsc_stopdirs_v[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005625 i++;
5626 }
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005627 vim_free(search_ctx->ffsc_stopdirs_v);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005628 }
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005629 search_ctx->ffsc_stopdirs_v = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005630#endif
5631
5632 /* reset everything */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005633 search_ctx->ffsc_file_to_search = NULL;
5634 search_ctx->ffsc_start_dir = NULL;
5635 search_ctx->ffsc_fix_path = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005636#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005637 search_ctx->ffsc_wc_path = NULL;
5638 search_ctx->ffsc_level = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005639#endif
5640}
5641
5642#ifdef FEAT_PATH_EXTRA
5643/*
5644 * check if the given path is in the stopdirs
5645 * returns TRUE if yes else FALSE
5646 */
5647 static int
5648ff_path_in_stoplist(path, path_len, stopdirs_v)
5649 char_u *path;
5650 int path_len;
5651 char_u **stopdirs_v;
5652{
5653 int i = 0;
5654
5655 /* eat up trailing path separators, except the first */
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00005656 while (path_len > 1 && vim_ispathsep(path[path_len - 1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005657 path_len--;
5658
5659 /* if no path consider it as match */
5660 if (path_len == 0)
5661 return TRUE;
5662
5663 for (i = 0; stopdirs_v[i] != NULL; i++)
5664 {
5665 if ((int)STRLEN(stopdirs_v[i]) > path_len)
5666 {
5667 /* match for parent directory. So '/home' also matches
5668 * '/home/rks'. Check for PATHSEP in stopdirs_v[i], else
5669 * '/home/r' would also match '/home/rks'
5670 */
5671 if (fnamencmp(stopdirs_v[i], path, path_len) == 0
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00005672 && vim_ispathsep(stopdirs_v[i][path_len]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005673 return TRUE;
5674 }
5675 else
5676 {
5677 if (fnamecmp(stopdirs_v[i], path) == 0)
5678 return TRUE;
5679 }
5680 }
5681 return FALSE;
5682}
5683#endif
5684
5685#if defined(FEAT_SEARCHPATH) || defined(PROTO)
5686/*
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005687 * Find the file name "ptr[len]" in the path. Also finds directory names.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005688 *
5689 * On the first call set the parameter 'first' to TRUE to initialize
5690 * the search. For repeating calls to FALSE.
5691 *
5692 * Repeating calls will return other files called 'ptr[len]' from the path.
5693 *
5694 * Only on the first call 'ptr' and 'len' are used. For repeating calls they
5695 * don't need valid values.
5696 *
5697 * If nothing found on the first call the option FNAME_MESS will issue the
5698 * message:
5699 * 'Can't find file "<file>" in path'
5700 * On repeating calls:
5701 * 'No more file "<file>" found in path'
5702 *
5703 * options:
5704 * FNAME_MESS give error message when not found
5705 *
5706 * Uses NameBuff[]!
5707 *
5708 * Returns an allocated string for the file name. NULL for error.
5709 *
5710 */
5711 char_u *
5712find_file_in_path(ptr, len, options, first, rel_fname)
5713 char_u *ptr; /* file name */
5714 int len; /* length of file name */
5715 int options;
5716 int first; /* use count'th matching file name */
5717 char_u *rel_fname; /* file name searching relative to */
5718{
5719 return find_file_in_path_option(ptr, len, options, first,
5720 *curbuf->b_p_path == NUL ? p_path : curbuf->b_p_path,
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005721 FINDFILE_BOTH, rel_fname, curbuf->b_p_sua);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005722}
5723
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005724static char_u *ff_file_to_find = NULL;
5725static void *fdip_search_ctx = NULL;
5726
5727#if defined(EXITFREE)
5728 static void
5729free_findfile()
5730{
5731 vim_free(ff_file_to_find);
5732 vim_findfile_cleanup(fdip_search_ctx);
5733}
5734#endif
5735
Bram Moolenaar071d4272004-06-13 20:20:40 +00005736/*
5737 * Find the directory name "ptr[len]" in the path.
5738 *
5739 * options:
5740 * FNAME_MESS give error message when not found
5741 *
5742 * Uses NameBuff[]!
5743 *
5744 * Returns an allocated string for the file name. NULL for error.
5745 */
5746 char_u *
5747find_directory_in_path(ptr, len, options, rel_fname)
5748 char_u *ptr; /* file name */
5749 int len; /* length of file name */
5750 int options;
5751 char_u *rel_fname; /* file name searching relative to */
5752{
5753 return find_file_in_path_option(ptr, len, options, TRUE, p_cdpath,
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005754 FINDFILE_DIR, rel_fname, (char_u *)"");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005755}
5756
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00005757 char_u *
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005758find_file_in_path_option(ptr, len, options, first, path_option, find_what, rel_fname, suffixes)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005759 char_u *ptr; /* file name */
5760 int len; /* length of file name */
5761 int options;
5762 int first; /* use count'th matching file name */
5763 char_u *path_option; /* p_path or p_cdpath */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005764 int find_what; /* FINDFILE_FILE, _DIR or _BOTH */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005765 char_u *rel_fname; /* file name we are looking relative to. */
Bram Moolenaar433f7c82006-03-21 21:29:36 +00005766 char_u *suffixes; /* list of suffixes, 'suffixesadd' option */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005767{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005768 static char_u *dir;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005769 static int did_findfile_init = FALSE;
5770 char_u save_char;
5771 char_u *file_name = NULL;
5772 char_u *buf = NULL;
5773 int rel_to_curdir;
5774#ifdef AMIGA
5775 struct Process *proc = (struct Process *)FindTask(0L);
5776 APTR save_winptr = proc->pr_WindowPtr;
5777
5778 /* Avoid a requester here for a volume that doesn't exist. */
5779 proc->pr_WindowPtr = (APTR)-1L;
5780#endif
5781
5782 if (first == TRUE)
5783 {
5784 /* copy file name into NameBuff, expanding environment variables */
5785 save_char = ptr[len];
5786 ptr[len] = NUL;
5787 expand_env(ptr, NameBuff, MAXPATHL);
5788 ptr[len] = save_char;
5789
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005790 vim_free(ff_file_to_find);
5791 ff_file_to_find = vim_strsave(NameBuff);
5792 if (ff_file_to_find == NULL) /* out of memory */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005793 {
5794 file_name = NULL;
5795 goto theend;
5796 }
5797 }
5798
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005799 rel_to_curdir = (ff_file_to_find[0] == '.'
5800 && (ff_file_to_find[1] == NUL
5801 || vim_ispathsep(ff_file_to_find[1])
5802 || (ff_file_to_find[1] == '.'
5803 && (ff_file_to_find[2] == NUL
5804 || vim_ispathsep(ff_file_to_find[2])))));
5805 if (vim_isAbsName(ff_file_to_find)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005806 /* "..", "../path", "." and "./path": don't use the path_option */
5807 || rel_to_curdir
5808#if defined(MSWIN) || defined(MSDOS) || defined(OS2)
5809 /* handle "\tmp" as absolute path */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005810 || vim_ispathsep(ff_file_to_find[0])
Bram Moolenaar21160b92009-11-11 15:56:10 +00005811 /* handle "c:name" as absolute path */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005812 || (ff_file_to_find[0] != NUL && ff_file_to_find[1] == ':')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005813#endif
5814#ifdef AMIGA
5815 /* handle ":tmp" as absolute path */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005816 || ff_file_to_find[0] == ':'
Bram Moolenaar071d4272004-06-13 20:20:40 +00005817#endif
5818 )
5819 {
5820 /*
5821 * Absolute path, no need to use "path_option".
5822 * If this is not a first call, return NULL. We already returned a
5823 * filename on the first call.
5824 */
5825 if (first == TRUE)
5826 {
5827 int l;
5828 int run;
5829
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005830 if (path_with_url(ff_file_to_find))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005831 {
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005832 file_name = vim_strsave(ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005833 goto theend;
5834 }
5835
5836 /* When FNAME_REL flag given first use the directory of the file.
5837 * Otherwise or when this fails use the current directory. */
5838 for (run = 1; run <= 2; ++run)
5839 {
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005840 l = (int)STRLEN(ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005841 if (run == 1
5842 && rel_to_curdir
5843 && (options & FNAME_REL)
5844 && rel_fname != NULL
5845 && STRLEN(rel_fname) + l < MAXPATHL)
5846 {
5847 STRCPY(NameBuff, rel_fname);
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005848 STRCPY(gettail(NameBuff), ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005849 l = (int)STRLEN(NameBuff);
5850 }
5851 else
5852 {
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005853 STRCPY(NameBuff, ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005854 run = 2;
5855 }
5856
5857 /* When the file doesn't exist, try adding parts of
5858 * 'suffixesadd'. */
Bram Moolenaar433f7c82006-03-21 21:29:36 +00005859 buf = suffixes;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005860 for (;;)
5861 {
5862 if (
5863#ifdef DJGPP
5864 /* "C:" by itself will fail for mch_getperm(),
5865 * assume it's always valid. */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005866 (find_what != FINDFILE_FILE && NameBuff[0] != NUL
Bram Moolenaar071d4272004-06-13 20:20:40 +00005867 && NameBuff[1] == ':'
5868 && NameBuff[2] == NUL) ||
5869#endif
5870 (mch_getperm(NameBuff) >= 0
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005871 && (find_what == FINDFILE_BOTH
5872 || ((find_what == FINDFILE_DIR)
5873 == mch_isdir(NameBuff)))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005874 {
5875 file_name = vim_strsave(NameBuff);
5876 goto theend;
5877 }
5878 if (*buf == NUL)
5879 break;
5880 copy_option_part(&buf, NameBuff + l, MAXPATHL - l, ",");
5881 }
5882 }
5883 }
5884 }
5885 else
5886 {
5887 /*
5888 * Loop over all paths in the 'path' or 'cdpath' option.
5889 * When "first" is set, first setup to the start of the option.
5890 * Otherwise continue to find the next match.
5891 */
5892 if (first == TRUE)
5893 {
5894 /* vim_findfile_free_visited can handle a possible NULL pointer */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005895 vim_findfile_free_visited(fdip_search_ctx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005896 dir = path_option;
5897 did_findfile_init = FALSE;
5898 }
5899
5900 for (;;)
5901 {
5902 if (did_findfile_init)
5903 {
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005904 file_name = vim_findfile(fdip_search_ctx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005905 if (file_name != NULL)
5906 break;
5907
5908 did_findfile_init = FALSE;
5909 }
5910 else
5911 {
5912 char_u *r_ptr;
5913
5914 if (dir == NULL || *dir == NUL)
5915 {
5916 /* We searched all paths of the option, now we can
5917 * free the search context. */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005918 vim_findfile_cleanup(fdip_search_ctx);
5919 fdip_search_ctx = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005920 break;
5921 }
5922
5923 if ((buf = alloc((int)(MAXPATHL))) == NULL)
5924 break;
5925
5926 /* copy next path */
5927 buf[0] = 0;
5928 copy_option_part(&dir, buf, MAXPATHL, " ,");
5929
5930#ifdef FEAT_PATH_EXTRA
5931 /* get the stopdir string */
5932 r_ptr = vim_findfile_stopdir(buf);
5933#else
5934 r_ptr = NULL;
5935#endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005936 fdip_search_ctx = vim_findfile_init(buf, ff_file_to_find,
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005937 r_ptr, 100, FALSE, find_what,
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005938 fdip_search_ctx, FALSE, rel_fname);
5939 if (fdip_search_ctx != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005940 did_findfile_init = TRUE;
5941 vim_free(buf);
5942 }
5943 }
5944 }
5945 if (file_name == NULL && (options & FNAME_MESS))
5946 {
5947 if (first == TRUE)
5948 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005949 if (find_what == FINDFILE_DIR)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005950 EMSG2(_("E344: Can't find directory \"%s\" in cdpath"),
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005951 ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005952 else
5953 EMSG2(_("E345: Can't find file \"%s\" in path"),
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005954 ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005955 }
5956 else
5957 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005958 if (find_what == FINDFILE_DIR)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005959 EMSG2(_("E346: No more directory \"%s\" found in cdpath"),
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005960 ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005961 else
5962 EMSG2(_("E347: No more file \"%s\" found in path"),
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005963 ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005964 }
5965 }
5966
5967theend:
5968#ifdef AMIGA
5969 proc->pr_WindowPtr = save_winptr;
5970#endif
5971 return file_name;
5972}
5973
5974#endif /* FEAT_SEARCHPATH */
5975
5976/*
5977 * Change directory to "new_dir". If FEAT_SEARCHPATH is defined, search
5978 * 'cdpath' for relative directory names, otherwise just mch_chdir().
5979 */
5980 int
5981vim_chdir(new_dir)
5982 char_u *new_dir;
5983{
5984#ifndef FEAT_SEARCHPATH
5985 return mch_chdir((char *)new_dir);
5986#else
5987 char_u *dir_name;
5988 int r;
5989
5990 dir_name = find_directory_in_path(new_dir, (int)STRLEN(new_dir),
5991 FNAME_MESS, curbuf->b_ffname);
5992 if (dir_name == NULL)
5993 return -1;
5994 r = mch_chdir((char *)dir_name);
5995 vim_free(dir_name);
5996 return r;
5997#endif
5998}
5999
6000/*
Bram Moolenaarbbebc852005-07-18 21:47:53 +00006001 * Get user name from machine-specific function.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006002 * Returns the user name in "buf[len]".
Bram Moolenaarbbebc852005-07-18 21:47:53 +00006003 * Some systems are quite slow in obtaining the user name (Windows NT), thus
6004 * cache the result.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006005 * Returns OK or FAIL.
6006 */
6007 int
6008get_user_name(buf, len)
6009 char_u *buf;
6010 int len;
6011{
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00006012 if (username == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006013 {
6014 if (mch_get_user_name(buf, len) == FAIL)
6015 return FAIL;
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00006016 username = vim_strsave(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006017 }
6018 else
Bram Moolenaarbbebc852005-07-18 21:47:53 +00006019 vim_strncpy(buf, username, len - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006020 return OK;
6021}
6022
6023#ifndef HAVE_QSORT
6024/*
6025 * Our own qsort(), for systems that don't have it.
6026 * It's simple and slow. From the K&R C book.
6027 */
6028 void
6029qsort(base, elm_count, elm_size, cmp)
6030 void *base;
6031 size_t elm_count;
6032 size_t elm_size;
6033 int (*cmp) __ARGS((const void *, const void *));
6034{
6035 char_u *buf;
6036 char_u *p1;
6037 char_u *p2;
6038 int i, j;
6039 int gap;
6040
6041 buf = alloc((unsigned)elm_size);
6042 if (buf == NULL)
6043 return;
6044
6045 for (gap = elm_count / 2; gap > 0; gap /= 2)
6046 for (i = gap; i < elm_count; ++i)
6047 for (j = i - gap; j >= 0; j -= gap)
6048 {
6049 /* Compare the elements. */
6050 p1 = (char_u *)base + j * elm_size;
6051 p2 = (char_u *)base + (j + gap) * elm_size;
6052 if ((*cmp)((void *)p1, (void *)p2) <= 0)
6053 break;
Bram Moolenaar21160b92009-11-11 15:56:10 +00006054 /* Exchange the elements. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006055 mch_memmove(buf, p1, elm_size);
6056 mch_memmove(p1, p2, elm_size);
6057 mch_memmove(p2, buf, elm_size);
6058 }
6059
6060 vim_free(buf);
6061}
6062#endif
6063
Bram Moolenaar071d4272004-06-13 20:20:40 +00006064/*
6065 * Sort an array of strings.
6066 */
6067static int
6068#ifdef __BORLANDC__
6069_RTLENTRYF
6070#endif
6071sort_compare __ARGS((const void *s1, const void *s2));
6072
6073 static int
6074#ifdef __BORLANDC__
6075_RTLENTRYF
6076#endif
6077sort_compare(s1, s2)
6078 const void *s1;
6079 const void *s2;
6080{
6081 return STRCMP(*(char **)s1, *(char **)s2);
6082}
6083
6084 void
6085sort_strings(files, count)
6086 char_u **files;
6087 int count;
6088{
6089 qsort((void *)files, (size_t)count, sizeof(char_u *), sort_compare);
6090}
Bram Moolenaar071d4272004-06-13 20:20:40 +00006091
6092#if !defined(NO_EXPANDPATH) || defined(PROTO)
6093/*
6094 * Compare path "p[]" to "q[]".
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00006095 * If "maxlen" >= 0 compare "p[maxlen]" to "q[maxlen]"
Bram Moolenaar071d4272004-06-13 20:20:40 +00006096 * Return value like strcmp(p, q), but consider path separators.
6097 */
6098 int
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00006099pathcmp(p, q, maxlen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006100 const char *p, *q;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00006101 int maxlen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006102{
6103 int i;
Bram Moolenaar86b68352004-12-27 21:59:20 +00006104 const char *s = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006105
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00006106 for (i = 0; maxlen < 0 || i < maxlen; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006107 {
6108 /* End of "p": check if "q" also ends or just has a slash. */
6109 if (p[i] == NUL)
6110 {
6111 if (q[i] == NUL) /* full match */
6112 return 0;
6113 s = q;
6114 break;
6115 }
6116
6117 /* End of "q": check if "p" just has a slash. */
6118 if (q[i] == NUL)
6119 {
6120 s = p;
6121 break;
6122 }
6123
Bram Moolenaar71afbfe2013-03-19 16:49:16 +01006124 if ((p_fic ? TOUPPER_LOC(p[i]) != TOUPPER_LOC(q[i]) : p[i] != q[i])
Bram Moolenaar071d4272004-06-13 20:20:40 +00006125#ifdef BACKSLASH_IN_FILENAME
6126 /* consider '/' and '\\' to be equal */
6127 && !((p[i] == '/' && q[i] == '\\')
6128 || (p[i] == '\\' && q[i] == '/'))
6129#endif
6130 )
6131 {
6132 if (vim_ispathsep(p[i]))
6133 return -1;
6134 if (vim_ispathsep(q[i]))
6135 return 1;
6136 return ((char_u *)p)[i] - ((char_u *)q)[i]; /* no match */
6137 }
6138 }
Bram Moolenaar86b68352004-12-27 21:59:20 +00006139 if (s == NULL) /* "i" ran into "maxlen" */
6140 return 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006141
6142 /* ignore a trailing slash, but not "//" or ":/" */
Bram Moolenaar86b68352004-12-27 21:59:20 +00006143 if (s[i + 1] == NUL
6144 && i > 0
6145 && !after_pathsep((char_u *)s, (char_u *)s + i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006146#ifdef BACKSLASH_IN_FILENAME
Bram Moolenaar86b68352004-12-27 21:59:20 +00006147 && (s[i] == '/' || s[i] == '\\')
Bram Moolenaar071d4272004-06-13 20:20:40 +00006148#else
Bram Moolenaar86b68352004-12-27 21:59:20 +00006149 && s[i] == '/'
Bram Moolenaar071d4272004-06-13 20:20:40 +00006150#endif
Bram Moolenaar86b68352004-12-27 21:59:20 +00006151 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00006152 return 0; /* match with trailing slash */
6153 if (s == q)
6154 return -1; /* no match */
6155 return 1;
6156}
6157#endif
6158
Bram Moolenaar071d4272004-06-13 20:20:40 +00006159/*
6160 * The putenv() implementation below comes from the "screen" program.
6161 * Included with permission from Juergen Weigert.
6162 * See pty.c for the copyright notice.
6163 */
6164
6165/*
6166 * putenv -- put value into environment
6167 *
6168 * Usage: i = putenv (string)
6169 * int i;
6170 * char *string;
6171 *
6172 * where string is of the form <name>=<value>.
6173 * Putenv returns 0 normally, -1 on error (not enough core for malloc).
6174 *
6175 * Putenv may need to add a new name into the environment, or to
6176 * associate a value longer than the current value with a particular
6177 * name. So, to make life simpler, putenv() copies your entire
6178 * environment into the heap (i.e. malloc()) from the stack
6179 * (i.e. where it resides when your process is initiated) the first
6180 * time you call it.
6181 *
6182 * (history removed, not very interesting. See the "screen" sources.)
6183 */
6184
6185#if !defined(HAVE_SETENV) && !defined(HAVE_PUTENV)
6186
6187#define EXTRASIZE 5 /* increment to add to env. size */
6188
6189static int envsize = -1; /* current size of environment */
6190#ifndef MACOS_CLASSIC
6191extern
6192#endif
6193 char **environ; /* the global which is your env. */
6194
6195static int findenv __ARGS((char *name)); /* look for a name in the env. */
6196static int newenv __ARGS((void)); /* copy env. from stack to heap */
6197static int moreenv __ARGS((void)); /* incr. size of env. */
6198
6199 int
6200putenv(string)
6201 const char *string;
6202{
6203 int i;
6204 char *p;
6205
6206 if (envsize < 0)
6207 { /* first time putenv called */
6208 if (newenv() < 0) /* copy env. to heap */
6209 return -1;
6210 }
6211
6212 i = findenv((char *)string); /* look for name in environment */
6213
6214 if (i < 0)
6215 { /* name must be added */
6216 for (i = 0; environ[i]; i++);
6217 if (i >= (envsize - 1))
6218 { /* need new slot */
6219 if (moreenv() < 0)
6220 return -1;
6221 }
6222 p = (char *)alloc((unsigned)(strlen(string) + 1));
6223 if (p == NULL) /* not enough core */
6224 return -1;
6225 environ[i + 1] = 0; /* new end of env. */
6226 }
6227 else
6228 { /* name already in env. */
6229 p = vim_realloc(environ[i], strlen(string) + 1);
6230 if (p == NULL)
6231 return -1;
6232 }
6233 sprintf(p, "%s", string); /* copy into env. */
6234 environ[i] = p;
6235
6236 return 0;
6237}
6238
6239 static int
6240findenv(name)
6241 char *name;
6242{
6243 char *namechar, *envchar;
6244 int i, found;
6245
6246 found = 0;
6247 for (i = 0; environ[i] && !found; i++)
6248 {
6249 envchar = environ[i];
6250 namechar = name;
6251 while (*namechar && *namechar != '=' && (*namechar == *envchar))
6252 {
6253 namechar++;
6254 envchar++;
6255 }
6256 found = ((*namechar == '\0' || *namechar == '=') && *envchar == '=');
6257 }
6258 return found ? i - 1 : -1;
6259}
6260
6261 static int
6262newenv()
6263{
6264 char **env, *elem;
6265 int i, esize;
6266
6267#ifdef MACOS
6268 /* for Mac a new, empty environment is created */
6269 i = 0;
6270#else
6271 for (i = 0; environ[i]; i++)
6272 ;
6273#endif
6274 esize = i + EXTRASIZE + 1;
6275 env = (char **)alloc((unsigned)(esize * sizeof (elem)));
6276 if (env == NULL)
6277 return -1;
6278
6279#ifndef MACOS
6280 for (i = 0; environ[i]; i++)
6281 {
6282 elem = (char *)alloc((unsigned)(strlen(environ[i]) + 1));
6283 if (elem == NULL)
6284 return -1;
6285 env[i] = elem;
6286 strcpy(elem, environ[i]);
6287 }
6288#endif
6289
6290 env[i] = 0;
6291 environ = env;
6292 envsize = esize;
6293 return 0;
6294}
6295
6296 static int
6297moreenv()
6298{
6299 int esize;
6300 char **env;
6301
6302 esize = envsize + EXTRASIZE;
6303 env = (char **)vim_realloc((char *)environ, esize * sizeof (*env));
6304 if (env == 0)
6305 return -1;
6306 environ = env;
6307 envsize = esize;
6308 return 0;
6309}
6310
6311# ifdef USE_VIMPTY_GETENV
6312 char_u *
6313vimpty_getenv(string)
6314 const char_u *string;
6315{
6316 int i;
6317 char_u *p;
6318
6319 if (envsize < 0)
6320 return NULL;
6321
6322 i = findenv((char *)string);
6323
6324 if (i < 0)
6325 return NULL;
6326
6327 p = vim_strchr((char_u *)environ[i], '=');
6328 return (p + 1);
6329}
6330# endif
6331
6332#endif /* !defined(HAVE_SETENV) && !defined(HAVE_PUTENV) */
Bram Moolenaarc4a06d32005-06-07 21:04:49 +00006333
Bram Moolenaarc4956c82006-03-12 21:58:43 +00006334#if defined(FEAT_EVAL) || defined(FEAT_SPELL) || defined(PROTO)
Bram Moolenaarc4a06d32005-06-07 21:04:49 +00006335/*
6336 * Return 0 for not writable, 1 for writable file, 2 for a dir which we have
6337 * rights to write into.
6338 */
6339 int
6340filewritable(fname)
6341 char_u *fname;
6342{
6343 int retval = 0;
6344#if defined(UNIX) || defined(VMS)
6345 int perm = 0;
6346#endif
6347
6348#if defined(UNIX) || defined(VMS)
6349 perm = mch_getperm(fname);
6350#endif
6351#ifndef MACOS_CLASSIC /* TODO: get either mch_writable or mch_access */
6352 if (
6353# ifdef WIN3264
6354 mch_writable(fname) &&
6355# else
6356# if defined(UNIX) || defined(VMS)
6357 (perm & 0222) &&
6358# endif
6359# endif
6360 mch_access((char *)fname, W_OK) == 0
6361 )
6362#endif
6363 {
6364 ++retval;
6365 if (mch_isdir(fname))
6366 ++retval;
6367 }
6368 return retval;
6369}
6370#endif
Bram Moolenaar6bab4d12005-06-16 21:53:56 +00006371
6372/*
6373 * Print an error message with one or two "%s" and one or two string arguments.
6374 * This is not in message.c to avoid a warning for prototypes.
6375 */
6376 int
6377emsg3(s, a1, a2)
6378 char_u *s, *a1, *a2;
6379{
Bram Moolenaareb3593b2006-04-22 22:33:57 +00006380 if (emsg_not_now())
Bram Moolenaar6bab4d12005-06-16 21:53:56 +00006381 return TRUE; /* no error messages at the moment */
Bram Moolenaar6f192452007-11-08 19:49:02 +00006382#ifdef HAVE_STDARG_H
6383 vim_snprintf((char *)IObuff, IOSIZE, (char *)s, a1, a2);
6384#else
Bram Moolenaareb3593b2006-04-22 22:33:57 +00006385 vim_snprintf((char *)IObuff, IOSIZE, (char *)s, (long_u)a1, (long_u)a2);
Bram Moolenaar6f192452007-11-08 19:49:02 +00006386#endif
Bram Moolenaar6bab4d12005-06-16 21:53:56 +00006387 return emsg(IObuff);
6388}
6389
6390/*
6391 * Print an error message with one "%ld" and one long int argument.
6392 * This is not in message.c to avoid a warning for prototypes.
6393 */
6394 int
6395emsgn(s, n)
6396 char_u *s;
6397 long n;
6398{
Bram Moolenaareb3593b2006-04-22 22:33:57 +00006399 if (emsg_not_now())
Bram Moolenaar6bab4d12005-06-16 21:53:56 +00006400 return TRUE; /* no error messages at the moment */
6401 vim_snprintf((char *)IObuff, IOSIZE, (char *)s, n);
6402 return emsg(IObuff);
6403}
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006404
6405#if defined(FEAT_SPELL) || defined(FEAT_PERSISTENT_UNDO) || defined(PROTO)
6406/*
6407 * Read 2 bytes from "fd" and turn them into an int, MSB first.
6408 */
6409 int
6410get2c(fd)
6411 FILE *fd;
6412{
Bram Moolenaar9db58062010-05-29 20:33:07 +02006413 int n;
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006414
6415 n = getc(fd);
6416 n = (n << 8) + getc(fd);
6417 return n;
6418}
6419
6420/*
6421 * Read 3 bytes from "fd" and turn them into an int, MSB first.
6422 */
6423 int
6424get3c(fd)
6425 FILE *fd;
6426{
Bram Moolenaar9db58062010-05-29 20:33:07 +02006427 int n;
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006428
6429 n = getc(fd);
6430 n = (n << 8) + getc(fd);
6431 n = (n << 8) + getc(fd);
6432 return n;
6433}
6434
6435/*
6436 * Read 4 bytes from "fd" and turn them into an int, MSB first.
6437 */
6438 int
6439get4c(fd)
6440 FILE *fd;
6441{
Bram Moolenaar9db58062010-05-29 20:33:07 +02006442 int n;
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006443
6444 n = getc(fd);
6445 n = (n << 8) + getc(fd);
6446 n = (n << 8) + getc(fd);
6447 n = (n << 8) + getc(fd);
6448 return n;
6449}
6450
6451/*
6452 * Read 8 bytes from "fd" and turn them into a time_t, MSB first.
6453 */
6454 time_t
6455get8ctime(fd)
6456 FILE *fd;
6457{
6458 time_t n = 0;
6459 int i;
6460
6461 for (i = 0; i < 8; ++i)
6462 n = (n << 8) + getc(fd);
6463 return n;
6464}
6465
6466/*
6467 * Read a string of length "cnt" from "fd" into allocated memory.
6468 * Returns NULL when out of memory or unable to read that many bytes.
6469 */
6470 char_u *
6471read_string(fd, cnt)
6472 FILE *fd;
6473 int cnt;
6474{
6475 char_u *str;
6476 int i;
6477 int c;
6478
6479 /* allocate memory */
6480 str = alloc((unsigned)cnt + 1);
6481 if (str != NULL)
6482 {
6483 /* Read the string. Quit when running into the EOF. */
6484 for (i = 0; i < cnt; ++i)
6485 {
6486 c = getc(fd);
6487 if (c == EOF)
6488 {
6489 vim_free(str);
6490 return NULL;
6491 }
6492 str[i] = c;
6493 }
6494 str[i] = NUL;
6495 }
6496 return str;
6497}
6498
6499/*
6500 * Write a number to file "fd", MSB first, in "len" bytes.
6501 */
6502 int
6503put_bytes(fd, nr, len)
6504 FILE *fd;
6505 long_u nr;
6506 int len;
6507{
6508 int i;
6509
6510 for (i = len - 1; i >= 0; --i)
6511 if (putc((int)(nr >> (i * 8)), fd) == EOF)
6512 return FAIL;
6513 return OK;
6514}
6515
6516#ifdef _MSC_VER
6517# if (_MSC_VER <= 1200)
6518/* This line is required for VC6 without the service pack. Also see the
6519 * matching #pragma below. */
6520 # pragma optimize("", off)
6521# endif
6522#endif
6523
6524/*
6525 * Write time_t to file "fd" in 8 bytes.
6526 */
6527 void
6528put_time(fd, the_time)
6529 FILE *fd;
6530 time_t the_time;
6531{
6532 int c;
6533 int i;
6534 time_t wtime = the_time;
6535
6536 /* time_t can be up to 8 bytes in size, more than long_u, thus we
6537 * can't use put_bytes() here.
6538 * Another problem is that ">>" may do an arithmetic shift that keeps the
Bram Moolenaar644fdff2010-05-30 13:26:21 +02006539 * sign. This happens for large values of wtime. A cast to long_u may
6540 * truncate if time_t is 8 bytes. So only use a cast when it is 4 bytes,
6541 * it's safe to assume that long_u is 4 bytes or more and when using 8
6542 * bytes the top bit won't be set. */
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006543 for (i = 7; i >= 0; --i)
6544 {
6545 if (i + 1 > (int)sizeof(time_t))
6546 /* ">>" doesn't work well when shifting more bits than avail */
6547 putc(0, fd);
6548 else
6549 {
Bram Moolenaar644fdff2010-05-30 13:26:21 +02006550#if defined(SIZEOF_TIME_T) && SIZEOF_TIME_T > 4
Bram Moolenaarbbd6afe2010-06-02 20:32:23 +02006551 c = (int)(wtime >> (i * 8));
Bram Moolenaar644fdff2010-05-30 13:26:21 +02006552#else
Bram Moolenaarbbd6afe2010-06-02 20:32:23 +02006553 c = (int)((long_u)wtime >> (i * 8));
Bram Moolenaar644fdff2010-05-30 13:26:21 +02006554#endif
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006555 putc(c, fd);
6556 }
6557 }
6558}
6559
6560#ifdef _MSC_VER
6561# if (_MSC_VER <= 1200)
6562 # pragma optimize("", on)
6563# endif
6564#endif
6565
6566#endif
Bram Moolenaar10b7b392012-01-10 16:28:45 +01006567
6568#if (defined(FEAT_MBYTE) && defined(FEAT_QUICKFIX)) \
6569 || defined(FEAT_SPELL) || defined(PROTO)
6570/*
6571 * Return TRUE if string "s" contains a non-ASCII character (128 or higher).
6572 * When "s" is NULL FALSE is returned.
6573 */
6574 int
6575has_non_ascii(s)
6576 char_u *s;
6577{
6578 char_u *p;
6579
6580 if (s != NULL)
6581 for (p = s; *p != NUL; ++p)
6582 if (*p >= 128)
6583 return TRUE;
6584 return FALSE;
6585}
6586#endif