blob: 22d1fb46b11dd902733e8b08ef2721b0bd2ce680 [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
818
819/*
Bram Moolenaar2a329742008-04-01 12:53:43 +0000820 * Note: if unsigned is 16 bits we can only allocate up to 64K with alloc().
Bram Moolenaar071d4272004-06-13 20:20:40 +0000821 * Use lalloc for larger blocks.
822 */
823 char_u *
824alloc(size)
825 unsigned size;
826{
827 return (lalloc((long_u)size, TRUE));
828}
829
830/*
831 * Allocate memory and set all bytes to zero.
832 */
833 char_u *
834alloc_clear(size)
835 unsigned size;
836{
837 char_u *p;
838
Bram Moolenaar2f1e0502010-08-13 11:18:02 +0200839 p = lalloc((long_u)size, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000840 if (p != NULL)
841 (void)vim_memset(p, 0, (size_t)size);
842 return p;
843}
844
845/*
846 * alloc() with check for maximum line length
847 */
848 char_u *
849alloc_check(size)
850 unsigned size;
851{
852#if !defined(UNIX) && !defined(__EMX__)
853 if (sizeof(int) == 2 && size > 0x7fff)
854 {
855 /* Don't hide this message */
856 emsg_silent = 0;
857 EMSG(_("E340: Line is becoming too long"));
858 return NULL;
859 }
860#endif
861 return (lalloc((long_u)size, TRUE));
862}
863
864/*
865 * Allocate memory like lalloc() and set all bytes to zero.
866 */
867 char_u *
868lalloc_clear(size, message)
869 long_u size;
870 int message;
871{
872 char_u *p;
873
874 p = (lalloc(size, message));
875 if (p != NULL)
876 (void)vim_memset(p, 0, (size_t)size);
877 return p;
878}
879
880/*
881 * Low level memory allocation function.
882 * This is used often, KEEP IT FAST!
883 */
884 char_u *
885lalloc(size, message)
886 long_u size;
887 int message;
888{
889 char_u *p; /* pointer to new storage space */
890 static int releasing = FALSE; /* don't do mf_release_all() recursive */
891 int try_again;
892#if defined(HAVE_AVAIL_MEM) && !defined(SMALL_MEM)
893 static long_u allocated = 0; /* allocated since last avail check */
894#endif
895
896 /* Safety check for allocating zero bytes */
897 if (size == 0)
898 {
899 /* Don't hide this message */
900 emsg_silent = 0;
901 EMSGN(_("E341: Internal error: lalloc(%ld, )"), size);
902 return NULL;
903 }
904
905#ifdef MEM_PROFILE
906 mem_pre_alloc_l(&size);
907#endif
908
909#if defined(MSDOS) && !defined(DJGPP)
910 if (size >= 0xfff0) /* in MSDOS we can't deal with >64K blocks */
911 p = NULL;
912 else
913#endif
914
915 /*
916 * Loop when out of memory: Try to release some memfile blocks and
917 * if some blocks are released call malloc again.
918 */
919 for (;;)
920 {
921 /*
922 * Handle three kind of systems:
923 * 1. No check for available memory: Just return.
924 * 2. Slow check for available memory: call mch_avail_mem() after
925 * allocating KEEP_ROOM amount of memory.
926 * 3. Strict check for available memory: call mch_avail_mem()
927 */
928 if ((p = (char_u *)malloc((size_t)size)) != NULL)
929 {
930#ifndef HAVE_AVAIL_MEM
931 /* 1. No check for available memory: Just return. */
932 goto theend;
933#else
934# ifndef SMALL_MEM
935 /* 2. Slow check for available memory: call mch_avail_mem() after
936 * allocating (KEEP_ROOM / 2) amount of memory. */
937 allocated += size;
938 if (allocated < KEEP_ROOM / 2)
939 goto theend;
940 allocated = 0;
941# endif
942 /* 3. check for available memory: call mch_avail_mem() */
943 if (mch_avail_mem(TRUE) < KEEP_ROOM && !releasing)
944 {
Bram Moolenaar5a221812008-11-12 12:08:45 +0000945 free((char *)p); /* System is low... no go! */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000946 p = NULL;
947 }
948 else
949 goto theend;
950#endif
951 }
952 /*
953 * Remember that mf_release_all() is being called to avoid an endless
954 * loop, because mf_release_all() may call alloc() recursively.
955 */
956 if (releasing)
957 break;
958 releasing = TRUE;
Bram Moolenaar661b1822005-07-28 22:36:45 +0000959
960 clear_sb_text(); /* free any scrollback text */
961 try_again = mf_release_all(); /* release as many blocks as possible */
Bram Moolenaar39a58ca2005-06-27 22:42:44 +0000962#ifdef FEAT_EVAL
Bram Moolenaar661b1822005-07-28 22:36:45 +0000963 try_again |= garbage_collect(); /* cleanup recursive lists/dicts */
Bram Moolenaar39a58ca2005-06-27 22:42:44 +0000964#endif
Bram Moolenaar661b1822005-07-28 22:36:45 +0000965
Bram Moolenaar071d4272004-06-13 20:20:40 +0000966 releasing = FALSE;
967 if (!try_again)
968 break;
969 }
970
971 if (message && p == NULL)
972 do_outofmem_msg(size);
973
974theend:
975#ifdef MEM_PROFILE
976 mem_post_alloc((void **)&p, (size_t)size);
977#endif
978 return p;
979}
980
981#if defined(MEM_PROFILE) || defined(PROTO)
982/*
983 * realloc() with memory profiling.
984 */
985 void *
986mem_realloc(ptr, size)
987 void *ptr;
988 size_t size;
989{
990 void *p;
991
992 mem_pre_free(&ptr);
993 mem_pre_alloc_s(&size);
994
995 p = realloc(ptr, size);
996
997 mem_post_alloc(&p, size);
998
999 return p;
1000}
1001#endif
1002
1003/*
1004* Avoid repeating the error message many times (they take 1 second each).
1005* Did_outofmem_msg is reset when a character is read.
1006*/
1007 void
1008do_outofmem_msg(size)
1009 long_u size;
1010{
1011 if (!did_outofmem_msg)
1012 {
1013 /* Don't hide this message */
1014 emsg_silent = 0;
Bram Moolenaar79739e12011-10-26 11:41:00 +02001015
1016 /* Must come first to avoid coming back here when printing the error
1017 * message fails, e.g. when setting v:errmsg. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001018 did_outofmem_msg = TRUE;
Bram Moolenaar79739e12011-10-26 11:41:00 +02001019
1020 EMSGN(_("E342: Out of memory! (allocating %lu bytes)"), size);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001021 }
1022}
1023
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001024#if defined(EXITFREE) || defined(PROTO)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001025
1026# if defined(FEAT_SEARCHPATH)
1027static void free_findfile __ARGS((void));
1028# endif
1029
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001030/*
1031 * Free everything that we allocated.
1032 * Can be used to detect memory leaks, e.g., with ccmalloc.
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001033 * NOTE: This is tricky! Things are freed that functions depend on. Don't be
1034 * surprised if Vim crashes...
1035 * Some things can't be freed, esp. things local to a library function.
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001036 */
1037 void
1038free_all_mem()
1039{
1040 buf_T *buf, *nextbuf;
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001041 static int entered = FALSE;
1042
1043 /* When we cause a crash here it is caught and Vim tries to exit cleanly.
1044 * Don't try freeing everything again. */
1045 if (entered)
1046 return;
1047 entered = TRUE;
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001048
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001049# ifdef FEAT_AUTOCMD
Bram Moolenaar78ab3312007-09-29 12:16:41 +00001050 block_autocmds(); /* don't want to trigger autocommands here */
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001051# endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001052
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001053# ifdef FEAT_WINDOWS
Bram Moolenaar5bedfc62010-07-20 22:30:01 +02001054 /* Close all tabs and windows. Reset 'equalalways' to avoid redraws. */
1055 p_ea = FALSE;
Bram Moolenaar7d47b6e2006-03-15 22:59:18 +00001056 if (first_tabpage->tp_next != NULL)
1057 do_cmdline_cmd((char_u *)"tabonly!");
1058 if (firstwin != lastwin)
1059 do_cmdline_cmd((char_u *)"only!");
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001060# endif
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00001061
Bram Moolenaarc4956c82006-03-12 21:58:43 +00001062# if defined(FEAT_SPELL)
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001063 /* Free all spell info. */
1064 spell_free_all();
1065# endif
1066
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001067# if defined(FEAT_USR_CMDS)
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001068 /* Clear user commands (before deleting buffers). */
1069 ex_comclear(NULL);
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001070# endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001071
1072# ifdef FEAT_MENU
1073 /* Clear menus. */
1074 do_cmdline_cmd((char_u *)"aunmenu *");
Bram Moolenaar21160b92009-11-11 15:56:10 +00001075# ifdef FEAT_MULTI_LANG
1076 do_cmdline_cmd((char_u *)"menutranslate clear");
1077# endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001078# endif
1079
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001080 /* Clear mappings, abbreviations, breakpoints. */
Bram Moolenaar21160b92009-11-11 15:56:10 +00001081 do_cmdline_cmd((char_u *)"lmapclear");
1082 do_cmdline_cmd((char_u *)"xmapclear");
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001083 do_cmdline_cmd((char_u *)"mapclear");
1084 do_cmdline_cmd((char_u *)"mapclear!");
1085 do_cmdline_cmd((char_u *)"abclear");
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001086# if defined(FEAT_EVAL)
1087 do_cmdline_cmd((char_u *)"breakdel *");
1088# endif
Bram Moolenaar1e498f52005-06-26 22:29:44 +00001089# if defined(FEAT_PROFILE)
1090 do_cmdline_cmd((char_u *)"profdel *");
1091# endif
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00001092# if defined(FEAT_KEYMAP)
1093 do_cmdline_cmd((char_u *)"set keymap=");
1094#endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001095
1096# ifdef FEAT_TITLE
1097 free_titles();
1098# endif
1099# if defined(FEAT_SEARCHPATH)
1100 free_findfile();
1101# endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001102
1103 /* Obviously named calls. */
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001104# if defined(FEAT_AUTOCMD)
1105 free_all_autocmds();
1106# endif
1107 clear_termcodes();
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001108 free_all_options();
1109 free_all_marks();
1110 alist_clear(&global_alist);
1111 free_homedir();
1112 free_search_patterns();
1113 free_old_sub();
1114 free_last_insert();
1115 free_prev_shellcmd();
1116 free_regexp_stuff();
1117 free_tag_stuff();
1118 free_cd_dir();
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00001119# ifdef FEAT_SIGNS
1120 free_signs();
1121# endif
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001122# ifdef FEAT_EVAL
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001123 set_expr_line(NULL);
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001124# endif
1125# ifdef FEAT_DIFF
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00001126 diff_clear(curtab);
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001127# endif
Bram Moolenaara40ceaf2006-01-13 22:35:40 +00001128 clear_sb_text(); /* free any scrollback text */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001129
1130 /* Free some global vars. */
1131 vim_free(username);
Bram Moolenaaraf92ee82007-10-07 13:45:08 +00001132# ifdef FEAT_CLIPBOARD
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001133 vim_free(clip_exclude_prog);
Bram Moolenaaraf92ee82007-10-07 13:45:08 +00001134# endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001135 vim_free(last_cmdline);
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001136# ifdef FEAT_CMDHIST
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001137 vim_free(new_last_cmdline);
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001138# endif
Bram Moolenaar238a5642006-02-21 22:12:05 +00001139 set_keep_msg(NULL, 0);
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001140 vim_free(ff_expand_buffer);
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001141
1142 /* Clear cmdline history. */
1143 p_hi = 0;
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001144# ifdef FEAT_CMDHIST
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001145 init_history();
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001146# endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001147
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001148#ifdef FEAT_QUICKFIX
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001149 {
Bram Moolenaarbd1e5d22009-04-29 09:02:44 +00001150 win_T *win;
1151 tabpage_T *tab;
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001152
1153 qf_free_all(NULL);
1154 /* Free all location lists */
Bram Moolenaarbd1e5d22009-04-29 09:02:44 +00001155 FOR_ALL_TAB_WINDOWS(tab, win)
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001156 qf_free_all(win);
1157 }
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001158#endif
1159
1160 /* Close all script inputs. */
1161 close_all_scripts();
1162
1163#if defined(FEAT_WINDOWS)
1164 /* Destroy all windows. Must come before freeing buffers. */
1165 win_free_all();
1166#endif
1167
Bram Moolenaar2a329742008-04-01 12:53:43 +00001168 /* Free all buffers. Reset 'autochdir' to avoid accessing things that
1169 * were freed already. */
1170#ifdef FEAT_AUTOCHDIR
1171 p_acd = FALSE;
1172#endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001173 for (buf = firstbuf; buf != NULL; )
1174 {
1175 nextbuf = buf->b_next;
1176 close_buffer(NULL, buf, DOBUF_WIPE);
1177 if (buf_valid(buf))
1178 buf = nextbuf; /* didn't work, try next one */
1179 else
1180 buf = firstbuf;
1181 }
1182
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001183#ifdef FEAT_ARABIC
1184 free_cmdline_buf();
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001185#endif
1186
1187 /* Clear registers. */
1188 clear_registers();
1189 ResetRedobuff();
1190 ResetRedobuff();
1191
Bram Moolenaar85c79d32007-02-20 01:59:20 +00001192#if defined(FEAT_CLIENTSERVER) && defined(FEAT_X11)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001193 vim_free(serverDelayedStartName);
1194#endif
1195
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001196 /* highlight info */
1197 free_highlight();
1198
Bram Moolenaar1e498f52005-06-26 22:29:44 +00001199 reset_last_sourcing();
1200
Bram Moolenaar7d47b6e2006-03-15 22:59:18 +00001201#ifdef FEAT_WINDOWS
Bram Moolenaar06a89a52006-04-29 22:01:03 +00001202 free_tabpage(first_tabpage);
1203 first_tabpage = NULL;
Bram Moolenaar7d47b6e2006-03-15 22:59:18 +00001204#endif
1205
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001206# ifdef UNIX
1207 /* Machine-specific free. */
1208 mch_free_mem();
1209# endif
1210
1211 /* message history */
1212 for (;;)
1213 if (delete_first_msg() == FAIL)
1214 break;
1215
1216# ifdef FEAT_EVAL
1217 eval_clear();
1218# endif
1219
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001220 free_termoptions();
1221
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001222 /* screenlines (can't display anything now!) */
1223 free_screenlines();
1224
1225#if defined(USE_XSMP)
1226 xsmp_close();
1227#endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001228#ifdef FEAT_GUI_GTK
1229 gui_mch_free_all();
1230#endif
1231 clear_hl_tables();
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001232
1233 vim_free(IObuff);
1234 vim_free(NameBuff);
1235}
1236#endif
1237
Bram Moolenaar071d4272004-06-13 20:20:40 +00001238/*
Bram Moolenaare980d8a2010-12-08 13:11:21 +01001239 * Copy "string" into newly allocated memory.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001240 */
1241 char_u *
1242vim_strsave(string)
1243 char_u *string;
1244{
1245 char_u *p;
1246 unsigned len;
1247
1248 len = (unsigned)STRLEN(string) + 1;
1249 p = alloc(len);
1250 if (p != NULL)
1251 mch_memmove(p, string, (size_t)len);
1252 return p;
1253}
1254
Bram Moolenaare980d8a2010-12-08 13:11:21 +01001255/*
1256 * Copy up to "len" bytes of "string" into newly allocated memory and
1257 * terminate with a NUL.
1258 * The allocated memory always has size "len + 1", also when "string" is
1259 * shorter.
1260 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001261 char_u *
1262vim_strnsave(string, len)
1263 char_u *string;
1264 int len;
1265{
1266 char_u *p;
1267
1268 p = alloc((unsigned)(len + 1));
1269 if (p != NULL)
1270 {
1271 STRNCPY(p, string, len);
1272 p[len] = NUL;
1273 }
1274 return p;
1275}
1276
Bram Moolenaar071d4272004-06-13 20:20:40 +00001277/*
1278 * Same as vim_strsave(), but any characters found in esc_chars are preceded
1279 * by a backslash.
1280 */
1281 char_u *
1282vim_strsave_escaped(string, esc_chars)
1283 char_u *string;
1284 char_u *esc_chars;
1285{
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001286 return vim_strsave_escaped_ext(string, esc_chars, '\\', FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001287}
1288
1289/*
1290 * Same as vim_strsave_escaped(), but when "bsl" is TRUE also escape
1291 * characters where rem_backslash() would remove the backslash.
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001292 * Escape the characters with "cc".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001293 */
1294 char_u *
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001295vim_strsave_escaped_ext(string, esc_chars, cc, bsl)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001296 char_u *string;
1297 char_u *esc_chars;
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001298 int cc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001299 int bsl;
1300{
1301 char_u *p;
1302 char_u *p2;
1303 char_u *escaped_string;
1304 unsigned length;
1305#ifdef FEAT_MBYTE
1306 int l;
1307#endif
1308
1309 /*
1310 * First count the number of backslashes required.
1311 * Then allocate the memory and insert them.
1312 */
1313 length = 1; /* count the trailing NUL */
1314 for (p = string; *p; p++)
1315 {
1316#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001317 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001318 {
1319 length += l; /* count a multibyte char */
1320 p += l - 1;
1321 continue;
1322 }
1323#endif
1324 if (vim_strchr(esc_chars, *p) != NULL || (bsl && rem_backslash(p)))
1325 ++length; /* count a backslash */
1326 ++length; /* count an ordinary char */
1327 }
1328 escaped_string = alloc(length);
1329 if (escaped_string != NULL)
1330 {
1331 p2 = escaped_string;
1332 for (p = string; *p; p++)
1333 {
1334#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001335 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001336 {
1337 mch_memmove(p2, p, (size_t)l);
1338 p2 += l;
1339 p += l - 1; /* skip multibyte char */
1340 continue;
1341 }
1342#endif
1343 if (vim_strchr(esc_chars, *p) != NULL || (bsl && rem_backslash(p)))
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001344 *p2++ = cc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001345 *p2++ = *p;
1346 }
1347 *p2 = NUL;
1348 }
1349 return escaped_string;
1350}
1351
Bram Moolenaar7693ec62008-07-24 18:29:37 +00001352/*
1353 * Return TRUE when 'shell' has "csh" in the tail.
1354 */
1355 int
1356csh_like_shell()
1357{
1358 return (strstr((char *)gettail(p_sh), "csh") != NULL);
1359}
Bram Moolenaar7693ec62008-07-24 18:29:37 +00001360
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001361/*
1362 * Escape "string" for use as a shell argument with system().
Bram Moolenaar21160b92009-11-11 15:56:10 +00001363 * This uses single quotes, except when we know we need to use double quotes
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001364 * (MS-DOS and MS-Windows without 'shellslash' set).
Bram Moolenaarffd66c42008-07-16 20:43:37 +00001365 * Escape a newline, depending on the 'shell' option.
1366 * When "do_special" is TRUE also replace "!", "%", "#" and things starting
1367 * with "<" like "<cfile>".
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001368 * Returns the result in allocated memory, NULL if we have run out.
1369 */
1370 char_u *
Bram Moolenaar05bb9532008-07-04 09:44:11 +00001371vim_strsave_shellescape(string, do_special)
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001372 char_u *string;
Bram Moolenaar05bb9532008-07-04 09:44:11 +00001373 int do_special;
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001374{
1375 unsigned length;
1376 char_u *p;
1377 char_u *d;
1378 char_u *escaped_string;
Bram Moolenaar05bb9532008-07-04 09:44:11 +00001379 int l;
Bram Moolenaarffd66c42008-07-16 20:43:37 +00001380 int csh_like;
1381
1382 /* Only csh and similar shells expand '!' within single quotes. For sh and
1383 * the like we must not put a backslash before it, it will be taken
1384 * literally. If do_special is set the '!' will be escaped twice.
1385 * Csh also needs to have "\n" escaped twice when do_special is set. */
Bram Moolenaar7693ec62008-07-24 18:29:37 +00001386 csh_like = csh_like_shell();
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001387
1388 /* First count the number of extra bytes required. */
Bram Moolenaar77f66d62007-02-20 02:16:18 +00001389 length = (unsigned)STRLEN(string) + 3; /* two quotes and a trailing NUL */
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001390 for (p = string; *p != NUL; mb_ptr_adv(p))
1391 {
1392# if defined(WIN32) || defined(WIN16) || defined(DOS)
1393 if (!p_ssl)
1394 {
1395 if (*p == '"')
1396 ++length; /* " -> "" */
1397 }
1398 else
1399# endif
1400 if (*p == '\'')
1401 length += 3; /* ' => '\'' */
Bram Moolenaarffd66c42008-07-16 20:43:37 +00001402 if (*p == '\n' || (*p == '!' && (csh_like || do_special)))
1403 {
1404 ++length; /* insert backslash */
1405 if (csh_like && do_special)
1406 ++length; /* insert backslash */
1407 }
Bram Moolenaar05bb9532008-07-04 09:44:11 +00001408 if (do_special && find_cmdline_var(p, &l) >= 0)
1409 {
1410 ++length; /* insert backslash */
1411 p += l - 1;
1412 }
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001413 }
1414
1415 /* Allocate memory for the result and fill it. */
1416 escaped_string = alloc(length);
1417 if (escaped_string != NULL)
1418 {
1419 d = escaped_string;
1420
1421 /* add opening quote */
1422# if defined(WIN32) || defined(WIN16) || defined(DOS)
1423 if (!p_ssl)
1424 *d++ = '"';
1425 else
1426# endif
1427 *d++ = '\'';
1428
1429 for (p = string; *p != NUL; )
1430 {
1431# if defined(WIN32) || defined(WIN16) || defined(DOS)
1432 if (!p_ssl)
1433 {
1434 if (*p == '"')
1435 {
1436 *d++ = '"';
1437 *d++ = '"';
1438 ++p;
1439 continue;
1440 }
1441 }
1442 else
1443# endif
1444 if (*p == '\'')
1445 {
Bram Moolenaar05bb9532008-07-04 09:44:11 +00001446 *d++ = '\'';
1447 *d++ = '\\';
1448 *d++ = '\'';
1449 *d++ = '\'';
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001450 ++p;
1451 continue;
1452 }
Bram Moolenaarffd66c42008-07-16 20:43:37 +00001453 if (*p == '\n' || (*p == '!' && (csh_like || do_special)))
1454 {
1455 *d++ = '\\';
1456 if (csh_like && do_special)
1457 *d++ = '\\';
1458 *d++ = *p++;
1459 continue;
1460 }
Bram Moolenaar05bb9532008-07-04 09:44:11 +00001461 if (do_special && find_cmdline_var(p, &l) >= 0)
1462 {
1463 *d++ = '\\'; /* insert backslash */
1464 while (--l >= 0) /* copy the var */
1465 *d++ = *p++;
Bram Moolenaar099d01d2009-11-25 16:14:45 +00001466 continue;
Bram Moolenaar05bb9532008-07-04 09:44:11 +00001467 }
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001468
1469 MB_COPY_CHAR(p, d);
1470 }
1471
1472 /* add terminating quote and finish with a NUL */
1473# if defined(WIN32) || defined(WIN16) || defined(DOS)
1474 if (!p_ssl)
1475 *d++ = '"';
1476 else
1477# endif
1478 *d++ = '\'';
1479 *d = NUL;
1480 }
1481
1482 return escaped_string;
1483}
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001484
Bram Moolenaar071d4272004-06-13 20:20:40 +00001485/*
1486 * Like vim_strsave(), but make all characters uppercase.
1487 * This uses ASCII lower-to-upper case translation, language independent.
1488 */
1489 char_u *
1490vim_strsave_up(string)
1491 char_u *string;
1492{
1493 char_u *p1;
1494
1495 p1 = vim_strsave(string);
1496 vim_strup(p1);
1497 return p1;
1498}
1499
1500/*
1501 * Like vim_strnsave(), but make all characters uppercase.
1502 * This uses ASCII lower-to-upper case translation, language independent.
1503 */
1504 char_u *
1505vim_strnsave_up(string, len)
1506 char_u *string;
1507 int len;
1508{
1509 char_u *p1;
1510
1511 p1 = vim_strnsave(string, len);
1512 vim_strup(p1);
1513 return p1;
1514}
1515
1516/*
1517 * ASCII lower-to-upper case translation, language independent.
1518 */
1519 void
1520vim_strup(p)
1521 char_u *p;
1522{
1523 char_u *p2;
1524 int c;
1525
1526 if (p != NULL)
1527 {
1528 p2 = p;
1529 while ((c = *p2) != NUL)
1530#ifdef EBCDIC
1531 *p2++ = isalpha(c) ? toupper(c) : c;
1532#else
1533 *p2++ = (c < 'a' || c > 'z') ? c : (c - 0x20);
1534#endif
1535 }
1536}
1537
Bram Moolenaarc4956c82006-03-12 21:58:43 +00001538#if defined(FEAT_EVAL) || defined(FEAT_SPELL) || defined(PROTO)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001539/*
1540 * Make string "s" all upper-case and return it in allocated memory.
1541 * Handles multi-byte characters as well as possible.
1542 * Returns NULL when out of memory.
1543 */
1544 char_u *
1545strup_save(orig)
1546 char_u *orig;
1547{
1548 char_u *p;
1549 char_u *res;
1550
1551 res = p = vim_strsave(orig);
1552
1553 if (res != NULL)
1554 while (*p != NUL)
1555 {
1556# ifdef FEAT_MBYTE
1557 int l;
1558
1559 if (enc_utf8)
1560 {
1561 int c, uc;
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001562 int newl;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001563 char_u *s;
1564
1565 c = utf_ptr2char(p);
1566 uc = utf_toupper(c);
1567
1568 /* Reallocate string when byte count changes. This is rare,
1569 * thus it's OK to do another malloc()/free(). */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001570 l = utf_ptr2len(p);
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001571 newl = utf_char2len(uc);
1572 if (newl != l)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001573 {
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001574 s = alloc((unsigned)STRLEN(res) + 1 + newl - l);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001575 if (s == NULL)
1576 break;
1577 mch_memmove(s, res, p - res);
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001578 STRCPY(s + (p - res) + newl, p + l);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001579 p = s + (p - res);
1580 vim_free(res);
1581 res = s;
1582 }
1583
1584 utf_char2bytes(uc, p);
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001585 p += newl;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001586 }
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001587 else if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001588 p += l; /* skip multi-byte character */
1589 else
1590# endif
1591 {
1592 *p = TOUPPER_LOC(*p); /* note that toupper() can be a macro */
1593 p++;
1594 }
1595 }
1596
1597 return res;
1598}
1599#endif
1600
Bram Moolenaar071d4272004-06-13 20:20:40 +00001601/*
1602 * copy a space a number of times
1603 */
1604 void
1605copy_spaces(ptr, count)
1606 char_u *ptr;
1607 size_t count;
1608{
1609 size_t i = count;
1610 char_u *p = ptr;
1611
1612 while (i--)
1613 *p++ = ' ';
1614}
1615
1616#if defined(FEAT_VISUALEXTRA) || defined(PROTO)
1617/*
1618 * Copy a character a number of times.
Bram Moolenaar21160b92009-11-11 15:56:10 +00001619 * Does not work for multi-byte characters!
Bram Moolenaar071d4272004-06-13 20:20:40 +00001620 */
1621 void
1622copy_chars(ptr, count, c)
1623 char_u *ptr;
1624 size_t count;
1625 int c;
1626{
1627 size_t i = count;
1628 char_u *p = ptr;
1629
1630 while (i--)
1631 *p++ = c;
1632}
1633#endif
1634
1635/*
1636 * delete spaces at the end of a string
1637 */
1638 void
1639del_trailing_spaces(ptr)
1640 char_u *ptr;
1641{
1642 char_u *q;
1643
1644 q = ptr + STRLEN(ptr);
1645 while (--q > ptr && vim_iswhite(q[0]) && q[-1] != '\\' && q[-1] != Ctrl_V)
1646 *q = NUL;
1647}
1648
1649/*
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001650 * Like strncpy(), but always terminate the result with one NUL.
Bram Moolenaard042c562005-06-30 22:04:15 +00001651 * "to" must be "len + 1" long!
Bram Moolenaar071d4272004-06-13 20:20:40 +00001652 */
1653 void
1654vim_strncpy(to, from, len)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001655 char_u *to;
1656 char_u *from;
Bram Moolenaarbbebc852005-07-18 21:47:53 +00001657 size_t len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001658{
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001659 STRNCPY(to, from, len);
1660 to[len] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001661}
1662
1663/*
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02001664 * Like strcat(), but make sure the result fits in "tosize" bytes and is
1665 * always NUL terminated.
1666 */
1667 void
1668vim_strcat(to, from, tosize)
1669 char_u *to;
1670 char_u *from;
1671 size_t tosize;
1672{
1673 size_t tolen = STRLEN(to);
1674 size_t fromlen = STRLEN(from);
1675
1676 if (tolen + fromlen + 1 > tosize)
1677 {
1678 mch_memmove(to + tolen, from, tosize - tolen - 1);
1679 to[tosize - 1] = NUL;
1680 }
1681 else
1682 STRCPY(to + tolen, from);
1683}
1684
1685/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001686 * Isolate one part of a string option where parts are separated with
1687 * "sep_chars".
Bram Moolenaar83bab712005-08-01 21:58:57 +00001688 * The part is copied into "buf[maxlen]".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001689 * "*option" is advanced to the next part.
1690 * The length is returned.
1691 */
1692 int
1693copy_option_part(option, buf, maxlen, sep_chars)
1694 char_u **option;
1695 char_u *buf;
1696 int maxlen;
1697 char *sep_chars;
1698{
1699 int len = 0;
1700 char_u *p = *option;
1701
1702 /* skip '.' at start of option part, for 'suffixes' */
1703 if (*p == '.')
1704 buf[len++] = *p++;
1705 while (*p != NUL && vim_strchr((char_u *)sep_chars, *p) == NULL)
1706 {
1707 /*
1708 * Skip backslash before a separator character and space.
1709 */
1710 if (p[0] == '\\' && vim_strchr((char_u *)sep_chars, p[1]) != NULL)
1711 ++p;
1712 if (len < maxlen - 1)
1713 buf[len++] = *p;
1714 ++p;
1715 }
1716 buf[len] = NUL;
1717
1718 if (*p != NUL && *p != ',') /* skip non-standard separator */
1719 ++p;
1720 p = skip_to_option_part(p); /* p points to next file name */
1721
1722 *option = p;
1723 return len;
1724}
1725
1726/*
Bram Moolenaar4770d092006-01-12 23:22:24 +00001727 * Replacement for free() that ignores NULL pointers.
1728 * Also skip free() when exiting for sure, this helps when we caught a deadly
1729 * signal that was caused by a crash in free().
Bram Moolenaar071d4272004-06-13 20:20:40 +00001730 */
1731 void
1732vim_free(x)
1733 void *x;
1734{
Bram Moolenaar4770d092006-01-12 23:22:24 +00001735 if (x != NULL && !really_exiting)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001736 {
1737#ifdef MEM_PROFILE
1738 mem_pre_free(&x);
1739#endif
1740 free(x);
1741 }
1742}
1743
1744#ifndef HAVE_MEMSET
1745 void *
1746vim_memset(ptr, c, size)
1747 void *ptr;
1748 int c;
1749 size_t size;
1750{
1751 char *p = ptr;
1752
1753 while (size-- > 0)
1754 *p++ = c;
1755 return ptr;
1756}
1757#endif
1758
1759#ifdef VIM_MEMCMP
1760/*
1761 * Return zero when "b1" and "b2" are the same for "len" bytes.
1762 * Return non-zero otherwise.
1763 */
1764 int
1765vim_memcmp(b1, b2, len)
1766 void *b1;
1767 void *b2;
1768 size_t len;
1769{
1770 char_u *p1 = (char_u *)b1, *p2 = (char_u *)b2;
1771
1772 for ( ; len > 0; --len)
1773 {
1774 if (*p1 != *p2)
1775 return 1;
1776 ++p1;
1777 ++p2;
1778 }
1779 return 0;
1780}
1781#endif
1782
1783#ifdef VIM_MEMMOVE
1784/*
1785 * Version of memmove() that handles overlapping source and destination.
1786 * For systems that don't have a function that is guaranteed to do that (SYSV).
1787 */
1788 void
1789mch_memmove(dst_arg, src_arg, len)
1790 void *src_arg, *dst_arg;
1791 size_t len;
1792{
1793 /*
1794 * A void doesn't have a size, we use char pointers.
1795 */
1796 char *dst = dst_arg, *src = src_arg;
1797
1798 /* overlap, copy backwards */
1799 if (dst > src && dst < src + len)
1800 {
1801 src += len;
1802 dst += len;
1803 while (len-- > 0)
1804 *--dst = *--src;
1805 }
1806 else /* copy forwards */
1807 while (len-- > 0)
1808 *dst++ = *src++;
1809}
1810#endif
1811
1812#if (!defined(HAVE_STRCASECMP) && !defined(HAVE_STRICMP)) || defined(PROTO)
1813/*
1814 * Compare two strings, ignoring case, using current locale.
1815 * Doesn't work for multi-byte characters.
1816 * return 0 for match, < 0 for smaller, > 0 for bigger
1817 */
1818 int
1819vim_stricmp(s1, s2)
1820 char *s1;
1821 char *s2;
1822{
1823 int i;
1824
1825 for (;;)
1826 {
1827 i = (int)TOLOWER_LOC(*s1) - (int)TOLOWER_LOC(*s2);
1828 if (i != 0)
1829 return i; /* this character different */
1830 if (*s1 == NUL)
1831 break; /* strings match until NUL */
1832 ++s1;
1833 ++s2;
1834 }
1835 return 0; /* strings match */
1836}
1837#endif
1838
1839#if (!defined(HAVE_STRNCASECMP) && !defined(HAVE_STRNICMP)) || defined(PROTO)
1840/*
1841 * Compare two strings, for length "len", ignoring case, using current locale.
1842 * Doesn't work for multi-byte characters.
1843 * return 0 for match, < 0 for smaller, > 0 for bigger
1844 */
1845 int
1846vim_strnicmp(s1, s2, len)
1847 char *s1;
1848 char *s2;
1849 size_t len;
1850{
1851 int i;
1852
1853 while (len > 0)
1854 {
1855 i = (int)TOLOWER_LOC(*s1) - (int)TOLOWER_LOC(*s2);
1856 if (i != 0)
1857 return i; /* this character different */
1858 if (*s1 == NUL)
1859 break; /* strings match until NUL */
1860 ++s1;
1861 ++s2;
1862 --len;
1863 }
1864 return 0; /* strings match */
1865}
1866#endif
1867
Bram Moolenaar071d4272004-06-13 20:20:40 +00001868/*
1869 * Version of strchr() and strrchr() that handle unsigned char strings
Bram Moolenaar05159a02005-02-26 23:04:13 +00001870 * with characters from 128 to 255 correctly. It also doesn't return a
1871 * pointer to the NUL at the end of the string.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001872 */
1873 char_u *
1874vim_strchr(string, c)
1875 char_u *string;
1876 int c;
1877{
1878 char_u *p;
1879 int b;
1880
1881 p = string;
1882#ifdef FEAT_MBYTE
1883 if (enc_utf8 && c >= 0x80)
1884 {
1885 while (*p != NUL)
1886 {
1887 if (utf_ptr2char(p) == c)
1888 return p;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001889 p += (*mb_ptr2len)(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001890 }
1891 return NULL;
1892 }
1893 if (enc_dbcs != 0 && c > 255)
1894 {
1895 int n2 = c & 0xff;
1896
1897 c = ((unsigned)c >> 8) & 0xff;
1898 while ((b = *p) != NUL)
1899 {
1900 if (b == c && p[1] == n2)
1901 return p;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001902 p += (*mb_ptr2len)(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001903 }
1904 return NULL;
1905 }
1906 if (has_mbyte)
1907 {
1908 while ((b = *p) != NUL)
1909 {
1910 if (b == c)
1911 return p;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001912 p += (*mb_ptr2len)(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001913 }
1914 return NULL;
1915 }
1916#endif
1917 while ((b = *p) != NUL)
1918 {
1919 if (b == c)
1920 return p;
1921 ++p;
1922 }
1923 return NULL;
1924}
1925
1926/*
Bram Moolenaar05159a02005-02-26 23:04:13 +00001927 * Version of strchr() that only works for bytes and handles unsigned char
1928 * strings with characters above 128 correctly. It also doesn't return a
1929 * pointer to the NUL at the end of the string.
1930 */
1931 char_u *
1932vim_strbyte(string, c)
1933 char_u *string;
1934 int c;
1935{
1936 char_u *p = string;
1937
1938 while (*p != NUL)
1939 {
1940 if (*p == c)
1941 return p;
1942 ++p;
1943 }
1944 return NULL;
1945}
1946
1947/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001948 * Search for last occurrence of "c" in "string".
Bram Moolenaarac6e65f2005-08-29 22:25:38 +00001949 * Return NULL if not found.
Bram Moolenaar05159a02005-02-26 23:04:13 +00001950 * Does not handle multi-byte char for "c"!
Bram Moolenaar071d4272004-06-13 20:20:40 +00001951 */
1952 char_u *
1953vim_strrchr(string, c)
1954 char_u *string;
1955 int c;
1956{
1957 char_u *retval = NULL;
Bram Moolenaar05159a02005-02-26 23:04:13 +00001958 char_u *p = string;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001959
Bram Moolenaar05159a02005-02-26 23:04:13 +00001960 while (*p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001961 {
Bram Moolenaar05159a02005-02-26 23:04:13 +00001962 if (*p == c)
1963 retval = p;
1964 mb_ptr_adv(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001965 }
1966 return retval;
1967}
1968
1969/*
1970 * Vim's version of strpbrk(), in case it's missing.
1971 * Don't generate a prototype for this, causes problems when it's not used.
1972 */
1973#ifndef PROTO
1974# ifndef HAVE_STRPBRK
1975# ifdef vim_strpbrk
1976# undef vim_strpbrk
1977# endif
1978 char_u *
1979vim_strpbrk(s, charset)
1980 char_u *s;
1981 char_u *charset;
1982{
1983 while (*s)
1984 {
1985 if (vim_strchr(charset, *s) != NULL)
1986 return s;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001987 mb_ptr_adv(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001988 }
1989 return NULL;
1990}
1991# endif
1992#endif
1993
1994/*
1995 * Vim has its own isspace() function, because on some machines isspace()
1996 * can't handle characters above 128.
1997 */
1998 int
1999vim_isspace(x)
2000 int x;
2001{
2002 return ((x >= 9 && x <= 13) || x == ' ');
2003}
2004
2005/************************************************************************
Bram Moolenaar383f9bc2005-01-19 22:18:32 +00002006 * Functions for handling growing arrays.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002007 */
2008
2009/*
2010 * Clear an allocated growing array.
2011 */
2012 void
2013ga_clear(gap)
2014 garray_T *gap;
2015{
2016 vim_free(gap->ga_data);
2017 ga_init(gap);
2018}
2019
2020/*
2021 * Clear a growing array that contains a list of strings.
2022 */
2023 void
2024ga_clear_strings(gap)
2025 garray_T *gap;
2026{
2027 int i;
2028
2029 for (i = 0; i < gap->ga_len; ++i)
2030 vim_free(((char_u **)(gap->ga_data))[i]);
2031 ga_clear(gap);
2032}
2033
2034/*
2035 * Initialize a growing array. Don't forget to set ga_itemsize and
2036 * ga_growsize! Or use ga_init2().
2037 */
2038 void
2039ga_init(gap)
2040 garray_T *gap;
2041{
2042 gap->ga_data = NULL;
Bram Moolenaar86b68352004-12-27 21:59:20 +00002043 gap->ga_maxlen = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002044 gap->ga_len = 0;
2045}
2046
2047 void
2048ga_init2(gap, itemsize, growsize)
2049 garray_T *gap;
2050 int itemsize;
2051 int growsize;
2052{
2053 ga_init(gap);
2054 gap->ga_itemsize = itemsize;
2055 gap->ga_growsize = growsize;
2056}
2057
2058/*
2059 * Make room in growing array "gap" for at least "n" items.
2060 * Return FAIL for failure, OK otherwise.
2061 */
2062 int
2063ga_grow(gap, n)
2064 garray_T *gap;
2065 int n;
2066{
2067 size_t len;
2068 char_u *pp;
2069
Bram Moolenaar86b68352004-12-27 21:59:20 +00002070 if (gap->ga_maxlen - gap->ga_len < n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002071 {
2072 if (n < gap->ga_growsize)
2073 n = gap->ga_growsize;
2074 len = gap->ga_itemsize * (gap->ga_len + n);
2075 pp = alloc_clear((unsigned)len);
2076 if (pp == NULL)
2077 return FAIL;
Bram Moolenaar86b68352004-12-27 21:59:20 +00002078 gap->ga_maxlen = gap->ga_len + n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002079 if (gap->ga_data != NULL)
2080 {
2081 mch_memmove(pp, gap->ga_data,
2082 (size_t)(gap->ga_itemsize * gap->ga_len));
2083 vim_free(gap->ga_data);
2084 }
2085 gap->ga_data = pp;
2086 }
2087 return OK;
2088}
2089
2090/*
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02002091 * For a growing array that contains a list of strings: concatenate all the
2092 * strings with a separating comma.
2093 * Returns NULL when out of memory.
2094 */
2095 char_u *
2096ga_concat_strings(gap)
2097 garray_T *gap;
2098{
2099 int i;
2100 int len = 0;
2101 char_u *s;
2102
2103 for (i = 0; i < gap->ga_len; ++i)
2104 len += (int)STRLEN(((char_u **)(gap->ga_data))[i]) + 1;
2105
2106 s = alloc(len + 1);
2107 if (s != NULL)
2108 {
2109 *s = NUL;
2110 for (i = 0; i < gap->ga_len; ++i)
2111 {
2112 if (*s != NUL)
2113 STRCAT(s, ",");
2114 STRCAT(s, ((char_u **)(gap->ga_data))[i]);
2115 }
2116 }
2117 return s;
2118}
2119
2120/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002121 * Concatenate a string to a growarray which contains characters.
2122 * Note: Does NOT copy the NUL at the end!
2123 */
2124 void
2125ga_concat(gap, s)
2126 garray_T *gap;
2127 char_u *s;
2128{
2129 int len = (int)STRLEN(s);
2130
2131 if (ga_grow(gap, len) == OK)
2132 {
2133 mch_memmove((char *)gap->ga_data + gap->ga_len, s, (size_t)len);
2134 gap->ga_len += len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002135 }
2136}
2137
2138/*
2139 * Append one byte to a growarray which contains bytes.
2140 */
2141 void
2142ga_append(gap, c)
2143 garray_T *gap;
2144 int c;
2145{
2146 if (ga_grow(gap, 1) == OK)
2147 {
2148 *((char *)gap->ga_data + gap->ga_len) = c;
2149 ++gap->ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002150 }
2151}
2152
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02002153#if (defined(UNIX) && !defined(USE_SYSTEM)) || defined(WIN3264)
2154/*
2155 * Append the text in "gap" below the cursor line and clear "gap".
2156 */
2157 void
2158append_ga_line(gap)
2159 garray_T *gap;
2160{
2161 /* Remove trailing CR. */
2162 if (gap->ga_len > 0
2163 && !curbuf->b_p_bin
2164 && ((char_u *)gap->ga_data)[gap->ga_len - 1] == CAR)
2165 --gap->ga_len;
2166 ga_append(gap, NUL);
2167 ml_append(curwin->w_cursor.lnum++, gap->ga_data, 0, FALSE);
2168 gap->ga_len = 0;
2169}
2170#endif
2171
Bram Moolenaar071d4272004-06-13 20:20:40 +00002172/************************************************************************
2173 * functions that use lookup tables for various things, generally to do with
2174 * special key codes.
2175 */
2176
2177/*
2178 * Some useful tables.
2179 */
2180
2181static struct modmasktable
2182{
2183 short mod_mask; /* Bit-mask for particular key modifier */
2184 short mod_flag; /* Bit(s) for particular key modifier */
2185 char_u name; /* Single letter name of modifier */
2186} mod_mask_table[] =
2187{
2188 {MOD_MASK_ALT, MOD_MASK_ALT, (char_u)'M'},
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002189 {MOD_MASK_META, MOD_MASK_META, (char_u)'T'},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002190 {MOD_MASK_CTRL, MOD_MASK_CTRL, (char_u)'C'},
2191 {MOD_MASK_SHIFT, MOD_MASK_SHIFT, (char_u)'S'},
2192 {MOD_MASK_MULTI_CLICK, MOD_MASK_2CLICK, (char_u)'2'},
2193 {MOD_MASK_MULTI_CLICK, MOD_MASK_3CLICK, (char_u)'3'},
2194 {MOD_MASK_MULTI_CLICK, MOD_MASK_4CLICK, (char_u)'4'},
2195#ifdef MACOS
2196 {MOD_MASK_CMD, MOD_MASK_CMD, (char_u)'D'},
2197#endif
2198 /* 'A' must be the last one */
2199 {MOD_MASK_ALT, MOD_MASK_ALT, (char_u)'A'},
2200 {0, 0, NUL}
2201};
2202
2203/*
2204 * Shifted key terminal codes and their unshifted equivalent.
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00002205 * Don't add mouse codes here, they are handled separately!
Bram Moolenaar071d4272004-06-13 20:20:40 +00002206 */
2207#define MOD_KEYS_ENTRY_SIZE 5
2208
2209static char_u modifier_keys_table[] =
2210{
2211/* mod mask with modifier without modifier */
2212 MOD_MASK_SHIFT, '&', '9', '@', '1', /* begin */
2213 MOD_MASK_SHIFT, '&', '0', '@', '2', /* cancel */
2214 MOD_MASK_SHIFT, '*', '1', '@', '4', /* command */
2215 MOD_MASK_SHIFT, '*', '2', '@', '5', /* copy */
2216 MOD_MASK_SHIFT, '*', '3', '@', '6', /* create */
2217 MOD_MASK_SHIFT, '*', '4', 'k', 'D', /* delete char */
2218 MOD_MASK_SHIFT, '*', '5', 'k', 'L', /* delete line */
2219 MOD_MASK_SHIFT, '*', '7', '@', '7', /* end */
2220 MOD_MASK_CTRL, KS_EXTRA, (int)KE_C_END, '@', '7', /* end */
2221 MOD_MASK_SHIFT, '*', '9', '@', '9', /* exit */
2222 MOD_MASK_SHIFT, '*', '0', '@', '0', /* find */
2223 MOD_MASK_SHIFT, '#', '1', '%', '1', /* help */
2224 MOD_MASK_SHIFT, '#', '2', 'k', 'h', /* home */
2225 MOD_MASK_CTRL, KS_EXTRA, (int)KE_C_HOME, 'k', 'h', /* home */
2226 MOD_MASK_SHIFT, '#', '3', 'k', 'I', /* insert */
2227 MOD_MASK_SHIFT, '#', '4', 'k', 'l', /* left arrow */
2228 MOD_MASK_CTRL, KS_EXTRA, (int)KE_C_LEFT, 'k', 'l', /* left arrow */
2229 MOD_MASK_SHIFT, '%', 'a', '%', '3', /* message */
2230 MOD_MASK_SHIFT, '%', 'b', '%', '4', /* move */
2231 MOD_MASK_SHIFT, '%', 'c', '%', '5', /* next */
2232 MOD_MASK_SHIFT, '%', 'd', '%', '7', /* options */
2233 MOD_MASK_SHIFT, '%', 'e', '%', '8', /* previous */
2234 MOD_MASK_SHIFT, '%', 'f', '%', '9', /* print */
2235 MOD_MASK_SHIFT, '%', 'g', '%', '0', /* redo */
2236 MOD_MASK_SHIFT, '%', 'h', '&', '3', /* replace */
2237 MOD_MASK_SHIFT, '%', 'i', 'k', 'r', /* right arr. */
2238 MOD_MASK_CTRL, KS_EXTRA, (int)KE_C_RIGHT, 'k', 'r', /* right arr. */
2239 MOD_MASK_SHIFT, '%', 'j', '&', '5', /* resume */
2240 MOD_MASK_SHIFT, '!', '1', '&', '6', /* save */
2241 MOD_MASK_SHIFT, '!', '2', '&', '7', /* suspend */
2242 MOD_MASK_SHIFT, '!', '3', '&', '8', /* undo */
2243 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_UP, 'k', 'u', /* up arrow */
2244 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_DOWN, 'k', 'd', /* down arrow */
2245
2246 /* vt100 F1 */
2247 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_XF1, KS_EXTRA, (int)KE_XF1,
2248 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_XF2, KS_EXTRA, (int)KE_XF2,
2249 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_XF3, KS_EXTRA, (int)KE_XF3,
2250 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_XF4, KS_EXTRA, (int)KE_XF4,
2251
2252 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F1, 'k', '1', /* F1 */
2253 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F2, 'k', '2',
2254 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F3, 'k', '3',
2255 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F4, 'k', '4',
2256 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F5, 'k', '5',
2257 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F6, 'k', '6',
2258 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F7, 'k', '7',
2259 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F8, 'k', '8',
2260 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F9, 'k', '9',
2261 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F10, 'k', ';', /* F10 */
2262
2263 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F11, 'F', '1',
2264 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F12, 'F', '2',
2265 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F13, 'F', '3',
2266 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F14, 'F', '4',
2267 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F15, 'F', '5',
2268 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F16, 'F', '6',
2269 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F17, 'F', '7',
2270 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F18, 'F', '8',
2271 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F19, 'F', '9',
2272 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F20, 'F', 'A',
2273
2274 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F21, 'F', 'B',
2275 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F22, 'F', 'C',
2276 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F23, 'F', 'D',
2277 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F24, 'F', 'E',
2278 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F25, 'F', 'F',
2279 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F26, 'F', 'G',
2280 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F27, 'F', 'H',
2281 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F28, 'F', 'I',
2282 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F29, 'F', 'J',
2283 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F30, 'F', 'K',
2284
2285 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F31, 'F', 'L',
2286 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F32, 'F', 'M',
2287 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F33, 'F', 'N',
2288 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F34, 'F', 'O',
2289 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F35, 'F', 'P',
2290 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F36, 'F', 'Q',
2291 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F37, 'F', 'R',
2292
2293 /* TAB pseudo code*/
2294 MOD_MASK_SHIFT, 'k', 'B', KS_EXTRA, (int)KE_TAB,
2295
2296 NUL
2297};
2298
2299static struct key_name_entry
2300{
2301 int key; /* Special key code or ascii value */
2302 char_u *name; /* Name of key */
2303} key_names_table[] =
2304{
2305 {' ', (char_u *)"Space"},
2306 {TAB, (char_u *)"Tab"},
2307 {K_TAB, (char_u *)"Tab"},
2308 {NL, (char_u *)"NL"},
2309 {NL, (char_u *)"NewLine"}, /* Alternative name */
2310 {NL, (char_u *)"LineFeed"}, /* Alternative name */
2311 {NL, (char_u *)"LF"}, /* Alternative name */
2312 {CAR, (char_u *)"CR"},
2313 {CAR, (char_u *)"Return"}, /* Alternative name */
2314 {CAR, (char_u *)"Enter"}, /* Alternative name */
2315 {K_BS, (char_u *)"BS"},
2316 {K_BS, (char_u *)"BackSpace"}, /* Alternative name */
2317 {ESC, (char_u *)"Esc"},
2318 {CSI, (char_u *)"CSI"},
2319 {K_CSI, (char_u *)"xCSI"},
2320 {'|', (char_u *)"Bar"},
2321 {'\\', (char_u *)"Bslash"},
2322 {K_DEL, (char_u *)"Del"},
2323 {K_DEL, (char_u *)"Delete"}, /* Alternative name */
2324 {K_KDEL, (char_u *)"kDel"},
2325 {K_UP, (char_u *)"Up"},
2326 {K_DOWN, (char_u *)"Down"},
2327 {K_LEFT, (char_u *)"Left"},
2328 {K_RIGHT, (char_u *)"Right"},
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002329 {K_XUP, (char_u *)"xUp"},
2330 {K_XDOWN, (char_u *)"xDown"},
2331 {K_XLEFT, (char_u *)"xLeft"},
2332 {K_XRIGHT, (char_u *)"xRight"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002333
2334 {K_F1, (char_u *)"F1"},
2335 {K_F2, (char_u *)"F2"},
2336 {K_F3, (char_u *)"F3"},
2337 {K_F4, (char_u *)"F4"},
2338 {K_F5, (char_u *)"F5"},
2339 {K_F6, (char_u *)"F6"},
2340 {K_F7, (char_u *)"F7"},
2341 {K_F8, (char_u *)"F8"},
2342 {K_F9, (char_u *)"F9"},
2343 {K_F10, (char_u *)"F10"},
2344
2345 {K_F11, (char_u *)"F11"},
2346 {K_F12, (char_u *)"F12"},
2347 {K_F13, (char_u *)"F13"},
2348 {K_F14, (char_u *)"F14"},
2349 {K_F15, (char_u *)"F15"},
2350 {K_F16, (char_u *)"F16"},
2351 {K_F17, (char_u *)"F17"},
2352 {K_F18, (char_u *)"F18"},
2353 {K_F19, (char_u *)"F19"},
2354 {K_F20, (char_u *)"F20"},
2355
2356 {K_F21, (char_u *)"F21"},
2357 {K_F22, (char_u *)"F22"},
2358 {K_F23, (char_u *)"F23"},
2359 {K_F24, (char_u *)"F24"},
2360 {K_F25, (char_u *)"F25"},
2361 {K_F26, (char_u *)"F26"},
2362 {K_F27, (char_u *)"F27"},
2363 {K_F28, (char_u *)"F28"},
2364 {K_F29, (char_u *)"F29"},
2365 {K_F30, (char_u *)"F30"},
2366
2367 {K_F31, (char_u *)"F31"},
2368 {K_F32, (char_u *)"F32"},
2369 {K_F33, (char_u *)"F33"},
2370 {K_F34, (char_u *)"F34"},
2371 {K_F35, (char_u *)"F35"},
2372 {K_F36, (char_u *)"F36"},
2373 {K_F37, (char_u *)"F37"},
2374
2375 {K_XF1, (char_u *)"xF1"},
2376 {K_XF2, (char_u *)"xF2"},
2377 {K_XF3, (char_u *)"xF3"},
2378 {K_XF4, (char_u *)"xF4"},
2379
2380 {K_HELP, (char_u *)"Help"},
2381 {K_UNDO, (char_u *)"Undo"},
2382 {K_INS, (char_u *)"Insert"},
2383 {K_INS, (char_u *)"Ins"}, /* Alternative name */
2384 {K_KINS, (char_u *)"kInsert"},
2385 {K_HOME, (char_u *)"Home"},
2386 {K_KHOME, (char_u *)"kHome"},
2387 {K_XHOME, (char_u *)"xHome"},
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002388 {K_ZHOME, (char_u *)"zHome"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002389 {K_END, (char_u *)"End"},
2390 {K_KEND, (char_u *)"kEnd"},
2391 {K_XEND, (char_u *)"xEnd"},
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002392 {K_ZEND, (char_u *)"zEnd"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002393 {K_PAGEUP, (char_u *)"PageUp"},
2394 {K_PAGEDOWN, (char_u *)"PageDown"},
2395 {K_KPAGEUP, (char_u *)"kPageUp"},
2396 {K_KPAGEDOWN, (char_u *)"kPageDown"},
2397
2398 {K_KPLUS, (char_u *)"kPlus"},
2399 {K_KMINUS, (char_u *)"kMinus"},
2400 {K_KDIVIDE, (char_u *)"kDivide"},
2401 {K_KMULTIPLY, (char_u *)"kMultiply"},
2402 {K_KENTER, (char_u *)"kEnter"},
2403 {K_KPOINT, (char_u *)"kPoint"},
2404
2405 {K_K0, (char_u *)"k0"},
2406 {K_K1, (char_u *)"k1"},
2407 {K_K2, (char_u *)"k2"},
2408 {K_K3, (char_u *)"k3"},
2409 {K_K4, (char_u *)"k4"},
2410 {K_K5, (char_u *)"k5"},
2411 {K_K6, (char_u *)"k6"},
2412 {K_K7, (char_u *)"k7"},
2413 {K_K8, (char_u *)"k8"},
2414 {K_K9, (char_u *)"k9"},
2415
2416 {'<', (char_u *)"lt"},
2417
2418 {K_MOUSE, (char_u *)"Mouse"},
2419 {K_NETTERM_MOUSE, (char_u *)"NetMouse"},
2420 {K_DEC_MOUSE, (char_u *)"DecMouse"},
2421 {K_JSBTERM_MOUSE, (char_u *)"JsbMouse"},
2422 {K_PTERM_MOUSE, (char_u *)"PtermMouse"},
2423 {K_LEFTMOUSE, (char_u *)"LeftMouse"},
2424 {K_LEFTMOUSE_NM, (char_u *)"LeftMouseNM"},
2425 {K_LEFTDRAG, (char_u *)"LeftDrag"},
2426 {K_LEFTRELEASE, (char_u *)"LeftRelease"},
2427 {K_LEFTRELEASE_NM, (char_u *)"LeftReleaseNM"},
2428 {K_MIDDLEMOUSE, (char_u *)"MiddleMouse"},
2429 {K_MIDDLEDRAG, (char_u *)"MiddleDrag"},
2430 {K_MIDDLERELEASE, (char_u *)"MiddleRelease"},
2431 {K_RIGHTMOUSE, (char_u *)"RightMouse"},
2432 {K_RIGHTDRAG, (char_u *)"RightDrag"},
2433 {K_RIGHTRELEASE, (char_u *)"RightRelease"},
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02002434 {K_MOUSEDOWN, (char_u *)"ScrollWheelUp"},
2435 {K_MOUSEUP, (char_u *)"ScrollWheelDown"},
2436 {K_MOUSELEFT, (char_u *)"ScrollWheelRight"},
2437 {K_MOUSERIGHT, (char_u *)"ScrollWheelLeft"},
2438 {K_MOUSEDOWN, (char_u *)"MouseDown"}, /* OBSOLETE: Use */
2439 {K_MOUSEUP, (char_u *)"MouseUp"}, /* ScrollWheelXXX instead */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002440 {K_X1MOUSE, (char_u *)"X1Mouse"},
2441 {K_X1DRAG, (char_u *)"X1Drag"},
2442 {K_X1RELEASE, (char_u *)"X1Release"},
2443 {K_X2MOUSE, (char_u *)"X2Mouse"},
2444 {K_X2DRAG, (char_u *)"X2Drag"},
2445 {K_X2RELEASE, (char_u *)"X2Release"},
2446 {K_DROP, (char_u *)"Drop"},
2447 {K_ZERO, (char_u *)"Nul"},
2448#ifdef FEAT_EVAL
2449 {K_SNR, (char_u *)"SNR"},
2450#endif
2451 {K_PLUG, (char_u *)"Plug"},
2452 {0, NULL}
2453};
2454
2455#define KEY_NAMES_TABLE_LEN (sizeof(key_names_table) / sizeof(struct key_name_entry))
2456
2457#ifdef FEAT_MOUSE
2458static struct mousetable
2459{
2460 int pseudo_code; /* Code for pseudo mouse event */
2461 int button; /* Which mouse button is it? */
2462 int is_click; /* Is it a mouse button click event? */
2463 int is_drag; /* Is it a mouse drag event? */
2464} mouse_table[] =
2465{
2466 {(int)KE_LEFTMOUSE, MOUSE_LEFT, TRUE, FALSE},
2467#ifdef FEAT_GUI
2468 {(int)KE_LEFTMOUSE_NM, MOUSE_LEFT, TRUE, FALSE},
2469#endif
2470 {(int)KE_LEFTDRAG, MOUSE_LEFT, FALSE, TRUE},
2471 {(int)KE_LEFTRELEASE, MOUSE_LEFT, FALSE, FALSE},
2472#ifdef FEAT_GUI
2473 {(int)KE_LEFTRELEASE_NM, MOUSE_LEFT, FALSE, FALSE},
2474#endif
2475 {(int)KE_MIDDLEMOUSE, MOUSE_MIDDLE, TRUE, FALSE},
2476 {(int)KE_MIDDLEDRAG, MOUSE_MIDDLE, FALSE, TRUE},
2477 {(int)KE_MIDDLERELEASE, MOUSE_MIDDLE, FALSE, FALSE},
2478 {(int)KE_RIGHTMOUSE, MOUSE_RIGHT, TRUE, FALSE},
2479 {(int)KE_RIGHTDRAG, MOUSE_RIGHT, FALSE, TRUE},
2480 {(int)KE_RIGHTRELEASE, MOUSE_RIGHT, FALSE, FALSE},
2481 {(int)KE_X1MOUSE, MOUSE_X1, TRUE, FALSE},
2482 {(int)KE_X1DRAG, MOUSE_X1, FALSE, TRUE},
2483 {(int)KE_X1RELEASE, MOUSE_X1, FALSE, FALSE},
2484 {(int)KE_X2MOUSE, MOUSE_X2, TRUE, FALSE},
2485 {(int)KE_X2DRAG, MOUSE_X2, FALSE, TRUE},
2486 {(int)KE_X2RELEASE, MOUSE_X2, FALSE, FALSE},
2487 /* DRAG without CLICK */
2488 {(int)KE_IGNORE, MOUSE_RELEASE, FALSE, TRUE},
2489 /* RELEASE without CLICK */
2490 {(int)KE_IGNORE, MOUSE_RELEASE, FALSE, FALSE},
2491 {0, 0, 0, 0},
2492};
2493#endif /* FEAT_MOUSE */
2494
2495/*
2496 * Return the modifier mask bit (MOD_MASK_*) which corresponds to the given
2497 * modifier name ('S' for Shift, 'C' for Ctrl etc).
2498 */
2499 int
2500name_to_mod_mask(c)
2501 int c;
2502{
2503 int i;
2504
2505 c = TOUPPER_ASC(c);
2506 for (i = 0; mod_mask_table[i].mod_mask != 0; i++)
2507 if (c == mod_mask_table[i].name)
2508 return mod_mask_table[i].mod_flag;
2509 return 0;
2510}
2511
Bram Moolenaar071d4272004-06-13 20:20:40 +00002512/*
2513 * Check if if there is a special key code for "key" that includes the
2514 * modifiers specified.
2515 */
2516 int
2517simplify_key(key, modifiers)
2518 int key;
2519 int *modifiers;
2520{
2521 int i;
2522 int key0;
2523 int key1;
2524
2525 if (*modifiers & (MOD_MASK_SHIFT | MOD_MASK_CTRL | MOD_MASK_ALT))
2526 {
2527 /* TAB is a special case */
2528 if (key == TAB && (*modifiers & MOD_MASK_SHIFT))
2529 {
2530 *modifiers &= ~MOD_MASK_SHIFT;
2531 return K_S_TAB;
2532 }
2533 key0 = KEY2TERMCAP0(key);
2534 key1 = KEY2TERMCAP1(key);
2535 for (i = 0; modifier_keys_table[i] != NUL; i += MOD_KEYS_ENTRY_SIZE)
2536 if (key0 == modifier_keys_table[i + 3]
2537 && key1 == modifier_keys_table[i + 4]
2538 && (*modifiers & modifier_keys_table[i]))
2539 {
2540 *modifiers &= ~modifier_keys_table[i];
2541 return TERMCAP2KEY(modifier_keys_table[i + 1],
2542 modifier_keys_table[i + 2]);
2543 }
2544 }
2545 return key;
2546}
2547
2548/*
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002549 * Change <xHome> to <Home>, <xUp> to <Up>, etc.
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002550 */
2551 int
2552handle_x_keys(key)
2553 int key;
2554{
2555 switch (key)
2556 {
2557 case K_XUP: return K_UP;
2558 case K_XDOWN: return K_DOWN;
2559 case K_XLEFT: return K_LEFT;
2560 case K_XRIGHT: return K_RIGHT;
2561 case K_XHOME: return K_HOME;
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002562 case K_ZHOME: return K_HOME;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002563 case K_XEND: return K_END;
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002564 case K_ZEND: return K_END;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002565 case K_XF1: return K_F1;
2566 case K_XF2: return K_F2;
2567 case K_XF3: return K_F3;
2568 case K_XF4: return K_F4;
2569 case K_S_XF1: return K_S_F1;
2570 case K_S_XF2: return K_S_F2;
2571 case K_S_XF3: return K_S_F3;
2572 case K_S_XF4: return K_S_F4;
2573 }
2574 return key;
2575}
2576
2577/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002578 * Return a string which contains the name of the given key when the given
2579 * modifiers are down.
2580 */
2581 char_u *
2582get_special_key_name(c, modifiers)
2583 int c;
2584 int modifiers;
2585{
2586 static char_u string[MAX_KEY_NAME_LEN + 1];
2587
2588 int i, idx;
2589 int table_idx;
2590 char_u *s;
2591
2592 string[0] = '<';
2593 idx = 1;
2594
2595 /* Key that stands for a normal character. */
2596 if (IS_SPECIAL(c) && KEY2TERMCAP0(c) == KS_KEY)
2597 c = KEY2TERMCAP1(c);
2598
2599 /*
2600 * Translate shifted special keys into unshifted keys and set modifier.
2601 * Same for CTRL and ALT modifiers.
2602 */
2603 if (IS_SPECIAL(c))
2604 {
2605 for (i = 0; modifier_keys_table[i] != 0; i += MOD_KEYS_ENTRY_SIZE)
2606 if ( KEY2TERMCAP0(c) == (int)modifier_keys_table[i + 1]
2607 && (int)KEY2TERMCAP1(c) == (int)modifier_keys_table[i + 2])
2608 {
2609 modifiers |= modifier_keys_table[i];
2610 c = TERMCAP2KEY(modifier_keys_table[i + 3],
2611 modifier_keys_table[i + 4]);
2612 break;
2613 }
2614 }
2615
2616 /* try to find the key in the special key table */
2617 table_idx = find_special_key_in_table(c);
2618
2619 /*
2620 * When not a known special key, and not a printable character, try to
2621 * extract modifiers.
2622 */
2623 if (c > 0
2624#ifdef FEAT_MBYTE
2625 && (*mb_char2len)(c) == 1
2626#endif
2627 )
2628 {
2629 if (table_idx < 0
2630 && (!vim_isprintc(c) || (c & 0x7f) == ' ')
2631 && (c & 0x80))
2632 {
2633 c &= 0x7f;
2634 modifiers |= MOD_MASK_ALT;
2635 /* try again, to find the un-alted key in the special key table */
2636 table_idx = find_special_key_in_table(c);
2637 }
2638 if (table_idx < 0 && !vim_isprintc(c) && c < ' ')
2639 {
2640#ifdef EBCDIC
2641 c = CtrlChar(c);
2642#else
2643 c += '@';
2644#endif
2645 modifiers |= MOD_MASK_CTRL;
2646 }
2647 }
2648
2649 /* translate the modifier into a string */
2650 for (i = 0; mod_mask_table[i].name != 'A'; i++)
2651 if ((modifiers & mod_mask_table[i].mod_mask)
2652 == mod_mask_table[i].mod_flag)
2653 {
2654 string[idx++] = mod_mask_table[i].name;
2655 string[idx++] = (char_u)'-';
2656 }
2657
2658 if (table_idx < 0) /* unknown special key, may output t_xx */
2659 {
2660 if (IS_SPECIAL(c))
2661 {
2662 string[idx++] = 't';
2663 string[idx++] = '_';
2664 string[idx++] = KEY2TERMCAP0(c);
2665 string[idx++] = KEY2TERMCAP1(c);
2666 }
2667 /* Not a special key, only modifiers, output directly */
2668 else
2669 {
2670#ifdef FEAT_MBYTE
2671 if (has_mbyte && (*mb_char2len)(c) > 1)
2672 idx += (*mb_char2bytes)(c, string + idx);
2673 else
2674#endif
2675 if (vim_isprintc(c))
2676 string[idx++] = c;
2677 else
2678 {
2679 s = transchar(c);
2680 while (*s)
2681 string[idx++] = *s++;
2682 }
2683 }
2684 }
2685 else /* use name of special key */
2686 {
2687 STRCPY(string + idx, key_names_table[table_idx].name);
2688 idx = (int)STRLEN(string);
2689 }
2690 string[idx++] = '>';
2691 string[idx] = NUL;
2692 return string;
2693}
2694
2695/*
2696 * Try translating a <> name at (*srcp)[] to dst[].
2697 * Return the number of characters added to dst[], zero for no match.
2698 * If there is a match, srcp is advanced to after the <> name.
2699 * dst[] must be big enough to hold the result (up to six characters)!
2700 */
2701 int
2702trans_special(srcp, dst, keycode)
2703 char_u **srcp;
2704 char_u *dst;
2705 int keycode; /* prefer key code, e.g. K_DEL instead of DEL */
2706{
2707 int modifiers = 0;
2708 int key;
2709 int dlen = 0;
2710
Bram Moolenaar2a8ced02008-12-24 11:54:31 +00002711 key = find_special_key(srcp, &modifiers, keycode, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002712 if (key == 0)
2713 return 0;
2714
2715 /* Put the appropriate modifier in a string */
2716 if (modifiers != 0)
2717 {
2718 dst[dlen++] = K_SPECIAL;
2719 dst[dlen++] = KS_MODIFIER;
2720 dst[dlen++] = modifiers;
2721 }
2722
2723 if (IS_SPECIAL(key))
2724 {
2725 dst[dlen++] = K_SPECIAL;
2726 dst[dlen++] = KEY2TERMCAP0(key);
2727 dst[dlen++] = KEY2TERMCAP1(key);
2728 }
2729#ifdef FEAT_MBYTE
2730 else if (has_mbyte && !keycode)
2731 dlen += (*mb_char2bytes)(key, dst + dlen);
2732#endif
2733 else if (keycode)
2734 dlen = (int)(add_char2buf(key, dst + dlen) - dst);
2735 else
2736 dst[dlen++] = key;
2737
2738 return dlen;
2739}
2740
2741/*
2742 * Try translating a <> name at (*srcp)[], return the key and modifiers.
2743 * srcp is advanced to after the <> name.
2744 * returns 0 if there is no match.
2745 */
2746 int
Bram Moolenaar2a8ced02008-12-24 11:54:31 +00002747find_special_key(srcp, modp, keycode, keep_x_key)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002748 char_u **srcp;
2749 int *modp;
Bram Moolenaar2a8ced02008-12-24 11:54:31 +00002750 int keycode; /* prefer key code, e.g. K_DEL instead of DEL */
2751 int keep_x_key; /* don't translate xHome to Home key */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002752{
2753 char_u *last_dash;
2754 char_u *end_of_name;
2755 char_u *src;
2756 char_u *bp;
2757 int modifiers;
2758 int bit;
2759 int key;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002760 unsigned long n;
Bram Moolenaarb8bf5412011-08-17 20:33:22 +02002761 int l;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002762
2763 src = *srcp;
2764 if (src[0] != '<')
2765 return 0;
2766
2767 /* Find end of modifier list */
2768 last_dash = src;
2769 for (bp = src + 1; *bp == '-' || vim_isIDc(*bp); bp++)
2770 {
2771 if (*bp == '-')
2772 {
2773 last_dash = bp;
Bram Moolenaarb8bf5412011-08-17 20:33:22 +02002774 if (bp[1] != NUL)
2775 {
2776#ifdef FEAT_MBYTE
2777 if (has_mbyte)
2778 l = mb_ptr2len(bp + 1);
2779 else
2780#endif
2781 l = 1;
2782 if (bp[l + 1] == '>')
2783 bp += l; /* anything accepted, like <C-?> */
2784 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002785 }
2786 if (bp[0] == 't' && bp[1] == '_' && bp[2] && bp[3])
2787 bp += 3; /* skip t_xx, xx may be '-' or '>' */
Bram Moolenaar792826c2011-08-19 22:29:02 +02002788 else if (STRNICMP(bp, "char-", 5) == 0)
2789 {
2790 vim_str2nr(bp + 5, NULL, &l, TRUE, TRUE, NULL, NULL);
2791 bp += l + 5;
2792 break;
2793 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002794 }
2795
2796 if (*bp == '>') /* found matching '>' */
2797 {
2798 end_of_name = bp + 1;
2799
Bram Moolenaar071d4272004-06-13 20:20:40 +00002800 /* Which modifiers are given? */
2801 modifiers = 0x0;
2802 for (bp = src + 1; bp < last_dash; bp++)
2803 {
2804 if (*bp != '-')
2805 {
2806 bit = name_to_mod_mask(*bp);
2807 if (bit == 0x0)
2808 break; /* Illegal modifier name */
2809 modifiers |= bit;
2810 }
2811 }
2812
2813 /*
2814 * Legal modifier name.
2815 */
2816 if (bp >= last_dash)
2817 {
Bram Moolenaarb8bf5412011-08-17 20:33:22 +02002818 if (STRNICMP(last_dash + 1, "char-", 5) == 0
2819 && VIM_ISDIGIT(last_dash[6]))
2820 {
2821 /* <Char-123> or <Char-033> or <Char-0x33> */
2822 vim_str2nr(last_dash + 6, NULL, NULL, TRUE, TRUE, NULL, &n);
Bram Moolenaar792826c2011-08-19 22:29:02 +02002823 key = (int)n;
Bram Moolenaarb8bf5412011-08-17 20:33:22 +02002824 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002825 else
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002826 {
Bram Moolenaar792826c2011-08-19 22:29:02 +02002827 /*
2828 * Modifier with single letter, or special key name.
2829 */
2830#ifdef FEAT_MBYTE
2831 if (has_mbyte)
2832 l = mb_ptr2len(last_dash + 1);
2833 else
2834#endif
2835 l = 1;
2836 if (modifiers != 0 && last_dash[l + 1] == '>')
2837 key = PTR2CHAR(last_dash + 1);
2838 else
2839 {
2840 key = get_special_key_code(last_dash + 1);
2841 if (!keep_x_key)
2842 key = handle_x_keys(key);
2843 }
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002844 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002845
2846 /*
2847 * get_special_key_code() may return NUL for invalid
2848 * special key name.
2849 */
2850 if (key != NUL)
2851 {
2852 /*
2853 * Only use a modifier when there is no special key code that
2854 * includes the modifier.
2855 */
2856 key = simplify_key(key, &modifiers);
2857
2858 if (!keycode)
2859 {
2860 /* don't want keycode, use single byte code */
2861 if (key == K_BS)
2862 key = BS;
2863 else if (key == K_DEL || key == K_KDEL)
2864 key = DEL;
2865 }
2866
2867 /*
2868 * Normal Key with modifier: Try to make a single byte code.
2869 */
2870 if (!IS_SPECIAL(key))
2871 key = extract_modifiers(key, &modifiers);
2872
2873 *modp = modifiers;
2874 *srcp = end_of_name;
2875 return key;
2876 }
2877 }
2878 }
2879 return 0;
2880}
2881
2882/*
2883 * Try to include modifiers in the key.
2884 * Changes "Shift-a" to 'A', "Alt-A" to 0xc0, etc.
2885 */
2886 int
2887extract_modifiers(key, modp)
2888 int key;
2889 int *modp;
2890{
2891 int modifiers = *modp;
2892
2893#ifdef MACOS
2894 /* Command-key really special, No fancynest */
2895 if (!(modifiers & MOD_MASK_CMD))
2896#endif
2897 if ((modifiers & MOD_MASK_SHIFT) && ASCII_ISALPHA(key))
2898 {
2899 key = TOUPPER_ASC(key);
2900 modifiers &= ~MOD_MASK_SHIFT;
2901 }
2902 if ((modifiers & MOD_MASK_CTRL)
2903#ifdef EBCDIC
2904 /* * TODO: EBCDIC Better use:
2905 * && (Ctrl_chr(key) || key == '?')
2906 * ??? */
2907 && strchr("?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_", key)
2908 != NULL
2909#else
2910 && ((key >= '?' && key <= '_') || ASCII_ISALPHA(key))
2911#endif
2912 )
2913 {
2914 key = Ctrl_chr(key);
2915 modifiers &= ~MOD_MASK_CTRL;
2916 /* <C-@> is <Nul> */
2917 if (key == 0)
2918 key = K_ZERO;
2919 }
2920#ifdef MACOS
2921 /* Command-key really special, No fancynest */
2922 if (!(modifiers & MOD_MASK_CMD))
2923#endif
2924 if ((modifiers & MOD_MASK_ALT) && key < 0x80
2925#ifdef FEAT_MBYTE
2926 && !enc_dbcs /* avoid creating a lead byte */
2927#endif
2928 )
2929 {
2930 key |= 0x80;
2931 modifiers &= ~MOD_MASK_ALT; /* remove the META modifier */
2932 }
2933
2934 *modp = modifiers;
2935 return key;
2936}
2937
2938/*
2939 * Try to find key "c" in the special key table.
2940 * Return the index when found, -1 when not found.
2941 */
2942 int
2943find_special_key_in_table(c)
2944 int c;
2945{
2946 int i;
2947
2948 for (i = 0; key_names_table[i].name != NULL; i++)
2949 if (c == key_names_table[i].key)
2950 break;
2951 if (key_names_table[i].name == NULL)
2952 i = -1;
2953 return i;
2954}
2955
2956/*
2957 * Find the special key with the given name (the given string does not have to
2958 * end with NUL, the name is assumed to end before the first non-idchar).
2959 * If the name starts with "t_" the next two characters are interpreted as a
2960 * termcap name.
2961 * Return the key code, or 0 if not found.
2962 */
2963 int
2964get_special_key_code(name)
2965 char_u *name;
2966{
2967 char_u *table_name;
2968 char_u string[3];
2969 int i, j;
2970
2971 /*
2972 * If it's <t_xx> we get the code for xx from the termcap
2973 */
2974 if (name[0] == 't' && name[1] == '_' && name[2] != NUL && name[3] != NUL)
2975 {
2976 string[0] = name[2];
2977 string[1] = name[3];
2978 string[2] = NUL;
2979 if (add_termcap_entry(string, FALSE) == OK)
2980 return TERMCAP2KEY(name[2], name[3]);
2981 }
2982 else
2983 for (i = 0; key_names_table[i].name != NULL; i++)
2984 {
2985 table_name = key_names_table[i].name;
2986 for (j = 0; vim_isIDc(name[j]) && table_name[j] != NUL; j++)
2987 if (TOLOWER_ASC(table_name[j]) != TOLOWER_ASC(name[j]))
2988 break;
2989 if (!vim_isIDc(name[j]) && table_name[j] == NUL)
2990 return key_names_table[i].key;
2991 }
2992 return 0;
2993}
2994
Bram Moolenaar05bb9532008-07-04 09:44:11 +00002995#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002996 char_u *
2997get_key_name(i)
2998 int i;
2999{
Bram Moolenaare1fbddc2009-05-16 19:07:03 +00003000 if (i >= (int)KEY_NAMES_TABLE_LEN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003001 return NULL;
3002 return key_names_table[i].name;
3003}
3004#endif
3005
Bram Moolenaar05bb9532008-07-04 09:44:11 +00003006#if defined(FEAT_MOUSE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003007/*
3008 * Look up the given mouse code to return the relevant information in the other
3009 * arguments. Return which button is down or was released.
3010 */
3011 int
3012get_mouse_button(code, is_click, is_drag)
3013 int code;
3014 int *is_click;
3015 int *is_drag;
3016{
3017 int i;
3018
3019 for (i = 0; mouse_table[i].pseudo_code; i++)
3020 if (code == mouse_table[i].pseudo_code)
3021 {
3022 *is_click = mouse_table[i].is_click;
3023 *is_drag = mouse_table[i].is_drag;
3024 return mouse_table[i].button;
3025 }
3026 return 0; /* Shouldn't get here */
3027}
3028
3029/*
3030 * Return the appropriate pseudo mouse event token (KE_LEFTMOUSE etc) based on
3031 * the given information about which mouse button is down, and whether the
3032 * mouse was clicked, dragged or released.
3033 */
3034 int
3035get_pseudo_mouse_code(button, is_click, is_drag)
3036 int button; /* eg MOUSE_LEFT */
3037 int is_click;
3038 int is_drag;
3039{
3040 int i;
3041
3042 for (i = 0; mouse_table[i].pseudo_code; i++)
3043 if (button == mouse_table[i].button
3044 && is_click == mouse_table[i].is_click
3045 && is_drag == mouse_table[i].is_drag)
3046 {
3047#ifdef FEAT_GUI
Bram Moolenaarc91506a2005-04-24 22:04:21 +00003048 /* Trick: a non mappable left click and release has mouse_col -1
3049 * or added MOUSE_COLOFF. Used for 'mousefocus' in
3050 * gui_mouse_moved() */
3051 if (mouse_col < 0 || mouse_col > MOUSE_COLOFF)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003052 {
Bram Moolenaarc91506a2005-04-24 22:04:21 +00003053 if (mouse_col < 0)
3054 mouse_col = 0;
3055 else
3056 mouse_col -= MOUSE_COLOFF;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003057 if (mouse_table[i].pseudo_code == (int)KE_LEFTMOUSE)
3058 return (int)KE_LEFTMOUSE_NM;
3059 if (mouse_table[i].pseudo_code == (int)KE_LEFTRELEASE)
3060 return (int)KE_LEFTRELEASE_NM;
3061 }
3062#endif
3063 return mouse_table[i].pseudo_code;
3064 }
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00003065 return (int)KE_IGNORE; /* not recognized, ignore it */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003066}
3067#endif /* FEAT_MOUSE */
3068
3069/*
3070 * Return the current end-of-line type: EOL_DOS, EOL_UNIX or EOL_MAC.
3071 */
3072 int
3073get_fileformat(buf)
3074 buf_T *buf;
3075{
3076 int c = *buf->b_p_ff;
3077
3078 if (buf->b_p_bin || c == 'u')
3079 return EOL_UNIX;
3080 if (c == 'm')
3081 return EOL_MAC;
3082 return EOL_DOS;
3083}
3084
3085/*
3086 * Like get_fileformat(), but override 'fileformat' with "p" for "++opt=val"
3087 * argument.
3088 */
3089 int
3090get_fileformat_force(buf, eap)
3091 buf_T *buf;
3092 exarg_T *eap; /* can be NULL! */
3093{
3094 int c;
3095
3096 if (eap != NULL && eap->force_ff != 0)
3097 c = eap->cmd[eap->force_ff];
3098 else
3099 {
3100 if ((eap != NULL && eap->force_bin != 0)
3101 ? (eap->force_bin == FORCE_BIN) : buf->b_p_bin)
3102 return EOL_UNIX;
3103 c = *buf->b_p_ff;
3104 }
3105 if (c == 'u')
3106 return EOL_UNIX;
3107 if (c == 'm')
3108 return EOL_MAC;
3109 return EOL_DOS;
3110}
3111
3112/*
3113 * Set the current end-of-line type to EOL_DOS, EOL_UNIX or EOL_MAC.
3114 * Sets both 'textmode' and 'fileformat'.
3115 * Note: Does _not_ set global value of 'textmode'!
3116 */
3117 void
3118set_fileformat(t, opt_flags)
3119 int t;
3120 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
3121{
3122 char *p = NULL;
3123
3124 switch (t)
3125 {
3126 case EOL_DOS:
3127 p = FF_DOS;
3128 curbuf->b_p_tx = TRUE;
3129 break;
3130 case EOL_UNIX:
3131 p = FF_UNIX;
3132 curbuf->b_p_tx = FALSE;
3133 break;
3134 case EOL_MAC:
3135 p = FF_MAC;
3136 curbuf->b_p_tx = FALSE;
3137 break;
3138 }
3139 if (p != NULL)
3140 set_string_option_direct((char_u *)"ff", -1, (char_u *)p,
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00003141 OPT_FREE | opt_flags, 0);
3142
Bram Moolenaar071d4272004-06-13 20:20:40 +00003143#ifdef FEAT_WINDOWS
Bram Moolenaarf740b292006-02-16 22:11:02 +00003144 /* This may cause the buffer to become (un)modified. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003145 check_status(curbuf);
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00003146 redraw_tabline = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003147#endif
3148#ifdef FEAT_TITLE
3149 need_maketitle = TRUE; /* set window title later */
3150#endif
3151}
3152
3153/*
3154 * Return the default fileformat from 'fileformats'.
3155 */
3156 int
3157default_fileformat()
3158{
3159 switch (*p_ffs)
3160 {
3161 case 'm': return EOL_MAC;
3162 case 'd': return EOL_DOS;
3163 }
3164 return EOL_UNIX;
3165}
3166
3167/*
3168 * Call shell. Calls mch_call_shell, with 'shellxquote' added.
3169 */
3170 int
3171call_shell(cmd, opt)
3172 char_u *cmd;
3173 int opt;
3174{
3175 char_u *ncmd;
3176 int retval;
Bram Moolenaar05159a02005-02-26 23:04:13 +00003177#ifdef FEAT_PROFILE
3178 proftime_T wait_time;
3179#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003180
3181 if (p_verbose > 3)
3182 {
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00003183 verbose_enter();
Bram Moolenaar051b7822005-05-19 21:00:46 +00003184 smsg((char_u *)_("Calling shell to execute: \"%s\""),
Bram Moolenaar071d4272004-06-13 20:20:40 +00003185 cmd == NULL ? p_sh : cmd);
3186 out_char('\n');
3187 cursor_on();
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00003188 verbose_leave();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003189 }
3190
Bram Moolenaar05159a02005-02-26 23:04:13 +00003191#ifdef FEAT_PROFILE
Bram Moolenaar01265852006-03-20 21:50:15 +00003192 if (do_profiling == PROF_YES)
Bram Moolenaar05159a02005-02-26 23:04:13 +00003193 prof_child_enter(&wait_time);
3194#endif
3195
Bram Moolenaar071d4272004-06-13 20:20:40 +00003196 if (*p_sh == NUL)
3197 {
3198 EMSG(_(e_shellempty));
3199 retval = -1;
3200 }
3201 else
3202 {
3203#ifdef FEAT_GUI_MSWIN
3204 /* Don't hide the pointer while executing a shell command. */
3205 gui_mch_mousehide(FALSE);
3206#endif
3207#ifdef FEAT_GUI
3208 ++hold_gui_events;
3209#endif
3210 /* The external command may update a tags file, clear cached tags. */
3211 tag_freematch();
3212
3213 if (cmd == NULL || *p_sxq == NUL)
3214 retval = mch_call_shell(cmd, opt);
3215 else
3216 {
3217 ncmd = alloc((unsigned)(STRLEN(cmd) + STRLEN(p_sxq) * 2 + 1));
3218 if (ncmd != NULL)
3219 {
3220 STRCPY(ncmd, p_sxq);
3221 STRCAT(ncmd, cmd);
3222 STRCAT(ncmd, p_sxq);
3223 retval = mch_call_shell(ncmd, opt);
3224 vim_free(ncmd);
3225 }
3226 else
3227 retval = -1;
3228 }
3229#ifdef FEAT_GUI
3230 --hold_gui_events;
3231#endif
3232 /*
3233 * Check the window size, in case it changed while executing the
3234 * external command.
3235 */
3236 shell_resized_check();
3237 }
3238
3239#ifdef FEAT_EVAL
3240 set_vim_var_nr(VV_SHELL_ERROR, (long)retval);
Bram Moolenaar05159a02005-02-26 23:04:13 +00003241# ifdef FEAT_PROFILE
Bram Moolenaar01265852006-03-20 21:50:15 +00003242 if (do_profiling == PROF_YES)
Bram Moolenaar05159a02005-02-26 23:04:13 +00003243 prof_child_exit(&wait_time);
3244# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003245#endif
3246
3247 return retval;
3248}
3249
3250/*
Bram Moolenaar01265852006-03-20 21:50:15 +00003251 * VISUAL, SELECTMODE and OP_PENDING State are never set, they are equal to
3252 * NORMAL State with a condition. This function returns the real State.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003253 */
3254 int
3255get_real_state()
3256{
3257 if (State & NORMAL)
3258 {
3259#ifdef FEAT_VISUAL
3260 if (VIsual_active)
Bram Moolenaar01265852006-03-20 21:50:15 +00003261 {
3262 if (VIsual_select)
3263 return SELECTMODE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003264 return VISUAL;
Bram Moolenaar01265852006-03-20 21:50:15 +00003265 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003266 else
3267#endif
3268 if (finish_op)
Bram Moolenaar01265852006-03-20 21:50:15 +00003269 return OP_PENDING;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003270 }
3271 return State;
3272}
3273
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003274#if defined(FEAT_MBYTE) || defined(PROTO)
3275/*
3276 * Return TRUE if "p" points to just after a path separator.
Bram Moolenaarb5ce04d2011-07-07 17:15:33 +02003277 * Takes care of multi-byte characters.
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003278 * "b" must point to the start of the file name
3279 */
3280 int
3281after_pathsep(b, p)
3282 char_u *b;
3283 char_u *p;
3284{
Bram Moolenaarb5ce04d2011-07-07 17:15:33 +02003285 return p > b && vim_ispathsep(p[-1])
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003286 && (!has_mbyte || (*mb_head_off)(b, p - 1) == 0);
3287}
3288#endif
3289
3290/*
3291 * Return TRUE if file names "f1" and "f2" are in the same directory.
3292 * "f1" may be a short name, "f2" must be a full path.
3293 */
3294 int
3295same_directory(f1, f2)
3296 char_u *f1;
3297 char_u *f2;
3298{
3299 char_u ffname[MAXPATHL];
3300 char_u *t1;
3301 char_u *t2;
3302
3303 /* safety check */
3304 if (f1 == NULL || f2 == NULL)
3305 return FALSE;
3306
3307 (void)vim_FullName(f1, ffname, MAXPATHL, FALSE);
3308 t1 = gettail_sep(ffname);
3309 t2 = gettail_sep(f2);
3310 return (t1 - ffname == t2 - f2
3311 && pathcmp((char *)ffname, (char *)f2, (int)(t1 - ffname)) == 0);
3312}
3313
Bram Moolenaar071d4272004-06-13 20:20:40 +00003314#if defined(FEAT_SESSION) || defined(MSWIN) || defined(FEAT_GUI_MAC) \
Bram Moolenaar9372a112005-12-06 19:59:18 +00003315 || ((defined(FEAT_GUI_GTK)) \
Bram Moolenaar843ee412004-06-30 16:16:41 +00003316 && ( defined(FEAT_WINDOWS) || defined(FEAT_DND)) ) \
Bram Moolenaar071d4272004-06-13 20:20:40 +00003317 || defined(FEAT_SUN_WORKSHOP) || defined(FEAT_NETBEANS_INTG) \
3318 || defined(PROTO)
3319/*
3320 * Change to a file's directory.
3321 * Caller must call shorten_fnames()!
3322 * Return OK or FAIL.
3323 */
3324 int
3325vim_chdirfile(fname)
3326 char_u *fname;
3327{
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003328 char_u dir[MAXPATHL];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003329
Bram Moolenaarbbebc852005-07-18 21:47:53 +00003330 vim_strncpy(dir, fname, MAXPATHL - 1);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003331 *gettail_sep(dir) = NUL;
3332 return mch_chdir((char *)dir) == 0 ? OK : FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003333}
3334#endif
3335
3336#if defined(STAT_IGNORES_SLASH) || defined(PROTO)
3337/*
3338 * Check if "name" ends in a slash and is not a directory.
3339 * Used for systems where stat() ignores a trailing slash on a file name.
3340 * The Vim code assumes a trailing slash is only ignored for a directory.
3341 */
3342 int
3343illegal_slash(name)
3344 char *name;
3345{
3346 if (name[0] == NUL)
3347 return FALSE; /* no file name is not illegal */
3348 if (name[strlen(name) - 1] != '/')
3349 return FALSE; /* no trailing slash */
3350 if (mch_isdir((char_u *)name))
3351 return FALSE; /* trailing slash for a directory */
3352 return TRUE;
3353}
3354#endif
3355
3356#if defined(CURSOR_SHAPE) || defined(PROTO)
3357
3358/*
3359 * Handling of cursor and mouse pointer shapes in various modes.
3360 */
3361
3362cursorentry_T shape_table[SHAPE_IDX_COUNT] =
3363{
3364 /* The values will be filled in from the 'guicursor' and 'mouseshape'
3365 * defaults when Vim starts.
3366 * Adjust the SHAPE_IDX_ defines when making changes! */
3367 {0, 0, 0, 700L, 400L, 250L, 0, 0, "n", SHAPE_CURSOR+SHAPE_MOUSE},
3368 {0, 0, 0, 700L, 400L, 250L, 0, 0, "v", SHAPE_CURSOR+SHAPE_MOUSE},
3369 {0, 0, 0, 700L, 400L, 250L, 0, 0, "i", SHAPE_CURSOR+SHAPE_MOUSE},
3370 {0, 0, 0, 700L, 400L, 250L, 0, 0, "r", SHAPE_CURSOR+SHAPE_MOUSE},
3371 {0, 0, 0, 700L, 400L, 250L, 0, 0, "c", SHAPE_CURSOR+SHAPE_MOUSE},
3372 {0, 0, 0, 700L, 400L, 250L, 0, 0, "ci", SHAPE_CURSOR+SHAPE_MOUSE},
3373 {0, 0, 0, 700L, 400L, 250L, 0, 0, "cr", SHAPE_CURSOR+SHAPE_MOUSE},
3374 {0, 0, 0, 700L, 400L, 250L, 0, 0, "o", SHAPE_CURSOR+SHAPE_MOUSE},
3375 {0, 0, 0, 700L, 400L, 250L, 0, 0, "ve", SHAPE_CURSOR+SHAPE_MOUSE},
3376 {0, 0, 0, 0L, 0L, 0L, 0, 0, "e", SHAPE_MOUSE},
3377 {0, 0, 0, 0L, 0L, 0L, 0, 0, "s", SHAPE_MOUSE},
3378 {0, 0, 0, 0L, 0L, 0L, 0, 0, "sd", SHAPE_MOUSE},
3379 {0, 0, 0, 0L, 0L, 0L, 0, 0, "vs", SHAPE_MOUSE},
3380 {0, 0, 0, 0L, 0L, 0L, 0, 0, "vd", SHAPE_MOUSE},
3381 {0, 0, 0, 0L, 0L, 0L, 0, 0, "m", SHAPE_MOUSE},
3382 {0, 0, 0, 0L, 0L, 0L, 0, 0, "ml", SHAPE_MOUSE},
3383 {0, 0, 0, 100L, 100L, 100L, 0, 0, "sm", SHAPE_CURSOR},
3384};
3385
3386#ifdef FEAT_MOUSESHAPE
3387/*
3388 * Table with names for mouse shapes. Keep in sync with all the tables for
3389 * mch_set_mouse_shape()!.
3390 */
3391static char * mshape_names[] =
3392{
3393 "arrow", /* default, must be the first one */
3394 "blank", /* hidden */
3395 "beam",
3396 "updown",
3397 "udsizing",
3398 "leftright",
3399 "lrsizing",
3400 "busy",
3401 "no",
3402 "crosshair",
3403 "hand1",
3404 "hand2",
3405 "pencil",
3406 "question",
3407 "rightup-arrow",
3408 "up-arrow",
3409 NULL
3410};
3411#endif
3412
3413/*
3414 * Parse the 'guicursor' option ("what" is SHAPE_CURSOR) or 'mouseshape'
3415 * ("what" is SHAPE_MOUSE).
3416 * Returns error message for an illegal option, NULL otherwise.
3417 */
3418 char_u *
3419parse_shape_opt(what)
3420 int what;
3421{
3422 char_u *modep;
3423 char_u *colonp;
3424 char_u *commap;
3425 char_u *slashp;
3426 char_u *p, *endp;
3427 int idx = 0; /* init for GCC */
3428 int all_idx;
3429 int len;
3430 int i;
3431 long n;
3432 int found_ve = FALSE; /* found "ve" flag */
3433 int round;
3434
3435 /*
3436 * First round: check for errors; second round: do it for real.
3437 */
3438 for (round = 1; round <= 2; ++round)
3439 {
3440 /*
3441 * Repeat for all comma separated parts.
3442 */
3443#ifdef FEAT_MOUSESHAPE
3444 if (what == SHAPE_MOUSE)
3445 modep = p_mouseshape;
3446 else
3447#endif
3448 modep = p_guicursor;
3449 while (*modep != NUL)
3450 {
3451 colonp = vim_strchr(modep, ':');
3452 if (colonp == NULL)
3453 return (char_u *)N_("E545: Missing colon");
3454 if (colonp == modep)
3455 return (char_u *)N_("E546: Illegal mode");
3456 commap = vim_strchr(modep, ',');
3457
3458 /*
3459 * Repeat for all mode's before the colon.
3460 * For the 'a' mode, we loop to handle all the modes.
3461 */
3462 all_idx = -1;
3463 while (modep < colonp || all_idx >= 0)
3464 {
3465 if (all_idx < 0)
3466 {
3467 /* Find the mode. */
3468 if (modep[1] == '-' || modep[1] == ':')
3469 len = 1;
3470 else
3471 len = 2;
3472 if (len == 1 && TOLOWER_ASC(modep[0]) == 'a')
3473 all_idx = SHAPE_IDX_COUNT - 1;
3474 else
3475 {
3476 for (idx = 0; idx < SHAPE_IDX_COUNT; ++idx)
3477 if (STRNICMP(modep, shape_table[idx].name, len)
3478 == 0)
3479 break;
3480 if (idx == SHAPE_IDX_COUNT
3481 || (shape_table[idx].used_for & what) == 0)
3482 return (char_u *)N_("E546: Illegal mode");
3483 if (len == 2 && modep[0] == 'v' && modep[1] == 'e')
3484 found_ve = TRUE;
3485 }
3486 modep += len + 1;
3487 }
3488
3489 if (all_idx >= 0)
3490 idx = all_idx--;
3491 else if (round == 2)
3492 {
3493#ifdef FEAT_MOUSESHAPE
3494 if (what == SHAPE_MOUSE)
3495 {
3496 /* Set the default, for the missing parts */
3497 shape_table[idx].mshape = 0;
3498 }
3499 else
3500#endif
3501 {
3502 /* Set the defaults, for the missing parts */
3503 shape_table[idx].shape = SHAPE_BLOCK;
3504 shape_table[idx].blinkwait = 700L;
3505 shape_table[idx].blinkon = 400L;
3506 shape_table[idx].blinkoff = 250L;
3507 }
3508 }
3509
3510 /* Parse the part after the colon */
3511 for (p = colonp + 1; *p && *p != ','; )
3512 {
3513#ifdef FEAT_MOUSESHAPE
3514 if (what == SHAPE_MOUSE)
3515 {
3516 for (i = 0; ; ++i)
3517 {
3518 if (mshape_names[i] == NULL)
3519 {
3520 if (!VIM_ISDIGIT(*p))
3521 return (char_u *)N_("E547: Illegal mouseshape");
3522 if (round == 2)
3523 shape_table[idx].mshape =
3524 getdigits(&p) + MSHAPE_NUMBERED;
3525 else
3526 (void)getdigits(&p);
3527 break;
3528 }
3529 len = (int)STRLEN(mshape_names[i]);
3530 if (STRNICMP(p, mshape_names[i], len) == 0)
3531 {
3532 if (round == 2)
3533 shape_table[idx].mshape = i;
3534 p += len;
3535 break;
3536 }
3537 }
3538 }
3539 else /* if (what == SHAPE_MOUSE) */
3540#endif
3541 {
3542 /*
3543 * First handle the ones with a number argument.
3544 */
3545 i = *p;
3546 len = 0;
3547 if (STRNICMP(p, "ver", 3) == 0)
3548 len = 3;
3549 else if (STRNICMP(p, "hor", 3) == 0)
3550 len = 3;
3551 else if (STRNICMP(p, "blinkwait", 9) == 0)
3552 len = 9;
3553 else if (STRNICMP(p, "blinkon", 7) == 0)
3554 len = 7;
3555 else if (STRNICMP(p, "blinkoff", 8) == 0)
3556 len = 8;
3557 if (len != 0)
3558 {
3559 p += len;
3560 if (!VIM_ISDIGIT(*p))
3561 return (char_u *)N_("E548: digit expected");
3562 n = getdigits(&p);
3563 if (len == 3) /* "ver" or "hor" */
3564 {
3565 if (n == 0)
3566 return (char_u *)N_("E549: Illegal percentage");
3567 if (round == 2)
3568 {
3569 if (TOLOWER_ASC(i) == 'v')
3570 shape_table[idx].shape = SHAPE_VER;
3571 else
3572 shape_table[idx].shape = SHAPE_HOR;
3573 shape_table[idx].percentage = n;
3574 }
3575 }
3576 else if (round == 2)
3577 {
3578 if (len == 9)
3579 shape_table[idx].blinkwait = n;
3580 else if (len == 7)
3581 shape_table[idx].blinkon = n;
3582 else
3583 shape_table[idx].blinkoff = n;
3584 }
3585 }
3586 else if (STRNICMP(p, "block", 5) == 0)
3587 {
3588 if (round == 2)
3589 shape_table[idx].shape = SHAPE_BLOCK;
3590 p += 5;
3591 }
3592 else /* must be a highlight group name then */
3593 {
3594 endp = vim_strchr(p, '-');
3595 if (commap == NULL) /* last part */
3596 {
3597 if (endp == NULL)
3598 endp = p + STRLEN(p); /* find end of part */
3599 }
3600 else if (endp > commap || endp == NULL)
3601 endp = commap;
3602 slashp = vim_strchr(p, '/');
3603 if (slashp != NULL && slashp < endp)
3604 {
3605 /* "group/langmap_group" */
3606 i = syn_check_group(p, (int)(slashp - p));
3607 p = slashp + 1;
3608 }
3609 if (round == 2)
3610 {
3611 shape_table[idx].id = syn_check_group(p,
3612 (int)(endp - p));
3613 shape_table[idx].id_lm = shape_table[idx].id;
3614 if (slashp != NULL && slashp < endp)
3615 shape_table[idx].id = i;
3616 }
3617 p = endp;
3618 }
3619 } /* if (what != SHAPE_MOUSE) */
3620
3621 if (*p == '-')
3622 ++p;
3623 }
3624 }
3625 modep = p;
3626 if (*modep == ',')
3627 ++modep;
3628 }
3629 }
3630
3631 /* If the 's' flag is not given, use the 'v' cursor for 's' */
3632 if (!found_ve)
3633 {
3634#ifdef FEAT_MOUSESHAPE
3635 if (what == SHAPE_MOUSE)
3636 {
3637 shape_table[SHAPE_IDX_VE].mshape = shape_table[SHAPE_IDX_V].mshape;
3638 }
3639 else
3640#endif
3641 {
3642 shape_table[SHAPE_IDX_VE].shape = shape_table[SHAPE_IDX_V].shape;
3643 shape_table[SHAPE_IDX_VE].percentage =
3644 shape_table[SHAPE_IDX_V].percentage;
3645 shape_table[SHAPE_IDX_VE].blinkwait =
3646 shape_table[SHAPE_IDX_V].blinkwait;
3647 shape_table[SHAPE_IDX_VE].blinkon =
3648 shape_table[SHAPE_IDX_V].blinkon;
3649 shape_table[SHAPE_IDX_VE].blinkoff =
3650 shape_table[SHAPE_IDX_V].blinkoff;
3651 shape_table[SHAPE_IDX_VE].id = shape_table[SHAPE_IDX_V].id;
3652 shape_table[SHAPE_IDX_VE].id_lm = shape_table[SHAPE_IDX_V].id_lm;
3653 }
3654 }
3655
3656 return NULL;
3657}
3658
Bram Moolenaarac6e65f2005-08-29 22:25:38 +00003659# if defined(MCH_CURSOR_SHAPE) || defined(FEAT_GUI) \
3660 || defined(FEAT_MOUSESHAPE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003661/*
3662 * Return the index into shape_table[] for the current mode.
3663 * When "mouse" is TRUE, consider indexes valid for the mouse pointer.
3664 */
3665 int
3666get_shape_idx(mouse)
3667 int mouse;
3668{
3669#ifdef FEAT_MOUSESHAPE
3670 if (mouse && (State == HITRETURN || State == ASKMORE))
3671 {
3672# ifdef FEAT_GUI
Bram Moolenaar9588a0f2005-01-08 21:45:39 +00003673 int x, y;
3674 gui_mch_getmouse(&x, &y);
3675 if (Y_2_ROW(y) == Rows - 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003676 return SHAPE_IDX_MOREL;
3677# endif
3678 return SHAPE_IDX_MORE;
3679 }
3680 if (mouse && drag_status_line)
3681 return SHAPE_IDX_SDRAG;
3682# ifdef FEAT_VERTSPLIT
3683 if (mouse && drag_sep_line)
3684 return SHAPE_IDX_VDRAG;
3685# endif
3686#endif
3687 if (!mouse && State == SHOWMATCH)
3688 return SHAPE_IDX_SM;
3689#ifdef FEAT_VREPLACE
3690 if (State & VREPLACE_FLAG)
3691 return SHAPE_IDX_R;
3692#endif
3693 if (State & REPLACE_FLAG)
3694 return SHAPE_IDX_R;
3695 if (State & INSERT)
3696 return SHAPE_IDX_I;
3697 if (State & CMDLINE)
3698 {
3699 if (cmdline_at_end())
3700 return SHAPE_IDX_C;
3701 if (cmdline_overstrike())
3702 return SHAPE_IDX_CR;
3703 return SHAPE_IDX_CI;
3704 }
3705 if (finish_op)
3706 return SHAPE_IDX_O;
3707#ifdef FEAT_VISUAL
3708 if (VIsual_active)
3709 {
3710 if (*p_sel == 'e')
3711 return SHAPE_IDX_VE;
3712 else
3713 return SHAPE_IDX_V;
3714 }
3715#endif
3716 return SHAPE_IDX_N;
3717}
Bram Moolenaarac6e65f2005-08-29 22:25:38 +00003718#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003719
3720# if defined(FEAT_MOUSESHAPE) || defined(PROTO)
3721static int old_mouse_shape = 0;
3722
3723/*
3724 * Set the mouse shape:
3725 * If "shape" is -1, use shape depending on the current mode,
3726 * depending on the current state.
3727 * If "shape" is -2, only update the shape when it's CLINE or STATUS (used
3728 * when the mouse moves off the status or command line).
3729 */
3730 void
3731update_mouseshape(shape_idx)
3732 int shape_idx;
3733{
3734 int new_mouse_shape;
3735
3736 /* Only works in GUI mode. */
Bram Moolenaar6bb68362005-03-22 23:03:44 +00003737 if (!gui.in_use || gui.starting)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003738 return;
3739
3740 /* Postpone the updating when more is to come. Speeds up executing of
3741 * mappings. */
3742 if (shape_idx == -1 && char_avail())
3743 {
3744 postponed_mouseshape = TRUE;
3745 return;
3746 }
3747
Bram Moolenaar14716812006-05-04 21:54:08 +00003748 /* When ignoring the mouse don't change shape on the statusline. */
3749 if (*p_mouse == NUL
3750 && (shape_idx == SHAPE_IDX_CLINE
3751 || shape_idx == SHAPE_IDX_STATUS
3752 || shape_idx == SHAPE_IDX_VSEP))
3753 shape_idx = -2;
3754
Bram Moolenaar071d4272004-06-13 20:20:40 +00003755 if (shape_idx == -2
3756 && old_mouse_shape != shape_table[SHAPE_IDX_CLINE].mshape
3757 && old_mouse_shape != shape_table[SHAPE_IDX_STATUS].mshape
3758 && old_mouse_shape != shape_table[SHAPE_IDX_VSEP].mshape)
3759 return;
3760 if (shape_idx < 0)
3761 new_mouse_shape = shape_table[get_shape_idx(TRUE)].mshape;
3762 else
3763 new_mouse_shape = shape_table[shape_idx].mshape;
3764 if (new_mouse_shape != old_mouse_shape)
3765 {
3766 mch_set_mouse_shape(new_mouse_shape);
3767 old_mouse_shape = new_mouse_shape;
3768 }
3769 postponed_mouseshape = FALSE;
3770}
3771# endif
3772
3773#endif /* CURSOR_SHAPE */
3774
3775
3776#ifdef FEAT_CRYPT
3777/*
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00003778 * Optional encryption support.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003779 * Mohsin Ahmed, mosh@sasi.com, 98-09-24
3780 * Based on zip/crypt sources.
3781 *
3782 * NOTE FOR USA: Since 2000 exporting this code from the USA is allowed to
3783 * most countries. There are a few exceptions, but that still should not be a
3784 * problem since this code was originally created in Europe and India.
Bram Moolenaar40e6a712010-05-16 22:32:54 +02003785 *
3786 * Blowfish addition originally made by Mohsin Ahmed,
3787 * http://www.cs.albany.edu/~mosh 2010-03-14
3788 * Based on blowfish by Bruce Schneier (http://www.schneier.com/blowfish.html)
3789 * and sha256 by Christophe Devine.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003790 */
3791
3792/* from zip.h */
3793
3794typedef unsigned short ush; /* unsigned 16-bit value */
3795typedef unsigned long ulg; /* unsigned 32-bit value */
3796
3797static void make_crc_tab __ARGS((void));
3798
Bram Moolenaard6f676d2005-06-01 21:51:55 +00003799static ulg crc_32_tab[256];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003800
3801/*
3802 * Fill the CRC table.
3803 */
3804 static void
3805make_crc_tab()
3806{
3807 ulg s,t,v;
3808 static int done = FALSE;
3809
3810 if (done)
3811 return;
3812 for (t = 0; t < 256; t++)
3813 {
3814 v = t;
3815 for (s = 0; s < 8; s++)
3816 v = (v >> 1) ^ ((v & 1) * (ulg)0xedb88320L);
3817 crc_32_tab[t] = v;
3818 }
3819 done = TRUE;
3820}
3821
3822#define CRC32(c, b) (crc_32_tab[((int)(c) ^ (b)) & 0xff] ^ ((c) >> 8))
3823
Bram Moolenaar071d4272004-06-13 20:20:40 +00003824static ulg keys[3]; /* keys defining the pseudo-random sequence */
3825
3826/*
Bram Moolenaar04c9baf2010-06-01 23:37:39 +02003827 * Return the next byte in the pseudo-random sequence.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003828 */
Bram Moolenaar04c9baf2010-06-01 23:37:39 +02003829#define DECRYPT_BYTE_ZIP(t) { \
3830 ush temp; \
3831 \
3832 temp = (ush)keys[2] | 2; \
3833 t = (int)(((unsigned)(temp * (temp ^ 1)) >> 8) & 0xff); \
Bram Moolenaar071d4272004-06-13 20:20:40 +00003834}
3835
3836/*
Bram Moolenaar04c9baf2010-06-01 23:37:39 +02003837 * Update the encryption keys with the next byte of plain text.
3838 */
3839#define UPDATE_KEYS_ZIP(c) { \
3840 keys[0] = CRC32(keys[0], (c)); \
3841 keys[1] += keys[0] & 0xff; \
3842 keys[1] = keys[1] * 134775813L + 1; \
3843 keys[2] = CRC32(keys[2], (int)(keys[1] >> 24)); \
3844}
3845
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02003846static int crypt_busy = 0;
3847static ulg saved_keys[3];
3848static int saved_crypt_method;
3849
3850/*
Bram Moolenaar49771f42010-07-20 17:32:38 +02003851 * Return int value for crypt method string:
3852 * 0 for "zip", the old method. Also for any non-valid value.
3853 * 1 for "blowfish".
3854 */
3855 int
3856crypt_method_from_string(s)
3857 char_u *s;
3858{
3859 return *s == 'b' ? 1 : 0;
3860}
3861
3862/*
3863 * Get the crypt method for buffer "buf" as a number.
3864 */
3865 int
3866get_crypt_method(buf)
3867 buf_T *buf;
3868{
3869 return crypt_method_from_string(*buf->b_p_cm == NUL ? p_cm : buf->b_p_cm);
3870}
3871
3872/*
3873 * Set the crypt method for buffer "buf" to "method" using the int value as
3874 * returned by crypt_method_from_string().
3875 */
3876 void
3877set_crypt_method(buf, method)
3878 buf_T *buf;
3879 int method;
3880{
3881 free_string_option(buf->b_p_cm);
3882 buf->b_p_cm = vim_strsave((char_u *)(method == 0 ? "zip" : "blowfish"));
3883}
3884
3885/*
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02003886 * Prepare for initializing encryption. If already doing encryption then save
3887 * the state.
Bram Moolenaar2f1e0502010-08-13 11:18:02 +02003888 * Must always be called symmetrically with crypt_pop_state().
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02003889 */
3890 void
3891crypt_push_state()
3892{
3893 if (crypt_busy == 1)
3894 {
3895 /* save the state */
3896 if (use_crypt_method == 0)
3897 {
3898 saved_keys[0] = keys[0];
3899 saved_keys[1] = keys[1];
3900 saved_keys[2] = keys[2];
3901 }
3902 else
3903 bf_crypt_save();
3904 saved_crypt_method = use_crypt_method;
3905 }
3906 else if (crypt_busy > 1)
3907 EMSG2(_(e_intern2), "crypt_push_state()");
3908 ++crypt_busy;
3909}
3910
3911/*
3912 * End encryption. If doing encryption before crypt_push_state() then restore
3913 * the saved state.
Bram Moolenaar2f1e0502010-08-13 11:18:02 +02003914 * Must always be called symmetrically with crypt_push_state().
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02003915 */
3916 void
3917crypt_pop_state()
3918{
3919 --crypt_busy;
3920 if (crypt_busy == 1)
3921 {
3922 use_crypt_method = saved_crypt_method;
3923 if (use_crypt_method == 0)
3924 {
3925 keys[0] = saved_keys[0];
3926 keys[1] = saved_keys[1];
3927 keys[2] = saved_keys[2];
3928 }
3929 else
3930 bf_crypt_restore();
3931 }
3932}
3933
Bram Moolenaar04c9baf2010-06-01 23:37:39 +02003934/*
3935 * Encrypt "from[len]" into "to[len]".
3936 * "from" and "to" can be equal to encrypt in place.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003937 */
Bram Moolenaar40e6a712010-05-16 22:32:54 +02003938 void
Bram Moolenaar04c9baf2010-06-01 23:37:39 +02003939crypt_encode(from, len, to)
3940 char_u *from;
3941 size_t len;
3942 char_u *to;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003943{
Bram Moolenaar04c9baf2010-06-01 23:37:39 +02003944 size_t i;
3945 int ztemp, t;
3946
3947 if (use_crypt_method == 0)
3948 for (i = 0; i < len; ++i)
3949 {
3950 ztemp = from[i];
3951 DECRYPT_BYTE_ZIP(t);
3952 UPDATE_KEYS_ZIP(ztemp);
3953 to[i] = t ^ ztemp;
3954 }
Bram Moolenaar40e6a712010-05-16 22:32:54 +02003955 else
Bram Moolenaarbbd6afe2010-06-02 20:32:23 +02003956 bf_crypt_encode(from, len, to);
Bram Moolenaar04c9baf2010-06-01 23:37:39 +02003957}
3958
3959/*
3960 * Decrypt "ptr[len]" in place.
3961 */
3962 void
3963crypt_decode(ptr, len)
3964 char_u *ptr;
3965 long len;
3966{
3967 char_u *p;
3968
3969 if (use_crypt_method == 0)
3970 for (p = ptr; p < ptr + len; ++p)
3971 {
3972 ush temp;
3973
3974 temp = (ush)keys[2] | 2;
3975 temp = (int)(((unsigned)(temp * (temp ^ 1)) >> 8) & 0xff);
3976 UPDATE_KEYS_ZIP(*p ^= temp);
3977 }
3978 else
Bram Moolenaarbbd6afe2010-06-02 20:32:23 +02003979 bf_crypt_decode(ptr, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003980}
3981
3982/*
3983 * Initialize the encryption keys and the random header according to
3984 * the given password.
3985 * If "passwd" is NULL or empty, don't do anything.
3986 */
3987 void
3988crypt_init_keys(passwd)
3989 char_u *passwd; /* password string with which to modify keys */
3990{
3991 if (passwd != NULL && *passwd != NUL)
3992 {
Bram Moolenaar04c9baf2010-06-01 23:37:39 +02003993 if (use_crypt_method == 0)
Bram Moolenaarbbd6afe2010-06-02 20:32:23 +02003994 {
3995 char_u *p;
3996
3997 make_crc_tab();
3998 keys[0] = 305419896L;
3999 keys[1] = 591751049L;
4000 keys[2] = 878082192L;
4001 for (p = passwd; *p!= NUL; ++p)
Bram Moolenaar04c9baf2010-06-01 23:37:39 +02004002 {
Bram Moolenaarbbd6afe2010-06-02 20:32:23 +02004003 UPDATE_KEYS_ZIP((int)*p);
Bram Moolenaar04c9baf2010-06-01 23:37:39 +02004004 }
Bram Moolenaarbbd6afe2010-06-02 20:32:23 +02004005 }
Bram Moolenaar04c9baf2010-06-01 23:37:39 +02004006 else
Bram Moolenaarbbd6afe2010-06-02 20:32:23 +02004007 bf_crypt_init_keys(passwd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004008 }
4009}
4010
4011/*
Bram Moolenaar40e6a712010-05-16 22:32:54 +02004012 * Free an allocated crypt key. Clear the text to make sure it doesn't stay
4013 * in memory anywhere.
4014 */
4015 void
4016free_crypt_key(key)
4017 char_u *key;
4018{
4019 char_u *p;
4020
4021 if (key != NULL)
4022 {
4023 for (p = key; *p != NUL; ++p)
Bram Moolenaarbe18d102010-05-22 21:37:53 +02004024 *p = 0;
Bram Moolenaar40e6a712010-05-16 22:32:54 +02004025 vim_free(key);
4026 }
4027}
4028
4029/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004030 * Ask the user for a crypt key.
Bram Moolenaar40e6a712010-05-16 22:32:54 +02004031 * When "store" is TRUE, the new key is stored in the 'key' option, and the
Bram Moolenaar071d4272004-06-13 20:20:40 +00004032 * 'key' option value is returned: Don't free it.
4033 * When "store" is FALSE, the typed key is returned in allocated memory.
4034 * Returns NULL on failure.
4035 */
4036 char_u *
4037get_crypt_key(store, twice)
4038 int store;
4039 int twice; /* Ask for the key twice. */
4040{
4041 char_u *p1, *p2 = NULL;
4042 int round;
4043
4044 for (round = 0; ; ++round)
4045 {
4046 cmdline_star = TRUE;
4047 cmdline_row = msg_row;
4048 p1 = getcmdline_prompt(NUL, round == 0
4049 ? (char_u *)_("Enter encryption key: ")
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00004050 : (char_u *)_("Enter same key again: "), 0, EXPAND_NOTHING,
4051 NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004052 cmdline_star = FALSE;
4053
4054 if (p1 == NULL)
4055 break;
4056
4057 if (round == twice)
4058 {
4059 if (p2 != NULL && STRCMP(p1, p2) != 0)
4060 {
4061 MSG(_("Keys don't match!"));
Bram Moolenaar40e6a712010-05-16 22:32:54 +02004062 free_crypt_key(p1);
4063 free_crypt_key(p2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004064 p2 = NULL;
4065 round = -1; /* do it again */
4066 continue;
4067 }
Bram Moolenaar40e6a712010-05-16 22:32:54 +02004068
Bram Moolenaar071d4272004-06-13 20:20:40 +00004069 if (store)
4070 {
4071 set_option_value((char_u *)"key", 0L, p1, OPT_LOCAL);
Bram Moolenaar40e6a712010-05-16 22:32:54 +02004072 free_crypt_key(p1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004073 p1 = curbuf->b_p_key;
4074 }
4075 break;
4076 }
4077 p2 = p1;
4078 }
4079
4080 /* since the user typed this, no need to wait for return */
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02004081 if (msg_didout)
4082 msg_putchar('\n');
Bram Moolenaare4ce65d2010-08-04 20:12:32 +02004083 need_wait_return = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004084 msg_didout = FALSE;
4085
Bram Moolenaar40e6a712010-05-16 22:32:54 +02004086 free_crypt_key(p2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004087 return p1;
4088}
4089
4090#endif /* FEAT_CRYPT */
4091
4092/* TODO: make some #ifdef for this */
4093/*--------[ file searching ]-------------------------------------------------*/
4094/*
4095 * File searching functions for 'path', 'tags' and 'cdpath' options.
4096 * External visible functions:
4097 * vim_findfile_init() creates/initialises the search context
4098 * vim_findfile_free_visited() free list of visited files/dirs of search
4099 * context
4100 * vim_findfile() find a file in the search context
4101 * vim_findfile_cleanup() cleanup/free search context created by
4102 * vim_findfile_init()
4103 *
4104 * All static functions and variables start with 'ff_'
4105 *
4106 * In general it works like this:
4107 * First you create yourself a search context by calling vim_findfile_init().
4108 * It is possible to give a search context from a previous call to
4109 * vim_findfile_init(), so it can be reused. After this you call vim_findfile()
4110 * until you are satisfied with the result or it returns NULL. On every call it
4111 * returns the next file which matches the conditions given to
4112 * vim_findfile_init(). If it doesn't find a next file it returns NULL.
4113 *
4114 * It is possible to call vim_findfile_init() again to reinitialise your search
4115 * with some new parameters. Don't forget to pass your old search context to
4116 * it, so it can reuse it and especially reuse the list of already visited
4117 * directories. If you want to delete the list of already visited directories
4118 * simply call vim_findfile_free_visited().
4119 *
4120 * When you are done call vim_findfile_cleanup() to free the search context.
4121 *
4122 * The function vim_findfile_init() has a long comment, which describes the
4123 * needed parameters.
4124 *
4125 *
4126 *
4127 * ATTENTION:
4128 * ==========
Bram Moolenaar77f66d62007-02-20 02:16:18 +00004129 * Also we use an allocated search context here, this functions are NOT
Bram Moolenaar071d4272004-06-13 20:20:40 +00004130 * thread-safe!!!!!
4131 *
4132 * To minimize parameter passing (or because I'm to lazy), only the
4133 * external visible functions get a search context as a parameter. This is
4134 * then assigned to a static global, which is used throughout the local
4135 * functions.
4136 */
4137
4138/*
4139 * type for the directory search stack
4140 */
4141typedef struct ff_stack
4142{
4143 struct ff_stack *ffs_prev;
4144
4145 /* the fix part (no wildcards) and the part containing the wildcards
4146 * of the search path
4147 */
4148 char_u *ffs_fix_path;
4149#ifdef FEAT_PATH_EXTRA
4150 char_u *ffs_wc_path;
4151#endif
4152
4153 /* files/dirs found in the above directory, matched by the first wildcard
4154 * of wc_part
4155 */
4156 char_u **ffs_filearray;
4157 int ffs_filearray_size;
4158 char_u ffs_filearray_cur; /* needed for partly handled dirs */
4159
4160 /* to store status of partly handled directories
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004161 * 0: we work on this directory for the first time
Bram Moolenaar071d4272004-06-13 20:20:40 +00004162 * 1: this directory was partly searched in an earlier step
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004163 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004164 int ffs_stage;
4165
4166 /* How deep are we in the directory tree?
4167 * Counts backward from value of level parameter to vim_findfile_init
4168 */
4169 int ffs_level;
4170
4171 /* Did we already expand '**' to an empty string? */
4172 int ffs_star_star_empty;
4173} ff_stack_T;
4174
4175/*
4176 * type for already visited directories or files.
4177 */
4178typedef struct ff_visited
4179{
4180 struct ff_visited *ffv_next;
4181
4182#ifdef FEAT_PATH_EXTRA
4183 /* Visited directories are different if the wildcard string are
4184 * different. So we have to save it.
4185 */
4186 char_u *ffv_wc_path;
4187#endif
4188 /* for unix use inode etc for comparison (needed because of links), else
4189 * use filename.
4190 */
4191#ifdef UNIX
Bram Moolenaare1fbddc2009-05-16 19:07:03 +00004192 int ffv_dev_valid; /* ffv_dev and ffv_ino were set */
4193 dev_t ffv_dev; /* device number */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004194 ino_t ffv_ino; /* inode number */
4195#endif
4196 /* The memory for this struct is allocated according to the length of
4197 * ffv_fname.
4198 */
4199 char_u ffv_fname[1]; /* actually longer */
4200} ff_visited_T;
4201
4202/*
4203 * We might have to manage several visited lists during a search.
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00004204 * This is especially needed for the tags option. If tags is set to:
Bram Moolenaar071d4272004-06-13 20:20:40 +00004205 * "./++/tags,./++/TAGS,++/tags" (replace + with *)
4206 * So we have to do 3 searches:
4207 * 1) search from the current files directory downward for the file "tags"
4208 * 2) search from the current files directory downward for the file "TAGS"
4209 * 3) search from Vims current directory downwards for the file "tags"
4210 * As you can see, the first and the third search are for the same file, so for
4211 * the third search we can use the visited list of the first search. For the
4212 * second search we must start from a empty visited list.
4213 * The struct ff_visited_list_hdr is used to manage a linked list of already
4214 * visited lists.
4215 */
4216typedef struct ff_visited_list_hdr
4217{
4218 struct ff_visited_list_hdr *ffvl_next;
4219
4220 /* the filename the attached visited list is for */
4221 char_u *ffvl_filename;
4222
4223 ff_visited_T *ffvl_visited_list;
4224
4225} ff_visited_list_hdr_T;
4226
4227
4228/*
4229 * '**' can be expanded to several directory levels.
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00004230 * Set the default maximum depth.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004231 */
4232#define FF_MAX_STAR_STAR_EXPAND ((char_u)30)
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004233
Bram Moolenaar071d4272004-06-13 20:20:40 +00004234/*
4235 * The search context:
4236 * ffsc_stack_ptr: the stack for the dirs to search
4237 * ffsc_visited_list: the currently active visited list
4238 * ffsc_dir_visited_list: the currently active visited list for search dirs
4239 * ffsc_visited_lists_list: the list of all visited lists
4240 * ffsc_dir_visited_lists_list: the list of all visited lists for search dirs
4241 * ffsc_file_to_search: the file to search for
4242 * ffsc_start_dir: the starting directory, if search path was relative
4243 * ffsc_fix_path: the fix part of the given path (without wildcards)
4244 * Needed for upward search.
4245 * ffsc_wc_path: the part of the given path containing wildcards
4246 * ffsc_level: how many levels of dirs to search downwards
4247 * ffsc_stopdirs_v: array of stop directories for upward search
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004248 * ffsc_find_what: FINDFILE_BOTH, FINDFILE_DIR or FINDFILE_FILE
Bram Moolenaar463ee342010-08-08 18:17:52 +02004249 * ffsc_tagfile: searching for tags file, don't use 'suffixesadd'
Bram Moolenaar071d4272004-06-13 20:20:40 +00004250 */
4251typedef struct ff_search_ctx_T
4252{
4253 ff_stack_T *ffsc_stack_ptr;
4254 ff_visited_list_hdr_T *ffsc_visited_list;
4255 ff_visited_list_hdr_T *ffsc_dir_visited_list;
4256 ff_visited_list_hdr_T *ffsc_visited_lists_list;
4257 ff_visited_list_hdr_T *ffsc_dir_visited_lists_list;
4258 char_u *ffsc_file_to_search;
4259 char_u *ffsc_start_dir;
4260 char_u *ffsc_fix_path;
4261#ifdef FEAT_PATH_EXTRA
4262 char_u *ffsc_wc_path;
4263 int ffsc_level;
4264 char_u **ffsc_stopdirs_v;
4265#endif
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004266 int ffsc_find_what;
Bram Moolenaar463ee342010-08-08 18:17:52 +02004267 int ffsc_tagfile;
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00004268} ff_search_ctx_T;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004269
Bram Moolenaar071d4272004-06-13 20:20:40 +00004270/* locally needed functions */
4271#ifdef FEAT_PATH_EXTRA
4272static int ff_check_visited __ARGS((ff_visited_T **, char_u *, char_u *));
4273#else
4274static int ff_check_visited __ARGS((ff_visited_T **, char_u *));
4275#endif
4276static void vim_findfile_free_visited_list __ARGS((ff_visited_list_hdr_T **list_headp));
4277static void ff_free_visited_list __ARGS((ff_visited_T *vl));
4278static ff_visited_list_hdr_T* ff_get_visited_list __ARGS((char_u *, ff_visited_list_hdr_T **list_headp));
4279#ifdef FEAT_PATH_EXTRA
4280static int ff_wc_equal __ARGS((char_u *s1, char_u *s2));
4281#endif
4282
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004283static void ff_push __ARGS((ff_search_ctx_T *search_ctx, ff_stack_T *stack_ptr));
4284static ff_stack_T *ff_pop __ARGS((ff_search_ctx_T *search_ctx));
4285static void ff_clear __ARGS((ff_search_ctx_T *search_ctx));
4286static void ff_free_stack_element __ARGS((ff_stack_T *stack_ptr));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004287#ifdef FEAT_PATH_EXTRA
4288static ff_stack_T *ff_create_stack_element __ARGS((char_u *, char_u *, int, int));
4289#else
4290static ff_stack_T *ff_create_stack_element __ARGS((char_u *, int, int));
4291#endif
4292#ifdef FEAT_PATH_EXTRA
4293static int ff_path_in_stoplist __ARGS((char_u *, int, char_u **));
4294#endif
4295
Bram Moolenaarb9ba4032011-12-08 17:49:35 +01004296static char_u e_pathtoolong[] = N_("E854: path too long for completion");
4297
Bram Moolenaar071d4272004-06-13 20:20:40 +00004298#if 0
4299/*
4300 * if someone likes findfirst/findnext, here are the functions
4301 * NOT TESTED!!
4302 */
4303
4304static void *ff_fn_search_context = NULL;
4305
4306 char_u *
4307vim_findfirst(path, filename, level)
4308 char_u *path;
4309 char_u *filename;
4310 int level;
4311{
4312 ff_fn_search_context =
4313 vim_findfile_init(path, filename, NULL, level, TRUE, FALSE,
4314 ff_fn_search_context, rel_fname);
4315 if (NULL == ff_fn_search_context)
4316 return NULL;
4317 else
4318 return vim_findnext()
4319}
4320
4321 char_u *
4322vim_findnext()
4323{
4324 char_u *ret = vim_findfile(ff_fn_search_context);
4325
4326 if (NULL == ret)
4327 {
4328 vim_findfile_cleanup(ff_fn_search_context);
4329 ff_fn_search_context = NULL;
4330 }
4331 return ret;
4332}
4333#endif
4334
4335/*
Bram Moolenaare2b590e2010-08-08 18:29:48 +02004336 * Initialization routine for vim_findfile().
Bram Moolenaar071d4272004-06-13 20:20:40 +00004337 *
Bram Moolenaarbe18d102010-05-22 21:37:53 +02004338 * Returns the newly allocated search context or NULL if an error occurred.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004339 *
4340 * Don't forget to clean up by calling vim_findfile_cleanup() if you are done
4341 * with the search context.
4342 *
4343 * Find the file 'filename' in the directory 'path'.
4344 * The parameter 'path' may contain wildcards. If so only search 'level'
4345 * directories deep. The parameter 'level' is the absolute maximum and is
4346 * not related to restricts given to the '**' wildcard. If 'level' is 100
4347 * and you use '**200' vim_findfile() will stop after 100 levels.
4348 *
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004349 * 'filename' cannot contain wildcards! It is used as-is, no backslashes to
4350 * escape special characters.
4351 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00004352 * If 'stopdirs' is not NULL and nothing is found downward, the search is
4353 * restarted on the next higher directory level. This is repeated until the
4354 * start-directory of a search is contained in 'stopdirs'. 'stopdirs' has the
4355 * format ";*<dirname>*\(;<dirname>\)*;\=$".
4356 *
4357 * If the 'path' is relative, the starting dir for the search is either VIM's
4358 * current dir or if the path starts with "./" the current files dir.
Bram Moolenaarbe18d102010-05-22 21:37:53 +02004359 * If the 'path' is absolute, the starting dir is that part of the path before
Bram Moolenaar071d4272004-06-13 20:20:40 +00004360 * the first wildcard.
4361 *
4362 * Upward search is only done on the starting dir.
4363 *
4364 * If 'free_visited' is TRUE the list of already visited files/directories is
4365 * cleared. Set this to FALSE if you just want to search from another
4366 * directory, but want to be sure that no directory from a previous search is
4367 * searched again. This is useful if you search for a file at different places.
4368 * The list of visited files/dirs can also be cleared with the function
4369 * vim_findfile_free_visited().
4370 *
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004371 * Set the parameter 'find_what' to FINDFILE_DIR if you want to search for
4372 * directories only, FINDFILE_FILE for files only, FINDFILE_BOTH for both.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004373 *
4374 * A search context returned by a previous call to vim_findfile_init() can be
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004375 * passed in the parameter "search_ctx_arg". This context is reused and
4376 * reinitialized with the new parameters. The list of already visited
Bram Moolenaar071d4272004-06-13 20:20:40 +00004377 * directories from this context is only deleted if the parameter
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004378 * "free_visited" is true. Be aware that the passed "search_ctx_arg" is freed
4379 * if the reinitialization fails.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004380 *
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004381 * If you don't have a search context from a previous call "search_ctx_arg"
4382 * must be NULL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004383 *
4384 * This function silently ignores a few errors, vim_findfile() will have
4385 * limited functionality then.
4386 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004387 void *
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004388vim_findfile_init(path, filename, stopdirs, level, free_visited, find_what,
4389 search_ctx_arg, tagfile, rel_fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004390 char_u *path;
4391 char_u *filename;
Bram Moolenaare1fbddc2009-05-16 19:07:03 +00004392 char_u *stopdirs UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004393 int level;
4394 int free_visited;
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004395 int find_what;
4396 void *search_ctx_arg;
Bram Moolenaar463ee342010-08-08 18:17:52 +02004397 int tagfile; /* expanding names of tags files */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004398 char_u *rel_fname; /* file name to use for "." */
4399{
4400#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004401 char_u *wc_part;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004402#endif
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004403 ff_stack_T *sptr;
4404 ff_search_ctx_T *search_ctx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004405
4406 /* If a search context is given by the caller, reuse it, else allocate a
4407 * new one.
4408 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004409 if (search_ctx_arg != NULL)
4410 search_ctx = search_ctx_arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004411 else
4412 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004413 search_ctx = (ff_search_ctx_T*)alloc((unsigned)sizeof(ff_search_ctx_T));
4414 if (search_ctx == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004415 goto error_return;
Bram Moolenaar7db5fc82010-05-24 11:59:29 +02004416 vim_memset(search_ctx, 0, sizeof(ff_search_ctx_T));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004417 }
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004418 search_ctx->ffsc_find_what = find_what;
Bram Moolenaar463ee342010-08-08 18:17:52 +02004419 search_ctx->ffsc_tagfile = tagfile;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004420
4421 /* clear the search context, but NOT the visited lists */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004422 ff_clear(search_ctx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004423
4424 /* clear visited list if wanted */
4425 if (free_visited == TRUE)
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004426 vim_findfile_free_visited(search_ctx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004427 else
4428 {
4429 /* Reuse old visited lists. Get the visited list for the given
4430 * filename. If no list for the current filename exists, creates a new
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004431 * one. */
4432 search_ctx->ffsc_visited_list = ff_get_visited_list(filename,
4433 &search_ctx->ffsc_visited_lists_list);
4434 if (search_ctx->ffsc_visited_list == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004435 goto error_return;
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004436 search_ctx->ffsc_dir_visited_list = ff_get_visited_list(filename,
4437 &search_ctx->ffsc_dir_visited_lists_list);
4438 if (search_ctx->ffsc_dir_visited_list == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004439 goto error_return;
4440 }
4441
4442 if (ff_expand_buffer == NULL)
4443 {
4444 ff_expand_buffer = (char_u*)alloc(MAXPATHL);
4445 if (ff_expand_buffer == NULL)
4446 goto error_return;
4447 }
4448
4449 /* Store information on starting dir now if path is relative.
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00004450 * If path is absolute, we do that later. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004451 if (path[0] == '.'
4452 && (vim_ispathsep(path[1]) || path[1] == NUL)
4453 && (!tagfile || vim_strchr(p_cpo, CPO_DOTTAG) == NULL)
4454 && rel_fname != NULL)
4455 {
4456 int len = (int)(gettail(rel_fname) - rel_fname);
4457
4458 if (!vim_isAbsName(rel_fname) && len + 1 < MAXPATHL)
4459 {
4460 /* Make the start dir an absolute path name. */
Bram Moolenaarbbebc852005-07-18 21:47:53 +00004461 vim_strncpy(ff_expand_buffer, rel_fname, len);
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004462 search_ctx->ffsc_start_dir = FullName_save(ff_expand_buffer, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004463 }
4464 else
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004465 search_ctx->ffsc_start_dir = vim_strnsave(rel_fname, len);
4466 if (search_ctx->ffsc_start_dir == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004467 goto error_return;
4468 if (*++path != NUL)
4469 ++path;
4470 }
4471 else if (*path == NUL || !vim_isAbsName(path))
4472 {
4473#ifdef BACKSLASH_IN_FILENAME
4474 /* "c:dir" needs "c:" to be expanded, otherwise use current dir */
4475 if (*path != NUL && path[1] == ':')
4476 {
4477 char_u drive[3];
4478
4479 drive[0] = path[0];
4480 drive[1] = ':';
4481 drive[2] = NUL;
4482 if (vim_FullName(drive, ff_expand_buffer, MAXPATHL, TRUE) == FAIL)
4483 goto error_return;
4484 path += 2;
4485 }
4486 else
4487#endif
4488 if (mch_dirname(ff_expand_buffer, MAXPATHL) == FAIL)
4489 goto error_return;
4490
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004491 search_ctx->ffsc_start_dir = vim_strsave(ff_expand_buffer);
4492 if (search_ctx->ffsc_start_dir == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004493 goto error_return;
4494
4495#ifdef BACKSLASH_IN_FILENAME
4496 /* A path that starts with "/dir" is relative to the drive, not to the
4497 * directory (but not for "//machine/dir"). Only use the drive name. */
4498 if ((*path == '/' || *path == '\\')
4499 && path[1] != path[0]
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004500 && search_ctx->ffsc_start_dir[1] == ':')
4501 search_ctx->ffsc_start_dir[2] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004502#endif
4503 }
4504
4505#ifdef FEAT_PATH_EXTRA
4506 /*
4507 * If stopdirs are given, split them into an array of pointers.
4508 * If this fails (mem allocation), there is no upward search at all or a
4509 * stop directory is not recognized -> continue silently.
4510 * If stopdirs just contains a ";" or is empty,
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004511 * search_ctx->ffsc_stopdirs_v will only contain a NULL pointer. This
Bram Moolenaar071d4272004-06-13 20:20:40 +00004512 * is handled as unlimited upward search. See function
4513 * ff_path_in_stoplist() for details.
4514 */
4515 if (stopdirs != NULL)
4516 {
4517 char_u *walker = stopdirs;
4518 int dircount;
4519
4520 while (*walker == ';')
4521 walker++;
4522
4523 dircount = 1;
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004524 search_ctx->ffsc_stopdirs_v =
4525 (char_u **)alloc((unsigned)sizeof(char_u *));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004526
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004527 if (search_ctx->ffsc_stopdirs_v != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004528 {
4529 do
4530 {
4531 char_u *helper;
4532 void *ptr;
4533
4534 helper = walker;
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004535 ptr = vim_realloc(search_ctx->ffsc_stopdirs_v,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004536 (dircount + 1) * sizeof(char_u *));
4537 if (ptr)
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004538 search_ctx->ffsc_stopdirs_v = ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004539 else
4540 /* ignore, keep what we have and continue */
4541 break;
4542 walker = vim_strchr(walker, ';');
4543 if (walker)
4544 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004545 search_ctx->ffsc_stopdirs_v[dircount-1] =
4546 vim_strnsave(helper, (int)(walker - helper));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004547 walker++;
4548 }
4549 else
4550 /* this might be "", which means ascent till top
4551 * of directory tree.
4552 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004553 search_ctx->ffsc_stopdirs_v[dircount-1] =
4554 vim_strsave(helper);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004555
4556 dircount++;
4557
4558 } while (walker != NULL);
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004559 search_ctx->ffsc_stopdirs_v[dircount-1] = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004560 }
4561 }
4562#endif
4563
4564#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004565 search_ctx->ffsc_level = level;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004566
4567 /* split into:
4568 * -fix path
4569 * -wildcard_stuff (might be NULL)
4570 */
4571 wc_part = vim_strchr(path, '*');
4572 if (wc_part != NULL)
4573 {
4574 int llevel;
4575 int len;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00004576 char *errpt;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004577
4578 /* save the fix part of the path */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004579 search_ctx->ffsc_fix_path = vim_strnsave(path, (int)(wc_part - path));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004580
4581 /*
4582 * copy wc_path and add restricts to the '**' wildcard.
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00004583 * The octet after a '**' is used as a (binary) counter.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004584 * So '**3' is transposed to '**^C' ('^C' is ASCII value 3)
4585 * or '**76' is transposed to '**N'( 'N' is ASCII value 76).
4586 * For EBCDIC you get different character values.
4587 * If no restrict is given after '**' the default is used.
Bram Moolenaar21160b92009-11-11 15:56:10 +00004588 * Due to this technique the path looks awful if you print it as a
Bram Moolenaar071d4272004-06-13 20:20:40 +00004589 * string.
4590 */
4591 len = 0;
4592 while (*wc_part != NUL)
4593 {
Bram Moolenaarb9ba4032011-12-08 17:49:35 +01004594 if (len + 5 >= MAXPATHL)
4595 {
4596 EMSG(_(e_pathtoolong));
4597 break;
4598 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004599 if (STRNCMP(wc_part, "**", 2) == 0)
4600 {
4601 ff_expand_buffer[len++] = *wc_part++;
4602 ff_expand_buffer[len++] = *wc_part++;
4603
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00004604 llevel = strtol((char *)wc_part, &errpt, 10);
4605 if ((char_u *)errpt != wc_part && llevel > 0 && llevel < 255)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004606 ff_expand_buffer[len++] = llevel;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00004607 else if ((char_u *)errpt != wc_part && llevel == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004608 /* restrict is 0 -> remove already added '**' */
4609 len -= 2;
4610 else
4611 ff_expand_buffer[len++] = FF_MAX_STAR_STAR_EXPAND;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00004612 wc_part = (char_u *)errpt;
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00004613 if (*wc_part != NUL && !vim_ispathsep(*wc_part))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004614 {
4615 EMSG2(_("E343: Invalid path: '**[number]' must be at the end of the path or be followed by '%s'."), PATHSEPSTR);
4616 goto error_return;
4617 }
4618 }
4619 else
4620 ff_expand_buffer[len++] = *wc_part++;
4621 }
4622 ff_expand_buffer[len] = NUL;
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004623 search_ctx->ffsc_wc_path = vim_strsave(ff_expand_buffer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004624
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004625 if (search_ctx->ffsc_wc_path == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004626 goto error_return;
4627 }
4628 else
4629#endif
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004630 search_ctx->ffsc_fix_path = vim_strsave(path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004631
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004632 if (search_ctx->ffsc_start_dir == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004633 {
4634 /* store the fix part as startdir.
4635 * This is needed if the parameter path is fully qualified.
4636 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004637 search_ctx->ffsc_start_dir = vim_strsave(search_ctx->ffsc_fix_path);
Bram Moolenaara9d52e32010-07-31 16:44:19 +02004638 if (search_ctx->ffsc_start_dir == NULL)
4639 goto error_return;
4640 search_ctx->ffsc_fix_path[0] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004641 }
4642
4643 /* create an absolute path */
Bram Moolenaarb9ba4032011-12-08 17:49:35 +01004644 if (STRLEN(search_ctx->ffsc_start_dir)
4645 + STRLEN(search_ctx->ffsc_fix_path) + 3 >= MAXPATHL)
4646 {
4647 EMSG(_(e_pathtoolong));
4648 goto error_return;
4649 }
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004650 STRCPY(ff_expand_buffer, search_ctx->ffsc_start_dir);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004651 add_pathsep(ff_expand_buffer);
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004652 STRCAT(ff_expand_buffer, search_ctx->ffsc_fix_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004653 add_pathsep(ff_expand_buffer);
4654
4655 sptr = ff_create_stack_element(ff_expand_buffer,
4656#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004657 search_ctx->ffsc_wc_path,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004658#endif
4659 level, 0);
4660
4661 if (sptr == NULL)
4662 goto error_return;
4663
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004664 ff_push(search_ctx, sptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004665
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004666 search_ctx->ffsc_file_to_search = vim_strsave(filename);
4667 if (search_ctx->ffsc_file_to_search == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004668 goto error_return;
4669
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004670 return search_ctx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004671
4672error_return:
4673 /*
4674 * We clear the search context now!
4675 * Even when the caller gave us a (perhaps valid) context we free it here,
4676 * as we might have already destroyed it.
4677 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004678 vim_findfile_cleanup(search_ctx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004679 return NULL;
4680}
4681
4682#if defined(FEAT_PATH_EXTRA) || defined(PROTO)
4683/*
4684 * Get the stopdir string. Check that ';' is not escaped.
4685 */
4686 char_u *
4687vim_findfile_stopdir(buf)
4688 char_u *buf;
4689{
4690 char_u *r_ptr = buf;
4691
4692 while (*r_ptr != NUL && *r_ptr != ';')
4693 {
4694 if (r_ptr[0] == '\\' && r_ptr[1] == ';')
4695 {
Bram Moolenaar0b573a52011-07-27 17:31:47 +02004696 /* Overwrite the escape char,
4697 * use STRLEN(r_ptr) to move the trailing '\0'. */
Bram Moolenaar446cb832008-06-24 21:56:24 +00004698 STRMOVE(r_ptr, r_ptr + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004699 r_ptr++;
4700 }
4701 r_ptr++;
4702 }
4703 if (*r_ptr == ';')
4704 {
4705 *r_ptr = 0;
4706 r_ptr++;
4707 }
4708 else if (*r_ptr == NUL)
4709 r_ptr = NULL;
4710 return r_ptr;
4711}
4712#endif
4713
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004714/*
4715 * Clean up the given search context. Can handle a NULL pointer.
4716 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004717 void
4718vim_findfile_cleanup(ctx)
4719 void *ctx;
4720{
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00004721 if (ctx == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004722 return;
4723
Bram Moolenaar071d4272004-06-13 20:20:40 +00004724 vim_findfile_free_visited(ctx);
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004725 ff_clear(ctx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004726 vim_free(ctx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004727}
4728
4729/*
4730 * Find a file in a search context.
4731 * The search context was created with vim_findfile_init() above.
4732 * Return a pointer to an allocated file name or NULL if nothing found.
4733 * To get all matching files call this function until you get NULL.
4734 *
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00004735 * If the passed search_context is NULL, NULL is returned.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004736 *
4737 * The search algorithm is depth first. To change this replace the
4738 * stack with a list (don't forget to leave partly searched directories on the
4739 * top of the list).
4740 */
4741 char_u *
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004742vim_findfile(search_ctx_arg)
4743 void *search_ctx_arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004744{
4745 char_u *file_path;
4746#ifdef FEAT_PATH_EXTRA
4747 char_u *rest_of_wildcards;
4748 char_u *path_end = NULL;
4749#endif
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004750 ff_stack_T *stackp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004751#if defined(FEAT_SEARCHPATH) || defined(FEAT_PATH_EXTRA)
4752 int len;
4753#endif
4754 int i;
4755 char_u *p;
4756#ifdef FEAT_SEARCHPATH
4757 char_u *suf;
4758#endif
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004759 ff_search_ctx_T *search_ctx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004760
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004761 if (search_ctx_arg == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004762 return NULL;
4763
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004764 search_ctx = (ff_search_ctx_T *)search_ctx_arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004765
4766 /*
4767 * filepath is used as buffer for various actions and as the storage to
4768 * return a found filename.
4769 */
4770 if ((file_path = alloc((int)MAXPATHL)) == NULL)
4771 return NULL;
4772
4773#ifdef FEAT_PATH_EXTRA
4774 /* store the end of the start dir -- needed for upward search */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004775 if (search_ctx->ffsc_start_dir != NULL)
4776 path_end = &search_ctx->ffsc_start_dir[
4777 STRLEN(search_ctx->ffsc_start_dir)];
Bram Moolenaar071d4272004-06-13 20:20:40 +00004778#endif
4779
4780#ifdef FEAT_PATH_EXTRA
4781 /* upward search loop */
4782 for (;;)
4783 {
4784#endif
4785 /* downward search loop */
4786 for (;;)
4787 {
4788 /* check if user user wants to stop the search*/
4789 ui_breakcheck();
4790 if (got_int)
4791 break;
4792
4793 /* get directory to work on from stack */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004794 stackp = ff_pop(search_ctx);
4795 if (stackp == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004796 break;
4797
4798 /*
4799 * TODO: decide if we leave this test in
4800 *
4801 * GOOD: don't search a directory(-tree) twice.
4802 * BAD: - check linked list for every new directory entered.
4803 * - check for double files also done below
4804 *
4805 * Here we check if we already searched this directory.
4806 * We already searched a directory if:
4807 * 1) The directory is the same.
4808 * 2) We would use the same wildcard string.
4809 *
4810 * Good if you have links on same directory via several ways
4811 * or you have selfreferences in directories (e.g. SuSE Linux 6.3:
4812 * /etc/rc.d/init.d is linked to /etc/rc.d -> endless loop)
4813 *
4814 * This check is only needed for directories we work on for the
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004815 * first time (hence stackp->ff_filearray == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004816 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004817 if (stackp->ffs_filearray == NULL
4818 && ff_check_visited(&search_ctx->ffsc_dir_visited_list
Bram Moolenaar071d4272004-06-13 20:20:40 +00004819 ->ffvl_visited_list,
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004820 stackp->ffs_fix_path
Bram Moolenaar071d4272004-06-13 20:20:40 +00004821#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004822 , stackp->ffs_wc_path
Bram Moolenaar071d4272004-06-13 20:20:40 +00004823#endif
4824 ) == FAIL)
4825 {
4826#ifdef FF_VERBOSE
4827 if (p_verbose >= 5)
4828 {
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004829 verbose_enter_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004830 smsg((char_u *)"Already Searched: %s (%s)",
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004831 stackp->ffs_fix_path, stackp->ffs_wc_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004832 /* don't overwrite this either */
4833 msg_puts((char_u *)"\n");
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004834 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004835 }
4836#endif
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004837 ff_free_stack_element(stackp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004838 continue;
4839 }
4840#ifdef FF_VERBOSE
4841 else if (p_verbose >= 5)
4842 {
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004843 verbose_enter_scroll();
Bram Moolenaar051b7822005-05-19 21:00:46 +00004844 smsg((char_u *)"Searching: %s (%s)",
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004845 stackp->ffs_fix_path, stackp->ffs_wc_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004846 /* don't overwrite this either */
4847 msg_puts((char_u *)"\n");
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004848 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004849 }
4850#endif
4851
4852 /* check depth */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004853 if (stackp->ffs_level <= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004854 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004855 ff_free_stack_element(stackp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004856 continue;
4857 }
4858
4859 file_path[0] = NUL;
4860
4861 /*
4862 * If no filearray till now expand wildcards
4863 * The function expand_wildcards() can handle an array of paths
4864 * and all possible expands are returned in one array. We use this
4865 * to handle the expansion of '**' into an empty string.
4866 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004867 if (stackp->ffs_filearray == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004868 {
4869 char_u *dirptrs[2];
4870
4871 /* we use filepath to build the path expand_wildcards() should
4872 * expand.
4873 */
4874 dirptrs[0] = file_path;
4875 dirptrs[1] = NULL;
4876
4877 /* if we have a start dir copy it in */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004878 if (!vim_isAbsName(stackp->ffs_fix_path)
4879 && search_ctx->ffsc_start_dir)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004880 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004881 STRCPY(file_path, search_ctx->ffsc_start_dir);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004882 add_pathsep(file_path);
4883 }
4884
4885 /* append the fix part of the search path */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004886 STRCAT(file_path, stackp->ffs_fix_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004887 add_pathsep(file_path);
4888
4889#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004890 rest_of_wildcards = stackp->ffs_wc_path;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004891 if (*rest_of_wildcards != NUL)
4892 {
4893 len = (int)STRLEN(file_path);
4894 if (STRNCMP(rest_of_wildcards, "**", 2) == 0)
4895 {
4896 /* pointer to the restrict byte
4897 * The restrict byte is not a character!
4898 */
4899 p = rest_of_wildcards + 2;
4900
4901 if (*p > 0)
4902 {
4903 (*p)--;
4904 file_path[len++] = '*';
4905 }
4906
4907 if (*p == 0)
4908 {
4909 /* remove '**<numb> from wildcards */
Bram Moolenaar446cb832008-06-24 21:56:24 +00004910 STRMOVE(rest_of_wildcards, rest_of_wildcards + 3);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004911 }
4912 else
4913 rest_of_wildcards += 3;
4914
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004915 if (stackp->ffs_star_star_empty == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004916 {
4917 /* if not done before, expand '**' to empty */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004918 stackp->ffs_star_star_empty = 1;
4919 dirptrs[1] = stackp->ffs_fix_path;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004920 }
4921 }
4922
4923 /*
4924 * Here we copy until the next path separator or the end of
4925 * the path. If we stop at a path separator, there is
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00004926 * still something else left. This is handled below by
Bram Moolenaar071d4272004-06-13 20:20:40 +00004927 * pushing every directory returned from expand_wildcards()
4928 * on the stack again for further search.
4929 */
4930 while (*rest_of_wildcards
4931 && !vim_ispathsep(*rest_of_wildcards))
4932 file_path[len++] = *rest_of_wildcards++;
4933
4934 file_path[len] = NUL;
4935 if (vim_ispathsep(*rest_of_wildcards))
4936 rest_of_wildcards++;
4937 }
4938#endif
4939
4940 /*
4941 * Expand wildcards like "*" and "$VAR".
4942 * If the path is a URL don't try this.
4943 */
4944 if (path_with_url(dirptrs[0]))
4945 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004946 stackp->ffs_filearray = (char_u **)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004947 alloc((unsigned)sizeof(char *));
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004948 if (stackp->ffs_filearray != NULL
4949 && (stackp->ffs_filearray[0]
Bram Moolenaar071d4272004-06-13 20:20:40 +00004950 = vim_strsave(dirptrs[0])) != NULL)
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004951 stackp->ffs_filearray_size = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004952 else
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004953 stackp->ffs_filearray_size = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004954 }
4955 else
Bram Moolenaar0b573a52011-07-27 17:31:47 +02004956 /* Add EW_NOTWILD because the expanded path may contain
4957 * wildcard characters that are to be taken literally.
4958 * This is a bit of a hack. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004959 expand_wildcards((dirptrs[1] == NULL) ? 1 : 2, dirptrs,
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004960 &stackp->ffs_filearray_size,
4961 &stackp->ffs_filearray,
Bram Moolenaar0b573a52011-07-27 17:31:47 +02004962 EW_DIR|EW_ADDSLASH|EW_SILENT|EW_NOTWILD);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004963
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004964 stackp->ffs_filearray_cur = 0;
4965 stackp->ffs_stage = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004966 }
4967#ifdef FEAT_PATH_EXTRA
4968 else
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004969 rest_of_wildcards = &stackp->ffs_wc_path[
4970 STRLEN(stackp->ffs_wc_path)];
Bram Moolenaar071d4272004-06-13 20:20:40 +00004971#endif
4972
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004973 if (stackp->ffs_stage == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004974 {
4975 /* this is the first time we work on this directory */
4976#ifdef FEAT_PATH_EXTRA
4977 if (*rest_of_wildcards == NUL)
4978#endif
4979 {
4980 /*
4981 * we don't have further wildcards to expand, so we have to
4982 * check for the final file now
4983 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004984 for (i = stackp->ffs_filearray_cur;
4985 i < stackp->ffs_filearray_size; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004986 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004987 if (!path_with_url(stackp->ffs_filearray[i])
4988 && !mch_isdir(stackp->ffs_filearray[i]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004989 continue; /* not a directory */
4990
Bram Moolenaar21160b92009-11-11 15:56:10 +00004991 /* prepare the filename to be checked for existence
Bram Moolenaar071d4272004-06-13 20:20:40 +00004992 * below */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004993 STRCPY(file_path, stackp->ffs_filearray[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004994 add_pathsep(file_path);
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004995 STRCAT(file_path, search_ctx->ffsc_file_to_search);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004996
4997 /*
4998 * Try without extra suffix and then with suffixes
4999 * from 'suffixesadd'.
5000 */
5001#ifdef FEAT_SEARCHPATH
5002 len = (int)STRLEN(file_path);
Bram Moolenaar463ee342010-08-08 18:17:52 +02005003 if (search_ctx->ffsc_tagfile)
5004 suf = (char_u *)"";
5005 else
5006 suf = curbuf->b_p_sua;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005007 for (;;)
5008#endif
5009 {
5010 /* if file exists and we didn't already find it */
5011 if ((path_with_url(file_path)
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005012 || (mch_getperm(file_path) >= 0
5013 && (search_ctx->ffsc_find_what
5014 == FINDFILE_BOTH
5015 || ((search_ctx->ffsc_find_what
5016 == FINDFILE_DIR)
5017 == mch_isdir(file_path)))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005018#ifndef FF_VERBOSE
5019 && (ff_check_visited(
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005020 &search_ctx->ffsc_visited_list->ffvl_visited_list,
Bram Moolenaar071d4272004-06-13 20:20:40 +00005021 file_path
5022#ifdef FEAT_PATH_EXTRA
5023 , (char_u *)""
5024#endif
5025 ) == OK)
5026#endif
5027 )
5028 {
5029#ifdef FF_VERBOSE
5030 if (ff_check_visited(
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005031 &search_ctx->ffsc_visited_list->ffvl_visited_list,
Bram Moolenaar071d4272004-06-13 20:20:40 +00005032 file_path
5033#ifdef FEAT_PATH_EXTRA
5034 , (char_u *)""
5035#endif
5036 ) == FAIL)
5037 {
5038 if (p_verbose >= 5)
5039 {
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00005040 verbose_enter_scroll();
Bram Moolenaar051b7822005-05-19 21:00:46 +00005041 smsg((char_u *)"Already: %s",
Bram Moolenaar071d4272004-06-13 20:20:40 +00005042 file_path);
5043 /* don't overwrite this either */
5044 msg_puts((char_u *)"\n");
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00005045 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005046 }
5047 continue;
5048 }
5049#endif
5050
5051 /* push dir to examine rest of subdirs later */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005052 stackp->ffs_filearray_cur = i + 1;
5053 ff_push(search_ctx, stackp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005054
Bram Moolenaar6bab9fa2009-01-22 20:32:12 +00005055 if (!path_with_url(file_path))
5056 simplify_filename(file_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005057 if (mch_dirname(ff_expand_buffer, MAXPATHL)
5058 == OK)
5059 {
5060 p = shorten_fname(file_path,
5061 ff_expand_buffer);
5062 if (p != NULL)
Bram Moolenaar446cb832008-06-24 21:56:24 +00005063 STRMOVE(file_path, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005064 }
5065#ifdef FF_VERBOSE
5066 if (p_verbose >= 5)
5067 {
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00005068 verbose_enter_scroll();
Bram Moolenaar051b7822005-05-19 21:00:46 +00005069 smsg((char_u *)"HIT: %s", file_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005070 /* don't overwrite this either */
5071 msg_puts((char_u *)"\n");
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00005072 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005073 }
5074#endif
5075 return file_path;
5076 }
5077
5078#ifdef FEAT_SEARCHPATH
5079 /* Not found or found already, try next suffix. */
5080 if (*suf == NUL)
5081 break;
5082 copy_option_part(&suf, file_path + len,
5083 MAXPATHL - len, ",");
5084#endif
5085 }
5086 }
5087 }
5088#ifdef FEAT_PATH_EXTRA
5089 else
5090 {
5091 /*
5092 * still wildcards left, push the directories for further
5093 * search
5094 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005095 for (i = stackp->ffs_filearray_cur;
5096 i < stackp->ffs_filearray_size; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005097 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005098 if (!mch_isdir(stackp->ffs_filearray[i]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005099 continue; /* not a directory */
5100
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005101 ff_push(search_ctx,
5102 ff_create_stack_element(
5103 stackp->ffs_filearray[i],
5104 rest_of_wildcards,
5105 stackp->ffs_level - 1, 0));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005106 }
5107 }
5108#endif
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005109 stackp->ffs_filearray_cur = 0;
5110 stackp->ffs_stage = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005111 }
5112
5113#ifdef FEAT_PATH_EXTRA
5114 /*
5115 * if wildcards contains '**' we have to descent till we reach the
5116 * leaves of the directory tree.
5117 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005118 if (STRNCMP(stackp->ffs_wc_path, "**", 2) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005119 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005120 for (i = stackp->ffs_filearray_cur;
5121 i < stackp->ffs_filearray_size; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005122 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005123 if (fnamecmp(stackp->ffs_filearray[i],
5124 stackp->ffs_fix_path) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005125 continue; /* don't repush same directory */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005126 if (!mch_isdir(stackp->ffs_filearray[i]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005127 continue; /* not a directory */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005128 ff_push(search_ctx,
5129 ff_create_stack_element(stackp->ffs_filearray[i],
5130 stackp->ffs_wc_path, stackp->ffs_level - 1, 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005131 }
5132 }
5133#endif
5134
5135 /* we are done with the current directory */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005136 ff_free_stack_element(stackp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005137
5138 }
5139
5140#ifdef FEAT_PATH_EXTRA
5141 /* If we reached this, we didn't find anything downwards.
5142 * Let's check if we should do an upward search.
5143 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005144 if (search_ctx->ffsc_start_dir
5145 && search_ctx->ffsc_stopdirs_v != NULL && !got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005146 {
5147 ff_stack_T *sptr;
5148
5149 /* is the last starting directory in the stop list? */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005150 if (ff_path_in_stoplist(search_ctx->ffsc_start_dir,
5151 (int)(path_end - search_ctx->ffsc_start_dir),
5152 search_ctx->ffsc_stopdirs_v) == TRUE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005153 break;
5154
5155 /* cut of last dir */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005156 while (path_end > search_ctx->ffsc_start_dir
5157 && vim_ispathsep(*path_end))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005158 path_end--;
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005159 while (path_end > search_ctx->ffsc_start_dir
5160 && !vim_ispathsep(path_end[-1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005161 path_end--;
5162 *path_end = 0;
5163 path_end--;
5164
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005165 if (*search_ctx->ffsc_start_dir == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005166 break;
5167
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005168 STRCPY(file_path, search_ctx->ffsc_start_dir);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005169 add_pathsep(file_path);
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005170 STRCAT(file_path, search_ctx->ffsc_fix_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005171
5172 /* create a new stack entry */
5173 sptr = ff_create_stack_element(file_path,
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005174 search_ctx->ffsc_wc_path, search_ctx->ffsc_level, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005175 if (sptr == NULL)
5176 break;
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005177 ff_push(search_ctx, sptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005178 }
5179 else
5180 break;
5181 }
5182#endif
5183
5184 vim_free(file_path);
5185 return NULL;
5186}
5187
5188/*
5189 * Free the list of lists of visited files and directories
5190 * Can handle it if the passed search_context is NULL;
5191 */
5192 void
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005193vim_findfile_free_visited(search_ctx_arg)
5194 void *search_ctx_arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005195{
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005196 ff_search_ctx_T *search_ctx;
5197
5198 if (search_ctx_arg == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005199 return;
5200
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005201 search_ctx = (ff_search_ctx_T *)search_ctx_arg;
5202 vim_findfile_free_visited_list(&search_ctx->ffsc_visited_lists_list);
5203 vim_findfile_free_visited_list(&search_ctx->ffsc_dir_visited_lists_list);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005204}
5205
5206 static void
5207vim_findfile_free_visited_list(list_headp)
5208 ff_visited_list_hdr_T **list_headp;
5209{
5210 ff_visited_list_hdr_T *vp;
5211
5212 while (*list_headp != NULL)
5213 {
5214 vp = (*list_headp)->ffvl_next;
5215 ff_free_visited_list((*list_headp)->ffvl_visited_list);
5216
5217 vim_free((*list_headp)->ffvl_filename);
5218 vim_free(*list_headp);
5219 *list_headp = vp;
5220 }
5221 *list_headp = NULL;
5222}
5223
5224 static void
5225ff_free_visited_list(vl)
5226 ff_visited_T *vl;
5227{
5228 ff_visited_T *vp;
5229
5230 while (vl != NULL)
5231 {
5232 vp = vl->ffv_next;
5233#ifdef FEAT_PATH_EXTRA
5234 vim_free(vl->ffv_wc_path);
5235#endif
5236 vim_free(vl);
5237 vl = vp;
5238 }
5239 vl = NULL;
5240}
5241
5242/*
5243 * Returns the already visited list for the given filename. If none is found it
5244 * allocates a new one.
5245 */
5246 static ff_visited_list_hdr_T*
5247ff_get_visited_list(filename, list_headp)
5248 char_u *filename;
5249 ff_visited_list_hdr_T **list_headp;
5250{
5251 ff_visited_list_hdr_T *retptr = NULL;
5252
5253 /* check if a visited list for the given filename exists */
5254 if (*list_headp != NULL)
5255 {
5256 retptr = *list_headp;
5257 while (retptr != NULL)
5258 {
5259 if (fnamecmp(filename, retptr->ffvl_filename) == 0)
5260 {
5261#ifdef FF_VERBOSE
5262 if (p_verbose >= 5)
5263 {
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00005264 verbose_enter_scroll();
Bram Moolenaar051b7822005-05-19 21:00:46 +00005265 smsg((char_u *)"ff_get_visited_list: FOUND list for %s",
Bram Moolenaar071d4272004-06-13 20:20:40 +00005266 filename);
5267 /* don't overwrite this either */
5268 msg_puts((char_u *)"\n");
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00005269 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005270 }
5271#endif
5272 return retptr;
5273 }
5274 retptr = retptr->ffvl_next;
5275 }
5276 }
5277
5278#ifdef FF_VERBOSE
5279 if (p_verbose >= 5)
5280 {
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00005281 verbose_enter_scroll();
Bram Moolenaar051b7822005-05-19 21:00:46 +00005282 smsg((char_u *)"ff_get_visited_list: new list for %s", filename);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005283 /* don't overwrite this either */
5284 msg_puts((char_u *)"\n");
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00005285 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005286 }
5287#endif
5288
5289 /*
5290 * if we reach this we didn't find a list and we have to allocate new list
5291 */
5292 retptr = (ff_visited_list_hdr_T*)alloc((unsigned)sizeof(*retptr));
5293 if (retptr == NULL)
5294 return NULL;
5295
5296 retptr->ffvl_visited_list = NULL;
5297 retptr->ffvl_filename = vim_strsave(filename);
5298 if (retptr->ffvl_filename == NULL)
5299 {
5300 vim_free(retptr);
5301 return NULL;
5302 }
5303 retptr->ffvl_next = *list_headp;
5304 *list_headp = retptr;
5305
5306 return retptr;
5307}
5308
5309#ifdef FEAT_PATH_EXTRA
5310/*
5311 * check if two wildcard paths are equal. Returns TRUE or FALSE.
5312 * They are equal if:
5313 * - both paths are NULL
5314 * - they have the same length
5315 * - char by char comparison is OK
5316 * - the only differences are in the counters behind a '**', so
5317 * '**\20' is equal to '**\24'
5318 */
5319 static int
5320ff_wc_equal(s1, s2)
5321 char_u *s1;
5322 char_u *s2;
5323{
5324 int i;
5325
5326 if (s1 == s2)
5327 return TRUE;
5328
5329 if (s1 == NULL || s2 == NULL)
5330 return FALSE;
5331
5332 if (STRLEN(s1) != STRLEN(s2))
5333 return FAIL;
5334
5335 for (i = 0; s1[i] != NUL && s2[i] != NUL; i++)
5336 {
5337 if (s1[i] != s2[i]
5338#ifdef CASE_INSENSITIVE_FILENAME
5339 && TOUPPER_LOC(s1[i]) != TOUPPER_LOC(s2[i])
5340#endif
5341 )
5342 {
5343 if (i >= 2)
5344 if (s1[i-1] == '*' && s1[i-2] == '*')
5345 continue;
5346 else
5347 return FAIL;
5348 else
5349 return FAIL;
5350 }
5351 }
5352 return TRUE;
5353}
5354#endif
5355
5356/*
5357 * maintains the list of already visited files and dirs
5358 * returns FAIL if the given file/dir is already in the list
5359 * returns OK if it is newly added
5360 *
5361 * TODO: What to do on memory allocation problems?
5362 * -> return TRUE - Better the file is found several times instead of
5363 * never.
5364 */
5365 static int
5366ff_check_visited(visited_list, fname
5367#ifdef FEAT_PATH_EXTRA
5368 , wc_path
5369#endif
5370 )
5371 ff_visited_T **visited_list;
5372 char_u *fname;
5373#ifdef FEAT_PATH_EXTRA
5374 char_u *wc_path;
5375#endif
5376{
5377 ff_visited_T *vp;
5378#ifdef UNIX
5379 struct stat st;
5380 int url = FALSE;
5381#endif
5382
5383 /* For an URL we only compare the name, otherwise we compare the
5384 * device/inode (unix) or the full path name (not Unix). */
5385 if (path_with_url(fname))
5386 {
Bram Moolenaarbbebc852005-07-18 21:47:53 +00005387 vim_strncpy(ff_expand_buffer, fname, MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005388#ifdef UNIX
5389 url = TRUE;
5390#endif
5391 }
5392 else
5393 {
5394 ff_expand_buffer[0] = NUL;
5395#ifdef UNIX
5396 if (mch_stat((char *)fname, &st) < 0)
5397#else
5398 if (vim_FullName(fname, ff_expand_buffer, MAXPATHL, TRUE) == FAIL)
5399#endif
5400 return FAIL;
5401 }
5402
5403 /* check against list of already visited files */
5404 for (vp = *visited_list; vp != NULL; vp = vp->ffv_next)
5405 {
5406 if (
5407#ifdef UNIX
Bram Moolenaare1fbddc2009-05-16 19:07:03 +00005408 !url ? (vp->ffv_dev_valid && vp->ffv_dev == st.st_dev
5409 && vp->ffv_ino == st.st_ino)
5410 :
Bram Moolenaar071d4272004-06-13 20:20:40 +00005411#endif
5412 fnamecmp(vp->ffv_fname, ff_expand_buffer) == 0
5413 )
5414 {
5415#ifdef FEAT_PATH_EXTRA
5416 /* are the wildcard parts equal */
5417 if (ff_wc_equal(vp->ffv_wc_path, wc_path) == TRUE)
5418#endif
5419 /* already visited */
5420 return FAIL;
5421 }
5422 }
5423
5424 /*
5425 * New file/dir. Add it to the list of visited files/dirs.
5426 */
5427 vp = (ff_visited_T *)alloc((unsigned)(sizeof(ff_visited_T)
5428 + STRLEN(ff_expand_buffer)));
5429
5430 if (vp != NULL)
5431 {
5432#ifdef UNIX
5433 if (!url)
5434 {
Bram Moolenaare1fbddc2009-05-16 19:07:03 +00005435 vp->ffv_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005436 vp->ffv_ino = st.st_ino;
5437 vp->ffv_dev = st.st_dev;
5438 vp->ffv_fname[0] = NUL;
5439 }
5440 else
5441 {
Bram Moolenaare1fbddc2009-05-16 19:07:03 +00005442 vp->ffv_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005443#endif
5444 STRCPY(vp->ffv_fname, ff_expand_buffer);
5445#ifdef UNIX
5446 }
5447#endif
5448#ifdef FEAT_PATH_EXTRA
5449 if (wc_path != NULL)
5450 vp->ffv_wc_path = vim_strsave(wc_path);
5451 else
5452 vp->ffv_wc_path = NULL;
5453#endif
5454
5455 vp->ffv_next = *visited_list;
5456 *visited_list = vp;
5457 }
5458
5459 return OK;
5460}
5461
5462/*
5463 * create stack element from given path pieces
5464 */
5465 static ff_stack_T *
5466ff_create_stack_element(fix_part,
5467#ifdef FEAT_PATH_EXTRA
5468 wc_part,
5469#endif
5470 level, star_star_empty)
5471 char_u *fix_part;
5472#ifdef FEAT_PATH_EXTRA
5473 char_u *wc_part;
5474#endif
5475 int level;
5476 int star_star_empty;
5477{
5478 ff_stack_T *new;
5479
5480 new = (ff_stack_T *)alloc((unsigned)sizeof(ff_stack_T));
5481 if (new == NULL)
5482 return NULL;
5483
5484 new->ffs_prev = NULL;
5485 new->ffs_filearray = NULL;
5486 new->ffs_filearray_size = 0;
5487 new->ffs_filearray_cur = 0;
5488 new->ffs_stage = 0;
5489 new->ffs_level = level;
5490 new->ffs_star_star_empty = star_star_empty;;
5491
5492 /* the following saves NULL pointer checks in vim_findfile */
5493 if (fix_part == NULL)
5494 fix_part = (char_u *)"";
5495 new->ffs_fix_path = vim_strsave(fix_part);
5496
5497#ifdef FEAT_PATH_EXTRA
5498 if (wc_part == NULL)
5499 wc_part = (char_u *)"";
5500 new->ffs_wc_path = vim_strsave(wc_part);
5501#endif
5502
5503 if (new->ffs_fix_path == NULL
5504#ifdef FEAT_PATH_EXTRA
5505 || new->ffs_wc_path == NULL
5506#endif
5507 )
5508 {
5509 ff_free_stack_element(new);
5510 new = NULL;
5511 }
5512
5513 return new;
5514}
5515
5516/*
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005517 * Push a dir on the directory stack.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005518 */
5519 static void
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005520ff_push(search_ctx, stack_ptr)
5521 ff_search_ctx_T *search_ctx;
5522 ff_stack_T *stack_ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005523{
5524 /* check for NULL pointer, not to return an error to the user, but
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005525 * to prevent a crash */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005526 if (stack_ptr != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005527 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005528 stack_ptr->ffs_prev = search_ctx->ffsc_stack_ptr;
5529 search_ctx->ffsc_stack_ptr = stack_ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005530 }
5531}
5532
5533/*
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005534 * Pop a dir from the directory stack.
5535 * Returns NULL if stack is empty.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005536 */
5537 static ff_stack_T *
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005538ff_pop(search_ctx)
5539 ff_search_ctx_T *search_ctx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005540{
5541 ff_stack_T *sptr;
5542
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005543 sptr = search_ctx->ffsc_stack_ptr;
5544 if (search_ctx->ffsc_stack_ptr != NULL)
5545 search_ctx->ffsc_stack_ptr = search_ctx->ffsc_stack_ptr->ffs_prev;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005546
5547 return sptr;
5548}
5549
5550/*
5551 * free the given stack element
5552 */
5553 static void
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005554ff_free_stack_element(stack_ptr)
5555 ff_stack_T *stack_ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005556{
5557 /* vim_free handles possible NULL pointers */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005558 vim_free(stack_ptr->ffs_fix_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005559#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005560 vim_free(stack_ptr->ffs_wc_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005561#endif
5562
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005563 if (stack_ptr->ffs_filearray != NULL)
5564 FreeWild(stack_ptr->ffs_filearray_size, stack_ptr->ffs_filearray);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005565
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005566 vim_free(stack_ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005567}
5568
5569/*
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005570 * Clear the search context, but NOT the visited list.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005571 */
5572 static void
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005573ff_clear(search_ctx)
5574 ff_search_ctx_T *search_ctx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005575{
5576 ff_stack_T *sptr;
5577
5578 /* clear up stack */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005579 while ((sptr = ff_pop(search_ctx)) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005580 ff_free_stack_element(sptr);
5581
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005582 vim_free(search_ctx->ffsc_file_to_search);
5583 vim_free(search_ctx->ffsc_start_dir);
5584 vim_free(search_ctx->ffsc_fix_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005585#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005586 vim_free(search_ctx->ffsc_wc_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005587#endif
5588
5589#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005590 if (search_ctx->ffsc_stopdirs_v != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005591 {
5592 int i = 0;
5593
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005594 while (search_ctx->ffsc_stopdirs_v[i] != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005595 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005596 vim_free(search_ctx->ffsc_stopdirs_v[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005597 i++;
5598 }
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005599 vim_free(search_ctx->ffsc_stopdirs_v);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005600 }
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005601 search_ctx->ffsc_stopdirs_v = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005602#endif
5603
5604 /* reset everything */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005605 search_ctx->ffsc_file_to_search = NULL;
5606 search_ctx->ffsc_start_dir = NULL;
5607 search_ctx->ffsc_fix_path = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005608#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005609 search_ctx->ffsc_wc_path = NULL;
5610 search_ctx->ffsc_level = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005611#endif
5612}
5613
5614#ifdef FEAT_PATH_EXTRA
5615/*
5616 * check if the given path is in the stopdirs
5617 * returns TRUE if yes else FALSE
5618 */
5619 static int
5620ff_path_in_stoplist(path, path_len, stopdirs_v)
5621 char_u *path;
5622 int path_len;
5623 char_u **stopdirs_v;
5624{
5625 int i = 0;
5626
5627 /* eat up trailing path separators, except the first */
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00005628 while (path_len > 1 && vim_ispathsep(path[path_len - 1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005629 path_len--;
5630
5631 /* if no path consider it as match */
5632 if (path_len == 0)
5633 return TRUE;
5634
5635 for (i = 0; stopdirs_v[i] != NULL; i++)
5636 {
5637 if ((int)STRLEN(stopdirs_v[i]) > path_len)
5638 {
5639 /* match for parent directory. So '/home' also matches
5640 * '/home/rks'. Check for PATHSEP in stopdirs_v[i], else
5641 * '/home/r' would also match '/home/rks'
5642 */
5643 if (fnamencmp(stopdirs_v[i], path, path_len) == 0
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00005644 && vim_ispathsep(stopdirs_v[i][path_len]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005645 return TRUE;
5646 }
5647 else
5648 {
5649 if (fnamecmp(stopdirs_v[i], path) == 0)
5650 return TRUE;
5651 }
5652 }
5653 return FALSE;
5654}
5655#endif
5656
5657#if defined(FEAT_SEARCHPATH) || defined(PROTO)
5658/*
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005659 * Find the file name "ptr[len]" in the path. Also finds directory names.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005660 *
5661 * On the first call set the parameter 'first' to TRUE to initialize
5662 * the search. For repeating calls to FALSE.
5663 *
5664 * Repeating calls will return other files called 'ptr[len]' from the path.
5665 *
5666 * Only on the first call 'ptr' and 'len' are used. For repeating calls they
5667 * don't need valid values.
5668 *
5669 * If nothing found on the first call the option FNAME_MESS will issue the
5670 * message:
5671 * 'Can't find file "<file>" in path'
5672 * On repeating calls:
5673 * 'No more file "<file>" found in path'
5674 *
5675 * options:
5676 * FNAME_MESS give error message when not found
5677 *
5678 * Uses NameBuff[]!
5679 *
5680 * Returns an allocated string for the file name. NULL for error.
5681 *
5682 */
5683 char_u *
5684find_file_in_path(ptr, len, options, first, rel_fname)
5685 char_u *ptr; /* file name */
5686 int len; /* length of file name */
5687 int options;
5688 int first; /* use count'th matching file name */
5689 char_u *rel_fname; /* file name searching relative to */
5690{
5691 return find_file_in_path_option(ptr, len, options, first,
5692 *curbuf->b_p_path == NUL ? p_path : curbuf->b_p_path,
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005693 FINDFILE_BOTH, rel_fname, curbuf->b_p_sua);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005694}
5695
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005696static char_u *ff_file_to_find = NULL;
5697static void *fdip_search_ctx = NULL;
5698
5699#if defined(EXITFREE)
5700 static void
5701free_findfile()
5702{
5703 vim_free(ff_file_to_find);
5704 vim_findfile_cleanup(fdip_search_ctx);
5705}
5706#endif
5707
Bram Moolenaar071d4272004-06-13 20:20:40 +00005708/*
5709 * Find the directory name "ptr[len]" in the path.
5710 *
5711 * options:
5712 * FNAME_MESS give error message when not found
5713 *
5714 * Uses NameBuff[]!
5715 *
5716 * Returns an allocated string for the file name. NULL for error.
5717 */
5718 char_u *
5719find_directory_in_path(ptr, len, options, rel_fname)
5720 char_u *ptr; /* file name */
5721 int len; /* length of file name */
5722 int options;
5723 char_u *rel_fname; /* file name searching relative to */
5724{
5725 return find_file_in_path_option(ptr, len, options, TRUE, p_cdpath,
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005726 FINDFILE_DIR, rel_fname, (char_u *)"");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005727}
5728
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00005729 char_u *
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005730find_file_in_path_option(ptr, len, options, first, path_option, find_what, rel_fname, suffixes)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005731 char_u *ptr; /* file name */
5732 int len; /* length of file name */
5733 int options;
5734 int first; /* use count'th matching file name */
5735 char_u *path_option; /* p_path or p_cdpath */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005736 int find_what; /* FINDFILE_FILE, _DIR or _BOTH */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005737 char_u *rel_fname; /* file name we are looking relative to. */
Bram Moolenaar433f7c82006-03-21 21:29:36 +00005738 char_u *suffixes; /* list of suffixes, 'suffixesadd' option */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005739{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005740 static char_u *dir;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005741 static int did_findfile_init = FALSE;
5742 char_u save_char;
5743 char_u *file_name = NULL;
5744 char_u *buf = NULL;
5745 int rel_to_curdir;
5746#ifdef AMIGA
5747 struct Process *proc = (struct Process *)FindTask(0L);
5748 APTR save_winptr = proc->pr_WindowPtr;
5749
5750 /* Avoid a requester here for a volume that doesn't exist. */
5751 proc->pr_WindowPtr = (APTR)-1L;
5752#endif
5753
5754 if (first == TRUE)
5755 {
5756 /* copy file name into NameBuff, expanding environment variables */
5757 save_char = ptr[len];
5758 ptr[len] = NUL;
5759 expand_env(ptr, NameBuff, MAXPATHL);
5760 ptr[len] = save_char;
5761
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005762 vim_free(ff_file_to_find);
5763 ff_file_to_find = vim_strsave(NameBuff);
5764 if (ff_file_to_find == NULL) /* out of memory */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005765 {
5766 file_name = NULL;
5767 goto theend;
5768 }
5769 }
5770
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005771 rel_to_curdir = (ff_file_to_find[0] == '.'
5772 && (ff_file_to_find[1] == NUL
5773 || vim_ispathsep(ff_file_to_find[1])
5774 || (ff_file_to_find[1] == '.'
5775 && (ff_file_to_find[2] == NUL
5776 || vim_ispathsep(ff_file_to_find[2])))));
5777 if (vim_isAbsName(ff_file_to_find)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005778 /* "..", "../path", "." and "./path": don't use the path_option */
5779 || rel_to_curdir
5780#if defined(MSWIN) || defined(MSDOS) || defined(OS2)
5781 /* handle "\tmp" as absolute path */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005782 || vim_ispathsep(ff_file_to_find[0])
Bram Moolenaar21160b92009-11-11 15:56:10 +00005783 /* handle "c:name" as absolute path */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005784 || (ff_file_to_find[0] != NUL && ff_file_to_find[1] == ':')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005785#endif
5786#ifdef AMIGA
5787 /* handle ":tmp" as absolute path */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005788 || ff_file_to_find[0] == ':'
Bram Moolenaar071d4272004-06-13 20:20:40 +00005789#endif
5790 )
5791 {
5792 /*
5793 * Absolute path, no need to use "path_option".
5794 * If this is not a first call, return NULL. We already returned a
5795 * filename on the first call.
5796 */
5797 if (first == TRUE)
5798 {
5799 int l;
5800 int run;
5801
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005802 if (path_with_url(ff_file_to_find))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005803 {
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005804 file_name = vim_strsave(ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005805 goto theend;
5806 }
5807
5808 /* When FNAME_REL flag given first use the directory of the file.
5809 * Otherwise or when this fails use the current directory. */
5810 for (run = 1; run <= 2; ++run)
5811 {
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005812 l = (int)STRLEN(ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005813 if (run == 1
5814 && rel_to_curdir
5815 && (options & FNAME_REL)
5816 && rel_fname != NULL
5817 && STRLEN(rel_fname) + l < MAXPATHL)
5818 {
5819 STRCPY(NameBuff, rel_fname);
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005820 STRCPY(gettail(NameBuff), ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005821 l = (int)STRLEN(NameBuff);
5822 }
5823 else
5824 {
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005825 STRCPY(NameBuff, ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005826 run = 2;
5827 }
5828
5829 /* When the file doesn't exist, try adding parts of
5830 * 'suffixesadd'. */
Bram Moolenaar433f7c82006-03-21 21:29:36 +00005831 buf = suffixes;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005832 for (;;)
5833 {
5834 if (
5835#ifdef DJGPP
5836 /* "C:" by itself will fail for mch_getperm(),
5837 * assume it's always valid. */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005838 (find_what != FINDFILE_FILE && NameBuff[0] != NUL
Bram Moolenaar071d4272004-06-13 20:20:40 +00005839 && NameBuff[1] == ':'
5840 && NameBuff[2] == NUL) ||
5841#endif
5842 (mch_getperm(NameBuff) >= 0
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005843 && (find_what == FINDFILE_BOTH
5844 || ((find_what == FINDFILE_DIR)
5845 == mch_isdir(NameBuff)))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005846 {
5847 file_name = vim_strsave(NameBuff);
5848 goto theend;
5849 }
5850 if (*buf == NUL)
5851 break;
5852 copy_option_part(&buf, NameBuff + l, MAXPATHL - l, ",");
5853 }
5854 }
5855 }
5856 }
5857 else
5858 {
5859 /*
5860 * Loop over all paths in the 'path' or 'cdpath' option.
5861 * When "first" is set, first setup to the start of the option.
5862 * Otherwise continue to find the next match.
5863 */
5864 if (first == TRUE)
5865 {
5866 /* vim_findfile_free_visited can handle a possible NULL pointer */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005867 vim_findfile_free_visited(fdip_search_ctx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005868 dir = path_option;
5869 did_findfile_init = FALSE;
5870 }
5871
5872 for (;;)
5873 {
5874 if (did_findfile_init)
5875 {
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005876 file_name = vim_findfile(fdip_search_ctx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005877 if (file_name != NULL)
5878 break;
5879
5880 did_findfile_init = FALSE;
5881 }
5882 else
5883 {
5884 char_u *r_ptr;
5885
5886 if (dir == NULL || *dir == NUL)
5887 {
5888 /* We searched all paths of the option, now we can
5889 * free the search context. */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005890 vim_findfile_cleanup(fdip_search_ctx);
5891 fdip_search_ctx = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005892 break;
5893 }
5894
5895 if ((buf = alloc((int)(MAXPATHL))) == NULL)
5896 break;
5897
5898 /* copy next path */
5899 buf[0] = 0;
5900 copy_option_part(&dir, buf, MAXPATHL, " ,");
5901
5902#ifdef FEAT_PATH_EXTRA
5903 /* get the stopdir string */
5904 r_ptr = vim_findfile_stopdir(buf);
5905#else
5906 r_ptr = NULL;
5907#endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005908 fdip_search_ctx = vim_findfile_init(buf, ff_file_to_find,
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005909 r_ptr, 100, FALSE, find_what,
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005910 fdip_search_ctx, FALSE, rel_fname);
5911 if (fdip_search_ctx != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005912 did_findfile_init = TRUE;
5913 vim_free(buf);
5914 }
5915 }
5916 }
5917 if (file_name == NULL && (options & FNAME_MESS))
5918 {
5919 if (first == TRUE)
5920 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005921 if (find_what == FINDFILE_DIR)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005922 EMSG2(_("E344: Can't find directory \"%s\" in cdpath"),
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005923 ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005924 else
5925 EMSG2(_("E345: Can't find file \"%s\" in path"),
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005926 ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005927 }
5928 else
5929 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005930 if (find_what == FINDFILE_DIR)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005931 EMSG2(_("E346: No more directory \"%s\" found in cdpath"),
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005932 ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005933 else
5934 EMSG2(_("E347: No more file \"%s\" found in path"),
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005935 ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005936 }
5937 }
5938
5939theend:
5940#ifdef AMIGA
5941 proc->pr_WindowPtr = save_winptr;
5942#endif
5943 return file_name;
5944}
5945
5946#endif /* FEAT_SEARCHPATH */
5947
5948/*
5949 * Change directory to "new_dir". If FEAT_SEARCHPATH is defined, search
5950 * 'cdpath' for relative directory names, otherwise just mch_chdir().
5951 */
5952 int
5953vim_chdir(new_dir)
5954 char_u *new_dir;
5955{
5956#ifndef FEAT_SEARCHPATH
5957 return mch_chdir((char *)new_dir);
5958#else
5959 char_u *dir_name;
5960 int r;
5961
5962 dir_name = find_directory_in_path(new_dir, (int)STRLEN(new_dir),
5963 FNAME_MESS, curbuf->b_ffname);
5964 if (dir_name == NULL)
5965 return -1;
5966 r = mch_chdir((char *)dir_name);
5967 vim_free(dir_name);
5968 return r;
5969#endif
5970}
5971
5972/*
Bram Moolenaarbbebc852005-07-18 21:47:53 +00005973 * Get user name from machine-specific function.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005974 * Returns the user name in "buf[len]".
Bram Moolenaarbbebc852005-07-18 21:47:53 +00005975 * Some systems are quite slow in obtaining the user name (Windows NT), thus
5976 * cache the result.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005977 * Returns OK or FAIL.
5978 */
5979 int
5980get_user_name(buf, len)
5981 char_u *buf;
5982 int len;
5983{
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005984 if (username == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005985 {
5986 if (mch_get_user_name(buf, len) == FAIL)
5987 return FAIL;
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005988 username = vim_strsave(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005989 }
5990 else
Bram Moolenaarbbebc852005-07-18 21:47:53 +00005991 vim_strncpy(buf, username, len - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005992 return OK;
5993}
5994
5995#ifndef HAVE_QSORT
5996/*
5997 * Our own qsort(), for systems that don't have it.
5998 * It's simple and slow. From the K&R C book.
5999 */
6000 void
6001qsort(base, elm_count, elm_size, cmp)
6002 void *base;
6003 size_t elm_count;
6004 size_t elm_size;
6005 int (*cmp) __ARGS((const void *, const void *));
6006{
6007 char_u *buf;
6008 char_u *p1;
6009 char_u *p2;
6010 int i, j;
6011 int gap;
6012
6013 buf = alloc((unsigned)elm_size);
6014 if (buf == NULL)
6015 return;
6016
6017 for (gap = elm_count / 2; gap > 0; gap /= 2)
6018 for (i = gap; i < elm_count; ++i)
6019 for (j = i - gap; j >= 0; j -= gap)
6020 {
6021 /* Compare the elements. */
6022 p1 = (char_u *)base + j * elm_size;
6023 p2 = (char_u *)base + (j + gap) * elm_size;
6024 if ((*cmp)((void *)p1, (void *)p2) <= 0)
6025 break;
Bram Moolenaar21160b92009-11-11 15:56:10 +00006026 /* Exchange the elements. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006027 mch_memmove(buf, p1, elm_size);
6028 mch_memmove(p1, p2, elm_size);
6029 mch_memmove(p2, buf, elm_size);
6030 }
6031
6032 vim_free(buf);
6033}
6034#endif
6035
Bram Moolenaar071d4272004-06-13 20:20:40 +00006036/*
6037 * Sort an array of strings.
6038 */
6039static int
6040#ifdef __BORLANDC__
6041_RTLENTRYF
6042#endif
6043sort_compare __ARGS((const void *s1, const void *s2));
6044
6045 static int
6046#ifdef __BORLANDC__
6047_RTLENTRYF
6048#endif
6049sort_compare(s1, s2)
6050 const void *s1;
6051 const void *s2;
6052{
6053 return STRCMP(*(char **)s1, *(char **)s2);
6054}
6055
6056 void
6057sort_strings(files, count)
6058 char_u **files;
6059 int count;
6060{
6061 qsort((void *)files, (size_t)count, sizeof(char_u *), sort_compare);
6062}
Bram Moolenaar071d4272004-06-13 20:20:40 +00006063
6064#if !defined(NO_EXPANDPATH) || defined(PROTO)
6065/*
6066 * Compare path "p[]" to "q[]".
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00006067 * If "maxlen" >= 0 compare "p[maxlen]" to "q[maxlen]"
Bram Moolenaar071d4272004-06-13 20:20:40 +00006068 * Return value like strcmp(p, q), but consider path separators.
6069 */
6070 int
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00006071pathcmp(p, q, maxlen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006072 const char *p, *q;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00006073 int maxlen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006074{
6075 int i;
Bram Moolenaar86b68352004-12-27 21:59:20 +00006076 const char *s = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006077
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00006078 for (i = 0; maxlen < 0 || i < maxlen; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006079 {
6080 /* End of "p": check if "q" also ends or just has a slash. */
6081 if (p[i] == NUL)
6082 {
6083 if (q[i] == NUL) /* full match */
6084 return 0;
6085 s = q;
6086 break;
6087 }
6088
6089 /* End of "q": check if "p" just has a slash. */
6090 if (q[i] == NUL)
6091 {
6092 s = p;
6093 break;
6094 }
6095
6096 if (
6097#ifdef CASE_INSENSITIVE_FILENAME
6098 TOUPPER_LOC(p[i]) != TOUPPER_LOC(q[i])
6099#else
6100 p[i] != q[i]
6101#endif
6102#ifdef BACKSLASH_IN_FILENAME
6103 /* consider '/' and '\\' to be equal */
6104 && !((p[i] == '/' && q[i] == '\\')
6105 || (p[i] == '\\' && q[i] == '/'))
6106#endif
6107 )
6108 {
6109 if (vim_ispathsep(p[i]))
6110 return -1;
6111 if (vim_ispathsep(q[i]))
6112 return 1;
6113 return ((char_u *)p)[i] - ((char_u *)q)[i]; /* no match */
6114 }
6115 }
Bram Moolenaar86b68352004-12-27 21:59:20 +00006116 if (s == NULL) /* "i" ran into "maxlen" */
6117 return 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006118
6119 /* ignore a trailing slash, but not "//" or ":/" */
Bram Moolenaar86b68352004-12-27 21:59:20 +00006120 if (s[i + 1] == NUL
6121 && i > 0
6122 && !after_pathsep((char_u *)s, (char_u *)s + i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006123#ifdef BACKSLASH_IN_FILENAME
Bram Moolenaar86b68352004-12-27 21:59:20 +00006124 && (s[i] == '/' || s[i] == '\\')
Bram Moolenaar071d4272004-06-13 20:20:40 +00006125#else
Bram Moolenaar86b68352004-12-27 21:59:20 +00006126 && s[i] == '/'
Bram Moolenaar071d4272004-06-13 20:20:40 +00006127#endif
Bram Moolenaar86b68352004-12-27 21:59:20 +00006128 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00006129 return 0; /* match with trailing slash */
6130 if (s == q)
6131 return -1; /* no match */
6132 return 1;
6133}
6134#endif
6135
Bram Moolenaar071d4272004-06-13 20:20:40 +00006136/*
6137 * The putenv() implementation below comes from the "screen" program.
6138 * Included with permission from Juergen Weigert.
6139 * See pty.c for the copyright notice.
6140 */
6141
6142/*
6143 * putenv -- put value into environment
6144 *
6145 * Usage: i = putenv (string)
6146 * int i;
6147 * char *string;
6148 *
6149 * where string is of the form <name>=<value>.
6150 * Putenv returns 0 normally, -1 on error (not enough core for malloc).
6151 *
6152 * Putenv may need to add a new name into the environment, or to
6153 * associate a value longer than the current value with a particular
6154 * name. So, to make life simpler, putenv() copies your entire
6155 * environment into the heap (i.e. malloc()) from the stack
6156 * (i.e. where it resides when your process is initiated) the first
6157 * time you call it.
6158 *
6159 * (history removed, not very interesting. See the "screen" sources.)
6160 */
6161
6162#if !defined(HAVE_SETENV) && !defined(HAVE_PUTENV)
6163
6164#define EXTRASIZE 5 /* increment to add to env. size */
6165
6166static int envsize = -1; /* current size of environment */
6167#ifndef MACOS_CLASSIC
6168extern
6169#endif
6170 char **environ; /* the global which is your env. */
6171
6172static int findenv __ARGS((char *name)); /* look for a name in the env. */
6173static int newenv __ARGS((void)); /* copy env. from stack to heap */
6174static int moreenv __ARGS((void)); /* incr. size of env. */
6175
6176 int
6177putenv(string)
6178 const char *string;
6179{
6180 int i;
6181 char *p;
6182
6183 if (envsize < 0)
6184 { /* first time putenv called */
6185 if (newenv() < 0) /* copy env. to heap */
6186 return -1;
6187 }
6188
6189 i = findenv((char *)string); /* look for name in environment */
6190
6191 if (i < 0)
6192 { /* name must be added */
6193 for (i = 0; environ[i]; i++);
6194 if (i >= (envsize - 1))
6195 { /* need new slot */
6196 if (moreenv() < 0)
6197 return -1;
6198 }
6199 p = (char *)alloc((unsigned)(strlen(string) + 1));
6200 if (p == NULL) /* not enough core */
6201 return -1;
6202 environ[i + 1] = 0; /* new end of env. */
6203 }
6204 else
6205 { /* name already in env. */
6206 p = vim_realloc(environ[i], strlen(string) + 1);
6207 if (p == NULL)
6208 return -1;
6209 }
6210 sprintf(p, "%s", string); /* copy into env. */
6211 environ[i] = p;
6212
6213 return 0;
6214}
6215
6216 static int
6217findenv(name)
6218 char *name;
6219{
6220 char *namechar, *envchar;
6221 int i, found;
6222
6223 found = 0;
6224 for (i = 0; environ[i] && !found; i++)
6225 {
6226 envchar = environ[i];
6227 namechar = name;
6228 while (*namechar && *namechar != '=' && (*namechar == *envchar))
6229 {
6230 namechar++;
6231 envchar++;
6232 }
6233 found = ((*namechar == '\0' || *namechar == '=') && *envchar == '=');
6234 }
6235 return found ? i - 1 : -1;
6236}
6237
6238 static int
6239newenv()
6240{
6241 char **env, *elem;
6242 int i, esize;
6243
6244#ifdef MACOS
6245 /* for Mac a new, empty environment is created */
6246 i = 0;
6247#else
6248 for (i = 0; environ[i]; i++)
6249 ;
6250#endif
6251 esize = i + EXTRASIZE + 1;
6252 env = (char **)alloc((unsigned)(esize * sizeof (elem)));
6253 if (env == NULL)
6254 return -1;
6255
6256#ifndef MACOS
6257 for (i = 0; environ[i]; i++)
6258 {
6259 elem = (char *)alloc((unsigned)(strlen(environ[i]) + 1));
6260 if (elem == NULL)
6261 return -1;
6262 env[i] = elem;
6263 strcpy(elem, environ[i]);
6264 }
6265#endif
6266
6267 env[i] = 0;
6268 environ = env;
6269 envsize = esize;
6270 return 0;
6271}
6272
6273 static int
6274moreenv()
6275{
6276 int esize;
6277 char **env;
6278
6279 esize = envsize + EXTRASIZE;
6280 env = (char **)vim_realloc((char *)environ, esize * sizeof (*env));
6281 if (env == 0)
6282 return -1;
6283 environ = env;
6284 envsize = esize;
6285 return 0;
6286}
6287
6288# ifdef USE_VIMPTY_GETENV
6289 char_u *
6290vimpty_getenv(string)
6291 const char_u *string;
6292{
6293 int i;
6294 char_u *p;
6295
6296 if (envsize < 0)
6297 return NULL;
6298
6299 i = findenv((char *)string);
6300
6301 if (i < 0)
6302 return NULL;
6303
6304 p = vim_strchr((char_u *)environ[i], '=');
6305 return (p + 1);
6306}
6307# endif
6308
6309#endif /* !defined(HAVE_SETENV) && !defined(HAVE_PUTENV) */
Bram Moolenaarc4a06d32005-06-07 21:04:49 +00006310
Bram Moolenaarc4956c82006-03-12 21:58:43 +00006311#if defined(FEAT_EVAL) || defined(FEAT_SPELL) || defined(PROTO)
Bram Moolenaarc4a06d32005-06-07 21:04:49 +00006312/*
6313 * Return 0 for not writable, 1 for writable file, 2 for a dir which we have
6314 * rights to write into.
6315 */
6316 int
6317filewritable(fname)
6318 char_u *fname;
6319{
6320 int retval = 0;
6321#if defined(UNIX) || defined(VMS)
6322 int perm = 0;
6323#endif
6324
6325#if defined(UNIX) || defined(VMS)
6326 perm = mch_getperm(fname);
6327#endif
6328#ifndef MACOS_CLASSIC /* TODO: get either mch_writable or mch_access */
6329 if (
6330# ifdef WIN3264
6331 mch_writable(fname) &&
6332# else
6333# if defined(UNIX) || defined(VMS)
6334 (perm & 0222) &&
6335# endif
6336# endif
6337 mch_access((char *)fname, W_OK) == 0
6338 )
6339#endif
6340 {
6341 ++retval;
6342 if (mch_isdir(fname))
6343 ++retval;
6344 }
6345 return retval;
6346}
6347#endif
Bram Moolenaar6bab4d12005-06-16 21:53:56 +00006348
6349/*
6350 * Print an error message with one or two "%s" and one or two string arguments.
6351 * This is not in message.c to avoid a warning for prototypes.
6352 */
6353 int
6354emsg3(s, a1, a2)
6355 char_u *s, *a1, *a2;
6356{
Bram Moolenaareb3593b2006-04-22 22:33:57 +00006357 if (emsg_not_now())
Bram Moolenaar6bab4d12005-06-16 21:53:56 +00006358 return TRUE; /* no error messages at the moment */
Bram Moolenaar6f192452007-11-08 19:49:02 +00006359#ifdef HAVE_STDARG_H
6360 vim_snprintf((char *)IObuff, IOSIZE, (char *)s, a1, a2);
6361#else
Bram Moolenaareb3593b2006-04-22 22:33:57 +00006362 vim_snprintf((char *)IObuff, IOSIZE, (char *)s, (long_u)a1, (long_u)a2);
Bram Moolenaar6f192452007-11-08 19:49:02 +00006363#endif
Bram Moolenaar6bab4d12005-06-16 21:53:56 +00006364 return emsg(IObuff);
6365}
6366
6367/*
6368 * Print an error message with one "%ld" and one long int argument.
6369 * This is not in message.c to avoid a warning for prototypes.
6370 */
6371 int
6372emsgn(s, n)
6373 char_u *s;
6374 long n;
6375{
Bram Moolenaareb3593b2006-04-22 22:33:57 +00006376 if (emsg_not_now())
Bram Moolenaar6bab4d12005-06-16 21:53:56 +00006377 return TRUE; /* no error messages at the moment */
6378 vim_snprintf((char *)IObuff, IOSIZE, (char *)s, n);
6379 return emsg(IObuff);
6380}
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006381
6382#if defined(FEAT_SPELL) || defined(FEAT_PERSISTENT_UNDO) || defined(PROTO)
6383/*
6384 * Read 2 bytes from "fd" and turn them into an int, MSB first.
6385 */
6386 int
6387get2c(fd)
6388 FILE *fd;
6389{
Bram Moolenaar9db58062010-05-29 20:33:07 +02006390 int n;
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006391
6392 n = getc(fd);
6393 n = (n << 8) + getc(fd);
6394 return n;
6395}
6396
6397/*
6398 * Read 3 bytes from "fd" and turn them into an int, MSB first.
6399 */
6400 int
6401get3c(fd)
6402 FILE *fd;
6403{
Bram Moolenaar9db58062010-05-29 20:33:07 +02006404 int n;
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006405
6406 n = getc(fd);
6407 n = (n << 8) + getc(fd);
6408 n = (n << 8) + getc(fd);
6409 return n;
6410}
6411
6412/*
6413 * Read 4 bytes from "fd" and turn them into an int, MSB first.
6414 */
6415 int
6416get4c(fd)
6417 FILE *fd;
6418{
Bram Moolenaar9db58062010-05-29 20:33:07 +02006419 int n;
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006420
6421 n = getc(fd);
6422 n = (n << 8) + getc(fd);
6423 n = (n << 8) + getc(fd);
6424 n = (n << 8) + getc(fd);
6425 return n;
6426}
6427
6428/*
6429 * Read 8 bytes from "fd" and turn them into a time_t, MSB first.
6430 */
6431 time_t
6432get8ctime(fd)
6433 FILE *fd;
6434{
6435 time_t n = 0;
6436 int i;
6437
6438 for (i = 0; i < 8; ++i)
6439 n = (n << 8) + getc(fd);
6440 return n;
6441}
6442
6443/*
6444 * Read a string of length "cnt" from "fd" into allocated memory.
6445 * Returns NULL when out of memory or unable to read that many bytes.
6446 */
6447 char_u *
6448read_string(fd, cnt)
6449 FILE *fd;
6450 int cnt;
6451{
6452 char_u *str;
6453 int i;
6454 int c;
6455
6456 /* allocate memory */
6457 str = alloc((unsigned)cnt + 1);
6458 if (str != NULL)
6459 {
6460 /* Read the string. Quit when running into the EOF. */
6461 for (i = 0; i < cnt; ++i)
6462 {
6463 c = getc(fd);
6464 if (c == EOF)
6465 {
6466 vim_free(str);
6467 return NULL;
6468 }
6469 str[i] = c;
6470 }
6471 str[i] = NUL;
6472 }
6473 return str;
6474}
6475
6476/*
6477 * Write a number to file "fd", MSB first, in "len" bytes.
6478 */
6479 int
6480put_bytes(fd, nr, len)
6481 FILE *fd;
6482 long_u nr;
6483 int len;
6484{
6485 int i;
6486
6487 for (i = len - 1; i >= 0; --i)
6488 if (putc((int)(nr >> (i * 8)), fd) == EOF)
6489 return FAIL;
6490 return OK;
6491}
6492
6493#ifdef _MSC_VER
6494# if (_MSC_VER <= 1200)
6495/* This line is required for VC6 without the service pack. Also see the
6496 * matching #pragma below. */
6497 # pragma optimize("", off)
6498# endif
6499#endif
6500
6501/*
6502 * Write time_t to file "fd" in 8 bytes.
6503 */
6504 void
6505put_time(fd, the_time)
6506 FILE *fd;
6507 time_t the_time;
6508{
6509 int c;
6510 int i;
6511 time_t wtime = the_time;
6512
6513 /* time_t can be up to 8 bytes in size, more than long_u, thus we
6514 * can't use put_bytes() here.
6515 * Another problem is that ">>" may do an arithmetic shift that keeps the
Bram Moolenaar644fdff2010-05-30 13:26:21 +02006516 * sign. This happens for large values of wtime. A cast to long_u may
6517 * truncate if time_t is 8 bytes. So only use a cast when it is 4 bytes,
6518 * it's safe to assume that long_u is 4 bytes or more and when using 8
6519 * bytes the top bit won't be set. */
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006520 for (i = 7; i >= 0; --i)
6521 {
6522 if (i + 1 > (int)sizeof(time_t))
6523 /* ">>" doesn't work well when shifting more bits than avail */
6524 putc(0, fd);
6525 else
6526 {
Bram Moolenaar644fdff2010-05-30 13:26:21 +02006527#if defined(SIZEOF_TIME_T) && SIZEOF_TIME_T > 4
Bram Moolenaarbbd6afe2010-06-02 20:32:23 +02006528 c = (int)(wtime >> (i * 8));
Bram Moolenaar644fdff2010-05-30 13:26:21 +02006529#else
Bram Moolenaarbbd6afe2010-06-02 20:32:23 +02006530 c = (int)((long_u)wtime >> (i * 8));
Bram Moolenaar644fdff2010-05-30 13:26:21 +02006531#endif
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006532 putc(c, fd);
6533 }
6534 }
6535}
6536
6537#ifdef _MSC_VER
6538# if (_MSC_VER <= 1200)
6539 # pragma optimize("", on)
6540# endif
6541#endif
6542
6543#endif
Bram Moolenaar10b7b392012-01-10 16:28:45 +01006544
6545#if (defined(FEAT_MBYTE) && defined(FEAT_QUICKFIX)) \
6546 || defined(FEAT_SPELL) || defined(PROTO)
6547/*
6548 * Return TRUE if string "s" contains a non-ASCII character (128 or higher).
6549 * When "s" is NULL FALSE is returned.
6550 */
6551 int
6552has_non_ascii(s)
6553 char_u *s;
6554{
6555 char_u *p;
6556
6557 if (s != NULL)
6558 for (p = s; *p != NUL; ++p)
6559 if (*p >= 128)
6560 return TRUE;
6561 return FALSE;
6562}
6563#endif