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