blob: 62a8cda14601a3cf449e0fb22ead5024d0dfd922 [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 Moolenaar071d4272004-06-13 20:20:40 +0000159 line = ml_get_curline();
160
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
335 /* prevent cursor from moving on the trail byte */
336 if (has_mbyte)
337 mb_adjust_cursor();
338#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/*
472 * Make sure curwin->w_cursor.lnum is valid.
473 */
474 void
475check_cursor_lnum()
476{
477 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
478 {
479#ifdef FEAT_FOLDING
480 /* If there is a closed fold at the end of the file, put the cursor in
481 * its first line. Otherwise in the last line. */
482 if (!hasFolding(curbuf->b_ml.ml_line_count,
483 &curwin->w_cursor.lnum, NULL))
484#endif
485 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
486 }
487 if (curwin->w_cursor.lnum <= 0)
488 curwin->w_cursor.lnum = 1;
489}
490
491/*
492 * Make sure curwin->w_cursor.col is valid.
493 */
494 void
495check_cursor_col()
496{
497 colnr_T len;
498#ifdef FEAT_VIRTUALEDIT
499 colnr_T oldcol = curwin->w_cursor.col + curwin->w_cursor.coladd;
500#endif
501
502 len = (colnr_T)STRLEN(ml_get_curline());
503 if (len == 0)
504 curwin->w_cursor.col = 0;
505 else if (curwin->w_cursor.col >= len)
506 {
Bram Moolenaar33f54432008-01-04 20:25:44 +0000507 /* Allow cursor past end-of-line when:
508 * - in Insert mode or restarting Insert mode
509 * - in Visual mode and 'selection' isn't "old"
510 * - 'virtualedit' is set */
Bram Moolenaarebefac62005-12-28 22:39:57 +0000511 if ((State & INSERT) || restart_edit
Bram Moolenaar071d4272004-06-13 20:20:40 +0000512#ifdef FEAT_VISUAL
513 || (VIsual_active && *p_sel != 'o')
514#endif
Bram Moolenaar33f54432008-01-04 20:25:44 +0000515#ifdef FEAT_VIRTUALEDIT
516 || (ve_flags & VE_ONEMORE)
517#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000518 || virtual_active())
519 curwin->w_cursor.col = len;
520 else
Bram Moolenaar87c19962007-04-26 08:54:21 +0000521 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000522 curwin->w_cursor.col = len - 1;
Bram Moolenaar87c19962007-04-26 08:54:21 +0000523#ifdef FEAT_MBYTE
524 /* prevent cursor from moving on the trail byte */
525 if (has_mbyte)
526 mb_adjust_cursor();
527#endif
528 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000529 }
530
531#ifdef FEAT_VIRTUALEDIT
532 /* If virtual editing is on, we can leave the cursor on the old position,
533 * only we must set it to virtual. But don't do it when at the end of the
534 * line. */
535 if (oldcol == MAXCOL)
536 curwin->w_cursor.coladd = 0;
537 else if (ve_flags == VE_ALL)
538 curwin->w_cursor.coladd = oldcol - curwin->w_cursor.col;
539#endif
540}
541
542/*
543 * make sure curwin->w_cursor in on a valid character
544 */
545 void
546check_cursor()
547{
548 check_cursor_lnum();
549 check_cursor_col();
550}
551
552#if defined(FEAT_TEXTOBJ) || defined(PROTO)
553/*
554 * Make sure curwin->w_cursor is not on the NUL at the end of the line.
555 * Allow it when in Visual mode and 'selection' is not "old".
556 */
557 void
558adjust_cursor_col()
559{
560 if (curwin->w_cursor.col > 0
561# ifdef FEAT_VISUAL
562 && (!VIsual_active || *p_sel == 'o')
563# endif
564 && gchar_cursor() == NUL)
565 --curwin->w_cursor.col;
566}
567#endif
568
569/*
570 * When curwin->w_leftcol has changed, adjust the cursor position.
571 * Return TRUE if the cursor was moved.
572 */
573 int
574leftcol_changed()
575{
576 long lastcol;
577 colnr_T s, e;
578 int retval = FALSE;
579
580 changed_cline_bef_curs();
581 lastcol = curwin->w_leftcol + W_WIDTH(curwin) - curwin_col_off() - 1;
582 validate_virtcol();
583
584 /*
585 * If the cursor is right or left of the screen, move it to last or first
586 * character.
587 */
588 if (curwin->w_virtcol > (colnr_T)(lastcol - p_siso))
589 {
590 retval = TRUE;
591 coladvance((colnr_T)(lastcol - p_siso));
592 }
593 else if (curwin->w_virtcol < curwin->w_leftcol + p_siso)
594 {
595 retval = TRUE;
596 (void)coladvance((colnr_T)(curwin->w_leftcol + p_siso));
597 }
598
599 /*
600 * If the start of the character under the cursor is not on the screen,
601 * advance the cursor one more char. If this fails (last char of the
602 * line) adjust the scrolling.
603 */
604 getvvcol(curwin, &curwin->w_cursor, &s, NULL, &e);
605 if (e > (colnr_T)lastcol)
606 {
607 retval = TRUE;
608 coladvance(s - 1);
609 }
610 else if (s < curwin->w_leftcol)
611 {
612 retval = TRUE;
613 if (coladvance(e + 1) == FAIL) /* there isn't another character */
614 {
615 curwin->w_leftcol = s; /* adjust w_leftcol instead */
616 changed_cline_bef_curs();
617 }
618 }
619
620 if (retval)
621 curwin->w_set_curswant = TRUE;
622 redraw_later(NOT_VALID);
623 return retval;
624}
625
626/**********************************************************************
627 * Various routines dealing with allocation and deallocation of memory.
628 */
629
630#if defined(MEM_PROFILE) || defined(PROTO)
631
632# define MEM_SIZES 8200
633static long_u mem_allocs[MEM_SIZES];
634static long_u mem_frees[MEM_SIZES];
635static long_u mem_allocated;
636static long_u mem_freed;
637static long_u mem_peak;
638static long_u num_alloc;
639static long_u num_freed;
640
641static void mem_pre_alloc_s __ARGS((size_t *sizep));
642static void mem_pre_alloc_l __ARGS((long_u *sizep));
643static void mem_post_alloc __ARGS((void **pp, size_t size));
644static void mem_pre_free __ARGS((void **pp));
645
646 static void
647mem_pre_alloc_s(sizep)
648 size_t *sizep;
649{
650 *sizep += sizeof(size_t);
651}
652
653 static void
654mem_pre_alloc_l(sizep)
655 long_u *sizep;
656{
657 *sizep += sizeof(size_t);
658}
659
660 static void
661mem_post_alloc(pp, size)
662 void **pp;
663 size_t size;
664{
665 if (*pp == NULL)
666 return;
667 size -= sizeof(size_t);
668 *(long_u *)*pp = size;
669 if (size <= MEM_SIZES-1)
670 mem_allocs[size-1]++;
671 else
672 mem_allocs[MEM_SIZES-1]++;
673 mem_allocated += size;
674 if (mem_allocated - mem_freed > mem_peak)
675 mem_peak = mem_allocated - mem_freed;
676 num_alloc++;
677 *pp = (void *)((char *)*pp + sizeof(size_t));
678}
679
680 static void
681mem_pre_free(pp)
682 void **pp;
683{
684 long_u size;
685
686 *pp = (void *)((char *)*pp - sizeof(size_t));
687 size = *(size_t *)*pp;
688 if (size <= MEM_SIZES-1)
689 mem_frees[size-1]++;
690 else
691 mem_frees[MEM_SIZES-1]++;
692 mem_freed += size;
693 num_freed++;
694}
695
696/*
697 * called on exit via atexit()
698 */
699 void
700vim_mem_profile_dump()
701{
702 int i, j;
703
704 printf("\r\n");
705 j = 0;
706 for (i = 0; i < MEM_SIZES - 1; i++)
707 {
708 if (mem_allocs[i] || mem_frees[i])
709 {
710 if (mem_frees[i] > mem_allocs[i])
711 printf("\r\n%s", _("ERROR: "));
712 printf("[%4d / %4lu-%-4lu] ", i + 1, mem_allocs[i], mem_frees[i]);
713 j++;
714 if (j > 3)
715 {
716 j = 0;
717 printf("\r\n");
718 }
719 }
720 }
721
722 i = MEM_SIZES - 1;
723 if (mem_allocs[i])
724 {
725 printf("\r\n");
726 if (mem_frees[i] > mem_allocs[i])
727 printf(_("ERROR: "));
728 printf("[>%d / %4lu-%-4lu]", i, mem_allocs[i], mem_frees[i]);
729 }
730
731 printf(_("\n[bytes] total alloc-freed %lu-%lu, in use %lu, peak use %lu\n"),
732 mem_allocated, mem_freed, mem_allocated - mem_freed, mem_peak);
733 printf(_("[calls] total re/malloc()'s %lu, total free()'s %lu\n\n"),
734 num_alloc, num_freed);
735}
736
737#endif /* MEM_PROFILE */
738
739/*
740 * Some memory is reserved for error messages and for being able to
741 * call mf_release_all(), which needs some memory for mf_trans_add().
742 */
743#if defined(MSDOS) && !defined(DJGPP)
744# define SMALL_MEM
745# define KEEP_ROOM 8192L
746#else
747# define KEEP_ROOM (2 * 8192L)
748#endif
749
750/*
Bram Moolenaar2a329742008-04-01 12:53:43 +0000751 * Note: if unsigned is 16 bits we can only allocate up to 64K with alloc().
Bram Moolenaar071d4272004-06-13 20:20:40 +0000752 * Use lalloc for larger blocks.
753 */
754 char_u *
755alloc(size)
756 unsigned size;
757{
758 return (lalloc((long_u)size, TRUE));
759}
760
761/*
762 * Allocate memory and set all bytes to zero.
763 */
764 char_u *
765alloc_clear(size)
766 unsigned size;
767{
768 char_u *p;
769
770 p = (lalloc((long_u)size, TRUE));
771 if (p != NULL)
772 (void)vim_memset(p, 0, (size_t)size);
773 return p;
774}
775
776/*
777 * alloc() with check for maximum line length
778 */
779 char_u *
780alloc_check(size)
781 unsigned size;
782{
783#if !defined(UNIX) && !defined(__EMX__)
784 if (sizeof(int) == 2 && size > 0x7fff)
785 {
786 /* Don't hide this message */
787 emsg_silent = 0;
788 EMSG(_("E340: Line is becoming too long"));
789 return NULL;
790 }
791#endif
792 return (lalloc((long_u)size, TRUE));
793}
794
795/*
796 * Allocate memory like lalloc() and set all bytes to zero.
797 */
798 char_u *
799lalloc_clear(size, message)
800 long_u size;
801 int message;
802{
803 char_u *p;
804
805 p = (lalloc(size, message));
806 if (p != NULL)
807 (void)vim_memset(p, 0, (size_t)size);
808 return p;
809}
810
811/*
812 * Low level memory allocation function.
813 * This is used often, KEEP IT FAST!
814 */
815 char_u *
816lalloc(size, message)
817 long_u size;
818 int message;
819{
820 char_u *p; /* pointer to new storage space */
821 static int releasing = FALSE; /* don't do mf_release_all() recursive */
822 int try_again;
823#if defined(HAVE_AVAIL_MEM) && !defined(SMALL_MEM)
824 static long_u allocated = 0; /* allocated since last avail check */
825#endif
826
827 /* Safety check for allocating zero bytes */
828 if (size == 0)
829 {
830 /* Don't hide this message */
831 emsg_silent = 0;
832 EMSGN(_("E341: Internal error: lalloc(%ld, )"), size);
833 return NULL;
834 }
835
836#ifdef MEM_PROFILE
837 mem_pre_alloc_l(&size);
838#endif
839
840#if defined(MSDOS) && !defined(DJGPP)
841 if (size >= 0xfff0) /* in MSDOS we can't deal with >64K blocks */
842 p = NULL;
843 else
844#endif
845
846 /*
847 * Loop when out of memory: Try to release some memfile blocks and
848 * if some blocks are released call malloc again.
849 */
850 for (;;)
851 {
852 /*
853 * Handle three kind of systems:
854 * 1. No check for available memory: Just return.
855 * 2. Slow check for available memory: call mch_avail_mem() after
856 * allocating KEEP_ROOM amount of memory.
857 * 3. Strict check for available memory: call mch_avail_mem()
858 */
859 if ((p = (char_u *)malloc((size_t)size)) != NULL)
860 {
861#ifndef HAVE_AVAIL_MEM
862 /* 1. No check for available memory: Just return. */
863 goto theend;
864#else
865# ifndef SMALL_MEM
866 /* 2. Slow check for available memory: call mch_avail_mem() after
867 * allocating (KEEP_ROOM / 2) amount of memory. */
868 allocated += size;
869 if (allocated < KEEP_ROOM / 2)
870 goto theend;
871 allocated = 0;
872# endif
873 /* 3. check for available memory: call mch_avail_mem() */
874 if (mch_avail_mem(TRUE) < KEEP_ROOM && !releasing)
875 {
876 vim_free((char *)p); /* System is low... no go! */
877 p = NULL;
878 }
879 else
880 goto theend;
881#endif
882 }
883 /*
884 * Remember that mf_release_all() is being called to avoid an endless
885 * loop, because mf_release_all() may call alloc() recursively.
886 */
887 if (releasing)
888 break;
889 releasing = TRUE;
Bram Moolenaar661b1822005-07-28 22:36:45 +0000890
891 clear_sb_text(); /* free any scrollback text */
892 try_again = mf_release_all(); /* release as many blocks as possible */
Bram Moolenaar39a58ca2005-06-27 22:42:44 +0000893#ifdef FEAT_EVAL
Bram Moolenaar661b1822005-07-28 22:36:45 +0000894 try_again |= garbage_collect(); /* cleanup recursive lists/dicts */
Bram Moolenaar39a58ca2005-06-27 22:42:44 +0000895#endif
Bram Moolenaar661b1822005-07-28 22:36:45 +0000896
Bram Moolenaar071d4272004-06-13 20:20:40 +0000897 releasing = FALSE;
898 if (!try_again)
899 break;
900 }
901
902 if (message && p == NULL)
903 do_outofmem_msg(size);
904
905theend:
906#ifdef MEM_PROFILE
907 mem_post_alloc((void **)&p, (size_t)size);
908#endif
909 return p;
910}
911
912#if defined(MEM_PROFILE) || defined(PROTO)
913/*
914 * realloc() with memory profiling.
915 */
916 void *
917mem_realloc(ptr, size)
918 void *ptr;
919 size_t size;
920{
921 void *p;
922
923 mem_pre_free(&ptr);
924 mem_pre_alloc_s(&size);
925
926 p = realloc(ptr, size);
927
928 mem_post_alloc(&p, size);
929
930 return p;
931}
932#endif
933
934/*
935* Avoid repeating the error message many times (they take 1 second each).
936* Did_outofmem_msg is reset when a character is read.
937*/
938 void
939do_outofmem_msg(size)
940 long_u size;
941{
942 if (!did_outofmem_msg)
943 {
944 /* Don't hide this message */
945 emsg_silent = 0;
946 EMSGN(_("E342: Out of memory! (allocating %lu bytes)"), size);
947 did_outofmem_msg = TRUE;
948 }
949}
950
Bram Moolenaar1ec484f2005-06-24 23:07:47 +0000951#if defined(EXITFREE) || defined(PROTO)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000952
953# if defined(FEAT_SEARCHPATH)
954static void free_findfile __ARGS((void));
955# endif
956
Bram Moolenaar1ec484f2005-06-24 23:07:47 +0000957/*
958 * Free everything that we allocated.
959 * Can be used to detect memory leaks, e.g., with ccmalloc.
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000960 * NOTE: This is tricky! Things are freed that functions depend on. Don't be
961 * surprised if Vim crashes...
962 * Some things can't be freed, esp. things local to a library function.
Bram Moolenaar1ec484f2005-06-24 23:07:47 +0000963 */
964 void
965free_all_mem()
966{
967 buf_T *buf, *nextbuf;
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000968 static int entered = FALSE;
969
970 /* When we cause a crash here it is caught and Vim tries to exit cleanly.
971 * Don't try freeing everything again. */
972 if (entered)
973 return;
974 entered = TRUE;
Bram Moolenaar1ec484f2005-06-24 23:07:47 +0000975
Bram Moolenaare0ca7b22007-11-24 20:28:24 +0000976# ifdef FEAT_AUTOCMD
Bram Moolenaar78ab3312007-09-29 12:16:41 +0000977 block_autocmds(); /* don't want to trigger autocommands here */
Bram Moolenaare0ca7b22007-11-24 20:28:24 +0000978# endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +0000979
Bram Moolenaare0ca7b22007-11-24 20:28:24 +0000980# ifdef FEAT_WINDOWS
Bram Moolenaar997fb4b2006-02-17 21:53:23 +0000981 /* close all tabs and windows */
Bram Moolenaar7d47b6e2006-03-15 22:59:18 +0000982 if (first_tabpage->tp_next != NULL)
983 do_cmdline_cmd((char_u *)"tabonly!");
984 if (firstwin != lastwin)
985 do_cmdline_cmd((char_u *)"only!");
Bram Moolenaare0ca7b22007-11-24 20:28:24 +0000986# endif
Bram Moolenaar997fb4b2006-02-17 21:53:23 +0000987
Bram Moolenaarc4956c82006-03-12 21:58:43 +0000988# if defined(FEAT_SPELL)
Bram Moolenaar1ec484f2005-06-24 23:07:47 +0000989 /* Free all spell info. */
990 spell_free_all();
991# endif
992
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000993# if defined(FEAT_USR_CMDS)
Bram Moolenaar1ec484f2005-06-24 23:07:47 +0000994 /* Clear user commands (before deleting buffers). */
995 ex_comclear(NULL);
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000996# endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +0000997
998# ifdef FEAT_MENU
999 /* Clear menus. */
1000 do_cmdline_cmd((char_u *)"aunmenu *");
1001# endif
1002
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001003 /* Clear mappings, abbreviations, breakpoints. */
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001004 do_cmdline_cmd((char_u *)"mapclear");
1005 do_cmdline_cmd((char_u *)"mapclear!");
1006 do_cmdline_cmd((char_u *)"abclear");
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001007# if defined(FEAT_EVAL)
1008 do_cmdline_cmd((char_u *)"breakdel *");
1009# endif
Bram Moolenaar1e498f52005-06-26 22:29:44 +00001010# if defined(FEAT_PROFILE)
1011 do_cmdline_cmd((char_u *)"profdel *");
1012# endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001013
1014# ifdef FEAT_TITLE
1015 free_titles();
1016# endif
1017# if defined(FEAT_SEARCHPATH)
1018 free_findfile();
1019# endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001020
1021 /* Obviously named calls. */
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001022# if defined(FEAT_AUTOCMD)
1023 free_all_autocmds();
1024# endif
1025 clear_termcodes();
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001026 free_all_options();
1027 free_all_marks();
1028 alist_clear(&global_alist);
1029 free_homedir();
1030 free_search_patterns();
1031 free_old_sub();
1032 free_last_insert();
1033 free_prev_shellcmd();
1034 free_regexp_stuff();
1035 free_tag_stuff();
1036 free_cd_dir();
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001037# ifdef FEAT_EVAL
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001038 set_expr_line(NULL);
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001039# endif
1040# ifdef FEAT_DIFF
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00001041 diff_clear(curtab);
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001042# endif
Bram Moolenaara40ceaf2006-01-13 22:35:40 +00001043 clear_sb_text(); /* free any scrollback text */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001044
1045 /* Free some global vars. */
1046 vim_free(username);
Bram Moolenaaraf92ee82007-10-07 13:45:08 +00001047# ifdef FEAT_CLIPBOARD
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001048 vim_free(clip_exclude_prog);
Bram Moolenaaraf92ee82007-10-07 13:45:08 +00001049# endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001050 vim_free(last_cmdline);
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001051# ifdef FEAT_CMDHIST
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001052 vim_free(new_last_cmdline);
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001053# endif
Bram Moolenaar238a5642006-02-21 22:12:05 +00001054 set_keep_msg(NULL, 0);
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001055 vim_free(ff_expand_buffer);
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001056
1057 /* Clear cmdline history. */
1058 p_hi = 0;
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001059# ifdef FEAT_CMDHIST
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001060 init_history();
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001061# endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001062
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001063#ifdef FEAT_QUICKFIX
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001064 {
1065 win_T *win;
1066
1067 qf_free_all(NULL);
1068 /* Free all location lists */
1069 FOR_ALL_WINDOWS(win)
1070 qf_free_all(win);
1071 }
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001072#endif
1073
1074 /* Close all script inputs. */
1075 close_all_scripts();
1076
1077#if defined(FEAT_WINDOWS)
1078 /* Destroy all windows. Must come before freeing buffers. */
1079 win_free_all();
1080#endif
1081
Bram Moolenaar2a329742008-04-01 12:53:43 +00001082 /* Free all buffers. Reset 'autochdir' to avoid accessing things that
1083 * were freed already. */
1084#ifdef FEAT_AUTOCHDIR
1085 p_acd = FALSE;
1086#endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001087 for (buf = firstbuf; buf != NULL; )
1088 {
1089 nextbuf = buf->b_next;
1090 close_buffer(NULL, buf, DOBUF_WIPE);
1091 if (buf_valid(buf))
1092 buf = nextbuf; /* didn't work, try next one */
1093 else
1094 buf = firstbuf;
1095 }
1096
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001097#ifdef FEAT_ARABIC
1098 free_cmdline_buf();
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001099#endif
1100
1101 /* Clear registers. */
1102 clear_registers();
1103 ResetRedobuff();
1104 ResetRedobuff();
1105
Bram Moolenaar85c79d32007-02-20 01:59:20 +00001106#if defined(FEAT_CLIENTSERVER) && defined(FEAT_X11)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001107 vim_free(serverDelayedStartName);
1108#endif
1109
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001110 /* highlight info */
1111 free_highlight();
1112
Bram Moolenaar1e498f52005-06-26 22:29:44 +00001113 reset_last_sourcing();
1114
Bram Moolenaar7d47b6e2006-03-15 22:59:18 +00001115#ifdef FEAT_WINDOWS
Bram Moolenaar06a89a52006-04-29 22:01:03 +00001116 free_tabpage(first_tabpage);
1117 first_tabpage = NULL;
Bram Moolenaar7d47b6e2006-03-15 22:59:18 +00001118#endif
1119
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001120# ifdef UNIX
1121 /* Machine-specific free. */
1122 mch_free_mem();
1123# endif
1124
1125 /* message history */
1126 for (;;)
1127 if (delete_first_msg() == FAIL)
1128 break;
1129
1130# ifdef FEAT_EVAL
1131 eval_clear();
1132# endif
1133
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001134 free_termoptions();
1135
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001136 /* screenlines (can't display anything now!) */
1137 free_screenlines();
1138
1139#if defined(USE_XSMP)
1140 xsmp_close();
1141#endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001142#ifdef FEAT_GUI_GTK
1143 gui_mch_free_all();
1144#endif
1145 clear_hl_tables();
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001146
1147 vim_free(IObuff);
1148 vim_free(NameBuff);
1149}
1150#endif
1151
Bram Moolenaar071d4272004-06-13 20:20:40 +00001152/*
1153 * copy a string into newly allocated memory
1154 */
1155 char_u *
1156vim_strsave(string)
1157 char_u *string;
1158{
1159 char_u *p;
1160 unsigned len;
1161
1162 len = (unsigned)STRLEN(string) + 1;
1163 p = alloc(len);
1164 if (p != NULL)
1165 mch_memmove(p, string, (size_t)len);
1166 return p;
1167}
1168
1169 char_u *
1170vim_strnsave(string, len)
1171 char_u *string;
1172 int len;
1173{
1174 char_u *p;
1175
1176 p = alloc((unsigned)(len + 1));
1177 if (p != NULL)
1178 {
1179 STRNCPY(p, string, len);
1180 p[len] = NUL;
1181 }
1182 return p;
1183}
1184
Bram Moolenaar071d4272004-06-13 20:20:40 +00001185/*
1186 * Same as vim_strsave(), but any characters found in esc_chars are preceded
1187 * by a backslash.
1188 */
1189 char_u *
1190vim_strsave_escaped(string, esc_chars)
1191 char_u *string;
1192 char_u *esc_chars;
1193{
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001194 return vim_strsave_escaped_ext(string, esc_chars, '\\', FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001195}
1196
1197/*
1198 * Same as vim_strsave_escaped(), but when "bsl" is TRUE also escape
1199 * characters where rem_backslash() would remove the backslash.
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001200 * Escape the characters with "cc".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001201 */
1202 char_u *
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001203vim_strsave_escaped_ext(string, esc_chars, cc, bsl)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001204 char_u *string;
1205 char_u *esc_chars;
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001206 int cc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001207 int bsl;
1208{
1209 char_u *p;
1210 char_u *p2;
1211 char_u *escaped_string;
1212 unsigned length;
1213#ifdef FEAT_MBYTE
1214 int l;
1215#endif
1216
1217 /*
1218 * First count the number of backslashes required.
1219 * Then allocate the memory and insert them.
1220 */
1221 length = 1; /* count the trailing NUL */
1222 for (p = string; *p; p++)
1223 {
1224#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001225 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001226 {
1227 length += l; /* count a multibyte char */
1228 p += l - 1;
1229 continue;
1230 }
1231#endif
1232 if (vim_strchr(esc_chars, *p) != NULL || (bsl && rem_backslash(p)))
1233 ++length; /* count a backslash */
1234 ++length; /* count an ordinary char */
1235 }
1236 escaped_string = alloc(length);
1237 if (escaped_string != NULL)
1238 {
1239 p2 = escaped_string;
1240 for (p = string; *p; p++)
1241 {
1242#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001243 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001244 {
1245 mch_memmove(p2, p, (size_t)l);
1246 p2 += l;
1247 p += l - 1; /* skip multibyte char */
1248 continue;
1249 }
1250#endif
1251 if (vim_strchr(esc_chars, *p) != NULL || (bsl && rem_backslash(p)))
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001252 *p2++ = cc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001253 *p2++ = *p;
1254 }
1255 *p2 = NUL;
1256 }
1257 return escaped_string;
1258}
1259
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001260#if defined(FEAT_EVAL) || defined(PROTO)
1261/*
1262 * Escape "string" for use as a shell argument with system().
1263 * This uses single quotes, except when we know we need to use double qoutes
1264 * (MS-DOS and MS-Windows without 'shellslash' set).
1265 * Returns the result in allocated memory, NULL if we have run out.
1266 */
1267 char_u *
1268vim_strsave_shellescape(string)
1269 char_u *string;
1270{
1271 unsigned length;
1272 char_u *p;
1273 char_u *d;
1274 char_u *escaped_string;
1275
1276 /* First count the number of extra bytes required. */
Bram Moolenaar77f66d62007-02-20 02:16:18 +00001277 length = (unsigned)STRLEN(string) + 3; /* two quotes and a trailing NUL */
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001278 for (p = string; *p != NUL; mb_ptr_adv(p))
1279 {
1280# if defined(WIN32) || defined(WIN16) || defined(DOS)
1281 if (!p_ssl)
1282 {
1283 if (*p == '"')
1284 ++length; /* " -> "" */
1285 }
1286 else
1287# endif
1288 if (*p == '\'')
1289 length += 3; /* ' => '\'' */
1290 }
1291
1292 /* Allocate memory for the result and fill it. */
1293 escaped_string = alloc(length);
1294 if (escaped_string != NULL)
1295 {
1296 d = escaped_string;
1297
1298 /* add opening quote */
1299# if defined(WIN32) || defined(WIN16) || defined(DOS)
1300 if (!p_ssl)
1301 *d++ = '"';
1302 else
1303# endif
1304 *d++ = '\'';
1305
1306 for (p = string; *p != NUL; )
1307 {
1308# if defined(WIN32) || defined(WIN16) || defined(DOS)
1309 if (!p_ssl)
1310 {
1311 if (*p == '"')
1312 {
1313 *d++ = '"';
1314 *d++ = '"';
1315 ++p;
1316 continue;
1317 }
1318 }
1319 else
1320# endif
1321 if (*p == '\'')
1322 {
1323 *d++='\'';
1324 *d++='\\';
1325 *d++='\'';
1326 *d++='\'';
1327 ++p;
1328 continue;
1329 }
1330
1331 MB_COPY_CHAR(p, d);
1332 }
1333
1334 /* add terminating quote and finish with a NUL */
1335# if defined(WIN32) || defined(WIN16) || defined(DOS)
1336 if (!p_ssl)
1337 *d++ = '"';
1338 else
1339# endif
1340 *d++ = '\'';
1341 *d = NUL;
1342 }
1343
1344 return escaped_string;
1345}
1346#endif
1347
Bram Moolenaar071d4272004-06-13 20:20:40 +00001348/*
1349 * Like vim_strsave(), but make all characters uppercase.
1350 * This uses ASCII lower-to-upper case translation, language independent.
1351 */
1352 char_u *
1353vim_strsave_up(string)
1354 char_u *string;
1355{
1356 char_u *p1;
1357
1358 p1 = vim_strsave(string);
1359 vim_strup(p1);
1360 return p1;
1361}
1362
1363/*
1364 * Like vim_strnsave(), but make all characters uppercase.
1365 * This uses ASCII lower-to-upper case translation, language independent.
1366 */
1367 char_u *
1368vim_strnsave_up(string, len)
1369 char_u *string;
1370 int len;
1371{
1372 char_u *p1;
1373
1374 p1 = vim_strnsave(string, len);
1375 vim_strup(p1);
1376 return p1;
1377}
1378
1379/*
1380 * ASCII lower-to-upper case translation, language independent.
1381 */
1382 void
1383vim_strup(p)
1384 char_u *p;
1385{
1386 char_u *p2;
1387 int c;
1388
1389 if (p != NULL)
1390 {
1391 p2 = p;
1392 while ((c = *p2) != NUL)
1393#ifdef EBCDIC
1394 *p2++ = isalpha(c) ? toupper(c) : c;
1395#else
1396 *p2++ = (c < 'a' || c > 'z') ? c : (c - 0x20);
1397#endif
1398 }
1399}
1400
Bram Moolenaarc4956c82006-03-12 21:58:43 +00001401#if defined(FEAT_EVAL) || defined(FEAT_SPELL) || defined(PROTO)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001402/*
1403 * Make string "s" all upper-case and return it in allocated memory.
1404 * Handles multi-byte characters as well as possible.
1405 * Returns NULL when out of memory.
1406 */
1407 char_u *
1408strup_save(orig)
1409 char_u *orig;
1410{
1411 char_u *p;
1412 char_u *res;
1413
1414 res = p = vim_strsave(orig);
1415
1416 if (res != NULL)
1417 while (*p != NUL)
1418 {
1419# ifdef FEAT_MBYTE
1420 int l;
1421
1422 if (enc_utf8)
1423 {
1424 int c, uc;
1425 int nl;
1426 char_u *s;
1427
1428 c = utf_ptr2char(p);
1429 uc = utf_toupper(c);
1430
1431 /* Reallocate string when byte count changes. This is rare,
1432 * thus it's OK to do another malloc()/free(). */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001433 l = utf_ptr2len(p);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001434 nl = utf_char2len(uc);
1435 if (nl != l)
1436 {
1437 s = alloc((unsigned)STRLEN(res) + 1 + nl - l);
1438 if (s == NULL)
1439 break;
1440 mch_memmove(s, res, p - res);
1441 STRCPY(s + (p - res) + nl, p + l);
1442 p = s + (p - res);
1443 vim_free(res);
1444 res = s;
1445 }
1446
1447 utf_char2bytes(uc, p);
1448 p += nl;
1449 }
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001450 else if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001451 p += l; /* skip multi-byte character */
1452 else
1453# endif
1454 {
1455 *p = TOUPPER_LOC(*p); /* note that toupper() can be a macro */
1456 p++;
1457 }
1458 }
1459
1460 return res;
1461}
1462#endif
1463
Bram Moolenaar071d4272004-06-13 20:20:40 +00001464/*
1465 * copy a space a number of times
1466 */
1467 void
1468copy_spaces(ptr, count)
1469 char_u *ptr;
1470 size_t count;
1471{
1472 size_t i = count;
1473 char_u *p = ptr;
1474
1475 while (i--)
1476 *p++ = ' ';
1477}
1478
1479#if defined(FEAT_VISUALEXTRA) || defined(PROTO)
1480/*
1481 * Copy a character a number of times.
1482 * Does not work for multi-byte charactes!
1483 */
1484 void
1485copy_chars(ptr, count, c)
1486 char_u *ptr;
1487 size_t count;
1488 int c;
1489{
1490 size_t i = count;
1491 char_u *p = ptr;
1492
1493 while (i--)
1494 *p++ = c;
1495}
1496#endif
1497
1498/*
1499 * delete spaces at the end of a string
1500 */
1501 void
1502del_trailing_spaces(ptr)
1503 char_u *ptr;
1504{
1505 char_u *q;
1506
1507 q = ptr + STRLEN(ptr);
1508 while (--q > ptr && vim_iswhite(q[0]) && q[-1] != '\\' && q[-1] != Ctrl_V)
1509 *q = NUL;
1510}
1511
1512/*
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001513 * Like strncpy(), but always terminate the result with one NUL.
Bram Moolenaard042c562005-06-30 22:04:15 +00001514 * "to" must be "len + 1" long!
Bram Moolenaar071d4272004-06-13 20:20:40 +00001515 */
1516 void
1517vim_strncpy(to, from, len)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001518 char_u *to;
1519 char_u *from;
Bram Moolenaarbbebc852005-07-18 21:47:53 +00001520 size_t len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001521{
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001522 STRNCPY(to, from, len);
1523 to[len] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001524}
1525
1526/*
1527 * Isolate one part of a string option where parts are separated with
1528 * "sep_chars".
Bram Moolenaar83bab712005-08-01 21:58:57 +00001529 * The part is copied into "buf[maxlen]".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001530 * "*option" is advanced to the next part.
1531 * The length is returned.
1532 */
1533 int
1534copy_option_part(option, buf, maxlen, sep_chars)
1535 char_u **option;
1536 char_u *buf;
1537 int maxlen;
1538 char *sep_chars;
1539{
1540 int len = 0;
1541 char_u *p = *option;
1542
1543 /* skip '.' at start of option part, for 'suffixes' */
1544 if (*p == '.')
1545 buf[len++] = *p++;
1546 while (*p != NUL && vim_strchr((char_u *)sep_chars, *p) == NULL)
1547 {
1548 /*
1549 * Skip backslash before a separator character and space.
1550 */
1551 if (p[0] == '\\' && vim_strchr((char_u *)sep_chars, p[1]) != NULL)
1552 ++p;
1553 if (len < maxlen - 1)
1554 buf[len++] = *p;
1555 ++p;
1556 }
1557 buf[len] = NUL;
1558
1559 if (*p != NUL && *p != ',') /* skip non-standard separator */
1560 ++p;
1561 p = skip_to_option_part(p); /* p points to next file name */
1562
1563 *option = p;
1564 return len;
1565}
1566
1567/*
Bram Moolenaar4770d092006-01-12 23:22:24 +00001568 * Replacement for free() that ignores NULL pointers.
1569 * Also skip free() when exiting for sure, this helps when we caught a deadly
1570 * signal that was caused by a crash in free().
Bram Moolenaar071d4272004-06-13 20:20:40 +00001571 */
1572 void
1573vim_free(x)
1574 void *x;
1575{
Bram Moolenaar4770d092006-01-12 23:22:24 +00001576 if (x != NULL && !really_exiting)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001577 {
1578#ifdef MEM_PROFILE
1579 mem_pre_free(&x);
1580#endif
1581 free(x);
1582 }
1583}
1584
1585#ifndef HAVE_MEMSET
1586 void *
1587vim_memset(ptr, c, size)
1588 void *ptr;
1589 int c;
1590 size_t size;
1591{
1592 char *p = ptr;
1593
1594 while (size-- > 0)
1595 *p++ = c;
1596 return ptr;
1597}
1598#endif
1599
1600#ifdef VIM_MEMCMP
1601/*
1602 * Return zero when "b1" and "b2" are the same for "len" bytes.
1603 * Return non-zero otherwise.
1604 */
1605 int
1606vim_memcmp(b1, b2, len)
1607 void *b1;
1608 void *b2;
1609 size_t len;
1610{
1611 char_u *p1 = (char_u *)b1, *p2 = (char_u *)b2;
1612
1613 for ( ; len > 0; --len)
1614 {
1615 if (*p1 != *p2)
1616 return 1;
1617 ++p1;
1618 ++p2;
1619 }
1620 return 0;
1621}
1622#endif
1623
1624#ifdef VIM_MEMMOVE
1625/*
1626 * Version of memmove() that handles overlapping source and destination.
1627 * For systems that don't have a function that is guaranteed to do that (SYSV).
1628 */
1629 void
1630mch_memmove(dst_arg, src_arg, len)
1631 void *src_arg, *dst_arg;
1632 size_t len;
1633{
1634 /*
1635 * A void doesn't have a size, we use char pointers.
1636 */
1637 char *dst = dst_arg, *src = src_arg;
1638
1639 /* overlap, copy backwards */
1640 if (dst > src && dst < src + len)
1641 {
1642 src += len;
1643 dst += len;
1644 while (len-- > 0)
1645 *--dst = *--src;
1646 }
1647 else /* copy forwards */
1648 while (len-- > 0)
1649 *dst++ = *src++;
1650}
1651#endif
1652
1653#if (!defined(HAVE_STRCASECMP) && !defined(HAVE_STRICMP)) || defined(PROTO)
1654/*
1655 * Compare two strings, ignoring case, using current locale.
1656 * Doesn't work for multi-byte characters.
1657 * return 0 for match, < 0 for smaller, > 0 for bigger
1658 */
1659 int
1660vim_stricmp(s1, s2)
1661 char *s1;
1662 char *s2;
1663{
1664 int i;
1665
1666 for (;;)
1667 {
1668 i = (int)TOLOWER_LOC(*s1) - (int)TOLOWER_LOC(*s2);
1669 if (i != 0)
1670 return i; /* this character different */
1671 if (*s1 == NUL)
1672 break; /* strings match until NUL */
1673 ++s1;
1674 ++s2;
1675 }
1676 return 0; /* strings match */
1677}
1678#endif
1679
1680#if (!defined(HAVE_STRNCASECMP) && !defined(HAVE_STRNICMP)) || defined(PROTO)
1681/*
1682 * Compare two strings, for length "len", ignoring case, using current locale.
1683 * Doesn't work for multi-byte characters.
1684 * return 0 for match, < 0 for smaller, > 0 for bigger
1685 */
1686 int
1687vim_strnicmp(s1, s2, len)
1688 char *s1;
1689 char *s2;
1690 size_t len;
1691{
1692 int i;
1693
1694 while (len > 0)
1695 {
1696 i = (int)TOLOWER_LOC(*s1) - (int)TOLOWER_LOC(*s2);
1697 if (i != 0)
1698 return i; /* this character different */
1699 if (*s1 == NUL)
1700 break; /* strings match until NUL */
1701 ++s1;
1702 ++s2;
1703 --len;
1704 }
1705 return 0; /* strings match */
1706}
1707#endif
1708
1709#if 0 /* currently not used */
1710/*
1711 * Check if string "s2" appears somewhere in "s1" while ignoring case.
1712 * Return NULL if not, a pointer to the first occurrence if it does.
1713 */
1714 char_u *
1715vim_stristr(s1, s2)
1716 char_u *s1;
1717 char_u *s2;
1718{
1719 char_u *p;
1720 int len = STRLEN(s2);
1721 char_u *end = s1 + STRLEN(s1) - len;
1722
1723 for (p = s1; p <= end; ++p)
1724 if (STRNICMP(p, s2, len) == 0)
1725 return p;
1726 return NULL;
1727}
1728#endif
1729
1730/*
1731 * Version of strchr() and strrchr() that handle unsigned char strings
Bram Moolenaar05159a02005-02-26 23:04:13 +00001732 * with characters from 128 to 255 correctly. It also doesn't return a
1733 * pointer to the NUL at the end of the string.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001734 */
1735 char_u *
1736vim_strchr(string, c)
1737 char_u *string;
1738 int c;
1739{
1740 char_u *p;
1741 int b;
1742
1743 p = string;
1744#ifdef FEAT_MBYTE
1745 if (enc_utf8 && c >= 0x80)
1746 {
1747 while (*p != NUL)
1748 {
1749 if (utf_ptr2char(p) == c)
1750 return p;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001751 p += (*mb_ptr2len)(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001752 }
1753 return NULL;
1754 }
1755 if (enc_dbcs != 0 && c > 255)
1756 {
1757 int n2 = c & 0xff;
1758
1759 c = ((unsigned)c >> 8) & 0xff;
1760 while ((b = *p) != NUL)
1761 {
1762 if (b == c && p[1] == n2)
1763 return p;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001764 p += (*mb_ptr2len)(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001765 }
1766 return NULL;
1767 }
1768 if (has_mbyte)
1769 {
1770 while ((b = *p) != NUL)
1771 {
1772 if (b == c)
1773 return p;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001774 p += (*mb_ptr2len)(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001775 }
1776 return NULL;
1777 }
1778#endif
1779 while ((b = *p) != NUL)
1780 {
1781 if (b == c)
1782 return p;
1783 ++p;
1784 }
1785 return NULL;
1786}
1787
1788/*
Bram Moolenaar05159a02005-02-26 23:04:13 +00001789 * Version of strchr() that only works for bytes and handles unsigned char
1790 * strings with characters above 128 correctly. It also doesn't return a
1791 * pointer to the NUL at the end of the string.
1792 */
1793 char_u *
1794vim_strbyte(string, c)
1795 char_u *string;
1796 int c;
1797{
1798 char_u *p = string;
1799
1800 while (*p != NUL)
1801 {
1802 if (*p == c)
1803 return p;
1804 ++p;
1805 }
1806 return NULL;
1807}
1808
1809/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001810 * Search for last occurrence of "c" in "string".
Bram Moolenaarac6e65f2005-08-29 22:25:38 +00001811 * Return NULL if not found.
Bram Moolenaar05159a02005-02-26 23:04:13 +00001812 * Does not handle multi-byte char for "c"!
Bram Moolenaar071d4272004-06-13 20:20:40 +00001813 */
1814 char_u *
1815vim_strrchr(string, c)
1816 char_u *string;
1817 int c;
1818{
1819 char_u *retval = NULL;
Bram Moolenaar05159a02005-02-26 23:04:13 +00001820 char_u *p = string;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001821
Bram Moolenaar05159a02005-02-26 23:04:13 +00001822 while (*p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001823 {
Bram Moolenaar05159a02005-02-26 23:04:13 +00001824 if (*p == c)
1825 retval = p;
1826 mb_ptr_adv(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001827 }
1828 return retval;
1829}
1830
1831/*
1832 * Vim's version of strpbrk(), in case it's missing.
1833 * Don't generate a prototype for this, causes problems when it's not used.
1834 */
1835#ifndef PROTO
1836# ifndef HAVE_STRPBRK
1837# ifdef vim_strpbrk
1838# undef vim_strpbrk
1839# endif
1840 char_u *
1841vim_strpbrk(s, charset)
1842 char_u *s;
1843 char_u *charset;
1844{
1845 while (*s)
1846 {
1847 if (vim_strchr(charset, *s) != NULL)
1848 return s;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001849 mb_ptr_adv(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001850 }
1851 return NULL;
1852}
1853# endif
1854#endif
1855
1856/*
1857 * Vim has its own isspace() function, because on some machines isspace()
1858 * can't handle characters above 128.
1859 */
1860 int
1861vim_isspace(x)
1862 int x;
1863{
1864 return ((x >= 9 && x <= 13) || x == ' ');
1865}
1866
1867/************************************************************************
Bram Moolenaar383f9bc2005-01-19 22:18:32 +00001868 * Functions for handling growing arrays.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001869 */
1870
1871/*
1872 * Clear an allocated growing array.
1873 */
1874 void
1875ga_clear(gap)
1876 garray_T *gap;
1877{
1878 vim_free(gap->ga_data);
1879 ga_init(gap);
1880}
1881
1882/*
1883 * Clear a growing array that contains a list of strings.
1884 */
1885 void
1886ga_clear_strings(gap)
1887 garray_T *gap;
1888{
1889 int i;
1890
1891 for (i = 0; i < gap->ga_len; ++i)
1892 vim_free(((char_u **)(gap->ga_data))[i]);
1893 ga_clear(gap);
1894}
1895
1896/*
1897 * Initialize a growing array. Don't forget to set ga_itemsize and
1898 * ga_growsize! Or use ga_init2().
1899 */
1900 void
1901ga_init(gap)
1902 garray_T *gap;
1903{
1904 gap->ga_data = NULL;
Bram Moolenaar86b68352004-12-27 21:59:20 +00001905 gap->ga_maxlen = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001906 gap->ga_len = 0;
1907}
1908
1909 void
1910ga_init2(gap, itemsize, growsize)
1911 garray_T *gap;
1912 int itemsize;
1913 int growsize;
1914{
1915 ga_init(gap);
1916 gap->ga_itemsize = itemsize;
1917 gap->ga_growsize = growsize;
1918}
1919
1920/*
1921 * Make room in growing array "gap" for at least "n" items.
1922 * Return FAIL for failure, OK otherwise.
1923 */
1924 int
1925ga_grow(gap, n)
1926 garray_T *gap;
1927 int n;
1928{
1929 size_t len;
1930 char_u *pp;
1931
Bram Moolenaar86b68352004-12-27 21:59:20 +00001932 if (gap->ga_maxlen - gap->ga_len < n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001933 {
1934 if (n < gap->ga_growsize)
1935 n = gap->ga_growsize;
1936 len = gap->ga_itemsize * (gap->ga_len + n);
1937 pp = alloc_clear((unsigned)len);
1938 if (pp == NULL)
1939 return FAIL;
Bram Moolenaar86b68352004-12-27 21:59:20 +00001940 gap->ga_maxlen = gap->ga_len + n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001941 if (gap->ga_data != NULL)
1942 {
1943 mch_memmove(pp, gap->ga_data,
1944 (size_t)(gap->ga_itemsize * gap->ga_len));
1945 vim_free(gap->ga_data);
1946 }
1947 gap->ga_data = pp;
1948 }
1949 return OK;
1950}
1951
1952/*
1953 * Concatenate a string to a growarray which contains characters.
1954 * Note: Does NOT copy the NUL at the end!
1955 */
1956 void
1957ga_concat(gap, s)
1958 garray_T *gap;
1959 char_u *s;
1960{
1961 int len = (int)STRLEN(s);
1962
1963 if (ga_grow(gap, len) == OK)
1964 {
1965 mch_memmove((char *)gap->ga_data + gap->ga_len, s, (size_t)len);
1966 gap->ga_len += len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001967 }
1968}
1969
1970/*
1971 * Append one byte to a growarray which contains bytes.
1972 */
1973 void
1974ga_append(gap, c)
1975 garray_T *gap;
1976 int c;
1977{
1978 if (ga_grow(gap, 1) == OK)
1979 {
1980 *((char *)gap->ga_data + gap->ga_len) = c;
1981 ++gap->ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001982 }
1983}
1984
1985/************************************************************************
1986 * functions that use lookup tables for various things, generally to do with
1987 * special key codes.
1988 */
1989
1990/*
1991 * Some useful tables.
1992 */
1993
1994static struct modmasktable
1995{
1996 short mod_mask; /* Bit-mask for particular key modifier */
1997 short mod_flag; /* Bit(s) for particular key modifier */
1998 char_u name; /* Single letter name of modifier */
1999} mod_mask_table[] =
2000{
2001 {MOD_MASK_ALT, MOD_MASK_ALT, (char_u)'M'},
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002002 {MOD_MASK_META, MOD_MASK_META, (char_u)'T'},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002003 {MOD_MASK_CTRL, MOD_MASK_CTRL, (char_u)'C'},
2004 {MOD_MASK_SHIFT, MOD_MASK_SHIFT, (char_u)'S'},
2005 {MOD_MASK_MULTI_CLICK, MOD_MASK_2CLICK, (char_u)'2'},
2006 {MOD_MASK_MULTI_CLICK, MOD_MASK_3CLICK, (char_u)'3'},
2007 {MOD_MASK_MULTI_CLICK, MOD_MASK_4CLICK, (char_u)'4'},
2008#ifdef MACOS
2009 {MOD_MASK_CMD, MOD_MASK_CMD, (char_u)'D'},
2010#endif
2011 /* 'A' must be the last one */
2012 {MOD_MASK_ALT, MOD_MASK_ALT, (char_u)'A'},
2013 {0, 0, NUL}
2014};
2015
2016/*
2017 * Shifted key terminal codes and their unshifted equivalent.
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00002018 * Don't add mouse codes here, they are handled separately!
Bram Moolenaar071d4272004-06-13 20:20:40 +00002019 */
2020#define MOD_KEYS_ENTRY_SIZE 5
2021
2022static char_u modifier_keys_table[] =
2023{
2024/* mod mask with modifier without modifier */
2025 MOD_MASK_SHIFT, '&', '9', '@', '1', /* begin */
2026 MOD_MASK_SHIFT, '&', '0', '@', '2', /* cancel */
2027 MOD_MASK_SHIFT, '*', '1', '@', '4', /* command */
2028 MOD_MASK_SHIFT, '*', '2', '@', '5', /* copy */
2029 MOD_MASK_SHIFT, '*', '3', '@', '6', /* create */
2030 MOD_MASK_SHIFT, '*', '4', 'k', 'D', /* delete char */
2031 MOD_MASK_SHIFT, '*', '5', 'k', 'L', /* delete line */
2032 MOD_MASK_SHIFT, '*', '7', '@', '7', /* end */
2033 MOD_MASK_CTRL, KS_EXTRA, (int)KE_C_END, '@', '7', /* end */
2034 MOD_MASK_SHIFT, '*', '9', '@', '9', /* exit */
2035 MOD_MASK_SHIFT, '*', '0', '@', '0', /* find */
2036 MOD_MASK_SHIFT, '#', '1', '%', '1', /* help */
2037 MOD_MASK_SHIFT, '#', '2', 'k', 'h', /* home */
2038 MOD_MASK_CTRL, KS_EXTRA, (int)KE_C_HOME, 'k', 'h', /* home */
2039 MOD_MASK_SHIFT, '#', '3', 'k', 'I', /* insert */
2040 MOD_MASK_SHIFT, '#', '4', 'k', 'l', /* left arrow */
2041 MOD_MASK_CTRL, KS_EXTRA, (int)KE_C_LEFT, 'k', 'l', /* left arrow */
2042 MOD_MASK_SHIFT, '%', 'a', '%', '3', /* message */
2043 MOD_MASK_SHIFT, '%', 'b', '%', '4', /* move */
2044 MOD_MASK_SHIFT, '%', 'c', '%', '5', /* next */
2045 MOD_MASK_SHIFT, '%', 'd', '%', '7', /* options */
2046 MOD_MASK_SHIFT, '%', 'e', '%', '8', /* previous */
2047 MOD_MASK_SHIFT, '%', 'f', '%', '9', /* print */
2048 MOD_MASK_SHIFT, '%', 'g', '%', '0', /* redo */
2049 MOD_MASK_SHIFT, '%', 'h', '&', '3', /* replace */
2050 MOD_MASK_SHIFT, '%', 'i', 'k', 'r', /* right arr. */
2051 MOD_MASK_CTRL, KS_EXTRA, (int)KE_C_RIGHT, 'k', 'r', /* right arr. */
2052 MOD_MASK_SHIFT, '%', 'j', '&', '5', /* resume */
2053 MOD_MASK_SHIFT, '!', '1', '&', '6', /* save */
2054 MOD_MASK_SHIFT, '!', '2', '&', '7', /* suspend */
2055 MOD_MASK_SHIFT, '!', '3', '&', '8', /* undo */
2056 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_UP, 'k', 'u', /* up arrow */
2057 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_DOWN, 'k', 'd', /* down arrow */
2058
2059 /* vt100 F1 */
2060 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_XF1, KS_EXTRA, (int)KE_XF1,
2061 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_XF2, KS_EXTRA, (int)KE_XF2,
2062 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_XF3, KS_EXTRA, (int)KE_XF3,
2063 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_XF4, KS_EXTRA, (int)KE_XF4,
2064
2065 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F1, 'k', '1', /* F1 */
2066 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F2, 'k', '2',
2067 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F3, 'k', '3',
2068 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F4, 'k', '4',
2069 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F5, 'k', '5',
2070 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F6, 'k', '6',
2071 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F7, 'k', '7',
2072 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F8, 'k', '8',
2073 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F9, 'k', '9',
2074 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F10, 'k', ';', /* F10 */
2075
2076 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F11, 'F', '1',
2077 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F12, 'F', '2',
2078 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F13, 'F', '3',
2079 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F14, 'F', '4',
2080 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F15, 'F', '5',
2081 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F16, 'F', '6',
2082 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F17, 'F', '7',
2083 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F18, 'F', '8',
2084 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F19, 'F', '9',
2085 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F20, 'F', 'A',
2086
2087 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F21, 'F', 'B',
2088 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F22, 'F', 'C',
2089 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F23, 'F', 'D',
2090 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F24, 'F', 'E',
2091 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F25, 'F', 'F',
2092 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F26, 'F', 'G',
2093 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F27, 'F', 'H',
2094 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F28, 'F', 'I',
2095 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F29, 'F', 'J',
2096 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F30, 'F', 'K',
2097
2098 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F31, 'F', 'L',
2099 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F32, 'F', 'M',
2100 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F33, 'F', 'N',
2101 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F34, 'F', 'O',
2102 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F35, 'F', 'P',
2103 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F36, 'F', 'Q',
2104 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F37, 'F', 'R',
2105
2106 /* TAB pseudo code*/
2107 MOD_MASK_SHIFT, 'k', 'B', KS_EXTRA, (int)KE_TAB,
2108
2109 NUL
2110};
2111
2112static struct key_name_entry
2113{
2114 int key; /* Special key code or ascii value */
2115 char_u *name; /* Name of key */
2116} key_names_table[] =
2117{
2118 {' ', (char_u *)"Space"},
2119 {TAB, (char_u *)"Tab"},
2120 {K_TAB, (char_u *)"Tab"},
2121 {NL, (char_u *)"NL"},
2122 {NL, (char_u *)"NewLine"}, /* Alternative name */
2123 {NL, (char_u *)"LineFeed"}, /* Alternative name */
2124 {NL, (char_u *)"LF"}, /* Alternative name */
2125 {CAR, (char_u *)"CR"},
2126 {CAR, (char_u *)"Return"}, /* Alternative name */
2127 {CAR, (char_u *)"Enter"}, /* Alternative name */
2128 {K_BS, (char_u *)"BS"},
2129 {K_BS, (char_u *)"BackSpace"}, /* Alternative name */
2130 {ESC, (char_u *)"Esc"},
2131 {CSI, (char_u *)"CSI"},
2132 {K_CSI, (char_u *)"xCSI"},
2133 {'|', (char_u *)"Bar"},
2134 {'\\', (char_u *)"Bslash"},
2135 {K_DEL, (char_u *)"Del"},
2136 {K_DEL, (char_u *)"Delete"}, /* Alternative name */
2137 {K_KDEL, (char_u *)"kDel"},
2138 {K_UP, (char_u *)"Up"},
2139 {K_DOWN, (char_u *)"Down"},
2140 {K_LEFT, (char_u *)"Left"},
2141 {K_RIGHT, (char_u *)"Right"},
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002142 {K_XUP, (char_u *)"xUp"},
2143 {K_XDOWN, (char_u *)"xDown"},
2144 {K_XLEFT, (char_u *)"xLeft"},
2145 {K_XRIGHT, (char_u *)"xRight"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002146
2147 {K_F1, (char_u *)"F1"},
2148 {K_F2, (char_u *)"F2"},
2149 {K_F3, (char_u *)"F3"},
2150 {K_F4, (char_u *)"F4"},
2151 {K_F5, (char_u *)"F5"},
2152 {K_F6, (char_u *)"F6"},
2153 {K_F7, (char_u *)"F7"},
2154 {K_F8, (char_u *)"F8"},
2155 {K_F9, (char_u *)"F9"},
2156 {K_F10, (char_u *)"F10"},
2157
2158 {K_F11, (char_u *)"F11"},
2159 {K_F12, (char_u *)"F12"},
2160 {K_F13, (char_u *)"F13"},
2161 {K_F14, (char_u *)"F14"},
2162 {K_F15, (char_u *)"F15"},
2163 {K_F16, (char_u *)"F16"},
2164 {K_F17, (char_u *)"F17"},
2165 {K_F18, (char_u *)"F18"},
2166 {K_F19, (char_u *)"F19"},
2167 {K_F20, (char_u *)"F20"},
2168
2169 {K_F21, (char_u *)"F21"},
2170 {K_F22, (char_u *)"F22"},
2171 {K_F23, (char_u *)"F23"},
2172 {K_F24, (char_u *)"F24"},
2173 {K_F25, (char_u *)"F25"},
2174 {K_F26, (char_u *)"F26"},
2175 {K_F27, (char_u *)"F27"},
2176 {K_F28, (char_u *)"F28"},
2177 {K_F29, (char_u *)"F29"},
2178 {K_F30, (char_u *)"F30"},
2179
2180 {K_F31, (char_u *)"F31"},
2181 {K_F32, (char_u *)"F32"},
2182 {K_F33, (char_u *)"F33"},
2183 {K_F34, (char_u *)"F34"},
2184 {K_F35, (char_u *)"F35"},
2185 {K_F36, (char_u *)"F36"},
2186 {K_F37, (char_u *)"F37"},
2187
2188 {K_XF1, (char_u *)"xF1"},
2189 {K_XF2, (char_u *)"xF2"},
2190 {K_XF3, (char_u *)"xF3"},
2191 {K_XF4, (char_u *)"xF4"},
2192
2193 {K_HELP, (char_u *)"Help"},
2194 {K_UNDO, (char_u *)"Undo"},
2195 {K_INS, (char_u *)"Insert"},
2196 {K_INS, (char_u *)"Ins"}, /* Alternative name */
2197 {K_KINS, (char_u *)"kInsert"},
2198 {K_HOME, (char_u *)"Home"},
2199 {K_KHOME, (char_u *)"kHome"},
2200 {K_XHOME, (char_u *)"xHome"},
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002201 {K_ZHOME, (char_u *)"zHome"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002202 {K_END, (char_u *)"End"},
2203 {K_KEND, (char_u *)"kEnd"},
2204 {K_XEND, (char_u *)"xEnd"},
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002205 {K_ZEND, (char_u *)"zEnd"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002206 {K_PAGEUP, (char_u *)"PageUp"},
2207 {K_PAGEDOWN, (char_u *)"PageDown"},
2208 {K_KPAGEUP, (char_u *)"kPageUp"},
2209 {K_KPAGEDOWN, (char_u *)"kPageDown"},
2210
2211 {K_KPLUS, (char_u *)"kPlus"},
2212 {K_KMINUS, (char_u *)"kMinus"},
2213 {K_KDIVIDE, (char_u *)"kDivide"},
2214 {K_KMULTIPLY, (char_u *)"kMultiply"},
2215 {K_KENTER, (char_u *)"kEnter"},
2216 {K_KPOINT, (char_u *)"kPoint"},
2217
2218 {K_K0, (char_u *)"k0"},
2219 {K_K1, (char_u *)"k1"},
2220 {K_K2, (char_u *)"k2"},
2221 {K_K3, (char_u *)"k3"},
2222 {K_K4, (char_u *)"k4"},
2223 {K_K5, (char_u *)"k5"},
2224 {K_K6, (char_u *)"k6"},
2225 {K_K7, (char_u *)"k7"},
2226 {K_K8, (char_u *)"k8"},
2227 {K_K9, (char_u *)"k9"},
2228
2229 {'<', (char_u *)"lt"},
2230
2231 {K_MOUSE, (char_u *)"Mouse"},
2232 {K_NETTERM_MOUSE, (char_u *)"NetMouse"},
2233 {K_DEC_MOUSE, (char_u *)"DecMouse"},
2234 {K_JSBTERM_MOUSE, (char_u *)"JsbMouse"},
2235 {K_PTERM_MOUSE, (char_u *)"PtermMouse"},
2236 {K_LEFTMOUSE, (char_u *)"LeftMouse"},
2237 {K_LEFTMOUSE_NM, (char_u *)"LeftMouseNM"},
2238 {K_LEFTDRAG, (char_u *)"LeftDrag"},
2239 {K_LEFTRELEASE, (char_u *)"LeftRelease"},
2240 {K_LEFTRELEASE_NM, (char_u *)"LeftReleaseNM"},
2241 {K_MIDDLEMOUSE, (char_u *)"MiddleMouse"},
2242 {K_MIDDLEDRAG, (char_u *)"MiddleDrag"},
2243 {K_MIDDLERELEASE, (char_u *)"MiddleRelease"},
2244 {K_RIGHTMOUSE, (char_u *)"RightMouse"},
2245 {K_RIGHTDRAG, (char_u *)"RightDrag"},
2246 {K_RIGHTRELEASE, (char_u *)"RightRelease"},
2247 {K_MOUSEDOWN, (char_u *)"MouseDown"},
2248 {K_MOUSEUP, (char_u *)"MouseUp"},
2249 {K_X1MOUSE, (char_u *)"X1Mouse"},
2250 {K_X1DRAG, (char_u *)"X1Drag"},
2251 {K_X1RELEASE, (char_u *)"X1Release"},
2252 {K_X2MOUSE, (char_u *)"X2Mouse"},
2253 {K_X2DRAG, (char_u *)"X2Drag"},
2254 {K_X2RELEASE, (char_u *)"X2Release"},
2255 {K_DROP, (char_u *)"Drop"},
2256 {K_ZERO, (char_u *)"Nul"},
2257#ifdef FEAT_EVAL
2258 {K_SNR, (char_u *)"SNR"},
2259#endif
2260 {K_PLUG, (char_u *)"Plug"},
2261 {0, NULL}
2262};
2263
2264#define KEY_NAMES_TABLE_LEN (sizeof(key_names_table) / sizeof(struct key_name_entry))
2265
2266#ifdef FEAT_MOUSE
2267static struct mousetable
2268{
2269 int pseudo_code; /* Code for pseudo mouse event */
2270 int button; /* Which mouse button is it? */
2271 int is_click; /* Is it a mouse button click event? */
2272 int is_drag; /* Is it a mouse drag event? */
2273} mouse_table[] =
2274{
2275 {(int)KE_LEFTMOUSE, MOUSE_LEFT, TRUE, FALSE},
2276#ifdef FEAT_GUI
2277 {(int)KE_LEFTMOUSE_NM, MOUSE_LEFT, TRUE, FALSE},
2278#endif
2279 {(int)KE_LEFTDRAG, MOUSE_LEFT, FALSE, TRUE},
2280 {(int)KE_LEFTRELEASE, MOUSE_LEFT, FALSE, FALSE},
2281#ifdef FEAT_GUI
2282 {(int)KE_LEFTRELEASE_NM, MOUSE_LEFT, FALSE, FALSE},
2283#endif
2284 {(int)KE_MIDDLEMOUSE, MOUSE_MIDDLE, TRUE, FALSE},
2285 {(int)KE_MIDDLEDRAG, MOUSE_MIDDLE, FALSE, TRUE},
2286 {(int)KE_MIDDLERELEASE, MOUSE_MIDDLE, FALSE, FALSE},
2287 {(int)KE_RIGHTMOUSE, MOUSE_RIGHT, TRUE, FALSE},
2288 {(int)KE_RIGHTDRAG, MOUSE_RIGHT, FALSE, TRUE},
2289 {(int)KE_RIGHTRELEASE, MOUSE_RIGHT, FALSE, FALSE},
2290 {(int)KE_X1MOUSE, MOUSE_X1, TRUE, FALSE},
2291 {(int)KE_X1DRAG, MOUSE_X1, FALSE, TRUE},
2292 {(int)KE_X1RELEASE, MOUSE_X1, FALSE, FALSE},
2293 {(int)KE_X2MOUSE, MOUSE_X2, TRUE, FALSE},
2294 {(int)KE_X2DRAG, MOUSE_X2, FALSE, TRUE},
2295 {(int)KE_X2RELEASE, MOUSE_X2, FALSE, FALSE},
2296 /* DRAG without CLICK */
2297 {(int)KE_IGNORE, MOUSE_RELEASE, FALSE, TRUE},
2298 /* RELEASE without CLICK */
2299 {(int)KE_IGNORE, MOUSE_RELEASE, FALSE, FALSE},
2300 {0, 0, 0, 0},
2301};
2302#endif /* FEAT_MOUSE */
2303
2304/*
2305 * Return the modifier mask bit (MOD_MASK_*) which corresponds to the given
2306 * modifier name ('S' for Shift, 'C' for Ctrl etc).
2307 */
2308 int
2309name_to_mod_mask(c)
2310 int c;
2311{
2312 int i;
2313
2314 c = TOUPPER_ASC(c);
2315 for (i = 0; mod_mask_table[i].mod_mask != 0; i++)
2316 if (c == mod_mask_table[i].name)
2317 return mod_mask_table[i].mod_flag;
2318 return 0;
2319}
2320
Bram Moolenaar071d4272004-06-13 20:20:40 +00002321/*
2322 * Check if if there is a special key code for "key" that includes the
2323 * modifiers specified.
2324 */
2325 int
2326simplify_key(key, modifiers)
2327 int key;
2328 int *modifiers;
2329{
2330 int i;
2331 int key0;
2332 int key1;
2333
2334 if (*modifiers & (MOD_MASK_SHIFT | MOD_MASK_CTRL | MOD_MASK_ALT))
2335 {
2336 /* TAB is a special case */
2337 if (key == TAB && (*modifiers & MOD_MASK_SHIFT))
2338 {
2339 *modifiers &= ~MOD_MASK_SHIFT;
2340 return K_S_TAB;
2341 }
2342 key0 = KEY2TERMCAP0(key);
2343 key1 = KEY2TERMCAP1(key);
2344 for (i = 0; modifier_keys_table[i] != NUL; i += MOD_KEYS_ENTRY_SIZE)
2345 if (key0 == modifier_keys_table[i + 3]
2346 && key1 == modifier_keys_table[i + 4]
2347 && (*modifiers & modifier_keys_table[i]))
2348 {
2349 *modifiers &= ~modifier_keys_table[i];
2350 return TERMCAP2KEY(modifier_keys_table[i + 1],
2351 modifier_keys_table[i + 2]);
2352 }
2353 }
2354 return key;
2355}
2356
2357/*
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002358 * Change <xHome> to <Home>, <xUp> to <Up>, etc.
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002359 */
2360 int
2361handle_x_keys(key)
2362 int key;
2363{
2364 switch (key)
2365 {
2366 case K_XUP: return K_UP;
2367 case K_XDOWN: return K_DOWN;
2368 case K_XLEFT: return K_LEFT;
2369 case K_XRIGHT: return K_RIGHT;
2370 case K_XHOME: return K_HOME;
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002371 case K_ZHOME: return K_HOME;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002372 case K_XEND: return K_END;
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002373 case K_ZEND: return K_END;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002374 case K_XF1: return K_F1;
2375 case K_XF2: return K_F2;
2376 case K_XF3: return K_F3;
2377 case K_XF4: return K_F4;
2378 case K_S_XF1: return K_S_F1;
2379 case K_S_XF2: return K_S_F2;
2380 case K_S_XF3: return K_S_F3;
2381 case K_S_XF4: return K_S_F4;
2382 }
2383 return key;
2384}
2385
2386/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002387 * Return a string which contains the name of the given key when the given
2388 * modifiers are down.
2389 */
2390 char_u *
2391get_special_key_name(c, modifiers)
2392 int c;
2393 int modifiers;
2394{
2395 static char_u string[MAX_KEY_NAME_LEN + 1];
2396
2397 int i, idx;
2398 int table_idx;
2399 char_u *s;
2400
2401 string[0] = '<';
2402 idx = 1;
2403
2404 /* Key that stands for a normal character. */
2405 if (IS_SPECIAL(c) && KEY2TERMCAP0(c) == KS_KEY)
2406 c = KEY2TERMCAP1(c);
2407
2408 /*
2409 * Translate shifted special keys into unshifted keys and set modifier.
2410 * Same for CTRL and ALT modifiers.
2411 */
2412 if (IS_SPECIAL(c))
2413 {
2414 for (i = 0; modifier_keys_table[i] != 0; i += MOD_KEYS_ENTRY_SIZE)
2415 if ( KEY2TERMCAP0(c) == (int)modifier_keys_table[i + 1]
2416 && (int)KEY2TERMCAP1(c) == (int)modifier_keys_table[i + 2])
2417 {
2418 modifiers |= modifier_keys_table[i];
2419 c = TERMCAP2KEY(modifier_keys_table[i + 3],
2420 modifier_keys_table[i + 4]);
2421 break;
2422 }
2423 }
2424
2425 /* try to find the key in the special key table */
2426 table_idx = find_special_key_in_table(c);
2427
2428 /*
2429 * When not a known special key, and not a printable character, try to
2430 * extract modifiers.
2431 */
2432 if (c > 0
2433#ifdef FEAT_MBYTE
2434 && (*mb_char2len)(c) == 1
2435#endif
2436 )
2437 {
2438 if (table_idx < 0
2439 && (!vim_isprintc(c) || (c & 0x7f) == ' ')
2440 && (c & 0x80))
2441 {
2442 c &= 0x7f;
2443 modifiers |= MOD_MASK_ALT;
2444 /* try again, to find the un-alted key in the special key table */
2445 table_idx = find_special_key_in_table(c);
2446 }
2447 if (table_idx < 0 && !vim_isprintc(c) && c < ' ')
2448 {
2449#ifdef EBCDIC
2450 c = CtrlChar(c);
2451#else
2452 c += '@';
2453#endif
2454 modifiers |= MOD_MASK_CTRL;
2455 }
2456 }
2457
2458 /* translate the modifier into a string */
2459 for (i = 0; mod_mask_table[i].name != 'A'; i++)
2460 if ((modifiers & mod_mask_table[i].mod_mask)
2461 == mod_mask_table[i].mod_flag)
2462 {
2463 string[idx++] = mod_mask_table[i].name;
2464 string[idx++] = (char_u)'-';
2465 }
2466
2467 if (table_idx < 0) /* unknown special key, may output t_xx */
2468 {
2469 if (IS_SPECIAL(c))
2470 {
2471 string[idx++] = 't';
2472 string[idx++] = '_';
2473 string[idx++] = KEY2TERMCAP0(c);
2474 string[idx++] = KEY2TERMCAP1(c);
2475 }
2476 /* Not a special key, only modifiers, output directly */
2477 else
2478 {
2479#ifdef FEAT_MBYTE
2480 if (has_mbyte && (*mb_char2len)(c) > 1)
2481 idx += (*mb_char2bytes)(c, string + idx);
2482 else
2483#endif
2484 if (vim_isprintc(c))
2485 string[idx++] = c;
2486 else
2487 {
2488 s = transchar(c);
2489 while (*s)
2490 string[idx++] = *s++;
2491 }
2492 }
2493 }
2494 else /* use name of special key */
2495 {
2496 STRCPY(string + idx, key_names_table[table_idx].name);
2497 idx = (int)STRLEN(string);
2498 }
2499 string[idx++] = '>';
2500 string[idx] = NUL;
2501 return string;
2502}
2503
2504/*
2505 * Try translating a <> name at (*srcp)[] to dst[].
2506 * Return the number of characters added to dst[], zero for no match.
2507 * If there is a match, srcp is advanced to after the <> name.
2508 * dst[] must be big enough to hold the result (up to six characters)!
2509 */
2510 int
2511trans_special(srcp, dst, keycode)
2512 char_u **srcp;
2513 char_u *dst;
2514 int keycode; /* prefer key code, e.g. K_DEL instead of DEL */
2515{
2516 int modifiers = 0;
2517 int key;
2518 int dlen = 0;
2519
2520 key = find_special_key(srcp, &modifiers, keycode);
2521 if (key == 0)
2522 return 0;
2523
2524 /* Put the appropriate modifier in a string */
2525 if (modifiers != 0)
2526 {
2527 dst[dlen++] = K_SPECIAL;
2528 dst[dlen++] = KS_MODIFIER;
2529 dst[dlen++] = modifiers;
2530 }
2531
2532 if (IS_SPECIAL(key))
2533 {
2534 dst[dlen++] = K_SPECIAL;
2535 dst[dlen++] = KEY2TERMCAP0(key);
2536 dst[dlen++] = KEY2TERMCAP1(key);
2537 }
2538#ifdef FEAT_MBYTE
2539 else if (has_mbyte && !keycode)
2540 dlen += (*mb_char2bytes)(key, dst + dlen);
2541#endif
2542 else if (keycode)
2543 dlen = (int)(add_char2buf(key, dst + dlen) - dst);
2544 else
2545 dst[dlen++] = key;
2546
2547 return dlen;
2548}
2549
2550/*
2551 * Try translating a <> name at (*srcp)[], return the key and modifiers.
2552 * srcp is advanced to after the <> name.
2553 * returns 0 if there is no match.
2554 */
2555 int
2556find_special_key(srcp, modp, keycode)
2557 char_u **srcp;
2558 int *modp;
2559 int keycode; /* prefer key code, e.g. K_DEL instead of DEL */
2560{
2561 char_u *last_dash;
2562 char_u *end_of_name;
2563 char_u *src;
2564 char_u *bp;
2565 int modifiers;
2566 int bit;
2567 int key;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002568 unsigned long n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002569
2570 src = *srcp;
2571 if (src[0] != '<')
2572 return 0;
2573
2574 /* Find end of modifier list */
2575 last_dash = src;
2576 for (bp = src + 1; *bp == '-' || vim_isIDc(*bp); bp++)
2577 {
2578 if (*bp == '-')
2579 {
2580 last_dash = bp;
2581 if (bp[1] != NUL && bp[2] == '>')
2582 ++bp; /* anything accepted, like <C-?> */
2583 }
2584 if (bp[0] == 't' && bp[1] == '_' && bp[2] && bp[3])
2585 bp += 3; /* skip t_xx, xx may be '-' or '>' */
2586 }
2587
2588 if (*bp == '>') /* found matching '>' */
2589 {
2590 end_of_name = bp + 1;
2591
2592 if (STRNICMP(src + 1, "char-", 5) == 0 && VIM_ISDIGIT(src[6]))
2593 {
2594 /* <Char-123> or <Char-033> or <Char-0x33> */
2595 vim_str2nr(src + 6, NULL, NULL, TRUE, TRUE, NULL, &n);
2596 *modp = 0;
2597 *srcp = end_of_name;
2598 return (int)n;
2599 }
2600
2601 /* Which modifiers are given? */
2602 modifiers = 0x0;
2603 for (bp = src + 1; bp < last_dash; bp++)
2604 {
2605 if (*bp != '-')
2606 {
2607 bit = name_to_mod_mask(*bp);
2608 if (bit == 0x0)
2609 break; /* Illegal modifier name */
2610 modifiers |= bit;
2611 }
2612 }
2613
2614 /*
2615 * Legal modifier name.
2616 */
2617 if (bp >= last_dash)
2618 {
2619 /*
2620 * Modifier with single letter, or special key name.
2621 */
2622 if (modifiers != 0 && last_dash[2] == '>')
2623 key = last_dash[1];
2624 else
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002625 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002626 key = get_special_key_code(last_dash + 1);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002627 key = handle_x_keys(key);
2628 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002629
2630 /*
2631 * get_special_key_code() may return NUL for invalid
2632 * special key name.
2633 */
2634 if (key != NUL)
2635 {
2636 /*
2637 * Only use a modifier when there is no special key code that
2638 * includes the modifier.
2639 */
2640 key = simplify_key(key, &modifiers);
2641
2642 if (!keycode)
2643 {
2644 /* don't want keycode, use single byte code */
2645 if (key == K_BS)
2646 key = BS;
2647 else if (key == K_DEL || key == K_KDEL)
2648 key = DEL;
2649 }
2650
2651 /*
2652 * Normal Key with modifier: Try to make a single byte code.
2653 */
2654 if (!IS_SPECIAL(key))
2655 key = extract_modifiers(key, &modifiers);
2656
2657 *modp = modifiers;
2658 *srcp = end_of_name;
2659 return key;
2660 }
2661 }
2662 }
2663 return 0;
2664}
2665
2666/*
2667 * Try to include modifiers in the key.
2668 * Changes "Shift-a" to 'A', "Alt-A" to 0xc0, etc.
2669 */
2670 int
2671extract_modifiers(key, modp)
2672 int key;
2673 int *modp;
2674{
2675 int modifiers = *modp;
2676
2677#ifdef MACOS
2678 /* Command-key really special, No fancynest */
2679 if (!(modifiers & MOD_MASK_CMD))
2680#endif
2681 if ((modifiers & MOD_MASK_SHIFT) && ASCII_ISALPHA(key))
2682 {
2683 key = TOUPPER_ASC(key);
2684 modifiers &= ~MOD_MASK_SHIFT;
2685 }
2686 if ((modifiers & MOD_MASK_CTRL)
2687#ifdef EBCDIC
2688 /* * TODO: EBCDIC Better use:
2689 * && (Ctrl_chr(key) || key == '?')
2690 * ??? */
2691 && strchr("?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_", key)
2692 != NULL
2693#else
2694 && ((key >= '?' && key <= '_') || ASCII_ISALPHA(key))
2695#endif
2696 )
2697 {
2698 key = Ctrl_chr(key);
2699 modifiers &= ~MOD_MASK_CTRL;
2700 /* <C-@> is <Nul> */
2701 if (key == 0)
2702 key = K_ZERO;
2703 }
2704#ifdef MACOS
2705 /* Command-key really special, No fancynest */
2706 if (!(modifiers & MOD_MASK_CMD))
2707#endif
2708 if ((modifiers & MOD_MASK_ALT) && key < 0x80
2709#ifdef FEAT_MBYTE
2710 && !enc_dbcs /* avoid creating a lead byte */
2711#endif
2712 )
2713 {
2714 key |= 0x80;
2715 modifiers &= ~MOD_MASK_ALT; /* remove the META modifier */
2716 }
2717
2718 *modp = modifiers;
2719 return key;
2720}
2721
2722/*
2723 * Try to find key "c" in the special key table.
2724 * Return the index when found, -1 when not found.
2725 */
2726 int
2727find_special_key_in_table(c)
2728 int c;
2729{
2730 int i;
2731
2732 for (i = 0; key_names_table[i].name != NULL; i++)
2733 if (c == key_names_table[i].key)
2734 break;
2735 if (key_names_table[i].name == NULL)
2736 i = -1;
2737 return i;
2738}
2739
2740/*
2741 * Find the special key with the given name (the given string does not have to
2742 * end with NUL, the name is assumed to end before the first non-idchar).
2743 * If the name starts with "t_" the next two characters are interpreted as a
2744 * termcap name.
2745 * Return the key code, or 0 if not found.
2746 */
2747 int
2748get_special_key_code(name)
2749 char_u *name;
2750{
2751 char_u *table_name;
2752 char_u string[3];
2753 int i, j;
2754
2755 /*
2756 * If it's <t_xx> we get the code for xx from the termcap
2757 */
2758 if (name[0] == 't' && name[1] == '_' && name[2] != NUL && name[3] != NUL)
2759 {
2760 string[0] = name[2];
2761 string[1] = name[3];
2762 string[2] = NUL;
2763 if (add_termcap_entry(string, FALSE) == OK)
2764 return TERMCAP2KEY(name[2], name[3]);
2765 }
2766 else
2767 for (i = 0; key_names_table[i].name != NULL; i++)
2768 {
2769 table_name = key_names_table[i].name;
2770 for (j = 0; vim_isIDc(name[j]) && table_name[j] != NUL; j++)
2771 if (TOLOWER_ASC(table_name[j]) != TOLOWER_ASC(name[j]))
2772 break;
2773 if (!vim_isIDc(name[j]) && table_name[j] == NUL)
2774 return key_names_table[i].key;
2775 }
2776 return 0;
2777}
2778
2779#ifdef FEAT_CMDL_COMPL
2780 char_u *
2781get_key_name(i)
2782 int i;
2783{
2784 if (i >= KEY_NAMES_TABLE_LEN)
2785 return NULL;
2786 return key_names_table[i].name;
2787}
2788#endif
2789
2790#ifdef FEAT_MOUSE
2791/*
2792 * Look up the given mouse code to return the relevant information in the other
2793 * arguments. Return which button is down or was released.
2794 */
2795 int
2796get_mouse_button(code, is_click, is_drag)
2797 int code;
2798 int *is_click;
2799 int *is_drag;
2800{
2801 int i;
2802
2803 for (i = 0; mouse_table[i].pseudo_code; i++)
2804 if (code == mouse_table[i].pseudo_code)
2805 {
2806 *is_click = mouse_table[i].is_click;
2807 *is_drag = mouse_table[i].is_drag;
2808 return mouse_table[i].button;
2809 }
2810 return 0; /* Shouldn't get here */
2811}
2812
2813/*
2814 * Return the appropriate pseudo mouse event token (KE_LEFTMOUSE etc) based on
2815 * the given information about which mouse button is down, and whether the
2816 * mouse was clicked, dragged or released.
2817 */
2818 int
2819get_pseudo_mouse_code(button, is_click, is_drag)
2820 int button; /* eg MOUSE_LEFT */
2821 int is_click;
2822 int is_drag;
2823{
2824 int i;
2825
2826 for (i = 0; mouse_table[i].pseudo_code; i++)
2827 if (button == mouse_table[i].button
2828 && is_click == mouse_table[i].is_click
2829 && is_drag == mouse_table[i].is_drag)
2830 {
2831#ifdef FEAT_GUI
Bram Moolenaarc91506a2005-04-24 22:04:21 +00002832 /* Trick: a non mappable left click and release has mouse_col -1
2833 * or added MOUSE_COLOFF. Used for 'mousefocus' in
2834 * gui_mouse_moved() */
2835 if (mouse_col < 0 || mouse_col > MOUSE_COLOFF)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002836 {
Bram Moolenaarc91506a2005-04-24 22:04:21 +00002837 if (mouse_col < 0)
2838 mouse_col = 0;
2839 else
2840 mouse_col -= MOUSE_COLOFF;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002841 if (mouse_table[i].pseudo_code == (int)KE_LEFTMOUSE)
2842 return (int)KE_LEFTMOUSE_NM;
2843 if (mouse_table[i].pseudo_code == (int)KE_LEFTRELEASE)
2844 return (int)KE_LEFTRELEASE_NM;
2845 }
2846#endif
2847 return mouse_table[i].pseudo_code;
2848 }
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00002849 return (int)KE_IGNORE; /* not recognized, ignore it */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002850}
2851#endif /* FEAT_MOUSE */
2852
2853/*
2854 * Return the current end-of-line type: EOL_DOS, EOL_UNIX or EOL_MAC.
2855 */
2856 int
2857get_fileformat(buf)
2858 buf_T *buf;
2859{
2860 int c = *buf->b_p_ff;
2861
2862 if (buf->b_p_bin || c == 'u')
2863 return EOL_UNIX;
2864 if (c == 'm')
2865 return EOL_MAC;
2866 return EOL_DOS;
2867}
2868
2869/*
2870 * Like get_fileformat(), but override 'fileformat' with "p" for "++opt=val"
2871 * argument.
2872 */
2873 int
2874get_fileformat_force(buf, eap)
2875 buf_T *buf;
2876 exarg_T *eap; /* can be NULL! */
2877{
2878 int c;
2879
2880 if (eap != NULL && eap->force_ff != 0)
2881 c = eap->cmd[eap->force_ff];
2882 else
2883 {
2884 if ((eap != NULL && eap->force_bin != 0)
2885 ? (eap->force_bin == FORCE_BIN) : buf->b_p_bin)
2886 return EOL_UNIX;
2887 c = *buf->b_p_ff;
2888 }
2889 if (c == 'u')
2890 return EOL_UNIX;
2891 if (c == 'm')
2892 return EOL_MAC;
2893 return EOL_DOS;
2894}
2895
2896/*
2897 * Set the current end-of-line type to EOL_DOS, EOL_UNIX or EOL_MAC.
2898 * Sets both 'textmode' and 'fileformat'.
2899 * Note: Does _not_ set global value of 'textmode'!
2900 */
2901 void
2902set_fileformat(t, opt_flags)
2903 int t;
2904 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
2905{
2906 char *p = NULL;
2907
2908 switch (t)
2909 {
2910 case EOL_DOS:
2911 p = FF_DOS;
2912 curbuf->b_p_tx = TRUE;
2913 break;
2914 case EOL_UNIX:
2915 p = FF_UNIX;
2916 curbuf->b_p_tx = FALSE;
2917 break;
2918 case EOL_MAC:
2919 p = FF_MAC;
2920 curbuf->b_p_tx = FALSE;
2921 break;
2922 }
2923 if (p != NULL)
2924 set_string_option_direct((char_u *)"ff", -1, (char_u *)p,
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00002925 OPT_FREE | opt_flags, 0);
2926
Bram Moolenaar071d4272004-06-13 20:20:40 +00002927#ifdef FEAT_WINDOWS
Bram Moolenaarf740b292006-02-16 22:11:02 +00002928 /* This may cause the buffer to become (un)modified. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002929 check_status(curbuf);
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002930 redraw_tabline = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002931#endif
2932#ifdef FEAT_TITLE
2933 need_maketitle = TRUE; /* set window title later */
2934#endif
2935}
2936
2937/*
2938 * Return the default fileformat from 'fileformats'.
2939 */
2940 int
2941default_fileformat()
2942{
2943 switch (*p_ffs)
2944 {
2945 case 'm': return EOL_MAC;
2946 case 'd': return EOL_DOS;
2947 }
2948 return EOL_UNIX;
2949}
2950
2951/*
2952 * Call shell. Calls mch_call_shell, with 'shellxquote' added.
2953 */
2954 int
2955call_shell(cmd, opt)
2956 char_u *cmd;
2957 int opt;
2958{
2959 char_u *ncmd;
2960 int retval;
Bram Moolenaar05159a02005-02-26 23:04:13 +00002961#ifdef FEAT_PROFILE
2962 proftime_T wait_time;
2963#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002964
2965 if (p_verbose > 3)
2966 {
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00002967 verbose_enter();
Bram Moolenaar051b7822005-05-19 21:00:46 +00002968 smsg((char_u *)_("Calling shell to execute: \"%s\""),
Bram Moolenaar071d4272004-06-13 20:20:40 +00002969 cmd == NULL ? p_sh : cmd);
2970 out_char('\n');
2971 cursor_on();
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00002972 verbose_leave();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002973 }
2974
Bram Moolenaar05159a02005-02-26 23:04:13 +00002975#ifdef FEAT_PROFILE
Bram Moolenaar01265852006-03-20 21:50:15 +00002976 if (do_profiling == PROF_YES)
Bram Moolenaar05159a02005-02-26 23:04:13 +00002977 prof_child_enter(&wait_time);
2978#endif
2979
Bram Moolenaar071d4272004-06-13 20:20:40 +00002980 if (*p_sh == NUL)
2981 {
2982 EMSG(_(e_shellempty));
2983 retval = -1;
2984 }
2985 else
2986 {
2987#ifdef FEAT_GUI_MSWIN
2988 /* Don't hide the pointer while executing a shell command. */
2989 gui_mch_mousehide(FALSE);
2990#endif
2991#ifdef FEAT_GUI
2992 ++hold_gui_events;
2993#endif
2994 /* The external command may update a tags file, clear cached tags. */
2995 tag_freematch();
2996
2997 if (cmd == NULL || *p_sxq == NUL)
2998 retval = mch_call_shell(cmd, opt);
2999 else
3000 {
3001 ncmd = alloc((unsigned)(STRLEN(cmd) + STRLEN(p_sxq) * 2 + 1));
3002 if (ncmd != NULL)
3003 {
3004 STRCPY(ncmd, p_sxq);
3005 STRCAT(ncmd, cmd);
3006 STRCAT(ncmd, p_sxq);
3007 retval = mch_call_shell(ncmd, opt);
3008 vim_free(ncmd);
3009 }
3010 else
3011 retval = -1;
3012 }
3013#ifdef FEAT_GUI
3014 --hold_gui_events;
3015#endif
3016 /*
3017 * Check the window size, in case it changed while executing the
3018 * external command.
3019 */
3020 shell_resized_check();
3021 }
3022
3023#ifdef FEAT_EVAL
3024 set_vim_var_nr(VV_SHELL_ERROR, (long)retval);
Bram Moolenaar05159a02005-02-26 23:04:13 +00003025# ifdef FEAT_PROFILE
Bram Moolenaar01265852006-03-20 21:50:15 +00003026 if (do_profiling == PROF_YES)
Bram Moolenaar05159a02005-02-26 23:04:13 +00003027 prof_child_exit(&wait_time);
3028# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003029#endif
3030
3031 return retval;
3032}
3033
3034/*
Bram Moolenaar01265852006-03-20 21:50:15 +00003035 * VISUAL, SELECTMODE and OP_PENDING State are never set, they are equal to
3036 * NORMAL State with a condition. This function returns the real State.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003037 */
3038 int
3039get_real_state()
3040{
3041 if (State & NORMAL)
3042 {
3043#ifdef FEAT_VISUAL
3044 if (VIsual_active)
Bram Moolenaar01265852006-03-20 21:50:15 +00003045 {
3046 if (VIsual_select)
3047 return SELECTMODE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003048 return VISUAL;
Bram Moolenaar01265852006-03-20 21:50:15 +00003049 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003050 else
3051#endif
3052 if (finish_op)
Bram Moolenaar01265852006-03-20 21:50:15 +00003053 return OP_PENDING;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003054 }
3055 return State;
3056}
3057
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003058#if defined(FEAT_MBYTE) || defined(PROTO)
3059/*
3060 * Return TRUE if "p" points to just after a path separator.
3061 * Take care of multi-byte characters.
3062 * "b" must point to the start of the file name
3063 */
3064 int
3065after_pathsep(b, p)
3066 char_u *b;
3067 char_u *p;
3068{
3069 return vim_ispathsep(p[-1])
3070 && (!has_mbyte || (*mb_head_off)(b, p - 1) == 0);
3071}
3072#endif
3073
3074/*
3075 * Return TRUE if file names "f1" and "f2" are in the same directory.
3076 * "f1" may be a short name, "f2" must be a full path.
3077 */
3078 int
3079same_directory(f1, f2)
3080 char_u *f1;
3081 char_u *f2;
3082{
3083 char_u ffname[MAXPATHL];
3084 char_u *t1;
3085 char_u *t2;
3086
3087 /* safety check */
3088 if (f1 == NULL || f2 == NULL)
3089 return FALSE;
3090
3091 (void)vim_FullName(f1, ffname, MAXPATHL, FALSE);
3092 t1 = gettail_sep(ffname);
3093 t2 = gettail_sep(f2);
3094 return (t1 - ffname == t2 - f2
3095 && pathcmp((char *)ffname, (char *)f2, (int)(t1 - ffname)) == 0);
3096}
3097
Bram Moolenaar071d4272004-06-13 20:20:40 +00003098#if defined(FEAT_SESSION) || defined(MSWIN) || defined(FEAT_GUI_MAC) \
Bram Moolenaar9372a112005-12-06 19:59:18 +00003099 || ((defined(FEAT_GUI_GTK)) \
Bram Moolenaar843ee412004-06-30 16:16:41 +00003100 && ( defined(FEAT_WINDOWS) || defined(FEAT_DND)) ) \
Bram Moolenaar071d4272004-06-13 20:20:40 +00003101 || defined(FEAT_SUN_WORKSHOP) || defined(FEAT_NETBEANS_INTG) \
3102 || defined(PROTO)
3103/*
3104 * Change to a file's directory.
3105 * Caller must call shorten_fnames()!
3106 * Return OK or FAIL.
3107 */
3108 int
3109vim_chdirfile(fname)
3110 char_u *fname;
3111{
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003112 char_u dir[MAXPATHL];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003113
Bram Moolenaarbbebc852005-07-18 21:47:53 +00003114 vim_strncpy(dir, fname, MAXPATHL - 1);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003115 *gettail_sep(dir) = NUL;
3116 return mch_chdir((char *)dir) == 0 ? OK : FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003117}
3118#endif
3119
3120#if defined(STAT_IGNORES_SLASH) || defined(PROTO)
3121/*
3122 * Check if "name" ends in a slash and is not a directory.
3123 * Used for systems where stat() ignores a trailing slash on a file name.
3124 * The Vim code assumes a trailing slash is only ignored for a directory.
3125 */
3126 int
3127illegal_slash(name)
3128 char *name;
3129{
3130 if (name[0] == NUL)
3131 return FALSE; /* no file name is not illegal */
3132 if (name[strlen(name) - 1] != '/')
3133 return FALSE; /* no trailing slash */
3134 if (mch_isdir((char_u *)name))
3135 return FALSE; /* trailing slash for a directory */
3136 return TRUE;
3137}
3138#endif
3139
3140#if defined(CURSOR_SHAPE) || defined(PROTO)
3141
3142/*
3143 * Handling of cursor and mouse pointer shapes in various modes.
3144 */
3145
3146cursorentry_T shape_table[SHAPE_IDX_COUNT] =
3147{
3148 /* The values will be filled in from the 'guicursor' and 'mouseshape'
3149 * defaults when Vim starts.
3150 * Adjust the SHAPE_IDX_ defines when making changes! */
3151 {0, 0, 0, 700L, 400L, 250L, 0, 0, "n", SHAPE_CURSOR+SHAPE_MOUSE},
3152 {0, 0, 0, 700L, 400L, 250L, 0, 0, "v", SHAPE_CURSOR+SHAPE_MOUSE},
3153 {0, 0, 0, 700L, 400L, 250L, 0, 0, "i", SHAPE_CURSOR+SHAPE_MOUSE},
3154 {0, 0, 0, 700L, 400L, 250L, 0, 0, "r", SHAPE_CURSOR+SHAPE_MOUSE},
3155 {0, 0, 0, 700L, 400L, 250L, 0, 0, "c", SHAPE_CURSOR+SHAPE_MOUSE},
3156 {0, 0, 0, 700L, 400L, 250L, 0, 0, "ci", SHAPE_CURSOR+SHAPE_MOUSE},
3157 {0, 0, 0, 700L, 400L, 250L, 0, 0, "cr", SHAPE_CURSOR+SHAPE_MOUSE},
3158 {0, 0, 0, 700L, 400L, 250L, 0, 0, "o", SHAPE_CURSOR+SHAPE_MOUSE},
3159 {0, 0, 0, 700L, 400L, 250L, 0, 0, "ve", SHAPE_CURSOR+SHAPE_MOUSE},
3160 {0, 0, 0, 0L, 0L, 0L, 0, 0, "e", SHAPE_MOUSE},
3161 {0, 0, 0, 0L, 0L, 0L, 0, 0, "s", SHAPE_MOUSE},
3162 {0, 0, 0, 0L, 0L, 0L, 0, 0, "sd", SHAPE_MOUSE},
3163 {0, 0, 0, 0L, 0L, 0L, 0, 0, "vs", SHAPE_MOUSE},
3164 {0, 0, 0, 0L, 0L, 0L, 0, 0, "vd", SHAPE_MOUSE},
3165 {0, 0, 0, 0L, 0L, 0L, 0, 0, "m", SHAPE_MOUSE},
3166 {0, 0, 0, 0L, 0L, 0L, 0, 0, "ml", SHAPE_MOUSE},
3167 {0, 0, 0, 100L, 100L, 100L, 0, 0, "sm", SHAPE_CURSOR},
3168};
3169
3170#ifdef FEAT_MOUSESHAPE
3171/*
3172 * Table with names for mouse shapes. Keep in sync with all the tables for
3173 * mch_set_mouse_shape()!.
3174 */
3175static char * mshape_names[] =
3176{
3177 "arrow", /* default, must be the first one */
3178 "blank", /* hidden */
3179 "beam",
3180 "updown",
3181 "udsizing",
3182 "leftright",
3183 "lrsizing",
3184 "busy",
3185 "no",
3186 "crosshair",
3187 "hand1",
3188 "hand2",
3189 "pencil",
3190 "question",
3191 "rightup-arrow",
3192 "up-arrow",
3193 NULL
3194};
3195#endif
3196
3197/*
3198 * Parse the 'guicursor' option ("what" is SHAPE_CURSOR) or 'mouseshape'
3199 * ("what" is SHAPE_MOUSE).
3200 * Returns error message for an illegal option, NULL otherwise.
3201 */
3202 char_u *
3203parse_shape_opt(what)
3204 int what;
3205{
3206 char_u *modep;
3207 char_u *colonp;
3208 char_u *commap;
3209 char_u *slashp;
3210 char_u *p, *endp;
3211 int idx = 0; /* init for GCC */
3212 int all_idx;
3213 int len;
3214 int i;
3215 long n;
3216 int found_ve = FALSE; /* found "ve" flag */
3217 int round;
3218
3219 /*
3220 * First round: check for errors; second round: do it for real.
3221 */
3222 for (round = 1; round <= 2; ++round)
3223 {
3224 /*
3225 * Repeat for all comma separated parts.
3226 */
3227#ifdef FEAT_MOUSESHAPE
3228 if (what == SHAPE_MOUSE)
3229 modep = p_mouseshape;
3230 else
3231#endif
3232 modep = p_guicursor;
3233 while (*modep != NUL)
3234 {
3235 colonp = vim_strchr(modep, ':');
3236 if (colonp == NULL)
3237 return (char_u *)N_("E545: Missing colon");
3238 if (colonp == modep)
3239 return (char_u *)N_("E546: Illegal mode");
3240 commap = vim_strchr(modep, ',');
3241
3242 /*
3243 * Repeat for all mode's before the colon.
3244 * For the 'a' mode, we loop to handle all the modes.
3245 */
3246 all_idx = -1;
3247 while (modep < colonp || all_idx >= 0)
3248 {
3249 if (all_idx < 0)
3250 {
3251 /* Find the mode. */
3252 if (modep[1] == '-' || modep[1] == ':')
3253 len = 1;
3254 else
3255 len = 2;
3256 if (len == 1 && TOLOWER_ASC(modep[0]) == 'a')
3257 all_idx = SHAPE_IDX_COUNT - 1;
3258 else
3259 {
3260 for (idx = 0; idx < SHAPE_IDX_COUNT; ++idx)
3261 if (STRNICMP(modep, shape_table[idx].name, len)
3262 == 0)
3263 break;
3264 if (idx == SHAPE_IDX_COUNT
3265 || (shape_table[idx].used_for & what) == 0)
3266 return (char_u *)N_("E546: Illegal mode");
3267 if (len == 2 && modep[0] == 'v' && modep[1] == 'e')
3268 found_ve = TRUE;
3269 }
3270 modep += len + 1;
3271 }
3272
3273 if (all_idx >= 0)
3274 idx = all_idx--;
3275 else if (round == 2)
3276 {
3277#ifdef FEAT_MOUSESHAPE
3278 if (what == SHAPE_MOUSE)
3279 {
3280 /* Set the default, for the missing parts */
3281 shape_table[idx].mshape = 0;
3282 }
3283 else
3284#endif
3285 {
3286 /* Set the defaults, for the missing parts */
3287 shape_table[idx].shape = SHAPE_BLOCK;
3288 shape_table[idx].blinkwait = 700L;
3289 shape_table[idx].blinkon = 400L;
3290 shape_table[idx].blinkoff = 250L;
3291 }
3292 }
3293
3294 /* Parse the part after the colon */
3295 for (p = colonp + 1; *p && *p != ','; )
3296 {
3297#ifdef FEAT_MOUSESHAPE
3298 if (what == SHAPE_MOUSE)
3299 {
3300 for (i = 0; ; ++i)
3301 {
3302 if (mshape_names[i] == NULL)
3303 {
3304 if (!VIM_ISDIGIT(*p))
3305 return (char_u *)N_("E547: Illegal mouseshape");
3306 if (round == 2)
3307 shape_table[idx].mshape =
3308 getdigits(&p) + MSHAPE_NUMBERED;
3309 else
3310 (void)getdigits(&p);
3311 break;
3312 }
3313 len = (int)STRLEN(mshape_names[i]);
3314 if (STRNICMP(p, mshape_names[i], len) == 0)
3315 {
3316 if (round == 2)
3317 shape_table[idx].mshape = i;
3318 p += len;
3319 break;
3320 }
3321 }
3322 }
3323 else /* if (what == SHAPE_MOUSE) */
3324#endif
3325 {
3326 /*
3327 * First handle the ones with a number argument.
3328 */
3329 i = *p;
3330 len = 0;
3331 if (STRNICMP(p, "ver", 3) == 0)
3332 len = 3;
3333 else if (STRNICMP(p, "hor", 3) == 0)
3334 len = 3;
3335 else if (STRNICMP(p, "blinkwait", 9) == 0)
3336 len = 9;
3337 else if (STRNICMP(p, "blinkon", 7) == 0)
3338 len = 7;
3339 else if (STRNICMP(p, "blinkoff", 8) == 0)
3340 len = 8;
3341 if (len != 0)
3342 {
3343 p += len;
3344 if (!VIM_ISDIGIT(*p))
3345 return (char_u *)N_("E548: digit expected");
3346 n = getdigits(&p);
3347 if (len == 3) /* "ver" or "hor" */
3348 {
3349 if (n == 0)
3350 return (char_u *)N_("E549: Illegal percentage");
3351 if (round == 2)
3352 {
3353 if (TOLOWER_ASC(i) == 'v')
3354 shape_table[idx].shape = SHAPE_VER;
3355 else
3356 shape_table[idx].shape = SHAPE_HOR;
3357 shape_table[idx].percentage = n;
3358 }
3359 }
3360 else if (round == 2)
3361 {
3362 if (len == 9)
3363 shape_table[idx].blinkwait = n;
3364 else if (len == 7)
3365 shape_table[idx].blinkon = n;
3366 else
3367 shape_table[idx].blinkoff = n;
3368 }
3369 }
3370 else if (STRNICMP(p, "block", 5) == 0)
3371 {
3372 if (round == 2)
3373 shape_table[idx].shape = SHAPE_BLOCK;
3374 p += 5;
3375 }
3376 else /* must be a highlight group name then */
3377 {
3378 endp = vim_strchr(p, '-');
3379 if (commap == NULL) /* last part */
3380 {
3381 if (endp == NULL)
3382 endp = p + STRLEN(p); /* find end of part */
3383 }
3384 else if (endp > commap || endp == NULL)
3385 endp = commap;
3386 slashp = vim_strchr(p, '/');
3387 if (slashp != NULL && slashp < endp)
3388 {
3389 /* "group/langmap_group" */
3390 i = syn_check_group(p, (int)(slashp - p));
3391 p = slashp + 1;
3392 }
3393 if (round == 2)
3394 {
3395 shape_table[idx].id = syn_check_group(p,
3396 (int)(endp - p));
3397 shape_table[idx].id_lm = shape_table[idx].id;
3398 if (slashp != NULL && slashp < endp)
3399 shape_table[idx].id = i;
3400 }
3401 p = endp;
3402 }
3403 } /* if (what != SHAPE_MOUSE) */
3404
3405 if (*p == '-')
3406 ++p;
3407 }
3408 }
3409 modep = p;
3410 if (*modep == ',')
3411 ++modep;
3412 }
3413 }
3414
3415 /* If the 's' flag is not given, use the 'v' cursor for 's' */
3416 if (!found_ve)
3417 {
3418#ifdef FEAT_MOUSESHAPE
3419 if (what == SHAPE_MOUSE)
3420 {
3421 shape_table[SHAPE_IDX_VE].mshape = shape_table[SHAPE_IDX_V].mshape;
3422 }
3423 else
3424#endif
3425 {
3426 shape_table[SHAPE_IDX_VE].shape = shape_table[SHAPE_IDX_V].shape;
3427 shape_table[SHAPE_IDX_VE].percentage =
3428 shape_table[SHAPE_IDX_V].percentage;
3429 shape_table[SHAPE_IDX_VE].blinkwait =
3430 shape_table[SHAPE_IDX_V].blinkwait;
3431 shape_table[SHAPE_IDX_VE].blinkon =
3432 shape_table[SHAPE_IDX_V].blinkon;
3433 shape_table[SHAPE_IDX_VE].blinkoff =
3434 shape_table[SHAPE_IDX_V].blinkoff;
3435 shape_table[SHAPE_IDX_VE].id = shape_table[SHAPE_IDX_V].id;
3436 shape_table[SHAPE_IDX_VE].id_lm = shape_table[SHAPE_IDX_V].id_lm;
3437 }
3438 }
3439
3440 return NULL;
3441}
3442
Bram Moolenaarac6e65f2005-08-29 22:25:38 +00003443# if defined(MCH_CURSOR_SHAPE) || defined(FEAT_GUI) \
3444 || defined(FEAT_MOUSESHAPE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003445/*
3446 * Return the index into shape_table[] for the current mode.
3447 * When "mouse" is TRUE, consider indexes valid for the mouse pointer.
3448 */
3449 int
3450get_shape_idx(mouse)
3451 int mouse;
3452{
3453#ifdef FEAT_MOUSESHAPE
3454 if (mouse && (State == HITRETURN || State == ASKMORE))
3455 {
3456# ifdef FEAT_GUI
Bram Moolenaar9588a0f2005-01-08 21:45:39 +00003457 int x, y;
3458 gui_mch_getmouse(&x, &y);
3459 if (Y_2_ROW(y) == Rows - 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003460 return SHAPE_IDX_MOREL;
3461# endif
3462 return SHAPE_IDX_MORE;
3463 }
3464 if (mouse && drag_status_line)
3465 return SHAPE_IDX_SDRAG;
3466# ifdef FEAT_VERTSPLIT
3467 if (mouse && drag_sep_line)
3468 return SHAPE_IDX_VDRAG;
3469# endif
3470#endif
3471 if (!mouse && State == SHOWMATCH)
3472 return SHAPE_IDX_SM;
3473#ifdef FEAT_VREPLACE
3474 if (State & VREPLACE_FLAG)
3475 return SHAPE_IDX_R;
3476#endif
3477 if (State & REPLACE_FLAG)
3478 return SHAPE_IDX_R;
3479 if (State & INSERT)
3480 return SHAPE_IDX_I;
3481 if (State & CMDLINE)
3482 {
3483 if (cmdline_at_end())
3484 return SHAPE_IDX_C;
3485 if (cmdline_overstrike())
3486 return SHAPE_IDX_CR;
3487 return SHAPE_IDX_CI;
3488 }
3489 if (finish_op)
3490 return SHAPE_IDX_O;
3491#ifdef FEAT_VISUAL
3492 if (VIsual_active)
3493 {
3494 if (*p_sel == 'e')
3495 return SHAPE_IDX_VE;
3496 else
3497 return SHAPE_IDX_V;
3498 }
3499#endif
3500 return SHAPE_IDX_N;
3501}
Bram Moolenaarac6e65f2005-08-29 22:25:38 +00003502#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003503
3504# if defined(FEAT_MOUSESHAPE) || defined(PROTO)
3505static int old_mouse_shape = 0;
3506
3507/*
3508 * Set the mouse shape:
3509 * If "shape" is -1, use shape depending on the current mode,
3510 * depending on the current state.
3511 * If "shape" is -2, only update the shape when it's CLINE or STATUS (used
3512 * when the mouse moves off the status or command line).
3513 */
3514 void
3515update_mouseshape(shape_idx)
3516 int shape_idx;
3517{
3518 int new_mouse_shape;
3519
3520 /* Only works in GUI mode. */
Bram Moolenaar6bb68362005-03-22 23:03:44 +00003521 if (!gui.in_use || gui.starting)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003522 return;
3523
3524 /* Postpone the updating when more is to come. Speeds up executing of
3525 * mappings. */
3526 if (shape_idx == -1 && char_avail())
3527 {
3528 postponed_mouseshape = TRUE;
3529 return;
3530 }
3531
Bram Moolenaar14716812006-05-04 21:54:08 +00003532 /* When ignoring the mouse don't change shape on the statusline. */
3533 if (*p_mouse == NUL
3534 && (shape_idx == SHAPE_IDX_CLINE
3535 || shape_idx == SHAPE_IDX_STATUS
3536 || shape_idx == SHAPE_IDX_VSEP))
3537 shape_idx = -2;
3538
Bram Moolenaar071d4272004-06-13 20:20:40 +00003539 if (shape_idx == -2
3540 && old_mouse_shape != shape_table[SHAPE_IDX_CLINE].mshape
3541 && old_mouse_shape != shape_table[SHAPE_IDX_STATUS].mshape
3542 && old_mouse_shape != shape_table[SHAPE_IDX_VSEP].mshape)
3543 return;
3544 if (shape_idx < 0)
3545 new_mouse_shape = shape_table[get_shape_idx(TRUE)].mshape;
3546 else
3547 new_mouse_shape = shape_table[shape_idx].mshape;
3548 if (new_mouse_shape != old_mouse_shape)
3549 {
3550 mch_set_mouse_shape(new_mouse_shape);
3551 old_mouse_shape = new_mouse_shape;
3552 }
3553 postponed_mouseshape = FALSE;
3554}
3555# endif
3556
3557#endif /* CURSOR_SHAPE */
3558
3559
3560#ifdef FEAT_CRYPT
3561/*
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00003562 * Optional encryption support.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003563 * Mohsin Ahmed, mosh@sasi.com, 98-09-24
3564 * Based on zip/crypt sources.
3565 *
3566 * NOTE FOR USA: Since 2000 exporting this code from the USA is allowed to
3567 * most countries. There are a few exceptions, but that still should not be a
3568 * problem since this code was originally created in Europe and India.
3569 */
3570
3571/* from zip.h */
3572
3573typedef unsigned short ush; /* unsigned 16-bit value */
3574typedef unsigned long ulg; /* unsigned 32-bit value */
3575
3576static void make_crc_tab __ARGS((void));
3577
Bram Moolenaard6f676d2005-06-01 21:51:55 +00003578static ulg crc_32_tab[256];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003579
3580/*
3581 * Fill the CRC table.
3582 */
3583 static void
3584make_crc_tab()
3585{
3586 ulg s,t,v;
3587 static int done = FALSE;
3588
3589 if (done)
3590 return;
3591 for (t = 0; t < 256; t++)
3592 {
3593 v = t;
3594 for (s = 0; s < 8; s++)
3595 v = (v >> 1) ^ ((v & 1) * (ulg)0xedb88320L);
3596 crc_32_tab[t] = v;
3597 }
3598 done = TRUE;
3599}
3600
3601#define CRC32(c, b) (crc_32_tab[((int)(c) ^ (b)) & 0xff] ^ ((c) >> 8))
3602
3603
3604static ulg keys[3]; /* keys defining the pseudo-random sequence */
3605
3606/*
3607 * Return the next byte in the pseudo-random sequence
3608 */
3609 int
3610decrypt_byte()
3611{
3612 ush temp;
3613
3614 temp = (ush)keys[2] | 2;
3615 return (int)(((unsigned)(temp * (temp ^ 1)) >> 8) & 0xff);
3616}
3617
3618/*
3619 * Update the encryption keys with the next byte of plain text
3620 */
3621 int
3622update_keys(c)
3623 int c; /* byte of plain text */
3624{
3625 keys[0] = CRC32(keys[0], c);
3626 keys[1] += keys[0] & 0xff;
3627 keys[1] = keys[1] * 134775813L + 1;
3628 keys[2] = CRC32(keys[2], (int)(keys[1] >> 24));
3629 return c;
3630}
3631
3632/*
3633 * Initialize the encryption keys and the random header according to
3634 * the given password.
3635 * If "passwd" is NULL or empty, don't do anything.
3636 */
3637 void
3638crypt_init_keys(passwd)
3639 char_u *passwd; /* password string with which to modify keys */
3640{
3641 if (passwd != NULL && *passwd != NUL)
3642 {
3643 make_crc_tab();
3644 keys[0] = 305419896L;
3645 keys[1] = 591751049L;
3646 keys[2] = 878082192L;
3647 while (*passwd != '\0')
3648 update_keys((int)*passwd++);
3649 }
3650}
3651
3652/*
3653 * Ask the user for a crypt key.
3654 * When "store" is TRUE, the new key in stored in the 'key' option, and the
3655 * 'key' option value is returned: Don't free it.
3656 * When "store" is FALSE, the typed key is returned in allocated memory.
3657 * Returns NULL on failure.
3658 */
3659 char_u *
3660get_crypt_key(store, twice)
3661 int store;
3662 int twice; /* Ask for the key twice. */
3663{
3664 char_u *p1, *p2 = NULL;
3665 int round;
3666
3667 for (round = 0; ; ++round)
3668 {
3669 cmdline_star = TRUE;
3670 cmdline_row = msg_row;
3671 p1 = getcmdline_prompt(NUL, round == 0
3672 ? (char_u *)_("Enter encryption key: ")
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00003673 : (char_u *)_("Enter same key again: "), 0, EXPAND_NOTHING,
3674 NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003675 cmdline_star = FALSE;
3676
3677 if (p1 == NULL)
3678 break;
3679
3680 if (round == twice)
3681 {
3682 if (p2 != NULL && STRCMP(p1, p2) != 0)
3683 {
3684 MSG(_("Keys don't match!"));
3685 vim_free(p1);
3686 vim_free(p2);
3687 p2 = NULL;
3688 round = -1; /* do it again */
3689 continue;
3690 }
3691 if (store)
3692 {
3693 set_option_value((char_u *)"key", 0L, p1, OPT_LOCAL);
3694 vim_free(p1);
3695 p1 = curbuf->b_p_key;
3696 }
3697 break;
3698 }
3699 p2 = p1;
3700 }
3701
3702 /* since the user typed this, no need to wait for return */
3703 need_wait_return = FALSE;
3704 msg_didout = FALSE;
3705
3706 vim_free(p2);
3707 return p1;
3708}
3709
3710#endif /* FEAT_CRYPT */
3711
3712/* TODO: make some #ifdef for this */
3713/*--------[ file searching ]-------------------------------------------------*/
3714/*
3715 * File searching functions for 'path', 'tags' and 'cdpath' options.
3716 * External visible functions:
3717 * vim_findfile_init() creates/initialises the search context
3718 * vim_findfile_free_visited() free list of visited files/dirs of search
3719 * context
3720 * vim_findfile() find a file in the search context
3721 * vim_findfile_cleanup() cleanup/free search context created by
3722 * vim_findfile_init()
3723 *
3724 * All static functions and variables start with 'ff_'
3725 *
3726 * In general it works like this:
3727 * First you create yourself a search context by calling vim_findfile_init().
3728 * It is possible to give a search context from a previous call to
3729 * vim_findfile_init(), so it can be reused. After this you call vim_findfile()
3730 * until you are satisfied with the result or it returns NULL. On every call it
3731 * returns the next file which matches the conditions given to
3732 * vim_findfile_init(). If it doesn't find a next file it returns NULL.
3733 *
3734 * It is possible to call vim_findfile_init() again to reinitialise your search
3735 * with some new parameters. Don't forget to pass your old search context to
3736 * it, so it can reuse it and especially reuse the list of already visited
3737 * directories. If you want to delete the list of already visited directories
3738 * simply call vim_findfile_free_visited().
3739 *
3740 * When you are done call vim_findfile_cleanup() to free the search context.
3741 *
3742 * The function vim_findfile_init() has a long comment, which describes the
3743 * needed parameters.
3744 *
3745 *
3746 *
3747 * ATTENTION:
3748 * ==========
Bram Moolenaar77f66d62007-02-20 02:16:18 +00003749 * Also we use an allocated search context here, this functions are NOT
Bram Moolenaar071d4272004-06-13 20:20:40 +00003750 * thread-safe!!!!!
3751 *
3752 * To minimize parameter passing (or because I'm to lazy), only the
3753 * external visible functions get a search context as a parameter. This is
3754 * then assigned to a static global, which is used throughout the local
3755 * functions.
3756 */
3757
3758/*
3759 * type for the directory search stack
3760 */
3761typedef struct ff_stack
3762{
3763 struct ff_stack *ffs_prev;
3764
3765 /* the fix part (no wildcards) and the part containing the wildcards
3766 * of the search path
3767 */
3768 char_u *ffs_fix_path;
3769#ifdef FEAT_PATH_EXTRA
3770 char_u *ffs_wc_path;
3771#endif
3772
3773 /* files/dirs found in the above directory, matched by the first wildcard
3774 * of wc_part
3775 */
3776 char_u **ffs_filearray;
3777 int ffs_filearray_size;
3778 char_u ffs_filearray_cur; /* needed for partly handled dirs */
3779
3780 /* to store status of partly handled directories
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00003781 * 0: we work on this directory for the first time
Bram Moolenaar071d4272004-06-13 20:20:40 +00003782 * 1: this directory was partly searched in an earlier step
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00003783 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003784 int ffs_stage;
3785
3786 /* How deep are we in the directory tree?
3787 * Counts backward from value of level parameter to vim_findfile_init
3788 */
3789 int ffs_level;
3790
3791 /* Did we already expand '**' to an empty string? */
3792 int ffs_star_star_empty;
3793} ff_stack_T;
3794
3795/*
3796 * type for already visited directories or files.
3797 */
3798typedef struct ff_visited
3799{
3800 struct ff_visited *ffv_next;
3801
3802#ifdef FEAT_PATH_EXTRA
3803 /* Visited directories are different if the wildcard string are
3804 * different. So we have to save it.
3805 */
3806 char_u *ffv_wc_path;
3807#endif
3808 /* for unix use inode etc for comparison (needed because of links), else
3809 * use filename.
3810 */
3811#ifdef UNIX
3812 int ffv_dev; /* device number (-1 if not set) */
3813 ino_t ffv_ino; /* inode number */
3814#endif
3815 /* The memory for this struct is allocated according to the length of
3816 * ffv_fname.
3817 */
3818 char_u ffv_fname[1]; /* actually longer */
3819} ff_visited_T;
3820
3821/*
3822 * We might have to manage several visited lists during a search.
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00003823 * This is especially needed for the tags option. If tags is set to:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003824 * "./++/tags,./++/TAGS,++/tags" (replace + with *)
3825 * So we have to do 3 searches:
3826 * 1) search from the current files directory downward for the file "tags"
3827 * 2) search from the current files directory downward for the file "TAGS"
3828 * 3) search from Vims current directory downwards for the file "tags"
3829 * As you can see, the first and the third search are for the same file, so for
3830 * the third search we can use the visited list of the first search. For the
3831 * second search we must start from a empty visited list.
3832 * The struct ff_visited_list_hdr is used to manage a linked list of already
3833 * visited lists.
3834 */
3835typedef struct ff_visited_list_hdr
3836{
3837 struct ff_visited_list_hdr *ffvl_next;
3838
3839 /* the filename the attached visited list is for */
3840 char_u *ffvl_filename;
3841
3842 ff_visited_T *ffvl_visited_list;
3843
3844} ff_visited_list_hdr_T;
3845
3846
3847/*
3848 * '**' can be expanded to several directory levels.
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00003849 * Set the default maximum depth.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003850 */
3851#define FF_MAX_STAR_STAR_EXPAND ((char_u)30)
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00003852
Bram Moolenaar071d4272004-06-13 20:20:40 +00003853/*
3854 * The search context:
3855 * ffsc_stack_ptr: the stack for the dirs to search
3856 * ffsc_visited_list: the currently active visited list
3857 * ffsc_dir_visited_list: the currently active visited list for search dirs
3858 * ffsc_visited_lists_list: the list of all visited lists
3859 * ffsc_dir_visited_lists_list: the list of all visited lists for search dirs
3860 * ffsc_file_to_search: the file to search for
3861 * ffsc_start_dir: the starting directory, if search path was relative
3862 * ffsc_fix_path: the fix part of the given path (without wildcards)
3863 * Needed for upward search.
3864 * ffsc_wc_path: the part of the given path containing wildcards
3865 * ffsc_level: how many levels of dirs to search downwards
3866 * ffsc_stopdirs_v: array of stop directories for upward search
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00003867 * ffsc_find_what: FINDFILE_BOTH, FINDFILE_DIR or FINDFILE_FILE
Bram Moolenaar071d4272004-06-13 20:20:40 +00003868 */
3869typedef struct ff_search_ctx_T
3870{
3871 ff_stack_T *ffsc_stack_ptr;
3872 ff_visited_list_hdr_T *ffsc_visited_list;
3873 ff_visited_list_hdr_T *ffsc_dir_visited_list;
3874 ff_visited_list_hdr_T *ffsc_visited_lists_list;
3875 ff_visited_list_hdr_T *ffsc_dir_visited_lists_list;
3876 char_u *ffsc_file_to_search;
3877 char_u *ffsc_start_dir;
3878 char_u *ffsc_fix_path;
3879#ifdef FEAT_PATH_EXTRA
3880 char_u *ffsc_wc_path;
3881 int ffsc_level;
3882 char_u **ffsc_stopdirs_v;
3883#endif
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00003884 int ffsc_find_what;
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003885} ff_search_ctx_T;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003886
Bram Moolenaar071d4272004-06-13 20:20:40 +00003887/* locally needed functions */
3888#ifdef FEAT_PATH_EXTRA
3889static int ff_check_visited __ARGS((ff_visited_T **, char_u *, char_u *));
3890#else
3891static int ff_check_visited __ARGS((ff_visited_T **, char_u *));
3892#endif
3893static void vim_findfile_free_visited_list __ARGS((ff_visited_list_hdr_T **list_headp));
3894static void ff_free_visited_list __ARGS((ff_visited_T *vl));
3895static ff_visited_list_hdr_T* ff_get_visited_list __ARGS((char_u *, ff_visited_list_hdr_T **list_headp));
3896#ifdef FEAT_PATH_EXTRA
3897static int ff_wc_equal __ARGS((char_u *s1, char_u *s2));
3898#endif
3899
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00003900static void ff_push __ARGS((ff_search_ctx_T *search_ctx, ff_stack_T *stack_ptr));
3901static ff_stack_T *ff_pop __ARGS((ff_search_ctx_T *search_ctx));
3902static void ff_clear __ARGS((ff_search_ctx_T *search_ctx));
3903static void ff_free_stack_element __ARGS((ff_stack_T *stack_ptr));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003904#ifdef FEAT_PATH_EXTRA
3905static ff_stack_T *ff_create_stack_element __ARGS((char_u *, char_u *, int, int));
3906#else
3907static ff_stack_T *ff_create_stack_element __ARGS((char_u *, int, int));
3908#endif
3909#ifdef FEAT_PATH_EXTRA
3910static int ff_path_in_stoplist __ARGS((char_u *, int, char_u **));
3911#endif
3912
Bram Moolenaar071d4272004-06-13 20:20:40 +00003913#if 0
3914/*
3915 * if someone likes findfirst/findnext, here are the functions
3916 * NOT TESTED!!
3917 */
3918
3919static void *ff_fn_search_context = NULL;
3920
3921 char_u *
3922vim_findfirst(path, filename, level)
3923 char_u *path;
3924 char_u *filename;
3925 int level;
3926{
3927 ff_fn_search_context =
3928 vim_findfile_init(path, filename, NULL, level, TRUE, FALSE,
3929 ff_fn_search_context, rel_fname);
3930 if (NULL == ff_fn_search_context)
3931 return NULL;
3932 else
3933 return vim_findnext()
3934}
3935
3936 char_u *
3937vim_findnext()
3938{
3939 char_u *ret = vim_findfile(ff_fn_search_context);
3940
3941 if (NULL == ret)
3942 {
3943 vim_findfile_cleanup(ff_fn_search_context);
3944 ff_fn_search_context = NULL;
3945 }
3946 return ret;
3947}
3948#endif
3949
3950/*
3951 * Initialization routine for vim_findfile.
3952 *
3953 * Returns the newly allocated search context or NULL if an error occured.
3954 *
3955 * Don't forget to clean up by calling vim_findfile_cleanup() if you are done
3956 * with the search context.
3957 *
3958 * Find the file 'filename' in the directory 'path'.
3959 * The parameter 'path' may contain wildcards. If so only search 'level'
3960 * directories deep. The parameter 'level' is the absolute maximum and is
3961 * not related to restricts given to the '**' wildcard. If 'level' is 100
3962 * and you use '**200' vim_findfile() will stop after 100 levels.
3963 *
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00003964 * 'filename' cannot contain wildcards! It is used as-is, no backslashes to
3965 * escape special characters.
3966 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00003967 * If 'stopdirs' is not NULL and nothing is found downward, the search is
3968 * restarted on the next higher directory level. This is repeated until the
3969 * start-directory of a search is contained in 'stopdirs'. 'stopdirs' has the
3970 * format ";*<dirname>*\(;<dirname>\)*;\=$".
3971 *
3972 * If the 'path' is relative, the starting dir for the search is either VIM's
3973 * current dir or if the path starts with "./" the current files dir.
3974 * If the 'path' is absolut, the starting dir is that part of the path before
3975 * the first wildcard.
3976 *
3977 * Upward search is only done on the starting dir.
3978 *
3979 * If 'free_visited' is TRUE the list of already visited files/directories is
3980 * cleared. Set this to FALSE if you just want to search from another
3981 * directory, but want to be sure that no directory from a previous search is
3982 * searched again. This is useful if you search for a file at different places.
3983 * The list of visited files/dirs can also be cleared with the function
3984 * vim_findfile_free_visited().
3985 *
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00003986 * Set the parameter 'find_what' to FINDFILE_DIR if you want to search for
3987 * directories only, FINDFILE_FILE for files only, FINDFILE_BOTH for both.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003988 *
3989 * A search context returned by a previous call to vim_findfile_init() can be
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00003990 * passed in the parameter "search_ctx_arg". This context is reused and
3991 * reinitialized with the new parameters. The list of already visited
Bram Moolenaar071d4272004-06-13 20:20:40 +00003992 * directories from this context is only deleted if the parameter
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00003993 * "free_visited" is true. Be aware that the passed "search_ctx_arg" is freed
3994 * if the reinitialization fails.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003995 *
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00003996 * If you don't have a search context from a previous call "search_ctx_arg"
3997 * must be NULL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003998 *
3999 * This function silently ignores a few errors, vim_findfile() will have
4000 * limited functionality then.
4001 */
4002/*ARGSUSED*/
4003 void *
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004004vim_findfile_init(path, filename, stopdirs, level, free_visited, find_what,
4005 search_ctx_arg, tagfile, rel_fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004006 char_u *path;
4007 char_u *filename;
4008 char_u *stopdirs;
4009 int level;
4010 int free_visited;
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004011 int find_what;
4012 void *search_ctx_arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004013 int tagfile;
4014 char_u *rel_fname; /* file name to use for "." */
4015{
4016#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004017 char_u *wc_part;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004018#endif
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004019 ff_stack_T *sptr;
4020 ff_search_ctx_T *search_ctx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004021
4022 /* If a search context is given by the caller, reuse it, else allocate a
4023 * new one.
4024 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004025 if (search_ctx_arg != NULL)
4026 search_ctx = search_ctx_arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004027 else
4028 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004029 search_ctx = (ff_search_ctx_T*)alloc((unsigned)sizeof(ff_search_ctx_T));
4030 if (search_ctx == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004031 goto error_return;
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004032 memset(search_ctx, 0, sizeof(ff_search_ctx_T));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004033 }
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004034 search_ctx->ffsc_find_what = find_what;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004035
4036 /* clear the search context, but NOT the visited lists */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004037 ff_clear(search_ctx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004038
4039 /* clear visited list if wanted */
4040 if (free_visited == TRUE)
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004041 vim_findfile_free_visited(search_ctx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004042 else
4043 {
4044 /* Reuse old visited lists. Get the visited list for the given
4045 * filename. If no list for the current filename exists, creates a new
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004046 * one. */
4047 search_ctx->ffsc_visited_list = ff_get_visited_list(filename,
4048 &search_ctx->ffsc_visited_lists_list);
4049 if (search_ctx->ffsc_visited_list == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004050 goto error_return;
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004051 search_ctx->ffsc_dir_visited_list = ff_get_visited_list(filename,
4052 &search_ctx->ffsc_dir_visited_lists_list);
4053 if (search_ctx->ffsc_dir_visited_list == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004054 goto error_return;
4055 }
4056
4057 if (ff_expand_buffer == NULL)
4058 {
4059 ff_expand_buffer = (char_u*)alloc(MAXPATHL);
4060 if (ff_expand_buffer == NULL)
4061 goto error_return;
4062 }
4063
4064 /* Store information on starting dir now if path is relative.
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00004065 * If path is absolute, we do that later. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004066 if (path[0] == '.'
4067 && (vim_ispathsep(path[1]) || path[1] == NUL)
4068 && (!tagfile || vim_strchr(p_cpo, CPO_DOTTAG) == NULL)
4069 && rel_fname != NULL)
4070 {
4071 int len = (int)(gettail(rel_fname) - rel_fname);
4072
4073 if (!vim_isAbsName(rel_fname) && len + 1 < MAXPATHL)
4074 {
4075 /* Make the start dir an absolute path name. */
Bram Moolenaarbbebc852005-07-18 21:47:53 +00004076 vim_strncpy(ff_expand_buffer, rel_fname, len);
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004077 search_ctx->ffsc_start_dir = FullName_save(ff_expand_buffer, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004078 }
4079 else
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004080 search_ctx->ffsc_start_dir = vim_strnsave(rel_fname, len);
4081 if (search_ctx->ffsc_start_dir == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004082 goto error_return;
4083 if (*++path != NUL)
4084 ++path;
4085 }
4086 else if (*path == NUL || !vim_isAbsName(path))
4087 {
4088#ifdef BACKSLASH_IN_FILENAME
4089 /* "c:dir" needs "c:" to be expanded, otherwise use current dir */
4090 if (*path != NUL && path[1] == ':')
4091 {
4092 char_u drive[3];
4093
4094 drive[0] = path[0];
4095 drive[1] = ':';
4096 drive[2] = NUL;
4097 if (vim_FullName(drive, ff_expand_buffer, MAXPATHL, TRUE) == FAIL)
4098 goto error_return;
4099 path += 2;
4100 }
4101 else
4102#endif
4103 if (mch_dirname(ff_expand_buffer, MAXPATHL) == FAIL)
4104 goto error_return;
4105
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004106 search_ctx->ffsc_start_dir = vim_strsave(ff_expand_buffer);
4107 if (search_ctx->ffsc_start_dir == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004108 goto error_return;
4109
4110#ifdef BACKSLASH_IN_FILENAME
4111 /* A path that starts with "/dir" is relative to the drive, not to the
4112 * directory (but not for "//machine/dir"). Only use the drive name. */
4113 if ((*path == '/' || *path == '\\')
4114 && path[1] != path[0]
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004115 && search_ctx->ffsc_start_dir[1] == ':')
4116 search_ctx->ffsc_start_dir[2] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004117#endif
4118 }
4119
4120#ifdef FEAT_PATH_EXTRA
4121 /*
4122 * If stopdirs are given, split them into an array of pointers.
4123 * If this fails (mem allocation), there is no upward search at all or a
4124 * stop directory is not recognized -> continue silently.
4125 * If stopdirs just contains a ";" or is empty,
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004126 * search_ctx->ffsc_stopdirs_v will only contain a NULL pointer. This
Bram Moolenaar071d4272004-06-13 20:20:40 +00004127 * is handled as unlimited upward search. See function
4128 * ff_path_in_stoplist() for details.
4129 */
4130 if (stopdirs != NULL)
4131 {
4132 char_u *walker = stopdirs;
4133 int dircount;
4134
4135 while (*walker == ';')
4136 walker++;
4137
4138 dircount = 1;
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004139 search_ctx->ffsc_stopdirs_v =
4140 (char_u **)alloc((unsigned)sizeof(char_u *));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004141
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004142 if (search_ctx->ffsc_stopdirs_v != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004143 {
4144 do
4145 {
4146 char_u *helper;
4147 void *ptr;
4148
4149 helper = walker;
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004150 ptr = vim_realloc(search_ctx->ffsc_stopdirs_v,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004151 (dircount + 1) * sizeof(char_u *));
4152 if (ptr)
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004153 search_ctx->ffsc_stopdirs_v = ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004154 else
4155 /* ignore, keep what we have and continue */
4156 break;
4157 walker = vim_strchr(walker, ';');
4158 if (walker)
4159 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004160 search_ctx->ffsc_stopdirs_v[dircount-1] =
4161 vim_strnsave(helper, (int)(walker - helper));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004162 walker++;
4163 }
4164 else
4165 /* this might be "", which means ascent till top
4166 * of directory tree.
4167 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004168 search_ctx->ffsc_stopdirs_v[dircount-1] =
4169 vim_strsave(helper);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004170
4171 dircount++;
4172
4173 } while (walker != NULL);
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004174 search_ctx->ffsc_stopdirs_v[dircount-1] = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004175 }
4176 }
4177#endif
4178
4179#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004180 search_ctx->ffsc_level = level;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004181
4182 /* split into:
4183 * -fix path
4184 * -wildcard_stuff (might be NULL)
4185 */
4186 wc_part = vim_strchr(path, '*');
4187 if (wc_part != NULL)
4188 {
4189 int llevel;
4190 int len;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00004191 char *errpt;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004192
4193 /* save the fix part of the path */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004194 search_ctx->ffsc_fix_path = vim_strnsave(path, (int)(wc_part - path));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004195
4196 /*
4197 * copy wc_path and add restricts to the '**' wildcard.
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00004198 * The octet after a '**' is used as a (binary) counter.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004199 * So '**3' is transposed to '**^C' ('^C' is ASCII value 3)
4200 * or '**76' is transposed to '**N'( 'N' is ASCII value 76).
4201 * For EBCDIC you get different character values.
4202 * If no restrict is given after '**' the default is used.
4203 * Due to this technic the path looks awful if you print it as a
4204 * string.
4205 */
4206 len = 0;
4207 while (*wc_part != NUL)
4208 {
4209 if (STRNCMP(wc_part, "**", 2) == 0)
4210 {
4211 ff_expand_buffer[len++] = *wc_part++;
4212 ff_expand_buffer[len++] = *wc_part++;
4213
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00004214 llevel = strtol((char *)wc_part, &errpt, 10);
4215 if ((char_u *)errpt != wc_part && llevel > 0 && llevel < 255)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004216 ff_expand_buffer[len++] = llevel;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00004217 else if ((char_u *)errpt != wc_part && llevel == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004218 /* restrict is 0 -> remove already added '**' */
4219 len -= 2;
4220 else
4221 ff_expand_buffer[len++] = FF_MAX_STAR_STAR_EXPAND;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00004222 wc_part = (char_u *)errpt;
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00004223 if (*wc_part != NUL && !vim_ispathsep(*wc_part))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004224 {
4225 EMSG2(_("E343: Invalid path: '**[number]' must be at the end of the path or be followed by '%s'."), PATHSEPSTR);
4226 goto error_return;
4227 }
4228 }
4229 else
4230 ff_expand_buffer[len++] = *wc_part++;
4231 }
4232 ff_expand_buffer[len] = NUL;
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004233 search_ctx->ffsc_wc_path = vim_strsave(ff_expand_buffer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004234
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004235 if (search_ctx->ffsc_wc_path == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004236 goto error_return;
4237 }
4238 else
4239#endif
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004240 search_ctx->ffsc_fix_path = vim_strsave(path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004241
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004242 if (search_ctx->ffsc_start_dir == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004243 {
4244 /* store the fix part as startdir.
4245 * This is needed if the parameter path is fully qualified.
4246 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004247 search_ctx->ffsc_start_dir = vim_strsave(search_ctx->ffsc_fix_path);
4248 if (search_ctx->ffsc_start_dir)
4249 search_ctx->ffsc_fix_path[0] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004250 }
4251
4252 /* create an absolute path */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004253 STRCPY(ff_expand_buffer, search_ctx->ffsc_start_dir);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004254 add_pathsep(ff_expand_buffer);
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004255 STRCAT(ff_expand_buffer, search_ctx->ffsc_fix_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004256 add_pathsep(ff_expand_buffer);
4257
4258 sptr = ff_create_stack_element(ff_expand_buffer,
4259#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004260 search_ctx->ffsc_wc_path,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004261#endif
4262 level, 0);
4263
4264 if (sptr == NULL)
4265 goto error_return;
4266
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004267 ff_push(search_ctx, sptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004268
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004269 search_ctx->ffsc_file_to_search = vim_strsave(filename);
4270 if (search_ctx->ffsc_file_to_search == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004271 goto error_return;
4272
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004273 return search_ctx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004274
4275error_return:
4276 /*
4277 * We clear the search context now!
4278 * Even when the caller gave us a (perhaps valid) context we free it here,
4279 * as we might have already destroyed it.
4280 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004281 vim_findfile_cleanup(search_ctx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004282 return NULL;
4283}
4284
4285#if defined(FEAT_PATH_EXTRA) || defined(PROTO)
4286/*
4287 * Get the stopdir string. Check that ';' is not escaped.
4288 */
4289 char_u *
4290vim_findfile_stopdir(buf)
4291 char_u *buf;
4292{
4293 char_u *r_ptr = buf;
4294
4295 while (*r_ptr != NUL && *r_ptr != ';')
4296 {
4297 if (r_ptr[0] == '\\' && r_ptr[1] == ';')
4298 {
4299 /* overwrite the escape char,
4300 * use STRLEN(r_ptr) to move the trailing '\0'
4301 */
Bram Moolenaar446cb832008-06-24 21:56:24 +00004302 STRMOVE(r_ptr, r_ptr + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004303 r_ptr++;
4304 }
4305 r_ptr++;
4306 }
4307 if (*r_ptr == ';')
4308 {
4309 *r_ptr = 0;
4310 r_ptr++;
4311 }
4312 else if (*r_ptr == NUL)
4313 r_ptr = NULL;
4314 return r_ptr;
4315}
4316#endif
4317
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004318/*
4319 * Clean up the given search context. Can handle a NULL pointer.
4320 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004321 void
4322vim_findfile_cleanup(ctx)
4323 void *ctx;
4324{
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00004325 if (ctx == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004326 return;
4327
Bram Moolenaar071d4272004-06-13 20:20:40 +00004328 vim_findfile_free_visited(ctx);
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004329 ff_clear(ctx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004330 vim_free(ctx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004331}
4332
4333/*
4334 * Find a file in a search context.
4335 * The search context was created with vim_findfile_init() above.
4336 * Return a pointer to an allocated file name or NULL if nothing found.
4337 * To get all matching files call this function until you get NULL.
4338 *
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00004339 * If the passed search_context is NULL, NULL is returned.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004340 *
4341 * The search algorithm is depth first. To change this replace the
4342 * stack with a list (don't forget to leave partly searched directories on the
4343 * top of the list).
4344 */
4345 char_u *
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004346vim_findfile(search_ctx_arg)
4347 void *search_ctx_arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004348{
4349 char_u *file_path;
4350#ifdef FEAT_PATH_EXTRA
4351 char_u *rest_of_wildcards;
4352 char_u *path_end = NULL;
4353#endif
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004354 ff_stack_T *stackp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004355#if defined(FEAT_SEARCHPATH) || defined(FEAT_PATH_EXTRA)
4356 int len;
4357#endif
4358 int i;
4359 char_u *p;
4360#ifdef FEAT_SEARCHPATH
4361 char_u *suf;
4362#endif
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004363 ff_search_ctx_T *search_ctx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004364
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004365 if (search_ctx_arg == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004366 return NULL;
4367
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004368 search_ctx = (ff_search_ctx_T *)search_ctx_arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004369
4370 /*
4371 * filepath is used as buffer for various actions and as the storage to
4372 * return a found filename.
4373 */
4374 if ((file_path = alloc((int)MAXPATHL)) == NULL)
4375 return NULL;
4376
4377#ifdef FEAT_PATH_EXTRA
4378 /* store the end of the start dir -- needed for upward search */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004379 if (search_ctx->ffsc_start_dir != NULL)
4380 path_end = &search_ctx->ffsc_start_dir[
4381 STRLEN(search_ctx->ffsc_start_dir)];
Bram Moolenaar071d4272004-06-13 20:20:40 +00004382#endif
4383
4384#ifdef FEAT_PATH_EXTRA
4385 /* upward search loop */
4386 for (;;)
4387 {
4388#endif
4389 /* downward search loop */
4390 for (;;)
4391 {
4392 /* check if user user wants to stop the search*/
4393 ui_breakcheck();
4394 if (got_int)
4395 break;
4396
4397 /* get directory to work on from stack */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004398 stackp = ff_pop(search_ctx);
4399 if (stackp == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004400 break;
4401
4402 /*
4403 * TODO: decide if we leave this test in
4404 *
4405 * GOOD: don't search a directory(-tree) twice.
4406 * BAD: - check linked list for every new directory entered.
4407 * - check for double files also done below
4408 *
4409 * Here we check if we already searched this directory.
4410 * We already searched a directory if:
4411 * 1) The directory is the same.
4412 * 2) We would use the same wildcard string.
4413 *
4414 * Good if you have links on same directory via several ways
4415 * or you have selfreferences in directories (e.g. SuSE Linux 6.3:
4416 * /etc/rc.d/init.d is linked to /etc/rc.d -> endless loop)
4417 *
4418 * This check is only needed for directories we work on for the
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004419 * first time (hence stackp->ff_filearray == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004420 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004421 if (stackp->ffs_filearray == NULL
4422 && ff_check_visited(&search_ctx->ffsc_dir_visited_list
Bram Moolenaar071d4272004-06-13 20:20:40 +00004423 ->ffvl_visited_list,
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004424 stackp->ffs_fix_path
Bram Moolenaar071d4272004-06-13 20:20:40 +00004425#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004426 , stackp->ffs_wc_path
Bram Moolenaar071d4272004-06-13 20:20:40 +00004427#endif
4428 ) == FAIL)
4429 {
4430#ifdef FF_VERBOSE
4431 if (p_verbose >= 5)
4432 {
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004433 verbose_enter_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004434 smsg((char_u *)"Already Searched: %s (%s)",
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004435 stackp->ffs_fix_path, stackp->ffs_wc_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004436 /* don't overwrite this either */
4437 msg_puts((char_u *)"\n");
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004438 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004439 }
4440#endif
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004441 ff_free_stack_element(stackp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004442 continue;
4443 }
4444#ifdef FF_VERBOSE
4445 else if (p_verbose >= 5)
4446 {
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004447 verbose_enter_scroll();
Bram Moolenaar051b7822005-05-19 21:00:46 +00004448 smsg((char_u *)"Searching: %s (%s)",
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004449 stackp->ffs_fix_path, stackp->ffs_wc_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004450 /* don't overwrite this either */
4451 msg_puts((char_u *)"\n");
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004452 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004453 }
4454#endif
4455
4456 /* check depth */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004457 if (stackp->ffs_level <= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004458 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004459 ff_free_stack_element(stackp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004460 continue;
4461 }
4462
4463 file_path[0] = NUL;
4464
4465 /*
4466 * If no filearray till now expand wildcards
4467 * The function expand_wildcards() can handle an array of paths
4468 * and all possible expands are returned in one array. We use this
4469 * to handle the expansion of '**' into an empty string.
4470 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004471 if (stackp->ffs_filearray == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004472 {
4473 char_u *dirptrs[2];
4474
4475 /* we use filepath to build the path expand_wildcards() should
4476 * expand.
4477 */
4478 dirptrs[0] = file_path;
4479 dirptrs[1] = NULL;
4480
4481 /* if we have a start dir copy it in */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004482 if (!vim_isAbsName(stackp->ffs_fix_path)
4483 && search_ctx->ffsc_start_dir)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004484 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004485 STRCPY(file_path, search_ctx->ffsc_start_dir);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004486 add_pathsep(file_path);
4487 }
4488
4489 /* append the fix part of the search path */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004490 STRCAT(file_path, stackp->ffs_fix_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004491 add_pathsep(file_path);
4492
4493#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004494 rest_of_wildcards = stackp->ffs_wc_path;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004495 if (*rest_of_wildcards != NUL)
4496 {
4497 len = (int)STRLEN(file_path);
4498 if (STRNCMP(rest_of_wildcards, "**", 2) == 0)
4499 {
4500 /* pointer to the restrict byte
4501 * The restrict byte is not a character!
4502 */
4503 p = rest_of_wildcards + 2;
4504
4505 if (*p > 0)
4506 {
4507 (*p)--;
4508 file_path[len++] = '*';
4509 }
4510
4511 if (*p == 0)
4512 {
4513 /* remove '**<numb> from wildcards */
Bram Moolenaar446cb832008-06-24 21:56:24 +00004514 STRMOVE(rest_of_wildcards, rest_of_wildcards + 3);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004515 }
4516 else
4517 rest_of_wildcards += 3;
4518
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004519 if (stackp->ffs_star_star_empty == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004520 {
4521 /* if not done before, expand '**' to empty */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004522 stackp->ffs_star_star_empty = 1;
4523 dirptrs[1] = stackp->ffs_fix_path;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004524 }
4525 }
4526
4527 /*
4528 * Here we copy until the next path separator or the end of
4529 * the path. If we stop at a path separator, there is
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00004530 * still something else left. This is handled below by
Bram Moolenaar071d4272004-06-13 20:20:40 +00004531 * pushing every directory returned from expand_wildcards()
4532 * on the stack again for further search.
4533 */
4534 while (*rest_of_wildcards
4535 && !vim_ispathsep(*rest_of_wildcards))
4536 file_path[len++] = *rest_of_wildcards++;
4537
4538 file_path[len] = NUL;
4539 if (vim_ispathsep(*rest_of_wildcards))
4540 rest_of_wildcards++;
4541 }
4542#endif
4543
4544 /*
4545 * Expand wildcards like "*" and "$VAR".
4546 * If the path is a URL don't try this.
4547 */
4548 if (path_with_url(dirptrs[0]))
4549 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004550 stackp->ffs_filearray = (char_u **)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004551 alloc((unsigned)sizeof(char *));
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004552 if (stackp->ffs_filearray != NULL
4553 && (stackp->ffs_filearray[0]
Bram Moolenaar071d4272004-06-13 20:20:40 +00004554 = vim_strsave(dirptrs[0])) != NULL)
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004555 stackp->ffs_filearray_size = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004556 else
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004557 stackp->ffs_filearray_size = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004558 }
4559 else
4560 expand_wildcards((dirptrs[1] == NULL) ? 1 : 2, dirptrs,
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004561 &stackp->ffs_filearray_size,
4562 &stackp->ffs_filearray,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004563 EW_DIR|EW_ADDSLASH|EW_SILENT);
4564
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004565 stackp->ffs_filearray_cur = 0;
4566 stackp->ffs_stage = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004567 }
4568#ifdef FEAT_PATH_EXTRA
4569 else
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004570 rest_of_wildcards = &stackp->ffs_wc_path[
4571 STRLEN(stackp->ffs_wc_path)];
Bram Moolenaar071d4272004-06-13 20:20:40 +00004572#endif
4573
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004574 if (stackp->ffs_stage == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004575 {
4576 /* this is the first time we work on this directory */
4577#ifdef FEAT_PATH_EXTRA
4578 if (*rest_of_wildcards == NUL)
4579#endif
4580 {
4581 /*
4582 * we don't have further wildcards to expand, so we have to
4583 * check for the final file now
4584 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004585 for (i = stackp->ffs_filearray_cur;
4586 i < stackp->ffs_filearray_size; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004587 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004588 if (!path_with_url(stackp->ffs_filearray[i])
4589 && !mch_isdir(stackp->ffs_filearray[i]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004590 continue; /* not a directory */
4591
4592 /* prepare the filename to be checked for existance
4593 * below */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004594 STRCPY(file_path, stackp->ffs_filearray[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004595 add_pathsep(file_path);
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004596 STRCAT(file_path, search_ctx->ffsc_file_to_search);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004597
4598 /*
4599 * Try without extra suffix and then with suffixes
4600 * from 'suffixesadd'.
4601 */
4602#ifdef FEAT_SEARCHPATH
4603 len = (int)STRLEN(file_path);
4604 suf = curbuf->b_p_sua;
4605 for (;;)
4606#endif
4607 {
4608 /* if file exists and we didn't already find it */
4609 if ((path_with_url(file_path)
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004610 || (mch_getperm(file_path) >= 0
4611 && (search_ctx->ffsc_find_what
4612 == FINDFILE_BOTH
4613 || ((search_ctx->ffsc_find_what
4614 == FINDFILE_DIR)
4615 == mch_isdir(file_path)))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004616#ifndef FF_VERBOSE
4617 && (ff_check_visited(
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004618 &search_ctx->ffsc_visited_list->ffvl_visited_list,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004619 file_path
4620#ifdef FEAT_PATH_EXTRA
4621 , (char_u *)""
4622#endif
4623 ) == OK)
4624#endif
4625 )
4626 {
4627#ifdef FF_VERBOSE
4628 if (ff_check_visited(
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004629 &search_ctx->ffsc_visited_list->ffvl_visited_list,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004630 file_path
4631#ifdef FEAT_PATH_EXTRA
4632 , (char_u *)""
4633#endif
4634 ) == FAIL)
4635 {
4636 if (p_verbose >= 5)
4637 {
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004638 verbose_enter_scroll();
Bram Moolenaar051b7822005-05-19 21:00:46 +00004639 smsg((char_u *)"Already: %s",
Bram Moolenaar071d4272004-06-13 20:20:40 +00004640 file_path);
4641 /* don't overwrite this either */
4642 msg_puts((char_u *)"\n");
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004643 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004644 }
4645 continue;
4646 }
4647#endif
4648
4649 /* push dir to examine rest of subdirs later */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004650 stackp->ffs_filearray_cur = i + 1;
4651 ff_push(search_ctx, stackp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004652
4653 simplify_filename(file_path);
4654 if (mch_dirname(ff_expand_buffer, MAXPATHL)
4655 == OK)
4656 {
4657 p = shorten_fname(file_path,
4658 ff_expand_buffer);
4659 if (p != NULL)
Bram Moolenaar446cb832008-06-24 21:56:24 +00004660 STRMOVE(file_path, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004661 }
4662#ifdef FF_VERBOSE
4663 if (p_verbose >= 5)
4664 {
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004665 verbose_enter_scroll();
Bram Moolenaar051b7822005-05-19 21:00:46 +00004666 smsg((char_u *)"HIT: %s", file_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004667 /* don't overwrite this either */
4668 msg_puts((char_u *)"\n");
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004669 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004670 }
4671#endif
4672 return file_path;
4673 }
4674
4675#ifdef FEAT_SEARCHPATH
4676 /* Not found or found already, try next suffix. */
4677 if (*suf == NUL)
4678 break;
4679 copy_option_part(&suf, file_path + len,
4680 MAXPATHL - len, ",");
4681#endif
4682 }
4683 }
4684 }
4685#ifdef FEAT_PATH_EXTRA
4686 else
4687 {
4688 /*
4689 * still wildcards left, push the directories for further
4690 * search
4691 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004692 for (i = stackp->ffs_filearray_cur;
4693 i < stackp->ffs_filearray_size; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004694 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004695 if (!mch_isdir(stackp->ffs_filearray[i]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004696 continue; /* not a directory */
4697
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004698 ff_push(search_ctx,
4699 ff_create_stack_element(
4700 stackp->ffs_filearray[i],
4701 rest_of_wildcards,
4702 stackp->ffs_level - 1, 0));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004703 }
4704 }
4705#endif
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004706 stackp->ffs_filearray_cur = 0;
4707 stackp->ffs_stage = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004708 }
4709
4710#ifdef FEAT_PATH_EXTRA
4711 /*
4712 * if wildcards contains '**' we have to descent till we reach the
4713 * leaves of the directory tree.
4714 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004715 if (STRNCMP(stackp->ffs_wc_path, "**", 2) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004716 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004717 for (i = stackp->ffs_filearray_cur;
4718 i < stackp->ffs_filearray_size; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004719 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004720 if (fnamecmp(stackp->ffs_filearray[i],
4721 stackp->ffs_fix_path) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004722 continue; /* don't repush same directory */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004723 if (!mch_isdir(stackp->ffs_filearray[i]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004724 continue; /* not a directory */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004725 ff_push(search_ctx,
4726 ff_create_stack_element(stackp->ffs_filearray[i],
4727 stackp->ffs_wc_path, stackp->ffs_level - 1, 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004728 }
4729 }
4730#endif
4731
4732 /* we are done with the current directory */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004733 ff_free_stack_element(stackp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004734
4735 }
4736
4737#ifdef FEAT_PATH_EXTRA
4738 /* If we reached this, we didn't find anything downwards.
4739 * Let's check if we should do an upward search.
4740 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004741 if (search_ctx->ffsc_start_dir
4742 && search_ctx->ffsc_stopdirs_v != NULL && !got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004743 {
4744 ff_stack_T *sptr;
4745
4746 /* is the last starting directory in the stop list? */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004747 if (ff_path_in_stoplist(search_ctx->ffsc_start_dir,
4748 (int)(path_end - search_ctx->ffsc_start_dir),
4749 search_ctx->ffsc_stopdirs_v) == TRUE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004750 break;
4751
4752 /* cut of last dir */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004753 while (path_end > search_ctx->ffsc_start_dir
4754 && vim_ispathsep(*path_end))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004755 path_end--;
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004756 while (path_end > search_ctx->ffsc_start_dir
4757 && !vim_ispathsep(path_end[-1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004758 path_end--;
4759 *path_end = 0;
4760 path_end--;
4761
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004762 if (*search_ctx->ffsc_start_dir == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004763 break;
4764
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004765 STRCPY(file_path, search_ctx->ffsc_start_dir);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004766 add_pathsep(file_path);
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004767 STRCAT(file_path, search_ctx->ffsc_fix_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004768
4769 /* create a new stack entry */
4770 sptr = ff_create_stack_element(file_path,
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004771 search_ctx->ffsc_wc_path, search_ctx->ffsc_level, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004772 if (sptr == NULL)
4773 break;
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004774 ff_push(search_ctx, sptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004775 }
4776 else
4777 break;
4778 }
4779#endif
4780
4781 vim_free(file_path);
4782 return NULL;
4783}
4784
4785/*
4786 * Free the list of lists of visited files and directories
4787 * Can handle it if the passed search_context is NULL;
4788 */
4789 void
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004790vim_findfile_free_visited(search_ctx_arg)
4791 void *search_ctx_arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004792{
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004793 ff_search_ctx_T *search_ctx;
4794
4795 if (search_ctx_arg == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004796 return;
4797
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004798 search_ctx = (ff_search_ctx_T *)search_ctx_arg;
4799 vim_findfile_free_visited_list(&search_ctx->ffsc_visited_lists_list);
4800 vim_findfile_free_visited_list(&search_ctx->ffsc_dir_visited_lists_list);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004801}
4802
4803 static void
4804vim_findfile_free_visited_list(list_headp)
4805 ff_visited_list_hdr_T **list_headp;
4806{
4807 ff_visited_list_hdr_T *vp;
4808
4809 while (*list_headp != NULL)
4810 {
4811 vp = (*list_headp)->ffvl_next;
4812 ff_free_visited_list((*list_headp)->ffvl_visited_list);
4813
4814 vim_free((*list_headp)->ffvl_filename);
4815 vim_free(*list_headp);
4816 *list_headp = vp;
4817 }
4818 *list_headp = NULL;
4819}
4820
4821 static void
4822ff_free_visited_list(vl)
4823 ff_visited_T *vl;
4824{
4825 ff_visited_T *vp;
4826
4827 while (vl != NULL)
4828 {
4829 vp = vl->ffv_next;
4830#ifdef FEAT_PATH_EXTRA
4831 vim_free(vl->ffv_wc_path);
4832#endif
4833 vim_free(vl);
4834 vl = vp;
4835 }
4836 vl = NULL;
4837}
4838
4839/*
4840 * Returns the already visited list for the given filename. If none is found it
4841 * allocates a new one.
4842 */
4843 static ff_visited_list_hdr_T*
4844ff_get_visited_list(filename, list_headp)
4845 char_u *filename;
4846 ff_visited_list_hdr_T **list_headp;
4847{
4848 ff_visited_list_hdr_T *retptr = NULL;
4849
4850 /* check if a visited list for the given filename exists */
4851 if (*list_headp != NULL)
4852 {
4853 retptr = *list_headp;
4854 while (retptr != NULL)
4855 {
4856 if (fnamecmp(filename, retptr->ffvl_filename) == 0)
4857 {
4858#ifdef FF_VERBOSE
4859 if (p_verbose >= 5)
4860 {
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004861 verbose_enter_scroll();
Bram Moolenaar051b7822005-05-19 21:00:46 +00004862 smsg((char_u *)"ff_get_visited_list: FOUND list for %s",
Bram Moolenaar071d4272004-06-13 20:20:40 +00004863 filename);
4864 /* don't overwrite this either */
4865 msg_puts((char_u *)"\n");
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004866 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004867 }
4868#endif
4869 return retptr;
4870 }
4871 retptr = retptr->ffvl_next;
4872 }
4873 }
4874
4875#ifdef FF_VERBOSE
4876 if (p_verbose >= 5)
4877 {
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004878 verbose_enter_scroll();
Bram Moolenaar051b7822005-05-19 21:00:46 +00004879 smsg((char_u *)"ff_get_visited_list: new list for %s", filename);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004880 /* don't overwrite this either */
4881 msg_puts((char_u *)"\n");
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004882 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004883 }
4884#endif
4885
4886 /*
4887 * if we reach this we didn't find a list and we have to allocate new list
4888 */
4889 retptr = (ff_visited_list_hdr_T*)alloc((unsigned)sizeof(*retptr));
4890 if (retptr == NULL)
4891 return NULL;
4892
4893 retptr->ffvl_visited_list = NULL;
4894 retptr->ffvl_filename = vim_strsave(filename);
4895 if (retptr->ffvl_filename == NULL)
4896 {
4897 vim_free(retptr);
4898 return NULL;
4899 }
4900 retptr->ffvl_next = *list_headp;
4901 *list_headp = retptr;
4902
4903 return retptr;
4904}
4905
4906#ifdef FEAT_PATH_EXTRA
4907/*
4908 * check if two wildcard paths are equal. Returns TRUE or FALSE.
4909 * They are equal if:
4910 * - both paths are NULL
4911 * - they have the same length
4912 * - char by char comparison is OK
4913 * - the only differences are in the counters behind a '**', so
4914 * '**\20' is equal to '**\24'
4915 */
4916 static int
4917ff_wc_equal(s1, s2)
4918 char_u *s1;
4919 char_u *s2;
4920{
4921 int i;
4922
4923 if (s1 == s2)
4924 return TRUE;
4925
4926 if (s1 == NULL || s2 == NULL)
4927 return FALSE;
4928
4929 if (STRLEN(s1) != STRLEN(s2))
4930 return FAIL;
4931
4932 for (i = 0; s1[i] != NUL && s2[i] != NUL; i++)
4933 {
4934 if (s1[i] != s2[i]
4935#ifdef CASE_INSENSITIVE_FILENAME
4936 && TOUPPER_LOC(s1[i]) != TOUPPER_LOC(s2[i])
4937#endif
4938 )
4939 {
4940 if (i >= 2)
4941 if (s1[i-1] == '*' && s1[i-2] == '*')
4942 continue;
4943 else
4944 return FAIL;
4945 else
4946 return FAIL;
4947 }
4948 }
4949 return TRUE;
4950}
4951#endif
4952
4953/*
4954 * maintains the list of already visited files and dirs
4955 * returns FAIL if the given file/dir is already in the list
4956 * returns OK if it is newly added
4957 *
4958 * TODO: What to do on memory allocation problems?
4959 * -> return TRUE - Better the file is found several times instead of
4960 * never.
4961 */
4962 static int
4963ff_check_visited(visited_list, fname
4964#ifdef FEAT_PATH_EXTRA
4965 , wc_path
4966#endif
4967 )
4968 ff_visited_T **visited_list;
4969 char_u *fname;
4970#ifdef FEAT_PATH_EXTRA
4971 char_u *wc_path;
4972#endif
4973{
4974 ff_visited_T *vp;
4975#ifdef UNIX
4976 struct stat st;
4977 int url = FALSE;
4978#endif
4979
4980 /* For an URL we only compare the name, otherwise we compare the
4981 * device/inode (unix) or the full path name (not Unix). */
4982 if (path_with_url(fname))
4983 {
Bram Moolenaarbbebc852005-07-18 21:47:53 +00004984 vim_strncpy(ff_expand_buffer, fname, MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004985#ifdef UNIX
4986 url = TRUE;
4987#endif
4988 }
4989 else
4990 {
4991 ff_expand_buffer[0] = NUL;
4992#ifdef UNIX
4993 if (mch_stat((char *)fname, &st) < 0)
4994#else
4995 if (vim_FullName(fname, ff_expand_buffer, MAXPATHL, TRUE) == FAIL)
4996#endif
4997 return FAIL;
4998 }
4999
5000 /* check against list of already visited files */
5001 for (vp = *visited_list; vp != NULL; vp = vp->ffv_next)
5002 {
5003 if (
5004#ifdef UNIX
5005 !url
5006 ? (vp->ffv_dev == st.st_dev
5007 && vp->ffv_ino == st.st_ino)
5008 :
5009#endif
5010 fnamecmp(vp->ffv_fname, ff_expand_buffer) == 0
5011 )
5012 {
5013#ifdef FEAT_PATH_EXTRA
5014 /* are the wildcard parts equal */
5015 if (ff_wc_equal(vp->ffv_wc_path, wc_path) == TRUE)
5016#endif
5017 /* already visited */
5018 return FAIL;
5019 }
5020 }
5021
5022 /*
5023 * New file/dir. Add it to the list of visited files/dirs.
5024 */
5025 vp = (ff_visited_T *)alloc((unsigned)(sizeof(ff_visited_T)
5026 + STRLEN(ff_expand_buffer)));
5027
5028 if (vp != NULL)
5029 {
5030#ifdef UNIX
5031 if (!url)
5032 {
5033 vp->ffv_ino = st.st_ino;
5034 vp->ffv_dev = st.st_dev;
5035 vp->ffv_fname[0] = NUL;
5036 }
5037 else
5038 {
5039 vp->ffv_ino = 0;
5040 vp->ffv_dev = -1;
5041#endif
5042 STRCPY(vp->ffv_fname, ff_expand_buffer);
5043#ifdef UNIX
5044 }
5045#endif
5046#ifdef FEAT_PATH_EXTRA
5047 if (wc_path != NULL)
5048 vp->ffv_wc_path = vim_strsave(wc_path);
5049 else
5050 vp->ffv_wc_path = NULL;
5051#endif
5052
5053 vp->ffv_next = *visited_list;
5054 *visited_list = vp;
5055 }
5056
5057 return OK;
5058}
5059
5060/*
5061 * create stack element from given path pieces
5062 */
5063 static ff_stack_T *
5064ff_create_stack_element(fix_part,
5065#ifdef FEAT_PATH_EXTRA
5066 wc_part,
5067#endif
5068 level, star_star_empty)
5069 char_u *fix_part;
5070#ifdef FEAT_PATH_EXTRA
5071 char_u *wc_part;
5072#endif
5073 int level;
5074 int star_star_empty;
5075{
5076 ff_stack_T *new;
5077
5078 new = (ff_stack_T *)alloc((unsigned)sizeof(ff_stack_T));
5079 if (new == NULL)
5080 return NULL;
5081
5082 new->ffs_prev = NULL;
5083 new->ffs_filearray = NULL;
5084 new->ffs_filearray_size = 0;
5085 new->ffs_filearray_cur = 0;
5086 new->ffs_stage = 0;
5087 new->ffs_level = level;
5088 new->ffs_star_star_empty = star_star_empty;;
5089
5090 /* the following saves NULL pointer checks in vim_findfile */
5091 if (fix_part == NULL)
5092 fix_part = (char_u *)"";
5093 new->ffs_fix_path = vim_strsave(fix_part);
5094
5095#ifdef FEAT_PATH_EXTRA
5096 if (wc_part == NULL)
5097 wc_part = (char_u *)"";
5098 new->ffs_wc_path = vim_strsave(wc_part);
5099#endif
5100
5101 if (new->ffs_fix_path == NULL
5102#ifdef FEAT_PATH_EXTRA
5103 || new->ffs_wc_path == NULL
5104#endif
5105 )
5106 {
5107 ff_free_stack_element(new);
5108 new = NULL;
5109 }
5110
5111 return new;
5112}
5113
5114/*
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005115 * Push a dir on the directory stack.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005116 */
5117 static void
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005118ff_push(search_ctx, stack_ptr)
5119 ff_search_ctx_T *search_ctx;
5120 ff_stack_T *stack_ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005121{
5122 /* check for NULL pointer, not to return an error to the user, but
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005123 * to prevent a crash */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005124 if (stack_ptr != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005125 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005126 stack_ptr->ffs_prev = search_ctx->ffsc_stack_ptr;
5127 search_ctx->ffsc_stack_ptr = stack_ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005128 }
5129}
5130
5131/*
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005132 * Pop a dir from the directory stack.
5133 * Returns NULL if stack is empty.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005134 */
5135 static ff_stack_T *
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005136ff_pop(search_ctx)
5137 ff_search_ctx_T *search_ctx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005138{
5139 ff_stack_T *sptr;
5140
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005141 sptr = search_ctx->ffsc_stack_ptr;
5142 if (search_ctx->ffsc_stack_ptr != NULL)
5143 search_ctx->ffsc_stack_ptr = search_ctx->ffsc_stack_ptr->ffs_prev;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005144
5145 return sptr;
5146}
5147
5148/*
5149 * free the given stack element
5150 */
5151 static void
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005152ff_free_stack_element(stack_ptr)
5153 ff_stack_T *stack_ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005154{
5155 /* vim_free handles possible NULL pointers */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005156 vim_free(stack_ptr->ffs_fix_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005157#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005158 vim_free(stack_ptr->ffs_wc_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005159#endif
5160
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005161 if (stack_ptr->ffs_filearray != NULL)
5162 FreeWild(stack_ptr->ffs_filearray_size, stack_ptr->ffs_filearray);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005163
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005164 vim_free(stack_ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005165}
5166
5167/*
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005168 * Clear the search context, but NOT the visited list.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005169 */
5170 static void
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005171ff_clear(search_ctx)
5172 ff_search_ctx_T *search_ctx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005173{
5174 ff_stack_T *sptr;
5175
5176 /* clear up stack */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005177 while ((sptr = ff_pop(search_ctx)) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005178 ff_free_stack_element(sptr);
5179
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005180 vim_free(search_ctx->ffsc_file_to_search);
5181 vim_free(search_ctx->ffsc_start_dir);
5182 vim_free(search_ctx->ffsc_fix_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005183#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005184 vim_free(search_ctx->ffsc_wc_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005185#endif
5186
5187#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005188 if (search_ctx->ffsc_stopdirs_v != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005189 {
5190 int i = 0;
5191
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005192 while (search_ctx->ffsc_stopdirs_v[i] != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005193 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005194 vim_free(search_ctx->ffsc_stopdirs_v[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005195 i++;
5196 }
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005197 vim_free(search_ctx->ffsc_stopdirs_v);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005198 }
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005199 search_ctx->ffsc_stopdirs_v = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005200#endif
5201
5202 /* reset everything */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005203 search_ctx->ffsc_file_to_search = NULL;
5204 search_ctx->ffsc_start_dir = NULL;
5205 search_ctx->ffsc_fix_path = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005206#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005207 search_ctx->ffsc_wc_path = NULL;
5208 search_ctx->ffsc_level = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005209#endif
5210}
5211
5212#ifdef FEAT_PATH_EXTRA
5213/*
5214 * check if the given path is in the stopdirs
5215 * returns TRUE if yes else FALSE
5216 */
5217 static int
5218ff_path_in_stoplist(path, path_len, stopdirs_v)
5219 char_u *path;
5220 int path_len;
5221 char_u **stopdirs_v;
5222{
5223 int i = 0;
5224
5225 /* eat up trailing path separators, except the first */
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00005226 while (path_len > 1 && vim_ispathsep(path[path_len - 1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005227 path_len--;
5228
5229 /* if no path consider it as match */
5230 if (path_len == 0)
5231 return TRUE;
5232
5233 for (i = 0; stopdirs_v[i] != NULL; i++)
5234 {
5235 if ((int)STRLEN(stopdirs_v[i]) > path_len)
5236 {
5237 /* match for parent directory. So '/home' also matches
5238 * '/home/rks'. Check for PATHSEP in stopdirs_v[i], else
5239 * '/home/r' would also match '/home/rks'
5240 */
5241 if (fnamencmp(stopdirs_v[i], path, path_len) == 0
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00005242 && vim_ispathsep(stopdirs_v[i][path_len]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005243 return TRUE;
5244 }
5245 else
5246 {
5247 if (fnamecmp(stopdirs_v[i], path) == 0)
5248 return TRUE;
5249 }
5250 }
5251 return FALSE;
5252}
5253#endif
5254
5255#if defined(FEAT_SEARCHPATH) || defined(PROTO)
5256/*
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005257 * Find the file name "ptr[len]" in the path. Also finds directory names.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005258 *
5259 * On the first call set the parameter 'first' to TRUE to initialize
5260 * the search. For repeating calls to FALSE.
5261 *
5262 * Repeating calls will return other files called 'ptr[len]' from the path.
5263 *
5264 * Only on the first call 'ptr' and 'len' are used. For repeating calls they
5265 * don't need valid values.
5266 *
5267 * If nothing found on the first call the option FNAME_MESS will issue the
5268 * message:
5269 * 'Can't find file "<file>" in path'
5270 * On repeating calls:
5271 * 'No more file "<file>" found in path'
5272 *
5273 * options:
5274 * FNAME_MESS give error message when not found
5275 *
5276 * Uses NameBuff[]!
5277 *
5278 * Returns an allocated string for the file name. NULL for error.
5279 *
5280 */
5281 char_u *
5282find_file_in_path(ptr, len, options, first, rel_fname)
5283 char_u *ptr; /* file name */
5284 int len; /* length of file name */
5285 int options;
5286 int first; /* use count'th matching file name */
5287 char_u *rel_fname; /* file name searching relative to */
5288{
5289 return find_file_in_path_option(ptr, len, options, first,
5290 *curbuf->b_p_path == NUL ? p_path : curbuf->b_p_path,
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005291 FINDFILE_BOTH, rel_fname, curbuf->b_p_sua);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005292}
5293
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005294static char_u *ff_file_to_find = NULL;
5295static void *fdip_search_ctx = NULL;
5296
5297#if defined(EXITFREE)
5298 static void
5299free_findfile()
5300{
5301 vim_free(ff_file_to_find);
5302 vim_findfile_cleanup(fdip_search_ctx);
5303}
5304#endif
5305
Bram Moolenaar071d4272004-06-13 20:20:40 +00005306/*
5307 * Find the directory name "ptr[len]" in the path.
5308 *
5309 * options:
5310 * FNAME_MESS give error message when not found
5311 *
5312 * Uses NameBuff[]!
5313 *
5314 * Returns an allocated string for the file name. NULL for error.
5315 */
5316 char_u *
5317find_directory_in_path(ptr, len, options, rel_fname)
5318 char_u *ptr; /* file name */
5319 int len; /* length of file name */
5320 int options;
5321 char_u *rel_fname; /* file name searching relative to */
5322{
5323 return find_file_in_path_option(ptr, len, options, TRUE, p_cdpath,
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005324 FINDFILE_DIR, rel_fname, (char_u *)"");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005325}
5326
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00005327 char_u *
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005328find_file_in_path_option(ptr, len, options, first, path_option, find_what, rel_fname, suffixes)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005329 char_u *ptr; /* file name */
5330 int len; /* length of file name */
5331 int options;
5332 int first; /* use count'th matching file name */
5333 char_u *path_option; /* p_path or p_cdpath */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005334 int find_what; /* FINDFILE_FILE, _DIR or _BOTH */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005335 char_u *rel_fname; /* file name we are looking relative to. */
Bram Moolenaar433f7c82006-03-21 21:29:36 +00005336 char_u *suffixes; /* list of suffixes, 'suffixesadd' option */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005337{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005338 static char_u *dir;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005339 static int did_findfile_init = FALSE;
5340 char_u save_char;
5341 char_u *file_name = NULL;
5342 char_u *buf = NULL;
5343 int rel_to_curdir;
5344#ifdef AMIGA
5345 struct Process *proc = (struct Process *)FindTask(0L);
5346 APTR save_winptr = proc->pr_WindowPtr;
5347
5348 /* Avoid a requester here for a volume that doesn't exist. */
5349 proc->pr_WindowPtr = (APTR)-1L;
5350#endif
5351
5352 if (first == TRUE)
5353 {
5354 /* copy file name into NameBuff, expanding environment variables */
5355 save_char = ptr[len];
5356 ptr[len] = NUL;
5357 expand_env(ptr, NameBuff, MAXPATHL);
5358 ptr[len] = save_char;
5359
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005360 vim_free(ff_file_to_find);
5361 ff_file_to_find = vim_strsave(NameBuff);
5362 if (ff_file_to_find == NULL) /* out of memory */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005363 {
5364 file_name = NULL;
5365 goto theend;
5366 }
5367 }
5368
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005369 rel_to_curdir = (ff_file_to_find[0] == '.'
5370 && (ff_file_to_find[1] == NUL
5371 || vim_ispathsep(ff_file_to_find[1])
5372 || (ff_file_to_find[1] == '.'
5373 && (ff_file_to_find[2] == NUL
5374 || vim_ispathsep(ff_file_to_find[2])))));
5375 if (vim_isAbsName(ff_file_to_find)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005376 /* "..", "../path", "." and "./path": don't use the path_option */
5377 || rel_to_curdir
5378#if defined(MSWIN) || defined(MSDOS) || defined(OS2)
5379 /* handle "\tmp" as absolute path */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005380 || vim_ispathsep(ff_file_to_find[0])
Bram Moolenaar071d4272004-06-13 20:20:40 +00005381 /* handle "c:name" as absulute path */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005382 || (ff_file_to_find[0] != NUL && ff_file_to_find[1] == ':')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005383#endif
5384#ifdef AMIGA
5385 /* handle ":tmp" as absolute path */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005386 || ff_file_to_find[0] == ':'
Bram Moolenaar071d4272004-06-13 20:20:40 +00005387#endif
5388 )
5389 {
5390 /*
5391 * Absolute path, no need to use "path_option".
5392 * If this is not a first call, return NULL. We already returned a
5393 * filename on the first call.
5394 */
5395 if (first == TRUE)
5396 {
5397 int l;
5398 int run;
5399
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005400 if (path_with_url(ff_file_to_find))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005401 {
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005402 file_name = vim_strsave(ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005403 goto theend;
5404 }
5405
5406 /* When FNAME_REL flag given first use the directory of the file.
5407 * Otherwise or when this fails use the current directory. */
5408 for (run = 1; run <= 2; ++run)
5409 {
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005410 l = (int)STRLEN(ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005411 if (run == 1
5412 && rel_to_curdir
5413 && (options & FNAME_REL)
5414 && rel_fname != NULL
5415 && STRLEN(rel_fname) + l < MAXPATHL)
5416 {
5417 STRCPY(NameBuff, rel_fname);
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005418 STRCPY(gettail(NameBuff), ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005419 l = (int)STRLEN(NameBuff);
5420 }
5421 else
5422 {
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005423 STRCPY(NameBuff, ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005424 run = 2;
5425 }
5426
5427 /* When the file doesn't exist, try adding parts of
5428 * 'suffixesadd'. */
Bram Moolenaar433f7c82006-03-21 21:29:36 +00005429 buf = suffixes;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005430 for (;;)
5431 {
5432 if (
5433#ifdef DJGPP
5434 /* "C:" by itself will fail for mch_getperm(),
5435 * assume it's always valid. */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005436 (find_what != FINDFILE_FILE && NameBuff[0] != NUL
Bram Moolenaar071d4272004-06-13 20:20:40 +00005437 && NameBuff[1] == ':'
5438 && NameBuff[2] == NUL) ||
5439#endif
5440 (mch_getperm(NameBuff) >= 0
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005441 && (find_what == FINDFILE_BOTH
5442 || ((find_what == FINDFILE_DIR)
5443 == mch_isdir(NameBuff)))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005444 {
5445 file_name = vim_strsave(NameBuff);
5446 goto theend;
5447 }
5448 if (*buf == NUL)
5449 break;
5450 copy_option_part(&buf, NameBuff + l, MAXPATHL - l, ",");
5451 }
5452 }
5453 }
5454 }
5455 else
5456 {
5457 /*
5458 * Loop over all paths in the 'path' or 'cdpath' option.
5459 * When "first" is set, first setup to the start of the option.
5460 * Otherwise continue to find the next match.
5461 */
5462 if (first == TRUE)
5463 {
5464 /* vim_findfile_free_visited can handle a possible NULL pointer */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005465 vim_findfile_free_visited(fdip_search_ctx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005466 dir = path_option;
5467 did_findfile_init = FALSE;
5468 }
5469
5470 for (;;)
5471 {
5472 if (did_findfile_init)
5473 {
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005474 file_name = vim_findfile(fdip_search_ctx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005475 if (file_name != NULL)
5476 break;
5477
5478 did_findfile_init = FALSE;
5479 }
5480 else
5481 {
5482 char_u *r_ptr;
5483
5484 if (dir == NULL || *dir == NUL)
5485 {
5486 /* We searched all paths of the option, now we can
5487 * free the search context. */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005488 vim_findfile_cleanup(fdip_search_ctx);
5489 fdip_search_ctx = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005490 break;
5491 }
5492
5493 if ((buf = alloc((int)(MAXPATHL))) == NULL)
5494 break;
5495
5496 /* copy next path */
5497 buf[0] = 0;
5498 copy_option_part(&dir, buf, MAXPATHL, " ,");
5499
5500#ifdef FEAT_PATH_EXTRA
5501 /* get the stopdir string */
5502 r_ptr = vim_findfile_stopdir(buf);
5503#else
5504 r_ptr = NULL;
5505#endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005506 fdip_search_ctx = vim_findfile_init(buf, ff_file_to_find,
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005507 r_ptr, 100, FALSE, find_what,
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005508 fdip_search_ctx, FALSE, rel_fname);
5509 if (fdip_search_ctx != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005510 did_findfile_init = TRUE;
5511 vim_free(buf);
5512 }
5513 }
5514 }
5515 if (file_name == NULL && (options & FNAME_MESS))
5516 {
5517 if (first == TRUE)
5518 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005519 if (find_what == FINDFILE_DIR)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005520 EMSG2(_("E344: Can't find directory \"%s\" in cdpath"),
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005521 ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005522 else
5523 EMSG2(_("E345: Can't find file \"%s\" in path"),
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005524 ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005525 }
5526 else
5527 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005528 if (find_what == FINDFILE_DIR)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005529 EMSG2(_("E346: No more directory \"%s\" found in cdpath"),
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005530 ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005531 else
5532 EMSG2(_("E347: No more file \"%s\" found in path"),
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005533 ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005534 }
5535 }
5536
5537theend:
5538#ifdef AMIGA
5539 proc->pr_WindowPtr = save_winptr;
5540#endif
5541 return file_name;
5542}
5543
5544#endif /* FEAT_SEARCHPATH */
5545
5546/*
5547 * Change directory to "new_dir". If FEAT_SEARCHPATH is defined, search
5548 * 'cdpath' for relative directory names, otherwise just mch_chdir().
5549 */
5550 int
5551vim_chdir(new_dir)
5552 char_u *new_dir;
5553{
5554#ifndef FEAT_SEARCHPATH
5555 return mch_chdir((char *)new_dir);
5556#else
5557 char_u *dir_name;
5558 int r;
5559
5560 dir_name = find_directory_in_path(new_dir, (int)STRLEN(new_dir),
5561 FNAME_MESS, curbuf->b_ffname);
5562 if (dir_name == NULL)
5563 return -1;
5564 r = mch_chdir((char *)dir_name);
5565 vim_free(dir_name);
5566 return r;
5567#endif
5568}
5569
5570/*
Bram Moolenaarbbebc852005-07-18 21:47:53 +00005571 * Get user name from machine-specific function.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005572 * Returns the user name in "buf[len]".
Bram Moolenaarbbebc852005-07-18 21:47:53 +00005573 * Some systems are quite slow in obtaining the user name (Windows NT), thus
5574 * cache the result.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005575 * Returns OK or FAIL.
5576 */
5577 int
5578get_user_name(buf, len)
5579 char_u *buf;
5580 int len;
5581{
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005582 if (username == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005583 {
5584 if (mch_get_user_name(buf, len) == FAIL)
5585 return FAIL;
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005586 username = vim_strsave(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005587 }
5588 else
Bram Moolenaarbbebc852005-07-18 21:47:53 +00005589 vim_strncpy(buf, username, len - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005590 return OK;
5591}
5592
5593#ifndef HAVE_QSORT
5594/*
5595 * Our own qsort(), for systems that don't have it.
5596 * It's simple and slow. From the K&R C book.
5597 */
5598 void
5599qsort(base, elm_count, elm_size, cmp)
5600 void *base;
5601 size_t elm_count;
5602 size_t elm_size;
5603 int (*cmp) __ARGS((const void *, const void *));
5604{
5605 char_u *buf;
5606 char_u *p1;
5607 char_u *p2;
5608 int i, j;
5609 int gap;
5610
5611 buf = alloc((unsigned)elm_size);
5612 if (buf == NULL)
5613 return;
5614
5615 for (gap = elm_count / 2; gap > 0; gap /= 2)
5616 for (i = gap; i < elm_count; ++i)
5617 for (j = i - gap; j >= 0; j -= gap)
5618 {
5619 /* Compare the elements. */
5620 p1 = (char_u *)base + j * elm_size;
5621 p2 = (char_u *)base + (j + gap) * elm_size;
5622 if ((*cmp)((void *)p1, (void *)p2) <= 0)
5623 break;
5624 /* Exchange the elemets. */
5625 mch_memmove(buf, p1, elm_size);
5626 mch_memmove(p1, p2, elm_size);
5627 mch_memmove(p2, buf, elm_size);
5628 }
5629
5630 vim_free(buf);
5631}
5632#endif
5633
Bram Moolenaar071d4272004-06-13 20:20:40 +00005634/*
5635 * Sort an array of strings.
5636 */
5637static int
5638#ifdef __BORLANDC__
5639_RTLENTRYF
5640#endif
5641sort_compare __ARGS((const void *s1, const void *s2));
5642
5643 static int
5644#ifdef __BORLANDC__
5645_RTLENTRYF
5646#endif
5647sort_compare(s1, s2)
5648 const void *s1;
5649 const void *s2;
5650{
5651 return STRCMP(*(char **)s1, *(char **)s2);
5652}
5653
5654 void
5655sort_strings(files, count)
5656 char_u **files;
5657 int count;
5658{
5659 qsort((void *)files, (size_t)count, sizeof(char_u *), sort_compare);
5660}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005661
5662#if !defined(NO_EXPANDPATH) || defined(PROTO)
5663/*
5664 * Compare path "p[]" to "q[]".
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005665 * If "maxlen" >= 0 compare "p[maxlen]" to "q[maxlen]"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005666 * Return value like strcmp(p, q), but consider path separators.
5667 */
5668 int
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005669pathcmp(p, q, maxlen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005670 const char *p, *q;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005671 int maxlen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005672{
5673 int i;
Bram Moolenaar86b68352004-12-27 21:59:20 +00005674 const char *s = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005675
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005676 for (i = 0; maxlen < 0 || i < maxlen; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005677 {
5678 /* End of "p": check if "q" also ends or just has a slash. */
5679 if (p[i] == NUL)
5680 {
5681 if (q[i] == NUL) /* full match */
5682 return 0;
5683 s = q;
5684 break;
5685 }
5686
5687 /* End of "q": check if "p" just has a slash. */
5688 if (q[i] == NUL)
5689 {
5690 s = p;
5691 break;
5692 }
5693
5694 if (
5695#ifdef CASE_INSENSITIVE_FILENAME
5696 TOUPPER_LOC(p[i]) != TOUPPER_LOC(q[i])
5697#else
5698 p[i] != q[i]
5699#endif
5700#ifdef BACKSLASH_IN_FILENAME
5701 /* consider '/' and '\\' to be equal */
5702 && !((p[i] == '/' && q[i] == '\\')
5703 || (p[i] == '\\' && q[i] == '/'))
5704#endif
5705 )
5706 {
5707 if (vim_ispathsep(p[i]))
5708 return -1;
5709 if (vim_ispathsep(q[i]))
5710 return 1;
5711 return ((char_u *)p)[i] - ((char_u *)q)[i]; /* no match */
5712 }
5713 }
Bram Moolenaar86b68352004-12-27 21:59:20 +00005714 if (s == NULL) /* "i" ran into "maxlen" */
5715 return 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005716
5717 /* ignore a trailing slash, but not "//" or ":/" */
Bram Moolenaar86b68352004-12-27 21:59:20 +00005718 if (s[i + 1] == NUL
5719 && i > 0
5720 && !after_pathsep((char_u *)s, (char_u *)s + i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005721#ifdef BACKSLASH_IN_FILENAME
Bram Moolenaar86b68352004-12-27 21:59:20 +00005722 && (s[i] == '/' || s[i] == '\\')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005723#else
Bram Moolenaar86b68352004-12-27 21:59:20 +00005724 && s[i] == '/'
Bram Moolenaar071d4272004-06-13 20:20:40 +00005725#endif
Bram Moolenaar86b68352004-12-27 21:59:20 +00005726 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00005727 return 0; /* match with trailing slash */
5728 if (s == q)
5729 return -1; /* no match */
5730 return 1;
5731}
5732#endif
5733
Bram Moolenaar071d4272004-06-13 20:20:40 +00005734/*
5735 * The putenv() implementation below comes from the "screen" program.
5736 * Included with permission from Juergen Weigert.
5737 * See pty.c for the copyright notice.
5738 */
5739
5740/*
5741 * putenv -- put value into environment
5742 *
5743 * Usage: i = putenv (string)
5744 * int i;
5745 * char *string;
5746 *
5747 * where string is of the form <name>=<value>.
5748 * Putenv returns 0 normally, -1 on error (not enough core for malloc).
5749 *
5750 * Putenv may need to add a new name into the environment, or to
5751 * associate a value longer than the current value with a particular
5752 * name. So, to make life simpler, putenv() copies your entire
5753 * environment into the heap (i.e. malloc()) from the stack
5754 * (i.e. where it resides when your process is initiated) the first
5755 * time you call it.
5756 *
5757 * (history removed, not very interesting. See the "screen" sources.)
5758 */
5759
5760#if !defined(HAVE_SETENV) && !defined(HAVE_PUTENV)
5761
5762#define EXTRASIZE 5 /* increment to add to env. size */
5763
5764static int envsize = -1; /* current size of environment */
5765#ifndef MACOS_CLASSIC
5766extern
5767#endif
5768 char **environ; /* the global which is your env. */
5769
5770static int findenv __ARGS((char *name)); /* look for a name in the env. */
5771static int newenv __ARGS((void)); /* copy env. from stack to heap */
5772static int moreenv __ARGS((void)); /* incr. size of env. */
5773
5774 int
5775putenv(string)
5776 const char *string;
5777{
5778 int i;
5779 char *p;
5780
5781 if (envsize < 0)
5782 { /* first time putenv called */
5783 if (newenv() < 0) /* copy env. to heap */
5784 return -1;
5785 }
5786
5787 i = findenv((char *)string); /* look for name in environment */
5788
5789 if (i < 0)
5790 { /* name must be added */
5791 for (i = 0; environ[i]; i++);
5792 if (i >= (envsize - 1))
5793 { /* need new slot */
5794 if (moreenv() < 0)
5795 return -1;
5796 }
5797 p = (char *)alloc((unsigned)(strlen(string) + 1));
5798 if (p == NULL) /* not enough core */
5799 return -1;
5800 environ[i + 1] = 0; /* new end of env. */
5801 }
5802 else
5803 { /* name already in env. */
5804 p = vim_realloc(environ[i], strlen(string) + 1);
5805 if (p == NULL)
5806 return -1;
5807 }
5808 sprintf(p, "%s", string); /* copy into env. */
5809 environ[i] = p;
5810
5811 return 0;
5812}
5813
5814 static int
5815findenv(name)
5816 char *name;
5817{
5818 char *namechar, *envchar;
5819 int i, found;
5820
5821 found = 0;
5822 for (i = 0; environ[i] && !found; i++)
5823 {
5824 envchar = environ[i];
5825 namechar = name;
5826 while (*namechar && *namechar != '=' && (*namechar == *envchar))
5827 {
5828 namechar++;
5829 envchar++;
5830 }
5831 found = ((*namechar == '\0' || *namechar == '=') && *envchar == '=');
5832 }
5833 return found ? i - 1 : -1;
5834}
5835
5836 static int
5837newenv()
5838{
5839 char **env, *elem;
5840 int i, esize;
5841
5842#ifdef MACOS
5843 /* for Mac a new, empty environment is created */
5844 i = 0;
5845#else
5846 for (i = 0; environ[i]; i++)
5847 ;
5848#endif
5849 esize = i + EXTRASIZE + 1;
5850 env = (char **)alloc((unsigned)(esize * sizeof (elem)));
5851 if (env == NULL)
5852 return -1;
5853
5854#ifndef MACOS
5855 for (i = 0; environ[i]; i++)
5856 {
5857 elem = (char *)alloc((unsigned)(strlen(environ[i]) + 1));
5858 if (elem == NULL)
5859 return -1;
5860 env[i] = elem;
5861 strcpy(elem, environ[i]);
5862 }
5863#endif
5864
5865 env[i] = 0;
5866 environ = env;
5867 envsize = esize;
5868 return 0;
5869}
5870
5871 static int
5872moreenv()
5873{
5874 int esize;
5875 char **env;
5876
5877 esize = envsize + EXTRASIZE;
5878 env = (char **)vim_realloc((char *)environ, esize * sizeof (*env));
5879 if (env == 0)
5880 return -1;
5881 environ = env;
5882 envsize = esize;
5883 return 0;
5884}
5885
5886# ifdef USE_VIMPTY_GETENV
5887 char_u *
5888vimpty_getenv(string)
5889 const char_u *string;
5890{
5891 int i;
5892 char_u *p;
5893
5894 if (envsize < 0)
5895 return NULL;
5896
5897 i = findenv((char *)string);
5898
5899 if (i < 0)
5900 return NULL;
5901
5902 p = vim_strchr((char_u *)environ[i], '=');
5903 return (p + 1);
5904}
5905# endif
5906
5907#endif /* !defined(HAVE_SETENV) && !defined(HAVE_PUTENV) */
Bram Moolenaarc4a06d32005-06-07 21:04:49 +00005908
Bram Moolenaarc4956c82006-03-12 21:58:43 +00005909#if defined(FEAT_EVAL) || defined(FEAT_SPELL) || defined(PROTO)
Bram Moolenaarc4a06d32005-06-07 21:04:49 +00005910/*
5911 * Return 0 for not writable, 1 for writable file, 2 for a dir which we have
5912 * rights to write into.
5913 */
5914 int
5915filewritable(fname)
5916 char_u *fname;
5917{
5918 int retval = 0;
5919#if defined(UNIX) || defined(VMS)
5920 int perm = 0;
5921#endif
5922
5923#if defined(UNIX) || defined(VMS)
5924 perm = mch_getperm(fname);
5925#endif
5926#ifndef MACOS_CLASSIC /* TODO: get either mch_writable or mch_access */
5927 if (
5928# ifdef WIN3264
5929 mch_writable(fname) &&
5930# else
5931# if defined(UNIX) || defined(VMS)
5932 (perm & 0222) &&
5933# endif
5934# endif
5935 mch_access((char *)fname, W_OK) == 0
5936 )
5937#endif
5938 {
5939 ++retval;
5940 if (mch_isdir(fname))
5941 ++retval;
5942 }
5943 return retval;
5944}
5945#endif
Bram Moolenaar6bab4d12005-06-16 21:53:56 +00005946
5947/*
5948 * Print an error message with one or two "%s" and one or two string arguments.
5949 * This is not in message.c to avoid a warning for prototypes.
5950 */
5951 int
5952emsg3(s, a1, a2)
5953 char_u *s, *a1, *a2;
5954{
Bram Moolenaareb3593b2006-04-22 22:33:57 +00005955 if (emsg_not_now())
Bram Moolenaar6bab4d12005-06-16 21:53:56 +00005956 return TRUE; /* no error messages at the moment */
Bram Moolenaar6f192452007-11-08 19:49:02 +00005957#ifdef HAVE_STDARG_H
5958 vim_snprintf((char *)IObuff, IOSIZE, (char *)s, a1, a2);
5959#else
Bram Moolenaareb3593b2006-04-22 22:33:57 +00005960 vim_snprintf((char *)IObuff, IOSIZE, (char *)s, (long_u)a1, (long_u)a2);
Bram Moolenaar6f192452007-11-08 19:49:02 +00005961#endif
Bram Moolenaar6bab4d12005-06-16 21:53:56 +00005962 return emsg(IObuff);
5963}
5964
5965/*
5966 * Print an error message with one "%ld" and one long int argument.
5967 * This is not in message.c to avoid a warning for prototypes.
5968 */
5969 int
5970emsgn(s, n)
5971 char_u *s;
5972 long n;
5973{
Bram Moolenaareb3593b2006-04-22 22:33:57 +00005974 if (emsg_not_now())
Bram Moolenaar6bab4d12005-06-16 21:53:56 +00005975 return TRUE; /* no error messages at the moment */
5976 vim_snprintf((char *)IObuff, IOSIZE, (char *)s, n);
5977 return emsg(IObuff);
5978}