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