blob: 98f2991c45eb1edc80d78f193944b728080434fc [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001/* vi:set ts=8 sts=4 sw=4:
2 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
9
10/*
11 * misc2.c: Various functions.
12 */
13#include "vim.h"
14
Bram Moolenaarf461c8e2005-06-25 23:04:51 +000015static char_u *username = NULL; /* cached result of mch_get_user_name() */
16
17static char_u *ff_expand_buffer = NULL; /* used for expanding filenames */
18
Bram Moolenaar071d4272004-06-13 20:20:40 +000019#if defined(FEAT_VIRTUALEDIT) || defined(PROTO)
20static int coladvance2 __ARGS((pos_T *pos, int addspaces, int finetune, colnr_T wcol));
21
22/*
23 * Return TRUE if in the current mode we need to use virtual.
24 */
25 int
26virtual_active()
27{
28 /* While an operator is being executed we return "virtual_op", because
29 * VIsual_active has already been reset, thus we can't check for "block"
30 * being used. */
31 if (virtual_op != MAYBE)
32 return virtual_op;
33 return (ve_flags == VE_ALL
34# ifdef FEAT_VISUAL
35 || ((ve_flags & VE_BLOCK) && VIsual_active && VIsual_mode == Ctrl_V)
36# endif
37 || ((ve_flags & VE_INSERT) && (State & INSERT)));
38}
39
40/*
41 * Get the screen position of the cursor.
42 */
43 int
44getviscol()
45{
46 colnr_T x;
47
48 getvvcol(curwin, &curwin->w_cursor, &x, NULL, NULL);
49 return (int)x;
50}
51
52/*
53 * Get the screen position of character col with a coladd in the cursor line.
54 */
55 int
56getviscol2(col, coladd)
57 colnr_T col;
58 colnr_T coladd;
59{
60 colnr_T x;
61 pos_T pos;
62
63 pos.lnum = curwin->w_cursor.lnum;
64 pos.col = col;
65 pos.coladd = coladd;
66 getvvcol(curwin, &pos, &x, NULL, NULL);
67 return (int)x;
68}
69
70/*
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +000071 * Go to column "wcol", and add/insert white space as necessary to get the
Bram Moolenaar071d4272004-06-13 20:20:40 +000072 * cursor in that column.
73 * The caller must have saved the cursor line for undo!
74 */
75 int
76coladvance_force(wcol)
77 colnr_T wcol;
78{
79 int rc = coladvance2(&curwin->w_cursor, TRUE, FALSE, wcol);
80
81 if (wcol == MAXCOL)
82 curwin->w_valid &= ~VALID_VIRTCOL;
83 else
84 {
85 /* Virtcol is valid */
86 curwin->w_valid |= VALID_VIRTCOL;
87 curwin->w_virtcol = wcol;
88 }
89 return rc;
90}
91#endif
92
93/*
94 * Try to advance the Cursor to the specified screen column.
95 * If virtual editing: fine tune the cursor position.
96 * Note that all virtual positions off the end of a line should share
97 * a curwin->w_cursor.col value (n.b. this is equal to STRLEN(line)),
98 * beginning at coladd 0.
99 *
100 * return OK if desired column is reached, FAIL if not
101 */
102 int
103coladvance(wcol)
104 colnr_T wcol;
105{
106 int rc = getvpos(&curwin->w_cursor, wcol);
107
108 if (wcol == MAXCOL || rc == FAIL)
109 curwin->w_valid &= ~VALID_VIRTCOL;
Bram Moolenaardfccaf02004-12-31 20:56:11 +0000110 else if (*ml_get_cursor() != TAB)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000111 {
Bram Moolenaardfccaf02004-12-31 20:56:11 +0000112 /* Virtcol is valid when not on a TAB */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000113 curwin->w_valid |= VALID_VIRTCOL;
114 curwin->w_virtcol = wcol;
115 }
116 return rc;
117}
118
119/*
120 * Return in "pos" the position of the cursor advanced to screen column "wcol".
121 * return OK if desired column is reached, FAIL if not
122 */
123 int
124getvpos(pos, wcol)
125 pos_T *pos;
126 colnr_T wcol;
127{
128#ifdef FEAT_VIRTUALEDIT
129 return coladvance2(pos, FALSE, virtual_active(), wcol);
130}
131
132 static int
133coladvance2(pos, addspaces, finetune, wcol)
134 pos_T *pos;
135 int addspaces; /* change the text to achieve our goal? */
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +0000136 int finetune; /* change char offset for the exact column */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000137 colnr_T wcol; /* column to move to */
138{
139#endif
140 int idx;
141 char_u *ptr;
142 char_u *line;
143 colnr_T col = 0;
144 int csize = 0;
145 int one_more;
146#ifdef FEAT_LINEBREAK
147 int head = 0;
148#endif
149
Bram Moolenaarefd2bf12006-03-16 21:41:35 +0000150 one_more = (State & INSERT)
151 || restart_edit != NUL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000152#ifdef FEAT_VISUAL
Bram Moolenaarefd2bf12006-03-16 21:41:35 +0000153 || (VIsual_active && *p_sel != 'o')
Bram Moolenaar071d4272004-06-13 20:20:40 +0000154#endif
Bram Moolenaarefd2bf12006-03-16 21:41:35 +0000155#ifdef FEAT_VIRTUALEDIT
Bram Moolenaar97b2ad32006-03-18 21:40:56 +0000156 || ((ve_flags & VE_ONEMORE) && wcol < MAXCOL)
Bram Moolenaarefd2bf12006-03-16 21:41:35 +0000157#endif
158 ;
Bram Moolenaara1381de2009-11-03 15:44:21 +0000159 line = ml_get_buf(curbuf, pos->lnum, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000160
161 if (wcol >= MAXCOL)
162 {
163 idx = (int)STRLEN(line) - 1 + one_more;
164 col = wcol;
165
166#ifdef FEAT_VIRTUALEDIT
167 if ((addspaces || finetune) && !VIsual_active)
168 {
169 curwin->w_curswant = linetabsize(line) + one_more;
170 if (curwin->w_curswant > 0)
171 --curwin->w_curswant;
172 }
173#endif
174 }
175 else
176 {
177#ifdef FEAT_VIRTUALEDIT
178 int width = W_WIDTH(curwin) - win_col_off(curwin);
179
Bram Moolenaarebefac62005-12-28 22:39:57 +0000180 if (finetune
Bram Moolenaar071d4272004-06-13 20:20:40 +0000181 && curwin->w_p_wrap
182# ifdef FEAT_VERTSPLIT
183 && curwin->w_width != 0
184# endif
185 && wcol >= (colnr_T)width)
186 {
187 csize = linetabsize(line);
188 if (csize > 0)
189 csize--;
190
Bram Moolenaarebefac62005-12-28 22:39:57 +0000191 if (wcol / width > (colnr_T)csize / width
192 && ((State & INSERT) == 0 || (int)wcol > csize + 1))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000193 {
194 /* In case of line wrapping don't move the cursor beyond the
Bram Moolenaarebefac62005-12-28 22:39:57 +0000195 * right screen edge. In Insert mode allow going just beyond
196 * the last character (like what happens when typing and
197 * reaching the right window edge). */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000198 wcol = (csize / width + 1) * width - 1;
199 }
200 }
201#endif
202
203 idx = -1;
204 ptr = line;
205 while (col <= wcol && *ptr != NUL)
206 {
207 /* Count a tab for what it's worth (if list mode not on) */
208#ifdef FEAT_LINEBREAK
209 csize = win_lbr_chartabsize(curwin, ptr, col, &head);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000210 mb_ptr_adv(ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000211#else
212 csize = lbr_chartabsize_adv(&ptr, col);
213#endif
214 col += csize;
215 }
216 idx = (int)(ptr - line);
217 /*
218 * Handle all the special cases. The virtual_active() check
219 * is needed to ensure that a virtual position off the end of
220 * a line has the correct indexing. The one_more comparison
221 * replaces an explicit add of one_more later on.
222 */
223 if (col > wcol || (!virtual_active() && one_more == 0))
224 {
225 idx -= 1;
226# ifdef FEAT_LINEBREAK
227 /* Don't count the chars from 'showbreak'. */
228 csize -= head;
229# endif
230 col -= csize;
231 }
232
233#ifdef FEAT_VIRTUALEDIT
234 if (virtual_active()
235 && addspaces
236 && ((col != wcol && col != wcol + 1) || csize > 1))
237 {
238 /* 'virtualedit' is set: The difference between wcol and col is
239 * filled with spaces. */
240
241 if (line[idx] == NUL)
242 {
243 /* Append spaces */
244 int correct = wcol - col;
245 char_u *newline = alloc(idx + correct + 1);
246 int t;
247
248 if (newline == NULL)
249 return FAIL;
250
251 for (t = 0; t < idx; ++t)
252 newline[t] = line[t];
253
254 for (t = 0; t < correct; ++t)
255 newline[t + idx] = ' ';
256
257 newline[idx + correct] = NUL;
258
259 ml_replace(pos->lnum, newline, FALSE);
260 changed_bytes(pos->lnum, (colnr_T)idx);
261 idx += correct;
262 col = wcol;
263 }
264 else
265 {
266 /* Break a tab */
267 int linelen = (int)STRLEN(line);
268 int correct = wcol - col - csize + 1; /* negative!! */
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000269 char_u *newline;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000270 int t, s = 0;
271 int v;
272
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000273 if (-correct > csize)
274 return FAIL;
275
276 newline = alloc(linelen + csize);
277 if (newline == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000278 return FAIL;
279
280 for (t = 0; t < linelen; t++)
281 {
282 if (t != idx)
283 newline[s++] = line[t];
284 else
285 for (v = 0; v < csize; v++)
286 newline[s++] = ' ';
287 }
288
289 newline[linelen + csize - 1] = NUL;
290
291 ml_replace(pos->lnum, newline, FALSE);
292 changed_bytes(pos->lnum, idx);
293 idx += (csize - 1 + correct);
294 col += correct;
295 }
296 }
297#endif
298 }
299
300 if (idx < 0)
301 pos->col = 0;
302 else
303 pos->col = idx;
304
305#ifdef FEAT_VIRTUALEDIT
306 pos->coladd = 0;
307
308 if (finetune)
309 {
310 if (wcol == MAXCOL)
311 {
312 /* The width of the last character is used to set coladd. */
313 if (!one_more)
314 {
315 colnr_T scol, ecol;
316
317 getvcol(curwin, pos, &scol, NULL, &ecol);
318 pos->coladd = ecol - scol;
319 }
320 }
321 else
322 {
323 int b = (int)wcol - (int)col;
324
325 /* The difference between wcol and col is used to set coladd. */
326 if (b > 0 && b < (MAXCOL - 2 * W_WIDTH(curwin)))
327 pos->coladd = b;
328
329 col += b;
330 }
331 }
332#endif
333
334#ifdef FEAT_MBYTE
Bram Moolenaara1381de2009-11-03 15:44:21 +0000335 /* prevent from moving onto a trail byte */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000336 if (has_mbyte)
Bram Moolenaara1381de2009-11-03 15:44:21 +0000337 mb_adjustpos(pos);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000338#endif
339
340 if (col < wcol)
341 return FAIL;
342 return OK;
343}
344
345/*
Bram Moolenaar446cb832008-06-24 21:56:24 +0000346 * Increment the cursor position. See inc() for return values.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000347 */
348 int
349inc_cursor()
350{
351 return inc(&curwin->w_cursor);
352}
353
Bram Moolenaar446cb832008-06-24 21:56:24 +0000354/*
355 * Increment the line pointer "lp" crossing line boundaries as necessary.
356 * Return 1 when going to the next line.
357 * Return 2 when moving forward onto a NUL at the end of the line).
358 * Return -1 when at the end of file.
359 * Return 0 otherwise.
360 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000361 int
362inc(lp)
363 pos_T *lp;
364{
365 char_u *p = ml_get_pos(lp);
366
367 if (*p != NUL) /* still within line, move to next char (may be NUL) */
368 {
369#ifdef FEAT_MBYTE
370 if (has_mbyte)
371 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000372 int l = (*mb_ptr2len)(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000373
374 lp->col += l;
375 return ((p[l] != NUL) ? 0 : 2);
376 }
377#endif
378 lp->col++;
379#ifdef FEAT_VIRTUALEDIT
380 lp->coladd = 0;
381#endif
382 return ((p[1] != NUL) ? 0 : 2);
383 }
384 if (lp->lnum != curbuf->b_ml.ml_line_count) /* there is a next line */
385 {
386 lp->col = 0;
387 lp->lnum++;
388#ifdef FEAT_VIRTUALEDIT
389 lp->coladd = 0;
390#endif
391 return 1;
392 }
393 return -1;
394}
395
396/*
397 * incl(lp): same as inc(), but skip the NUL at the end of non-empty lines
398 */
399 int
400incl(lp)
401 pos_T *lp;
402{
403 int r;
404
405 if ((r = inc(lp)) >= 1 && lp->col)
406 r = inc(lp);
407 return r;
408}
409
410/*
411 * dec(p)
412 *
413 * Decrement the line pointer 'p' crossing line boundaries as necessary.
414 * Return 1 when crossing a line, -1 when at start of file, 0 otherwise.
415 */
416 int
417dec_cursor()
418{
419 return dec(&curwin->w_cursor);
420}
421
422 int
423dec(lp)
424 pos_T *lp;
425{
426 char_u *p;
427
428#ifdef FEAT_VIRTUALEDIT
429 lp->coladd = 0;
430#endif
431 if (lp->col > 0) /* still within line */
432 {
433 lp->col--;
434#ifdef FEAT_MBYTE
435 if (has_mbyte)
436 {
437 p = ml_get(lp->lnum);
438 lp->col -= (*mb_head_off)(p, p + lp->col);
439 }
440#endif
441 return 0;
442 }
443 if (lp->lnum > 1) /* there is a prior line */
444 {
445 lp->lnum--;
446 p = ml_get(lp->lnum);
447 lp->col = (colnr_T)STRLEN(p);
448#ifdef FEAT_MBYTE
449 if (has_mbyte)
450 lp->col -= (*mb_head_off)(p, p + lp->col);
451#endif
452 return 1;
453 }
454 return -1; /* at start of file */
455}
456
457/*
458 * decl(lp): same as dec(), but skip the NUL at the end of non-empty lines
459 */
460 int
461decl(lp)
462 pos_T *lp;
463{
464 int r;
465
466 if ((r = dec(lp)) == 1 && lp->col)
467 r = dec(lp);
468 return r;
469}
470
471/*
Bram Moolenaar64486672010-05-16 15:46:46 +0200472 * Get the line number relative to the current cursor position, i.e. the
473 * difference between line number and cursor position. Only look for lines that
474 * can be visible, folded lines don't count.
475 */
476 linenr_T
477get_cursor_rel_lnum(wp, lnum)
478 win_T *wp;
479 linenr_T lnum; /* line number to get the result for */
480{
481 linenr_T cursor = wp->w_cursor.lnum;
482 linenr_T retval = 0;
483
484#ifdef FEAT_FOLDING
485 if (hasAnyFolding(wp))
486 {
487 if (lnum > cursor)
488 {
489 while (lnum > cursor)
490 {
491 (void)hasFolding(lnum, &lnum, NULL);
492 /* if lnum and cursor are in the same fold,
493 * now lnum <= cursor */
494 if (lnum > cursor)
495 retval++;
496 lnum--;
497 }
498 }
499 else if (lnum < cursor)
500 {
501 while (lnum < cursor)
502 {
503 (void)hasFolding(lnum, NULL, &lnum);
504 /* if lnum and cursor are in the same fold,
505 * now lnum >= cursor */
506 if (lnum < cursor)
507 retval--;
508 lnum++;
509 }
510 }
511 /* else if (lnum == cursor)
512 * retval = 0;
513 */
514 }
515 else
516#endif
517 retval = lnum - cursor;
518
519 return retval;
520}
521
522/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000523 * Make sure curwin->w_cursor.lnum is valid.
524 */
525 void
526check_cursor_lnum()
527{
528 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
529 {
530#ifdef FEAT_FOLDING
531 /* If there is a closed fold at the end of the file, put the cursor in
532 * its first line. Otherwise in the last line. */
533 if (!hasFolding(curbuf->b_ml.ml_line_count,
534 &curwin->w_cursor.lnum, NULL))
535#endif
536 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
537 }
538 if (curwin->w_cursor.lnum <= 0)
539 curwin->w_cursor.lnum = 1;
540}
541
542/*
543 * Make sure curwin->w_cursor.col is valid.
544 */
545 void
546check_cursor_col()
547{
548 colnr_T len;
549#ifdef FEAT_VIRTUALEDIT
Bram Moolenaar552c8a52009-03-11 16:29:20 +0000550 colnr_T oldcol = curwin->w_cursor.col;
551 colnr_T oldcoladd = curwin->w_cursor.col + curwin->w_cursor.coladd;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000552#endif
553
554 len = (colnr_T)STRLEN(ml_get_curline());
555 if (len == 0)
556 curwin->w_cursor.col = 0;
557 else if (curwin->w_cursor.col >= len)
558 {
Bram Moolenaar33f54432008-01-04 20:25:44 +0000559 /* Allow cursor past end-of-line when:
560 * - in Insert mode or restarting Insert mode
561 * - in Visual mode and 'selection' isn't "old"
562 * - 'virtualedit' is set */
Bram Moolenaarebefac62005-12-28 22:39:57 +0000563 if ((State & INSERT) || restart_edit
Bram Moolenaar071d4272004-06-13 20:20:40 +0000564#ifdef FEAT_VISUAL
565 || (VIsual_active && *p_sel != 'o')
566#endif
Bram Moolenaar33f54432008-01-04 20:25:44 +0000567#ifdef FEAT_VIRTUALEDIT
568 || (ve_flags & VE_ONEMORE)
569#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000570 || virtual_active())
571 curwin->w_cursor.col = len;
572 else
Bram Moolenaar87c19962007-04-26 08:54:21 +0000573 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000574 curwin->w_cursor.col = len - 1;
Bram Moolenaar87c19962007-04-26 08:54:21 +0000575#ifdef FEAT_MBYTE
576 /* prevent cursor from moving on the trail byte */
577 if (has_mbyte)
578 mb_adjust_cursor();
579#endif
580 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000581 }
Bram Moolenaar742d1ec2009-12-31 12:18:30 +0000582 else if (curwin->w_cursor.col < 0)
583 curwin->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000584
585#ifdef FEAT_VIRTUALEDIT
586 /* If virtual editing is on, we can leave the cursor on the old position,
587 * only we must set it to virtual. But don't do it when at the end of the
588 * line. */
589 if (oldcol == MAXCOL)
590 curwin->w_cursor.coladd = 0;
591 else if (ve_flags == VE_ALL)
Bram Moolenaar552c8a52009-03-11 16:29:20 +0000592 {
593 if (oldcoladd > curwin->w_cursor.col)
594 curwin->w_cursor.coladd = oldcoladd - curwin->w_cursor.col;
595 else
596 /* avoid weird number when there is a miscalculation or overflow */
597 curwin->w_cursor.coladd = 0;
598 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000599#endif
600}
601
602/*
603 * make sure curwin->w_cursor in on a valid character
604 */
605 void
606check_cursor()
607{
608 check_cursor_lnum();
609 check_cursor_col();
610}
611
612#if defined(FEAT_TEXTOBJ) || defined(PROTO)
613/*
614 * Make sure curwin->w_cursor is not on the NUL at the end of the line.
615 * Allow it when in Visual mode and 'selection' is not "old".
616 */
617 void
618adjust_cursor_col()
619{
620 if (curwin->w_cursor.col > 0
621# ifdef FEAT_VISUAL
622 && (!VIsual_active || *p_sel == 'o')
623# endif
624 && gchar_cursor() == NUL)
625 --curwin->w_cursor.col;
626}
627#endif
628
629/*
630 * When curwin->w_leftcol has changed, adjust the cursor position.
631 * Return TRUE if the cursor was moved.
632 */
633 int
634leftcol_changed()
635{
636 long lastcol;
637 colnr_T s, e;
638 int retval = FALSE;
639
640 changed_cline_bef_curs();
641 lastcol = curwin->w_leftcol + W_WIDTH(curwin) - curwin_col_off() - 1;
642 validate_virtcol();
643
644 /*
645 * If the cursor is right or left of the screen, move it to last or first
646 * character.
647 */
648 if (curwin->w_virtcol > (colnr_T)(lastcol - p_siso))
649 {
650 retval = TRUE;
651 coladvance((colnr_T)(lastcol - p_siso));
652 }
653 else if (curwin->w_virtcol < curwin->w_leftcol + p_siso)
654 {
655 retval = TRUE;
656 (void)coladvance((colnr_T)(curwin->w_leftcol + p_siso));
657 }
658
659 /*
660 * If the start of the character under the cursor is not on the screen,
661 * advance the cursor one more char. If this fails (last char of the
662 * line) adjust the scrolling.
663 */
664 getvvcol(curwin, &curwin->w_cursor, &s, NULL, &e);
665 if (e > (colnr_T)lastcol)
666 {
667 retval = TRUE;
668 coladvance(s - 1);
669 }
670 else if (s < curwin->w_leftcol)
671 {
672 retval = TRUE;
673 if (coladvance(e + 1) == FAIL) /* there isn't another character */
674 {
675 curwin->w_leftcol = s; /* adjust w_leftcol instead */
676 changed_cline_bef_curs();
677 }
678 }
679
680 if (retval)
681 curwin->w_set_curswant = TRUE;
682 redraw_later(NOT_VALID);
683 return retval;
684}
685
686/**********************************************************************
687 * Various routines dealing with allocation and deallocation of memory.
688 */
689
690#if defined(MEM_PROFILE) || defined(PROTO)
691
692# define MEM_SIZES 8200
693static long_u mem_allocs[MEM_SIZES];
694static long_u mem_frees[MEM_SIZES];
695static long_u mem_allocated;
696static long_u mem_freed;
697static long_u mem_peak;
698static long_u num_alloc;
699static long_u num_freed;
700
701static void mem_pre_alloc_s __ARGS((size_t *sizep));
702static void mem_pre_alloc_l __ARGS((long_u *sizep));
703static void mem_post_alloc __ARGS((void **pp, size_t size));
704static void mem_pre_free __ARGS((void **pp));
705
706 static void
707mem_pre_alloc_s(sizep)
708 size_t *sizep;
709{
710 *sizep += sizeof(size_t);
711}
712
713 static void
714mem_pre_alloc_l(sizep)
715 long_u *sizep;
716{
717 *sizep += sizeof(size_t);
718}
719
720 static void
721mem_post_alloc(pp, size)
722 void **pp;
723 size_t size;
724{
725 if (*pp == NULL)
726 return;
727 size -= sizeof(size_t);
728 *(long_u *)*pp = size;
729 if (size <= MEM_SIZES-1)
730 mem_allocs[size-1]++;
731 else
732 mem_allocs[MEM_SIZES-1]++;
733 mem_allocated += size;
734 if (mem_allocated - mem_freed > mem_peak)
735 mem_peak = mem_allocated - mem_freed;
736 num_alloc++;
737 *pp = (void *)((char *)*pp + sizeof(size_t));
738}
739
740 static void
741mem_pre_free(pp)
742 void **pp;
743{
744 long_u size;
745
746 *pp = (void *)((char *)*pp - sizeof(size_t));
747 size = *(size_t *)*pp;
748 if (size <= MEM_SIZES-1)
749 mem_frees[size-1]++;
750 else
751 mem_frees[MEM_SIZES-1]++;
752 mem_freed += size;
753 num_freed++;
754}
755
756/*
757 * called on exit via atexit()
758 */
759 void
760vim_mem_profile_dump()
761{
762 int i, j;
763
764 printf("\r\n");
765 j = 0;
766 for (i = 0; i < MEM_SIZES - 1; i++)
767 {
768 if (mem_allocs[i] || mem_frees[i])
769 {
770 if (mem_frees[i] > mem_allocs[i])
771 printf("\r\n%s", _("ERROR: "));
772 printf("[%4d / %4lu-%-4lu] ", i + 1, mem_allocs[i], mem_frees[i]);
773 j++;
774 if (j > 3)
775 {
776 j = 0;
777 printf("\r\n");
778 }
779 }
780 }
781
782 i = MEM_SIZES - 1;
783 if (mem_allocs[i])
784 {
785 printf("\r\n");
786 if (mem_frees[i] > mem_allocs[i])
787 printf(_("ERROR: "));
788 printf("[>%d / %4lu-%-4lu]", i, mem_allocs[i], mem_frees[i]);
789 }
790
791 printf(_("\n[bytes] total alloc-freed %lu-%lu, in use %lu, peak use %lu\n"),
792 mem_allocated, mem_freed, mem_allocated - mem_freed, mem_peak);
793 printf(_("[calls] total re/malloc()'s %lu, total free()'s %lu\n\n"),
794 num_alloc, num_freed);
795}
796
797#endif /* MEM_PROFILE */
798
799/*
800 * Some memory is reserved for error messages and for being able to
801 * call mf_release_all(), which needs some memory for mf_trans_add().
802 */
803#if defined(MSDOS) && !defined(DJGPP)
804# define SMALL_MEM
805# define KEEP_ROOM 8192L
806#else
807# define KEEP_ROOM (2 * 8192L)
808#endif
809
810/*
Bram Moolenaar2a329742008-04-01 12:53:43 +0000811 * Note: if unsigned is 16 bits we can only allocate up to 64K with alloc().
Bram Moolenaar071d4272004-06-13 20:20:40 +0000812 * Use lalloc for larger blocks.
813 */
814 char_u *
815alloc(size)
816 unsigned size;
817{
818 return (lalloc((long_u)size, TRUE));
819}
820
821/*
822 * Allocate memory and set all bytes to zero.
823 */
824 char_u *
825alloc_clear(size)
826 unsigned size;
827{
828 char_u *p;
829
830 p = (lalloc((long_u)size, TRUE));
831 if (p != NULL)
832 (void)vim_memset(p, 0, (size_t)size);
833 return p;
834}
835
836/*
837 * alloc() with check for maximum line length
838 */
839 char_u *
840alloc_check(size)
841 unsigned size;
842{
843#if !defined(UNIX) && !defined(__EMX__)
844 if (sizeof(int) == 2 && size > 0x7fff)
845 {
846 /* Don't hide this message */
847 emsg_silent = 0;
848 EMSG(_("E340: Line is becoming too long"));
849 return NULL;
850 }
851#endif
852 return (lalloc((long_u)size, TRUE));
853}
854
855/*
856 * Allocate memory like lalloc() and set all bytes to zero.
857 */
858 char_u *
859lalloc_clear(size, message)
860 long_u size;
861 int message;
862{
863 char_u *p;
864
865 p = (lalloc(size, message));
866 if (p != NULL)
867 (void)vim_memset(p, 0, (size_t)size);
868 return p;
869}
870
871/*
872 * Low level memory allocation function.
873 * This is used often, KEEP IT FAST!
874 */
875 char_u *
876lalloc(size, message)
877 long_u size;
878 int message;
879{
880 char_u *p; /* pointer to new storage space */
881 static int releasing = FALSE; /* don't do mf_release_all() recursive */
882 int try_again;
883#if defined(HAVE_AVAIL_MEM) && !defined(SMALL_MEM)
884 static long_u allocated = 0; /* allocated since last avail check */
885#endif
886
887 /* Safety check for allocating zero bytes */
888 if (size == 0)
889 {
890 /* Don't hide this message */
891 emsg_silent = 0;
892 EMSGN(_("E341: Internal error: lalloc(%ld, )"), size);
893 return NULL;
894 }
895
896#ifdef MEM_PROFILE
897 mem_pre_alloc_l(&size);
898#endif
899
900#if defined(MSDOS) && !defined(DJGPP)
901 if (size >= 0xfff0) /* in MSDOS we can't deal with >64K blocks */
902 p = NULL;
903 else
904#endif
905
906 /*
907 * Loop when out of memory: Try to release some memfile blocks and
908 * if some blocks are released call malloc again.
909 */
910 for (;;)
911 {
912 /*
913 * Handle three kind of systems:
914 * 1. No check for available memory: Just return.
915 * 2. Slow check for available memory: call mch_avail_mem() after
916 * allocating KEEP_ROOM amount of memory.
917 * 3. Strict check for available memory: call mch_avail_mem()
918 */
919 if ((p = (char_u *)malloc((size_t)size)) != NULL)
920 {
921#ifndef HAVE_AVAIL_MEM
922 /* 1. No check for available memory: Just return. */
923 goto theend;
924#else
925# ifndef SMALL_MEM
926 /* 2. Slow check for available memory: call mch_avail_mem() after
927 * allocating (KEEP_ROOM / 2) amount of memory. */
928 allocated += size;
929 if (allocated < KEEP_ROOM / 2)
930 goto theend;
931 allocated = 0;
932# endif
933 /* 3. check for available memory: call mch_avail_mem() */
934 if (mch_avail_mem(TRUE) < KEEP_ROOM && !releasing)
935 {
Bram Moolenaar5a221812008-11-12 12:08:45 +0000936 free((char *)p); /* System is low... no go! */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000937 p = NULL;
938 }
939 else
940 goto theend;
941#endif
942 }
943 /*
944 * Remember that mf_release_all() is being called to avoid an endless
945 * loop, because mf_release_all() may call alloc() recursively.
946 */
947 if (releasing)
948 break;
949 releasing = TRUE;
Bram Moolenaar661b1822005-07-28 22:36:45 +0000950
951 clear_sb_text(); /* free any scrollback text */
952 try_again = mf_release_all(); /* release as many blocks as possible */
Bram Moolenaar39a58ca2005-06-27 22:42:44 +0000953#ifdef FEAT_EVAL
Bram Moolenaar661b1822005-07-28 22:36:45 +0000954 try_again |= garbage_collect(); /* cleanup recursive lists/dicts */
Bram Moolenaar39a58ca2005-06-27 22:42:44 +0000955#endif
Bram Moolenaar661b1822005-07-28 22:36:45 +0000956
Bram Moolenaar071d4272004-06-13 20:20:40 +0000957 releasing = FALSE;
958 if (!try_again)
959 break;
960 }
961
962 if (message && p == NULL)
963 do_outofmem_msg(size);
964
965theend:
966#ifdef MEM_PROFILE
967 mem_post_alloc((void **)&p, (size_t)size);
968#endif
969 return p;
970}
971
972#if defined(MEM_PROFILE) || defined(PROTO)
973/*
974 * realloc() with memory profiling.
975 */
976 void *
977mem_realloc(ptr, size)
978 void *ptr;
979 size_t size;
980{
981 void *p;
982
983 mem_pre_free(&ptr);
984 mem_pre_alloc_s(&size);
985
986 p = realloc(ptr, size);
987
988 mem_post_alloc(&p, size);
989
990 return p;
991}
992#endif
993
994/*
995* Avoid repeating the error message many times (they take 1 second each).
996* Did_outofmem_msg is reset when a character is read.
997*/
998 void
999do_outofmem_msg(size)
1000 long_u size;
1001{
1002 if (!did_outofmem_msg)
1003 {
1004 /* Don't hide this message */
1005 emsg_silent = 0;
1006 EMSGN(_("E342: Out of memory! (allocating %lu bytes)"), size);
1007 did_outofmem_msg = TRUE;
1008 }
1009}
1010
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001011#if defined(EXITFREE) || defined(PROTO)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001012
1013# if defined(FEAT_SEARCHPATH)
1014static void free_findfile __ARGS((void));
1015# endif
1016
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001017/*
1018 * Free everything that we allocated.
1019 * Can be used to detect memory leaks, e.g., with ccmalloc.
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001020 * NOTE: This is tricky! Things are freed that functions depend on. Don't be
1021 * surprised if Vim crashes...
1022 * Some things can't be freed, esp. things local to a library function.
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001023 */
1024 void
1025free_all_mem()
1026{
1027 buf_T *buf, *nextbuf;
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001028 static int entered = FALSE;
1029
1030 /* When we cause a crash here it is caught and Vim tries to exit cleanly.
1031 * Don't try freeing everything again. */
1032 if (entered)
1033 return;
1034 entered = TRUE;
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001035
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001036# ifdef FEAT_AUTOCMD
Bram Moolenaar78ab3312007-09-29 12:16:41 +00001037 block_autocmds(); /* don't want to trigger autocommands here */
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001038# endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001039
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001040# ifdef FEAT_WINDOWS
Bram Moolenaar5bedfc62010-07-20 22:30:01 +02001041 /* Close all tabs and windows. Reset 'equalalways' to avoid redraws. */
1042 p_ea = FALSE;
Bram Moolenaar7d47b6e2006-03-15 22:59:18 +00001043 if (first_tabpage->tp_next != NULL)
1044 do_cmdline_cmd((char_u *)"tabonly!");
1045 if (firstwin != lastwin)
1046 do_cmdline_cmd((char_u *)"only!");
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001047# endif
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00001048
Bram Moolenaarc4956c82006-03-12 21:58:43 +00001049# if defined(FEAT_SPELL)
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001050 /* Free all spell info. */
1051 spell_free_all();
1052# endif
1053
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001054# if defined(FEAT_USR_CMDS)
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001055 /* Clear user commands (before deleting buffers). */
1056 ex_comclear(NULL);
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001057# endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001058
1059# ifdef FEAT_MENU
1060 /* Clear menus. */
1061 do_cmdline_cmd((char_u *)"aunmenu *");
Bram Moolenaar21160b92009-11-11 15:56:10 +00001062# ifdef FEAT_MULTI_LANG
1063 do_cmdline_cmd((char_u *)"menutranslate clear");
1064# endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001065# endif
1066
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001067 /* Clear mappings, abbreviations, breakpoints. */
Bram Moolenaar21160b92009-11-11 15:56:10 +00001068 do_cmdline_cmd((char_u *)"lmapclear");
1069 do_cmdline_cmd((char_u *)"xmapclear");
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001070 do_cmdline_cmd((char_u *)"mapclear");
1071 do_cmdline_cmd((char_u *)"mapclear!");
1072 do_cmdline_cmd((char_u *)"abclear");
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001073# if defined(FEAT_EVAL)
1074 do_cmdline_cmd((char_u *)"breakdel *");
1075# endif
Bram Moolenaar1e498f52005-06-26 22:29:44 +00001076# if defined(FEAT_PROFILE)
1077 do_cmdline_cmd((char_u *)"profdel *");
1078# endif
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00001079# if defined(FEAT_KEYMAP)
1080 do_cmdline_cmd((char_u *)"set keymap=");
1081#endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001082
1083# ifdef FEAT_TITLE
1084 free_titles();
1085# endif
1086# if defined(FEAT_SEARCHPATH)
1087 free_findfile();
1088# endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001089
1090 /* Obviously named calls. */
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001091# if defined(FEAT_AUTOCMD)
1092 free_all_autocmds();
1093# endif
1094 clear_termcodes();
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001095 free_all_options();
1096 free_all_marks();
1097 alist_clear(&global_alist);
1098 free_homedir();
1099 free_search_patterns();
1100 free_old_sub();
1101 free_last_insert();
1102 free_prev_shellcmd();
1103 free_regexp_stuff();
1104 free_tag_stuff();
1105 free_cd_dir();
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00001106# ifdef FEAT_SIGNS
1107 free_signs();
1108# endif
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001109# ifdef FEAT_EVAL
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001110 set_expr_line(NULL);
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001111# endif
1112# ifdef FEAT_DIFF
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00001113 diff_clear(curtab);
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001114# endif
Bram Moolenaara40ceaf2006-01-13 22:35:40 +00001115 clear_sb_text(); /* free any scrollback text */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001116
1117 /* Free some global vars. */
1118 vim_free(username);
Bram Moolenaaraf92ee82007-10-07 13:45:08 +00001119# ifdef FEAT_CLIPBOARD
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001120 vim_free(clip_exclude_prog);
Bram Moolenaaraf92ee82007-10-07 13:45:08 +00001121# endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001122 vim_free(last_cmdline);
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001123# ifdef FEAT_CMDHIST
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001124 vim_free(new_last_cmdline);
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001125# endif
Bram Moolenaar238a5642006-02-21 22:12:05 +00001126 set_keep_msg(NULL, 0);
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001127 vim_free(ff_expand_buffer);
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001128
1129 /* Clear cmdline history. */
1130 p_hi = 0;
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001131# ifdef FEAT_CMDHIST
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001132 init_history();
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001133# endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001134
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001135#ifdef FEAT_QUICKFIX
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001136 {
Bram Moolenaarbd1e5d22009-04-29 09:02:44 +00001137 win_T *win;
1138 tabpage_T *tab;
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001139
1140 qf_free_all(NULL);
1141 /* Free all location lists */
Bram Moolenaarbd1e5d22009-04-29 09:02:44 +00001142 FOR_ALL_TAB_WINDOWS(tab, win)
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001143 qf_free_all(win);
1144 }
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001145#endif
1146
1147 /* Close all script inputs. */
1148 close_all_scripts();
1149
1150#if defined(FEAT_WINDOWS)
1151 /* Destroy all windows. Must come before freeing buffers. */
1152 win_free_all();
1153#endif
1154
Bram Moolenaar2a329742008-04-01 12:53:43 +00001155 /* Free all buffers. Reset 'autochdir' to avoid accessing things that
1156 * were freed already. */
1157#ifdef FEAT_AUTOCHDIR
1158 p_acd = FALSE;
1159#endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001160 for (buf = firstbuf; buf != NULL; )
1161 {
1162 nextbuf = buf->b_next;
1163 close_buffer(NULL, buf, DOBUF_WIPE);
1164 if (buf_valid(buf))
1165 buf = nextbuf; /* didn't work, try next one */
1166 else
1167 buf = firstbuf;
1168 }
1169
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001170#ifdef FEAT_ARABIC
1171 free_cmdline_buf();
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001172#endif
1173
1174 /* Clear registers. */
1175 clear_registers();
1176 ResetRedobuff();
1177 ResetRedobuff();
1178
Bram Moolenaar85c79d32007-02-20 01:59:20 +00001179#if defined(FEAT_CLIENTSERVER) && defined(FEAT_X11)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001180 vim_free(serverDelayedStartName);
1181#endif
1182
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001183 /* highlight info */
1184 free_highlight();
1185
Bram Moolenaar1e498f52005-06-26 22:29:44 +00001186 reset_last_sourcing();
1187
Bram Moolenaar7d47b6e2006-03-15 22:59:18 +00001188#ifdef FEAT_WINDOWS
Bram Moolenaar06a89a52006-04-29 22:01:03 +00001189 free_tabpage(first_tabpage);
1190 first_tabpage = NULL;
Bram Moolenaar7d47b6e2006-03-15 22:59:18 +00001191#endif
1192
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001193# ifdef UNIX
1194 /* Machine-specific free. */
1195 mch_free_mem();
1196# endif
1197
1198 /* message history */
1199 for (;;)
1200 if (delete_first_msg() == FAIL)
1201 break;
1202
1203# ifdef FEAT_EVAL
1204 eval_clear();
1205# endif
1206
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001207 free_termoptions();
1208
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001209 /* screenlines (can't display anything now!) */
1210 free_screenlines();
1211
1212#if defined(USE_XSMP)
1213 xsmp_close();
1214#endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001215#ifdef FEAT_GUI_GTK
1216 gui_mch_free_all();
1217#endif
1218 clear_hl_tables();
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001219
1220 vim_free(IObuff);
1221 vim_free(NameBuff);
1222}
1223#endif
1224
Bram Moolenaar071d4272004-06-13 20:20:40 +00001225/*
1226 * copy a string into newly allocated memory
1227 */
1228 char_u *
1229vim_strsave(string)
1230 char_u *string;
1231{
1232 char_u *p;
1233 unsigned len;
1234
1235 len = (unsigned)STRLEN(string) + 1;
1236 p = alloc(len);
1237 if (p != NULL)
1238 mch_memmove(p, string, (size_t)len);
1239 return p;
1240}
1241
1242 char_u *
1243vim_strnsave(string, len)
1244 char_u *string;
1245 int len;
1246{
1247 char_u *p;
1248
1249 p = alloc((unsigned)(len + 1));
1250 if (p != NULL)
1251 {
1252 STRNCPY(p, string, len);
1253 p[len] = NUL;
1254 }
1255 return p;
1256}
1257
Bram Moolenaar071d4272004-06-13 20:20:40 +00001258/*
1259 * Same as vim_strsave(), but any characters found in esc_chars are preceded
1260 * by a backslash.
1261 */
1262 char_u *
1263vim_strsave_escaped(string, esc_chars)
1264 char_u *string;
1265 char_u *esc_chars;
1266{
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001267 return vim_strsave_escaped_ext(string, esc_chars, '\\', FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001268}
1269
1270/*
1271 * Same as vim_strsave_escaped(), but when "bsl" is TRUE also escape
1272 * characters where rem_backslash() would remove the backslash.
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001273 * Escape the characters with "cc".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001274 */
1275 char_u *
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001276vim_strsave_escaped_ext(string, esc_chars, cc, bsl)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001277 char_u *string;
1278 char_u *esc_chars;
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001279 int cc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001280 int bsl;
1281{
1282 char_u *p;
1283 char_u *p2;
1284 char_u *escaped_string;
1285 unsigned length;
1286#ifdef FEAT_MBYTE
1287 int l;
1288#endif
1289
1290 /*
1291 * First count the number of backslashes required.
1292 * Then allocate the memory and insert them.
1293 */
1294 length = 1; /* count the trailing NUL */
1295 for (p = string; *p; p++)
1296 {
1297#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001298 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001299 {
1300 length += l; /* count a multibyte char */
1301 p += l - 1;
1302 continue;
1303 }
1304#endif
1305 if (vim_strchr(esc_chars, *p) != NULL || (bsl && rem_backslash(p)))
1306 ++length; /* count a backslash */
1307 ++length; /* count an ordinary char */
1308 }
1309 escaped_string = alloc(length);
1310 if (escaped_string != NULL)
1311 {
1312 p2 = escaped_string;
1313 for (p = string; *p; p++)
1314 {
1315#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001316 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001317 {
1318 mch_memmove(p2, p, (size_t)l);
1319 p2 += l;
1320 p += l - 1; /* skip multibyte char */
1321 continue;
1322 }
1323#endif
1324 if (vim_strchr(esc_chars, *p) != NULL || (bsl && rem_backslash(p)))
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001325 *p2++ = cc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001326 *p2++ = *p;
1327 }
1328 *p2 = NUL;
1329 }
1330 return escaped_string;
1331}
1332
Bram Moolenaar7693ec62008-07-24 18:29:37 +00001333/*
1334 * Return TRUE when 'shell' has "csh" in the tail.
1335 */
1336 int
1337csh_like_shell()
1338{
1339 return (strstr((char *)gettail(p_sh), "csh") != NULL);
1340}
Bram Moolenaar7693ec62008-07-24 18:29:37 +00001341
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001342/*
1343 * Escape "string" for use as a shell argument with system().
Bram Moolenaar21160b92009-11-11 15:56:10 +00001344 * This uses single quotes, except when we know we need to use double quotes
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001345 * (MS-DOS and MS-Windows without 'shellslash' set).
Bram Moolenaarffd66c42008-07-16 20:43:37 +00001346 * Escape a newline, depending on the 'shell' option.
1347 * When "do_special" is TRUE also replace "!", "%", "#" and things starting
1348 * with "<" like "<cfile>".
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001349 * Returns the result in allocated memory, NULL if we have run out.
1350 */
1351 char_u *
Bram Moolenaar05bb9532008-07-04 09:44:11 +00001352vim_strsave_shellescape(string, do_special)
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001353 char_u *string;
Bram Moolenaar05bb9532008-07-04 09:44:11 +00001354 int do_special;
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001355{
1356 unsigned length;
1357 char_u *p;
1358 char_u *d;
1359 char_u *escaped_string;
Bram Moolenaar05bb9532008-07-04 09:44:11 +00001360 int l;
Bram Moolenaarffd66c42008-07-16 20:43:37 +00001361 int csh_like;
1362
1363 /* Only csh and similar shells expand '!' within single quotes. For sh and
1364 * the like we must not put a backslash before it, it will be taken
1365 * literally. If do_special is set the '!' will be escaped twice.
1366 * Csh also needs to have "\n" escaped twice when do_special is set. */
Bram Moolenaar7693ec62008-07-24 18:29:37 +00001367 csh_like = csh_like_shell();
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001368
1369 /* First count the number of extra bytes required. */
Bram Moolenaar77f66d62007-02-20 02:16:18 +00001370 length = (unsigned)STRLEN(string) + 3; /* two quotes and a trailing NUL */
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001371 for (p = string; *p != NUL; mb_ptr_adv(p))
1372 {
1373# if defined(WIN32) || defined(WIN16) || defined(DOS)
1374 if (!p_ssl)
1375 {
1376 if (*p == '"')
1377 ++length; /* " -> "" */
1378 }
1379 else
1380# endif
1381 if (*p == '\'')
1382 length += 3; /* ' => '\'' */
Bram Moolenaarffd66c42008-07-16 20:43:37 +00001383 if (*p == '\n' || (*p == '!' && (csh_like || do_special)))
1384 {
1385 ++length; /* insert backslash */
1386 if (csh_like && do_special)
1387 ++length; /* insert backslash */
1388 }
Bram Moolenaar05bb9532008-07-04 09:44:11 +00001389 if (do_special && find_cmdline_var(p, &l) >= 0)
1390 {
1391 ++length; /* insert backslash */
1392 p += l - 1;
1393 }
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001394 }
1395
1396 /* Allocate memory for the result and fill it. */
1397 escaped_string = alloc(length);
1398 if (escaped_string != NULL)
1399 {
1400 d = escaped_string;
1401
1402 /* add opening quote */
1403# if defined(WIN32) || defined(WIN16) || defined(DOS)
1404 if (!p_ssl)
1405 *d++ = '"';
1406 else
1407# endif
1408 *d++ = '\'';
1409
1410 for (p = string; *p != NUL; )
1411 {
1412# if defined(WIN32) || defined(WIN16) || defined(DOS)
1413 if (!p_ssl)
1414 {
1415 if (*p == '"')
1416 {
1417 *d++ = '"';
1418 *d++ = '"';
1419 ++p;
1420 continue;
1421 }
1422 }
1423 else
1424# endif
1425 if (*p == '\'')
1426 {
Bram Moolenaar05bb9532008-07-04 09:44:11 +00001427 *d++ = '\'';
1428 *d++ = '\\';
1429 *d++ = '\'';
1430 *d++ = '\'';
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001431 ++p;
1432 continue;
1433 }
Bram Moolenaarffd66c42008-07-16 20:43:37 +00001434 if (*p == '\n' || (*p == '!' && (csh_like || do_special)))
1435 {
1436 *d++ = '\\';
1437 if (csh_like && do_special)
1438 *d++ = '\\';
1439 *d++ = *p++;
1440 continue;
1441 }
Bram Moolenaar05bb9532008-07-04 09:44:11 +00001442 if (do_special && find_cmdline_var(p, &l) >= 0)
1443 {
1444 *d++ = '\\'; /* insert backslash */
1445 while (--l >= 0) /* copy the var */
1446 *d++ = *p++;
Bram Moolenaar099d01d2009-11-25 16:14:45 +00001447 continue;
Bram Moolenaar05bb9532008-07-04 09:44:11 +00001448 }
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001449
1450 MB_COPY_CHAR(p, d);
1451 }
1452
1453 /* add terminating quote and finish with a NUL */
1454# if defined(WIN32) || defined(WIN16) || defined(DOS)
1455 if (!p_ssl)
1456 *d++ = '"';
1457 else
1458# endif
1459 *d++ = '\'';
1460 *d = NUL;
1461 }
1462
1463 return escaped_string;
1464}
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001465
Bram Moolenaar071d4272004-06-13 20:20:40 +00001466/*
1467 * Like vim_strsave(), but make all characters uppercase.
1468 * This uses ASCII lower-to-upper case translation, language independent.
1469 */
1470 char_u *
1471vim_strsave_up(string)
1472 char_u *string;
1473{
1474 char_u *p1;
1475
1476 p1 = vim_strsave(string);
1477 vim_strup(p1);
1478 return p1;
1479}
1480
1481/*
1482 * Like vim_strnsave(), but make all characters uppercase.
1483 * This uses ASCII lower-to-upper case translation, language independent.
1484 */
1485 char_u *
1486vim_strnsave_up(string, len)
1487 char_u *string;
1488 int len;
1489{
1490 char_u *p1;
1491
1492 p1 = vim_strnsave(string, len);
1493 vim_strup(p1);
1494 return p1;
1495}
1496
1497/*
1498 * ASCII lower-to-upper case translation, language independent.
1499 */
1500 void
1501vim_strup(p)
1502 char_u *p;
1503{
1504 char_u *p2;
1505 int c;
1506
1507 if (p != NULL)
1508 {
1509 p2 = p;
1510 while ((c = *p2) != NUL)
1511#ifdef EBCDIC
1512 *p2++ = isalpha(c) ? toupper(c) : c;
1513#else
1514 *p2++ = (c < 'a' || c > 'z') ? c : (c - 0x20);
1515#endif
1516 }
1517}
1518
Bram Moolenaarc4956c82006-03-12 21:58:43 +00001519#if defined(FEAT_EVAL) || defined(FEAT_SPELL) || defined(PROTO)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001520/*
1521 * Make string "s" all upper-case and return it in allocated memory.
1522 * Handles multi-byte characters as well as possible.
1523 * Returns NULL when out of memory.
1524 */
1525 char_u *
1526strup_save(orig)
1527 char_u *orig;
1528{
1529 char_u *p;
1530 char_u *res;
1531
1532 res = p = vim_strsave(orig);
1533
1534 if (res != NULL)
1535 while (*p != NUL)
1536 {
1537# ifdef FEAT_MBYTE
1538 int l;
1539
1540 if (enc_utf8)
1541 {
1542 int c, uc;
1543 int nl;
1544 char_u *s;
1545
1546 c = utf_ptr2char(p);
1547 uc = utf_toupper(c);
1548
1549 /* Reallocate string when byte count changes. This is rare,
1550 * thus it's OK to do another malloc()/free(). */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001551 l = utf_ptr2len(p);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001552 nl = utf_char2len(uc);
1553 if (nl != l)
1554 {
1555 s = alloc((unsigned)STRLEN(res) + 1 + nl - l);
1556 if (s == NULL)
1557 break;
1558 mch_memmove(s, res, p - res);
1559 STRCPY(s + (p - res) + nl, p + l);
1560 p = s + (p - res);
1561 vim_free(res);
1562 res = s;
1563 }
1564
1565 utf_char2bytes(uc, p);
1566 p += nl;
1567 }
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001568 else if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001569 p += l; /* skip multi-byte character */
1570 else
1571# endif
1572 {
1573 *p = TOUPPER_LOC(*p); /* note that toupper() can be a macro */
1574 p++;
1575 }
1576 }
1577
1578 return res;
1579}
1580#endif
1581
Bram Moolenaar071d4272004-06-13 20:20:40 +00001582/*
1583 * copy a space a number of times
1584 */
1585 void
1586copy_spaces(ptr, count)
1587 char_u *ptr;
1588 size_t count;
1589{
1590 size_t i = count;
1591 char_u *p = ptr;
1592
1593 while (i--)
1594 *p++ = ' ';
1595}
1596
1597#if defined(FEAT_VISUALEXTRA) || defined(PROTO)
1598/*
1599 * Copy a character a number of times.
Bram Moolenaar21160b92009-11-11 15:56:10 +00001600 * Does not work for multi-byte characters!
Bram Moolenaar071d4272004-06-13 20:20:40 +00001601 */
1602 void
1603copy_chars(ptr, count, c)
1604 char_u *ptr;
1605 size_t count;
1606 int c;
1607{
1608 size_t i = count;
1609 char_u *p = ptr;
1610
1611 while (i--)
1612 *p++ = c;
1613}
1614#endif
1615
1616/*
1617 * delete spaces at the end of a string
1618 */
1619 void
1620del_trailing_spaces(ptr)
1621 char_u *ptr;
1622{
1623 char_u *q;
1624
1625 q = ptr + STRLEN(ptr);
1626 while (--q > ptr && vim_iswhite(q[0]) && q[-1] != '\\' && q[-1] != Ctrl_V)
1627 *q = NUL;
1628}
1629
1630/*
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001631 * Like strncpy(), but always terminate the result with one NUL.
Bram Moolenaard042c562005-06-30 22:04:15 +00001632 * "to" must be "len + 1" long!
Bram Moolenaar071d4272004-06-13 20:20:40 +00001633 */
1634 void
1635vim_strncpy(to, from, len)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001636 char_u *to;
1637 char_u *from;
Bram Moolenaarbbebc852005-07-18 21:47:53 +00001638 size_t len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001639{
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001640 STRNCPY(to, from, len);
1641 to[len] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001642}
1643
1644/*
1645 * Isolate one part of a string option where parts are separated with
1646 * "sep_chars".
Bram Moolenaar83bab712005-08-01 21:58:57 +00001647 * The part is copied into "buf[maxlen]".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001648 * "*option" is advanced to the next part.
1649 * The length is returned.
1650 */
1651 int
1652copy_option_part(option, buf, maxlen, sep_chars)
1653 char_u **option;
1654 char_u *buf;
1655 int maxlen;
1656 char *sep_chars;
1657{
1658 int len = 0;
1659 char_u *p = *option;
1660
1661 /* skip '.' at start of option part, for 'suffixes' */
1662 if (*p == '.')
1663 buf[len++] = *p++;
1664 while (*p != NUL && vim_strchr((char_u *)sep_chars, *p) == NULL)
1665 {
1666 /*
1667 * Skip backslash before a separator character and space.
1668 */
1669 if (p[0] == '\\' && vim_strchr((char_u *)sep_chars, p[1]) != NULL)
1670 ++p;
1671 if (len < maxlen - 1)
1672 buf[len++] = *p;
1673 ++p;
1674 }
1675 buf[len] = NUL;
1676
1677 if (*p != NUL && *p != ',') /* skip non-standard separator */
1678 ++p;
1679 p = skip_to_option_part(p); /* p points to next file name */
1680
1681 *option = p;
1682 return len;
1683}
1684
1685/*
Bram Moolenaar4770d092006-01-12 23:22:24 +00001686 * Replacement for free() that ignores NULL pointers.
1687 * Also skip free() when exiting for sure, this helps when we caught a deadly
1688 * signal that was caused by a crash in free().
Bram Moolenaar071d4272004-06-13 20:20:40 +00001689 */
1690 void
1691vim_free(x)
1692 void *x;
1693{
Bram Moolenaar4770d092006-01-12 23:22:24 +00001694 if (x != NULL && !really_exiting)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001695 {
1696#ifdef MEM_PROFILE
1697 mem_pre_free(&x);
1698#endif
1699 free(x);
1700 }
1701}
1702
1703#ifndef HAVE_MEMSET
1704 void *
1705vim_memset(ptr, c, size)
1706 void *ptr;
1707 int c;
1708 size_t size;
1709{
1710 char *p = ptr;
1711
1712 while (size-- > 0)
1713 *p++ = c;
1714 return ptr;
1715}
1716#endif
1717
1718#ifdef VIM_MEMCMP
1719/*
1720 * Return zero when "b1" and "b2" are the same for "len" bytes.
1721 * Return non-zero otherwise.
1722 */
1723 int
1724vim_memcmp(b1, b2, len)
1725 void *b1;
1726 void *b2;
1727 size_t len;
1728{
1729 char_u *p1 = (char_u *)b1, *p2 = (char_u *)b2;
1730
1731 for ( ; len > 0; --len)
1732 {
1733 if (*p1 != *p2)
1734 return 1;
1735 ++p1;
1736 ++p2;
1737 }
1738 return 0;
1739}
1740#endif
1741
1742#ifdef VIM_MEMMOVE
1743/*
1744 * Version of memmove() that handles overlapping source and destination.
1745 * For systems that don't have a function that is guaranteed to do that (SYSV).
1746 */
1747 void
1748mch_memmove(dst_arg, src_arg, len)
1749 void *src_arg, *dst_arg;
1750 size_t len;
1751{
1752 /*
1753 * A void doesn't have a size, we use char pointers.
1754 */
1755 char *dst = dst_arg, *src = src_arg;
1756
1757 /* overlap, copy backwards */
1758 if (dst > src && dst < src + len)
1759 {
1760 src += len;
1761 dst += len;
1762 while (len-- > 0)
1763 *--dst = *--src;
1764 }
1765 else /* copy forwards */
1766 while (len-- > 0)
1767 *dst++ = *src++;
1768}
1769#endif
1770
1771#if (!defined(HAVE_STRCASECMP) && !defined(HAVE_STRICMP)) || defined(PROTO)
1772/*
1773 * Compare two strings, ignoring case, using current locale.
1774 * Doesn't work for multi-byte characters.
1775 * return 0 for match, < 0 for smaller, > 0 for bigger
1776 */
1777 int
1778vim_stricmp(s1, s2)
1779 char *s1;
1780 char *s2;
1781{
1782 int i;
1783
1784 for (;;)
1785 {
1786 i = (int)TOLOWER_LOC(*s1) - (int)TOLOWER_LOC(*s2);
1787 if (i != 0)
1788 return i; /* this character different */
1789 if (*s1 == NUL)
1790 break; /* strings match until NUL */
1791 ++s1;
1792 ++s2;
1793 }
1794 return 0; /* strings match */
1795}
1796#endif
1797
1798#if (!defined(HAVE_STRNCASECMP) && !defined(HAVE_STRNICMP)) || defined(PROTO)
1799/*
1800 * Compare two strings, for length "len", ignoring case, using current locale.
1801 * Doesn't work for multi-byte characters.
1802 * return 0 for match, < 0 for smaller, > 0 for bigger
1803 */
1804 int
1805vim_strnicmp(s1, s2, len)
1806 char *s1;
1807 char *s2;
1808 size_t len;
1809{
1810 int i;
1811
1812 while (len > 0)
1813 {
1814 i = (int)TOLOWER_LOC(*s1) - (int)TOLOWER_LOC(*s2);
1815 if (i != 0)
1816 return i; /* this character different */
1817 if (*s1 == NUL)
1818 break; /* strings match until NUL */
1819 ++s1;
1820 ++s2;
1821 --len;
1822 }
1823 return 0; /* strings match */
1824}
1825#endif
1826
1827#if 0 /* currently not used */
1828/*
1829 * Check if string "s2" appears somewhere in "s1" while ignoring case.
1830 * Return NULL if not, a pointer to the first occurrence if it does.
1831 */
1832 char_u *
1833vim_stristr(s1, s2)
1834 char_u *s1;
1835 char_u *s2;
1836{
1837 char_u *p;
1838 int len = STRLEN(s2);
1839 char_u *end = s1 + STRLEN(s1) - len;
1840
1841 for (p = s1; p <= end; ++p)
1842 if (STRNICMP(p, s2, len) == 0)
1843 return p;
1844 return NULL;
1845}
1846#endif
1847
1848/*
1849 * Version of strchr() and strrchr() that handle unsigned char strings
Bram Moolenaar05159a02005-02-26 23:04:13 +00001850 * with characters from 128 to 255 correctly. It also doesn't return a
1851 * pointer to the NUL at the end of the string.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001852 */
1853 char_u *
1854vim_strchr(string, c)
1855 char_u *string;
1856 int c;
1857{
1858 char_u *p;
1859 int b;
1860
1861 p = string;
1862#ifdef FEAT_MBYTE
1863 if (enc_utf8 && c >= 0x80)
1864 {
1865 while (*p != NUL)
1866 {
1867 if (utf_ptr2char(p) == c)
1868 return p;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001869 p += (*mb_ptr2len)(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001870 }
1871 return NULL;
1872 }
1873 if (enc_dbcs != 0 && c > 255)
1874 {
1875 int n2 = c & 0xff;
1876
1877 c = ((unsigned)c >> 8) & 0xff;
1878 while ((b = *p) != NUL)
1879 {
1880 if (b == c && p[1] == n2)
1881 return p;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001882 p += (*mb_ptr2len)(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001883 }
1884 return NULL;
1885 }
1886 if (has_mbyte)
1887 {
1888 while ((b = *p) != NUL)
1889 {
1890 if (b == c)
1891 return p;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001892 p += (*mb_ptr2len)(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001893 }
1894 return NULL;
1895 }
1896#endif
1897 while ((b = *p) != NUL)
1898 {
1899 if (b == c)
1900 return p;
1901 ++p;
1902 }
1903 return NULL;
1904}
1905
1906/*
Bram Moolenaar05159a02005-02-26 23:04:13 +00001907 * Version of strchr() that only works for bytes and handles unsigned char
1908 * strings with characters above 128 correctly. It also doesn't return a
1909 * pointer to the NUL at the end of the string.
1910 */
1911 char_u *
1912vim_strbyte(string, c)
1913 char_u *string;
1914 int c;
1915{
1916 char_u *p = string;
1917
1918 while (*p != NUL)
1919 {
1920 if (*p == c)
1921 return p;
1922 ++p;
1923 }
1924 return NULL;
1925}
1926
1927/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001928 * Search for last occurrence of "c" in "string".
Bram Moolenaarac6e65f2005-08-29 22:25:38 +00001929 * Return NULL if not found.
Bram Moolenaar05159a02005-02-26 23:04:13 +00001930 * Does not handle multi-byte char for "c"!
Bram Moolenaar071d4272004-06-13 20:20:40 +00001931 */
1932 char_u *
1933vim_strrchr(string, c)
1934 char_u *string;
1935 int c;
1936{
1937 char_u *retval = NULL;
Bram Moolenaar05159a02005-02-26 23:04:13 +00001938 char_u *p = string;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001939
Bram Moolenaar05159a02005-02-26 23:04:13 +00001940 while (*p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001941 {
Bram Moolenaar05159a02005-02-26 23:04:13 +00001942 if (*p == c)
1943 retval = p;
1944 mb_ptr_adv(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001945 }
1946 return retval;
1947}
1948
1949/*
1950 * Vim's version of strpbrk(), in case it's missing.
1951 * Don't generate a prototype for this, causes problems when it's not used.
1952 */
1953#ifndef PROTO
1954# ifndef HAVE_STRPBRK
1955# ifdef vim_strpbrk
1956# undef vim_strpbrk
1957# endif
1958 char_u *
1959vim_strpbrk(s, charset)
1960 char_u *s;
1961 char_u *charset;
1962{
1963 while (*s)
1964 {
1965 if (vim_strchr(charset, *s) != NULL)
1966 return s;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001967 mb_ptr_adv(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001968 }
1969 return NULL;
1970}
1971# endif
1972#endif
1973
1974/*
1975 * Vim has its own isspace() function, because on some machines isspace()
1976 * can't handle characters above 128.
1977 */
1978 int
1979vim_isspace(x)
1980 int x;
1981{
1982 return ((x >= 9 && x <= 13) || x == ' ');
1983}
1984
1985/************************************************************************
Bram Moolenaar383f9bc2005-01-19 22:18:32 +00001986 * Functions for handling growing arrays.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001987 */
1988
1989/*
1990 * Clear an allocated growing array.
1991 */
1992 void
1993ga_clear(gap)
1994 garray_T *gap;
1995{
1996 vim_free(gap->ga_data);
1997 ga_init(gap);
1998}
1999
2000/*
2001 * Clear a growing array that contains a list of strings.
2002 */
2003 void
2004ga_clear_strings(gap)
2005 garray_T *gap;
2006{
2007 int i;
2008
2009 for (i = 0; i < gap->ga_len; ++i)
2010 vim_free(((char_u **)(gap->ga_data))[i]);
2011 ga_clear(gap);
2012}
2013
2014/*
2015 * Initialize a growing array. Don't forget to set ga_itemsize and
2016 * ga_growsize! Or use ga_init2().
2017 */
2018 void
2019ga_init(gap)
2020 garray_T *gap;
2021{
2022 gap->ga_data = NULL;
Bram Moolenaar86b68352004-12-27 21:59:20 +00002023 gap->ga_maxlen = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002024 gap->ga_len = 0;
2025}
2026
2027 void
2028ga_init2(gap, itemsize, growsize)
2029 garray_T *gap;
2030 int itemsize;
2031 int growsize;
2032{
2033 ga_init(gap);
2034 gap->ga_itemsize = itemsize;
2035 gap->ga_growsize = growsize;
2036}
2037
2038/*
2039 * Make room in growing array "gap" for at least "n" items.
2040 * Return FAIL for failure, OK otherwise.
2041 */
2042 int
2043ga_grow(gap, n)
2044 garray_T *gap;
2045 int n;
2046{
2047 size_t len;
2048 char_u *pp;
2049
Bram Moolenaar86b68352004-12-27 21:59:20 +00002050 if (gap->ga_maxlen - gap->ga_len < n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002051 {
2052 if (n < gap->ga_growsize)
2053 n = gap->ga_growsize;
2054 len = gap->ga_itemsize * (gap->ga_len + n);
2055 pp = alloc_clear((unsigned)len);
2056 if (pp == NULL)
2057 return FAIL;
Bram Moolenaar86b68352004-12-27 21:59:20 +00002058 gap->ga_maxlen = gap->ga_len + n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002059 if (gap->ga_data != NULL)
2060 {
2061 mch_memmove(pp, gap->ga_data,
2062 (size_t)(gap->ga_itemsize * gap->ga_len));
2063 vim_free(gap->ga_data);
2064 }
2065 gap->ga_data = pp;
2066 }
2067 return OK;
2068}
2069
2070/*
2071 * Concatenate a string to a growarray which contains characters.
2072 * Note: Does NOT copy the NUL at the end!
2073 */
2074 void
2075ga_concat(gap, s)
2076 garray_T *gap;
2077 char_u *s;
2078{
2079 int len = (int)STRLEN(s);
2080
2081 if (ga_grow(gap, len) == OK)
2082 {
2083 mch_memmove((char *)gap->ga_data + gap->ga_len, s, (size_t)len);
2084 gap->ga_len += len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002085 }
2086}
2087
2088/*
2089 * Append one byte to a growarray which contains bytes.
2090 */
2091 void
2092ga_append(gap, c)
2093 garray_T *gap;
2094 int c;
2095{
2096 if (ga_grow(gap, 1) == OK)
2097 {
2098 *((char *)gap->ga_data + gap->ga_len) = c;
2099 ++gap->ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002100 }
2101}
2102
2103/************************************************************************
2104 * functions that use lookup tables for various things, generally to do with
2105 * special key codes.
2106 */
2107
2108/*
2109 * Some useful tables.
2110 */
2111
2112static struct modmasktable
2113{
2114 short mod_mask; /* Bit-mask for particular key modifier */
2115 short mod_flag; /* Bit(s) for particular key modifier */
2116 char_u name; /* Single letter name of modifier */
2117} mod_mask_table[] =
2118{
2119 {MOD_MASK_ALT, MOD_MASK_ALT, (char_u)'M'},
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002120 {MOD_MASK_META, MOD_MASK_META, (char_u)'T'},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002121 {MOD_MASK_CTRL, MOD_MASK_CTRL, (char_u)'C'},
2122 {MOD_MASK_SHIFT, MOD_MASK_SHIFT, (char_u)'S'},
2123 {MOD_MASK_MULTI_CLICK, MOD_MASK_2CLICK, (char_u)'2'},
2124 {MOD_MASK_MULTI_CLICK, MOD_MASK_3CLICK, (char_u)'3'},
2125 {MOD_MASK_MULTI_CLICK, MOD_MASK_4CLICK, (char_u)'4'},
2126#ifdef MACOS
2127 {MOD_MASK_CMD, MOD_MASK_CMD, (char_u)'D'},
2128#endif
2129 /* 'A' must be the last one */
2130 {MOD_MASK_ALT, MOD_MASK_ALT, (char_u)'A'},
2131 {0, 0, NUL}
2132};
2133
2134/*
2135 * Shifted key terminal codes and their unshifted equivalent.
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00002136 * Don't add mouse codes here, they are handled separately!
Bram Moolenaar071d4272004-06-13 20:20:40 +00002137 */
2138#define MOD_KEYS_ENTRY_SIZE 5
2139
2140static char_u modifier_keys_table[] =
2141{
2142/* mod mask with modifier without modifier */
2143 MOD_MASK_SHIFT, '&', '9', '@', '1', /* begin */
2144 MOD_MASK_SHIFT, '&', '0', '@', '2', /* cancel */
2145 MOD_MASK_SHIFT, '*', '1', '@', '4', /* command */
2146 MOD_MASK_SHIFT, '*', '2', '@', '5', /* copy */
2147 MOD_MASK_SHIFT, '*', '3', '@', '6', /* create */
2148 MOD_MASK_SHIFT, '*', '4', 'k', 'D', /* delete char */
2149 MOD_MASK_SHIFT, '*', '5', 'k', 'L', /* delete line */
2150 MOD_MASK_SHIFT, '*', '7', '@', '7', /* end */
2151 MOD_MASK_CTRL, KS_EXTRA, (int)KE_C_END, '@', '7', /* end */
2152 MOD_MASK_SHIFT, '*', '9', '@', '9', /* exit */
2153 MOD_MASK_SHIFT, '*', '0', '@', '0', /* find */
2154 MOD_MASK_SHIFT, '#', '1', '%', '1', /* help */
2155 MOD_MASK_SHIFT, '#', '2', 'k', 'h', /* home */
2156 MOD_MASK_CTRL, KS_EXTRA, (int)KE_C_HOME, 'k', 'h', /* home */
2157 MOD_MASK_SHIFT, '#', '3', 'k', 'I', /* insert */
2158 MOD_MASK_SHIFT, '#', '4', 'k', 'l', /* left arrow */
2159 MOD_MASK_CTRL, KS_EXTRA, (int)KE_C_LEFT, 'k', 'l', /* left arrow */
2160 MOD_MASK_SHIFT, '%', 'a', '%', '3', /* message */
2161 MOD_MASK_SHIFT, '%', 'b', '%', '4', /* move */
2162 MOD_MASK_SHIFT, '%', 'c', '%', '5', /* next */
2163 MOD_MASK_SHIFT, '%', 'd', '%', '7', /* options */
2164 MOD_MASK_SHIFT, '%', 'e', '%', '8', /* previous */
2165 MOD_MASK_SHIFT, '%', 'f', '%', '9', /* print */
2166 MOD_MASK_SHIFT, '%', 'g', '%', '0', /* redo */
2167 MOD_MASK_SHIFT, '%', 'h', '&', '3', /* replace */
2168 MOD_MASK_SHIFT, '%', 'i', 'k', 'r', /* right arr. */
2169 MOD_MASK_CTRL, KS_EXTRA, (int)KE_C_RIGHT, 'k', 'r', /* right arr. */
2170 MOD_MASK_SHIFT, '%', 'j', '&', '5', /* resume */
2171 MOD_MASK_SHIFT, '!', '1', '&', '6', /* save */
2172 MOD_MASK_SHIFT, '!', '2', '&', '7', /* suspend */
2173 MOD_MASK_SHIFT, '!', '3', '&', '8', /* undo */
2174 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_UP, 'k', 'u', /* up arrow */
2175 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_DOWN, 'k', 'd', /* down arrow */
2176
2177 /* vt100 F1 */
2178 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_XF1, KS_EXTRA, (int)KE_XF1,
2179 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_XF2, KS_EXTRA, (int)KE_XF2,
2180 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_XF3, KS_EXTRA, (int)KE_XF3,
2181 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_XF4, KS_EXTRA, (int)KE_XF4,
2182
2183 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F1, 'k', '1', /* F1 */
2184 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F2, 'k', '2',
2185 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F3, 'k', '3',
2186 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F4, 'k', '4',
2187 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F5, 'k', '5',
2188 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F6, 'k', '6',
2189 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F7, 'k', '7',
2190 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F8, 'k', '8',
2191 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F9, 'k', '9',
2192 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F10, 'k', ';', /* F10 */
2193
2194 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F11, 'F', '1',
2195 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F12, 'F', '2',
2196 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F13, 'F', '3',
2197 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F14, 'F', '4',
2198 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F15, 'F', '5',
2199 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F16, 'F', '6',
2200 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F17, 'F', '7',
2201 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F18, 'F', '8',
2202 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F19, 'F', '9',
2203 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F20, 'F', 'A',
2204
2205 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F21, 'F', 'B',
2206 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F22, 'F', 'C',
2207 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F23, 'F', 'D',
2208 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F24, 'F', 'E',
2209 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F25, 'F', 'F',
2210 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F26, 'F', 'G',
2211 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F27, 'F', 'H',
2212 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F28, 'F', 'I',
2213 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F29, 'F', 'J',
2214 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F30, 'F', 'K',
2215
2216 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F31, 'F', 'L',
2217 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F32, 'F', 'M',
2218 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F33, 'F', 'N',
2219 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F34, 'F', 'O',
2220 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F35, 'F', 'P',
2221 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F36, 'F', 'Q',
2222 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F37, 'F', 'R',
2223
2224 /* TAB pseudo code*/
2225 MOD_MASK_SHIFT, 'k', 'B', KS_EXTRA, (int)KE_TAB,
2226
2227 NUL
2228};
2229
2230static struct key_name_entry
2231{
2232 int key; /* Special key code or ascii value */
2233 char_u *name; /* Name of key */
2234} key_names_table[] =
2235{
2236 {' ', (char_u *)"Space"},
2237 {TAB, (char_u *)"Tab"},
2238 {K_TAB, (char_u *)"Tab"},
2239 {NL, (char_u *)"NL"},
2240 {NL, (char_u *)"NewLine"}, /* Alternative name */
2241 {NL, (char_u *)"LineFeed"}, /* Alternative name */
2242 {NL, (char_u *)"LF"}, /* Alternative name */
2243 {CAR, (char_u *)"CR"},
2244 {CAR, (char_u *)"Return"}, /* Alternative name */
2245 {CAR, (char_u *)"Enter"}, /* Alternative name */
2246 {K_BS, (char_u *)"BS"},
2247 {K_BS, (char_u *)"BackSpace"}, /* Alternative name */
2248 {ESC, (char_u *)"Esc"},
2249 {CSI, (char_u *)"CSI"},
2250 {K_CSI, (char_u *)"xCSI"},
2251 {'|', (char_u *)"Bar"},
2252 {'\\', (char_u *)"Bslash"},
2253 {K_DEL, (char_u *)"Del"},
2254 {K_DEL, (char_u *)"Delete"}, /* Alternative name */
2255 {K_KDEL, (char_u *)"kDel"},
2256 {K_UP, (char_u *)"Up"},
2257 {K_DOWN, (char_u *)"Down"},
2258 {K_LEFT, (char_u *)"Left"},
2259 {K_RIGHT, (char_u *)"Right"},
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002260 {K_XUP, (char_u *)"xUp"},
2261 {K_XDOWN, (char_u *)"xDown"},
2262 {K_XLEFT, (char_u *)"xLeft"},
2263 {K_XRIGHT, (char_u *)"xRight"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002264
2265 {K_F1, (char_u *)"F1"},
2266 {K_F2, (char_u *)"F2"},
2267 {K_F3, (char_u *)"F3"},
2268 {K_F4, (char_u *)"F4"},
2269 {K_F5, (char_u *)"F5"},
2270 {K_F6, (char_u *)"F6"},
2271 {K_F7, (char_u *)"F7"},
2272 {K_F8, (char_u *)"F8"},
2273 {K_F9, (char_u *)"F9"},
2274 {K_F10, (char_u *)"F10"},
2275
2276 {K_F11, (char_u *)"F11"},
2277 {K_F12, (char_u *)"F12"},
2278 {K_F13, (char_u *)"F13"},
2279 {K_F14, (char_u *)"F14"},
2280 {K_F15, (char_u *)"F15"},
2281 {K_F16, (char_u *)"F16"},
2282 {K_F17, (char_u *)"F17"},
2283 {K_F18, (char_u *)"F18"},
2284 {K_F19, (char_u *)"F19"},
2285 {K_F20, (char_u *)"F20"},
2286
2287 {K_F21, (char_u *)"F21"},
2288 {K_F22, (char_u *)"F22"},
2289 {K_F23, (char_u *)"F23"},
2290 {K_F24, (char_u *)"F24"},
2291 {K_F25, (char_u *)"F25"},
2292 {K_F26, (char_u *)"F26"},
2293 {K_F27, (char_u *)"F27"},
2294 {K_F28, (char_u *)"F28"},
2295 {K_F29, (char_u *)"F29"},
2296 {K_F30, (char_u *)"F30"},
2297
2298 {K_F31, (char_u *)"F31"},
2299 {K_F32, (char_u *)"F32"},
2300 {K_F33, (char_u *)"F33"},
2301 {K_F34, (char_u *)"F34"},
2302 {K_F35, (char_u *)"F35"},
2303 {K_F36, (char_u *)"F36"},
2304 {K_F37, (char_u *)"F37"},
2305
2306 {K_XF1, (char_u *)"xF1"},
2307 {K_XF2, (char_u *)"xF2"},
2308 {K_XF3, (char_u *)"xF3"},
2309 {K_XF4, (char_u *)"xF4"},
2310
2311 {K_HELP, (char_u *)"Help"},
2312 {K_UNDO, (char_u *)"Undo"},
2313 {K_INS, (char_u *)"Insert"},
2314 {K_INS, (char_u *)"Ins"}, /* Alternative name */
2315 {K_KINS, (char_u *)"kInsert"},
2316 {K_HOME, (char_u *)"Home"},
2317 {K_KHOME, (char_u *)"kHome"},
2318 {K_XHOME, (char_u *)"xHome"},
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002319 {K_ZHOME, (char_u *)"zHome"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002320 {K_END, (char_u *)"End"},
2321 {K_KEND, (char_u *)"kEnd"},
2322 {K_XEND, (char_u *)"xEnd"},
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002323 {K_ZEND, (char_u *)"zEnd"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002324 {K_PAGEUP, (char_u *)"PageUp"},
2325 {K_PAGEDOWN, (char_u *)"PageDown"},
2326 {K_KPAGEUP, (char_u *)"kPageUp"},
2327 {K_KPAGEDOWN, (char_u *)"kPageDown"},
2328
2329 {K_KPLUS, (char_u *)"kPlus"},
2330 {K_KMINUS, (char_u *)"kMinus"},
2331 {K_KDIVIDE, (char_u *)"kDivide"},
2332 {K_KMULTIPLY, (char_u *)"kMultiply"},
2333 {K_KENTER, (char_u *)"kEnter"},
2334 {K_KPOINT, (char_u *)"kPoint"},
2335
2336 {K_K0, (char_u *)"k0"},
2337 {K_K1, (char_u *)"k1"},
2338 {K_K2, (char_u *)"k2"},
2339 {K_K3, (char_u *)"k3"},
2340 {K_K4, (char_u *)"k4"},
2341 {K_K5, (char_u *)"k5"},
2342 {K_K6, (char_u *)"k6"},
2343 {K_K7, (char_u *)"k7"},
2344 {K_K8, (char_u *)"k8"},
2345 {K_K9, (char_u *)"k9"},
2346
2347 {'<', (char_u *)"lt"},
2348
2349 {K_MOUSE, (char_u *)"Mouse"},
2350 {K_NETTERM_MOUSE, (char_u *)"NetMouse"},
2351 {K_DEC_MOUSE, (char_u *)"DecMouse"},
2352 {K_JSBTERM_MOUSE, (char_u *)"JsbMouse"},
2353 {K_PTERM_MOUSE, (char_u *)"PtermMouse"},
2354 {K_LEFTMOUSE, (char_u *)"LeftMouse"},
2355 {K_LEFTMOUSE_NM, (char_u *)"LeftMouseNM"},
2356 {K_LEFTDRAG, (char_u *)"LeftDrag"},
2357 {K_LEFTRELEASE, (char_u *)"LeftRelease"},
2358 {K_LEFTRELEASE_NM, (char_u *)"LeftReleaseNM"},
2359 {K_MIDDLEMOUSE, (char_u *)"MiddleMouse"},
2360 {K_MIDDLEDRAG, (char_u *)"MiddleDrag"},
2361 {K_MIDDLERELEASE, (char_u *)"MiddleRelease"},
2362 {K_RIGHTMOUSE, (char_u *)"RightMouse"},
2363 {K_RIGHTDRAG, (char_u *)"RightDrag"},
2364 {K_RIGHTRELEASE, (char_u *)"RightRelease"},
2365 {K_MOUSEDOWN, (char_u *)"MouseDown"},
2366 {K_MOUSEUP, (char_u *)"MouseUp"},
2367 {K_X1MOUSE, (char_u *)"X1Mouse"},
2368 {K_X1DRAG, (char_u *)"X1Drag"},
2369 {K_X1RELEASE, (char_u *)"X1Release"},
2370 {K_X2MOUSE, (char_u *)"X2Mouse"},
2371 {K_X2DRAG, (char_u *)"X2Drag"},
2372 {K_X2RELEASE, (char_u *)"X2Release"},
2373 {K_DROP, (char_u *)"Drop"},
2374 {K_ZERO, (char_u *)"Nul"},
2375#ifdef FEAT_EVAL
2376 {K_SNR, (char_u *)"SNR"},
2377#endif
2378 {K_PLUG, (char_u *)"Plug"},
2379 {0, NULL}
2380};
2381
2382#define KEY_NAMES_TABLE_LEN (sizeof(key_names_table) / sizeof(struct key_name_entry))
2383
2384#ifdef FEAT_MOUSE
2385static struct mousetable
2386{
2387 int pseudo_code; /* Code for pseudo mouse event */
2388 int button; /* Which mouse button is it? */
2389 int is_click; /* Is it a mouse button click event? */
2390 int is_drag; /* Is it a mouse drag event? */
2391} mouse_table[] =
2392{
2393 {(int)KE_LEFTMOUSE, MOUSE_LEFT, TRUE, FALSE},
2394#ifdef FEAT_GUI
2395 {(int)KE_LEFTMOUSE_NM, MOUSE_LEFT, TRUE, FALSE},
2396#endif
2397 {(int)KE_LEFTDRAG, MOUSE_LEFT, FALSE, TRUE},
2398 {(int)KE_LEFTRELEASE, MOUSE_LEFT, FALSE, FALSE},
2399#ifdef FEAT_GUI
2400 {(int)KE_LEFTRELEASE_NM, MOUSE_LEFT, FALSE, FALSE},
2401#endif
2402 {(int)KE_MIDDLEMOUSE, MOUSE_MIDDLE, TRUE, FALSE},
2403 {(int)KE_MIDDLEDRAG, MOUSE_MIDDLE, FALSE, TRUE},
2404 {(int)KE_MIDDLERELEASE, MOUSE_MIDDLE, FALSE, FALSE},
2405 {(int)KE_RIGHTMOUSE, MOUSE_RIGHT, TRUE, FALSE},
2406 {(int)KE_RIGHTDRAG, MOUSE_RIGHT, FALSE, TRUE},
2407 {(int)KE_RIGHTRELEASE, MOUSE_RIGHT, FALSE, FALSE},
2408 {(int)KE_X1MOUSE, MOUSE_X1, TRUE, FALSE},
2409 {(int)KE_X1DRAG, MOUSE_X1, FALSE, TRUE},
2410 {(int)KE_X1RELEASE, MOUSE_X1, FALSE, FALSE},
2411 {(int)KE_X2MOUSE, MOUSE_X2, TRUE, FALSE},
2412 {(int)KE_X2DRAG, MOUSE_X2, FALSE, TRUE},
2413 {(int)KE_X2RELEASE, MOUSE_X2, FALSE, FALSE},
2414 /* DRAG without CLICK */
2415 {(int)KE_IGNORE, MOUSE_RELEASE, FALSE, TRUE},
2416 /* RELEASE without CLICK */
2417 {(int)KE_IGNORE, MOUSE_RELEASE, FALSE, FALSE},
2418 {0, 0, 0, 0},
2419};
2420#endif /* FEAT_MOUSE */
2421
2422/*
2423 * Return the modifier mask bit (MOD_MASK_*) which corresponds to the given
2424 * modifier name ('S' for Shift, 'C' for Ctrl etc).
2425 */
2426 int
2427name_to_mod_mask(c)
2428 int c;
2429{
2430 int i;
2431
2432 c = TOUPPER_ASC(c);
2433 for (i = 0; mod_mask_table[i].mod_mask != 0; i++)
2434 if (c == mod_mask_table[i].name)
2435 return mod_mask_table[i].mod_flag;
2436 return 0;
2437}
2438
Bram Moolenaar071d4272004-06-13 20:20:40 +00002439/*
2440 * Check if if there is a special key code for "key" that includes the
2441 * modifiers specified.
2442 */
2443 int
2444simplify_key(key, modifiers)
2445 int key;
2446 int *modifiers;
2447{
2448 int i;
2449 int key0;
2450 int key1;
2451
2452 if (*modifiers & (MOD_MASK_SHIFT | MOD_MASK_CTRL | MOD_MASK_ALT))
2453 {
2454 /* TAB is a special case */
2455 if (key == TAB && (*modifiers & MOD_MASK_SHIFT))
2456 {
2457 *modifiers &= ~MOD_MASK_SHIFT;
2458 return K_S_TAB;
2459 }
2460 key0 = KEY2TERMCAP0(key);
2461 key1 = KEY2TERMCAP1(key);
2462 for (i = 0; modifier_keys_table[i] != NUL; i += MOD_KEYS_ENTRY_SIZE)
2463 if (key0 == modifier_keys_table[i + 3]
2464 && key1 == modifier_keys_table[i + 4]
2465 && (*modifiers & modifier_keys_table[i]))
2466 {
2467 *modifiers &= ~modifier_keys_table[i];
2468 return TERMCAP2KEY(modifier_keys_table[i + 1],
2469 modifier_keys_table[i + 2]);
2470 }
2471 }
2472 return key;
2473}
2474
2475/*
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002476 * Change <xHome> to <Home>, <xUp> to <Up>, etc.
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002477 */
2478 int
2479handle_x_keys(key)
2480 int key;
2481{
2482 switch (key)
2483 {
2484 case K_XUP: return K_UP;
2485 case K_XDOWN: return K_DOWN;
2486 case K_XLEFT: return K_LEFT;
2487 case K_XRIGHT: return K_RIGHT;
2488 case K_XHOME: return K_HOME;
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002489 case K_ZHOME: return K_HOME;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002490 case K_XEND: return K_END;
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002491 case K_ZEND: return K_END;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002492 case K_XF1: return K_F1;
2493 case K_XF2: return K_F2;
2494 case K_XF3: return K_F3;
2495 case K_XF4: return K_F4;
2496 case K_S_XF1: return K_S_F1;
2497 case K_S_XF2: return K_S_F2;
2498 case K_S_XF3: return K_S_F3;
2499 case K_S_XF4: return K_S_F4;
2500 }
2501 return key;
2502}
2503
2504/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002505 * Return a string which contains the name of the given key when the given
2506 * modifiers are down.
2507 */
2508 char_u *
2509get_special_key_name(c, modifiers)
2510 int c;
2511 int modifiers;
2512{
2513 static char_u string[MAX_KEY_NAME_LEN + 1];
2514
2515 int i, idx;
2516 int table_idx;
2517 char_u *s;
2518
2519 string[0] = '<';
2520 idx = 1;
2521
2522 /* Key that stands for a normal character. */
2523 if (IS_SPECIAL(c) && KEY2TERMCAP0(c) == KS_KEY)
2524 c = KEY2TERMCAP1(c);
2525
2526 /*
2527 * Translate shifted special keys into unshifted keys and set modifier.
2528 * Same for CTRL and ALT modifiers.
2529 */
2530 if (IS_SPECIAL(c))
2531 {
2532 for (i = 0; modifier_keys_table[i] != 0; i += MOD_KEYS_ENTRY_SIZE)
2533 if ( KEY2TERMCAP0(c) == (int)modifier_keys_table[i + 1]
2534 && (int)KEY2TERMCAP1(c) == (int)modifier_keys_table[i + 2])
2535 {
2536 modifiers |= modifier_keys_table[i];
2537 c = TERMCAP2KEY(modifier_keys_table[i + 3],
2538 modifier_keys_table[i + 4]);
2539 break;
2540 }
2541 }
2542
2543 /* try to find the key in the special key table */
2544 table_idx = find_special_key_in_table(c);
2545
2546 /*
2547 * When not a known special key, and not a printable character, try to
2548 * extract modifiers.
2549 */
2550 if (c > 0
2551#ifdef FEAT_MBYTE
2552 && (*mb_char2len)(c) == 1
2553#endif
2554 )
2555 {
2556 if (table_idx < 0
2557 && (!vim_isprintc(c) || (c & 0x7f) == ' ')
2558 && (c & 0x80))
2559 {
2560 c &= 0x7f;
2561 modifiers |= MOD_MASK_ALT;
2562 /* try again, to find the un-alted key in the special key table */
2563 table_idx = find_special_key_in_table(c);
2564 }
2565 if (table_idx < 0 && !vim_isprintc(c) && c < ' ')
2566 {
2567#ifdef EBCDIC
2568 c = CtrlChar(c);
2569#else
2570 c += '@';
2571#endif
2572 modifiers |= MOD_MASK_CTRL;
2573 }
2574 }
2575
2576 /* translate the modifier into a string */
2577 for (i = 0; mod_mask_table[i].name != 'A'; i++)
2578 if ((modifiers & mod_mask_table[i].mod_mask)
2579 == mod_mask_table[i].mod_flag)
2580 {
2581 string[idx++] = mod_mask_table[i].name;
2582 string[idx++] = (char_u)'-';
2583 }
2584
2585 if (table_idx < 0) /* unknown special key, may output t_xx */
2586 {
2587 if (IS_SPECIAL(c))
2588 {
2589 string[idx++] = 't';
2590 string[idx++] = '_';
2591 string[idx++] = KEY2TERMCAP0(c);
2592 string[idx++] = KEY2TERMCAP1(c);
2593 }
2594 /* Not a special key, only modifiers, output directly */
2595 else
2596 {
2597#ifdef FEAT_MBYTE
2598 if (has_mbyte && (*mb_char2len)(c) > 1)
2599 idx += (*mb_char2bytes)(c, string + idx);
2600 else
2601#endif
2602 if (vim_isprintc(c))
2603 string[idx++] = c;
2604 else
2605 {
2606 s = transchar(c);
2607 while (*s)
2608 string[idx++] = *s++;
2609 }
2610 }
2611 }
2612 else /* use name of special key */
2613 {
2614 STRCPY(string + idx, key_names_table[table_idx].name);
2615 idx = (int)STRLEN(string);
2616 }
2617 string[idx++] = '>';
2618 string[idx] = NUL;
2619 return string;
2620}
2621
2622/*
2623 * Try translating a <> name at (*srcp)[] to dst[].
2624 * Return the number of characters added to dst[], zero for no match.
2625 * If there is a match, srcp is advanced to after the <> name.
2626 * dst[] must be big enough to hold the result (up to six characters)!
2627 */
2628 int
2629trans_special(srcp, dst, keycode)
2630 char_u **srcp;
2631 char_u *dst;
2632 int keycode; /* prefer key code, e.g. K_DEL instead of DEL */
2633{
2634 int modifiers = 0;
2635 int key;
2636 int dlen = 0;
2637
Bram Moolenaar2a8ced02008-12-24 11:54:31 +00002638 key = find_special_key(srcp, &modifiers, keycode, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002639 if (key == 0)
2640 return 0;
2641
2642 /* Put the appropriate modifier in a string */
2643 if (modifiers != 0)
2644 {
2645 dst[dlen++] = K_SPECIAL;
2646 dst[dlen++] = KS_MODIFIER;
2647 dst[dlen++] = modifiers;
2648 }
2649
2650 if (IS_SPECIAL(key))
2651 {
2652 dst[dlen++] = K_SPECIAL;
2653 dst[dlen++] = KEY2TERMCAP0(key);
2654 dst[dlen++] = KEY2TERMCAP1(key);
2655 }
2656#ifdef FEAT_MBYTE
2657 else if (has_mbyte && !keycode)
2658 dlen += (*mb_char2bytes)(key, dst + dlen);
2659#endif
2660 else if (keycode)
2661 dlen = (int)(add_char2buf(key, dst + dlen) - dst);
2662 else
2663 dst[dlen++] = key;
2664
2665 return dlen;
2666}
2667
2668/*
2669 * Try translating a <> name at (*srcp)[], return the key and modifiers.
2670 * srcp is advanced to after the <> name.
2671 * returns 0 if there is no match.
2672 */
2673 int
Bram Moolenaar2a8ced02008-12-24 11:54:31 +00002674find_special_key(srcp, modp, keycode, keep_x_key)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002675 char_u **srcp;
2676 int *modp;
Bram Moolenaar2a8ced02008-12-24 11:54:31 +00002677 int keycode; /* prefer key code, e.g. K_DEL instead of DEL */
2678 int keep_x_key; /* don't translate xHome to Home key */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002679{
2680 char_u *last_dash;
2681 char_u *end_of_name;
2682 char_u *src;
2683 char_u *bp;
2684 int modifiers;
2685 int bit;
2686 int key;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002687 unsigned long n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002688
2689 src = *srcp;
2690 if (src[0] != '<')
2691 return 0;
2692
2693 /* Find end of modifier list */
2694 last_dash = src;
2695 for (bp = src + 1; *bp == '-' || vim_isIDc(*bp); bp++)
2696 {
2697 if (*bp == '-')
2698 {
2699 last_dash = bp;
2700 if (bp[1] != NUL && bp[2] == '>')
2701 ++bp; /* anything accepted, like <C-?> */
2702 }
2703 if (bp[0] == 't' && bp[1] == '_' && bp[2] && bp[3])
2704 bp += 3; /* skip t_xx, xx may be '-' or '>' */
2705 }
2706
2707 if (*bp == '>') /* found matching '>' */
2708 {
2709 end_of_name = bp + 1;
2710
2711 if (STRNICMP(src + 1, "char-", 5) == 0 && VIM_ISDIGIT(src[6]))
2712 {
2713 /* <Char-123> or <Char-033> or <Char-0x33> */
2714 vim_str2nr(src + 6, NULL, NULL, TRUE, TRUE, NULL, &n);
2715 *modp = 0;
2716 *srcp = end_of_name;
2717 return (int)n;
2718 }
2719
2720 /* Which modifiers are given? */
2721 modifiers = 0x0;
2722 for (bp = src + 1; bp < last_dash; bp++)
2723 {
2724 if (*bp != '-')
2725 {
2726 bit = name_to_mod_mask(*bp);
2727 if (bit == 0x0)
2728 break; /* Illegal modifier name */
2729 modifiers |= bit;
2730 }
2731 }
2732
2733 /*
2734 * Legal modifier name.
2735 */
2736 if (bp >= last_dash)
2737 {
2738 /*
2739 * Modifier with single letter, or special key name.
2740 */
2741 if (modifiers != 0 && last_dash[2] == '>')
2742 key = last_dash[1];
2743 else
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002744 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002745 key = get_special_key_code(last_dash + 1);
Bram Moolenaar2a8ced02008-12-24 11:54:31 +00002746 if (!keep_x_key)
2747 key = handle_x_keys(key);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002748 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002749
2750 /*
2751 * get_special_key_code() may return NUL for invalid
2752 * special key name.
2753 */
2754 if (key != NUL)
2755 {
2756 /*
2757 * Only use a modifier when there is no special key code that
2758 * includes the modifier.
2759 */
2760 key = simplify_key(key, &modifiers);
2761
2762 if (!keycode)
2763 {
2764 /* don't want keycode, use single byte code */
2765 if (key == K_BS)
2766 key = BS;
2767 else if (key == K_DEL || key == K_KDEL)
2768 key = DEL;
2769 }
2770
2771 /*
2772 * Normal Key with modifier: Try to make a single byte code.
2773 */
2774 if (!IS_SPECIAL(key))
2775 key = extract_modifiers(key, &modifiers);
2776
2777 *modp = modifiers;
2778 *srcp = end_of_name;
2779 return key;
2780 }
2781 }
2782 }
2783 return 0;
2784}
2785
2786/*
2787 * Try to include modifiers in the key.
2788 * Changes "Shift-a" to 'A', "Alt-A" to 0xc0, etc.
2789 */
2790 int
2791extract_modifiers(key, modp)
2792 int key;
2793 int *modp;
2794{
2795 int modifiers = *modp;
2796
2797#ifdef MACOS
2798 /* Command-key really special, No fancynest */
2799 if (!(modifiers & MOD_MASK_CMD))
2800#endif
2801 if ((modifiers & MOD_MASK_SHIFT) && ASCII_ISALPHA(key))
2802 {
2803 key = TOUPPER_ASC(key);
2804 modifiers &= ~MOD_MASK_SHIFT;
2805 }
2806 if ((modifiers & MOD_MASK_CTRL)
2807#ifdef EBCDIC
2808 /* * TODO: EBCDIC Better use:
2809 * && (Ctrl_chr(key) || key == '?')
2810 * ??? */
2811 && strchr("?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_", key)
2812 != NULL
2813#else
2814 && ((key >= '?' && key <= '_') || ASCII_ISALPHA(key))
2815#endif
2816 )
2817 {
2818 key = Ctrl_chr(key);
2819 modifiers &= ~MOD_MASK_CTRL;
2820 /* <C-@> is <Nul> */
2821 if (key == 0)
2822 key = K_ZERO;
2823 }
2824#ifdef MACOS
2825 /* Command-key really special, No fancynest */
2826 if (!(modifiers & MOD_MASK_CMD))
2827#endif
2828 if ((modifiers & MOD_MASK_ALT) && key < 0x80
2829#ifdef FEAT_MBYTE
2830 && !enc_dbcs /* avoid creating a lead byte */
2831#endif
2832 )
2833 {
2834 key |= 0x80;
2835 modifiers &= ~MOD_MASK_ALT; /* remove the META modifier */
2836 }
2837
2838 *modp = modifiers;
2839 return key;
2840}
2841
2842/*
2843 * Try to find key "c" in the special key table.
2844 * Return the index when found, -1 when not found.
2845 */
2846 int
2847find_special_key_in_table(c)
2848 int c;
2849{
2850 int i;
2851
2852 for (i = 0; key_names_table[i].name != NULL; i++)
2853 if (c == key_names_table[i].key)
2854 break;
2855 if (key_names_table[i].name == NULL)
2856 i = -1;
2857 return i;
2858}
2859
2860/*
2861 * Find the special key with the given name (the given string does not have to
2862 * end with NUL, the name is assumed to end before the first non-idchar).
2863 * If the name starts with "t_" the next two characters are interpreted as a
2864 * termcap name.
2865 * Return the key code, or 0 if not found.
2866 */
2867 int
2868get_special_key_code(name)
2869 char_u *name;
2870{
2871 char_u *table_name;
2872 char_u string[3];
2873 int i, j;
2874
2875 /*
2876 * If it's <t_xx> we get the code for xx from the termcap
2877 */
2878 if (name[0] == 't' && name[1] == '_' && name[2] != NUL && name[3] != NUL)
2879 {
2880 string[0] = name[2];
2881 string[1] = name[3];
2882 string[2] = NUL;
2883 if (add_termcap_entry(string, FALSE) == OK)
2884 return TERMCAP2KEY(name[2], name[3]);
2885 }
2886 else
2887 for (i = 0; key_names_table[i].name != NULL; i++)
2888 {
2889 table_name = key_names_table[i].name;
2890 for (j = 0; vim_isIDc(name[j]) && table_name[j] != NUL; j++)
2891 if (TOLOWER_ASC(table_name[j]) != TOLOWER_ASC(name[j]))
2892 break;
2893 if (!vim_isIDc(name[j]) && table_name[j] == NUL)
2894 return key_names_table[i].key;
2895 }
2896 return 0;
2897}
2898
Bram Moolenaar05bb9532008-07-04 09:44:11 +00002899#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002900 char_u *
2901get_key_name(i)
2902 int i;
2903{
Bram Moolenaare1fbddc2009-05-16 19:07:03 +00002904 if (i >= (int)KEY_NAMES_TABLE_LEN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002905 return NULL;
2906 return key_names_table[i].name;
2907}
2908#endif
2909
Bram Moolenaar05bb9532008-07-04 09:44:11 +00002910#if defined(FEAT_MOUSE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002911/*
2912 * Look up the given mouse code to return the relevant information in the other
2913 * arguments. Return which button is down or was released.
2914 */
2915 int
2916get_mouse_button(code, is_click, is_drag)
2917 int code;
2918 int *is_click;
2919 int *is_drag;
2920{
2921 int i;
2922
2923 for (i = 0; mouse_table[i].pseudo_code; i++)
2924 if (code == mouse_table[i].pseudo_code)
2925 {
2926 *is_click = mouse_table[i].is_click;
2927 *is_drag = mouse_table[i].is_drag;
2928 return mouse_table[i].button;
2929 }
2930 return 0; /* Shouldn't get here */
2931}
2932
2933/*
2934 * Return the appropriate pseudo mouse event token (KE_LEFTMOUSE etc) based on
2935 * the given information about which mouse button is down, and whether the
2936 * mouse was clicked, dragged or released.
2937 */
2938 int
2939get_pseudo_mouse_code(button, is_click, is_drag)
2940 int button; /* eg MOUSE_LEFT */
2941 int is_click;
2942 int is_drag;
2943{
2944 int i;
2945
2946 for (i = 0; mouse_table[i].pseudo_code; i++)
2947 if (button == mouse_table[i].button
2948 && is_click == mouse_table[i].is_click
2949 && is_drag == mouse_table[i].is_drag)
2950 {
2951#ifdef FEAT_GUI
Bram Moolenaarc91506a2005-04-24 22:04:21 +00002952 /* Trick: a non mappable left click and release has mouse_col -1
2953 * or added MOUSE_COLOFF. Used for 'mousefocus' in
2954 * gui_mouse_moved() */
2955 if (mouse_col < 0 || mouse_col > MOUSE_COLOFF)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002956 {
Bram Moolenaarc91506a2005-04-24 22:04:21 +00002957 if (mouse_col < 0)
2958 mouse_col = 0;
2959 else
2960 mouse_col -= MOUSE_COLOFF;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002961 if (mouse_table[i].pseudo_code == (int)KE_LEFTMOUSE)
2962 return (int)KE_LEFTMOUSE_NM;
2963 if (mouse_table[i].pseudo_code == (int)KE_LEFTRELEASE)
2964 return (int)KE_LEFTRELEASE_NM;
2965 }
2966#endif
2967 return mouse_table[i].pseudo_code;
2968 }
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00002969 return (int)KE_IGNORE; /* not recognized, ignore it */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002970}
2971#endif /* FEAT_MOUSE */
2972
2973/*
2974 * Return the current end-of-line type: EOL_DOS, EOL_UNIX or EOL_MAC.
2975 */
2976 int
2977get_fileformat(buf)
2978 buf_T *buf;
2979{
2980 int c = *buf->b_p_ff;
2981
2982 if (buf->b_p_bin || c == 'u')
2983 return EOL_UNIX;
2984 if (c == 'm')
2985 return EOL_MAC;
2986 return EOL_DOS;
2987}
2988
2989/*
2990 * Like get_fileformat(), but override 'fileformat' with "p" for "++opt=val"
2991 * argument.
2992 */
2993 int
2994get_fileformat_force(buf, eap)
2995 buf_T *buf;
2996 exarg_T *eap; /* can be NULL! */
2997{
2998 int c;
2999
3000 if (eap != NULL && eap->force_ff != 0)
3001 c = eap->cmd[eap->force_ff];
3002 else
3003 {
3004 if ((eap != NULL && eap->force_bin != 0)
3005 ? (eap->force_bin == FORCE_BIN) : buf->b_p_bin)
3006 return EOL_UNIX;
3007 c = *buf->b_p_ff;
3008 }
3009 if (c == 'u')
3010 return EOL_UNIX;
3011 if (c == 'm')
3012 return EOL_MAC;
3013 return EOL_DOS;
3014}
3015
3016/*
3017 * Set the current end-of-line type to EOL_DOS, EOL_UNIX or EOL_MAC.
3018 * Sets both 'textmode' and 'fileformat'.
3019 * Note: Does _not_ set global value of 'textmode'!
3020 */
3021 void
3022set_fileformat(t, opt_flags)
3023 int t;
3024 int opt_flags; /* OPT_LOCAL and/or OPT_GLOBAL */
3025{
3026 char *p = NULL;
3027
3028 switch (t)
3029 {
3030 case EOL_DOS:
3031 p = FF_DOS;
3032 curbuf->b_p_tx = TRUE;
3033 break;
3034 case EOL_UNIX:
3035 p = FF_UNIX;
3036 curbuf->b_p_tx = FALSE;
3037 break;
3038 case EOL_MAC:
3039 p = FF_MAC;
3040 curbuf->b_p_tx = FALSE;
3041 break;
3042 }
3043 if (p != NULL)
3044 set_string_option_direct((char_u *)"ff", -1, (char_u *)p,
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00003045 OPT_FREE | opt_flags, 0);
3046
Bram Moolenaar071d4272004-06-13 20:20:40 +00003047#ifdef FEAT_WINDOWS
Bram Moolenaarf740b292006-02-16 22:11:02 +00003048 /* This may cause the buffer to become (un)modified. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003049 check_status(curbuf);
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00003050 redraw_tabline = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003051#endif
3052#ifdef FEAT_TITLE
3053 need_maketitle = TRUE; /* set window title later */
3054#endif
3055}
3056
3057/*
3058 * Return the default fileformat from 'fileformats'.
3059 */
3060 int
3061default_fileformat()
3062{
3063 switch (*p_ffs)
3064 {
3065 case 'm': return EOL_MAC;
3066 case 'd': return EOL_DOS;
3067 }
3068 return EOL_UNIX;
3069}
3070
3071/*
3072 * Call shell. Calls mch_call_shell, with 'shellxquote' added.
3073 */
3074 int
3075call_shell(cmd, opt)
3076 char_u *cmd;
3077 int opt;
3078{
3079 char_u *ncmd;
3080 int retval;
Bram Moolenaar05159a02005-02-26 23:04:13 +00003081#ifdef FEAT_PROFILE
3082 proftime_T wait_time;
3083#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003084
3085 if (p_verbose > 3)
3086 {
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00003087 verbose_enter();
Bram Moolenaar051b7822005-05-19 21:00:46 +00003088 smsg((char_u *)_("Calling shell to execute: \"%s\""),
Bram Moolenaar071d4272004-06-13 20:20:40 +00003089 cmd == NULL ? p_sh : cmd);
3090 out_char('\n');
3091 cursor_on();
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00003092 verbose_leave();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003093 }
3094
Bram Moolenaar05159a02005-02-26 23:04:13 +00003095#ifdef FEAT_PROFILE
Bram Moolenaar01265852006-03-20 21:50:15 +00003096 if (do_profiling == PROF_YES)
Bram Moolenaar05159a02005-02-26 23:04:13 +00003097 prof_child_enter(&wait_time);
3098#endif
3099
Bram Moolenaar071d4272004-06-13 20:20:40 +00003100 if (*p_sh == NUL)
3101 {
3102 EMSG(_(e_shellempty));
3103 retval = -1;
3104 }
3105 else
3106 {
3107#ifdef FEAT_GUI_MSWIN
3108 /* Don't hide the pointer while executing a shell command. */
3109 gui_mch_mousehide(FALSE);
3110#endif
3111#ifdef FEAT_GUI
3112 ++hold_gui_events;
3113#endif
3114 /* The external command may update a tags file, clear cached tags. */
3115 tag_freematch();
3116
3117 if (cmd == NULL || *p_sxq == NUL)
3118 retval = mch_call_shell(cmd, opt);
3119 else
3120 {
3121 ncmd = alloc((unsigned)(STRLEN(cmd) + STRLEN(p_sxq) * 2 + 1));
3122 if (ncmd != NULL)
3123 {
3124 STRCPY(ncmd, p_sxq);
3125 STRCAT(ncmd, cmd);
3126 STRCAT(ncmd, p_sxq);
3127 retval = mch_call_shell(ncmd, opt);
3128 vim_free(ncmd);
3129 }
3130 else
3131 retval = -1;
3132 }
3133#ifdef FEAT_GUI
3134 --hold_gui_events;
3135#endif
3136 /*
3137 * Check the window size, in case it changed while executing the
3138 * external command.
3139 */
3140 shell_resized_check();
3141 }
3142
3143#ifdef FEAT_EVAL
3144 set_vim_var_nr(VV_SHELL_ERROR, (long)retval);
Bram Moolenaar05159a02005-02-26 23:04:13 +00003145# ifdef FEAT_PROFILE
Bram Moolenaar01265852006-03-20 21:50:15 +00003146 if (do_profiling == PROF_YES)
Bram Moolenaar05159a02005-02-26 23:04:13 +00003147 prof_child_exit(&wait_time);
3148# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003149#endif
3150
3151 return retval;
3152}
3153
3154/*
Bram Moolenaar01265852006-03-20 21:50:15 +00003155 * VISUAL, SELECTMODE and OP_PENDING State are never set, they are equal to
3156 * NORMAL State with a condition. This function returns the real State.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003157 */
3158 int
3159get_real_state()
3160{
3161 if (State & NORMAL)
3162 {
3163#ifdef FEAT_VISUAL
3164 if (VIsual_active)
Bram Moolenaar01265852006-03-20 21:50:15 +00003165 {
3166 if (VIsual_select)
3167 return SELECTMODE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003168 return VISUAL;
Bram Moolenaar01265852006-03-20 21:50:15 +00003169 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003170 else
3171#endif
3172 if (finish_op)
Bram Moolenaar01265852006-03-20 21:50:15 +00003173 return OP_PENDING;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003174 }
3175 return State;
3176}
3177
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003178#if defined(FEAT_MBYTE) || defined(PROTO)
3179/*
3180 * Return TRUE if "p" points to just after a path separator.
3181 * Take care of multi-byte characters.
3182 * "b" must point to the start of the file name
3183 */
3184 int
3185after_pathsep(b, p)
3186 char_u *b;
3187 char_u *p;
3188{
3189 return vim_ispathsep(p[-1])
3190 && (!has_mbyte || (*mb_head_off)(b, p - 1) == 0);
3191}
3192#endif
3193
3194/*
3195 * Return TRUE if file names "f1" and "f2" are in the same directory.
3196 * "f1" may be a short name, "f2" must be a full path.
3197 */
3198 int
3199same_directory(f1, f2)
3200 char_u *f1;
3201 char_u *f2;
3202{
3203 char_u ffname[MAXPATHL];
3204 char_u *t1;
3205 char_u *t2;
3206
3207 /* safety check */
3208 if (f1 == NULL || f2 == NULL)
3209 return FALSE;
3210
3211 (void)vim_FullName(f1, ffname, MAXPATHL, FALSE);
3212 t1 = gettail_sep(ffname);
3213 t2 = gettail_sep(f2);
3214 return (t1 - ffname == t2 - f2
3215 && pathcmp((char *)ffname, (char *)f2, (int)(t1 - ffname)) == 0);
3216}
3217
Bram Moolenaar071d4272004-06-13 20:20:40 +00003218#if defined(FEAT_SESSION) || defined(MSWIN) || defined(FEAT_GUI_MAC) \
Bram Moolenaar9372a112005-12-06 19:59:18 +00003219 || ((defined(FEAT_GUI_GTK)) \
Bram Moolenaar843ee412004-06-30 16:16:41 +00003220 && ( defined(FEAT_WINDOWS) || defined(FEAT_DND)) ) \
Bram Moolenaar071d4272004-06-13 20:20:40 +00003221 || defined(FEAT_SUN_WORKSHOP) || defined(FEAT_NETBEANS_INTG) \
3222 || defined(PROTO)
3223/*
3224 * Change to a file's directory.
3225 * Caller must call shorten_fnames()!
3226 * Return OK or FAIL.
3227 */
3228 int
3229vim_chdirfile(fname)
3230 char_u *fname;
3231{
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003232 char_u dir[MAXPATHL];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003233
Bram Moolenaarbbebc852005-07-18 21:47:53 +00003234 vim_strncpy(dir, fname, MAXPATHL - 1);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003235 *gettail_sep(dir) = NUL;
3236 return mch_chdir((char *)dir) == 0 ? OK : FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003237}
3238#endif
3239
3240#if defined(STAT_IGNORES_SLASH) || defined(PROTO)
3241/*
3242 * Check if "name" ends in a slash and is not a directory.
3243 * Used for systems where stat() ignores a trailing slash on a file name.
3244 * The Vim code assumes a trailing slash is only ignored for a directory.
3245 */
3246 int
3247illegal_slash(name)
3248 char *name;
3249{
3250 if (name[0] == NUL)
3251 return FALSE; /* no file name is not illegal */
3252 if (name[strlen(name) - 1] != '/')
3253 return FALSE; /* no trailing slash */
3254 if (mch_isdir((char_u *)name))
3255 return FALSE; /* trailing slash for a directory */
3256 return TRUE;
3257}
3258#endif
3259
3260#if defined(CURSOR_SHAPE) || defined(PROTO)
3261
3262/*
3263 * Handling of cursor and mouse pointer shapes in various modes.
3264 */
3265
3266cursorentry_T shape_table[SHAPE_IDX_COUNT] =
3267{
3268 /* The values will be filled in from the 'guicursor' and 'mouseshape'
3269 * defaults when Vim starts.
3270 * Adjust the SHAPE_IDX_ defines when making changes! */
3271 {0, 0, 0, 700L, 400L, 250L, 0, 0, "n", SHAPE_CURSOR+SHAPE_MOUSE},
3272 {0, 0, 0, 700L, 400L, 250L, 0, 0, "v", SHAPE_CURSOR+SHAPE_MOUSE},
3273 {0, 0, 0, 700L, 400L, 250L, 0, 0, "i", SHAPE_CURSOR+SHAPE_MOUSE},
3274 {0, 0, 0, 700L, 400L, 250L, 0, 0, "r", SHAPE_CURSOR+SHAPE_MOUSE},
3275 {0, 0, 0, 700L, 400L, 250L, 0, 0, "c", SHAPE_CURSOR+SHAPE_MOUSE},
3276 {0, 0, 0, 700L, 400L, 250L, 0, 0, "ci", SHAPE_CURSOR+SHAPE_MOUSE},
3277 {0, 0, 0, 700L, 400L, 250L, 0, 0, "cr", SHAPE_CURSOR+SHAPE_MOUSE},
3278 {0, 0, 0, 700L, 400L, 250L, 0, 0, "o", SHAPE_CURSOR+SHAPE_MOUSE},
3279 {0, 0, 0, 700L, 400L, 250L, 0, 0, "ve", SHAPE_CURSOR+SHAPE_MOUSE},
3280 {0, 0, 0, 0L, 0L, 0L, 0, 0, "e", SHAPE_MOUSE},
3281 {0, 0, 0, 0L, 0L, 0L, 0, 0, "s", SHAPE_MOUSE},
3282 {0, 0, 0, 0L, 0L, 0L, 0, 0, "sd", SHAPE_MOUSE},
3283 {0, 0, 0, 0L, 0L, 0L, 0, 0, "vs", SHAPE_MOUSE},
3284 {0, 0, 0, 0L, 0L, 0L, 0, 0, "vd", SHAPE_MOUSE},
3285 {0, 0, 0, 0L, 0L, 0L, 0, 0, "m", SHAPE_MOUSE},
3286 {0, 0, 0, 0L, 0L, 0L, 0, 0, "ml", SHAPE_MOUSE},
3287 {0, 0, 0, 100L, 100L, 100L, 0, 0, "sm", SHAPE_CURSOR},
3288};
3289
3290#ifdef FEAT_MOUSESHAPE
3291/*
3292 * Table with names for mouse shapes. Keep in sync with all the tables for
3293 * mch_set_mouse_shape()!.
3294 */
3295static char * mshape_names[] =
3296{
3297 "arrow", /* default, must be the first one */
3298 "blank", /* hidden */
3299 "beam",
3300 "updown",
3301 "udsizing",
3302 "leftright",
3303 "lrsizing",
3304 "busy",
3305 "no",
3306 "crosshair",
3307 "hand1",
3308 "hand2",
3309 "pencil",
3310 "question",
3311 "rightup-arrow",
3312 "up-arrow",
3313 NULL
3314};
3315#endif
3316
3317/*
3318 * Parse the 'guicursor' option ("what" is SHAPE_CURSOR) or 'mouseshape'
3319 * ("what" is SHAPE_MOUSE).
3320 * Returns error message for an illegal option, NULL otherwise.
3321 */
3322 char_u *
3323parse_shape_opt(what)
3324 int what;
3325{
3326 char_u *modep;
3327 char_u *colonp;
3328 char_u *commap;
3329 char_u *slashp;
3330 char_u *p, *endp;
3331 int idx = 0; /* init for GCC */
3332 int all_idx;
3333 int len;
3334 int i;
3335 long n;
3336 int found_ve = FALSE; /* found "ve" flag */
3337 int round;
3338
3339 /*
3340 * First round: check for errors; second round: do it for real.
3341 */
3342 for (round = 1; round <= 2; ++round)
3343 {
3344 /*
3345 * Repeat for all comma separated parts.
3346 */
3347#ifdef FEAT_MOUSESHAPE
3348 if (what == SHAPE_MOUSE)
3349 modep = p_mouseshape;
3350 else
3351#endif
3352 modep = p_guicursor;
3353 while (*modep != NUL)
3354 {
3355 colonp = vim_strchr(modep, ':');
3356 if (colonp == NULL)
3357 return (char_u *)N_("E545: Missing colon");
3358 if (colonp == modep)
3359 return (char_u *)N_("E546: Illegal mode");
3360 commap = vim_strchr(modep, ',');
3361
3362 /*
3363 * Repeat for all mode's before the colon.
3364 * For the 'a' mode, we loop to handle all the modes.
3365 */
3366 all_idx = -1;
3367 while (modep < colonp || all_idx >= 0)
3368 {
3369 if (all_idx < 0)
3370 {
3371 /* Find the mode. */
3372 if (modep[1] == '-' || modep[1] == ':')
3373 len = 1;
3374 else
3375 len = 2;
3376 if (len == 1 && TOLOWER_ASC(modep[0]) == 'a')
3377 all_idx = SHAPE_IDX_COUNT - 1;
3378 else
3379 {
3380 for (idx = 0; idx < SHAPE_IDX_COUNT; ++idx)
3381 if (STRNICMP(modep, shape_table[idx].name, len)
3382 == 0)
3383 break;
3384 if (idx == SHAPE_IDX_COUNT
3385 || (shape_table[idx].used_for & what) == 0)
3386 return (char_u *)N_("E546: Illegal mode");
3387 if (len == 2 && modep[0] == 'v' && modep[1] == 'e')
3388 found_ve = TRUE;
3389 }
3390 modep += len + 1;
3391 }
3392
3393 if (all_idx >= 0)
3394 idx = all_idx--;
3395 else if (round == 2)
3396 {
3397#ifdef FEAT_MOUSESHAPE
3398 if (what == SHAPE_MOUSE)
3399 {
3400 /* Set the default, for the missing parts */
3401 shape_table[idx].mshape = 0;
3402 }
3403 else
3404#endif
3405 {
3406 /* Set the defaults, for the missing parts */
3407 shape_table[idx].shape = SHAPE_BLOCK;
3408 shape_table[idx].blinkwait = 700L;
3409 shape_table[idx].blinkon = 400L;
3410 shape_table[idx].blinkoff = 250L;
3411 }
3412 }
3413
3414 /* Parse the part after the colon */
3415 for (p = colonp + 1; *p && *p != ','; )
3416 {
3417#ifdef FEAT_MOUSESHAPE
3418 if (what == SHAPE_MOUSE)
3419 {
3420 for (i = 0; ; ++i)
3421 {
3422 if (mshape_names[i] == NULL)
3423 {
3424 if (!VIM_ISDIGIT(*p))
3425 return (char_u *)N_("E547: Illegal mouseshape");
3426 if (round == 2)
3427 shape_table[idx].mshape =
3428 getdigits(&p) + MSHAPE_NUMBERED;
3429 else
3430 (void)getdigits(&p);
3431 break;
3432 }
3433 len = (int)STRLEN(mshape_names[i]);
3434 if (STRNICMP(p, mshape_names[i], len) == 0)
3435 {
3436 if (round == 2)
3437 shape_table[idx].mshape = i;
3438 p += len;
3439 break;
3440 }
3441 }
3442 }
3443 else /* if (what == SHAPE_MOUSE) */
3444#endif
3445 {
3446 /*
3447 * First handle the ones with a number argument.
3448 */
3449 i = *p;
3450 len = 0;
3451 if (STRNICMP(p, "ver", 3) == 0)
3452 len = 3;
3453 else if (STRNICMP(p, "hor", 3) == 0)
3454 len = 3;
3455 else if (STRNICMP(p, "blinkwait", 9) == 0)
3456 len = 9;
3457 else if (STRNICMP(p, "blinkon", 7) == 0)
3458 len = 7;
3459 else if (STRNICMP(p, "blinkoff", 8) == 0)
3460 len = 8;
3461 if (len != 0)
3462 {
3463 p += len;
3464 if (!VIM_ISDIGIT(*p))
3465 return (char_u *)N_("E548: digit expected");
3466 n = getdigits(&p);
3467 if (len == 3) /* "ver" or "hor" */
3468 {
3469 if (n == 0)
3470 return (char_u *)N_("E549: Illegal percentage");
3471 if (round == 2)
3472 {
3473 if (TOLOWER_ASC(i) == 'v')
3474 shape_table[idx].shape = SHAPE_VER;
3475 else
3476 shape_table[idx].shape = SHAPE_HOR;
3477 shape_table[idx].percentage = n;
3478 }
3479 }
3480 else if (round == 2)
3481 {
3482 if (len == 9)
3483 shape_table[idx].blinkwait = n;
3484 else if (len == 7)
3485 shape_table[idx].blinkon = n;
3486 else
3487 shape_table[idx].blinkoff = n;
3488 }
3489 }
3490 else if (STRNICMP(p, "block", 5) == 0)
3491 {
3492 if (round == 2)
3493 shape_table[idx].shape = SHAPE_BLOCK;
3494 p += 5;
3495 }
3496 else /* must be a highlight group name then */
3497 {
3498 endp = vim_strchr(p, '-');
3499 if (commap == NULL) /* last part */
3500 {
3501 if (endp == NULL)
3502 endp = p + STRLEN(p); /* find end of part */
3503 }
3504 else if (endp > commap || endp == NULL)
3505 endp = commap;
3506 slashp = vim_strchr(p, '/');
3507 if (slashp != NULL && slashp < endp)
3508 {
3509 /* "group/langmap_group" */
3510 i = syn_check_group(p, (int)(slashp - p));
3511 p = slashp + 1;
3512 }
3513 if (round == 2)
3514 {
3515 shape_table[idx].id = syn_check_group(p,
3516 (int)(endp - p));
3517 shape_table[idx].id_lm = shape_table[idx].id;
3518 if (slashp != NULL && slashp < endp)
3519 shape_table[idx].id = i;
3520 }
3521 p = endp;
3522 }
3523 } /* if (what != SHAPE_MOUSE) */
3524
3525 if (*p == '-')
3526 ++p;
3527 }
3528 }
3529 modep = p;
3530 if (*modep == ',')
3531 ++modep;
3532 }
3533 }
3534
3535 /* If the 's' flag is not given, use the 'v' cursor for 's' */
3536 if (!found_ve)
3537 {
3538#ifdef FEAT_MOUSESHAPE
3539 if (what == SHAPE_MOUSE)
3540 {
3541 shape_table[SHAPE_IDX_VE].mshape = shape_table[SHAPE_IDX_V].mshape;
3542 }
3543 else
3544#endif
3545 {
3546 shape_table[SHAPE_IDX_VE].shape = shape_table[SHAPE_IDX_V].shape;
3547 shape_table[SHAPE_IDX_VE].percentage =
3548 shape_table[SHAPE_IDX_V].percentage;
3549 shape_table[SHAPE_IDX_VE].blinkwait =
3550 shape_table[SHAPE_IDX_V].blinkwait;
3551 shape_table[SHAPE_IDX_VE].blinkon =
3552 shape_table[SHAPE_IDX_V].blinkon;
3553 shape_table[SHAPE_IDX_VE].blinkoff =
3554 shape_table[SHAPE_IDX_V].blinkoff;
3555 shape_table[SHAPE_IDX_VE].id = shape_table[SHAPE_IDX_V].id;
3556 shape_table[SHAPE_IDX_VE].id_lm = shape_table[SHAPE_IDX_V].id_lm;
3557 }
3558 }
3559
3560 return NULL;
3561}
3562
Bram Moolenaarac6e65f2005-08-29 22:25:38 +00003563# if defined(MCH_CURSOR_SHAPE) || defined(FEAT_GUI) \
3564 || defined(FEAT_MOUSESHAPE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003565/*
3566 * Return the index into shape_table[] for the current mode.
3567 * When "mouse" is TRUE, consider indexes valid for the mouse pointer.
3568 */
3569 int
3570get_shape_idx(mouse)
3571 int mouse;
3572{
3573#ifdef FEAT_MOUSESHAPE
3574 if (mouse && (State == HITRETURN || State == ASKMORE))
3575 {
3576# ifdef FEAT_GUI
Bram Moolenaar9588a0f2005-01-08 21:45:39 +00003577 int x, y;
3578 gui_mch_getmouse(&x, &y);
3579 if (Y_2_ROW(y) == Rows - 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003580 return SHAPE_IDX_MOREL;
3581# endif
3582 return SHAPE_IDX_MORE;
3583 }
3584 if (mouse && drag_status_line)
3585 return SHAPE_IDX_SDRAG;
3586# ifdef FEAT_VERTSPLIT
3587 if (mouse && drag_sep_line)
3588 return SHAPE_IDX_VDRAG;
3589# endif
3590#endif
3591 if (!mouse && State == SHOWMATCH)
3592 return SHAPE_IDX_SM;
3593#ifdef FEAT_VREPLACE
3594 if (State & VREPLACE_FLAG)
3595 return SHAPE_IDX_R;
3596#endif
3597 if (State & REPLACE_FLAG)
3598 return SHAPE_IDX_R;
3599 if (State & INSERT)
3600 return SHAPE_IDX_I;
3601 if (State & CMDLINE)
3602 {
3603 if (cmdline_at_end())
3604 return SHAPE_IDX_C;
3605 if (cmdline_overstrike())
3606 return SHAPE_IDX_CR;
3607 return SHAPE_IDX_CI;
3608 }
3609 if (finish_op)
3610 return SHAPE_IDX_O;
3611#ifdef FEAT_VISUAL
3612 if (VIsual_active)
3613 {
3614 if (*p_sel == 'e')
3615 return SHAPE_IDX_VE;
3616 else
3617 return SHAPE_IDX_V;
3618 }
3619#endif
3620 return SHAPE_IDX_N;
3621}
Bram Moolenaarac6e65f2005-08-29 22:25:38 +00003622#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003623
3624# if defined(FEAT_MOUSESHAPE) || defined(PROTO)
3625static int old_mouse_shape = 0;
3626
3627/*
3628 * Set the mouse shape:
3629 * If "shape" is -1, use shape depending on the current mode,
3630 * depending on the current state.
3631 * If "shape" is -2, only update the shape when it's CLINE or STATUS (used
3632 * when the mouse moves off the status or command line).
3633 */
3634 void
3635update_mouseshape(shape_idx)
3636 int shape_idx;
3637{
3638 int new_mouse_shape;
3639
3640 /* Only works in GUI mode. */
Bram Moolenaar6bb68362005-03-22 23:03:44 +00003641 if (!gui.in_use || gui.starting)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003642 return;
3643
3644 /* Postpone the updating when more is to come. Speeds up executing of
3645 * mappings. */
3646 if (shape_idx == -1 && char_avail())
3647 {
3648 postponed_mouseshape = TRUE;
3649 return;
3650 }
3651
Bram Moolenaar14716812006-05-04 21:54:08 +00003652 /* When ignoring the mouse don't change shape on the statusline. */
3653 if (*p_mouse == NUL
3654 && (shape_idx == SHAPE_IDX_CLINE
3655 || shape_idx == SHAPE_IDX_STATUS
3656 || shape_idx == SHAPE_IDX_VSEP))
3657 shape_idx = -2;
3658
Bram Moolenaar071d4272004-06-13 20:20:40 +00003659 if (shape_idx == -2
3660 && old_mouse_shape != shape_table[SHAPE_IDX_CLINE].mshape
3661 && old_mouse_shape != shape_table[SHAPE_IDX_STATUS].mshape
3662 && old_mouse_shape != shape_table[SHAPE_IDX_VSEP].mshape)
3663 return;
3664 if (shape_idx < 0)
3665 new_mouse_shape = shape_table[get_shape_idx(TRUE)].mshape;
3666 else
3667 new_mouse_shape = shape_table[shape_idx].mshape;
3668 if (new_mouse_shape != old_mouse_shape)
3669 {
3670 mch_set_mouse_shape(new_mouse_shape);
3671 old_mouse_shape = new_mouse_shape;
3672 }
3673 postponed_mouseshape = FALSE;
3674}
3675# endif
3676
3677#endif /* CURSOR_SHAPE */
3678
3679
3680#ifdef FEAT_CRYPT
3681/*
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00003682 * Optional encryption support.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003683 * Mohsin Ahmed, mosh@sasi.com, 98-09-24
3684 * Based on zip/crypt sources.
3685 *
3686 * NOTE FOR USA: Since 2000 exporting this code from the USA is allowed to
3687 * most countries. There are a few exceptions, but that still should not be a
3688 * problem since this code was originally created in Europe and India.
Bram Moolenaar40e6a712010-05-16 22:32:54 +02003689 *
3690 * Blowfish addition originally made by Mohsin Ahmed,
3691 * http://www.cs.albany.edu/~mosh 2010-03-14
3692 * Based on blowfish by Bruce Schneier (http://www.schneier.com/blowfish.html)
3693 * and sha256 by Christophe Devine.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003694 */
3695
3696/* from zip.h */
3697
3698typedef unsigned short ush; /* unsigned 16-bit value */
3699typedef unsigned long ulg; /* unsigned 32-bit value */
3700
3701static void make_crc_tab __ARGS((void));
3702
Bram Moolenaard6f676d2005-06-01 21:51:55 +00003703static ulg crc_32_tab[256];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003704
3705/*
3706 * Fill the CRC table.
3707 */
3708 static void
3709make_crc_tab()
3710{
3711 ulg s,t,v;
3712 static int done = FALSE;
3713
3714 if (done)
3715 return;
3716 for (t = 0; t < 256; t++)
3717 {
3718 v = t;
3719 for (s = 0; s < 8; s++)
3720 v = (v >> 1) ^ ((v & 1) * (ulg)0xedb88320L);
3721 crc_32_tab[t] = v;
3722 }
3723 done = TRUE;
3724}
3725
3726#define CRC32(c, b) (crc_32_tab[((int)(c) ^ (b)) & 0xff] ^ ((c) >> 8))
3727
Bram Moolenaar071d4272004-06-13 20:20:40 +00003728static ulg keys[3]; /* keys defining the pseudo-random sequence */
3729
3730/*
Bram Moolenaar04c9baf2010-06-01 23:37:39 +02003731 * Return the next byte in the pseudo-random sequence.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003732 */
Bram Moolenaar04c9baf2010-06-01 23:37:39 +02003733#define DECRYPT_BYTE_ZIP(t) { \
3734 ush temp; \
3735 \
3736 temp = (ush)keys[2] | 2; \
3737 t = (int)(((unsigned)(temp * (temp ^ 1)) >> 8) & 0xff); \
Bram Moolenaar071d4272004-06-13 20:20:40 +00003738}
3739
3740/*
Bram Moolenaar04c9baf2010-06-01 23:37:39 +02003741 * Update the encryption keys with the next byte of plain text.
3742 */
3743#define UPDATE_KEYS_ZIP(c) { \
3744 keys[0] = CRC32(keys[0], (c)); \
3745 keys[1] += keys[0] & 0xff; \
3746 keys[1] = keys[1] * 134775813L + 1; \
3747 keys[2] = CRC32(keys[2], (int)(keys[1] >> 24)); \
3748}
3749
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02003750static int crypt_busy = 0;
3751static ulg saved_keys[3];
3752static int saved_crypt_method;
3753
3754/*
Bram Moolenaar49771f42010-07-20 17:32:38 +02003755 * Return int value for crypt method string:
3756 * 0 for "zip", the old method. Also for any non-valid value.
3757 * 1 for "blowfish".
3758 */
3759 int
3760crypt_method_from_string(s)
3761 char_u *s;
3762{
3763 return *s == 'b' ? 1 : 0;
3764}
3765
3766/*
3767 * Get the crypt method for buffer "buf" as a number.
3768 */
3769 int
3770get_crypt_method(buf)
3771 buf_T *buf;
3772{
3773 return crypt_method_from_string(*buf->b_p_cm == NUL ? p_cm : buf->b_p_cm);
3774}
3775
3776/*
3777 * Set the crypt method for buffer "buf" to "method" using the int value as
3778 * returned by crypt_method_from_string().
3779 */
3780 void
3781set_crypt_method(buf, method)
3782 buf_T *buf;
3783 int method;
3784{
3785 free_string_option(buf->b_p_cm);
3786 buf->b_p_cm = vim_strsave((char_u *)(method == 0 ? "zip" : "blowfish"));
3787}
3788
3789/*
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02003790 * Prepare for initializing encryption. If already doing encryption then save
3791 * the state.
3792 * Must always be called symmetrycally with crypt_pop_state().
3793 */
3794 void
3795crypt_push_state()
3796{
3797 if (crypt_busy == 1)
3798 {
3799 /* save the state */
3800 if (use_crypt_method == 0)
3801 {
3802 saved_keys[0] = keys[0];
3803 saved_keys[1] = keys[1];
3804 saved_keys[2] = keys[2];
3805 }
3806 else
3807 bf_crypt_save();
3808 saved_crypt_method = use_crypt_method;
3809 }
3810 else if (crypt_busy > 1)
3811 EMSG2(_(e_intern2), "crypt_push_state()");
3812 ++crypt_busy;
3813}
3814
3815/*
3816 * End encryption. If doing encryption before crypt_push_state() then restore
3817 * the saved state.
3818 * Must always be called symmetrycally with crypt_push_state().
3819 */
3820 void
3821crypt_pop_state()
3822{
3823 --crypt_busy;
3824 if (crypt_busy == 1)
3825 {
3826 use_crypt_method = saved_crypt_method;
3827 if (use_crypt_method == 0)
3828 {
3829 keys[0] = saved_keys[0];
3830 keys[1] = saved_keys[1];
3831 keys[2] = saved_keys[2];
3832 }
3833 else
3834 bf_crypt_restore();
3835 }
3836}
3837
Bram Moolenaar04c9baf2010-06-01 23:37:39 +02003838/*
3839 * Encrypt "from[len]" into "to[len]".
3840 * "from" and "to" can be equal to encrypt in place.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003841 */
Bram Moolenaar40e6a712010-05-16 22:32:54 +02003842 void
Bram Moolenaar04c9baf2010-06-01 23:37:39 +02003843crypt_encode(from, len, to)
3844 char_u *from;
3845 size_t len;
3846 char_u *to;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003847{
Bram Moolenaar04c9baf2010-06-01 23:37:39 +02003848 size_t i;
3849 int ztemp, t;
3850
3851 if (use_crypt_method == 0)
3852 for (i = 0; i < len; ++i)
3853 {
3854 ztemp = from[i];
3855 DECRYPT_BYTE_ZIP(t);
3856 UPDATE_KEYS_ZIP(ztemp);
3857 to[i] = t ^ ztemp;
3858 }
Bram Moolenaar40e6a712010-05-16 22:32:54 +02003859 else
Bram Moolenaarbbd6afe2010-06-02 20:32:23 +02003860 bf_crypt_encode(from, len, to);
Bram Moolenaar04c9baf2010-06-01 23:37:39 +02003861}
3862
3863/*
3864 * Decrypt "ptr[len]" in place.
3865 */
3866 void
3867crypt_decode(ptr, len)
3868 char_u *ptr;
3869 long len;
3870{
3871 char_u *p;
3872
3873 if (use_crypt_method == 0)
3874 for (p = ptr; p < ptr + len; ++p)
3875 {
3876 ush temp;
3877
3878 temp = (ush)keys[2] | 2;
3879 temp = (int)(((unsigned)(temp * (temp ^ 1)) >> 8) & 0xff);
3880 UPDATE_KEYS_ZIP(*p ^= temp);
3881 }
3882 else
Bram Moolenaarbbd6afe2010-06-02 20:32:23 +02003883 bf_crypt_decode(ptr, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003884}
3885
3886/*
3887 * Initialize the encryption keys and the random header according to
3888 * the given password.
3889 * If "passwd" is NULL or empty, don't do anything.
3890 */
3891 void
3892crypt_init_keys(passwd)
3893 char_u *passwd; /* password string with which to modify keys */
3894{
3895 if (passwd != NULL && *passwd != NUL)
3896 {
Bram Moolenaar04c9baf2010-06-01 23:37:39 +02003897 if (use_crypt_method == 0)
Bram Moolenaarbbd6afe2010-06-02 20:32:23 +02003898 {
3899 char_u *p;
3900
3901 make_crc_tab();
3902 keys[0] = 305419896L;
3903 keys[1] = 591751049L;
3904 keys[2] = 878082192L;
3905 for (p = passwd; *p!= NUL; ++p)
Bram Moolenaar04c9baf2010-06-01 23:37:39 +02003906 {
Bram Moolenaarbbd6afe2010-06-02 20:32:23 +02003907 UPDATE_KEYS_ZIP((int)*p);
Bram Moolenaar04c9baf2010-06-01 23:37:39 +02003908 }
Bram Moolenaarbbd6afe2010-06-02 20:32:23 +02003909 }
Bram Moolenaar04c9baf2010-06-01 23:37:39 +02003910 else
Bram Moolenaarbbd6afe2010-06-02 20:32:23 +02003911 bf_crypt_init_keys(passwd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003912 }
3913}
3914
3915/*
Bram Moolenaar40e6a712010-05-16 22:32:54 +02003916 * Free an allocated crypt key. Clear the text to make sure it doesn't stay
3917 * in memory anywhere.
3918 */
3919 void
3920free_crypt_key(key)
3921 char_u *key;
3922{
3923 char_u *p;
3924
3925 if (key != NULL)
3926 {
3927 for (p = key; *p != NUL; ++p)
Bram Moolenaarbe18d102010-05-22 21:37:53 +02003928 *p = 0;
Bram Moolenaar40e6a712010-05-16 22:32:54 +02003929 vim_free(key);
3930 }
3931}
3932
3933/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003934 * Ask the user for a crypt key.
Bram Moolenaar40e6a712010-05-16 22:32:54 +02003935 * When "store" is TRUE, the new key is stored in the 'key' option, and the
Bram Moolenaar071d4272004-06-13 20:20:40 +00003936 * 'key' option value is returned: Don't free it.
3937 * When "store" is FALSE, the typed key is returned in allocated memory.
3938 * Returns NULL on failure.
3939 */
3940 char_u *
3941get_crypt_key(store, twice)
3942 int store;
3943 int twice; /* Ask for the key twice. */
3944{
3945 char_u *p1, *p2 = NULL;
3946 int round;
3947
3948 for (round = 0; ; ++round)
3949 {
3950 cmdline_star = TRUE;
3951 cmdline_row = msg_row;
3952 p1 = getcmdline_prompt(NUL, round == 0
3953 ? (char_u *)_("Enter encryption key: ")
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00003954 : (char_u *)_("Enter same key again: "), 0, EXPAND_NOTHING,
3955 NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003956 cmdline_star = FALSE;
3957
3958 if (p1 == NULL)
3959 break;
3960
3961 if (round == twice)
3962 {
3963 if (p2 != NULL && STRCMP(p1, p2) != 0)
3964 {
3965 MSG(_("Keys don't match!"));
Bram Moolenaar40e6a712010-05-16 22:32:54 +02003966 free_crypt_key(p1);
3967 free_crypt_key(p2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003968 p2 = NULL;
3969 round = -1; /* do it again */
3970 continue;
3971 }
Bram Moolenaar40e6a712010-05-16 22:32:54 +02003972
Bram Moolenaar071d4272004-06-13 20:20:40 +00003973 if (store)
3974 {
3975 set_option_value((char_u *)"key", 0L, p1, OPT_LOCAL);
Bram Moolenaar40e6a712010-05-16 22:32:54 +02003976 free_crypt_key(p1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003977 p1 = curbuf->b_p_key;
3978 }
3979 break;
3980 }
3981 p2 = p1;
3982 }
3983
3984 /* since the user typed this, no need to wait for return */
3985 need_wait_return = FALSE;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02003986 if (msg_didout)
3987 msg_putchar('\n');
Bram Moolenaar071d4272004-06-13 20:20:40 +00003988 msg_didout = FALSE;
3989
Bram Moolenaar40e6a712010-05-16 22:32:54 +02003990 free_crypt_key(p2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003991 return p1;
3992}
3993
3994#endif /* FEAT_CRYPT */
3995
3996/* TODO: make some #ifdef for this */
3997/*--------[ file searching ]-------------------------------------------------*/
3998/*
3999 * File searching functions for 'path', 'tags' and 'cdpath' options.
4000 * External visible functions:
4001 * vim_findfile_init() creates/initialises the search context
4002 * vim_findfile_free_visited() free list of visited files/dirs of search
4003 * context
4004 * vim_findfile() find a file in the search context
4005 * vim_findfile_cleanup() cleanup/free search context created by
4006 * vim_findfile_init()
4007 *
4008 * All static functions and variables start with 'ff_'
4009 *
4010 * In general it works like this:
4011 * First you create yourself a search context by calling vim_findfile_init().
4012 * It is possible to give a search context from a previous call to
4013 * vim_findfile_init(), so it can be reused. After this you call vim_findfile()
4014 * until you are satisfied with the result or it returns NULL. On every call it
4015 * returns the next file which matches the conditions given to
4016 * vim_findfile_init(). If it doesn't find a next file it returns NULL.
4017 *
4018 * It is possible to call vim_findfile_init() again to reinitialise your search
4019 * with some new parameters. Don't forget to pass your old search context to
4020 * it, so it can reuse it and especially reuse the list of already visited
4021 * directories. If you want to delete the list of already visited directories
4022 * simply call vim_findfile_free_visited().
4023 *
4024 * When you are done call vim_findfile_cleanup() to free the search context.
4025 *
4026 * The function vim_findfile_init() has a long comment, which describes the
4027 * needed parameters.
4028 *
4029 *
4030 *
4031 * ATTENTION:
4032 * ==========
Bram Moolenaar77f66d62007-02-20 02:16:18 +00004033 * Also we use an allocated search context here, this functions are NOT
Bram Moolenaar071d4272004-06-13 20:20:40 +00004034 * thread-safe!!!!!
4035 *
4036 * To minimize parameter passing (or because I'm to lazy), only the
4037 * external visible functions get a search context as a parameter. This is
4038 * then assigned to a static global, which is used throughout the local
4039 * functions.
4040 */
4041
4042/*
4043 * type for the directory search stack
4044 */
4045typedef struct ff_stack
4046{
4047 struct ff_stack *ffs_prev;
4048
4049 /* the fix part (no wildcards) and the part containing the wildcards
4050 * of the search path
4051 */
4052 char_u *ffs_fix_path;
4053#ifdef FEAT_PATH_EXTRA
4054 char_u *ffs_wc_path;
4055#endif
4056
4057 /* files/dirs found in the above directory, matched by the first wildcard
4058 * of wc_part
4059 */
4060 char_u **ffs_filearray;
4061 int ffs_filearray_size;
4062 char_u ffs_filearray_cur; /* needed for partly handled dirs */
4063
4064 /* to store status of partly handled directories
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004065 * 0: we work on this directory for the first time
Bram Moolenaar071d4272004-06-13 20:20:40 +00004066 * 1: this directory was partly searched in an earlier step
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004067 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004068 int ffs_stage;
4069
4070 /* How deep are we in the directory tree?
4071 * Counts backward from value of level parameter to vim_findfile_init
4072 */
4073 int ffs_level;
4074
4075 /* Did we already expand '**' to an empty string? */
4076 int ffs_star_star_empty;
4077} ff_stack_T;
4078
4079/*
4080 * type for already visited directories or files.
4081 */
4082typedef struct ff_visited
4083{
4084 struct ff_visited *ffv_next;
4085
4086#ifdef FEAT_PATH_EXTRA
4087 /* Visited directories are different if the wildcard string are
4088 * different. So we have to save it.
4089 */
4090 char_u *ffv_wc_path;
4091#endif
4092 /* for unix use inode etc for comparison (needed because of links), else
4093 * use filename.
4094 */
4095#ifdef UNIX
Bram Moolenaare1fbddc2009-05-16 19:07:03 +00004096 int ffv_dev_valid; /* ffv_dev and ffv_ino were set */
4097 dev_t ffv_dev; /* device number */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004098 ino_t ffv_ino; /* inode number */
4099#endif
4100 /* The memory for this struct is allocated according to the length of
4101 * ffv_fname.
4102 */
4103 char_u ffv_fname[1]; /* actually longer */
4104} ff_visited_T;
4105
4106/*
4107 * We might have to manage several visited lists during a search.
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00004108 * This is especially needed for the tags option. If tags is set to:
Bram Moolenaar071d4272004-06-13 20:20:40 +00004109 * "./++/tags,./++/TAGS,++/tags" (replace + with *)
4110 * So we have to do 3 searches:
4111 * 1) search from the current files directory downward for the file "tags"
4112 * 2) search from the current files directory downward for the file "TAGS"
4113 * 3) search from Vims current directory downwards for the file "tags"
4114 * As you can see, the first and the third search are for the same file, so for
4115 * the third search we can use the visited list of the first search. For the
4116 * second search we must start from a empty visited list.
4117 * The struct ff_visited_list_hdr is used to manage a linked list of already
4118 * visited lists.
4119 */
4120typedef struct ff_visited_list_hdr
4121{
4122 struct ff_visited_list_hdr *ffvl_next;
4123
4124 /* the filename the attached visited list is for */
4125 char_u *ffvl_filename;
4126
4127 ff_visited_T *ffvl_visited_list;
4128
4129} ff_visited_list_hdr_T;
4130
4131
4132/*
4133 * '**' can be expanded to several directory levels.
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00004134 * Set the default maximum depth.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004135 */
4136#define FF_MAX_STAR_STAR_EXPAND ((char_u)30)
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004137
Bram Moolenaar071d4272004-06-13 20:20:40 +00004138/*
4139 * The search context:
4140 * ffsc_stack_ptr: the stack for the dirs to search
4141 * ffsc_visited_list: the currently active visited list
4142 * ffsc_dir_visited_list: the currently active visited list for search dirs
4143 * ffsc_visited_lists_list: the list of all visited lists
4144 * ffsc_dir_visited_lists_list: the list of all visited lists for search dirs
4145 * ffsc_file_to_search: the file to search for
4146 * ffsc_start_dir: the starting directory, if search path was relative
4147 * ffsc_fix_path: the fix part of the given path (without wildcards)
4148 * Needed for upward search.
4149 * ffsc_wc_path: the part of the given path containing wildcards
4150 * ffsc_level: how many levels of dirs to search downwards
4151 * ffsc_stopdirs_v: array of stop directories for upward search
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004152 * ffsc_find_what: FINDFILE_BOTH, FINDFILE_DIR or FINDFILE_FILE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004153 */
4154typedef struct ff_search_ctx_T
4155{
4156 ff_stack_T *ffsc_stack_ptr;
4157 ff_visited_list_hdr_T *ffsc_visited_list;
4158 ff_visited_list_hdr_T *ffsc_dir_visited_list;
4159 ff_visited_list_hdr_T *ffsc_visited_lists_list;
4160 ff_visited_list_hdr_T *ffsc_dir_visited_lists_list;
4161 char_u *ffsc_file_to_search;
4162 char_u *ffsc_start_dir;
4163 char_u *ffsc_fix_path;
4164#ifdef FEAT_PATH_EXTRA
4165 char_u *ffsc_wc_path;
4166 int ffsc_level;
4167 char_u **ffsc_stopdirs_v;
4168#endif
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004169 int ffsc_find_what;
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00004170} ff_search_ctx_T;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004171
Bram Moolenaar071d4272004-06-13 20:20:40 +00004172/* locally needed functions */
4173#ifdef FEAT_PATH_EXTRA
4174static int ff_check_visited __ARGS((ff_visited_T **, char_u *, char_u *));
4175#else
4176static int ff_check_visited __ARGS((ff_visited_T **, char_u *));
4177#endif
4178static void vim_findfile_free_visited_list __ARGS((ff_visited_list_hdr_T **list_headp));
4179static void ff_free_visited_list __ARGS((ff_visited_T *vl));
4180static ff_visited_list_hdr_T* ff_get_visited_list __ARGS((char_u *, ff_visited_list_hdr_T **list_headp));
4181#ifdef FEAT_PATH_EXTRA
4182static int ff_wc_equal __ARGS((char_u *s1, char_u *s2));
4183#endif
4184
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004185static void ff_push __ARGS((ff_search_ctx_T *search_ctx, ff_stack_T *stack_ptr));
4186static ff_stack_T *ff_pop __ARGS((ff_search_ctx_T *search_ctx));
4187static void ff_clear __ARGS((ff_search_ctx_T *search_ctx));
4188static void ff_free_stack_element __ARGS((ff_stack_T *stack_ptr));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004189#ifdef FEAT_PATH_EXTRA
4190static ff_stack_T *ff_create_stack_element __ARGS((char_u *, char_u *, int, int));
4191#else
4192static ff_stack_T *ff_create_stack_element __ARGS((char_u *, int, int));
4193#endif
4194#ifdef FEAT_PATH_EXTRA
4195static int ff_path_in_stoplist __ARGS((char_u *, int, char_u **));
4196#endif
4197
Bram Moolenaar071d4272004-06-13 20:20:40 +00004198#if 0
4199/*
4200 * if someone likes findfirst/findnext, here are the functions
4201 * NOT TESTED!!
4202 */
4203
4204static void *ff_fn_search_context = NULL;
4205
4206 char_u *
4207vim_findfirst(path, filename, level)
4208 char_u *path;
4209 char_u *filename;
4210 int level;
4211{
4212 ff_fn_search_context =
4213 vim_findfile_init(path, filename, NULL, level, TRUE, FALSE,
4214 ff_fn_search_context, rel_fname);
4215 if (NULL == ff_fn_search_context)
4216 return NULL;
4217 else
4218 return vim_findnext()
4219}
4220
4221 char_u *
4222vim_findnext()
4223{
4224 char_u *ret = vim_findfile(ff_fn_search_context);
4225
4226 if (NULL == ret)
4227 {
4228 vim_findfile_cleanup(ff_fn_search_context);
4229 ff_fn_search_context = NULL;
4230 }
4231 return ret;
4232}
4233#endif
4234
4235/*
4236 * Initialization routine for vim_findfile.
4237 *
Bram Moolenaarbe18d102010-05-22 21:37:53 +02004238 * Returns the newly allocated search context or NULL if an error occurred.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004239 *
4240 * Don't forget to clean up by calling vim_findfile_cleanup() if you are done
4241 * with the search context.
4242 *
4243 * Find the file 'filename' in the directory 'path'.
4244 * The parameter 'path' may contain wildcards. If so only search 'level'
4245 * directories deep. The parameter 'level' is the absolute maximum and is
4246 * not related to restricts given to the '**' wildcard. If 'level' is 100
4247 * and you use '**200' vim_findfile() will stop after 100 levels.
4248 *
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004249 * 'filename' cannot contain wildcards! It is used as-is, no backslashes to
4250 * escape special characters.
4251 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00004252 * If 'stopdirs' is not NULL and nothing is found downward, the search is
4253 * restarted on the next higher directory level. This is repeated until the
4254 * start-directory of a search is contained in 'stopdirs'. 'stopdirs' has the
4255 * format ";*<dirname>*\(;<dirname>\)*;\=$".
4256 *
4257 * If the 'path' is relative, the starting dir for the search is either VIM's
4258 * current dir or if the path starts with "./" the current files dir.
Bram Moolenaarbe18d102010-05-22 21:37:53 +02004259 * If the 'path' is absolute, the starting dir is that part of the path before
Bram Moolenaar071d4272004-06-13 20:20:40 +00004260 * the first wildcard.
4261 *
4262 * Upward search is only done on the starting dir.
4263 *
4264 * If 'free_visited' is TRUE the list of already visited files/directories is
4265 * cleared. Set this to FALSE if you just want to search from another
4266 * directory, but want to be sure that no directory from a previous search is
4267 * searched again. This is useful if you search for a file at different places.
4268 * The list of visited files/dirs can also be cleared with the function
4269 * vim_findfile_free_visited().
4270 *
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004271 * Set the parameter 'find_what' to FINDFILE_DIR if you want to search for
4272 * directories only, FINDFILE_FILE for files only, FINDFILE_BOTH for both.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004273 *
4274 * A search context returned by a previous call to vim_findfile_init() can be
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004275 * passed in the parameter "search_ctx_arg". This context is reused and
4276 * reinitialized with the new parameters. The list of already visited
Bram Moolenaar071d4272004-06-13 20:20:40 +00004277 * directories from this context is only deleted if the parameter
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004278 * "free_visited" is true. Be aware that the passed "search_ctx_arg" is freed
4279 * if the reinitialization fails.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004280 *
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004281 * If you don't have a search context from a previous call "search_ctx_arg"
4282 * must be NULL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004283 *
4284 * This function silently ignores a few errors, vim_findfile() will have
4285 * limited functionality then.
4286 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004287 void *
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004288vim_findfile_init(path, filename, stopdirs, level, free_visited, find_what,
4289 search_ctx_arg, tagfile, rel_fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004290 char_u *path;
4291 char_u *filename;
Bram Moolenaare1fbddc2009-05-16 19:07:03 +00004292 char_u *stopdirs UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004293 int level;
4294 int free_visited;
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004295 int find_what;
4296 void *search_ctx_arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004297 int tagfile;
4298 char_u *rel_fname; /* file name to use for "." */
4299{
4300#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004301 char_u *wc_part;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004302#endif
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004303 ff_stack_T *sptr;
4304 ff_search_ctx_T *search_ctx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004305
4306 /* If a search context is given by the caller, reuse it, else allocate a
4307 * new one.
4308 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004309 if (search_ctx_arg != NULL)
4310 search_ctx = search_ctx_arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004311 else
4312 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004313 search_ctx = (ff_search_ctx_T*)alloc((unsigned)sizeof(ff_search_ctx_T));
4314 if (search_ctx == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004315 goto error_return;
Bram Moolenaar7db5fc82010-05-24 11:59:29 +02004316 vim_memset(search_ctx, 0, sizeof(ff_search_ctx_T));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004317 }
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004318 search_ctx->ffsc_find_what = find_what;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004319
4320 /* clear the search context, but NOT the visited lists */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004321 ff_clear(search_ctx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004322
4323 /* clear visited list if wanted */
4324 if (free_visited == TRUE)
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004325 vim_findfile_free_visited(search_ctx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004326 else
4327 {
4328 /* Reuse old visited lists. Get the visited list for the given
4329 * filename. If no list for the current filename exists, creates a new
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004330 * one. */
4331 search_ctx->ffsc_visited_list = ff_get_visited_list(filename,
4332 &search_ctx->ffsc_visited_lists_list);
4333 if (search_ctx->ffsc_visited_list == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004334 goto error_return;
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004335 search_ctx->ffsc_dir_visited_list = ff_get_visited_list(filename,
4336 &search_ctx->ffsc_dir_visited_lists_list);
4337 if (search_ctx->ffsc_dir_visited_list == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004338 goto error_return;
4339 }
4340
4341 if (ff_expand_buffer == NULL)
4342 {
4343 ff_expand_buffer = (char_u*)alloc(MAXPATHL);
4344 if (ff_expand_buffer == NULL)
4345 goto error_return;
4346 }
4347
4348 /* Store information on starting dir now if path is relative.
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00004349 * If path is absolute, we do that later. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004350 if (path[0] == '.'
4351 && (vim_ispathsep(path[1]) || path[1] == NUL)
4352 && (!tagfile || vim_strchr(p_cpo, CPO_DOTTAG) == NULL)
4353 && rel_fname != NULL)
4354 {
4355 int len = (int)(gettail(rel_fname) - rel_fname);
4356
4357 if (!vim_isAbsName(rel_fname) && len + 1 < MAXPATHL)
4358 {
4359 /* Make the start dir an absolute path name. */
Bram Moolenaarbbebc852005-07-18 21:47:53 +00004360 vim_strncpy(ff_expand_buffer, rel_fname, len);
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004361 search_ctx->ffsc_start_dir = FullName_save(ff_expand_buffer, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004362 }
4363 else
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004364 search_ctx->ffsc_start_dir = vim_strnsave(rel_fname, len);
4365 if (search_ctx->ffsc_start_dir == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004366 goto error_return;
4367 if (*++path != NUL)
4368 ++path;
4369 }
4370 else if (*path == NUL || !vim_isAbsName(path))
4371 {
4372#ifdef BACKSLASH_IN_FILENAME
4373 /* "c:dir" needs "c:" to be expanded, otherwise use current dir */
4374 if (*path != NUL && path[1] == ':')
4375 {
4376 char_u drive[3];
4377
4378 drive[0] = path[0];
4379 drive[1] = ':';
4380 drive[2] = NUL;
4381 if (vim_FullName(drive, ff_expand_buffer, MAXPATHL, TRUE) == FAIL)
4382 goto error_return;
4383 path += 2;
4384 }
4385 else
4386#endif
4387 if (mch_dirname(ff_expand_buffer, MAXPATHL) == FAIL)
4388 goto error_return;
4389
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004390 search_ctx->ffsc_start_dir = vim_strsave(ff_expand_buffer);
4391 if (search_ctx->ffsc_start_dir == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004392 goto error_return;
4393
4394#ifdef BACKSLASH_IN_FILENAME
4395 /* A path that starts with "/dir" is relative to the drive, not to the
4396 * directory (but not for "//machine/dir"). Only use the drive name. */
4397 if ((*path == '/' || *path == '\\')
4398 && path[1] != path[0]
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004399 && search_ctx->ffsc_start_dir[1] == ':')
4400 search_ctx->ffsc_start_dir[2] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004401#endif
4402 }
4403
4404#ifdef FEAT_PATH_EXTRA
4405 /*
4406 * If stopdirs are given, split them into an array of pointers.
4407 * If this fails (mem allocation), there is no upward search at all or a
4408 * stop directory is not recognized -> continue silently.
4409 * If stopdirs just contains a ";" or is empty,
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004410 * search_ctx->ffsc_stopdirs_v will only contain a NULL pointer. This
Bram Moolenaar071d4272004-06-13 20:20:40 +00004411 * is handled as unlimited upward search. See function
4412 * ff_path_in_stoplist() for details.
4413 */
4414 if (stopdirs != NULL)
4415 {
4416 char_u *walker = stopdirs;
4417 int dircount;
4418
4419 while (*walker == ';')
4420 walker++;
4421
4422 dircount = 1;
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004423 search_ctx->ffsc_stopdirs_v =
4424 (char_u **)alloc((unsigned)sizeof(char_u *));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004425
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004426 if (search_ctx->ffsc_stopdirs_v != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004427 {
4428 do
4429 {
4430 char_u *helper;
4431 void *ptr;
4432
4433 helper = walker;
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004434 ptr = vim_realloc(search_ctx->ffsc_stopdirs_v,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004435 (dircount + 1) * sizeof(char_u *));
4436 if (ptr)
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004437 search_ctx->ffsc_stopdirs_v = ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004438 else
4439 /* ignore, keep what we have and continue */
4440 break;
4441 walker = vim_strchr(walker, ';');
4442 if (walker)
4443 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004444 search_ctx->ffsc_stopdirs_v[dircount-1] =
4445 vim_strnsave(helper, (int)(walker - helper));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004446 walker++;
4447 }
4448 else
4449 /* this might be "", which means ascent till top
4450 * of directory tree.
4451 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004452 search_ctx->ffsc_stopdirs_v[dircount-1] =
4453 vim_strsave(helper);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004454
4455 dircount++;
4456
4457 } while (walker != NULL);
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004458 search_ctx->ffsc_stopdirs_v[dircount-1] = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004459 }
4460 }
4461#endif
4462
4463#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004464 search_ctx->ffsc_level = level;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004465
4466 /* split into:
4467 * -fix path
4468 * -wildcard_stuff (might be NULL)
4469 */
4470 wc_part = vim_strchr(path, '*');
4471 if (wc_part != NULL)
4472 {
4473 int llevel;
4474 int len;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00004475 char *errpt;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004476
4477 /* save the fix part of the path */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004478 search_ctx->ffsc_fix_path = vim_strnsave(path, (int)(wc_part - path));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004479
4480 /*
4481 * copy wc_path and add restricts to the '**' wildcard.
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00004482 * The octet after a '**' is used as a (binary) counter.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004483 * So '**3' is transposed to '**^C' ('^C' is ASCII value 3)
4484 * or '**76' is transposed to '**N'( 'N' is ASCII value 76).
4485 * For EBCDIC you get different character values.
4486 * If no restrict is given after '**' the default is used.
Bram Moolenaar21160b92009-11-11 15:56:10 +00004487 * Due to this technique the path looks awful if you print it as a
Bram Moolenaar071d4272004-06-13 20:20:40 +00004488 * string.
4489 */
4490 len = 0;
4491 while (*wc_part != NUL)
4492 {
4493 if (STRNCMP(wc_part, "**", 2) == 0)
4494 {
4495 ff_expand_buffer[len++] = *wc_part++;
4496 ff_expand_buffer[len++] = *wc_part++;
4497
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00004498 llevel = strtol((char *)wc_part, &errpt, 10);
4499 if ((char_u *)errpt != wc_part && llevel > 0 && llevel < 255)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004500 ff_expand_buffer[len++] = llevel;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00004501 else if ((char_u *)errpt != wc_part && llevel == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004502 /* restrict is 0 -> remove already added '**' */
4503 len -= 2;
4504 else
4505 ff_expand_buffer[len++] = FF_MAX_STAR_STAR_EXPAND;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00004506 wc_part = (char_u *)errpt;
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00004507 if (*wc_part != NUL && !vim_ispathsep(*wc_part))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004508 {
4509 EMSG2(_("E343: Invalid path: '**[number]' must be at the end of the path or be followed by '%s'."), PATHSEPSTR);
4510 goto error_return;
4511 }
4512 }
4513 else
4514 ff_expand_buffer[len++] = *wc_part++;
4515 }
4516 ff_expand_buffer[len] = NUL;
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004517 search_ctx->ffsc_wc_path = vim_strsave(ff_expand_buffer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004518
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004519 if (search_ctx->ffsc_wc_path == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004520 goto error_return;
4521 }
4522 else
4523#endif
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004524 search_ctx->ffsc_fix_path = vim_strsave(path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004525
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004526 if (search_ctx->ffsc_start_dir == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004527 {
4528 /* store the fix part as startdir.
4529 * This is needed if the parameter path is fully qualified.
4530 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004531 search_ctx->ffsc_start_dir = vim_strsave(search_ctx->ffsc_fix_path);
4532 if (search_ctx->ffsc_start_dir)
4533 search_ctx->ffsc_fix_path[0] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004534 }
4535
4536 /* create an absolute path */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004537 STRCPY(ff_expand_buffer, search_ctx->ffsc_start_dir);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004538 add_pathsep(ff_expand_buffer);
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004539 STRCAT(ff_expand_buffer, search_ctx->ffsc_fix_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004540 add_pathsep(ff_expand_buffer);
4541
4542 sptr = ff_create_stack_element(ff_expand_buffer,
4543#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004544 search_ctx->ffsc_wc_path,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004545#endif
4546 level, 0);
4547
4548 if (sptr == NULL)
4549 goto error_return;
4550
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004551 ff_push(search_ctx, sptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004552
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004553 search_ctx->ffsc_file_to_search = vim_strsave(filename);
4554 if (search_ctx->ffsc_file_to_search == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004555 goto error_return;
4556
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004557 return search_ctx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004558
4559error_return:
4560 /*
4561 * We clear the search context now!
4562 * Even when the caller gave us a (perhaps valid) context we free it here,
4563 * as we might have already destroyed it.
4564 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004565 vim_findfile_cleanup(search_ctx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004566 return NULL;
4567}
4568
4569#if defined(FEAT_PATH_EXTRA) || defined(PROTO)
4570/*
4571 * Get the stopdir string. Check that ';' is not escaped.
4572 */
4573 char_u *
4574vim_findfile_stopdir(buf)
4575 char_u *buf;
4576{
4577 char_u *r_ptr = buf;
4578
4579 while (*r_ptr != NUL && *r_ptr != ';')
4580 {
4581 if (r_ptr[0] == '\\' && r_ptr[1] == ';')
4582 {
4583 /* overwrite the escape char,
4584 * use STRLEN(r_ptr) to move the trailing '\0'
4585 */
Bram Moolenaar446cb832008-06-24 21:56:24 +00004586 STRMOVE(r_ptr, r_ptr + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004587 r_ptr++;
4588 }
4589 r_ptr++;
4590 }
4591 if (*r_ptr == ';')
4592 {
4593 *r_ptr = 0;
4594 r_ptr++;
4595 }
4596 else if (*r_ptr == NUL)
4597 r_ptr = NULL;
4598 return r_ptr;
4599}
4600#endif
4601
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004602/*
4603 * Clean up the given search context. Can handle a NULL pointer.
4604 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004605 void
4606vim_findfile_cleanup(ctx)
4607 void *ctx;
4608{
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00004609 if (ctx == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004610 return;
4611
Bram Moolenaar071d4272004-06-13 20:20:40 +00004612 vim_findfile_free_visited(ctx);
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004613 ff_clear(ctx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004614 vim_free(ctx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004615}
4616
4617/*
4618 * Find a file in a search context.
4619 * The search context was created with vim_findfile_init() above.
4620 * Return a pointer to an allocated file name or NULL if nothing found.
4621 * To get all matching files call this function until you get NULL.
4622 *
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00004623 * If the passed search_context is NULL, NULL is returned.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004624 *
4625 * The search algorithm is depth first. To change this replace the
4626 * stack with a list (don't forget to leave partly searched directories on the
4627 * top of the list).
4628 */
4629 char_u *
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004630vim_findfile(search_ctx_arg)
4631 void *search_ctx_arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004632{
4633 char_u *file_path;
4634#ifdef FEAT_PATH_EXTRA
4635 char_u *rest_of_wildcards;
4636 char_u *path_end = NULL;
4637#endif
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004638 ff_stack_T *stackp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004639#if defined(FEAT_SEARCHPATH) || defined(FEAT_PATH_EXTRA)
4640 int len;
4641#endif
4642 int i;
4643 char_u *p;
4644#ifdef FEAT_SEARCHPATH
4645 char_u *suf;
4646#endif
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004647 ff_search_ctx_T *search_ctx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004648
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004649 if (search_ctx_arg == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004650 return NULL;
4651
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004652 search_ctx = (ff_search_ctx_T *)search_ctx_arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004653
4654 /*
4655 * filepath is used as buffer for various actions and as the storage to
4656 * return a found filename.
4657 */
4658 if ((file_path = alloc((int)MAXPATHL)) == NULL)
4659 return NULL;
4660
4661#ifdef FEAT_PATH_EXTRA
4662 /* store the end of the start dir -- needed for upward search */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004663 if (search_ctx->ffsc_start_dir != NULL)
4664 path_end = &search_ctx->ffsc_start_dir[
4665 STRLEN(search_ctx->ffsc_start_dir)];
Bram Moolenaar071d4272004-06-13 20:20:40 +00004666#endif
4667
4668#ifdef FEAT_PATH_EXTRA
4669 /* upward search loop */
4670 for (;;)
4671 {
4672#endif
4673 /* downward search loop */
4674 for (;;)
4675 {
4676 /* check if user user wants to stop the search*/
4677 ui_breakcheck();
4678 if (got_int)
4679 break;
4680
4681 /* get directory to work on from stack */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004682 stackp = ff_pop(search_ctx);
4683 if (stackp == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004684 break;
4685
4686 /*
4687 * TODO: decide if we leave this test in
4688 *
4689 * GOOD: don't search a directory(-tree) twice.
4690 * BAD: - check linked list for every new directory entered.
4691 * - check for double files also done below
4692 *
4693 * Here we check if we already searched this directory.
4694 * We already searched a directory if:
4695 * 1) The directory is the same.
4696 * 2) We would use the same wildcard string.
4697 *
4698 * Good if you have links on same directory via several ways
4699 * or you have selfreferences in directories (e.g. SuSE Linux 6.3:
4700 * /etc/rc.d/init.d is linked to /etc/rc.d -> endless loop)
4701 *
4702 * This check is only needed for directories we work on for the
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004703 * first time (hence stackp->ff_filearray == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004704 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004705 if (stackp->ffs_filearray == NULL
4706 && ff_check_visited(&search_ctx->ffsc_dir_visited_list
Bram Moolenaar071d4272004-06-13 20:20:40 +00004707 ->ffvl_visited_list,
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004708 stackp->ffs_fix_path
Bram Moolenaar071d4272004-06-13 20:20:40 +00004709#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004710 , stackp->ffs_wc_path
Bram Moolenaar071d4272004-06-13 20:20:40 +00004711#endif
4712 ) == FAIL)
4713 {
4714#ifdef FF_VERBOSE
4715 if (p_verbose >= 5)
4716 {
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004717 verbose_enter_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004718 smsg((char_u *)"Already Searched: %s (%s)",
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004719 stackp->ffs_fix_path, stackp->ffs_wc_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004720 /* don't overwrite this either */
4721 msg_puts((char_u *)"\n");
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004722 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004723 }
4724#endif
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004725 ff_free_stack_element(stackp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004726 continue;
4727 }
4728#ifdef FF_VERBOSE
4729 else if (p_verbose >= 5)
4730 {
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004731 verbose_enter_scroll();
Bram Moolenaar051b7822005-05-19 21:00:46 +00004732 smsg((char_u *)"Searching: %s (%s)",
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004733 stackp->ffs_fix_path, stackp->ffs_wc_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004734 /* don't overwrite this either */
4735 msg_puts((char_u *)"\n");
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004736 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004737 }
4738#endif
4739
4740 /* check depth */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004741 if (stackp->ffs_level <= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004742 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004743 ff_free_stack_element(stackp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004744 continue;
4745 }
4746
4747 file_path[0] = NUL;
4748
4749 /*
4750 * If no filearray till now expand wildcards
4751 * The function expand_wildcards() can handle an array of paths
4752 * and all possible expands are returned in one array. We use this
4753 * to handle the expansion of '**' into an empty string.
4754 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004755 if (stackp->ffs_filearray == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004756 {
4757 char_u *dirptrs[2];
4758
4759 /* we use filepath to build the path expand_wildcards() should
4760 * expand.
4761 */
4762 dirptrs[0] = file_path;
4763 dirptrs[1] = NULL;
4764
4765 /* if we have a start dir copy it in */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004766 if (!vim_isAbsName(stackp->ffs_fix_path)
4767 && search_ctx->ffsc_start_dir)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004768 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004769 STRCPY(file_path, search_ctx->ffsc_start_dir);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004770 add_pathsep(file_path);
4771 }
4772
4773 /* append the fix part of the search path */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004774 STRCAT(file_path, stackp->ffs_fix_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004775 add_pathsep(file_path);
4776
4777#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004778 rest_of_wildcards = stackp->ffs_wc_path;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004779 if (*rest_of_wildcards != NUL)
4780 {
4781 len = (int)STRLEN(file_path);
4782 if (STRNCMP(rest_of_wildcards, "**", 2) == 0)
4783 {
4784 /* pointer to the restrict byte
4785 * The restrict byte is not a character!
4786 */
4787 p = rest_of_wildcards + 2;
4788
4789 if (*p > 0)
4790 {
4791 (*p)--;
4792 file_path[len++] = '*';
4793 }
4794
4795 if (*p == 0)
4796 {
4797 /* remove '**<numb> from wildcards */
Bram Moolenaar446cb832008-06-24 21:56:24 +00004798 STRMOVE(rest_of_wildcards, rest_of_wildcards + 3);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004799 }
4800 else
4801 rest_of_wildcards += 3;
4802
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004803 if (stackp->ffs_star_star_empty == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004804 {
4805 /* if not done before, expand '**' to empty */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004806 stackp->ffs_star_star_empty = 1;
4807 dirptrs[1] = stackp->ffs_fix_path;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004808 }
4809 }
4810
4811 /*
4812 * Here we copy until the next path separator or the end of
4813 * the path. If we stop at a path separator, there is
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00004814 * still something else left. This is handled below by
Bram Moolenaar071d4272004-06-13 20:20:40 +00004815 * pushing every directory returned from expand_wildcards()
4816 * on the stack again for further search.
4817 */
4818 while (*rest_of_wildcards
4819 && !vim_ispathsep(*rest_of_wildcards))
4820 file_path[len++] = *rest_of_wildcards++;
4821
4822 file_path[len] = NUL;
4823 if (vim_ispathsep(*rest_of_wildcards))
4824 rest_of_wildcards++;
4825 }
4826#endif
4827
4828 /*
4829 * Expand wildcards like "*" and "$VAR".
4830 * If the path is a URL don't try this.
4831 */
4832 if (path_with_url(dirptrs[0]))
4833 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004834 stackp->ffs_filearray = (char_u **)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004835 alloc((unsigned)sizeof(char *));
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004836 if (stackp->ffs_filearray != NULL
4837 && (stackp->ffs_filearray[0]
Bram Moolenaar071d4272004-06-13 20:20:40 +00004838 = vim_strsave(dirptrs[0])) != NULL)
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004839 stackp->ffs_filearray_size = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004840 else
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004841 stackp->ffs_filearray_size = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004842 }
4843 else
4844 expand_wildcards((dirptrs[1] == NULL) ? 1 : 2, dirptrs,
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004845 &stackp->ffs_filearray_size,
4846 &stackp->ffs_filearray,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004847 EW_DIR|EW_ADDSLASH|EW_SILENT);
4848
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004849 stackp->ffs_filearray_cur = 0;
4850 stackp->ffs_stage = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004851 }
4852#ifdef FEAT_PATH_EXTRA
4853 else
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004854 rest_of_wildcards = &stackp->ffs_wc_path[
4855 STRLEN(stackp->ffs_wc_path)];
Bram Moolenaar071d4272004-06-13 20:20:40 +00004856#endif
4857
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004858 if (stackp->ffs_stage == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004859 {
4860 /* this is the first time we work on this directory */
4861#ifdef FEAT_PATH_EXTRA
4862 if (*rest_of_wildcards == NUL)
4863#endif
4864 {
4865 /*
4866 * we don't have further wildcards to expand, so we have to
4867 * check for the final file now
4868 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004869 for (i = stackp->ffs_filearray_cur;
4870 i < stackp->ffs_filearray_size; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004871 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004872 if (!path_with_url(stackp->ffs_filearray[i])
4873 && !mch_isdir(stackp->ffs_filearray[i]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004874 continue; /* not a directory */
4875
Bram Moolenaar21160b92009-11-11 15:56:10 +00004876 /* prepare the filename to be checked for existence
Bram Moolenaar071d4272004-06-13 20:20:40 +00004877 * below */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004878 STRCPY(file_path, stackp->ffs_filearray[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004879 add_pathsep(file_path);
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004880 STRCAT(file_path, search_ctx->ffsc_file_to_search);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004881
4882 /*
4883 * Try without extra suffix and then with suffixes
4884 * from 'suffixesadd'.
4885 */
4886#ifdef FEAT_SEARCHPATH
4887 len = (int)STRLEN(file_path);
4888 suf = curbuf->b_p_sua;
4889 for (;;)
4890#endif
4891 {
4892 /* if file exists and we didn't already find it */
4893 if ((path_with_url(file_path)
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004894 || (mch_getperm(file_path) >= 0
4895 && (search_ctx->ffsc_find_what
4896 == FINDFILE_BOTH
4897 || ((search_ctx->ffsc_find_what
4898 == FINDFILE_DIR)
4899 == mch_isdir(file_path)))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004900#ifndef FF_VERBOSE
4901 && (ff_check_visited(
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004902 &search_ctx->ffsc_visited_list->ffvl_visited_list,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004903 file_path
4904#ifdef FEAT_PATH_EXTRA
4905 , (char_u *)""
4906#endif
4907 ) == OK)
4908#endif
4909 )
4910 {
4911#ifdef FF_VERBOSE
4912 if (ff_check_visited(
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004913 &search_ctx->ffsc_visited_list->ffvl_visited_list,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004914 file_path
4915#ifdef FEAT_PATH_EXTRA
4916 , (char_u *)""
4917#endif
4918 ) == FAIL)
4919 {
4920 if (p_verbose >= 5)
4921 {
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004922 verbose_enter_scroll();
Bram Moolenaar051b7822005-05-19 21:00:46 +00004923 smsg((char_u *)"Already: %s",
Bram Moolenaar071d4272004-06-13 20:20:40 +00004924 file_path);
4925 /* don't overwrite this either */
4926 msg_puts((char_u *)"\n");
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004927 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004928 }
4929 continue;
4930 }
4931#endif
4932
4933 /* push dir to examine rest of subdirs later */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004934 stackp->ffs_filearray_cur = i + 1;
4935 ff_push(search_ctx, stackp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004936
Bram Moolenaar6bab9fa2009-01-22 20:32:12 +00004937 if (!path_with_url(file_path))
4938 simplify_filename(file_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004939 if (mch_dirname(ff_expand_buffer, MAXPATHL)
4940 == OK)
4941 {
4942 p = shorten_fname(file_path,
4943 ff_expand_buffer);
4944 if (p != NULL)
Bram Moolenaar446cb832008-06-24 21:56:24 +00004945 STRMOVE(file_path, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004946 }
4947#ifdef FF_VERBOSE
4948 if (p_verbose >= 5)
4949 {
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004950 verbose_enter_scroll();
Bram Moolenaar051b7822005-05-19 21:00:46 +00004951 smsg((char_u *)"HIT: %s", file_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004952 /* don't overwrite this either */
4953 msg_puts((char_u *)"\n");
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00004954 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004955 }
4956#endif
4957 return file_path;
4958 }
4959
4960#ifdef FEAT_SEARCHPATH
4961 /* Not found or found already, try next suffix. */
4962 if (*suf == NUL)
4963 break;
4964 copy_option_part(&suf, file_path + len,
4965 MAXPATHL - len, ",");
4966#endif
4967 }
4968 }
4969 }
4970#ifdef FEAT_PATH_EXTRA
4971 else
4972 {
4973 /*
4974 * still wildcards left, push the directories for further
4975 * search
4976 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004977 for (i = stackp->ffs_filearray_cur;
4978 i < stackp->ffs_filearray_size; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004979 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004980 if (!mch_isdir(stackp->ffs_filearray[i]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004981 continue; /* not a directory */
4982
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004983 ff_push(search_ctx,
4984 ff_create_stack_element(
4985 stackp->ffs_filearray[i],
4986 rest_of_wildcards,
4987 stackp->ffs_level - 1, 0));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004988 }
4989 }
4990#endif
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00004991 stackp->ffs_filearray_cur = 0;
4992 stackp->ffs_stage = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004993 }
4994
4995#ifdef FEAT_PATH_EXTRA
4996 /*
4997 * if wildcards contains '**' we have to descent till we reach the
4998 * leaves of the directory tree.
4999 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005000 if (STRNCMP(stackp->ffs_wc_path, "**", 2) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005001 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005002 for (i = stackp->ffs_filearray_cur;
5003 i < stackp->ffs_filearray_size; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005004 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005005 if (fnamecmp(stackp->ffs_filearray[i],
5006 stackp->ffs_fix_path) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005007 continue; /* don't repush same directory */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005008 if (!mch_isdir(stackp->ffs_filearray[i]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005009 continue; /* not a directory */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005010 ff_push(search_ctx,
5011 ff_create_stack_element(stackp->ffs_filearray[i],
5012 stackp->ffs_wc_path, stackp->ffs_level - 1, 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005013 }
5014 }
5015#endif
5016
5017 /* we are done with the current directory */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005018 ff_free_stack_element(stackp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005019
5020 }
5021
5022#ifdef FEAT_PATH_EXTRA
5023 /* If we reached this, we didn't find anything downwards.
5024 * Let's check if we should do an upward search.
5025 */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005026 if (search_ctx->ffsc_start_dir
5027 && search_ctx->ffsc_stopdirs_v != NULL && !got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005028 {
5029 ff_stack_T *sptr;
5030
5031 /* is the last starting directory in the stop list? */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005032 if (ff_path_in_stoplist(search_ctx->ffsc_start_dir,
5033 (int)(path_end - search_ctx->ffsc_start_dir),
5034 search_ctx->ffsc_stopdirs_v) == TRUE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005035 break;
5036
5037 /* cut of last dir */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005038 while (path_end > search_ctx->ffsc_start_dir
5039 && vim_ispathsep(*path_end))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005040 path_end--;
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005041 while (path_end > search_ctx->ffsc_start_dir
5042 && !vim_ispathsep(path_end[-1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005043 path_end--;
5044 *path_end = 0;
5045 path_end--;
5046
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005047 if (*search_ctx->ffsc_start_dir == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005048 break;
5049
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005050 STRCPY(file_path, search_ctx->ffsc_start_dir);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005051 add_pathsep(file_path);
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005052 STRCAT(file_path, search_ctx->ffsc_fix_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005053
5054 /* create a new stack entry */
5055 sptr = ff_create_stack_element(file_path,
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005056 search_ctx->ffsc_wc_path, search_ctx->ffsc_level, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005057 if (sptr == NULL)
5058 break;
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005059 ff_push(search_ctx, sptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005060 }
5061 else
5062 break;
5063 }
5064#endif
5065
5066 vim_free(file_path);
5067 return NULL;
5068}
5069
5070/*
5071 * Free the list of lists of visited files and directories
5072 * Can handle it if the passed search_context is NULL;
5073 */
5074 void
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005075vim_findfile_free_visited(search_ctx_arg)
5076 void *search_ctx_arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005077{
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005078 ff_search_ctx_T *search_ctx;
5079
5080 if (search_ctx_arg == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005081 return;
5082
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005083 search_ctx = (ff_search_ctx_T *)search_ctx_arg;
5084 vim_findfile_free_visited_list(&search_ctx->ffsc_visited_lists_list);
5085 vim_findfile_free_visited_list(&search_ctx->ffsc_dir_visited_lists_list);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005086}
5087
5088 static void
5089vim_findfile_free_visited_list(list_headp)
5090 ff_visited_list_hdr_T **list_headp;
5091{
5092 ff_visited_list_hdr_T *vp;
5093
5094 while (*list_headp != NULL)
5095 {
5096 vp = (*list_headp)->ffvl_next;
5097 ff_free_visited_list((*list_headp)->ffvl_visited_list);
5098
5099 vim_free((*list_headp)->ffvl_filename);
5100 vim_free(*list_headp);
5101 *list_headp = vp;
5102 }
5103 *list_headp = NULL;
5104}
5105
5106 static void
5107ff_free_visited_list(vl)
5108 ff_visited_T *vl;
5109{
5110 ff_visited_T *vp;
5111
5112 while (vl != NULL)
5113 {
5114 vp = vl->ffv_next;
5115#ifdef FEAT_PATH_EXTRA
5116 vim_free(vl->ffv_wc_path);
5117#endif
5118 vim_free(vl);
5119 vl = vp;
5120 }
5121 vl = NULL;
5122}
5123
5124/*
5125 * Returns the already visited list for the given filename. If none is found it
5126 * allocates a new one.
5127 */
5128 static ff_visited_list_hdr_T*
5129ff_get_visited_list(filename, list_headp)
5130 char_u *filename;
5131 ff_visited_list_hdr_T **list_headp;
5132{
5133 ff_visited_list_hdr_T *retptr = NULL;
5134
5135 /* check if a visited list for the given filename exists */
5136 if (*list_headp != NULL)
5137 {
5138 retptr = *list_headp;
5139 while (retptr != NULL)
5140 {
5141 if (fnamecmp(filename, retptr->ffvl_filename) == 0)
5142 {
5143#ifdef FF_VERBOSE
5144 if (p_verbose >= 5)
5145 {
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00005146 verbose_enter_scroll();
Bram Moolenaar051b7822005-05-19 21:00:46 +00005147 smsg((char_u *)"ff_get_visited_list: FOUND list for %s",
Bram Moolenaar071d4272004-06-13 20:20:40 +00005148 filename);
5149 /* don't overwrite this either */
5150 msg_puts((char_u *)"\n");
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00005151 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005152 }
5153#endif
5154 return retptr;
5155 }
5156 retptr = retptr->ffvl_next;
5157 }
5158 }
5159
5160#ifdef FF_VERBOSE
5161 if (p_verbose >= 5)
5162 {
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00005163 verbose_enter_scroll();
Bram Moolenaar051b7822005-05-19 21:00:46 +00005164 smsg((char_u *)"ff_get_visited_list: new list for %s", filename);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005165 /* don't overwrite this either */
5166 msg_puts((char_u *)"\n");
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00005167 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005168 }
5169#endif
5170
5171 /*
5172 * if we reach this we didn't find a list and we have to allocate new list
5173 */
5174 retptr = (ff_visited_list_hdr_T*)alloc((unsigned)sizeof(*retptr));
5175 if (retptr == NULL)
5176 return NULL;
5177
5178 retptr->ffvl_visited_list = NULL;
5179 retptr->ffvl_filename = vim_strsave(filename);
5180 if (retptr->ffvl_filename == NULL)
5181 {
5182 vim_free(retptr);
5183 return NULL;
5184 }
5185 retptr->ffvl_next = *list_headp;
5186 *list_headp = retptr;
5187
5188 return retptr;
5189}
5190
5191#ifdef FEAT_PATH_EXTRA
5192/*
5193 * check if two wildcard paths are equal. Returns TRUE or FALSE.
5194 * They are equal if:
5195 * - both paths are NULL
5196 * - they have the same length
5197 * - char by char comparison is OK
5198 * - the only differences are in the counters behind a '**', so
5199 * '**\20' is equal to '**\24'
5200 */
5201 static int
5202ff_wc_equal(s1, s2)
5203 char_u *s1;
5204 char_u *s2;
5205{
5206 int i;
5207
5208 if (s1 == s2)
5209 return TRUE;
5210
5211 if (s1 == NULL || s2 == NULL)
5212 return FALSE;
5213
5214 if (STRLEN(s1) != STRLEN(s2))
5215 return FAIL;
5216
5217 for (i = 0; s1[i] != NUL && s2[i] != NUL; i++)
5218 {
5219 if (s1[i] != s2[i]
5220#ifdef CASE_INSENSITIVE_FILENAME
5221 && TOUPPER_LOC(s1[i]) != TOUPPER_LOC(s2[i])
5222#endif
5223 )
5224 {
5225 if (i >= 2)
5226 if (s1[i-1] == '*' && s1[i-2] == '*')
5227 continue;
5228 else
5229 return FAIL;
5230 else
5231 return FAIL;
5232 }
5233 }
5234 return TRUE;
5235}
5236#endif
5237
5238/*
5239 * maintains the list of already visited files and dirs
5240 * returns FAIL if the given file/dir is already in the list
5241 * returns OK if it is newly added
5242 *
5243 * TODO: What to do on memory allocation problems?
5244 * -> return TRUE - Better the file is found several times instead of
5245 * never.
5246 */
5247 static int
5248ff_check_visited(visited_list, fname
5249#ifdef FEAT_PATH_EXTRA
5250 , wc_path
5251#endif
5252 )
5253 ff_visited_T **visited_list;
5254 char_u *fname;
5255#ifdef FEAT_PATH_EXTRA
5256 char_u *wc_path;
5257#endif
5258{
5259 ff_visited_T *vp;
5260#ifdef UNIX
5261 struct stat st;
5262 int url = FALSE;
5263#endif
5264
5265 /* For an URL we only compare the name, otherwise we compare the
5266 * device/inode (unix) or the full path name (not Unix). */
5267 if (path_with_url(fname))
5268 {
Bram Moolenaarbbebc852005-07-18 21:47:53 +00005269 vim_strncpy(ff_expand_buffer, fname, MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005270#ifdef UNIX
5271 url = TRUE;
5272#endif
5273 }
5274 else
5275 {
5276 ff_expand_buffer[0] = NUL;
5277#ifdef UNIX
5278 if (mch_stat((char *)fname, &st) < 0)
5279#else
5280 if (vim_FullName(fname, ff_expand_buffer, MAXPATHL, TRUE) == FAIL)
5281#endif
5282 return FAIL;
5283 }
5284
5285 /* check against list of already visited files */
5286 for (vp = *visited_list; vp != NULL; vp = vp->ffv_next)
5287 {
5288 if (
5289#ifdef UNIX
Bram Moolenaare1fbddc2009-05-16 19:07:03 +00005290 !url ? (vp->ffv_dev_valid && vp->ffv_dev == st.st_dev
5291 && vp->ffv_ino == st.st_ino)
5292 :
Bram Moolenaar071d4272004-06-13 20:20:40 +00005293#endif
5294 fnamecmp(vp->ffv_fname, ff_expand_buffer) == 0
5295 )
5296 {
5297#ifdef FEAT_PATH_EXTRA
5298 /* are the wildcard parts equal */
5299 if (ff_wc_equal(vp->ffv_wc_path, wc_path) == TRUE)
5300#endif
5301 /* already visited */
5302 return FAIL;
5303 }
5304 }
5305
5306 /*
5307 * New file/dir. Add it to the list of visited files/dirs.
5308 */
5309 vp = (ff_visited_T *)alloc((unsigned)(sizeof(ff_visited_T)
5310 + STRLEN(ff_expand_buffer)));
5311
5312 if (vp != NULL)
5313 {
5314#ifdef UNIX
5315 if (!url)
5316 {
Bram Moolenaare1fbddc2009-05-16 19:07:03 +00005317 vp->ffv_dev_valid = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005318 vp->ffv_ino = st.st_ino;
5319 vp->ffv_dev = st.st_dev;
5320 vp->ffv_fname[0] = NUL;
5321 }
5322 else
5323 {
Bram Moolenaare1fbddc2009-05-16 19:07:03 +00005324 vp->ffv_dev_valid = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005325#endif
5326 STRCPY(vp->ffv_fname, ff_expand_buffer);
5327#ifdef UNIX
5328 }
5329#endif
5330#ifdef FEAT_PATH_EXTRA
5331 if (wc_path != NULL)
5332 vp->ffv_wc_path = vim_strsave(wc_path);
5333 else
5334 vp->ffv_wc_path = NULL;
5335#endif
5336
5337 vp->ffv_next = *visited_list;
5338 *visited_list = vp;
5339 }
5340
5341 return OK;
5342}
5343
5344/*
5345 * create stack element from given path pieces
5346 */
5347 static ff_stack_T *
5348ff_create_stack_element(fix_part,
5349#ifdef FEAT_PATH_EXTRA
5350 wc_part,
5351#endif
5352 level, star_star_empty)
5353 char_u *fix_part;
5354#ifdef FEAT_PATH_EXTRA
5355 char_u *wc_part;
5356#endif
5357 int level;
5358 int star_star_empty;
5359{
5360 ff_stack_T *new;
5361
5362 new = (ff_stack_T *)alloc((unsigned)sizeof(ff_stack_T));
5363 if (new == NULL)
5364 return NULL;
5365
5366 new->ffs_prev = NULL;
5367 new->ffs_filearray = NULL;
5368 new->ffs_filearray_size = 0;
5369 new->ffs_filearray_cur = 0;
5370 new->ffs_stage = 0;
5371 new->ffs_level = level;
5372 new->ffs_star_star_empty = star_star_empty;;
5373
5374 /* the following saves NULL pointer checks in vim_findfile */
5375 if (fix_part == NULL)
5376 fix_part = (char_u *)"";
5377 new->ffs_fix_path = vim_strsave(fix_part);
5378
5379#ifdef FEAT_PATH_EXTRA
5380 if (wc_part == NULL)
5381 wc_part = (char_u *)"";
5382 new->ffs_wc_path = vim_strsave(wc_part);
5383#endif
5384
5385 if (new->ffs_fix_path == NULL
5386#ifdef FEAT_PATH_EXTRA
5387 || new->ffs_wc_path == NULL
5388#endif
5389 )
5390 {
5391 ff_free_stack_element(new);
5392 new = NULL;
5393 }
5394
5395 return new;
5396}
5397
5398/*
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005399 * Push a dir on the directory stack.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005400 */
5401 static void
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005402ff_push(search_ctx, stack_ptr)
5403 ff_search_ctx_T *search_ctx;
5404 ff_stack_T *stack_ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005405{
5406 /* check for NULL pointer, not to return an error to the user, but
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005407 * to prevent a crash */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005408 if (stack_ptr != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005409 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005410 stack_ptr->ffs_prev = search_ctx->ffsc_stack_ptr;
5411 search_ctx->ffsc_stack_ptr = stack_ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005412 }
5413}
5414
5415/*
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005416 * Pop a dir from the directory stack.
5417 * Returns NULL if stack is empty.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005418 */
5419 static ff_stack_T *
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005420ff_pop(search_ctx)
5421 ff_search_ctx_T *search_ctx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005422{
5423 ff_stack_T *sptr;
5424
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005425 sptr = search_ctx->ffsc_stack_ptr;
5426 if (search_ctx->ffsc_stack_ptr != NULL)
5427 search_ctx->ffsc_stack_ptr = search_ctx->ffsc_stack_ptr->ffs_prev;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005428
5429 return sptr;
5430}
5431
5432/*
5433 * free the given stack element
5434 */
5435 static void
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005436ff_free_stack_element(stack_ptr)
5437 ff_stack_T *stack_ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005438{
5439 /* vim_free handles possible NULL pointers */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005440 vim_free(stack_ptr->ffs_fix_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005441#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005442 vim_free(stack_ptr->ffs_wc_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005443#endif
5444
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005445 if (stack_ptr->ffs_filearray != NULL)
5446 FreeWild(stack_ptr->ffs_filearray_size, stack_ptr->ffs_filearray);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005447
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005448 vim_free(stack_ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005449}
5450
5451/*
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005452 * Clear the search context, but NOT the visited list.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005453 */
5454 static void
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005455ff_clear(search_ctx)
5456 ff_search_ctx_T *search_ctx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005457{
5458 ff_stack_T *sptr;
5459
5460 /* clear up stack */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005461 while ((sptr = ff_pop(search_ctx)) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005462 ff_free_stack_element(sptr);
5463
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005464 vim_free(search_ctx->ffsc_file_to_search);
5465 vim_free(search_ctx->ffsc_start_dir);
5466 vim_free(search_ctx->ffsc_fix_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005467#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005468 vim_free(search_ctx->ffsc_wc_path);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005469#endif
5470
5471#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005472 if (search_ctx->ffsc_stopdirs_v != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005473 {
5474 int i = 0;
5475
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005476 while (search_ctx->ffsc_stopdirs_v[i] != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005477 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005478 vim_free(search_ctx->ffsc_stopdirs_v[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005479 i++;
5480 }
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005481 vim_free(search_ctx->ffsc_stopdirs_v);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005482 }
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005483 search_ctx->ffsc_stopdirs_v = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005484#endif
5485
5486 /* reset everything */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005487 search_ctx->ffsc_file_to_search = NULL;
5488 search_ctx->ffsc_start_dir = NULL;
5489 search_ctx->ffsc_fix_path = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005490#ifdef FEAT_PATH_EXTRA
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005491 search_ctx->ffsc_wc_path = NULL;
5492 search_ctx->ffsc_level = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005493#endif
5494}
5495
5496#ifdef FEAT_PATH_EXTRA
5497/*
5498 * check if the given path is in the stopdirs
5499 * returns TRUE if yes else FALSE
5500 */
5501 static int
5502ff_path_in_stoplist(path, path_len, stopdirs_v)
5503 char_u *path;
5504 int path_len;
5505 char_u **stopdirs_v;
5506{
5507 int i = 0;
5508
5509 /* eat up trailing path separators, except the first */
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00005510 while (path_len > 1 && vim_ispathsep(path[path_len - 1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005511 path_len--;
5512
5513 /* if no path consider it as match */
5514 if (path_len == 0)
5515 return TRUE;
5516
5517 for (i = 0; stopdirs_v[i] != NULL; i++)
5518 {
5519 if ((int)STRLEN(stopdirs_v[i]) > path_len)
5520 {
5521 /* match for parent directory. So '/home' also matches
5522 * '/home/rks'. Check for PATHSEP in stopdirs_v[i], else
5523 * '/home/r' would also match '/home/rks'
5524 */
5525 if (fnamencmp(stopdirs_v[i], path, path_len) == 0
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00005526 && vim_ispathsep(stopdirs_v[i][path_len]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005527 return TRUE;
5528 }
5529 else
5530 {
5531 if (fnamecmp(stopdirs_v[i], path) == 0)
5532 return TRUE;
5533 }
5534 }
5535 return FALSE;
5536}
5537#endif
5538
5539#if defined(FEAT_SEARCHPATH) || defined(PROTO)
5540/*
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005541 * Find the file name "ptr[len]" in the path. Also finds directory names.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005542 *
5543 * On the first call set the parameter 'first' to TRUE to initialize
5544 * the search. For repeating calls to FALSE.
5545 *
5546 * Repeating calls will return other files called 'ptr[len]' from the path.
5547 *
5548 * Only on the first call 'ptr' and 'len' are used. For repeating calls they
5549 * don't need valid values.
5550 *
5551 * If nothing found on the first call the option FNAME_MESS will issue the
5552 * message:
5553 * 'Can't find file "<file>" in path'
5554 * On repeating calls:
5555 * 'No more file "<file>" found in path'
5556 *
5557 * options:
5558 * FNAME_MESS give error message when not found
5559 *
5560 * Uses NameBuff[]!
5561 *
5562 * Returns an allocated string for the file name. NULL for error.
5563 *
5564 */
5565 char_u *
5566find_file_in_path(ptr, len, options, first, rel_fname)
5567 char_u *ptr; /* file name */
5568 int len; /* length of file name */
5569 int options;
5570 int first; /* use count'th matching file name */
5571 char_u *rel_fname; /* file name searching relative to */
5572{
5573 return find_file_in_path_option(ptr, len, options, first,
5574 *curbuf->b_p_path == NUL ? p_path : curbuf->b_p_path,
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005575 FINDFILE_BOTH, rel_fname, curbuf->b_p_sua);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005576}
5577
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005578static char_u *ff_file_to_find = NULL;
5579static void *fdip_search_ctx = NULL;
5580
5581#if defined(EXITFREE)
5582 static void
5583free_findfile()
5584{
5585 vim_free(ff_file_to_find);
5586 vim_findfile_cleanup(fdip_search_ctx);
5587}
5588#endif
5589
Bram Moolenaar071d4272004-06-13 20:20:40 +00005590/*
5591 * Find the directory name "ptr[len]" in the path.
5592 *
5593 * options:
5594 * FNAME_MESS give error message when not found
5595 *
5596 * Uses NameBuff[]!
5597 *
5598 * Returns an allocated string for the file name. NULL for error.
5599 */
5600 char_u *
5601find_directory_in_path(ptr, len, options, rel_fname)
5602 char_u *ptr; /* file name */
5603 int len; /* length of file name */
5604 int options;
5605 char_u *rel_fname; /* file name searching relative to */
5606{
5607 return find_file_in_path_option(ptr, len, options, TRUE, p_cdpath,
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005608 FINDFILE_DIR, rel_fname, (char_u *)"");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005609}
5610
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00005611 char_u *
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005612find_file_in_path_option(ptr, len, options, first, path_option, find_what, rel_fname, suffixes)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005613 char_u *ptr; /* file name */
5614 int len; /* length of file name */
5615 int options;
5616 int first; /* use count'th matching file name */
5617 char_u *path_option; /* p_path or p_cdpath */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005618 int find_what; /* FINDFILE_FILE, _DIR or _BOTH */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005619 char_u *rel_fname; /* file name we are looking relative to. */
Bram Moolenaar433f7c82006-03-21 21:29:36 +00005620 char_u *suffixes; /* list of suffixes, 'suffixesadd' option */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005621{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005622 static char_u *dir;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005623 static int did_findfile_init = FALSE;
5624 char_u save_char;
5625 char_u *file_name = NULL;
5626 char_u *buf = NULL;
5627 int rel_to_curdir;
5628#ifdef AMIGA
5629 struct Process *proc = (struct Process *)FindTask(0L);
5630 APTR save_winptr = proc->pr_WindowPtr;
5631
5632 /* Avoid a requester here for a volume that doesn't exist. */
5633 proc->pr_WindowPtr = (APTR)-1L;
5634#endif
5635
5636 if (first == TRUE)
5637 {
5638 /* copy file name into NameBuff, expanding environment variables */
5639 save_char = ptr[len];
5640 ptr[len] = NUL;
5641 expand_env(ptr, NameBuff, MAXPATHL);
5642 ptr[len] = save_char;
5643
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005644 vim_free(ff_file_to_find);
5645 ff_file_to_find = vim_strsave(NameBuff);
5646 if (ff_file_to_find == NULL) /* out of memory */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005647 {
5648 file_name = NULL;
5649 goto theend;
5650 }
5651 }
5652
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005653 rel_to_curdir = (ff_file_to_find[0] == '.'
5654 && (ff_file_to_find[1] == NUL
5655 || vim_ispathsep(ff_file_to_find[1])
5656 || (ff_file_to_find[1] == '.'
5657 && (ff_file_to_find[2] == NUL
5658 || vim_ispathsep(ff_file_to_find[2])))));
5659 if (vim_isAbsName(ff_file_to_find)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005660 /* "..", "../path", "." and "./path": don't use the path_option */
5661 || rel_to_curdir
5662#if defined(MSWIN) || defined(MSDOS) || defined(OS2)
5663 /* handle "\tmp" as absolute path */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005664 || vim_ispathsep(ff_file_to_find[0])
Bram Moolenaar21160b92009-11-11 15:56:10 +00005665 /* handle "c:name" as absolute path */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005666 || (ff_file_to_find[0] != NUL && ff_file_to_find[1] == ':')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005667#endif
5668#ifdef AMIGA
5669 /* handle ":tmp" as absolute path */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005670 || ff_file_to_find[0] == ':'
Bram Moolenaar071d4272004-06-13 20:20:40 +00005671#endif
5672 )
5673 {
5674 /*
5675 * Absolute path, no need to use "path_option".
5676 * If this is not a first call, return NULL. We already returned a
5677 * filename on the first call.
5678 */
5679 if (first == TRUE)
5680 {
5681 int l;
5682 int run;
5683
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005684 if (path_with_url(ff_file_to_find))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005685 {
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005686 file_name = vim_strsave(ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005687 goto theend;
5688 }
5689
5690 /* When FNAME_REL flag given first use the directory of the file.
5691 * Otherwise or when this fails use the current directory. */
5692 for (run = 1; run <= 2; ++run)
5693 {
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005694 l = (int)STRLEN(ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005695 if (run == 1
5696 && rel_to_curdir
5697 && (options & FNAME_REL)
5698 && rel_fname != NULL
5699 && STRLEN(rel_fname) + l < MAXPATHL)
5700 {
5701 STRCPY(NameBuff, rel_fname);
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005702 STRCPY(gettail(NameBuff), ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005703 l = (int)STRLEN(NameBuff);
5704 }
5705 else
5706 {
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005707 STRCPY(NameBuff, ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005708 run = 2;
5709 }
5710
5711 /* When the file doesn't exist, try adding parts of
5712 * 'suffixesadd'. */
Bram Moolenaar433f7c82006-03-21 21:29:36 +00005713 buf = suffixes;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005714 for (;;)
5715 {
5716 if (
5717#ifdef DJGPP
5718 /* "C:" by itself will fail for mch_getperm(),
5719 * assume it's always valid. */
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005720 (find_what != FINDFILE_FILE && NameBuff[0] != NUL
Bram Moolenaar071d4272004-06-13 20:20:40 +00005721 && NameBuff[1] == ':'
5722 && NameBuff[2] == NUL) ||
5723#endif
5724 (mch_getperm(NameBuff) >= 0
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005725 && (find_what == FINDFILE_BOTH
5726 || ((find_what == FINDFILE_DIR)
5727 == mch_isdir(NameBuff)))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005728 {
5729 file_name = vim_strsave(NameBuff);
5730 goto theend;
5731 }
5732 if (*buf == NUL)
5733 break;
5734 copy_option_part(&buf, NameBuff + l, MAXPATHL - l, ",");
5735 }
5736 }
5737 }
5738 }
5739 else
5740 {
5741 /*
5742 * Loop over all paths in the 'path' or 'cdpath' option.
5743 * When "first" is set, first setup to the start of the option.
5744 * Otherwise continue to find the next match.
5745 */
5746 if (first == TRUE)
5747 {
5748 /* vim_findfile_free_visited can handle a possible NULL pointer */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005749 vim_findfile_free_visited(fdip_search_ctx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005750 dir = path_option;
5751 did_findfile_init = FALSE;
5752 }
5753
5754 for (;;)
5755 {
5756 if (did_findfile_init)
5757 {
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005758 file_name = vim_findfile(fdip_search_ctx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005759 if (file_name != NULL)
5760 break;
5761
5762 did_findfile_init = FALSE;
5763 }
5764 else
5765 {
5766 char_u *r_ptr;
5767
5768 if (dir == NULL || *dir == NUL)
5769 {
5770 /* We searched all paths of the option, now we can
5771 * free the search context. */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005772 vim_findfile_cleanup(fdip_search_ctx);
5773 fdip_search_ctx = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005774 break;
5775 }
5776
5777 if ((buf = alloc((int)(MAXPATHL))) == NULL)
5778 break;
5779
5780 /* copy next path */
5781 buf[0] = 0;
5782 copy_option_part(&dir, buf, MAXPATHL, " ,");
5783
5784#ifdef FEAT_PATH_EXTRA
5785 /* get the stopdir string */
5786 r_ptr = vim_findfile_stopdir(buf);
5787#else
5788 r_ptr = NULL;
5789#endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005790 fdip_search_ctx = vim_findfile_init(buf, ff_file_to_find,
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005791 r_ptr, 100, FALSE, find_what,
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005792 fdip_search_ctx, FALSE, rel_fname);
5793 if (fdip_search_ctx != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005794 did_findfile_init = TRUE;
5795 vim_free(buf);
5796 }
5797 }
5798 }
5799 if (file_name == NULL && (options & FNAME_MESS))
5800 {
5801 if (first == TRUE)
5802 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005803 if (find_what == FINDFILE_DIR)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005804 EMSG2(_("E344: Can't find directory \"%s\" in cdpath"),
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005805 ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005806 else
5807 EMSG2(_("E345: Can't find file \"%s\" in path"),
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005808 ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005809 }
5810 else
5811 {
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00005812 if (find_what == FINDFILE_DIR)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005813 EMSG2(_("E346: No more directory \"%s\" found in cdpath"),
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005814 ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005815 else
5816 EMSG2(_("E347: No more file \"%s\" found in path"),
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005817 ff_file_to_find);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005818 }
5819 }
5820
5821theend:
5822#ifdef AMIGA
5823 proc->pr_WindowPtr = save_winptr;
5824#endif
5825 return file_name;
5826}
5827
5828#endif /* FEAT_SEARCHPATH */
5829
5830/*
5831 * Change directory to "new_dir". If FEAT_SEARCHPATH is defined, search
5832 * 'cdpath' for relative directory names, otherwise just mch_chdir().
5833 */
5834 int
5835vim_chdir(new_dir)
5836 char_u *new_dir;
5837{
5838#ifndef FEAT_SEARCHPATH
5839 return mch_chdir((char *)new_dir);
5840#else
5841 char_u *dir_name;
5842 int r;
5843
5844 dir_name = find_directory_in_path(new_dir, (int)STRLEN(new_dir),
5845 FNAME_MESS, curbuf->b_ffname);
5846 if (dir_name == NULL)
5847 return -1;
5848 r = mch_chdir((char *)dir_name);
5849 vim_free(dir_name);
5850 return r;
5851#endif
5852}
5853
5854/*
Bram Moolenaarbbebc852005-07-18 21:47:53 +00005855 * Get user name from machine-specific function.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005856 * Returns the user name in "buf[len]".
Bram Moolenaarbbebc852005-07-18 21:47:53 +00005857 * Some systems are quite slow in obtaining the user name (Windows NT), thus
5858 * cache the result.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005859 * Returns OK or FAIL.
5860 */
5861 int
5862get_user_name(buf, len)
5863 char_u *buf;
5864 int len;
5865{
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005866 if (username == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005867 {
5868 if (mch_get_user_name(buf, len) == FAIL)
5869 return FAIL;
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005870 username = vim_strsave(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005871 }
5872 else
Bram Moolenaarbbebc852005-07-18 21:47:53 +00005873 vim_strncpy(buf, username, len - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005874 return OK;
5875}
5876
5877#ifndef HAVE_QSORT
5878/*
5879 * Our own qsort(), for systems that don't have it.
5880 * It's simple and slow. From the K&R C book.
5881 */
5882 void
5883qsort(base, elm_count, elm_size, cmp)
5884 void *base;
5885 size_t elm_count;
5886 size_t elm_size;
5887 int (*cmp) __ARGS((const void *, const void *));
5888{
5889 char_u *buf;
5890 char_u *p1;
5891 char_u *p2;
5892 int i, j;
5893 int gap;
5894
5895 buf = alloc((unsigned)elm_size);
5896 if (buf == NULL)
5897 return;
5898
5899 for (gap = elm_count / 2; gap > 0; gap /= 2)
5900 for (i = gap; i < elm_count; ++i)
5901 for (j = i - gap; j >= 0; j -= gap)
5902 {
5903 /* Compare the elements. */
5904 p1 = (char_u *)base + j * elm_size;
5905 p2 = (char_u *)base + (j + gap) * elm_size;
5906 if ((*cmp)((void *)p1, (void *)p2) <= 0)
5907 break;
Bram Moolenaar21160b92009-11-11 15:56:10 +00005908 /* Exchange the elements. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005909 mch_memmove(buf, p1, elm_size);
5910 mch_memmove(p1, p2, elm_size);
5911 mch_memmove(p2, buf, elm_size);
5912 }
5913
5914 vim_free(buf);
5915}
5916#endif
5917
Bram Moolenaar071d4272004-06-13 20:20:40 +00005918/*
5919 * Sort an array of strings.
5920 */
5921static int
5922#ifdef __BORLANDC__
5923_RTLENTRYF
5924#endif
5925sort_compare __ARGS((const void *s1, const void *s2));
5926
5927 static int
5928#ifdef __BORLANDC__
5929_RTLENTRYF
5930#endif
5931sort_compare(s1, s2)
5932 const void *s1;
5933 const void *s2;
5934{
5935 return STRCMP(*(char **)s1, *(char **)s2);
5936}
5937
5938 void
5939sort_strings(files, count)
5940 char_u **files;
5941 int count;
5942{
5943 qsort((void *)files, (size_t)count, sizeof(char_u *), sort_compare);
5944}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005945
5946#if !defined(NO_EXPANDPATH) || defined(PROTO)
5947/*
5948 * Compare path "p[]" to "q[]".
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005949 * If "maxlen" >= 0 compare "p[maxlen]" to "q[maxlen]"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005950 * Return value like strcmp(p, q), but consider path separators.
5951 */
5952 int
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005953pathcmp(p, q, maxlen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005954 const char *p, *q;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005955 int maxlen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005956{
5957 int i;
Bram Moolenaar86b68352004-12-27 21:59:20 +00005958 const char *s = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005959
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005960 for (i = 0; maxlen < 0 || i < maxlen; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005961 {
5962 /* End of "p": check if "q" also ends or just has a slash. */
5963 if (p[i] == NUL)
5964 {
5965 if (q[i] == NUL) /* full match */
5966 return 0;
5967 s = q;
5968 break;
5969 }
5970
5971 /* End of "q": check if "p" just has a slash. */
5972 if (q[i] == NUL)
5973 {
5974 s = p;
5975 break;
5976 }
5977
5978 if (
5979#ifdef CASE_INSENSITIVE_FILENAME
5980 TOUPPER_LOC(p[i]) != TOUPPER_LOC(q[i])
5981#else
5982 p[i] != q[i]
5983#endif
5984#ifdef BACKSLASH_IN_FILENAME
5985 /* consider '/' and '\\' to be equal */
5986 && !((p[i] == '/' && q[i] == '\\')
5987 || (p[i] == '\\' && q[i] == '/'))
5988#endif
5989 )
5990 {
5991 if (vim_ispathsep(p[i]))
5992 return -1;
5993 if (vim_ispathsep(q[i]))
5994 return 1;
5995 return ((char_u *)p)[i] - ((char_u *)q)[i]; /* no match */
5996 }
5997 }
Bram Moolenaar86b68352004-12-27 21:59:20 +00005998 if (s == NULL) /* "i" ran into "maxlen" */
5999 return 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006000
6001 /* ignore a trailing slash, but not "//" or ":/" */
Bram Moolenaar86b68352004-12-27 21:59:20 +00006002 if (s[i + 1] == NUL
6003 && i > 0
6004 && !after_pathsep((char_u *)s, (char_u *)s + i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006005#ifdef BACKSLASH_IN_FILENAME
Bram Moolenaar86b68352004-12-27 21:59:20 +00006006 && (s[i] == '/' || s[i] == '\\')
Bram Moolenaar071d4272004-06-13 20:20:40 +00006007#else
Bram Moolenaar86b68352004-12-27 21:59:20 +00006008 && s[i] == '/'
Bram Moolenaar071d4272004-06-13 20:20:40 +00006009#endif
Bram Moolenaar86b68352004-12-27 21:59:20 +00006010 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00006011 return 0; /* match with trailing slash */
6012 if (s == q)
6013 return -1; /* no match */
6014 return 1;
6015}
6016#endif
6017
Bram Moolenaar071d4272004-06-13 20:20:40 +00006018/*
6019 * The putenv() implementation below comes from the "screen" program.
6020 * Included with permission from Juergen Weigert.
6021 * See pty.c for the copyright notice.
6022 */
6023
6024/*
6025 * putenv -- put value into environment
6026 *
6027 * Usage: i = putenv (string)
6028 * int i;
6029 * char *string;
6030 *
6031 * where string is of the form <name>=<value>.
6032 * Putenv returns 0 normally, -1 on error (not enough core for malloc).
6033 *
6034 * Putenv may need to add a new name into the environment, or to
6035 * associate a value longer than the current value with a particular
6036 * name. So, to make life simpler, putenv() copies your entire
6037 * environment into the heap (i.e. malloc()) from the stack
6038 * (i.e. where it resides when your process is initiated) the first
6039 * time you call it.
6040 *
6041 * (history removed, not very interesting. See the "screen" sources.)
6042 */
6043
6044#if !defined(HAVE_SETENV) && !defined(HAVE_PUTENV)
6045
6046#define EXTRASIZE 5 /* increment to add to env. size */
6047
6048static int envsize = -1; /* current size of environment */
6049#ifndef MACOS_CLASSIC
6050extern
6051#endif
6052 char **environ; /* the global which is your env. */
6053
6054static int findenv __ARGS((char *name)); /* look for a name in the env. */
6055static int newenv __ARGS((void)); /* copy env. from stack to heap */
6056static int moreenv __ARGS((void)); /* incr. size of env. */
6057
6058 int
6059putenv(string)
6060 const char *string;
6061{
6062 int i;
6063 char *p;
6064
6065 if (envsize < 0)
6066 { /* first time putenv called */
6067 if (newenv() < 0) /* copy env. to heap */
6068 return -1;
6069 }
6070
6071 i = findenv((char *)string); /* look for name in environment */
6072
6073 if (i < 0)
6074 { /* name must be added */
6075 for (i = 0; environ[i]; i++);
6076 if (i >= (envsize - 1))
6077 { /* need new slot */
6078 if (moreenv() < 0)
6079 return -1;
6080 }
6081 p = (char *)alloc((unsigned)(strlen(string) + 1));
6082 if (p == NULL) /* not enough core */
6083 return -1;
6084 environ[i + 1] = 0; /* new end of env. */
6085 }
6086 else
6087 { /* name already in env. */
6088 p = vim_realloc(environ[i], strlen(string) + 1);
6089 if (p == NULL)
6090 return -1;
6091 }
6092 sprintf(p, "%s", string); /* copy into env. */
6093 environ[i] = p;
6094
6095 return 0;
6096}
6097
6098 static int
6099findenv(name)
6100 char *name;
6101{
6102 char *namechar, *envchar;
6103 int i, found;
6104
6105 found = 0;
6106 for (i = 0; environ[i] && !found; i++)
6107 {
6108 envchar = environ[i];
6109 namechar = name;
6110 while (*namechar && *namechar != '=' && (*namechar == *envchar))
6111 {
6112 namechar++;
6113 envchar++;
6114 }
6115 found = ((*namechar == '\0' || *namechar == '=') && *envchar == '=');
6116 }
6117 return found ? i - 1 : -1;
6118}
6119
6120 static int
6121newenv()
6122{
6123 char **env, *elem;
6124 int i, esize;
6125
6126#ifdef MACOS
6127 /* for Mac a new, empty environment is created */
6128 i = 0;
6129#else
6130 for (i = 0; environ[i]; i++)
6131 ;
6132#endif
6133 esize = i + EXTRASIZE + 1;
6134 env = (char **)alloc((unsigned)(esize * sizeof (elem)));
6135 if (env == NULL)
6136 return -1;
6137
6138#ifndef MACOS
6139 for (i = 0; environ[i]; i++)
6140 {
6141 elem = (char *)alloc((unsigned)(strlen(environ[i]) + 1));
6142 if (elem == NULL)
6143 return -1;
6144 env[i] = elem;
6145 strcpy(elem, environ[i]);
6146 }
6147#endif
6148
6149 env[i] = 0;
6150 environ = env;
6151 envsize = esize;
6152 return 0;
6153}
6154
6155 static int
6156moreenv()
6157{
6158 int esize;
6159 char **env;
6160
6161 esize = envsize + EXTRASIZE;
6162 env = (char **)vim_realloc((char *)environ, esize * sizeof (*env));
6163 if (env == 0)
6164 return -1;
6165 environ = env;
6166 envsize = esize;
6167 return 0;
6168}
6169
6170# ifdef USE_VIMPTY_GETENV
6171 char_u *
6172vimpty_getenv(string)
6173 const char_u *string;
6174{
6175 int i;
6176 char_u *p;
6177
6178 if (envsize < 0)
6179 return NULL;
6180
6181 i = findenv((char *)string);
6182
6183 if (i < 0)
6184 return NULL;
6185
6186 p = vim_strchr((char_u *)environ[i], '=');
6187 return (p + 1);
6188}
6189# endif
6190
6191#endif /* !defined(HAVE_SETENV) && !defined(HAVE_PUTENV) */
Bram Moolenaarc4a06d32005-06-07 21:04:49 +00006192
Bram Moolenaarc4956c82006-03-12 21:58:43 +00006193#if defined(FEAT_EVAL) || defined(FEAT_SPELL) || defined(PROTO)
Bram Moolenaarc4a06d32005-06-07 21:04:49 +00006194/*
6195 * Return 0 for not writable, 1 for writable file, 2 for a dir which we have
6196 * rights to write into.
6197 */
6198 int
6199filewritable(fname)
6200 char_u *fname;
6201{
6202 int retval = 0;
6203#if defined(UNIX) || defined(VMS)
6204 int perm = 0;
6205#endif
6206
6207#if defined(UNIX) || defined(VMS)
6208 perm = mch_getperm(fname);
6209#endif
6210#ifndef MACOS_CLASSIC /* TODO: get either mch_writable or mch_access */
6211 if (
6212# ifdef WIN3264
6213 mch_writable(fname) &&
6214# else
6215# if defined(UNIX) || defined(VMS)
6216 (perm & 0222) &&
6217# endif
6218# endif
6219 mch_access((char *)fname, W_OK) == 0
6220 )
6221#endif
6222 {
6223 ++retval;
6224 if (mch_isdir(fname))
6225 ++retval;
6226 }
6227 return retval;
6228}
6229#endif
Bram Moolenaar6bab4d12005-06-16 21:53:56 +00006230
6231/*
6232 * Print an error message with one or two "%s" and one or two string arguments.
6233 * This is not in message.c to avoid a warning for prototypes.
6234 */
6235 int
6236emsg3(s, a1, a2)
6237 char_u *s, *a1, *a2;
6238{
Bram Moolenaareb3593b2006-04-22 22:33:57 +00006239 if (emsg_not_now())
Bram Moolenaar6bab4d12005-06-16 21:53:56 +00006240 return TRUE; /* no error messages at the moment */
Bram Moolenaar6f192452007-11-08 19:49:02 +00006241#ifdef HAVE_STDARG_H
6242 vim_snprintf((char *)IObuff, IOSIZE, (char *)s, a1, a2);
6243#else
Bram Moolenaareb3593b2006-04-22 22:33:57 +00006244 vim_snprintf((char *)IObuff, IOSIZE, (char *)s, (long_u)a1, (long_u)a2);
Bram Moolenaar6f192452007-11-08 19:49:02 +00006245#endif
Bram Moolenaar6bab4d12005-06-16 21:53:56 +00006246 return emsg(IObuff);
6247}
6248
6249/*
6250 * Print an error message with one "%ld" and one long int argument.
6251 * This is not in message.c to avoid a warning for prototypes.
6252 */
6253 int
6254emsgn(s, n)
6255 char_u *s;
6256 long n;
6257{
Bram Moolenaareb3593b2006-04-22 22:33:57 +00006258 if (emsg_not_now())
Bram Moolenaar6bab4d12005-06-16 21:53:56 +00006259 return TRUE; /* no error messages at the moment */
6260 vim_snprintf((char *)IObuff, IOSIZE, (char *)s, n);
6261 return emsg(IObuff);
6262}
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006263
6264#if defined(FEAT_SPELL) || defined(FEAT_PERSISTENT_UNDO) || defined(PROTO)
6265/*
6266 * Read 2 bytes from "fd" and turn them into an int, MSB first.
6267 */
6268 int
6269get2c(fd)
6270 FILE *fd;
6271{
Bram Moolenaar9db58062010-05-29 20:33:07 +02006272 int n;
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006273
6274 n = getc(fd);
6275 n = (n << 8) + getc(fd);
6276 return n;
6277}
6278
6279/*
6280 * Read 3 bytes from "fd" and turn them into an int, MSB first.
6281 */
6282 int
6283get3c(fd)
6284 FILE *fd;
6285{
Bram Moolenaar9db58062010-05-29 20:33:07 +02006286 int n;
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006287
6288 n = getc(fd);
6289 n = (n << 8) + getc(fd);
6290 n = (n << 8) + getc(fd);
6291 return n;
6292}
6293
6294/*
6295 * Read 4 bytes from "fd" and turn them into an int, MSB first.
6296 */
6297 int
6298get4c(fd)
6299 FILE *fd;
6300{
Bram Moolenaar9db58062010-05-29 20:33:07 +02006301 int n;
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006302
6303 n = getc(fd);
6304 n = (n << 8) + getc(fd);
6305 n = (n << 8) + getc(fd);
6306 n = (n << 8) + getc(fd);
6307 return n;
6308}
6309
6310/*
6311 * Read 8 bytes from "fd" and turn them into a time_t, MSB first.
6312 */
6313 time_t
6314get8ctime(fd)
6315 FILE *fd;
6316{
6317 time_t n = 0;
6318 int i;
6319
6320 for (i = 0; i < 8; ++i)
6321 n = (n << 8) + getc(fd);
6322 return n;
6323}
6324
6325/*
6326 * Read a string of length "cnt" from "fd" into allocated memory.
6327 * Returns NULL when out of memory or unable to read that many bytes.
6328 */
6329 char_u *
6330read_string(fd, cnt)
6331 FILE *fd;
6332 int cnt;
6333{
6334 char_u *str;
6335 int i;
6336 int c;
6337
6338 /* allocate memory */
6339 str = alloc((unsigned)cnt + 1);
6340 if (str != NULL)
6341 {
6342 /* Read the string. Quit when running into the EOF. */
6343 for (i = 0; i < cnt; ++i)
6344 {
6345 c = getc(fd);
6346 if (c == EOF)
6347 {
6348 vim_free(str);
6349 return NULL;
6350 }
6351 str[i] = c;
6352 }
6353 str[i] = NUL;
6354 }
6355 return str;
6356}
6357
6358/*
6359 * Write a number to file "fd", MSB first, in "len" bytes.
6360 */
6361 int
6362put_bytes(fd, nr, len)
6363 FILE *fd;
6364 long_u nr;
6365 int len;
6366{
6367 int i;
6368
6369 for (i = len - 1; i >= 0; --i)
6370 if (putc((int)(nr >> (i * 8)), fd) == EOF)
6371 return FAIL;
6372 return OK;
6373}
6374
6375#ifdef _MSC_VER
6376# if (_MSC_VER <= 1200)
6377/* This line is required for VC6 without the service pack. Also see the
6378 * matching #pragma below. */
6379 # pragma optimize("", off)
6380# endif
6381#endif
6382
6383/*
6384 * Write time_t to file "fd" in 8 bytes.
6385 */
6386 void
6387put_time(fd, the_time)
6388 FILE *fd;
6389 time_t the_time;
6390{
6391 int c;
6392 int i;
6393 time_t wtime = the_time;
6394
6395 /* time_t can be up to 8 bytes in size, more than long_u, thus we
6396 * can't use put_bytes() here.
6397 * Another problem is that ">>" may do an arithmetic shift that keeps the
Bram Moolenaar644fdff2010-05-30 13:26:21 +02006398 * sign. This happens for large values of wtime. A cast to long_u may
6399 * truncate if time_t is 8 bytes. So only use a cast when it is 4 bytes,
6400 * it's safe to assume that long_u is 4 bytes or more and when using 8
6401 * bytes the top bit won't be set. */
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006402 for (i = 7; i >= 0; --i)
6403 {
6404 if (i + 1 > (int)sizeof(time_t))
6405 /* ">>" doesn't work well when shifting more bits than avail */
6406 putc(0, fd);
6407 else
6408 {
Bram Moolenaar644fdff2010-05-30 13:26:21 +02006409#if defined(SIZEOF_TIME_T) && SIZEOF_TIME_T > 4
Bram Moolenaarbbd6afe2010-06-02 20:32:23 +02006410 c = (int)(wtime >> (i * 8));
Bram Moolenaar644fdff2010-05-30 13:26:21 +02006411#else
Bram Moolenaarbbd6afe2010-06-02 20:32:23 +02006412 c = (int)((long_u)wtime >> (i * 8));
Bram Moolenaar644fdff2010-05-30 13:26:21 +02006413#endif
Bram Moolenaarcdf04202010-05-29 15:11:47 +02006414 putc(c, fd);
6415 }
6416 }
6417}
6418
6419#ifdef _MSC_VER
6420# if (_MSC_VER <= 1200)
6421 # pragma optimize("", on)
6422# endif
6423#endif
6424
6425#endif