blob: e0eea68b5215f35239d1823d0e67fbb64bf1478d [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
203 idx = -1;
204 ptr = line;
205 while (col <= wcol && *ptr != NUL)
206 {
207 /* Count a tab for what it's worth (if list mode not on) */
208#ifdef FEAT_LINEBREAK
209 csize = win_lbr_chartabsize(curwin, ptr, col, &head);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000210 mb_ptr_adv(ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000211#else
212 csize = lbr_chartabsize_adv(&ptr, col);
213#endif
214 col += csize;
215 }
216 idx = (int)(ptr - line);
217 /*
218 * Handle all the special cases. The virtual_active() check
219 * is needed to ensure that a virtual position off the end of
220 * a line has the correct indexing. The one_more comparison
221 * replaces an explicit add of one_more later on.
222 */
223 if (col > wcol || (!virtual_active() && one_more == 0))
224 {
225 idx -= 1;
226# ifdef FEAT_LINEBREAK
227 /* Don't count the chars from 'showbreak'. */
228 csize -= head;
229# endif
230 col -= csize;
231 }
232
233#ifdef FEAT_VIRTUALEDIT
234 if (virtual_active()
235 && addspaces
236 && ((col != wcol && col != wcol + 1) || csize > 1))
237 {
238 /* 'virtualedit' is set: The difference between wcol and col is
239 * filled with spaces. */
240
241 if (line[idx] == NUL)
242 {
243 /* Append spaces */
244 int correct = wcol - col;
245 char_u *newline = alloc(idx + correct + 1);
246 int t;
247
248 if (newline == NULL)
249 return FAIL;
250
251 for (t = 0; t < idx; ++t)
252 newline[t] = line[t];
253
254 for (t = 0; t < correct; ++t)
255 newline[t + idx] = ' ';
256
257 newline[idx + correct] = NUL;
258
259 ml_replace(pos->lnum, newline, FALSE);
260 changed_bytes(pos->lnum, (colnr_T)idx);
261 idx += correct;
262 col = wcol;
263 }
264 else
265 {
266 /* Break a tab */
267 int linelen = (int)STRLEN(line);
268 int correct = wcol - col - csize + 1; /* negative!! */
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000269 char_u *newline;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000270 int t, s = 0;
271 int v;
272
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000273 if (-correct > csize)
274 return FAIL;
275
276 newline = alloc(linelen + csize);
277 if (newline == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000278 return FAIL;
279
280 for (t = 0; t < linelen; t++)
281 {
282 if (t != idx)
283 newline[s++] = line[t];
284 else
285 for (v = 0; v < csize; v++)
286 newline[s++] = ' ';
287 }
288
289 newline[linelen + csize - 1] = NUL;
290
291 ml_replace(pos->lnum, newline, FALSE);
292 changed_bytes(pos->lnum, idx);
293 idx += (csize - 1 + correct);
294 col += correct;
295 }
296 }
297#endif
298 }
299
300 if (idx < 0)
301 pos->col = 0;
302 else
303 pos->col = idx;
304
305#ifdef FEAT_VIRTUALEDIT
306 pos->coladd = 0;
307
308 if (finetune)
309 {
310 if (wcol == MAXCOL)
311 {
312 /* The width of the last character is used to set coladd. */
313 if (!one_more)
314 {
315 colnr_T scol, ecol;
316
317 getvcol(curwin, pos, &scol, NULL, &ecol);
318 pos->coladd = ecol - scol;
319 }
320 }
321 else
322 {
323 int b = (int)wcol - (int)col;
324
325 /* The difference between wcol and col is used to set coladd. */
326 if (b > 0 && b < (MAXCOL - 2 * W_WIDTH(curwin)))
327 pos->coladd = b;
328
329 col += b;
330 }
331 }
332#endif
333
334#ifdef FEAT_MBYTE
Bram Moolenaara1381de2009-11-03 15:44:21 +0000335 /* prevent from moving onto a trail byte */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000336 if (has_mbyte)
Bram Moolenaara1381de2009-11-03 15:44:21 +0000337 mb_adjustpos(pos);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000338#endif
339
340 if (col < wcol)
341 return FAIL;
342 return OK;
343}
344
345/*
Bram Moolenaar446cb832008-06-24 21:56:24 +0000346 * Increment the cursor position. See inc() for return values.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000347 */
348 int
349inc_cursor()
350{
351 return inc(&curwin->w_cursor);
352}
353
Bram Moolenaar446cb832008-06-24 21:56:24 +0000354/*
355 * Increment the line pointer "lp" crossing line boundaries as necessary.
356 * Return 1 when going to the next line.
357 * Return 2 when moving forward onto a NUL at the end of the line).
358 * Return -1 when at the end of file.
359 * Return 0 otherwise.
360 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000361 int
362inc(lp)
363 pos_T *lp;
364{
365 char_u *p = ml_get_pos(lp);
366
367 if (*p != NUL) /* still within line, move to next char (may be NUL) */
368 {
369#ifdef FEAT_MBYTE
370 if (has_mbyte)
371 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000372 int l = (*mb_ptr2len)(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000373
374 lp->col += l;
375 return ((p[l] != NUL) ? 0 : 2);
376 }
377#endif
378 lp->col++;
379#ifdef FEAT_VIRTUALEDIT
380 lp->coladd = 0;
381#endif
382 return ((p[1] != NUL) ? 0 : 2);
383 }
384 if (lp->lnum != curbuf->b_ml.ml_line_count) /* there is a next line */
385 {
386 lp->col = 0;
387 lp->lnum++;
388#ifdef FEAT_VIRTUALEDIT
389 lp->coladd = 0;
390#endif
391 return 1;
392 }
393 return -1;
394}
395
396/*
397 * incl(lp): same as inc(), but skip the NUL at the end of non-empty lines
398 */
399 int
400incl(lp)
401 pos_T *lp;
402{
403 int r;
404
405 if ((r = inc(lp)) >= 1 && lp->col)
406 r = inc(lp);
407 return r;
408}
409
410/*
411 * dec(p)
412 *
413 * Decrement the line pointer 'p' crossing line boundaries as necessary.
414 * Return 1 when crossing a line, -1 when at start of file, 0 otherwise.
415 */
416 int
417dec_cursor()
418{
419 return dec(&curwin->w_cursor);
420}
421
422 int
423dec(lp)
424 pos_T *lp;
425{
426 char_u *p;
427
428#ifdef FEAT_VIRTUALEDIT
429 lp->coladd = 0;
430#endif
431 if (lp->col > 0) /* still within line */
432 {
433 lp->col--;
434#ifdef FEAT_MBYTE
435 if (has_mbyte)
436 {
437 p = ml_get(lp->lnum);
438 lp->col -= (*mb_head_off)(p, p + lp->col);
439 }
440#endif
441 return 0;
442 }
443 if (lp->lnum > 1) /* there is a prior line */
444 {
445 lp->lnum--;
446 p = ml_get(lp->lnum);
447 lp->col = (colnr_T)STRLEN(p);
448#ifdef FEAT_MBYTE
449 if (has_mbyte)
450 lp->col -= (*mb_head_off)(p, p + lp->col);
451#endif
452 return 1;
453 }
454 return -1; /* at start of file */
455}
456
457/*
458 * decl(lp): same as dec(), but skip the NUL at the end of non-empty lines
459 */
460 int
461decl(lp)
462 pos_T *lp;
463{
464 int r;
465
466 if ((r = dec(lp)) == 1 && lp->col)
467 r = dec(lp);
468 return r;
469}
470
471/*
Bram Moolenaar64486672010-05-16 15:46:46 +0200472 * Get the line number relative to the current cursor position, i.e. the
473 * difference between line number and cursor position. Only look for lines that
474 * can be visible, folded lines don't count.
475 */
476 linenr_T
477get_cursor_rel_lnum(wp, lnum)
478 win_T *wp;
479 linenr_T lnum; /* line number to get the result for */
480{
481 linenr_T cursor = wp->w_cursor.lnum;
482 linenr_T retval = 0;
483
484#ifdef FEAT_FOLDING
485 if (hasAnyFolding(wp))
486 {
487 if (lnum > cursor)
488 {
489 while (lnum > cursor)
490 {
491 (void)hasFolding(lnum, &lnum, NULL);
492 /* if lnum and cursor are in the same fold,
493 * now lnum <= cursor */
494 if (lnum > cursor)
495 retval++;
496 lnum--;
497 }
498 }
499 else if (lnum < cursor)
500 {
501 while (lnum < cursor)
502 {
503 (void)hasFolding(lnum, NULL, &lnum);
504 /* if lnum and cursor are in the same fold,
505 * now lnum >= cursor */
506 if (lnum < cursor)
507 retval--;
508 lnum++;
509 }
510 }
511 /* else if (lnum == cursor)
512 * retval = 0;
513 */
514 }
515 else
516#endif
517 retval = lnum - cursor;
518
519 return retval;
520}
521
522/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000523 * Make sure curwin->w_cursor.lnum is valid.
524 */
525 void
526check_cursor_lnum()
527{
528 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
529 {
530#ifdef FEAT_FOLDING
531 /* If there is a closed fold at the end of the file, put the cursor in
532 * its first line. Otherwise in the last line. */
533 if (!hasFolding(curbuf->b_ml.ml_line_count,
534 &curwin->w_cursor.lnum, NULL))
535#endif
536 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
537 }
538 if (curwin->w_cursor.lnum <= 0)
539 curwin->w_cursor.lnum = 1;
540}
541
542/*
543 * Make sure curwin->w_cursor.col is valid.
544 */
545 void
546check_cursor_col()
547{
548 colnr_T len;
549#ifdef FEAT_VIRTUALEDIT
Bram Moolenaar552c8a52009-03-11 16:29:20 +0000550 colnr_T oldcol = curwin->w_cursor.col;
551 colnr_T oldcoladd = curwin->w_cursor.col + curwin->w_cursor.coladd;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000552#endif
553
554 len = (colnr_T)STRLEN(ml_get_curline());
555 if (len == 0)
556 curwin->w_cursor.col = 0;
557 else if (curwin->w_cursor.col >= len)
558 {
Bram Moolenaar33f54432008-01-04 20:25:44 +0000559 /* Allow cursor past end-of-line when:
560 * - in Insert mode or restarting Insert mode
561 * - in Visual mode and 'selection' isn't "old"
562 * - 'virtualedit' is set */
Bram Moolenaarebefac62005-12-28 22:39:57 +0000563 if ((State & INSERT) || restart_edit
Bram Moolenaar071d4272004-06-13 20:20:40 +0000564#ifdef FEAT_VISUAL
565 || (VIsual_active && *p_sel != 'o')
566#endif
Bram Moolenaar33f54432008-01-04 20:25:44 +0000567#ifdef FEAT_VIRTUALEDIT
568 || (ve_flags & VE_ONEMORE)
569#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000570 || virtual_active())
571 curwin->w_cursor.col = len;
572 else
Bram Moolenaar87c19962007-04-26 08:54:21 +0000573 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000574 curwin->w_cursor.col = len - 1;
Bram Moolenaar87c19962007-04-26 08:54:21 +0000575#ifdef FEAT_MBYTE
576 /* prevent cursor from moving on the trail byte */
577 if (has_mbyte)
578 mb_adjust_cursor();
579#endif
580 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000581 }
Bram Moolenaar742d1ec2009-12-31 12:18:30 +0000582 else if (curwin->w_cursor.col < 0)
583 curwin->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000584
585#ifdef FEAT_VIRTUALEDIT
586 /* If virtual editing is on, we can leave the cursor on the old position,
587 * only we must set it to virtual. But don't do it when at the end of the
588 * line. */
589 if (oldcol == MAXCOL)
590 curwin->w_cursor.coladd = 0;
591 else if (ve_flags == VE_ALL)
Bram Moolenaar552c8a52009-03-11 16:29:20 +0000592 {
593 if (oldcoladd > curwin->w_cursor.col)
594 curwin->w_cursor.coladd = oldcoladd - curwin->w_cursor.col;
595 else
596 /* avoid weird number when there is a miscalculation or overflow */
597 curwin->w_cursor.coladd = 0;
598 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000599#endif
600}
601
602/*
603 * make sure curwin->w_cursor in on a valid character
604 */
605 void
606check_cursor()
607{
608 check_cursor_lnum();
609 check_cursor_col();
610}
611
612#if defined(FEAT_TEXTOBJ) || defined(PROTO)
613/*
614 * Make sure curwin->w_cursor is not on the NUL at the end of the line.
615 * Allow it when in Visual mode and 'selection' is not "old".
616 */
617 void
618adjust_cursor_col()
619{
620 if (curwin->w_cursor.col > 0
621# ifdef FEAT_VISUAL
622 && (!VIsual_active || *p_sel == 'o')
623# endif
624 && gchar_cursor() == NUL)
625 --curwin->w_cursor.col;
626}
627#endif
628
629/*
630 * When curwin->w_leftcol has changed, adjust the cursor position.
631 * Return TRUE if the cursor was moved.
632 */
633 int
634leftcol_changed()
635{
636 long lastcol;
637 colnr_T s, e;
638 int retval = FALSE;
639
640 changed_cline_bef_curs();
641 lastcol = curwin->w_leftcol + W_WIDTH(curwin) - curwin_col_off() - 1;
642 validate_virtcol();
643
644 /*
645 * If the cursor is right or left of the screen, move it to last or first
646 * character.
647 */
648 if (curwin->w_virtcol > (colnr_T)(lastcol - p_siso))
649 {
650 retval = TRUE;
651 coladvance((colnr_T)(lastcol - p_siso));
652 }
653 else if (curwin->w_virtcol < curwin->w_leftcol + p_siso)
654 {
655 retval = TRUE;
656 (void)coladvance((colnr_T)(curwin->w_leftcol + p_siso));
657 }
658
659 /*
660 * If the start of the character under the cursor is not on the screen,
661 * advance the cursor one more char. If this fails (last char of the
662 * line) adjust the scrolling.
663 */
664 getvvcol(curwin, &curwin->w_cursor, &s, NULL, &e);
665 if (e > (colnr_T)lastcol)
666 {
667 retval = TRUE;
668 coladvance(s - 1);
669 }
670 else if (s < curwin->w_leftcol)
671 {
672 retval = TRUE;
673 if (coladvance(e + 1) == FAIL) /* there isn't another character */
674 {
675 curwin->w_leftcol = s; /* adjust w_leftcol instead */
676 changed_cline_bef_curs();
677 }
678 }
679
680 if (retval)
681 curwin->w_set_curswant = TRUE;
682 redraw_later(NOT_VALID);
683 return retval;
684}
685
686/**********************************************************************
687 * Various routines dealing with allocation and deallocation of memory.
688 */
689
690#if defined(MEM_PROFILE) || defined(PROTO)
691
692# define MEM_SIZES 8200
693static long_u mem_allocs[MEM_SIZES];
694static long_u mem_frees[MEM_SIZES];
695static long_u mem_allocated;
696static long_u mem_freed;
697static long_u mem_peak;
698static long_u num_alloc;
699static long_u num_freed;
700
701static void mem_pre_alloc_s __ARGS((size_t *sizep));
702static void mem_pre_alloc_l __ARGS((long_u *sizep));
703static void mem_post_alloc __ARGS((void **pp, size_t size));
704static void mem_pre_free __ARGS((void **pp));
705
706 static void
707mem_pre_alloc_s(sizep)
708 size_t *sizep;
709{
710 *sizep += sizeof(size_t);
711}
712
713 static void
714mem_pre_alloc_l(sizep)
715 long_u *sizep;
716{
717 *sizep += sizeof(size_t);
718}
719
720 static void
721mem_post_alloc(pp, size)
722 void **pp;
723 size_t size;
724{
725 if (*pp == NULL)
726 return;
727 size -= sizeof(size_t);
728 *(long_u *)*pp = size;
729 if (size <= MEM_SIZES-1)
730 mem_allocs[size-1]++;
731 else
732 mem_allocs[MEM_SIZES-1]++;
733 mem_allocated += size;
734 if (mem_allocated - mem_freed > mem_peak)
735 mem_peak = mem_allocated - mem_freed;
736 num_alloc++;
737 *pp = (void *)((char *)*pp + sizeof(size_t));
738}
739
740 static void
741mem_pre_free(pp)
742 void **pp;
743{
744 long_u size;
745
746 *pp = (void *)((char *)*pp - sizeof(size_t));
747 size = *(size_t *)*pp;
748 if (size <= MEM_SIZES-1)
749 mem_frees[size-1]++;
750 else
751 mem_frees[MEM_SIZES-1]++;
752 mem_freed += size;
753 num_freed++;
754}
755
756/*
757 * called on exit via atexit()
758 */
759 void
760vim_mem_profile_dump()
761{
762 int i, j;
763
764 printf("\r\n");
765 j = 0;
766 for (i = 0; i < MEM_SIZES - 1; i++)
767 {
768 if (mem_allocs[i] || mem_frees[i])
769 {
770 if (mem_frees[i] > mem_allocs[i])
771 printf("\r\n%s", _("ERROR: "));
772 printf("[%4d / %4lu-%-4lu] ", i + 1, mem_allocs[i], mem_frees[i]);
773 j++;
774 if (j > 3)
775 {
776 j = 0;
777 printf("\r\n");
778 }
779 }
780 }
781
782 i = MEM_SIZES - 1;
783 if (mem_allocs[i])
784 {
785 printf("\r\n");
786 if (mem_frees[i] > mem_allocs[i])
787 printf(_("ERROR: "));
788 printf("[>%d / %4lu-%-4lu]", i, mem_allocs[i], mem_frees[i]);
789 }
790
791 printf(_("\n[bytes] total alloc-freed %lu-%lu, in use %lu, peak use %lu\n"),
792 mem_allocated, mem_freed, mem_allocated - mem_freed, mem_peak);
793 printf(_("[calls] total re/malloc()'s %lu, total free()'s %lu\n\n"),
794 num_alloc, num_freed);
795}
796
797#endif /* MEM_PROFILE */
798
799/*
800 * Some memory is reserved for error messages and for being able to
801 * call mf_release_all(), which needs some memory for mf_trans_add().
802 */
803#if defined(MSDOS) && !defined(DJGPP)
804# define SMALL_MEM
805# define KEEP_ROOM 8192L
806#else
807# define KEEP_ROOM (2 * 8192L)
808#endif
809
810/*
Bram Moolenaar2a329742008-04-01 12:53:43 +0000811 * Note: if unsigned is 16 bits we can only allocate up to 64K with alloc().
Bram Moolenaar071d4272004-06-13 20:20:40 +0000812 * Use lalloc for larger blocks.
813 */
814 char_u *
815alloc(size)
816 unsigned size;
817{
818 return (lalloc((long_u)size, TRUE));
819}
820
821/*
822 * Allocate memory and set all bytes to zero.
823 */
824 char_u *
825alloc_clear(size)
826 unsigned size;
827{
828 char_u *p;
829
830 p = (lalloc((long_u)size, TRUE));
831 if (p != NULL)
832 (void)vim_memset(p, 0, (size_t)size);
833 return p;
834}
835
836/*
837 * alloc() with check for maximum line length
838 */
839 char_u *
840alloc_check(size)
841 unsigned size;
842{
843#if !defined(UNIX) && !defined(__EMX__)
844 if (sizeof(int) == 2 && size > 0x7fff)
845 {
846 /* Don't hide this message */
847 emsg_silent = 0;
848 EMSG(_("E340: Line is becoming too long"));
849 return NULL;
850 }
851#endif
852 return (lalloc((long_u)size, TRUE));
853}
854
855/*
856 * Allocate memory like lalloc() and set all bytes to zero.
857 */
858 char_u *
859lalloc_clear(size, message)
860 long_u size;
861 int message;
862{
863 char_u *p;
864
865 p = (lalloc(size, message));
866 if (p != NULL)
867 (void)vim_memset(p, 0, (size_t)size);
868 return p;
869}
870
871/*
872 * Low level memory allocation function.
873 * This is used often, KEEP IT FAST!
874 */
875 char_u *
876lalloc(size, message)
877 long_u size;
878 int message;
879{
880 char_u *p; /* pointer to new storage space */
881 static int releasing = FALSE; /* don't do mf_release_all() recursive */
882 int try_again;
883#if defined(HAVE_AVAIL_MEM) && !defined(SMALL_MEM)
884 static long_u allocated = 0; /* allocated since last avail check */
885#endif
886
887 /* Safety check for allocating zero bytes */
888 if (size == 0)
889 {
890 /* Don't hide this message */
891 emsg_silent = 0;
892 EMSGN(_("E341: Internal error: lalloc(%ld, )"), size);
893 return NULL;
894 }
895
896#ifdef MEM_PROFILE
897 mem_pre_alloc_l(&size);
898#endif
899
900#if defined(MSDOS) && !defined(DJGPP)
901 if (size >= 0xfff0) /* in MSDOS we can't deal with >64K blocks */
902 p = NULL;
903 else
904#endif
905
906 /*
907 * Loop when out of memory: Try to release some memfile blocks and
908 * if some blocks are released call malloc again.
909 */
910 for (;;)
911 {
912 /*
913 * Handle three kind of systems:
914 * 1. No check for available memory: Just return.
915 * 2. Slow check for available memory: call mch_avail_mem() after
916 * allocating KEEP_ROOM amount of memory.
917 * 3. Strict check for available memory: call mch_avail_mem()
918 */
919 if ((p = (char_u *)malloc((size_t)size)) != NULL)
920 {
921#ifndef HAVE_AVAIL_MEM
922 /* 1. No check for available memory: Just return. */
923 goto theend;
924#else
925# ifndef SMALL_MEM
926 /* 2. Slow check for available memory: call mch_avail_mem() after
927 * allocating (KEEP_ROOM / 2) amount of memory. */
928 allocated += size;
929 if (allocated < KEEP_ROOM / 2)
930 goto theend;
931 allocated = 0;
932# endif
933 /* 3. check for available memory: call mch_avail_mem() */
934 if (mch_avail_mem(TRUE) < KEEP_ROOM && !releasing)
935 {
Bram Moolenaar5a221812008-11-12 12:08:45 +0000936 free((char *)p); /* System is low... no go! */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000937 p = NULL;
938 }
939 else
940 goto theend;
941#endif
942 }
943 /*
944 * Remember that mf_release_all() is being called to avoid an endless
945 * loop, because mf_release_all() may call alloc() recursively.
946 */
947 if (releasing)
948 break;
949 releasing = TRUE;
Bram Moolenaar661b1822005-07-28 22:36:45 +0000950
951 clear_sb_text(); /* free any scrollback text */
952 try_again = mf_release_all(); /* release as many blocks as possible */
Bram Moolenaar39a58ca2005-06-27 22:42:44 +0000953#ifdef FEAT_EVAL
Bram Moolenaar661b1822005-07-28 22:36:45 +0000954 try_again |= garbage_collect(); /* cleanup recursive lists/dicts */
Bram Moolenaar39a58ca2005-06-27 22:42:44 +0000955#endif
Bram Moolenaar661b1822005-07-28 22:36:45 +0000956
Bram Moolenaar071d4272004-06-13 20:20:40 +0000957 releasing = FALSE;
958 if (!try_again)
959 break;
960 }
961
962 if (message && p == NULL)
963 do_outofmem_msg(size);
964
965theend:
966#ifdef MEM_PROFILE
967 mem_post_alloc((void **)&p, (size_t)size);
968#endif
969 return p;
970}
971
972#if defined(MEM_PROFILE) || defined(PROTO)
973/*
974 * realloc() with memory profiling.
975 */
976 void *
977mem_realloc(ptr, size)
978 void *ptr;
979 size_t size;
980{
981 void *p;
982
983 mem_pre_free(&ptr);
984 mem_pre_alloc_s(&size);
985
986 p = realloc(ptr, size);
987
988 mem_post_alloc(&p, size);
989
990 return p;
991}
992#endif
993
994/*
995* Avoid repeating the error message many times (they take 1 second each).
996* Did_outofmem_msg is reset when a character is read.
997*/
998 void
999do_outofmem_msg(size)
1000 long_u size;
1001{
1002 if (!did_outofmem_msg)
1003 {
1004 /* Don't hide this message */
1005 emsg_silent = 0;
1006 EMSGN(_("E342: Out of memory! (allocating %lu bytes)"), size);
1007 did_outofmem_msg = TRUE;
1008 }
1009}
1010
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001011#if defined(EXITFREE) || defined(PROTO)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001012
1013# if defined(FEAT_SEARCHPATH)
1014static void free_findfile __ARGS((void));
1015# endif
1016
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001017/*
1018 * Free everything that we allocated.
1019 * Can be used to detect memory leaks, e.g., with ccmalloc.
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001020 * NOTE: This is tricky! Things are freed that functions depend on. Don't be
1021 * surprised if Vim crashes...
1022 * Some things can't be freed, esp. things local to a library function.
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001023 */
1024 void
1025free_all_mem()
1026{
1027 buf_T *buf, *nextbuf;
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001028 static int entered = FALSE;
1029
1030 /* When we cause a crash here it is caught and Vim tries to exit cleanly.
1031 * Don't try freeing everything again. */
1032 if (entered)
1033 return;
1034 entered = TRUE;
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001035
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001036# ifdef FEAT_AUTOCMD
Bram Moolenaar78ab3312007-09-29 12:16:41 +00001037 block_autocmds(); /* don't want to trigger autocommands here */
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001038# endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001039
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001040# ifdef FEAT_WINDOWS
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00001041 /* close all tabs and windows */
Bram Moolenaar7d47b6e2006-03-15 22:59:18 +00001042 if (first_tabpage->tp_next != NULL)
1043 do_cmdline_cmd((char_u *)"tabonly!");
1044 if (firstwin != lastwin)
1045 do_cmdline_cmd((char_u *)"only!");
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001046# endif
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00001047
Bram Moolenaarc4956c82006-03-12 21:58:43 +00001048# if defined(FEAT_SPELL)
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001049 /* Free all spell info. */
1050 spell_free_all();
1051# endif
1052
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001053# if defined(FEAT_USR_CMDS)
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001054 /* Clear user commands (before deleting buffers). */
1055 ex_comclear(NULL);
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001056# endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001057
1058# ifdef FEAT_MENU
1059 /* Clear menus. */
1060 do_cmdline_cmd((char_u *)"aunmenu *");
Bram Moolenaar21160b92009-11-11 15:56:10 +00001061# ifdef FEAT_MULTI_LANG
1062 do_cmdline_cmd((char_u *)"menutranslate clear");
1063# endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001064# endif
1065
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001066 /* Clear mappings, abbreviations, breakpoints. */
Bram Moolenaar21160b92009-11-11 15:56:10 +00001067 do_cmdline_cmd((char_u *)"lmapclear");
1068 do_cmdline_cmd((char_u *)"xmapclear");
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001069 do_cmdline_cmd((char_u *)"mapclear");
1070 do_cmdline_cmd((char_u *)"mapclear!");
1071 do_cmdline_cmd((char_u *)"abclear");
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001072# if defined(FEAT_EVAL)
1073 do_cmdline_cmd((char_u *)"breakdel *");
1074# endif
Bram Moolenaar1e498f52005-06-26 22:29:44 +00001075# if defined(FEAT_PROFILE)
1076 do_cmdline_cmd((char_u *)"profdel *");
1077# endif
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00001078# if defined(FEAT_KEYMAP)
1079 do_cmdline_cmd((char_u *)"set keymap=");
1080#endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001081
1082# ifdef FEAT_TITLE
1083 free_titles();
1084# endif
1085# if defined(FEAT_SEARCHPATH)
1086 free_findfile();
1087# endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001088
1089 /* Obviously named calls. */
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001090# if defined(FEAT_AUTOCMD)
1091 free_all_autocmds();
1092# endif
1093 clear_termcodes();
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001094 free_all_options();
1095 free_all_marks();
1096 alist_clear(&global_alist);
1097 free_homedir();
1098 free_search_patterns();
1099 free_old_sub();
1100 free_last_insert();
1101 free_prev_shellcmd();
1102 free_regexp_stuff();
1103 free_tag_stuff();
1104 free_cd_dir();
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00001105# ifdef FEAT_SIGNS
1106 free_signs();
1107# endif
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001108# ifdef FEAT_EVAL
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001109 set_expr_line(NULL);
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001110# endif
1111# ifdef FEAT_DIFF
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00001112 diff_clear(curtab);
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001113# endif
Bram Moolenaara40ceaf2006-01-13 22:35:40 +00001114 clear_sb_text(); /* free any scrollback text */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001115
1116 /* Free some global vars. */
1117 vim_free(username);
Bram Moolenaaraf92ee82007-10-07 13:45:08 +00001118# ifdef FEAT_CLIPBOARD
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001119 vim_free(clip_exclude_prog);
Bram Moolenaaraf92ee82007-10-07 13:45:08 +00001120# endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001121 vim_free(last_cmdline);
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001122# ifdef FEAT_CMDHIST
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001123 vim_free(new_last_cmdline);
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001124# endif
Bram Moolenaar238a5642006-02-21 22:12:05 +00001125 set_keep_msg(NULL, 0);
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001126 vim_free(ff_expand_buffer);
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001127
1128 /* Clear cmdline history. */
1129 p_hi = 0;
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001130# ifdef FEAT_CMDHIST
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001131 init_history();
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001132# endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001133
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001134#ifdef FEAT_QUICKFIX
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001135 {
Bram Moolenaarbd1e5d22009-04-29 09:02:44 +00001136 win_T *win;
1137 tabpage_T *tab;
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001138
1139 qf_free_all(NULL);
1140 /* Free all location lists */
Bram Moolenaarbd1e5d22009-04-29 09:02:44 +00001141 FOR_ALL_TAB_WINDOWS(tab, win)
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001142 qf_free_all(win);
1143 }
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001144#endif
1145
1146 /* Close all script inputs. */
1147 close_all_scripts();
1148
1149#if defined(FEAT_WINDOWS)
1150 /* Destroy all windows. Must come before freeing buffers. */
1151 win_free_all();
1152#endif
1153
Bram Moolenaar2a329742008-04-01 12:53:43 +00001154 /* Free all buffers. Reset 'autochdir' to avoid accessing things that
1155 * were freed already. */
1156#ifdef FEAT_AUTOCHDIR
1157 p_acd = FALSE;
1158#endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001159 for (buf = firstbuf; buf != NULL; )
1160 {
1161 nextbuf = buf->b_next;
1162 close_buffer(NULL, buf, DOBUF_WIPE);
1163 if (buf_valid(buf))
1164 buf = nextbuf; /* didn't work, try next one */
1165 else
1166 buf = firstbuf;
1167 }
1168
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001169#ifdef FEAT_ARABIC
1170 free_cmdline_buf();
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001171#endif
1172
1173 /* Clear registers. */
1174 clear_registers();
1175 ResetRedobuff();
1176 ResetRedobuff();
1177
Bram Moolenaar85c79d32007-02-20 01:59:20 +00001178#if defined(FEAT_CLIENTSERVER) && defined(FEAT_X11)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001179 vim_free(serverDelayedStartName);
1180#endif
1181
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001182 /* highlight info */
1183 free_highlight();
1184
Bram Moolenaar1e498f52005-06-26 22:29:44 +00001185 reset_last_sourcing();
1186
Bram Moolenaar7d47b6e2006-03-15 22:59:18 +00001187#ifdef FEAT_WINDOWS
Bram Moolenaar06a89a52006-04-29 22:01:03 +00001188 free_tabpage(first_tabpage);
1189 first_tabpage = NULL;
Bram Moolenaar7d47b6e2006-03-15 22:59:18 +00001190#endif
1191
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001192# ifdef UNIX
1193 /* Machine-specific free. */
1194 mch_free_mem();
1195# endif
1196
1197 /* message history */
1198 for (;;)
1199 if (delete_first_msg() == FAIL)
1200 break;
1201
1202# ifdef FEAT_EVAL
1203 eval_clear();
1204# endif
1205
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001206 free_termoptions();
1207
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001208 /* screenlines (can't display anything now!) */
1209 free_screenlines();
1210
1211#if defined(USE_XSMP)
1212 xsmp_close();
1213#endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001214#ifdef FEAT_GUI_GTK
1215 gui_mch_free_all();
1216#endif
1217 clear_hl_tables();
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001218
1219 vim_free(IObuff);
1220 vim_free(NameBuff);
1221}
1222#endif
1223
Bram Moolenaar071d4272004-06-13 20:20:40 +00001224/*
1225 * copy a string into newly allocated memory
1226 */
1227 char_u *
1228vim_strsave(string)
1229 char_u *string;
1230{
1231 char_u *p;
1232 unsigned len;
1233
1234 len = (unsigned)STRLEN(string) + 1;
1235 p = alloc(len);
1236 if (p != NULL)
1237 mch_memmove(p, string, (size_t)len);
1238 return p;
1239}
1240
1241 char_u *
1242vim_strnsave(string, len)
1243 char_u *string;
1244 int len;
1245{
1246 char_u *p;
1247
1248 p = alloc((unsigned)(len + 1));
1249 if (p != NULL)
1250 {
1251 STRNCPY(p, string, len);
1252 p[len] = NUL;
1253 }
1254 return p;
1255}
1256
Bram Moolenaar071d4272004-06-13 20:20:40 +00001257/*
1258 * Same as vim_strsave(), but any characters found in esc_chars are preceded
1259 * by a backslash.
1260 */
1261 char_u *
1262vim_strsave_escaped(string, esc_chars)
1263 char_u *string;
1264 char_u *esc_chars;
1265{
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001266 return vim_strsave_escaped_ext(string, esc_chars, '\\', FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001267}
1268
1269/*
1270 * Same as vim_strsave_escaped(), but when "bsl" is TRUE also escape
1271 * characters where rem_backslash() would remove the backslash.
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001272 * Escape the characters with "cc".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001273 */
1274 char_u *
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001275vim_strsave_escaped_ext(string, esc_chars, cc, bsl)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001276 char_u *string;
1277 char_u *esc_chars;
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001278 int cc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001279 int bsl;
1280{
1281 char_u *p;
1282 char_u *p2;
1283 char_u *escaped_string;
1284 unsigned length;
1285#ifdef FEAT_MBYTE
1286 int l;
1287#endif
1288
1289 /*
1290 * First count the number of backslashes required.
1291 * Then allocate the memory and insert them.
1292 */
1293 length = 1; /* count the trailing NUL */
1294 for (p = string; *p; p++)
1295 {
1296#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001297 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001298 {
1299 length += l; /* count a multibyte char */
1300 p += l - 1;
1301 continue;
1302 }
1303#endif
1304 if (vim_strchr(esc_chars, *p) != NULL || (bsl && rem_backslash(p)))
1305 ++length; /* count a backslash */
1306 ++length; /* count an ordinary char */
1307 }
1308 escaped_string = alloc(length);
1309 if (escaped_string != NULL)
1310 {
1311 p2 = escaped_string;
1312 for (p = string; *p; p++)
1313 {
1314#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001315 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001316 {
1317 mch_memmove(p2, p, (size_t)l);
1318 p2 += l;
1319 p += l - 1; /* skip multibyte char */
1320 continue;
1321 }
1322#endif
1323 if (vim_strchr(esc_chars, *p) != NULL || (bsl && rem_backslash(p)))
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001324 *p2++ = cc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001325 *p2++ = *p;
1326 }
1327 *p2 = NUL;
1328 }
1329 return escaped_string;
1330}
1331
Bram Moolenaar7693ec62008-07-24 18:29:37 +00001332/*
1333 * Return TRUE when 'shell' has "csh" in the tail.
1334 */
1335 int
1336csh_like_shell()
1337{
1338 return (strstr((char *)gettail(p_sh), "csh") != NULL);
1339}
Bram Moolenaar7693ec62008-07-24 18:29:37 +00001340
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001341/*
1342 * Escape "string" for use as a shell argument with system().
Bram Moolenaar21160b92009-11-11 15:56:10 +00001343 * This uses single quotes, except when we know we need to use double quotes
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001344 * (MS-DOS and MS-Windows without 'shellslash' set).
Bram Moolenaarffd66c42008-07-16 20:43:37 +00001345 * Escape a newline, depending on the 'shell' option.
1346 * When "do_special" is TRUE also replace "!", "%", "#" and things starting
1347 * with "<" like "<cfile>".
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001348 * Returns the result in allocated memory, NULL if we have run out.
1349 */
1350 char_u *
Bram Moolenaar05bb9532008-07-04 09:44:11 +00001351vim_strsave_shellescape(string, do_special)
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001352 char_u *string;
Bram Moolenaar05bb9532008-07-04 09:44:11 +00001353 int do_special;
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001354{
1355 unsigned length;
1356 char_u *p;
1357 char_u *d;
1358 char_u *escaped_string;
Bram Moolenaar05bb9532008-07-04 09:44:11 +00001359 int l;
Bram Moolenaarffd66c42008-07-16 20:43:37 +00001360 int csh_like;
1361
1362 /* Only csh and similar shells expand '!' within single quotes. For sh and
1363 * the like we must not put a backslash before it, it will be taken
1364 * literally. If do_special is set the '!' will be escaped twice.
1365 * Csh also needs to have "\n" escaped twice when do_special is set. */
Bram Moolenaar7693ec62008-07-24 18:29:37 +00001366 csh_like = csh_like_shell();
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001367
1368 /* First count the number of extra bytes required. */
Bram Moolenaar77f66d62007-02-20 02:16:18 +00001369 length = (unsigned)STRLEN(string) + 3; /* two quotes and a trailing NUL */
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001370 for (p = string; *p != NUL; mb_ptr_adv(p))
1371 {
1372# if defined(WIN32) || defined(WIN16) || defined(DOS)
1373 if (!p_ssl)
1374 {
1375 if (*p == '"')
1376 ++length; /* " -> "" */
1377 }
1378 else
1379# endif
1380 if (*p == '\'')
1381 length += 3; /* ' => '\'' */
Bram Moolenaarffd66c42008-07-16 20:43:37 +00001382 if (*p == '\n' || (*p == '!' && (csh_like || do_special)))
1383 {
1384 ++length; /* insert backslash */
1385 if (csh_like && do_special)
1386 ++length; /* insert backslash */
1387 }
Bram Moolenaar05bb9532008-07-04 09:44:11 +00001388 if (do_special && find_cmdline_var(p, &l) >= 0)
1389 {
1390 ++length; /* insert backslash */
1391 p += l - 1;
1392 }
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001393 }
1394
1395 /* Allocate memory for the result and fill it. */
1396 escaped_string = alloc(length);
1397 if (escaped_string != NULL)
1398 {
1399 d = escaped_string;
1400
1401 /* add opening quote */
1402# if defined(WIN32) || defined(WIN16) || defined(DOS)
1403 if (!p_ssl)
1404 *d++ = '"';
1405 else
1406# endif
1407 *d++ = '\'';
1408
1409 for (p = string; *p != NUL; )
1410 {
1411# if defined(WIN32) || defined(WIN16) || defined(DOS)
1412 if (!p_ssl)
1413 {
1414 if (*p == '"')
1415 {
1416 *d++ = '"';
1417 *d++ = '"';
1418 ++p;
1419 continue;
1420 }
1421 }
1422 else
1423# endif
1424 if (*p == '\'')
1425 {
Bram Moolenaar05bb9532008-07-04 09:44:11 +00001426 *d++ = '\'';
1427 *d++ = '\\';
1428 *d++ = '\'';
1429 *d++ = '\'';
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001430 ++p;
1431 continue;
1432 }
Bram Moolenaarffd66c42008-07-16 20:43:37 +00001433 if (*p == '\n' || (*p == '!' && (csh_like || do_special)))
1434 {
1435 *d++ = '\\';
1436 if (csh_like && do_special)
1437 *d++ = '\\';
1438 *d++ = *p++;
1439 continue;
1440 }
Bram Moolenaar05bb9532008-07-04 09:44:11 +00001441 if (do_special && find_cmdline_var(p, &l) >= 0)
1442 {
1443 *d++ = '\\'; /* insert backslash */
1444 while (--l >= 0) /* copy the var */
1445 *d++ = *p++;
Bram Moolenaar099d01d2009-11-25 16:14:45 +00001446 continue;
Bram Moolenaar05bb9532008-07-04 09:44:11 +00001447 }
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001448
1449 MB_COPY_CHAR(p, d);
1450 }
1451
1452 /* add terminating quote and finish with a NUL */
1453# if defined(WIN32) || defined(WIN16) || defined(DOS)
1454 if (!p_ssl)
1455 *d++ = '"';
1456 else
1457# endif
1458 *d++ = '\'';
1459 *d = NUL;
1460 }
1461
1462 return escaped_string;
1463}
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001464
Bram Moolenaar071d4272004-06-13 20:20:40 +00001465/*
1466 * Like vim_strsave(), but make all characters uppercase.
1467 * This uses ASCII lower-to-upper case translation, language independent.
1468 */
1469 char_u *
1470vim_strsave_up(string)
1471 char_u *string;
1472{
1473 char_u *p1;
1474
1475 p1 = vim_strsave(string);
1476 vim_strup(p1);
1477 return p1;
1478}
1479
1480/*
1481 * Like vim_strnsave(), but make all characters uppercase.
1482 * This uses ASCII lower-to-upper case translation, language independent.
1483 */
1484 char_u *
1485vim_strnsave_up(string, len)
1486 char_u *string;
1487 int len;
1488{
1489 char_u *p1;
1490
1491 p1 = vim_strnsave(string, len);
1492 vim_strup(p1);
1493 return p1;
1494}
1495
1496/*
1497 * ASCII lower-to-upper case translation, language independent.
1498 */
1499 void
1500vim_strup(p)
1501 char_u *p;
1502{
1503 char_u *p2;
1504 int c;
1505
1506 if (p != NULL)
1507 {
1508 p2 = p;
1509 while ((c = *p2) != NUL)
1510#ifdef EBCDIC
1511 *p2++ = isalpha(c) ? toupper(c) : c;
1512#else
1513 *p2++ = (c < 'a' || c > 'z') ? c : (c - 0x20);
1514#endif
1515 }
1516}
1517
Bram Moolenaarc4956c82006-03-12 21:58:43 +00001518#if defined(FEAT_EVAL) || defined(FEAT_SPELL) || defined(PROTO)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001519/*
1520 * Make string "s" all upper-case and return it in allocated memory.
1521 * Handles multi-byte characters as well as possible.
1522 * Returns NULL when out of memory.
1523 */
1524 char_u *
1525strup_save(orig)
1526 char_u *orig;
1527{
1528 char_u *p;
1529 char_u *res;
1530
1531 res = p = vim_strsave(orig);
1532
1533 if (res != NULL)
1534 while (*p != NUL)
1535 {
1536# ifdef FEAT_MBYTE
1537 int l;
1538
1539 if (enc_utf8)
1540 {
1541 int c, uc;
1542 int nl;
1543 char_u *s;
1544
1545 c = utf_ptr2char(p);
1546 uc = utf_toupper(c);
1547
1548 /* Reallocate string when byte count changes. This is rare,
1549 * thus it's OK to do another malloc()/free(). */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001550 l = utf_ptr2len(p);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001551 nl = utf_char2len(uc);
1552 if (nl != l)
1553 {
1554 s = alloc((unsigned)STRLEN(res) + 1 + nl - l);
1555 if (s == NULL)
1556 break;
1557 mch_memmove(s, res, p - res);
1558 STRCPY(s + (p - res) + nl, p + l);
1559 p = s + (p - res);
1560 vim_free(res);
1561 res = s;
1562 }
1563
1564 utf_char2bytes(uc, p);
1565 p += nl;
1566 }
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001567 else if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001568 p += l; /* skip multi-byte character */
1569 else
1570# endif
1571 {
1572 *p = TOUPPER_LOC(*p); /* note that toupper() can be a macro */
1573 p++;
1574 }
1575 }
1576
1577 return res;
1578}
1579#endif
1580
Bram Moolenaar071d4272004-06-13 20:20:40 +00001581/*
1582 * copy a space a number of times
1583 */
1584 void
1585copy_spaces(ptr, count)
1586 char_u *ptr;
1587 size_t count;
1588{
1589 size_t i = count;
1590 char_u *p = ptr;
1591
1592 while (i--)
1593 *p++ = ' ';
1594}
1595
1596#if defined(FEAT_VISUALEXTRA) || defined(PROTO)
1597/*
1598 * Copy a character a number of times.
Bram Moolenaar21160b92009-11-11 15:56:10 +00001599 * Does not work for multi-byte characters!
Bram Moolenaar071d4272004-06-13 20:20:40 +00001600 */
1601 void
1602copy_chars(ptr, count, c)
1603 char_u *ptr;
1604 size_t count;
1605 int c;
1606{
1607 size_t i = count;
1608 char_u *p = ptr;
1609
1610 while (i--)
1611 *p++ = c;
1612}
1613#endif
1614
1615/*
1616 * delete spaces at the end of a string
1617 */
1618 void
1619del_trailing_spaces(ptr)
1620 char_u *ptr;
1621{
1622 char_u *q;
1623
1624 q = ptr + STRLEN(ptr);
1625 while (--q > ptr && vim_iswhite(q[0]) && q[-1] != '\\' && q[-1] != Ctrl_V)
1626 *q = NUL;
1627}
1628
1629/*
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001630 * Like strncpy(), but always terminate the result with one NUL.
Bram Moolenaard042c562005-06-30 22:04:15 +00001631 * "to" must be "len + 1" long!
Bram Moolenaar071d4272004-06-13 20:20:40 +00001632 */
1633 void
1634vim_strncpy(to, from, len)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001635 char_u *to;
1636 char_u *from;
Bram Moolenaarbbebc852005-07-18 21:47:53 +00001637 size_t len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001638{
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001639 STRNCPY(to, from, len);
1640 to[len] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001641}
1642
1643/*
1644 * Isolate one part of a string option where parts are separated with
1645 * "sep_chars".
Bram Moolenaar83bab712005-08-01 21:58:57 +00001646 * The part is copied into "buf[maxlen]".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001647 * "*option" is advanced to the next part.
1648 * The length is returned.
1649 */
1650 int
1651copy_option_part(option, buf, maxlen, sep_chars)
1652 char_u **option;
1653 char_u *buf;
1654 int maxlen;
1655 char *sep_chars;
1656{
1657 int len = 0;
1658 char_u *p = *option;
1659
1660 /* skip '.' at start of option part, for 'suffixes' */
1661 if (*p == '.')
1662 buf[len++] = *p++;
1663 while (*p != NUL && vim_strchr((char_u *)sep_chars, *p) == NULL)
1664 {
1665 /*
1666 * Skip backslash before a separator character and space.
1667 */
1668 if (p[0] == '\\' && vim_strchr((char_u *)sep_chars, p[1]) != NULL)
1669 ++p;
1670 if (len < maxlen - 1)
1671 buf[len++] = *p;
1672 ++p;
1673 }
1674 buf[len] = NUL;
1675
1676 if (*p != NUL && *p != ',') /* skip non-standard separator */
1677 ++p;
1678 p = skip_to_option_part(p); /* p points to next file name */
1679
1680 *option = p;
1681 return len;
1682}
1683
1684/*
Bram Moolenaar4770d092006-01-12 23:22:24 +00001685 * Replacement for free() that ignores NULL pointers.
1686 * Also skip free() when exiting for sure, this helps when we caught a deadly
1687 * signal that was caused by a crash in free().
Bram Moolenaar071d4272004-06-13 20:20:40 +00001688 */
1689 void
1690vim_free(x)
1691 void *x;
1692{
Bram Moolenaar4770d092006-01-12 23:22:24 +00001693 if (x != NULL && !really_exiting)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001694 {
1695#ifdef MEM_PROFILE
1696 mem_pre_free(&x);
1697#endif
1698 free(x);
1699 }
1700}
1701
1702#ifndef HAVE_MEMSET
1703 void *
1704vim_memset(ptr, c, size)
1705 void *ptr;
1706 int c;
1707 size_t size;
1708{
1709 char *p = ptr;
1710
1711 while (size-- > 0)
1712 *p++ = c;
1713 return ptr;
1714}
1715#endif
1716
1717#ifdef VIM_MEMCMP
1718/*
1719 * Return zero when "b1" and "b2" are the same for "len" bytes.
1720 * Return non-zero otherwise.
1721 */
1722 int
1723vim_memcmp(b1, b2, len)
1724 void *b1;
1725 void *b2;
1726 size_t len;
1727{
1728 char_u *p1 = (char_u *)b1, *p2 = (char_u *)b2;
1729
1730 for ( ; len > 0; --len)
1731 {
1732 if (*p1 != *p2)
1733 return 1;
1734 ++p1;
1735 ++p2;
1736 }
1737 return 0;
1738}
1739#endif
1740
1741#ifdef VIM_MEMMOVE
1742/*
1743 * Version of memmove() that handles overlapping source and destination.
1744 * For systems that don't have a function that is guaranteed to do that (SYSV).
1745 */
1746 void
1747mch_memmove(dst_arg, src_arg, len)
1748 void *src_arg, *dst_arg;
1749 size_t len;
1750{
1751 /*
1752 * A void doesn't have a size, we use char pointers.
1753 */
1754 char *dst = dst_arg, *src = src_arg;
1755
1756 /* overlap, copy backwards */
1757 if (dst > src && dst < src + len)
1758 {
1759 src += len;
1760 dst += len;
1761 while (len-- > 0)
1762 *--dst = *--src;
1763 }
1764 else /* copy forwards */
1765 while (len-- > 0)
1766 *dst++ = *src++;
1767}
1768#endif
1769
1770#if (!defined(HAVE_STRCASECMP) && !defined(HAVE_STRICMP)) || defined(PROTO)
1771/*
1772 * Compare two strings, ignoring case, using current locale.
1773 * Doesn't work for multi-byte characters.
1774 * return 0 for match, < 0 for smaller, > 0 for bigger
1775 */
1776 int
1777vim_stricmp(s1, s2)
1778 char *s1;
1779 char *s2;
1780{
1781 int i;
1782
1783 for (;;)
1784 {
1785 i = (int)TOLOWER_LOC(*s1) - (int)TOLOWER_LOC(*s2);
1786 if (i != 0)
1787 return i; /* this character different */
1788 if (*s1 == NUL)
1789 break; /* strings match until NUL */
1790 ++s1;
1791 ++s2;
1792 }
1793 return 0; /* strings match */
1794}
1795#endif
1796
1797#if (!defined(HAVE_STRNCASECMP) && !defined(HAVE_STRNICMP)) || defined(PROTO)
1798/*
1799 * Compare two strings, for length "len", ignoring case, using current locale.
1800 * Doesn't work for multi-byte characters.
1801 * return 0 for match, < 0 for smaller, > 0 for bigger
1802 */
1803 int
1804vim_strnicmp(s1, s2, len)
1805 char *s1;
1806 char *s2;
1807 size_t len;
1808{
1809 int i;
1810
1811 while (len > 0)
1812 {
1813 i = (int)TOLOWER_LOC(*s1) - (int)TOLOWER_LOC(*s2);
1814 if (i != 0)
1815 return i; /* this character different */
1816 if (*s1 == NUL)
1817 break; /* strings match until NUL */
1818 ++s1;
1819 ++s2;
1820 --len;
1821 }
1822 return 0; /* strings match */
1823}
1824#endif
1825
1826#if 0 /* currently not used */
1827/*
1828 * Check if string "s2" appears somewhere in "s1" while ignoring case.
1829 * Return NULL if not, a pointer to the first occurrence if it does.
1830 */
1831 char_u *
1832vim_stristr(s1, s2)
1833 char_u *s1;
1834 char_u *s2;
1835{
1836 char_u *p;
1837 int len = STRLEN(s2);
1838 char_u *end = s1 + STRLEN(s1) - len;
1839
1840 for (p = s1; p <= end; ++p)
1841 if (STRNICMP(p, s2, len) == 0)
1842 return p;
1843 return NULL;
1844}
1845#endif
1846
1847/*
1848 * Version of strchr() and strrchr() that handle unsigned char strings
Bram Moolenaar05159a02005-02-26 23:04:13 +00001849 * with characters from 128 to 255 correctly. It also doesn't return a
1850 * pointer to the NUL at the end of the string.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001851 */
1852 char_u *
1853vim_strchr(string, c)
1854 char_u *string;
1855 int c;
1856{
1857 char_u *p;
1858 int b;
1859
1860 p = string;
1861#ifdef FEAT_MBYTE
1862 if (enc_utf8 && c >= 0x80)
1863 {
1864 while (*p != NUL)
1865 {
1866 if (utf_ptr2char(p) == c)
1867 return p;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001868 p += (*mb_ptr2len)(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001869 }
1870 return NULL;
1871 }
1872 if (enc_dbcs != 0 && c > 255)
1873 {
1874 int n2 = c & 0xff;
1875
1876 c = ((unsigned)c >> 8) & 0xff;
1877 while ((b = *p) != NUL)
1878 {
1879 if (b == c && p[1] == n2)
1880 return p;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001881 p += (*mb_ptr2len)(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001882 }
1883 return NULL;
1884 }
1885 if (has_mbyte)
1886 {
1887 while ((b = *p) != NUL)
1888 {
1889 if (b == c)
1890 return p;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001891 p += (*mb_ptr2len)(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001892 }
1893 return NULL;
1894 }
1895#endif
1896 while ((b = *p) != NUL)
1897 {
1898 if (b == c)
1899 return p;
1900 ++p;
1901 }
1902 return NULL;
1903}
1904
1905/*
Bram Moolenaar05159a02005-02-26 23:04:13 +00001906 * Version of strchr() that only works for bytes and handles unsigned char
1907 * strings with characters above 128 correctly. It also doesn't return a
1908 * pointer to the NUL at the end of the string.
1909 */
1910 char_u *
1911vim_strbyte(string, c)
1912 char_u *string;
1913 int c;
1914{
1915 char_u *p = string;
1916
1917 while (*p != NUL)
1918 {
1919 if (*p == c)
1920 return p;
1921 ++p;
1922 }
1923 return NULL;
1924}
1925
1926/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001927 * Search for last occurrence of "c" in "string".
Bram Moolenaarac6e65f2005-08-29 22:25:38 +00001928 * Return NULL if not found.
Bram Moolenaar05159a02005-02-26 23:04:13 +00001929 * Does not handle multi-byte char for "c"!
Bram Moolenaar071d4272004-06-13 20:20:40 +00001930 */
1931 char_u *
1932vim_strrchr(string, c)
1933 char_u *string;
1934 int c;
1935{
1936 char_u *retval = NULL;
Bram Moolenaar05159a02005-02-26 23:04:13 +00001937 char_u *p = string;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001938
Bram Moolenaar05159a02005-02-26 23:04:13 +00001939 while (*p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001940 {
Bram Moolenaar05159a02005-02-26 23:04:13 +00001941 if (*p == c)
1942 retval = p;
1943 mb_ptr_adv(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001944 }
1945 return retval;
1946}
1947
1948/*
1949 * Vim's version of strpbrk(), in case it's missing.
1950 * Don't generate a prototype for this, causes problems when it's not used.
1951 */
1952#ifndef PROTO
1953# ifndef HAVE_STRPBRK
1954# ifdef vim_strpbrk
1955# undef vim_strpbrk
1956# endif
1957 char_u *
1958vim_strpbrk(s, charset)
1959 char_u *s;
1960 char_u *charset;
1961{
1962 while (*s)
1963 {
1964 if (vim_strchr(charset, *s) != NULL)
1965 return s;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001966 mb_ptr_adv(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001967 }
1968 return NULL;
1969}
1970# endif
1971#endif
1972
1973/*
1974 * Vim has its own isspace() function, because on some machines isspace()
1975 * can't handle characters above 128.
1976 */
1977 int
1978vim_isspace(x)
1979 int x;
1980{
1981 return ((x >= 9 && x <= 13) || x == ' ');
1982}
1983
1984/************************************************************************
Bram Moolenaar383f9bc2005-01-19 22:18:32 +00001985 * Functions for handling growing arrays.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001986 */
1987
1988/*
1989 * Clear an allocated growing array.
1990 */
1991 void
1992ga_clear(gap)
1993 garray_T *gap;
1994{
1995 vim_free(gap->ga_data);
1996 ga_init(gap);
1997}
1998
1999/*
2000 * Clear a growing array that contains a list of strings.
2001 */
2002 void
2003ga_clear_strings(gap)
2004 garray_T *gap;
2005{
2006 int i;
2007
2008 for (i = 0; i < gap->ga_len; ++i)
2009 vim_free(((char_u **)(gap->ga_data))[i]);
2010 ga_clear(gap);
2011}
2012
2013/*
2014 * Initialize a growing array. Don't forget to set ga_itemsize and
2015 * ga_growsize! Or use ga_init2().
2016 */
2017 void
2018ga_init(gap)
2019 garray_T *gap;
2020{
2021 gap->ga_data = NULL;
Bram Moolenaar86b68352004-12-27 21:59:20 +00002022 gap->ga_maxlen = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002023 gap->ga_len = 0;
2024}
2025
2026 void
2027ga_init2(gap, itemsize, growsize)
2028 garray_T *gap;
2029 int itemsize;
2030 int growsize;
2031{
2032 ga_init(gap);
2033 gap->ga_itemsize = itemsize;
2034 gap->ga_growsize = growsize;
2035}
2036
2037/*
2038 * Make room in growing array "gap" for at least "n" items.
2039 * Return FAIL for failure, OK otherwise.
2040 */
2041 int
2042ga_grow(gap, n)
2043 garray_T *gap;
2044 int n;
2045{
2046 size_t len;
2047 char_u *pp;
2048
Bram Moolenaar86b68352004-12-27 21:59:20 +00002049 if (gap->ga_maxlen - gap->ga_len < n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002050 {
2051 if (n < gap->ga_growsize)
2052 n = gap->ga_growsize;
2053 len = gap->ga_itemsize * (gap->ga_len + n);
2054 pp = alloc_clear((unsigned)len);
2055 if (pp == NULL)
2056 return FAIL;
Bram Moolenaar86b68352004-12-27 21:59:20 +00002057 gap->ga_maxlen = gap->ga_len + n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002058 if (gap->ga_data != NULL)
2059 {
2060 mch_memmove(pp, gap->ga_data,
2061 (size_t)(gap->ga_itemsize * gap->ga_len));
2062 vim_free(gap->ga_data);
2063 }
2064 gap->ga_data = pp;
2065 }
2066 return OK;
2067}
2068
2069/*
2070 * Concatenate a string to a growarray which contains characters.
2071 * Note: Does NOT copy the NUL at the end!
2072 */
2073 void
2074ga_concat(gap, s)
2075 garray_T *gap;
2076 char_u *s;
2077{
2078 int len = (int)STRLEN(s);
2079
2080 if (ga_grow(gap, len) == OK)
2081 {
2082 mch_memmove((char *)gap->ga_data + gap->ga_len, s, (size_t)len);
2083 gap->ga_len += len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002084 }
2085}
2086
2087/*
2088 * Append one byte to a growarray which contains bytes.
2089 */
2090 void
2091ga_append(gap, c)
2092 garray_T *gap;
2093 int c;
2094{
2095 if (ga_grow(gap, 1) == OK)
2096 {
2097 *((char *)gap->ga_data + gap->ga_len) = c;
2098 ++gap->ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002099 }
2100}
2101
2102/************************************************************************
2103 * functions that use lookup tables for various things, generally to do with
2104 * special key codes.
2105 */
2106
2107/*
2108 * Some useful tables.
2109 */
2110
2111static struct modmasktable
2112{
2113 short mod_mask; /* Bit-mask for particular key modifier */
2114 short mod_flag; /* Bit(s) for particular key modifier */
2115 char_u name; /* Single letter name of modifier */
2116} mod_mask_table[] =
2117{
2118 {MOD_MASK_ALT, MOD_MASK_ALT, (char_u)'M'},
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002119 {MOD_MASK_META, MOD_MASK_META, (char_u)'T'},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002120 {MOD_MASK_CTRL, MOD_MASK_CTRL, (char_u)'C'},
2121 {MOD_MASK_SHIFT, MOD_MASK_SHIFT, (char_u)'S'},
2122 {MOD_MASK_MULTI_CLICK, MOD_MASK_2CLICK, (char_u)'2'},
2123 {MOD_MASK_MULTI_CLICK, MOD_MASK_3CLICK, (char_u)'3'},
2124 {MOD_MASK_MULTI_CLICK, MOD_MASK_4CLICK, (char_u)'4'},
2125#ifdef MACOS
2126 {MOD_MASK_CMD, MOD_MASK_CMD, (char_u)'D'},
2127#endif
2128 /* 'A' must be the last one */
2129 {MOD_MASK_ALT, MOD_MASK_ALT, (char_u)'A'},
2130 {0, 0, NUL}
2131};
2132
2133/*
2134 * Shifted key terminal codes and their unshifted equivalent.
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00002135 * Don't add mouse codes here, they are handled separately!
Bram Moolenaar071d4272004-06-13 20:20:40 +00002136 */
2137#define MOD_KEYS_ENTRY_SIZE 5
2138
2139static char_u modifier_keys_table[] =
2140{
2141/* mod mask with modifier without modifier */
2142 MOD_MASK_SHIFT, '&', '9', '@', '1', /* begin */
2143 MOD_MASK_SHIFT, '&', '0', '@', '2', /* cancel */
2144 MOD_MASK_SHIFT, '*', '1', '@', '4', /* command */
2145 MOD_MASK_SHIFT, '*', '2', '@', '5', /* copy */
2146 MOD_MASK_SHIFT, '*', '3', '@', '6', /* create */
2147 MOD_MASK_SHIFT, '*', '4', 'k', 'D', /* delete char */
2148 MOD_MASK_SHIFT, '*', '5', 'k', 'L', /* delete line */
2149 MOD_MASK_SHIFT, '*', '7', '@', '7', /* end */
2150 MOD_MASK_CTRL, KS_EXTRA, (int)KE_C_END, '@', '7', /* end */
2151 MOD_MASK_SHIFT, '*', '9', '@', '9', /* exit */
2152 MOD_MASK_SHIFT, '*', '0', '@', '0', /* find */
2153 MOD_MASK_SHIFT, '#', '1', '%', '1', /* help */
2154 MOD_MASK_SHIFT, '#', '2', 'k', 'h', /* home */
2155 MOD_MASK_CTRL, KS_EXTRA, (int)KE_C_HOME, 'k', 'h', /* home */
2156 MOD_MASK_SHIFT, '#', '3', 'k', 'I', /* insert */
2157 MOD_MASK_SHIFT, '#', '4', 'k', 'l', /* left arrow */
2158 MOD_MASK_CTRL, KS_EXTRA, (int)KE_C_LEFT, 'k', 'l', /* left arrow */
2159 MOD_MASK_SHIFT, '%', 'a', '%', '3', /* message */
2160 MOD_MASK_SHIFT, '%', 'b', '%', '4', /* move */
2161 MOD_MASK_SHIFT, '%', 'c', '%', '5', /* next */
2162 MOD_MASK_SHIFT, '%', 'd', '%', '7', /* options */
2163 MOD_MASK_SHIFT, '%', 'e', '%', '8', /* previous */
2164 MOD_MASK_SHIFT, '%', 'f', '%', '9', /* print */
2165 MOD_MASK_SHIFT, '%', 'g', '%', '0', /* redo */
2166 MOD_MASK_SHIFT, '%', 'h', '&', '3', /* replace */
2167 MOD_MASK_SHIFT, '%', 'i', 'k', 'r', /* right arr. */
2168 MOD_MASK_CTRL, KS_EXTRA, (int)KE_C_RIGHT, 'k', 'r', /* right arr. */
2169 MOD_MASK_SHIFT, '%', 'j', '&', '5', /* resume */
2170 MOD_MASK_SHIFT, '!', '1', '&', '6', /* save */
2171 MOD_MASK_SHIFT, '!', '2', '&', '7', /* suspend */
2172 MOD_MASK_SHIFT, '!', '3', '&', '8', /* undo */
2173 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_UP, 'k', 'u', /* up arrow */
2174 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_DOWN, 'k', 'd', /* down arrow */
2175
2176 /* vt100 F1 */
2177 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_XF1, KS_EXTRA, (int)KE_XF1,
2178 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_XF2, KS_EXTRA, (int)KE_XF2,
2179 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_XF3, KS_EXTRA, (int)KE_XF3,
2180 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_XF4, KS_EXTRA, (int)KE_XF4,
2181
2182 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F1, 'k', '1', /* F1 */
2183 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F2, 'k', '2',
2184 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F3, 'k', '3',
2185 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F4, 'k', '4',
2186 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F5, 'k', '5',
2187 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F6, 'k', '6',
2188 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F7, 'k', '7',
2189 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F8, 'k', '8',
2190 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F9, 'k', '9',
2191 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F10, 'k', ';', /* F10 */
2192
2193 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F11, 'F', '1',
2194 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F12, 'F', '2',
2195 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F13, 'F', '3',
2196 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F14, 'F', '4',
2197 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F15, 'F', '5',
2198 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F16, 'F', '6',
2199 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F17, 'F', '7',
2200 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F18, 'F', '8',
2201 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F19, 'F', '9',
2202 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F20, 'F', 'A',
2203
2204 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F21, 'F', 'B',
2205 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F22, 'F', 'C',
2206 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F23, 'F', 'D',
2207 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F24, 'F', 'E',
2208 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F25, 'F', 'F',
2209 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F26, 'F', 'G',
2210 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F27, 'F', 'H',
2211 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F28, 'F', 'I',
2212 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F29, 'F', 'J',
2213 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F30, 'F', 'K',
2214
2215 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F31, 'F', 'L',
2216 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F32, 'F', 'M',
2217 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F33, 'F', 'N',
2218 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F34, 'F', 'O',
2219 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F35, 'F', 'P',
2220 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F36, 'F', 'Q',
2221 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F37, 'F', 'R',
2222
2223 /* TAB pseudo code*/
2224 MOD_MASK_SHIFT, 'k', 'B', KS_EXTRA, (int)KE_TAB,
2225
2226 NUL
2227};
2228
2229static struct key_name_entry
2230{
2231 int key; /* Special key code or ascii value */
2232 char_u *name; /* Name of key */
2233} key_names_table[] =
2234{
2235 {' ', (char_u *)"Space"},
2236 {TAB, (char_u *)"Tab"},
2237 {K_TAB, (char_u *)"Tab"},
2238 {NL, (char_u *)"NL"},
2239 {NL, (char_u *)"NewLine"}, /* Alternative name */
2240 {NL, (char_u *)"LineFeed"}, /* Alternative name */
2241 {NL, (char_u *)"LF"}, /* Alternative name */
2242 {CAR, (char_u *)"CR"},
2243 {CAR, (char_u *)"Return"}, /* Alternative name */
2244 {CAR, (char_u *)"Enter"}, /* Alternative name */
2245 {K_BS, (char_u *)"BS"},
2246 {K_BS, (char_u *)"BackSpace"}, /* Alternative name */
2247 {ESC, (char_u *)"Esc"},
2248 {CSI, (char_u *)"CSI"},
2249 {K_CSI, (char_u *)"xCSI"},
2250 {'|', (char_u *)"Bar"},
2251 {'\\', (char_u *)"Bslash"},
2252 {K_DEL, (char_u *)"Del"},
2253 {K_DEL, (char_u *)"Delete"}, /* Alternative name */
2254 {K_KDEL, (char_u *)"kDel"},
2255 {K_UP, (char_u *)"Up"},
2256 {K_DOWN, (char_u *)"Down"},
2257 {K_LEFT, (char_u *)"Left"},
2258 {K_RIGHT, (char_u *)"Right"},
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002259 {K_XUP, (char_u *)"xUp"},
2260 {K_XDOWN, (char_u *)"xDown"},
2261 {K_XLEFT, (char_u *)"xLeft"},
2262 {K_XRIGHT, (char_u *)"xRight"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002263
2264 {K_F1, (char_u *)"F1"},
2265 {K_F2, (char_u *)"F2"},
2266 {K_F3, (char_u *)"F3"},
2267 {K_F4, (char_u *)"F4"},
2268 {K_F5, (char_u *)"F5"},
2269 {K_F6, (char_u *)"F6"},
2270 {K_F7, (char_u *)"F7"},
2271 {K_F8, (char_u *)"F8"},
2272 {K_F9, (char_u *)"F9"},
2273 {K_F10, (char_u *)"F10"},
2274
2275 {K_F11, (char_u *)"F11"},
2276 {K_F12, (char_u *)"F12"},
2277 {K_F13, (char_u *)"F13"},
2278 {K_F14, (char_u *)"F14"},
2279 {K_F15, (char_u *)"F15"},
2280 {K_F16, (char_u *)"F16"},
2281 {K_F17, (char_u *)"F17"},
2282 {K_F18, (char_u *)"F18"},
2283 {K_F19, (char_u *)"F19"},
2284 {K_F20, (char_u *)"F20"},
2285
2286 {K_F21, (char_u *)"F21"},
2287 {K_F22, (char_u *)"F22"},
2288 {K_F23, (char_u *)"F23"},
2289 {K_F24, (char_u *)"F24"},
2290 {K_F25, (char_u *)"F25"},
2291 {K_F26, (char_u *)"F26"},
2292 {K_F27, (char_u *)"F27"},
2293 {K_F28, (char_u *)"F28"},
2294 {K_F29, (char_u *)"F29"},
2295 {K_F30, (char_u *)"F30"},
2296
2297 {K_F31, (char_u *)"F31"},
2298 {K_F32, (char_u *)"F32"},
2299 {K_F33, (char_u *)"F33"},
2300 {K_F34, (char_u *)"F34"},
2301 {K_F35, (char_u *)"F35"},
2302 {K_F36, (char_u *)"F36"},
2303 {K_F37, (char_u *)"F37"},
2304
2305 {K_XF1, (char_u *)"xF1"},
2306 {K_XF2, (char_u *)"xF2"},
2307 {K_XF3, (char_u *)"xF3"},
2308 {K_XF4, (char_u *)"xF4"},
2309
2310 {K_HELP, (char_u *)"Help"},
2311 {K_UNDO, (char_u *)"Undo"},
2312 {K_INS, (char_u *)"Insert"},
2313 {K_INS, (char_u *)"Ins"}, /* Alternative name */
2314 {K_KINS, (char_u *)"kInsert"},
2315 {K_HOME, (char_u *)"Home"},
2316 {K_KHOME, (char_u *)"kHome"},
2317 {K_XHOME, (char_u *)"xHome"},
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002318 {K_ZHOME, (char_u *)"zHome"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002319 {K_END, (char_u *)"End"},
2320 {K_KEND, (char_u *)"kEnd"},
2321 {K_XEND, (char_u *)"xEnd"},
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002322 {K_ZEND, (char_u *)"zEnd"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002323 {K_PAGEUP, (char_u *)"PageUp"},
2324 {K_PAGEDOWN, (char_u *)"PageDown"},
2325 {K_KPAGEUP, (char_u *)"kPageUp"},
2326 {K_KPAGEDOWN, (char_u *)"kPageDown"},
2327
2328 {K_KPLUS, (char_u *)"kPlus"},
2329 {K_KMINUS, (char_u *)"kMinus"},
2330 {K_KDIVIDE, (char_u *)"kDivide"},
2331 {K_KMULTIPLY, (char_u *)"kMultiply"},
2332 {K_KENTER, (char_u *)"kEnter"},
2333 {K_KPOINT, (char_u *)"kPoint"},
2334
2335 {K_K0, (char_u *)"k0"},
2336 {K_K1, (char_u *)"k1"},
2337 {K_K2, (char_u *)"k2"},
2338 {K_K3, (char_u *)"k3"},
2339 {K_K4, (char_u *)"k4"},
2340 {K_K5, (char_u *)"k5"},
2341 {K_K6, (char_u *)"k6"},
2342 {K_K7, (char_u *)"k7"},
2343 {K_K8, (char_u *)"k8"},
2344 {K_K9, (char_u *)"k9"},
2345
2346 {'<', (char_u *)"lt"},
2347
2348 {K_MOUSE, (char_u *)"Mouse"},
2349 {K_NETTERM_MOUSE, (char_u *)"NetMouse"},
2350 {K_DEC_MOUSE, (char_u *)"DecMouse"},
2351 {K_JSBTERM_MOUSE, (char_u *)"JsbMouse"},
2352 {K_PTERM_MOUSE, (char_u *)"PtermMouse"},
2353 {K_LEFTMOUSE, (char_u *)"LeftMouse"},
2354 {K_LEFTMOUSE_NM, (char_u *)"LeftMouseNM"},
2355 {K_LEFTDRAG, (char_u *)"LeftDrag"},
2356 {K_LEFTRELEASE, (char_u *)"LeftRelease"},
2357 {K_LEFTRELEASE_NM, (char_u *)"LeftReleaseNM"},
2358 {K_MIDDLEMOUSE, (char_u *)"MiddleMouse"},
2359 {K_MIDDLEDRAG, (char_u *)"MiddleDrag"},
2360 {K_MIDDLERELEASE, (char_u *)"MiddleRelease"},
2361 {K_RIGHTMOUSE, (char_u *)"RightMouse"},
2362 {K_RIGHTDRAG, (char_u *)"RightDrag"},
2363 {K_RIGHTRELEASE, (char_u *)"RightRelease"},
2364 {K_MOUSEDOWN, (char_u *)"MouseDown"},
2365 {K_MOUSEUP, (char_u *)"MouseUp"},
2366 {K_X1MOUSE, (char_u *)"X1Mouse"},
2367 {K_X1DRAG, (char_u *)"X1Drag"},
2368 {K_X1RELEASE, (char_u *)"X1Release"},
2369 {K_X2MOUSE, (char_u *)"X2Mouse"},
2370 {K_X2DRAG, (char_u *)"X2Drag"},
2371 {K_X2RELEASE, (char_u *)"X2Release"},
2372 {K_DROP, (char_u *)"Drop"},
2373 {K_ZERO, (char_u *)"Nul"},
2374#ifdef FEAT_EVAL
2375 {K_SNR, (char_u *)"SNR"},
2376#endif
2377 {K_PLUG, (char_u *)"Plug"},
2378 {0, NULL}
2379};
2380
2381#define KEY_NAMES_TABLE_LEN (sizeof(key_names_table) / sizeof(struct key_name_entry))
2382
2383#ifdef FEAT_MOUSE
2384static struct mousetable
2385{
2386 int pseudo_code; /* Code for pseudo mouse event */
2387 int button; /* Which mouse button is it? */
2388 int is_click; /* Is it a mouse button click event? */
2389 int is_drag; /* Is it a mouse drag event? */
2390} mouse_table[] =
2391{
2392 {(int)KE_LEFTMOUSE, MOUSE_LEFT, TRUE, FALSE},
2393#ifdef FEAT_GUI
2394 {(int)KE_LEFTMOUSE_NM, MOUSE_LEFT, TRUE, FALSE},
2395#endif
2396 {(int)KE_LEFTDRAG, MOUSE_LEFT, FALSE, TRUE},
2397 {(int)KE_LEFTRELEASE, MOUSE_LEFT, FALSE, FALSE},
2398#ifdef FEAT_GUI
2399 {(int)KE_LEFTRELEASE_NM, MOUSE_LEFT, FALSE, FALSE},
2400#endif
2401 {(int)KE_MIDDLEMOUSE, MOUSE_MIDDLE, TRUE, FALSE},
2402 {(int)KE_MIDDLEDRAG, MOUSE_MIDDLE, FALSE, TRUE},
2403 {(int)KE_MIDDLERELEASE, MOUSE_MIDDLE, FALSE, FALSE},
2404 {(int)KE_RIGHTMOUSE, MOUSE_RIGHT, TRUE, FALSE},
2405 {(int)KE_RIGHTDRAG, MOUSE_RIGHT, FALSE, TRUE},
2406 {(int)KE_RIGHTRELEASE, MOUSE_RIGHT, FALSE, FALSE},
2407 {(int)KE_X1MOUSE, MOUSE_X1, TRUE, FALSE},
2408 {(int)KE_X1DRAG, MOUSE_X1, FALSE, TRUE},
2409 {(int)KE_X1RELEASE, MOUSE_X1, FALSE, FALSE},
2410 {(int)KE_X2MOUSE, MOUSE_X2, TRUE, FALSE},
2411 {(int)KE_X2DRAG, MOUSE_X2, FALSE, TRUE},
2412 {(int)KE_X2RELEASE, MOUSE_X2, FALSE, FALSE},
2413 /* DRAG without CLICK */
2414 {(int)KE_IGNORE, MOUSE_RELEASE, FALSE, TRUE},
2415 /* RELEASE without CLICK */
2416 {(int)KE_IGNORE, MOUSE_RELEASE, FALSE, FALSE},
2417 {0, 0, 0, 0},
2418};
2419#endif /* FEAT_MOUSE */
2420
2421/*
2422 * Return the modifier mask bit (MOD_MASK_*) which corresponds to the given
2423 * modifier name ('S' for Shift, 'C' for Ctrl etc).
2424 */
2425 int
2426name_to_mod_mask(c)
2427 int c;
2428{
2429 int i;
2430
2431 c = TOUPPER_ASC(c);
2432 for (i = 0; mod_mask_table[i].mod_mask != 0; i++)
2433 if (c == mod_mask_table[i].name)
2434 return mod_mask_table[i].mod_flag;
2435 return 0;
2436}
2437
Bram Moolenaar071d4272004-06-13 20:20:40 +00002438/*
2439 * Check if if there is a special key code for "key" that includes the
2440 * modifiers specified.
2441 */
2442 int
2443simplify_key(key, modifiers)
2444 int key;
2445 int *modifiers;
2446{
2447 int i;
2448 int key0;
2449 int key1;
2450
2451 if (*modifiers & (MOD_MASK_SHIFT | MOD_MASK_CTRL | MOD_MASK_ALT))
2452 {
2453 /* TAB is a special case */
2454 if (key == TAB && (*modifiers & MOD_MASK_SHIFT))
2455 {
2456 *modifiers &= ~MOD_MASK_SHIFT;
2457 return K_S_TAB;
2458 }
2459 key0 = KEY2TERMCAP0(key);
2460 key1 = KEY2TERMCAP1(key);
2461 for (i = 0; modifier_keys_table[i] != NUL; i += MOD_KEYS_ENTRY_SIZE)
2462 if (key0 == modifier_keys_table[i + 3]
2463 && key1 == modifier_keys_table[i + 4]
2464 && (*modifiers & modifier_keys_table[i]))
2465 {
2466 *modifiers &= ~modifier_keys_table[i];
2467 return TERMCAP2KEY(modifier_keys_table[i + 1],
2468 modifier_keys_table[i + 2]);
2469 }
2470 }
2471 return key;
2472}
2473
2474/*
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002475 * Change <xHome> to <Home>, <xUp> to <Up>, etc.
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002476 */
2477 int
2478handle_x_keys(key)
2479 int key;
2480{
2481 switch (key)
2482 {
2483 case K_XUP: return K_UP;
2484 case K_XDOWN: return K_DOWN;
2485 case K_XLEFT: return K_LEFT;
2486 case K_XRIGHT: return K_RIGHT;
2487 case K_XHOME: return K_HOME;
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002488 case K_ZHOME: return K_HOME;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002489 case K_XEND: return K_END;
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002490 case K_ZEND: return K_END;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002491 case K_XF1: return K_F1;
2492 case K_XF2: return K_F2;
2493 case K_XF3: return K_F3;
2494 case K_XF4: return K_F4;
2495 case K_S_XF1: return K_S_F1;
2496 case K_S_XF2: return K_S_F2;
2497 case K_S_XF3: return K_S_F3;
2498 case K_S_XF4: return K_S_F4;
2499 }
2500 return key;
2501}
2502
2503/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002504 * Return a string which contains the name of the given key when the given
2505 * modifiers are down.
2506 */
2507 char_u *
2508get_special_key_name(c, modifiers)
2509 int c;
2510 int modifiers;
2511{
2512 static char_u string[MAX_KEY_NAME_LEN + 1];
2513
2514 int i, idx;
2515 int table_idx;
2516 char_u *s;
2517
2518 string[0] = '<';
2519 idx = 1;
2520
2521 /* Key that stands for a normal character. */
2522 if (IS_SPECIAL(c) && KEY2TERMCAP0(c) == KS_KEY)
2523 c = KEY2TERMCAP1(c);
2524
2525 /*
2526 * Translate shifted special keys into unshifted keys and set modifier.
2527 * Same for CTRL and ALT modifiers.
2528 */
2529 if (IS_SPECIAL(c))
2530 {
2531 for (i = 0; modifier_keys_table[i] != 0; i += MOD_KEYS_ENTRY_SIZE)
2532 if ( KEY2TERMCAP0(c) == (int)modifier_keys_table[i + 1]
2533 && (int)KEY2TERMCAP1(c) == (int)modifier_keys_table[i + 2])
2534 {
2535 modifiers |= modifier_keys_table[i];
2536 c = TERMCAP2KEY(modifier_keys_table[i + 3],
2537 modifier_keys_table[i + 4]);
2538 break;
2539 }
2540 }
2541
2542 /* try to find the key in the special key table */
2543 table_idx = find_special_key_in_table(c);
2544
2545 /*
2546 * When not a known special key, and not a printable character, try to
2547 * extract modifiers.
2548 */
2549 if (c > 0
2550#ifdef FEAT_MBYTE
2551 && (*mb_char2len)(c) == 1
2552#endif
2553 )
2554 {
2555 if (table_idx < 0
2556 && (!vim_isprintc(c) || (c & 0x7f) == ' ')
2557 && (c & 0x80))
2558 {
2559 c &= 0x7f;
2560 modifiers |= MOD_MASK_ALT;
2561 /* try again, to find the un-alted key in the special key table */
2562 table_idx = find_special_key_in_table(c);
2563 }
2564 if (table_idx < 0 && !vim_isprintc(c) && c < ' ')
2565 {
2566#ifdef EBCDIC
2567 c = CtrlChar(c);
2568#else
2569 c += '@';
2570#endif
2571 modifiers |= MOD_MASK_CTRL;
2572 }
2573 }
2574
2575 /* translate the modifier into a string */
2576 for (i = 0; mod_mask_table[i].name != 'A'; i++)
2577 if ((modifiers & mod_mask_table[i].mod_mask)
2578 == mod_mask_table[i].mod_flag)
2579 {
2580 string[idx++] = mod_mask_table[i].name;
2581 string[idx++] = (char_u)'-';
2582 }
2583
2584 if (table_idx < 0) /* unknown special key, may output t_xx */
2585 {
2586 if (IS_SPECIAL(c))
2587 {
2588 string[idx++] = 't';
2589 string[idx++] = '_';
2590 string[idx++] = KEY2TERMCAP0(c);
2591 string[idx++] = KEY2TERMCAP1(c);
2592 }
2593 /* Not a special key, only modifiers, output directly */
2594 else
2595 {
2596#ifdef FEAT_MBYTE
2597 if (has_mbyte && (*mb_char2len)(c) > 1)
2598 idx += (*mb_char2bytes)(c, string + idx);
2599 else
2600#endif
2601 if (vim_isprintc(c))
2602 string[idx++] = c;
2603 else
2604 {
2605 s = transchar(c);
2606 while (*s)
2607 string[idx++] = *s++;
2608 }
2609 }
2610 }
2611 else /* use name of special key */
2612 {
2613 STRCPY(string + idx, key_names_table[table_idx].name);
2614 idx = (int)STRLEN(string);
2615 }
2616 string[idx++] = '>';
2617 string[idx] = NUL;
2618 return string;
2619}
2620
2621/*
2622 * Try translating a <> name at (*srcp)[] to dst[].
2623 * Return the number of characters added to dst[], zero for no match.
2624 * If there is a match, srcp is advanced to after the <> name.
2625 * dst[] must be big enough to hold the result (up to six characters)!
2626 */
2627 int
2628trans_special(srcp, dst, keycode)
2629 char_u **srcp;
2630 char_u *dst;
2631 int keycode; /* prefer key code, e.g. K_DEL instead of DEL */
2632{
2633 int modifiers = 0;
2634 int key;
2635 int dlen = 0;
2636
Bram Moolenaar2a8ced02008-12-24 11:54:31 +00002637 key = find_special_key(srcp, &modifiers, keycode, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002638 if (key == 0)
2639 return 0;
2640
2641 /* Put the appropriate modifier in a string */
2642 if (modifiers != 0)
2643 {
2644 dst[dlen++] = K_SPECIAL;
2645 dst[dlen++] = KS_MODIFIER;
2646 dst[dlen++] = modifiers;
2647 }
2648
2649 if (IS_SPECIAL(key))
2650 {
2651 dst[dlen++] = K_SPECIAL;
2652 dst[dlen++] = KEY2TERMCAP0(key);
2653 dst[dlen++] = KEY2TERMCAP1(key);
2654 }
2655#ifdef FEAT_MBYTE
2656 else if (has_mbyte && !keycode)
2657 dlen += (*mb_char2bytes)(key, dst + dlen);
2658#endif
2659 else if (keycode)
2660 dlen = (int)(add_char2buf(key, dst + dlen) - dst);
2661 else
2662 dst[dlen++] = key;
2663
2664 return dlen;
2665}
2666
2667/*
2668 * Try translating a <> name at (*srcp)[], return the key and modifiers.
2669 * srcp is advanced to after the <> name.
2670 * returns 0 if there is no match.
2671 */
2672 int
Bram Moolenaar2a8ced02008-12-24 11:54:31 +00002673find_special_key(srcp, modp, keycode, keep_x_key)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002674 char_u **srcp;
2675 int *modp;
Bram Moolenaar2a8ced02008-12-24 11:54:31 +00002676 int keycode; /* prefer key code, e.g. K_DEL instead of DEL */
2677 int keep_x_key; /* don't translate xHome to Home key */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002678{
2679 char_u *last_dash;
2680 char_u *end_of_name;
2681 char_u *src;
2682 char_u *bp;
2683 int modifiers;
2684 int bit;
2685 int key;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002686 unsigned long n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002687
2688 src = *srcp;
2689 if (src[0] != '<')
2690 return 0;
2691
2692 /* Find end of modifier list */
2693 last_dash = src;
2694 for (bp = src + 1; *bp == '-' || vim_isIDc(*bp); bp++)
2695 {
2696 if (*bp == '-')
2697 {
2698 last_dash = bp;
2699 if (bp[1] != NUL && bp[2] == '>')
2700 ++bp; /* anything accepted, like <C-?> */
2701 }
2702 if (bp[0] == 't' && bp[1] == '_' && bp[2] && bp[3])
2703 bp += 3; /* skip t_xx, xx may be '-' or '>' */
2704 }
2705
2706 if (*bp == '>') /* found matching '>' */
2707 {
2708 end_of_name = bp + 1;
2709
2710 if (STRNICMP(src + 1, "char-", 5) == 0 && VIM_ISDIGIT(src[6]))
2711 {
2712 /* <Char-123> or <Char-033> or <Char-0x33> */
2713 vim_str2nr(src + 6, NULL, NULL, TRUE, TRUE, NULL, &n);
2714 *modp = 0;
2715 *srcp = end_of_name;
2716 return (int)n;
2717 }
2718
2719 /* Which modifiers are given? */
2720 modifiers = 0x0;
2721 for (bp = src + 1; bp < last_dash; bp++)
2722 {
2723 if (*bp != '-')
2724 {
2725 bit = name_to_mod_mask(*bp);
2726 if (bit == 0x0)
2727 break; /* Illegal modifier name */
2728 modifiers |= bit;
2729 }
2730 }
2731
2732 /*
2733 * Legal modifier name.
2734 */
2735 if (bp >= last_dash)
2736 {
2737 /*
2738 * Modifier with single letter, or special key name.
2739 */
2740 if (modifiers != 0 && last_dash[2] == '>')
2741 key = last_dash[1];
2742 else
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002743 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002744 key = get_special_key_code(last_dash + 1);
Bram Moolenaar2a8ced02008-12-24 11:54:31 +00002745 if (!keep_x_key)
2746 key = handle_x_keys(key);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002747 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002748
2749 /*
2750 * get_special_key_code() may return NUL for invalid
2751 * special key name.
2752 */
2753 if (key != NUL)
2754 {
2755 /*
2756 * Only use a modifier when there is no special key code that
2757 * includes the modifier.
2758 */
2759 key = simplify_key(key, &modifiers);
2760
2761 if (!keycode)
2762 {
2763 /* don't want keycode, use single byte code */
2764 if (key == K_BS)
2765 key = BS;
2766 else if (key == K_DEL || key == K_KDEL)
2767 key = DEL;
2768 }
2769
2770 /*
2771 * Normal Key with modifier: Try to make a single byte code.
2772 */
2773 if (!IS_SPECIAL(key))
2774 key = extract_modifiers(key, &modifiers);
2775
2776 *modp = modifiers;
2777 *srcp = end_of_name;
2778 return key;
2779 }
2780 }
2781 }
2782 return 0;
2783}
2784
2785/*
2786 * Try to include modifiers in the key.
2787 * Changes "Shift-a" to 'A', "Alt-A" to 0xc0, etc.
2788 */
2789 int
2790extract_modifiers(key, modp)
2791 int key;
2792 int *modp;
2793{
2794 int modifiers = *modp;
2795
2796#ifdef MACOS
2797 /* Command-key really special, No fancynest */
2798 if (!(modifiers & MOD_MASK_CMD))
2799#endif
2800 if ((modifiers & MOD_MASK_SHIFT) && ASCII_ISALPHA(key))
2801 {
2802 key = TOUPPER_ASC(key);
2803 modifiers &= ~MOD_MASK_SHIFT;
2804 }
2805 if ((modifiers & MOD_MASK_CTRL)
2806#ifdef EBCDIC
2807 /* * TODO: EBCDIC Better use:
2808 * && (Ctrl_chr(key) || key == '?')
2809 * ??? */
2810 && strchr("?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_", key)
2811 != NULL
2812#else
2813 && ((key >= '?' && key <= '_') || ASCII_ISALPHA(key))
2814#endif
2815 )
2816 {
2817 key = Ctrl_chr(key);
2818 modifiers &= ~MOD_MASK_CTRL;
2819 /* <C-@> is <Nul> */
2820 if (key == 0)
2821 key = K_ZERO;
2822 }
2823#ifdef MACOS
2824 /* Command-key really special, No fancynest */
2825 if (!(modifiers & MOD_MASK_CMD))
2826#endif
2827 if ((modifiers & MOD_MASK_ALT) && key < 0x80
2828#ifdef FEAT_MBYTE
2829 && !enc_dbcs /* avoid creating a lead byte */
2830#endif
2831 )
2832 {
2833 key |= 0x80;
2834 modifiers &= ~MOD_MASK_ALT; /* remove the META modifier */
2835 }
2836
2837 *modp = modifiers;
2838 return key;
2839}
2840
2841/*
2842 * Try to find key "c" in the special key table.
2843 * Return the index when found, -1 when not found.
2844 */
2845 int
2846find_special_key_in_table(c)
2847 int c;
2848{
2849 int i;
2850
2851 for (i = 0; key_names_table[i].name != NULL; i++)
2852 if (c == key_names_table[i].key)
2853 break;
2854 if (key_names_table[i].name == NULL)
2855 i = -1;
2856 return i;
2857}
2858
2859/*
2860 * Find the special key with the given name (the given string does not have to
2861 * end with NUL, the name is assumed to end before the first non-idchar).
2862 * If the name starts with "t_" the next two characters are interpreted as a
2863 * termcap name.
2864 * Return the key code, or 0 if not found.
2865 */
2866 int
2867get_special_key_code(name)
2868 char_u *name;
2869{
2870 char_u *table_name;
2871 char_u string[3];
2872 int i, j;
2873
2874 /*
2875 * If it's <t_xx> we get the code for xx from the termcap
2876 */
2877 if (name[0] == 't' && name[1] == '_' && name[2] != NUL && name[3] != NUL)
2878 {
2879 string[0] = name[2];
2880 string[1] = name[3];
2881 string[2] = NUL;
2882 if (add_termcap_entry(string, FALSE) == OK)
2883 return TERMCAP2KEY(name[2], name[3]);
2884 }
2885 else
2886 for (i = 0; key_names_table[i].name != NULL; i++)
2887 {
2888 table_name = key_names_table[i].name;
2889 for (j = 0; vim_isIDc(name[j]) && table_name[j] != NUL; j++)
2890 if (TOLOWER_ASC(table_name[j]) != TOLOWER_ASC(name[j]))
2891 break;
2892 if (!vim_isIDc(name[j]) && table_name[j] == NUL)
2893 return key_names_table[i].key;
2894 }
2895 return 0;
2896}
2897
Bram Moolenaar05bb9532008-07-04 09:44:11 +00002898#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002899 char_u *
2900get_key_name(i)
2901 int i;
2902{
Bram Moolenaare1fbddc2009-05-16 19:07:03 +00002903 if (i >= (int)KEY_NAMES_TABLE_LEN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002904 return NULL;
2905 return key_names_table[i].name;
2906}
2907#endif
2908
Bram Moolenaar05bb9532008-07-04 09:44:11 +00002909#if defined(FEAT_MOUSE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002910/*
2911 * Look up the given mouse code to return the relevant information in the other
2912 * arguments. Return which button is down or was released.
2913 */
2914 int
2915get_mouse_button(code, is_click, is_drag)
2916 int code;
2917 int *is_click;
2918 int *is_drag;
2919{
2920 int i;
2921
2922 for (i = 0; mouse_table[i].pseudo_code; i++)
2923 if (code == mouse_table[i].pseudo_code)
2924 {
2925 *is_click = mouse_table[i].is_click;
2926 *is_drag = mouse_table[i].is_drag;
2927 return mouse_table[i].button;
2928 }
2929 return 0; /* Shouldn't get here */
2930}
2931
2932/*
2933 * Return the appropriate pseudo mouse event token (KE_LEFTMOUSE etc) based on
2934 * the given information about which mouse button is down, and whether the
2935 * mouse was clicked, dragged or released.
2936 */
2937 int
2938get_pseudo_mouse_code(button, is_click, is_drag)
2939 int button; /* eg MOUSE_LEFT */
2940 int is_click;
2941 int is_drag;
2942{
2943 int i;
2944
2945 for (i = 0; mouse_table[i].pseudo_code; i++)
2946 if (button == mouse_table[i].button
2947 && is_click == mouse_table[i].is_click
2948 && is_drag == mouse_table[i].is_drag)
2949 {
2950#ifdef FEAT_GUI
Bram Moolenaarc91506a2005-04-24 22:04:21 +00002951 /* Trick: a non mappable left click and release has mouse_col -1
2952 * or added MOUSE_COLOFF. Used for 'mousefocus' in
2953 * gui_mouse_moved() */
2954 if (mouse_col < 0 || mouse_col > MOUSE_COLOFF)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002955 {
Bram Moolenaarc91506a2005-04-24 22:04:21 +00002956 if (mouse_col < 0)
2957 mouse_col = 0;
2958 else
2959 mouse_col -= MOUSE_COLOFF;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002960 if (mouse_table[i].pseudo_code == (int)KE_LEFTMOUSE)
2961 return (int)KE_LEFTMOUSE_NM;
2962 if (mouse_table[i].pseudo_code == (int)KE_LEFTRELEASE)
2963 return (int)KE_LEFTRELEASE_NM;
2964 }
2965#endif
2966 return mouse_table[i].pseudo_code;
2967 }
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00002968 return (int)KE_IGNORE; /* not recognized, ignore it */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002969}
2970#endif /* FEAT_MOUSE */
2971
2972/*
2973 * Return the current end-of-line type: EOL_DOS, EOL_UNIX or EOL_MAC.
2974 */
2975 int
2976get_fileformat(buf)
2977 buf_T *buf;
2978{
2979 int c = *buf->b_p_ff;
2980
2981 if (buf->b_p_bin || c == 'u')
2982 return EOL_UNIX;
2983 if (c == 'm')
2984 return EOL_MAC;
2985 return EOL_DOS;
2986}
2987
2988/*
2989 * Like get_fileformat(), but override 'fileformat' with "p" for "++opt=val"
2990 * argument.
2991 */
2992 int
2993get_fileformat_force(buf, eap)
2994 buf_T *buf;
2995 exarg_T *eap; /* can be NULL! */
2996{
2997 int c;
2998
2999 if (eap != NULL && eap->force_ff != 0)
3000 c = eap->cmd[eap->force_ff];
3001 else
3002 {
3003 if ((eap != NULL && eap->force_bin != 0)
3004 ? (eap->force_bin == FORCE_BIN) : buf->b_p_bin)
3005 return EOL_UNIX;
3006 c = *buf->b_p_ff;
3007 }
3008 if (c == 'u')
3009 return EOL_UNIX;
3010 if (c == 'm')
3011 return EOL_MAC;
3012 return EOL_DOS;
3013}
3014
3015/*
3016 * Set the current end-of-line type to EOL_DOS, EOL_UNIX or EOL_MAC.
3017 * Sets both 'textmode' and 'fileformat'.
3018 * Note: Does _not_ set global value of 'textmode'!
3019 */
3020 void
3021set_fileformat(t, opt_flags)
3022 int t;
3023 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
3024{
3025 char *p = NULL;
3026
3027 switch (t)
3028 {
3029 case EOL_DOS:
3030 p = FF_DOS;
3031 curbuf->b_p_tx = TRUE;
3032 break;
3033 case EOL_UNIX:
3034 p = FF_UNIX;
3035 curbuf->b_p_tx = FALSE;
3036 break;
3037 case EOL_MAC:
3038 p = FF_MAC;
3039 curbuf->b_p_tx = FALSE;
3040 break;
3041 }
3042 if (p != NULL)
3043 set_string_option_direct((char_u *)"ff", -1, (char_u *)p,
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00003044 OPT_FREE | opt_flags, 0);
3045
Bram Moolenaar071d4272004-06-13 20:20:40 +00003046#ifdef FEAT_WINDOWS
Bram Moolenaarf740b292006-02-16 22:11:02 +00003047 /* This may cause the buffer to become (un)modified. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003048 check_status(curbuf);
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00003049 redraw_tabline = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003050#endif
3051#ifdef FEAT_TITLE
3052 need_maketitle = TRUE; /* set window title later */
3053#endif
3054}
3055
3056/*
3057 * Return the default fileformat from 'fileformats'.
3058 */
3059 int
3060default_fileformat()
3061{
3062 switch (*p_ffs)
3063 {
3064 case 'm': return EOL_MAC;
3065 case 'd': return EOL_DOS;
3066 }
3067 return EOL_UNIX;
3068}
3069
3070/*
3071 * Call shell. Calls mch_call_shell, with 'shellxquote' added.
3072 */
3073 int
3074call_shell(cmd, opt)
3075 char_u *cmd;
3076 int opt;
3077{
3078 char_u *ncmd;
3079 int retval;
Bram Moolenaar05159a02005-02-26 23:04:13 +00003080#ifdef FEAT_PROFILE
3081 proftime_T wait_time;
3082#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003083
3084 if (p_verbose > 3)
3085 {
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00003086 verbose_enter();
Bram Moolenaar051b7822005-05-19 21:00:46 +00003087 smsg((char_u *)_("Calling shell to execute: \"%s\""),
Bram Moolenaar071d4272004-06-13 20:20:40 +00003088 cmd == NULL ? p_sh : cmd);
3089 out_char('\n');
3090 cursor_on();
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00003091 verbose_leave();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003092 }
3093
Bram Moolenaar05159a02005-02-26 23:04:13 +00003094#ifdef FEAT_PROFILE
Bram Moolenaar01265852006-03-20 21:50:15 +00003095 if (do_profiling == PROF_YES)
Bram Moolenaar05159a02005-02-26 23:04:13 +00003096 prof_child_enter(&wait_time);
3097#endif
3098
Bram Moolenaar071d4272004-06-13 20:20:40 +00003099 if (*p_sh == NUL)
3100 {
3101 EMSG(_(e_shellempty));
3102 retval = -1;
3103 }
3104 else
3105 {
3106#ifdef FEAT_GUI_MSWIN
3107 /* Don't hide the pointer while executing a shell command. */
3108 gui_mch_mousehide(FALSE);
3109#endif
3110#ifdef FEAT_GUI
3111 ++hold_gui_events;
3112#endif
3113 /* The external command may update a tags file, clear cached tags. */
3114 tag_freematch();
3115
3116 if (cmd == NULL || *p_sxq == NUL)
3117 retval = mch_call_shell(cmd, opt);
3118 else
3119 {
3120 ncmd = alloc((unsigned)(STRLEN(cmd) + STRLEN(p_sxq) * 2 + 1));
3121 if (ncmd != NULL)
3122 {
3123 STRCPY(ncmd, p_sxq);
3124 STRCAT(ncmd, cmd);
3125 STRCAT(ncmd, p_sxq);
3126 retval = mch_call_shell(ncmd, opt);
3127 vim_free(ncmd);
3128 }
3129 else
3130 retval = -1;
3131 }
3132#ifdef FEAT_GUI
3133 --hold_gui_events;
3134#endif
3135 /*
3136 * Check the window size, in case it changed while executing the
3137 * external command.
3138 */
3139 shell_resized_check();
3140 }
3141
3142#ifdef FEAT_EVAL
3143 set_vim_var_nr(VV_SHELL_ERROR, (long)retval);
Bram Moolenaar05159a02005-02-26 23:04:13 +00003144# ifdef FEAT_PROFILE
Bram Moolenaar01265852006-03-20 21:50:15 +00003145 if (do_profiling == PROF_YES)
Bram Moolenaar05159a02005-02-26 23:04:13 +00003146 prof_child_exit(&wait_time);
3147# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003148#endif
3149
3150 return retval;
3151}
3152
3153/*
Bram Moolenaar01265852006-03-20 21:50:15 +00003154 * VISUAL, SELECTMODE and OP_PENDING State are never set, they are equal to
3155 * NORMAL State with a condition. This function returns the real State.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003156 */
3157 int
3158get_real_state()
3159{
3160 if (State & NORMAL)
3161 {
3162#ifdef FEAT_VISUAL
3163 if (VIsual_active)
Bram Moolenaar01265852006-03-20 21:50:15 +00003164 {
3165 if (VIsual_select)
3166 return SELECTMODE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003167 return VISUAL;
Bram Moolenaar01265852006-03-20 21:50:15 +00003168 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003169 else
3170#endif
3171 if (finish_op)
Bram Moolenaar01265852006-03-20 21:50:15 +00003172 return OP_PENDING;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003173 }
3174 return State;
3175}
3176
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003177#if defined(FEAT_MBYTE) || defined(PROTO)
3178/*
3179 * Return TRUE if "p" points to just after a path separator.
3180 * Take care of multi-byte characters.
3181 * "b" must point to the start of the file name
3182 */
3183 int
3184after_pathsep(b, p)
3185 char_u *b;
3186 char_u *p;
3187{
3188 return vim_ispathsep(p[-1])
3189 && (!has_mbyte || (*mb_head_off)(b, p - 1) == 0);
3190}
3191#endif
3192
3193/*
3194 * Return TRUE if file names "f1" and "f2" are in the same directory.
3195 * "f1" may be a short name, "f2" must be a full path.
3196 */
3197 int
3198same_directory(f1, f2)
3199 char_u *f1;
3200 char_u *f2;
3201{
3202 char_u ffname[MAXPATHL];
3203 char_u *t1;
3204 char_u *t2;
3205
3206 /* safety check */
3207 if (f1 == NULL || f2 == NULL)
3208 return FALSE;
3209
3210 (void)vim_FullName(f1, ffname, MAXPATHL, FALSE);
3211 t1 = gettail_sep(ffname);
3212 t2 = gettail_sep(f2);
3213 return (t1 - ffname == t2 - f2
3214 && pathcmp((char *)ffname, (char *)f2, (int)(t1 - ffname)) == 0);
3215}
3216
Bram Moolenaar071d4272004-06-13 20:20:40 +00003217#if defined(FEAT_SESSION) || defined(MSWIN) || defined(FEAT_GUI_MAC) \
Bram Moolenaar9372a112005-12-06 19:59:18 +00003218 || ((defined(FEAT_GUI_GTK)) \
Bram Moolenaar843ee412004-06-30 16:16:41 +00003219 && ( defined(FEAT_WINDOWS) || defined(FEAT_DND)) ) \
Bram Moolenaar071d4272004-06-13 20:20:40 +00003220 || defined(FEAT_SUN_WORKSHOP) || defined(FEAT_NETBEANS_INTG) \
3221 || defined(PROTO)
3222/*
3223 * Change to a file's directory.
3224 * Caller must call shorten_fnames()!
3225 * Return OK or FAIL.
3226 */
3227 int
3228vim_chdirfile(fname)
3229 char_u *fname;
3230{
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003231 char_u dir[MAXPATHL];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003232
Bram Moolenaarbbebc852005-07-18 21:47:53 +00003233 vim_strncpy(dir, fname, MAXPATHL - 1);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003234 *gettail_sep(dir) = NUL;
3235 return mch_chdir((char *)dir) == 0 ? OK : FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003236}
3237#endif
3238
3239#if defined(STAT_IGNORES_SLASH) || defined(PROTO)
3240/*
3241 * Check if "name" ends in a slash and is not a directory.
3242 * Used for systems where stat() ignores a trailing slash on a file name.
3243 * The Vim code assumes a trailing slash is only ignored for a directory.
3244 */
3245 int
3246illegal_slash(name)
3247 char *name;
3248{
3249 if (name[0] == NUL)
3250 return FALSE; /* no file name is not illegal */
3251 if (name[strlen(name) - 1] != '/')
3252 return FALSE; /* no trailing slash */
3253 if (mch_isdir((char_u *)name))
3254 return FALSE; /* trailing slash for a directory */
3255 return TRUE;
3256}
3257#endif
3258
3259#if defined(CURSOR_SHAPE) || defined(PROTO)
3260
3261/*
3262 * Handling of cursor and mouse pointer shapes in various modes.
3263 */
3264
3265cursorentry_T shape_table[SHAPE_IDX_COUNT] =
3266{
3267 /* The values will be filled in from the 'guicursor' and 'mouseshape'
3268 * defaults when Vim starts.
3269 * Adjust the SHAPE_IDX_ defines when making changes! */
3270 {0, 0, 0, 700L, 400L, 250L, 0, 0, "n", SHAPE_CURSOR+SHAPE_MOUSE},
3271 {0, 0, 0, 700L, 400L, 250L, 0, 0, "v", SHAPE_CURSOR+SHAPE_MOUSE},
3272 {0, 0, 0, 700L, 400L, 250L, 0, 0, "i", SHAPE_CURSOR+SHAPE_MOUSE},
3273 {0, 0, 0, 700L, 400L, 250L, 0, 0, "r", SHAPE_CURSOR+SHAPE_MOUSE},
3274 {0, 0, 0, 700L, 400L, 250L, 0, 0, "c", SHAPE_CURSOR+SHAPE_MOUSE},
3275 {0, 0, 0, 700L, 400L, 250L, 0, 0, "ci", SHAPE_CURSOR+SHAPE_MOUSE},
3276 {0, 0, 0, 700L, 400L, 250L, 0, 0, "cr", SHAPE_CURSOR+SHAPE_MOUSE},
3277 {0, 0, 0, 700L, 400L, 250L, 0, 0, "o", SHAPE_CURSOR+SHAPE_MOUSE},
3278 {0, 0, 0, 700L, 400L, 250L, 0, 0, "ve", SHAPE_CURSOR+SHAPE_MOUSE},
3279 {0, 0, 0, 0L, 0L, 0L, 0, 0, "e", SHAPE_MOUSE},
3280 {0, 0, 0, 0L, 0L, 0L, 0, 0, "s", SHAPE_MOUSE},
3281 {0, 0, 0, 0L, 0L, 0L, 0, 0, "sd", SHAPE_MOUSE},
3282 {0, 0, 0, 0L, 0L, 0L, 0, 0, "vs", SHAPE_MOUSE},
3283 {0, 0, 0, 0L, 0L, 0L, 0, 0, "vd", SHAPE_MOUSE},
3284 {0, 0, 0, 0L, 0L, 0L, 0, 0, "m", SHAPE_MOUSE},
3285 {0, 0, 0, 0L, 0L, 0L, 0, 0, "ml", SHAPE_MOUSE},
3286 {0, 0, 0, 100L, 100L, 100L, 0, 0, "sm", SHAPE_CURSOR},
3287};
3288
3289#ifdef FEAT_MOUSESHAPE
3290/*
3291 * Table with names for mouse shapes. Keep in sync with all the tables for
3292 * mch_set_mouse_shape()!.
3293 */
3294static char * mshape_names[] =
3295{
3296 "arrow", /* default, must be the first one */
3297 "blank", /* hidden */
3298 "beam",
3299 "updown",
3300 "udsizing",
3301 "leftright",
3302 "lrsizing",
3303 "busy",
3304 "no",
3305 "crosshair",
3306 "hand1",
3307 "hand2",
3308 "pencil",
3309 "question",
3310 "rightup-arrow",
3311 "up-arrow",
3312 NULL
3313};
3314#endif
3315
3316/*
3317 * Parse the 'guicursor' option ("what" is SHAPE_CURSOR) or 'mouseshape'
3318 * ("what" is SHAPE_MOUSE).
3319 * Returns error message for an illegal option, NULL otherwise.
3320 */
3321 char_u *
3322parse_shape_opt(what)
3323 int what;
3324{
3325 char_u *modep;
3326 char_u *colonp;
3327 char_u *commap;
3328 char_u *slashp;
3329 char_u *p, *endp;
3330 int idx = 0; /* init for GCC */
3331 int all_idx;
3332 int len;
3333 int i;
3334 long n;
3335 int found_ve = FALSE; /* found "ve" flag */
3336 int round;
3337
3338 /*
3339 * First round: check for errors; second round: do it for real.
3340 */
3341 for (round = 1; round <= 2; ++round)
3342 {
3343 /*
3344 * Repeat for all comma separated parts.
3345 */
3346#ifdef FEAT_MOUSESHAPE
3347 if (what == SHAPE_MOUSE)
3348 modep = p_mouseshape;
3349 else
3350#endif
3351 modep = p_guicursor;
3352 while (*modep != NUL)
3353 {
3354 colonp = vim_strchr(modep, ':');
3355 if (colonp == NULL)
3356 return (char_u *)N_("E545: Missing colon");
3357 if (colonp == modep)
3358 return (char_u *)N_("E546: Illegal mode");
3359 commap = vim_strchr(modep, ',');
3360
3361 /*
3362 * Repeat for all mode's before the colon.
3363 * For the 'a' mode, we loop to handle all the modes.
3364 */
3365 all_idx = -1;
3366 while (modep < colonp || all_idx >= 0)
3367 {
3368 if (all_idx < 0)
3369 {
3370 /* Find the mode. */
3371 if (modep[1] == '-' || modep[1] == ':')
3372 len = 1;
3373 else
3374 len = 2;
3375 if (len == 1 && TOLOWER_ASC(modep[0]) == 'a')
3376 all_idx = SHAPE_IDX_COUNT - 1;
3377 else
3378 {
3379 for (idx = 0; idx < SHAPE_IDX_COUNT; ++idx)
3380 if (STRNICMP(modep, shape_table[idx].name, len)
3381 == 0)
3382 break;
3383 if (idx == SHAPE_IDX_COUNT
3384 || (shape_table[idx].used_for & what) == 0)
3385 return (char_u *)N_("E546: Illegal mode");
3386 if (len == 2 && modep[0] == 'v' && modep[1] == 'e')
3387 found_ve = TRUE;
3388 }
3389 modep += len + 1;
3390 }
3391
3392 if (all_idx >= 0)
3393 idx = all_idx--;
3394 else if (round == 2)
3395 {
3396#ifdef FEAT_MOUSESHAPE
3397 if (what == SHAPE_MOUSE)
3398 {
3399 /* Set the default, for the missing parts */
3400 shape_table[idx].mshape = 0;
3401 }
3402 else
3403#endif
3404 {
3405 /* Set the defaults, for the missing parts */
3406 shape_table[idx].shape = SHAPE_BLOCK;
3407 shape_table[idx].blinkwait = 700L;
3408 shape_table[idx].blinkon = 400L;
3409 shape_table[idx].blinkoff = 250L;
3410 }
3411 }
3412
3413 /* Parse the part after the colon */
3414 for (p = colonp + 1; *p && *p != ','; )
3415 {
3416#ifdef FEAT_MOUSESHAPE
3417 if (what == SHAPE_MOUSE)
3418 {
3419 for (i = 0; ; ++i)
3420 {
3421 if (mshape_names[i] == NULL)
3422 {
3423 if (!VIM_ISDIGIT(*p))
3424 return (char_u *)N_("E547: Illegal mouseshape");
3425 if (round == 2)
3426 shape_table[idx].mshape =
3427 getdigits(&p) + MSHAPE_NUMBERED;
3428 else
3429 (void)getdigits(&p);
3430 break;
3431 }
3432 len = (int)STRLEN(mshape_names[i]);
3433 if (STRNICMP(p, mshape_names[i], len) == 0)
3434 {
3435 if (round == 2)
3436 shape_table[idx].mshape = i;
3437 p += len;
3438 break;
3439 }
3440 }
3441 }
3442 else /* if (what == SHAPE_MOUSE) */
3443#endif
3444 {
3445 /*
3446 * First handle the ones with a number argument.
3447 */
3448 i = *p;
3449 len = 0;
3450 if (STRNICMP(p, "ver", 3) == 0)
3451 len = 3;
3452 else if (STRNICMP(p, "hor", 3) == 0)
3453 len = 3;
3454 else if (STRNICMP(p, "blinkwait", 9) == 0)
3455 len = 9;
3456 else if (STRNICMP(p, "blinkon", 7) == 0)
3457 len = 7;
3458 else if (STRNICMP(p, "blinkoff", 8) == 0)
3459 len = 8;
3460 if (len != 0)
3461 {
3462 p += len;
3463 if (!VIM_ISDIGIT(*p))
3464 return (char_u *)N_("E548: digit expected");
3465 n = getdigits(&p);
3466 if (len == 3) /* "ver" or "hor" */
3467 {
3468 if (n == 0)
3469 return (char_u *)N_("E549: Illegal percentage");
3470 if (round == 2)
3471 {
3472 if (TOLOWER_ASC(i) == 'v')
3473 shape_table[idx].shape = SHAPE_VER;
3474 else
3475 shape_table[idx].shape = SHAPE_HOR;
3476 shape_table[idx].percentage = n;
3477 }
3478 }
3479 else if (round == 2)
3480 {
3481 if (len == 9)
3482 shape_table[idx].blinkwait = n;
3483 else if (len == 7)
3484 shape_table[idx].blinkon = n;
3485 else
3486 shape_table[idx].blinkoff = n;
3487 }
3488 }
3489 else if (STRNICMP(p, "block", 5) == 0)
3490 {
3491 if (round == 2)
3492 shape_table[idx].shape = SHAPE_BLOCK;
3493 p += 5;
3494 }
3495 else /* must be a highlight group name then */
3496 {
3497 endp = vim_strchr(p, '-');
3498 if (commap == NULL) /* last part */
3499 {
3500 if (endp == NULL)
3501 endp = p + STRLEN(p); /* find end of part */
3502 }
3503 else if (endp > commap || endp == NULL)
3504 endp = commap;
3505 slashp = vim_strchr(p, '/');
3506 if (slashp != NULL && slashp < endp)
3507 {
3508 /* "group/langmap_group" */
3509 i = syn_check_group(p, (int)(slashp - p));
3510 p = slashp + 1;
3511 }
3512 if (round == 2)
3513 {
3514 shape_table[idx].id = syn_check_group(p,
3515 (int)(endp - p));
3516 shape_table[idx].id_lm = shape_table[idx].id;
3517 if (slashp != NULL && slashp < endp)
3518 shape_table[idx].id = i;
3519 }
3520 p = endp;
3521 }
3522 } /* if (what != SHAPE_MOUSE) */
3523
3524 if (*p == '-')
3525 ++p;
3526 }
3527 }
3528 modep = p;
3529 if (*modep == ',')
3530 ++modep;
3531 }
3532 }
3533
3534 /* If the 's' flag is not given, use the 'v' cursor for 's' */
3535 if (!found_ve)
3536 {
3537#ifdef FEAT_MOUSESHAPE
3538 if (what == SHAPE_MOUSE)
3539 {
3540 shape_table[SHAPE_IDX_VE].mshape = shape_table[SHAPE_IDX_V].mshape;
3541 }
3542 else
3543#endif
3544 {
3545 shape_table[SHAPE_IDX_VE].shape = shape_table[SHAPE_IDX_V].shape;
3546 shape_table[SHAPE_IDX_VE].percentage =
3547 shape_table[SHAPE_IDX_V].percentage;
3548 shape_table[SHAPE_IDX_VE].blinkwait =
3549 shape_table[SHAPE_IDX_V].blinkwait;
3550 shape_table[SHAPE_IDX_VE].blinkon =
3551 shape_table[SHAPE_IDX_V].blinkon;
3552 shape_table[SHAPE_IDX_VE].blinkoff =
3553 shape_table[SHAPE_IDX_V].blinkoff;
3554 shape_table[SHAPE_IDX_VE].id = shape_table[SHAPE_IDX_V].id;
3555 shape_table[SHAPE_IDX_VE].id_lm = shape_table[SHAPE_IDX_V].id_lm;
3556 }
3557 }
3558
3559 return NULL;
3560}
3561
Bram Moolenaarac6e65f2005-08-29 22:25:38 +00003562# if defined(MCH_CURSOR_SHAPE) || defined(FEAT_GUI) \
3563 || defined(FEAT_MOUSESHAPE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003564/*
3565 * Return the index into shape_table[] for the current mode.
3566 * When "mouse" is TRUE, consider indexes valid for the mouse pointer.
3567 */
3568 int
3569get_shape_idx(mouse)
3570 int mouse;
3571{
3572#ifdef FEAT_MOUSESHAPE
3573 if (mouse && (State == HITRETURN || State == ASKMORE))
3574 {
3575# ifdef FEAT_GUI
Bram Moolenaar9588a0f2005-01-08 21:45:39 +00003576 int x, y;
3577 gui_mch_getmouse(&x, &y);
3578 if (Y_2_ROW(y) == Rows - 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003579 return SHAPE_IDX_MOREL;
3580# endif
3581 return SHAPE_IDX_MORE;
3582 }
3583 if (mouse && drag_status_line)
3584 return SHAPE_IDX_SDRAG;
3585# ifdef FEAT_VERTSPLIT
3586 if (mouse && drag_sep_line)
3587 return SHAPE_IDX_VDRAG;
3588# endif
3589#endif
3590 if (!mouse && State == SHOWMATCH)
3591 return SHAPE_IDX_SM;
3592#ifdef FEAT_VREPLACE
3593 if (State & VREPLACE_FLAG)
3594 return SHAPE_IDX_R;
3595#endif
3596 if (State & REPLACE_FLAG)
3597 return SHAPE_IDX_R;
3598 if (State & INSERT)
3599 return SHAPE_IDX_I;
3600 if (State & CMDLINE)
3601 {
3602 if (cmdline_at_end())
3603 return SHAPE_IDX_C;
3604 if (cmdline_overstrike())
3605 return SHAPE_IDX_CR;
3606 return SHAPE_IDX_CI;
3607 }
3608 if (finish_op)
3609 return SHAPE_IDX_O;
3610#ifdef FEAT_VISUAL
3611 if (VIsual_active)
3612 {
3613 if (*p_sel == 'e')
3614 return SHAPE_IDX_VE;
3615 else
3616 return SHAPE_IDX_V;
3617 }
3618#endif
3619 return SHAPE_IDX_N;
3620}
Bram Moolenaarac6e65f2005-08-29 22:25:38 +00003621#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003622
3623# if defined(FEAT_MOUSESHAPE) || defined(PROTO)
3624static int old_mouse_shape = 0;
3625
3626/*
3627 * Set the mouse shape:
3628 * If "shape" is -1, use shape depending on the current mode,
3629 * depending on the current state.
3630 * If "shape" is -2, only update the shape when it's CLINE or STATUS (used
3631 * when the mouse moves off the status or command line).
3632 */
3633 void
3634update_mouseshape(shape_idx)
3635 int shape_idx;
3636{
3637 int new_mouse_shape;
3638
3639 /* Only works in GUI mode. */
Bram Moolenaar6bb68362005-03-22 23:03:44 +00003640 if (!gui.in_use || gui.starting)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003641 return;
3642
3643 /* Postpone the updating when more is to come. Speeds up executing of
3644 * mappings. */
3645 if (shape_idx == -1 && char_avail())
3646 {
3647 postponed_mouseshape = TRUE;
3648 return;
3649 }
3650
Bram Moolenaar14716812006-05-04 21:54:08 +00003651 /* When ignoring the mouse don't change shape on the statusline. */
3652 if (*p_mouse == NUL
3653 && (shape_idx == SHAPE_IDX_CLINE
3654 || shape_idx == SHAPE_IDX_STATUS
3655 || shape_idx == SHAPE_IDX_VSEP))
3656 shape_idx = -2;
3657
Bram Moolenaar071d4272004-06-13 20:20:40 +00003658 if (shape_idx == -2
3659 && old_mouse_shape != shape_table[SHAPE_IDX_CLINE].mshape
3660 && old_mouse_shape != shape_table[SHAPE_IDX_STATUS].mshape
3661 && old_mouse_shape != shape_table[SHAPE_IDX_VSEP].mshape)
3662 return;
3663 if (shape_idx < 0)
3664 new_mouse_shape = shape_table[get_shape_idx(TRUE)].mshape;
3665 else
3666 new_mouse_shape = shape_table[shape_idx].mshape;
3667 if (new_mouse_shape != old_mouse_shape)
3668 {
3669 mch_set_mouse_shape(new_mouse_shape);
3670 old_mouse_shape = new_mouse_shape;
3671 }
3672 postponed_mouseshape = FALSE;
3673}
3674# endif
3675
3676#endif /* CURSOR_SHAPE */
3677
3678
3679#ifdef FEAT_CRYPT
3680/*
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00003681 * Optional encryption support.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003682 * Mohsin Ahmed, mosh@sasi.com, 98-09-24
3683 * Based on zip/crypt sources.
3684 *
3685 * NOTE FOR USA: Since 2000 exporting this code from the USA is allowed to
3686 * most countries. There are a few exceptions, but that still should not be a
3687 * problem since this code was originally created in Europe and India.
Bram Moolenaar40e6a712010-05-16 22:32:54 +02003688 *
3689 * Blowfish addition originally made by Mohsin Ahmed,
3690 * http://www.cs.albany.edu/~mosh 2010-03-14
3691 * Based on blowfish by Bruce Schneier (http://www.schneier.com/blowfish.html)
3692 * and sha256 by Christophe Devine.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003693 */
3694
3695/* from zip.h */
3696
3697typedef unsigned short ush; /* unsigned 16-bit value */
3698typedef unsigned long ulg; /* unsigned 32-bit value */
3699
3700static void make_crc_tab __ARGS((void));
3701
Bram Moolenaard6f676d2005-06-01 21:51:55 +00003702static ulg crc_32_tab[256];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003703
3704/*
3705 * Fill the CRC table.
3706 */
3707 static void
3708make_crc_tab()
3709{
3710 ulg s,t,v;
3711 static int done = FALSE;
3712
3713 if (done)
3714 return;
3715 for (t = 0; t < 256; t++)
3716 {
3717 v = t;
3718 for (s = 0; s < 8; s++)
3719 v = (v >> 1) ^ ((v & 1) * (ulg)0xedb88320L);
3720 crc_32_tab[t] = v;
3721 }
3722 done = TRUE;
3723}
3724
3725#define CRC32(c, b) (crc_32_tab[((int)(c) ^ (b)) & 0xff] ^ ((c) >> 8))
3726
Bram Moolenaar071d4272004-06-13 20:20:40 +00003727static ulg keys[3]; /* keys defining the pseudo-random sequence */
3728
3729/*
Bram Moolenaar04c9baf2010-06-01 23:37:39 +02003730 * Return the next byte in the pseudo-random sequence.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003731 */
Bram Moolenaar04c9baf2010-06-01 23:37:39 +02003732#define DECRYPT_BYTE_ZIP(t) { \
3733 ush temp; \
3734 \
3735 temp = (ush)keys[2] | 2; \
3736 t = (int)(((unsigned)(temp * (temp ^ 1)) >> 8) & 0xff); \
Bram Moolenaar071d4272004-06-13 20:20:40 +00003737}
3738
3739/*
Bram Moolenaar04c9baf2010-06-01 23:37:39 +02003740 * Update the encryption keys with the next byte of plain text.
3741 */
3742#define UPDATE_KEYS_ZIP(c) { \
3743 keys[0] = CRC32(keys[0], (c)); \
3744 keys[1] += keys[0] & 0xff; \
3745 keys[1] = keys[1] * 134775813L + 1; \
3746 keys[2] = CRC32(keys[2], (int)(keys[1] >> 24)); \
3747}
3748
3749/*
3750 * Encrypt "from[len]" into "to[len]".
3751 * "from" and "to" can be equal to encrypt in place.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003752 */
Bram Moolenaar40e6a712010-05-16 22:32:54 +02003753 void
Bram Moolenaar04c9baf2010-06-01 23:37:39 +02003754crypt_encode(from, len, to)
3755 char_u *from;
3756 size_t len;
3757 char_u *to;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003758{
Bram Moolenaar04c9baf2010-06-01 23:37:39 +02003759 size_t i;
3760 int ztemp, t;
3761
3762 if (use_crypt_method == 0)
3763 for (i = 0; i < len; ++i)
3764 {
3765 ztemp = from[i];
3766 DECRYPT_BYTE_ZIP(t);
3767 UPDATE_KEYS_ZIP(ztemp);
3768 to[i] = t ^ ztemp;
3769 }
Bram Moolenaar40e6a712010-05-16 22:32:54 +02003770 else
Bram Moolenaarbbd6afe2010-06-02 20:32:23 +02003771 bf_crypt_encode(from, len, to);
Bram Moolenaar04c9baf2010-06-01 23:37:39 +02003772}
3773
3774/*
3775 * Decrypt "ptr[len]" in place.
3776 */
3777 void
3778crypt_decode(ptr, len)
3779 char_u *ptr;
3780 long len;
3781{
3782 char_u *p;
3783
3784 if (use_crypt_method == 0)
3785 for (p = ptr; p < ptr + len; ++p)
3786 {
3787 ush temp;
3788
3789 temp = (ush)keys[2] | 2;
3790 temp = (int)(((unsigned)(temp * (temp ^ 1)) >> 8) & 0xff);
3791 UPDATE_KEYS_ZIP(*p ^= temp);
3792 }
3793 else
Bram Moolenaarbbd6afe2010-06-02 20:32:23 +02003794 bf_crypt_decode(ptr, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003795}
3796
3797/*
3798 * Initialize the encryption keys and the random header according to
3799 * the given password.
3800 * If "passwd" is NULL or empty, don't do anything.
3801 */
3802 void
3803crypt_init_keys(passwd)
3804 char_u *passwd; /* password string with which to modify keys */
3805{
3806 if (passwd != NULL && *passwd != NUL)
3807 {
Bram Moolenaar04c9baf2010-06-01 23:37:39 +02003808 if (use_crypt_method == 0)
Bram Moolenaarbbd6afe2010-06-02 20:32:23 +02003809 {
3810 char_u *p;
3811
3812 make_crc_tab();
3813 keys[0] = 305419896L;
3814 keys[1] = 591751049L;
3815 keys[2] = 878082192L;
3816 for (p = passwd; *p!= NUL; ++p)
Bram Moolenaar04c9baf2010-06-01 23:37:39 +02003817 {
Bram Moolenaarbbd6afe2010-06-02 20:32:23 +02003818 UPDATE_KEYS_ZIP((int)*p);
Bram Moolenaar04c9baf2010-06-01 23:37:39 +02003819 }
Bram Moolenaarbbd6afe2010-06-02 20:32:23 +02003820 }
Bram Moolenaar04c9baf2010-06-01 23:37:39 +02003821 else
Bram Moolenaarbbd6afe2010-06-02 20:32:23 +02003822 bf_crypt_init_keys(passwd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003823 }
3824}
3825
3826/*
Bram Moolenaar40e6a712010-05-16 22:32:54 +02003827 * Free an allocated crypt key. Clear the text to make sure it doesn't stay
3828 * in memory anywhere.
3829 */
3830 void
3831free_crypt_key(key)
3832 char_u *key;
3833{
3834 char_u *p;
3835
3836 if (key != NULL)
3837 {
3838 for (p = key; *p != NUL; ++p)
Bram Moolenaarbe18d102010-05-22 21:37:53 +02003839 *p = 0;
Bram Moolenaar40e6a712010-05-16 22:32:54 +02003840 vim_free(key);
3841 }
3842}
3843
3844/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003845 * Ask the user for a crypt key.
Bram Moolenaar40e6a712010-05-16 22:32:54 +02003846 * When "store" is TRUE, the new key is stored in the 'key' option, and the
Bram Moolenaar071d4272004-06-13 20:20:40 +00003847 * 'key' option value is returned: Don't free it.
3848 * When "store" is FALSE, the typed key is returned in allocated memory.
3849 * Returns NULL on failure.
3850 */
3851 char_u *
3852get_crypt_key(store, twice)
3853 int store;
3854 int twice; /* Ask for the key twice. */
3855{
3856 char_u *p1, *p2 = NULL;
3857 int round;
3858
3859 for (round = 0; ; ++round)
3860 {
3861 cmdline_star = TRUE;
3862 cmdline_row = msg_row;
3863 p1 = getcmdline_prompt(NUL, round == 0
3864 ? (char_u *)_("Enter encryption key: ")
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00003865 : (char_u *)_("Enter same key again: "), 0, EXPAND_NOTHING,
3866 NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003867 cmdline_star = FALSE;
3868
3869 if (p1 == NULL)
3870 break;
3871
3872 if (round == twice)
3873 {
3874 if (p2 != NULL && STRCMP(p1, p2) != 0)
3875 {
3876 MSG(_("Keys don't match!"));
Bram Moolenaar40e6a712010-05-16 22:32:54 +02003877 free_crypt_key(p1);
3878 free_crypt_key(p2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003879 p2 = NULL;
3880 round = -1; /* do it again */
3881 continue;
3882 }
Bram Moolenaar40e6a712010-05-16 22:32:54 +02003883
Bram Moolenaar071d4272004-06-13 20:20:40 +00003884 if (store)
3885 {
3886 set_option_value((char_u *)"key", 0L, p1, OPT_LOCAL);
Bram Moolenaar40e6a712010-05-16 22:32:54 +02003887 free_crypt_key(p1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003888 p1 = curbuf->b_p_key;
3889 }
3890 break;
3891 }
3892 p2 = p1;
3893 }
3894
3895 /* since the user typed this, no need to wait for return */
3896 need_wait_return = FALSE;
3897 msg_didout = FALSE;
3898
Bram Moolenaar40e6a712010-05-16 22:32:54 +02003899 free_crypt_key(p2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003900 return p1;
3901}
3902
3903#endif /* FEAT_CRYPT */
3904
3905/* TODO: make some #ifdef for this */
3906/*--------[ file searching ]-------------------------------------------------*/
3907/*
3908 * File searching functions for 'path', 'tags' and 'cdpath' options.
3909 * External visible functions:
3910 * vim_findfile_init() creates/initialises the search context
3911 * vim_findfile_free_visited() free list of visited files/dirs of search
3912 * context
3913 * vim_findfile() find a file in the search context
3914 * vim_findfile_cleanup() cleanup/free search context created by
3915 * vim_findfile_init()
3916 *
3917 * All static functions and variables start with 'ff_'
3918 *
3919 * In general it works like this:
3920 * First you create yourself a search context by calling vim_findfile_init().
3921 * It is possible to give a search context from a previous call to
3922 * vim_findfile_init(), so it can be reused. After this you call vim_findfile()
3923 * until you are satisfied with the result or it returns NULL. On every call it
3924 * returns the next file which matches the conditions given to
3925 * vim_findfile_init(). If it doesn't find a next file it returns NULL.
3926 *
3927 * It is possible to call vim_findfile_init() again to reinitialise your search
3928 * with some new parameters. Don't forget to pass your old search context to
3929 * it, so it can reuse it and especially reuse the list of already visited
3930 * directories. If you want to delete the list of already visited directories
3931 * simply call vim_findfile_free_visited().
3932 *
3933 * When you are done call vim_findfile_cleanup() to free the search context.
3934 *
3935 * The function vim_findfile_init() has a long comment, which describes the
3936 * needed parameters.
3937 *
3938 *
3939 *
3940 * ATTENTION:
3941 * ==========
Bram Moolenaar77f66d62007-02-20 02:16:18 +00003942 * Also we use an allocated search context here, this functions are NOT
Bram Moolenaar071d4272004-06-13 20:20:40 +00003943 * thread-safe!!!!!
3944 *
3945 * To minimize parameter passing (or because I'm to lazy), only the
3946 * external visible functions get a search context as a parameter. This is
3947 * then assigned to a static global, which is used throughout the local
3948 * functions.
3949 */
3950
3951/*
3952 * type for the directory search stack
3953 */
3954typedef struct ff_stack
3955{
3956 struct ff_stack *ffs_prev;
3957
3958 /* the fix part (no wildcards) and the part containing the wildcards
3959 * of the search path
3960 */
3961 char_u *ffs_fix_path;
3962#ifdef FEAT_PATH_EXTRA
3963 char_u *ffs_wc_path;
3964#endif
3965
3966 /* files/dirs found in the above directory, matched by the first wildcard
3967 * of wc_part
3968 */
3969 char_u **ffs_filearray;
3970 int ffs_filearray_size;
3971 char_u ffs_filearray_cur; /* needed for partly handled dirs */
3972
3973 /* to store status of partly handled directories
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00003974 * 0: we work on this directory for the first time
Bram Moolenaar071d4272004-06-13 20:20:40 +00003975 * 1: this directory was partly searched in an earlier step
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00003976 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003977 int ffs_stage;
3978
3979 /* How deep are we in the directory tree?
3980 * Counts backward from value of level parameter to vim_findfile_init
3981 */
3982 int ffs_level;
3983
3984 /* Did we already expand '**' to an empty string? */
3985 int ffs_star_star_empty;
3986} ff_stack_T;
3987
3988/*
3989 * type for already visited directories or files.
3990 */
3991typedef struct ff_visited
3992{
3993 struct ff_visited *ffv_next;
3994
3995#ifdef FEAT_PATH_EXTRA
3996 /* Visited directories are different if the wildcard string are
3997 * different. So we have to save it.
3998 */
3999 char_u *ffv_wc_path;
4000#endif
4001 /* for unix use inode etc for comparison (needed because of links), else
4002 * use filename.
4003 */
4004#ifdef UNIX
Bram Moolenaare1fbddc2009-05-16 19:07:03 +00004005 int ffv_dev_valid; /* ffv_dev and ffv_ino were set */
4006 dev_t ffv_dev; /* device number */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004007 ino_t ffv_ino; /* inode number */
4008#endif
4009 /* The memory for this struct is allocated according to the length of
4010 * ffv_fname.
4011 */
4012 char_u ffv_fname[1]; /* actually longer */
4013} ff_visited_T;
4014
4015/*
4016 * We might have to manage several visited lists during a search.
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00004017 * This is especially needed for the tags option. If tags is set to:
Bram Moolenaar071d4272004-06-13 20:20:40 +00004018 * "./++/tags,./++/TAGS,++/tags" (replace + with *)
4019 * So we have to do 3 searches:
4020 * 1) search from the current files directory downward for the file "tags"
4021 * 2) search from the current files directory downward for the file "TAGS"
4022 * 3) search from Vims current directory downwards for the file "tags"
4023 * As you can see, the first and the third search are for the same file, so for
4024 * the third search we can use the visited list of the first search. For the
4025 * second search we must start from a empty visited list.
4026 * The struct ff_visited_list_hdr is used to manage a linked list of already
4027 * visited lists.
4028 */
4029typedef struct ff_visited_list_hdr
4030{
4031 struct ff_visited_list_hdr *ffvl_next;
4032
4033 /* the filename the attached visited list is for */
4034 char_u *ffvl_filename;
4035
4036 ff_visited_T *ffvl_visited_list;
4037
4038} ff_visited_list_hdr_T;
4039
4040
4041/*
4042 * '**' can be expanded to several directory levels.
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00004043 * Set the default maximum depth.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004044 */
4045#define FF_MAX_STAR_STAR_EXPAND ((char_u)30)
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004046
Bram Moolenaar071d4272004-06-13 20:20:40 +00004047/*
4048 * The search context:
4049 * ffsc_stack_ptr: the stack for the dirs to search
4050 * ffsc_visited_list: the currently active visited list
4051 * ffsc_dir_visited_list: the currently active visited list for search dirs
4052 * ffsc_visited_lists_list: the list of all visited lists
4053 * ffsc_dir_visited_lists_list: the list of all visited lists for search dirs
4054 * ffsc_file_to_search: the file to search for
4055 * ffsc_start_dir: the starting directory, if search path was relative
4056 * ffsc_fix_path: the fix part of the given path (without wildcards)
4057 * Needed for upward search.
4058 * ffsc_wc_path: the part of the given path containing wildcards
4059 * ffsc_level: how many levels of dirs to search downwards
4060 * ffsc_stopdirs_v: array of stop directories for upward search
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004061 * ffsc_find_what: FINDFILE_BOTH, FINDFILE_DIR or FINDFILE_FILE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004062 */
4063typedef struct ff_search_ctx_T
4064{
4065 ff_stack_T *ffsc_stack_ptr;
4066 ff_visited_list_hdr_T *ffsc_visited_list;
4067 ff_visited_list_hdr_T *ffsc_dir_visited_list;
4068 ff_visited_list_hdr_T *ffsc_visited_lists_list;
4069 ff_visited_list_hdr_T *ffsc_dir_visited_lists_list;
4070 char_u *ffsc_file_to_search;
4071 char_u *ffsc_start_dir;
4072 char_u *ffsc_fix_path;
4073#ifdef FEAT_PATH_EXTRA
4074 char_u *ffsc_wc_path;
4075 int ffsc_level;
4076 char_u **ffsc_stopdirs_v;
4077#endif
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004078 int ffsc_find_what;
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00004079} ff_search_ctx_T;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004080
Bram Moolenaar071d4272004-06-13 20:20:40 +00004081/* locally needed functions */
4082#ifdef FEAT_PATH_EXTRA
4083static int ff_check_visited __ARGS((ff_visited_T **, char_u *, char_u *));
4084#else
4085static int ff_check_visited __ARGS((ff_visited_T **, char_u *));
4086#endif
4087static void vim_findfile_free_visited_list __ARGS((ff_visited_list_hdr_T **list_headp));
4088static void ff_free_visited_list __ARGS((ff_visited_T *vl));
4089static ff_visited_list_hdr_T* ff_get_visited_list __ARGS((char_u *, ff_visited_list_hdr_T **list_headp));
4090#ifdef FEAT_PATH_EXTRA
4091static int ff_wc_equal __ARGS((char_u *s1, char_u *s2));
4092#endif
4093
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004094static void ff_push __ARGS((ff_search_ctx_T *search_ctx, ff_stack_T *stack_ptr));
4095static ff_stack_T *ff_pop __ARGS((ff_search_ctx_T *search_ctx));
4096static void ff_clear __ARGS((ff_search_ctx_T *search_ctx));
4097static void ff_free_stack_element __ARGS((ff_stack_T *stack_ptr));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004098#ifdef FEAT_PATH_EXTRA
4099static ff_stack_T *ff_create_stack_element __ARGS((char_u *, char_u *, int, int));
4100#else
4101static ff_stack_T *ff_create_stack_element __ARGS((char_u *, int, int));
4102#endif
4103#ifdef FEAT_PATH_EXTRA
4104static int ff_path_in_stoplist __ARGS((char_u *, int, char_u **));
4105#endif
4106
Bram Moolenaar071d4272004-06-13 20:20:40 +00004107#if 0
4108/*
4109 * if someone likes findfirst/findnext, here are the functions
4110 * NOT TESTED!!
4111 */
4112
4113static void *ff_fn_search_context = NULL;
4114
4115 char_u *
4116vim_findfirst(path, filename, level)
4117 char_u *path;
4118 char_u *filename;
4119 int level;
4120{
4121 ff_fn_search_context =
4122 vim_findfile_init(path, filename, NULL, level, TRUE, FALSE,
4123 ff_fn_search_context, rel_fname);
4124 if (NULL == ff_fn_search_context)
4125 return NULL;
4126 else
4127 return vim_findnext()
4128}
4129
4130 char_u *
4131vim_findnext()
4132{
4133 char_u *ret = vim_findfile(ff_fn_search_context);
4134
4135 if (NULL == ret)
4136 {
4137 vim_findfile_cleanup(ff_fn_search_context);
4138 ff_fn_search_context = NULL;
4139 }
4140 return ret;
4141}
4142#endif
4143
4144/*
4145 * Initialization routine for vim_findfile.
4146 *
Bram Moolenaarbe18d102010-05-22 21:37:53 +02004147 * Returns the newly allocated search context or NULL if an error occurred.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004148 *
4149 * Don't forget to clean up by calling vim_findfile_cleanup() if you are done
4150 * with the search context.
4151 *
4152 * Find the file 'filename' in the directory 'path'.
4153 * The parameter 'path' may contain wildcards. If so only search 'level'
4154 * directories deep. The parameter 'level' is the absolute maximum and is
4155 * not related to restricts given to the '**' wildcard. If 'level' is 100
4156 * and you use '**200' vim_findfile() will stop after 100 levels.
4157 *
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004158 * 'filename' cannot contain wildcards! It is used as-is, no backslashes to
4159 * escape special characters.
4160 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00004161 * If 'stopdirs' is not NULL and nothing is found downward, the search is
4162 * restarted on the next higher directory level. This is repeated until the
4163 * start-directory of a search is contained in 'stopdirs'. 'stopdirs' has the
4164 * format ";*<dirname>*\(;<dirname>\)*;\=$".
4165 *
4166 * If the 'path' is relative, the starting dir for the search is either VIM's
4167 * current dir or if the path starts with "./" the current files dir.
Bram Moolenaarbe18d102010-05-22 21:37:53 +02004168 * If the 'path' is absolute, the starting dir is that part of the path before
Bram Moolenaar071d4272004-06-13 20:20:40 +00004169 * the first wildcard.
4170 *
4171 * Upward search is only done on the starting dir.
4172 *
4173 * If 'free_visited' is TRUE the list of already visited files/directories is
4174 * cleared. Set this to FALSE if you just want to search from another
4175 * directory, but want to be sure that no directory from a previous search is
4176 * searched again. This is useful if you search for a file at different places.
4177 * The list of visited files/dirs can also be cleared with the function
4178 * vim_findfile_free_visited().
4179 *
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004180 * Set the parameter 'find_what' to FINDFILE_DIR if you want to search for
4181 * directories only, FINDFILE_FILE for files only, FINDFILE_BOTH for both.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004182 *
4183 * A search context returned by a previous call to vim_findfile_init() can be
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004184 * passed in the parameter "search_ctx_arg". This context is reused and
4185 * reinitialized with the new parameters. The list of already visited
Bram Moolenaar071d4272004-06-13 20:20:40 +00004186 * directories from this context is only deleted if the parameter
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004187 * "free_visited" is true. Be aware that the passed "search_ctx_arg" is freed
4188 * if the reinitialization fails.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004189 *
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004190 * If you don't have a search context from a previous call "search_ctx_arg"
4191 * must be NULL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004192 *
4193 * This function silently ignores a few errors, vim_findfile() will have
4194 * limited functionality then.
4195 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004196 void *
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004197vim_findfile_init(path, filename, stopdirs, level, free_visited, find_what,
4198 search_ctx_arg, tagfile, rel_fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004199 char_u *path;
4200 char_u *filename;
Bram Moolenaare1fbddc2009-05-16 19:07:03 +00004201 char_u *stopdirs UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004202 int level;
4203 int free_visited;
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004204 int find_what;
4205 void *search_ctx_arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004206 int tagfile;
4207 char_u *rel_fname; /* file name to use for "." */
4208{
4209#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004210 char_u *wc_part;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004211#endif
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004212 ff_stack_T *sptr;
4213 ff_search_ctx_T *search_ctx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004214
4215 /* If a search context is given by the caller, reuse it, else allocate a
4216 * new one.
4217 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004218 if (search_ctx_arg != NULL)
4219 search_ctx = search_ctx_arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004220 else
4221 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004222 search_ctx = (ff_search_ctx_T*)alloc((unsigned)sizeof(ff_search_ctx_T));
4223 if (search_ctx == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004224 goto error_return;
Bram Moolenaar7db5fc82010-05-24 11:59:29 +02004225 vim_memset(search_ctx, 0, sizeof(ff_search_ctx_T));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004226 }
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004227 search_ctx->ffsc_find_what = find_what;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004228
4229 /* clear the search context, but NOT the visited lists */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004230 ff_clear(search_ctx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004231
4232 /* clear visited list if wanted */
4233 if (free_visited == TRUE)
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004234 vim_findfile_free_visited(search_ctx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004235 else
4236 {
4237 /* Reuse old visited lists. Get the visited list for the given
4238 * filename. If no list for the current filename exists, creates a new
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004239 * one. */
4240 search_ctx->ffsc_visited_list = ff_get_visited_list(filename,
4241 &search_ctx->ffsc_visited_lists_list);
4242 if (search_ctx->ffsc_visited_list == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004243 goto error_return;
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004244 search_ctx->ffsc_dir_visited_list = ff_get_visited_list(filename,
4245 &search_ctx->ffsc_dir_visited_lists_list);
4246 if (search_ctx->ffsc_dir_visited_list == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004247 goto error_return;
4248 }
4249
4250 if (ff_expand_buffer == NULL)
4251 {
4252 ff_expand_buffer = (char_u*)alloc(MAXPATHL);
4253 if (ff_expand_buffer == NULL)
4254 goto error_return;
4255 }
4256
4257 /* Store information on starting dir now if path is relative.
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00004258 * If path is absolute, we do that later. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004259 if (path[0] == '.'
4260 && (vim_ispathsep(path[1]) || path[1] == NUL)
4261 && (!tagfile || vim_strchr(p_cpo, CPO_DOTTAG) == NULL)
4262 && rel_fname != NULL)
4263 {
4264 int len = (int)(gettail(rel_fname) - rel_fname);
4265
4266 if (!vim_isAbsName(rel_fname) && len + 1 < MAXPATHL)
4267 {
4268 /* Make the start dir an absolute path name. */
Bram Moolenaarbbebc852005-07-18 21:47:53 +00004269 vim_strncpy(ff_expand_buffer, rel_fname, len);
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004270 search_ctx->ffsc_start_dir = FullName_save(ff_expand_buffer, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004271 }
4272 else
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004273 search_ctx->ffsc_start_dir = vim_strnsave(rel_fname, len);
4274 if (search_ctx->ffsc_start_dir == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004275 goto error_return;
4276 if (*++path != NUL)
4277 ++path;
4278 }
4279 else if (*path == NUL || !vim_isAbsName(path))
4280 {
4281#ifdef BACKSLASH_IN_FILENAME
4282 /* "c:dir" needs "c:" to be expanded, otherwise use current dir */
4283 if (*path != NUL && path[1] == ':')
4284 {
4285 char_u drive[3];
4286
4287 drive[0] = path[0];
4288 drive[1] = ':';
4289 drive[2] = NUL;
4290 if (vim_FullName(drive, ff_expand_buffer, MAXPATHL, TRUE) == FAIL)
4291 goto error_return;
4292 path += 2;
4293 }
4294 else
4295#endif
4296 if (mch_dirname(ff_expand_buffer, MAXPATHL) == FAIL)
4297 goto error_return;
4298
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004299 search_ctx->ffsc_start_dir = vim_strsave(ff_expand_buffer);
4300 if (search_ctx->ffsc_start_dir == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004301 goto error_return;
4302
4303#ifdef BACKSLASH_IN_FILENAME
4304 /* A path that starts with "/dir" is relative to the drive, not to the
4305 * directory (but not for "//machine/dir"). Only use the drive name. */
4306 if ((*path == '/' || *path == '\\')
4307 && path[1] != path[0]
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004308 && search_ctx->ffsc_start_dir[1] == ':')
4309 search_ctx->ffsc_start_dir[2] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004310#endif
4311 }
4312
4313#ifdef FEAT_PATH_EXTRA
4314 /*
4315 * If stopdirs are given, split them into an array of pointers.
4316 * If this fails (mem allocation), there is no upward search at all or a
4317 * stop directory is not recognized -> continue silently.
4318 * If stopdirs just contains a ";" or is empty,
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004319 * search_ctx->ffsc_stopdirs_v will only contain a NULL pointer. This
Bram Moolenaar071d4272004-06-13 20:20:40 +00004320 * is handled as unlimited upward search. See function
4321 * ff_path_in_stoplist() for details.
4322 */
4323 if (stopdirs != NULL)
4324 {
4325 char_u *walker = stopdirs;
4326 int dircount;
4327
4328 while (*walker == ';')
4329 walker++;
4330
4331 dircount = 1;
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004332 search_ctx->ffsc_stopdirs_v =
4333 (char_u **)alloc((unsigned)sizeof(char_u *));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004334
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004335 if (search_ctx->ffsc_stopdirs_v != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004336 {
4337 do
4338 {
4339 char_u *helper;
4340 void *ptr;
4341
4342 helper = walker;
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004343 ptr = vim_realloc(search_ctx->ffsc_stopdirs_v,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004344 (dircount + 1) * sizeof(char_u *));
4345 if (ptr)
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004346 search_ctx->ffsc_stopdirs_v = ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004347 else
4348 /* ignore, keep what we have and continue */
4349 break;
4350 walker = vim_strchr(walker, ';');
4351 if (walker)
4352 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004353 search_ctx->ffsc_stopdirs_v[dircount-1] =
4354 vim_strnsave(helper, (int)(walker - helper));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004355 walker++;
4356 }
4357 else
4358 /* this might be "", which means ascent till top
4359 * of directory tree.
4360 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004361 search_ctx->ffsc_stopdirs_v[dircount-1] =
4362 vim_strsave(helper);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004363
4364 dircount++;
4365
4366 } while (walker != NULL);
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004367 search_ctx->ffsc_stopdirs_v[dircount-1] = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004368 }
4369 }
4370#endif
4371
4372#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004373 search_ctx->ffsc_level = level;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004374
4375 /* split into:
4376 * -fix path
4377 * -wildcard_stuff (might be NULL)
4378 */
4379 wc_part = vim_strchr(path, '*');
4380 if (wc_part != NULL)
4381 {
4382 int llevel;
4383 int len;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00004384 char *errpt;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004385
4386 /* save the fix part of the path */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004387 search_ctx->ffsc_fix_path = vim_strnsave(path, (int)(wc_part - path));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004388
4389 /*
4390 * copy wc_path and add restricts to the '**' wildcard.
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00004391 * The octet after a '**' is used as a (binary) counter.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004392 * So '**3' is transposed to '**^C' ('^C' is ASCII value 3)
4393 * or '**76' is transposed to '**N'( 'N' is ASCII value 76).
4394 * For EBCDIC you get different character values.
4395 * If no restrict is given after '**' the default is used.
Bram Moolenaar21160b92009-11-11 15:56:10 +00004396 * Due to this technique the path looks awful if you print it as a
Bram Moolenaar071d4272004-06-13 20:20:40 +00004397 * string.
4398 */
4399 len = 0;
4400 while (*wc_part != NUL)
4401 {
4402 if (STRNCMP(wc_part, "**", 2) == 0)
4403 {
4404 ff_expand_buffer[len++] = *wc_part++;
4405 ff_expand_buffer[len++] = *wc_part++;
4406
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00004407 llevel = strtol((char *)wc_part, &errpt, 10);
4408 if ((char_u *)errpt != wc_part && llevel > 0 && llevel < 255)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004409 ff_expand_buffer[len++] = llevel;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00004410 else if ((char_u *)errpt != wc_part && llevel == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004411 /* restrict is 0 -> remove already added '**' */
4412 len -= 2;
4413 else
4414 ff_expand_buffer[len++] = FF_MAX_STAR_STAR_EXPAND;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00004415 wc_part = (char_u *)errpt;
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00004416 if (*wc_part != NUL && !vim_ispathsep(*wc_part))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004417 {
4418 EMSG2(_("E343: Invalid path: '**[number]' must be at the end of the path or be followed by '%s'."), PATHSEPSTR);
4419 goto error_return;
4420 }
4421 }
4422 else
4423 ff_expand_buffer[len++] = *wc_part++;
4424 }
4425 ff_expand_buffer[len] = NUL;
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004426 search_ctx->ffsc_wc_path = vim_strsave(ff_expand_buffer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004427
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004428 if (search_ctx->ffsc_wc_path == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004429 goto error_return;
4430 }
4431 else
4432#endif
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004433 search_ctx->ffsc_fix_path = vim_strsave(path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004434
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004435 if (search_ctx->ffsc_start_dir == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004436 {
4437 /* store the fix part as startdir.
4438 * This is needed if the parameter path is fully qualified.
4439 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004440 search_ctx->ffsc_start_dir = vim_strsave(search_ctx->ffsc_fix_path);
4441 if (search_ctx->ffsc_start_dir)
4442 search_ctx->ffsc_fix_path[0] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004443 }
4444
4445 /* create an absolute path */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004446 STRCPY(ff_expand_buffer, search_ctx->ffsc_start_dir);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004447 add_pathsep(ff_expand_buffer);
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004448 STRCAT(ff_expand_buffer, search_ctx->ffsc_fix_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004449 add_pathsep(ff_expand_buffer);
4450
4451 sptr = ff_create_stack_element(ff_expand_buffer,
4452#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004453 search_ctx->ffsc_wc_path,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004454#endif
4455 level, 0);
4456
4457 if (sptr == NULL)
4458 goto error_return;
4459
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004460 ff_push(search_ctx, sptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004461
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004462 search_ctx->ffsc_file_to_search = vim_strsave(filename);
4463 if (search_ctx->ffsc_file_to_search == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004464 goto error_return;
4465
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004466 return search_ctx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004467
4468error_return:
4469 /*
4470 * We clear the search context now!
4471 * Even when the caller gave us a (perhaps valid) context we free it here,
4472 * as we might have already destroyed it.
4473 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004474 vim_findfile_cleanup(search_ctx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004475 return NULL;
4476}
4477
4478#if defined(FEAT_PATH_EXTRA) || defined(PROTO)
4479/*
4480 * Get the stopdir string. Check that ';' is not escaped.
4481 */
4482 char_u *
4483vim_findfile_stopdir(buf)
4484 char_u *buf;
4485{
4486 char_u *r_ptr = buf;
4487
4488 while (*r_ptr != NUL && *r_ptr != ';')
4489 {
4490 if (r_ptr[0] == '\\' && r_ptr[1] == ';')
4491 {
4492 /* overwrite the escape char,
4493 * use STRLEN(r_ptr) to move the trailing '\0'
4494 */
Bram Moolenaar446cb832008-06-24 21:56:24 +00004495 STRMOVE(r_ptr, r_ptr + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004496 r_ptr++;
4497 }
4498 r_ptr++;
4499 }
4500 if (*r_ptr == ';')
4501 {
4502 *r_ptr = 0;
4503 r_ptr++;
4504 }
4505 else if (*r_ptr == NUL)
4506 r_ptr = NULL;
4507 return r_ptr;
4508}
4509#endif
4510
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004511/*
4512 * Clean up the given search context. Can handle a NULL pointer.
4513 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004514 void
4515vim_findfile_cleanup(ctx)
4516 void *ctx;
4517{
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00004518 if (ctx == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004519 return;
4520
Bram Moolenaar071d4272004-06-13 20:20:40 +00004521 vim_findfile_free_visited(ctx);
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004522 ff_clear(ctx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004523 vim_free(ctx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004524}
4525
4526/*
4527 * Find a file in a search context.
4528 * The search context was created with vim_findfile_init() above.
4529 * Return a pointer to an allocated file name or NULL if nothing found.
4530 * To get all matching files call this function until you get NULL.
4531 *
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00004532 * If the passed search_context is NULL, NULL is returned.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004533 *
4534 * The search algorithm is depth first. To change this replace the
4535 * stack with a list (don't forget to leave partly searched directories on the
4536 * top of the list).
4537 */
4538 char_u *
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004539vim_findfile(search_ctx_arg)
4540 void *search_ctx_arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004541{
4542 char_u *file_path;
4543#ifdef FEAT_PATH_EXTRA
4544 char_u *rest_of_wildcards;
4545 char_u *path_end = NULL;
4546#endif
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004547 ff_stack_T *stackp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004548#if defined(FEAT_SEARCHPATH) || defined(FEAT_PATH_EXTRA)
4549 int len;
4550#endif
4551 int i;
4552 char_u *p;
4553#ifdef FEAT_SEARCHPATH
4554 char_u *suf;
4555#endif
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004556 ff_search_ctx_T *search_ctx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004557
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004558 if (search_ctx_arg == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004559 return NULL;
4560
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004561 search_ctx = (ff_search_ctx_T *)search_ctx_arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004562
4563 /*
4564 * filepath is used as buffer for various actions and as the storage to
4565 * return a found filename.
4566 */
4567 if ((file_path = alloc((int)MAXPATHL)) == NULL)
4568 return NULL;
4569
4570#ifdef FEAT_PATH_EXTRA
4571 /* store the end of the start dir -- needed for upward search */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004572 if (search_ctx->ffsc_start_dir != NULL)
4573 path_end = &search_ctx->ffsc_start_dir[
4574 STRLEN(search_ctx->ffsc_start_dir)];
Bram Moolenaar071d4272004-06-13 20:20:40 +00004575#endif
4576
4577#ifdef FEAT_PATH_EXTRA
4578 /* upward search loop */
4579 for (;;)
4580 {
4581#endif
4582 /* downward search loop */
4583 for (;;)
4584 {
4585 /* check if user user wants to stop the search*/
4586 ui_breakcheck();
4587 if (got_int)
4588 break;
4589
4590 /* get directory to work on from stack */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004591 stackp = ff_pop(search_ctx);
4592 if (stackp == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004593 break;
4594
4595 /*
4596 * TODO: decide if we leave this test in
4597 *
4598 * GOOD: don't search a directory(-tree) twice.
4599 * BAD: - check linked list for every new directory entered.
4600 * - check for double files also done below
4601 *
4602 * Here we check if we already searched this directory.
4603 * We already searched a directory if:
4604 * 1) The directory is the same.
4605 * 2) We would use the same wildcard string.
4606 *
4607 * Good if you have links on same directory via several ways
4608 * or you have selfreferences in directories (e.g. SuSE Linux 6.3:
4609 * /etc/rc.d/init.d is linked to /etc/rc.d -> endless loop)
4610 *
4611 * This check is only needed for directories we work on for the
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004612 * first time (hence stackp->ff_filearray == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004613 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004614 if (stackp->ffs_filearray == NULL
4615 && ff_check_visited(&search_ctx->ffsc_dir_visited_list
Bram Moolenaar071d4272004-06-13 20:20:40 +00004616 ->ffvl_visited_list,
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004617 stackp->ffs_fix_path
Bram Moolenaar071d4272004-06-13 20:20:40 +00004618#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004619 , stackp->ffs_wc_path
Bram Moolenaar071d4272004-06-13 20:20:40 +00004620#endif
4621 ) == FAIL)
4622 {
4623#ifdef FF_VERBOSE
4624 if (p_verbose >= 5)
4625 {
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004626 verbose_enter_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004627 smsg((char_u *)"Already Searched: %s (%s)",
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004628 stackp->ffs_fix_path, stackp->ffs_wc_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004629 /* don't overwrite this either */
4630 msg_puts((char_u *)"\n");
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004631 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004632 }
4633#endif
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004634 ff_free_stack_element(stackp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004635 continue;
4636 }
4637#ifdef FF_VERBOSE
4638 else if (p_verbose >= 5)
4639 {
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004640 verbose_enter_scroll();
Bram Moolenaar051b7822005-05-19 21:00:46 +00004641 smsg((char_u *)"Searching: %s (%s)",
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004642 stackp->ffs_fix_path, stackp->ffs_wc_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004643 /* don't overwrite this either */
4644 msg_puts((char_u *)"\n");
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004645 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004646 }
4647#endif
4648
4649 /* check depth */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004650 if (stackp->ffs_level <= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004651 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004652 ff_free_stack_element(stackp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004653 continue;
4654 }
4655
4656 file_path[0] = NUL;
4657
4658 /*
4659 * If no filearray till now expand wildcards
4660 * The function expand_wildcards() can handle an array of paths
4661 * and all possible expands are returned in one array. We use this
4662 * to handle the expansion of '**' into an empty string.
4663 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004664 if (stackp->ffs_filearray == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004665 {
4666 char_u *dirptrs[2];
4667
4668 /* we use filepath to build the path expand_wildcards() should
4669 * expand.
4670 */
4671 dirptrs[0] = file_path;
4672 dirptrs[1] = NULL;
4673
4674 /* if we have a start dir copy it in */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004675 if (!vim_isAbsName(stackp->ffs_fix_path)
4676 && search_ctx->ffsc_start_dir)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004677 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004678 STRCPY(file_path, search_ctx->ffsc_start_dir);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004679 add_pathsep(file_path);
4680 }
4681
4682 /* append the fix part of the search path */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004683 STRCAT(file_path, stackp->ffs_fix_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004684 add_pathsep(file_path);
4685
4686#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004687 rest_of_wildcards = stackp->ffs_wc_path;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004688 if (*rest_of_wildcards != NUL)
4689 {
4690 len = (int)STRLEN(file_path);
4691 if (STRNCMP(rest_of_wildcards, "**", 2) == 0)
4692 {
4693 /* pointer to the restrict byte
4694 * The restrict byte is not a character!
4695 */
4696 p = rest_of_wildcards + 2;
4697
4698 if (*p > 0)
4699 {
4700 (*p)--;
4701 file_path[len++] = '*';
4702 }
4703
4704 if (*p == 0)
4705 {
4706 /* remove '**<numb> from wildcards */
Bram Moolenaar446cb832008-06-24 21:56:24 +00004707 STRMOVE(rest_of_wildcards, rest_of_wildcards + 3);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004708 }
4709 else
4710 rest_of_wildcards += 3;
4711
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004712 if (stackp->ffs_star_star_empty == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004713 {
4714 /* if not done before, expand '**' to empty */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004715 stackp->ffs_star_star_empty = 1;
4716 dirptrs[1] = stackp->ffs_fix_path;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004717 }
4718 }
4719
4720 /*
4721 * Here we copy until the next path separator or the end of
4722 * the path. If we stop at a path separator, there is
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00004723 * still something else left. This is handled below by
Bram Moolenaar071d4272004-06-13 20:20:40 +00004724 * pushing every directory returned from expand_wildcards()
4725 * on the stack again for further search.
4726 */
4727 while (*rest_of_wildcards
4728 && !vim_ispathsep(*rest_of_wildcards))
4729 file_path[len++] = *rest_of_wildcards++;
4730
4731 file_path[len] = NUL;
4732 if (vim_ispathsep(*rest_of_wildcards))
4733 rest_of_wildcards++;
4734 }
4735#endif
4736
4737 /*
4738 * Expand wildcards like "*" and "$VAR".
4739 * If the path is a URL don't try this.
4740 */
4741 if (path_with_url(dirptrs[0]))
4742 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004743 stackp->ffs_filearray = (char_u **)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004744 alloc((unsigned)sizeof(char *));
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004745 if (stackp->ffs_filearray != NULL
4746 && (stackp->ffs_filearray[0]
Bram Moolenaar071d4272004-06-13 20:20:40 +00004747 = vim_strsave(dirptrs[0])) != NULL)
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004748 stackp->ffs_filearray_size = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004749 else
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004750 stackp->ffs_filearray_size = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004751 }
4752 else
4753 expand_wildcards((dirptrs[1] == NULL) ? 1 : 2, dirptrs,
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004754 &stackp->ffs_filearray_size,
4755 &stackp->ffs_filearray,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004756 EW_DIR|EW_ADDSLASH|EW_SILENT);
4757
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004758 stackp->ffs_filearray_cur = 0;
4759 stackp->ffs_stage = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004760 }
4761#ifdef FEAT_PATH_EXTRA
4762 else
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004763 rest_of_wildcards = &stackp->ffs_wc_path[
4764 STRLEN(stackp->ffs_wc_path)];
Bram Moolenaar071d4272004-06-13 20:20:40 +00004765#endif
4766
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004767 if (stackp->ffs_stage == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004768 {
4769 /* this is the first time we work on this directory */
4770#ifdef FEAT_PATH_EXTRA
4771 if (*rest_of_wildcards == NUL)
4772#endif
4773 {
4774 /*
4775 * we don't have further wildcards to expand, so we have to
4776 * check for the final file now
4777 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004778 for (i = stackp->ffs_filearray_cur;
4779 i < stackp->ffs_filearray_size; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004780 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004781 if (!path_with_url(stackp->ffs_filearray[i])
4782 && !mch_isdir(stackp->ffs_filearray[i]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004783 continue; /* not a directory */
4784
Bram Moolenaar21160b92009-11-11 15:56:10 +00004785 /* prepare the filename to be checked for existence
Bram Moolenaar071d4272004-06-13 20:20:40 +00004786 * below */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004787 STRCPY(file_path, stackp->ffs_filearray[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004788 add_pathsep(file_path);
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004789 STRCAT(file_path, search_ctx->ffsc_file_to_search);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004790
4791 /*
4792 * Try without extra suffix and then with suffixes
4793 * from 'suffixesadd'.
4794 */
4795#ifdef FEAT_SEARCHPATH
4796 len = (int)STRLEN(file_path);
4797 suf = curbuf->b_p_sua;
4798 for (;;)
4799#endif
4800 {
4801 /* if file exists and we didn't already find it */
4802 if ((path_with_url(file_path)
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004803 || (mch_getperm(file_path) >= 0
4804 && (search_ctx->ffsc_find_what
4805 == FINDFILE_BOTH
4806 || ((search_ctx->ffsc_find_what
4807 == FINDFILE_DIR)
4808 == mch_isdir(file_path)))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004809#ifndef FF_VERBOSE
4810 && (ff_check_visited(
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004811 &search_ctx->ffsc_visited_list->ffvl_visited_list,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004812 file_path
4813#ifdef FEAT_PATH_EXTRA
4814 , (char_u *)""
4815#endif
4816 ) == OK)
4817#endif
4818 )
4819 {
4820#ifdef FF_VERBOSE
4821 if (ff_check_visited(
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004822 &search_ctx->ffsc_visited_list->ffvl_visited_list,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004823 file_path
4824#ifdef FEAT_PATH_EXTRA
4825 , (char_u *)""
4826#endif
4827 ) == FAIL)
4828 {
4829 if (p_verbose >= 5)
4830 {
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004831 verbose_enter_scroll();
Bram Moolenaar051b7822005-05-19 21:00:46 +00004832 smsg((char_u *)"Already: %s",
Bram Moolenaar071d4272004-06-13 20:20:40 +00004833 file_path);
4834 /* don't overwrite this either */
4835 msg_puts((char_u *)"\n");
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004836 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004837 }
4838 continue;
4839 }
4840#endif
4841
4842 /* push dir to examine rest of subdirs later */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004843 stackp->ffs_filearray_cur = i + 1;
4844 ff_push(search_ctx, stackp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004845
Bram Moolenaar6bab9fa2009-01-22 20:32:12 +00004846 if (!path_with_url(file_path))
4847 simplify_filename(file_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004848 if (mch_dirname(ff_expand_buffer, MAXPATHL)
4849 == OK)
4850 {
4851 p = shorten_fname(file_path,
4852 ff_expand_buffer);
4853 if (p != NULL)
Bram Moolenaar446cb832008-06-24 21:56:24 +00004854 STRMOVE(file_path, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004855 }
4856#ifdef FF_VERBOSE
4857 if (p_verbose >= 5)
4858 {
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004859 verbose_enter_scroll();
Bram Moolenaar051b7822005-05-19 21:00:46 +00004860 smsg((char_u *)"HIT: %s", file_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004861 /* don't overwrite this either */
4862 msg_puts((char_u *)"\n");
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004863 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004864 }
4865#endif
4866 return file_path;
4867 }
4868
4869#ifdef FEAT_SEARCHPATH
4870 /* Not found or found already, try next suffix. */
4871 if (*suf == NUL)
4872 break;
4873 copy_option_part(&suf, file_path + len,
4874 MAXPATHL - len, ",");
4875#endif
4876 }
4877 }
4878 }
4879#ifdef FEAT_PATH_EXTRA
4880 else
4881 {
4882 /*
4883 * still wildcards left, push the directories for further
4884 * search
4885 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004886 for (i = stackp->ffs_filearray_cur;
4887 i < stackp->ffs_filearray_size; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004888 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004889 if (!mch_isdir(stackp->ffs_filearray[i]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004890 continue; /* not a directory */
4891
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004892 ff_push(search_ctx,
4893 ff_create_stack_element(
4894 stackp->ffs_filearray[i],
4895 rest_of_wildcards,
4896 stackp->ffs_level - 1, 0));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004897 }
4898 }
4899#endif
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004900 stackp->ffs_filearray_cur = 0;
4901 stackp->ffs_stage = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004902 }
4903
4904#ifdef FEAT_PATH_EXTRA
4905 /*
4906 * if wildcards contains '**' we have to descent till we reach the
4907 * leaves of the directory tree.
4908 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004909 if (STRNCMP(stackp->ffs_wc_path, "**", 2) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004910 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004911 for (i = stackp->ffs_filearray_cur;
4912 i < stackp->ffs_filearray_size; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004913 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004914 if (fnamecmp(stackp->ffs_filearray[i],
4915 stackp->ffs_fix_path) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004916 continue; /* don't repush same directory */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004917 if (!mch_isdir(stackp->ffs_filearray[i]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004918 continue; /* not a directory */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004919 ff_push(search_ctx,
4920 ff_create_stack_element(stackp->ffs_filearray[i],
4921 stackp->ffs_wc_path, stackp->ffs_level - 1, 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004922 }
4923 }
4924#endif
4925
4926 /* we are done with the current directory */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004927 ff_free_stack_element(stackp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004928
4929 }
4930
4931#ifdef FEAT_PATH_EXTRA
4932 /* If we reached this, we didn't find anything downwards.
4933 * Let's check if we should do an upward search.
4934 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004935 if (search_ctx->ffsc_start_dir
4936 && search_ctx->ffsc_stopdirs_v != NULL && !got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004937 {
4938 ff_stack_T *sptr;
4939
4940 /* is the last starting directory in the stop list? */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004941 if (ff_path_in_stoplist(search_ctx->ffsc_start_dir,
4942 (int)(path_end - search_ctx->ffsc_start_dir),
4943 search_ctx->ffsc_stopdirs_v) == TRUE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004944 break;
4945
4946 /* cut of last dir */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004947 while (path_end > search_ctx->ffsc_start_dir
4948 && vim_ispathsep(*path_end))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004949 path_end--;
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004950 while (path_end > search_ctx->ffsc_start_dir
4951 && !vim_ispathsep(path_end[-1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004952 path_end--;
4953 *path_end = 0;
4954 path_end--;
4955
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004956 if (*search_ctx->ffsc_start_dir == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004957 break;
4958
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004959 STRCPY(file_path, search_ctx->ffsc_start_dir);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004960 add_pathsep(file_path);
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004961 STRCAT(file_path, search_ctx->ffsc_fix_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004962
4963 /* create a new stack entry */
4964 sptr = ff_create_stack_element(file_path,
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004965 search_ctx->ffsc_wc_path, search_ctx->ffsc_level, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004966 if (sptr == NULL)
4967 break;
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004968 ff_push(search_ctx, sptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004969 }
4970 else
4971 break;
4972 }
4973#endif
4974
4975 vim_free(file_path);
4976 return NULL;
4977}
4978
4979/*
4980 * Free the list of lists of visited files and directories
4981 * Can handle it if the passed search_context is NULL;
4982 */
4983 void
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004984vim_findfile_free_visited(search_ctx_arg)
4985 void *search_ctx_arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004986{
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004987 ff_search_ctx_T *search_ctx;
4988
4989 if (search_ctx_arg == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004990 return;
4991
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004992 search_ctx = (ff_search_ctx_T *)search_ctx_arg;
4993 vim_findfile_free_visited_list(&search_ctx->ffsc_visited_lists_list);
4994 vim_findfile_free_visited_list(&search_ctx->ffsc_dir_visited_lists_list);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004995}
4996
4997 static void
4998vim_findfile_free_visited_list(list_headp)
4999 ff_visited_list_hdr_T **list_headp;
5000{
5001 ff_visited_list_hdr_T *vp;
5002
5003 while (*list_headp != NULL)
5004 {
5005 vp = (*list_headp)->ffvl_next;
5006 ff_free_visited_list((*list_headp)->ffvl_visited_list);
5007
5008 vim_free((*list_headp)->ffvl_filename);
5009 vim_free(*list_headp);
5010 *list_headp = vp;
5011 }
5012 *list_headp = NULL;
5013}
5014
5015 static void
5016ff_free_visited_list(vl)
5017 ff_visited_T *vl;
5018{
5019 ff_visited_T *vp;
5020
5021 while (vl != NULL)
5022 {
5023 vp = vl->ffv_next;
5024#ifdef FEAT_PATH_EXTRA
5025 vim_free(vl->ffv_wc_path);
5026#endif
5027 vim_free(vl);
5028 vl = vp;
5029 }
5030 vl = NULL;
5031}
5032
5033/*
5034 * Returns the already visited list for the given filename. If none is found it
5035 * allocates a new one.
5036 */
5037 static ff_visited_list_hdr_T*
5038ff_get_visited_list(filename, list_headp)
5039 char_u *filename;
5040 ff_visited_list_hdr_T **list_headp;
5041{
5042 ff_visited_list_hdr_T *retptr = NULL;
5043
5044 /* check if a visited list for the given filename exists */
5045 if (*list_headp != NULL)
5046 {
5047 retptr = *list_headp;
5048 while (retptr != NULL)
5049 {
5050 if (fnamecmp(filename, retptr->ffvl_filename) == 0)
5051 {
5052#ifdef FF_VERBOSE
5053 if (p_verbose >= 5)
5054 {
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00005055 verbose_enter_scroll();
Bram Moolenaar051b7822005-05-19 21:00:46 +00005056 smsg((char_u *)"ff_get_visited_list: FOUND list for %s",
Bram Moolenaar071d4272004-06-13 20:20:40 +00005057 filename);
5058 /* don't overwrite this either */
5059 msg_puts((char_u *)"\n");
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00005060 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005061 }
5062#endif
5063 return retptr;
5064 }
5065 retptr = retptr->ffvl_next;
5066 }
5067 }
5068
5069#ifdef FF_VERBOSE
5070 if (p_verbose >= 5)
5071 {
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00005072 verbose_enter_scroll();
Bram Moolenaar051b7822005-05-19 21:00:46 +00005073 smsg((char_u *)"ff_get_visited_list: new list for %s", filename);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005074 /* don't overwrite this either */
5075 msg_puts((char_u *)"\n");
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00005076 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005077 }
5078#endif
5079
5080 /*
5081 * if we reach this we didn't find a list and we have to allocate new list
5082 */
5083 retptr = (ff_visited_list_hdr_T*)alloc((unsigned)sizeof(*retptr));
5084 if (retptr == NULL)
5085 return NULL;
5086
5087 retptr->ffvl_visited_list = NULL;
5088 retptr->ffvl_filename = vim_strsave(filename);
5089 if (retptr->ffvl_filename == NULL)
5090 {
5091 vim_free(retptr);
5092 return NULL;
5093 }
5094 retptr->ffvl_next = *list_headp;
5095 *list_headp = retptr;
5096
5097 return retptr;
5098}
5099
5100#ifdef FEAT_PATH_EXTRA
5101/*
5102 * check if two wildcard paths are equal. Returns TRUE or FALSE.
5103 * They are equal if:
5104 * - both paths are NULL
5105 * - they have the same length
5106 * - char by char comparison is OK
5107 * - the only differences are in the counters behind a '**', so
5108 * '**\20' is equal to '**\24'
5109 */
5110 static int
5111ff_wc_equal(s1, s2)
5112 char_u *s1;
5113 char_u *s2;
5114{
5115 int i;
5116
5117 if (s1 == s2)
5118 return TRUE;
5119
5120 if (s1 == NULL || s2 == NULL)
5121 return FALSE;
5122
5123 if (STRLEN(s1) != STRLEN(s2))
5124 return FAIL;
5125
5126 for (i = 0; s1[i] != NUL && s2[i] != NUL; i++)
5127 {
5128 if (s1[i] != s2[i]
5129#ifdef CASE_INSENSITIVE_FILENAME
5130 && TOUPPER_LOC(s1[i]) != TOUPPER_LOC(s2[i])
5131#endif
5132 )
5133 {
5134 if (i >= 2)
5135 if (s1[i-1] == '*' && s1[i-2] == '*')
5136 continue;
5137 else
5138 return FAIL;
5139 else
5140 return FAIL;
5141 }
5142 }
5143 return TRUE;
5144}
5145#endif
5146
5147/*
5148 * maintains the list of already visited files and dirs
5149 * returns FAIL if the given file/dir is already in the list
5150 * returns OK if it is newly added
5151 *
5152 * TODO: What to do on memory allocation problems?
5153 * -> return TRUE - Better the file is found several times instead of
5154 * never.
5155 */
5156 static int
5157ff_check_visited(visited_list, fname
5158#ifdef FEAT_PATH_EXTRA
5159 , wc_path
5160#endif
5161 )
5162 ff_visited_T **visited_list;
5163 char_u *fname;
5164#ifdef FEAT_PATH_EXTRA
5165 char_u *wc_path;
5166#endif
5167{
5168 ff_visited_T *vp;
5169#ifdef UNIX
5170 struct stat st;
5171 int url = FALSE;
5172#endif
5173
5174 /* For an URL we only compare the name, otherwise we compare the
5175 * device/inode (unix) or the full path name (not Unix). */
5176 if (path_with_url(fname))
5177 {
Bram Moolenaarbbebc852005-07-18 21:47:53 +00005178 vim_strncpy(ff_expand_buffer, fname, MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005179#ifdef UNIX
5180 url = TRUE;
5181#endif
5182 }
5183 else
5184 {
5185 ff_expand_buffer[0] = NUL;
5186#ifdef UNIX
5187 if (mch_stat((char *)fname, &st) < 0)
5188#else
5189 if (vim_FullName(fname, ff_expand_buffer, MAXPATHL, TRUE) == FAIL)
5190#endif
5191 return FAIL;
5192 }
5193
5194 /* check against list of already visited files */
5195 for (vp = *visited_list; vp != NULL; vp = vp->ffv_next)
5196 {
5197 if (
5198#ifdef UNIX
Bram Moolenaare1fbddc2009-05-16 19:07:03 +00005199 !url ? (vp->ffv_dev_valid && vp->ffv_dev == st.st_dev
5200 && vp->ffv_ino == st.st_ino)
5201 :
Bram Moolenaar071d4272004-06-13 20:20:40 +00005202#endif
5203 fnamecmp(vp->ffv_fname, ff_expand_buffer) == 0
5204 )
5205 {
5206#ifdef FEAT_PATH_EXTRA
5207 /* are the wildcard parts equal */
5208 if (ff_wc_equal(vp->ffv_wc_path, wc_path) == TRUE)
5209#endif
5210 /* already visited */
5211 return FAIL;
5212 }
5213 }
5214
5215 /*
5216 * New file/dir. Add it to the list of visited files/dirs.
5217 */
5218 vp = (ff_visited_T *)alloc((unsigned)(sizeof(ff_visited_T)
5219 + STRLEN(ff_expand_buffer)));
5220
5221 if (vp != NULL)
5222 {
5223#ifdef UNIX
5224 if (!url)
5225 {
Bram Moolenaare1fbddc2009-05-16 19:07:03 +00005226 vp->ffv_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005227 vp->ffv_ino = st.st_ino;
5228 vp->ffv_dev = st.st_dev;
5229 vp->ffv_fname[0] = NUL;
5230 }
5231 else
5232 {
Bram Moolenaare1fbddc2009-05-16 19:07:03 +00005233 vp->ffv_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005234#endif
5235 STRCPY(vp->ffv_fname, ff_expand_buffer);
5236#ifdef UNIX
5237 }
5238#endif
5239#ifdef FEAT_PATH_EXTRA
5240 if (wc_path != NULL)
5241 vp->ffv_wc_path = vim_strsave(wc_path);
5242 else
5243 vp->ffv_wc_path = NULL;
5244#endif
5245
5246 vp->ffv_next = *visited_list;
5247 *visited_list = vp;
5248 }
5249
5250 return OK;
5251}
5252
5253/*
5254 * create stack element from given path pieces
5255 */
5256 static ff_stack_T *
5257ff_create_stack_element(fix_part,
5258#ifdef FEAT_PATH_EXTRA
5259 wc_part,
5260#endif
5261 level, star_star_empty)
5262 char_u *fix_part;
5263#ifdef FEAT_PATH_EXTRA
5264 char_u *wc_part;
5265#endif
5266 int level;
5267 int star_star_empty;
5268{
5269 ff_stack_T *new;
5270
5271 new = (ff_stack_T *)alloc((unsigned)sizeof(ff_stack_T));
5272 if (new == NULL)
5273 return NULL;
5274
5275 new->ffs_prev = NULL;
5276 new->ffs_filearray = NULL;
5277 new->ffs_filearray_size = 0;
5278 new->ffs_filearray_cur = 0;
5279 new->ffs_stage = 0;
5280 new->ffs_level = level;
5281 new->ffs_star_star_empty = star_star_empty;;
5282
5283 /* the following saves NULL pointer checks in vim_findfile */
5284 if (fix_part == NULL)
5285 fix_part = (char_u *)"";
5286 new->ffs_fix_path = vim_strsave(fix_part);
5287
5288#ifdef FEAT_PATH_EXTRA
5289 if (wc_part == NULL)
5290 wc_part = (char_u *)"";
5291 new->ffs_wc_path = vim_strsave(wc_part);
5292#endif
5293
5294 if (new->ffs_fix_path == NULL
5295#ifdef FEAT_PATH_EXTRA
5296 || new->ffs_wc_path == NULL
5297#endif
5298 )
5299 {
5300 ff_free_stack_element(new);
5301 new = NULL;
5302 }
5303
5304 return new;
5305}
5306
5307/*
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005308 * Push a dir on the directory stack.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005309 */
5310 static void
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005311ff_push(search_ctx, stack_ptr)
5312 ff_search_ctx_T *search_ctx;
5313 ff_stack_T *stack_ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005314{
5315 /* check for NULL pointer, not to return an error to the user, but
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005316 * to prevent a crash */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005317 if (stack_ptr != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005318 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005319 stack_ptr->ffs_prev = search_ctx->ffsc_stack_ptr;
5320 search_ctx->ffsc_stack_ptr = stack_ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005321 }
5322}
5323
5324/*
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005325 * Pop a dir from the directory stack.
5326 * Returns NULL if stack is empty.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005327 */
5328 static ff_stack_T *
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005329ff_pop(search_ctx)
5330 ff_search_ctx_T *search_ctx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005331{
5332 ff_stack_T *sptr;
5333
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005334 sptr = search_ctx->ffsc_stack_ptr;
5335 if (search_ctx->ffsc_stack_ptr != NULL)
5336 search_ctx->ffsc_stack_ptr = search_ctx->ffsc_stack_ptr->ffs_prev;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005337
5338 return sptr;
5339}
5340
5341/*
5342 * free the given stack element
5343 */
5344 static void
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005345ff_free_stack_element(stack_ptr)
5346 ff_stack_T *stack_ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005347{
5348 /* vim_free handles possible NULL pointers */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005349 vim_free(stack_ptr->ffs_fix_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005350#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005351 vim_free(stack_ptr->ffs_wc_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005352#endif
5353
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005354 if (stack_ptr->ffs_filearray != NULL)
5355 FreeWild(stack_ptr->ffs_filearray_size, stack_ptr->ffs_filearray);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005356
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005357 vim_free(stack_ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005358}
5359
5360/*
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005361 * Clear the search context, but NOT the visited list.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005362 */
5363 static void
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005364ff_clear(search_ctx)
5365 ff_search_ctx_T *search_ctx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005366{
5367 ff_stack_T *sptr;
5368
5369 /* clear up stack */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005370 while ((sptr = ff_pop(search_ctx)) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005371 ff_free_stack_element(sptr);
5372
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005373 vim_free(search_ctx->ffsc_file_to_search);
5374 vim_free(search_ctx->ffsc_start_dir);
5375 vim_free(search_ctx->ffsc_fix_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005376#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005377 vim_free(search_ctx->ffsc_wc_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005378#endif
5379
5380#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005381 if (search_ctx->ffsc_stopdirs_v != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005382 {
5383 int i = 0;
5384
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005385 while (search_ctx->ffsc_stopdirs_v[i] != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005386 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005387 vim_free(search_ctx->ffsc_stopdirs_v[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005388 i++;
5389 }
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005390 vim_free(search_ctx->ffsc_stopdirs_v);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005391 }
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005392 search_ctx->ffsc_stopdirs_v = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005393#endif
5394
5395 /* reset everything */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005396 search_ctx->ffsc_file_to_search = NULL;
5397 search_ctx->ffsc_start_dir = NULL;
5398 search_ctx->ffsc_fix_path = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005399#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005400 search_ctx->ffsc_wc_path = NULL;
5401 search_ctx->ffsc_level = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005402#endif
5403}
5404
5405#ifdef FEAT_PATH_EXTRA
5406/*
5407 * check if the given path is in the stopdirs
5408 * returns TRUE if yes else FALSE
5409 */
5410 static int
5411ff_path_in_stoplist(path, path_len, stopdirs_v)
5412 char_u *path;
5413 int path_len;
5414 char_u **stopdirs_v;
5415{
5416 int i = 0;
5417
5418 /* eat up trailing path separators, except the first */
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00005419 while (path_len > 1 && vim_ispathsep(path[path_len - 1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005420 path_len--;
5421
5422 /* if no path consider it as match */
5423 if (path_len == 0)
5424 return TRUE;
5425
5426 for (i = 0; stopdirs_v[i] != NULL; i++)
5427 {
5428 if ((int)STRLEN(stopdirs_v[i]) > path_len)
5429 {
5430 /* match for parent directory. So '/home' also matches
5431 * '/home/rks'. Check for PATHSEP in stopdirs_v[i], else
5432 * '/home/r' would also match '/home/rks'
5433 */
5434 if (fnamencmp(stopdirs_v[i], path, path_len) == 0
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00005435 && vim_ispathsep(stopdirs_v[i][path_len]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005436 return TRUE;
5437 }
5438 else
5439 {
5440 if (fnamecmp(stopdirs_v[i], path) == 0)
5441 return TRUE;
5442 }
5443 }
5444 return FALSE;
5445}
5446#endif
5447
5448#if defined(FEAT_SEARCHPATH) || defined(PROTO)
5449/*
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005450 * Find the file name "ptr[len]" in the path. Also finds directory names.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005451 *
5452 * On the first call set the parameter 'first' to TRUE to initialize
5453 * the search. For repeating calls to FALSE.
5454 *
5455 * Repeating calls will return other files called 'ptr[len]' from the path.
5456 *
5457 * Only on the first call 'ptr' and 'len' are used. For repeating calls they
5458 * don't need valid values.
5459 *
5460 * If nothing found on the first call the option FNAME_MESS will issue the
5461 * message:
5462 * 'Can't find file "<file>" in path'
5463 * On repeating calls:
5464 * 'No more file "<file>" found in path'
5465 *
5466 * options:
5467 * FNAME_MESS give error message when not found
5468 *
5469 * Uses NameBuff[]!
5470 *
5471 * Returns an allocated string for the file name. NULL for error.
5472 *
5473 */
5474 char_u *
5475find_file_in_path(ptr, len, options, first, rel_fname)
5476 char_u *ptr; /* file name */
5477 int len; /* length of file name */
5478 int options;
5479 int first; /* use count'th matching file name */
5480 char_u *rel_fname; /* file name searching relative to */
5481{
5482 return find_file_in_path_option(ptr, len, options, first,
5483 *curbuf->b_p_path == NUL ? p_path : curbuf->b_p_path,
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005484 FINDFILE_BOTH, rel_fname, curbuf->b_p_sua);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005485}
5486
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005487static char_u *ff_file_to_find = NULL;
5488static void *fdip_search_ctx = NULL;
5489
5490#if defined(EXITFREE)
5491 static void
5492free_findfile()
5493{
5494 vim_free(ff_file_to_find);
5495 vim_findfile_cleanup(fdip_search_ctx);
5496}
5497#endif
5498
Bram Moolenaar071d4272004-06-13 20:20:40 +00005499/*
5500 * Find the directory name "ptr[len]" in the path.
5501 *
5502 * options:
5503 * FNAME_MESS give error message when not found
5504 *
5505 * Uses NameBuff[]!
5506 *
5507 * Returns an allocated string for the file name. NULL for error.
5508 */
5509 char_u *
5510find_directory_in_path(ptr, len, options, rel_fname)
5511 char_u *ptr; /* file name */
5512 int len; /* length of file name */
5513 int options;
5514 char_u *rel_fname; /* file name searching relative to */
5515{
5516 return find_file_in_path_option(ptr, len, options, TRUE, p_cdpath,
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005517 FINDFILE_DIR, rel_fname, (char_u *)"");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005518}
5519
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00005520 char_u *
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005521find_file_in_path_option(ptr, len, options, first, path_option, find_what, rel_fname, suffixes)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005522 char_u *ptr; /* file name */
5523 int len; /* length of file name */
5524 int options;
5525 int first; /* use count'th matching file name */
5526 char_u *path_option; /* p_path or p_cdpath */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005527 int find_what; /* FINDFILE_FILE, _DIR or _BOTH */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005528 char_u *rel_fname; /* file name we are looking relative to. */
Bram Moolenaar433f7c82006-03-21 21:29:36 +00005529 char_u *suffixes; /* list of suffixes, 'suffixesadd' option */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005530{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005531 static char_u *dir;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005532 static int did_findfile_init = FALSE;
5533 char_u save_char;
5534 char_u *file_name = NULL;
5535 char_u *buf = NULL;
5536 int rel_to_curdir;
5537#ifdef AMIGA
5538 struct Process *proc = (struct Process *)FindTask(0L);
5539 APTR save_winptr = proc->pr_WindowPtr;
5540
5541 /* Avoid a requester here for a volume that doesn't exist. */
5542 proc->pr_WindowPtr = (APTR)-1L;
5543#endif
5544
5545 if (first == TRUE)
5546 {
5547 /* copy file name into NameBuff, expanding environment variables */
5548 save_char = ptr[len];
5549 ptr[len] = NUL;
5550 expand_env(ptr, NameBuff, MAXPATHL);
5551 ptr[len] = save_char;
5552
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005553 vim_free(ff_file_to_find);
5554 ff_file_to_find = vim_strsave(NameBuff);
5555 if (ff_file_to_find == NULL) /* out of memory */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005556 {
5557 file_name = NULL;
5558 goto theend;
5559 }
5560 }
5561
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005562 rel_to_curdir = (ff_file_to_find[0] == '.'
5563 && (ff_file_to_find[1] == NUL
5564 || vim_ispathsep(ff_file_to_find[1])
5565 || (ff_file_to_find[1] == '.'
5566 && (ff_file_to_find[2] == NUL
5567 || vim_ispathsep(ff_file_to_find[2])))));
5568 if (vim_isAbsName(ff_file_to_find)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005569 /* "..", "../path", "." and "./path": don't use the path_option */
5570 || rel_to_curdir
5571#if defined(MSWIN) || defined(MSDOS) || defined(OS2)
5572 /* handle "\tmp" as absolute path */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005573 || vim_ispathsep(ff_file_to_find[0])
Bram Moolenaar21160b92009-11-11 15:56:10 +00005574 /* handle "c:name" as absolute path */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005575 || (ff_file_to_find[0] != NUL && ff_file_to_find[1] == ':')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005576#endif
5577#ifdef AMIGA
5578 /* handle ":tmp" as absolute path */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005579 || ff_file_to_find[0] == ':'
Bram Moolenaar071d4272004-06-13 20:20:40 +00005580#endif
5581 )
5582 {
5583 /*
5584 * Absolute path, no need to use "path_option".
5585 * If this is not a first call, return NULL. We already returned a
5586 * filename on the first call.
5587 */
5588 if (first == TRUE)
5589 {
5590 int l;
5591 int run;
5592
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005593 if (path_with_url(ff_file_to_find))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005594 {
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005595 file_name = vim_strsave(ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005596 goto theend;
5597 }
5598
5599 /* When FNAME_REL flag given first use the directory of the file.
5600 * Otherwise or when this fails use the current directory. */
5601 for (run = 1; run <= 2; ++run)
5602 {
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005603 l = (int)STRLEN(ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005604 if (run == 1
5605 && rel_to_curdir
5606 && (options & FNAME_REL)
5607 && rel_fname != NULL
5608 && STRLEN(rel_fname) + l < MAXPATHL)
5609 {
5610 STRCPY(NameBuff, rel_fname);
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005611 STRCPY(gettail(NameBuff), ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005612 l = (int)STRLEN(NameBuff);
5613 }
5614 else
5615 {
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005616 STRCPY(NameBuff, ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005617 run = 2;
5618 }
5619
5620 /* When the file doesn't exist, try adding parts of
5621 * 'suffixesadd'. */
Bram Moolenaar433f7c82006-03-21 21:29:36 +00005622 buf = suffixes;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005623 for (;;)
5624 {
5625 if (
5626#ifdef DJGPP
5627 /* "C:" by itself will fail for mch_getperm(),
5628 * assume it's always valid. */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005629 (find_what != FINDFILE_FILE && NameBuff[0] != NUL
Bram Moolenaar071d4272004-06-13 20:20:40 +00005630 && NameBuff[1] == ':'
5631 && NameBuff[2] == NUL) ||
5632#endif
5633 (mch_getperm(NameBuff) >= 0
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005634 && (find_what == FINDFILE_BOTH
5635 || ((find_what == FINDFILE_DIR)
5636 == mch_isdir(NameBuff)))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005637 {
5638 file_name = vim_strsave(NameBuff);
5639 goto theend;
5640 }
5641 if (*buf == NUL)
5642 break;
5643 copy_option_part(&buf, NameBuff + l, MAXPATHL - l, ",");
5644 }
5645 }
5646 }
5647 }
5648 else
5649 {
5650 /*
5651 * Loop over all paths in the 'path' or 'cdpath' option.
5652 * When "first" is set, first setup to the start of the option.
5653 * Otherwise continue to find the next match.
5654 */
5655 if (first == TRUE)
5656 {
5657 /* vim_findfile_free_visited can handle a possible NULL pointer */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005658 vim_findfile_free_visited(fdip_search_ctx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005659 dir = path_option;
5660 did_findfile_init = FALSE;
5661 }
5662
5663 for (;;)
5664 {
5665 if (did_findfile_init)
5666 {
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005667 file_name = vim_findfile(fdip_search_ctx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005668 if (file_name != NULL)
5669 break;
5670
5671 did_findfile_init = FALSE;
5672 }
5673 else
5674 {
5675 char_u *r_ptr;
5676
5677 if (dir == NULL || *dir == NUL)
5678 {
5679 /* We searched all paths of the option, now we can
5680 * free the search context. */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005681 vim_findfile_cleanup(fdip_search_ctx);
5682 fdip_search_ctx = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005683 break;
5684 }
5685
5686 if ((buf = alloc((int)(MAXPATHL))) == NULL)
5687 break;
5688
5689 /* copy next path */
5690 buf[0] = 0;
5691 copy_option_part(&dir, buf, MAXPATHL, " ,");
5692
5693#ifdef FEAT_PATH_EXTRA
5694 /* get the stopdir string */
5695 r_ptr = vim_findfile_stopdir(buf);
5696#else
5697 r_ptr = NULL;
5698#endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005699 fdip_search_ctx = vim_findfile_init(buf, ff_file_to_find,
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005700 r_ptr, 100, FALSE, find_what,
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005701 fdip_search_ctx, FALSE, rel_fname);
5702 if (fdip_search_ctx != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005703 did_findfile_init = TRUE;
5704 vim_free(buf);
5705 }
5706 }
5707 }
5708 if (file_name == NULL && (options & FNAME_MESS))
5709 {
5710 if (first == TRUE)
5711 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005712 if (find_what == FINDFILE_DIR)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005713 EMSG2(_("E344: Can't find directory \"%s\" in cdpath"),
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005714 ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005715 else
5716 EMSG2(_("E345: Can't find file \"%s\" in path"),
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005717 ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005718 }
5719 else
5720 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005721 if (find_what == FINDFILE_DIR)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005722 EMSG2(_("E346: No more directory \"%s\" found in cdpath"),
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005723 ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005724 else
5725 EMSG2(_("E347: No more file \"%s\" found in path"),
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005726 ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005727 }
5728 }
5729
5730theend:
5731#ifdef AMIGA
5732 proc->pr_WindowPtr = save_winptr;
5733#endif
5734 return file_name;
5735}
5736
5737#endif /* FEAT_SEARCHPATH */
5738
5739/*
5740 * Change directory to "new_dir". If FEAT_SEARCHPATH is defined, search
5741 * 'cdpath' for relative directory names, otherwise just mch_chdir().
5742 */
5743 int
5744vim_chdir(new_dir)
5745 char_u *new_dir;
5746{
5747#ifndef FEAT_SEARCHPATH
5748 return mch_chdir((char *)new_dir);
5749#else
5750 char_u *dir_name;
5751 int r;
5752
5753 dir_name = find_directory_in_path(new_dir, (int)STRLEN(new_dir),
5754 FNAME_MESS, curbuf->b_ffname);
5755 if (dir_name == NULL)
5756 return -1;
5757 r = mch_chdir((char *)dir_name);
5758 vim_free(dir_name);
5759 return r;
5760#endif
5761}
5762
5763/*
Bram Moolenaarbbebc852005-07-18 21:47:53 +00005764 * Get user name from machine-specific function.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005765 * Returns the user name in "buf[len]".
Bram Moolenaarbbebc852005-07-18 21:47:53 +00005766 * Some systems are quite slow in obtaining the user name (Windows NT), thus
5767 * cache the result.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005768 * Returns OK or FAIL.
5769 */
5770 int
5771get_user_name(buf, len)
5772 char_u *buf;
5773 int len;
5774{
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005775 if (username == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005776 {
5777 if (mch_get_user_name(buf, len) == FAIL)
5778 return FAIL;
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005779 username = vim_strsave(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005780 }
5781 else
Bram Moolenaarbbebc852005-07-18 21:47:53 +00005782 vim_strncpy(buf, username, len - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005783 return OK;
5784}
5785
5786#ifndef HAVE_QSORT
5787/*
5788 * Our own qsort(), for systems that don't have it.
5789 * It's simple and slow. From the K&R C book.
5790 */
5791 void
5792qsort(base, elm_count, elm_size, cmp)
5793 void *base;
5794 size_t elm_count;
5795 size_t elm_size;
5796 int (*cmp) __ARGS((const void *, const void *));
5797{
5798 char_u *buf;
5799 char_u *p1;
5800 char_u *p2;
5801 int i, j;
5802 int gap;
5803
5804 buf = alloc((unsigned)elm_size);
5805 if (buf == NULL)
5806 return;
5807
5808 for (gap = elm_count / 2; gap > 0; gap /= 2)
5809 for (i = gap; i < elm_count; ++i)
5810 for (j = i - gap; j >= 0; j -= gap)
5811 {
5812 /* Compare the elements. */
5813 p1 = (char_u *)base + j * elm_size;
5814 p2 = (char_u *)base + (j + gap) * elm_size;
5815 if ((*cmp)((void *)p1, (void *)p2) <= 0)
5816 break;
Bram Moolenaar21160b92009-11-11 15:56:10 +00005817 /* Exchange the elements. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005818 mch_memmove(buf, p1, elm_size);
5819 mch_memmove(p1, p2, elm_size);
5820 mch_memmove(p2, buf, elm_size);
5821 }
5822
5823 vim_free(buf);
5824}
5825#endif
5826
Bram Moolenaar071d4272004-06-13 20:20:40 +00005827/*
5828 * Sort an array of strings.
5829 */
5830static int
5831#ifdef __BORLANDC__
5832_RTLENTRYF
5833#endif
5834sort_compare __ARGS((const void *s1, const void *s2));
5835
5836 static int
5837#ifdef __BORLANDC__
5838_RTLENTRYF
5839#endif
5840sort_compare(s1, s2)
5841 const void *s1;
5842 const void *s2;
5843{
5844 return STRCMP(*(char **)s1, *(char **)s2);
5845}
5846
5847 void
5848sort_strings(files, count)
5849 char_u **files;
5850 int count;
5851{
5852 qsort((void *)files, (size_t)count, sizeof(char_u *), sort_compare);
5853}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005854
5855#if !defined(NO_EXPANDPATH) || defined(PROTO)
5856/*
5857 * Compare path "p[]" to "q[]".
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005858 * If "maxlen" >= 0 compare "p[maxlen]" to "q[maxlen]"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005859 * Return value like strcmp(p, q), but consider path separators.
5860 */
5861 int
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005862pathcmp(p, q, maxlen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005863 const char *p, *q;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005864 int maxlen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005865{
5866 int i;
Bram Moolenaar86b68352004-12-27 21:59:20 +00005867 const char *s = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005868
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005869 for (i = 0; maxlen < 0 || i < maxlen; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005870 {
5871 /* End of "p": check if "q" also ends or just has a slash. */
5872 if (p[i] == NUL)
5873 {
5874 if (q[i] == NUL) /* full match */
5875 return 0;
5876 s = q;
5877 break;
5878 }
5879
5880 /* End of "q": check if "p" just has a slash. */
5881 if (q[i] == NUL)
5882 {
5883 s = p;
5884 break;
5885 }
5886
5887 if (
5888#ifdef CASE_INSENSITIVE_FILENAME
5889 TOUPPER_LOC(p[i]) != TOUPPER_LOC(q[i])
5890#else
5891 p[i] != q[i]
5892#endif
5893#ifdef BACKSLASH_IN_FILENAME
5894 /* consider '/' and '\\' to be equal */
5895 && !((p[i] == '/' && q[i] == '\\')
5896 || (p[i] == '\\' && q[i] == '/'))
5897#endif
5898 )
5899 {
5900 if (vim_ispathsep(p[i]))
5901 return -1;
5902 if (vim_ispathsep(q[i]))
5903 return 1;
5904 return ((char_u *)p)[i] - ((char_u *)q)[i]; /* no match */
5905 }
5906 }
Bram Moolenaar86b68352004-12-27 21:59:20 +00005907 if (s == NULL) /* "i" ran into "maxlen" */
5908 return 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005909
5910 /* ignore a trailing slash, but not "//" or ":/" */
Bram Moolenaar86b68352004-12-27 21:59:20 +00005911 if (s[i + 1] == NUL
5912 && i > 0
5913 && !after_pathsep((char_u *)s, (char_u *)s + i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005914#ifdef BACKSLASH_IN_FILENAME
Bram Moolenaar86b68352004-12-27 21:59:20 +00005915 && (s[i] == '/' || s[i] == '\\')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005916#else
Bram Moolenaar86b68352004-12-27 21:59:20 +00005917 && s[i] == '/'
Bram Moolenaar071d4272004-06-13 20:20:40 +00005918#endif
Bram Moolenaar86b68352004-12-27 21:59:20 +00005919 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00005920 return 0; /* match with trailing slash */
5921 if (s == q)
5922 return -1; /* no match */
5923 return 1;
5924}
5925#endif
5926
Bram Moolenaar071d4272004-06-13 20:20:40 +00005927/*
5928 * The putenv() implementation below comes from the "screen" program.
5929 * Included with permission from Juergen Weigert.
5930 * See pty.c for the copyright notice.
5931 */
5932
5933/*
5934 * putenv -- put value into environment
5935 *
5936 * Usage: i = putenv (string)
5937 * int i;
5938 * char *string;
5939 *
5940 * where string is of the form <name>=<value>.
5941 * Putenv returns 0 normally, -1 on error (not enough core for malloc).
5942 *
5943 * Putenv may need to add a new name into the environment, or to
5944 * associate a value longer than the current value with a particular
5945 * name. So, to make life simpler, putenv() copies your entire
5946 * environment into the heap (i.e. malloc()) from the stack
5947 * (i.e. where it resides when your process is initiated) the first
5948 * time you call it.
5949 *
5950 * (history removed, not very interesting. See the "screen" sources.)
5951 */
5952
5953#if !defined(HAVE_SETENV) && !defined(HAVE_PUTENV)
5954
5955#define EXTRASIZE 5 /* increment to add to env. size */
5956
5957static int envsize = -1; /* current size of environment */
5958#ifndef MACOS_CLASSIC
5959extern
5960#endif
5961 char **environ; /* the global which is your env. */
5962
5963static int findenv __ARGS((char *name)); /* look for a name in the env. */
5964static int newenv __ARGS((void)); /* copy env. from stack to heap */
5965static int moreenv __ARGS((void)); /* incr. size of env. */
5966
5967 int
5968putenv(string)
5969 const char *string;
5970{
5971 int i;
5972 char *p;
5973
5974 if (envsize < 0)
5975 { /* first time putenv called */
5976 if (newenv() < 0) /* copy env. to heap */
5977 return -1;
5978 }
5979
5980 i = findenv((char *)string); /* look for name in environment */
5981
5982 if (i < 0)
5983 { /* name must be added */
5984 for (i = 0; environ[i]; i++);
5985 if (i >= (envsize - 1))
5986 { /* need new slot */
5987 if (moreenv() < 0)
5988 return -1;
5989 }
5990 p = (char *)alloc((unsigned)(strlen(string) + 1));
5991 if (p == NULL) /* not enough core */
5992 return -1;
5993 environ[i + 1] = 0; /* new end of env. */
5994 }
5995 else
5996 { /* name already in env. */
5997 p = vim_realloc(environ[i], strlen(string) + 1);
5998 if (p == NULL)
5999 return -1;
6000 }
6001 sprintf(p, "%s", string); /* copy into env. */
6002 environ[i] = p;
6003
6004 return 0;
6005}
6006
6007 static int
6008findenv(name)
6009 char *name;
6010{
6011 char *namechar, *envchar;
6012 int i, found;
6013
6014 found = 0;
6015 for (i = 0; environ[i] && !found; i++)
6016 {
6017 envchar = environ[i];
6018 namechar = name;
6019 while (*namechar && *namechar != '=' && (*namechar == *envchar))
6020 {
6021 namechar++;
6022 envchar++;
6023 }
6024 found = ((*namechar == '\0' || *namechar == '=') && *envchar == '=');
6025 }
6026 return found ? i - 1 : -1;
6027}
6028
6029 static int
6030newenv()
6031{
6032 char **env, *elem;
6033 int i, esize;
6034
6035#ifdef MACOS
6036 /* for Mac a new, empty environment is created */
6037 i = 0;
6038#else
6039 for (i = 0; environ[i]; i++)
6040 ;
6041#endif
6042 esize = i + EXTRASIZE + 1;
6043 env = (char **)alloc((unsigned)(esize * sizeof (elem)));
6044 if (env == NULL)
6045 return -1;
6046
6047#ifndef MACOS
6048 for (i = 0; environ[i]; i++)
6049 {
6050 elem = (char *)alloc((unsigned)(strlen(environ[i]) + 1));
6051 if (elem == NULL)
6052 return -1;
6053 env[i] = elem;
6054 strcpy(elem, environ[i]);
6055 }
6056#endif
6057
6058 env[i] = 0;
6059 environ = env;
6060 envsize = esize;
6061 return 0;
6062}
6063
6064 static int
6065moreenv()
6066{
6067 int esize;
6068 char **env;
6069
6070 esize = envsize + EXTRASIZE;
6071 env = (char **)vim_realloc((char *)environ, esize * sizeof (*env));
6072 if (env == 0)
6073 return -1;
6074 environ = env;
6075 envsize = esize;
6076 return 0;
6077}
6078
6079# ifdef USE_VIMPTY_GETENV
6080 char_u *
6081vimpty_getenv(string)
6082 const char_u *string;
6083{
6084 int i;
6085 char_u *p;
6086
6087 if (envsize < 0)
6088 return NULL;
6089
6090 i = findenv((char *)string);
6091
6092 if (i < 0)
6093 return NULL;
6094
6095 p = vim_strchr((char_u *)environ[i], '=');
6096 return (p + 1);
6097}
6098# endif
6099
6100#endif /* !defined(HAVE_SETENV) && !defined(HAVE_PUTENV) */
Bram Moolenaarc4a06d32005-06-07 21:04:49 +00006101
Bram Moolenaarc4956c82006-03-12 21:58:43 +00006102#if defined(FEAT_EVAL) || defined(FEAT_SPELL) || defined(PROTO)
Bram Moolenaarc4a06d32005-06-07 21:04:49 +00006103/*
6104 * Return 0 for not writable, 1 for writable file, 2 for a dir which we have
6105 * rights to write into.
6106 */
6107 int
6108filewritable(fname)
6109 char_u *fname;
6110{
6111 int retval = 0;
6112#if defined(UNIX) || defined(VMS)
6113 int perm = 0;
6114#endif
6115
6116#if defined(UNIX) || defined(VMS)
6117 perm = mch_getperm(fname);
6118#endif
6119#ifndef MACOS_CLASSIC /* TODO: get either mch_writable or mch_access */
6120 if (
6121# ifdef WIN3264
6122 mch_writable(fname) &&
6123# else
6124# if defined(UNIX) || defined(VMS)
6125 (perm & 0222) &&
6126# endif
6127# endif
6128 mch_access((char *)fname, W_OK) == 0
6129 )
6130#endif
6131 {
6132 ++retval;
6133 if (mch_isdir(fname))
6134 ++retval;
6135 }
6136 return retval;
6137}
6138#endif
Bram Moolenaar6bab4d12005-06-16 21:53:56 +00006139
6140/*
6141 * Print an error message with one or two "%s" and one or two string arguments.
6142 * This is not in message.c to avoid a warning for prototypes.
6143 */
6144 int
6145emsg3(s, a1, a2)
6146 char_u *s, *a1, *a2;
6147{
Bram Moolenaareb3593b2006-04-22 22:33:57 +00006148 if (emsg_not_now())
Bram Moolenaar6bab4d12005-06-16 21:53:56 +00006149 return TRUE; /* no error messages at the moment */
Bram Moolenaar6f192452007-11-08 19:49:02 +00006150#ifdef HAVE_STDARG_H
6151 vim_snprintf((char *)IObuff, IOSIZE, (char *)s, a1, a2);
6152#else
Bram Moolenaareb3593b2006-04-22 22:33:57 +00006153 vim_snprintf((char *)IObuff, IOSIZE, (char *)s, (long_u)a1, (long_u)a2);
Bram Moolenaar6f192452007-11-08 19:49:02 +00006154#endif
Bram Moolenaar6bab4d12005-06-16 21:53:56 +00006155 return emsg(IObuff);
6156}
6157
6158/*
6159 * Print an error message with one "%ld" and one long int argument.
6160 * This is not in message.c to avoid a warning for prototypes.
6161 */
6162 int
6163emsgn(s, n)
6164 char_u *s;
6165 long n;
6166{
Bram Moolenaareb3593b2006-04-22 22:33:57 +00006167 if (emsg_not_now())
Bram Moolenaar6bab4d12005-06-16 21:53:56 +00006168 return TRUE; /* no error messages at the moment */
6169 vim_snprintf((char *)IObuff, IOSIZE, (char *)s, n);
6170 return emsg(IObuff);
6171}
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006172
6173#if defined(FEAT_SPELL) || defined(FEAT_PERSISTENT_UNDO) || defined(PROTO)
6174/*
6175 * Read 2 bytes from "fd" and turn them into an int, MSB first.
6176 */
6177 int
6178get2c(fd)
6179 FILE *fd;
6180{
Bram Moolenaar9db58062010-05-29 20:33:07 +02006181 int n;
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006182
6183 n = getc(fd);
6184 n = (n << 8) + getc(fd);
6185 return n;
6186}
6187
6188/*
6189 * Read 3 bytes from "fd" and turn them into an int, MSB first.
6190 */
6191 int
6192get3c(fd)
6193 FILE *fd;
6194{
Bram Moolenaar9db58062010-05-29 20:33:07 +02006195 int n;
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006196
6197 n = getc(fd);
6198 n = (n << 8) + getc(fd);
6199 n = (n << 8) + getc(fd);
6200 return n;
6201}
6202
6203/*
6204 * Read 4 bytes from "fd" and turn them into an int, MSB first.
6205 */
6206 int
6207get4c(fd)
6208 FILE *fd;
6209{
Bram Moolenaar9db58062010-05-29 20:33:07 +02006210 int n;
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006211
6212 n = getc(fd);
6213 n = (n << 8) + getc(fd);
6214 n = (n << 8) + getc(fd);
6215 n = (n << 8) + getc(fd);
6216 return n;
6217}
6218
6219/*
6220 * Read 8 bytes from "fd" and turn them into a time_t, MSB first.
6221 */
6222 time_t
6223get8ctime(fd)
6224 FILE *fd;
6225{
6226 time_t n = 0;
6227 int i;
6228
6229 for (i = 0; i < 8; ++i)
6230 n = (n << 8) + getc(fd);
6231 return n;
6232}
6233
6234/*
6235 * Read a string of length "cnt" from "fd" into allocated memory.
6236 * Returns NULL when out of memory or unable to read that many bytes.
6237 */
6238 char_u *
6239read_string(fd, cnt)
6240 FILE *fd;
6241 int cnt;
6242{
6243 char_u *str;
6244 int i;
6245 int c;
6246
6247 /* allocate memory */
6248 str = alloc((unsigned)cnt + 1);
6249 if (str != NULL)
6250 {
6251 /* Read the string. Quit when running into the EOF. */
6252 for (i = 0; i < cnt; ++i)
6253 {
6254 c = getc(fd);
6255 if (c == EOF)
6256 {
6257 vim_free(str);
6258 return NULL;
6259 }
6260 str[i] = c;
6261 }
6262 str[i] = NUL;
6263 }
6264 return str;
6265}
6266
6267/*
6268 * Write a number to file "fd", MSB first, in "len" bytes.
6269 */
6270 int
6271put_bytes(fd, nr, len)
6272 FILE *fd;
6273 long_u nr;
6274 int len;
6275{
6276 int i;
6277
6278 for (i = len - 1; i >= 0; --i)
6279 if (putc((int)(nr >> (i * 8)), fd) == EOF)
6280 return FAIL;
6281 return OK;
6282}
6283
6284#ifdef _MSC_VER
6285# if (_MSC_VER <= 1200)
6286/* This line is required for VC6 without the service pack. Also see the
6287 * matching #pragma below. */
6288 # pragma optimize("", off)
6289# endif
6290#endif
6291
6292/*
6293 * Write time_t to file "fd" in 8 bytes.
6294 */
6295 void
6296put_time(fd, the_time)
6297 FILE *fd;
6298 time_t the_time;
6299{
6300 int c;
6301 int i;
6302 time_t wtime = the_time;
6303
6304 /* time_t can be up to 8 bytes in size, more than long_u, thus we
6305 * can't use put_bytes() here.
6306 * Another problem is that ">>" may do an arithmetic shift that keeps the
Bram Moolenaar644fdff2010-05-30 13:26:21 +02006307 * sign. This happens for large values of wtime. A cast to long_u may
6308 * truncate if time_t is 8 bytes. So only use a cast when it is 4 bytes,
6309 * it's safe to assume that long_u is 4 bytes or more and when using 8
6310 * bytes the top bit won't be set. */
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006311 for (i = 7; i >= 0; --i)
6312 {
6313 if (i + 1 > (int)sizeof(time_t))
6314 /* ">>" doesn't work well when shifting more bits than avail */
6315 putc(0, fd);
6316 else
6317 {
Bram Moolenaar644fdff2010-05-30 13:26:21 +02006318#if defined(SIZEOF_TIME_T) && SIZEOF_TIME_T > 4
Bram Moolenaarbbd6afe2010-06-02 20:32:23 +02006319 c = (int)(wtime >> (i * 8));
Bram Moolenaar644fdff2010-05-30 13:26:21 +02006320#else
Bram Moolenaarbbd6afe2010-06-02 20:32:23 +02006321 c = (int)((long_u)wtime >> (i * 8));
Bram Moolenaar644fdff2010-05-30 13:26:21 +02006322#endif
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006323 putc(c, fd);
6324 }
6325 }
6326}
6327
6328#ifdef _MSC_VER
6329# if (_MSC_VER <= 1200)
6330 # pragma optimize("", on)
6331# endif
6332#endif
6333
6334#endif