blob: dfb1fc487fafe41226c8c2ac01d69d08b708d69f [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;
1015 EMSGN(_("E342: Out of memory! (allocating %lu bytes)"), size);
1016 did_outofmem_msg = TRUE;
1017 }
1018}
1019
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001020#if defined(EXITFREE) || defined(PROTO)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001021
1022# if defined(FEAT_SEARCHPATH)
1023static void free_findfile __ARGS((void));
1024# endif
1025
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001026/*
1027 * Free everything that we allocated.
1028 * Can be used to detect memory leaks, e.g., with ccmalloc.
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001029 * NOTE: This is tricky! Things are freed that functions depend on. Don't be
1030 * surprised if Vim crashes...
1031 * Some things can't be freed, esp. things local to a library function.
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001032 */
1033 void
1034free_all_mem()
1035{
1036 buf_T *buf, *nextbuf;
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001037 static int entered = FALSE;
1038
1039 /* When we cause a crash here it is caught and Vim tries to exit cleanly.
1040 * Don't try freeing everything again. */
1041 if (entered)
1042 return;
1043 entered = TRUE;
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001044
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001045# ifdef FEAT_AUTOCMD
Bram Moolenaar78ab3312007-09-29 12:16:41 +00001046 block_autocmds(); /* don't want to trigger autocommands here */
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001047# endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001048
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001049# ifdef FEAT_WINDOWS
Bram Moolenaar5bedfc62010-07-20 22:30:01 +02001050 /* Close all tabs and windows. Reset 'equalalways' to avoid redraws. */
1051 p_ea = FALSE;
Bram Moolenaar7d47b6e2006-03-15 22:59:18 +00001052 if (first_tabpage->tp_next != NULL)
1053 do_cmdline_cmd((char_u *)"tabonly!");
1054 if (firstwin != lastwin)
1055 do_cmdline_cmd((char_u *)"only!");
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001056# endif
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00001057
Bram Moolenaarc4956c82006-03-12 21:58:43 +00001058# if defined(FEAT_SPELL)
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001059 /* Free all spell info. */
1060 spell_free_all();
1061# endif
1062
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001063# if defined(FEAT_USR_CMDS)
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001064 /* Clear user commands (before deleting buffers). */
1065 ex_comclear(NULL);
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001066# endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001067
1068# ifdef FEAT_MENU
1069 /* Clear menus. */
1070 do_cmdline_cmd((char_u *)"aunmenu *");
Bram Moolenaar21160b92009-11-11 15:56:10 +00001071# ifdef FEAT_MULTI_LANG
1072 do_cmdline_cmd((char_u *)"menutranslate clear");
1073# endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001074# endif
1075
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001076 /* Clear mappings, abbreviations, breakpoints. */
Bram Moolenaar21160b92009-11-11 15:56:10 +00001077 do_cmdline_cmd((char_u *)"lmapclear");
1078 do_cmdline_cmd((char_u *)"xmapclear");
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001079 do_cmdline_cmd((char_u *)"mapclear");
1080 do_cmdline_cmd((char_u *)"mapclear!");
1081 do_cmdline_cmd((char_u *)"abclear");
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001082# if defined(FEAT_EVAL)
1083 do_cmdline_cmd((char_u *)"breakdel *");
1084# endif
Bram Moolenaar1e498f52005-06-26 22:29:44 +00001085# if defined(FEAT_PROFILE)
1086 do_cmdline_cmd((char_u *)"profdel *");
1087# endif
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00001088# if defined(FEAT_KEYMAP)
1089 do_cmdline_cmd((char_u *)"set keymap=");
1090#endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001091
1092# ifdef FEAT_TITLE
1093 free_titles();
1094# endif
1095# if defined(FEAT_SEARCHPATH)
1096 free_findfile();
1097# endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001098
1099 /* Obviously named calls. */
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001100# if defined(FEAT_AUTOCMD)
1101 free_all_autocmds();
1102# endif
1103 clear_termcodes();
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001104 free_all_options();
1105 free_all_marks();
1106 alist_clear(&global_alist);
1107 free_homedir();
1108 free_search_patterns();
1109 free_old_sub();
1110 free_last_insert();
1111 free_prev_shellcmd();
1112 free_regexp_stuff();
1113 free_tag_stuff();
1114 free_cd_dir();
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00001115# ifdef FEAT_SIGNS
1116 free_signs();
1117# endif
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001118# ifdef FEAT_EVAL
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001119 set_expr_line(NULL);
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001120# endif
1121# ifdef FEAT_DIFF
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00001122 diff_clear(curtab);
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001123# endif
Bram Moolenaara40ceaf2006-01-13 22:35:40 +00001124 clear_sb_text(); /* free any scrollback text */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001125
1126 /* Free some global vars. */
1127 vim_free(username);
Bram Moolenaaraf92ee82007-10-07 13:45:08 +00001128# ifdef FEAT_CLIPBOARD
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001129 vim_free(clip_exclude_prog);
Bram Moolenaaraf92ee82007-10-07 13:45:08 +00001130# endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001131 vim_free(last_cmdline);
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001132# ifdef FEAT_CMDHIST
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001133 vim_free(new_last_cmdline);
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001134# endif
Bram Moolenaar238a5642006-02-21 22:12:05 +00001135 set_keep_msg(NULL, 0);
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001136 vim_free(ff_expand_buffer);
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001137
1138 /* Clear cmdline history. */
1139 p_hi = 0;
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001140# ifdef FEAT_CMDHIST
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001141 init_history();
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001142# endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001143
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001144#ifdef FEAT_QUICKFIX
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001145 {
Bram Moolenaarbd1e5d22009-04-29 09:02:44 +00001146 win_T *win;
1147 tabpage_T *tab;
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001148
1149 qf_free_all(NULL);
1150 /* Free all location lists */
Bram Moolenaarbd1e5d22009-04-29 09:02:44 +00001151 FOR_ALL_TAB_WINDOWS(tab, win)
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001152 qf_free_all(win);
1153 }
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001154#endif
1155
1156 /* Close all script inputs. */
1157 close_all_scripts();
1158
1159#if defined(FEAT_WINDOWS)
1160 /* Destroy all windows. Must come before freeing buffers. */
1161 win_free_all();
1162#endif
1163
Bram Moolenaar2a329742008-04-01 12:53:43 +00001164 /* Free all buffers. Reset 'autochdir' to avoid accessing things that
1165 * were freed already. */
1166#ifdef FEAT_AUTOCHDIR
1167 p_acd = FALSE;
1168#endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001169 for (buf = firstbuf; buf != NULL; )
1170 {
1171 nextbuf = buf->b_next;
1172 close_buffer(NULL, buf, DOBUF_WIPE);
1173 if (buf_valid(buf))
1174 buf = nextbuf; /* didn't work, try next one */
1175 else
1176 buf = firstbuf;
1177 }
1178
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001179#ifdef FEAT_ARABIC
1180 free_cmdline_buf();
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001181#endif
1182
1183 /* Clear registers. */
1184 clear_registers();
1185 ResetRedobuff();
1186 ResetRedobuff();
1187
Bram Moolenaar85c79d32007-02-20 01:59:20 +00001188#if defined(FEAT_CLIENTSERVER) && defined(FEAT_X11)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001189 vim_free(serverDelayedStartName);
1190#endif
1191
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001192 /* highlight info */
1193 free_highlight();
1194
Bram Moolenaar1e498f52005-06-26 22:29:44 +00001195 reset_last_sourcing();
1196
Bram Moolenaar7d47b6e2006-03-15 22:59:18 +00001197#ifdef FEAT_WINDOWS
Bram Moolenaar06a89a52006-04-29 22:01:03 +00001198 free_tabpage(first_tabpage);
1199 first_tabpage = NULL;
Bram Moolenaar7d47b6e2006-03-15 22:59:18 +00001200#endif
1201
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001202# ifdef UNIX
1203 /* Machine-specific free. */
1204 mch_free_mem();
1205# endif
1206
1207 /* message history */
1208 for (;;)
1209 if (delete_first_msg() == FAIL)
1210 break;
1211
1212# ifdef FEAT_EVAL
1213 eval_clear();
1214# endif
1215
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001216 free_termoptions();
1217
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001218 /* screenlines (can't display anything now!) */
1219 free_screenlines();
1220
1221#if defined(USE_XSMP)
1222 xsmp_close();
1223#endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001224#ifdef FEAT_GUI_GTK
1225 gui_mch_free_all();
1226#endif
1227 clear_hl_tables();
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001228
1229 vim_free(IObuff);
1230 vim_free(NameBuff);
1231}
1232#endif
1233
Bram Moolenaar071d4272004-06-13 20:20:40 +00001234/*
Bram Moolenaare980d8a2010-12-08 13:11:21 +01001235 * Copy "string" into newly allocated memory.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001236 */
1237 char_u *
1238vim_strsave(string)
1239 char_u *string;
1240{
1241 char_u *p;
1242 unsigned len;
1243
1244 len = (unsigned)STRLEN(string) + 1;
1245 p = alloc(len);
1246 if (p != NULL)
1247 mch_memmove(p, string, (size_t)len);
1248 return p;
1249}
1250
Bram Moolenaare980d8a2010-12-08 13:11:21 +01001251/*
1252 * Copy up to "len" bytes of "string" into newly allocated memory and
1253 * terminate with a NUL.
1254 * The allocated memory always has size "len + 1", also when "string" is
1255 * shorter.
1256 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001257 char_u *
1258vim_strnsave(string, len)
1259 char_u *string;
1260 int len;
1261{
1262 char_u *p;
1263
1264 p = alloc((unsigned)(len + 1));
1265 if (p != NULL)
1266 {
1267 STRNCPY(p, string, len);
1268 p[len] = NUL;
1269 }
1270 return p;
1271}
1272
Bram Moolenaar071d4272004-06-13 20:20:40 +00001273/*
1274 * Same as vim_strsave(), but any characters found in esc_chars are preceded
1275 * by a backslash.
1276 */
1277 char_u *
1278vim_strsave_escaped(string, esc_chars)
1279 char_u *string;
1280 char_u *esc_chars;
1281{
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001282 return vim_strsave_escaped_ext(string, esc_chars, '\\', FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001283}
1284
1285/*
1286 * Same as vim_strsave_escaped(), but when "bsl" is TRUE also escape
1287 * characters where rem_backslash() would remove the backslash.
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001288 * Escape the characters with "cc".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001289 */
1290 char_u *
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001291vim_strsave_escaped_ext(string, esc_chars, cc, bsl)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001292 char_u *string;
1293 char_u *esc_chars;
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001294 int cc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001295 int bsl;
1296{
1297 char_u *p;
1298 char_u *p2;
1299 char_u *escaped_string;
1300 unsigned length;
1301#ifdef FEAT_MBYTE
1302 int l;
1303#endif
1304
1305 /*
1306 * First count the number of backslashes required.
1307 * Then allocate the memory and insert them.
1308 */
1309 length = 1; /* count the trailing NUL */
1310 for (p = string; *p; p++)
1311 {
1312#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001313 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001314 {
1315 length += l; /* count a multibyte char */
1316 p += l - 1;
1317 continue;
1318 }
1319#endif
1320 if (vim_strchr(esc_chars, *p) != NULL || (bsl && rem_backslash(p)))
1321 ++length; /* count a backslash */
1322 ++length; /* count an ordinary char */
1323 }
1324 escaped_string = alloc(length);
1325 if (escaped_string != NULL)
1326 {
1327 p2 = escaped_string;
1328 for (p = string; *p; p++)
1329 {
1330#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001331 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001332 {
1333 mch_memmove(p2, p, (size_t)l);
1334 p2 += l;
1335 p += l - 1; /* skip multibyte char */
1336 continue;
1337 }
1338#endif
1339 if (vim_strchr(esc_chars, *p) != NULL || (bsl && rem_backslash(p)))
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001340 *p2++ = cc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001341 *p2++ = *p;
1342 }
1343 *p2 = NUL;
1344 }
1345 return escaped_string;
1346}
1347
Bram Moolenaar7693ec62008-07-24 18:29:37 +00001348/*
1349 * Return TRUE when 'shell' has "csh" in the tail.
1350 */
1351 int
1352csh_like_shell()
1353{
1354 return (strstr((char *)gettail(p_sh), "csh") != NULL);
1355}
Bram Moolenaar7693ec62008-07-24 18:29:37 +00001356
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001357/*
1358 * Escape "string" for use as a shell argument with system().
Bram Moolenaar21160b92009-11-11 15:56:10 +00001359 * This uses single quotes, except when we know we need to use double quotes
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001360 * (MS-DOS and MS-Windows without 'shellslash' set).
Bram Moolenaarffd66c42008-07-16 20:43:37 +00001361 * Escape a newline, depending on the 'shell' option.
1362 * When "do_special" is TRUE also replace "!", "%", "#" and things starting
1363 * with "<" like "<cfile>".
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001364 * Returns the result in allocated memory, NULL if we have run out.
1365 */
1366 char_u *
Bram Moolenaar05bb9532008-07-04 09:44:11 +00001367vim_strsave_shellescape(string, do_special)
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001368 char_u *string;
Bram Moolenaar05bb9532008-07-04 09:44:11 +00001369 int do_special;
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001370{
1371 unsigned length;
1372 char_u *p;
1373 char_u *d;
1374 char_u *escaped_string;
Bram Moolenaar05bb9532008-07-04 09:44:11 +00001375 int l;
Bram Moolenaarffd66c42008-07-16 20:43:37 +00001376 int csh_like;
1377
1378 /* Only csh and similar shells expand '!' within single quotes. For sh and
1379 * the like we must not put a backslash before it, it will be taken
1380 * literally. If do_special is set the '!' will be escaped twice.
1381 * Csh also needs to have "\n" escaped twice when do_special is set. */
Bram Moolenaar7693ec62008-07-24 18:29:37 +00001382 csh_like = csh_like_shell();
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001383
1384 /* First count the number of extra bytes required. */
Bram Moolenaar77f66d62007-02-20 02:16:18 +00001385 length = (unsigned)STRLEN(string) + 3; /* two quotes and a trailing NUL */
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001386 for (p = string; *p != NUL; mb_ptr_adv(p))
1387 {
1388# if defined(WIN32) || defined(WIN16) || defined(DOS)
1389 if (!p_ssl)
1390 {
1391 if (*p == '"')
1392 ++length; /* " -> "" */
1393 }
1394 else
1395# endif
1396 if (*p == '\'')
1397 length += 3; /* ' => '\'' */
Bram Moolenaarffd66c42008-07-16 20:43:37 +00001398 if (*p == '\n' || (*p == '!' && (csh_like || do_special)))
1399 {
1400 ++length; /* insert backslash */
1401 if (csh_like && do_special)
1402 ++length; /* insert backslash */
1403 }
Bram Moolenaar05bb9532008-07-04 09:44:11 +00001404 if (do_special && find_cmdline_var(p, &l) >= 0)
1405 {
1406 ++length; /* insert backslash */
1407 p += l - 1;
1408 }
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001409 }
1410
1411 /* Allocate memory for the result and fill it. */
1412 escaped_string = alloc(length);
1413 if (escaped_string != NULL)
1414 {
1415 d = escaped_string;
1416
1417 /* add opening quote */
1418# if defined(WIN32) || defined(WIN16) || defined(DOS)
1419 if (!p_ssl)
1420 *d++ = '"';
1421 else
1422# endif
1423 *d++ = '\'';
1424
1425 for (p = string; *p != NUL; )
1426 {
1427# if defined(WIN32) || defined(WIN16) || defined(DOS)
1428 if (!p_ssl)
1429 {
1430 if (*p == '"')
1431 {
1432 *d++ = '"';
1433 *d++ = '"';
1434 ++p;
1435 continue;
1436 }
1437 }
1438 else
1439# endif
1440 if (*p == '\'')
1441 {
Bram Moolenaar05bb9532008-07-04 09:44:11 +00001442 *d++ = '\'';
1443 *d++ = '\\';
1444 *d++ = '\'';
1445 *d++ = '\'';
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001446 ++p;
1447 continue;
1448 }
Bram Moolenaarffd66c42008-07-16 20:43:37 +00001449 if (*p == '\n' || (*p == '!' && (csh_like || do_special)))
1450 {
1451 *d++ = '\\';
1452 if (csh_like && do_special)
1453 *d++ = '\\';
1454 *d++ = *p++;
1455 continue;
1456 }
Bram Moolenaar05bb9532008-07-04 09:44:11 +00001457 if (do_special && find_cmdline_var(p, &l) >= 0)
1458 {
1459 *d++ = '\\'; /* insert backslash */
1460 while (--l >= 0) /* copy the var */
1461 *d++ = *p++;
Bram Moolenaar099d01d2009-11-25 16:14:45 +00001462 continue;
Bram Moolenaar05bb9532008-07-04 09:44:11 +00001463 }
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001464
1465 MB_COPY_CHAR(p, d);
1466 }
1467
1468 /* add terminating quote and finish with a NUL */
1469# if defined(WIN32) || defined(WIN16) || defined(DOS)
1470 if (!p_ssl)
1471 *d++ = '"';
1472 else
1473# endif
1474 *d++ = '\'';
1475 *d = NUL;
1476 }
1477
1478 return escaped_string;
1479}
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001480
Bram Moolenaar071d4272004-06-13 20:20:40 +00001481/*
1482 * Like vim_strsave(), but make all characters uppercase.
1483 * This uses ASCII lower-to-upper case translation, language independent.
1484 */
1485 char_u *
1486vim_strsave_up(string)
1487 char_u *string;
1488{
1489 char_u *p1;
1490
1491 p1 = vim_strsave(string);
1492 vim_strup(p1);
1493 return p1;
1494}
1495
1496/*
1497 * Like vim_strnsave(), but make all characters uppercase.
1498 * This uses ASCII lower-to-upper case translation, language independent.
1499 */
1500 char_u *
1501vim_strnsave_up(string, len)
1502 char_u *string;
1503 int len;
1504{
1505 char_u *p1;
1506
1507 p1 = vim_strnsave(string, len);
1508 vim_strup(p1);
1509 return p1;
1510}
1511
1512/*
1513 * ASCII lower-to-upper case translation, language independent.
1514 */
1515 void
1516vim_strup(p)
1517 char_u *p;
1518{
1519 char_u *p2;
1520 int c;
1521
1522 if (p != NULL)
1523 {
1524 p2 = p;
1525 while ((c = *p2) != NUL)
1526#ifdef EBCDIC
1527 *p2++ = isalpha(c) ? toupper(c) : c;
1528#else
1529 *p2++ = (c < 'a' || c > 'z') ? c : (c - 0x20);
1530#endif
1531 }
1532}
1533
Bram Moolenaarc4956c82006-03-12 21:58:43 +00001534#if defined(FEAT_EVAL) || defined(FEAT_SPELL) || defined(PROTO)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001535/*
1536 * Make string "s" all upper-case and return it in allocated memory.
1537 * Handles multi-byte characters as well as possible.
1538 * Returns NULL when out of memory.
1539 */
1540 char_u *
1541strup_save(orig)
1542 char_u *orig;
1543{
1544 char_u *p;
1545 char_u *res;
1546
1547 res = p = vim_strsave(orig);
1548
1549 if (res != NULL)
1550 while (*p != NUL)
1551 {
1552# ifdef FEAT_MBYTE
1553 int l;
1554
1555 if (enc_utf8)
1556 {
1557 int c, uc;
1558 int nl;
1559 char_u *s;
1560
1561 c = utf_ptr2char(p);
1562 uc = utf_toupper(c);
1563
1564 /* Reallocate string when byte count changes. This is rare,
1565 * thus it's OK to do another malloc()/free(). */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001566 l = utf_ptr2len(p);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001567 nl = utf_char2len(uc);
1568 if (nl != l)
1569 {
1570 s = alloc((unsigned)STRLEN(res) + 1 + nl - l);
1571 if (s == NULL)
1572 break;
1573 mch_memmove(s, res, p - res);
1574 STRCPY(s + (p - res) + nl, p + l);
1575 p = s + (p - res);
1576 vim_free(res);
1577 res = s;
1578 }
1579
1580 utf_char2bytes(uc, p);
1581 p += nl;
1582 }
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001583 else if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001584 p += l; /* skip multi-byte character */
1585 else
1586# endif
1587 {
1588 *p = TOUPPER_LOC(*p); /* note that toupper() can be a macro */
1589 p++;
1590 }
1591 }
1592
1593 return res;
1594}
1595#endif
1596
Bram Moolenaar071d4272004-06-13 20:20:40 +00001597/*
1598 * copy a space a number of times
1599 */
1600 void
1601copy_spaces(ptr, count)
1602 char_u *ptr;
1603 size_t count;
1604{
1605 size_t i = count;
1606 char_u *p = ptr;
1607
1608 while (i--)
1609 *p++ = ' ';
1610}
1611
1612#if defined(FEAT_VISUALEXTRA) || defined(PROTO)
1613/*
1614 * Copy a character a number of times.
Bram Moolenaar21160b92009-11-11 15:56:10 +00001615 * Does not work for multi-byte characters!
Bram Moolenaar071d4272004-06-13 20:20:40 +00001616 */
1617 void
1618copy_chars(ptr, count, c)
1619 char_u *ptr;
1620 size_t count;
1621 int c;
1622{
1623 size_t i = count;
1624 char_u *p = ptr;
1625
1626 while (i--)
1627 *p++ = c;
1628}
1629#endif
1630
1631/*
1632 * delete spaces at the end of a string
1633 */
1634 void
1635del_trailing_spaces(ptr)
1636 char_u *ptr;
1637{
1638 char_u *q;
1639
1640 q = ptr + STRLEN(ptr);
1641 while (--q > ptr && vim_iswhite(q[0]) && q[-1] != '\\' && q[-1] != Ctrl_V)
1642 *q = NUL;
1643}
1644
1645/*
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001646 * Like strncpy(), but always terminate the result with one NUL.
Bram Moolenaard042c562005-06-30 22:04:15 +00001647 * "to" must be "len + 1" long!
Bram Moolenaar071d4272004-06-13 20:20:40 +00001648 */
1649 void
1650vim_strncpy(to, from, len)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001651 char_u *to;
1652 char_u *from;
Bram Moolenaarbbebc852005-07-18 21:47:53 +00001653 size_t len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001654{
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001655 STRNCPY(to, from, len);
1656 to[len] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001657}
1658
1659/*
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02001660 * Like strcat(), but make sure the result fits in "tosize" bytes and is
1661 * always NUL terminated.
1662 */
1663 void
1664vim_strcat(to, from, tosize)
1665 char_u *to;
1666 char_u *from;
1667 size_t tosize;
1668{
1669 size_t tolen = STRLEN(to);
1670 size_t fromlen = STRLEN(from);
1671
1672 if (tolen + fromlen + 1 > tosize)
1673 {
1674 mch_memmove(to + tolen, from, tosize - tolen - 1);
1675 to[tosize - 1] = NUL;
1676 }
1677 else
1678 STRCPY(to + tolen, from);
1679}
1680
1681/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001682 * Isolate one part of a string option where parts are separated with
1683 * "sep_chars".
Bram Moolenaar83bab712005-08-01 21:58:57 +00001684 * The part is copied into "buf[maxlen]".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001685 * "*option" is advanced to the next part.
1686 * The length is returned.
1687 */
1688 int
1689copy_option_part(option, buf, maxlen, sep_chars)
1690 char_u **option;
1691 char_u *buf;
1692 int maxlen;
1693 char *sep_chars;
1694{
1695 int len = 0;
1696 char_u *p = *option;
1697
1698 /* skip '.' at start of option part, for 'suffixes' */
1699 if (*p == '.')
1700 buf[len++] = *p++;
1701 while (*p != NUL && vim_strchr((char_u *)sep_chars, *p) == NULL)
1702 {
1703 /*
1704 * Skip backslash before a separator character and space.
1705 */
1706 if (p[0] == '\\' && vim_strchr((char_u *)sep_chars, p[1]) != NULL)
1707 ++p;
1708 if (len < maxlen - 1)
1709 buf[len++] = *p;
1710 ++p;
1711 }
1712 buf[len] = NUL;
1713
1714 if (*p != NUL && *p != ',') /* skip non-standard separator */
1715 ++p;
1716 p = skip_to_option_part(p); /* p points to next file name */
1717
1718 *option = p;
1719 return len;
1720}
1721
1722/*
Bram Moolenaar4770d092006-01-12 23:22:24 +00001723 * Replacement for free() that ignores NULL pointers.
1724 * Also skip free() when exiting for sure, this helps when we caught a deadly
1725 * signal that was caused by a crash in free().
Bram Moolenaar071d4272004-06-13 20:20:40 +00001726 */
1727 void
1728vim_free(x)
1729 void *x;
1730{
Bram Moolenaar4770d092006-01-12 23:22:24 +00001731 if (x != NULL && !really_exiting)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001732 {
1733#ifdef MEM_PROFILE
1734 mem_pre_free(&x);
1735#endif
1736 free(x);
1737 }
1738}
1739
1740#ifndef HAVE_MEMSET
1741 void *
1742vim_memset(ptr, c, size)
1743 void *ptr;
1744 int c;
1745 size_t size;
1746{
1747 char *p = ptr;
1748
1749 while (size-- > 0)
1750 *p++ = c;
1751 return ptr;
1752}
1753#endif
1754
1755#ifdef VIM_MEMCMP
1756/*
1757 * Return zero when "b1" and "b2" are the same for "len" bytes.
1758 * Return non-zero otherwise.
1759 */
1760 int
1761vim_memcmp(b1, b2, len)
1762 void *b1;
1763 void *b2;
1764 size_t len;
1765{
1766 char_u *p1 = (char_u *)b1, *p2 = (char_u *)b2;
1767
1768 for ( ; len > 0; --len)
1769 {
1770 if (*p1 != *p2)
1771 return 1;
1772 ++p1;
1773 ++p2;
1774 }
1775 return 0;
1776}
1777#endif
1778
1779#ifdef VIM_MEMMOVE
1780/*
1781 * Version of memmove() that handles overlapping source and destination.
1782 * For systems that don't have a function that is guaranteed to do that (SYSV).
1783 */
1784 void
1785mch_memmove(dst_arg, src_arg, len)
1786 void *src_arg, *dst_arg;
1787 size_t len;
1788{
1789 /*
1790 * A void doesn't have a size, we use char pointers.
1791 */
1792 char *dst = dst_arg, *src = src_arg;
1793
1794 /* overlap, copy backwards */
1795 if (dst > src && dst < src + len)
1796 {
1797 src += len;
1798 dst += len;
1799 while (len-- > 0)
1800 *--dst = *--src;
1801 }
1802 else /* copy forwards */
1803 while (len-- > 0)
1804 *dst++ = *src++;
1805}
1806#endif
1807
1808#if (!defined(HAVE_STRCASECMP) && !defined(HAVE_STRICMP)) || defined(PROTO)
1809/*
1810 * Compare two strings, ignoring case, using current locale.
1811 * Doesn't work for multi-byte characters.
1812 * return 0 for match, < 0 for smaller, > 0 for bigger
1813 */
1814 int
1815vim_stricmp(s1, s2)
1816 char *s1;
1817 char *s2;
1818{
1819 int i;
1820
1821 for (;;)
1822 {
1823 i = (int)TOLOWER_LOC(*s1) - (int)TOLOWER_LOC(*s2);
1824 if (i != 0)
1825 return i; /* this character different */
1826 if (*s1 == NUL)
1827 break; /* strings match until NUL */
1828 ++s1;
1829 ++s2;
1830 }
1831 return 0; /* strings match */
1832}
1833#endif
1834
1835#if (!defined(HAVE_STRNCASECMP) && !defined(HAVE_STRNICMP)) || defined(PROTO)
1836/*
1837 * Compare two strings, for length "len", ignoring case, using current locale.
1838 * Doesn't work for multi-byte characters.
1839 * return 0 for match, < 0 for smaller, > 0 for bigger
1840 */
1841 int
1842vim_strnicmp(s1, s2, len)
1843 char *s1;
1844 char *s2;
1845 size_t len;
1846{
1847 int i;
1848
1849 while (len > 0)
1850 {
1851 i = (int)TOLOWER_LOC(*s1) - (int)TOLOWER_LOC(*s2);
1852 if (i != 0)
1853 return i; /* this character different */
1854 if (*s1 == NUL)
1855 break; /* strings match until NUL */
1856 ++s1;
1857 ++s2;
1858 --len;
1859 }
1860 return 0; /* strings match */
1861}
1862#endif
1863
Bram Moolenaar071d4272004-06-13 20:20:40 +00001864/*
1865 * Version of strchr() and strrchr() that handle unsigned char strings
Bram Moolenaar05159a02005-02-26 23:04:13 +00001866 * with characters from 128 to 255 correctly. It also doesn't return a
1867 * pointer to the NUL at the end of the string.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001868 */
1869 char_u *
1870vim_strchr(string, c)
1871 char_u *string;
1872 int c;
1873{
1874 char_u *p;
1875 int b;
1876
1877 p = string;
1878#ifdef FEAT_MBYTE
1879 if (enc_utf8 && c >= 0x80)
1880 {
1881 while (*p != NUL)
1882 {
1883 if (utf_ptr2char(p) == c)
1884 return p;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001885 p += (*mb_ptr2len)(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001886 }
1887 return NULL;
1888 }
1889 if (enc_dbcs != 0 && c > 255)
1890 {
1891 int n2 = c & 0xff;
1892
1893 c = ((unsigned)c >> 8) & 0xff;
1894 while ((b = *p) != NUL)
1895 {
1896 if (b == c && p[1] == n2)
1897 return p;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001898 p += (*mb_ptr2len)(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001899 }
1900 return NULL;
1901 }
1902 if (has_mbyte)
1903 {
1904 while ((b = *p) != NUL)
1905 {
1906 if (b == c)
1907 return p;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001908 p += (*mb_ptr2len)(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001909 }
1910 return NULL;
1911 }
1912#endif
1913 while ((b = *p) != NUL)
1914 {
1915 if (b == c)
1916 return p;
1917 ++p;
1918 }
1919 return NULL;
1920}
1921
1922/*
Bram Moolenaar05159a02005-02-26 23:04:13 +00001923 * Version of strchr() that only works for bytes and handles unsigned char
1924 * strings with characters above 128 correctly. It also doesn't return a
1925 * pointer to the NUL at the end of the string.
1926 */
1927 char_u *
1928vim_strbyte(string, c)
1929 char_u *string;
1930 int c;
1931{
1932 char_u *p = string;
1933
1934 while (*p != NUL)
1935 {
1936 if (*p == c)
1937 return p;
1938 ++p;
1939 }
1940 return NULL;
1941}
1942
1943/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001944 * Search for last occurrence of "c" in "string".
Bram Moolenaarac6e65f2005-08-29 22:25:38 +00001945 * Return NULL if not found.
Bram Moolenaar05159a02005-02-26 23:04:13 +00001946 * Does not handle multi-byte char for "c"!
Bram Moolenaar071d4272004-06-13 20:20:40 +00001947 */
1948 char_u *
1949vim_strrchr(string, c)
1950 char_u *string;
1951 int c;
1952{
1953 char_u *retval = NULL;
Bram Moolenaar05159a02005-02-26 23:04:13 +00001954 char_u *p = string;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001955
Bram Moolenaar05159a02005-02-26 23:04:13 +00001956 while (*p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001957 {
Bram Moolenaar05159a02005-02-26 23:04:13 +00001958 if (*p == c)
1959 retval = p;
1960 mb_ptr_adv(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001961 }
1962 return retval;
1963}
1964
1965/*
1966 * Vim's version of strpbrk(), in case it's missing.
1967 * Don't generate a prototype for this, causes problems when it's not used.
1968 */
1969#ifndef PROTO
1970# ifndef HAVE_STRPBRK
1971# ifdef vim_strpbrk
1972# undef vim_strpbrk
1973# endif
1974 char_u *
1975vim_strpbrk(s, charset)
1976 char_u *s;
1977 char_u *charset;
1978{
1979 while (*s)
1980 {
1981 if (vim_strchr(charset, *s) != NULL)
1982 return s;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001983 mb_ptr_adv(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001984 }
1985 return NULL;
1986}
1987# endif
1988#endif
1989
1990/*
1991 * Vim has its own isspace() function, because on some machines isspace()
1992 * can't handle characters above 128.
1993 */
1994 int
1995vim_isspace(x)
1996 int x;
1997{
1998 return ((x >= 9 && x <= 13) || x == ' ');
1999}
2000
2001/************************************************************************
Bram Moolenaar383f9bc2005-01-19 22:18:32 +00002002 * Functions for handling growing arrays.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002003 */
2004
2005/*
2006 * Clear an allocated growing array.
2007 */
2008 void
2009ga_clear(gap)
2010 garray_T *gap;
2011{
2012 vim_free(gap->ga_data);
2013 ga_init(gap);
2014}
2015
2016/*
2017 * Clear a growing array that contains a list of strings.
2018 */
2019 void
2020ga_clear_strings(gap)
2021 garray_T *gap;
2022{
2023 int i;
2024
2025 for (i = 0; i < gap->ga_len; ++i)
2026 vim_free(((char_u **)(gap->ga_data))[i]);
2027 ga_clear(gap);
2028}
2029
2030/*
2031 * Initialize a growing array. Don't forget to set ga_itemsize and
2032 * ga_growsize! Or use ga_init2().
2033 */
2034 void
2035ga_init(gap)
2036 garray_T *gap;
2037{
2038 gap->ga_data = NULL;
Bram Moolenaar86b68352004-12-27 21:59:20 +00002039 gap->ga_maxlen = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002040 gap->ga_len = 0;
2041}
2042
2043 void
2044ga_init2(gap, itemsize, growsize)
2045 garray_T *gap;
2046 int itemsize;
2047 int growsize;
2048{
2049 ga_init(gap);
2050 gap->ga_itemsize = itemsize;
2051 gap->ga_growsize = growsize;
2052}
2053
2054/*
2055 * Make room in growing array "gap" for at least "n" items.
2056 * Return FAIL for failure, OK otherwise.
2057 */
2058 int
2059ga_grow(gap, n)
2060 garray_T *gap;
2061 int n;
2062{
2063 size_t len;
2064 char_u *pp;
2065
Bram Moolenaar86b68352004-12-27 21:59:20 +00002066 if (gap->ga_maxlen - gap->ga_len < n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002067 {
2068 if (n < gap->ga_growsize)
2069 n = gap->ga_growsize;
2070 len = gap->ga_itemsize * (gap->ga_len + n);
2071 pp = alloc_clear((unsigned)len);
2072 if (pp == NULL)
2073 return FAIL;
Bram Moolenaar86b68352004-12-27 21:59:20 +00002074 gap->ga_maxlen = gap->ga_len + n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002075 if (gap->ga_data != NULL)
2076 {
2077 mch_memmove(pp, gap->ga_data,
2078 (size_t)(gap->ga_itemsize * gap->ga_len));
2079 vim_free(gap->ga_data);
2080 }
2081 gap->ga_data = pp;
2082 }
2083 return OK;
2084}
2085
2086/*
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02002087 * For a growing array that contains a list of strings: concatenate all the
2088 * strings with a separating comma.
2089 * Returns NULL when out of memory.
2090 */
2091 char_u *
2092ga_concat_strings(gap)
2093 garray_T *gap;
2094{
2095 int i;
2096 int len = 0;
2097 char_u *s;
2098
2099 for (i = 0; i < gap->ga_len; ++i)
2100 len += (int)STRLEN(((char_u **)(gap->ga_data))[i]) + 1;
2101
2102 s = alloc(len + 1);
2103 if (s != NULL)
2104 {
2105 *s = NUL;
2106 for (i = 0; i < gap->ga_len; ++i)
2107 {
2108 if (*s != NUL)
2109 STRCAT(s, ",");
2110 STRCAT(s, ((char_u **)(gap->ga_data))[i]);
2111 }
2112 }
2113 return s;
2114}
2115
2116/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002117 * Concatenate a string to a growarray which contains characters.
2118 * Note: Does NOT copy the NUL at the end!
2119 */
2120 void
2121ga_concat(gap, s)
2122 garray_T *gap;
2123 char_u *s;
2124{
2125 int len = (int)STRLEN(s);
2126
2127 if (ga_grow(gap, len) == OK)
2128 {
2129 mch_memmove((char *)gap->ga_data + gap->ga_len, s, (size_t)len);
2130 gap->ga_len += len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002131 }
2132}
2133
2134/*
2135 * Append one byte to a growarray which contains bytes.
2136 */
2137 void
2138ga_append(gap, c)
2139 garray_T *gap;
2140 int c;
2141{
2142 if (ga_grow(gap, 1) == OK)
2143 {
2144 *((char *)gap->ga_data + gap->ga_len) = c;
2145 ++gap->ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002146 }
2147}
2148
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02002149#if (defined(UNIX) && !defined(USE_SYSTEM)) || defined(WIN3264)
2150/*
2151 * Append the text in "gap" below the cursor line and clear "gap".
2152 */
2153 void
2154append_ga_line(gap)
2155 garray_T *gap;
2156{
2157 /* Remove trailing CR. */
2158 if (gap->ga_len > 0
2159 && !curbuf->b_p_bin
2160 && ((char_u *)gap->ga_data)[gap->ga_len - 1] == CAR)
2161 --gap->ga_len;
2162 ga_append(gap, NUL);
2163 ml_append(curwin->w_cursor.lnum++, gap->ga_data, 0, FALSE);
2164 gap->ga_len = 0;
2165}
2166#endif
2167
Bram Moolenaar071d4272004-06-13 20:20:40 +00002168/************************************************************************
2169 * functions that use lookup tables for various things, generally to do with
2170 * special key codes.
2171 */
2172
2173/*
2174 * Some useful tables.
2175 */
2176
2177static struct modmasktable
2178{
2179 short mod_mask; /* Bit-mask for particular key modifier */
2180 short mod_flag; /* Bit(s) for particular key modifier */
2181 char_u name; /* Single letter name of modifier */
2182} mod_mask_table[] =
2183{
2184 {MOD_MASK_ALT, MOD_MASK_ALT, (char_u)'M'},
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002185 {MOD_MASK_META, MOD_MASK_META, (char_u)'T'},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002186 {MOD_MASK_CTRL, MOD_MASK_CTRL, (char_u)'C'},
2187 {MOD_MASK_SHIFT, MOD_MASK_SHIFT, (char_u)'S'},
2188 {MOD_MASK_MULTI_CLICK, MOD_MASK_2CLICK, (char_u)'2'},
2189 {MOD_MASK_MULTI_CLICK, MOD_MASK_3CLICK, (char_u)'3'},
2190 {MOD_MASK_MULTI_CLICK, MOD_MASK_4CLICK, (char_u)'4'},
2191#ifdef MACOS
2192 {MOD_MASK_CMD, MOD_MASK_CMD, (char_u)'D'},
2193#endif
2194 /* 'A' must be the last one */
2195 {MOD_MASK_ALT, MOD_MASK_ALT, (char_u)'A'},
2196 {0, 0, NUL}
2197};
2198
2199/*
2200 * Shifted key terminal codes and their unshifted equivalent.
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00002201 * Don't add mouse codes here, they are handled separately!
Bram Moolenaar071d4272004-06-13 20:20:40 +00002202 */
2203#define MOD_KEYS_ENTRY_SIZE 5
2204
2205static char_u modifier_keys_table[] =
2206{
2207/* mod mask with modifier without modifier */
2208 MOD_MASK_SHIFT, '&', '9', '@', '1', /* begin */
2209 MOD_MASK_SHIFT, '&', '0', '@', '2', /* cancel */
2210 MOD_MASK_SHIFT, '*', '1', '@', '4', /* command */
2211 MOD_MASK_SHIFT, '*', '2', '@', '5', /* copy */
2212 MOD_MASK_SHIFT, '*', '3', '@', '6', /* create */
2213 MOD_MASK_SHIFT, '*', '4', 'k', 'D', /* delete char */
2214 MOD_MASK_SHIFT, '*', '5', 'k', 'L', /* delete line */
2215 MOD_MASK_SHIFT, '*', '7', '@', '7', /* end */
2216 MOD_MASK_CTRL, KS_EXTRA, (int)KE_C_END, '@', '7', /* end */
2217 MOD_MASK_SHIFT, '*', '9', '@', '9', /* exit */
2218 MOD_MASK_SHIFT, '*', '0', '@', '0', /* find */
2219 MOD_MASK_SHIFT, '#', '1', '%', '1', /* help */
2220 MOD_MASK_SHIFT, '#', '2', 'k', 'h', /* home */
2221 MOD_MASK_CTRL, KS_EXTRA, (int)KE_C_HOME, 'k', 'h', /* home */
2222 MOD_MASK_SHIFT, '#', '3', 'k', 'I', /* insert */
2223 MOD_MASK_SHIFT, '#', '4', 'k', 'l', /* left arrow */
2224 MOD_MASK_CTRL, KS_EXTRA, (int)KE_C_LEFT, 'k', 'l', /* left arrow */
2225 MOD_MASK_SHIFT, '%', 'a', '%', '3', /* message */
2226 MOD_MASK_SHIFT, '%', 'b', '%', '4', /* move */
2227 MOD_MASK_SHIFT, '%', 'c', '%', '5', /* next */
2228 MOD_MASK_SHIFT, '%', 'd', '%', '7', /* options */
2229 MOD_MASK_SHIFT, '%', 'e', '%', '8', /* previous */
2230 MOD_MASK_SHIFT, '%', 'f', '%', '9', /* print */
2231 MOD_MASK_SHIFT, '%', 'g', '%', '0', /* redo */
2232 MOD_MASK_SHIFT, '%', 'h', '&', '3', /* replace */
2233 MOD_MASK_SHIFT, '%', 'i', 'k', 'r', /* right arr. */
2234 MOD_MASK_CTRL, KS_EXTRA, (int)KE_C_RIGHT, 'k', 'r', /* right arr. */
2235 MOD_MASK_SHIFT, '%', 'j', '&', '5', /* resume */
2236 MOD_MASK_SHIFT, '!', '1', '&', '6', /* save */
2237 MOD_MASK_SHIFT, '!', '2', '&', '7', /* suspend */
2238 MOD_MASK_SHIFT, '!', '3', '&', '8', /* undo */
2239 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_UP, 'k', 'u', /* up arrow */
2240 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_DOWN, 'k', 'd', /* down arrow */
2241
2242 /* vt100 F1 */
2243 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_XF1, KS_EXTRA, (int)KE_XF1,
2244 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_XF2, KS_EXTRA, (int)KE_XF2,
2245 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_XF3, KS_EXTRA, (int)KE_XF3,
2246 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_XF4, KS_EXTRA, (int)KE_XF4,
2247
2248 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F1, 'k', '1', /* F1 */
2249 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F2, 'k', '2',
2250 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F3, 'k', '3',
2251 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F4, 'k', '4',
2252 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F5, 'k', '5',
2253 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F6, 'k', '6',
2254 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F7, 'k', '7',
2255 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F8, 'k', '8',
2256 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F9, 'k', '9',
2257 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F10, 'k', ';', /* F10 */
2258
2259 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F11, 'F', '1',
2260 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F12, 'F', '2',
2261 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F13, 'F', '3',
2262 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F14, 'F', '4',
2263 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F15, 'F', '5',
2264 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F16, 'F', '6',
2265 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F17, 'F', '7',
2266 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F18, 'F', '8',
2267 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F19, 'F', '9',
2268 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F20, 'F', 'A',
2269
2270 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F21, 'F', 'B',
2271 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F22, 'F', 'C',
2272 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F23, 'F', 'D',
2273 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F24, 'F', 'E',
2274 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F25, 'F', 'F',
2275 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F26, 'F', 'G',
2276 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F27, 'F', 'H',
2277 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F28, 'F', 'I',
2278 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F29, 'F', 'J',
2279 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F30, 'F', 'K',
2280
2281 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F31, 'F', 'L',
2282 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F32, 'F', 'M',
2283 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F33, 'F', 'N',
2284 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F34, 'F', 'O',
2285 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F35, 'F', 'P',
2286 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F36, 'F', 'Q',
2287 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F37, 'F', 'R',
2288
2289 /* TAB pseudo code*/
2290 MOD_MASK_SHIFT, 'k', 'B', KS_EXTRA, (int)KE_TAB,
2291
2292 NUL
2293};
2294
2295static struct key_name_entry
2296{
2297 int key; /* Special key code or ascii value */
2298 char_u *name; /* Name of key */
2299} key_names_table[] =
2300{
2301 {' ', (char_u *)"Space"},
2302 {TAB, (char_u *)"Tab"},
2303 {K_TAB, (char_u *)"Tab"},
2304 {NL, (char_u *)"NL"},
2305 {NL, (char_u *)"NewLine"}, /* Alternative name */
2306 {NL, (char_u *)"LineFeed"}, /* Alternative name */
2307 {NL, (char_u *)"LF"}, /* Alternative name */
2308 {CAR, (char_u *)"CR"},
2309 {CAR, (char_u *)"Return"}, /* Alternative name */
2310 {CAR, (char_u *)"Enter"}, /* Alternative name */
2311 {K_BS, (char_u *)"BS"},
2312 {K_BS, (char_u *)"BackSpace"}, /* Alternative name */
2313 {ESC, (char_u *)"Esc"},
2314 {CSI, (char_u *)"CSI"},
2315 {K_CSI, (char_u *)"xCSI"},
2316 {'|', (char_u *)"Bar"},
2317 {'\\', (char_u *)"Bslash"},
2318 {K_DEL, (char_u *)"Del"},
2319 {K_DEL, (char_u *)"Delete"}, /* Alternative name */
2320 {K_KDEL, (char_u *)"kDel"},
2321 {K_UP, (char_u *)"Up"},
2322 {K_DOWN, (char_u *)"Down"},
2323 {K_LEFT, (char_u *)"Left"},
2324 {K_RIGHT, (char_u *)"Right"},
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002325 {K_XUP, (char_u *)"xUp"},
2326 {K_XDOWN, (char_u *)"xDown"},
2327 {K_XLEFT, (char_u *)"xLeft"},
2328 {K_XRIGHT, (char_u *)"xRight"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002329
2330 {K_F1, (char_u *)"F1"},
2331 {K_F2, (char_u *)"F2"},
2332 {K_F3, (char_u *)"F3"},
2333 {K_F4, (char_u *)"F4"},
2334 {K_F5, (char_u *)"F5"},
2335 {K_F6, (char_u *)"F6"},
2336 {K_F7, (char_u *)"F7"},
2337 {K_F8, (char_u *)"F8"},
2338 {K_F9, (char_u *)"F9"},
2339 {K_F10, (char_u *)"F10"},
2340
2341 {K_F11, (char_u *)"F11"},
2342 {K_F12, (char_u *)"F12"},
2343 {K_F13, (char_u *)"F13"},
2344 {K_F14, (char_u *)"F14"},
2345 {K_F15, (char_u *)"F15"},
2346 {K_F16, (char_u *)"F16"},
2347 {K_F17, (char_u *)"F17"},
2348 {K_F18, (char_u *)"F18"},
2349 {K_F19, (char_u *)"F19"},
2350 {K_F20, (char_u *)"F20"},
2351
2352 {K_F21, (char_u *)"F21"},
2353 {K_F22, (char_u *)"F22"},
2354 {K_F23, (char_u *)"F23"},
2355 {K_F24, (char_u *)"F24"},
2356 {K_F25, (char_u *)"F25"},
2357 {K_F26, (char_u *)"F26"},
2358 {K_F27, (char_u *)"F27"},
2359 {K_F28, (char_u *)"F28"},
2360 {K_F29, (char_u *)"F29"},
2361 {K_F30, (char_u *)"F30"},
2362
2363 {K_F31, (char_u *)"F31"},
2364 {K_F32, (char_u *)"F32"},
2365 {K_F33, (char_u *)"F33"},
2366 {K_F34, (char_u *)"F34"},
2367 {K_F35, (char_u *)"F35"},
2368 {K_F36, (char_u *)"F36"},
2369 {K_F37, (char_u *)"F37"},
2370
2371 {K_XF1, (char_u *)"xF1"},
2372 {K_XF2, (char_u *)"xF2"},
2373 {K_XF3, (char_u *)"xF3"},
2374 {K_XF4, (char_u *)"xF4"},
2375
2376 {K_HELP, (char_u *)"Help"},
2377 {K_UNDO, (char_u *)"Undo"},
2378 {K_INS, (char_u *)"Insert"},
2379 {K_INS, (char_u *)"Ins"}, /* Alternative name */
2380 {K_KINS, (char_u *)"kInsert"},
2381 {K_HOME, (char_u *)"Home"},
2382 {K_KHOME, (char_u *)"kHome"},
2383 {K_XHOME, (char_u *)"xHome"},
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002384 {K_ZHOME, (char_u *)"zHome"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002385 {K_END, (char_u *)"End"},
2386 {K_KEND, (char_u *)"kEnd"},
2387 {K_XEND, (char_u *)"xEnd"},
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002388 {K_ZEND, (char_u *)"zEnd"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002389 {K_PAGEUP, (char_u *)"PageUp"},
2390 {K_PAGEDOWN, (char_u *)"PageDown"},
2391 {K_KPAGEUP, (char_u *)"kPageUp"},
2392 {K_KPAGEDOWN, (char_u *)"kPageDown"},
2393
2394 {K_KPLUS, (char_u *)"kPlus"},
2395 {K_KMINUS, (char_u *)"kMinus"},
2396 {K_KDIVIDE, (char_u *)"kDivide"},
2397 {K_KMULTIPLY, (char_u *)"kMultiply"},
2398 {K_KENTER, (char_u *)"kEnter"},
2399 {K_KPOINT, (char_u *)"kPoint"},
2400
2401 {K_K0, (char_u *)"k0"},
2402 {K_K1, (char_u *)"k1"},
2403 {K_K2, (char_u *)"k2"},
2404 {K_K3, (char_u *)"k3"},
2405 {K_K4, (char_u *)"k4"},
2406 {K_K5, (char_u *)"k5"},
2407 {K_K6, (char_u *)"k6"},
2408 {K_K7, (char_u *)"k7"},
2409 {K_K8, (char_u *)"k8"},
2410 {K_K9, (char_u *)"k9"},
2411
2412 {'<', (char_u *)"lt"},
2413
2414 {K_MOUSE, (char_u *)"Mouse"},
2415 {K_NETTERM_MOUSE, (char_u *)"NetMouse"},
2416 {K_DEC_MOUSE, (char_u *)"DecMouse"},
2417 {K_JSBTERM_MOUSE, (char_u *)"JsbMouse"},
2418 {K_PTERM_MOUSE, (char_u *)"PtermMouse"},
2419 {K_LEFTMOUSE, (char_u *)"LeftMouse"},
2420 {K_LEFTMOUSE_NM, (char_u *)"LeftMouseNM"},
2421 {K_LEFTDRAG, (char_u *)"LeftDrag"},
2422 {K_LEFTRELEASE, (char_u *)"LeftRelease"},
2423 {K_LEFTRELEASE_NM, (char_u *)"LeftReleaseNM"},
2424 {K_MIDDLEMOUSE, (char_u *)"MiddleMouse"},
2425 {K_MIDDLEDRAG, (char_u *)"MiddleDrag"},
2426 {K_MIDDLERELEASE, (char_u *)"MiddleRelease"},
2427 {K_RIGHTMOUSE, (char_u *)"RightMouse"},
2428 {K_RIGHTDRAG, (char_u *)"RightDrag"},
2429 {K_RIGHTRELEASE, (char_u *)"RightRelease"},
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02002430 {K_MOUSEDOWN, (char_u *)"ScrollWheelUp"},
2431 {K_MOUSEUP, (char_u *)"ScrollWheelDown"},
2432 {K_MOUSELEFT, (char_u *)"ScrollWheelRight"},
2433 {K_MOUSERIGHT, (char_u *)"ScrollWheelLeft"},
2434 {K_MOUSEDOWN, (char_u *)"MouseDown"}, /* OBSOLETE: Use */
2435 {K_MOUSEUP, (char_u *)"MouseUp"}, /* ScrollWheelXXX instead */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002436 {K_X1MOUSE, (char_u *)"X1Mouse"},
2437 {K_X1DRAG, (char_u *)"X1Drag"},
2438 {K_X1RELEASE, (char_u *)"X1Release"},
2439 {K_X2MOUSE, (char_u *)"X2Mouse"},
2440 {K_X2DRAG, (char_u *)"X2Drag"},
2441 {K_X2RELEASE, (char_u *)"X2Release"},
2442 {K_DROP, (char_u *)"Drop"},
2443 {K_ZERO, (char_u *)"Nul"},
2444#ifdef FEAT_EVAL
2445 {K_SNR, (char_u *)"SNR"},
2446#endif
2447 {K_PLUG, (char_u *)"Plug"},
2448 {0, NULL}
2449};
2450
2451#define KEY_NAMES_TABLE_LEN (sizeof(key_names_table) / sizeof(struct key_name_entry))
2452
2453#ifdef FEAT_MOUSE
2454static struct mousetable
2455{
2456 int pseudo_code; /* Code for pseudo mouse event */
2457 int button; /* Which mouse button is it? */
2458 int is_click; /* Is it a mouse button click event? */
2459 int is_drag; /* Is it a mouse drag event? */
2460} mouse_table[] =
2461{
2462 {(int)KE_LEFTMOUSE, MOUSE_LEFT, TRUE, FALSE},
2463#ifdef FEAT_GUI
2464 {(int)KE_LEFTMOUSE_NM, MOUSE_LEFT, TRUE, FALSE},
2465#endif
2466 {(int)KE_LEFTDRAG, MOUSE_LEFT, FALSE, TRUE},
2467 {(int)KE_LEFTRELEASE, MOUSE_LEFT, FALSE, FALSE},
2468#ifdef FEAT_GUI
2469 {(int)KE_LEFTRELEASE_NM, MOUSE_LEFT, FALSE, FALSE},
2470#endif
2471 {(int)KE_MIDDLEMOUSE, MOUSE_MIDDLE, TRUE, FALSE},
2472 {(int)KE_MIDDLEDRAG, MOUSE_MIDDLE, FALSE, TRUE},
2473 {(int)KE_MIDDLERELEASE, MOUSE_MIDDLE, FALSE, FALSE},
2474 {(int)KE_RIGHTMOUSE, MOUSE_RIGHT, TRUE, FALSE},
2475 {(int)KE_RIGHTDRAG, MOUSE_RIGHT, FALSE, TRUE},
2476 {(int)KE_RIGHTRELEASE, MOUSE_RIGHT, FALSE, FALSE},
2477 {(int)KE_X1MOUSE, MOUSE_X1, TRUE, FALSE},
2478 {(int)KE_X1DRAG, MOUSE_X1, FALSE, TRUE},
2479 {(int)KE_X1RELEASE, MOUSE_X1, FALSE, FALSE},
2480 {(int)KE_X2MOUSE, MOUSE_X2, TRUE, FALSE},
2481 {(int)KE_X2DRAG, MOUSE_X2, FALSE, TRUE},
2482 {(int)KE_X2RELEASE, MOUSE_X2, FALSE, FALSE},
2483 /* DRAG without CLICK */
2484 {(int)KE_IGNORE, MOUSE_RELEASE, FALSE, TRUE},
2485 /* RELEASE without CLICK */
2486 {(int)KE_IGNORE, MOUSE_RELEASE, FALSE, FALSE},
2487 {0, 0, 0, 0},
2488};
2489#endif /* FEAT_MOUSE */
2490
2491/*
2492 * Return the modifier mask bit (MOD_MASK_*) which corresponds to the given
2493 * modifier name ('S' for Shift, 'C' for Ctrl etc).
2494 */
2495 int
2496name_to_mod_mask(c)
2497 int c;
2498{
2499 int i;
2500
2501 c = TOUPPER_ASC(c);
2502 for (i = 0; mod_mask_table[i].mod_mask != 0; i++)
2503 if (c == mod_mask_table[i].name)
2504 return mod_mask_table[i].mod_flag;
2505 return 0;
2506}
2507
Bram Moolenaar071d4272004-06-13 20:20:40 +00002508/*
2509 * Check if if there is a special key code for "key" that includes the
2510 * modifiers specified.
2511 */
2512 int
2513simplify_key(key, modifiers)
2514 int key;
2515 int *modifiers;
2516{
2517 int i;
2518 int key0;
2519 int key1;
2520
2521 if (*modifiers & (MOD_MASK_SHIFT | MOD_MASK_CTRL | MOD_MASK_ALT))
2522 {
2523 /* TAB is a special case */
2524 if (key == TAB && (*modifiers & MOD_MASK_SHIFT))
2525 {
2526 *modifiers &= ~MOD_MASK_SHIFT;
2527 return K_S_TAB;
2528 }
2529 key0 = KEY2TERMCAP0(key);
2530 key1 = KEY2TERMCAP1(key);
2531 for (i = 0; modifier_keys_table[i] != NUL; i += MOD_KEYS_ENTRY_SIZE)
2532 if (key0 == modifier_keys_table[i + 3]
2533 && key1 == modifier_keys_table[i + 4]
2534 && (*modifiers & modifier_keys_table[i]))
2535 {
2536 *modifiers &= ~modifier_keys_table[i];
2537 return TERMCAP2KEY(modifier_keys_table[i + 1],
2538 modifier_keys_table[i + 2]);
2539 }
2540 }
2541 return key;
2542}
2543
2544/*
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002545 * Change <xHome> to <Home>, <xUp> to <Up>, etc.
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002546 */
2547 int
2548handle_x_keys(key)
2549 int key;
2550{
2551 switch (key)
2552 {
2553 case K_XUP: return K_UP;
2554 case K_XDOWN: return K_DOWN;
2555 case K_XLEFT: return K_LEFT;
2556 case K_XRIGHT: return K_RIGHT;
2557 case K_XHOME: return K_HOME;
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002558 case K_ZHOME: return K_HOME;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002559 case K_XEND: return K_END;
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002560 case K_ZEND: return K_END;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002561 case K_XF1: return K_F1;
2562 case K_XF2: return K_F2;
2563 case K_XF3: return K_F3;
2564 case K_XF4: return K_F4;
2565 case K_S_XF1: return K_S_F1;
2566 case K_S_XF2: return K_S_F2;
2567 case K_S_XF3: return K_S_F3;
2568 case K_S_XF4: return K_S_F4;
2569 }
2570 return key;
2571}
2572
2573/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002574 * Return a string which contains the name of the given key when the given
2575 * modifiers are down.
2576 */
2577 char_u *
2578get_special_key_name(c, modifiers)
2579 int c;
2580 int modifiers;
2581{
2582 static char_u string[MAX_KEY_NAME_LEN + 1];
2583
2584 int i, idx;
2585 int table_idx;
2586 char_u *s;
2587
2588 string[0] = '<';
2589 idx = 1;
2590
2591 /* Key that stands for a normal character. */
2592 if (IS_SPECIAL(c) && KEY2TERMCAP0(c) == KS_KEY)
2593 c = KEY2TERMCAP1(c);
2594
2595 /*
2596 * Translate shifted special keys into unshifted keys and set modifier.
2597 * Same for CTRL and ALT modifiers.
2598 */
2599 if (IS_SPECIAL(c))
2600 {
2601 for (i = 0; modifier_keys_table[i] != 0; i += MOD_KEYS_ENTRY_SIZE)
2602 if ( KEY2TERMCAP0(c) == (int)modifier_keys_table[i + 1]
2603 && (int)KEY2TERMCAP1(c) == (int)modifier_keys_table[i + 2])
2604 {
2605 modifiers |= modifier_keys_table[i];
2606 c = TERMCAP2KEY(modifier_keys_table[i + 3],
2607 modifier_keys_table[i + 4]);
2608 break;
2609 }
2610 }
2611
2612 /* try to find the key in the special key table */
2613 table_idx = find_special_key_in_table(c);
2614
2615 /*
2616 * When not a known special key, and not a printable character, try to
2617 * extract modifiers.
2618 */
2619 if (c > 0
2620#ifdef FEAT_MBYTE
2621 && (*mb_char2len)(c) == 1
2622#endif
2623 )
2624 {
2625 if (table_idx < 0
2626 && (!vim_isprintc(c) || (c & 0x7f) == ' ')
2627 && (c & 0x80))
2628 {
2629 c &= 0x7f;
2630 modifiers |= MOD_MASK_ALT;
2631 /* try again, to find the un-alted key in the special key table */
2632 table_idx = find_special_key_in_table(c);
2633 }
2634 if (table_idx < 0 && !vim_isprintc(c) && c < ' ')
2635 {
2636#ifdef EBCDIC
2637 c = CtrlChar(c);
2638#else
2639 c += '@';
2640#endif
2641 modifiers |= MOD_MASK_CTRL;
2642 }
2643 }
2644
2645 /* translate the modifier into a string */
2646 for (i = 0; mod_mask_table[i].name != 'A'; i++)
2647 if ((modifiers & mod_mask_table[i].mod_mask)
2648 == mod_mask_table[i].mod_flag)
2649 {
2650 string[idx++] = mod_mask_table[i].name;
2651 string[idx++] = (char_u)'-';
2652 }
2653
2654 if (table_idx < 0) /* unknown special key, may output t_xx */
2655 {
2656 if (IS_SPECIAL(c))
2657 {
2658 string[idx++] = 't';
2659 string[idx++] = '_';
2660 string[idx++] = KEY2TERMCAP0(c);
2661 string[idx++] = KEY2TERMCAP1(c);
2662 }
2663 /* Not a special key, only modifiers, output directly */
2664 else
2665 {
2666#ifdef FEAT_MBYTE
2667 if (has_mbyte && (*mb_char2len)(c) > 1)
2668 idx += (*mb_char2bytes)(c, string + idx);
2669 else
2670#endif
2671 if (vim_isprintc(c))
2672 string[idx++] = c;
2673 else
2674 {
2675 s = transchar(c);
2676 while (*s)
2677 string[idx++] = *s++;
2678 }
2679 }
2680 }
2681 else /* use name of special key */
2682 {
2683 STRCPY(string + idx, key_names_table[table_idx].name);
2684 idx = (int)STRLEN(string);
2685 }
2686 string[idx++] = '>';
2687 string[idx] = NUL;
2688 return string;
2689}
2690
2691/*
2692 * Try translating a <> name at (*srcp)[] to dst[].
2693 * Return the number of characters added to dst[], zero for no match.
2694 * If there is a match, srcp is advanced to after the <> name.
2695 * dst[] must be big enough to hold the result (up to six characters)!
2696 */
2697 int
2698trans_special(srcp, dst, keycode)
2699 char_u **srcp;
2700 char_u *dst;
2701 int keycode; /* prefer key code, e.g. K_DEL instead of DEL */
2702{
2703 int modifiers = 0;
2704 int key;
2705 int dlen = 0;
2706
Bram Moolenaar2a8ced02008-12-24 11:54:31 +00002707 key = find_special_key(srcp, &modifiers, keycode, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002708 if (key == 0)
2709 return 0;
2710
2711 /* Put the appropriate modifier in a string */
2712 if (modifiers != 0)
2713 {
2714 dst[dlen++] = K_SPECIAL;
2715 dst[dlen++] = KS_MODIFIER;
2716 dst[dlen++] = modifiers;
2717 }
2718
2719 if (IS_SPECIAL(key))
2720 {
2721 dst[dlen++] = K_SPECIAL;
2722 dst[dlen++] = KEY2TERMCAP0(key);
2723 dst[dlen++] = KEY2TERMCAP1(key);
2724 }
2725#ifdef FEAT_MBYTE
2726 else if (has_mbyte && !keycode)
2727 dlen += (*mb_char2bytes)(key, dst + dlen);
2728#endif
2729 else if (keycode)
2730 dlen = (int)(add_char2buf(key, dst + dlen) - dst);
2731 else
2732 dst[dlen++] = key;
2733
2734 return dlen;
2735}
2736
2737/*
2738 * Try translating a <> name at (*srcp)[], return the key and modifiers.
2739 * srcp is advanced to after the <> name.
2740 * returns 0 if there is no match.
2741 */
2742 int
Bram Moolenaar2a8ced02008-12-24 11:54:31 +00002743find_special_key(srcp, modp, keycode, keep_x_key)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002744 char_u **srcp;
2745 int *modp;
Bram Moolenaar2a8ced02008-12-24 11:54:31 +00002746 int keycode; /* prefer key code, e.g. K_DEL instead of DEL */
2747 int keep_x_key; /* don't translate xHome to Home key */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002748{
2749 char_u *last_dash;
2750 char_u *end_of_name;
2751 char_u *src;
2752 char_u *bp;
2753 int modifiers;
2754 int bit;
2755 int key;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002756 unsigned long n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002757
2758 src = *srcp;
2759 if (src[0] != '<')
2760 return 0;
2761
2762 /* Find end of modifier list */
2763 last_dash = src;
2764 for (bp = src + 1; *bp == '-' || vim_isIDc(*bp); bp++)
2765 {
2766 if (*bp == '-')
2767 {
2768 last_dash = bp;
2769 if (bp[1] != NUL && bp[2] == '>')
2770 ++bp; /* anything accepted, like <C-?> */
2771 }
2772 if (bp[0] == 't' && bp[1] == '_' && bp[2] && bp[3])
2773 bp += 3; /* skip t_xx, xx may be '-' or '>' */
2774 }
2775
2776 if (*bp == '>') /* found matching '>' */
2777 {
2778 end_of_name = bp + 1;
2779
2780 if (STRNICMP(src + 1, "char-", 5) == 0 && VIM_ISDIGIT(src[6]))
2781 {
2782 /* <Char-123> or <Char-033> or <Char-0x33> */
2783 vim_str2nr(src + 6, NULL, NULL, TRUE, TRUE, NULL, &n);
2784 *modp = 0;
2785 *srcp = end_of_name;
2786 return (int)n;
2787 }
2788
2789 /* Which modifiers are given? */
2790 modifiers = 0x0;
2791 for (bp = src + 1; bp < last_dash; bp++)
2792 {
2793 if (*bp != '-')
2794 {
2795 bit = name_to_mod_mask(*bp);
2796 if (bit == 0x0)
2797 break; /* Illegal modifier name */
2798 modifiers |= bit;
2799 }
2800 }
2801
2802 /*
2803 * Legal modifier name.
2804 */
2805 if (bp >= last_dash)
2806 {
2807 /*
2808 * Modifier with single letter, or special key name.
2809 */
2810 if (modifiers != 0 && last_dash[2] == '>')
2811 key = last_dash[1];
2812 else
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002813 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002814 key = get_special_key_code(last_dash + 1);
Bram Moolenaar2a8ced02008-12-24 11:54:31 +00002815 if (!keep_x_key)
2816 key = handle_x_keys(key);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002817 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002818
2819 /*
2820 * get_special_key_code() may return NUL for invalid
2821 * special key name.
2822 */
2823 if (key != NUL)
2824 {
2825 /*
2826 * Only use a modifier when there is no special key code that
2827 * includes the modifier.
2828 */
2829 key = simplify_key(key, &modifiers);
2830
2831 if (!keycode)
2832 {
2833 /* don't want keycode, use single byte code */
2834 if (key == K_BS)
2835 key = BS;
2836 else if (key == K_DEL || key == K_KDEL)
2837 key = DEL;
2838 }
2839
2840 /*
2841 * Normal Key with modifier: Try to make a single byte code.
2842 */
2843 if (!IS_SPECIAL(key))
2844 key = extract_modifiers(key, &modifiers);
2845
2846 *modp = modifiers;
2847 *srcp = end_of_name;
2848 return key;
2849 }
2850 }
2851 }
2852 return 0;
2853}
2854
2855/*
2856 * Try to include modifiers in the key.
2857 * Changes "Shift-a" to 'A', "Alt-A" to 0xc0, etc.
2858 */
2859 int
2860extract_modifiers(key, modp)
2861 int key;
2862 int *modp;
2863{
2864 int modifiers = *modp;
2865
2866#ifdef MACOS
2867 /* Command-key really special, No fancynest */
2868 if (!(modifiers & MOD_MASK_CMD))
2869#endif
2870 if ((modifiers & MOD_MASK_SHIFT) && ASCII_ISALPHA(key))
2871 {
2872 key = TOUPPER_ASC(key);
2873 modifiers &= ~MOD_MASK_SHIFT;
2874 }
2875 if ((modifiers & MOD_MASK_CTRL)
2876#ifdef EBCDIC
2877 /* * TODO: EBCDIC Better use:
2878 * && (Ctrl_chr(key) || key == '?')
2879 * ??? */
2880 && strchr("?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_", key)
2881 != NULL
2882#else
2883 && ((key >= '?' && key <= '_') || ASCII_ISALPHA(key))
2884#endif
2885 )
2886 {
2887 key = Ctrl_chr(key);
2888 modifiers &= ~MOD_MASK_CTRL;
2889 /* <C-@> is <Nul> */
2890 if (key == 0)
2891 key = K_ZERO;
2892 }
2893#ifdef MACOS
2894 /* Command-key really special, No fancynest */
2895 if (!(modifiers & MOD_MASK_CMD))
2896#endif
2897 if ((modifiers & MOD_MASK_ALT) && key < 0x80
2898#ifdef FEAT_MBYTE
2899 && !enc_dbcs /* avoid creating a lead byte */
2900#endif
2901 )
2902 {
2903 key |= 0x80;
2904 modifiers &= ~MOD_MASK_ALT; /* remove the META modifier */
2905 }
2906
2907 *modp = modifiers;
2908 return key;
2909}
2910
2911/*
2912 * Try to find key "c" in the special key table.
2913 * Return the index when found, -1 when not found.
2914 */
2915 int
2916find_special_key_in_table(c)
2917 int c;
2918{
2919 int i;
2920
2921 for (i = 0; key_names_table[i].name != NULL; i++)
2922 if (c == key_names_table[i].key)
2923 break;
2924 if (key_names_table[i].name == NULL)
2925 i = -1;
2926 return i;
2927}
2928
2929/*
2930 * Find the special key with the given name (the given string does not have to
2931 * end with NUL, the name is assumed to end before the first non-idchar).
2932 * If the name starts with "t_" the next two characters are interpreted as a
2933 * termcap name.
2934 * Return the key code, or 0 if not found.
2935 */
2936 int
2937get_special_key_code(name)
2938 char_u *name;
2939{
2940 char_u *table_name;
2941 char_u string[3];
2942 int i, j;
2943
2944 /*
2945 * If it's <t_xx> we get the code for xx from the termcap
2946 */
2947 if (name[0] == 't' && name[1] == '_' && name[2] != NUL && name[3] != NUL)
2948 {
2949 string[0] = name[2];
2950 string[1] = name[3];
2951 string[2] = NUL;
2952 if (add_termcap_entry(string, FALSE) == OK)
2953 return TERMCAP2KEY(name[2], name[3]);
2954 }
2955 else
2956 for (i = 0; key_names_table[i].name != NULL; i++)
2957 {
2958 table_name = key_names_table[i].name;
2959 for (j = 0; vim_isIDc(name[j]) && table_name[j] != NUL; j++)
2960 if (TOLOWER_ASC(table_name[j]) != TOLOWER_ASC(name[j]))
2961 break;
2962 if (!vim_isIDc(name[j]) && table_name[j] == NUL)
2963 return key_names_table[i].key;
2964 }
2965 return 0;
2966}
2967
Bram Moolenaar05bb9532008-07-04 09:44:11 +00002968#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002969 char_u *
2970get_key_name(i)
2971 int i;
2972{
Bram Moolenaare1fbddc2009-05-16 19:07:03 +00002973 if (i >= (int)KEY_NAMES_TABLE_LEN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002974 return NULL;
2975 return key_names_table[i].name;
2976}
2977#endif
2978
Bram Moolenaar05bb9532008-07-04 09:44:11 +00002979#if defined(FEAT_MOUSE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002980/*
2981 * Look up the given mouse code to return the relevant information in the other
2982 * arguments. Return which button is down or was released.
2983 */
2984 int
2985get_mouse_button(code, is_click, is_drag)
2986 int code;
2987 int *is_click;
2988 int *is_drag;
2989{
2990 int i;
2991
2992 for (i = 0; mouse_table[i].pseudo_code; i++)
2993 if (code == mouse_table[i].pseudo_code)
2994 {
2995 *is_click = mouse_table[i].is_click;
2996 *is_drag = mouse_table[i].is_drag;
2997 return mouse_table[i].button;
2998 }
2999 return 0; /* Shouldn't get here */
3000}
3001
3002/*
3003 * Return the appropriate pseudo mouse event token (KE_LEFTMOUSE etc) based on
3004 * the given information about which mouse button is down, and whether the
3005 * mouse was clicked, dragged or released.
3006 */
3007 int
3008get_pseudo_mouse_code(button, is_click, is_drag)
3009 int button; /* eg MOUSE_LEFT */
3010 int is_click;
3011 int is_drag;
3012{
3013 int i;
3014
3015 for (i = 0; mouse_table[i].pseudo_code; i++)
3016 if (button == mouse_table[i].button
3017 && is_click == mouse_table[i].is_click
3018 && is_drag == mouse_table[i].is_drag)
3019 {
3020#ifdef FEAT_GUI
Bram Moolenaarc91506a2005-04-24 22:04:21 +00003021 /* Trick: a non mappable left click and release has mouse_col -1
3022 * or added MOUSE_COLOFF. Used for 'mousefocus' in
3023 * gui_mouse_moved() */
3024 if (mouse_col < 0 || mouse_col > MOUSE_COLOFF)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003025 {
Bram Moolenaarc91506a2005-04-24 22:04:21 +00003026 if (mouse_col < 0)
3027 mouse_col = 0;
3028 else
3029 mouse_col -= MOUSE_COLOFF;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003030 if (mouse_table[i].pseudo_code == (int)KE_LEFTMOUSE)
3031 return (int)KE_LEFTMOUSE_NM;
3032 if (mouse_table[i].pseudo_code == (int)KE_LEFTRELEASE)
3033 return (int)KE_LEFTRELEASE_NM;
3034 }
3035#endif
3036 return mouse_table[i].pseudo_code;
3037 }
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00003038 return (int)KE_IGNORE; /* not recognized, ignore it */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003039}
3040#endif /* FEAT_MOUSE */
3041
3042/*
3043 * Return the current end-of-line type: EOL_DOS, EOL_UNIX or EOL_MAC.
3044 */
3045 int
3046get_fileformat(buf)
3047 buf_T *buf;
3048{
3049 int c = *buf->b_p_ff;
3050
3051 if (buf->b_p_bin || c == 'u')
3052 return EOL_UNIX;
3053 if (c == 'm')
3054 return EOL_MAC;
3055 return EOL_DOS;
3056}
3057
3058/*
3059 * Like get_fileformat(), but override 'fileformat' with "p" for "++opt=val"
3060 * argument.
3061 */
3062 int
3063get_fileformat_force(buf, eap)
3064 buf_T *buf;
3065 exarg_T *eap; /* can be NULL! */
3066{
3067 int c;
3068
3069 if (eap != NULL && eap->force_ff != 0)
3070 c = eap->cmd[eap->force_ff];
3071 else
3072 {
3073 if ((eap != NULL && eap->force_bin != 0)
3074 ? (eap->force_bin == FORCE_BIN) : buf->b_p_bin)
3075 return EOL_UNIX;
3076 c = *buf->b_p_ff;
3077 }
3078 if (c == 'u')
3079 return EOL_UNIX;
3080 if (c == 'm')
3081 return EOL_MAC;
3082 return EOL_DOS;
3083}
3084
3085/*
3086 * Set the current end-of-line type to EOL_DOS, EOL_UNIX or EOL_MAC.
3087 * Sets both 'textmode' and 'fileformat'.
3088 * Note: Does _not_ set global value of 'textmode'!
3089 */
3090 void
3091set_fileformat(t, opt_flags)
3092 int t;
3093 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
3094{
3095 char *p = NULL;
3096
3097 switch (t)
3098 {
3099 case EOL_DOS:
3100 p = FF_DOS;
3101 curbuf->b_p_tx = TRUE;
3102 break;
3103 case EOL_UNIX:
3104 p = FF_UNIX;
3105 curbuf->b_p_tx = FALSE;
3106 break;
3107 case EOL_MAC:
3108 p = FF_MAC;
3109 curbuf->b_p_tx = FALSE;
3110 break;
3111 }
3112 if (p != NULL)
3113 set_string_option_direct((char_u *)"ff", -1, (char_u *)p,
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00003114 OPT_FREE | opt_flags, 0);
3115
Bram Moolenaar071d4272004-06-13 20:20:40 +00003116#ifdef FEAT_WINDOWS
Bram Moolenaarf740b292006-02-16 22:11:02 +00003117 /* This may cause the buffer to become (un)modified. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003118 check_status(curbuf);
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00003119 redraw_tabline = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003120#endif
3121#ifdef FEAT_TITLE
3122 need_maketitle = TRUE; /* set window title later */
3123#endif
3124}
3125
3126/*
3127 * Return the default fileformat from 'fileformats'.
3128 */
3129 int
3130default_fileformat()
3131{
3132 switch (*p_ffs)
3133 {
3134 case 'm': return EOL_MAC;
3135 case 'd': return EOL_DOS;
3136 }
3137 return EOL_UNIX;
3138}
3139
3140/*
3141 * Call shell. Calls mch_call_shell, with 'shellxquote' added.
3142 */
3143 int
3144call_shell(cmd, opt)
3145 char_u *cmd;
3146 int opt;
3147{
3148 char_u *ncmd;
3149 int retval;
Bram Moolenaar05159a02005-02-26 23:04:13 +00003150#ifdef FEAT_PROFILE
3151 proftime_T wait_time;
3152#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003153
3154 if (p_verbose > 3)
3155 {
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00003156 verbose_enter();
Bram Moolenaar051b7822005-05-19 21:00:46 +00003157 smsg((char_u *)_("Calling shell to execute: \"%s\""),
Bram Moolenaar071d4272004-06-13 20:20:40 +00003158 cmd == NULL ? p_sh : cmd);
3159 out_char('\n');
3160 cursor_on();
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00003161 verbose_leave();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003162 }
3163
Bram Moolenaar05159a02005-02-26 23:04:13 +00003164#ifdef FEAT_PROFILE
Bram Moolenaar01265852006-03-20 21:50:15 +00003165 if (do_profiling == PROF_YES)
Bram Moolenaar05159a02005-02-26 23:04:13 +00003166 prof_child_enter(&wait_time);
3167#endif
3168
Bram Moolenaar071d4272004-06-13 20:20:40 +00003169 if (*p_sh == NUL)
3170 {
3171 EMSG(_(e_shellempty));
3172 retval = -1;
3173 }
3174 else
3175 {
3176#ifdef FEAT_GUI_MSWIN
3177 /* Don't hide the pointer while executing a shell command. */
3178 gui_mch_mousehide(FALSE);
3179#endif
3180#ifdef FEAT_GUI
3181 ++hold_gui_events;
3182#endif
3183 /* The external command may update a tags file, clear cached tags. */
3184 tag_freematch();
3185
3186 if (cmd == NULL || *p_sxq == NUL)
3187 retval = mch_call_shell(cmd, opt);
3188 else
3189 {
3190 ncmd = alloc((unsigned)(STRLEN(cmd) + STRLEN(p_sxq) * 2 + 1));
3191 if (ncmd != NULL)
3192 {
3193 STRCPY(ncmd, p_sxq);
3194 STRCAT(ncmd, cmd);
3195 STRCAT(ncmd, p_sxq);
3196 retval = mch_call_shell(ncmd, opt);
3197 vim_free(ncmd);
3198 }
3199 else
3200 retval = -1;
3201 }
3202#ifdef FEAT_GUI
3203 --hold_gui_events;
3204#endif
3205 /*
3206 * Check the window size, in case it changed while executing the
3207 * external command.
3208 */
3209 shell_resized_check();
3210 }
3211
3212#ifdef FEAT_EVAL
3213 set_vim_var_nr(VV_SHELL_ERROR, (long)retval);
Bram Moolenaar05159a02005-02-26 23:04:13 +00003214# ifdef FEAT_PROFILE
Bram Moolenaar01265852006-03-20 21:50:15 +00003215 if (do_profiling == PROF_YES)
Bram Moolenaar05159a02005-02-26 23:04:13 +00003216 prof_child_exit(&wait_time);
3217# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003218#endif
3219
3220 return retval;
3221}
3222
3223/*
Bram Moolenaar01265852006-03-20 21:50:15 +00003224 * VISUAL, SELECTMODE and OP_PENDING State are never set, they are equal to
3225 * NORMAL State with a condition. This function returns the real State.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003226 */
3227 int
3228get_real_state()
3229{
3230 if (State & NORMAL)
3231 {
3232#ifdef FEAT_VISUAL
3233 if (VIsual_active)
Bram Moolenaar01265852006-03-20 21:50:15 +00003234 {
3235 if (VIsual_select)
3236 return SELECTMODE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003237 return VISUAL;
Bram Moolenaar01265852006-03-20 21:50:15 +00003238 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003239 else
3240#endif
3241 if (finish_op)
Bram Moolenaar01265852006-03-20 21:50:15 +00003242 return OP_PENDING;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003243 }
3244 return State;
3245}
3246
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003247#if defined(FEAT_MBYTE) || defined(PROTO)
3248/*
3249 * Return TRUE if "p" points to just after a path separator.
Bram Moolenaarb5ce04d2011-07-07 17:15:33 +02003250 * Takes care of multi-byte characters.
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003251 * "b" must point to the start of the file name
3252 */
3253 int
3254after_pathsep(b, p)
3255 char_u *b;
3256 char_u *p;
3257{
Bram Moolenaarb5ce04d2011-07-07 17:15:33 +02003258 return p > b && vim_ispathsep(p[-1])
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003259 && (!has_mbyte || (*mb_head_off)(b, p - 1) == 0);
3260}
3261#endif
3262
3263/*
3264 * Return TRUE if file names "f1" and "f2" are in the same directory.
3265 * "f1" may be a short name, "f2" must be a full path.
3266 */
3267 int
3268same_directory(f1, f2)
3269 char_u *f1;
3270 char_u *f2;
3271{
3272 char_u ffname[MAXPATHL];
3273 char_u *t1;
3274 char_u *t2;
3275
3276 /* safety check */
3277 if (f1 == NULL || f2 == NULL)
3278 return FALSE;
3279
3280 (void)vim_FullName(f1, ffname, MAXPATHL, FALSE);
3281 t1 = gettail_sep(ffname);
3282 t2 = gettail_sep(f2);
3283 return (t1 - ffname == t2 - f2
3284 && pathcmp((char *)ffname, (char *)f2, (int)(t1 - ffname)) == 0);
3285}
3286
Bram Moolenaar071d4272004-06-13 20:20:40 +00003287#if defined(FEAT_SESSION) || defined(MSWIN) || defined(FEAT_GUI_MAC) \
Bram Moolenaar9372a112005-12-06 19:59:18 +00003288 || ((defined(FEAT_GUI_GTK)) \
Bram Moolenaar843ee412004-06-30 16:16:41 +00003289 && ( defined(FEAT_WINDOWS) || defined(FEAT_DND)) ) \
Bram Moolenaar071d4272004-06-13 20:20:40 +00003290 || defined(FEAT_SUN_WORKSHOP) || defined(FEAT_NETBEANS_INTG) \
3291 || defined(PROTO)
3292/*
3293 * Change to a file's directory.
3294 * Caller must call shorten_fnames()!
3295 * Return OK or FAIL.
3296 */
3297 int
3298vim_chdirfile(fname)
3299 char_u *fname;
3300{
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003301 char_u dir[MAXPATHL];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003302
Bram Moolenaarbbebc852005-07-18 21:47:53 +00003303 vim_strncpy(dir, fname, MAXPATHL - 1);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003304 *gettail_sep(dir) = NUL;
3305 return mch_chdir((char *)dir) == 0 ? OK : FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003306}
3307#endif
3308
3309#if defined(STAT_IGNORES_SLASH) || defined(PROTO)
3310/*
3311 * Check if "name" ends in a slash and is not a directory.
3312 * Used for systems where stat() ignores a trailing slash on a file name.
3313 * The Vim code assumes a trailing slash is only ignored for a directory.
3314 */
3315 int
3316illegal_slash(name)
3317 char *name;
3318{
3319 if (name[0] == NUL)
3320 return FALSE; /* no file name is not illegal */
3321 if (name[strlen(name) - 1] != '/')
3322 return FALSE; /* no trailing slash */
3323 if (mch_isdir((char_u *)name))
3324 return FALSE; /* trailing slash for a directory */
3325 return TRUE;
3326}
3327#endif
3328
3329#if defined(CURSOR_SHAPE) || defined(PROTO)
3330
3331/*
3332 * Handling of cursor and mouse pointer shapes in various modes.
3333 */
3334
3335cursorentry_T shape_table[SHAPE_IDX_COUNT] =
3336{
3337 /* The values will be filled in from the 'guicursor' and 'mouseshape'
3338 * defaults when Vim starts.
3339 * Adjust the SHAPE_IDX_ defines when making changes! */
3340 {0, 0, 0, 700L, 400L, 250L, 0, 0, "n", SHAPE_CURSOR+SHAPE_MOUSE},
3341 {0, 0, 0, 700L, 400L, 250L, 0, 0, "v", SHAPE_CURSOR+SHAPE_MOUSE},
3342 {0, 0, 0, 700L, 400L, 250L, 0, 0, "i", SHAPE_CURSOR+SHAPE_MOUSE},
3343 {0, 0, 0, 700L, 400L, 250L, 0, 0, "r", SHAPE_CURSOR+SHAPE_MOUSE},
3344 {0, 0, 0, 700L, 400L, 250L, 0, 0, "c", SHAPE_CURSOR+SHAPE_MOUSE},
3345 {0, 0, 0, 700L, 400L, 250L, 0, 0, "ci", SHAPE_CURSOR+SHAPE_MOUSE},
3346 {0, 0, 0, 700L, 400L, 250L, 0, 0, "cr", SHAPE_CURSOR+SHAPE_MOUSE},
3347 {0, 0, 0, 700L, 400L, 250L, 0, 0, "o", SHAPE_CURSOR+SHAPE_MOUSE},
3348 {0, 0, 0, 700L, 400L, 250L, 0, 0, "ve", SHAPE_CURSOR+SHAPE_MOUSE},
3349 {0, 0, 0, 0L, 0L, 0L, 0, 0, "e", SHAPE_MOUSE},
3350 {0, 0, 0, 0L, 0L, 0L, 0, 0, "s", SHAPE_MOUSE},
3351 {0, 0, 0, 0L, 0L, 0L, 0, 0, "sd", SHAPE_MOUSE},
3352 {0, 0, 0, 0L, 0L, 0L, 0, 0, "vs", SHAPE_MOUSE},
3353 {0, 0, 0, 0L, 0L, 0L, 0, 0, "vd", SHAPE_MOUSE},
3354 {0, 0, 0, 0L, 0L, 0L, 0, 0, "m", SHAPE_MOUSE},
3355 {0, 0, 0, 0L, 0L, 0L, 0, 0, "ml", SHAPE_MOUSE},
3356 {0, 0, 0, 100L, 100L, 100L, 0, 0, "sm", SHAPE_CURSOR},
3357};
3358
3359#ifdef FEAT_MOUSESHAPE
3360/*
3361 * Table with names for mouse shapes. Keep in sync with all the tables for
3362 * mch_set_mouse_shape()!.
3363 */
3364static char * mshape_names[] =
3365{
3366 "arrow", /* default, must be the first one */
3367 "blank", /* hidden */
3368 "beam",
3369 "updown",
3370 "udsizing",
3371 "leftright",
3372 "lrsizing",
3373 "busy",
3374 "no",
3375 "crosshair",
3376 "hand1",
3377 "hand2",
3378 "pencil",
3379 "question",
3380 "rightup-arrow",
3381 "up-arrow",
3382 NULL
3383};
3384#endif
3385
3386/*
3387 * Parse the 'guicursor' option ("what" is SHAPE_CURSOR) or 'mouseshape'
3388 * ("what" is SHAPE_MOUSE).
3389 * Returns error message for an illegal option, NULL otherwise.
3390 */
3391 char_u *
3392parse_shape_opt(what)
3393 int what;
3394{
3395 char_u *modep;
3396 char_u *colonp;
3397 char_u *commap;
3398 char_u *slashp;
3399 char_u *p, *endp;
3400 int idx = 0; /* init for GCC */
3401 int all_idx;
3402 int len;
3403 int i;
3404 long n;
3405 int found_ve = FALSE; /* found "ve" flag */
3406 int round;
3407
3408 /*
3409 * First round: check for errors; second round: do it for real.
3410 */
3411 for (round = 1; round <= 2; ++round)
3412 {
3413 /*
3414 * Repeat for all comma separated parts.
3415 */
3416#ifdef FEAT_MOUSESHAPE
3417 if (what == SHAPE_MOUSE)
3418 modep = p_mouseshape;
3419 else
3420#endif
3421 modep = p_guicursor;
3422 while (*modep != NUL)
3423 {
3424 colonp = vim_strchr(modep, ':');
3425 if (colonp == NULL)
3426 return (char_u *)N_("E545: Missing colon");
3427 if (colonp == modep)
3428 return (char_u *)N_("E546: Illegal mode");
3429 commap = vim_strchr(modep, ',');
3430
3431 /*
3432 * Repeat for all mode's before the colon.
3433 * For the 'a' mode, we loop to handle all the modes.
3434 */
3435 all_idx = -1;
3436 while (modep < colonp || all_idx >= 0)
3437 {
3438 if (all_idx < 0)
3439 {
3440 /* Find the mode. */
3441 if (modep[1] == '-' || modep[1] == ':')
3442 len = 1;
3443 else
3444 len = 2;
3445 if (len == 1 && TOLOWER_ASC(modep[0]) == 'a')
3446 all_idx = SHAPE_IDX_COUNT - 1;
3447 else
3448 {
3449 for (idx = 0; idx < SHAPE_IDX_COUNT; ++idx)
3450 if (STRNICMP(modep, shape_table[idx].name, len)
3451 == 0)
3452 break;
3453 if (idx == SHAPE_IDX_COUNT
3454 || (shape_table[idx].used_for & what) == 0)
3455 return (char_u *)N_("E546: Illegal mode");
3456 if (len == 2 && modep[0] == 'v' && modep[1] == 'e')
3457 found_ve = TRUE;
3458 }
3459 modep += len + 1;
3460 }
3461
3462 if (all_idx >= 0)
3463 idx = all_idx--;
3464 else if (round == 2)
3465 {
3466#ifdef FEAT_MOUSESHAPE
3467 if (what == SHAPE_MOUSE)
3468 {
3469 /* Set the default, for the missing parts */
3470 shape_table[idx].mshape = 0;
3471 }
3472 else
3473#endif
3474 {
3475 /* Set the defaults, for the missing parts */
3476 shape_table[idx].shape = SHAPE_BLOCK;
3477 shape_table[idx].blinkwait = 700L;
3478 shape_table[idx].blinkon = 400L;
3479 shape_table[idx].blinkoff = 250L;
3480 }
3481 }
3482
3483 /* Parse the part after the colon */
3484 for (p = colonp + 1; *p && *p != ','; )
3485 {
3486#ifdef FEAT_MOUSESHAPE
3487 if (what == SHAPE_MOUSE)
3488 {
3489 for (i = 0; ; ++i)
3490 {
3491 if (mshape_names[i] == NULL)
3492 {
3493 if (!VIM_ISDIGIT(*p))
3494 return (char_u *)N_("E547: Illegal mouseshape");
3495 if (round == 2)
3496 shape_table[idx].mshape =
3497 getdigits(&p) + MSHAPE_NUMBERED;
3498 else
3499 (void)getdigits(&p);
3500 break;
3501 }
3502 len = (int)STRLEN(mshape_names[i]);
3503 if (STRNICMP(p, mshape_names[i], len) == 0)
3504 {
3505 if (round == 2)
3506 shape_table[idx].mshape = i;
3507 p += len;
3508 break;
3509 }
3510 }
3511 }
3512 else /* if (what == SHAPE_MOUSE) */
3513#endif
3514 {
3515 /*
3516 * First handle the ones with a number argument.
3517 */
3518 i = *p;
3519 len = 0;
3520 if (STRNICMP(p, "ver", 3) == 0)
3521 len = 3;
3522 else if (STRNICMP(p, "hor", 3) == 0)
3523 len = 3;
3524 else if (STRNICMP(p, "blinkwait", 9) == 0)
3525 len = 9;
3526 else if (STRNICMP(p, "blinkon", 7) == 0)
3527 len = 7;
3528 else if (STRNICMP(p, "blinkoff", 8) == 0)
3529 len = 8;
3530 if (len != 0)
3531 {
3532 p += len;
3533 if (!VIM_ISDIGIT(*p))
3534 return (char_u *)N_("E548: digit expected");
3535 n = getdigits(&p);
3536 if (len == 3) /* "ver" or "hor" */
3537 {
3538 if (n == 0)
3539 return (char_u *)N_("E549: Illegal percentage");
3540 if (round == 2)
3541 {
3542 if (TOLOWER_ASC(i) == 'v')
3543 shape_table[idx].shape = SHAPE_VER;
3544 else
3545 shape_table[idx].shape = SHAPE_HOR;
3546 shape_table[idx].percentage = n;
3547 }
3548 }
3549 else if (round == 2)
3550 {
3551 if (len == 9)
3552 shape_table[idx].blinkwait = n;
3553 else if (len == 7)
3554 shape_table[idx].blinkon = n;
3555 else
3556 shape_table[idx].blinkoff = n;
3557 }
3558 }
3559 else if (STRNICMP(p, "block", 5) == 0)
3560 {
3561 if (round == 2)
3562 shape_table[idx].shape = SHAPE_BLOCK;
3563 p += 5;
3564 }
3565 else /* must be a highlight group name then */
3566 {
3567 endp = vim_strchr(p, '-');
3568 if (commap == NULL) /* last part */
3569 {
3570 if (endp == NULL)
3571 endp = p + STRLEN(p); /* find end of part */
3572 }
3573 else if (endp > commap || endp == NULL)
3574 endp = commap;
3575 slashp = vim_strchr(p, '/');
3576 if (slashp != NULL && slashp < endp)
3577 {
3578 /* "group/langmap_group" */
3579 i = syn_check_group(p, (int)(slashp - p));
3580 p = slashp + 1;
3581 }
3582 if (round == 2)
3583 {
3584 shape_table[idx].id = syn_check_group(p,
3585 (int)(endp - p));
3586 shape_table[idx].id_lm = shape_table[idx].id;
3587 if (slashp != NULL && slashp < endp)
3588 shape_table[idx].id = i;
3589 }
3590 p = endp;
3591 }
3592 } /* if (what != SHAPE_MOUSE) */
3593
3594 if (*p == '-')
3595 ++p;
3596 }
3597 }
3598 modep = p;
3599 if (*modep == ',')
3600 ++modep;
3601 }
3602 }
3603
3604 /* If the 's' flag is not given, use the 'v' cursor for 's' */
3605 if (!found_ve)
3606 {
3607#ifdef FEAT_MOUSESHAPE
3608 if (what == SHAPE_MOUSE)
3609 {
3610 shape_table[SHAPE_IDX_VE].mshape = shape_table[SHAPE_IDX_V].mshape;
3611 }
3612 else
3613#endif
3614 {
3615 shape_table[SHAPE_IDX_VE].shape = shape_table[SHAPE_IDX_V].shape;
3616 shape_table[SHAPE_IDX_VE].percentage =
3617 shape_table[SHAPE_IDX_V].percentage;
3618 shape_table[SHAPE_IDX_VE].blinkwait =
3619 shape_table[SHAPE_IDX_V].blinkwait;
3620 shape_table[SHAPE_IDX_VE].blinkon =
3621 shape_table[SHAPE_IDX_V].blinkon;
3622 shape_table[SHAPE_IDX_VE].blinkoff =
3623 shape_table[SHAPE_IDX_V].blinkoff;
3624 shape_table[SHAPE_IDX_VE].id = shape_table[SHAPE_IDX_V].id;
3625 shape_table[SHAPE_IDX_VE].id_lm = shape_table[SHAPE_IDX_V].id_lm;
3626 }
3627 }
3628
3629 return NULL;
3630}
3631
Bram Moolenaarac6e65f2005-08-29 22:25:38 +00003632# if defined(MCH_CURSOR_SHAPE) || defined(FEAT_GUI) \
3633 || defined(FEAT_MOUSESHAPE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003634/*
3635 * Return the index into shape_table[] for the current mode.
3636 * When "mouse" is TRUE, consider indexes valid for the mouse pointer.
3637 */
3638 int
3639get_shape_idx(mouse)
3640 int mouse;
3641{
3642#ifdef FEAT_MOUSESHAPE
3643 if (mouse && (State == HITRETURN || State == ASKMORE))
3644 {
3645# ifdef FEAT_GUI
Bram Moolenaar9588a0f2005-01-08 21:45:39 +00003646 int x, y;
3647 gui_mch_getmouse(&x, &y);
3648 if (Y_2_ROW(y) == Rows - 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003649 return SHAPE_IDX_MOREL;
3650# endif
3651 return SHAPE_IDX_MORE;
3652 }
3653 if (mouse && drag_status_line)
3654 return SHAPE_IDX_SDRAG;
3655# ifdef FEAT_VERTSPLIT
3656 if (mouse && drag_sep_line)
3657 return SHAPE_IDX_VDRAG;
3658# endif
3659#endif
3660 if (!mouse && State == SHOWMATCH)
3661 return SHAPE_IDX_SM;
3662#ifdef FEAT_VREPLACE
3663 if (State & VREPLACE_FLAG)
3664 return SHAPE_IDX_R;
3665#endif
3666 if (State & REPLACE_FLAG)
3667 return SHAPE_IDX_R;
3668 if (State & INSERT)
3669 return SHAPE_IDX_I;
3670 if (State & CMDLINE)
3671 {
3672 if (cmdline_at_end())
3673 return SHAPE_IDX_C;
3674 if (cmdline_overstrike())
3675 return SHAPE_IDX_CR;
3676 return SHAPE_IDX_CI;
3677 }
3678 if (finish_op)
3679 return SHAPE_IDX_O;
3680#ifdef FEAT_VISUAL
3681 if (VIsual_active)
3682 {
3683 if (*p_sel == 'e')
3684 return SHAPE_IDX_VE;
3685 else
3686 return SHAPE_IDX_V;
3687 }
3688#endif
3689 return SHAPE_IDX_N;
3690}
Bram Moolenaarac6e65f2005-08-29 22:25:38 +00003691#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003692
3693# if defined(FEAT_MOUSESHAPE) || defined(PROTO)
3694static int old_mouse_shape = 0;
3695
3696/*
3697 * Set the mouse shape:
3698 * If "shape" is -1, use shape depending on the current mode,
3699 * depending on the current state.
3700 * If "shape" is -2, only update the shape when it's CLINE or STATUS (used
3701 * when the mouse moves off the status or command line).
3702 */
3703 void
3704update_mouseshape(shape_idx)
3705 int shape_idx;
3706{
3707 int new_mouse_shape;
3708
3709 /* Only works in GUI mode. */
Bram Moolenaar6bb68362005-03-22 23:03:44 +00003710 if (!gui.in_use || gui.starting)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003711 return;
3712
3713 /* Postpone the updating when more is to come. Speeds up executing of
3714 * mappings. */
3715 if (shape_idx == -1 && char_avail())
3716 {
3717 postponed_mouseshape = TRUE;
3718 return;
3719 }
3720
Bram Moolenaar14716812006-05-04 21:54:08 +00003721 /* When ignoring the mouse don't change shape on the statusline. */
3722 if (*p_mouse == NUL
3723 && (shape_idx == SHAPE_IDX_CLINE
3724 || shape_idx == SHAPE_IDX_STATUS
3725 || shape_idx == SHAPE_IDX_VSEP))
3726 shape_idx = -2;
3727
Bram Moolenaar071d4272004-06-13 20:20:40 +00003728 if (shape_idx == -2
3729 && old_mouse_shape != shape_table[SHAPE_IDX_CLINE].mshape
3730 && old_mouse_shape != shape_table[SHAPE_IDX_STATUS].mshape
3731 && old_mouse_shape != shape_table[SHAPE_IDX_VSEP].mshape)
3732 return;
3733 if (shape_idx < 0)
3734 new_mouse_shape = shape_table[get_shape_idx(TRUE)].mshape;
3735 else
3736 new_mouse_shape = shape_table[shape_idx].mshape;
3737 if (new_mouse_shape != old_mouse_shape)
3738 {
3739 mch_set_mouse_shape(new_mouse_shape);
3740 old_mouse_shape = new_mouse_shape;
3741 }
3742 postponed_mouseshape = FALSE;
3743}
3744# endif
3745
3746#endif /* CURSOR_SHAPE */
3747
3748
3749#ifdef FEAT_CRYPT
3750/*
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00003751 * Optional encryption support.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003752 * Mohsin Ahmed, mosh@sasi.com, 98-09-24
3753 * Based on zip/crypt sources.
3754 *
3755 * NOTE FOR USA: Since 2000 exporting this code from the USA is allowed to
3756 * most countries. There are a few exceptions, but that still should not be a
3757 * problem since this code was originally created in Europe and India.
Bram Moolenaar40e6a712010-05-16 22:32:54 +02003758 *
3759 * Blowfish addition originally made by Mohsin Ahmed,
3760 * http://www.cs.albany.edu/~mosh 2010-03-14
3761 * Based on blowfish by Bruce Schneier (http://www.schneier.com/blowfish.html)
3762 * and sha256 by Christophe Devine.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003763 */
3764
3765/* from zip.h */
3766
3767typedef unsigned short ush; /* unsigned 16-bit value */
3768typedef unsigned long ulg; /* unsigned 32-bit value */
3769
3770static void make_crc_tab __ARGS((void));
3771
Bram Moolenaard6f676d2005-06-01 21:51:55 +00003772static ulg crc_32_tab[256];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003773
3774/*
3775 * Fill the CRC table.
3776 */
3777 static void
3778make_crc_tab()
3779{
3780 ulg s,t,v;
3781 static int done = FALSE;
3782
3783 if (done)
3784 return;
3785 for (t = 0; t < 256; t++)
3786 {
3787 v = t;
3788 for (s = 0; s < 8; s++)
3789 v = (v >> 1) ^ ((v & 1) * (ulg)0xedb88320L);
3790 crc_32_tab[t] = v;
3791 }
3792 done = TRUE;
3793}
3794
3795#define CRC32(c, b) (crc_32_tab[((int)(c) ^ (b)) & 0xff] ^ ((c) >> 8))
3796
Bram Moolenaar071d4272004-06-13 20:20:40 +00003797static ulg keys[3]; /* keys defining the pseudo-random sequence */
3798
3799/*
Bram Moolenaar04c9baf2010-06-01 23:37:39 +02003800 * Return the next byte in the pseudo-random sequence.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003801 */
Bram Moolenaar04c9baf2010-06-01 23:37:39 +02003802#define DECRYPT_BYTE_ZIP(t) { \
3803 ush temp; \
3804 \
3805 temp = (ush)keys[2] | 2; \
3806 t = (int)(((unsigned)(temp * (temp ^ 1)) >> 8) & 0xff); \
Bram Moolenaar071d4272004-06-13 20:20:40 +00003807}
3808
3809/*
Bram Moolenaar04c9baf2010-06-01 23:37:39 +02003810 * Update the encryption keys with the next byte of plain text.
3811 */
3812#define UPDATE_KEYS_ZIP(c) { \
3813 keys[0] = CRC32(keys[0], (c)); \
3814 keys[1] += keys[0] & 0xff; \
3815 keys[1] = keys[1] * 134775813L + 1; \
3816 keys[2] = CRC32(keys[2], (int)(keys[1] >> 24)); \
3817}
3818
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02003819static int crypt_busy = 0;
3820static ulg saved_keys[3];
3821static int saved_crypt_method;
3822
3823/*
Bram Moolenaar49771f42010-07-20 17:32:38 +02003824 * Return int value for crypt method string:
3825 * 0 for "zip", the old method. Also for any non-valid value.
3826 * 1 for "blowfish".
3827 */
3828 int
3829crypt_method_from_string(s)
3830 char_u *s;
3831{
3832 return *s == 'b' ? 1 : 0;
3833}
3834
3835/*
3836 * Get the crypt method for buffer "buf" as a number.
3837 */
3838 int
3839get_crypt_method(buf)
3840 buf_T *buf;
3841{
3842 return crypt_method_from_string(*buf->b_p_cm == NUL ? p_cm : buf->b_p_cm);
3843}
3844
3845/*
3846 * Set the crypt method for buffer "buf" to "method" using the int value as
3847 * returned by crypt_method_from_string().
3848 */
3849 void
3850set_crypt_method(buf, method)
3851 buf_T *buf;
3852 int method;
3853{
3854 free_string_option(buf->b_p_cm);
3855 buf->b_p_cm = vim_strsave((char_u *)(method == 0 ? "zip" : "blowfish"));
3856}
3857
3858/*
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02003859 * Prepare for initializing encryption. If already doing encryption then save
3860 * the state.
Bram Moolenaar2f1e0502010-08-13 11:18:02 +02003861 * Must always be called symmetrically with crypt_pop_state().
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02003862 */
3863 void
3864crypt_push_state()
3865{
3866 if (crypt_busy == 1)
3867 {
3868 /* save the state */
3869 if (use_crypt_method == 0)
3870 {
3871 saved_keys[0] = keys[0];
3872 saved_keys[1] = keys[1];
3873 saved_keys[2] = keys[2];
3874 }
3875 else
3876 bf_crypt_save();
3877 saved_crypt_method = use_crypt_method;
3878 }
3879 else if (crypt_busy > 1)
3880 EMSG2(_(e_intern2), "crypt_push_state()");
3881 ++crypt_busy;
3882}
3883
3884/*
3885 * End encryption. If doing encryption before crypt_push_state() then restore
3886 * the saved state.
Bram Moolenaar2f1e0502010-08-13 11:18:02 +02003887 * Must always be called symmetrically with crypt_push_state().
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02003888 */
3889 void
3890crypt_pop_state()
3891{
3892 --crypt_busy;
3893 if (crypt_busy == 1)
3894 {
3895 use_crypt_method = saved_crypt_method;
3896 if (use_crypt_method == 0)
3897 {
3898 keys[0] = saved_keys[0];
3899 keys[1] = saved_keys[1];
3900 keys[2] = saved_keys[2];
3901 }
3902 else
3903 bf_crypt_restore();
3904 }
3905}
3906
Bram Moolenaar04c9baf2010-06-01 23:37:39 +02003907/*
3908 * Encrypt "from[len]" into "to[len]".
3909 * "from" and "to" can be equal to encrypt in place.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003910 */
Bram Moolenaar40e6a712010-05-16 22:32:54 +02003911 void
Bram Moolenaar04c9baf2010-06-01 23:37:39 +02003912crypt_encode(from, len, to)
3913 char_u *from;
3914 size_t len;
3915 char_u *to;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003916{
Bram Moolenaar04c9baf2010-06-01 23:37:39 +02003917 size_t i;
3918 int ztemp, t;
3919
3920 if (use_crypt_method == 0)
3921 for (i = 0; i < len; ++i)
3922 {
3923 ztemp = from[i];
3924 DECRYPT_BYTE_ZIP(t);
3925 UPDATE_KEYS_ZIP(ztemp);
3926 to[i] = t ^ ztemp;
3927 }
Bram Moolenaar40e6a712010-05-16 22:32:54 +02003928 else
Bram Moolenaarbbd6afe2010-06-02 20:32:23 +02003929 bf_crypt_encode(from, len, to);
Bram Moolenaar04c9baf2010-06-01 23:37:39 +02003930}
3931
3932/*
3933 * Decrypt "ptr[len]" in place.
3934 */
3935 void
3936crypt_decode(ptr, len)
3937 char_u *ptr;
3938 long len;
3939{
3940 char_u *p;
3941
3942 if (use_crypt_method == 0)
3943 for (p = ptr; p < ptr + len; ++p)
3944 {
3945 ush temp;
3946
3947 temp = (ush)keys[2] | 2;
3948 temp = (int)(((unsigned)(temp * (temp ^ 1)) >> 8) & 0xff);
3949 UPDATE_KEYS_ZIP(*p ^= temp);
3950 }
3951 else
Bram Moolenaarbbd6afe2010-06-02 20:32:23 +02003952 bf_crypt_decode(ptr, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003953}
3954
3955/*
3956 * Initialize the encryption keys and the random header according to
3957 * the given password.
3958 * If "passwd" is NULL or empty, don't do anything.
3959 */
3960 void
3961crypt_init_keys(passwd)
3962 char_u *passwd; /* password string with which to modify keys */
3963{
3964 if (passwd != NULL && *passwd != NUL)
3965 {
Bram Moolenaar04c9baf2010-06-01 23:37:39 +02003966 if (use_crypt_method == 0)
Bram Moolenaarbbd6afe2010-06-02 20:32:23 +02003967 {
3968 char_u *p;
3969
3970 make_crc_tab();
3971 keys[0] = 305419896L;
3972 keys[1] = 591751049L;
3973 keys[2] = 878082192L;
3974 for (p = passwd; *p!= NUL; ++p)
Bram Moolenaar04c9baf2010-06-01 23:37:39 +02003975 {
Bram Moolenaarbbd6afe2010-06-02 20:32:23 +02003976 UPDATE_KEYS_ZIP((int)*p);
Bram Moolenaar04c9baf2010-06-01 23:37:39 +02003977 }
Bram Moolenaarbbd6afe2010-06-02 20:32:23 +02003978 }
Bram Moolenaar04c9baf2010-06-01 23:37:39 +02003979 else
Bram Moolenaarbbd6afe2010-06-02 20:32:23 +02003980 bf_crypt_init_keys(passwd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003981 }
3982}
3983
3984/*
Bram Moolenaar40e6a712010-05-16 22:32:54 +02003985 * Free an allocated crypt key. Clear the text to make sure it doesn't stay
3986 * in memory anywhere.
3987 */
3988 void
3989free_crypt_key(key)
3990 char_u *key;
3991{
3992 char_u *p;
3993
3994 if (key != NULL)
3995 {
3996 for (p = key; *p != NUL; ++p)
Bram Moolenaarbe18d102010-05-22 21:37:53 +02003997 *p = 0;
Bram Moolenaar40e6a712010-05-16 22:32:54 +02003998 vim_free(key);
3999 }
4000}
4001
4002/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004003 * Ask the user for a crypt key.
Bram Moolenaar40e6a712010-05-16 22:32:54 +02004004 * When "store" is TRUE, the new key is stored in the 'key' option, and the
Bram Moolenaar071d4272004-06-13 20:20:40 +00004005 * 'key' option value is returned: Don't free it.
4006 * When "store" is FALSE, the typed key is returned in allocated memory.
4007 * Returns NULL on failure.
4008 */
4009 char_u *
4010get_crypt_key(store, twice)
4011 int store;
4012 int twice; /* Ask for the key twice. */
4013{
4014 char_u *p1, *p2 = NULL;
4015 int round;
4016
4017 for (round = 0; ; ++round)
4018 {
4019 cmdline_star = TRUE;
4020 cmdline_row = msg_row;
4021 p1 = getcmdline_prompt(NUL, round == 0
4022 ? (char_u *)_("Enter encryption key: ")
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00004023 : (char_u *)_("Enter same key again: "), 0, EXPAND_NOTHING,
4024 NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004025 cmdline_star = FALSE;
4026
4027 if (p1 == NULL)
4028 break;
4029
4030 if (round == twice)
4031 {
4032 if (p2 != NULL && STRCMP(p1, p2) != 0)
4033 {
4034 MSG(_("Keys don't match!"));
Bram Moolenaar40e6a712010-05-16 22:32:54 +02004035 free_crypt_key(p1);
4036 free_crypt_key(p2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004037 p2 = NULL;
4038 round = -1; /* do it again */
4039 continue;
4040 }
Bram Moolenaar40e6a712010-05-16 22:32:54 +02004041
Bram Moolenaar071d4272004-06-13 20:20:40 +00004042 if (store)
4043 {
4044 set_option_value((char_u *)"key", 0L, p1, OPT_LOCAL);
Bram Moolenaar40e6a712010-05-16 22:32:54 +02004045 free_crypt_key(p1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004046 p1 = curbuf->b_p_key;
4047 }
4048 break;
4049 }
4050 p2 = p1;
4051 }
4052
4053 /* since the user typed this, no need to wait for return */
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02004054 if (msg_didout)
4055 msg_putchar('\n');
Bram Moolenaare4ce65d2010-08-04 20:12:32 +02004056 need_wait_return = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004057 msg_didout = FALSE;
4058
Bram Moolenaar40e6a712010-05-16 22:32:54 +02004059 free_crypt_key(p2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004060 return p1;
4061}
4062
4063#endif /* FEAT_CRYPT */
4064
4065/* TODO: make some #ifdef for this */
4066/*--------[ file searching ]-------------------------------------------------*/
4067/*
4068 * File searching functions for 'path', 'tags' and 'cdpath' options.
4069 * External visible functions:
4070 * vim_findfile_init() creates/initialises the search context
4071 * vim_findfile_free_visited() free list of visited files/dirs of search
4072 * context
4073 * vim_findfile() find a file in the search context
4074 * vim_findfile_cleanup() cleanup/free search context created by
4075 * vim_findfile_init()
4076 *
4077 * All static functions and variables start with 'ff_'
4078 *
4079 * In general it works like this:
4080 * First you create yourself a search context by calling vim_findfile_init().
4081 * It is possible to give a search context from a previous call to
4082 * vim_findfile_init(), so it can be reused. After this you call vim_findfile()
4083 * until you are satisfied with the result or it returns NULL. On every call it
4084 * returns the next file which matches the conditions given to
4085 * vim_findfile_init(). If it doesn't find a next file it returns NULL.
4086 *
4087 * It is possible to call vim_findfile_init() again to reinitialise your search
4088 * with some new parameters. Don't forget to pass your old search context to
4089 * it, so it can reuse it and especially reuse the list of already visited
4090 * directories. If you want to delete the list of already visited directories
4091 * simply call vim_findfile_free_visited().
4092 *
4093 * When you are done call vim_findfile_cleanup() to free the search context.
4094 *
4095 * The function vim_findfile_init() has a long comment, which describes the
4096 * needed parameters.
4097 *
4098 *
4099 *
4100 * ATTENTION:
4101 * ==========
Bram Moolenaar77f66d62007-02-20 02:16:18 +00004102 * Also we use an allocated search context here, this functions are NOT
Bram Moolenaar071d4272004-06-13 20:20:40 +00004103 * thread-safe!!!!!
4104 *
4105 * To minimize parameter passing (or because I'm to lazy), only the
4106 * external visible functions get a search context as a parameter. This is
4107 * then assigned to a static global, which is used throughout the local
4108 * functions.
4109 */
4110
4111/*
4112 * type for the directory search stack
4113 */
4114typedef struct ff_stack
4115{
4116 struct ff_stack *ffs_prev;
4117
4118 /* the fix part (no wildcards) and the part containing the wildcards
4119 * of the search path
4120 */
4121 char_u *ffs_fix_path;
4122#ifdef FEAT_PATH_EXTRA
4123 char_u *ffs_wc_path;
4124#endif
4125
4126 /* files/dirs found in the above directory, matched by the first wildcard
4127 * of wc_part
4128 */
4129 char_u **ffs_filearray;
4130 int ffs_filearray_size;
4131 char_u ffs_filearray_cur; /* needed for partly handled dirs */
4132
4133 /* to store status of partly handled directories
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004134 * 0: we work on this directory for the first time
Bram Moolenaar071d4272004-06-13 20:20:40 +00004135 * 1: this directory was partly searched in an earlier step
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004136 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004137 int ffs_stage;
4138
4139 /* How deep are we in the directory tree?
4140 * Counts backward from value of level parameter to vim_findfile_init
4141 */
4142 int ffs_level;
4143
4144 /* Did we already expand '**' to an empty string? */
4145 int ffs_star_star_empty;
4146} ff_stack_T;
4147
4148/*
4149 * type for already visited directories or files.
4150 */
4151typedef struct ff_visited
4152{
4153 struct ff_visited *ffv_next;
4154
4155#ifdef FEAT_PATH_EXTRA
4156 /* Visited directories are different if the wildcard string are
4157 * different. So we have to save it.
4158 */
4159 char_u *ffv_wc_path;
4160#endif
4161 /* for unix use inode etc for comparison (needed because of links), else
4162 * use filename.
4163 */
4164#ifdef UNIX
Bram Moolenaare1fbddc2009-05-16 19:07:03 +00004165 int ffv_dev_valid; /* ffv_dev and ffv_ino were set */
4166 dev_t ffv_dev; /* device number */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004167 ino_t ffv_ino; /* inode number */
4168#endif
4169 /* The memory for this struct is allocated according to the length of
4170 * ffv_fname.
4171 */
4172 char_u ffv_fname[1]; /* actually longer */
4173} ff_visited_T;
4174
4175/*
4176 * We might have to manage several visited lists during a search.
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00004177 * This is especially needed for the tags option. If tags is set to:
Bram Moolenaar071d4272004-06-13 20:20:40 +00004178 * "./++/tags,./++/TAGS,++/tags" (replace + with *)
4179 * So we have to do 3 searches:
4180 * 1) search from the current files directory downward for the file "tags"
4181 * 2) search from the current files directory downward for the file "TAGS"
4182 * 3) search from Vims current directory downwards for the file "tags"
4183 * As you can see, the first and the third search are for the same file, so for
4184 * the third search we can use the visited list of the first search. For the
4185 * second search we must start from a empty visited list.
4186 * The struct ff_visited_list_hdr is used to manage a linked list of already
4187 * visited lists.
4188 */
4189typedef struct ff_visited_list_hdr
4190{
4191 struct ff_visited_list_hdr *ffvl_next;
4192
4193 /* the filename the attached visited list is for */
4194 char_u *ffvl_filename;
4195
4196 ff_visited_T *ffvl_visited_list;
4197
4198} ff_visited_list_hdr_T;
4199
4200
4201/*
4202 * '**' can be expanded to several directory levels.
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00004203 * Set the default maximum depth.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004204 */
4205#define FF_MAX_STAR_STAR_EXPAND ((char_u)30)
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004206
Bram Moolenaar071d4272004-06-13 20:20:40 +00004207/*
4208 * The search context:
4209 * ffsc_stack_ptr: the stack for the dirs to search
4210 * ffsc_visited_list: the currently active visited list
4211 * ffsc_dir_visited_list: the currently active visited list for search dirs
4212 * ffsc_visited_lists_list: the list of all visited lists
4213 * ffsc_dir_visited_lists_list: the list of all visited lists for search dirs
4214 * ffsc_file_to_search: the file to search for
4215 * ffsc_start_dir: the starting directory, if search path was relative
4216 * ffsc_fix_path: the fix part of the given path (without wildcards)
4217 * Needed for upward search.
4218 * ffsc_wc_path: the part of the given path containing wildcards
4219 * ffsc_level: how many levels of dirs to search downwards
4220 * ffsc_stopdirs_v: array of stop directories for upward search
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004221 * ffsc_find_what: FINDFILE_BOTH, FINDFILE_DIR or FINDFILE_FILE
Bram Moolenaar463ee342010-08-08 18:17:52 +02004222 * ffsc_tagfile: searching for tags file, don't use 'suffixesadd'
Bram Moolenaar071d4272004-06-13 20:20:40 +00004223 */
4224typedef struct ff_search_ctx_T
4225{
4226 ff_stack_T *ffsc_stack_ptr;
4227 ff_visited_list_hdr_T *ffsc_visited_list;
4228 ff_visited_list_hdr_T *ffsc_dir_visited_list;
4229 ff_visited_list_hdr_T *ffsc_visited_lists_list;
4230 ff_visited_list_hdr_T *ffsc_dir_visited_lists_list;
4231 char_u *ffsc_file_to_search;
4232 char_u *ffsc_start_dir;
4233 char_u *ffsc_fix_path;
4234#ifdef FEAT_PATH_EXTRA
4235 char_u *ffsc_wc_path;
4236 int ffsc_level;
4237 char_u **ffsc_stopdirs_v;
4238#endif
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004239 int ffsc_find_what;
Bram Moolenaar463ee342010-08-08 18:17:52 +02004240 int ffsc_tagfile;
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00004241} ff_search_ctx_T;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004242
Bram Moolenaar071d4272004-06-13 20:20:40 +00004243/* locally needed functions */
4244#ifdef FEAT_PATH_EXTRA
4245static int ff_check_visited __ARGS((ff_visited_T **, char_u *, char_u *));
4246#else
4247static int ff_check_visited __ARGS((ff_visited_T **, char_u *));
4248#endif
4249static void vim_findfile_free_visited_list __ARGS((ff_visited_list_hdr_T **list_headp));
4250static void ff_free_visited_list __ARGS((ff_visited_T *vl));
4251static ff_visited_list_hdr_T* ff_get_visited_list __ARGS((char_u *, ff_visited_list_hdr_T **list_headp));
4252#ifdef FEAT_PATH_EXTRA
4253static int ff_wc_equal __ARGS((char_u *s1, char_u *s2));
4254#endif
4255
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004256static void ff_push __ARGS((ff_search_ctx_T *search_ctx, ff_stack_T *stack_ptr));
4257static ff_stack_T *ff_pop __ARGS((ff_search_ctx_T *search_ctx));
4258static void ff_clear __ARGS((ff_search_ctx_T *search_ctx));
4259static void ff_free_stack_element __ARGS((ff_stack_T *stack_ptr));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004260#ifdef FEAT_PATH_EXTRA
4261static ff_stack_T *ff_create_stack_element __ARGS((char_u *, char_u *, int, int));
4262#else
4263static ff_stack_T *ff_create_stack_element __ARGS((char_u *, int, int));
4264#endif
4265#ifdef FEAT_PATH_EXTRA
4266static int ff_path_in_stoplist __ARGS((char_u *, int, char_u **));
4267#endif
4268
Bram Moolenaar071d4272004-06-13 20:20:40 +00004269#if 0
4270/*
4271 * if someone likes findfirst/findnext, here are the functions
4272 * NOT TESTED!!
4273 */
4274
4275static void *ff_fn_search_context = NULL;
4276
4277 char_u *
4278vim_findfirst(path, filename, level)
4279 char_u *path;
4280 char_u *filename;
4281 int level;
4282{
4283 ff_fn_search_context =
4284 vim_findfile_init(path, filename, NULL, level, TRUE, FALSE,
4285 ff_fn_search_context, rel_fname);
4286 if (NULL == ff_fn_search_context)
4287 return NULL;
4288 else
4289 return vim_findnext()
4290}
4291
4292 char_u *
4293vim_findnext()
4294{
4295 char_u *ret = vim_findfile(ff_fn_search_context);
4296
4297 if (NULL == ret)
4298 {
4299 vim_findfile_cleanup(ff_fn_search_context);
4300 ff_fn_search_context = NULL;
4301 }
4302 return ret;
4303}
4304#endif
4305
4306/*
Bram Moolenaare2b590e2010-08-08 18:29:48 +02004307 * Initialization routine for vim_findfile().
Bram Moolenaar071d4272004-06-13 20:20:40 +00004308 *
Bram Moolenaarbe18d102010-05-22 21:37:53 +02004309 * Returns the newly allocated search context or NULL if an error occurred.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004310 *
4311 * Don't forget to clean up by calling vim_findfile_cleanup() if you are done
4312 * with the search context.
4313 *
4314 * Find the file 'filename' in the directory 'path'.
4315 * The parameter 'path' may contain wildcards. If so only search 'level'
4316 * directories deep. The parameter 'level' is the absolute maximum and is
4317 * not related to restricts given to the '**' wildcard. If 'level' is 100
4318 * and you use '**200' vim_findfile() will stop after 100 levels.
4319 *
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004320 * 'filename' cannot contain wildcards! It is used as-is, no backslashes to
4321 * escape special characters.
4322 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00004323 * If 'stopdirs' is not NULL and nothing is found downward, the search is
4324 * restarted on the next higher directory level. This is repeated until the
4325 * start-directory of a search is contained in 'stopdirs'. 'stopdirs' has the
4326 * format ";*<dirname>*\(;<dirname>\)*;\=$".
4327 *
4328 * If the 'path' is relative, the starting dir for the search is either VIM's
4329 * current dir or if the path starts with "./" the current files dir.
Bram Moolenaarbe18d102010-05-22 21:37:53 +02004330 * If the 'path' is absolute, the starting dir is that part of the path before
Bram Moolenaar071d4272004-06-13 20:20:40 +00004331 * the first wildcard.
4332 *
4333 * Upward search is only done on the starting dir.
4334 *
4335 * If 'free_visited' is TRUE the list of already visited files/directories is
4336 * cleared. Set this to FALSE if you just want to search from another
4337 * directory, but want to be sure that no directory from a previous search is
4338 * searched again. This is useful if you search for a file at different places.
4339 * The list of visited files/dirs can also be cleared with the function
4340 * vim_findfile_free_visited().
4341 *
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004342 * Set the parameter 'find_what' to FINDFILE_DIR if you want to search for
4343 * directories only, FINDFILE_FILE for files only, FINDFILE_BOTH for both.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004344 *
4345 * A search context returned by a previous call to vim_findfile_init() can be
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004346 * passed in the parameter "search_ctx_arg". This context is reused and
4347 * reinitialized with the new parameters. The list of already visited
Bram Moolenaar071d4272004-06-13 20:20:40 +00004348 * directories from this context is only deleted if the parameter
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004349 * "free_visited" is true. Be aware that the passed "search_ctx_arg" is freed
4350 * if the reinitialization fails.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004351 *
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004352 * If you don't have a search context from a previous call "search_ctx_arg"
4353 * must be NULL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004354 *
4355 * This function silently ignores a few errors, vim_findfile() will have
4356 * limited functionality then.
4357 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004358 void *
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004359vim_findfile_init(path, filename, stopdirs, level, free_visited, find_what,
4360 search_ctx_arg, tagfile, rel_fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004361 char_u *path;
4362 char_u *filename;
Bram Moolenaare1fbddc2009-05-16 19:07:03 +00004363 char_u *stopdirs UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004364 int level;
4365 int free_visited;
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004366 int find_what;
4367 void *search_ctx_arg;
Bram Moolenaar463ee342010-08-08 18:17:52 +02004368 int tagfile; /* expanding names of tags files */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004369 char_u *rel_fname; /* file name to use for "." */
4370{
4371#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004372 char_u *wc_part;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004373#endif
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004374 ff_stack_T *sptr;
4375 ff_search_ctx_T *search_ctx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004376
4377 /* If a search context is given by the caller, reuse it, else allocate a
4378 * new one.
4379 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004380 if (search_ctx_arg != NULL)
4381 search_ctx = search_ctx_arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004382 else
4383 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004384 search_ctx = (ff_search_ctx_T*)alloc((unsigned)sizeof(ff_search_ctx_T));
4385 if (search_ctx == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004386 goto error_return;
Bram Moolenaar7db5fc82010-05-24 11:59:29 +02004387 vim_memset(search_ctx, 0, sizeof(ff_search_ctx_T));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004388 }
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004389 search_ctx->ffsc_find_what = find_what;
Bram Moolenaar463ee342010-08-08 18:17:52 +02004390 search_ctx->ffsc_tagfile = tagfile;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004391
4392 /* clear the search context, but NOT the visited lists */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004393 ff_clear(search_ctx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004394
4395 /* clear visited list if wanted */
4396 if (free_visited == TRUE)
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004397 vim_findfile_free_visited(search_ctx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004398 else
4399 {
4400 /* Reuse old visited lists. Get the visited list for the given
4401 * filename. If no list for the current filename exists, creates a new
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004402 * one. */
4403 search_ctx->ffsc_visited_list = ff_get_visited_list(filename,
4404 &search_ctx->ffsc_visited_lists_list);
4405 if (search_ctx->ffsc_visited_list == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004406 goto error_return;
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004407 search_ctx->ffsc_dir_visited_list = ff_get_visited_list(filename,
4408 &search_ctx->ffsc_dir_visited_lists_list);
4409 if (search_ctx->ffsc_dir_visited_list == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004410 goto error_return;
4411 }
4412
4413 if (ff_expand_buffer == NULL)
4414 {
4415 ff_expand_buffer = (char_u*)alloc(MAXPATHL);
4416 if (ff_expand_buffer == NULL)
4417 goto error_return;
4418 }
4419
4420 /* Store information on starting dir now if path is relative.
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00004421 * If path is absolute, we do that later. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004422 if (path[0] == '.'
4423 && (vim_ispathsep(path[1]) || path[1] == NUL)
4424 && (!tagfile || vim_strchr(p_cpo, CPO_DOTTAG) == NULL)
4425 && rel_fname != NULL)
4426 {
4427 int len = (int)(gettail(rel_fname) - rel_fname);
4428
4429 if (!vim_isAbsName(rel_fname) && len + 1 < MAXPATHL)
4430 {
4431 /* Make the start dir an absolute path name. */
Bram Moolenaarbbebc852005-07-18 21:47:53 +00004432 vim_strncpy(ff_expand_buffer, rel_fname, len);
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004433 search_ctx->ffsc_start_dir = FullName_save(ff_expand_buffer, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004434 }
4435 else
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004436 search_ctx->ffsc_start_dir = vim_strnsave(rel_fname, len);
4437 if (search_ctx->ffsc_start_dir == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004438 goto error_return;
4439 if (*++path != NUL)
4440 ++path;
4441 }
4442 else if (*path == NUL || !vim_isAbsName(path))
4443 {
4444#ifdef BACKSLASH_IN_FILENAME
4445 /* "c:dir" needs "c:" to be expanded, otherwise use current dir */
4446 if (*path != NUL && path[1] == ':')
4447 {
4448 char_u drive[3];
4449
4450 drive[0] = path[0];
4451 drive[1] = ':';
4452 drive[2] = NUL;
4453 if (vim_FullName(drive, ff_expand_buffer, MAXPATHL, TRUE) == FAIL)
4454 goto error_return;
4455 path += 2;
4456 }
4457 else
4458#endif
4459 if (mch_dirname(ff_expand_buffer, MAXPATHL) == FAIL)
4460 goto error_return;
4461
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004462 search_ctx->ffsc_start_dir = vim_strsave(ff_expand_buffer);
4463 if (search_ctx->ffsc_start_dir == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004464 goto error_return;
4465
4466#ifdef BACKSLASH_IN_FILENAME
4467 /* A path that starts with "/dir" is relative to the drive, not to the
4468 * directory (but not for "//machine/dir"). Only use the drive name. */
4469 if ((*path == '/' || *path == '\\')
4470 && path[1] != path[0]
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004471 && search_ctx->ffsc_start_dir[1] == ':')
4472 search_ctx->ffsc_start_dir[2] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004473#endif
4474 }
4475
4476#ifdef FEAT_PATH_EXTRA
4477 /*
4478 * If stopdirs are given, split them into an array of pointers.
4479 * If this fails (mem allocation), there is no upward search at all or a
4480 * stop directory is not recognized -> continue silently.
4481 * If stopdirs just contains a ";" or is empty,
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004482 * search_ctx->ffsc_stopdirs_v will only contain a NULL pointer. This
Bram Moolenaar071d4272004-06-13 20:20:40 +00004483 * is handled as unlimited upward search. See function
4484 * ff_path_in_stoplist() for details.
4485 */
4486 if (stopdirs != NULL)
4487 {
4488 char_u *walker = stopdirs;
4489 int dircount;
4490
4491 while (*walker == ';')
4492 walker++;
4493
4494 dircount = 1;
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004495 search_ctx->ffsc_stopdirs_v =
4496 (char_u **)alloc((unsigned)sizeof(char_u *));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004497
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004498 if (search_ctx->ffsc_stopdirs_v != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004499 {
4500 do
4501 {
4502 char_u *helper;
4503 void *ptr;
4504
4505 helper = walker;
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004506 ptr = vim_realloc(search_ctx->ffsc_stopdirs_v,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004507 (dircount + 1) * sizeof(char_u *));
4508 if (ptr)
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004509 search_ctx->ffsc_stopdirs_v = ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004510 else
4511 /* ignore, keep what we have and continue */
4512 break;
4513 walker = vim_strchr(walker, ';');
4514 if (walker)
4515 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004516 search_ctx->ffsc_stopdirs_v[dircount-1] =
4517 vim_strnsave(helper, (int)(walker - helper));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004518 walker++;
4519 }
4520 else
4521 /* this might be "", which means ascent till top
4522 * of directory tree.
4523 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004524 search_ctx->ffsc_stopdirs_v[dircount-1] =
4525 vim_strsave(helper);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004526
4527 dircount++;
4528
4529 } while (walker != NULL);
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004530 search_ctx->ffsc_stopdirs_v[dircount-1] = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004531 }
4532 }
4533#endif
4534
4535#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004536 search_ctx->ffsc_level = level;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004537
4538 /* split into:
4539 * -fix path
4540 * -wildcard_stuff (might be NULL)
4541 */
4542 wc_part = vim_strchr(path, '*');
4543 if (wc_part != NULL)
4544 {
4545 int llevel;
4546 int len;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00004547 char *errpt;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004548
4549 /* save the fix part of the path */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004550 search_ctx->ffsc_fix_path = vim_strnsave(path, (int)(wc_part - path));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004551
4552 /*
4553 * copy wc_path and add restricts to the '**' wildcard.
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00004554 * The octet after a '**' is used as a (binary) counter.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004555 * So '**3' is transposed to '**^C' ('^C' is ASCII value 3)
4556 * or '**76' is transposed to '**N'( 'N' is ASCII value 76).
4557 * For EBCDIC you get different character values.
4558 * If no restrict is given after '**' the default is used.
Bram Moolenaar21160b92009-11-11 15:56:10 +00004559 * Due to this technique the path looks awful if you print it as a
Bram Moolenaar071d4272004-06-13 20:20:40 +00004560 * string.
4561 */
4562 len = 0;
4563 while (*wc_part != NUL)
4564 {
4565 if (STRNCMP(wc_part, "**", 2) == 0)
4566 {
4567 ff_expand_buffer[len++] = *wc_part++;
4568 ff_expand_buffer[len++] = *wc_part++;
4569
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00004570 llevel = strtol((char *)wc_part, &errpt, 10);
4571 if ((char_u *)errpt != wc_part && llevel > 0 && llevel < 255)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004572 ff_expand_buffer[len++] = llevel;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00004573 else if ((char_u *)errpt != wc_part && llevel == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004574 /* restrict is 0 -> remove already added '**' */
4575 len -= 2;
4576 else
4577 ff_expand_buffer[len++] = FF_MAX_STAR_STAR_EXPAND;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00004578 wc_part = (char_u *)errpt;
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00004579 if (*wc_part != NUL && !vim_ispathsep(*wc_part))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004580 {
4581 EMSG2(_("E343: Invalid path: '**[number]' must be at the end of the path or be followed by '%s'."), PATHSEPSTR);
4582 goto error_return;
4583 }
4584 }
4585 else
4586 ff_expand_buffer[len++] = *wc_part++;
4587 }
4588 ff_expand_buffer[len] = NUL;
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004589 search_ctx->ffsc_wc_path = vim_strsave(ff_expand_buffer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004590
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004591 if (search_ctx->ffsc_wc_path == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004592 goto error_return;
4593 }
4594 else
4595#endif
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004596 search_ctx->ffsc_fix_path = vim_strsave(path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004597
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004598 if (search_ctx->ffsc_start_dir == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004599 {
4600 /* store the fix part as startdir.
4601 * This is needed if the parameter path is fully qualified.
4602 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004603 search_ctx->ffsc_start_dir = vim_strsave(search_ctx->ffsc_fix_path);
Bram Moolenaara9d52e32010-07-31 16:44:19 +02004604 if (search_ctx->ffsc_start_dir == NULL)
4605 goto error_return;
4606 search_ctx->ffsc_fix_path[0] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004607 }
4608
4609 /* create an absolute path */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004610 STRCPY(ff_expand_buffer, search_ctx->ffsc_start_dir);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004611 add_pathsep(ff_expand_buffer);
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004612 STRCAT(ff_expand_buffer, search_ctx->ffsc_fix_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004613 add_pathsep(ff_expand_buffer);
4614
4615 sptr = ff_create_stack_element(ff_expand_buffer,
4616#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004617 search_ctx->ffsc_wc_path,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004618#endif
4619 level, 0);
4620
4621 if (sptr == NULL)
4622 goto error_return;
4623
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004624 ff_push(search_ctx, sptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004625
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004626 search_ctx->ffsc_file_to_search = vim_strsave(filename);
4627 if (search_ctx->ffsc_file_to_search == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004628 goto error_return;
4629
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004630 return search_ctx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004631
4632error_return:
4633 /*
4634 * We clear the search context now!
4635 * Even when the caller gave us a (perhaps valid) context we free it here,
4636 * as we might have already destroyed it.
4637 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004638 vim_findfile_cleanup(search_ctx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004639 return NULL;
4640}
4641
4642#if defined(FEAT_PATH_EXTRA) || defined(PROTO)
4643/*
4644 * Get the stopdir string. Check that ';' is not escaped.
4645 */
4646 char_u *
4647vim_findfile_stopdir(buf)
4648 char_u *buf;
4649{
4650 char_u *r_ptr = buf;
4651
4652 while (*r_ptr != NUL && *r_ptr != ';')
4653 {
4654 if (r_ptr[0] == '\\' && r_ptr[1] == ';')
4655 {
4656 /* overwrite the escape char,
4657 * use STRLEN(r_ptr) to move the trailing '\0'
4658 */
Bram Moolenaar446cb832008-06-24 21:56:24 +00004659 STRMOVE(r_ptr, r_ptr + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004660 r_ptr++;
4661 }
4662 r_ptr++;
4663 }
4664 if (*r_ptr == ';')
4665 {
4666 *r_ptr = 0;
4667 r_ptr++;
4668 }
4669 else if (*r_ptr == NUL)
4670 r_ptr = NULL;
4671 return r_ptr;
4672}
4673#endif
4674
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004675/*
4676 * Clean up the given search context. Can handle a NULL pointer.
4677 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004678 void
4679vim_findfile_cleanup(ctx)
4680 void *ctx;
4681{
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00004682 if (ctx == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004683 return;
4684
Bram Moolenaar071d4272004-06-13 20:20:40 +00004685 vim_findfile_free_visited(ctx);
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004686 ff_clear(ctx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004687 vim_free(ctx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004688}
4689
4690/*
4691 * Find a file in a search context.
4692 * The search context was created with vim_findfile_init() above.
4693 * Return a pointer to an allocated file name or NULL if nothing found.
4694 * To get all matching files call this function until you get NULL.
4695 *
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00004696 * If the passed search_context is NULL, NULL is returned.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004697 *
4698 * The search algorithm is depth first. To change this replace the
4699 * stack with a list (don't forget to leave partly searched directories on the
4700 * top of the list).
4701 */
4702 char_u *
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004703vim_findfile(search_ctx_arg)
4704 void *search_ctx_arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004705{
4706 char_u *file_path;
4707#ifdef FEAT_PATH_EXTRA
4708 char_u *rest_of_wildcards;
4709 char_u *path_end = NULL;
4710#endif
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004711 ff_stack_T *stackp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004712#if defined(FEAT_SEARCHPATH) || defined(FEAT_PATH_EXTRA)
4713 int len;
4714#endif
4715 int i;
4716 char_u *p;
4717#ifdef FEAT_SEARCHPATH
4718 char_u *suf;
4719#endif
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004720 ff_search_ctx_T *search_ctx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004721
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004722 if (search_ctx_arg == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004723 return NULL;
4724
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004725 search_ctx = (ff_search_ctx_T *)search_ctx_arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004726
4727 /*
4728 * filepath is used as buffer for various actions and as the storage to
4729 * return a found filename.
4730 */
4731 if ((file_path = alloc((int)MAXPATHL)) == NULL)
4732 return NULL;
4733
4734#ifdef FEAT_PATH_EXTRA
4735 /* store the end of the start dir -- needed for upward search */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004736 if (search_ctx->ffsc_start_dir != NULL)
4737 path_end = &search_ctx->ffsc_start_dir[
4738 STRLEN(search_ctx->ffsc_start_dir)];
Bram Moolenaar071d4272004-06-13 20:20:40 +00004739#endif
4740
4741#ifdef FEAT_PATH_EXTRA
4742 /* upward search loop */
4743 for (;;)
4744 {
4745#endif
4746 /* downward search loop */
4747 for (;;)
4748 {
4749 /* check if user user wants to stop the search*/
4750 ui_breakcheck();
4751 if (got_int)
4752 break;
4753
4754 /* get directory to work on from stack */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004755 stackp = ff_pop(search_ctx);
4756 if (stackp == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004757 break;
4758
4759 /*
4760 * TODO: decide if we leave this test in
4761 *
4762 * GOOD: don't search a directory(-tree) twice.
4763 * BAD: - check linked list for every new directory entered.
4764 * - check for double files also done below
4765 *
4766 * Here we check if we already searched this directory.
4767 * We already searched a directory if:
4768 * 1) The directory is the same.
4769 * 2) We would use the same wildcard string.
4770 *
4771 * Good if you have links on same directory via several ways
4772 * or you have selfreferences in directories (e.g. SuSE Linux 6.3:
4773 * /etc/rc.d/init.d is linked to /etc/rc.d -> endless loop)
4774 *
4775 * This check is only needed for directories we work on for the
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004776 * first time (hence stackp->ff_filearray == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004777 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004778 if (stackp->ffs_filearray == NULL
4779 && ff_check_visited(&search_ctx->ffsc_dir_visited_list
Bram Moolenaar071d4272004-06-13 20:20:40 +00004780 ->ffvl_visited_list,
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004781 stackp->ffs_fix_path
Bram Moolenaar071d4272004-06-13 20:20:40 +00004782#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004783 , stackp->ffs_wc_path
Bram Moolenaar071d4272004-06-13 20:20:40 +00004784#endif
4785 ) == FAIL)
4786 {
4787#ifdef FF_VERBOSE
4788 if (p_verbose >= 5)
4789 {
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004790 verbose_enter_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004791 smsg((char_u *)"Already Searched: %s (%s)",
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004792 stackp->ffs_fix_path, stackp->ffs_wc_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004793 /* don't overwrite this either */
4794 msg_puts((char_u *)"\n");
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004795 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004796 }
4797#endif
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004798 ff_free_stack_element(stackp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004799 continue;
4800 }
4801#ifdef FF_VERBOSE
4802 else if (p_verbose >= 5)
4803 {
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004804 verbose_enter_scroll();
Bram Moolenaar051b7822005-05-19 21:00:46 +00004805 smsg((char_u *)"Searching: %s (%s)",
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004806 stackp->ffs_fix_path, stackp->ffs_wc_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004807 /* don't overwrite this either */
4808 msg_puts((char_u *)"\n");
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004809 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004810 }
4811#endif
4812
4813 /* check depth */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004814 if (stackp->ffs_level <= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004815 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004816 ff_free_stack_element(stackp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004817 continue;
4818 }
4819
4820 file_path[0] = NUL;
4821
4822 /*
4823 * If no filearray till now expand wildcards
4824 * The function expand_wildcards() can handle an array of paths
4825 * and all possible expands are returned in one array. We use this
4826 * to handle the expansion of '**' into an empty string.
4827 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004828 if (stackp->ffs_filearray == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004829 {
4830 char_u *dirptrs[2];
4831
4832 /* we use filepath to build the path expand_wildcards() should
4833 * expand.
4834 */
4835 dirptrs[0] = file_path;
4836 dirptrs[1] = NULL;
4837
4838 /* if we have a start dir copy it in */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004839 if (!vim_isAbsName(stackp->ffs_fix_path)
4840 && search_ctx->ffsc_start_dir)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004841 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004842 STRCPY(file_path, search_ctx->ffsc_start_dir);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004843 add_pathsep(file_path);
4844 }
4845
4846 /* append the fix part of the search path */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004847 STRCAT(file_path, stackp->ffs_fix_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004848 add_pathsep(file_path);
4849
4850#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004851 rest_of_wildcards = stackp->ffs_wc_path;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004852 if (*rest_of_wildcards != NUL)
4853 {
4854 len = (int)STRLEN(file_path);
4855 if (STRNCMP(rest_of_wildcards, "**", 2) == 0)
4856 {
4857 /* pointer to the restrict byte
4858 * The restrict byte is not a character!
4859 */
4860 p = rest_of_wildcards + 2;
4861
4862 if (*p > 0)
4863 {
4864 (*p)--;
4865 file_path[len++] = '*';
4866 }
4867
4868 if (*p == 0)
4869 {
4870 /* remove '**<numb> from wildcards */
Bram Moolenaar446cb832008-06-24 21:56:24 +00004871 STRMOVE(rest_of_wildcards, rest_of_wildcards + 3);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004872 }
4873 else
4874 rest_of_wildcards += 3;
4875
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004876 if (stackp->ffs_star_star_empty == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004877 {
4878 /* if not done before, expand '**' to empty */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004879 stackp->ffs_star_star_empty = 1;
4880 dirptrs[1] = stackp->ffs_fix_path;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004881 }
4882 }
4883
4884 /*
4885 * Here we copy until the next path separator or the end of
4886 * the path. If we stop at a path separator, there is
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00004887 * still something else left. This is handled below by
Bram Moolenaar071d4272004-06-13 20:20:40 +00004888 * pushing every directory returned from expand_wildcards()
4889 * on the stack again for further search.
4890 */
4891 while (*rest_of_wildcards
4892 && !vim_ispathsep(*rest_of_wildcards))
4893 file_path[len++] = *rest_of_wildcards++;
4894
4895 file_path[len] = NUL;
4896 if (vim_ispathsep(*rest_of_wildcards))
4897 rest_of_wildcards++;
4898 }
4899#endif
4900
4901 /*
4902 * Expand wildcards like "*" and "$VAR".
4903 * If the path is a URL don't try this.
4904 */
4905 if (path_with_url(dirptrs[0]))
4906 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004907 stackp->ffs_filearray = (char_u **)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004908 alloc((unsigned)sizeof(char *));
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004909 if (stackp->ffs_filearray != NULL
4910 && (stackp->ffs_filearray[0]
Bram Moolenaar071d4272004-06-13 20:20:40 +00004911 = vim_strsave(dirptrs[0])) != NULL)
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004912 stackp->ffs_filearray_size = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004913 else
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004914 stackp->ffs_filearray_size = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004915 }
4916 else
4917 expand_wildcards((dirptrs[1] == NULL) ? 1 : 2, dirptrs,
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004918 &stackp->ffs_filearray_size,
4919 &stackp->ffs_filearray,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004920 EW_DIR|EW_ADDSLASH|EW_SILENT);
4921
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004922 stackp->ffs_filearray_cur = 0;
4923 stackp->ffs_stage = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004924 }
4925#ifdef FEAT_PATH_EXTRA
4926 else
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004927 rest_of_wildcards = &stackp->ffs_wc_path[
4928 STRLEN(stackp->ffs_wc_path)];
Bram Moolenaar071d4272004-06-13 20:20:40 +00004929#endif
4930
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004931 if (stackp->ffs_stage == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004932 {
4933 /* this is the first time we work on this directory */
4934#ifdef FEAT_PATH_EXTRA
4935 if (*rest_of_wildcards == NUL)
4936#endif
4937 {
4938 /*
4939 * we don't have further wildcards to expand, so we have to
4940 * check for the final file now
4941 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004942 for (i = stackp->ffs_filearray_cur;
4943 i < stackp->ffs_filearray_size; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004944 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004945 if (!path_with_url(stackp->ffs_filearray[i])
4946 && !mch_isdir(stackp->ffs_filearray[i]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004947 continue; /* not a directory */
4948
Bram Moolenaar21160b92009-11-11 15:56:10 +00004949 /* prepare the filename to be checked for existence
Bram Moolenaar071d4272004-06-13 20:20:40 +00004950 * below */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004951 STRCPY(file_path, stackp->ffs_filearray[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004952 add_pathsep(file_path);
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004953 STRCAT(file_path, search_ctx->ffsc_file_to_search);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004954
4955 /*
4956 * Try without extra suffix and then with suffixes
4957 * from 'suffixesadd'.
4958 */
4959#ifdef FEAT_SEARCHPATH
4960 len = (int)STRLEN(file_path);
Bram Moolenaar463ee342010-08-08 18:17:52 +02004961 if (search_ctx->ffsc_tagfile)
4962 suf = (char_u *)"";
4963 else
4964 suf = curbuf->b_p_sua;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004965 for (;;)
4966#endif
4967 {
4968 /* if file exists and we didn't already find it */
4969 if ((path_with_url(file_path)
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004970 || (mch_getperm(file_path) >= 0
4971 && (search_ctx->ffsc_find_what
4972 == FINDFILE_BOTH
4973 || ((search_ctx->ffsc_find_what
4974 == FINDFILE_DIR)
4975 == mch_isdir(file_path)))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004976#ifndef FF_VERBOSE
4977 && (ff_check_visited(
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004978 &search_ctx->ffsc_visited_list->ffvl_visited_list,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004979 file_path
4980#ifdef FEAT_PATH_EXTRA
4981 , (char_u *)""
4982#endif
4983 ) == OK)
4984#endif
4985 )
4986 {
4987#ifdef FF_VERBOSE
4988 if (ff_check_visited(
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004989 &search_ctx->ffsc_visited_list->ffvl_visited_list,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004990 file_path
4991#ifdef FEAT_PATH_EXTRA
4992 , (char_u *)""
4993#endif
4994 ) == FAIL)
4995 {
4996 if (p_verbose >= 5)
4997 {
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004998 verbose_enter_scroll();
Bram Moolenaar051b7822005-05-19 21:00:46 +00004999 smsg((char_u *)"Already: %s",
Bram Moolenaar071d4272004-06-13 20:20:40 +00005000 file_path);
5001 /* don't overwrite this either */
5002 msg_puts((char_u *)"\n");
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00005003 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005004 }
5005 continue;
5006 }
5007#endif
5008
5009 /* push dir to examine rest of subdirs later */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005010 stackp->ffs_filearray_cur = i + 1;
5011 ff_push(search_ctx, stackp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005012
Bram Moolenaar6bab9fa2009-01-22 20:32:12 +00005013 if (!path_with_url(file_path))
5014 simplify_filename(file_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005015 if (mch_dirname(ff_expand_buffer, MAXPATHL)
5016 == OK)
5017 {
5018 p = shorten_fname(file_path,
5019 ff_expand_buffer);
5020 if (p != NULL)
Bram Moolenaar446cb832008-06-24 21:56:24 +00005021 STRMOVE(file_path, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005022 }
5023#ifdef FF_VERBOSE
5024 if (p_verbose >= 5)
5025 {
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00005026 verbose_enter_scroll();
Bram Moolenaar051b7822005-05-19 21:00:46 +00005027 smsg((char_u *)"HIT: %s", file_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005028 /* don't overwrite this either */
5029 msg_puts((char_u *)"\n");
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00005030 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005031 }
5032#endif
5033 return file_path;
5034 }
5035
5036#ifdef FEAT_SEARCHPATH
5037 /* Not found or found already, try next suffix. */
5038 if (*suf == NUL)
5039 break;
5040 copy_option_part(&suf, file_path + len,
5041 MAXPATHL - len, ",");
5042#endif
5043 }
5044 }
5045 }
5046#ifdef FEAT_PATH_EXTRA
5047 else
5048 {
5049 /*
5050 * still wildcards left, push the directories for further
5051 * search
5052 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005053 for (i = stackp->ffs_filearray_cur;
5054 i < stackp->ffs_filearray_size; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005055 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005056 if (!mch_isdir(stackp->ffs_filearray[i]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005057 continue; /* not a directory */
5058
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005059 ff_push(search_ctx,
5060 ff_create_stack_element(
5061 stackp->ffs_filearray[i],
5062 rest_of_wildcards,
5063 stackp->ffs_level - 1, 0));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005064 }
5065 }
5066#endif
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005067 stackp->ffs_filearray_cur = 0;
5068 stackp->ffs_stage = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005069 }
5070
5071#ifdef FEAT_PATH_EXTRA
5072 /*
5073 * if wildcards contains '**' we have to descent till we reach the
5074 * leaves of the directory tree.
5075 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005076 if (STRNCMP(stackp->ffs_wc_path, "**", 2) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005077 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005078 for (i = stackp->ffs_filearray_cur;
5079 i < stackp->ffs_filearray_size; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005080 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005081 if (fnamecmp(stackp->ffs_filearray[i],
5082 stackp->ffs_fix_path) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005083 continue; /* don't repush same directory */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005084 if (!mch_isdir(stackp->ffs_filearray[i]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005085 continue; /* not a directory */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005086 ff_push(search_ctx,
5087 ff_create_stack_element(stackp->ffs_filearray[i],
5088 stackp->ffs_wc_path, stackp->ffs_level - 1, 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005089 }
5090 }
5091#endif
5092
5093 /* we are done with the current directory */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005094 ff_free_stack_element(stackp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005095
5096 }
5097
5098#ifdef FEAT_PATH_EXTRA
5099 /* If we reached this, we didn't find anything downwards.
5100 * Let's check if we should do an upward search.
5101 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005102 if (search_ctx->ffsc_start_dir
5103 && search_ctx->ffsc_stopdirs_v != NULL && !got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005104 {
5105 ff_stack_T *sptr;
5106
5107 /* is the last starting directory in the stop list? */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005108 if (ff_path_in_stoplist(search_ctx->ffsc_start_dir,
5109 (int)(path_end - search_ctx->ffsc_start_dir),
5110 search_ctx->ffsc_stopdirs_v) == TRUE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005111 break;
5112
5113 /* cut of last dir */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005114 while (path_end > search_ctx->ffsc_start_dir
5115 && vim_ispathsep(*path_end))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005116 path_end--;
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005117 while (path_end > search_ctx->ffsc_start_dir
5118 && !vim_ispathsep(path_end[-1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005119 path_end--;
5120 *path_end = 0;
5121 path_end--;
5122
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005123 if (*search_ctx->ffsc_start_dir == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005124 break;
5125
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005126 STRCPY(file_path, search_ctx->ffsc_start_dir);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005127 add_pathsep(file_path);
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005128 STRCAT(file_path, search_ctx->ffsc_fix_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005129
5130 /* create a new stack entry */
5131 sptr = ff_create_stack_element(file_path,
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005132 search_ctx->ffsc_wc_path, search_ctx->ffsc_level, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005133 if (sptr == NULL)
5134 break;
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005135 ff_push(search_ctx, sptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005136 }
5137 else
5138 break;
5139 }
5140#endif
5141
5142 vim_free(file_path);
5143 return NULL;
5144}
5145
5146/*
5147 * Free the list of lists of visited files and directories
5148 * Can handle it if the passed search_context is NULL;
5149 */
5150 void
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005151vim_findfile_free_visited(search_ctx_arg)
5152 void *search_ctx_arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005153{
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005154 ff_search_ctx_T *search_ctx;
5155
5156 if (search_ctx_arg == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005157 return;
5158
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005159 search_ctx = (ff_search_ctx_T *)search_ctx_arg;
5160 vim_findfile_free_visited_list(&search_ctx->ffsc_visited_lists_list);
5161 vim_findfile_free_visited_list(&search_ctx->ffsc_dir_visited_lists_list);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005162}
5163
5164 static void
5165vim_findfile_free_visited_list(list_headp)
5166 ff_visited_list_hdr_T **list_headp;
5167{
5168 ff_visited_list_hdr_T *vp;
5169
5170 while (*list_headp != NULL)
5171 {
5172 vp = (*list_headp)->ffvl_next;
5173 ff_free_visited_list((*list_headp)->ffvl_visited_list);
5174
5175 vim_free((*list_headp)->ffvl_filename);
5176 vim_free(*list_headp);
5177 *list_headp = vp;
5178 }
5179 *list_headp = NULL;
5180}
5181
5182 static void
5183ff_free_visited_list(vl)
5184 ff_visited_T *vl;
5185{
5186 ff_visited_T *vp;
5187
5188 while (vl != NULL)
5189 {
5190 vp = vl->ffv_next;
5191#ifdef FEAT_PATH_EXTRA
5192 vim_free(vl->ffv_wc_path);
5193#endif
5194 vim_free(vl);
5195 vl = vp;
5196 }
5197 vl = NULL;
5198}
5199
5200/*
5201 * Returns the already visited list for the given filename. If none is found it
5202 * allocates a new one.
5203 */
5204 static ff_visited_list_hdr_T*
5205ff_get_visited_list(filename, list_headp)
5206 char_u *filename;
5207 ff_visited_list_hdr_T **list_headp;
5208{
5209 ff_visited_list_hdr_T *retptr = NULL;
5210
5211 /* check if a visited list for the given filename exists */
5212 if (*list_headp != NULL)
5213 {
5214 retptr = *list_headp;
5215 while (retptr != NULL)
5216 {
5217 if (fnamecmp(filename, retptr->ffvl_filename) == 0)
5218 {
5219#ifdef FF_VERBOSE
5220 if (p_verbose >= 5)
5221 {
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00005222 verbose_enter_scroll();
Bram Moolenaar051b7822005-05-19 21:00:46 +00005223 smsg((char_u *)"ff_get_visited_list: FOUND list for %s",
Bram Moolenaar071d4272004-06-13 20:20:40 +00005224 filename);
5225 /* don't overwrite this either */
5226 msg_puts((char_u *)"\n");
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00005227 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005228 }
5229#endif
5230 return retptr;
5231 }
5232 retptr = retptr->ffvl_next;
5233 }
5234 }
5235
5236#ifdef FF_VERBOSE
5237 if (p_verbose >= 5)
5238 {
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00005239 verbose_enter_scroll();
Bram Moolenaar051b7822005-05-19 21:00:46 +00005240 smsg((char_u *)"ff_get_visited_list: new list for %s", filename);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005241 /* don't overwrite this either */
5242 msg_puts((char_u *)"\n");
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00005243 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005244 }
5245#endif
5246
5247 /*
5248 * if we reach this we didn't find a list and we have to allocate new list
5249 */
5250 retptr = (ff_visited_list_hdr_T*)alloc((unsigned)sizeof(*retptr));
5251 if (retptr == NULL)
5252 return NULL;
5253
5254 retptr->ffvl_visited_list = NULL;
5255 retptr->ffvl_filename = vim_strsave(filename);
5256 if (retptr->ffvl_filename == NULL)
5257 {
5258 vim_free(retptr);
5259 return NULL;
5260 }
5261 retptr->ffvl_next = *list_headp;
5262 *list_headp = retptr;
5263
5264 return retptr;
5265}
5266
5267#ifdef FEAT_PATH_EXTRA
5268/*
5269 * check if two wildcard paths are equal. Returns TRUE or FALSE.
5270 * They are equal if:
5271 * - both paths are NULL
5272 * - they have the same length
5273 * - char by char comparison is OK
5274 * - the only differences are in the counters behind a '**', so
5275 * '**\20' is equal to '**\24'
5276 */
5277 static int
5278ff_wc_equal(s1, s2)
5279 char_u *s1;
5280 char_u *s2;
5281{
5282 int i;
5283
5284 if (s1 == s2)
5285 return TRUE;
5286
5287 if (s1 == NULL || s2 == NULL)
5288 return FALSE;
5289
5290 if (STRLEN(s1) != STRLEN(s2))
5291 return FAIL;
5292
5293 for (i = 0; s1[i] != NUL && s2[i] != NUL; i++)
5294 {
5295 if (s1[i] != s2[i]
5296#ifdef CASE_INSENSITIVE_FILENAME
5297 && TOUPPER_LOC(s1[i]) != TOUPPER_LOC(s2[i])
5298#endif
5299 )
5300 {
5301 if (i >= 2)
5302 if (s1[i-1] == '*' && s1[i-2] == '*')
5303 continue;
5304 else
5305 return FAIL;
5306 else
5307 return FAIL;
5308 }
5309 }
5310 return TRUE;
5311}
5312#endif
5313
5314/*
5315 * maintains the list of already visited files and dirs
5316 * returns FAIL if the given file/dir is already in the list
5317 * returns OK if it is newly added
5318 *
5319 * TODO: What to do on memory allocation problems?
5320 * -> return TRUE - Better the file is found several times instead of
5321 * never.
5322 */
5323 static int
5324ff_check_visited(visited_list, fname
5325#ifdef FEAT_PATH_EXTRA
5326 , wc_path
5327#endif
5328 )
5329 ff_visited_T **visited_list;
5330 char_u *fname;
5331#ifdef FEAT_PATH_EXTRA
5332 char_u *wc_path;
5333#endif
5334{
5335 ff_visited_T *vp;
5336#ifdef UNIX
5337 struct stat st;
5338 int url = FALSE;
5339#endif
5340
5341 /* For an URL we only compare the name, otherwise we compare the
5342 * device/inode (unix) or the full path name (not Unix). */
5343 if (path_with_url(fname))
5344 {
Bram Moolenaarbbebc852005-07-18 21:47:53 +00005345 vim_strncpy(ff_expand_buffer, fname, MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005346#ifdef UNIX
5347 url = TRUE;
5348#endif
5349 }
5350 else
5351 {
5352 ff_expand_buffer[0] = NUL;
5353#ifdef UNIX
5354 if (mch_stat((char *)fname, &st) < 0)
5355#else
5356 if (vim_FullName(fname, ff_expand_buffer, MAXPATHL, TRUE) == FAIL)
5357#endif
5358 return FAIL;
5359 }
5360
5361 /* check against list of already visited files */
5362 for (vp = *visited_list; vp != NULL; vp = vp->ffv_next)
5363 {
5364 if (
5365#ifdef UNIX
Bram Moolenaare1fbddc2009-05-16 19:07:03 +00005366 !url ? (vp->ffv_dev_valid && vp->ffv_dev == st.st_dev
5367 && vp->ffv_ino == st.st_ino)
5368 :
Bram Moolenaar071d4272004-06-13 20:20:40 +00005369#endif
5370 fnamecmp(vp->ffv_fname, ff_expand_buffer) == 0
5371 )
5372 {
5373#ifdef FEAT_PATH_EXTRA
5374 /* are the wildcard parts equal */
5375 if (ff_wc_equal(vp->ffv_wc_path, wc_path) == TRUE)
5376#endif
5377 /* already visited */
5378 return FAIL;
5379 }
5380 }
5381
5382 /*
5383 * New file/dir. Add it to the list of visited files/dirs.
5384 */
5385 vp = (ff_visited_T *)alloc((unsigned)(sizeof(ff_visited_T)
5386 + STRLEN(ff_expand_buffer)));
5387
5388 if (vp != NULL)
5389 {
5390#ifdef UNIX
5391 if (!url)
5392 {
Bram Moolenaare1fbddc2009-05-16 19:07:03 +00005393 vp->ffv_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005394 vp->ffv_ino = st.st_ino;
5395 vp->ffv_dev = st.st_dev;
5396 vp->ffv_fname[0] = NUL;
5397 }
5398 else
5399 {
Bram Moolenaare1fbddc2009-05-16 19:07:03 +00005400 vp->ffv_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005401#endif
5402 STRCPY(vp->ffv_fname, ff_expand_buffer);
5403#ifdef UNIX
5404 }
5405#endif
5406#ifdef FEAT_PATH_EXTRA
5407 if (wc_path != NULL)
5408 vp->ffv_wc_path = vim_strsave(wc_path);
5409 else
5410 vp->ffv_wc_path = NULL;
5411#endif
5412
5413 vp->ffv_next = *visited_list;
5414 *visited_list = vp;
5415 }
5416
5417 return OK;
5418}
5419
5420/*
5421 * create stack element from given path pieces
5422 */
5423 static ff_stack_T *
5424ff_create_stack_element(fix_part,
5425#ifdef FEAT_PATH_EXTRA
5426 wc_part,
5427#endif
5428 level, star_star_empty)
5429 char_u *fix_part;
5430#ifdef FEAT_PATH_EXTRA
5431 char_u *wc_part;
5432#endif
5433 int level;
5434 int star_star_empty;
5435{
5436 ff_stack_T *new;
5437
5438 new = (ff_stack_T *)alloc((unsigned)sizeof(ff_stack_T));
5439 if (new == NULL)
5440 return NULL;
5441
5442 new->ffs_prev = NULL;
5443 new->ffs_filearray = NULL;
5444 new->ffs_filearray_size = 0;
5445 new->ffs_filearray_cur = 0;
5446 new->ffs_stage = 0;
5447 new->ffs_level = level;
5448 new->ffs_star_star_empty = star_star_empty;;
5449
5450 /* the following saves NULL pointer checks in vim_findfile */
5451 if (fix_part == NULL)
5452 fix_part = (char_u *)"";
5453 new->ffs_fix_path = vim_strsave(fix_part);
5454
5455#ifdef FEAT_PATH_EXTRA
5456 if (wc_part == NULL)
5457 wc_part = (char_u *)"";
5458 new->ffs_wc_path = vim_strsave(wc_part);
5459#endif
5460
5461 if (new->ffs_fix_path == NULL
5462#ifdef FEAT_PATH_EXTRA
5463 || new->ffs_wc_path == NULL
5464#endif
5465 )
5466 {
5467 ff_free_stack_element(new);
5468 new = NULL;
5469 }
5470
5471 return new;
5472}
5473
5474/*
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005475 * Push a dir on the directory stack.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005476 */
5477 static void
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005478ff_push(search_ctx, stack_ptr)
5479 ff_search_ctx_T *search_ctx;
5480 ff_stack_T *stack_ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005481{
5482 /* check for NULL pointer, not to return an error to the user, but
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005483 * to prevent a crash */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005484 if (stack_ptr != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005485 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005486 stack_ptr->ffs_prev = search_ctx->ffsc_stack_ptr;
5487 search_ctx->ffsc_stack_ptr = stack_ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005488 }
5489}
5490
5491/*
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005492 * Pop a dir from the directory stack.
5493 * Returns NULL if stack is empty.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005494 */
5495 static ff_stack_T *
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005496ff_pop(search_ctx)
5497 ff_search_ctx_T *search_ctx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005498{
5499 ff_stack_T *sptr;
5500
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005501 sptr = search_ctx->ffsc_stack_ptr;
5502 if (search_ctx->ffsc_stack_ptr != NULL)
5503 search_ctx->ffsc_stack_ptr = search_ctx->ffsc_stack_ptr->ffs_prev;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005504
5505 return sptr;
5506}
5507
5508/*
5509 * free the given stack element
5510 */
5511 static void
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005512ff_free_stack_element(stack_ptr)
5513 ff_stack_T *stack_ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005514{
5515 /* vim_free handles possible NULL pointers */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005516 vim_free(stack_ptr->ffs_fix_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005517#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005518 vim_free(stack_ptr->ffs_wc_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005519#endif
5520
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005521 if (stack_ptr->ffs_filearray != NULL)
5522 FreeWild(stack_ptr->ffs_filearray_size, stack_ptr->ffs_filearray);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005523
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005524 vim_free(stack_ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005525}
5526
5527/*
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005528 * Clear the search context, but NOT the visited list.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005529 */
5530 static void
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005531ff_clear(search_ctx)
5532 ff_search_ctx_T *search_ctx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005533{
5534 ff_stack_T *sptr;
5535
5536 /* clear up stack */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005537 while ((sptr = ff_pop(search_ctx)) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005538 ff_free_stack_element(sptr);
5539
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005540 vim_free(search_ctx->ffsc_file_to_search);
5541 vim_free(search_ctx->ffsc_start_dir);
5542 vim_free(search_ctx->ffsc_fix_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005543#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005544 vim_free(search_ctx->ffsc_wc_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005545#endif
5546
5547#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005548 if (search_ctx->ffsc_stopdirs_v != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005549 {
5550 int i = 0;
5551
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005552 while (search_ctx->ffsc_stopdirs_v[i] != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005553 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005554 vim_free(search_ctx->ffsc_stopdirs_v[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005555 i++;
5556 }
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005557 vim_free(search_ctx->ffsc_stopdirs_v);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005558 }
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005559 search_ctx->ffsc_stopdirs_v = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005560#endif
5561
5562 /* reset everything */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005563 search_ctx->ffsc_file_to_search = NULL;
5564 search_ctx->ffsc_start_dir = NULL;
5565 search_ctx->ffsc_fix_path = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005566#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005567 search_ctx->ffsc_wc_path = NULL;
5568 search_ctx->ffsc_level = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005569#endif
5570}
5571
5572#ifdef FEAT_PATH_EXTRA
5573/*
5574 * check if the given path is in the stopdirs
5575 * returns TRUE if yes else FALSE
5576 */
5577 static int
5578ff_path_in_stoplist(path, path_len, stopdirs_v)
5579 char_u *path;
5580 int path_len;
5581 char_u **stopdirs_v;
5582{
5583 int i = 0;
5584
5585 /* eat up trailing path separators, except the first */
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00005586 while (path_len > 1 && vim_ispathsep(path[path_len - 1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005587 path_len--;
5588
5589 /* if no path consider it as match */
5590 if (path_len == 0)
5591 return TRUE;
5592
5593 for (i = 0; stopdirs_v[i] != NULL; i++)
5594 {
5595 if ((int)STRLEN(stopdirs_v[i]) > path_len)
5596 {
5597 /* match for parent directory. So '/home' also matches
5598 * '/home/rks'. Check for PATHSEP in stopdirs_v[i], else
5599 * '/home/r' would also match '/home/rks'
5600 */
5601 if (fnamencmp(stopdirs_v[i], path, path_len) == 0
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00005602 && vim_ispathsep(stopdirs_v[i][path_len]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005603 return TRUE;
5604 }
5605 else
5606 {
5607 if (fnamecmp(stopdirs_v[i], path) == 0)
5608 return TRUE;
5609 }
5610 }
5611 return FALSE;
5612}
5613#endif
5614
5615#if defined(FEAT_SEARCHPATH) || defined(PROTO)
5616/*
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005617 * Find the file name "ptr[len]" in the path. Also finds directory names.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005618 *
5619 * On the first call set the parameter 'first' to TRUE to initialize
5620 * the search. For repeating calls to FALSE.
5621 *
5622 * Repeating calls will return other files called 'ptr[len]' from the path.
5623 *
5624 * Only on the first call 'ptr' and 'len' are used. For repeating calls they
5625 * don't need valid values.
5626 *
5627 * If nothing found on the first call the option FNAME_MESS will issue the
5628 * message:
5629 * 'Can't find file "<file>" in path'
5630 * On repeating calls:
5631 * 'No more file "<file>" found in path'
5632 *
5633 * options:
5634 * FNAME_MESS give error message when not found
5635 *
5636 * Uses NameBuff[]!
5637 *
5638 * Returns an allocated string for the file name. NULL for error.
5639 *
5640 */
5641 char_u *
5642find_file_in_path(ptr, len, options, first, rel_fname)
5643 char_u *ptr; /* file name */
5644 int len; /* length of file name */
5645 int options;
5646 int first; /* use count'th matching file name */
5647 char_u *rel_fname; /* file name searching relative to */
5648{
5649 return find_file_in_path_option(ptr, len, options, first,
5650 *curbuf->b_p_path == NUL ? p_path : curbuf->b_p_path,
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005651 FINDFILE_BOTH, rel_fname, curbuf->b_p_sua);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005652}
5653
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005654static char_u *ff_file_to_find = NULL;
5655static void *fdip_search_ctx = NULL;
5656
5657#if defined(EXITFREE)
5658 static void
5659free_findfile()
5660{
5661 vim_free(ff_file_to_find);
5662 vim_findfile_cleanup(fdip_search_ctx);
5663}
5664#endif
5665
Bram Moolenaar071d4272004-06-13 20:20:40 +00005666/*
5667 * Find the directory name "ptr[len]" in the path.
5668 *
5669 * options:
5670 * FNAME_MESS give error message when not found
5671 *
5672 * Uses NameBuff[]!
5673 *
5674 * Returns an allocated string for the file name. NULL for error.
5675 */
5676 char_u *
5677find_directory_in_path(ptr, len, options, rel_fname)
5678 char_u *ptr; /* file name */
5679 int len; /* length of file name */
5680 int options;
5681 char_u *rel_fname; /* file name searching relative to */
5682{
5683 return find_file_in_path_option(ptr, len, options, TRUE, p_cdpath,
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005684 FINDFILE_DIR, rel_fname, (char_u *)"");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005685}
5686
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00005687 char_u *
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005688find_file_in_path_option(ptr, len, options, first, path_option, find_what, rel_fname, suffixes)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005689 char_u *ptr; /* file name */
5690 int len; /* length of file name */
5691 int options;
5692 int first; /* use count'th matching file name */
5693 char_u *path_option; /* p_path or p_cdpath */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005694 int find_what; /* FINDFILE_FILE, _DIR or _BOTH */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005695 char_u *rel_fname; /* file name we are looking relative to. */
Bram Moolenaar433f7c82006-03-21 21:29:36 +00005696 char_u *suffixes; /* list of suffixes, 'suffixesadd' option */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005697{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005698 static char_u *dir;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005699 static int did_findfile_init = FALSE;
5700 char_u save_char;
5701 char_u *file_name = NULL;
5702 char_u *buf = NULL;
5703 int rel_to_curdir;
5704#ifdef AMIGA
5705 struct Process *proc = (struct Process *)FindTask(0L);
5706 APTR save_winptr = proc->pr_WindowPtr;
5707
5708 /* Avoid a requester here for a volume that doesn't exist. */
5709 proc->pr_WindowPtr = (APTR)-1L;
5710#endif
5711
5712 if (first == TRUE)
5713 {
5714 /* copy file name into NameBuff, expanding environment variables */
5715 save_char = ptr[len];
5716 ptr[len] = NUL;
5717 expand_env(ptr, NameBuff, MAXPATHL);
5718 ptr[len] = save_char;
5719
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005720 vim_free(ff_file_to_find);
5721 ff_file_to_find = vim_strsave(NameBuff);
5722 if (ff_file_to_find == NULL) /* out of memory */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005723 {
5724 file_name = NULL;
5725 goto theend;
5726 }
5727 }
5728
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005729 rel_to_curdir = (ff_file_to_find[0] == '.'
5730 && (ff_file_to_find[1] == NUL
5731 || vim_ispathsep(ff_file_to_find[1])
5732 || (ff_file_to_find[1] == '.'
5733 && (ff_file_to_find[2] == NUL
5734 || vim_ispathsep(ff_file_to_find[2])))));
5735 if (vim_isAbsName(ff_file_to_find)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005736 /* "..", "../path", "." and "./path": don't use the path_option */
5737 || rel_to_curdir
5738#if defined(MSWIN) || defined(MSDOS) || defined(OS2)
5739 /* handle "\tmp" as absolute path */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005740 || vim_ispathsep(ff_file_to_find[0])
Bram Moolenaar21160b92009-11-11 15:56:10 +00005741 /* handle "c:name" as absolute path */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005742 || (ff_file_to_find[0] != NUL && ff_file_to_find[1] == ':')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005743#endif
5744#ifdef AMIGA
5745 /* handle ":tmp" as absolute path */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005746 || ff_file_to_find[0] == ':'
Bram Moolenaar071d4272004-06-13 20:20:40 +00005747#endif
5748 )
5749 {
5750 /*
5751 * Absolute path, no need to use "path_option".
5752 * If this is not a first call, return NULL. We already returned a
5753 * filename on the first call.
5754 */
5755 if (first == TRUE)
5756 {
5757 int l;
5758 int run;
5759
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005760 if (path_with_url(ff_file_to_find))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005761 {
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005762 file_name = vim_strsave(ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005763 goto theend;
5764 }
5765
5766 /* When FNAME_REL flag given first use the directory of the file.
5767 * Otherwise or when this fails use the current directory. */
5768 for (run = 1; run <= 2; ++run)
5769 {
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005770 l = (int)STRLEN(ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005771 if (run == 1
5772 && rel_to_curdir
5773 && (options & FNAME_REL)
5774 && rel_fname != NULL
5775 && STRLEN(rel_fname) + l < MAXPATHL)
5776 {
5777 STRCPY(NameBuff, rel_fname);
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005778 STRCPY(gettail(NameBuff), ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005779 l = (int)STRLEN(NameBuff);
5780 }
5781 else
5782 {
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005783 STRCPY(NameBuff, ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005784 run = 2;
5785 }
5786
5787 /* When the file doesn't exist, try adding parts of
5788 * 'suffixesadd'. */
Bram Moolenaar433f7c82006-03-21 21:29:36 +00005789 buf = suffixes;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005790 for (;;)
5791 {
5792 if (
5793#ifdef DJGPP
5794 /* "C:" by itself will fail for mch_getperm(),
5795 * assume it's always valid. */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005796 (find_what != FINDFILE_FILE && NameBuff[0] != NUL
Bram Moolenaar071d4272004-06-13 20:20:40 +00005797 && NameBuff[1] == ':'
5798 && NameBuff[2] == NUL) ||
5799#endif
5800 (mch_getperm(NameBuff) >= 0
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005801 && (find_what == FINDFILE_BOTH
5802 || ((find_what == FINDFILE_DIR)
5803 == mch_isdir(NameBuff)))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005804 {
5805 file_name = vim_strsave(NameBuff);
5806 goto theend;
5807 }
5808 if (*buf == NUL)
5809 break;
5810 copy_option_part(&buf, NameBuff + l, MAXPATHL - l, ",");
5811 }
5812 }
5813 }
5814 }
5815 else
5816 {
5817 /*
5818 * Loop over all paths in the 'path' or 'cdpath' option.
5819 * When "first" is set, first setup to the start of the option.
5820 * Otherwise continue to find the next match.
5821 */
5822 if (first == TRUE)
5823 {
5824 /* vim_findfile_free_visited can handle a possible NULL pointer */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005825 vim_findfile_free_visited(fdip_search_ctx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005826 dir = path_option;
5827 did_findfile_init = FALSE;
5828 }
5829
5830 for (;;)
5831 {
5832 if (did_findfile_init)
5833 {
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005834 file_name = vim_findfile(fdip_search_ctx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005835 if (file_name != NULL)
5836 break;
5837
5838 did_findfile_init = FALSE;
5839 }
5840 else
5841 {
5842 char_u *r_ptr;
5843
5844 if (dir == NULL || *dir == NUL)
5845 {
5846 /* We searched all paths of the option, now we can
5847 * free the search context. */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005848 vim_findfile_cleanup(fdip_search_ctx);
5849 fdip_search_ctx = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005850 break;
5851 }
5852
5853 if ((buf = alloc((int)(MAXPATHL))) == NULL)
5854 break;
5855
5856 /* copy next path */
5857 buf[0] = 0;
5858 copy_option_part(&dir, buf, MAXPATHL, " ,");
5859
5860#ifdef FEAT_PATH_EXTRA
5861 /* get the stopdir string */
5862 r_ptr = vim_findfile_stopdir(buf);
5863#else
5864 r_ptr = NULL;
5865#endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005866 fdip_search_ctx = vim_findfile_init(buf, ff_file_to_find,
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005867 r_ptr, 100, FALSE, find_what,
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005868 fdip_search_ctx, FALSE, rel_fname);
5869 if (fdip_search_ctx != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005870 did_findfile_init = TRUE;
5871 vim_free(buf);
5872 }
5873 }
5874 }
5875 if (file_name == NULL && (options & FNAME_MESS))
5876 {
5877 if (first == TRUE)
5878 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005879 if (find_what == FINDFILE_DIR)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005880 EMSG2(_("E344: Can't find directory \"%s\" in cdpath"),
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005881 ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005882 else
5883 EMSG2(_("E345: Can't find file \"%s\" in path"),
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005884 ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005885 }
5886 else
5887 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005888 if (find_what == FINDFILE_DIR)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005889 EMSG2(_("E346: No more directory \"%s\" found in cdpath"),
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005890 ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005891 else
5892 EMSG2(_("E347: No more file \"%s\" found in path"),
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005893 ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005894 }
5895 }
5896
5897theend:
5898#ifdef AMIGA
5899 proc->pr_WindowPtr = save_winptr;
5900#endif
5901 return file_name;
5902}
5903
5904#endif /* FEAT_SEARCHPATH */
5905
5906/*
5907 * Change directory to "new_dir". If FEAT_SEARCHPATH is defined, search
5908 * 'cdpath' for relative directory names, otherwise just mch_chdir().
5909 */
5910 int
5911vim_chdir(new_dir)
5912 char_u *new_dir;
5913{
5914#ifndef FEAT_SEARCHPATH
5915 return mch_chdir((char *)new_dir);
5916#else
5917 char_u *dir_name;
5918 int r;
5919
5920 dir_name = find_directory_in_path(new_dir, (int)STRLEN(new_dir),
5921 FNAME_MESS, curbuf->b_ffname);
5922 if (dir_name == NULL)
5923 return -1;
5924 r = mch_chdir((char *)dir_name);
5925 vim_free(dir_name);
5926 return r;
5927#endif
5928}
5929
5930/*
Bram Moolenaarbbebc852005-07-18 21:47:53 +00005931 * Get user name from machine-specific function.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005932 * Returns the user name in "buf[len]".
Bram Moolenaarbbebc852005-07-18 21:47:53 +00005933 * Some systems are quite slow in obtaining the user name (Windows NT), thus
5934 * cache the result.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005935 * Returns OK or FAIL.
5936 */
5937 int
5938get_user_name(buf, len)
5939 char_u *buf;
5940 int len;
5941{
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005942 if (username == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005943 {
5944 if (mch_get_user_name(buf, len) == FAIL)
5945 return FAIL;
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005946 username = vim_strsave(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005947 }
5948 else
Bram Moolenaarbbebc852005-07-18 21:47:53 +00005949 vim_strncpy(buf, username, len - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005950 return OK;
5951}
5952
5953#ifndef HAVE_QSORT
5954/*
5955 * Our own qsort(), for systems that don't have it.
5956 * It's simple and slow. From the K&R C book.
5957 */
5958 void
5959qsort(base, elm_count, elm_size, cmp)
5960 void *base;
5961 size_t elm_count;
5962 size_t elm_size;
5963 int (*cmp) __ARGS((const void *, const void *));
5964{
5965 char_u *buf;
5966 char_u *p1;
5967 char_u *p2;
5968 int i, j;
5969 int gap;
5970
5971 buf = alloc((unsigned)elm_size);
5972 if (buf == NULL)
5973 return;
5974
5975 for (gap = elm_count / 2; gap > 0; gap /= 2)
5976 for (i = gap; i < elm_count; ++i)
5977 for (j = i - gap; j >= 0; j -= gap)
5978 {
5979 /* Compare the elements. */
5980 p1 = (char_u *)base + j * elm_size;
5981 p2 = (char_u *)base + (j + gap) * elm_size;
5982 if ((*cmp)((void *)p1, (void *)p2) <= 0)
5983 break;
Bram Moolenaar21160b92009-11-11 15:56:10 +00005984 /* Exchange the elements. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005985 mch_memmove(buf, p1, elm_size);
5986 mch_memmove(p1, p2, elm_size);
5987 mch_memmove(p2, buf, elm_size);
5988 }
5989
5990 vim_free(buf);
5991}
5992#endif
5993
Bram Moolenaar071d4272004-06-13 20:20:40 +00005994/*
5995 * Sort an array of strings.
5996 */
5997static int
5998#ifdef __BORLANDC__
5999_RTLENTRYF
6000#endif
6001sort_compare __ARGS((const void *s1, const void *s2));
6002
6003 static int
6004#ifdef __BORLANDC__
6005_RTLENTRYF
6006#endif
6007sort_compare(s1, s2)
6008 const void *s1;
6009 const void *s2;
6010{
6011 return STRCMP(*(char **)s1, *(char **)s2);
6012}
6013
6014 void
6015sort_strings(files, count)
6016 char_u **files;
6017 int count;
6018{
6019 qsort((void *)files, (size_t)count, sizeof(char_u *), sort_compare);
6020}
Bram Moolenaar071d4272004-06-13 20:20:40 +00006021
6022#if !defined(NO_EXPANDPATH) || defined(PROTO)
6023/*
6024 * Compare path "p[]" to "q[]".
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00006025 * If "maxlen" >= 0 compare "p[maxlen]" to "q[maxlen]"
Bram Moolenaar071d4272004-06-13 20:20:40 +00006026 * Return value like strcmp(p, q), but consider path separators.
6027 */
6028 int
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00006029pathcmp(p, q, maxlen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006030 const char *p, *q;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00006031 int maxlen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006032{
6033 int i;
Bram Moolenaar86b68352004-12-27 21:59:20 +00006034 const char *s = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006035
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00006036 for (i = 0; maxlen < 0 || i < maxlen; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006037 {
6038 /* End of "p": check if "q" also ends or just has a slash. */
6039 if (p[i] == NUL)
6040 {
6041 if (q[i] == NUL) /* full match */
6042 return 0;
6043 s = q;
6044 break;
6045 }
6046
6047 /* End of "q": check if "p" just has a slash. */
6048 if (q[i] == NUL)
6049 {
6050 s = p;
6051 break;
6052 }
6053
6054 if (
6055#ifdef CASE_INSENSITIVE_FILENAME
6056 TOUPPER_LOC(p[i]) != TOUPPER_LOC(q[i])
6057#else
6058 p[i] != q[i]
6059#endif
6060#ifdef BACKSLASH_IN_FILENAME
6061 /* consider '/' and '\\' to be equal */
6062 && !((p[i] == '/' && q[i] == '\\')
6063 || (p[i] == '\\' && q[i] == '/'))
6064#endif
6065 )
6066 {
6067 if (vim_ispathsep(p[i]))
6068 return -1;
6069 if (vim_ispathsep(q[i]))
6070 return 1;
6071 return ((char_u *)p)[i] - ((char_u *)q)[i]; /* no match */
6072 }
6073 }
Bram Moolenaar86b68352004-12-27 21:59:20 +00006074 if (s == NULL) /* "i" ran into "maxlen" */
6075 return 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006076
6077 /* ignore a trailing slash, but not "//" or ":/" */
Bram Moolenaar86b68352004-12-27 21:59:20 +00006078 if (s[i + 1] == NUL
6079 && i > 0
6080 && !after_pathsep((char_u *)s, (char_u *)s + i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006081#ifdef BACKSLASH_IN_FILENAME
Bram Moolenaar86b68352004-12-27 21:59:20 +00006082 && (s[i] == '/' || s[i] == '\\')
Bram Moolenaar071d4272004-06-13 20:20:40 +00006083#else
Bram Moolenaar86b68352004-12-27 21:59:20 +00006084 && s[i] == '/'
Bram Moolenaar071d4272004-06-13 20:20:40 +00006085#endif
Bram Moolenaar86b68352004-12-27 21:59:20 +00006086 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00006087 return 0; /* match with trailing slash */
6088 if (s == q)
6089 return -1; /* no match */
6090 return 1;
6091}
6092#endif
6093
Bram Moolenaar071d4272004-06-13 20:20:40 +00006094/*
6095 * The putenv() implementation below comes from the "screen" program.
6096 * Included with permission from Juergen Weigert.
6097 * See pty.c for the copyright notice.
6098 */
6099
6100/*
6101 * putenv -- put value into environment
6102 *
6103 * Usage: i = putenv (string)
6104 * int i;
6105 * char *string;
6106 *
6107 * where string is of the form <name>=<value>.
6108 * Putenv returns 0 normally, -1 on error (not enough core for malloc).
6109 *
6110 * Putenv may need to add a new name into the environment, or to
6111 * associate a value longer than the current value with a particular
6112 * name. So, to make life simpler, putenv() copies your entire
6113 * environment into the heap (i.e. malloc()) from the stack
6114 * (i.e. where it resides when your process is initiated) the first
6115 * time you call it.
6116 *
6117 * (history removed, not very interesting. See the "screen" sources.)
6118 */
6119
6120#if !defined(HAVE_SETENV) && !defined(HAVE_PUTENV)
6121
6122#define EXTRASIZE 5 /* increment to add to env. size */
6123
6124static int envsize = -1; /* current size of environment */
6125#ifndef MACOS_CLASSIC
6126extern
6127#endif
6128 char **environ; /* the global which is your env. */
6129
6130static int findenv __ARGS((char *name)); /* look for a name in the env. */
6131static int newenv __ARGS((void)); /* copy env. from stack to heap */
6132static int moreenv __ARGS((void)); /* incr. size of env. */
6133
6134 int
6135putenv(string)
6136 const char *string;
6137{
6138 int i;
6139 char *p;
6140
6141 if (envsize < 0)
6142 { /* first time putenv called */
6143 if (newenv() < 0) /* copy env. to heap */
6144 return -1;
6145 }
6146
6147 i = findenv((char *)string); /* look for name in environment */
6148
6149 if (i < 0)
6150 { /* name must be added */
6151 for (i = 0; environ[i]; i++);
6152 if (i >= (envsize - 1))
6153 { /* need new slot */
6154 if (moreenv() < 0)
6155 return -1;
6156 }
6157 p = (char *)alloc((unsigned)(strlen(string) + 1));
6158 if (p == NULL) /* not enough core */
6159 return -1;
6160 environ[i + 1] = 0; /* new end of env. */
6161 }
6162 else
6163 { /* name already in env. */
6164 p = vim_realloc(environ[i], strlen(string) + 1);
6165 if (p == NULL)
6166 return -1;
6167 }
6168 sprintf(p, "%s", string); /* copy into env. */
6169 environ[i] = p;
6170
6171 return 0;
6172}
6173
6174 static int
6175findenv(name)
6176 char *name;
6177{
6178 char *namechar, *envchar;
6179 int i, found;
6180
6181 found = 0;
6182 for (i = 0; environ[i] && !found; i++)
6183 {
6184 envchar = environ[i];
6185 namechar = name;
6186 while (*namechar && *namechar != '=' && (*namechar == *envchar))
6187 {
6188 namechar++;
6189 envchar++;
6190 }
6191 found = ((*namechar == '\0' || *namechar == '=') && *envchar == '=');
6192 }
6193 return found ? i - 1 : -1;
6194}
6195
6196 static int
6197newenv()
6198{
6199 char **env, *elem;
6200 int i, esize;
6201
6202#ifdef MACOS
6203 /* for Mac a new, empty environment is created */
6204 i = 0;
6205#else
6206 for (i = 0; environ[i]; i++)
6207 ;
6208#endif
6209 esize = i + EXTRASIZE + 1;
6210 env = (char **)alloc((unsigned)(esize * sizeof (elem)));
6211 if (env == NULL)
6212 return -1;
6213
6214#ifndef MACOS
6215 for (i = 0; environ[i]; i++)
6216 {
6217 elem = (char *)alloc((unsigned)(strlen(environ[i]) + 1));
6218 if (elem == NULL)
6219 return -1;
6220 env[i] = elem;
6221 strcpy(elem, environ[i]);
6222 }
6223#endif
6224
6225 env[i] = 0;
6226 environ = env;
6227 envsize = esize;
6228 return 0;
6229}
6230
6231 static int
6232moreenv()
6233{
6234 int esize;
6235 char **env;
6236
6237 esize = envsize + EXTRASIZE;
6238 env = (char **)vim_realloc((char *)environ, esize * sizeof (*env));
6239 if (env == 0)
6240 return -1;
6241 environ = env;
6242 envsize = esize;
6243 return 0;
6244}
6245
6246# ifdef USE_VIMPTY_GETENV
6247 char_u *
6248vimpty_getenv(string)
6249 const char_u *string;
6250{
6251 int i;
6252 char_u *p;
6253
6254 if (envsize < 0)
6255 return NULL;
6256
6257 i = findenv((char *)string);
6258
6259 if (i < 0)
6260 return NULL;
6261
6262 p = vim_strchr((char_u *)environ[i], '=');
6263 return (p + 1);
6264}
6265# endif
6266
6267#endif /* !defined(HAVE_SETENV) && !defined(HAVE_PUTENV) */
Bram Moolenaarc4a06d32005-06-07 21:04:49 +00006268
Bram Moolenaarc4956c82006-03-12 21:58:43 +00006269#if defined(FEAT_EVAL) || defined(FEAT_SPELL) || defined(PROTO)
Bram Moolenaarc4a06d32005-06-07 21:04:49 +00006270/*
6271 * Return 0 for not writable, 1 for writable file, 2 for a dir which we have
6272 * rights to write into.
6273 */
6274 int
6275filewritable(fname)
6276 char_u *fname;
6277{
6278 int retval = 0;
6279#if defined(UNIX) || defined(VMS)
6280 int perm = 0;
6281#endif
6282
6283#if defined(UNIX) || defined(VMS)
6284 perm = mch_getperm(fname);
6285#endif
6286#ifndef MACOS_CLASSIC /* TODO: get either mch_writable or mch_access */
6287 if (
6288# ifdef WIN3264
6289 mch_writable(fname) &&
6290# else
6291# if defined(UNIX) || defined(VMS)
6292 (perm & 0222) &&
6293# endif
6294# endif
6295 mch_access((char *)fname, W_OK) == 0
6296 )
6297#endif
6298 {
6299 ++retval;
6300 if (mch_isdir(fname))
6301 ++retval;
6302 }
6303 return retval;
6304}
6305#endif
Bram Moolenaar6bab4d12005-06-16 21:53:56 +00006306
6307/*
6308 * Print an error message with one or two "%s" and one or two string arguments.
6309 * This is not in message.c to avoid a warning for prototypes.
6310 */
6311 int
6312emsg3(s, a1, a2)
6313 char_u *s, *a1, *a2;
6314{
Bram Moolenaareb3593b2006-04-22 22:33:57 +00006315 if (emsg_not_now())
Bram Moolenaar6bab4d12005-06-16 21:53:56 +00006316 return TRUE; /* no error messages at the moment */
Bram Moolenaar6f192452007-11-08 19:49:02 +00006317#ifdef HAVE_STDARG_H
6318 vim_snprintf((char *)IObuff, IOSIZE, (char *)s, a1, a2);
6319#else
Bram Moolenaareb3593b2006-04-22 22:33:57 +00006320 vim_snprintf((char *)IObuff, IOSIZE, (char *)s, (long_u)a1, (long_u)a2);
Bram Moolenaar6f192452007-11-08 19:49:02 +00006321#endif
Bram Moolenaar6bab4d12005-06-16 21:53:56 +00006322 return emsg(IObuff);
6323}
6324
6325/*
6326 * Print an error message with one "%ld" and one long int argument.
6327 * This is not in message.c to avoid a warning for prototypes.
6328 */
6329 int
6330emsgn(s, n)
6331 char_u *s;
6332 long n;
6333{
Bram Moolenaareb3593b2006-04-22 22:33:57 +00006334 if (emsg_not_now())
Bram Moolenaar6bab4d12005-06-16 21:53:56 +00006335 return TRUE; /* no error messages at the moment */
6336 vim_snprintf((char *)IObuff, IOSIZE, (char *)s, n);
6337 return emsg(IObuff);
6338}
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006339
6340#if defined(FEAT_SPELL) || defined(FEAT_PERSISTENT_UNDO) || defined(PROTO)
6341/*
6342 * Read 2 bytes from "fd" and turn them into an int, MSB first.
6343 */
6344 int
6345get2c(fd)
6346 FILE *fd;
6347{
Bram Moolenaar9db58062010-05-29 20:33:07 +02006348 int n;
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006349
6350 n = getc(fd);
6351 n = (n << 8) + getc(fd);
6352 return n;
6353}
6354
6355/*
6356 * Read 3 bytes from "fd" and turn them into an int, MSB first.
6357 */
6358 int
6359get3c(fd)
6360 FILE *fd;
6361{
Bram Moolenaar9db58062010-05-29 20:33:07 +02006362 int n;
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006363
6364 n = getc(fd);
6365 n = (n << 8) + getc(fd);
6366 n = (n << 8) + getc(fd);
6367 return n;
6368}
6369
6370/*
6371 * Read 4 bytes from "fd" and turn them into an int, MSB first.
6372 */
6373 int
6374get4c(fd)
6375 FILE *fd;
6376{
Bram Moolenaar9db58062010-05-29 20:33:07 +02006377 int n;
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006378
6379 n = getc(fd);
6380 n = (n << 8) + getc(fd);
6381 n = (n << 8) + getc(fd);
6382 n = (n << 8) + getc(fd);
6383 return n;
6384}
6385
6386/*
6387 * Read 8 bytes from "fd" and turn them into a time_t, MSB first.
6388 */
6389 time_t
6390get8ctime(fd)
6391 FILE *fd;
6392{
6393 time_t n = 0;
6394 int i;
6395
6396 for (i = 0; i < 8; ++i)
6397 n = (n << 8) + getc(fd);
6398 return n;
6399}
6400
6401/*
6402 * Read a string of length "cnt" from "fd" into allocated memory.
6403 * Returns NULL when out of memory or unable to read that many bytes.
6404 */
6405 char_u *
6406read_string(fd, cnt)
6407 FILE *fd;
6408 int cnt;
6409{
6410 char_u *str;
6411 int i;
6412 int c;
6413
6414 /* allocate memory */
6415 str = alloc((unsigned)cnt + 1);
6416 if (str != NULL)
6417 {
6418 /* Read the string. Quit when running into the EOF. */
6419 for (i = 0; i < cnt; ++i)
6420 {
6421 c = getc(fd);
6422 if (c == EOF)
6423 {
6424 vim_free(str);
6425 return NULL;
6426 }
6427 str[i] = c;
6428 }
6429 str[i] = NUL;
6430 }
6431 return str;
6432}
6433
6434/*
6435 * Write a number to file "fd", MSB first, in "len" bytes.
6436 */
6437 int
6438put_bytes(fd, nr, len)
6439 FILE *fd;
6440 long_u nr;
6441 int len;
6442{
6443 int i;
6444
6445 for (i = len - 1; i >= 0; --i)
6446 if (putc((int)(nr >> (i * 8)), fd) == EOF)
6447 return FAIL;
6448 return OK;
6449}
6450
6451#ifdef _MSC_VER
6452# if (_MSC_VER <= 1200)
6453/* This line is required for VC6 without the service pack. Also see the
6454 * matching #pragma below. */
6455 # pragma optimize("", off)
6456# endif
6457#endif
6458
6459/*
6460 * Write time_t to file "fd" in 8 bytes.
6461 */
6462 void
6463put_time(fd, the_time)
6464 FILE *fd;
6465 time_t the_time;
6466{
6467 int c;
6468 int i;
6469 time_t wtime = the_time;
6470
6471 /* time_t can be up to 8 bytes in size, more than long_u, thus we
6472 * can't use put_bytes() here.
6473 * Another problem is that ">>" may do an arithmetic shift that keeps the
Bram Moolenaar644fdff2010-05-30 13:26:21 +02006474 * sign. This happens for large values of wtime. A cast to long_u may
6475 * truncate if time_t is 8 bytes. So only use a cast when it is 4 bytes,
6476 * it's safe to assume that long_u is 4 bytes or more and when using 8
6477 * bytes the top bit won't be set. */
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006478 for (i = 7; i >= 0; --i)
6479 {
6480 if (i + 1 > (int)sizeof(time_t))
6481 /* ">>" doesn't work well when shifting more bits than avail */
6482 putc(0, fd);
6483 else
6484 {
Bram Moolenaar644fdff2010-05-30 13:26:21 +02006485#if defined(SIZEOF_TIME_T) && SIZEOF_TIME_T > 4
Bram Moolenaarbbd6afe2010-06-02 20:32:23 +02006486 c = (int)(wtime >> (i * 8));
Bram Moolenaar644fdff2010-05-30 13:26:21 +02006487#else
Bram Moolenaarbbd6afe2010-06-02 20:32:23 +02006488 c = (int)((long_u)wtime >> (i * 8));
Bram Moolenaar644fdff2010-05-30 13:26:21 +02006489#endif
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006490 putc(c, fd);
6491 }
6492 }
6493}
6494
6495#ifdef _MSC_VER
6496# if (_MSC_VER <= 1200)
6497 # pragma optimize("", on)
6498# endif
6499#endif
6500
6501#endif