blob: 9a2f06d01969a3fae994b37198370dcf9fd66303 [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
15#ifdef HAVE_FCNTL_H
16# include <fcntl.h> /* for chdir() */
17#endif
18
Bram Moolenaarf461c8e2005-06-25 23:04:51 +000019static char_u *username = NULL; /* cached result of mch_get_user_name() */
20
21static char_u *ff_expand_buffer = NULL; /* used for expanding filenames */
22
Bram Moolenaar071d4272004-06-13 20:20:40 +000023#if defined(FEAT_VIRTUALEDIT) || defined(PROTO)
24static int coladvance2 __ARGS((pos_T *pos, int addspaces, int finetune, colnr_T wcol));
25
26/*
27 * Return TRUE if in the current mode we need to use virtual.
28 */
29 int
30virtual_active()
31{
32 /* While an operator is being executed we return "virtual_op", because
33 * VIsual_active has already been reset, thus we can't check for "block"
34 * being used. */
35 if (virtual_op != MAYBE)
36 return virtual_op;
37 return (ve_flags == VE_ALL
38# ifdef FEAT_VISUAL
39 || ((ve_flags & VE_BLOCK) && VIsual_active && VIsual_mode == Ctrl_V)
40# endif
41 || ((ve_flags & VE_INSERT) && (State & INSERT)));
42}
43
44/*
45 * Get the screen position of the cursor.
46 */
47 int
48getviscol()
49{
50 colnr_T x;
51
52 getvvcol(curwin, &curwin->w_cursor, &x, NULL, NULL);
53 return (int)x;
54}
55
56/*
57 * Get the screen position of character col with a coladd in the cursor line.
58 */
59 int
60getviscol2(col, coladd)
61 colnr_T col;
62 colnr_T coladd;
63{
64 colnr_T x;
65 pos_T pos;
66
67 pos.lnum = curwin->w_cursor.lnum;
68 pos.col = col;
69 pos.coladd = coladd;
70 getvvcol(curwin, &pos, &x, NULL, NULL);
71 return (int)x;
72}
73
74/*
75 * Go to column "wcol", and add/insert white space as neccessary to get the
76 * cursor in that column.
77 * The caller must have saved the cursor line for undo!
78 */
79 int
80coladvance_force(wcol)
81 colnr_T wcol;
82{
83 int rc = coladvance2(&curwin->w_cursor, TRUE, FALSE, wcol);
84
85 if (wcol == MAXCOL)
86 curwin->w_valid &= ~VALID_VIRTCOL;
87 else
88 {
89 /* Virtcol is valid */
90 curwin->w_valid |= VALID_VIRTCOL;
91 curwin->w_virtcol = wcol;
92 }
93 return rc;
94}
95#endif
96
97/*
98 * Try to advance the Cursor to the specified screen column.
99 * If virtual editing: fine tune the cursor position.
100 * Note that all virtual positions off the end of a line should share
101 * a curwin->w_cursor.col value (n.b. this is equal to STRLEN(line)),
102 * beginning at coladd 0.
103 *
104 * return OK if desired column is reached, FAIL if not
105 */
106 int
107coladvance(wcol)
108 colnr_T wcol;
109{
110 int rc = getvpos(&curwin->w_cursor, wcol);
111
112 if (wcol == MAXCOL || rc == FAIL)
113 curwin->w_valid &= ~VALID_VIRTCOL;
Bram Moolenaardfccaf02004-12-31 20:56:11 +0000114 else if (*ml_get_cursor() != TAB)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000115 {
Bram Moolenaardfccaf02004-12-31 20:56:11 +0000116 /* Virtcol is valid when not on a TAB */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000117 curwin->w_valid |= VALID_VIRTCOL;
118 curwin->w_virtcol = wcol;
119 }
120 return rc;
121}
122
123/*
124 * Return in "pos" the position of the cursor advanced to screen column "wcol".
125 * return OK if desired column is reached, FAIL if not
126 */
127 int
128getvpos(pos, wcol)
129 pos_T *pos;
130 colnr_T wcol;
131{
132#ifdef FEAT_VIRTUALEDIT
133 return coladvance2(pos, FALSE, virtual_active(), wcol);
134}
135
136 static int
137coladvance2(pos, addspaces, finetune, wcol)
138 pos_T *pos;
139 int addspaces; /* change the text to achieve our goal? */
140 int finetune; /* change char offset for the excact column */
141 colnr_T wcol; /* column to move to */
142{
143#endif
144 int idx;
145 char_u *ptr;
146 char_u *line;
147 colnr_T col = 0;
148 int csize = 0;
149 int one_more;
150#ifdef FEAT_LINEBREAK
151 int head = 0;
152#endif
153
154 one_more = (State & INSERT) || restart_edit != NUL
155#ifdef FEAT_VISUAL
156 || (VIsual_active && *p_sel != 'o')
157#endif
158 ;
159 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!! */
269 char_u *newline = alloc(linelen + csize);
270 int t, s = 0;
271 int v;
272
273 /*
274 * break a tab
275 */
276 if (newline == NULL || -correct > csize)
277 return FAIL;
278
279 for (t = 0; t < linelen; t++)
280 {
281 if (t != idx)
282 newline[s++] = line[t];
283 else
284 for (v = 0; v < csize; v++)
285 newline[s++] = ' ';
286 }
287
288 newline[linelen + csize - 1] = NUL;
289
290 ml_replace(pos->lnum, newline, FALSE);
291 changed_bytes(pos->lnum, idx);
292 idx += (csize - 1 + correct);
293 col += correct;
294 }
295 }
296#endif
297 }
298
299 if (idx < 0)
300 pos->col = 0;
301 else
302 pos->col = idx;
303
304#ifdef FEAT_VIRTUALEDIT
305 pos->coladd = 0;
306
307 if (finetune)
308 {
309 if (wcol == MAXCOL)
310 {
311 /* The width of the last character is used to set coladd. */
312 if (!one_more)
313 {
314 colnr_T scol, ecol;
315
316 getvcol(curwin, pos, &scol, NULL, &ecol);
317 pos->coladd = ecol - scol;
318 }
319 }
320 else
321 {
322 int b = (int)wcol - (int)col;
323
324 /* The difference between wcol and col is used to set coladd. */
325 if (b > 0 && b < (MAXCOL - 2 * W_WIDTH(curwin)))
326 pos->coladd = b;
327
328 col += b;
329 }
330 }
331#endif
332
333#ifdef FEAT_MBYTE
334 /* prevent cursor from moving on the trail byte */
335 if (has_mbyte)
336 mb_adjust_cursor();
337#endif
338
339 if (col < wcol)
340 return FAIL;
341 return OK;
342}
343
344/*
345 * inc(p)
346 *
347 * Increment the line pointer 'p' crossing line boundaries as necessary.
348 * Return 1 when going to the next line.
349 * Return 2 when moving forward onto a NUL at the end of the line).
350 * Return -1 when at the end of file.
351 * Return 0 otherwise.
352 */
353 int
354inc_cursor()
355{
356 return inc(&curwin->w_cursor);
357}
358
359 int
360inc(lp)
361 pos_T *lp;
362{
363 char_u *p = ml_get_pos(lp);
364
365 if (*p != NUL) /* still within line, move to next char (may be NUL) */
366 {
367#ifdef FEAT_MBYTE
368 if (has_mbyte)
369 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000370 int l = (*mb_ptr2len)(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000371
372 lp->col += l;
373 return ((p[l] != NUL) ? 0 : 2);
374 }
375#endif
376 lp->col++;
377#ifdef FEAT_VIRTUALEDIT
378 lp->coladd = 0;
379#endif
380 return ((p[1] != NUL) ? 0 : 2);
381 }
382 if (lp->lnum != curbuf->b_ml.ml_line_count) /* there is a next line */
383 {
384 lp->col = 0;
385 lp->lnum++;
386#ifdef FEAT_VIRTUALEDIT
387 lp->coladd = 0;
388#endif
389 return 1;
390 }
391 return -1;
392}
393
394/*
395 * incl(lp): same as inc(), but skip the NUL at the end of non-empty lines
396 */
397 int
398incl(lp)
399 pos_T *lp;
400{
401 int r;
402
403 if ((r = inc(lp)) >= 1 && lp->col)
404 r = inc(lp);
405 return r;
406}
407
408/*
409 * dec(p)
410 *
411 * Decrement the line pointer 'p' crossing line boundaries as necessary.
412 * Return 1 when crossing a line, -1 when at start of file, 0 otherwise.
413 */
414 int
415dec_cursor()
416{
417 return dec(&curwin->w_cursor);
418}
419
420 int
421dec(lp)
422 pos_T *lp;
423{
424 char_u *p;
425
426#ifdef FEAT_VIRTUALEDIT
427 lp->coladd = 0;
428#endif
429 if (lp->col > 0) /* still within line */
430 {
431 lp->col--;
432#ifdef FEAT_MBYTE
433 if (has_mbyte)
434 {
435 p = ml_get(lp->lnum);
436 lp->col -= (*mb_head_off)(p, p + lp->col);
437 }
438#endif
439 return 0;
440 }
441 if (lp->lnum > 1) /* there is a prior line */
442 {
443 lp->lnum--;
444 p = ml_get(lp->lnum);
445 lp->col = (colnr_T)STRLEN(p);
446#ifdef FEAT_MBYTE
447 if (has_mbyte)
448 lp->col -= (*mb_head_off)(p, p + lp->col);
449#endif
450 return 1;
451 }
452 return -1; /* at start of file */
453}
454
455/*
456 * decl(lp): same as dec(), but skip the NUL at the end of non-empty lines
457 */
458 int
459decl(lp)
460 pos_T *lp;
461{
462 int r;
463
464 if ((r = dec(lp)) == 1 && lp->col)
465 r = dec(lp);
466 return r;
467}
468
469/*
470 * Make sure curwin->w_cursor.lnum is valid.
471 */
472 void
473check_cursor_lnum()
474{
475 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
476 {
477#ifdef FEAT_FOLDING
478 /* If there is a closed fold at the end of the file, put the cursor in
479 * its first line. Otherwise in the last line. */
480 if (!hasFolding(curbuf->b_ml.ml_line_count,
481 &curwin->w_cursor.lnum, NULL))
482#endif
483 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
484 }
485 if (curwin->w_cursor.lnum <= 0)
486 curwin->w_cursor.lnum = 1;
487}
488
489/*
490 * Make sure curwin->w_cursor.col is valid.
491 */
492 void
493check_cursor_col()
494{
495 colnr_T len;
496#ifdef FEAT_VIRTUALEDIT
497 colnr_T oldcol = curwin->w_cursor.col + curwin->w_cursor.coladd;
498#endif
499
500 len = (colnr_T)STRLEN(ml_get_curline());
501 if (len == 0)
502 curwin->w_cursor.col = 0;
503 else if (curwin->w_cursor.col >= len)
504 {
505 /* Allow cursor past end-of-line in Insert mode, restarting Insert
506 * mode or when in Visual mode and 'selection' isn't "old" */
Bram Moolenaarebefac62005-12-28 22:39:57 +0000507 if ((State & INSERT) || restart_edit
Bram Moolenaar071d4272004-06-13 20:20:40 +0000508#ifdef FEAT_VISUAL
509 || (VIsual_active && *p_sel != 'o')
510#endif
511 || virtual_active())
512 curwin->w_cursor.col = len;
513 else
514 curwin->w_cursor.col = len - 1;
515 }
516
517#ifdef FEAT_VIRTUALEDIT
518 /* If virtual editing is on, we can leave the cursor on the old position,
519 * only we must set it to virtual. But don't do it when at the end of the
520 * line. */
521 if (oldcol == MAXCOL)
522 curwin->w_cursor.coladd = 0;
523 else if (ve_flags == VE_ALL)
524 curwin->w_cursor.coladd = oldcol - curwin->w_cursor.col;
525#endif
526}
527
528/*
529 * make sure curwin->w_cursor in on a valid character
530 */
531 void
532check_cursor()
533{
534 check_cursor_lnum();
535 check_cursor_col();
536}
537
538#if defined(FEAT_TEXTOBJ) || defined(PROTO)
539/*
540 * Make sure curwin->w_cursor is not on the NUL at the end of the line.
541 * Allow it when in Visual mode and 'selection' is not "old".
542 */
543 void
544adjust_cursor_col()
545{
546 if (curwin->w_cursor.col > 0
547# ifdef FEAT_VISUAL
548 && (!VIsual_active || *p_sel == 'o')
549# endif
550 && gchar_cursor() == NUL)
551 --curwin->w_cursor.col;
552}
553#endif
554
555/*
556 * When curwin->w_leftcol has changed, adjust the cursor position.
557 * Return TRUE if the cursor was moved.
558 */
559 int
560leftcol_changed()
561{
562 long lastcol;
563 colnr_T s, e;
564 int retval = FALSE;
565
566 changed_cline_bef_curs();
567 lastcol = curwin->w_leftcol + W_WIDTH(curwin) - curwin_col_off() - 1;
568 validate_virtcol();
569
570 /*
571 * If the cursor is right or left of the screen, move it to last or first
572 * character.
573 */
574 if (curwin->w_virtcol > (colnr_T)(lastcol - p_siso))
575 {
576 retval = TRUE;
577 coladvance((colnr_T)(lastcol - p_siso));
578 }
579 else if (curwin->w_virtcol < curwin->w_leftcol + p_siso)
580 {
581 retval = TRUE;
582 (void)coladvance((colnr_T)(curwin->w_leftcol + p_siso));
583 }
584
585 /*
586 * If the start of the character under the cursor is not on the screen,
587 * advance the cursor one more char. If this fails (last char of the
588 * line) adjust the scrolling.
589 */
590 getvvcol(curwin, &curwin->w_cursor, &s, NULL, &e);
591 if (e > (colnr_T)lastcol)
592 {
593 retval = TRUE;
594 coladvance(s - 1);
595 }
596 else if (s < curwin->w_leftcol)
597 {
598 retval = TRUE;
599 if (coladvance(e + 1) == FAIL) /* there isn't another character */
600 {
601 curwin->w_leftcol = s; /* adjust w_leftcol instead */
602 changed_cline_bef_curs();
603 }
604 }
605
606 if (retval)
607 curwin->w_set_curswant = TRUE;
608 redraw_later(NOT_VALID);
609 return retval;
610}
611
612/**********************************************************************
613 * Various routines dealing with allocation and deallocation of memory.
614 */
615
616#if defined(MEM_PROFILE) || defined(PROTO)
617
618# define MEM_SIZES 8200
619static long_u mem_allocs[MEM_SIZES];
620static long_u mem_frees[MEM_SIZES];
621static long_u mem_allocated;
622static long_u mem_freed;
623static long_u mem_peak;
624static long_u num_alloc;
625static long_u num_freed;
626
627static void mem_pre_alloc_s __ARGS((size_t *sizep));
628static void mem_pre_alloc_l __ARGS((long_u *sizep));
629static void mem_post_alloc __ARGS((void **pp, size_t size));
630static void mem_pre_free __ARGS((void **pp));
631
632 static void
633mem_pre_alloc_s(sizep)
634 size_t *sizep;
635{
636 *sizep += sizeof(size_t);
637}
638
639 static void
640mem_pre_alloc_l(sizep)
641 long_u *sizep;
642{
643 *sizep += sizeof(size_t);
644}
645
646 static void
647mem_post_alloc(pp, size)
648 void **pp;
649 size_t size;
650{
651 if (*pp == NULL)
652 return;
653 size -= sizeof(size_t);
654 *(long_u *)*pp = size;
655 if (size <= MEM_SIZES-1)
656 mem_allocs[size-1]++;
657 else
658 mem_allocs[MEM_SIZES-1]++;
659 mem_allocated += size;
660 if (mem_allocated - mem_freed > mem_peak)
661 mem_peak = mem_allocated - mem_freed;
662 num_alloc++;
663 *pp = (void *)((char *)*pp + sizeof(size_t));
664}
665
666 static void
667mem_pre_free(pp)
668 void **pp;
669{
670 long_u size;
671
672 *pp = (void *)((char *)*pp - sizeof(size_t));
673 size = *(size_t *)*pp;
674 if (size <= MEM_SIZES-1)
675 mem_frees[size-1]++;
676 else
677 mem_frees[MEM_SIZES-1]++;
678 mem_freed += size;
679 num_freed++;
680}
681
682/*
683 * called on exit via atexit()
684 */
685 void
686vim_mem_profile_dump()
687{
688 int i, j;
689
690 printf("\r\n");
691 j = 0;
692 for (i = 0; i < MEM_SIZES - 1; i++)
693 {
694 if (mem_allocs[i] || mem_frees[i])
695 {
696 if (mem_frees[i] > mem_allocs[i])
697 printf("\r\n%s", _("ERROR: "));
698 printf("[%4d / %4lu-%-4lu] ", i + 1, mem_allocs[i], mem_frees[i]);
699 j++;
700 if (j > 3)
701 {
702 j = 0;
703 printf("\r\n");
704 }
705 }
706 }
707
708 i = MEM_SIZES - 1;
709 if (mem_allocs[i])
710 {
711 printf("\r\n");
712 if (mem_frees[i] > mem_allocs[i])
713 printf(_("ERROR: "));
714 printf("[>%d / %4lu-%-4lu]", i, mem_allocs[i], mem_frees[i]);
715 }
716
717 printf(_("\n[bytes] total alloc-freed %lu-%lu, in use %lu, peak use %lu\n"),
718 mem_allocated, mem_freed, mem_allocated - mem_freed, mem_peak);
719 printf(_("[calls] total re/malloc()'s %lu, total free()'s %lu\n\n"),
720 num_alloc, num_freed);
721}
722
723#endif /* MEM_PROFILE */
724
725/*
726 * Some memory is reserved for error messages and for being able to
727 * call mf_release_all(), which needs some memory for mf_trans_add().
728 */
729#if defined(MSDOS) && !defined(DJGPP)
730# define SMALL_MEM
731# define KEEP_ROOM 8192L
732#else
733# define KEEP_ROOM (2 * 8192L)
734#endif
735
736/*
737 * Note: if unsinged is 16 bits we can only allocate up to 64K with alloc().
738 * Use lalloc for larger blocks.
739 */
740 char_u *
741alloc(size)
742 unsigned size;
743{
744 return (lalloc((long_u)size, TRUE));
745}
746
747/*
748 * Allocate memory and set all bytes to zero.
749 */
750 char_u *
751alloc_clear(size)
752 unsigned size;
753{
754 char_u *p;
755
756 p = (lalloc((long_u)size, TRUE));
757 if (p != NULL)
758 (void)vim_memset(p, 0, (size_t)size);
759 return p;
760}
761
762/*
763 * alloc() with check for maximum line length
764 */
765 char_u *
766alloc_check(size)
767 unsigned size;
768{
769#if !defined(UNIX) && !defined(__EMX__)
770 if (sizeof(int) == 2 && size > 0x7fff)
771 {
772 /* Don't hide this message */
773 emsg_silent = 0;
774 EMSG(_("E340: Line is becoming too long"));
775 return NULL;
776 }
777#endif
778 return (lalloc((long_u)size, TRUE));
779}
780
781/*
782 * Allocate memory like lalloc() and set all bytes to zero.
783 */
784 char_u *
785lalloc_clear(size, message)
786 long_u size;
787 int message;
788{
789 char_u *p;
790
791 p = (lalloc(size, message));
792 if (p != NULL)
793 (void)vim_memset(p, 0, (size_t)size);
794 return p;
795}
796
797/*
798 * Low level memory allocation function.
799 * This is used often, KEEP IT FAST!
800 */
801 char_u *
802lalloc(size, message)
803 long_u size;
804 int message;
805{
806 char_u *p; /* pointer to new storage space */
807 static int releasing = FALSE; /* don't do mf_release_all() recursive */
808 int try_again;
809#if defined(HAVE_AVAIL_MEM) && !defined(SMALL_MEM)
810 static long_u allocated = 0; /* allocated since last avail check */
811#endif
812
813 /* Safety check for allocating zero bytes */
814 if (size == 0)
815 {
816 /* Don't hide this message */
817 emsg_silent = 0;
818 EMSGN(_("E341: Internal error: lalloc(%ld, )"), size);
819 return NULL;
820 }
821
822#ifdef MEM_PROFILE
823 mem_pre_alloc_l(&size);
824#endif
825
826#if defined(MSDOS) && !defined(DJGPP)
827 if (size >= 0xfff0) /* in MSDOS we can't deal with >64K blocks */
828 p = NULL;
829 else
830#endif
831
832 /*
833 * Loop when out of memory: Try to release some memfile blocks and
834 * if some blocks are released call malloc again.
835 */
836 for (;;)
837 {
838 /*
839 * Handle three kind of systems:
840 * 1. No check for available memory: Just return.
841 * 2. Slow check for available memory: call mch_avail_mem() after
842 * allocating KEEP_ROOM amount of memory.
843 * 3. Strict check for available memory: call mch_avail_mem()
844 */
845 if ((p = (char_u *)malloc((size_t)size)) != NULL)
846 {
847#ifndef HAVE_AVAIL_MEM
848 /* 1. No check for available memory: Just return. */
849 goto theend;
850#else
851# ifndef SMALL_MEM
852 /* 2. Slow check for available memory: call mch_avail_mem() after
853 * allocating (KEEP_ROOM / 2) amount of memory. */
854 allocated += size;
855 if (allocated < KEEP_ROOM / 2)
856 goto theend;
857 allocated = 0;
858# endif
859 /* 3. check for available memory: call mch_avail_mem() */
860 if (mch_avail_mem(TRUE) < KEEP_ROOM && !releasing)
861 {
862 vim_free((char *)p); /* System is low... no go! */
863 p = NULL;
864 }
865 else
866 goto theend;
867#endif
868 }
869 /*
870 * Remember that mf_release_all() is being called to avoid an endless
871 * loop, because mf_release_all() may call alloc() recursively.
872 */
873 if (releasing)
874 break;
875 releasing = TRUE;
Bram Moolenaar661b1822005-07-28 22:36:45 +0000876
877 clear_sb_text(); /* free any scrollback text */
878 try_again = mf_release_all(); /* release as many blocks as possible */
Bram Moolenaar39a58ca2005-06-27 22:42:44 +0000879#ifdef FEAT_EVAL
Bram Moolenaar661b1822005-07-28 22:36:45 +0000880 try_again |= garbage_collect(); /* cleanup recursive lists/dicts */
Bram Moolenaar39a58ca2005-06-27 22:42:44 +0000881#endif
Bram Moolenaar661b1822005-07-28 22:36:45 +0000882
Bram Moolenaar071d4272004-06-13 20:20:40 +0000883 releasing = FALSE;
884 if (!try_again)
885 break;
886 }
887
888 if (message && p == NULL)
889 do_outofmem_msg(size);
890
891theend:
892#ifdef MEM_PROFILE
893 mem_post_alloc((void **)&p, (size_t)size);
894#endif
895 return p;
896}
897
898#if defined(MEM_PROFILE) || defined(PROTO)
899/*
900 * realloc() with memory profiling.
901 */
902 void *
903mem_realloc(ptr, size)
904 void *ptr;
905 size_t size;
906{
907 void *p;
908
909 mem_pre_free(&ptr);
910 mem_pre_alloc_s(&size);
911
912 p = realloc(ptr, size);
913
914 mem_post_alloc(&p, size);
915
916 return p;
917}
918#endif
919
920/*
921* Avoid repeating the error message many times (they take 1 second each).
922* Did_outofmem_msg is reset when a character is read.
923*/
924 void
925do_outofmem_msg(size)
926 long_u size;
927{
928 if (!did_outofmem_msg)
929 {
930 /* Don't hide this message */
931 emsg_silent = 0;
932 EMSGN(_("E342: Out of memory! (allocating %lu bytes)"), size);
933 did_outofmem_msg = TRUE;
934 }
935}
936
Bram Moolenaar1ec484f2005-06-24 23:07:47 +0000937#if defined(EXITFREE) || defined(PROTO)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000938
939# if defined(FEAT_SEARCHPATH)
940static void free_findfile __ARGS((void));
941# endif
942
Bram Moolenaar1ec484f2005-06-24 23:07:47 +0000943/*
944 * Free everything that we allocated.
945 * Can be used to detect memory leaks, e.g., with ccmalloc.
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000946 * NOTE: This is tricky! Things are freed that functions depend on. Don't be
947 * surprised if Vim crashes...
948 * Some things can't be freed, esp. things local to a library function.
Bram Moolenaar1ec484f2005-06-24 23:07:47 +0000949 */
950 void
951free_all_mem()
952{
953 buf_T *buf, *nextbuf;
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000954 static int entered = FALSE;
Bram Moolenaard12f5c12006-01-25 22:10:52 +0000955 win_T *win;
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000956
957 /* When we cause a crash here it is caught and Vim tries to exit cleanly.
958 * Don't try freeing everything again. */
959 if (entered)
960 return;
961 entered = TRUE;
Bram Moolenaar1ec484f2005-06-24 23:07:47 +0000962
963 ++autocmd_block; /* don't want to trigger autocommands here */
964
Bram Moolenaar997fb4b2006-02-17 21:53:23 +0000965#ifdef FEAT_WINDOWS
966 /* close all tabs and windows */
967 do_cmdline_cmd((char_u *)"tabonly!");
968 do_cmdline_cmd((char_u *)"only!");
969#endif
970
Bram Moolenaar1ec484f2005-06-24 23:07:47 +0000971# if defined(FEAT_SYN_HL)
972 /* Free all spell info. */
973 spell_free_all();
974# endif
975
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000976# if defined(FEAT_USR_CMDS)
Bram Moolenaar1ec484f2005-06-24 23:07:47 +0000977 /* Clear user commands (before deleting buffers). */
978 ex_comclear(NULL);
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000979# endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +0000980
981# ifdef FEAT_MENU
982 /* Clear menus. */
983 do_cmdline_cmd((char_u *)"aunmenu *");
984# endif
985
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000986 /* Clear mappings, abbreviations, breakpoints. */
Bram Moolenaar1ec484f2005-06-24 23:07:47 +0000987 do_cmdline_cmd((char_u *)"mapclear");
988 do_cmdline_cmd((char_u *)"mapclear!");
989 do_cmdline_cmd((char_u *)"abclear");
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000990# if defined(FEAT_EVAL)
991 do_cmdline_cmd((char_u *)"breakdel *");
992# endif
Bram Moolenaar1e498f52005-06-26 22:29:44 +0000993# if defined(FEAT_PROFILE)
994 do_cmdline_cmd((char_u *)"profdel *");
995# endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000996
997# ifdef FEAT_TITLE
998 free_titles();
999# endif
1000# if defined(FEAT_SEARCHPATH)
1001 free_findfile();
1002# endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001003
1004 /* Obviously named calls. */
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001005# if defined(FEAT_AUTOCMD)
1006 free_all_autocmds();
1007# endif
1008 clear_termcodes();
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001009 free_all_options();
1010 free_all_marks();
1011 alist_clear(&global_alist);
1012 free_homedir();
1013 free_search_patterns();
1014 free_old_sub();
1015 free_last_insert();
1016 free_prev_shellcmd();
1017 free_regexp_stuff();
1018 free_tag_stuff();
1019 free_cd_dir();
1020 set_expr_line(NULL);
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00001021 diff_clear(curtab);
Bram Moolenaara40ceaf2006-01-13 22:35:40 +00001022 clear_sb_text(); /* free any scrollback text */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001023
1024 /* Free some global vars. */
1025 vim_free(username);
1026 vim_free(clip_exclude_prog);
1027 vim_free(last_cmdline);
1028 vim_free(new_last_cmdline);
Bram Moolenaar238a5642006-02-21 22:12:05 +00001029 set_keep_msg(NULL, 0);
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001030 vim_free(ff_expand_buffer);
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001031
1032 /* Clear cmdline history. */
1033 p_hi = 0;
1034 init_history();
1035
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001036#ifdef FEAT_QUICKFIX
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001037 qf_free_all(NULL);
1038 /* Free all location lists */
1039 FOR_ALL_WINDOWS(win)
1040 qf_free_all(win);
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001041#endif
1042
1043 /* Close all script inputs. */
1044 close_all_scripts();
1045
1046#if defined(FEAT_WINDOWS)
1047 /* Destroy all windows. Must come before freeing buffers. */
1048 win_free_all();
1049#endif
1050
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001051 /* Free all buffers. */
1052 for (buf = firstbuf; buf != NULL; )
1053 {
1054 nextbuf = buf->b_next;
1055 close_buffer(NULL, buf, DOBUF_WIPE);
1056 if (buf_valid(buf))
1057 buf = nextbuf; /* didn't work, try next one */
1058 else
1059 buf = firstbuf;
1060 }
1061
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001062#ifdef FEAT_ARABIC
1063 free_cmdline_buf();
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001064#endif
1065
1066 /* Clear registers. */
1067 clear_registers();
1068 ResetRedobuff();
1069 ResetRedobuff();
1070
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001071#ifdef FEAT_CLIENTSERVER
1072 vim_free(serverDelayedStartName);
1073#endif
1074
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001075 /* highlight info */
1076 free_highlight();
1077
Bram Moolenaar1e498f52005-06-26 22:29:44 +00001078 reset_last_sourcing();
1079
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001080# ifdef UNIX
1081 /* Machine-specific free. */
1082 mch_free_mem();
1083# endif
1084
1085 /* message history */
1086 for (;;)
1087 if (delete_first_msg() == FAIL)
1088 break;
1089
1090# ifdef FEAT_EVAL
1091 eval_clear();
1092# endif
1093
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001094 free_termoptions();
1095
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001096 /* screenlines (can't display anything now!) */
1097 free_screenlines();
1098
1099#if defined(USE_XSMP)
1100 xsmp_close();
1101#endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001102#ifdef FEAT_GUI_GTK
1103 gui_mch_free_all();
1104#endif
1105 clear_hl_tables();
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001106
1107 vim_free(IObuff);
1108 vim_free(NameBuff);
1109}
1110#endif
1111
Bram Moolenaar071d4272004-06-13 20:20:40 +00001112/*
1113 * copy a string into newly allocated memory
1114 */
1115 char_u *
1116vim_strsave(string)
1117 char_u *string;
1118{
1119 char_u *p;
1120 unsigned len;
1121
1122 len = (unsigned)STRLEN(string) + 1;
1123 p = alloc(len);
1124 if (p != NULL)
1125 mch_memmove(p, string, (size_t)len);
1126 return p;
1127}
1128
1129 char_u *
1130vim_strnsave(string, len)
1131 char_u *string;
1132 int len;
1133{
1134 char_u *p;
1135
1136 p = alloc((unsigned)(len + 1));
1137 if (p != NULL)
1138 {
1139 STRNCPY(p, string, len);
1140 p[len] = NUL;
1141 }
1142 return p;
1143}
1144
Bram Moolenaar071d4272004-06-13 20:20:40 +00001145/*
1146 * Same as vim_strsave(), but any characters found in esc_chars are preceded
1147 * by a backslash.
1148 */
1149 char_u *
1150vim_strsave_escaped(string, esc_chars)
1151 char_u *string;
1152 char_u *esc_chars;
1153{
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001154 return vim_strsave_escaped_ext(string, esc_chars, '\\', FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001155}
1156
1157/*
1158 * Same as vim_strsave_escaped(), but when "bsl" is TRUE also escape
1159 * characters where rem_backslash() would remove the backslash.
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001160 * Escape the characters with "cc".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001161 */
1162 char_u *
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001163vim_strsave_escaped_ext(string, esc_chars, cc, bsl)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001164 char_u *string;
1165 char_u *esc_chars;
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001166 int cc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001167 int bsl;
1168{
1169 char_u *p;
1170 char_u *p2;
1171 char_u *escaped_string;
1172 unsigned length;
1173#ifdef FEAT_MBYTE
1174 int l;
1175#endif
1176
1177 /*
1178 * First count the number of backslashes required.
1179 * Then allocate the memory and insert them.
1180 */
1181 length = 1; /* count the trailing NUL */
1182 for (p = string; *p; p++)
1183 {
1184#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001185 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001186 {
1187 length += l; /* count a multibyte char */
1188 p += l - 1;
1189 continue;
1190 }
1191#endif
1192 if (vim_strchr(esc_chars, *p) != NULL || (bsl && rem_backslash(p)))
1193 ++length; /* count a backslash */
1194 ++length; /* count an ordinary char */
1195 }
1196 escaped_string = alloc(length);
1197 if (escaped_string != NULL)
1198 {
1199 p2 = escaped_string;
1200 for (p = string; *p; p++)
1201 {
1202#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001203 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001204 {
1205 mch_memmove(p2, p, (size_t)l);
1206 p2 += l;
1207 p += l - 1; /* skip multibyte char */
1208 continue;
1209 }
1210#endif
1211 if (vim_strchr(esc_chars, *p) != NULL || (bsl && rem_backslash(p)))
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001212 *p2++ = cc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001213 *p2++ = *p;
1214 }
1215 *p2 = NUL;
1216 }
1217 return escaped_string;
1218}
1219
1220/*
1221 * Like vim_strsave(), but make all characters uppercase.
1222 * This uses ASCII lower-to-upper case translation, language independent.
1223 */
1224 char_u *
1225vim_strsave_up(string)
1226 char_u *string;
1227{
1228 char_u *p1;
1229
1230 p1 = vim_strsave(string);
1231 vim_strup(p1);
1232 return p1;
1233}
1234
1235/*
1236 * Like vim_strnsave(), but make all characters uppercase.
1237 * This uses ASCII lower-to-upper case translation, language independent.
1238 */
1239 char_u *
1240vim_strnsave_up(string, len)
1241 char_u *string;
1242 int len;
1243{
1244 char_u *p1;
1245
1246 p1 = vim_strnsave(string, len);
1247 vim_strup(p1);
1248 return p1;
1249}
1250
1251/*
1252 * ASCII lower-to-upper case translation, language independent.
1253 */
1254 void
1255vim_strup(p)
1256 char_u *p;
1257{
1258 char_u *p2;
1259 int c;
1260
1261 if (p != NULL)
1262 {
1263 p2 = p;
1264 while ((c = *p2) != NUL)
1265#ifdef EBCDIC
1266 *p2++ = isalpha(c) ? toupper(c) : c;
1267#else
1268 *p2++ = (c < 'a' || c > 'z') ? c : (c - 0x20);
1269#endif
1270 }
1271}
1272
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001273#if defined(FEAT_EVAL) || defined(FEAT_SYN_HL) || defined(PROTO)
1274/*
1275 * Make string "s" all upper-case and return it in allocated memory.
1276 * Handles multi-byte characters as well as possible.
1277 * Returns NULL when out of memory.
1278 */
1279 char_u *
1280strup_save(orig)
1281 char_u *orig;
1282{
1283 char_u *p;
1284 char_u *res;
1285
1286 res = p = vim_strsave(orig);
1287
1288 if (res != NULL)
1289 while (*p != NUL)
1290 {
1291# ifdef FEAT_MBYTE
1292 int l;
1293
1294 if (enc_utf8)
1295 {
1296 int c, uc;
1297 int nl;
1298 char_u *s;
1299
1300 c = utf_ptr2char(p);
1301 uc = utf_toupper(c);
1302
1303 /* Reallocate string when byte count changes. This is rare,
1304 * thus it's OK to do another malloc()/free(). */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001305 l = utf_ptr2len(p);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001306 nl = utf_char2len(uc);
1307 if (nl != l)
1308 {
1309 s = alloc((unsigned)STRLEN(res) + 1 + nl - l);
1310 if (s == NULL)
1311 break;
1312 mch_memmove(s, res, p - res);
1313 STRCPY(s + (p - res) + nl, p + l);
1314 p = s + (p - res);
1315 vim_free(res);
1316 res = s;
1317 }
1318
1319 utf_char2bytes(uc, p);
1320 p += nl;
1321 }
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001322 else if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001323 p += l; /* skip multi-byte character */
1324 else
1325# endif
1326 {
1327 *p = TOUPPER_LOC(*p); /* note that toupper() can be a macro */
1328 p++;
1329 }
1330 }
1331
1332 return res;
1333}
1334#endif
1335
Bram Moolenaar071d4272004-06-13 20:20:40 +00001336/*
1337 * copy a space a number of times
1338 */
1339 void
1340copy_spaces(ptr, count)
1341 char_u *ptr;
1342 size_t count;
1343{
1344 size_t i = count;
1345 char_u *p = ptr;
1346
1347 while (i--)
1348 *p++ = ' ';
1349}
1350
1351#if defined(FEAT_VISUALEXTRA) || defined(PROTO)
1352/*
1353 * Copy a character a number of times.
1354 * Does not work for multi-byte charactes!
1355 */
1356 void
1357copy_chars(ptr, count, c)
1358 char_u *ptr;
1359 size_t count;
1360 int c;
1361{
1362 size_t i = count;
1363 char_u *p = ptr;
1364
1365 while (i--)
1366 *p++ = c;
1367}
1368#endif
1369
1370/*
1371 * delete spaces at the end of a string
1372 */
1373 void
1374del_trailing_spaces(ptr)
1375 char_u *ptr;
1376{
1377 char_u *q;
1378
1379 q = ptr + STRLEN(ptr);
1380 while (--q > ptr && vim_iswhite(q[0]) && q[-1] != '\\' && q[-1] != Ctrl_V)
1381 *q = NUL;
1382}
1383
1384/*
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001385 * Like strncpy(), but always terminate the result with one NUL.
Bram Moolenaard042c562005-06-30 22:04:15 +00001386 * "to" must be "len + 1" long!
Bram Moolenaar071d4272004-06-13 20:20:40 +00001387 */
1388 void
1389vim_strncpy(to, from, len)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001390 char_u *to;
1391 char_u *from;
Bram Moolenaarbbebc852005-07-18 21:47:53 +00001392 size_t len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001393{
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001394 STRNCPY(to, from, len);
1395 to[len] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001396}
1397
1398/*
1399 * Isolate one part of a string option where parts are separated with
1400 * "sep_chars".
Bram Moolenaar83bab712005-08-01 21:58:57 +00001401 * The part is copied into "buf[maxlen]".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001402 * "*option" is advanced to the next part.
1403 * The length is returned.
1404 */
1405 int
1406copy_option_part(option, buf, maxlen, sep_chars)
1407 char_u **option;
1408 char_u *buf;
1409 int maxlen;
1410 char *sep_chars;
1411{
1412 int len = 0;
1413 char_u *p = *option;
1414
1415 /* skip '.' at start of option part, for 'suffixes' */
1416 if (*p == '.')
1417 buf[len++] = *p++;
1418 while (*p != NUL && vim_strchr((char_u *)sep_chars, *p) == NULL)
1419 {
1420 /*
1421 * Skip backslash before a separator character and space.
1422 */
1423 if (p[0] == '\\' && vim_strchr((char_u *)sep_chars, p[1]) != NULL)
1424 ++p;
1425 if (len < maxlen - 1)
1426 buf[len++] = *p;
1427 ++p;
1428 }
1429 buf[len] = NUL;
1430
1431 if (*p != NUL && *p != ',') /* skip non-standard separator */
1432 ++p;
1433 p = skip_to_option_part(p); /* p points to next file name */
1434
1435 *option = p;
1436 return len;
1437}
1438
1439/*
Bram Moolenaar4770d092006-01-12 23:22:24 +00001440 * Replacement for free() that ignores NULL pointers.
1441 * Also skip free() when exiting for sure, this helps when we caught a deadly
1442 * signal that was caused by a crash in free().
Bram Moolenaar071d4272004-06-13 20:20:40 +00001443 */
1444 void
1445vim_free(x)
1446 void *x;
1447{
Bram Moolenaar4770d092006-01-12 23:22:24 +00001448 if (x != NULL && !really_exiting)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001449 {
1450#ifdef MEM_PROFILE
1451 mem_pre_free(&x);
1452#endif
1453 free(x);
1454 }
1455}
1456
1457#ifndef HAVE_MEMSET
1458 void *
1459vim_memset(ptr, c, size)
1460 void *ptr;
1461 int c;
1462 size_t size;
1463{
1464 char *p = ptr;
1465
1466 while (size-- > 0)
1467 *p++ = c;
1468 return ptr;
1469}
1470#endif
1471
1472#ifdef VIM_MEMCMP
1473/*
1474 * Return zero when "b1" and "b2" are the same for "len" bytes.
1475 * Return non-zero otherwise.
1476 */
1477 int
1478vim_memcmp(b1, b2, len)
1479 void *b1;
1480 void *b2;
1481 size_t len;
1482{
1483 char_u *p1 = (char_u *)b1, *p2 = (char_u *)b2;
1484
1485 for ( ; len > 0; --len)
1486 {
1487 if (*p1 != *p2)
1488 return 1;
1489 ++p1;
1490 ++p2;
1491 }
1492 return 0;
1493}
1494#endif
1495
1496#ifdef VIM_MEMMOVE
1497/*
1498 * Version of memmove() that handles overlapping source and destination.
1499 * For systems that don't have a function that is guaranteed to do that (SYSV).
1500 */
1501 void
1502mch_memmove(dst_arg, src_arg, len)
1503 void *src_arg, *dst_arg;
1504 size_t len;
1505{
1506 /*
1507 * A void doesn't have a size, we use char pointers.
1508 */
1509 char *dst = dst_arg, *src = src_arg;
1510
1511 /* overlap, copy backwards */
1512 if (dst > src && dst < src + len)
1513 {
1514 src += len;
1515 dst += len;
1516 while (len-- > 0)
1517 *--dst = *--src;
1518 }
1519 else /* copy forwards */
1520 while (len-- > 0)
1521 *dst++ = *src++;
1522}
1523#endif
1524
1525#if (!defined(HAVE_STRCASECMP) && !defined(HAVE_STRICMP)) || defined(PROTO)
1526/*
1527 * Compare two strings, ignoring case, using current locale.
1528 * Doesn't work for multi-byte characters.
1529 * return 0 for match, < 0 for smaller, > 0 for bigger
1530 */
1531 int
1532vim_stricmp(s1, s2)
1533 char *s1;
1534 char *s2;
1535{
1536 int i;
1537
1538 for (;;)
1539 {
1540 i = (int)TOLOWER_LOC(*s1) - (int)TOLOWER_LOC(*s2);
1541 if (i != 0)
1542 return i; /* this character different */
1543 if (*s1 == NUL)
1544 break; /* strings match until NUL */
1545 ++s1;
1546 ++s2;
1547 }
1548 return 0; /* strings match */
1549}
1550#endif
1551
1552#if (!defined(HAVE_STRNCASECMP) && !defined(HAVE_STRNICMP)) || defined(PROTO)
1553/*
1554 * Compare two strings, for length "len", ignoring case, using current locale.
1555 * Doesn't work for multi-byte characters.
1556 * return 0 for match, < 0 for smaller, > 0 for bigger
1557 */
1558 int
1559vim_strnicmp(s1, s2, len)
1560 char *s1;
1561 char *s2;
1562 size_t len;
1563{
1564 int i;
1565
1566 while (len > 0)
1567 {
1568 i = (int)TOLOWER_LOC(*s1) - (int)TOLOWER_LOC(*s2);
1569 if (i != 0)
1570 return i; /* this character different */
1571 if (*s1 == NUL)
1572 break; /* strings match until NUL */
1573 ++s1;
1574 ++s2;
1575 --len;
1576 }
1577 return 0; /* strings match */
1578}
1579#endif
1580
1581#if 0 /* currently not used */
1582/*
1583 * Check if string "s2" appears somewhere in "s1" while ignoring case.
1584 * Return NULL if not, a pointer to the first occurrence if it does.
1585 */
1586 char_u *
1587vim_stristr(s1, s2)
1588 char_u *s1;
1589 char_u *s2;
1590{
1591 char_u *p;
1592 int len = STRLEN(s2);
1593 char_u *end = s1 + STRLEN(s1) - len;
1594
1595 for (p = s1; p <= end; ++p)
1596 if (STRNICMP(p, s2, len) == 0)
1597 return p;
1598 return NULL;
1599}
1600#endif
1601
1602/*
1603 * Version of strchr() and strrchr() that handle unsigned char strings
Bram Moolenaar05159a02005-02-26 23:04:13 +00001604 * with characters from 128 to 255 correctly. It also doesn't return a
1605 * pointer to the NUL at the end of the string.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001606 */
1607 char_u *
1608vim_strchr(string, c)
1609 char_u *string;
1610 int c;
1611{
1612 char_u *p;
1613 int b;
1614
1615 p = string;
1616#ifdef FEAT_MBYTE
1617 if (enc_utf8 && c >= 0x80)
1618 {
1619 while (*p != NUL)
1620 {
1621 if (utf_ptr2char(p) == c)
1622 return p;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001623 p += (*mb_ptr2len)(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001624 }
1625 return NULL;
1626 }
1627 if (enc_dbcs != 0 && c > 255)
1628 {
1629 int n2 = c & 0xff;
1630
1631 c = ((unsigned)c >> 8) & 0xff;
1632 while ((b = *p) != NUL)
1633 {
1634 if (b == c && p[1] == n2)
1635 return p;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001636 p += (*mb_ptr2len)(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001637 }
1638 return NULL;
1639 }
1640 if (has_mbyte)
1641 {
1642 while ((b = *p) != NUL)
1643 {
1644 if (b == c)
1645 return p;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001646 p += (*mb_ptr2len)(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001647 }
1648 return NULL;
1649 }
1650#endif
1651 while ((b = *p) != NUL)
1652 {
1653 if (b == c)
1654 return p;
1655 ++p;
1656 }
1657 return NULL;
1658}
1659
1660/*
Bram Moolenaar05159a02005-02-26 23:04:13 +00001661 * Version of strchr() that only works for bytes and handles unsigned char
1662 * strings with characters above 128 correctly. It also doesn't return a
1663 * pointer to the NUL at the end of the string.
1664 */
1665 char_u *
1666vim_strbyte(string, c)
1667 char_u *string;
1668 int c;
1669{
1670 char_u *p = string;
1671
1672 while (*p != NUL)
1673 {
1674 if (*p == c)
1675 return p;
1676 ++p;
1677 }
1678 return NULL;
1679}
1680
1681/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001682 * Search for last occurrence of "c" in "string".
Bram Moolenaarac6e65f2005-08-29 22:25:38 +00001683 * Return NULL if not found.
Bram Moolenaar05159a02005-02-26 23:04:13 +00001684 * Does not handle multi-byte char for "c"!
Bram Moolenaar071d4272004-06-13 20:20:40 +00001685 */
1686 char_u *
1687vim_strrchr(string, c)
1688 char_u *string;
1689 int c;
1690{
1691 char_u *retval = NULL;
Bram Moolenaar05159a02005-02-26 23:04:13 +00001692 char_u *p = string;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001693
Bram Moolenaar05159a02005-02-26 23:04:13 +00001694 while (*p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001695 {
Bram Moolenaar05159a02005-02-26 23:04:13 +00001696 if (*p == c)
1697 retval = p;
1698 mb_ptr_adv(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001699 }
1700 return retval;
1701}
1702
1703/*
1704 * Vim's version of strpbrk(), in case it's missing.
1705 * Don't generate a prototype for this, causes problems when it's not used.
1706 */
1707#ifndef PROTO
1708# ifndef HAVE_STRPBRK
1709# ifdef vim_strpbrk
1710# undef vim_strpbrk
1711# endif
1712 char_u *
1713vim_strpbrk(s, charset)
1714 char_u *s;
1715 char_u *charset;
1716{
1717 while (*s)
1718 {
1719 if (vim_strchr(charset, *s) != NULL)
1720 return s;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001721 mb_ptr_adv(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001722 }
1723 return NULL;
1724}
1725# endif
1726#endif
1727
1728/*
1729 * Vim has its own isspace() function, because on some machines isspace()
1730 * can't handle characters above 128.
1731 */
1732 int
1733vim_isspace(x)
1734 int x;
1735{
1736 return ((x >= 9 && x <= 13) || x == ' ');
1737}
1738
1739/************************************************************************
Bram Moolenaar383f9bc2005-01-19 22:18:32 +00001740 * Functions for handling growing arrays.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001741 */
1742
1743/*
1744 * Clear an allocated growing array.
1745 */
1746 void
1747ga_clear(gap)
1748 garray_T *gap;
1749{
1750 vim_free(gap->ga_data);
1751 ga_init(gap);
1752}
1753
1754/*
1755 * Clear a growing array that contains a list of strings.
1756 */
1757 void
1758ga_clear_strings(gap)
1759 garray_T *gap;
1760{
1761 int i;
1762
1763 for (i = 0; i < gap->ga_len; ++i)
1764 vim_free(((char_u **)(gap->ga_data))[i]);
1765 ga_clear(gap);
1766}
1767
1768/*
1769 * Initialize a growing array. Don't forget to set ga_itemsize and
1770 * ga_growsize! Or use ga_init2().
1771 */
1772 void
1773ga_init(gap)
1774 garray_T *gap;
1775{
1776 gap->ga_data = NULL;
Bram Moolenaar86b68352004-12-27 21:59:20 +00001777 gap->ga_maxlen = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001778 gap->ga_len = 0;
1779}
1780
1781 void
1782ga_init2(gap, itemsize, growsize)
1783 garray_T *gap;
1784 int itemsize;
1785 int growsize;
1786{
1787 ga_init(gap);
1788 gap->ga_itemsize = itemsize;
1789 gap->ga_growsize = growsize;
1790}
1791
1792/*
1793 * Make room in growing array "gap" for at least "n" items.
1794 * Return FAIL for failure, OK otherwise.
1795 */
1796 int
1797ga_grow(gap, n)
1798 garray_T *gap;
1799 int n;
1800{
1801 size_t len;
1802 char_u *pp;
1803
Bram Moolenaar86b68352004-12-27 21:59:20 +00001804 if (gap->ga_maxlen - gap->ga_len < n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001805 {
1806 if (n < gap->ga_growsize)
1807 n = gap->ga_growsize;
1808 len = gap->ga_itemsize * (gap->ga_len + n);
1809 pp = alloc_clear((unsigned)len);
1810 if (pp == NULL)
1811 return FAIL;
Bram Moolenaar86b68352004-12-27 21:59:20 +00001812 gap->ga_maxlen = gap->ga_len + n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001813 if (gap->ga_data != NULL)
1814 {
1815 mch_memmove(pp, gap->ga_data,
1816 (size_t)(gap->ga_itemsize * gap->ga_len));
1817 vim_free(gap->ga_data);
1818 }
1819 gap->ga_data = pp;
1820 }
1821 return OK;
1822}
1823
1824/*
1825 * Concatenate a string to a growarray which contains characters.
1826 * Note: Does NOT copy the NUL at the end!
1827 */
1828 void
1829ga_concat(gap, s)
1830 garray_T *gap;
1831 char_u *s;
1832{
1833 int len = (int)STRLEN(s);
1834
1835 if (ga_grow(gap, len) == OK)
1836 {
1837 mch_memmove((char *)gap->ga_data + gap->ga_len, s, (size_t)len);
1838 gap->ga_len += len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001839 }
1840}
1841
1842/*
1843 * Append one byte to a growarray which contains bytes.
1844 */
1845 void
1846ga_append(gap, c)
1847 garray_T *gap;
1848 int c;
1849{
1850 if (ga_grow(gap, 1) == OK)
1851 {
1852 *((char *)gap->ga_data + gap->ga_len) = c;
1853 ++gap->ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001854 }
1855}
1856
1857/************************************************************************
1858 * functions that use lookup tables for various things, generally to do with
1859 * special key codes.
1860 */
1861
1862/*
1863 * Some useful tables.
1864 */
1865
1866static struct modmasktable
1867{
1868 short mod_mask; /* Bit-mask for particular key modifier */
1869 short mod_flag; /* Bit(s) for particular key modifier */
1870 char_u name; /* Single letter name of modifier */
1871} mod_mask_table[] =
1872{
1873 {MOD_MASK_ALT, MOD_MASK_ALT, (char_u)'M'},
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001874 {MOD_MASK_META, MOD_MASK_META, (char_u)'T'},
Bram Moolenaar071d4272004-06-13 20:20:40 +00001875 {MOD_MASK_CTRL, MOD_MASK_CTRL, (char_u)'C'},
1876 {MOD_MASK_SHIFT, MOD_MASK_SHIFT, (char_u)'S'},
1877 {MOD_MASK_MULTI_CLICK, MOD_MASK_2CLICK, (char_u)'2'},
1878 {MOD_MASK_MULTI_CLICK, MOD_MASK_3CLICK, (char_u)'3'},
1879 {MOD_MASK_MULTI_CLICK, MOD_MASK_4CLICK, (char_u)'4'},
1880#ifdef MACOS
1881 {MOD_MASK_CMD, MOD_MASK_CMD, (char_u)'D'},
1882#endif
1883 /* 'A' must be the last one */
1884 {MOD_MASK_ALT, MOD_MASK_ALT, (char_u)'A'},
1885 {0, 0, NUL}
1886};
1887
1888/*
1889 * Shifted key terminal codes and their unshifted equivalent.
1890 * Don't add mouse codes here, they are handled seperately!
1891 */
1892#define MOD_KEYS_ENTRY_SIZE 5
1893
1894static char_u modifier_keys_table[] =
1895{
1896/* mod mask with modifier without modifier */
1897 MOD_MASK_SHIFT, '&', '9', '@', '1', /* begin */
1898 MOD_MASK_SHIFT, '&', '0', '@', '2', /* cancel */
1899 MOD_MASK_SHIFT, '*', '1', '@', '4', /* command */
1900 MOD_MASK_SHIFT, '*', '2', '@', '5', /* copy */
1901 MOD_MASK_SHIFT, '*', '3', '@', '6', /* create */
1902 MOD_MASK_SHIFT, '*', '4', 'k', 'D', /* delete char */
1903 MOD_MASK_SHIFT, '*', '5', 'k', 'L', /* delete line */
1904 MOD_MASK_SHIFT, '*', '7', '@', '7', /* end */
1905 MOD_MASK_CTRL, KS_EXTRA, (int)KE_C_END, '@', '7', /* end */
1906 MOD_MASK_SHIFT, '*', '9', '@', '9', /* exit */
1907 MOD_MASK_SHIFT, '*', '0', '@', '0', /* find */
1908 MOD_MASK_SHIFT, '#', '1', '%', '1', /* help */
1909 MOD_MASK_SHIFT, '#', '2', 'k', 'h', /* home */
1910 MOD_MASK_CTRL, KS_EXTRA, (int)KE_C_HOME, 'k', 'h', /* home */
1911 MOD_MASK_SHIFT, '#', '3', 'k', 'I', /* insert */
1912 MOD_MASK_SHIFT, '#', '4', 'k', 'l', /* left arrow */
1913 MOD_MASK_CTRL, KS_EXTRA, (int)KE_C_LEFT, 'k', 'l', /* left arrow */
1914 MOD_MASK_SHIFT, '%', 'a', '%', '3', /* message */
1915 MOD_MASK_SHIFT, '%', 'b', '%', '4', /* move */
1916 MOD_MASK_SHIFT, '%', 'c', '%', '5', /* next */
1917 MOD_MASK_SHIFT, '%', 'd', '%', '7', /* options */
1918 MOD_MASK_SHIFT, '%', 'e', '%', '8', /* previous */
1919 MOD_MASK_SHIFT, '%', 'f', '%', '9', /* print */
1920 MOD_MASK_SHIFT, '%', 'g', '%', '0', /* redo */
1921 MOD_MASK_SHIFT, '%', 'h', '&', '3', /* replace */
1922 MOD_MASK_SHIFT, '%', 'i', 'k', 'r', /* right arr. */
1923 MOD_MASK_CTRL, KS_EXTRA, (int)KE_C_RIGHT, 'k', 'r', /* right arr. */
1924 MOD_MASK_SHIFT, '%', 'j', '&', '5', /* resume */
1925 MOD_MASK_SHIFT, '!', '1', '&', '6', /* save */
1926 MOD_MASK_SHIFT, '!', '2', '&', '7', /* suspend */
1927 MOD_MASK_SHIFT, '!', '3', '&', '8', /* undo */
1928 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_UP, 'k', 'u', /* up arrow */
1929 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_DOWN, 'k', 'd', /* down arrow */
1930
1931 /* vt100 F1 */
1932 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_XF1, KS_EXTRA, (int)KE_XF1,
1933 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_XF2, KS_EXTRA, (int)KE_XF2,
1934 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_XF3, KS_EXTRA, (int)KE_XF3,
1935 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_XF4, KS_EXTRA, (int)KE_XF4,
1936
1937 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F1, 'k', '1', /* F1 */
1938 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F2, 'k', '2',
1939 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F3, 'k', '3',
1940 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F4, 'k', '4',
1941 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F5, 'k', '5',
1942 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F6, 'k', '6',
1943 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F7, 'k', '7',
1944 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F8, 'k', '8',
1945 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F9, 'k', '9',
1946 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F10, 'k', ';', /* F10 */
1947
1948 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F11, 'F', '1',
1949 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F12, 'F', '2',
1950 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F13, 'F', '3',
1951 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F14, 'F', '4',
1952 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F15, 'F', '5',
1953 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F16, 'F', '6',
1954 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F17, 'F', '7',
1955 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F18, 'F', '8',
1956 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F19, 'F', '9',
1957 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F20, 'F', 'A',
1958
1959 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F21, 'F', 'B',
1960 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F22, 'F', 'C',
1961 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F23, 'F', 'D',
1962 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F24, 'F', 'E',
1963 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F25, 'F', 'F',
1964 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F26, 'F', 'G',
1965 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F27, 'F', 'H',
1966 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F28, 'F', 'I',
1967 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F29, 'F', 'J',
1968 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F30, 'F', 'K',
1969
1970 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F31, 'F', 'L',
1971 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F32, 'F', 'M',
1972 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F33, 'F', 'N',
1973 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F34, 'F', 'O',
1974 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F35, 'F', 'P',
1975 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F36, 'F', 'Q',
1976 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F37, 'F', 'R',
1977
1978 /* TAB pseudo code*/
1979 MOD_MASK_SHIFT, 'k', 'B', KS_EXTRA, (int)KE_TAB,
1980
1981 NUL
1982};
1983
1984static struct key_name_entry
1985{
1986 int key; /* Special key code or ascii value */
1987 char_u *name; /* Name of key */
1988} key_names_table[] =
1989{
1990 {' ', (char_u *)"Space"},
1991 {TAB, (char_u *)"Tab"},
1992 {K_TAB, (char_u *)"Tab"},
1993 {NL, (char_u *)"NL"},
1994 {NL, (char_u *)"NewLine"}, /* Alternative name */
1995 {NL, (char_u *)"LineFeed"}, /* Alternative name */
1996 {NL, (char_u *)"LF"}, /* Alternative name */
1997 {CAR, (char_u *)"CR"},
1998 {CAR, (char_u *)"Return"}, /* Alternative name */
1999 {CAR, (char_u *)"Enter"}, /* Alternative name */
2000 {K_BS, (char_u *)"BS"},
2001 {K_BS, (char_u *)"BackSpace"}, /* Alternative name */
2002 {ESC, (char_u *)"Esc"},
2003 {CSI, (char_u *)"CSI"},
2004 {K_CSI, (char_u *)"xCSI"},
2005 {'|', (char_u *)"Bar"},
2006 {'\\', (char_u *)"Bslash"},
2007 {K_DEL, (char_u *)"Del"},
2008 {K_DEL, (char_u *)"Delete"}, /* Alternative name */
2009 {K_KDEL, (char_u *)"kDel"},
2010 {K_UP, (char_u *)"Up"},
2011 {K_DOWN, (char_u *)"Down"},
2012 {K_LEFT, (char_u *)"Left"},
2013 {K_RIGHT, (char_u *)"Right"},
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002014 {K_XUP, (char_u *)"xUp"},
2015 {K_XDOWN, (char_u *)"xDown"},
2016 {K_XLEFT, (char_u *)"xLeft"},
2017 {K_XRIGHT, (char_u *)"xRight"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002018
2019 {K_F1, (char_u *)"F1"},
2020 {K_F2, (char_u *)"F2"},
2021 {K_F3, (char_u *)"F3"},
2022 {K_F4, (char_u *)"F4"},
2023 {K_F5, (char_u *)"F5"},
2024 {K_F6, (char_u *)"F6"},
2025 {K_F7, (char_u *)"F7"},
2026 {K_F8, (char_u *)"F8"},
2027 {K_F9, (char_u *)"F9"},
2028 {K_F10, (char_u *)"F10"},
2029
2030 {K_F11, (char_u *)"F11"},
2031 {K_F12, (char_u *)"F12"},
2032 {K_F13, (char_u *)"F13"},
2033 {K_F14, (char_u *)"F14"},
2034 {K_F15, (char_u *)"F15"},
2035 {K_F16, (char_u *)"F16"},
2036 {K_F17, (char_u *)"F17"},
2037 {K_F18, (char_u *)"F18"},
2038 {K_F19, (char_u *)"F19"},
2039 {K_F20, (char_u *)"F20"},
2040
2041 {K_F21, (char_u *)"F21"},
2042 {K_F22, (char_u *)"F22"},
2043 {K_F23, (char_u *)"F23"},
2044 {K_F24, (char_u *)"F24"},
2045 {K_F25, (char_u *)"F25"},
2046 {K_F26, (char_u *)"F26"},
2047 {K_F27, (char_u *)"F27"},
2048 {K_F28, (char_u *)"F28"},
2049 {K_F29, (char_u *)"F29"},
2050 {K_F30, (char_u *)"F30"},
2051
2052 {K_F31, (char_u *)"F31"},
2053 {K_F32, (char_u *)"F32"},
2054 {K_F33, (char_u *)"F33"},
2055 {K_F34, (char_u *)"F34"},
2056 {K_F35, (char_u *)"F35"},
2057 {K_F36, (char_u *)"F36"},
2058 {K_F37, (char_u *)"F37"},
2059
2060 {K_XF1, (char_u *)"xF1"},
2061 {K_XF2, (char_u *)"xF2"},
2062 {K_XF3, (char_u *)"xF3"},
2063 {K_XF4, (char_u *)"xF4"},
2064
2065 {K_HELP, (char_u *)"Help"},
2066 {K_UNDO, (char_u *)"Undo"},
2067 {K_INS, (char_u *)"Insert"},
2068 {K_INS, (char_u *)"Ins"}, /* Alternative name */
2069 {K_KINS, (char_u *)"kInsert"},
2070 {K_HOME, (char_u *)"Home"},
2071 {K_KHOME, (char_u *)"kHome"},
2072 {K_XHOME, (char_u *)"xHome"},
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002073 {K_ZHOME, (char_u *)"zHome"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002074 {K_END, (char_u *)"End"},
2075 {K_KEND, (char_u *)"kEnd"},
2076 {K_XEND, (char_u *)"xEnd"},
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002077 {K_ZEND, (char_u *)"zEnd"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002078 {K_PAGEUP, (char_u *)"PageUp"},
2079 {K_PAGEDOWN, (char_u *)"PageDown"},
2080 {K_KPAGEUP, (char_u *)"kPageUp"},
2081 {K_KPAGEDOWN, (char_u *)"kPageDown"},
2082
2083 {K_KPLUS, (char_u *)"kPlus"},
2084 {K_KMINUS, (char_u *)"kMinus"},
2085 {K_KDIVIDE, (char_u *)"kDivide"},
2086 {K_KMULTIPLY, (char_u *)"kMultiply"},
2087 {K_KENTER, (char_u *)"kEnter"},
2088 {K_KPOINT, (char_u *)"kPoint"},
2089
2090 {K_K0, (char_u *)"k0"},
2091 {K_K1, (char_u *)"k1"},
2092 {K_K2, (char_u *)"k2"},
2093 {K_K3, (char_u *)"k3"},
2094 {K_K4, (char_u *)"k4"},
2095 {K_K5, (char_u *)"k5"},
2096 {K_K6, (char_u *)"k6"},
2097 {K_K7, (char_u *)"k7"},
2098 {K_K8, (char_u *)"k8"},
2099 {K_K9, (char_u *)"k9"},
2100
2101 {'<', (char_u *)"lt"},
2102
2103 {K_MOUSE, (char_u *)"Mouse"},
2104 {K_NETTERM_MOUSE, (char_u *)"NetMouse"},
2105 {K_DEC_MOUSE, (char_u *)"DecMouse"},
2106 {K_JSBTERM_MOUSE, (char_u *)"JsbMouse"},
2107 {K_PTERM_MOUSE, (char_u *)"PtermMouse"},
2108 {K_LEFTMOUSE, (char_u *)"LeftMouse"},
2109 {K_LEFTMOUSE_NM, (char_u *)"LeftMouseNM"},
2110 {K_LEFTDRAG, (char_u *)"LeftDrag"},
2111 {K_LEFTRELEASE, (char_u *)"LeftRelease"},
2112 {K_LEFTRELEASE_NM, (char_u *)"LeftReleaseNM"},
2113 {K_MIDDLEMOUSE, (char_u *)"MiddleMouse"},
2114 {K_MIDDLEDRAG, (char_u *)"MiddleDrag"},
2115 {K_MIDDLERELEASE, (char_u *)"MiddleRelease"},
2116 {K_RIGHTMOUSE, (char_u *)"RightMouse"},
2117 {K_RIGHTDRAG, (char_u *)"RightDrag"},
2118 {K_RIGHTRELEASE, (char_u *)"RightRelease"},
2119 {K_MOUSEDOWN, (char_u *)"MouseDown"},
2120 {K_MOUSEUP, (char_u *)"MouseUp"},
2121 {K_X1MOUSE, (char_u *)"X1Mouse"},
2122 {K_X1DRAG, (char_u *)"X1Drag"},
2123 {K_X1RELEASE, (char_u *)"X1Release"},
2124 {K_X2MOUSE, (char_u *)"X2Mouse"},
2125 {K_X2DRAG, (char_u *)"X2Drag"},
2126 {K_X2RELEASE, (char_u *)"X2Release"},
2127 {K_DROP, (char_u *)"Drop"},
2128 {K_ZERO, (char_u *)"Nul"},
2129#ifdef FEAT_EVAL
2130 {K_SNR, (char_u *)"SNR"},
2131#endif
2132 {K_PLUG, (char_u *)"Plug"},
2133 {0, NULL}
2134};
2135
2136#define KEY_NAMES_TABLE_LEN (sizeof(key_names_table) / sizeof(struct key_name_entry))
2137
2138#ifdef FEAT_MOUSE
2139static struct mousetable
2140{
2141 int pseudo_code; /* Code for pseudo mouse event */
2142 int button; /* Which mouse button is it? */
2143 int is_click; /* Is it a mouse button click event? */
2144 int is_drag; /* Is it a mouse drag event? */
2145} mouse_table[] =
2146{
2147 {(int)KE_LEFTMOUSE, MOUSE_LEFT, TRUE, FALSE},
2148#ifdef FEAT_GUI
2149 {(int)KE_LEFTMOUSE_NM, MOUSE_LEFT, TRUE, FALSE},
2150#endif
2151 {(int)KE_LEFTDRAG, MOUSE_LEFT, FALSE, TRUE},
2152 {(int)KE_LEFTRELEASE, MOUSE_LEFT, FALSE, FALSE},
2153#ifdef FEAT_GUI
2154 {(int)KE_LEFTRELEASE_NM, MOUSE_LEFT, FALSE, FALSE},
2155#endif
2156 {(int)KE_MIDDLEMOUSE, MOUSE_MIDDLE, TRUE, FALSE},
2157 {(int)KE_MIDDLEDRAG, MOUSE_MIDDLE, FALSE, TRUE},
2158 {(int)KE_MIDDLERELEASE, MOUSE_MIDDLE, FALSE, FALSE},
2159 {(int)KE_RIGHTMOUSE, MOUSE_RIGHT, TRUE, FALSE},
2160 {(int)KE_RIGHTDRAG, MOUSE_RIGHT, FALSE, TRUE},
2161 {(int)KE_RIGHTRELEASE, MOUSE_RIGHT, FALSE, FALSE},
2162 {(int)KE_X1MOUSE, MOUSE_X1, TRUE, FALSE},
2163 {(int)KE_X1DRAG, MOUSE_X1, FALSE, TRUE},
2164 {(int)KE_X1RELEASE, MOUSE_X1, FALSE, FALSE},
2165 {(int)KE_X2MOUSE, MOUSE_X2, TRUE, FALSE},
2166 {(int)KE_X2DRAG, MOUSE_X2, FALSE, TRUE},
2167 {(int)KE_X2RELEASE, MOUSE_X2, FALSE, FALSE},
2168 /* DRAG without CLICK */
2169 {(int)KE_IGNORE, MOUSE_RELEASE, FALSE, TRUE},
2170 /* RELEASE without CLICK */
2171 {(int)KE_IGNORE, MOUSE_RELEASE, FALSE, FALSE},
2172 {0, 0, 0, 0},
2173};
2174#endif /* FEAT_MOUSE */
2175
2176/*
2177 * Return the modifier mask bit (MOD_MASK_*) which corresponds to the given
2178 * modifier name ('S' for Shift, 'C' for Ctrl etc).
2179 */
2180 int
2181name_to_mod_mask(c)
2182 int c;
2183{
2184 int i;
2185
2186 c = TOUPPER_ASC(c);
2187 for (i = 0; mod_mask_table[i].mod_mask != 0; i++)
2188 if (c == mod_mask_table[i].name)
2189 return mod_mask_table[i].mod_flag;
2190 return 0;
2191}
2192
Bram Moolenaar071d4272004-06-13 20:20:40 +00002193/*
2194 * Check if if there is a special key code for "key" that includes the
2195 * modifiers specified.
2196 */
2197 int
2198simplify_key(key, modifiers)
2199 int key;
2200 int *modifiers;
2201{
2202 int i;
2203 int key0;
2204 int key1;
2205
2206 if (*modifiers & (MOD_MASK_SHIFT | MOD_MASK_CTRL | MOD_MASK_ALT))
2207 {
2208 /* TAB is a special case */
2209 if (key == TAB && (*modifiers & MOD_MASK_SHIFT))
2210 {
2211 *modifiers &= ~MOD_MASK_SHIFT;
2212 return K_S_TAB;
2213 }
2214 key0 = KEY2TERMCAP0(key);
2215 key1 = KEY2TERMCAP1(key);
2216 for (i = 0; modifier_keys_table[i] != NUL; i += MOD_KEYS_ENTRY_SIZE)
2217 if (key0 == modifier_keys_table[i + 3]
2218 && key1 == modifier_keys_table[i + 4]
2219 && (*modifiers & modifier_keys_table[i]))
2220 {
2221 *modifiers &= ~modifier_keys_table[i];
2222 return TERMCAP2KEY(modifier_keys_table[i + 1],
2223 modifier_keys_table[i + 2]);
2224 }
2225 }
2226 return key;
2227}
2228
2229/*
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002230 * Change <xHome> to <Home>, <xUp> to <Up>, etc.
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002231 */
2232 int
2233handle_x_keys(key)
2234 int key;
2235{
2236 switch (key)
2237 {
2238 case K_XUP: return K_UP;
2239 case K_XDOWN: return K_DOWN;
2240 case K_XLEFT: return K_LEFT;
2241 case K_XRIGHT: return K_RIGHT;
2242 case K_XHOME: return K_HOME;
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002243 case K_ZHOME: return K_HOME;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002244 case K_XEND: return K_END;
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002245 case K_ZEND: return K_END;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002246 case K_XF1: return K_F1;
2247 case K_XF2: return K_F2;
2248 case K_XF3: return K_F3;
2249 case K_XF4: return K_F4;
2250 case K_S_XF1: return K_S_F1;
2251 case K_S_XF2: return K_S_F2;
2252 case K_S_XF3: return K_S_F3;
2253 case K_S_XF4: return K_S_F4;
2254 }
2255 return key;
2256}
2257
2258/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002259 * Return a string which contains the name of the given key when the given
2260 * modifiers are down.
2261 */
2262 char_u *
2263get_special_key_name(c, modifiers)
2264 int c;
2265 int modifiers;
2266{
2267 static char_u string[MAX_KEY_NAME_LEN + 1];
2268
2269 int i, idx;
2270 int table_idx;
2271 char_u *s;
2272
2273 string[0] = '<';
2274 idx = 1;
2275
2276 /* Key that stands for a normal character. */
2277 if (IS_SPECIAL(c) && KEY2TERMCAP0(c) == KS_KEY)
2278 c = KEY2TERMCAP1(c);
2279
2280 /*
2281 * Translate shifted special keys into unshifted keys and set modifier.
2282 * Same for CTRL and ALT modifiers.
2283 */
2284 if (IS_SPECIAL(c))
2285 {
2286 for (i = 0; modifier_keys_table[i] != 0; i += MOD_KEYS_ENTRY_SIZE)
2287 if ( KEY2TERMCAP0(c) == (int)modifier_keys_table[i + 1]
2288 && (int)KEY2TERMCAP1(c) == (int)modifier_keys_table[i + 2])
2289 {
2290 modifiers |= modifier_keys_table[i];
2291 c = TERMCAP2KEY(modifier_keys_table[i + 3],
2292 modifier_keys_table[i + 4]);
2293 break;
2294 }
2295 }
2296
2297 /* try to find the key in the special key table */
2298 table_idx = find_special_key_in_table(c);
2299
2300 /*
2301 * When not a known special key, and not a printable character, try to
2302 * extract modifiers.
2303 */
2304 if (c > 0
2305#ifdef FEAT_MBYTE
2306 && (*mb_char2len)(c) == 1
2307#endif
2308 )
2309 {
2310 if (table_idx < 0
2311 && (!vim_isprintc(c) || (c & 0x7f) == ' ')
2312 && (c & 0x80))
2313 {
2314 c &= 0x7f;
2315 modifiers |= MOD_MASK_ALT;
2316 /* try again, to find the un-alted key in the special key table */
2317 table_idx = find_special_key_in_table(c);
2318 }
2319 if (table_idx < 0 && !vim_isprintc(c) && c < ' ')
2320 {
2321#ifdef EBCDIC
2322 c = CtrlChar(c);
2323#else
2324 c += '@';
2325#endif
2326 modifiers |= MOD_MASK_CTRL;
2327 }
2328 }
2329
2330 /* translate the modifier into a string */
2331 for (i = 0; mod_mask_table[i].name != 'A'; i++)
2332 if ((modifiers & mod_mask_table[i].mod_mask)
2333 == mod_mask_table[i].mod_flag)
2334 {
2335 string[idx++] = mod_mask_table[i].name;
2336 string[idx++] = (char_u)'-';
2337 }
2338
2339 if (table_idx < 0) /* unknown special key, may output t_xx */
2340 {
2341 if (IS_SPECIAL(c))
2342 {
2343 string[idx++] = 't';
2344 string[idx++] = '_';
2345 string[idx++] = KEY2TERMCAP0(c);
2346 string[idx++] = KEY2TERMCAP1(c);
2347 }
2348 /* Not a special key, only modifiers, output directly */
2349 else
2350 {
2351#ifdef FEAT_MBYTE
2352 if (has_mbyte && (*mb_char2len)(c) > 1)
2353 idx += (*mb_char2bytes)(c, string + idx);
2354 else
2355#endif
2356 if (vim_isprintc(c))
2357 string[idx++] = c;
2358 else
2359 {
2360 s = transchar(c);
2361 while (*s)
2362 string[idx++] = *s++;
2363 }
2364 }
2365 }
2366 else /* use name of special key */
2367 {
2368 STRCPY(string + idx, key_names_table[table_idx].name);
2369 idx = (int)STRLEN(string);
2370 }
2371 string[idx++] = '>';
2372 string[idx] = NUL;
2373 return string;
2374}
2375
2376/*
2377 * Try translating a <> name at (*srcp)[] to dst[].
2378 * Return the number of characters added to dst[], zero for no match.
2379 * If there is a match, srcp is advanced to after the <> name.
2380 * dst[] must be big enough to hold the result (up to six characters)!
2381 */
2382 int
2383trans_special(srcp, dst, keycode)
2384 char_u **srcp;
2385 char_u *dst;
2386 int keycode; /* prefer key code, e.g. K_DEL instead of DEL */
2387{
2388 int modifiers = 0;
2389 int key;
2390 int dlen = 0;
2391
2392 key = find_special_key(srcp, &modifiers, keycode);
2393 if (key == 0)
2394 return 0;
2395
2396 /* Put the appropriate modifier in a string */
2397 if (modifiers != 0)
2398 {
2399 dst[dlen++] = K_SPECIAL;
2400 dst[dlen++] = KS_MODIFIER;
2401 dst[dlen++] = modifiers;
2402 }
2403
2404 if (IS_SPECIAL(key))
2405 {
2406 dst[dlen++] = K_SPECIAL;
2407 dst[dlen++] = KEY2TERMCAP0(key);
2408 dst[dlen++] = KEY2TERMCAP1(key);
2409 }
2410#ifdef FEAT_MBYTE
2411 else if (has_mbyte && !keycode)
2412 dlen += (*mb_char2bytes)(key, dst + dlen);
2413#endif
2414 else if (keycode)
2415 dlen = (int)(add_char2buf(key, dst + dlen) - dst);
2416 else
2417 dst[dlen++] = key;
2418
2419 return dlen;
2420}
2421
2422/*
2423 * Try translating a <> name at (*srcp)[], return the key and modifiers.
2424 * srcp is advanced to after the <> name.
2425 * returns 0 if there is no match.
2426 */
2427 int
2428find_special_key(srcp, modp, keycode)
2429 char_u **srcp;
2430 int *modp;
2431 int keycode; /* prefer key code, e.g. K_DEL instead of DEL */
2432{
2433 char_u *last_dash;
2434 char_u *end_of_name;
2435 char_u *src;
2436 char_u *bp;
2437 int modifiers;
2438 int bit;
2439 int key;
2440 long_u n;
2441
2442 src = *srcp;
2443 if (src[0] != '<')
2444 return 0;
2445
2446 /* Find end of modifier list */
2447 last_dash = src;
2448 for (bp = src + 1; *bp == '-' || vim_isIDc(*bp); bp++)
2449 {
2450 if (*bp == '-')
2451 {
2452 last_dash = bp;
2453 if (bp[1] != NUL && bp[2] == '>')
2454 ++bp; /* anything accepted, like <C-?> */
2455 }
2456 if (bp[0] == 't' && bp[1] == '_' && bp[2] && bp[3])
2457 bp += 3; /* skip t_xx, xx may be '-' or '>' */
2458 }
2459
2460 if (*bp == '>') /* found matching '>' */
2461 {
2462 end_of_name = bp + 1;
2463
2464 if (STRNICMP(src + 1, "char-", 5) == 0 && VIM_ISDIGIT(src[6]))
2465 {
2466 /* <Char-123> or <Char-033> or <Char-0x33> */
2467 vim_str2nr(src + 6, NULL, NULL, TRUE, TRUE, NULL, &n);
2468 *modp = 0;
2469 *srcp = end_of_name;
2470 return (int)n;
2471 }
2472
2473 /* Which modifiers are given? */
2474 modifiers = 0x0;
2475 for (bp = src + 1; bp < last_dash; bp++)
2476 {
2477 if (*bp != '-')
2478 {
2479 bit = name_to_mod_mask(*bp);
2480 if (bit == 0x0)
2481 break; /* Illegal modifier name */
2482 modifiers |= bit;
2483 }
2484 }
2485
2486 /*
2487 * Legal modifier name.
2488 */
2489 if (bp >= last_dash)
2490 {
2491 /*
2492 * Modifier with single letter, or special key name.
2493 */
2494 if (modifiers != 0 && last_dash[2] == '>')
2495 key = last_dash[1];
2496 else
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002497 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002498 key = get_special_key_code(last_dash + 1);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002499 key = handle_x_keys(key);
2500 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002501
2502 /*
2503 * get_special_key_code() may return NUL for invalid
2504 * special key name.
2505 */
2506 if (key != NUL)
2507 {
2508 /*
2509 * Only use a modifier when there is no special key code that
2510 * includes the modifier.
2511 */
2512 key = simplify_key(key, &modifiers);
2513
2514 if (!keycode)
2515 {
2516 /* don't want keycode, use single byte code */
2517 if (key == K_BS)
2518 key = BS;
2519 else if (key == K_DEL || key == K_KDEL)
2520 key = DEL;
2521 }
2522
2523 /*
2524 * Normal Key with modifier: Try to make a single byte code.
2525 */
2526 if (!IS_SPECIAL(key))
2527 key = extract_modifiers(key, &modifiers);
2528
2529 *modp = modifiers;
2530 *srcp = end_of_name;
2531 return key;
2532 }
2533 }
2534 }
2535 return 0;
2536}
2537
2538/*
2539 * Try to include modifiers in the key.
2540 * Changes "Shift-a" to 'A', "Alt-A" to 0xc0, etc.
2541 */
2542 int
2543extract_modifiers(key, modp)
2544 int key;
2545 int *modp;
2546{
2547 int modifiers = *modp;
2548
2549#ifdef MACOS
2550 /* Command-key really special, No fancynest */
2551 if (!(modifiers & MOD_MASK_CMD))
2552#endif
2553 if ((modifiers & MOD_MASK_SHIFT) && ASCII_ISALPHA(key))
2554 {
2555 key = TOUPPER_ASC(key);
2556 modifiers &= ~MOD_MASK_SHIFT;
2557 }
2558 if ((modifiers & MOD_MASK_CTRL)
2559#ifdef EBCDIC
2560 /* * TODO: EBCDIC Better use:
2561 * && (Ctrl_chr(key) || key == '?')
2562 * ??? */
2563 && strchr("?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_", key)
2564 != NULL
2565#else
2566 && ((key >= '?' && key <= '_') || ASCII_ISALPHA(key))
2567#endif
2568 )
2569 {
2570 key = Ctrl_chr(key);
2571 modifiers &= ~MOD_MASK_CTRL;
2572 /* <C-@> is <Nul> */
2573 if (key == 0)
2574 key = K_ZERO;
2575 }
2576#ifdef MACOS
2577 /* Command-key really special, No fancynest */
2578 if (!(modifiers & MOD_MASK_CMD))
2579#endif
2580 if ((modifiers & MOD_MASK_ALT) && key < 0x80
2581#ifdef FEAT_MBYTE
2582 && !enc_dbcs /* avoid creating a lead byte */
2583#endif
2584 )
2585 {
2586 key |= 0x80;
2587 modifiers &= ~MOD_MASK_ALT; /* remove the META modifier */
2588 }
2589
2590 *modp = modifiers;
2591 return key;
2592}
2593
2594/*
2595 * Try to find key "c" in the special key table.
2596 * Return the index when found, -1 when not found.
2597 */
2598 int
2599find_special_key_in_table(c)
2600 int c;
2601{
2602 int i;
2603
2604 for (i = 0; key_names_table[i].name != NULL; i++)
2605 if (c == key_names_table[i].key)
2606 break;
2607 if (key_names_table[i].name == NULL)
2608 i = -1;
2609 return i;
2610}
2611
2612/*
2613 * Find the special key with the given name (the given string does not have to
2614 * end with NUL, the name is assumed to end before the first non-idchar).
2615 * If the name starts with "t_" the next two characters are interpreted as a
2616 * termcap name.
2617 * Return the key code, or 0 if not found.
2618 */
2619 int
2620get_special_key_code(name)
2621 char_u *name;
2622{
2623 char_u *table_name;
2624 char_u string[3];
2625 int i, j;
2626
2627 /*
2628 * If it's <t_xx> we get the code for xx from the termcap
2629 */
2630 if (name[0] == 't' && name[1] == '_' && name[2] != NUL && name[3] != NUL)
2631 {
2632 string[0] = name[2];
2633 string[1] = name[3];
2634 string[2] = NUL;
2635 if (add_termcap_entry(string, FALSE) == OK)
2636 return TERMCAP2KEY(name[2], name[3]);
2637 }
2638 else
2639 for (i = 0; key_names_table[i].name != NULL; i++)
2640 {
2641 table_name = key_names_table[i].name;
2642 for (j = 0; vim_isIDc(name[j]) && table_name[j] != NUL; j++)
2643 if (TOLOWER_ASC(table_name[j]) != TOLOWER_ASC(name[j]))
2644 break;
2645 if (!vim_isIDc(name[j]) && table_name[j] == NUL)
2646 return key_names_table[i].key;
2647 }
2648 return 0;
2649}
2650
2651#ifdef FEAT_CMDL_COMPL
2652 char_u *
2653get_key_name(i)
2654 int i;
2655{
2656 if (i >= KEY_NAMES_TABLE_LEN)
2657 return NULL;
2658 return key_names_table[i].name;
2659}
2660#endif
2661
2662#ifdef FEAT_MOUSE
2663/*
2664 * Look up the given mouse code to return the relevant information in the other
2665 * arguments. Return which button is down or was released.
2666 */
2667 int
2668get_mouse_button(code, is_click, is_drag)
2669 int code;
2670 int *is_click;
2671 int *is_drag;
2672{
2673 int i;
2674
2675 for (i = 0; mouse_table[i].pseudo_code; i++)
2676 if (code == mouse_table[i].pseudo_code)
2677 {
2678 *is_click = mouse_table[i].is_click;
2679 *is_drag = mouse_table[i].is_drag;
2680 return mouse_table[i].button;
2681 }
2682 return 0; /* Shouldn't get here */
2683}
2684
2685/*
2686 * Return the appropriate pseudo mouse event token (KE_LEFTMOUSE etc) based on
2687 * the given information about which mouse button is down, and whether the
2688 * mouse was clicked, dragged or released.
2689 */
2690 int
2691get_pseudo_mouse_code(button, is_click, is_drag)
2692 int button; /* eg MOUSE_LEFT */
2693 int is_click;
2694 int is_drag;
2695{
2696 int i;
2697
2698 for (i = 0; mouse_table[i].pseudo_code; i++)
2699 if (button == mouse_table[i].button
2700 && is_click == mouse_table[i].is_click
2701 && is_drag == mouse_table[i].is_drag)
2702 {
2703#ifdef FEAT_GUI
Bram Moolenaarc91506a2005-04-24 22:04:21 +00002704 /* Trick: a non mappable left click and release has mouse_col -1
2705 * or added MOUSE_COLOFF. Used for 'mousefocus' in
2706 * gui_mouse_moved() */
2707 if (mouse_col < 0 || mouse_col > MOUSE_COLOFF)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002708 {
Bram Moolenaarc91506a2005-04-24 22:04:21 +00002709 if (mouse_col < 0)
2710 mouse_col = 0;
2711 else
2712 mouse_col -= MOUSE_COLOFF;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002713 if (mouse_table[i].pseudo_code == (int)KE_LEFTMOUSE)
2714 return (int)KE_LEFTMOUSE_NM;
2715 if (mouse_table[i].pseudo_code == (int)KE_LEFTRELEASE)
2716 return (int)KE_LEFTRELEASE_NM;
2717 }
2718#endif
2719 return mouse_table[i].pseudo_code;
2720 }
2721 return (int)KE_IGNORE; /* not recongnized, ignore it */
2722}
2723#endif /* FEAT_MOUSE */
2724
2725/*
2726 * Return the current end-of-line type: EOL_DOS, EOL_UNIX or EOL_MAC.
2727 */
2728 int
2729get_fileformat(buf)
2730 buf_T *buf;
2731{
2732 int c = *buf->b_p_ff;
2733
2734 if (buf->b_p_bin || c == 'u')
2735 return EOL_UNIX;
2736 if (c == 'm')
2737 return EOL_MAC;
2738 return EOL_DOS;
2739}
2740
2741/*
2742 * Like get_fileformat(), but override 'fileformat' with "p" for "++opt=val"
2743 * argument.
2744 */
2745 int
2746get_fileformat_force(buf, eap)
2747 buf_T *buf;
2748 exarg_T *eap; /* can be NULL! */
2749{
2750 int c;
2751
2752 if (eap != NULL && eap->force_ff != 0)
2753 c = eap->cmd[eap->force_ff];
2754 else
2755 {
2756 if ((eap != NULL && eap->force_bin != 0)
2757 ? (eap->force_bin == FORCE_BIN) : buf->b_p_bin)
2758 return EOL_UNIX;
2759 c = *buf->b_p_ff;
2760 }
2761 if (c == 'u')
2762 return EOL_UNIX;
2763 if (c == 'm')
2764 return EOL_MAC;
2765 return EOL_DOS;
2766}
2767
2768/*
2769 * Set the current end-of-line type to EOL_DOS, EOL_UNIX or EOL_MAC.
2770 * Sets both 'textmode' and 'fileformat'.
2771 * Note: Does _not_ set global value of 'textmode'!
2772 */
2773 void
2774set_fileformat(t, opt_flags)
2775 int t;
2776 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
2777{
2778 char *p = NULL;
2779
2780 switch (t)
2781 {
2782 case EOL_DOS:
2783 p = FF_DOS;
2784 curbuf->b_p_tx = TRUE;
2785 break;
2786 case EOL_UNIX:
2787 p = FF_UNIX;
2788 curbuf->b_p_tx = FALSE;
2789 break;
2790 case EOL_MAC:
2791 p = FF_MAC;
2792 curbuf->b_p_tx = FALSE;
2793 break;
2794 }
2795 if (p != NULL)
Bram Moolenaard1f56e62006-02-22 21:25:37 +00002796 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002797 set_string_option_direct((char_u *)"ff", -1, (char_u *)p,
2798 OPT_FREE | opt_flags);
Bram Moolenaard1f56e62006-02-22 21:25:37 +00002799# ifdef FEAT_EVAL
2800 set_option_scriptID((char_u *)"ff", current_SID);
2801# endif
2802 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002803#ifdef FEAT_WINDOWS
Bram Moolenaarf740b292006-02-16 22:11:02 +00002804 /* This may cause the buffer to become (un)modified. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002805 check_status(curbuf);
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002806 redraw_tabline = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002807#endif
2808#ifdef FEAT_TITLE
2809 need_maketitle = TRUE; /* set window title later */
2810#endif
2811}
2812
2813/*
2814 * Return the default fileformat from 'fileformats'.
2815 */
2816 int
2817default_fileformat()
2818{
2819 switch (*p_ffs)
2820 {
2821 case 'm': return EOL_MAC;
2822 case 'd': return EOL_DOS;
2823 }
2824 return EOL_UNIX;
2825}
2826
2827/*
2828 * Call shell. Calls mch_call_shell, with 'shellxquote' added.
2829 */
2830 int
2831call_shell(cmd, opt)
2832 char_u *cmd;
2833 int opt;
2834{
2835 char_u *ncmd;
2836 int retval;
Bram Moolenaar05159a02005-02-26 23:04:13 +00002837#ifdef FEAT_PROFILE
2838 proftime_T wait_time;
2839#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002840
2841 if (p_verbose > 3)
2842 {
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00002843 verbose_enter();
Bram Moolenaar051b7822005-05-19 21:00:46 +00002844 smsg((char_u *)_("Calling shell to execute: \"%s\""),
Bram Moolenaar071d4272004-06-13 20:20:40 +00002845 cmd == NULL ? p_sh : cmd);
2846 out_char('\n');
2847 cursor_on();
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00002848 verbose_leave();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002849 }
2850
Bram Moolenaar05159a02005-02-26 23:04:13 +00002851#ifdef FEAT_PROFILE
2852 if (do_profiling)
2853 prof_child_enter(&wait_time);
2854#endif
2855
Bram Moolenaar071d4272004-06-13 20:20:40 +00002856 if (*p_sh == NUL)
2857 {
2858 EMSG(_(e_shellempty));
2859 retval = -1;
2860 }
2861 else
2862 {
2863#ifdef FEAT_GUI_MSWIN
2864 /* Don't hide the pointer while executing a shell command. */
2865 gui_mch_mousehide(FALSE);
2866#endif
2867#ifdef FEAT_GUI
2868 ++hold_gui_events;
2869#endif
2870 /* The external command may update a tags file, clear cached tags. */
2871 tag_freematch();
2872
2873 if (cmd == NULL || *p_sxq == NUL)
2874 retval = mch_call_shell(cmd, opt);
2875 else
2876 {
2877 ncmd = alloc((unsigned)(STRLEN(cmd) + STRLEN(p_sxq) * 2 + 1));
2878 if (ncmd != NULL)
2879 {
2880 STRCPY(ncmd, p_sxq);
2881 STRCAT(ncmd, cmd);
2882 STRCAT(ncmd, p_sxq);
2883 retval = mch_call_shell(ncmd, opt);
2884 vim_free(ncmd);
2885 }
2886 else
2887 retval = -1;
2888 }
2889#ifdef FEAT_GUI
2890 --hold_gui_events;
2891#endif
2892 /*
2893 * Check the window size, in case it changed while executing the
2894 * external command.
2895 */
2896 shell_resized_check();
2897 }
2898
2899#ifdef FEAT_EVAL
2900 set_vim_var_nr(VV_SHELL_ERROR, (long)retval);
Bram Moolenaar05159a02005-02-26 23:04:13 +00002901# ifdef FEAT_PROFILE
2902 if (do_profiling)
2903 prof_child_exit(&wait_time);
2904# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002905#endif
2906
2907 return retval;
2908}
2909
2910/*
2911 * VISUAL and OP_PENDING State are never set, they are equal to NORMAL State
2912 * with a condition. This function returns the real State.
2913 */
2914 int
2915get_real_state()
2916{
2917 if (State & NORMAL)
2918 {
2919#ifdef FEAT_VISUAL
2920 if (VIsual_active)
2921 return VISUAL;
2922 else
2923#endif
2924 if (finish_op)
2925 return OP_PENDING;
2926 }
2927 return State;
2928}
2929
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002930#if defined(FEAT_MBYTE) || defined(PROTO)
2931/*
2932 * Return TRUE if "p" points to just after a path separator.
2933 * Take care of multi-byte characters.
2934 * "b" must point to the start of the file name
2935 */
2936 int
2937after_pathsep(b, p)
2938 char_u *b;
2939 char_u *p;
2940{
2941 return vim_ispathsep(p[-1])
2942 && (!has_mbyte || (*mb_head_off)(b, p - 1) == 0);
2943}
2944#endif
2945
2946/*
2947 * Return TRUE if file names "f1" and "f2" are in the same directory.
2948 * "f1" may be a short name, "f2" must be a full path.
2949 */
2950 int
2951same_directory(f1, f2)
2952 char_u *f1;
2953 char_u *f2;
2954{
2955 char_u ffname[MAXPATHL];
2956 char_u *t1;
2957 char_u *t2;
2958
2959 /* safety check */
2960 if (f1 == NULL || f2 == NULL)
2961 return FALSE;
2962
2963 (void)vim_FullName(f1, ffname, MAXPATHL, FALSE);
2964 t1 = gettail_sep(ffname);
2965 t2 = gettail_sep(f2);
2966 return (t1 - ffname == t2 - f2
2967 && pathcmp((char *)ffname, (char *)f2, (int)(t1 - ffname)) == 0);
2968}
2969
Bram Moolenaar071d4272004-06-13 20:20:40 +00002970#if defined(FEAT_SESSION) || defined(MSWIN) || defined(FEAT_GUI_MAC) \
Bram Moolenaar9372a112005-12-06 19:59:18 +00002971 || ((defined(FEAT_GUI_GTK)) \
Bram Moolenaar843ee412004-06-30 16:16:41 +00002972 && ( defined(FEAT_WINDOWS) || defined(FEAT_DND)) ) \
Bram Moolenaar071d4272004-06-13 20:20:40 +00002973 || defined(FEAT_SUN_WORKSHOP) || defined(FEAT_NETBEANS_INTG) \
2974 || defined(PROTO)
2975/*
2976 * Change to a file's directory.
2977 * Caller must call shorten_fnames()!
2978 * Return OK or FAIL.
2979 */
2980 int
2981vim_chdirfile(fname)
2982 char_u *fname;
2983{
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002984 char_u dir[MAXPATHL];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002985
Bram Moolenaarbbebc852005-07-18 21:47:53 +00002986 vim_strncpy(dir, fname, MAXPATHL - 1);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002987 *gettail_sep(dir) = NUL;
2988 return mch_chdir((char *)dir) == 0 ? OK : FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002989}
2990#endif
2991
2992#if defined(STAT_IGNORES_SLASH) || defined(PROTO)
2993/*
2994 * Check if "name" ends in a slash and is not a directory.
2995 * Used for systems where stat() ignores a trailing slash on a file name.
2996 * The Vim code assumes a trailing slash is only ignored for a directory.
2997 */
2998 int
2999illegal_slash(name)
3000 char *name;
3001{
3002 if (name[0] == NUL)
3003 return FALSE; /* no file name is not illegal */
3004 if (name[strlen(name) - 1] != '/')
3005 return FALSE; /* no trailing slash */
3006 if (mch_isdir((char_u *)name))
3007 return FALSE; /* trailing slash for a directory */
3008 return TRUE;
3009}
3010#endif
3011
3012#if defined(CURSOR_SHAPE) || defined(PROTO)
3013
3014/*
3015 * Handling of cursor and mouse pointer shapes in various modes.
3016 */
3017
3018cursorentry_T shape_table[SHAPE_IDX_COUNT] =
3019{
3020 /* The values will be filled in from the 'guicursor' and 'mouseshape'
3021 * defaults when Vim starts.
3022 * Adjust the SHAPE_IDX_ defines when making changes! */
3023 {0, 0, 0, 700L, 400L, 250L, 0, 0, "n", SHAPE_CURSOR+SHAPE_MOUSE},
3024 {0, 0, 0, 700L, 400L, 250L, 0, 0, "v", SHAPE_CURSOR+SHAPE_MOUSE},
3025 {0, 0, 0, 700L, 400L, 250L, 0, 0, "i", SHAPE_CURSOR+SHAPE_MOUSE},
3026 {0, 0, 0, 700L, 400L, 250L, 0, 0, "r", SHAPE_CURSOR+SHAPE_MOUSE},
3027 {0, 0, 0, 700L, 400L, 250L, 0, 0, "c", SHAPE_CURSOR+SHAPE_MOUSE},
3028 {0, 0, 0, 700L, 400L, 250L, 0, 0, "ci", SHAPE_CURSOR+SHAPE_MOUSE},
3029 {0, 0, 0, 700L, 400L, 250L, 0, 0, "cr", SHAPE_CURSOR+SHAPE_MOUSE},
3030 {0, 0, 0, 700L, 400L, 250L, 0, 0, "o", SHAPE_CURSOR+SHAPE_MOUSE},
3031 {0, 0, 0, 700L, 400L, 250L, 0, 0, "ve", SHAPE_CURSOR+SHAPE_MOUSE},
3032 {0, 0, 0, 0L, 0L, 0L, 0, 0, "e", SHAPE_MOUSE},
3033 {0, 0, 0, 0L, 0L, 0L, 0, 0, "s", SHAPE_MOUSE},
3034 {0, 0, 0, 0L, 0L, 0L, 0, 0, "sd", SHAPE_MOUSE},
3035 {0, 0, 0, 0L, 0L, 0L, 0, 0, "vs", SHAPE_MOUSE},
3036 {0, 0, 0, 0L, 0L, 0L, 0, 0, "vd", SHAPE_MOUSE},
3037 {0, 0, 0, 0L, 0L, 0L, 0, 0, "m", SHAPE_MOUSE},
3038 {0, 0, 0, 0L, 0L, 0L, 0, 0, "ml", SHAPE_MOUSE},
3039 {0, 0, 0, 100L, 100L, 100L, 0, 0, "sm", SHAPE_CURSOR},
3040};
3041
3042#ifdef FEAT_MOUSESHAPE
3043/*
3044 * Table with names for mouse shapes. Keep in sync with all the tables for
3045 * mch_set_mouse_shape()!.
3046 */
3047static char * mshape_names[] =
3048{
3049 "arrow", /* default, must be the first one */
3050 "blank", /* hidden */
3051 "beam",
3052 "updown",
3053 "udsizing",
3054 "leftright",
3055 "lrsizing",
3056 "busy",
3057 "no",
3058 "crosshair",
3059 "hand1",
3060 "hand2",
3061 "pencil",
3062 "question",
3063 "rightup-arrow",
3064 "up-arrow",
3065 NULL
3066};
3067#endif
3068
3069/*
3070 * Parse the 'guicursor' option ("what" is SHAPE_CURSOR) or 'mouseshape'
3071 * ("what" is SHAPE_MOUSE).
3072 * Returns error message for an illegal option, NULL otherwise.
3073 */
3074 char_u *
3075parse_shape_opt(what)
3076 int what;
3077{
3078 char_u *modep;
3079 char_u *colonp;
3080 char_u *commap;
3081 char_u *slashp;
3082 char_u *p, *endp;
3083 int idx = 0; /* init for GCC */
3084 int all_idx;
3085 int len;
3086 int i;
3087 long n;
3088 int found_ve = FALSE; /* found "ve" flag */
3089 int round;
3090
3091 /*
3092 * First round: check for errors; second round: do it for real.
3093 */
3094 for (round = 1; round <= 2; ++round)
3095 {
3096 /*
3097 * Repeat for all comma separated parts.
3098 */
3099#ifdef FEAT_MOUSESHAPE
3100 if (what == SHAPE_MOUSE)
3101 modep = p_mouseshape;
3102 else
3103#endif
3104 modep = p_guicursor;
3105 while (*modep != NUL)
3106 {
3107 colonp = vim_strchr(modep, ':');
3108 if (colonp == NULL)
3109 return (char_u *)N_("E545: Missing colon");
3110 if (colonp == modep)
3111 return (char_u *)N_("E546: Illegal mode");
3112 commap = vim_strchr(modep, ',');
3113
3114 /*
3115 * Repeat for all mode's before the colon.
3116 * For the 'a' mode, we loop to handle all the modes.
3117 */
3118 all_idx = -1;
3119 while (modep < colonp || all_idx >= 0)
3120 {
3121 if (all_idx < 0)
3122 {
3123 /* Find the mode. */
3124 if (modep[1] == '-' || modep[1] == ':')
3125 len = 1;
3126 else
3127 len = 2;
3128 if (len == 1 && TOLOWER_ASC(modep[0]) == 'a')
3129 all_idx = SHAPE_IDX_COUNT - 1;
3130 else
3131 {
3132 for (idx = 0; idx < SHAPE_IDX_COUNT; ++idx)
3133 if (STRNICMP(modep, shape_table[idx].name, len)
3134 == 0)
3135 break;
3136 if (idx == SHAPE_IDX_COUNT
3137 || (shape_table[idx].used_for & what) == 0)
3138 return (char_u *)N_("E546: Illegal mode");
3139 if (len == 2 && modep[0] == 'v' && modep[1] == 'e')
3140 found_ve = TRUE;
3141 }
3142 modep += len + 1;
3143 }
3144
3145 if (all_idx >= 0)
3146 idx = all_idx--;
3147 else if (round == 2)
3148 {
3149#ifdef FEAT_MOUSESHAPE
3150 if (what == SHAPE_MOUSE)
3151 {
3152 /* Set the default, for the missing parts */
3153 shape_table[idx].mshape = 0;
3154 }
3155 else
3156#endif
3157 {
3158 /* Set the defaults, for the missing parts */
3159 shape_table[idx].shape = SHAPE_BLOCK;
3160 shape_table[idx].blinkwait = 700L;
3161 shape_table[idx].blinkon = 400L;
3162 shape_table[idx].blinkoff = 250L;
3163 }
3164 }
3165
3166 /* Parse the part after the colon */
3167 for (p = colonp + 1; *p && *p != ','; )
3168 {
3169#ifdef FEAT_MOUSESHAPE
3170 if (what == SHAPE_MOUSE)
3171 {
3172 for (i = 0; ; ++i)
3173 {
3174 if (mshape_names[i] == NULL)
3175 {
3176 if (!VIM_ISDIGIT(*p))
3177 return (char_u *)N_("E547: Illegal mouseshape");
3178 if (round == 2)
3179 shape_table[idx].mshape =
3180 getdigits(&p) + MSHAPE_NUMBERED;
3181 else
3182 (void)getdigits(&p);
3183 break;
3184 }
3185 len = (int)STRLEN(mshape_names[i]);
3186 if (STRNICMP(p, mshape_names[i], len) == 0)
3187 {
3188 if (round == 2)
3189 shape_table[idx].mshape = i;
3190 p += len;
3191 break;
3192 }
3193 }
3194 }
3195 else /* if (what == SHAPE_MOUSE) */
3196#endif
3197 {
3198 /*
3199 * First handle the ones with a number argument.
3200 */
3201 i = *p;
3202 len = 0;
3203 if (STRNICMP(p, "ver", 3) == 0)
3204 len = 3;
3205 else if (STRNICMP(p, "hor", 3) == 0)
3206 len = 3;
3207 else if (STRNICMP(p, "blinkwait", 9) == 0)
3208 len = 9;
3209 else if (STRNICMP(p, "blinkon", 7) == 0)
3210 len = 7;
3211 else if (STRNICMP(p, "blinkoff", 8) == 0)
3212 len = 8;
3213 if (len != 0)
3214 {
3215 p += len;
3216 if (!VIM_ISDIGIT(*p))
3217 return (char_u *)N_("E548: digit expected");
3218 n = getdigits(&p);
3219 if (len == 3) /* "ver" or "hor" */
3220 {
3221 if (n == 0)
3222 return (char_u *)N_("E549: Illegal percentage");
3223 if (round == 2)
3224 {
3225 if (TOLOWER_ASC(i) == 'v')
3226 shape_table[idx].shape = SHAPE_VER;
3227 else
3228 shape_table[idx].shape = SHAPE_HOR;
3229 shape_table[idx].percentage = n;
3230 }
3231 }
3232 else if (round == 2)
3233 {
3234 if (len == 9)
3235 shape_table[idx].blinkwait = n;
3236 else if (len == 7)
3237 shape_table[idx].blinkon = n;
3238 else
3239 shape_table[idx].blinkoff = n;
3240 }
3241 }
3242 else if (STRNICMP(p, "block", 5) == 0)
3243 {
3244 if (round == 2)
3245 shape_table[idx].shape = SHAPE_BLOCK;
3246 p += 5;
3247 }
3248 else /* must be a highlight group name then */
3249 {
3250 endp = vim_strchr(p, '-');
3251 if (commap == NULL) /* last part */
3252 {
3253 if (endp == NULL)
3254 endp = p + STRLEN(p); /* find end of part */
3255 }
3256 else if (endp > commap || endp == NULL)
3257 endp = commap;
3258 slashp = vim_strchr(p, '/');
3259 if (slashp != NULL && slashp < endp)
3260 {
3261 /* "group/langmap_group" */
3262 i = syn_check_group(p, (int)(slashp - p));
3263 p = slashp + 1;
3264 }
3265 if (round == 2)
3266 {
3267 shape_table[idx].id = syn_check_group(p,
3268 (int)(endp - p));
3269 shape_table[idx].id_lm = shape_table[idx].id;
3270 if (slashp != NULL && slashp < endp)
3271 shape_table[idx].id = i;
3272 }
3273 p = endp;
3274 }
3275 } /* if (what != SHAPE_MOUSE) */
3276
3277 if (*p == '-')
3278 ++p;
3279 }
3280 }
3281 modep = p;
3282 if (*modep == ',')
3283 ++modep;
3284 }
3285 }
3286
3287 /* If the 's' flag is not given, use the 'v' cursor for 's' */
3288 if (!found_ve)
3289 {
3290#ifdef FEAT_MOUSESHAPE
3291 if (what == SHAPE_MOUSE)
3292 {
3293 shape_table[SHAPE_IDX_VE].mshape = shape_table[SHAPE_IDX_V].mshape;
3294 }
3295 else
3296#endif
3297 {
3298 shape_table[SHAPE_IDX_VE].shape = shape_table[SHAPE_IDX_V].shape;
3299 shape_table[SHAPE_IDX_VE].percentage =
3300 shape_table[SHAPE_IDX_V].percentage;
3301 shape_table[SHAPE_IDX_VE].blinkwait =
3302 shape_table[SHAPE_IDX_V].blinkwait;
3303 shape_table[SHAPE_IDX_VE].blinkon =
3304 shape_table[SHAPE_IDX_V].blinkon;
3305 shape_table[SHAPE_IDX_VE].blinkoff =
3306 shape_table[SHAPE_IDX_V].blinkoff;
3307 shape_table[SHAPE_IDX_VE].id = shape_table[SHAPE_IDX_V].id;
3308 shape_table[SHAPE_IDX_VE].id_lm = shape_table[SHAPE_IDX_V].id_lm;
3309 }
3310 }
3311
3312 return NULL;
3313}
3314
Bram Moolenaarac6e65f2005-08-29 22:25:38 +00003315# if defined(MCH_CURSOR_SHAPE) || defined(FEAT_GUI) \
3316 || defined(FEAT_MOUSESHAPE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003317/*
3318 * Return the index into shape_table[] for the current mode.
3319 * When "mouse" is TRUE, consider indexes valid for the mouse pointer.
3320 */
3321 int
3322get_shape_idx(mouse)
3323 int mouse;
3324{
3325#ifdef FEAT_MOUSESHAPE
3326 if (mouse && (State == HITRETURN || State == ASKMORE))
3327 {
3328# ifdef FEAT_GUI
Bram Moolenaar9588a0f2005-01-08 21:45:39 +00003329 int x, y;
3330 gui_mch_getmouse(&x, &y);
3331 if (Y_2_ROW(y) == Rows - 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003332 return SHAPE_IDX_MOREL;
3333# endif
3334 return SHAPE_IDX_MORE;
3335 }
3336 if (mouse && drag_status_line)
3337 return SHAPE_IDX_SDRAG;
3338# ifdef FEAT_VERTSPLIT
3339 if (mouse && drag_sep_line)
3340 return SHAPE_IDX_VDRAG;
3341# endif
3342#endif
3343 if (!mouse && State == SHOWMATCH)
3344 return SHAPE_IDX_SM;
3345#ifdef FEAT_VREPLACE
3346 if (State & VREPLACE_FLAG)
3347 return SHAPE_IDX_R;
3348#endif
3349 if (State & REPLACE_FLAG)
3350 return SHAPE_IDX_R;
3351 if (State & INSERT)
3352 return SHAPE_IDX_I;
3353 if (State & CMDLINE)
3354 {
3355 if (cmdline_at_end())
3356 return SHAPE_IDX_C;
3357 if (cmdline_overstrike())
3358 return SHAPE_IDX_CR;
3359 return SHAPE_IDX_CI;
3360 }
3361 if (finish_op)
3362 return SHAPE_IDX_O;
3363#ifdef FEAT_VISUAL
3364 if (VIsual_active)
3365 {
3366 if (*p_sel == 'e')
3367 return SHAPE_IDX_VE;
3368 else
3369 return SHAPE_IDX_V;
3370 }
3371#endif
3372 return SHAPE_IDX_N;
3373}
Bram Moolenaarac6e65f2005-08-29 22:25:38 +00003374#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003375
3376# if defined(FEAT_MOUSESHAPE) || defined(PROTO)
3377static int old_mouse_shape = 0;
3378
3379/*
3380 * Set the mouse shape:
3381 * If "shape" is -1, use shape depending on the current mode,
3382 * depending on the current state.
3383 * If "shape" is -2, only update the shape when it's CLINE or STATUS (used
3384 * when the mouse moves off the status or command line).
3385 */
3386 void
3387update_mouseshape(shape_idx)
3388 int shape_idx;
3389{
3390 int new_mouse_shape;
3391
3392 /* Only works in GUI mode. */
Bram Moolenaar6bb68362005-03-22 23:03:44 +00003393 if (!gui.in_use || gui.starting)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003394 return;
3395
3396 /* Postpone the updating when more is to come. Speeds up executing of
3397 * mappings. */
3398 if (shape_idx == -1 && char_avail())
3399 {
3400 postponed_mouseshape = TRUE;
3401 return;
3402 }
3403
3404 if (shape_idx == -2
3405 && old_mouse_shape != shape_table[SHAPE_IDX_CLINE].mshape
3406 && old_mouse_shape != shape_table[SHAPE_IDX_STATUS].mshape
3407 && old_mouse_shape != shape_table[SHAPE_IDX_VSEP].mshape)
3408 return;
3409 if (shape_idx < 0)
3410 new_mouse_shape = shape_table[get_shape_idx(TRUE)].mshape;
3411 else
3412 new_mouse_shape = shape_table[shape_idx].mshape;
3413 if (new_mouse_shape != old_mouse_shape)
3414 {
3415 mch_set_mouse_shape(new_mouse_shape);
3416 old_mouse_shape = new_mouse_shape;
3417 }
3418 postponed_mouseshape = FALSE;
3419}
3420# endif
3421
3422#endif /* CURSOR_SHAPE */
3423
3424
3425#ifdef FEAT_CRYPT
3426/*
3427 * Optional encryption suypport.
3428 * Mohsin Ahmed, mosh@sasi.com, 98-09-24
3429 * Based on zip/crypt sources.
3430 *
3431 * NOTE FOR USA: Since 2000 exporting this code from the USA is allowed to
3432 * most countries. There are a few exceptions, but that still should not be a
3433 * problem since this code was originally created in Europe and India.
3434 */
3435
3436/* from zip.h */
3437
3438typedef unsigned short ush; /* unsigned 16-bit value */
3439typedef unsigned long ulg; /* unsigned 32-bit value */
3440
3441static void make_crc_tab __ARGS((void));
3442
Bram Moolenaard6f676d2005-06-01 21:51:55 +00003443static ulg crc_32_tab[256];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003444
3445/*
3446 * Fill the CRC table.
3447 */
3448 static void
3449make_crc_tab()
3450{
3451 ulg s,t,v;
3452 static int done = FALSE;
3453
3454 if (done)
3455 return;
3456 for (t = 0; t < 256; t++)
3457 {
3458 v = t;
3459 for (s = 0; s < 8; s++)
3460 v = (v >> 1) ^ ((v & 1) * (ulg)0xedb88320L);
3461 crc_32_tab[t] = v;
3462 }
3463 done = TRUE;
3464}
3465
3466#define CRC32(c, b) (crc_32_tab[((int)(c) ^ (b)) & 0xff] ^ ((c) >> 8))
3467
3468
3469static ulg keys[3]; /* keys defining the pseudo-random sequence */
3470
3471/*
3472 * Return the next byte in the pseudo-random sequence
3473 */
3474 int
3475decrypt_byte()
3476{
3477 ush temp;
3478
3479 temp = (ush)keys[2] | 2;
3480 return (int)(((unsigned)(temp * (temp ^ 1)) >> 8) & 0xff);
3481}
3482
3483/*
3484 * Update the encryption keys with the next byte of plain text
3485 */
3486 int
3487update_keys(c)
3488 int c; /* byte of plain text */
3489{
3490 keys[0] = CRC32(keys[0], c);
3491 keys[1] += keys[0] & 0xff;
3492 keys[1] = keys[1] * 134775813L + 1;
3493 keys[2] = CRC32(keys[2], (int)(keys[1] >> 24));
3494 return c;
3495}
3496
3497/*
3498 * Initialize the encryption keys and the random header according to
3499 * the given password.
3500 * If "passwd" is NULL or empty, don't do anything.
3501 */
3502 void
3503crypt_init_keys(passwd)
3504 char_u *passwd; /* password string with which to modify keys */
3505{
3506 if (passwd != NULL && *passwd != NUL)
3507 {
3508 make_crc_tab();
3509 keys[0] = 305419896L;
3510 keys[1] = 591751049L;
3511 keys[2] = 878082192L;
3512 while (*passwd != '\0')
3513 update_keys((int)*passwd++);
3514 }
3515}
3516
3517/*
3518 * Ask the user for a crypt key.
3519 * When "store" is TRUE, the new key in stored in the 'key' option, and the
3520 * 'key' option value is returned: Don't free it.
3521 * When "store" is FALSE, the typed key is returned in allocated memory.
3522 * Returns NULL on failure.
3523 */
3524 char_u *
3525get_crypt_key(store, twice)
3526 int store;
3527 int twice; /* Ask for the key twice. */
3528{
3529 char_u *p1, *p2 = NULL;
3530 int round;
3531
3532 for (round = 0; ; ++round)
3533 {
3534 cmdline_star = TRUE;
3535 cmdline_row = msg_row;
3536 p1 = getcmdline_prompt(NUL, round == 0
3537 ? (char_u *)_("Enter encryption key: ")
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00003538 : (char_u *)_("Enter same key again: "), 0, EXPAND_NOTHING,
3539 NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003540 cmdline_star = FALSE;
3541
3542 if (p1 == NULL)
3543 break;
3544
3545 if (round == twice)
3546 {
3547 if (p2 != NULL && STRCMP(p1, p2) != 0)
3548 {
3549 MSG(_("Keys don't match!"));
3550 vim_free(p1);
3551 vim_free(p2);
3552 p2 = NULL;
3553 round = -1; /* do it again */
3554 continue;
3555 }
3556 if (store)
3557 {
3558 set_option_value((char_u *)"key", 0L, p1, OPT_LOCAL);
3559 vim_free(p1);
3560 p1 = curbuf->b_p_key;
3561 }
3562 break;
3563 }
3564 p2 = p1;
3565 }
3566
3567 /* since the user typed this, no need to wait for return */
3568 need_wait_return = FALSE;
3569 msg_didout = FALSE;
3570
3571 vim_free(p2);
3572 return p1;
3573}
3574
3575#endif /* FEAT_CRYPT */
3576
3577/* TODO: make some #ifdef for this */
3578/*--------[ file searching ]-------------------------------------------------*/
3579/*
3580 * File searching functions for 'path', 'tags' and 'cdpath' options.
3581 * External visible functions:
3582 * vim_findfile_init() creates/initialises the search context
3583 * vim_findfile_free_visited() free list of visited files/dirs of search
3584 * context
3585 * vim_findfile() find a file in the search context
3586 * vim_findfile_cleanup() cleanup/free search context created by
3587 * vim_findfile_init()
3588 *
3589 * All static functions and variables start with 'ff_'
3590 *
3591 * In general it works like this:
3592 * First you create yourself a search context by calling vim_findfile_init().
3593 * It is possible to give a search context from a previous call to
3594 * vim_findfile_init(), so it can be reused. After this you call vim_findfile()
3595 * until you are satisfied with the result or it returns NULL. On every call it
3596 * returns the next file which matches the conditions given to
3597 * vim_findfile_init(). If it doesn't find a next file it returns NULL.
3598 *
3599 * It is possible to call vim_findfile_init() again to reinitialise your search
3600 * with some new parameters. Don't forget to pass your old search context to
3601 * it, so it can reuse it and especially reuse the list of already visited
3602 * directories. If you want to delete the list of already visited directories
3603 * simply call vim_findfile_free_visited().
3604 *
3605 * When you are done call vim_findfile_cleanup() to free the search context.
3606 *
3607 * The function vim_findfile_init() has a long comment, which describes the
3608 * needed parameters.
3609 *
3610 *
3611 *
3612 * ATTENTION:
3613 * ==========
3614 * Also we use an allocated search context here, this functions ARE NOT
3615 * thread-safe!!!!!
3616 *
3617 * To minimize parameter passing (or because I'm to lazy), only the
3618 * external visible functions get a search context as a parameter. This is
3619 * then assigned to a static global, which is used throughout the local
3620 * functions.
3621 */
3622
3623/*
3624 * type for the directory search stack
3625 */
3626typedef struct ff_stack
3627{
3628 struct ff_stack *ffs_prev;
3629
3630 /* the fix part (no wildcards) and the part containing the wildcards
3631 * of the search path
3632 */
3633 char_u *ffs_fix_path;
3634#ifdef FEAT_PATH_EXTRA
3635 char_u *ffs_wc_path;
3636#endif
3637
3638 /* files/dirs found in the above directory, matched by the first wildcard
3639 * of wc_part
3640 */
3641 char_u **ffs_filearray;
3642 int ffs_filearray_size;
3643 char_u ffs_filearray_cur; /* needed for partly handled dirs */
3644
3645 /* to store status of partly handled directories
3646 * 0: we work the on this directory for the first time
3647 * 1: this directory was partly searched in an earlier step
3648 */
3649 int ffs_stage;
3650
3651 /* How deep are we in the directory tree?
3652 * Counts backward from value of level parameter to vim_findfile_init
3653 */
3654 int ffs_level;
3655
3656 /* Did we already expand '**' to an empty string? */
3657 int ffs_star_star_empty;
3658} ff_stack_T;
3659
3660/*
3661 * type for already visited directories or files.
3662 */
3663typedef struct ff_visited
3664{
3665 struct ff_visited *ffv_next;
3666
3667#ifdef FEAT_PATH_EXTRA
3668 /* Visited directories are different if the wildcard string are
3669 * different. So we have to save it.
3670 */
3671 char_u *ffv_wc_path;
3672#endif
3673 /* for unix use inode etc for comparison (needed because of links), else
3674 * use filename.
3675 */
3676#ifdef UNIX
3677 int ffv_dev; /* device number (-1 if not set) */
3678 ino_t ffv_ino; /* inode number */
3679#endif
3680 /* The memory for this struct is allocated according to the length of
3681 * ffv_fname.
3682 */
3683 char_u ffv_fname[1]; /* actually longer */
3684} ff_visited_T;
3685
3686/*
3687 * We might have to manage several visited lists during a search.
3688 * This is expecially needed for the tags option. If tags is set to:
3689 * "./++/tags,./++/TAGS,++/tags" (replace + with *)
3690 * So we have to do 3 searches:
3691 * 1) search from the current files directory downward for the file "tags"
3692 * 2) search from the current files directory downward for the file "TAGS"
3693 * 3) search from Vims current directory downwards for the file "tags"
3694 * As you can see, the first and the third search are for the same file, so for
3695 * the third search we can use the visited list of the first search. For the
3696 * second search we must start from a empty visited list.
3697 * The struct ff_visited_list_hdr is used to manage a linked list of already
3698 * visited lists.
3699 */
3700typedef struct ff_visited_list_hdr
3701{
3702 struct ff_visited_list_hdr *ffvl_next;
3703
3704 /* the filename the attached visited list is for */
3705 char_u *ffvl_filename;
3706
3707 ff_visited_T *ffvl_visited_list;
3708
3709} ff_visited_list_hdr_T;
3710
3711
3712/*
3713 * '**' can be expanded to several directory levels.
3714 * Set the default maximium depth.
3715 */
3716#define FF_MAX_STAR_STAR_EXPAND ((char_u)30)
3717/*
3718 * The search context:
3719 * ffsc_stack_ptr: the stack for the dirs to search
3720 * ffsc_visited_list: the currently active visited list
3721 * ffsc_dir_visited_list: the currently active visited list for search dirs
3722 * ffsc_visited_lists_list: the list of all visited lists
3723 * ffsc_dir_visited_lists_list: the list of all visited lists for search dirs
3724 * ffsc_file_to_search: the file to search for
3725 * ffsc_start_dir: the starting directory, if search path was relative
3726 * ffsc_fix_path: the fix part of the given path (without wildcards)
3727 * Needed for upward search.
3728 * ffsc_wc_path: the part of the given path containing wildcards
3729 * ffsc_level: how many levels of dirs to search downwards
3730 * ffsc_stopdirs_v: array of stop directories for upward search
3731 * ffsc_need_dir: TRUE if we search for a directory
3732 */
3733typedef struct ff_search_ctx_T
3734{
3735 ff_stack_T *ffsc_stack_ptr;
3736 ff_visited_list_hdr_T *ffsc_visited_list;
3737 ff_visited_list_hdr_T *ffsc_dir_visited_list;
3738 ff_visited_list_hdr_T *ffsc_visited_lists_list;
3739 ff_visited_list_hdr_T *ffsc_dir_visited_lists_list;
3740 char_u *ffsc_file_to_search;
3741 char_u *ffsc_start_dir;
3742 char_u *ffsc_fix_path;
3743#ifdef FEAT_PATH_EXTRA
3744 char_u *ffsc_wc_path;
3745 int ffsc_level;
3746 char_u **ffsc_stopdirs_v;
3747#endif
3748 int ffsc_need_dir;
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003749} ff_search_ctx_T;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003750
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003751static ff_search_ctx_T *ff_search_ctx = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003752
3753/* locally needed functions */
3754#ifdef FEAT_PATH_EXTRA
3755static int ff_check_visited __ARGS((ff_visited_T **, char_u *, char_u *));
3756#else
3757static int ff_check_visited __ARGS((ff_visited_T **, char_u *));
3758#endif
3759static void vim_findfile_free_visited_list __ARGS((ff_visited_list_hdr_T **list_headp));
3760static void ff_free_visited_list __ARGS((ff_visited_T *vl));
3761static ff_visited_list_hdr_T* ff_get_visited_list __ARGS((char_u *, ff_visited_list_hdr_T **list_headp));
3762#ifdef FEAT_PATH_EXTRA
3763static int ff_wc_equal __ARGS((char_u *s1, char_u *s2));
3764#endif
3765
3766static void ff_push __ARGS((ff_stack_T *));
3767static ff_stack_T * ff_pop __ARGS((void));
3768static void ff_clear __ARGS((void));
3769static void ff_free_stack_element __ARGS((ff_stack_T *));
3770#ifdef FEAT_PATH_EXTRA
3771static ff_stack_T *ff_create_stack_element __ARGS((char_u *, char_u *, int, int));
3772#else
3773static ff_stack_T *ff_create_stack_element __ARGS((char_u *, int, int));
3774#endif
3775#ifdef FEAT_PATH_EXTRA
3776static int ff_path_in_stoplist __ARGS((char_u *, int, char_u **));
3777#endif
3778
Bram Moolenaar071d4272004-06-13 20:20:40 +00003779#if 0
3780/*
3781 * if someone likes findfirst/findnext, here are the functions
3782 * NOT TESTED!!
3783 */
3784
3785static void *ff_fn_search_context = NULL;
3786
3787 char_u *
3788vim_findfirst(path, filename, level)
3789 char_u *path;
3790 char_u *filename;
3791 int level;
3792{
3793 ff_fn_search_context =
3794 vim_findfile_init(path, filename, NULL, level, TRUE, FALSE,
3795 ff_fn_search_context, rel_fname);
3796 if (NULL == ff_fn_search_context)
3797 return NULL;
3798 else
3799 return vim_findnext()
3800}
3801
3802 char_u *
3803vim_findnext()
3804{
3805 char_u *ret = vim_findfile(ff_fn_search_context);
3806
3807 if (NULL == ret)
3808 {
3809 vim_findfile_cleanup(ff_fn_search_context);
3810 ff_fn_search_context = NULL;
3811 }
3812 return ret;
3813}
3814#endif
3815
3816/*
3817 * Initialization routine for vim_findfile.
3818 *
3819 * Returns the newly allocated search context or NULL if an error occured.
3820 *
3821 * Don't forget to clean up by calling vim_findfile_cleanup() if you are done
3822 * with the search context.
3823 *
3824 * Find the file 'filename' in the directory 'path'.
3825 * The parameter 'path' may contain wildcards. If so only search 'level'
3826 * directories deep. The parameter 'level' is the absolute maximum and is
3827 * not related to restricts given to the '**' wildcard. If 'level' is 100
3828 * and you use '**200' vim_findfile() will stop after 100 levels.
3829 *
3830 * If 'stopdirs' is not NULL and nothing is found downward, the search is
3831 * restarted on the next higher directory level. This is repeated until the
3832 * start-directory of a search is contained in 'stopdirs'. 'stopdirs' has the
3833 * format ";*<dirname>*\(;<dirname>\)*;\=$".
3834 *
3835 * If the 'path' is relative, the starting dir for the search is either VIM's
3836 * current dir or if the path starts with "./" the current files dir.
3837 * If the 'path' is absolut, the starting dir is that part of the path before
3838 * the first wildcard.
3839 *
3840 * Upward search is only done on the starting dir.
3841 *
3842 * If 'free_visited' is TRUE the list of already visited files/directories is
3843 * cleared. Set this to FALSE if you just want to search from another
3844 * directory, but want to be sure that no directory from a previous search is
3845 * searched again. This is useful if you search for a file at different places.
3846 * The list of visited files/dirs can also be cleared with the function
3847 * vim_findfile_free_visited().
3848 *
3849 * Set the parameter 'need_dir' to TRUE if you want to search for a directory
3850 * instead of a file.
3851 *
3852 * A search context returned by a previous call to vim_findfile_init() can be
3853 * passed in the parameter 'search_ctx'. This context is than reused and
3854 * reinitialized with the new parameters. The list of already viseted
3855 * directories from this context is only deleted if the parameter
3856 * 'free_visited' is true. Be aware that the passed search_context is freed if
3857 * the reinitialization fails.
3858 *
3859 * If you don't have a search context from a previous call 'search_ctx' must be
3860 * NULL.
3861 *
3862 * This function silently ignores a few errors, vim_findfile() will have
3863 * limited functionality then.
3864 */
3865/*ARGSUSED*/
3866 void *
3867vim_findfile_init(path, filename, stopdirs, level, free_visited, need_dir,
3868 search_ctx, tagfile, rel_fname)
3869 char_u *path;
3870 char_u *filename;
3871 char_u *stopdirs;
3872 int level;
3873 int free_visited;
3874 int need_dir;
3875 void *search_ctx;
3876 int tagfile;
3877 char_u *rel_fname; /* file name to use for "." */
3878{
3879#ifdef FEAT_PATH_EXTRA
3880 char_u *wc_part;
3881#endif
3882 ff_stack_T *sptr;
3883
3884 /* If a search context is given by the caller, reuse it, else allocate a
3885 * new one.
3886 */
3887 if (search_ctx != NULL)
3888 ff_search_ctx = search_ctx;
3889 else
3890 {
3891 ff_search_ctx = (ff_search_ctx_T*)alloc(
3892 (unsigned)sizeof(ff_search_ctx_T));
3893 if (ff_search_ctx == NULL)
3894 goto error_return;
3895 memset(ff_search_ctx, 0, sizeof(ff_search_ctx_T));
3896 }
3897
3898 /* clear the search context, but NOT the visited lists */
3899 ff_clear();
3900
3901 /* clear visited list if wanted */
3902 if (free_visited == TRUE)
3903 vim_findfile_free_visited(ff_search_ctx);
3904 else
3905 {
3906 /* Reuse old visited lists. Get the visited list for the given
3907 * filename. If no list for the current filename exists, creates a new
3908 * one.
3909 */
3910 ff_search_ctx->ffsc_visited_list = ff_get_visited_list(filename,
3911 &ff_search_ctx->ffsc_visited_lists_list);
3912 if (ff_search_ctx->ffsc_visited_list == NULL)
3913 goto error_return;
3914 ff_search_ctx->ffsc_dir_visited_list = ff_get_visited_list(filename,
3915 &ff_search_ctx->ffsc_dir_visited_lists_list);
3916 if (ff_search_ctx->ffsc_dir_visited_list == NULL)
3917 goto error_return;
3918 }
3919
3920 if (ff_expand_buffer == NULL)
3921 {
3922 ff_expand_buffer = (char_u*)alloc(MAXPATHL);
3923 if (ff_expand_buffer == NULL)
3924 goto error_return;
3925 }
3926
3927 /* Store information on starting dir now if path is relative.
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00003928 * If path is absolute, we do that later. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003929 if (path[0] == '.'
3930 && (vim_ispathsep(path[1]) || path[1] == NUL)
3931 && (!tagfile || vim_strchr(p_cpo, CPO_DOTTAG) == NULL)
3932 && rel_fname != NULL)
3933 {
3934 int len = (int)(gettail(rel_fname) - rel_fname);
3935
3936 if (!vim_isAbsName(rel_fname) && len + 1 < MAXPATHL)
3937 {
3938 /* Make the start dir an absolute path name. */
Bram Moolenaarbbebc852005-07-18 21:47:53 +00003939 vim_strncpy(ff_expand_buffer, rel_fname, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003940 ff_search_ctx->ffsc_start_dir = FullName_save(ff_expand_buffer,
3941 FALSE);
3942 }
3943 else
3944 ff_search_ctx->ffsc_start_dir = vim_strnsave(rel_fname, len);
3945 if (ff_search_ctx->ffsc_start_dir == NULL)
3946 goto error_return;
3947 if (*++path != NUL)
3948 ++path;
3949 }
3950 else if (*path == NUL || !vim_isAbsName(path))
3951 {
3952#ifdef BACKSLASH_IN_FILENAME
3953 /* "c:dir" needs "c:" to be expanded, otherwise use current dir */
3954 if (*path != NUL && path[1] == ':')
3955 {
3956 char_u drive[3];
3957
3958 drive[0] = path[0];
3959 drive[1] = ':';
3960 drive[2] = NUL;
3961 if (vim_FullName(drive, ff_expand_buffer, MAXPATHL, TRUE) == FAIL)
3962 goto error_return;
3963 path += 2;
3964 }
3965 else
3966#endif
3967 if (mch_dirname(ff_expand_buffer, MAXPATHL) == FAIL)
3968 goto error_return;
3969
3970 ff_search_ctx->ffsc_start_dir = vim_strsave(ff_expand_buffer);
3971 if (ff_search_ctx->ffsc_start_dir == NULL)
3972 goto error_return;
3973
3974#ifdef BACKSLASH_IN_FILENAME
3975 /* A path that starts with "/dir" is relative to the drive, not to the
3976 * directory (but not for "//machine/dir"). Only use the drive name. */
3977 if ((*path == '/' || *path == '\\')
3978 && path[1] != path[0]
3979 && ff_search_ctx->ffsc_start_dir[1] == ':')
3980 ff_search_ctx->ffsc_start_dir[2] = NUL;
3981#endif
3982 }
3983
3984#ifdef FEAT_PATH_EXTRA
3985 /*
3986 * If stopdirs are given, split them into an array of pointers.
3987 * If this fails (mem allocation), there is no upward search at all or a
3988 * stop directory is not recognized -> continue silently.
3989 * If stopdirs just contains a ";" or is empty,
3990 * ff_search_ctx->ffsc_stopdirs_v will only contain a NULL pointer. This
3991 * is handled as unlimited upward search. See function
3992 * ff_path_in_stoplist() for details.
3993 */
3994 if (stopdirs != NULL)
3995 {
3996 char_u *walker = stopdirs;
3997 int dircount;
3998
3999 while (*walker == ';')
4000 walker++;
4001
4002 dircount = 1;
4003 ff_search_ctx->ffsc_stopdirs_v =
4004 (char_u **)alloc((unsigned)sizeof(char_u *));
4005
4006 if (ff_search_ctx->ffsc_stopdirs_v != NULL)
4007 {
4008 do
4009 {
4010 char_u *helper;
4011 void *ptr;
4012
4013 helper = walker;
4014 ptr = vim_realloc(ff_search_ctx->ffsc_stopdirs_v,
4015 (dircount + 1) * sizeof(char_u *));
4016 if (ptr)
4017 ff_search_ctx->ffsc_stopdirs_v = ptr;
4018 else
4019 /* ignore, keep what we have and continue */
4020 break;
4021 walker = vim_strchr(walker, ';');
4022 if (walker)
4023 {
4024 ff_search_ctx->ffsc_stopdirs_v[dircount-1] =
4025 vim_strnsave(helper, (int)(walker - helper));
4026 walker++;
4027 }
4028 else
4029 /* this might be "", which means ascent till top
4030 * of directory tree.
4031 */
4032 ff_search_ctx->ffsc_stopdirs_v[dircount-1] =
4033 vim_strsave(helper);
4034
4035 dircount++;
4036
4037 } while (walker != NULL);
4038 ff_search_ctx->ffsc_stopdirs_v[dircount-1] = NULL;
4039 }
4040 }
4041#endif
4042
4043#ifdef FEAT_PATH_EXTRA
4044 ff_search_ctx->ffsc_level = level;
4045
4046 /* split into:
4047 * -fix path
4048 * -wildcard_stuff (might be NULL)
4049 */
4050 wc_part = vim_strchr(path, '*');
4051 if (wc_part != NULL)
4052 {
4053 int llevel;
4054 int len;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00004055 char *errpt;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004056
4057 /* save the fix part of the path */
4058 ff_search_ctx->ffsc_fix_path = vim_strnsave(path,
4059 (int)(wc_part - path));
4060
4061 /*
4062 * copy wc_path and add restricts to the '**' wildcard.
4063 * The octett after a '**' is used as a (binary) counter.
4064 * So '**3' is transposed to '**^C' ('^C' is ASCII value 3)
4065 * or '**76' is transposed to '**N'( 'N' is ASCII value 76).
4066 * For EBCDIC you get different character values.
4067 * If no restrict is given after '**' the default is used.
4068 * Due to this technic the path looks awful if you print it as a
4069 * string.
4070 */
4071 len = 0;
4072 while (*wc_part != NUL)
4073 {
4074 if (STRNCMP(wc_part, "**", 2) == 0)
4075 {
4076 ff_expand_buffer[len++] = *wc_part++;
4077 ff_expand_buffer[len++] = *wc_part++;
4078
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00004079 llevel = strtol((char *)wc_part, &errpt, 10);
4080 if ((char_u *)errpt != wc_part && llevel > 0 && llevel < 255)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004081 ff_expand_buffer[len++] = llevel;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00004082 else if ((char_u *)errpt != wc_part && llevel == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004083 /* restrict is 0 -> remove already added '**' */
4084 len -= 2;
4085 else
4086 ff_expand_buffer[len++] = FF_MAX_STAR_STAR_EXPAND;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00004087 wc_part = (char_u *)errpt;
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00004088 if (*wc_part != NUL && !vim_ispathsep(*wc_part))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004089 {
4090 EMSG2(_("E343: Invalid path: '**[number]' must be at the end of the path or be followed by '%s'."), PATHSEPSTR);
4091 goto error_return;
4092 }
4093 }
4094 else
4095 ff_expand_buffer[len++] = *wc_part++;
4096 }
4097 ff_expand_buffer[len] = NUL;
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00004098 ff_search_ctx->ffsc_wc_path = vim_strsave(ff_expand_buffer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004099
4100 if (ff_search_ctx->ffsc_wc_path == NULL)
4101 goto error_return;
4102 }
4103 else
4104#endif
4105 ff_search_ctx->ffsc_fix_path = vim_strsave(path);
4106
4107 if (ff_search_ctx->ffsc_start_dir == NULL)
4108 {
4109 /* store the fix part as startdir.
4110 * This is needed if the parameter path is fully qualified.
4111 */
4112 ff_search_ctx->ffsc_start_dir = vim_strsave(ff_search_ctx->ffsc_fix_path);
4113 if (ff_search_ctx->ffsc_start_dir)
4114 ff_search_ctx->ffsc_fix_path[0] = NUL;
4115 }
4116
4117 /* create an absolute path */
4118 STRCPY(ff_expand_buffer, ff_search_ctx->ffsc_start_dir);
4119 add_pathsep(ff_expand_buffer);
4120 STRCAT(ff_expand_buffer, ff_search_ctx->ffsc_fix_path);
4121 add_pathsep(ff_expand_buffer);
4122
4123 sptr = ff_create_stack_element(ff_expand_buffer,
4124#ifdef FEAT_PATH_EXTRA
4125 ff_search_ctx->ffsc_wc_path,
4126#endif
4127 level, 0);
4128
4129 if (sptr == NULL)
4130 goto error_return;
4131
4132 ff_push(sptr);
4133
4134 ff_search_ctx->ffsc_file_to_search = vim_strsave(filename);
4135 if (ff_search_ctx->ffsc_file_to_search == NULL)
4136 goto error_return;
4137
4138 return ff_search_ctx;
4139
4140error_return:
4141 /*
4142 * We clear the search context now!
4143 * Even when the caller gave us a (perhaps valid) context we free it here,
4144 * as we might have already destroyed it.
4145 */
4146 vim_findfile_cleanup(ff_search_ctx);
4147 return NULL;
4148}
4149
4150#if defined(FEAT_PATH_EXTRA) || defined(PROTO)
4151/*
4152 * Get the stopdir string. Check that ';' is not escaped.
4153 */
4154 char_u *
4155vim_findfile_stopdir(buf)
4156 char_u *buf;
4157{
4158 char_u *r_ptr = buf;
4159
4160 while (*r_ptr != NUL && *r_ptr != ';')
4161 {
4162 if (r_ptr[0] == '\\' && r_ptr[1] == ';')
4163 {
4164 /* overwrite the escape char,
4165 * use STRLEN(r_ptr) to move the trailing '\0'
4166 */
4167 mch_memmove(r_ptr, r_ptr + 1, STRLEN(r_ptr));
4168 r_ptr++;
4169 }
4170 r_ptr++;
4171 }
4172 if (*r_ptr == ';')
4173 {
4174 *r_ptr = 0;
4175 r_ptr++;
4176 }
4177 else if (*r_ptr == NUL)
4178 r_ptr = NULL;
4179 return r_ptr;
4180}
4181#endif
4182
4183/* Clean up the given search context. Can handle a NULL pointer */
4184 void
4185vim_findfile_cleanup(ctx)
4186 void *ctx;
4187{
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00004188 if (ctx == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004189 return;
4190
4191 ff_search_ctx = ctx;
4192
4193 vim_findfile_free_visited(ctx);
4194 ff_clear();
4195 vim_free(ctx);
4196 ff_search_ctx = NULL;
4197}
4198
4199/*
4200 * Find a file in a search context.
4201 * The search context was created with vim_findfile_init() above.
4202 * Return a pointer to an allocated file name or NULL if nothing found.
4203 * To get all matching files call this function until you get NULL.
4204 *
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00004205 * If the passed search_context is NULL, NULL is returned.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004206 *
4207 * The search algorithm is depth first. To change this replace the
4208 * stack with a list (don't forget to leave partly searched directories on the
4209 * top of the list).
4210 */
4211 char_u *
4212vim_findfile(search_ctx)
4213 void *search_ctx;
4214{
4215 char_u *file_path;
4216#ifdef FEAT_PATH_EXTRA
4217 char_u *rest_of_wildcards;
4218 char_u *path_end = NULL;
4219#endif
4220 ff_stack_T *ctx;
4221#if defined(FEAT_SEARCHPATH) || defined(FEAT_PATH_EXTRA)
4222 int len;
4223#endif
4224 int i;
4225 char_u *p;
4226#ifdef FEAT_SEARCHPATH
4227 char_u *suf;
4228#endif
4229
4230 if (search_ctx == NULL)
4231 return NULL;
4232
4233 ff_search_ctx = (ff_search_ctx_T*)search_ctx;
4234
4235 /*
4236 * filepath is used as buffer for various actions and as the storage to
4237 * return a found filename.
4238 */
4239 if ((file_path = alloc((int)MAXPATHL)) == NULL)
4240 return NULL;
4241
4242#ifdef FEAT_PATH_EXTRA
4243 /* store the end of the start dir -- needed for upward search */
4244 if (ff_search_ctx->ffsc_start_dir != NULL)
4245 path_end = &ff_search_ctx->ffsc_start_dir[STRLEN(ff_search_ctx->ffsc_start_dir)];
4246#endif
4247
4248#ifdef FEAT_PATH_EXTRA
4249 /* upward search loop */
4250 for (;;)
4251 {
4252#endif
4253 /* downward search loop */
4254 for (;;)
4255 {
4256 /* check if user user wants to stop the search*/
4257 ui_breakcheck();
4258 if (got_int)
4259 break;
4260
4261 /* get directory to work on from stack */
4262 ctx = ff_pop();
4263 if (ctx == NULL)
4264 break;
4265
4266 /*
4267 * TODO: decide if we leave this test in
4268 *
4269 * GOOD: don't search a directory(-tree) twice.
4270 * BAD: - check linked list for every new directory entered.
4271 * - check for double files also done below
4272 *
4273 * Here we check if we already searched this directory.
4274 * We already searched a directory if:
4275 * 1) The directory is the same.
4276 * 2) We would use the same wildcard string.
4277 *
4278 * Good if you have links on same directory via several ways
4279 * or you have selfreferences in directories (e.g. SuSE Linux 6.3:
4280 * /etc/rc.d/init.d is linked to /etc/rc.d -> endless loop)
4281 *
4282 * This check is only needed for directories we work on for the
4283 * first time (hence ctx->ff_filearray == NULL)
4284 */
4285 if (ctx->ffs_filearray == NULL
4286 && ff_check_visited(&ff_search_ctx->ffsc_dir_visited_list
4287 ->ffvl_visited_list,
4288 ctx->ffs_fix_path
4289#ifdef FEAT_PATH_EXTRA
4290 , ctx->ffs_wc_path
4291#endif
4292 ) == FAIL)
4293 {
4294#ifdef FF_VERBOSE
4295 if (p_verbose >= 5)
4296 {
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004297 verbose_enter_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004298 smsg((char_u *)"Already Searched: %s (%s)",
4299 ctx->ffs_fix_path, ctx->ffs_wc_path);
4300 /* don't overwrite this either */
4301 msg_puts((char_u *)"\n");
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004302 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004303 }
4304#endif
4305 ff_free_stack_element(ctx);
4306 continue;
4307 }
4308#ifdef FF_VERBOSE
4309 else if (p_verbose >= 5)
4310 {
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004311 verbose_enter_scroll();
Bram Moolenaar051b7822005-05-19 21:00:46 +00004312 smsg((char_u *)"Searching: %s (%s)",
4313 ctx->ffs_fix_path, ctx->ffs_wc_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004314 /* don't overwrite this either */
4315 msg_puts((char_u *)"\n");
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004316 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004317 }
4318#endif
4319
4320 /* check depth */
4321 if (ctx->ffs_level <= 0)
4322 {
4323 ff_free_stack_element(ctx);
4324 continue;
4325 }
4326
4327 file_path[0] = NUL;
4328
4329 /*
4330 * If no filearray till now expand wildcards
4331 * The function expand_wildcards() can handle an array of paths
4332 * and all possible expands are returned in one array. We use this
4333 * to handle the expansion of '**' into an empty string.
4334 */
4335 if (ctx->ffs_filearray == NULL)
4336 {
4337 char_u *dirptrs[2];
4338
4339 /* we use filepath to build the path expand_wildcards() should
4340 * expand.
4341 */
4342 dirptrs[0] = file_path;
4343 dirptrs[1] = NULL;
4344
4345 /* if we have a start dir copy it in */
4346 if (!vim_isAbsName(ctx->ffs_fix_path)
4347 && ff_search_ctx->ffsc_start_dir)
4348 {
4349 STRCPY(file_path, ff_search_ctx->ffsc_start_dir);
4350 add_pathsep(file_path);
4351 }
4352
4353 /* append the fix part of the search path */
4354 STRCAT(file_path, ctx->ffs_fix_path);
4355 add_pathsep(file_path);
4356
4357#ifdef FEAT_PATH_EXTRA
4358 rest_of_wildcards = ctx->ffs_wc_path;
4359 if (*rest_of_wildcards != NUL)
4360 {
4361 len = (int)STRLEN(file_path);
4362 if (STRNCMP(rest_of_wildcards, "**", 2) == 0)
4363 {
4364 /* pointer to the restrict byte
4365 * The restrict byte is not a character!
4366 */
4367 p = rest_of_wildcards + 2;
4368
4369 if (*p > 0)
4370 {
4371 (*p)--;
4372 file_path[len++] = '*';
4373 }
4374
4375 if (*p == 0)
4376 {
4377 /* remove '**<numb> from wildcards */
4378 mch_memmove(rest_of_wildcards,
4379 rest_of_wildcards + 3,
4380 STRLEN(rest_of_wildcards + 3) + 1);
4381 }
4382 else
4383 rest_of_wildcards += 3;
4384
4385 if (ctx->ffs_star_star_empty == 0)
4386 {
4387 /* if not done before, expand '**' to empty */
4388 ctx->ffs_star_star_empty = 1;
4389 dirptrs[1] = ctx->ffs_fix_path;
4390 }
4391 }
4392
4393 /*
4394 * Here we copy until the next path separator or the end of
4395 * the path. If we stop at a path separator, there is
4396 * still somthing else left. This is handled below by
4397 * pushing every directory returned from expand_wildcards()
4398 * on the stack again for further search.
4399 */
4400 while (*rest_of_wildcards
4401 && !vim_ispathsep(*rest_of_wildcards))
4402 file_path[len++] = *rest_of_wildcards++;
4403
4404 file_path[len] = NUL;
4405 if (vim_ispathsep(*rest_of_wildcards))
4406 rest_of_wildcards++;
4407 }
4408#endif
4409
4410 /*
4411 * Expand wildcards like "*" and "$VAR".
4412 * If the path is a URL don't try this.
4413 */
4414 if (path_with_url(dirptrs[0]))
4415 {
4416 ctx->ffs_filearray = (char_u **)
4417 alloc((unsigned)sizeof(char *));
4418 if (ctx->ffs_filearray != NULL
4419 && (ctx->ffs_filearray[0]
4420 = vim_strsave(dirptrs[0])) != NULL)
4421 ctx->ffs_filearray_size = 1;
4422 else
4423 ctx->ffs_filearray_size = 0;
4424 }
4425 else
4426 expand_wildcards((dirptrs[1] == NULL) ? 1 : 2, dirptrs,
4427 &ctx->ffs_filearray_size,
4428 &ctx->ffs_filearray,
4429 EW_DIR|EW_ADDSLASH|EW_SILENT);
4430
4431 ctx->ffs_filearray_cur = 0;
4432 ctx->ffs_stage = 0;
4433 }
4434#ifdef FEAT_PATH_EXTRA
4435 else
4436 rest_of_wildcards = &ctx->ffs_wc_path[STRLEN(ctx->ffs_wc_path)];
4437#endif
4438
4439 if (ctx->ffs_stage == 0)
4440 {
4441 /* this is the first time we work on this directory */
4442#ifdef FEAT_PATH_EXTRA
4443 if (*rest_of_wildcards == NUL)
4444#endif
4445 {
4446 /*
4447 * we don't have further wildcards to expand, so we have to
4448 * check for the final file now
4449 */
4450 for (i = ctx->ffs_filearray_cur;
4451 i < ctx->ffs_filearray_size; ++i)
4452 {
4453 if (!path_with_url(ctx->ffs_filearray[i])
4454 && !mch_isdir(ctx->ffs_filearray[i]))
4455 continue; /* not a directory */
4456
4457 /* prepare the filename to be checked for existance
4458 * below */
4459 STRCPY(file_path, ctx->ffs_filearray[i]);
4460 add_pathsep(file_path);
4461 STRCAT(file_path, ff_search_ctx->ffsc_file_to_search);
4462
4463 /*
4464 * Try without extra suffix and then with suffixes
4465 * from 'suffixesadd'.
4466 */
4467#ifdef FEAT_SEARCHPATH
4468 len = (int)STRLEN(file_path);
4469 suf = curbuf->b_p_sua;
4470 for (;;)
4471#endif
4472 {
4473 /* if file exists and we didn't already find it */
4474 if ((path_with_url(file_path)
4475 || (mch_getperm(file_path) >= 0
4476 && (!ff_search_ctx->ffsc_need_dir
4477 || mch_isdir(file_path))))
4478#ifndef FF_VERBOSE
4479 && (ff_check_visited(
4480 &ff_search_ctx->ffsc_visited_list->ffvl_visited_list,
4481 file_path
4482#ifdef FEAT_PATH_EXTRA
4483 , (char_u *)""
4484#endif
4485 ) == OK)
4486#endif
4487 )
4488 {
4489#ifdef FF_VERBOSE
4490 if (ff_check_visited(
4491 &ff_search_ctx->ffsc_visited_list->ffvl_visited_list,
4492 file_path
4493#ifdef FEAT_PATH_EXTRA
4494 , (char_u *)""
4495#endif
4496 ) == FAIL)
4497 {
4498 if (p_verbose >= 5)
4499 {
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004500 verbose_enter_scroll();
Bram Moolenaar051b7822005-05-19 21:00:46 +00004501 smsg((char_u *)"Already: %s",
Bram Moolenaar071d4272004-06-13 20:20:40 +00004502 file_path);
4503 /* don't overwrite this either */
4504 msg_puts((char_u *)"\n");
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004505 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004506 }
4507 continue;
4508 }
4509#endif
4510
4511 /* push dir to examine rest of subdirs later */
4512 ctx->ffs_filearray_cur = i + 1;
4513 ff_push(ctx);
4514
4515 simplify_filename(file_path);
4516 if (mch_dirname(ff_expand_buffer, MAXPATHL)
4517 == OK)
4518 {
4519 p = shorten_fname(file_path,
4520 ff_expand_buffer);
4521 if (p != NULL)
4522 mch_memmove(file_path, p,
4523 STRLEN(p) + 1);
4524 }
4525#ifdef FF_VERBOSE
4526 if (p_verbose >= 5)
4527 {
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004528 verbose_enter_scroll();
Bram Moolenaar051b7822005-05-19 21:00:46 +00004529 smsg((char_u *)"HIT: %s", file_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004530 /* don't overwrite this either */
4531 msg_puts((char_u *)"\n");
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004532 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004533 }
4534#endif
4535 return file_path;
4536 }
4537
4538#ifdef FEAT_SEARCHPATH
4539 /* Not found or found already, try next suffix. */
4540 if (*suf == NUL)
4541 break;
4542 copy_option_part(&suf, file_path + len,
4543 MAXPATHL - len, ",");
4544#endif
4545 }
4546 }
4547 }
4548#ifdef FEAT_PATH_EXTRA
4549 else
4550 {
4551 /*
4552 * still wildcards left, push the directories for further
4553 * search
4554 */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00004555 for (i = ctx->ffs_filearray_cur;
4556 i < ctx->ffs_filearray_size; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004557 {
4558 if (!mch_isdir(ctx->ffs_filearray[i]))
4559 continue; /* not a directory */
4560
4561 ff_push(ff_create_stack_element(ctx->ffs_filearray[i],
4562 rest_of_wildcards, ctx->ffs_level - 1, 0));
4563 }
4564 }
4565#endif
4566 ctx->ffs_filearray_cur = 0;
4567 ctx->ffs_stage = 1;
4568 }
4569
4570#ifdef FEAT_PATH_EXTRA
4571 /*
4572 * if wildcards contains '**' we have to descent till we reach the
4573 * leaves of the directory tree.
4574 */
4575 if (STRNCMP(ctx->ffs_wc_path, "**", 2) == 0)
4576 {
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00004577 for (i = ctx->ffs_filearray_cur;
4578 i < ctx->ffs_filearray_size; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004579 {
4580 if (fnamecmp(ctx->ffs_filearray[i], ctx->ffs_fix_path) == 0)
4581 continue; /* don't repush same directory */
4582 if (!mch_isdir(ctx->ffs_filearray[i]))
4583 continue; /* not a directory */
4584 ff_push(ff_create_stack_element(ctx->ffs_filearray[i],
4585 ctx->ffs_wc_path, ctx->ffs_level - 1, 1));
4586 }
4587 }
4588#endif
4589
4590 /* we are done with the current directory */
4591 ff_free_stack_element(ctx);
4592
4593 }
4594
4595#ifdef FEAT_PATH_EXTRA
4596 /* If we reached this, we didn't find anything downwards.
4597 * Let's check if we should do an upward search.
4598 */
4599 if (ff_search_ctx->ffsc_start_dir
4600 && ff_search_ctx->ffsc_stopdirs_v != NULL && !got_int)
4601 {
4602 ff_stack_T *sptr;
4603
4604 /* is the last starting directory in the stop list? */
4605 if (ff_path_in_stoplist(ff_search_ctx->ffsc_start_dir,
4606 (int)(path_end - ff_search_ctx->ffsc_start_dir),
4607 ff_search_ctx->ffsc_stopdirs_v) == TRUE)
4608 break;
4609
4610 /* cut of last dir */
4611 while (path_end > ff_search_ctx->ffsc_start_dir
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00004612 && vim_ispathsep(*path_end))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004613 path_end--;
4614 while (path_end > ff_search_ctx->ffsc_start_dir
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00004615 && !vim_ispathsep(path_end[-1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004616 path_end--;
4617 *path_end = 0;
4618 path_end--;
4619
4620 if (*ff_search_ctx->ffsc_start_dir == 0)
4621 break;
4622
4623 STRCPY(file_path, ff_search_ctx->ffsc_start_dir);
4624 add_pathsep(file_path);
4625 STRCAT(file_path, ff_search_ctx->ffsc_fix_path);
4626
4627 /* create a new stack entry */
4628 sptr = ff_create_stack_element(file_path,
4629 ff_search_ctx->ffsc_wc_path, ff_search_ctx->ffsc_level, 0);
4630 if (sptr == NULL)
4631 break;
4632 ff_push(sptr);
4633 }
4634 else
4635 break;
4636 }
4637#endif
4638
4639 vim_free(file_path);
4640 return NULL;
4641}
4642
4643/*
4644 * Free the list of lists of visited files and directories
4645 * Can handle it if the passed search_context is NULL;
4646 */
4647 void
4648vim_findfile_free_visited(search_ctx)
4649 void *search_ctx;
4650{
4651 if (search_ctx == NULL)
4652 return;
4653
4654 ff_search_ctx = (ff_search_ctx_T *)search_ctx;
4655
4656 vim_findfile_free_visited_list(&ff_search_ctx->ffsc_visited_lists_list);
4657 vim_findfile_free_visited_list(&ff_search_ctx->ffsc_dir_visited_lists_list);
4658}
4659
4660 static void
4661vim_findfile_free_visited_list(list_headp)
4662 ff_visited_list_hdr_T **list_headp;
4663{
4664 ff_visited_list_hdr_T *vp;
4665
4666 while (*list_headp != NULL)
4667 {
4668 vp = (*list_headp)->ffvl_next;
4669 ff_free_visited_list((*list_headp)->ffvl_visited_list);
4670
4671 vim_free((*list_headp)->ffvl_filename);
4672 vim_free(*list_headp);
4673 *list_headp = vp;
4674 }
4675 *list_headp = NULL;
4676}
4677
4678 static void
4679ff_free_visited_list(vl)
4680 ff_visited_T *vl;
4681{
4682 ff_visited_T *vp;
4683
4684 while (vl != NULL)
4685 {
4686 vp = vl->ffv_next;
4687#ifdef FEAT_PATH_EXTRA
4688 vim_free(vl->ffv_wc_path);
4689#endif
4690 vim_free(vl);
4691 vl = vp;
4692 }
4693 vl = NULL;
4694}
4695
4696/*
4697 * Returns the already visited list for the given filename. If none is found it
4698 * allocates a new one.
4699 */
4700 static ff_visited_list_hdr_T*
4701ff_get_visited_list(filename, list_headp)
4702 char_u *filename;
4703 ff_visited_list_hdr_T **list_headp;
4704{
4705 ff_visited_list_hdr_T *retptr = NULL;
4706
4707 /* check if a visited list for the given filename exists */
4708 if (*list_headp != NULL)
4709 {
4710 retptr = *list_headp;
4711 while (retptr != NULL)
4712 {
4713 if (fnamecmp(filename, retptr->ffvl_filename) == 0)
4714 {
4715#ifdef FF_VERBOSE
4716 if (p_verbose >= 5)
4717 {
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004718 verbose_enter_scroll();
Bram Moolenaar051b7822005-05-19 21:00:46 +00004719 smsg((char_u *)"ff_get_visited_list: FOUND list for %s",
Bram Moolenaar071d4272004-06-13 20:20:40 +00004720 filename);
4721 /* don't overwrite this either */
4722 msg_puts((char_u *)"\n");
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004723 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004724 }
4725#endif
4726 return retptr;
4727 }
4728 retptr = retptr->ffvl_next;
4729 }
4730 }
4731
4732#ifdef FF_VERBOSE
4733 if (p_verbose >= 5)
4734 {
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004735 verbose_enter_scroll();
Bram Moolenaar051b7822005-05-19 21:00:46 +00004736 smsg((char_u *)"ff_get_visited_list: new list for %s", filename);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004737 /* don't overwrite this either */
4738 msg_puts((char_u *)"\n");
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004739 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004740 }
4741#endif
4742
4743 /*
4744 * if we reach this we didn't find a list and we have to allocate new list
4745 */
4746 retptr = (ff_visited_list_hdr_T*)alloc((unsigned)sizeof(*retptr));
4747 if (retptr == NULL)
4748 return NULL;
4749
4750 retptr->ffvl_visited_list = NULL;
4751 retptr->ffvl_filename = vim_strsave(filename);
4752 if (retptr->ffvl_filename == NULL)
4753 {
4754 vim_free(retptr);
4755 return NULL;
4756 }
4757 retptr->ffvl_next = *list_headp;
4758 *list_headp = retptr;
4759
4760 return retptr;
4761}
4762
4763#ifdef FEAT_PATH_EXTRA
4764/*
4765 * check if two wildcard paths are equal. Returns TRUE or FALSE.
4766 * They are equal if:
4767 * - both paths are NULL
4768 * - they have the same length
4769 * - char by char comparison is OK
4770 * - the only differences are in the counters behind a '**', so
4771 * '**\20' is equal to '**\24'
4772 */
4773 static int
4774ff_wc_equal(s1, s2)
4775 char_u *s1;
4776 char_u *s2;
4777{
4778 int i;
4779
4780 if (s1 == s2)
4781 return TRUE;
4782
4783 if (s1 == NULL || s2 == NULL)
4784 return FALSE;
4785
4786 if (STRLEN(s1) != STRLEN(s2))
4787 return FAIL;
4788
4789 for (i = 0; s1[i] != NUL && s2[i] != NUL; i++)
4790 {
4791 if (s1[i] != s2[i]
4792#ifdef CASE_INSENSITIVE_FILENAME
4793 && TOUPPER_LOC(s1[i]) != TOUPPER_LOC(s2[i])
4794#endif
4795 )
4796 {
4797 if (i >= 2)
4798 if (s1[i-1] == '*' && s1[i-2] == '*')
4799 continue;
4800 else
4801 return FAIL;
4802 else
4803 return FAIL;
4804 }
4805 }
4806 return TRUE;
4807}
4808#endif
4809
4810/*
4811 * maintains the list of already visited files and dirs
4812 * returns FAIL if the given file/dir is already in the list
4813 * returns OK if it is newly added
4814 *
4815 * TODO: What to do on memory allocation problems?
4816 * -> return TRUE - Better the file is found several times instead of
4817 * never.
4818 */
4819 static int
4820ff_check_visited(visited_list, fname
4821#ifdef FEAT_PATH_EXTRA
4822 , wc_path
4823#endif
4824 )
4825 ff_visited_T **visited_list;
4826 char_u *fname;
4827#ifdef FEAT_PATH_EXTRA
4828 char_u *wc_path;
4829#endif
4830{
4831 ff_visited_T *vp;
4832#ifdef UNIX
4833 struct stat st;
4834 int url = FALSE;
4835#endif
4836
4837 /* For an URL we only compare the name, otherwise we compare the
4838 * device/inode (unix) or the full path name (not Unix). */
4839 if (path_with_url(fname))
4840 {
Bram Moolenaarbbebc852005-07-18 21:47:53 +00004841 vim_strncpy(ff_expand_buffer, fname, MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004842#ifdef UNIX
4843 url = TRUE;
4844#endif
4845 }
4846 else
4847 {
4848 ff_expand_buffer[0] = NUL;
4849#ifdef UNIX
4850 if (mch_stat((char *)fname, &st) < 0)
4851#else
4852 if (vim_FullName(fname, ff_expand_buffer, MAXPATHL, TRUE) == FAIL)
4853#endif
4854 return FAIL;
4855 }
4856
4857 /* check against list of already visited files */
4858 for (vp = *visited_list; vp != NULL; vp = vp->ffv_next)
4859 {
4860 if (
4861#ifdef UNIX
4862 !url
4863 ? (vp->ffv_dev == st.st_dev
4864 && vp->ffv_ino == st.st_ino)
4865 :
4866#endif
4867 fnamecmp(vp->ffv_fname, ff_expand_buffer) == 0
4868 )
4869 {
4870#ifdef FEAT_PATH_EXTRA
4871 /* are the wildcard parts equal */
4872 if (ff_wc_equal(vp->ffv_wc_path, wc_path) == TRUE)
4873#endif
4874 /* already visited */
4875 return FAIL;
4876 }
4877 }
4878
4879 /*
4880 * New file/dir. Add it to the list of visited files/dirs.
4881 */
4882 vp = (ff_visited_T *)alloc((unsigned)(sizeof(ff_visited_T)
4883 + STRLEN(ff_expand_buffer)));
4884
4885 if (vp != NULL)
4886 {
4887#ifdef UNIX
4888 if (!url)
4889 {
4890 vp->ffv_ino = st.st_ino;
4891 vp->ffv_dev = st.st_dev;
4892 vp->ffv_fname[0] = NUL;
4893 }
4894 else
4895 {
4896 vp->ffv_ino = 0;
4897 vp->ffv_dev = -1;
4898#endif
4899 STRCPY(vp->ffv_fname, ff_expand_buffer);
4900#ifdef UNIX
4901 }
4902#endif
4903#ifdef FEAT_PATH_EXTRA
4904 if (wc_path != NULL)
4905 vp->ffv_wc_path = vim_strsave(wc_path);
4906 else
4907 vp->ffv_wc_path = NULL;
4908#endif
4909
4910 vp->ffv_next = *visited_list;
4911 *visited_list = vp;
4912 }
4913
4914 return OK;
4915}
4916
4917/*
4918 * create stack element from given path pieces
4919 */
4920 static ff_stack_T *
4921ff_create_stack_element(fix_part,
4922#ifdef FEAT_PATH_EXTRA
4923 wc_part,
4924#endif
4925 level, star_star_empty)
4926 char_u *fix_part;
4927#ifdef FEAT_PATH_EXTRA
4928 char_u *wc_part;
4929#endif
4930 int level;
4931 int star_star_empty;
4932{
4933 ff_stack_T *new;
4934
4935 new = (ff_stack_T *)alloc((unsigned)sizeof(ff_stack_T));
4936 if (new == NULL)
4937 return NULL;
4938
4939 new->ffs_prev = NULL;
4940 new->ffs_filearray = NULL;
4941 new->ffs_filearray_size = 0;
4942 new->ffs_filearray_cur = 0;
4943 new->ffs_stage = 0;
4944 new->ffs_level = level;
4945 new->ffs_star_star_empty = star_star_empty;;
4946
4947 /* the following saves NULL pointer checks in vim_findfile */
4948 if (fix_part == NULL)
4949 fix_part = (char_u *)"";
4950 new->ffs_fix_path = vim_strsave(fix_part);
4951
4952#ifdef FEAT_PATH_EXTRA
4953 if (wc_part == NULL)
4954 wc_part = (char_u *)"";
4955 new->ffs_wc_path = vim_strsave(wc_part);
4956#endif
4957
4958 if (new->ffs_fix_path == NULL
4959#ifdef FEAT_PATH_EXTRA
4960 || new->ffs_wc_path == NULL
4961#endif
4962 )
4963 {
4964 ff_free_stack_element(new);
4965 new = NULL;
4966 }
4967
4968 return new;
4969}
4970
4971/*
4972 * push a dir on the directory stack
4973 */
4974 static void
4975ff_push(ctx)
4976 ff_stack_T *ctx;
4977{
4978 /* check for NULL pointer, not to return an error to the user, but
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00004979 * to prevent a crash */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004980 if (ctx != NULL)
4981 {
4982 ctx->ffs_prev = ff_search_ctx->ffsc_stack_ptr;
4983 ff_search_ctx->ffsc_stack_ptr = ctx;
4984 }
4985}
4986
4987/*
4988 * pop a dir from the directory stack
4989 * returns NULL if stack is empty
4990 */
4991 static ff_stack_T *
4992ff_pop()
4993{
4994 ff_stack_T *sptr;
4995
4996 sptr = ff_search_ctx->ffsc_stack_ptr;
4997 if (ff_search_ctx->ffsc_stack_ptr != NULL)
4998 ff_search_ctx->ffsc_stack_ptr = ff_search_ctx->ffsc_stack_ptr->ffs_prev;
4999
5000 return sptr;
5001}
5002
5003/*
5004 * free the given stack element
5005 */
5006 static void
5007ff_free_stack_element(ctx)
5008 ff_stack_T *ctx;
5009{
5010 /* vim_free handles possible NULL pointers */
5011 vim_free(ctx->ffs_fix_path);
5012#ifdef FEAT_PATH_EXTRA
5013 vim_free(ctx->ffs_wc_path);
5014#endif
5015
5016 if (ctx->ffs_filearray != NULL)
5017 FreeWild(ctx->ffs_filearray_size, ctx->ffs_filearray);
5018
5019 vim_free(ctx);
5020}
5021
5022/*
5023 * clear the search context
5024 */
5025 static void
5026ff_clear()
5027{
5028 ff_stack_T *sptr;
5029
5030 /* clear up stack */
5031 while ((sptr = ff_pop()) != NULL)
5032 ff_free_stack_element(sptr);
5033
5034 vim_free(ff_search_ctx->ffsc_file_to_search);
5035 vim_free(ff_search_ctx->ffsc_start_dir);
5036 vim_free(ff_search_ctx->ffsc_fix_path);
5037#ifdef FEAT_PATH_EXTRA
5038 vim_free(ff_search_ctx->ffsc_wc_path);
5039#endif
5040
5041#ifdef FEAT_PATH_EXTRA
5042 if (ff_search_ctx->ffsc_stopdirs_v != NULL)
5043 {
5044 int i = 0;
5045
5046 while (ff_search_ctx->ffsc_stopdirs_v[i] != NULL)
5047 {
5048 vim_free(ff_search_ctx->ffsc_stopdirs_v[i]);
5049 i++;
5050 }
5051 vim_free(ff_search_ctx->ffsc_stopdirs_v);
5052 }
5053 ff_search_ctx->ffsc_stopdirs_v = NULL;
5054#endif
5055
5056 /* reset everything */
5057 ff_search_ctx->ffsc_file_to_search = NULL;
5058 ff_search_ctx->ffsc_start_dir = NULL;
5059 ff_search_ctx->ffsc_fix_path = NULL;
5060#ifdef FEAT_PATH_EXTRA
5061 ff_search_ctx->ffsc_wc_path = NULL;
5062 ff_search_ctx->ffsc_level = 0;
5063#endif
5064}
5065
5066#ifdef FEAT_PATH_EXTRA
5067/*
5068 * check if the given path is in the stopdirs
5069 * returns TRUE if yes else FALSE
5070 */
5071 static int
5072ff_path_in_stoplist(path, path_len, stopdirs_v)
5073 char_u *path;
5074 int path_len;
5075 char_u **stopdirs_v;
5076{
5077 int i = 0;
5078
5079 /* eat up trailing path separators, except the first */
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00005080 while (path_len > 1 && vim_ispathsep(path[path_len - 1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005081 path_len--;
5082
5083 /* if no path consider it as match */
5084 if (path_len == 0)
5085 return TRUE;
5086
5087 for (i = 0; stopdirs_v[i] != NULL; i++)
5088 {
5089 if ((int)STRLEN(stopdirs_v[i]) > path_len)
5090 {
5091 /* match for parent directory. So '/home' also matches
5092 * '/home/rks'. Check for PATHSEP in stopdirs_v[i], else
5093 * '/home/r' would also match '/home/rks'
5094 */
5095 if (fnamencmp(stopdirs_v[i], path, path_len) == 0
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00005096 && vim_ispathsep(stopdirs_v[i][path_len]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005097 return TRUE;
5098 }
5099 else
5100 {
5101 if (fnamecmp(stopdirs_v[i], path) == 0)
5102 return TRUE;
5103 }
5104 }
5105 return FALSE;
5106}
5107#endif
5108
5109#if defined(FEAT_SEARCHPATH) || defined(PROTO)
5110/*
5111 * Find the file name "ptr[len]" in the path.
5112 *
5113 * On the first call set the parameter 'first' to TRUE to initialize
5114 * the search. For repeating calls to FALSE.
5115 *
5116 * Repeating calls will return other files called 'ptr[len]' from the path.
5117 *
5118 * Only on the first call 'ptr' and 'len' are used. For repeating calls they
5119 * don't need valid values.
5120 *
5121 * If nothing found on the first call the option FNAME_MESS will issue the
5122 * message:
5123 * 'Can't find file "<file>" in path'
5124 * On repeating calls:
5125 * 'No more file "<file>" found in path'
5126 *
5127 * options:
5128 * FNAME_MESS give error message when not found
5129 *
5130 * Uses NameBuff[]!
5131 *
5132 * Returns an allocated string for the file name. NULL for error.
5133 *
5134 */
5135 char_u *
5136find_file_in_path(ptr, len, options, first, rel_fname)
5137 char_u *ptr; /* file name */
5138 int len; /* length of file name */
5139 int options;
5140 int first; /* use count'th matching file name */
5141 char_u *rel_fname; /* file name searching relative to */
5142{
5143 return find_file_in_path_option(ptr, len, options, first,
5144 *curbuf->b_p_path == NUL ? p_path : curbuf->b_p_path,
5145 FALSE, rel_fname);
5146}
5147
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005148static char_u *ff_file_to_find = NULL;
5149static void *fdip_search_ctx = NULL;
5150
5151#if defined(EXITFREE)
5152 static void
5153free_findfile()
5154{
5155 vim_free(ff_file_to_find);
5156 vim_findfile_cleanup(fdip_search_ctx);
5157}
5158#endif
5159
Bram Moolenaar071d4272004-06-13 20:20:40 +00005160/*
5161 * Find the directory name "ptr[len]" in the path.
5162 *
5163 * options:
5164 * FNAME_MESS give error message when not found
5165 *
5166 * Uses NameBuff[]!
5167 *
5168 * Returns an allocated string for the file name. NULL for error.
5169 */
5170 char_u *
5171find_directory_in_path(ptr, len, options, rel_fname)
5172 char_u *ptr; /* file name */
5173 int len; /* length of file name */
5174 int options;
5175 char_u *rel_fname; /* file name searching relative to */
5176{
5177 return find_file_in_path_option(ptr, len, options, TRUE, p_cdpath,
5178 TRUE, rel_fname);
5179}
5180
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00005181 char_u *
Bram Moolenaar071d4272004-06-13 20:20:40 +00005182find_file_in_path_option(ptr, len, options, first, path_option, need_dir, rel_fname)
5183 char_u *ptr; /* file name */
5184 int len; /* length of file name */
5185 int options;
5186 int first; /* use count'th matching file name */
5187 char_u *path_option; /* p_path or p_cdpath */
5188 int need_dir; /* looking for directory name */
5189 char_u *rel_fname; /* file name we are looking relative to. */
5190{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005191 static char_u *dir;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005192 static int did_findfile_init = FALSE;
5193 char_u save_char;
5194 char_u *file_name = NULL;
5195 char_u *buf = NULL;
5196 int rel_to_curdir;
5197#ifdef AMIGA
5198 struct Process *proc = (struct Process *)FindTask(0L);
5199 APTR save_winptr = proc->pr_WindowPtr;
5200
5201 /* Avoid a requester here for a volume that doesn't exist. */
5202 proc->pr_WindowPtr = (APTR)-1L;
5203#endif
5204
5205 if (first == TRUE)
5206 {
5207 /* copy file name into NameBuff, expanding environment variables */
5208 save_char = ptr[len];
5209 ptr[len] = NUL;
5210 expand_env(ptr, NameBuff, MAXPATHL);
5211 ptr[len] = save_char;
5212
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005213 vim_free(ff_file_to_find);
5214 ff_file_to_find = vim_strsave(NameBuff);
5215 if (ff_file_to_find == NULL) /* out of memory */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005216 {
5217 file_name = NULL;
5218 goto theend;
5219 }
5220 }
5221
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005222 rel_to_curdir = (ff_file_to_find[0] == '.'
5223 && (ff_file_to_find[1] == NUL
5224 || vim_ispathsep(ff_file_to_find[1])
5225 || (ff_file_to_find[1] == '.'
5226 && (ff_file_to_find[2] == NUL
5227 || vim_ispathsep(ff_file_to_find[2])))));
5228 if (vim_isAbsName(ff_file_to_find)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005229 /* "..", "../path", "." and "./path": don't use the path_option */
5230 || rel_to_curdir
5231#if defined(MSWIN) || defined(MSDOS) || defined(OS2)
5232 /* handle "\tmp" as absolute path */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005233 || vim_ispathsep(ff_file_to_find[0])
Bram Moolenaar071d4272004-06-13 20:20:40 +00005234 /* handle "c:name" as absulute path */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005235 || (ff_file_to_find[0] != NUL && ff_file_to_find[1] == ':')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005236#endif
5237#ifdef AMIGA
5238 /* handle ":tmp" as absolute path */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005239 || ff_file_to_find[0] == ':'
Bram Moolenaar071d4272004-06-13 20:20:40 +00005240#endif
5241 )
5242 {
5243 /*
5244 * Absolute path, no need to use "path_option".
5245 * If this is not a first call, return NULL. We already returned a
5246 * filename on the first call.
5247 */
5248 if (first == TRUE)
5249 {
5250 int l;
5251 int run;
5252
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005253 if (path_with_url(ff_file_to_find))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005254 {
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005255 file_name = vim_strsave(ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005256 goto theend;
5257 }
5258
5259 /* When FNAME_REL flag given first use the directory of the file.
5260 * Otherwise or when this fails use the current directory. */
5261 for (run = 1; run <= 2; ++run)
5262 {
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005263 l = (int)STRLEN(ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005264 if (run == 1
5265 && rel_to_curdir
5266 && (options & FNAME_REL)
5267 && rel_fname != NULL
5268 && STRLEN(rel_fname) + l < MAXPATHL)
5269 {
5270 STRCPY(NameBuff, rel_fname);
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005271 STRCPY(gettail(NameBuff), ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005272 l = (int)STRLEN(NameBuff);
5273 }
5274 else
5275 {
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005276 STRCPY(NameBuff, ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005277 run = 2;
5278 }
5279
5280 /* When the file doesn't exist, try adding parts of
5281 * 'suffixesadd'. */
5282 buf = curbuf->b_p_sua;
5283 for (;;)
5284 {
5285 if (
5286#ifdef DJGPP
5287 /* "C:" by itself will fail for mch_getperm(),
5288 * assume it's always valid. */
5289 (need_dir && NameBuff[0] != NUL
5290 && NameBuff[1] == ':'
5291 && NameBuff[2] == NUL) ||
5292#endif
5293 (mch_getperm(NameBuff) >= 0
5294 && (!need_dir || mch_isdir(NameBuff))))
5295 {
5296 file_name = vim_strsave(NameBuff);
5297 goto theend;
5298 }
5299 if (*buf == NUL)
5300 break;
5301 copy_option_part(&buf, NameBuff + l, MAXPATHL - l, ",");
5302 }
5303 }
5304 }
5305 }
5306 else
5307 {
5308 /*
5309 * Loop over all paths in the 'path' or 'cdpath' option.
5310 * When "first" is set, first setup to the start of the option.
5311 * Otherwise continue to find the next match.
5312 */
5313 if (first == TRUE)
5314 {
5315 /* vim_findfile_free_visited can handle a possible NULL pointer */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005316 vim_findfile_free_visited(fdip_search_ctx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005317 dir = path_option;
5318 did_findfile_init = FALSE;
5319 }
5320
5321 for (;;)
5322 {
5323 if (did_findfile_init)
5324 {
5325 ff_search_ctx->ffsc_need_dir = need_dir;
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005326 file_name = vim_findfile(fdip_search_ctx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005327 ff_search_ctx->ffsc_need_dir = FALSE;
5328 if (file_name != NULL)
5329 break;
5330
5331 did_findfile_init = FALSE;
5332 }
5333 else
5334 {
5335 char_u *r_ptr;
5336
5337 if (dir == NULL || *dir == NUL)
5338 {
5339 /* We searched all paths of the option, now we can
5340 * free the search context. */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005341 vim_findfile_cleanup(fdip_search_ctx);
5342 fdip_search_ctx = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005343 break;
5344 }
5345
5346 if ((buf = alloc((int)(MAXPATHL))) == NULL)
5347 break;
5348
5349 /* copy next path */
5350 buf[0] = 0;
5351 copy_option_part(&dir, buf, MAXPATHL, " ,");
5352
5353#ifdef FEAT_PATH_EXTRA
5354 /* get the stopdir string */
5355 r_ptr = vim_findfile_stopdir(buf);
5356#else
5357 r_ptr = NULL;
5358#endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005359 fdip_search_ctx = vim_findfile_init(buf, ff_file_to_find,
5360 r_ptr, 100, FALSE, TRUE,
5361 fdip_search_ctx, FALSE, rel_fname);
5362 if (fdip_search_ctx != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005363 did_findfile_init = TRUE;
5364 vim_free(buf);
5365 }
5366 }
5367 }
5368 if (file_name == NULL && (options & FNAME_MESS))
5369 {
5370 if (first == TRUE)
5371 {
5372 if (need_dir)
5373 EMSG2(_("E344: Can't find directory \"%s\" in cdpath"),
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005374 ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005375 else
5376 EMSG2(_("E345: Can't find file \"%s\" in path"),
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005377 ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005378 }
5379 else
5380 {
5381 if (need_dir)
5382 EMSG2(_("E346: No more directory \"%s\" found in cdpath"),
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005383 ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005384 else
5385 EMSG2(_("E347: No more file \"%s\" found in path"),
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005386 ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005387 }
5388 }
5389
5390theend:
5391#ifdef AMIGA
5392 proc->pr_WindowPtr = save_winptr;
5393#endif
5394 return file_name;
5395}
5396
5397#endif /* FEAT_SEARCHPATH */
5398
5399/*
5400 * Change directory to "new_dir". If FEAT_SEARCHPATH is defined, search
5401 * 'cdpath' for relative directory names, otherwise just mch_chdir().
5402 */
5403 int
5404vim_chdir(new_dir)
5405 char_u *new_dir;
5406{
5407#ifndef FEAT_SEARCHPATH
5408 return mch_chdir((char *)new_dir);
5409#else
5410 char_u *dir_name;
5411 int r;
5412
5413 dir_name = find_directory_in_path(new_dir, (int)STRLEN(new_dir),
5414 FNAME_MESS, curbuf->b_ffname);
5415 if (dir_name == NULL)
5416 return -1;
5417 r = mch_chdir((char *)dir_name);
5418 vim_free(dir_name);
5419 return r;
5420#endif
5421}
5422
5423/*
Bram Moolenaarbbebc852005-07-18 21:47:53 +00005424 * Get user name from machine-specific function.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005425 * Returns the user name in "buf[len]".
Bram Moolenaarbbebc852005-07-18 21:47:53 +00005426 * Some systems are quite slow in obtaining the user name (Windows NT), thus
5427 * cache the result.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005428 * Returns OK or FAIL.
5429 */
5430 int
5431get_user_name(buf, len)
5432 char_u *buf;
5433 int len;
5434{
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005435 if (username == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005436 {
5437 if (mch_get_user_name(buf, len) == FAIL)
5438 return FAIL;
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005439 username = vim_strsave(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005440 }
5441 else
Bram Moolenaarbbebc852005-07-18 21:47:53 +00005442 vim_strncpy(buf, username, len - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005443 return OK;
5444}
5445
5446#ifndef HAVE_QSORT
5447/*
5448 * Our own qsort(), for systems that don't have it.
5449 * It's simple and slow. From the K&R C book.
5450 */
5451 void
5452qsort(base, elm_count, elm_size, cmp)
5453 void *base;
5454 size_t elm_count;
5455 size_t elm_size;
5456 int (*cmp) __ARGS((const void *, const void *));
5457{
5458 char_u *buf;
5459 char_u *p1;
5460 char_u *p2;
5461 int i, j;
5462 int gap;
5463
5464 buf = alloc((unsigned)elm_size);
5465 if (buf == NULL)
5466 return;
5467
5468 for (gap = elm_count / 2; gap > 0; gap /= 2)
5469 for (i = gap; i < elm_count; ++i)
5470 for (j = i - gap; j >= 0; j -= gap)
5471 {
5472 /* Compare the elements. */
5473 p1 = (char_u *)base + j * elm_size;
5474 p2 = (char_u *)base + (j + gap) * elm_size;
5475 if ((*cmp)((void *)p1, (void *)p2) <= 0)
5476 break;
5477 /* Exchange the elemets. */
5478 mch_memmove(buf, p1, elm_size);
5479 mch_memmove(p1, p2, elm_size);
5480 mch_memmove(p2, buf, elm_size);
5481 }
5482
5483 vim_free(buf);
5484}
5485#endif
5486
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00005487#if defined(FEAT_EX_EXTRA) || defined(FEAT_CMDL_COMPL) \
5488 || (defined(FEAT_SYN_HL) && defined(FEAT_MBYTE)) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005489/*
5490 * Sort an array of strings.
5491 */
5492static int
5493#ifdef __BORLANDC__
5494_RTLENTRYF
5495#endif
5496sort_compare __ARGS((const void *s1, const void *s2));
5497
5498 static int
5499#ifdef __BORLANDC__
5500_RTLENTRYF
5501#endif
5502sort_compare(s1, s2)
5503 const void *s1;
5504 const void *s2;
5505{
5506 return STRCMP(*(char **)s1, *(char **)s2);
5507}
5508
5509 void
5510sort_strings(files, count)
5511 char_u **files;
5512 int count;
5513{
5514 qsort((void *)files, (size_t)count, sizeof(char_u *), sort_compare);
5515}
5516#endif
5517
5518#if !defined(NO_EXPANDPATH) || defined(PROTO)
5519/*
5520 * Compare path "p[]" to "q[]".
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005521 * If "maxlen" >= 0 compare "p[maxlen]" to "q[maxlen]"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005522 * Return value like strcmp(p, q), but consider path separators.
5523 */
5524 int
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005525pathcmp(p, q, maxlen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005526 const char *p, *q;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005527 int maxlen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005528{
5529 int i;
Bram Moolenaar86b68352004-12-27 21:59:20 +00005530 const char *s = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005531
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005532 for (i = 0; maxlen < 0 || i < maxlen; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005533 {
5534 /* End of "p": check if "q" also ends or just has a slash. */
5535 if (p[i] == NUL)
5536 {
5537 if (q[i] == NUL) /* full match */
5538 return 0;
5539 s = q;
5540 break;
5541 }
5542
5543 /* End of "q": check if "p" just has a slash. */
5544 if (q[i] == NUL)
5545 {
5546 s = p;
5547 break;
5548 }
5549
5550 if (
5551#ifdef CASE_INSENSITIVE_FILENAME
5552 TOUPPER_LOC(p[i]) != TOUPPER_LOC(q[i])
5553#else
5554 p[i] != q[i]
5555#endif
5556#ifdef BACKSLASH_IN_FILENAME
5557 /* consider '/' and '\\' to be equal */
5558 && !((p[i] == '/' && q[i] == '\\')
5559 || (p[i] == '\\' && q[i] == '/'))
5560#endif
5561 )
5562 {
5563 if (vim_ispathsep(p[i]))
5564 return -1;
5565 if (vim_ispathsep(q[i]))
5566 return 1;
5567 return ((char_u *)p)[i] - ((char_u *)q)[i]; /* no match */
5568 }
5569 }
Bram Moolenaar86b68352004-12-27 21:59:20 +00005570 if (s == NULL) /* "i" ran into "maxlen" */
5571 return 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005572
5573 /* ignore a trailing slash, but not "//" or ":/" */
Bram Moolenaar86b68352004-12-27 21:59:20 +00005574 if (s[i + 1] == NUL
5575 && i > 0
5576 && !after_pathsep((char_u *)s, (char_u *)s + i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005577#ifdef BACKSLASH_IN_FILENAME
Bram Moolenaar86b68352004-12-27 21:59:20 +00005578 && (s[i] == '/' || s[i] == '\\')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005579#else
Bram Moolenaar86b68352004-12-27 21:59:20 +00005580 && s[i] == '/'
Bram Moolenaar071d4272004-06-13 20:20:40 +00005581#endif
Bram Moolenaar86b68352004-12-27 21:59:20 +00005582 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00005583 return 0; /* match with trailing slash */
5584 if (s == q)
5585 return -1; /* no match */
5586 return 1;
5587}
5588#endif
5589
Bram Moolenaar071d4272004-06-13 20:20:40 +00005590/*
5591 * The putenv() implementation below comes from the "screen" program.
5592 * Included with permission from Juergen Weigert.
5593 * See pty.c for the copyright notice.
5594 */
5595
5596/*
5597 * putenv -- put value into environment
5598 *
5599 * Usage: i = putenv (string)
5600 * int i;
5601 * char *string;
5602 *
5603 * where string is of the form <name>=<value>.
5604 * Putenv returns 0 normally, -1 on error (not enough core for malloc).
5605 *
5606 * Putenv may need to add a new name into the environment, or to
5607 * associate a value longer than the current value with a particular
5608 * name. So, to make life simpler, putenv() copies your entire
5609 * environment into the heap (i.e. malloc()) from the stack
5610 * (i.e. where it resides when your process is initiated) the first
5611 * time you call it.
5612 *
5613 * (history removed, not very interesting. See the "screen" sources.)
5614 */
5615
5616#if !defined(HAVE_SETENV) && !defined(HAVE_PUTENV)
5617
5618#define EXTRASIZE 5 /* increment to add to env. size */
5619
5620static int envsize = -1; /* current size of environment */
5621#ifndef MACOS_CLASSIC
5622extern
5623#endif
5624 char **environ; /* the global which is your env. */
5625
5626static int findenv __ARGS((char *name)); /* look for a name in the env. */
5627static int newenv __ARGS((void)); /* copy env. from stack to heap */
5628static int moreenv __ARGS((void)); /* incr. size of env. */
5629
5630 int
5631putenv(string)
5632 const char *string;
5633{
5634 int i;
5635 char *p;
5636
5637 if (envsize < 0)
5638 { /* first time putenv called */
5639 if (newenv() < 0) /* copy env. to heap */
5640 return -1;
5641 }
5642
5643 i = findenv((char *)string); /* look for name in environment */
5644
5645 if (i < 0)
5646 { /* name must be added */
5647 for (i = 0; environ[i]; i++);
5648 if (i >= (envsize - 1))
5649 { /* need new slot */
5650 if (moreenv() < 0)
5651 return -1;
5652 }
5653 p = (char *)alloc((unsigned)(strlen(string) + 1));
5654 if (p == NULL) /* not enough core */
5655 return -1;
5656 environ[i + 1] = 0; /* new end of env. */
5657 }
5658 else
5659 { /* name already in env. */
5660 p = vim_realloc(environ[i], strlen(string) + 1);
5661 if (p == NULL)
5662 return -1;
5663 }
5664 sprintf(p, "%s", string); /* copy into env. */
5665 environ[i] = p;
5666
5667 return 0;
5668}
5669
5670 static int
5671findenv(name)
5672 char *name;
5673{
5674 char *namechar, *envchar;
5675 int i, found;
5676
5677 found = 0;
5678 for (i = 0; environ[i] && !found; i++)
5679 {
5680 envchar = environ[i];
5681 namechar = name;
5682 while (*namechar && *namechar != '=' && (*namechar == *envchar))
5683 {
5684 namechar++;
5685 envchar++;
5686 }
5687 found = ((*namechar == '\0' || *namechar == '=') && *envchar == '=');
5688 }
5689 return found ? i - 1 : -1;
5690}
5691
5692 static int
5693newenv()
5694{
5695 char **env, *elem;
5696 int i, esize;
5697
5698#ifdef MACOS
5699 /* for Mac a new, empty environment is created */
5700 i = 0;
5701#else
5702 for (i = 0; environ[i]; i++)
5703 ;
5704#endif
5705 esize = i + EXTRASIZE + 1;
5706 env = (char **)alloc((unsigned)(esize * sizeof (elem)));
5707 if (env == NULL)
5708 return -1;
5709
5710#ifndef MACOS
5711 for (i = 0; environ[i]; i++)
5712 {
5713 elem = (char *)alloc((unsigned)(strlen(environ[i]) + 1));
5714 if (elem == NULL)
5715 return -1;
5716 env[i] = elem;
5717 strcpy(elem, environ[i]);
5718 }
5719#endif
5720
5721 env[i] = 0;
5722 environ = env;
5723 envsize = esize;
5724 return 0;
5725}
5726
5727 static int
5728moreenv()
5729{
5730 int esize;
5731 char **env;
5732
5733 esize = envsize + EXTRASIZE;
5734 env = (char **)vim_realloc((char *)environ, esize * sizeof (*env));
5735 if (env == 0)
5736 return -1;
5737 environ = env;
5738 envsize = esize;
5739 return 0;
5740}
5741
5742# ifdef USE_VIMPTY_GETENV
5743 char_u *
5744vimpty_getenv(string)
5745 const char_u *string;
5746{
5747 int i;
5748 char_u *p;
5749
5750 if (envsize < 0)
5751 return NULL;
5752
5753 i = findenv((char *)string);
5754
5755 if (i < 0)
5756 return NULL;
5757
5758 p = vim_strchr((char_u *)environ[i], '=');
5759 return (p + 1);
5760}
5761# endif
5762
5763#endif /* !defined(HAVE_SETENV) && !defined(HAVE_PUTENV) */
Bram Moolenaarc4a06d32005-06-07 21:04:49 +00005764
5765#if defined(FEAT_EVAL) || defined(FEAT_SYN_HL) || defined(PROTO)
5766/*
5767 * Return 0 for not writable, 1 for writable file, 2 for a dir which we have
5768 * rights to write into.
5769 */
5770 int
5771filewritable(fname)
5772 char_u *fname;
5773{
5774 int retval = 0;
5775#if defined(UNIX) || defined(VMS)
5776 int perm = 0;
5777#endif
5778
5779#if defined(UNIX) || defined(VMS)
5780 perm = mch_getperm(fname);
5781#endif
5782#ifndef MACOS_CLASSIC /* TODO: get either mch_writable or mch_access */
5783 if (
5784# ifdef WIN3264
5785 mch_writable(fname) &&
5786# else
5787# if defined(UNIX) || defined(VMS)
5788 (perm & 0222) &&
5789# endif
5790# endif
5791 mch_access((char *)fname, W_OK) == 0
5792 )
5793#endif
5794 {
5795 ++retval;
5796 if (mch_isdir(fname))
5797 ++retval;
5798 }
5799 return retval;
5800}
5801#endif
Bram Moolenaar6bab4d12005-06-16 21:53:56 +00005802
5803/*
5804 * Print an error message with one or two "%s" and one or two string arguments.
5805 * This is not in message.c to avoid a warning for prototypes.
5806 */
5807 int
5808emsg3(s, a1, a2)
5809 char_u *s, *a1, *a2;
5810{
5811 if ((emsg_off > 0 && vim_strchr(p_debug, 'm') == NULL)
5812#ifdef FEAT_EVAL
5813 || emsg_skip > 0
5814#endif
5815 )
5816 return TRUE; /* no error messages at the moment */
5817 vim_snprintf((char *)IObuff, IOSIZE, (char *)s, (long)a1, (long)a2);
5818 return emsg(IObuff);
5819}
5820
5821/*
5822 * Print an error message with one "%ld" and one long int argument.
5823 * This is not in message.c to avoid a warning for prototypes.
5824 */
5825 int
5826emsgn(s, n)
5827 char_u *s;
5828 long n;
5829{
5830 if ((emsg_off > 0 && vim_strchr(p_debug, 'm') == NULL)
5831#ifdef FEAT_EVAL
5832 || emsg_skip > 0
5833#endif
5834 )
5835 return TRUE; /* no error messages at the moment */
5836 vim_snprintf((char *)IObuff, IOSIZE, (char *)s, n);
5837 return emsg(IObuff);
5838}
5839