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