blob: e615f96b505b17546469d817e37bb9d17e2de84f [file] [log] [blame]
Bram Moolenaaredf3f972016-08-29 22:49:24 +02001/* vi:set ts=8 sts=4 sw=4 noet:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
9
10/*
11 * misc2.c: Various functions.
12 */
13#include "vim.h"
14
Bram Moolenaarf461c8e2005-06-25 23:04:51 +000015static char_u *username = NULL; /* cached result of mch_get_user_name() */
16
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010017static int coladvance2(pos_T *pos, int addspaces, int finetune, colnr_T wcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018
19/*
20 * Return TRUE if in the current mode we need to use virtual.
21 */
22 int
Bram Moolenaar9b578142016-01-30 19:39:49 +010023virtual_active(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +000024{
25 /* While an operator is being executed we return "virtual_op", because
26 * VIsual_active has already been reset, thus we can't check for "block"
27 * being used. */
28 if (virtual_op != MAYBE)
29 return virtual_op;
30 return (ve_flags == VE_ALL
Bram Moolenaar071d4272004-06-13 20:20:40 +000031 || ((ve_flags & VE_BLOCK) && VIsual_active && VIsual_mode == Ctrl_V)
Bram Moolenaar071d4272004-06-13 20:20:40 +000032 || ((ve_flags & VE_INSERT) && (State & INSERT)));
33}
34
35/*
36 * Get the screen position of the cursor.
37 */
38 int
Bram Moolenaar9b578142016-01-30 19:39:49 +010039getviscol(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +000040{
41 colnr_T x;
42
43 getvvcol(curwin, &curwin->w_cursor, &x, NULL, NULL);
44 return (int)x;
45}
46
47/*
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +000048 * Go to column "wcol", and add/insert white space as necessary to get the
Bram Moolenaar071d4272004-06-13 20:20:40 +000049 * cursor in that column.
50 * The caller must have saved the cursor line for undo!
51 */
52 int
Bram Moolenaar9b578142016-01-30 19:39:49 +010053coladvance_force(colnr_T wcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +000054{
55 int rc = coladvance2(&curwin->w_cursor, TRUE, FALSE, wcol);
56
57 if (wcol == MAXCOL)
58 curwin->w_valid &= ~VALID_VIRTCOL;
59 else
60 {
61 /* Virtcol is valid */
62 curwin->w_valid |= VALID_VIRTCOL;
63 curwin->w_virtcol = wcol;
64 }
65 return rc;
66}
Bram Moolenaar071d4272004-06-13 20:20:40 +000067
68/*
Bram Moolenaar977239e2019-01-11 16:16:01 +010069 * Get the screen position of character col with a coladd in the cursor line.
70 */
71 int
Bram Moolenaarfc3abf42019-01-24 15:54:21 +010072getviscol2(colnr_T col, colnr_T coladd UNUSED)
Bram Moolenaar977239e2019-01-11 16:16:01 +010073{
74 colnr_T x;
75 pos_T pos;
76
77 pos.lnum = curwin->w_cursor.lnum;
78 pos.col = col;
Bram Moolenaar977239e2019-01-11 16:16:01 +010079 pos.coladd = coladd;
Bram Moolenaar977239e2019-01-11 16:16:01 +010080 getvvcol(curwin, &pos, &x, NULL, NULL);
81 return (int)x;
82}
83
84/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000085 * Try to advance the Cursor to the specified screen column.
86 * If virtual editing: fine tune the cursor position.
87 * Note that all virtual positions off the end of a line should share
88 * a curwin->w_cursor.col value (n.b. this is equal to STRLEN(line)),
89 * beginning at coladd 0.
90 *
91 * return OK if desired column is reached, FAIL if not
92 */
93 int
Bram Moolenaar9b578142016-01-30 19:39:49 +010094coladvance(colnr_T wcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +000095{
96 int rc = getvpos(&curwin->w_cursor, wcol);
97
98 if (wcol == MAXCOL || rc == FAIL)
99 curwin->w_valid &= ~VALID_VIRTCOL;
Bram Moolenaardfccaf02004-12-31 20:56:11 +0000100 else if (*ml_get_cursor() != TAB)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000101 {
Bram Moolenaardfccaf02004-12-31 20:56:11 +0000102 /* Virtcol is valid when not on a TAB */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000103 curwin->w_valid |= VALID_VIRTCOL;
104 curwin->w_virtcol = wcol;
105 }
106 return rc;
107}
108
109/*
110 * Return in "pos" the position of the cursor advanced to screen column "wcol".
111 * return OK if desired column is reached, FAIL if not
112 */
113 int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100114getvpos(pos_T *pos, colnr_T wcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000115{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000116 return coladvance2(pos, FALSE, virtual_active(), wcol);
117}
118
119 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100120coladvance2(
121 pos_T *pos,
122 int addspaces, /* change the text to achieve our goal? */
123 int finetune, /* change char offset for the exact column */
124 colnr_T wcol) /* column to move to */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000125{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000126 int idx;
127 char_u *ptr;
128 char_u *line;
129 colnr_T col = 0;
130 int csize = 0;
131 int one_more;
132#ifdef FEAT_LINEBREAK
133 int head = 0;
134#endif
135
Bram Moolenaarefd2bf12006-03-16 21:41:35 +0000136 one_more = (State & INSERT)
137 || restart_edit != NUL
Bram Moolenaarefd2bf12006-03-16 21:41:35 +0000138 || (VIsual_active && *p_sel != 'o')
Bram Moolenaar29ddebe2019-01-26 17:28:26 +0100139 || ((ve_flags & VE_ONEMORE) && wcol < MAXCOL) ;
Bram Moolenaara1381de2009-11-03 15:44:21 +0000140 line = ml_get_buf(curbuf, pos->lnum, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000141
142 if (wcol >= MAXCOL)
143 {
144 idx = (int)STRLEN(line) - 1 + one_more;
145 col = wcol;
146
Bram Moolenaar071d4272004-06-13 20:20:40 +0000147 if ((addspaces || finetune) && !VIsual_active)
148 {
149 curwin->w_curswant = linetabsize(line) + one_more;
150 if (curwin->w_curswant > 0)
151 --curwin->w_curswant;
152 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000153 }
154 else
155 {
Bram Moolenaar02631462017-09-22 15:20:32 +0200156 int width = curwin->w_width - win_col_off(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000157
Bram Moolenaarebefac62005-12-28 22:39:57 +0000158 if (finetune
Bram Moolenaar071d4272004-06-13 20:20:40 +0000159 && curwin->w_p_wrap
Bram Moolenaar071d4272004-06-13 20:20:40 +0000160 && curwin->w_width != 0
Bram Moolenaar071d4272004-06-13 20:20:40 +0000161 && wcol >= (colnr_T)width)
162 {
163 csize = linetabsize(line);
164 if (csize > 0)
165 csize--;
166
Bram Moolenaarebefac62005-12-28 22:39:57 +0000167 if (wcol / width > (colnr_T)csize / width
168 && ((State & INSERT) == 0 || (int)wcol > csize + 1))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000169 {
170 /* In case of line wrapping don't move the cursor beyond the
Bram Moolenaarebefac62005-12-28 22:39:57 +0000171 * right screen edge. In Insert mode allow going just beyond
172 * the last character (like what happens when typing and
173 * reaching the right window edge). */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000174 wcol = (csize / width + 1) * width - 1;
175 }
176 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000177
Bram Moolenaar071d4272004-06-13 20:20:40 +0000178 ptr = line;
179 while (col <= wcol && *ptr != NUL)
180 {
181 /* Count a tab for what it's worth (if list mode not on) */
182#ifdef FEAT_LINEBREAK
Bram Moolenaar597a4222014-06-25 14:39:50 +0200183 csize = win_lbr_chartabsize(curwin, line, ptr, col, &head);
Bram Moolenaar91acfff2017-03-12 19:22:36 +0100184 MB_PTR_ADV(ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000185#else
Bram Moolenaar597a4222014-06-25 14:39:50 +0200186 csize = lbr_chartabsize_adv(line, &ptr, col);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000187#endif
188 col += csize;
189 }
190 idx = (int)(ptr - line);
191 /*
192 * Handle all the special cases. The virtual_active() check
193 * is needed to ensure that a virtual position off the end of
194 * a line has the correct indexing. The one_more comparison
195 * replaces an explicit add of one_more later on.
196 */
197 if (col > wcol || (!virtual_active() && one_more == 0))
198 {
199 idx -= 1;
200# ifdef FEAT_LINEBREAK
201 /* Don't count the chars from 'showbreak'. */
202 csize -= head;
203# endif
204 col -= csize;
205 }
206
Bram Moolenaar071d4272004-06-13 20:20:40 +0000207 if (virtual_active()
208 && addspaces
209 && ((col != wcol && col != wcol + 1) || csize > 1))
210 {
211 /* 'virtualedit' is set: The difference between wcol and col is
212 * filled with spaces. */
213
214 if (line[idx] == NUL)
215 {
216 /* Append spaces */
217 int correct = wcol - col;
218 char_u *newline = alloc(idx + correct + 1);
219 int t;
220
221 if (newline == NULL)
222 return FAIL;
223
224 for (t = 0; t < idx; ++t)
225 newline[t] = line[t];
226
227 for (t = 0; t < correct; ++t)
228 newline[t + idx] = ' ';
229
230 newline[idx + correct] = NUL;
231
232 ml_replace(pos->lnum, newline, FALSE);
233 changed_bytes(pos->lnum, (colnr_T)idx);
234 idx += correct;
235 col = wcol;
236 }
237 else
238 {
239 /* Break a tab */
240 int linelen = (int)STRLEN(line);
241 int correct = wcol - col - csize + 1; /* negative!! */
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000242 char_u *newline;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000243 int t, s = 0;
244 int v;
245
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000246 if (-correct > csize)
247 return FAIL;
248
249 newline = alloc(linelen + csize);
250 if (newline == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000251 return FAIL;
252
253 for (t = 0; t < linelen; t++)
254 {
255 if (t != idx)
256 newline[s++] = line[t];
257 else
258 for (v = 0; v < csize; v++)
259 newline[s++] = ' ';
260 }
261
262 newline[linelen + csize - 1] = NUL;
263
264 ml_replace(pos->lnum, newline, FALSE);
265 changed_bytes(pos->lnum, idx);
266 idx += (csize - 1 + correct);
267 col += correct;
268 }
269 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000270 }
271
272 if (idx < 0)
273 pos->col = 0;
274 else
275 pos->col = idx;
276
Bram Moolenaar071d4272004-06-13 20:20:40 +0000277 pos->coladd = 0;
278
279 if (finetune)
280 {
281 if (wcol == MAXCOL)
282 {
283 /* The width of the last character is used to set coladd. */
284 if (!one_more)
285 {
286 colnr_T scol, ecol;
287
288 getvcol(curwin, pos, &scol, NULL, &ecol);
289 pos->coladd = ecol - scol;
290 }
291 }
292 else
293 {
294 int b = (int)wcol - (int)col;
295
296 /* The difference between wcol and col is used to set coladd. */
Bram Moolenaar02631462017-09-22 15:20:32 +0200297 if (b > 0 && b < (MAXCOL - 2 * curwin->w_width))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000298 pos->coladd = b;
299
300 col += b;
301 }
302 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000303
Bram Moolenaara1381de2009-11-03 15:44:21 +0000304 /* prevent from moving onto a trail byte */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000305 if (has_mbyte)
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200306 mb_adjustpos(curbuf, pos);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000307
308 if (col < wcol)
309 return FAIL;
310 return OK;
311}
312
313/*
Bram Moolenaar446cb832008-06-24 21:56:24 +0000314 * Increment the cursor position. See inc() for return values.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000315 */
316 int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100317inc_cursor(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000318{
319 return inc(&curwin->w_cursor);
320}
321
Bram Moolenaar446cb832008-06-24 21:56:24 +0000322/*
323 * Increment the line pointer "lp" crossing line boundaries as necessary.
324 * Return 1 when going to the next line.
325 * Return 2 when moving forward onto a NUL at the end of the line).
326 * Return -1 when at the end of file.
327 * Return 0 otherwise.
328 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000329 int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100330inc(pos_T *lp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000331{
Bram Moolenaar8ada6aa2017-12-19 21:23:21 +0100332 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000333
Bram Moolenaar8ada6aa2017-12-19 21:23:21 +0100334 /* when searching position may be set to end of a line */
335 if (lp->col != MAXCOL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000336 {
Bram Moolenaar8ada6aa2017-12-19 21:23:21 +0100337 p = ml_get_pos(lp);
338 if (*p != NUL) /* still within line, move to next char (may be NUL) */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000339 {
Bram Moolenaar8ada6aa2017-12-19 21:23:21 +0100340 if (has_mbyte)
341 {
342 int l = (*mb_ptr2len)(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000343
Bram Moolenaar8ada6aa2017-12-19 21:23:21 +0100344 lp->col += l;
345 return ((p[l] != NUL) ? 0 : 2);
346 }
Bram Moolenaar8ada6aa2017-12-19 21:23:21 +0100347 lp->col++;
Bram Moolenaar8ada6aa2017-12-19 21:23:21 +0100348 lp->coladd = 0;
Bram Moolenaar8ada6aa2017-12-19 21:23:21 +0100349 return ((p[1] != NUL) ? 0 : 2);
350 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000351 }
352 if (lp->lnum != curbuf->b_ml.ml_line_count) /* there is a next line */
353 {
354 lp->col = 0;
355 lp->lnum++;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000356 lp->coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000357 return 1;
358 }
359 return -1;
360}
361
362/*
363 * incl(lp): same as inc(), but skip the NUL at the end of non-empty lines
364 */
365 int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100366incl(pos_T *lp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000367{
368 int r;
369
370 if ((r = inc(lp)) >= 1 && lp->col)
371 r = inc(lp);
372 return r;
373}
374
375/*
376 * dec(p)
377 *
378 * Decrement the line pointer 'p' crossing line boundaries as necessary.
379 * Return 1 when crossing a line, -1 when at start of file, 0 otherwise.
380 */
381 int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100382dec_cursor(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000383{
Bram Moolenaarcaa55b62017-01-10 13:51:09 +0100384 return dec(&curwin->w_cursor);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000385}
386
387 int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100388dec(pos_T *lp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000389{
390 char_u *p;
391
Bram Moolenaar071d4272004-06-13 20:20:40 +0000392 lp->coladd = 0;
Bram Moolenaar1bd999f2017-12-19 22:25:40 +0100393 if (lp->col == MAXCOL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000394 {
Bram Moolenaar1bd999f2017-12-19 22:25:40 +0100395 /* past end of line */
396 p = ml_get(lp->lnum);
397 lp->col = (colnr_T)STRLEN(p);
Bram Moolenaar1bd999f2017-12-19 22:25:40 +0100398 if (has_mbyte)
399 lp->col -= (*mb_head_off)(p, p + lp->col);
Bram Moolenaar1bd999f2017-12-19 22:25:40 +0100400 return 0;
401 }
402
403 if (lp->col > 0)
404 {
405 /* still within line */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000406 lp->col--;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000407 if (has_mbyte)
408 {
409 p = ml_get(lp->lnum);
410 lp->col -= (*mb_head_off)(p, p + lp->col);
411 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000412 return 0;
413 }
Bram Moolenaar1bd999f2017-12-19 22:25:40 +0100414
415 if (lp->lnum > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000416 {
Bram Moolenaar1bd999f2017-12-19 22:25:40 +0100417 /* there is a prior line */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000418 lp->lnum--;
419 p = ml_get(lp->lnum);
420 lp->col = (colnr_T)STRLEN(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000421 if (has_mbyte)
422 lp->col -= (*mb_head_off)(p, p + lp->col);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000423 return 1;
424 }
Bram Moolenaar1bd999f2017-12-19 22:25:40 +0100425
426 /* at start of file */
427 return -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000428}
429
430/*
431 * decl(lp): same as dec(), but skip the NUL at the end of non-empty lines
432 */
433 int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100434decl(pos_T *lp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000435{
436 int r;
437
438 if ((r = dec(lp)) == 1 && lp->col)
439 r = dec(lp);
440 return r;
441}
442
443/*
Bram Moolenaar64486672010-05-16 15:46:46 +0200444 * Get the line number relative to the current cursor position, i.e. the
445 * difference between line number and cursor position. Only look for lines that
446 * can be visible, folded lines don't count.
447 */
448 linenr_T
Bram Moolenaar9b578142016-01-30 19:39:49 +0100449get_cursor_rel_lnum(
450 win_T *wp,
451 linenr_T lnum) /* line number to get the result for */
Bram Moolenaar64486672010-05-16 15:46:46 +0200452{
453 linenr_T cursor = wp->w_cursor.lnum;
454 linenr_T retval = 0;
455
456#ifdef FEAT_FOLDING
457 if (hasAnyFolding(wp))
458 {
459 if (lnum > cursor)
460 {
461 while (lnum > cursor)
462 {
Bram Moolenaar0bd7b3f2013-12-14 12:48:58 +0100463 (void)hasFoldingWin(wp, lnum, &lnum, NULL, TRUE, NULL);
Bram Moolenaar64486672010-05-16 15:46:46 +0200464 /* if lnum and cursor are in the same fold,
465 * now lnum <= cursor */
466 if (lnum > cursor)
467 retval++;
468 lnum--;
469 }
470 }
471 else if (lnum < cursor)
472 {
473 while (lnum < cursor)
474 {
Bram Moolenaar0bd7b3f2013-12-14 12:48:58 +0100475 (void)hasFoldingWin(wp, lnum, NULL, &lnum, TRUE, NULL);
Bram Moolenaar64486672010-05-16 15:46:46 +0200476 /* if lnum and cursor are in the same fold,
477 * now lnum >= cursor */
478 if (lnum < cursor)
479 retval--;
480 lnum++;
481 }
482 }
483 /* else if (lnum == cursor)
484 * retval = 0;
485 */
486 }
487 else
488#endif
489 retval = lnum - cursor;
490
491 return retval;
492}
493
494/*
Bram Moolenaard5824ce2016-09-04 20:35:01 +0200495 * Make sure "pos.lnum" and "pos.col" are valid in "buf".
496 * This allows for the col to be on the NUL byte.
497 */
498 void
499check_pos(buf_T *buf, pos_T *pos)
500{
501 char_u *line;
502 colnr_T len;
503
504 if (pos->lnum > buf->b_ml.ml_line_count)
505 pos->lnum = buf->b_ml.ml_line_count;
506
507 if (pos->col > 0)
508 {
509 line = ml_get_buf(buf, pos->lnum, FALSE);
510 len = (colnr_T)STRLEN(line);
511 if (pos->col > len)
512 pos->col = len;
513 }
514}
515
516/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000517 * Make sure curwin->w_cursor.lnum is valid.
518 */
519 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100520check_cursor_lnum(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000521{
522 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
523 {
524#ifdef FEAT_FOLDING
525 /* If there is a closed fold at the end of the file, put the cursor in
526 * its first line. Otherwise in the last line. */
527 if (!hasFolding(curbuf->b_ml.ml_line_count,
528 &curwin->w_cursor.lnum, NULL))
529#endif
530 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
531 }
532 if (curwin->w_cursor.lnum <= 0)
533 curwin->w_cursor.lnum = 1;
534}
535
536/*
537 * Make sure curwin->w_cursor.col is valid.
538 */
539 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100540check_cursor_col(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000541{
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200542 check_cursor_col_win(curwin);
543}
544
545/*
546 * Make sure win->w_cursor.col is valid.
547 */
548 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100549check_cursor_col_win(win_T *win)
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200550{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000551 colnr_T len;
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200552 colnr_T oldcol = win->w_cursor.col;
553 colnr_T oldcoladd = win->w_cursor.col + win->w_cursor.coladd;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000554
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200555 len = (colnr_T)STRLEN(ml_get_buf(win->w_buffer, win->w_cursor.lnum, FALSE));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000556 if (len == 0)
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200557 win->w_cursor.col = 0;
558 else if (win->w_cursor.col >= len)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000559 {
Bram Moolenaar33f54432008-01-04 20:25:44 +0000560 /* Allow cursor past end-of-line when:
561 * - in Insert mode or restarting Insert mode
562 * - in Visual mode and 'selection' isn't "old"
563 * - 'virtualedit' is set */
Bram Moolenaarebefac62005-12-28 22:39:57 +0000564 if ((State & INSERT) || restart_edit
Bram Moolenaar071d4272004-06-13 20:20:40 +0000565 || (VIsual_active && *p_sel != 'o')
Bram Moolenaar33f54432008-01-04 20:25:44 +0000566 || (ve_flags & VE_ONEMORE)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000567 || virtual_active())
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200568 win->w_cursor.col = len;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000569 else
Bram Moolenaar87c19962007-04-26 08:54:21 +0000570 {
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200571 win->w_cursor.col = len - 1;
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200572 /* Move the cursor to the head byte. */
Bram Moolenaar87c19962007-04-26 08:54:21 +0000573 if (has_mbyte)
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200574 mb_adjustpos(win->w_buffer, &win->w_cursor);
Bram Moolenaar87c19962007-04-26 08:54:21 +0000575 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000576 }
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200577 else if (win->w_cursor.col < 0)
578 win->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000579
Bram Moolenaar071d4272004-06-13 20:20:40 +0000580 /* If virtual editing is on, we can leave the cursor on the old position,
581 * only we must set it to virtual. But don't do it when at the end of the
582 * line. */
583 if (oldcol == MAXCOL)
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200584 win->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000585 else if (ve_flags == VE_ALL)
Bram Moolenaar552c8a52009-03-11 16:29:20 +0000586 {
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200587 if (oldcoladd > win->w_cursor.col)
Bram Moolenaar9aa15692017-08-19 15:05:32 +0200588 {
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200589 win->w_cursor.coladd = oldcoladd - win->w_cursor.col;
Bram Moolenaard41babe2017-08-30 17:01:35 +0200590
591 /* Make sure that coladd is not more than the char width.
592 * Not for the last character, coladd is then used when the cursor
593 * is actually after the last character. */
594 if (win->w_cursor.col + 1 < len && win->w_cursor.coladd > 0)
Bram Moolenaar9aa15692017-08-19 15:05:32 +0200595 {
596 int cs, ce;
597
Bram Moolenaar9aa15692017-08-19 15:05:32 +0200598 getvcol(win, &win->w_cursor, &cs, NULL, &ce);
599 if (win->w_cursor.coladd > ce - cs)
600 win->w_cursor.coladd = ce - cs;
601 }
602 }
Bram Moolenaar552c8a52009-03-11 16:29:20 +0000603 else
604 /* avoid weird number when there is a miscalculation or overflow */
Bram Moolenaar03a807a2011-07-07 15:08:58 +0200605 win->w_cursor.coladd = 0;
Bram Moolenaar552c8a52009-03-11 16:29:20 +0000606 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000607}
608
609/*
610 * make sure curwin->w_cursor in on a valid character
611 */
612 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100613check_cursor(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000614{
615 check_cursor_lnum();
616 check_cursor_col();
617}
618
619#if defined(FEAT_TEXTOBJ) || defined(PROTO)
620/*
621 * Make sure curwin->w_cursor is not on the NUL at the end of the line.
622 * Allow it when in Visual mode and 'selection' is not "old".
623 */
624 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100625adjust_cursor_col(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000626{
627 if (curwin->w_cursor.col > 0
Bram Moolenaar071d4272004-06-13 20:20:40 +0000628 && (!VIsual_active || *p_sel == 'o')
Bram Moolenaar071d4272004-06-13 20:20:40 +0000629 && gchar_cursor() == NUL)
630 --curwin->w_cursor.col;
631}
632#endif
633
634/*
635 * When curwin->w_leftcol has changed, adjust the cursor position.
636 * Return TRUE if the cursor was moved.
637 */
638 int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100639leftcol_changed(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000640{
641 long lastcol;
642 colnr_T s, e;
643 int retval = FALSE;
Bram Moolenaar375e3392019-01-31 18:26:10 +0100644 long siso = get_sidescrolloff_value();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000645
646 changed_cline_bef_curs();
Bram Moolenaar02631462017-09-22 15:20:32 +0200647 lastcol = curwin->w_leftcol + curwin->w_width - curwin_col_off() - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000648 validate_virtcol();
649
650 /*
651 * If the cursor is right or left of the screen, move it to last or first
652 * character.
653 */
Bram Moolenaar375e3392019-01-31 18:26:10 +0100654 if (curwin->w_virtcol > (colnr_T)(lastcol - siso))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000655 {
656 retval = TRUE;
Bram Moolenaar375e3392019-01-31 18:26:10 +0100657 coladvance((colnr_T)(lastcol - siso));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000658 }
Bram Moolenaar375e3392019-01-31 18:26:10 +0100659 else if (curwin->w_virtcol < curwin->w_leftcol + siso)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000660 {
661 retval = TRUE;
Bram Moolenaar375e3392019-01-31 18:26:10 +0100662 (void)coladvance((colnr_T)(curwin->w_leftcol + siso));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000663 }
664
665 /*
666 * If the start of the character under the cursor is not on the screen,
667 * advance the cursor one more char. If this fails (last char of the
668 * line) adjust the scrolling.
669 */
670 getvvcol(curwin, &curwin->w_cursor, &s, NULL, &e);
671 if (e > (colnr_T)lastcol)
672 {
673 retval = TRUE;
674 coladvance(s - 1);
675 }
676 else if (s < curwin->w_leftcol)
677 {
678 retval = TRUE;
679 if (coladvance(e + 1) == FAIL) /* there isn't another character */
680 {
681 curwin->w_leftcol = s; /* adjust w_leftcol instead */
682 changed_cline_bef_curs();
683 }
684 }
685
686 if (retval)
687 curwin->w_set_curswant = TRUE;
688 redraw_later(NOT_VALID);
689 return retval;
690}
691
692/**********************************************************************
693 * Various routines dealing with allocation and deallocation of memory.
694 */
695
696#if defined(MEM_PROFILE) || defined(PROTO)
697
698# define MEM_SIZES 8200
699static long_u mem_allocs[MEM_SIZES];
700static long_u mem_frees[MEM_SIZES];
701static long_u mem_allocated;
702static long_u mem_freed;
703static long_u mem_peak;
704static long_u num_alloc;
705static long_u num_freed;
706
Bram Moolenaar071d4272004-06-13 20:20:40 +0000707 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100708mem_pre_alloc_s(size_t *sizep)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000709{
710 *sizep += sizeof(size_t);
711}
712
713 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100714mem_pre_alloc_l(long_u *sizep)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000715{
716 *sizep += sizeof(size_t);
717}
718
719 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100720mem_post_alloc(
721 void **pp,
722 size_t size)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000723{
724 if (*pp == NULL)
725 return;
726 size -= sizeof(size_t);
727 *(long_u *)*pp = size;
728 if (size <= MEM_SIZES-1)
729 mem_allocs[size-1]++;
730 else
731 mem_allocs[MEM_SIZES-1]++;
732 mem_allocated += size;
733 if (mem_allocated - mem_freed > mem_peak)
734 mem_peak = mem_allocated - mem_freed;
735 num_alloc++;
736 *pp = (void *)((char *)*pp + sizeof(size_t));
737}
738
739 static void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100740mem_pre_free(void **pp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000741{
742 long_u size;
743
744 *pp = (void *)((char *)*pp - sizeof(size_t));
745 size = *(size_t *)*pp;
746 if (size <= MEM_SIZES-1)
747 mem_frees[size-1]++;
748 else
749 mem_frees[MEM_SIZES-1]++;
750 mem_freed += size;
751 num_freed++;
752}
753
754/*
755 * called on exit via atexit()
756 */
757 void
Bram Moolenaar9b578142016-01-30 19:39:49 +0100758vim_mem_profile_dump(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000759{
760 int i, j;
761
762 printf("\r\n");
763 j = 0;
764 for (i = 0; i < MEM_SIZES - 1; i++)
765 {
766 if (mem_allocs[i] || mem_frees[i])
767 {
768 if (mem_frees[i] > mem_allocs[i])
769 printf("\r\n%s", _("ERROR: "));
770 printf("[%4d / %4lu-%-4lu] ", i + 1, mem_allocs[i], mem_frees[i]);
771 j++;
772 if (j > 3)
773 {
774 j = 0;
775 printf("\r\n");
776 }
777 }
778 }
779
780 i = MEM_SIZES - 1;
781 if (mem_allocs[i])
782 {
783 printf("\r\n");
784 if (mem_frees[i] > mem_allocs[i])
Bram Moolenaar2f1e0502010-08-13 11:18:02 +0200785 puts(_("ERROR: "));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000786 printf("[>%d / %4lu-%-4lu]", i, mem_allocs[i], mem_frees[i]);
787 }
788
789 printf(_("\n[bytes] total alloc-freed %lu-%lu, in use %lu, peak use %lu\n"),
790 mem_allocated, mem_freed, mem_allocated - mem_freed, mem_peak);
791 printf(_("[calls] total re/malloc()'s %lu, total free()'s %lu\n\n"),
792 num_alloc, num_freed);
793}
794
795#endif /* MEM_PROFILE */
796
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +0100797#ifdef FEAT_EVAL
Bram Moolenaarf49cc602018-11-11 15:21:05 +0100798 int
Bram Moolenaar9b578142016-01-30 19:39:49 +0100799alloc_does_fail(long_u size)
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +0100800{
801 if (alloc_fail_countdown == 0)
802 {
803 if (--alloc_fail_repeat <= 0)
804 alloc_fail_id = 0;
Bram Moolenaara260b872016-01-15 20:48:22 +0100805 do_outofmem_msg(size);
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +0100806 return TRUE;
807 }
808 --alloc_fail_countdown;
809 return FALSE;
810}
811#endif
812
Bram Moolenaar071d4272004-06-13 20:20:40 +0000813/*
814 * Some memory is reserved for error messages and for being able to
815 * call mf_release_all(), which needs some memory for mf_trans_add().
816 */
Bram Moolenaar48e330a2016-02-23 14:53:34 +0100817#define KEEP_ROOM (2 * 8192L)
Bram Moolenaar11b73d62012-06-29 15:51:30 +0200818#define KEEP_ROOM_KB (KEEP_ROOM / 1024L)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000819
820/*
Bram Moolenaar2a329742008-04-01 12:53:43 +0000821 * Note: if unsigned is 16 bits we can only allocate up to 64K with alloc().
Bram Moolenaar071d4272004-06-13 20:20:40 +0000822 * Use lalloc for larger blocks.
823 */
824 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +0100825alloc(unsigned size)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000826{
827 return (lalloc((long_u)size, TRUE));
828}
829
830/*
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +0100831 * alloc() with an ID for alloc_fail().
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +0100832 */
833 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +0100834alloc_id(unsigned size, alloc_id_T id UNUSED)
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +0100835{
836#ifdef FEAT_EVAL
Bram Moolenaara260b872016-01-15 20:48:22 +0100837 if (alloc_fail_id == id && alloc_does_fail((long_u)size))
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +0100838 return NULL;
839#endif
840 return (lalloc((long_u)size, TRUE));
841}
842
843/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000844 * Allocate memory and set all bytes to zero.
845 */
846 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +0100847alloc_clear(unsigned size)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000848{
849 char_u *p;
850
Bram Moolenaar2f1e0502010-08-13 11:18:02 +0200851 p = lalloc((long_u)size, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000852 if (p != NULL)
853 (void)vim_memset(p, 0, (size_t)size);
854 return p;
855}
856
857/*
Bram Moolenaar162b7142018-12-21 15:17:36 +0100858 * Same as alloc_clear() but with allocation id for testing
859 */
860 char_u *
861alloc_clear_id(unsigned size, alloc_id_T id UNUSED)
862{
863#ifdef FEAT_EVAL
864 if (alloc_fail_id == id && alloc_does_fail((long_u)size))
865 return NULL;
866#endif
867 return alloc_clear(size);
868}
869
870/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000871 * alloc() with check for maximum line length
872 */
873 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +0100874alloc_check(unsigned size)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000875{
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200876#if !defined(UNIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000877 if (sizeof(int) == 2 && size > 0x7fff)
878 {
879 /* Don't hide this message */
880 emsg_silent = 0;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100881 emsg(_("E340: Line is becoming too long"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000882 return NULL;
883 }
884#endif
885 return (lalloc((long_u)size, TRUE));
886}
887
888/*
889 * Allocate memory like lalloc() and set all bytes to zero.
890 */
891 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +0100892lalloc_clear(long_u size, int message)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000893{
894 char_u *p;
895
896 p = (lalloc(size, message));
897 if (p != NULL)
898 (void)vim_memset(p, 0, (size_t)size);
899 return p;
900}
901
902/*
903 * Low level memory allocation function.
904 * This is used often, KEEP IT FAST!
905 */
906 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +0100907lalloc(long_u size, int message)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000908{
909 char_u *p; /* pointer to new storage space */
910 static int releasing = FALSE; /* don't do mf_release_all() recursive */
911 int try_again;
Bram Moolenaar48e330a2016-02-23 14:53:34 +0100912#if defined(HAVE_AVAIL_MEM)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000913 static long_u allocated = 0; /* allocated since last avail check */
914#endif
915
916 /* Safety check for allocating zero bytes */
917 if (size == 0)
918 {
919 /* Don't hide this message */
920 emsg_silent = 0;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100921 siemsg(_("E341: Internal error: lalloc(%ld, )"), size);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000922 return NULL;
923 }
924
925#ifdef MEM_PROFILE
926 mem_pre_alloc_l(&size);
927#endif
928
Bram Moolenaar071d4272004-06-13 20:20:40 +0000929 /*
930 * Loop when out of memory: Try to release some memfile blocks and
931 * if some blocks are released call malloc again.
932 */
933 for (;;)
934 {
935 /*
936 * Handle three kind of systems:
937 * 1. No check for available memory: Just return.
938 * 2. Slow check for available memory: call mch_avail_mem() after
939 * allocating KEEP_ROOM amount of memory.
940 * 3. Strict check for available memory: call mch_avail_mem()
941 */
942 if ((p = (char_u *)malloc((size_t)size)) != NULL)
943 {
944#ifndef HAVE_AVAIL_MEM
945 /* 1. No check for available memory: Just return. */
946 goto theend;
947#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000948 /* 2. Slow check for available memory: call mch_avail_mem() after
949 * allocating (KEEP_ROOM / 2) amount of memory. */
950 allocated += size;
951 if (allocated < KEEP_ROOM / 2)
952 goto theend;
953 allocated = 0;
Bram Moolenaar48e330a2016-02-23 14:53:34 +0100954
Bram Moolenaar071d4272004-06-13 20:20:40 +0000955 /* 3. check for available memory: call mch_avail_mem() */
Bram Moolenaar11b73d62012-06-29 15:51:30 +0200956 if (mch_avail_mem(TRUE) < KEEP_ROOM_KB && !releasing)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000957 {
Bram Moolenaar5a221812008-11-12 12:08:45 +0000958 free((char *)p); /* System is low... no go! */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000959 p = NULL;
960 }
961 else
962 goto theend;
963#endif
964 }
965 /*
966 * Remember that mf_release_all() is being called to avoid an endless
967 * loop, because mf_release_all() may call alloc() recursively.
968 */
969 if (releasing)
970 break;
971 releasing = TRUE;
Bram Moolenaar661b1822005-07-28 22:36:45 +0000972
Bram Moolenaarf2405ed2017-03-16 19:58:25 +0100973 clear_sb_text(TRUE); /* free any scrollback text */
Bram Moolenaar661b1822005-07-28 22:36:45 +0000974 try_again = mf_release_all(); /* release as many blocks as possible */
Bram Moolenaar661b1822005-07-28 22:36:45 +0000975
Bram Moolenaar071d4272004-06-13 20:20:40 +0000976 releasing = FALSE;
977 if (!try_again)
978 break;
979 }
980
981 if (message && p == NULL)
982 do_outofmem_msg(size);
983
984theend:
985#ifdef MEM_PROFILE
986 mem_post_alloc((void **)&p, (size_t)size);
987#endif
988 return p;
989}
990
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +0100991/*
992 * lalloc() with an ID for alloc_fail().
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +0100993 */
Bram Moolenaar113e1072019-01-20 15:30:40 +0100994#if defined(FEAT_SIGNS) || defined(PROTO)
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +0100995 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +0100996lalloc_id(long_u size, int message, alloc_id_T id UNUSED)
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +0100997{
998#ifdef FEAT_EVAL
Bram Moolenaara260b872016-01-15 20:48:22 +0100999 if (alloc_fail_id == id && alloc_does_fail(size))
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +01001000 return NULL;
1001#endif
1002 return (lalloc((long_u)size, message));
1003}
Bram Moolenaar113e1072019-01-20 15:30:40 +01001004#endif
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +01001005
Bram Moolenaar071d4272004-06-13 20:20:40 +00001006#if defined(MEM_PROFILE) || defined(PROTO)
1007/*
1008 * realloc() with memory profiling.
1009 */
1010 void *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001011mem_realloc(void *ptr, size_t size)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001012{
1013 void *p;
1014
1015 mem_pre_free(&ptr);
1016 mem_pre_alloc_s(&size);
1017
1018 p = realloc(ptr, size);
1019
1020 mem_post_alloc(&p, size);
1021
1022 return p;
1023}
1024#endif
1025
1026/*
1027* Avoid repeating the error message many times (they take 1 second each).
1028* Did_outofmem_msg is reset when a character is read.
1029*/
1030 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001031do_outofmem_msg(long_u size)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001032{
1033 if (!did_outofmem_msg)
1034 {
1035 /* Don't hide this message */
1036 emsg_silent = 0;
Bram Moolenaar79739e12011-10-26 11:41:00 +02001037
1038 /* Must come first to avoid coming back here when printing the error
1039 * message fails, e.g. when setting v:errmsg. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001040 did_outofmem_msg = TRUE;
Bram Moolenaar79739e12011-10-26 11:41:00 +02001041
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001042 semsg(_("E342: Out of memory! (allocating %lu bytes)"), size);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001043 }
1044}
1045
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001046#if defined(EXITFREE) || defined(PROTO)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001047
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001048/*
1049 * Free everything that we allocated.
1050 * Can be used to detect memory leaks, e.g., with ccmalloc.
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001051 * NOTE: This is tricky! Things are freed that functions depend on. Don't be
1052 * surprised if Vim crashes...
1053 * Some things can't be freed, esp. things local to a library function.
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001054 */
1055 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001056free_all_mem(void)
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001057{
1058 buf_T *buf, *nextbuf;
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001059
1060 /* When we cause a crash here it is caught and Vim tries to exit cleanly.
1061 * Don't try freeing everything again. */
Bram Moolenaarb89a25f2016-06-01 23:08:39 +02001062 if (entered_free_all_mem)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001063 return;
Bram Moolenaarb89a25f2016-06-01 23:08:39 +02001064 entered_free_all_mem = TRUE;
Bram Moolenaara9673212016-06-01 22:21:06 +02001065
Bram Moolenaar5d2bae82014-09-19 14:26:36 +02001066 /* Don't want to trigger autocommands from here on. */
1067 block_autocmds();
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001068
Bram Moolenaar5bedfc62010-07-20 22:30:01 +02001069 /* Close all tabs and windows. Reset 'equalalways' to avoid redraws. */
1070 p_ea = FALSE;
Bram Moolenaare5c83282019-05-03 23:15:37 +02001071 if (first_tabpage != NULL && first_tabpage->tp_next != NULL)
Bram Moolenaar7d47b6e2006-03-15 22:59:18 +00001072 do_cmdline_cmd((char_u *)"tabonly!");
Bram Moolenaar95f09602016-11-10 20:01:45 +01001073 if (!ONE_WINDOW)
Bram Moolenaar7d47b6e2006-03-15 22:59:18 +00001074 do_cmdline_cmd((char_u *)"only!");
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00001075
Bram Moolenaarc4956c82006-03-12 21:58:43 +00001076# if defined(FEAT_SPELL)
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001077 /* Free all spell info. */
1078 spell_free_all();
1079# endif
1080
Bram Moolenaarb301f6b2018-02-10 15:38:35 +01001081#if defined(FEAT_INS_EXPAND) && defined(FEAT_BEVAL_TERM)
1082 ui_remove_balloon();
1083# endif
1084
Bram Moolenaarac9fb182019-04-27 13:04:13 +02001085 // Clear user commands (before deleting buffers).
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001086 ex_comclear(NULL);
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001087
Bram Moolenaare5c83282019-05-03 23:15:37 +02001088 // When exiting from mainerr_arg_missing curbuf has not been initialized,
1089 // and not much else.
1090 if (curbuf != NULL)
1091 {
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001092# ifdef FEAT_MENU
Bram Moolenaare5c83282019-05-03 23:15:37 +02001093 // Clear menus.
1094 do_cmdline_cmd((char_u *)"aunmenu *");
Bram Moolenaar21160b92009-11-11 15:56:10 +00001095# ifdef FEAT_MULTI_LANG
Bram Moolenaare5c83282019-05-03 23:15:37 +02001096 do_cmdline_cmd((char_u *)"menutranslate clear");
Bram Moolenaar21160b92009-11-11 15:56:10 +00001097# endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001098# endif
Bram Moolenaare5c83282019-05-03 23:15:37 +02001099 // Clear mappings, abbreviations, breakpoints.
1100 do_cmdline_cmd((char_u *)"lmapclear");
1101 do_cmdline_cmd((char_u *)"xmapclear");
1102 do_cmdline_cmd((char_u *)"mapclear");
1103 do_cmdline_cmd((char_u *)"mapclear!");
1104 do_cmdline_cmd((char_u *)"abclear");
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001105# if defined(FEAT_EVAL)
Bram Moolenaare5c83282019-05-03 23:15:37 +02001106 do_cmdline_cmd((char_u *)"breakdel *");
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001107# endif
Bram Moolenaar1e498f52005-06-26 22:29:44 +00001108# if defined(FEAT_PROFILE)
Bram Moolenaare5c83282019-05-03 23:15:37 +02001109 do_cmdline_cmd((char_u *)"profdel *");
Bram Moolenaar1e498f52005-06-26 22:29:44 +00001110# endif
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00001111# if defined(FEAT_KEYMAP)
Bram Moolenaare5c83282019-05-03 23:15:37 +02001112 do_cmdline_cmd((char_u *)"set keymap=");
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00001113#endif
Bram Moolenaare5c83282019-05-03 23:15:37 +02001114 }
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001115
1116# ifdef FEAT_TITLE
1117 free_titles();
1118# endif
1119# if defined(FEAT_SEARCHPATH)
1120 free_findfile();
1121# endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001122
1123 /* Obviously named calls. */
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001124 free_all_autocmds();
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001125 clear_termcodes();
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001126 free_all_marks();
1127 alist_clear(&global_alist);
1128 free_homedir();
Bram Moolenaar24305862012-08-15 14:05:05 +02001129# if defined(FEAT_CMDL_COMPL)
1130 free_users();
1131# endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001132 free_search_patterns();
1133 free_old_sub();
1134 free_last_insert();
Bram Moolenaarac9fb182019-04-27 13:04:13 +02001135# if defined(FEAT_INS_EXPAND)
Bram Moolenaar7591bb32019-03-30 13:53:47 +01001136 free_insexpand_stuff();
Bram Moolenaarac9fb182019-04-27 13:04:13 +02001137# endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001138 free_prev_shellcmd();
1139 free_regexp_stuff();
1140 free_tag_stuff();
1141 free_cd_dir();
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00001142# ifdef FEAT_SIGNS
1143 free_signs();
1144# endif
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001145# ifdef FEAT_EVAL
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001146 set_expr_line(NULL);
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001147# endif
1148# ifdef FEAT_DIFF
Bram Moolenaare5c83282019-05-03 23:15:37 +02001149 if (curtab != NULL)
1150 diff_clear(curtab);
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001151# endif
Bram Moolenaarf2405ed2017-03-16 19:58:25 +01001152 clear_sb_text(TRUE); /* free any scrollback text */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001153
1154 /* Free some global vars. */
1155 vim_free(username);
Bram Moolenaaraf92ee82007-10-07 13:45:08 +00001156# ifdef FEAT_CLIPBOARD
Bram Moolenaar473de612013-06-08 18:19:48 +02001157 vim_regfree(clip_exclude_prog);
Bram Moolenaaraf92ee82007-10-07 13:45:08 +00001158# endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001159 vim_free(last_cmdline);
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001160# ifdef FEAT_CMDHIST
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001161 vim_free(new_last_cmdline);
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001162# endif
Bram Moolenaar238a5642006-02-21 22:12:05 +00001163 set_keep_msg(NULL, 0);
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001164
1165 /* Clear cmdline history. */
1166 p_hi = 0;
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001167# ifdef FEAT_CMDHIST
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001168 init_history();
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001169# endif
Bram Moolenaar98aefe72018-12-13 22:20:09 +01001170#ifdef FEAT_TEXT_PROP
1171 clear_global_prop_types();
1172#endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001173
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001174#ifdef FEAT_QUICKFIX
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001175 {
Bram Moolenaarbd1e5d22009-04-29 09:02:44 +00001176 win_T *win;
1177 tabpage_T *tab;
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001178
1179 qf_free_all(NULL);
Bram Moolenaare5c83282019-05-03 23:15:37 +02001180 // Free all location lists
Bram Moolenaarbd1e5d22009-04-29 09:02:44 +00001181 FOR_ALL_TAB_WINDOWS(tab, win)
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001182 qf_free_all(win);
1183 }
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001184#endif
1185
Bram Moolenaare5c83282019-05-03 23:15:37 +02001186 // Close all script inputs.
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001187 close_all_scripts();
1188
Bram Moolenaare5c83282019-05-03 23:15:37 +02001189 if (curwin != NULL)
1190 // Destroy all windows. Must come before freeing buffers.
1191 win_free_all();
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001192
Bram Moolenaar4f198282017-10-23 21:53:30 +02001193 /* Free all option values. Must come after closing windows. */
1194 free_all_options();
1195
Bram Moolenaar2a329742008-04-01 12:53:43 +00001196 /* Free all buffers. Reset 'autochdir' to avoid accessing things that
1197 * were freed already. */
1198#ifdef FEAT_AUTOCHDIR
1199 p_acd = FALSE;
1200#endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001201 for (buf = firstbuf; buf != NULL; )
1202 {
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001203 bufref_T bufref;
1204
1205 set_bufref(&bufref, buf);
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001206 nextbuf = buf->b_next;
Bram Moolenaar42ec6562012-02-22 14:58:37 +01001207 close_buffer(NULL, buf, DOBUF_WIPE, FALSE);
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001208 if (bufref_valid(&bufref))
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001209 buf = nextbuf; /* didn't work, try next one */
1210 else
1211 buf = firstbuf;
1212 }
1213
Bram Moolenaar9f84ded2018-10-20 20:54:02 +02001214# ifdef FEAT_ARABIC
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001215 free_cmdline_buf();
Bram Moolenaar9f84ded2018-10-20 20:54:02 +02001216# endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001217
1218 /* Clear registers. */
1219 clear_registers();
1220 ResetRedobuff();
1221 ResetRedobuff();
1222
Bram Moolenaar9f84ded2018-10-20 20:54:02 +02001223# if defined(FEAT_CLIENTSERVER) && defined(FEAT_X11)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001224 vim_free(serverDelayedStartName);
Bram Moolenaar9f84ded2018-10-20 20:54:02 +02001225# endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001226
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001227 /* highlight info */
1228 free_highlight();
1229
Bram Moolenaar1e498f52005-06-26 22:29:44 +00001230 reset_last_sourcing();
1231
Bram Moolenaare5c83282019-05-03 23:15:37 +02001232 if (first_tabpage != NULL)
1233 {
1234 free_tabpage(first_tabpage);
1235 first_tabpage = NULL;
1236 }
Bram Moolenaar7d47b6e2006-03-15 22:59:18 +00001237
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001238# ifdef UNIX
1239 /* Machine-specific free. */
1240 mch_free_mem();
1241# endif
1242
1243 /* message history */
1244 for (;;)
1245 if (delete_first_msg() == FAIL)
1246 break;
1247
Bram Moolenaar655da312016-05-28 22:22:34 +02001248# ifdef FEAT_JOB_CHANNEL
1249 channel_free_all();
Bram Moolenaar655da312016-05-28 22:22:34 +02001250# endif
Bram Moolenaar9f84ded2018-10-20 20:54:02 +02001251# ifdef FEAT_TIMERS
Bram Moolenaar623e2632016-07-30 22:47:56 +02001252 timer_free_all();
Bram Moolenaar9f84ded2018-10-20 20:54:02 +02001253# endif
Bram Moolenaar437bafe2016-08-01 15:40:54 +02001254# ifdef FEAT_EVAL
1255 /* must be after channel_free_all() with unrefs partials */
1256 eval_clear();
1257# endif
1258# ifdef FEAT_JOB_CHANNEL
1259 /* must be after eval_clear() with unrefs jobs */
1260 job_free_all();
1261# endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001262
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001263 free_termoptions();
1264
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001265 /* screenlines (can't display anything now!) */
1266 free_screenlines();
1267
Bram Moolenaar9f84ded2018-10-20 20:54:02 +02001268# if defined(USE_XSMP)
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001269 xsmp_close();
Bram Moolenaar9f84ded2018-10-20 20:54:02 +02001270# endif
1271# ifdef FEAT_GUI_GTK
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001272 gui_mch_free_all();
Bram Moolenaar9f84ded2018-10-20 20:54:02 +02001273# endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001274 clear_hl_tables();
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001275
1276 vim_free(IObuff);
1277 vim_free(NameBuff);
Bram Moolenaar9f84ded2018-10-20 20:54:02 +02001278# ifdef FEAT_QUICKFIX
1279 check_quickfix_busy();
1280# endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001281}
1282#endif
1283
Bram Moolenaar071d4272004-06-13 20:20:40 +00001284/*
Bram Moolenaare980d8a2010-12-08 13:11:21 +01001285 * Copy "string" into newly allocated memory.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001286 */
1287 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001288vim_strsave(char_u *string)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001289{
1290 char_u *p;
1291 unsigned len;
1292
1293 len = (unsigned)STRLEN(string) + 1;
1294 p = alloc(len);
1295 if (p != NULL)
1296 mch_memmove(p, string, (size_t)len);
1297 return p;
1298}
1299
Bram Moolenaare980d8a2010-12-08 13:11:21 +01001300/*
1301 * Copy up to "len" bytes of "string" into newly allocated memory and
1302 * terminate with a NUL.
1303 * The allocated memory always has size "len + 1", also when "string" is
1304 * shorter.
1305 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001306 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001307vim_strnsave(char_u *string, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001308{
1309 char_u *p;
1310
1311 p = alloc((unsigned)(len + 1));
1312 if (p != NULL)
1313 {
1314 STRNCPY(p, string, len);
1315 p[len] = NUL;
1316 }
1317 return p;
1318}
1319
Bram Moolenaar071d4272004-06-13 20:20:40 +00001320/*
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01001321 * Copy "p[len]" into allocated memory, ignoring NUL characters.
1322 * Returns NULL when out of memory.
1323 */
1324 char_u *
1325vim_memsave(char_u *p, int len)
1326{
1327 char_u *ret = alloc((unsigned)len);
1328
1329 if (ret != NULL)
1330 mch_memmove(ret, p, (size_t)len);
1331 return ret;
1332}
1333
1334/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001335 * Same as vim_strsave(), but any characters found in esc_chars are preceded
1336 * by a backslash.
1337 */
1338 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001339vim_strsave_escaped(char_u *string, char_u *esc_chars)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001340{
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001341 return vim_strsave_escaped_ext(string, esc_chars, '\\', FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001342}
1343
1344/*
1345 * Same as vim_strsave_escaped(), but when "bsl" is TRUE also escape
1346 * characters where rem_backslash() would remove the backslash.
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001347 * Escape the characters with "cc".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001348 */
1349 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001350vim_strsave_escaped_ext(
1351 char_u *string,
1352 char_u *esc_chars,
1353 int cc,
1354 int bsl)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001355{
1356 char_u *p;
1357 char_u *p2;
1358 char_u *escaped_string;
1359 unsigned length;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001360 int l;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001361
1362 /*
1363 * First count the number of backslashes required.
1364 * Then allocate the memory and insert them.
1365 */
1366 length = 1; /* count the trailing NUL */
1367 for (p = string; *p; p++)
1368 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001369 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001370 {
1371 length += l; /* count a multibyte char */
1372 p += l - 1;
1373 continue;
1374 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001375 if (vim_strchr(esc_chars, *p) != NULL || (bsl && rem_backslash(p)))
1376 ++length; /* count a backslash */
1377 ++length; /* count an ordinary char */
1378 }
1379 escaped_string = alloc(length);
1380 if (escaped_string != NULL)
1381 {
1382 p2 = escaped_string;
1383 for (p = string; *p; p++)
1384 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001385 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001386 {
1387 mch_memmove(p2, p, (size_t)l);
1388 p2 += l;
1389 p += l - 1; /* skip multibyte char */
1390 continue;
1391 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001392 if (vim_strchr(esc_chars, *p) != NULL || (bsl && rem_backslash(p)))
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001393 *p2++ = cc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001394 *p2++ = *p;
1395 }
1396 *p2 = NUL;
1397 }
1398 return escaped_string;
1399}
1400
Bram Moolenaar7693ec62008-07-24 18:29:37 +00001401/*
1402 * Return TRUE when 'shell' has "csh" in the tail.
1403 */
1404 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001405csh_like_shell(void)
Bram Moolenaar7693ec62008-07-24 18:29:37 +00001406{
1407 return (strstr((char *)gettail(p_sh), "csh") != NULL);
1408}
Bram Moolenaar7693ec62008-07-24 18:29:37 +00001409
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001410/*
1411 * Escape "string" for use as a shell argument with system().
Bram Moolenaar21160b92009-11-11 15:56:10 +00001412 * This uses single quotes, except when we know we need to use double quotes
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001413 * (MS-DOS and MS-Windows without 'shellslash' set).
Bram Moolenaarffd66c42008-07-16 20:43:37 +00001414 * Escape a newline, depending on the 'shell' option.
1415 * When "do_special" is TRUE also replace "!", "%", "#" and things starting
1416 * with "<" like "<cfile>".
Bram Moolenaar26df0922014-02-23 23:39:13 +01001417 * When "do_newline" is FALSE do not escape newline unless it is csh shell.
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001418 * Returns the result in allocated memory, NULL if we have run out.
1419 */
1420 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001421vim_strsave_shellescape(char_u *string, int do_special, int do_newline)
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001422{
1423 unsigned length;
1424 char_u *p;
1425 char_u *d;
1426 char_u *escaped_string;
Bram Moolenaar05bb9532008-07-04 09:44:11 +00001427 int l;
Bram Moolenaarffd66c42008-07-16 20:43:37 +00001428 int csh_like;
1429
1430 /* Only csh and similar shells expand '!' within single quotes. For sh and
1431 * the like we must not put a backslash before it, it will be taken
1432 * literally. If do_special is set the '!' will be escaped twice.
1433 * Csh also needs to have "\n" escaped twice when do_special is set. */
Bram Moolenaar7693ec62008-07-24 18:29:37 +00001434 csh_like = csh_like_shell();
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001435
1436 /* First count the number of extra bytes required. */
Bram Moolenaar77f66d62007-02-20 02:16:18 +00001437 length = (unsigned)STRLEN(string) + 3; /* two quotes and a trailing NUL */
Bram Moolenaar91acfff2017-03-12 19:22:36 +01001438 for (p = string; *p != NUL; MB_PTR_ADV(p))
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001439 {
Bram Moolenaar4f974752019-02-17 17:44:42 +01001440# ifdef MSWIN
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001441 if (!p_ssl)
1442 {
1443 if (*p == '"')
1444 ++length; /* " -> "" */
1445 }
1446 else
1447# endif
1448 if (*p == '\'')
1449 length += 3; /* ' => '\'' */
Bram Moolenaar26df0922014-02-23 23:39:13 +01001450 if ((*p == '\n' && (csh_like || do_newline))
1451 || (*p == '!' && (csh_like || do_special)))
Bram Moolenaarffd66c42008-07-16 20:43:37 +00001452 {
1453 ++length; /* insert backslash */
1454 if (csh_like && do_special)
1455 ++length; /* insert backslash */
1456 }
Bram Moolenaar05bb9532008-07-04 09:44:11 +00001457 if (do_special && find_cmdline_var(p, &l) >= 0)
1458 {
1459 ++length; /* insert backslash */
1460 p += l - 1;
1461 }
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001462 }
1463
1464 /* Allocate memory for the result and fill it. */
1465 escaped_string = alloc(length);
1466 if (escaped_string != NULL)
1467 {
1468 d = escaped_string;
1469
1470 /* add opening quote */
Bram Moolenaar4f974752019-02-17 17:44:42 +01001471# ifdef MSWIN
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001472 if (!p_ssl)
1473 *d++ = '"';
1474 else
1475# endif
1476 *d++ = '\'';
1477
1478 for (p = string; *p != NUL; )
1479 {
Bram Moolenaar4f974752019-02-17 17:44:42 +01001480# ifdef MSWIN
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001481 if (!p_ssl)
1482 {
1483 if (*p == '"')
1484 {
1485 *d++ = '"';
1486 *d++ = '"';
1487 ++p;
1488 continue;
1489 }
1490 }
1491 else
1492# endif
1493 if (*p == '\'')
1494 {
Bram Moolenaar05bb9532008-07-04 09:44:11 +00001495 *d++ = '\'';
1496 *d++ = '\\';
1497 *d++ = '\'';
1498 *d++ = '\'';
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001499 ++p;
1500 continue;
1501 }
Bram Moolenaar26df0922014-02-23 23:39:13 +01001502 if ((*p == '\n' && (csh_like || do_newline))
1503 || (*p == '!' && (csh_like || do_special)))
Bram Moolenaarffd66c42008-07-16 20:43:37 +00001504 {
1505 *d++ = '\\';
1506 if (csh_like && do_special)
1507 *d++ = '\\';
1508 *d++ = *p++;
1509 continue;
1510 }
Bram Moolenaar05bb9532008-07-04 09:44:11 +00001511 if (do_special && find_cmdline_var(p, &l) >= 0)
1512 {
1513 *d++ = '\\'; /* insert backslash */
1514 while (--l >= 0) /* copy the var */
1515 *d++ = *p++;
Bram Moolenaar099d01d2009-11-25 16:14:45 +00001516 continue;
Bram Moolenaar05bb9532008-07-04 09:44:11 +00001517 }
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001518
1519 MB_COPY_CHAR(p, d);
1520 }
1521
1522 /* add terminating quote and finish with a NUL */
Bram Moolenaar4f974752019-02-17 17:44:42 +01001523# ifdef MSWIN
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001524 if (!p_ssl)
1525 *d++ = '"';
1526 else
1527# endif
1528 *d++ = '\'';
1529 *d = NUL;
1530 }
1531
1532 return escaped_string;
1533}
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001534
Bram Moolenaar071d4272004-06-13 20:20:40 +00001535/*
1536 * Like vim_strsave(), but make all characters uppercase.
1537 * This uses ASCII lower-to-upper case translation, language independent.
1538 */
1539 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001540vim_strsave_up(char_u *string)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001541{
1542 char_u *p1;
1543
1544 p1 = vim_strsave(string);
1545 vim_strup(p1);
1546 return p1;
1547}
1548
1549/*
1550 * Like vim_strnsave(), but make all characters uppercase.
1551 * This uses ASCII lower-to-upper case translation, language independent.
1552 */
1553 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001554vim_strnsave_up(char_u *string, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001555{
1556 char_u *p1;
1557
1558 p1 = vim_strnsave(string, len);
1559 vim_strup(p1);
1560 return p1;
1561}
1562
1563/*
1564 * ASCII lower-to-upper case translation, language independent.
1565 */
1566 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001567vim_strup(
1568 char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001569{
1570 char_u *p2;
1571 int c;
1572
1573 if (p != NULL)
1574 {
1575 p2 = p;
1576 while ((c = *p2) != NUL)
1577#ifdef EBCDIC
1578 *p2++ = isalpha(c) ? toupper(c) : c;
1579#else
1580 *p2++ = (c < 'a' || c > 'z') ? c : (c - 0x20);
1581#endif
1582 }
1583}
1584
Bram Moolenaarc4956c82006-03-12 21:58:43 +00001585#if defined(FEAT_EVAL) || defined(FEAT_SPELL) || defined(PROTO)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001586/*
1587 * Make string "s" all upper-case and return it in allocated memory.
1588 * Handles multi-byte characters as well as possible.
1589 * Returns NULL when out of memory.
1590 */
1591 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001592strup_save(char_u *orig)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001593{
1594 char_u *p;
1595 char_u *res;
1596
1597 res = p = vim_strsave(orig);
1598
1599 if (res != NULL)
1600 while (*p != NUL)
1601 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001602 int l;
1603
1604 if (enc_utf8)
1605 {
1606 int c, uc;
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001607 int newl;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001608 char_u *s;
1609
1610 c = utf_ptr2char(p);
Bram Moolenaare6640ad2017-12-22 21:06:56 +01001611 l = utf_ptr2len(p);
1612 if (c == 0)
1613 {
1614 /* overlong sequence, use only the first byte */
1615 c = *p;
1616 l = 1;
1617 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001618 uc = utf_toupper(c);
1619
1620 /* Reallocate string when byte count changes. This is rare,
1621 * thus it's OK to do another malloc()/free(). */
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001622 newl = utf_char2len(uc);
1623 if (newl != l)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001624 {
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001625 s = alloc((unsigned)STRLEN(res) + 1 + newl - l);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001626 if (s == NULL)
Bram Moolenaarcc5b22b2017-01-26 22:51:56 +01001627 {
1628 vim_free(res);
1629 return NULL;
1630 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001631 mch_memmove(s, res, p - res);
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001632 STRCPY(s + (p - res) + newl, p + l);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001633 p = s + (p - res);
1634 vim_free(res);
1635 res = s;
1636 }
1637
1638 utf_char2bytes(uc, p);
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001639 p += newl;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001640 }
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001641 else if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001642 p += l; /* skip multi-byte character */
1643 else
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001644 {
1645 *p = TOUPPER_LOC(*p); /* note that toupper() can be a macro */
1646 p++;
1647 }
1648 }
1649
1650 return res;
1651}
Bram Moolenaarcc5b22b2017-01-26 22:51:56 +01001652
1653/*
1654 * Make string "s" all lower-case and return it in allocated memory.
1655 * Handles multi-byte characters as well as possible.
1656 * Returns NULL when out of memory.
1657 */
1658 char_u *
1659strlow_save(char_u *orig)
1660{
1661 char_u *p;
1662 char_u *res;
1663
1664 res = p = vim_strsave(orig);
1665
1666 if (res != NULL)
1667 while (*p != NUL)
1668 {
Bram Moolenaarcc5b22b2017-01-26 22:51:56 +01001669 int l;
1670
1671 if (enc_utf8)
1672 {
1673 int c, lc;
1674 int newl;
1675 char_u *s;
1676
1677 c = utf_ptr2char(p);
Bram Moolenaare6640ad2017-12-22 21:06:56 +01001678 l = utf_ptr2len(p);
1679 if (c == 0)
1680 {
1681 /* overlong sequence, use only the first byte */
1682 c = *p;
1683 l = 1;
1684 }
Bram Moolenaarcc5b22b2017-01-26 22:51:56 +01001685 lc = utf_tolower(c);
1686
1687 /* Reallocate string when byte count changes. This is rare,
1688 * thus it's OK to do another malloc()/free(). */
Bram Moolenaarcc5b22b2017-01-26 22:51:56 +01001689 newl = utf_char2len(lc);
1690 if (newl != l)
1691 {
1692 s = alloc((unsigned)STRLEN(res) + 1 + newl - l);
1693 if (s == NULL)
1694 {
1695 vim_free(res);
1696 return NULL;
1697 }
1698 mch_memmove(s, res, p - res);
1699 STRCPY(s + (p - res) + newl, p + l);
1700 p = s + (p - res);
1701 vim_free(res);
1702 res = s;
1703 }
1704
1705 utf_char2bytes(lc, p);
1706 p += newl;
1707 }
1708 else if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
1709 p += l; /* skip multi-byte character */
1710 else
Bram Moolenaarcc5b22b2017-01-26 22:51:56 +01001711 {
1712 *p = TOLOWER_LOC(*p); /* note that tolower() can be a macro */
1713 p++;
1714 }
1715 }
1716
1717 return res;
1718}
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001719#endif
1720
Bram Moolenaar071d4272004-06-13 20:20:40 +00001721/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001722 * delete spaces at the end of a string
1723 */
1724 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001725del_trailing_spaces(char_u *ptr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001726{
1727 char_u *q;
1728
1729 q = ptr + STRLEN(ptr);
Bram Moolenaar1c465442017-03-12 20:10:05 +01001730 while (--q > ptr && VIM_ISWHITE(q[0]) && q[-1] != '\\' && q[-1] != Ctrl_V)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001731 *q = NUL;
1732}
1733
1734/*
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001735 * Like strncpy(), but always terminate the result with one NUL.
Bram Moolenaard042c562005-06-30 22:04:15 +00001736 * "to" must be "len + 1" long!
Bram Moolenaar071d4272004-06-13 20:20:40 +00001737 */
1738 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001739vim_strncpy(char_u *to, char_u *from, size_t len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001740{
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001741 STRNCPY(to, from, len);
1742 to[len] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001743}
1744
1745/*
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02001746 * Like strcat(), but make sure the result fits in "tosize" bytes and is
Bram Moolenaar45600ce2017-01-27 21:54:07 +01001747 * always NUL terminated. "from" and "to" may overlap.
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02001748 */
1749 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001750vim_strcat(char_u *to, char_u *from, size_t tosize)
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02001751{
1752 size_t tolen = STRLEN(to);
1753 size_t fromlen = STRLEN(from);
1754
1755 if (tolen + fromlen + 1 > tosize)
1756 {
1757 mch_memmove(to + tolen, from, tosize - tolen - 1);
1758 to[tosize - 1] = NUL;
1759 }
1760 else
Bram Moolenaar45600ce2017-01-27 21:54:07 +01001761 mch_memmove(to + tolen, from, fromlen + 1);
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02001762}
1763
1764/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001765 * Isolate one part of a string option where parts are separated with
1766 * "sep_chars".
Bram Moolenaar83bab712005-08-01 21:58:57 +00001767 * The part is copied into "buf[maxlen]".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001768 * "*option" is advanced to the next part.
1769 * The length is returned.
1770 */
1771 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001772copy_option_part(
1773 char_u **option,
1774 char_u *buf,
1775 int maxlen,
1776 char *sep_chars)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001777{
1778 int len = 0;
1779 char_u *p = *option;
1780
1781 /* skip '.' at start of option part, for 'suffixes' */
1782 if (*p == '.')
1783 buf[len++] = *p++;
1784 while (*p != NUL && vim_strchr((char_u *)sep_chars, *p) == NULL)
1785 {
1786 /*
1787 * Skip backslash before a separator character and space.
1788 */
1789 if (p[0] == '\\' && vim_strchr((char_u *)sep_chars, p[1]) != NULL)
1790 ++p;
1791 if (len < maxlen - 1)
1792 buf[len++] = *p;
1793 ++p;
1794 }
1795 buf[len] = NUL;
1796
1797 if (*p != NUL && *p != ',') /* skip non-standard separator */
1798 ++p;
1799 p = skip_to_option_part(p); /* p points to next file name */
1800
1801 *option = p;
1802 return len;
1803}
1804
1805/*
Bram Moolenaar4770d092006-01-12 23:22:24 +00001806 * Replacement for free() that ignores NULL pointers.
1807 * Also skip free() when exiting for sure, this helps when we caught a deadly
1808 * signal that was caused by a crash in free().
Bram Moolenaard23a8232018-02-10 18:45:26 +01001809 * If you want to set NULL after calling this function, you should use
1810 * VIM_CLEAR() instead.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001811 */
1812 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001813vim_free(void *x)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001814{
Bram Moolenaar4770d092006-01-12 23:22:24 +00001815 if (x != NULL && !really_exiting)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001816 {
1817#ifdef MEM_PROFILE
1818 mem_pre_free(&x);
1819#endif
1820 free(x);
1821 }
1822}
1823
1824#ifndef HAVE_MEMSET
1825 void *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001826vim_memset(void *ptr, int c, size_t size)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001827{
1828 char *p = ptr;
1829
1830 while (size-- > 0)
1831 *p++ = c;
1832 return ptr;
1833}
1834#endif
1835
Bram Moolenaar071d4272004-06-13 20:20:40 +00001836#if (!defined(HAVE_STRCASECMP) && !defined(HAVE_STRICMP)) || defined(PROTO)
1837/*
1838 * Compare two strings, ignoring case, using current locale.
1839 * Doesn't work for multi-byte characters.
1840 * return 0 for match, < 0 for smaller, > 0 for bigger
1841 */
1842 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001843vim_stricmp(char *s1, char *s2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001844{
1845 int i;
1846
1847 for (;;)
1848 {
1849 i = (int)TOLOWER_LOC(*s1) - (int)TOLOWER_LOC(*s2);
1850 if (i != 0)
1851 return i; /* this character different */
1852 if (*s1 == NUL)
1853 break; /* strings match until NUL */
1854 ++s1;
1855 ++s2;
1856 }
1857 return 0; /* strings match */
1858}
1859#endif
1860
1861#if (!defined(HAVE_STRNCASECMP) && !defined(HAVE_STRNICMP)) || defined(PROTO)
1862/*
1863 * Compare two strings, for length "len", ignoring case, using current locale.
1864 * Doesn't work for multi-byte characters.
1865 * return 0 for match, < 0 for smaller, > 0 for bigger
1866 */
1867 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001868vim_strnicmp(char *s1, char *s2, size_t len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001869{
1870 int i;
1871
1872 while (len > 0)
1873 {
1874 i = (int)TOLOWER_LOC(*s1) - (int)TOLOWER_LOC(*s2);
1875 if (i != 0)
1876 return i; /* this character different */
1877 if (*s1 == NUL)
1878 break; /* strings match until NUL */
1879 ++s1;
1880 ++s2;
1881 --len;
1882 }
1883 return 0; /* strings match */
1884}
1885#endif
1886
Bram Moolenaar071d4272004-06-13 20:20:40 +00001887/*
1888 * Version of strchr() and strrchr() that handle unsigned char strings
Bram Moolenaar05159a02005-02-26 23:04:13 +00001889 * with characters from 128 to 255 correctly. It also doesn't return a
1890 * pointer to the NUL at the end of the string.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001891 */
1892 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001893vim_strchr(char_u *string, int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001894{
1895 char_u *p;
1896 int b;
1897
1898 p = string;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001899 if (enc_utf8 && c >= 0x80)
1900 {
1901 while (*p != NUL)
1902 {
Bram Moolenaarace95982017-03-29 17:30:27 +02001903 int l = utfc_ptr2len(p);
Bram Moolenaard82a2a92015-04-21 14:02:35 +02001904
1905 /* Avoid matching an illegal byte here. */
1906 if (utf_ptr2char(p) == c && l > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001907 return p;
Bram Moolenaard82a2a92015-04-21 14:02:35 +02001908 p += l;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001909 }
1910 return NULL;
1911 }
1912 if (enc_dbcs != 0 && c > 255)
1913 {
1914 int n2 = c & 0xff;
1915
1916 c = ((unsigned)c >> 8) & 0xff;
1917 while ((b = *p) != NUL)
1918 {
1919 if (b == c && p[1] == n2)
1920 return p;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001921 p += (*mb_ptr2len)(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001922 }
1923 return NULL;
1924 }
1925 if (has_mbyte)
1926 {
1927 while ((b = *p) != NUL)
1928 {
1929 if (b == c)
1930 return p;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001931 p += (*mb_ptr2len)(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001932 }
1933 return NULL;
1934 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001935 while ((b = *p) != NUL)
1936 {
1937 if (b == c)
1938 return p;
1939 ++p;
1940 }
1941 return NULL;
1942}
1943
1944/*
Bram Moolenaar05159a02005-02-26 23:04:13 +00001945 * Version of strchr() that only works for bytes and handles unsigned char
1946 * strings with characters above 128 correctly. It also doesn't return a
1947 * pointer to the NUL at the end of the string.
1948 */
1949 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001950vim_strbyte(char_u *string, int c)
Bram Moolenaar05159a02005-02-26 23:04:13 +00001951{
1952 char_u *p = string;
1953
1954 while (*p != NUL)
1955 {
1956 if (*p == c)
1957 return p;
1958 ++p;
1959 }
1960 return NULL;
1961}
1962
1963/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001964 * Search for last occurrence of "c" in "string".
Bram Moolenaarac6e65f2005-08-29 22:25:38 +00001965 * Return NULL if not found.
Bram Moolenaar05159a02005-02-26 23:04:13 +00001966 * Does not handle multi-byte char for "c"!
Bram Moolenaar071d4272004-06-13 20:20:40 +00001967 */
1968 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001969vim_strrchr(char_u *string, int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001970{
1971 char_u *retval = NULL;
Bram Moolenaar05159a02005-02-26 23:04:13 +00001972 char_u *p = string;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001973
Bram Moolenaar05159a02005-02-26 23:04:13 +00001974 while (*p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001975 {
Bram Moolenaar05159a02005-02-26 23:04:13 +00001976 if (*p == c)
1977 retval = p;
Bram Moolenaar91acfff2017-03-12 19:22:36 +01001978 MB_PTR_ADV(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001979 }
1980 return retval;
1981}
1982
1983/*
1984 * Vim's version of strpbrk(), in case it's missing.
1985 * Don't generate a prototype for this, causes problems when it's not used.
1986 */
1987#ifndef PROTO
1988# ifndef HAVE_STRPBRK
1989# ifdef vim_strpbrk
1990# undef vim_strpbrk
1991# endif
1992 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001993vim_strpbrk(char_u *s, char_u *charset)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001994{
1995 while (*s)
1996 {
1997 if (vim_strchr(charset, *s) != NULL)
1998 return s;
Bram Moolenaar91acfff2017-03-12 19:22:36 +01001999 MB_PTR_ADV(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002000 }
2001 return NULL;
2002}
2003# endif
2004#endif
2005
2006/*
2007 * Vim has its own isspace() function, because on some machines isspace()
2008 * can't handle characters above 128.
2009 */
2010 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002011vim_isspace(int x)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002012{
2013 return ((x >= 9 && x <= 13) || x == ' ');
2014}
2015
2016/************************************************************************
Bram Moolenaar383f9bc2005-01-19 22:18:32 +00002017 * Functions for handling growing arrays.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002018 */
2019
2020/*
2021 * Clear an allocated growing array.
2022 */
2023 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002024ga_clear(garray_T *gap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002025{
2026 vim_free(gap->ga_data);
2027 ga_init(gap);
2028}
2029
2030/*
2031 * Clear a growing array that contains a list of strings.
2032 */
2033 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002034ga_clear_strings(garray_T *gap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002035{
2036 int i;
2037
2038 for (i = 0; i < gap->ga_len; ++i)
2039 vim_free(((char_u **)(gap->ga_data))[i]);
2040 ga_clear(gap);
2041}
2042
2043/*
2044 * Initialize a growing array. Don't forget to set ga_itemsize and
2045 * ga_growsize! Or use ga_init2().
2046 */
2047 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002048ga_init(garray_T *gap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002049{
2050 gap->ga_data = NULL;
Bram Moolenaar86b68352004-12-27 21:59:20 +00002051 gap->ga_maxlen = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002052 gap->ga_len = 0;
2053}
2054
2055 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002056ga_init2(garray_T *gap, int itemsize, int growsize)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002057{
2058 ga_init(gap);
2059 gap->ga_itemsize = itemsize;
2060 gap->ga_growsize = growsize;
2061}
2062
2063/*
2064 * Make room in growing array "gap" for at least "n" items.
2065 * Return FAIL for failure, OK otherwise.
2066 */
2067 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002068ga_grow(garray_T *gap, int n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002069{
Bram Moolenaar7282bc32012-02-22 18:12:32 +01002070 size_t old_len;
2071 size_t new_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002072 char_u *pp;
2073
Bram Moolenaar86b68352004-12-27 21:59:20 +00002074 if (gap->ga_maxlen - gap->ga_len < n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002075 {
2076 if (n < gap->ga_growsize)
2077 n = gap->ga_growsize;
Bram Moolenaar7282bc32012-02-22 18:12:32 +01002078 new_len = gap->ga_itemsize * (gap->ga_len + n);
2079 pp = (gap->ga_data == NULL)
Bram Moolenaar4336cdf2012-02-29 13:58:47 +01002080 ? alloc((unsigned)new_len) : vim_realloc(gap->ga_data, new_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002081 if (pp == NULL)
2082 return FAIL;
Bram Moolenaar7282bc32012-02-22 18:12:32 +01002083 old_len = gap->ga_itemsize * gap->ga_maxlen;
2084 vim_memset(pp + old_len, 0, new_len - old_len);
Bram Moolenaar86b68352004-12-27 21:59:20 +00002085 gap->ga_maxlen = gap->ga_len + n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002086 gap->ga_data = pp;
2087 }
2088 return OK;
2089}
2090
Bram Moolenaar113e1072019-01-20 15:30:40 +01002091#if defined(FEAT_EVAL) || defined(FEAT_SEARCHPATH) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002092/*
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02002093 * For a growing array that contains a list of strings: concatenate all the
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02002094 * strings with a separating "sep".
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02002095 * Returns NULL when out of memory.
2096 */
2097 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01002098ga_concat_strings(garray_T *gap, char *sep)
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02002099{
2100 int i;
2101 int len = 0;
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02002102 int sep_len = (int)STRLEN(sep);
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02002103 char_u *s;
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02002104 char_u *p;
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02002105
2106 for (i = 0; i < gap->ga_len; ++i)
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02002107 len += (int)STRLEN(((char_u **)(gap->ga_data))[i]) + sep_len;
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02002108
2109 s = alloc(len + 1);
2110 if (s != NULL)
2111 {
2112 *s = NUL;
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02002113 p = s;
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02002114 for (i = 0; i < gap->ga_len; ++i)
2115 {
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02002116 if (p != s)
2117 {
2118 STRCPY(p, sep);
2119 p += sep_len;
2120 }
2121 STRCPY(p, ((char_u **)(gap->ga_data))[i]);
2122 p += STRLEN(p);
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02002123 }
2124 }
2125 return s;
2126}
Bram Moolenaar113e1072019-01-20 15:30:40 +01002127#endif
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02002128
Bram Moolenaar5a66dfb2017-03-01 20:40:39 +01002129#if defined(FEAT_VIMINFO) || defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaarb20e3342016-01-18 23:29:01 +01002130/*
2131 * Make a copy of string "p" and add it to "gap".
2132 * When out of memory nothing changes.
2133 */
2134 void
2135ga_add_string(garray_T *gap, char_u *p)
2136{
2137 char_u *cp = vim_strsave(p);
2138
2139 if (cp != NULL)
2140 {
2141 if (ga_grow(gap, 1) == OK)
2142 ((char_u **)(gap->ga_data))[gap->ga_len++] = cp;
2143 else
2144 vim_free(cp);
2145 }
2146}
2147#endif
2148
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02002149/*
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01002150 * Concatenate a string to a growarray which contains bytes.
Bram Moolenaar43345542015-11-29 17:35:35 +01002151 * When "s" is NULL does not do anything.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002152 * Note: Does NOT copy the NUL at the end!
2153 */
2154 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002155ga_concat(garray_T *gap, char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002156{
Bram Moolenaar43345542015-11-29 17:35:35 +01002157 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002158
Bram Moolenaar478af672017-04-10 22:22:42 +02002159 if (s == NULL || *s == NUL)
Bram Moolenaar43345542015-11-29 17:35:35 +01002160 return;
2161 len = (int)STRLEN(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002162 if (ga_grow(gap, len) == OK)
2163 {
2164 mch_memmove((char *)gap->ga_data + gap->ga_len, s, (size_t)len);
2165 gap->ga_len += len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002166 }
2167}
2168
2169/*
2170 * Append one byte to a growarray which contains bytes.
2171 */
2172 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002173ga_append(garray_T *gap, int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002174{
2175 if (ga_grow(gap, 1) == OK)
2176 {
2177 *((char *)gap->ga_data + gap->ga_len) = c;
2178 ++gap->ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002179 }
2180}
2181
Bram Moolenaar4f974752019-02-17 17:44:42 +01002182#if (defined(UNIX) && !defined(USE_SYSTEM)) || defined(MSWIN) \
Bram Moolenaar597a4222014-06-25 14:39:50 +02002183 || defined(PROTO)
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02002184/*
2185 * Append the text in "gap" below the cursor line and clear "gap".
2186 */
2187 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002188append_ga_line(garray_T *gap)
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02002189{
2190 /* Remove trailing CR. */
2191 if (gap->ga_len > 0
2192 && !curbuf->b_p_bin
2193 && ((char_u *)gap->ga_data)[gap->ga_len - 1] == CAR)
2194 --gap->ga_len;
2195 ga_append(gap, NUL);
2196 ml_append(curwin->w_cursor.lnum++, gap->ga_data, 0, FALSE);
2197 gap->ga_len = 0;
2198}
2199#endif
2200
Bram Moolenaar071d4272004-06-13 20:20:40 +00002201/************************************************************************
2202 * functions that use lookup tables for various things, generally to do with
2203 * special key codes.
2204 */
2205
2206/*
2207 * Some useful tables.
2208 */
2209
2210static struct modmasktable
2211{
2212 short mod_mask; /* Bit-mask for particular key modifier */
2213 short mod_flag; /* Bit(s) for particular key modifier */
2214 char_u name; /* Single letter name of modifier */
2215} mod_mask_table[] =
2216{
2217 {MOD_MASK_ALT, MOD_MASK_ALT, (char_u)'M'},
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002218 {MOD_MASK_META, MOD_MASK_META, (char_u)'T'},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002219 {MOD_MASK_CTRL, MOD_MASK_CTRL, (char_u)'C'},
2220 {MOD_MASK_SHIFT, MOD_MASK_SHIFT, (char_u)'S'},
2221 {MOD_MASK_MULTI_CLICK, MOD_MASK_2CLICK, (char_u)'2'},
2222 {MOD_MASK_MULTI_CLICK, MOD_MASK_3CLICK, (char_u)'3'},
2223 {MOD_MASK_MULTI_CLICK, MOD_MASK_4CLICK, (char_u)'4'},
Bram Moolenaard0573012017-10-28 21:11:06 +02002224#ifdef MACOS_X
Bram Moolenaar071d4272004-06-13 20:20:40 +00002225 {MOD_MASK_CMD, MOD_MASK_CMD, (char_u)'D'},
2226#endif
2227 /* 'A' must be the last one */
2228 {MOD_MASK_ALT, MOD_MASK_ALT, (char_u)'A'},
2229 {0, 0, NUL}
Bram Moolenaar423977d2017-01-22 15:05:12 +01002230 /* NOTE: when adding an entry, update MAX_KEY_NAME_LEN! */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002231};
2232
2233/*
2234 * Shifted key terminal codes and their unshifted equivalent.
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00002235 * Don't add mouse codes here, they are handled separately!
Bram Moolenaar071d4272004-06-13 20:20:40 +00002236 */
2237#define MOD_KEYS_ENTRY_SIZE 5
2238
2239static char_u modifier_keys_table[] =
2240{
2241/* mod mask with modifier without modifier */
2242 MOD_MASK_SHIFT, '&', '9', '@', '1', /* begin */
2243 MOD_MASK_SHIFT, '&', '0', '@', '2', /* cancel */
2244 MOD_MASK_SHIFT, '*', '1', '@', '4', /* command */
2245 MOD_MASK_SHIFT, '*', '2', '@', '5', /* copy */
2246 MOD_MASK_SHIFT, '*', '3', '@', '6', /* create */
2247 MOD_MASK_SHIFT, '*', '4', 'k', 'D', /* delete char */
2248 MOD_MASK_SHIFT, '*', '5', 'k', 'L', /* delete line */
2249 MOD_MASK_SHIFT, '*', '7', '@', '7', /* end */
2250 MOD_MASK_CTRL, KS_EXTRA, (int)KE_C_END, '@', '7', /* end */
2251 MOD_MASK_SHIFT, '*', '9', '@', '9', /* exit */
2252 MOD_MASK_SHIFT, '*', '0', '@', '0', /* find */
2253 MOD_MASK_SHIFT, '#', '1', '%', '1', /* help */
2254 MOD_MASK_SHIFT, '#', '2', 'k', 'h', /* home */
2255 MOD_MASK_CTRL, KS_EXTRA, (int)KE_C_HOME, 'k', 'h', /* home */
2256 MOD_MASK_SHIFT, '#', '3', 'k', 'I', /* insert */
2257 MOD_MASK_SHIFT, '#', '4', 'k', 'l', /* left arrow */
2258 MOD_MASK_CTRL, KS_EXTRA, (int)KE_C_LEFT, 'k', 'l', /* left arrow */
2259 MOD_MASK_SHIFT, '%', 'a', '%', '3', /* message */
2260 MOD_MASK_SHIFT, '%', 'b', '%', '4', /* move */
2261 MOD_MASK_SHIFT, '%', 'c', '%', '5', /* next */
2262 MOD_MASK_SHIFT, '%', 'd', '%', '7', /* options */
2263 MOD_MASK_SHIFT, '%', 'e', '%', '8', /* previous */
2264 MOD_MASK_SHIFT, '%', 'f', '%', '9', /* print */
2265 MOD_MASK_SHIFT, '%', 'g', '%', '0', /* redo */
2266 MOD_MASK_SHIFT, '%', 'h', '&', '3', /* replace */
2267 MOD_MASK_SHIFT, '%', 'i', 'k', 'r', /* right arr. */
2268 MOD_MASK_CTRL, KS_EXTRA, (int)KE_C_RIGHT, 'k', 'r', /* right arr. */
2269 MOD_MASK_SHIFT, '%', 'j', '&', '5', /* resume */
2270 MOD_MASK_SHIFT, '!', '1', '&', '6', /* save */
2271 MOD_MASK_SHIFT, '!', '2', '&', '7', /* suspend */
2272 MOD_MASK_SHIFT, '!', '3', '&', '8', /* undo */
2273 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_UP, 'k', 'u', /* up arrow */
2274 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_DOWN, 'k', 'd', /* down arrow */
2275
2276 /* vt100 F1 */
2277 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_XF1, KS_EXTRA, (int)KE_XF1,
2278 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_XF2, KS_EXTRA, (int)KE_XF2,
2279 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_XF3, KS_EXTRA, (int)KE_XF3,
2280 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_XF4, KS_EXTRA, (int)KE_XF4,
2281
2282 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F1, 'k', '1', /* F1 */
2283 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F2, 'k', '2',
2284 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F3, 'k', '3',
2285 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F4, 'k', '4',
2286 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F5, 'k', '5',
2287 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F6, 'k', '6',
2288 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F7, 'k', '7',
2289 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F8, 'k', '8',
2290 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F9, 'k', '9',
2291 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F10, 'k', ';', /* F10 */
2292
2293 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F11, 'F', '1',
2294 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F12, 'F', '2',
2295 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F13, 'F', '3',
2296 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F14, 'F', '4',
2297 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F15, 'F', '5',
2298 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F16, 'F', '6',
2299 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F17, 'F', '7',
2300 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F18, 'F', '8',
2301 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F19, 'F', '9',
2302 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F20, 'F', 'A',
2303
2304 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F21, 'F', 'B',
2305 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F22, 'F', 'C',
2306 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F23, 'F', 'D',
2307 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F24, 'F', 'E',
2308 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F25, 'F', 'F',
2309 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F26, 'F', 'G',
2310 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F27, 'F', 'H',
2311 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F28, 'F', 'I',
2312 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F29, 'F', 'J',
2313 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F30, 'F', 'K',
2314
2315 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F31, 'F', 'L',
2316 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F32, 'F', 'M',
2317 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F33, 'F', 'N',
2318 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F34, 'F', 'O',
2319 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F35, 'F', 'P',
2320 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F36, 'F', 'Q',
2321 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F37, 'F', 'R',
2322
2323 /* TAB pseudo code*/
2324 MOD_MASK_SHIFT, 'k', 'B', KS_EXTRA, (int)KE_TAB,
2325
2326 NUL
2327};
2328
2329static struct key_name_entry
2330{
2331 int key; /* Special key code or ascii value */
2332 char_u *name; /* Name of key */
2333} key_names_table[] =
2334{
2335 {' ', (char_u *)"Space"},
2336 {TAB, (char_u *)"Tab"},
2337 {K_TAB, (char_u *)"Tab"},
2338 {NL, (char_u *)"NL"},
2339 {NL, (char_u *)"NewLine"}, /* Alternative name */
2340 {NL, (char_u *)"LineFeed"}, /* Alternative name */
2341 {NL, (char_u *)"LF"}, /* Alternative name */
2342 {CAR, (char_u *)"CR"},
2343 {CAR, (char_u *)"Return"}, /* Alternative name */
2344 {CAR, (char_u *)"Enter"}, /* Alternative name */
2345 {K_BS, (char_u *)"BS"},
2346 {K_BS, (char_u *)"BackSpace"}, /* Alternative name */
2347 {ESC, (char_u *)"Esc"},
2348 {CSI, (char_u *)"CSI"},
2349 {K_CSI, (char_u *)"xCSI"},
2350 {'|', (char_u *)"Bar"},
2351 {'\\', (char_u *)"Bslash"},
2352 {K_DEL, (char_u *)"Del"},
2353 {K_DEL, (char_u *)"Delete"}, /* Alternative name */
2354 {K_KDEL, (char_u *)"kDel"},
2355 {K_UP, (char_u *)"Up"},
2356 {K_DOWN, (char_u *)"Down"},
2357 {K_LEFT, (char_u *)"Left"},
2358 {K_RIGHT, (char_u *)"Right"},
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002359 {K_XUP, (char_u *)"xUp"},
2360 {K_XDOWN, (char_u *)"xDown"},
2361 {K_XLEFT, (char_u *)"xLeft"},
2362 {K_XRIGHT, (char_u *)"xRight"},
Bram Moolenaarec2da362017-01-21 20:04:22 +01002363 {K_PS, (char_u *)"PasteStart"},
2364 {K_PE, (char_u *)"PasteEnd"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002365
2366 {K_F1, (char_u *)"F1"},
2367 {K_F2, (char_u *)"F2"},
2368 {K_F3, (char_u *)"F3"},
2369 {K_F4, (char_u *)"F4"},
2370 {K_F5, (char_u *)"F5"},
2371 {K_F6, (char_u *)"F6"},
2372 {K_F7, (char_u *)"F7"},
2373 {K_F8, (char_u *)"F8"},
2374 {K_F9, (char_u *)"F9"},
2375 {K_F10, (char_u *)"F10"},
2376
2377 {K_F11, (char_u *)"F11"},
2378 {K_F12, (char_u *)"F12"},
2379 {K_F13, (char_u *)"F13"},
2380 {K_F14, (char_u *)"F14"},
2381 {K_F15, (char_u *)"F15"},
2382 {K_F16, (char_u *)"F16"},
2383 {K_F17, (char_u *)"F17"},
2384 {K_F18, (char_u *)"F18"},
2385 {K_F19, (char_u *)"F19"},
2386 {K_F20, (char_u *)"F20"},
2387
2388 {K_F21, (char_u *)"F21"},
2389 {K_F22, (char_u *)"F22"},
2390 {K_F23, (char_u *)"F23"},
2391 {K_F24, (char_u *)"F24"},
2392 {K_F25, (char_u *)"F25"},
2393 {K_F26, (char_u *)"F26"},
2394 {K_F27, (char_u *)"F27"},
2395 {K_F28, (char_u *)"F28"},
2396 {K_F29, (char_u *)"F29"},
2397 {K_F30, (char_u *)"F30"},
2398
2399 {K_F31, (char_u *)"F31"},
2400 {K_F32, (char_u *)"F32"},
2401 {K_F33, (char_u *)"F33"},
2402 {K_F34, (char_u *)"F34"},
2403 {K_F35, (char_u *)"F35"},
2404 {K_F36, (char_u *)"F36"},
2405 {K_F37, (char_u *)"F37"},
2406
2407 {K_XF1, (char_u *)"xF1"},
2408 {K_XF2, (char_u *)"xF2"},
2409 {K_XF3, (char_u *)"xF3"},
2410 {K_XF4, (char_u *)"xF4"},
2411
2412 {K_HELP, (char_u *)"Help"},
2413 {K_UNDO, (char_u *)"Undo"},
2414 {K_INS, (char_u *)"Insert"},
2415 {K_INS, (char_u *)"Ins"}, /* Alternative name */
2416 {K_KINS, (char_u *)"kInsert"},
2417 {K_HOME, (char_u *)"Home"},
2418 {K_KHOME, (char_u *)"kHome"},
2419 {K_XHOME, (char_u *)"xHome"},
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002420 {K_ZHOME, (char_u *)"zHome"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002421 {K_END, (char_u *)"End"},
2422 {K_KEND, (char_u *)"kEnd"},
2423 {K_XEND, (char_u *)"xEnd"},
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002424 {K_ZEND, (char_u *)"zEnd"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002425 {K_PAGEUP, (char_u *)"PageUp"},
2426 {K_PAGEDOWN, (char_u *)"PageDown"},
2427 {K_KPAGEUP, (char_u *)"kPageUp"},
2428 {K_KPAGEDOWN, (char_u *)"kPageDown"},
2429
2430 {K_KPLUS, (char_u *)"kPlus"},
2431 {K_KMINUS, (char_u *)"kMinus"},
2432 {K_KDIVIDE, (char_u *)"kDivide"},
2433 {K_KMULTIPLY, (char_u *)"kMultiply"},
2434 {K_KENTER, (char_u *)"kEnter"},
2435 {K_KPOINT, (char_u *)"kPoint"},
2436
2437 {K_K0, (char_u *)"k0"},
2438 {K_K1, (char_u *)"k1"},
2439 {K_K2, (char_u *)"k2"},
2440 {K_K3, (char_u *)"k3"},
2441 {K_K4, (char_u *)"k4"},
2442 {K_K5, (char_u *)"k5"},
2443 {K_K6, (char_u *)"k6"},
2444 {K_K7, (char_u *)"k7"},
2445 {K_K8, (char_u *)"k8"},
2446 {K_K9, (char_u *)"k9"},
2447
2448 {'<', (char_u *)"lt"},
2449
2450 {K_MOUSE, (char_u *)"Mouse"},
Bram Moolenaar5af7d712012-01-20 17:15:51 +01002451#ifdef FEAT_MOUSE_NET
Bram Moolenaar071d4272004-06-13 20:20:40 +00002452 {K_NETTERM_MOUSE, (char_u *)"NetMouse"},
Bram Moolenaar5af7d712012-01-20 17:15:51 +01002453#endif
2454#ifdef FEAT_MOUSE_DEC
Bram Moolenaar071d4272004-06-13 20:20:40 +00002455 {K_DEC_MOUSE, (char_u *)"DecMouse"},
Bram Moolenaar5af7d712012-01-20 17:15:51 +01002456#endif
2457#ifdef FEAT_MOUSE_JSB
Bram Moolenaar071d4272004-06-13 20:20:40 +00002458 {K_JSBTERM_MOUSE, (char_u *)"JsbMouse"},
Bram Moolenaar5af7d712012-01-20 17:15:51 +01002459#endif
2460#ifdef FEAT_MOUSE_PTERM
Bram Moolenaar071d4272004-06-13 20:20:40 +00002461 {K_PTERM_MOUSE, (char_u *)"PtermMouse"},
Bram Moolenaar5af7d712012-01-20 17:15:51 +01002462#endif
2463#ifdef FEAT_MOUSE_URXVT
2464 {K_URXVT_MOUSE, (char_u *)"UrxvtMouse"},
2465#endif
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02002466 {K_SGR_MOUSE, (char_u *)"SgrMouse"},
Bram Moolenaara529ce02017-06-22 22:37:57 +02002467 {K_SGR_MOUSERELEASE, (char_u *)"SgrMouseRelelase"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002468 {K_LEFTMOUSE, (char_u *)"LeftMouse"},
2469 {K_LEFTMOUSE_NM, (char_u *)"LeftMouseNM"},
2470 {K_LEFTDRAG, (char_u *)"LeftDrag"},
2471 {K_LEFTRELEASE, (char_u *)"LeftRelease"},
2472 {K_LEFTRELEASE_NM, (char_u *)"LeftReleaseNM"},
Bram Moolenaar51b0f372017-11-18 18:52:04 +01002473 {K_MOUSEMOVE, (char_u *)"MouseMove"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002474 {K_MIDDLEMOUSE, (char_u *)"MiddleMouse"},
2475 {K_MIDDLEDRAG, (char_u *)"MiddleDrag"},
2476 {K_MIDDLERELEASE, (char_u *)"MiddleRelease"},
2477 {K_RIGHTMOUSE, (char_u *)"RightMouse"},
2478 {K_RIGHTDRAG, (char_u *)"RightDrag"},
2479 {K_RIGHTRELEASE, (char_u *)"RightRelease"},
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02002480 {K_MOUSEDOWN, (char_u *)"ScrollWheelUp"},
2481 {K_MOUSEUP, (char_u *)"ScrollWheelDown"},
2482 {K_MOUSELEFT, (char_u *)"ScrollWheelRight"},
2483 {K_MOUSERIGHT, (char_u *)"ScrollWheelLeft"},
2484 {K_MOUSEDOWN, (char_u *)"MouseDown"}, /* OBSOLETE: Use */
2485 {K_MOUSEUP, (char_u *)"MouseUp"}, /* ScrollWheelXXX instead */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002486 {K_X1MOUSE, (char_u *)"X1Mouse"},
2487 {K_X1DRAG, (char_u *)"X1Drag"},
2488 {K_X1RELEASE, (char_u *)"X1Release"},
2489 {K_X2MOUSE, (char_u *)"X2Mouse"},
2490 {K_X2DRAG, (char_u *)"X2Drag"},
2491 {K_X2RELEASE, (char_u *)"X2Release"},
2492 {K_DROP, (char_u *)"Drop"},
2493 {K_ZERO, (char_u *)"Nul"},
2494#ifdef FEAT_EVAL
2495 {K_SNR, (char_u *)"SNR"},
2496#endif
2497 {K_PLUG, (char_u *)"Plug"},
Bram Moolenaar1db60c42014-09-23 16:49:46 +02002498 {K_CURSORHOLD, (char_u *)"CursorHold"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002499 {0, NULL}
Bram Moolenaar423977d2017-01-22 15:05:12 +01002500 /* NOTE: When adding a long name update MAX_KEY_NAME_LEN. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002501};
2502
2503#define KEY_NAMES_TABLE_LEN (sizeof(key_names_table) / sizeof(struct key_name_entry))
2504
2505#ifdef FEAT_MOUSE
2506static struct mousetable
2507{
2508 int pseudo_code; /* Code for pseudo mouse event */
2509 int button; /* Which mouse button is it? */
2510 int is_click; /* Is it a mouse button click event? */
2511 int is_drag; /* Is it a mouse drag event? */
2512} mouse_table[] =
2513{
2514 {(int)KE_LEFTMOUSE, MOUSE_LEFT, TRUE, FALSE},
2515#ifdef FEAT_GUI
2516 {(int)KE_LEFTMOUSE_NM, MOUSE_LEFT, TRUE, FALSE},
2517#endif
2518 {(int)KE_LEFTDRAG, MOUSE_LEFT, FALSE, TRUE},
2519 {(int)KE_LEFTRELEASE, MOUSE_LEFT, FALSE, FALSE},
2520#ifdef FEAT_GUI
2521 {(int)KE_LEFTRELEASE_NM, MOUSE_LEFT, FALSE, FALSE},
2522#endif
2523 {(int)KE_MIDDLEMOUSE, MOUSE_MIDDLE, TRUE, FALSE},
2524 {(int)KE_MIDDLEDRAG, MOUSE_MIDDLE, FALSE, TRUE},
2525 {(int)KE_MIDDLERELEASE, MOUSE_MIDDLE, FALSE, FALSE},
2526 {(int)KE_RIGHTMOUSE, MOUSE_RIGHT, TRUE, FALSE},
2527 {(int)KE_RIGHTDRAG, MOUSE_RIGHT, FALSE, TRUE},
2528 {(int)KE_RIGHTRELEASE, MOUSE_RIGHT, FALSE, FALSE},
2529 {(int)KE_X1MOUSE, MOUSE_X1, TRUE, FALSE},
2530 {(int)KE_X1DRAG, MOUSE_X1, FALSE, TRUE},
2531 {(int)KE_X1RELEASE, MOUSE_X1, FALSE, FALSE},
2532 {(int)KE_X2MOUSE, MOUSE_X2, TRUE, FALSE},
2533 {(int)KE_X2DRAG, MOUSE_X2, FALSE, TRUE},
2534 {(int)KE_X2RELEASE, MOUSE_X2, FALSE, FALSE},
2535 /* DRAG without CLICK */
Bram Moolenaar51b0f372017-11-18 18:52:04 +01002536 {(int)KE_MOUSEMOVE, MOUSE_RELEASE, FALSE, TRUE},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002537 /* RELEASE without CLICK */
2538 {(int)KE_IGNORE, MOUSE_RELEASE, FALSE, FALSE},
2539 {0, 0, 0, 0},
2540};
2541#endif /* FEAT_MOUSE */
2542
2543/*
2544 * Return the modifier mask bit (MOD_MASK_*) which corresponds to the given
2545 * modifier name ('S' for Shift, 'C' for Ctrl etc).
2546 */
2547 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002548name_to_mod_mask(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002549{
2550 int i;
2551
2552 c = TOUPPER_ASC(c);
2553 for (i = 0; mod_mask_table[i].mod_mask != 0; i++)
2554 if (c == mod_mask_table[i].name)
2555 return mod_mask_table[i].mod_flag;
2556 return 0;
2557}
2558
Bram Moolenaar071d4272004-06-13 20:20:40 +00002559/*
2560 * Check if if there is a special key code for "key" that includes the
2561 * modifiers specified.
2562 */
2563 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002564simplify_key(int key, int *modifiers)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002565{
2566 int i;
2567 int key0;
2568 int key1;
2569
2570 if (*modifiers & (MOD_MASK_SHIFT | MOD_MASK_CTRL | MOD_MASK_ALT))
2571 {
2572 /* TAB is a special case */
2573 if (key == TAB && (*modifiers & MOD_MASK_SHIFT))
2574 {
2575 *modifiers &= ~MOD_MASK_SHIFT;
2576 return K_S_TAB;
2577 }
2578 key0 = KEY2TERMCAP0(key);
2579 key1 = KEY2TERMCAP1(key);
2580 for (i = 0; modifier_keys_table[i] != NUL; i += MOD_KEYS_ENTRY_SIZE)
2581 if (key0 == modifier_keys_table[i + 3]
2582 && key1 == modifier_keys_table[i + 4]
2583 && (*modifiers & modifier_keys_table[i]))
2584 {
2585 *modifiers &= ~modifier_keys_table[i];
2586 return TERMCAP2KEY(modifier_keys_table[i + 1],
2587 modifier_keys_table[i + 2]);
2588 }
2589 }
2590 return key;
2591}
2592
2593/*
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002594 * Change <xHome> to <Home>, <xUp> to <Up>, etc.
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002595 */
2596 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002597handle_x_keys(int key)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002598{
2599 switch (key)
2600 {
2601 case K_XUP: return K_UP;
2602 case K_XDOWN: return K_DOWN;
2603 case K_XLEFT: return K_LEFT;
2604 case K_XRIGHT: return K_RIGHT;
2605 case K_XHOME: return K_HOME;
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002606 case K_ZHOME: return K_HOME;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002607 case K_XEND: return K_END;
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002608 case K_ZEND: return K_END;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002609 case K_XF1: return K_F1;
2610 case K_XF2: return K_F2;
2611 case K_XF3: return K_F3;
2612 case K_XF4: return K_F4;
2613 case K_S_XF1: return K_S_F1;
2614 case K_S_XF2: return K_S_F2;
2615 case K_S_XF3: return K_S_F3;
2616 case K_S_XF4: return K_S_F4;
2617 }
2618 return key;
2619}
2620
2621/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002622 * Return a string which contains the name of the given key when the given
2623 * modifiers are down.
2624 */
2625 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01002626get_special_key_name(int c, int modifiers)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002627{
2628 static char_u string[MAX_KEY_NAME_LEN + 1];
2629
2630 int i, idx;
2631 int table_idx;
2632 char_u *s;
2633
2634 string[0] = '<';
2635 idx = 1;
2636
2637 /* Key that stands for a normal character. */
2638 if (IS_SPECIAL(c) && KEY2TERMCAP0(c) == KS_KEY)
2639 c = KEY2TERMCAP1(c);
2640
2641 /*
2642 * Translate shifted special keys into unshifted keys and set modifier.
2643 * Same for CTRL and ALT modifiers.
2644 */
2645 if (IS_SPECIAL(c))
2646 {
2647 for (i = 0; modifier_keys_table[i] != 0; i += MOD_KEYS_ENTRY_SIZE)
2648 if ( KEY2TERMCAP0(c) == (int)modifier_keys_table[i + 1]
2649 && (int)KEY2TERMCAP1(c) == (int)modifier_keys_table[i + 2])
2650 {
2651 modifiers |= modifier_keys_table[i];
2652 c = TERMCAP2KEY(modifier_keys_table[i + 3],
2653 modifier_keys_table[i + 4]);
2654 break;
2655 }
2656 }
2657
2658 /* try to find the key in the special key table */
2659 table_idx = find_special_key_in_table(c);
2660
2661 /*
2662 * When not a known special key, and not a printable character, try to
2663 * extract modifiers.
2664 */
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01002665 if (c > 0 && (*mb_char2len)(c) == 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002666 {
2667 if (table_idx < 0
2668 && (!vim_isprintc(c) || (c & 0x7f) == ' ')
2669 && (c & 0x80))
2670 {
2671 c &= 0x7f;
2672 modifiers |= MOD_MASK_ALT;
2673 /* try again, to find the un-alted key in the special key table */
2674 table_idx = find_special_key_in_table(c);
2675 }
2676 if (table_idx < 0 && !vim_isprintc(c) && c < ' ')
2677 {
2678#ifdef EBCDIC
2679 c = CtrlChar(c);
2680#else
2681 c += '@';
2682#endif
2683 modifiers |= MOD_MASK_CTRL;
2684 }
2685 }
2686
2687 /* translate the modifier into a string */
2688 for (i = 0; mod_mask_table[i].name != 'A'; i++)
2689 if ((modifiers & mod_mask_table[i].mod_mask)
2690 == mod_mask_table[i].mod_flag)
2691 {
2692 string[idx++] = mod_mask_table[i].name;
2693 string[idx++] = (char_u)'-';
2694 }
2695
2696 if (table_idx < 0) /* unknown special key, may output t_xx */
2697 {
2698 if (IS_SPECIAL(c))
2699 {
2700 string[idx++] = 't';
2701 string[idx++] = '_';
2702 string[idx++] = KEY2TERMCAP0(c);
2703 string[idx++] = KEY2TERMCAP1(c);
2704 }
2705 /* Not a special key, only modifiers, output directly */
2706 else
2707 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002708 if (has_mbyte && (*mb_char2len)(c) > 1)
2709 idx += (*mb_char2bytes)(c, string + idx);
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01002710 else if (vim_isprintc(c))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002711 string[idx++] = c;
2712 else
2713 {
2714 s = transchar(c);
2715 while (*s)
2716 string[idx++] = *s++;
2717 }
2718 }
2719 }
2720 else /* use name of special key */
2721 {
Bram Moolenaar423977d2017-01-22 15:05:12 +01002722 size_t len = STRLEN(key_names_table[table_idx].name);
2723
2724 if (len + idx + 2 <= MAX_KEY_NAME_LEN)
2725 {
2726 STRCPY(string + idx, key_names_table[table_idx].name);
2727 idx += (int)len;
2728 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002729 }
2730 string[idx++] = '>';
2731 string[idx] = NUL;
2732 return string;
2733}
2734
2735/*
2736 * Try translating a <> name at (*srcp)[] to dst[].
2737 * Return the number of characters added to dst[], zero for no match.
2738 * If there is a match, srcp is advanced to after the <> name.
2739 * dst[] must be big enough to hold the result (up to six characters)!
2740 */
2741 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002742trans_special(
2743 char_u **srcp,
2744 char_u *dst,
Bram Moolenaar35a4cfa2016-08-14 16:07:48 +02002745 int keycode, /* prefer key code, e.g. K_DEL instead of DEL */
2746 int in_string) /* TRUE when inside a double quoted string */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002747{
2748 int modifiers = 0;
2749 int key;
2750 int dlen = 0;
2751
Bram Moolenaar35a4cfa2016-08-14 16:07:48 +02002752 key = find_special_key(srcp, &modifiers, keycode, FALSE, in_string);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002753 if (key == 0)
2754 return 0;
2755
2756 /* Put the appropriate modifier in a string */
2757 if (modifiers != 0)
2758 {
2759 dst[dlen++] = K_SPECIAL;
2760 dst[dlen++] = KS_MODIFIER;
2761 dst[dlen++] = modifiers;
2762 }
2763
2764 if (IS_SPECIAL(key))
2765 {
2766 dst[dlen++] = K_SPECIAL;
2767 dst[dlen++] = KEY2TERMCAP0(key);
2768 dst[dlen++] = KEY2TERMCAP1(key);
2769 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002770 else if (has_mbyte && !keycode)
2771 dlen += (*mb_char2bytes)(key, dst + dlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002772 else if (keycode)
2773 dlen = (int)(add_char2buf(key, dst + dlen) - dst);
2774 else
2775 dst[dlen++] = key;
2776
2777 return dlen;
2778}
2779
2780/*
2781 * Try translating a <> name at (*srcp)[], return the key and modifiers.
2782 * srcp is advanced to after the <> name.
2783 * returns 0 if there is no match.
2784 */
2785 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002786find_special_key(
2787 char_u **srcp,
2788 int *modp,
2789 int keycode, /* prefer key code, e.g. K_DEL instead of DEL */
Bram Moolenaar35a4cfa2016-08-14 16:07:48 +02002790 int keep_x_key, /* don't translate xHome to Home key */
2791 int in_string) /* TRUE in string, double quote is escaped */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002792{
2793 char_u *last_dash;
2794 char_u *end_of_name;
2795 char_u *src;
2796 char_u *bp;
2797 int modifiers;
2798 int bit;
2799 int key;
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02002800 uvarnumber_T n;
Bram Moolenaarb8bf5412011-08-17 20:33:22 +02002801 int l;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002802
2803 src = *srcp;
2804 if (src[0] != '<')
2805 return 0;
2806
2807 /* Find end of modifier list */
2808 last_dash = src;
2809 for (bp = src + 1; *bp == '-' || vim_isIDc(*bp); bp++)
2810 {
2811 if (*bp == '-')
2812 {
2813 last_dash = bp;
Bram Moolenaarb8bf5412011-08-17 20:33:22 +02002814 if (bp[1] != NUL)
2815 {
Bram Moolenaarb8bf5412011-08-17 20:33:22 +02002816 if (has_mbyte)
2817 l = mb_ptr2len(bp + 1);
2818 else
Bram Moolenaarb8bf5412011-08-17 20:33:22 +02002819 l = 1;
Bram Moolenaar35a4cfa2016-08-14 16:07:48 +02002820 /* Anything accepted, like <C-?>.
2821 * <C-"> or <M-"> are not special in strings as " is
2822 * the string delimiter. With a backslash it works: <M-\"> */
2823 if (!(in_string && bp[1] == '"') && bp[2] == '>')
Bram Moolenaar1d90a5a2016-07-01 11:59:47 +02002824 bp += l;
Bram Moolenaar35a4cfa2016-08-14 16:07:48 +02002825 else if (in_string && bp[1] == '\\' && bp[2] == '"'
2826 && bp[3] == '>')
2827 bp += 2;
Bram Moolenaarb8bf5412011-08-17 20:33:22 +02002828 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002829 }
2830 if (bp[0] == 't' && bp[1] == '_' && bp[2] && bp[3])
2831 bp += 3; /* skip t_xx, xx may be '-' or '>' */
Bram Moolenaar792826c2011-08-19 22:29:02 +02002832 else if (STRNICMP(bp, "char-", 5) == 0)
2833 {
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01002834 vim_str2nr(bp + 5, NULL, &l, STR2NR_ALL, NULL, NULL, 0);
Bram Moolenaar792826c2011-08-19 22:29:02 +02002835 bp += l + 5;
2836 break;
2837 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002838 }
2839
2840 if (*bp == '>') /* found matching '>' */
2841 {
2842 end_of_name = bp + 1;
2843
Bram Moolenaar071d4272004-06-13 20:20:40 +00002844 /* Which modifiers are given? */
2845 modifiers = 0x0;
2846 for (bp = src + 1; bp < last_dash; bp++)
2847 {
2848 if (*bp != '-')
2849 {
2850 bit = name_to_mod_mask(*bp);
2851 if (bit == 0x0)
2852 break; /* Illegal modifier name */
2853 modifiers |= bit;
2854 }
2855 }
2856
2857 /*
2858 * Legal modifier name.
2859 */
2860 if (bp >= last_dash)
2861 {
Bram Moolenaarb8bf5412011-08-17 20:33:22 +02002862 if (STRNICMP(last_dash + 1, "char-", 5) == 0
2863 && VIM_ISDIGIT(last_dash[6]))
2864 {
2865 /* <Char-123> or <Char-033> or <Char-0x33> */
Bram Moolenaar887c1fe2016-01-02 17:56:35 +01002866 vim_str2nr(last_dash + 6, NULL, NULL, STR2NR_ALL, NULL, &n, 0);
Bram Moolenaar792826c2011-08-19 22:29:02 +02002867 key = (int)n;
Bram Moolenaarb8bf5412011-08-17 20:33:22 +02002868 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002869 else
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002870 {
Bram Moolenaar35a4cfa2016-08-14 16:07:48 +02002871 int off = 1;
2872
2873 /* Modifier with single letter, or special key name. */
2874 if (in_string && last_dash[1] == '\\' && last_dash[2] == '"')
2875 off = 2;
Bram Moolenaar792826c2011-08-19 22:29:02 +02002876 if (has_mbyte)
Bram Moolenaar35a4cfa2016-08-14 16:07:48 +02002877 l = mb_ptr2len(last_dash + off);
Bram Moolenaar792826c2011-08-19 22:29:02 +02002878 else
Bram Moolenaar792826c2011-08-19 22:29:02 +02002879 l = 1;
Bram Moolenaar35a4cfa2016-08-14 16:07:48 +02002880 if (modifiers != 0 && last_dash[l + off] == '>')
2881 key = PTR2CHAR(last_dash + off);
Bram Moolenaar792826c2011-08-19 22:29:02 +02002882 else
2883 {
Bram Moolenaar35a4cfa2016-08-14 16:07:48 +02002884 key = get_special_key_code(last_dash + off);
Bram Moolenaar792826c2011-08-19 22:29:02 +02002885 if (!keep_x_key)
2886 key = handle_x_keys(key);
2887 }
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002888 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002889
2890 /*
2891 * get_special_key_code() may return NUL for invalid
2892 * special key name.
2893 */
2894 if (key != NUL)
2895 {
2896 /*
2897 * Only use a modifier when there is no special key code that
2898 * includes the modifier.
2899 */
2900 key = simplify_key(key, &modifiers);
2901
2902 if (!keycode)
2903 {
2904 /* don't want keycode, use single byte code */
2905 if (key == K_BS)
2906 key = BS;
2907 else if (key == K_DEL || key == K_KDEL)
2908 key = DEL;
2909 }
2910
2911 /*
2912 * Normal Key with modifier: Try to make a single byte code.
2913 */
2914 if (!IS_SPECIAL(key))
2915 key = extract_modifiers(key, &modifiers);
2916
2917 *modp = modifiers;
2918 *srcp = end_of_name;
2919 return key;
2920 }
2921 }
2922 }
2923 return 0;
2924}
2925
2926/*
2927 * Try to include modifiers in the key.
2928 * Changes "Shift-a" to 'A', "Alt-A" to 0xc0, etc.
2929 */
2930 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002931extract_modifiers(int key, int *modp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002932{
2933 int modifiers = *modp;
2934
Bram Moolenaard0573012017-10-28 21:11:06 +02002935#ifdef MACOS_X
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02002936 /* Command-key really special, no fancynest */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002937 if (!(modifiers & MOD_MASK_CMD))
2938#endif
2939 if ((modifiers & MOD_MASK_SHIFT) && ASCII_ISALPHA(key))
2940 {
2941 key = TOUPPER_ASC(key);
2942 modifiers &= ~MOD_MASK_SHIFT;
2943 }
2944 if ((modifiers & MOD_MASK_CTRL)
2945#ifdef EBCDIC
2946 /* * TODO: EBCDIC Better use:
2947 * && (Ctrl_chr(key) || key == '?')
2948 * ??? */
2949 && strchr("?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_", key)
2950 != NULL
2951#else
2952 && ((key >= '?' && key <= '_') || ASCII_ISALPHA(key))
2953#endif
2954 )
2955 {
2956 key = Ctrl_chr(key);
2957 modifiers &= ~MOD_MASK_CTRL;
2958 /* <C-@> is <Nul> */
2959 if (key == 0)
2960 key = K_ZERO;
2961 }
Bram Moolenaard0573012017-10-28 21:11:06 +02002962#ifdef MACOS_X
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02002963 /* Command-key really special, no fancynest */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002964 if (!(modifiers & MOD_MASK_CMD))
2965#endif
2966 if ((modifiers & MOD_MASK_ALT) && key < 0x80
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01002967 && !enc_dbcs) // avoid creating a lead byte
Bram Moolenaar071d4272004-06-13 20:20:40 +00002968 {
2969 key |= 0x80;
2970 modifiers &= ~MOD_MASK_ALT; /* remove the META modifier */
2971 }
2972
2973 *modp = modifiers;
2974 return key;
2975}
2976
2977/*
2978 * Try to find key "c" in the special key table.
2979 * Return the index when found, -1 when not found.
2980 */
2981 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002982find_special_key_in_table(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002983{
2984 int i;
2985
2986 for (i = 0; key_names_table[i].name != NULL; i++)
2987 if (c == key_names_table[i].key)
2988 break;
2989 if (key_names_table[i].name == NULL)
2990 i = -1;
2991 return i;
2992}
2993
2994/*
2995 * Find the special key with the given name (the given string does not have to
2996 * end with NUL, the name is assumed to end before the first non-idchar).
2997 * If the name starts with "t_" the next two characters are interpreted as a
2998 * termcap name.
2999 * Return the key code, or 0 if not found.
3000 */
3001 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003002get_special_key_code(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003003{
3004 char_u *table_name;
3005 char_u string[3];
3006 int i, j;
3007
3008 /*
3009 * If it's <t_xx> we get the code for xx from the termcap
3010 */
3011 if (name[0] == 't' && name[1] == '_' && name[2] != NUL && name[3] != NUL)
3012 {
3013 string[0] = name[2];
3014 string[1] = name[3];
3015 string[2] = NUL;
3016 if (add_termcap_entry(string, FALSE) == OK)
3017 return TERMCAP2KEY(name[2], name[3]);
3018 }
3019 else
3020 for (i = 0; key_names_table[i].name != NULL; i++)
3021 {
3022 table_name = key_names_table[i].name;
3023 for (j = 0; vim_isIDc(name[j]) && table_name[j] != NUL; j++)
3024 if (TOLOWER_ASC(table_name[j]) != TOLOWER_ASC(name[j]))
3025 break;
3026 if (!vim_isIDc(name[j]) && table_name[j] == NUL)
3027 return key_names_table[i].key;
3028 }
3029 return 0;
3030}
3031
Bram Moolenaar05bb9532008-07-04 09:44:11 +00003032#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003033 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01003034get_key_name(int i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003035{
Bram Moolenaare1fbddc2009-05-16 19:07:03 +00003036 if (i >= (int)KEY_NAMES_TABLE_LEN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003037 return NULL;
3038 return key_names_table[i].name;
3039}
3040#endif
3041
Bram Moolenaar05bb9532008-07-04 09:44:11 +00003042#if defined(FEAT_MOUSE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003043/*
3044 * Look up the given mouse code to return the relevant information in the other
3045 * arguments. Return which button is down or was released.
3046 */
3047 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003048get_mouse_button(int code, int *is_click, int *is_drag)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003049{
3050 int i;
3051
3052 for (i = 0; mouse_table[i].pseudo_code; i++)
3053 if (code == mouse_table[i].pseudo_code)
3054 {
3055 *is_click = mouse_table[i].is_click;
3056 *is_drag = mouse_table[i].is_drag;
3057 return mouse_table[i].button;
3058 }
3059 return 0; /* Shouldn't get here */
3060}
3061
3062/*
3063 * Return the appropriate pseudo mouse event token (KE_LEFTMOUSE etc) based on
3064 * the given information about which mouse button is down, and whether the
3065 * mouse was clicked, dragged or released.
3066 */
3067 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003068get_pseudo_mouse_code(
3069 int button, /* eg MOUSE_LEFT */
3070 int is_click,
3071 int is_drag)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003072{
3073 int i;
3074
3075 for (i = 0; mouse_table[i].pseudo_code; i++)
3076 if (button == mouse_table[i].button
3077 && is_click == mouse_table[i].is_click
3078 && is_drag == mouse_table[i].is_drag)
3079 {
3080#ifdef FEAT_GUI
Bram Moolenaarc91506a2005-04-24 22:04:21 +00003081 /* Trick: a non mappable left click and release has mouse_col -1
3082 * or added MOUSE_COLOFF. Used for 'mousefocus' in
3083 * gui_mouse_moved() */
3084 if (mouse_col < 0 || mouse_col > MOUSE_COLOFF)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003085 {
Bram Moolenaarc91506a2005-04-24 22:04:21 +00003086 if (mouse_col < 0)
3087 mouse_col = 0;
3088 else
3089 mouse_col -= MOUSE_COLOFF;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003090 if (mouse_table[i].pseudo_code == (int)KE_LEFTMOUSE)
3091 return (int)KE_LEFTMOUSE_NM;
3092 if (mouse_table[i].pseudo_code == (int)KE_LEFTRELEASE)
3093 return (int)KE_LEFTRELEASE_NM;
3094 }
3095#endif
3096 return mouse_table[i].pseudo_code;
3097 }
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00003098 return (int)KE_IGNORE; /* not recognized, ignore it */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003099}
3100#endif /* FEAT_MOUSE */
3101
3102/*
3103 * Return the current end-of-line type: EOL_DOS, EOL_UNIX or EOL_MAC.
3104 */
3105 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003106get_fileformat(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003107{
3108 int c = *buf->b_p_ff;
3109
3110 if (buf->b_p_bin || c == 'u')
3111 return EOL_UNIX;
3112 if (c == 'm')
3113 return EOL_MAC;
3114 return EOL_DOS;
3115}
3116
3117/*
3118 * Like get_fileformat(), but override 'fileformat' with "p" for "++opt=val"
3119 * argument.
3120 */
3121 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003122get_fileformat_force(
3123 buf_T *buf,
3124 exarg_T *eap) /* can be NULL! */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003125{
3126 int c;
3127
3128 if (eap != NULL && eap->force_ff != 0)
Bram Moolenaar333b80a2018-04-04 22:57:29 +02003129 c = eap->force_ff;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003130 else
3131 {
3132 if ((eap != NULL && eap->force_bin != 0)
3133 ? (eap->force_bin == FORCE_BIN) : buf->b_p_bin)
3134 return EOL_UNIX;
3135 c = *buf->b_p_ff;
3136 }
3137 if (c == 'u')
3138 return EOL_UNIX;
3139 if (c == 'm')
3140 return EOL_MAC;
3141 return EOL_DOS;
3142}
3143
3144/*
3145 * Set the current end-of-line type to EOL_DOS, EOL_UNIX or EOL_MAC.
3146 * Sets both 'textmode' and 'fileformat'.
3147 * Note: Does _not_ set global value of 'textmode'!
3148 */
3149 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003150set_fileformat(
3151 int t,
3152 int opt_flags) /* OPT_LOCAL and/or OPT_GLOBAL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003153{
3154 char *p = NULL;
3155
3156 switch (t)
3157 {
3158 case EOL_DOS:
3159 p = FF_DOS;
3160 curbuf->b_p_tx = TRUE;
3161 break;
3162 case EOL_UNIX:
3163 p = FF_UNIX;
3164 curbuf->b_p_tx = FALSE;
3165 break;
3166 case EOL_MAC:
3167 p = FF_MAC;
3168 curbuf->b_p_tx = FALSE;
3169 break;
3170 }
3171 if (p != NULL)
3172 set_string_option_direct((char_u *)"ff", -1, (char_u *)p,
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00003173 OPT_FREE | opt_flags, 0);
3174
Bram Moolenaarf740b292006-02-16 22:11:02 +00003175 /* This may cause the buffer to become (un)modified. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003176 check_status(curbuf);
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00003177 redraw_tabline = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003178#ifdef FEAT_TITLE
3179 need_maketitle = TRUE; /* set window title later */
3180#endif
3181}
3182
3183/*
3184 * Return the default fileformat from 'fileformats'.
3185 */
3186 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003187default_fileformat(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003188{
3189 switch (*p_ffs)
3190 {
3191 case 'm': return EOL_MAC;
3192 case 'd': return EOL_DOS;
3193 }
3194 return EOL_UNIX;
3195}
3196
3197/*
3198 * Call shell. Calls mch_call_shell, with 'shellxquote' added.
3199 */
3200 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003201call_shell(char_u *cmd, int opt)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003202{
3203 char_u *ncmd;
3204 int retval;
Bram Moolenaar05159a02005-02-26 23:04:13 +00003205#ifdef FEAT_PROFILE
3206 proftime_T wait_time;
3207#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003208
3209 if (p_verbose > 3)
3210 {
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00003211 verbose_enter();
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003212 smsg(_("Calling shell to execute: \"%s\""),
Bram Moolenaar071d4272004-06-13 20:20:40 +00003213 cmd == NULL ? p_sh : cmd);
3214 out_char('\n');
3215 cursor_on();
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00003216 verbose_leave();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003217 }
3218
Bram Moolenaar05159a02005-02-26 23:04:13 +00003219#ifdef FEAT_PROFILE
Bram Moolenaar01265852006-03-20 21:50:15 +00003220 if (do_profiling == PROF_YES)
Bram Moolenaar05159a02005-02-26 23:04:13 +00003221 prof_child_enter(&wait_time);
3222#endif
3223
Bram Moolenaar071d4272004-06-13 20:20:40 +00003224 if (*p_sh == NUL)
3225 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003226 emsg(_(e_shellempty));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003227 retval = -1;
3228 }
3229 else
3230 {
3231#ifdef FEAT_GUI_MSWIN
3232 /* Don't hide the pointer while executing a shell command. */
3233 gui_mch_mousehide(FALSE);
3234#endif
3235#ifdef FEAT_GUI
3236 ++hold_gui_events;
3237#endif
3238 /* The external command may update a tags file, clear cached tags. */
3239 tag_freematch();
3240
3241 if (cmd == NULL || *p_sxq == NUL)
3242 retval = mch_call_shell(cmd, opt);
3243 else
3244 {
Bram Moolenaarf66b3fc2012-02-20 22:18:30 +01003245 char_u *ecmd = cmd;
3246
3247 if (*p_sxe != NUL && STRCMP(p_sxq, "(") == 0)
3248 {
3249 ecmd = vim_strsave_escaped_ext(cmd, p_sxe, '^', FALSE);
3250 if (ecmd == NULL)
3251 ecmd = cmd;
3252 }
3253 ncmd = alloc((unsigned)(STRLEN(ecmd) + STRLEN(p_sxq) * 2 + 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003254 if (ncmd != NULL)
3255 {
3256 STRCPY(ncmd, p_sxq);
Bram Moolenaarf66b3fc2012-02-20 22:18:30 +01003257 STRCAT(ncmd, ecmd);
Bram Moolenaar034b1152012-02-19 18:19:30 +01003258 /* When 'shellxquote' is ( append ).
3259 * When 'shellxquote' is "( append )". */
3260 STRCAT(ncmd, STRCMP(p_sxq, "(") == 0 ? (char_u *)")"
3261 : STRCMP(p_sxq, "\"(") == 0 ? (char_u *)")\""
3262 : p_sxq);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003263 retval = mch_call_shell(ncmd, opt);
3264 vim_free(ncmd);
3265 }
3266 else
3267 retval = -1;
Bram Moolenaarf66b3fc2012-02-20 22:18:30 +01003268 if (ecmd != cmd)
3269 vim_free(ecmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003270 }
3271#ifdef FEAT_GUI
3272 --hold_gui_events;
3273#endif
3274 /*
3275 * Check the window size, in case it changed while executing the
3276 * external command.
3277 */
3278 shell_resized_check();
3279 }
3280
3281#ifdef FEAT_EVAL
3282 set_vim_var_nr(VV_SHELL_ERROR, (long)retval);
Bram Moolenaar05159a02005-02-26 23:04:13 +00003283# ifdef FEAT_PROFILE
Bram Moolenaar01265852006-03-20 21:50:15 +00003284 if (do_profiling == PROF_YES)
Bram Moolenaar05159a02005-02-26 23:04:13 +00003285 prof_child_exit(&wait_time);
3286# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003287#endif
3288
3289 return retval;
3290}
3291
3292/*
Bram Moolenaar01265852006-03-20 21:50:15 +00003293 * VISUAL, SELECTMODE and OP_PENDING State are never set, they are equal to
3294 * NORMAL State with a condition. This function returns the real State.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003295 */
3296 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003297get_real_state(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003298{
3299 if (State & NORMAL)
3300 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003301 if (VIsual_active)
Bram Moolenaar01265852006-03-20 21:50:15 +00003302 {
3303 if (VIsual_select)
3304 return SELECTMODE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003305 return VISUAL;
Bram Moolenaar01265852006-03-20 21:50:15 +00003306 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01003307 else if (finish_op)
3308 return OP_PENDING;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003309 }
3310 return State;
3311}
3312
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003313/*
3314 * Return TRUE if "p" points to just after a path separator.
Bram Moolenaarb5ce04d2011-07-07 17:15:33 +02003315 * Takes care of multi-byte characters.
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003316 * "b" must point to the start of the file name
3317 */
3318 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003319after_pathsep(char_u *b, char_u *p)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003320{
Bram Moolenaarb5ce04d2011-07-07 17:15:33 +02003321 return p > b && vim_ispathsep(p[-1])
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003322 && (!has_mbyte || (*mb_head_off)(b, p - 1) == 0);
3323}
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003324
3325/*
3326 * Return TRUE if file names "f1" and "f2" are in the same directory.
3327 * "f1" may be a short name, "f2" must be a full path.
3328 */
3329 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003330same_directory(char_u *f1, char_u *f2)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003331{
3332 char_u ffname[MAXPATHL];
3333 char_u *t1;
3334 char_u *t2;
3335
3336 /* safety check */
3337 if (f1 == NULL || f2 == NULL)
3338 return FALSE;
3339
3340 (void)vim_FullName(f1, ffname, MAXPATHL, FALSE);
3341 t1 = gettail_sep(ffname);
3342 t2 = gettail_sep(f2);
3343 return (t1 - ffname == t2 - f2
3344 && pathcmp((char *)ffname, (char *)f2, (int)(t1 - ffname)) == 0);
3345}
3346
Bram Moolenaar7c365fb2018-06-29 20:28:31 +02003347#if defined(FEAT_SESSION) || defined(FEAT_AUTOCHDIR) \
3348 || defined(MSWIN) || defined(FEAT_GUI_MAC) || defined(FEAT_GUI_GTK) \
Bram Moolenaarbb1969b2019-01-17 15:45:25 +01003349 || defined(FEAT_NETBEANS_INTG) \
Bram Moolenaar071d4272004-06-13 20:20:40 +00003350 || defined(PROTO)
3351/*
3352 * Change to a file's directory.
3353 * Caller must call shorten_fnames()!
3354 * Return OK or FAIL.
3355 */
3356 int
Bram Moolenaar2caad3f2018-12-16 15:38:02 +01003357vim_chdirfile(char_u *fname, char *trigger_autocmd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003358{
Bram Moolenaar2caad3f2018-12-16 15:38:02 +01003359 char_u old_dir[MAXPATHL];
3360 char_u new_dir[MAXPATHL];
Bram Moolenaarb5cb65b2018-02-03 18:01:37 +01003361 int res;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003362
Bram Moolenaar2caad3f2018-12-16 15:38:02 +01003363 if (mch_dirname(old_dir, MAXPATHL) != OK)
3364 *old_dir = NUL;
3365
3366 vim_strncpy(new_dir, fname, MAXPATHL - 1);
3367 *gettail_sep(new_dir) = NUL;
3368
Bram Moolenaar9eb76af2018-12-16 16:30:21 +01003369 if (pathcmp((char *)old_dir, (char *)new_dir, -1) == 0)
Bram Moolenaar2caad3f2018-12-16 15:38:02 +01003370 // nothing to do
3371 res = OK;
3372 else
3373 {
3374 res = mch_chdir((char *)new_dir) == 0 ? OK : FAIL;
3375
3376 if (res == OK && trigger_autocmd != NULL)
3377 apply_autocmds(EVENT_DIRCHANGED, (char_u *)trigger_autocmd,
3378 new_dir, FALSE, curbuf);
3379 }
Bram Moolenaarb5cb65b2018-02-03 18:01:37 +01003380 return res;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003381}
3382#endif
3383
3384#if defined(STAT_IGNORES_SLASH) || defined(PROTO)
3385/*
3386 * Check if "name" ends in a slash and is not a directory.
3387 * Used for systems where stat() ignores a trailing slash on a file name.
3388 * The Vim code assumes a trailing slash is only ignored for a directory.
3389 */
Bram Moolenaar91acfff2017-03-12 19:22:36 +01003390 static int
Bram Moolenaard8492792017-03-16 12:22:38 +01003391illegal_slash(const char *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003392{
3393 if (name[0] == NUL)
3394 return FALSE; /* no file name is not illegal */
3395 if (name[strlen(name) - 1] != '/')
3396 return FALSE; /* no trailing slash */
3397 if (mch_isdir((char_u *)name))
3398 return FALSE; /* trailing slash for a directory */
3399 return TRUE;
3400}
Bram Moolenaar91acfff2017-03-12 19:22:36 +01003401
3402/*
3403 * Special implementation of mch_stat() for Solaris.
3404 */
3405 int
3406vim_stat(const char *name, stat_T *stp)
3407{
3408 /* On Solaris stat() accepts "file/" as if it was "file". Return -1 if
3409 * the name ends in "/" and it's not a directory. */
Bram Moolenaard8492792017-03-16 12:22:38 +01003410 return illegal_slash(name) ? -1 : stat(name, stp);
Bram Moolenaar91acfff2017-03-12 19:22:36 +01003411}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003412#endif
3413
3414#if defined(CURSOR_SHAPE) || defined(PROTO)
3415
3416/*
3417 * Handling of cursor and mouse pointer shapes in various modes.
3418 */
3419
3420cursorentry_T shape_table[SHAPE_IDX_COUNT] =
3421{
3422 /* The values will be filled in from the 'guicursor' and 'mouseshape'
3423 * defaults when Vim starts.
3424 * Adjust the SHAPE_IDX_ defines when making changes! */
3425 {0, 0, 0, 700L, 400L, 250L, 0, 0, "n", SHAPE_CURSOR+SHAPE_MOUSE},
3426 {0, 0, 0, 700L, 400L, 250L, 0, 0, "v", SHAPE_CURSOR+SHAPE_MOUSE},
3427 {0, 0, 0, 700L, 400L, 250L, 0, 0, "i", SHAPE_CURSOR+SHAPE_MOUSE},
3428 {0, 0, 0, 700L, 400L, 250L, 0, 0, "r", SHAPE_CURSOR+SHAPE_MOUSE},
3429 {0, 0, 0, 700L, 400L, 250L, 0, 0, "c", SHAPE_CURSOR+SHAPE_MOUSE},
3430 {0, 0, 0, 700L, 400L, 250L, 0, 0, "ci", SHAPE_CURSOR+SHAPE_MOUSE},
3431 {0, 0, 0, 700L, 400L, 250L, 0, 0, "cr", SHAPE_CURSOR+SHAPE_MOUSE},
3432 {0, 0, 0, 700L, 400L, 250L, 0, 0, "o", SHAPE_CURSOR+SHAPE_MOUSE},
3433 {0, 0, 0, 700L, 400L, 250L, 0, 0, "ve", SHAPE_CURSOR+SHAPE_MOUSE},
3434 {0, 0, 0, 0L, 0L, 0L, 0, 0, "e", SHAPE_MOUSE},
3435 {0, 0, 0, 0L, 0L, 0L, 0, 0, "s", SHAPE_MOUSE},
3436 {0, 0, 0, 0L, 0L, 0L, 0, 0, "sd", SHAPE_MOUSE},
3437 {0, 0, 0, 0L, 0L, 0L, 0, 0, "vs", SHAPE_MOUSE},
3438 {0, 0, 0, 0L, 0L, 0L, 0, 0, "vd", SHAPE_MOUSE},
3439 {0, 0, 0, 0L, 0L, 0L, 0, 0, "m", SHAPE_MOUSE},
3440 {0, 0, 0, 0L, 0L, 0L, 0, 0, "ml", SHAPE_MOUSE},
3441 {0, 0, 0, 100L, 100L, 100L, 0, 0, "sm", SHAPE_CURSOR},
3442};
3443
3444#ifdef FEAT_MOUSESHAPE
3445/*
3446 * Table with names for mouse shapes. Keep in sync with all the tables for
3447 * mch_set_mouse_shape()!.
3448 */
3449static char * mshape_names[] =
3450{
3451 "arrow", /* default, must be the first one */
3452 "blank", /* hidden */
3453 "beam",
3454 "updown",
3455 "udsizing",
3456 "leftright",
3457 "lrsizing",
3458 "busy",
3459 "no",
3460 "crosshair",
3461 "hand1",
3462 "hand2",
3463 "pencil",
3464 "question",
3465 "rightup-arrow",
3466 "up-arrow",
3467 NULL
3468};
3469#endif
3470
3471/*
3472 * Parse the 'guicursor' option ("what" is SHAPE_CURSOR) or 'mouseshape'
3473 * ("what" is SHAPE_MOUSE).
3474 * Returns error message for an illegal option, NULL otherwise.
3475 */
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003476 char *
Bram Moolenaar9b578142016-01-30 19:39:49 +01003477parse_shape_opt(int what)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003478{
3479 char_u *modep;
3480 char_u *colonp;
3481 char_u *commap;
3482 char_u *slashp;
3483 char_u *p, *endp;
3484 int idx = 0; /* init for GCC */
3485 int all_idx;
3486 int len;
3487 int i;
3488 long n;
3489 int found_ve = FALSE; /* found "ve" flag */
3490 int round;
3491
3492 /*
3493 * First round: check for errors; second round: do it for real.
3494 */
3495 for (round = 1; round <= 2; ++round)
3496 {
3497 /*
3498 * Repeat for all comma separated parts.
3499 */
3500#ifdef FEAT_MOUSESHAPE
3501 if (what == SHAPE_MOUSE)
3502 modep = p_mouseshape;
3503 else
3504#endif
3505 modep = p_guicursor;
3506 while (*modep != NUL)
3507 {
3508 colonp = vim_strchr(modep, ':');
Bram Moolenaar24922ec2017-02-23 17:59:22 +01003509 commap = vim_strchr(modep, ',');
3510
3511 if (colonp == NULL || (commap != NULL && commap < colonp))
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003512 return N_("E545: Missing colon");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003513 if (colonp == modep)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003514 return N_("E546: Illegal mode");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003515
3516 /*
3517 * Repeat for all mode's before the colon.
3518 * For the 'a' mode, we loop to handle all the modes.
3519 */
3520 all_idx = -1;
3521 while (modep < colonp || all_idx >= 0)
3522 {
3523 if (all_idx < 0)
3524 {
3525 /* Find the mode. */
3526 if (modep[1] == '-' || modep[1] == ':')
3527 len = 1;
3528 else
3529 len = 2;
3530 if (len == 1 && TOLOWER_ASC(modep[0]) == 'a')
3531 all_idx = SHAPE_IDX_COUNT - 1;
3532 else
3533 {
3534 for (idx = 0; idx < SHAPE_IDX_COUNT; ++idx)
3535 if (STRNICMP(modep, shape_table[idx].name, len)
3536 == 0)
3537 break;
3538 if (idx == SHAPE_IDX_COUNT
3539 || (shape_table[idx].used_for & what) == 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003540 return N_("E546: Illegal mode");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003541 if (len == 2 && modep[0] == 'v' && modep[1] == 'e')
3542 found_ve = TRUE;
3543 }
3544 modep += len + 1;
3545 }
3546
3547 if (all_idx >= 0)
3548 idx = all_idx--;
3549 else if (round == 2)
3550 {
3551#ifdef FEAT_MOUSESHAPE
3552 if (what == SHAPE_MOUSE)
3553 {
3554 /* Set the default, for the missing parts */
3555 shape_table[idx].mshape = 0;
3556 }
3557 else
3558#endif
3559 {
3560 /* Set the defaults, for the missing parts */
3561 shape_table[idx].shape = SHAPE_BLOCK;
3562 shape_table[idx].blinkwait = 700L;
3563 shape_table[idx].blinkon = 400L;
3564 shape_table[idx].blinkoff = 250L;
3565 }
3566 }
3567
3568 /* Parse the part after the colon */
3569 for (p = colonp + 1; *p && *p != ','; )
3570 {
3571#ifdef FEAT_MOUSESHAPE
3572 if (what == SHAPE_MOUSE)
3573 {
3574 for (i = 0; ; ++i)
3575 {
3576 if (mshape_names[i] == NULL)
3577 {
3578 if (!VIM_ISDIGIT(*p))
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003579 return N_("E547: Illegal mouseshape");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003580 if (round == 2)
3581 shape_table[idx].mshape =
3582 getdigits(&p) + MSHAPE_NUMBERED;
3583 else
3584 (void)getdigits(&p);
3585 break;
3586 }
3587 len = (int)STRLEN(mshape_names[i]);
3588 if (STRNICMP(p, mshape_names[i], len) == 0)
3589 {
3590 if (round == 2)
3591 shape_table[idx].mshape = i;
3592 p += len;
3593 break;
3594 }
3595 }
3596 }
3597 else /* if (what == SHAPE_MOUSE) */
3598#endif
3599 {
3600 /*
3601 * First handle the ones with a number argument.
3602 */
3603 i = *p;
3604 len = 0;
3605 if (STRNICMP(p, "ver", 3) == 0)
3606 len = 3;
3607 else if (STRNICMP(p, "hor", 3) == 0)
3608 len = 3;
3609 else if (STRNICMP(p, "blinkwait", 9) == 0)
3610 len = 9;
3611 else if (STRNICMP(p, "blinkon", 7) == 0)
3612 len = 7;
3613 else if (STRNICMP(p, "blinkoff", 8) == 0)
3614 len = 8;
3615 if (len != 0)
3616 {
3617 p += len;
3618 if (!VIM_ISDIGIT(*p))
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003619 return N_("E548: digit expected");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003620 n = getdigits(&p);
3621 if (len == 3) /* "ver" or "hor" */
3622 {
3623 if (n == 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003624 return N_("E549: Illegal percentage");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003625 if (round == 2)
3626 {
3627 if (TOLOWER_ASC(i) == 'v')
3628 shape_table[idx].shape = SHAPE_VER;
3629 else
3630 shape_table[idx].shape = SHAPE_HOR;
3631 shape_table[idx].percentage = n;
3632 }
3633 }
3634 else if (round == 2)
3635 {
3636 if (len == 9)
3637 shape_table[idx].blinkwait = n;
3638 else if (len == 7)
3639 shape_table[idx].blinkon = n;
3640 else
3641 shape_table[idx].blinkoff = n;
3642 }
3643 }
3644 else if (STRNICMP(p, "block", 5) == 0)
3645 {
3646 if (round == 2)
3647 shape_table[idx].shape = SHAPE_BLOCK;
3648 p += 5;
3649 }
3650 else /* must be a highlight group name then */
3651 {
3652 endp = vim_strchr(p, '-');
3653 if (commap == NULL) /* last part */
3654 {
3655 if (endp == NULL)
3656 endp = p + STRLEN(p); /* find end of part */
3657 }
3658 else if (endp > commap || endp == NULL)
3659 endp = commap;
3660 slashp = vim_strchr(p, '/');
3661 if (slashp != NULL && slashp < endp)
3662 {
3663 /* "group/langmap_group" */
3664 i = syn_check_group(p, (int)(slashp - p));
3665 p = slashp + 1;
3666 }
3667 if (round == 2)
3668 {
3669 shape_table[idx].id = syn_check_group(p,
3670 (int)(endp - p));
3671 shape_table[idx].id_lm = shape_table[idx].id;
3672 if (slashp != NULL && slashp < endp)
3673 shape_table[idx].id = i;
3674 }
3675 p = endp;
3676 }
3677 } /* if (what != SHAPE_MOUSE) */
3678
3679 if (*p == '-')
3680 ++p;
3681 }
3682 }
3683 modep = p;
3684 if (*modep == ',')
3685 ++modep;
3686 }
3687 }
3688
3689 /* If the 's' flag is not given, use the 'v' cursor for 's' */
3690 if (!found_ve)
3691 {
3692#ifdef FEAT_MOUSESHAPE
3693 if (what == SHAPE_MOUSE)
3694 {
3695 shape_table[SHAPE_IDX_VE].mshape = shape_table[SHAPE_IDX_V].mshape;
3696 }
3697 else
3698#endif
3699 {
3700 shape_table[SHAPE_IDX_VE].shape = shape_table[SHAPE_IDX_V].shape;
3701 shape_table[SHAPE_IDX_VE].percentage =
3702 shape_table[SHAPE_IDX_V].percentage;
3703 shape_table[SHAPE_IDX_VE].blinkwait =
3704 shape_table[SHAPE_IDX_V].blinkwait;
3705 shape_table[SHAPE_IDX_VE].blinkon =
3706 shape_table[SHAPE_IDX_V].blinkon;
3707 shape_table[SHAPE_IDX_VE].blinkoff =
3708 shape_table[SHAPE_IDX_V].blinkoff;
3709 shape_table[SHAPE_IDX_VE].id = shape_table[SHAPE_IDX_V].id;
3710 shape_table[SHAPE_IDX_VE].id_lm = shape_table[SHAPE_IDX_V].id_lm;
3711 }
3712 }
3713
3714 return NULL;
3715}
3716
Bram Moolenaarac6e65f2005-08-29 22:25:38 +00003717# if defined(MCH_CURSOR_SHAPE) || defined(FEAT_GUI) \
3718 || defined(FEAT_MOUSESHAPE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003719/*
3720 * Return the index into shape_table[] for the current mode.
3721 * When "mouse" is TRUE, consider indexes valid for the mouse pointer.
3722 */
3723 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003724get_shape_idx(int mouse)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003725{
3726#ifdef FEAT_MOUSESHAPE
3727 if (mouse && (State == HITRETURN || State == ASKMORE))
3728 {
3729# ifdef FEAT_GUI
Bram Moolenaar9588a0f2005-01-08 21:45:39 +00003730 int x, y;
3731 gui_mch_getmouse(&x, &y);
3732 if (Y_2_ROW(y) == Rows - 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003733 return SHAPE_IDX_MOREL;
3734# endif
3735 return SHAPE_IDX_MORE;
3736 }
3737 if (mouse && drag_status_line)
3738 return SHAPE_IDX_SDRAG;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003739 if (mouse && drag_sep_line)
3740 return SHAPE_IDX_VDRAG;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003741#endif
3742 if (!mouse && State == SHOWMATCH)
3743 return SHAPE_IDX_SM;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003744 if (State & VREPLACE_FLAG)
3745 return SHAPE_IDX_R;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003746 if (State & REPLACE_FLAG)
3747 return SHAPE_IDX_R;
3748 if (State & INSERT)
3749 return SHAPE_IDX_I;
3750 if (State & CMDLINE)
3751 {
3752 if (cmdline_at_end())
3753 return SHAPE_IDX_C;
3754 if (cmdline_overstrike())
3755 return SHAPE_IDX_CR;
3756 return SHAPE_IDX_CI;
3757 }
3758 if (finish_op)
3759 return SHAPE_IDX_O;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003760 if (VIsual_active)
3761 {
3762 if (*p_sel == 'e')
3763 return SHAPE_IDX_VE;
3764 else
3765 return SHAPE_IDX_V;
3766 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003767 return SHAPE_IDX_N;
3768}
Bram Moolenaarac6e65f2005-08-29 22:25:38 +00003769#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003770
3771# if defined(FEAT_MOUSESHAPE) || defined(PROTO)
3772static int old_mouse_shape = 0;
3773
3774/*
3775 * Set the mouse shape:
3776 * If "shape" is -1, use shape depending on the current mode,
3777 * depending on the current state.
3778 * If "shape" is -2, only update the shape when it's CLINE or STATUS (used
3779 * when the mouse moves off the status or command line).
3780 */
3781 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003782update_mouseshape(int shape_idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003783{
3784 int new_mouse_shape;
3785
3786 /* Only works in GUI mode. */
Bram Moolenaar6bb68362005-03-22 23:03:44 +00003787 if (!gui.in_use || gui.starting)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003788 return;
3789
3790 /* Postpone the updating when more is to come. Speeds up executing of
3791 * mappings. */
3792 if (shape_idx == -1 && char_avail())
3793 {
3794 postponed_mouseshape = TRUE;
3795 return;
3796 }
3797
Bram Moolenaar14716812006-05-04 21:54:08 +00003798 /* When ignoring the mouse don't change shape on the statusline. */
3799 if (*p_mouse == NUL
3800 && (shape_idx == SHAPE_IDX_CLINE
3801 || shape_idx == SHAPE_IDX_STATUS
3802 || shape_idx == SHAPE_IDX_VSEP))
3803 shape_idx = -2;
3804
Bram Moolenaar071d4272004-06-13 20:20:40 +00003805 if (shape_idx == -2
3806 && old_mouse_shape != shape_table[SHAPE_IDX_CLINE].mshape
3807 && old_mouse_shape != shape_table[SHAPE_IDX_STATUS].mshape
3808 && old_mouse_shape != shape_table[SHAPE_IDX_VSEP].mshape)
3809 return;
3810 if (shape_idx < 0)
3811 new_mouse_shape = shape_table[get_shape_idx(TRUE)].mshape;
3812 else
3813 new_mouse_shape = shape_table[shape_idx].mshape;
3814 if (new_mouse_shape != old_mouse_shape)
3815 {
3816 mch_set_mouse_shape(new_mouse_shape);
3817 old_mouse_shape = new_mouse_shape;
3818 }
3819 postponed_mouseshape = FALSE;
3820}
3821# endif
3822
3823#endif /* CURSOR_SHAPE */
3824
3825
Bram Moolenaar071d4272004-06-13 20:20:40 +00003826/*
3827 * Change directory to "new_dir". If FEAT_SEARCHPATH is defined, search
3828 * 'cdpath' for relative directory names, otherwise just mch_chdir().
3829 */
3830 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003831vim_chdir(char_u *new_dir)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003832{
3833#ifndef FEAT_SEARCHPATH
3834 return mch_chdir((char *)new_dir);
3835#else
3836 char_u *dir_name;
3837 int r;
3838
3839 dir_name = find_directory_in_path(new_dir, (int)STRLEN(new_dir),
3840 FNAME_MESS, curbuf->b_ffname);
3841 if (dir_name == NULL)
3842 return -1;
3843 r = mch_chdir((char *)dir_name);
3844 vim_free(dir_name);
3845 return r;
3846#endif
3847}
3848
3849/*
Bram Moolenaarbbebc852005-07-18 21:47:53 +00003850 * Get user name from machine-specific function.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003851 * Returns the user name in "buf[len]".
Bram Moolenaarbbebc852005-07-18 21:47:53 +00003852 * Some systems are quite slow in obtaining the user name (Windows NT), thus
3853 * cache the result.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003854 * Returns OK or FAIL.
3855 */
3856 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003857get_user_name(char_u *buf, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003858{
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003859 if (username == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003860 {
3861 if (mch_get_user_name(buf, len) == FAIL)
3862 return FAIL;
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003863 username = vim_strsave(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003864 }
3865 else
Bram Moolenaarbbebc852005-07-18 21:47:53 +00003866 vim_strncpy(buf, username, len - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003867 return OK;
3868}
3869
3870#ifndef HAVE_QSORT
3871/*
3872 * Our own qsort(), for systems that don't have it.
3873 * It's simple and slow. From the K&R C book.
3874 */
3875 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003876qsort(
3877 void *base,
3878 size_t elm_count,
3879 size_t elm_size,
3880 int (*cmp)(const void *, const void *))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003881{
3882 char_u *buf;
3883 char_u *p1;
3884 char_u *p2;
3885 int i, j;
3886 int gap;
3887
3888 buf = alloc((unsigned)elm_size);
3889 if (buf == NULL)
3890 return;
3891
3892 for (gap = elm_count / 2; gap > 0; gap /= 2)
3893 for (i = gap; i < elm_count; ++i)
3894 for (j = i - gap; j >= 0; j -= gap)
3895 {
3896 /* Compare the elements. */
3897 p1 = (char_u *)base + j * elm_size;
3898 p2 = (char_u *)base + (j + gap) * elm_size;
3899 if ((*cmp)((void *)p1, (void *)p2) <= 0)
3900 break;
Bram Moolenaar21160b92009-11-11 15:56:10 +00003901 /* Exchange the elements. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003902 mch_memmove(buf, p1, elm_size);
3903 mch_memmove(p1, p2, elm_size);
3904 mch_memmove(p2, buf, elm_size);
3905 }
3906
3907 vim_free(buf);
3908}
3909#endif
3910
Bram Moolenaar071d4272004-06-13 20:20:40 +00003911/*
3912 * Sort an array of strings.
3913 */
3914static int
3915#ifdef __BORLANDC__
3916_RTLENTRYF
3917#endif
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01003918sort_compare(const void *s1, const void *s2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003919
3920 static int
3921#ifdef __BORLANDC__
3922_RTLENTRYF
3923#endif
Bram Moolenaar9b578142016-01-30 19:39:49 +01003924sort_compare(const void *s1, const void *s2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003925{
3926 return STRCMP(*(char **)s1, *(char **)s2);
3927}
3928
3929 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003930sort_strings(
3931 char_u **files,
3932 int count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003933{
3934 qsort((void *)files, (size_t)count, sizeof(char_u *), sort_compare);
3935}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003936
3937#if !defined(NO_EXPANDPATH) || defined(PROTO)
3938/*
3939 * Compare path "p[]" to "q[]".
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003940 * If "maxlen" >= 0 compare "p[maxlen]" to "q[maxlen]"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003941 * Return value like strcmp(p, q), but consider path separators.
3942 */
3943 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003944pathcmp(const char *p, const char *q, int maxlen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003945{
Bram Moolenaarf6470c22015-08-25 16:31:40 +02003946 int i, j;
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02003947 int c1, c2;
Bram Moolenaar86b68352004-12-27 21:59:20 +00003948 const char *s = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003949
Bram Moolenaarf6470c22015-08-25 16:31:40 +02003950 for (i = 0, j = 0; maxlen < 0 || (i < maxlen && j < maxlen);)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003951 {
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02003952 c1 = PTR2CHAR((char_u *)p + i);
Bram Moolenaarf6470c22015-08-25 16:31:40 +02003953 c2 = PTR2CHAR((char_u *)q + j);
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02003954
Bram Moolenaar071d4272004-06-13 20:20:40 +00003955 /* End of "p": check if "q" also ends or just has a slash. */
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02003956 if (c1 == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003957 {
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02003958 if (c2 == NUL) /* full match */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003959 return 0;
3960 s = q;
Bram Moolenaar15675582018-02-09 12:29:56 +01003961 i = j;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003962 break;
3963 }
3964
3965 /* End of "q": check if "p" just has a slash. */
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02003966 if (c2 == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003967 {
3968 s = p;
3969 break;
3970 }
3971
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02003972 if ((p_fic ? MB_TOUPPER(c1) != MB_TOUPPER(c2) : c1 != c2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003973#ifdef BACKSLASH_IN_FILENAME
3974 /* consider '/' and '\\' to be equal */
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02003975 && !((c1 == '/' && c2 == '\\')
3976 || (c1 == '\\' && c2 == '/'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003977#endif
3978 )
3979 {
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02003980 if (vim_ispathsep(c1))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003981 return -1;
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02003982 if (vim_ispathsep(c2))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003983 return 1;
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02003984 return p_fic ? MB_TOUPPER(c1) - MB_TOUPPER(c2)
3985 : c1 - c2; /* no match */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003986 }
Bram Moolenaarf6470c22015-08-25 16:31:40 +02003987
3988 i += MB_PTR2LEN((char_u *)p + i);
3989 j += MB_PTR2LEN((char_u *)q + j);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003990 }
Bram Moolenaarf6470c22015-08-25 16:31:40 +02003991 if (s == NULL) /* "i" or "j" ran into "maxlen" */
Bram Moolenaar86b68352004-12-27 21:59:20 +00003992 return 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003993
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02003994 c1 = PTR2CHAR((char_u *)s + i);
3995 c2 = PTR2CHAR((char_u *)s + i + MB_PTR2LEN((char_u *)s + i));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003996 /* ignore a trailing slash, but not "//" or ":/" */
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02003997 if (c2 == NUL
Bram Moolenaar86b68352004-12-27 21:59:20 +00003998 && i > 0
3999 && !after_pathsep((char_u *)s, (char_u *)s + i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004000#ifdef BACKSLASH_IN_FILENAME
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02004001 && (c1 == '/' || c1 == '\\')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004002#else
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02004003 && c1 == '/'
Bram Moolenaar071d4272004-06-13 20:20:40 +00004004#endif
Bram Moolenaar86b68352004-12-27 21:59:20 +00004005 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004006 return 0; /* match with trailing slash */
4007 if (s == q)
4008 return -1; /* no match */
4009 return 1;
4010}
4011#endif
4012
Bram Moolenaar071d4272004-06-13 20:20:40 +00004013/*
4014 * The putenv() implementation below comes from the "screen" program.
4015 * Included with permission from Juergen Weigert.
4016 * See pty.c for the copyright notice.
4017 */
4018
4019/*
4020 * putenv -- put value into environment
4021 *
4022 * Usage: i = putenv (string)
4023 * int i;
4024 * char *string;
4025 *
4026 * where string is of the form <name>=<value>.
4027 * Putenv returns 0 normally, -1 on error (not enough core for malloc).
4028 *
4029 * Putenv may need to add a new name into the environment, or to
4030 * associate a value longer than the current value with a particular
4031 * name. So, to make life simpler, putenv() copies your entire
4032 * environment into the heap (i.e. malloc()) from the stack
4033 * (i.e. where it resides when your process is initiated) the first
4034 * time you call it.
4035 *
4036 * (history removed, not very interesting. See the "screen" sources.)
4037 */
4038
4039#if !defined(HAVE_SETENV) && !defined(HAVE_PUTENV)
4040
4041#define EXTRASIZE 5 /* increment to add to env. size */
4042
4043static int envsize = -1; /* current size of environment */
Bram Moolenaard0573012017-10-28 21:11:06 +02004044extern char **environ; /* the global which is your env. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004045
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01004046static int findenv(char *name); /* look for a name in the env. */
4047static int newenv(void); /* copy env. from stack to heap */
4048static int moreenv(void); /* incr. size of env. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004049
4050 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01004051putenv(const char *string)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004052{
4053 int i;
4054 char *p;
4055
4056 if (envsize < 0)
4057 { /* first time putenv called */
4058 if (newenv() < 0) /* copy env. to heap */
4059 return -1;
4060 }
4061
4062 i = findenv((char *)string); /* look for name in environment */
4063
4064 if (i < 0)
4065 { /* name must be added */
4066 for (i = 0; environ[i]; i++);
4067 if (i >= (envsize - 1))
4068 { /* need new slot */
4069 if (moreenv() < 0)
4070 return -1;
4071 }
4072 p = (char *)alloc((unsigned)(strlen(string) + 1));
4073 if (p == NULL) /* not enough core */
4074 return -1;
4075 environ[i + 1] = 0; /* new end of env. */
4076 }
4077 else
4078 { /* name already in env. */
4079 p = vim_realloc(environ[i], strlen(string) + 1);
4080 if (p == NULL)
4081 return -1;
4082 }
4083 sprintf(p, "%s", string); /* copy into env. */
4084 environ[i] = p;
4085
4086 return 0;
4087}
4088
4089 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01004090findenv(char *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004091{
4092 char *namechar, *envchar;
4093 int i, found;
4094
4095 found = 0;
4096 for (i = 0; environ[i] && !found; i++)
4097 {
4098 envchar = environ[i];
4099 namechar = name;
4100 while (*namechar && *namechar != '=' && (*namechar == *envchar))
4101 {
4102 namechar++;
4103 envchar++;
4104 }
4105 found = ((*namechar == '\0' || *namechar == '=') && *envchar == '=');
4106 }
4107 return found ? i - 1 : -1;
4108}
4109
4110 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01004111newenv(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004112{
4113 char **env, *elem;
4114 int i, esize;
4115
Bram Moolenaar071d4272004-06-13 20:20:40 +00004116 for (i = 0; environ[i]; i++)
4117 ;
Bram Moolenaard0573012017-10-28 21:11:06 +02004118
Bram Moolenaar071d4272004-06-13 20:20:40 +00004119 esize = i + EXTRASIZE + 1;
4120 env = (char **)alloc((unsigned)(esize * sizeof (elem)));
4121 if (env == NULL)
4122 return -1;
4123
Bram Moolenaar071d4272004-06-13 20:20:40 +00004124 for (i = 0; environ[i]; i++)
4125 {
4126 elem = (char *)alloc((unsigned)(strlen(environ[i]) + 1));
4127 if (elem == NULL)
4128 return -1;
4129 env[i] = elem;
4130 strcpy(elem, environ[i]);
4131 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004132
4133 env[i] = 0;
4134 environ = env;
4135 envsize = esize;
4136 return 0;
4137}
4138
4139 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01004140moreenv(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004141{
4142 int esize;
4143 char **env;
4144
4145 esize = envsize + EXTRASIZE;
4146 env = (char **)vim_realloc((char *)environ, esize * sizeof (*env));
4147 if (env == 0)
4148 return -1;
4149 environ = env;
4150 envsize = esize;
4151 return 0;
4152}
4153
4154# ifdef USE_VIMPTY_GETENV
Bram Moolenaar613fe7a2017-07-22 21:11:53 +02004155/*
4156 * Used for mch_getenv() for Mac.
4157 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004158 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01004159vimpty_getenv(const char_u *string)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004160{
4161 int i;
4162 char_u *p;
4163
4164 if (envsize < 0)
4165 return NULL;
4166
4167 i = findenv((char *)string);
4168
4169 if (i < 0)
4170 return NULL;
4171
4172 p = vim_strchr((char_u *)environ[i], '=');
4173 return (p + 1);
4174}
4175# endif
4176
4177#endif /* !defined(HAVE_SETENV) && !defined(HAVE_PUTENV) */
Bram Moolenaarc4a06d32005-06-07 21:04:49 +00004178
Bram Moolenaarc4956c82006-03-12 21:58:43 +00004179#if defined(FEAT_EVAL) || defined(FEAT_SPELL) || defined(PROTO)
Bram Moolenaarc4a06d32005-06-07 21:04:49 +00004180/*
4181 * Return 0 for not writable, 1 for writable file, 2 for a dir which we have
4182 * rights to write into.
4183 */
4184 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01004185filewritable(char_u *fname)
Bram Moolenaarc4a06d32005-06-07 21:04:49 +00004186{
4187 int retval = 0;
4188#if defined(UNIX) || defined(VMS)
4189 int perm = 0;
4190#endif
4191
4192#if defined(UNIX) || defined(VMS)
4193 perm = mch_getperm(fname);
4194#endif
Bram Moolenaarc4a06d32005-06-07 21:04:49 +00004195 if (
Bram Moolenaar4f974752019-02-17 17:44:42 +01004196# ifdef MSWIN
Bram Moolenaarc4a06d32005-06-07 21:04:49 +00004197 mch_writable(fname) &&
4198# else
4199# if defined(UNIX) || defined(VMS)
4200 (perm & 0222) &&
4201# endif
4202# endif
4203 mch_access((char *)fname, W_OK) == 0
4204 )
Bram Moolenaarc4a06d32005-06-07 21:04:49 +00004205 {
4206 ++retval;
4207 if (mch_isdir(fname))
4208 ++retval;
4209 }
4210 return retval;
4211}
4212#endif
Bram Moolenaar6bab4d12005-06-16 21:53:56 +00004213
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004214#if defined(FEAT_SPELL) || defined(FEAT_PERSISTENT_UNDO) || defined(PROTO)
4215/*
4216 * Read 2 bytes from "fd" and turn them into an int, MSB first.
Bram Moolenaare26e0d22018-03-20 12:34:04 +01004217 * Returns -1 when encountering EOF.
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004218 */
4219 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01004220get2c(FILE *fd)
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004221{
Bram Moolenaare26e0d22018-03-20 12:34:04 +01004222 int c, n;
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004223
4224 n = getc(fd);
Bram Moolenaare26e0d22018-03-20 12:34:04 +01004225 if (n == EOF) return -1;
4226 c = getc(fd);
4227 if (c == EOF) return -1;
4228 return (n << 8) + c;
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004229}
4230
4231/*
4232 * Read 3 bytes from "fd" and turn them into an int, MSB first.
Bram Moolenaare26e0d22018-03-20 12:34:04 +01004233 * Returns -1 when encountering EOF.
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004234 */
4235 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01004236get3c(FILE *fd)
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004237{
Bram Moolenaare26e0d22018-03-20 12:34:04 +01004238 int c, n;
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004239
4240 n = getc(fd);
Bram Moolenaare26e0d22018-03-20 12:34:04 +01004241 if (n == EOF) return -1;
4242 c = getc(fd);
4243 if (c == EOF) return -1;
4244 n = (n << 8) + c;
4245 c = getc(fd);
4246 if (c == EOF) return -1;
4247 return (n << 8) + c;
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004248}
4249
4250/*
4251 * Read 4 bytes from "fd" and turn them into an int, MSB first.
Bram Moolenaare26e0d22018-03-20 12:34:04 +01004252 * Returns -1 when encountering EOF.
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004253 */
4254 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01004255get4c(FILE *fd)
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004256{
Bram Moolenaare26e0d22018-03-20 12:34:04 +01004257 int c;
Bram Moolenaar95235e62013-09-08 16:07:07 +02004258 /* Use unsigned rather than int otherwise result is undefined
4259 * when left-shift sets the MSB. */
4260 unsigned n;
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004261
Bram Moolenaare26e0d22018-03-20 12:34:04 +01004262 c = getc(fd);
4263 if (c == EOF) return -1;
4264 n = (unsigned)c;
4265 c = getc(fd);
4266 if (c == EOF) return -1;
4267 n = (n << 8) + (unsigned)c;
4268 c = getc(fd);
4269 if (c == EOF) return -1;
4270 n = (n << 8) + (unsigned)c;
4271 c = getc(fd);
4272 if (c == EOF) return -1;
4273 n = (n << 8) + (unsigned)c;
Bram Moolenaar95235e62013-09-08 16:07:07 +02004274 return (int)n;
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004275}
4276
4277/*
Bram Moolenaarf4fba6d2016-06-26 16:44:24 +02004278 * Read 8 bytes from "fd" and turn them into a time_T, MSB first.
Bram Moolenaare26e0d22018-03-20 12:34:04 +01004279 * Returns -1 when encountering EOF.
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004280 */
Bram Moolenaarf4fba6d2016-06-26 16:44:24 +02004281 time_T
Bram Moolenaar9b578142016-01-30 19:39:49 +01004282get8ctime(FILE *fd)
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004283{
Bram Moolenaare26e0d22018-03-20 12:34:04 +01004284 int c;
Bram Moolenaarf4fba6d2016-06-26 16:44:24 +02004285 time_T n = 0;
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004286 int i;
4287
4288 for (i = 0; i < 8; ++i)
Bram Moolenaare26e0d22018-03-20 12:34:04 +01004289 {
4290 c = getc(fd);
4291 if (c == EOF) return -1;
4292 n = (n << 8) + c;
4293 }
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004294 return n;
4295}
4296
4297/*
4298 * Read a string of length "cnt" from "fd" into allocated memory.
4299 * Returns NULL when out of memory or unable to read that many bytes.
4300 */
4301 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01004302read_string(FILE *fd, int cnt)
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004303{
4304 char_u *str;
4305 int i;
4306 int c;
4307
4308 /* allocate memory */
4309 str = alloc((unsigned)cnt + 1);
4310 if (str != NULL)
4311 {
4312 /* Read the string. Quit when running into the EOF. */
4313 for (i = 0; i < cnt; ++i)
4314 {
4315 c = getc(fd);
4316 if (c == EOF)
4317 {
4318 vim_free(str);
4319 return NULL;
4320 }
4321 str[i] = c;
4322 }
4323 str[i] = NUL;
4324 }
4325 return str;
4326}
4327
4328/*
4329 * Write a number to file "fd", MSB first, in "len" bytes.
4330 */
4331 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01004332put_bytes(FILE *fd, long_u nr, int len)
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004333{
4334 int i;
4335
4336 for (i = len - 1; i >= 0; --i)
4337 if (putc((int)(nr >> (i * 8)), fd) == EOF)
4338 return FAIL;
4339 return OK;
4340}
4341
4342#ifdef _MSC_VER
4343# if (_MSC_VER <= 1200)
4344/* This line is required for VC6 without the service pack. Also see the
4345 * matching #pragma below. */
4346 # pragma optimize("", off)
4347# endif
4348#endif
4349
4350/*
Bram Moolenaarf4fba6d2016-06-26 16:44:24 +02004351 * Write time_T to file "fd" in 8 bytes.
Bram Moolenaar285bf842016-01-07 22:34:01 +01004352 * Returns FAIL when the write failed.
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004353 */
Bram Moolenaar285bf842016-01-07 22:34:01 +01004354 int
Bram Moolenaarf4fba6d2016-06-26 16:44:24 +02004355put_time(FILE *fd, time_T the_time)
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004356{
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02004357 char_u buf[8];
4358
4359 time_to_bytes(the_time, buf);
Bram Moolenaar285bf842016-01-07 22:34:01 +01004360 return fwrite(buf, (size_t)8, (size_t)1, fd) == 1 ? OK : FAIL;
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02004361}
4362
4363/*
Bram Moolenaarf4fba6d2016-06-26 16:44:24 +02004364 * Write time_T to "buf[8]".
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02004365 */
4366 void
Bram Moolenaarf4fba6d2016-06-26 16:44:24 +02004367time_to_bytes(time_T the_time, char_u *buf)
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02004368{
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004369 int c;
4370 int i;
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02004371 int bi = 0;
Bram Moolenaarf4fba6d2016-06-26 16:44:24 +02004372 time_T wtime = the_time;
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004373
Bram Moolenaarf4fba6d2016-06-26 16:44:24 +02004374 /* time_T can be up to 8 bytes in size, more than long_u, thus we
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004375 * can't use put_bytes() here.
4376 * Another problem is that ">>" may do an arithmetic shift that keeps the
Bram Moolenaar644fdff2010-05-30 13:26:21 +02004377 * sign. This happens for large values of wtime. A cast to long_u may
Bram Moolenaarf4fba6d2016-06-26 16:44:24 +02004378 * truncate if time_T is 8 bytes. So only use a cast when it is 4 bytes,
Bram Moolenaar644fdff2010-05-30 13:26:21 +02004379 * it's safe to assume that long_u is 4 bytes or more and when using 8
4380 * bytes the top bit won't be set. */
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004381 for (i = 7; i >= 0; --i)
4382 {
Bram Moolenaarf4fba6d2016-06-26 16:44:24 +02004383 if (i + 1 > (int)sizeof(time_T))
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004384 /* ">>" doesn't work well when shifting more bits than avail */
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02004385 buf[bi++] = 0;
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004386 else
4387 {
Bram Moolenaar644fdff2010-05-30 13:26:21 +02004388#if defined(SIZEOF_TIME_T) && SIZEOF_TIME_T > 4
Bram Moolenaarbbd6afe2010-06-02 20:32:23 +02004389 c = (int)(wtime >> (i * 8));
Bram Moolenaar644fdff2010-05-30 13:26:21 +02004390#else
Bram Moolenaarbbd6afe2010-06-02 20:32:23 +02004391 c = (int)((long_u)wtime >> (i * 8));
Bram Moolenaar644fdff2010-05-30 13:26:21 +02004392#endif
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02004393 buf[bi++] = c;
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004394 }
4395 }
4396}
4397
4398#ifdef _MSC_VER
4399# if (_MSC_VER <= 1200)
4400 # pragma optimize("", on)
4401# endif
4402#endif
4403
4404#endif
Bram Moolenaar10b7b392012-01-10 16:28:45 +01004405
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01004406#if defined(FEAT_QUICKFIX) || defined(FEAT_SPELL) || defined(PROTO)
Bram Moolenaar10b7b392012-01-10 16:28:45 +01004407/*
4408 * Return TRUE if string "s" contains a non-ASCII character (128 or higher).
4409 * When "s" is NULL FALSE is returned.
4410 */
4411 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01004412has_non_ascii(char_u *s)
Bram Moolenaar10b7b392012-01-10 16:28:45 +01004413{
4414 char_u *p;
4415
4416 if (s != NULL)
4417 for (p = s; *p != NUL; ++p)
4418 if (*p >= 128)
4419 return TRUE;
4420 return FALSE;
4421}
4422#endif
Bram Moolenaar93c88e02015-09-15 14:12:05 +02004423
4424#if defined(MESSAGE_QUEUE) || defined(PROTO)
Bram Moolenaarcd1a62d2018-12-14 21:32:02 +01004425# define MAX_REPEAT_PARSE 8
4426
Bram Moolenaar93c88e02015-09-15 14:12:05 +02004427/*
4428 * Process messages that have been queued for netbeans or clientserver.
Bram Moolenaar3a117e12016-10-30 21:57:52 +01004429 * Also check if any jobs have ended.
Bram Moolenaar93c88e02015-09-15 14:12:05 +02004430 * These functions can call arbitrary vimscript and should only be called when
4431 * it is safe to do so.
4432 */
4433 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004434parse_queued_messages(void)
Bram Moolenaar93c88e02015-09-15 14:12:05 +02004435{
Bram Moolenaarcd1a62d2018-12-14 21:32:02 +01004436 win_T *old_curwin = curwin;
4437 int i;
Bram Moolenaara3f7e582017-11-09 13:21:58 +01004438
Bram Moolenaar94f01952018-09-01 15:30:03 +02004439 // Do not handle messages while redrawing, because it may cause buffers to
4440 // change or be wiped while they are being redrawn.
4441 if (updating_screen)
4442 return;
4443
Bram Moolenaarcd1a62d2018-12-14 21:32:02 +01004444 // Loop when a job ended, but don't keep looping forever.
4445 for (i = 0; i < MAX_REPEAT_PARSE; ++i)
4446 {
4447 // For Win32 mch_breakcheck() does not check for input, do it here.
Bram Moolenaar4f974752019-02-17 17:44:42 +01004448# if defined(MSWIN) && defined(FEAT_JOB_CHANNEL)
Bram Moolenaarcd1a62d2018-12-14 21:32:02 +01004449 channel_handle_events(FALSE);
Bram Moolenaarb7522a22016-02-21 17:20:55 +01004450# endif
4451
Bram Moolenaar93c88e02015-09-15 14:12:05 +02004452# ifdef FEAT_NETBEANS_INTG
Bram Moolenaarcd1a62d2018-12-14 21:32:02 +01004453 // Process the queued netbeans messages.
4454 netbeans_parse_messages();
Bram Moolenaar93c88e02015-09-15 14:12:05 +02004455# endif
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01004456# ifdef FEAT_JOB_CHANNEL
Bram Moolenaarcd1a62d2018-12-14 21:32:02 +01004457 // Write any buffer lines still to be written.
4458 channel_write_any_lines();
Bram Moolenaar8b877ac2016-03-28 19:16:20 +02004459
Bram Moolenaarcd1a62d2018-12-14 21:32:02 +01004460 // Process the messages queued on channels.
4461 channel_parse_messages();
Bram Moolenaar20fb9f32016-01-30 23:20:33 +01004462# endif
Bram Moolenaar95346802015-09-15 15:57:29 +02004463# if defined(FEAT_CLIENTSERVER) && defined(FEAT_X11)
Bram Moolenaarcd1a62d2018-12-14 21:32:02 +01004464 // Process the queued clientserver messages.
4465 server_parse_messages();
Bram Moolenaar93c88e02015-09-15 14:12:05 +02004466# endif
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01004467# ifdef FEAT_JOB_CHANNEL
Bram Moolenaarcd1a62d2018-12-14 21:32:02 +01004468 // Check if any jobs have ended. If so, repeat the above to handle
4469 // changes, e.g. stdin may have been closed.
4470 if (job_check_ended())
4471 continue;
Bram Moolenaaree1cffc2016-02-21 19:14:41 +01004472# endif
Bram Moolenaar2a4857a2019-01-29 22:29:07 +01004473# ifdef FEAT_TERMINAL
4474 free_unused_terminals();
4475# endif
Bram Moolenaarcd1a62d2018-12-14 21:32:02 +01004476 break;
4477 }
Bram Moolenaara3f7e582017-11-09 13:21:58 +01004478
Bram Moolenaar94f01952018-09-01 15:30:03 +02004479 // If the current window changed we need to bail out of the waiting loop.
4480 // E.g. when a job exit callback closes the terminal window.
Bram Moolenaara3f7e582017-11-09 13:21:58 +01004481 if (curwin != old_curwin)
4482 ins_char_typebuf(K_IGNORE);
Bram Moolenaar93c88e02015-09-15 14:12:05 +02004483}
4484#endif
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01004485
Bram Moolenaar51628222016-12-01 23:03:28 +01004486#ifndef PROTO /* proto is defined in vim.h */
4487# ifdef ELAPSED_TIMEVAL
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01004488/*
4489 * Return time in msec since "start_tv".
4490 */
4491 long
4492elapsed(struct timeval *start_tv)
4493{
4494 struct timeval now_tv;
4495
4496 gettimeofday(&now_tv, NULL);
4497 return (now_tv.tv_sec - start_tv->tv_sec) * 1000L
4498 + (now_tv.tv_usec - start_tv->tv_usec) / 1000L;
4499}
Bram Moolenaar51628222016-12-01 23:03:28 +01004500# endif
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01004501
Bram Moolenaar51628222016-12-01 23:03:28 +01004502# ifdef ELAPSED_TICKCOUNT
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01004503/*
4504 * Return time in msec since "start_tick".
4505 */
4506 long
4507elapsed(DWORD start_tick)
4508{
4509 DWORD now = GetTickCount();
4510
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01004511 return (long)now - (long)start_tick;
4512}
Bram Moolenaar51628222016-12-01 23:03:28 +01004513# endif
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01004514#endif
Bram Moolenaar20608922018-04-21 22:30:08 +02004515
4516#if defined(FEAT_JOB_CHANNEL) \
4517 || (defined(UNIX) && (!defined(USE_SYSTEM) \
4518 || (defined(FEAT_GUI) && defined(FEAT_TERMINAL)))) \
4519 || defined(PROTO)
4520/*
4521 * Parse "cmd" and put the white-separated parts in "argv".
4522 * "argv" is an allocated array with "argc" entries and room for 4 more.
4523 * Returns FAIL when out of memory.
4524 */
4525 int
4526mch_parse_cmd(char_u *cmd, int use_shcf, char ***argv, int *argc)
4527{
4528 int i;
4529 char_u *p, *d;
4530 int inquote;
4531
4532 /*
4533 * Do this loop twice:
4534 * 1: find number of arguments
4535 * 2: separate them and build argv[]
4536 */
4537 for (i = 0; i < 2; ++i)
4538 {
4539 p = skipwhite(cmd);
4540 inquote = FALSE;
4541 *argc = 0;
4542 for (;;)
4543 {
4544 if (i == 1)
4545 (*argv)[*argc] = (char *)p;
4546 ++*argc;
4547 d = p;
4548 while (*p != NUL && (inquote || (*p != ' ' && *p != TAB)))
4549 {
4550 if (p[0] == '"')
Bram Moolenaar1df2fa42018-10-07 21:36:11 +02004551 // quotes surrounding an argument and are dropped
Bram Moolenaar20608922018-04-21 22:30:08 +02004552 inquote = !inquote;
4553 else
4554 {
Bram Moolenaar1df2fa42018-10-07 21:36:11 +02004555 if (rem_backslash(p))
Bram Moolenaar20608922018-04-21 22:30:08 +02004556 {
Bram Moolenaar1df2fa42018-10-07 21:36:11 +02004557 // First pass: skip over "\ " and "\"".
4558 // Second pass: Remove the backslash.
Bram Moolenaar20608922018-04-21 22:30:08 +02004559 ++p;
4560 }
4561 if (i == 1)
4562 *d++ = *p;
4563 }
4564 ++p;
4565 }
4566 if (*p == NUL)
4567 {
4568 if (i == 1)
4569 *d++ = NUL;
4570 break;
4571 }
4572 if (i == 1)
4573 *d++ = NUL;
4574 p = skipwhite(p + 1);
4575 }
4576 if (*argv == NULL)
4577 {
4578 if (use_shcf)
4579 {
4580 /* Account for possible multiple args in p_shcf. */
4581 p = p_shcf;
4582 for (;;)
4583 {
4584 p = skiptowhite(p);
4585 if (*p == NUL)
4586 break;
4587 ++*argc;
4588 p = skipwhite(p);
4589 }
4590 }
4591
4592 *argv = (char **)alloc((unsigned)((*argc + 4) * sizeof(char *)));
4593 if (*argv == NULL) /* out of memory */
4594 return FAIL;
4595 }
4596 }
4597 return OK;
4598}
Bram Moolenaarebe74b72018-04-21 23:34:43 +02004599
4600# if defined(FEAT_JOB_CHANNEL) || defined(PROTO)
4601/*
4602 * Build "argv[argc]" from the string "cmd".
4603 * "argv[argc]" is set to NULL;
4604 * Return FAIL when out of memory.
4605 */
4606 int
4607build_argv_from_string(char_u *cmd, char ***argv, int *argc)
4608{
4609 char_u *cmd_copy;
4610 int i;
4611
4612 /* Make a copy, parsing will modify "cmd". */
4613 cmd_copy = vim_strsave(cmd);
4614 if (cmd_copy == NULL
4615 || mch_parse_cmd(cmd_copy, FALSE, argv, argc) == FAIL)
4616 {
4617 vim_free(cmd_copy);
4618 return FAIL;
4619 }
4620 for (i = 0; i < *argc; i++)
4621 (*argv)[i] = (char *)vim_strsave((char_u *)(*argv)[i]);
4622 (*argv)[*argc] = NULL;
4623 vim_free(cmd_copy);
4624 return OK;
4625}
4626
4627/*
4628 * Build "argv[argc]" from the list "l".
4629 * "argv[argc]" is set to NULL;
4630 * Return FAIL when out of memory.
4631 */
4632 int
4633build_argv_from_list(list_T *l, char ***argv, int *argc)
4634{
4635 listitem_T *li;
4636 char_u *s;
4637
4638 /* Pass argv[] to mch_call_shell(). */
4639 *argv = (char **)alloc(sizeof(char *) * (l->lv_len + 1));
4640 if (*argv == NULL)
4641 return FAIL;
4642 *argc = 0;
4643 for (li = l->lv_first; li != NULL; li = li->li_next)
4644 {
Bram Moolenaard155d7a2018-12-21 16:04:21 +01004645 s = tv_get_string_chk(&li->li_tv);
Bram Moolenaarebe74b72018-04-21 23:34:43 +02004646 if (s == NULL)
4647 {
4648 int i;
4649
4650 for (i = 0; i < *argc; ++i)
4651 vim_free((*argv)[i]);
4652 return FAIL;
4653 }
4654 (*argv)[*argc] = (char *)vim_strsave(s);
4655 *argc += 1;
4656 }
4657 (*argv)[*argc] = NULL;
4658 return OK;
4659}
4660# endif
Bram Moolenaar20608922018-04-21 22:30:08 +02004661#endif
Bram Moolenaarafde13b2019-04-28 19:46:49 +02004662
4663#if defined(FEAT_SESSION) || defined(PROTO)
4664/*
4665 * Generate a script that can be used to restore the current editing session.
4666 * Save the value of v:this_session before running :mksession in order to make
4667 * automagic session save fully transparent. Return TRUE on success.
4668 */
4669 int
4670write_session_file(char_u *filename)
4671{
4672 char_u *escaped_filename;
4673 char *mksession_cmdline;
4674 unsigned int save_ssop_flags;
4675 int failed;
4676
4677 /*
4678 * Build an ex command line to create a script that restores the current
4679 * session if executed. Escape the filename to avoid nasty surprises.
4680 */
4681 escaped_filename = vim_strsave_escaped(filename, escape_chars);
4682 if (escaped_filename == NULL)
4683 return FALSE;
4684 mksession_cmdline = (char *)alloc(10 + (int)STRLEN(escaped_filename) + 1);
4685 if (mksession_cmdline == NULL)
4686 {
4687 vim_free(escaped_filename);
4688 return FALSE;
4689 }
4690 strcpy(mksession_cmdline, "mksession ");
4691 STRCAT(mksession_cmdline, escaped_filename);
4692 vim_free(escaped_filename);
4693
4694 /*
4695 * Use a reasonable hardcoded set of 'sessionoptions' flags to avoid
4696 * unpredictable effects when the session is saved automatically. Also,
4697 * we definitely need SSOP_GLOBALS to be able to restore v:this_session.
4698 * Don't use SSOP_BUFFERS to prevent the buffer list from becoming
4699 * enormously large if the GNOME session feature is used regularly.
4700 */
4701 save_ssop_flags = ssop_flags;
4702 ssop_flags = (SSOP_BLANK|SSOP_CURDIR|SSOP_FOLDS|SSOP_GLOBALS
4703 |SSOP_HELP|SSOP_OPTIONS|SSOP_WINSIZE|SSOP_TABPAGES);
4704
4705 do_cmdline_cmd((char_u *)"let Save_VV_this_session = v:this_session");
4706 failed = (do_cmdline_cmd((char_u *)mksession_cmdline) == FAIL);
4707 do_cmdline_cmd((char_u *)"let v:this_session = Save_VV_this_session");
4708 do_unlet((char_u *)"Save_VV_this_session", TRUE);
4709
4710 ssop_flags = save_ssop_flags;
4711 vim_free(mksession_cmdline);
4712
4713 /*
4714 * Reopen the file and append a command to restore v:this_session,
4715 * as if this save never happened. This is to avoid conflicts with
4716 * the user's own sessions. FIXME: It's probably less hackish to add
4717 * a "stealth" flag to 'sessionoptions' -- gotta ask Bram.
4718 */
4719 if (!failed)
4720 {
4721 FILE *fd;
4722
4723 fd = open_exfile(filename, TRUE, APPENDBIN);
4724
4725 failed = (fd == NULL
4726 || put_line(fd, "let v:this_session = Save_VV_this_session") == FAIL
4727 || put_line(fd, "unlet Save_VV_this_session") == FAIL);
4728
4729 if (fd != NULL && fclose(fd) != 0)
4730 failed = TRUE;
4731
4732 if (failed)
4733 mch_remove(filename);
4734 }
4735
4736 return !failed;
4737}
4738#endif