blob: be9233f5ba16e70e80817403cf9c15711637b41c [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 Moolenaar964b3742019-05-24 18:54:09 +0200714mem_pre_alloc_l(size_t *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 Moolenaar964b3742019-05-24 18:54:09 +0200799alloc_does_fail(size_t 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 Moolenaar964b3742019-05-24 18:54:09 +0200821 * The normal way to allocate memory. This handles an out-of-memory situation
822 * as well as possible, still returns NULL when we're completely out.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000823 */
Bram Moolenaarc799fe22019-05-28 23:08:19 +0200824 void *
Bram Moolenaar964b3742019-05-24 18:54:09 +0200825alloc(size_t size)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000826{
Bram Moolenaar964b3742019-05-24 18:54:09 +0200827 return lalloc(size, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000828}
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 */
Bram Moolenaarc799fe22019-05-28 23:08:19 +0200833 void *
Bram Moolenaar964b3742019-05-24 18:54:09 +0200834alloc_id(size_t size, alloc_id_T id UNUSED)
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +0100835{
836#ifdef FEAT_EVAL
Bram Moolenaar964b3742019-05-24 18:54:09 +0200837 if (alloc_fail_id == id && alloc_does_fail(size))
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +0100838 return NULL;
839#endif
Bram Moolenaar964b3742019-05-24 18:54:09 +0200840 return lalloc(size, TRUE);
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +0100841}
842
843/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000844 * Allocate memory and set all bytes to zero.
845 */
Bram Moolenaarc799fe22019-05-28 23:08:19 +0200846 void *
Bram Moolenaar964b3742019-05-24 18:54:09 +0200847alloc_clear(size_t size)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000848{
Bram Moolenaarc799fe22019-05-28 23:08:19 +0200849 void *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000850
Bram Moolenaar964b3742019-05-24 18:54:09 +0200851 p = lalloc(size, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000852 if (p != NULL)
Bram Moolenaar964b3742019-05-24 18:54:09 +0200853 (void)vim_memset(p, 0, size);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000854 return p;
855}
856
857/*
Bram Moolenaar162b7142018-12-21 15:17:36 +0100858 * Same as alloc_clear() but with allocation id for testing
859 */
Bram Moolenaarc799fe22019-05-28 23:08:19 +0200860 void *
Bram Moolenaar964b3742019-05-24 18:54:09 +0200861alloc_clear_id(size_t size, alloc_id_T id UNUSED)
Bram Moolenaar162b7142018-12-21 15:17:36 +0100862{
863#ifdef FEAT_EVAL
Bram Moolenaar964b3742019-05-24 18:54:09 +0200864 if (alloc_fail_id == id && alloc_does_fail(size))
Bram Moolenaar162b7142018-12-21 15:17:36 +0100865 return NULL;
866#endif
867 return alloc_clear(size);
868}
869
870/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000871 * Allocate memory like lalloc() and set all bytes to zero.
872 */
Bram Moolenaarc799fe22019-05-28 23:08:19 +0200873 void *
Bram Moolenaar964b3742019-05-24 18:54:09 +0200874lalloc_clear(size_t size, int message)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000875{
Bram Moolenaarc799fe22019-05-28 23:08:19 +0200876 void *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000877
Bram Moolenaarc799fe22019-05-28 23:08:19 +0200878 p = lalloc(size, message);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000879 if (p != NULL)
Bram Moolenaar964b3742019-05-24 18:54:09 +0200880 (void)vim_memset(p, 0, size);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000881 return p;
882}
883
884/*
885 * Low level memory allocation function.
886 * This is used often, KEEP IT FAST!
887 */
Bram Moolenaarc799fe22019-05-28 23:08:19 +0200888 void *
Bram Moolenaar964b3742019-05-24 18:54:09 +0200889lalloc(size_t size, int message)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000890{
Bram Moolenaarc799fe22019-05-28 23:08:19 +0200891 void *p; /* pointer to new storage space */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000892 static int releasing = FALSE; /* don't do mf_release_all() recursive */
893 int try_again;
Bram Moolenaar48e330a2016-02-23 14:53:34 +0100894#if defined(HAVE_AVAIL_MEM)
Bram Moolenaar964b3742019-05-24 18:54:09 +0200895 static size_t allocated = 0; /* allocated since last avail check */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000896#endif
897
Bram Moolenaar964b3742019-05-24 18:54:09 +0200898 // Safety check for allocating zero bytes
Bram Moolenaar071d4272004-06-13 20:20:40 +0000899 if (size == 0)
900 {
Bram Moolenaar964b3742019-05-24 18:54:09 +0200901 // Don't hide this message
Bram Moolenaar071d4272004-06-13 20:20:40 +0000902 emsg_silent = 0;
Bram Moolenaar964b3742019-05-24 18:54:09 +0200903 iemsg(_("E341: Internal error: lalloc(0, )"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000904 return NULL;
905 }
906
907#ifdef MEM_PROFILE
908 mem_pre_alloc_l(&size);
909#endif
910
Bram Moolenaar071d4272004-06-13 20:20:40 +0000911 /*
912 * Loop when out of memory: Try to release some memfile blocks and
913 * if some blocks are released call malloc again.
914 */
915 for (;;)
916 {
917 /*
918 * Handle three kind of systems:
919 * 1. No check for available memory: Just return.
920 * 2. Slow check for available memory: call mch_avail_mem() after
921 * allocating KEEP_ROOM amount of memory.
922 * 3. Strict check for available memory: call mch_avail_mem()
923 */
Bram Moolenaarc799fe22019-05-28 23:08:19 +0200924 if ((p = malloc(size)) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000925 {
926#ifndef HAVE_AVAIL_MEM
927 /* 1. No check for available memory: Just return. */
928 goto theend;
929#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000930 /* 2. Slow check for available memory: call mch_avail_mem() after
931 * allocating (KEEP_ROOM / 2) amount of memory. */
932 allocated += size;
933 if (allocated < KEEP_ROOM / 2)
934 goto theend;
935 allocated = 0;
Bram Moolenaar48e330a2016-02-23 14:53:34 +0100936
Bram Moolenaar071d4272004-06-13 20:20:40 +0000937 /* 3. check for available memory: call mch_avail_mem() */
Bram Moolenaar11b73d62012-06-29 15:51:30 +0200938 if (mch_avail_mem(TRUE) < KEEP_ROOM_KB && !releasing)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000939 {
Bram Moolenaarc799fe22019-05-28 23:08:19 +0200940 free(p); /* System is low... no go! */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000941 p = NULL;
942 }
943 else
944 goto theend;
945#endif
946 }
947 /*
948 * Remember that mf_release_all() is being called to avoid an endless
949 * loop, because mf_release_all() may call alloc() recursively.
950 */
951 if (releasing)
952 break;
953 releasing = TRUE;
Bram Moolenaar661b1822005-07-28 22:36:45 +0000954
Bram Moolenaarf2405ed2017-03-16 19:58:25 +0100955 clear_sb_text(TRUE); /* free any scrollback text */
Bram Moolenaar661b1822005-07-28 22:36:45 +0000956 try_again = mf_release_all(); /* release as many blocks as possible */
Bram Moolenaar661b1822005-07-28 22:36:45 +0000957
Bram Moolenaar071d4272004-06-13 20:20:40 +0000958 releasing = FALSE;
959 if (!try_again)
960 break;
961 }
962
963 if (message && p == NULL)
964 do_outofmem_msg(size);
965
966theend:
967#ifdef MEM_PROFILE
Bram Moolenaarc799fe22019-05-28 23:08:19 +0200968 mem_post_alloc(&p, size);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000969#endif
970 return p;
971}
972
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +0100973/*
974 * lalloc() with an ID for alloc_fail().
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +0100975 */
Bram Moolenaar113e1072019-01-20 15:30:40 +0100976#if defined(FEAT_SIGNS) || defined(PROTO)
Bram Moolenaarc799fe22019-05-28 23:08:19 +0200977 void *
Bram Moolenaar964b3742019-05-24 18:54:09 +0200978lalloc_id(size_t size, int message, alloc_id_T id UNUSED)
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +0100979{
980#ifdef FEAT_EVAL
Bram Moolenaara260b872016-01-15 20:48:22 +0100981 if (alloc_fail_id == id && alloc_does_fail(size))
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +0100982 return NULL;
983#endif
Bram Moolenaar964b3742019-05-24 18:54:09 +0200984 return (lalloc(size, message));
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +0100985}
Bram Moolenaar113e1072019-01-20 15:30:40 +0100986#endif
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +0100987
Bram Moolenaar071d4272004-06-13 20:20:40 +0000988#if defined(MEM_PROFILE) || defined(PROTO)
989/*
990 * realloc() with memory profiling.
991 */
992 void *
Bram Moolenaar9b578142016-01-30 19:39:49 +0100993mem_realloc(void *ptr, size_t size)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000994{
995 void *p;
996
997 mem_pre_free(&ptr);
998 mem_pre_alloc_s(&size);
999
1000 p = realloc(ptr, size);
1001
1002 mem_post_alloc(&p, size);
1003
1004 return p;
1005}
1006#endif
1007
1008/*
1009* Avoid repeating the error message many times (they take 1 second each).
1010* Did_outofmem_msg is reset when a character is read.
1011*/
1012 void
Bram Moolenaar964b3742019-05-24 18:54:09 +02001013do_outofmem_msg(size_t size)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001014{
1015 if (!did_outofmem_msg)
1016 {
1017 /* Don't hide this message */
1018 emsg_silent = 0;
Bram Moolenaar79739e12011-10-26 11:41:00 +02001019
1020 /* Must come first to avoid coming back here when printing the error
1021 * message fails, e.g. when setting v:errmsg. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001022 did_outofmem_msg = TRUE;
Bram Moolenaar79739e12011-10-26 11:41:00 +02001023
Bram Moolenaar964b3742019-05-24 18:54:09 +02001024 semsg(_("E342: Out of memory! (allocating %lu bytes)"), (long_u)size);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001025 }
1026}
1027
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001028#if defined(EXITFREE) || defined(PROTO)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001029
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001030/*
1031 * Free everything that we allocated.
1032 * Can be used to detect memory leaks, e.g., with ccmalloc.
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001033 * NOTE: This is tricky! Things are freed that functions depend on. Don't be
1034 * surprised if Vim crashes...
1035 * Some things can't be freed, esp. things local to a library function.
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001036 */
1037 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001038free_all_mem(void)
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001039{
1040 buf_T *buf, *nextbuf;
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001041
1042 /* When we cause a crash here it is caught and Vim tries to exit cleanly.
1043 * Don't try freeing everything again. */
Bram Moolenaarb89a25f2016-06-01 23:08:39 +02001044 if (entered_free_all_mem)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001045 return;
Bram Moolenaarb89a25f2016-06-01 23:08:39 +02001046 entered_free_all_mem = TRUE;
Bram Moolenaara9673212016-06-01 22:21:06 +02001047
Bram Moolenaar5d2bae82014-09-19 14:26:36 +02001048 /* Don't want to trigger autocommands from here on. */
1049 block_autocmds();
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001050
Bram Moolenaar5bedfc62010-07-20 22:30:01 +02001051 /* Close all tabs and windows. Reset 'equalalways' to avoid redraws. */
1052 p_ea = FALSE;
Bram Moolenaare5c83282019-05-03 23:15:37 +02001053 if (first_tabpage != NULL && first_tabpage->tp_next != NULL)
Bram Moolenaar7d47b6e2006-03-15 22:59:18 +00001054 do_cmdline_cmd((char_u *)"tabonly!");
Bram Moolenaar95f09602016-11-10 20:01:45 +01001055 if (!ONE_WINDOW)
Bram Moolenaar7d47b6e2006-03-15 22:59:18 +00001056 do_cmdline_cmd((char_u *)"only!");
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00001057
Bram Moolenaarc4956c82006-03-12 21:58:43 +00001058# if defined(FEAT_SPELL)
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001059 /* Free all spell info. */
1060 spell_free_all();
1061# endif
1062
Bram Moolenaarb301f6b2018-02-10 15:38:35 +01001063#if defined(FEAT_INS_EXPAND) && defined(FEAT_BEVAL_TERM)
1064 ui_remove_balloon();
1065# endif
1066
Bram Moolenaarac9fb182019-04-27 13:04:13 +02001067 // Clear user commands (before deleting buffers).
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001068 ex_comclear(NULL);
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001069
Bram Moolenaare5c83282019-05-03 23:15:37 +02001070 // When exiting from mainerr_arg_missing curbuf has not been initialized,
1071 // and not much else.
1072 if (curbuf != NULL)
1073 {
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001074# ifdef FEAT_MENU
Bram Moolenaare5c83282019-05-03 23:15:37 +02001075 // Clear menus.
1076 do_cmdline_cmd((char_u *)"aunmenu *");
Bram Moolenaar21160b92009-11-11 15:56:10 +00001077# ifdef FEAT_MULTI_LANG
Bram Moolenaare5c83282019-05-03 23:15:37 +02001078 do_cmdline_cmd((char_u *)"menutranslate clear");
Bram Moolenaar21160b92009-11-11 15:56:10 +00001079# endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001080# endif
Bram Moolenaare5c83282019-05-03 23:15:37 +02001081 // Clear mappings, abbreviations, breakpoints.
1082 do_cmdline_cmd((char_u *)"lmapclear");
1083 do_cmdline_cmd((char_u *)"xmapclear");
1084 do_cmdline_cmd((char_u *)"mapclear");
1085 do_cmdline_cmd((char_u *)"mapclear!");
1086 do_cmdline_cmd((char_u *)"abclear");
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001087# if defined(FEAT_EVAL)
Bram Moolenaare5c83282019-05-03 23:15:37 +02001088 do_cmdline_cmd((char_u *)"breakdel *");
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001089# endif
Bram Moolenaar1e498f52005-06-26 22:29:44 +00001090# if defined(FEAT_PROFILE)
Bram Moolenaare5c83282019-05-03 23:15:37 +02001091 do_cmdline_cmd((char_u *)"profdel *");
Bram Moolenaar1e498f52005-06-26 22:29:44 +00001092# endif
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00001093# if defined(FEAT_KEYMAP)
Bram Moolenaare5c83282019-05-03 23:15:37 +02001094 do_cmdline_cmd((char_u *)"set keymap=");
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00001095#endif
Bram Moolenaare5c83282019-05-03 23:15:37 +02001096 }
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001097
1098# ifdef FEAT_TITLE
1099 free_titles();
1100# endif
1101# if defined(FEAT_SEARCHPATH)
1102 free_findfile();
1103# endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001104
1105 /* Obviously named calls. */
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001106 free_all_autocmds();
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001107 clear_termcodes();
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001108 free_all_marks();
1109 alist_clear(&global_alist);
1110 free_homedir();
Bram Moolenaar24305862012-08-15 14:05:05 +02001111# if defined(FEAT_CMDL_COMPL)
1112 free_users();
1113# endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001114 free_search_patterns();
1115 free_old_sub();
1116 free_last_insert();
Bram Moolenaarac9fb182019-04-27 13:04:13 +02001117# if defined(FEAT_INS_EXPAND)
Bram Moolenaar7591bb32019-03-30 13:53:47 +01001118 free_insexpand_stuff();
Bram Moolenaarac9fb182019-04-27 13:04:13 +02001119# endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001120 free_prev_shellcmd();
1121 free_regexp_stuff();
1122 free_tag_stuff();
1123 free_cd_dir();
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00001124# ifdef FEAT_SIGNS
1125 free_signs();
1126# endif
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001127# ifdef FEAT_EVAL
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001128 set_expr_line(NULL);
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001129# endif
1130# ifdef FEAT_DIFF
Bram Moolenaare5c83282019-05-03 23:15:37 +02001131 if (curtab != NULL)
1132 diff_clear(curtab);
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001133# endif
Bram Moolenaarf2405ed2017-03-16 19:58:25 +01001134 clear_sb_text(TRUE); /* free any scrollback text */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001135
1136 /* Free some global vars. */
1137 vim_free(username);
Bram Moolenaaraf92ee82007-10-07 13:45:08 +00001138# ifdef FEAT_CLIPBOARD
Bram Moolenaar473de612013-06-08 18:19:48 +02001139 vim_regfree(clip_exclude_prog);
Bram Moolenaaraf92ee82007-10-07 13:45:08 +00001140# endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001141 vim_free(last_cmdline);
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001142# ifdef FEAT_CMDHIST
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001143 vim_free(new_last_cmdline);
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001144# endif
Bram Moolenaar238a5642006-02-21 22:12:05 +00001145 set_keep_msg(NULL, 0);
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001146
1147 /* Clear cmdline history. */
1148 p_hi = 0;
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001149# ifdef FEAT_CMDHIST
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001150 init_history();
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001151# endif
Bram Moolenaar98aefe72018-12-13 22:20:09 +01001152#ifdef FEAT_TEXT_PROP
1153 clear_global_prop_types();
1154#endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001155
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001156#ifdef FEAT_QUICKFIX
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001157 {
Bram Moolenaarbd1e5d22009-04-29 09:02:44 +00001158 win_T *win;
1159 tabpage_T *tab;
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001160
1161 qf_free_all(NULL);
Bram Moolenaare5c83282019-05-03 23:15:37 +02001162 // Free all location lists
Bram Moolenaarbd1e5d22009-04-29 09:02:44 +00001163 FOR_ALL_TAB_WINDOWS(tab, win)
Bram Moolenaare0ca7b22007-11-24 20:28:24 +00001164 qf_free_all(win);
1165 }
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001166#endif
1167
Bram Moolenaare5c83282019-05-03 23:15:37 +02001168 // Close all script inputs.
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001169 close_all_scripts();
1170
Bram Moolenaare5c83282019-05-03 23:15:37 +02001171 if (curwin != NULL)
1172 // Destroy all windows. Must come before freeing buffers.
1173 win_free_all();
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001174
Bram Moolenaar4f198282017-10-23 21:53:30 +02001175 /* Free all option values. Must come after closing windows. */
1176 free_all_options();
1177
Bram Moolenaar2a329742008-04-01 12:53:43 +00001178 /* Free all buffers. Reset 'autochdir' to avoid accessing things that
1179 * were freed already. */
1180#ifdef FEAT_AUTOCHDIR
1181 p_acd = FALSE;
1182#endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001183 for (buf = firstbuf; buf != NULL; )
1184 {
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001185 bufref_T bufref;
1186
1187 set_bufref(&bufref, buf);
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001188 nextbuf = buf->b_next;
Bram Moolenaar42ec6562012-02-22 14:58:37 +01001189 close_buffer(NULL, buf, DOBUF_WIPE, FALSE);
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02001190 if (bufref_valid(&bufref))
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001191 buf = nextbuf; /* didn't work, try next one */
1192 else
1193 buf = firstbuf;
1194 }
1195
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001196 free_cmdline_buf();
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001197
1198 /* Clear registers. */
1199 clear_registers();
1200 ResetRedobuff();
1201 ResetRedobuff();
1202
Bram Moolenaar9f84ded2018-10-20 20:54:02 +02001203# if defined(FEAT_CLIENTSERVER) && defined(FEAT_X11)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001204 vim_free(serverDelayedStartName);
Bram Moolenaar9f84ded2018-10-20 20:54:02 +02001205# endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001206
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001207 /* highlight info */
1208 free_highlight();
1209
Bram Moolenaar1e498f52005-06-26 22:29:44 +00001210 reset_last_sourcing();
1211
Bram Moolenaare5c83282019-05-03 23:15:37 +02001212 if (first_tabpage != NULL)
1213 {
1214 free_tabpage(first_tabpage);
1215 first_tabpage = NULL;
1216 }
Bram Moolenaar7d47b6e2006-03-15 22:59:18 +00001217
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001218# ifdef UNIX
1219 /* Machine-specific free. */
1220 mch_free_mem();
1221# endif
1222
1223 /* message history */
1224 for (;;)
1225 if (delete_first_msg() == FAIL)
1226 break;
1227
Bram Moolenaar655da312016-05-28 22:22:34 +02001228# ifdef FEAT_JOB_CHANNEL
1229 channel_free_all();
Bram Moolenaar655da312016-05-28 22:22:34 +02001230# endif
Bram Moolenaar9f84ded2018-10-20 20:54:02 +02001231# ifdef FEAT_TIMERS
Bram Moolenaar623e2632016-07-30 22:47:56 +02001232 timer_free_all();
Bram Moolenaar9f84ded2018-10-20 20:54:02 +02001233# endif
Bram Moolenaar437bafe2016-08-01 15:40:54 +02001234# ifdef FEAT_EVAL
1235 /* must be after channel_free_all() with unrefs partials */
1236 eval_clear();
1237# endif
1238# ifdef FEAT_JOB_CHANNEL
1239 /* must be after eval_clear() with unrefs jobs */
1240 job_free_all();
1241# endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001242
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001243 free_termoptions();
1244
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001245 /* screenlines (can't display anything now!) */
1246 free_screenlines();
1247
Bram Moolenaar82febc12019-06-10 14:48:59 +02001248# if defined(FEAT_SOUND)
1249 sound_free();
1250# endif
Bram Moolenaar9f84ded2018-10-20 20:54:02 +02001251# if defined(USE_XSMP)
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001252 xsmp_close();
Bram Moolenaar9f84ded2018-10-20 20:54:02 +02001253# endif
1254# ifdef FEAT_GUI_GTK
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001255 gui_mch_free_all();
Bram Moolenaar9f84ded2018-10-20 20:54:02 +02001256# endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001257 clear_hl_tables();
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001258
1259 vim_free(IObuff);
1260 vim_free(NameBuff);
Bram Moolenaar9f84ded2018-10-20 20:54:02 +02001261# ifdef FEAT_QUICKFIX
1262 check_quickfix_busy();
1263# endif
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00001264}
1265#endif
1266
Bram Moolenaar071d4272004-06-13 20:20:40 +00001267/*
Bram Moolenaare980d8a2010-12-08 13:11:21 +01001268 * Copy "string" into newly allocated memory.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001269 */
1270 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001271vim_strsave(char_u *string)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001272{
1273 char_u *p;
Bram Moolenaar964b3742019-05-24 18:54:09 +02001274 size_t len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001275
Bram Moolenaar964b3742019-05-24 18:54:09 +02001276 len = STRLEN(string) + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001277 p = alloc(len);
1278 if (p != NULL)
Bram Moolenaar964b3742019-05-24 18:54:09 +02001279 mch_memmove(p, string, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001280 return p;
1281}
1282
Bram Moolenaare980d8a2010-12-08 13:11:21 +01001283/*
1284 * Copy up to "len" bytes of "string" into newly allocated memory and
1285 * terminate with a NUL.
1286 * The allocated memory always has size "len + 1", also when "string" is
1287 * shorter.
1288 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001289 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001290vim_strnsave(char_u *string, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001291{
1292 char_u *p;
1293
Bram Moolenaar51e14382019-05-25 20:21:28 +02001294 p = alloc(len + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001295 if (p != NULL)
1296 {
1297 STRNCPY(p, string, len);
1298 p[len] = NUL;
1299 }
1300 return p;
1301}
1302
Bram Moolenaar071d4272004-06-13 20:20:40 +00001303/*
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01001304 * Copy "p[len]" into allocated memory, ignoring NUL characters.
1305 * Returns NULL when out of memory.
1306 */
1307 char_u *
Bram Moolenaar964b3742019-05-24 18:54:09 +02001308vim_memsave(char_u *p, size_t len)
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01001309{
Bram Moolenaar964b3742019-05-24 18:54:09 +02001310 char_u *ret = alloc(len);
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01001311
1312 if (ret != NULL)
Bram Moolenaar964b3742019-05-24 18:54:09 +02001313 mch_memmove(ret, p, len);
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01001314 return ret;
1315}
1316
1317/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001318 * Same as vim_strsave(), but any characters found in esc_chars are preceded
1319 * by a backslash.
1320 */
1321 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001322vim_strsave_escaped(char_u *string, char_u *esc_chars)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001323{
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001324 return vim_strsave_escaped_ext(string, esc_chars, '\\', FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001325}
1326
1327/*
1328 * Same as vim_strsave_escaped(), but when "bsl" is TRUE also escape
1329 * characters where rem_backslash() would remove the backslash.
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001330 * Escape the characters with "cc".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001331 */
1332 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001333vim_strsave_escaped_ext(
1334 char_u *string,
1335 char_u *esc_chars,
1336 int cc,
1337 int bsl)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001338{
1339 char_u *p;
1340 char_u *p2;
1341 char_u *escaped_string;
1342 unsigned length;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001343 int l;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001344
1345 /*
1346 * First count the number of backslashes required.
1347 * Then allocate the memory and insert them.
1348 */
1349 length = 1; /* count the trailing NUL */
1350 for (p = string; *p; p++)
1351 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001352 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001353 {
1354 length += l; /* count a multibyte char */
1355 p += l - 1;
1356 continue;
1357 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001358 if (vim_strchr(esc_chars, *p) != NULL || (bsl && rem_backslash(p)))
1359 ++length; /* count a backslash */
1360 ++length; /* count an ordinary char */
1361 }
1362 escaped_string = alloc(length);
1363 if (escaped_string != NULL)
1364 {
1365 p2 = escaped_string;
1366 for (p = string; *p; p++)
1367 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001368 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001369 {
1370 mch_memmove(p2, p, (size_t)l);
1371 p2 += l;
1372 p += l - 1; /* skip multibyte char */
1373 continue;
1374 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001375 if (vim_strchr(esc_chars, *p) != NULL || (bsl && rem_backslash(p)))
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +00001376 *p2++ = cc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001377 *p2++ = *p;
1378 }
1379 *p2 = NUL;
1380 }
1381 return escaped_string;
1382}
1383
Bram Moolenaar7693ec62008-07-24 18:29:37 +00001384/*
1385 * Return TRUE when 'shell' has "csh" in the tail.
1386 */
1387 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001388csh_like_shell(void)
Bram Moolenaar7693ec62008-07-24 18:29:37 +00001389{
1390 return (strstr((char *)gettail(p_sh), "csh") != NULL);
1391}
Bram Moolenaar7693ec62008-07-24 18:29:37 +00001392
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001393/*
1394 * Escape "string" for use as a shell argument with system().
Bram Moolenaar21160b92009-11-11 15:56:10 +00001395 * This uses single quotes, except when we know we need to use double quotes
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001396 * (MS-DOS and MS-Windows without 'shellslash' set).
Bram Moolenaarffd66c42008-07-16 20:43:37 +00001397 * Escape a newline, depending on the 'shell' option.
1398 * When "do_special" is TRUE also replace "!", "%", "#" and things starting
1399 * with "<" like "<cfile>".
Bram Moolenaar26df0922014-02-23 23:39:13 +01001400 * When "do_newline" is FALSE do not escape newline unless it is csh shell.
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001401 * Returns the result in allocated memory, NULL if we have run out.
1402 */
1403 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001404vim_strsave_shellescape(char_u *string, int do_special, int do_newline)
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001405{
1406 unsigned length;
1407 char_u *p;
1408 char_u *d;
1409 char_u *escaped_string;
Bram Moolenaar05bb9532008-07-04 09:44:11 +00001410 int l;
Bram Moolenaarffd66c42008-07-16 20:43:37 +00001411 int csh_like;
1412
1413 /* Only csh and similar shells expand '!' within single quotes. For sh and
1414 * the like we must not put a backslash before it, it will be taken
1415 * literally. If do_special is set the '!' will be escaped twice.
1416 * Csh also needs to have "\n" escaped twice when do_special is set. */
Bram Moolenaar7693ec62008-07-24 18:29:37 +00001417 csh_like = csh_like_shell();
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001418
1419 /* First count the number of extra bytes required. */
Bram Moolenaar77f66d62007-02-20 02:16:18 +00001420 length = (unsigned)STRLEN(string) + 3; /* two quotes and a trailing NUL */
Bram Moolenaar91acfff2017-03-12 19:22:36 +01001421 for (p = string; *p != NUL; MB_PTR_ADV(p))
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001422 {
Bram Moolenaar4f974752019-02-17 17:44:42 +01001423# ifdef MSWIN
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001424 if (!p_ssl)
1425 {
1426 if (*p == '"')
1427 ++length; /* " -> "" */
1428 }
1429 else
1430# endif
1431 if (*p == '\'')
1432 length += 3; /* ' => '\'' */
Bram Moolenaar26df0922014-02-23 23:39:13 +01001433 if ((*p == '\n' && (csh_like || do_newline))
1434 || (*p == '!' && (csh_like || do_special)))
Bram Moolenaarffd66c42008-07-16 20:43:37 +00001435 {
1436 ++length; /* insert backslash */
1437 if (csh_like && do_special)
1438 ++length; /* insert backslash */
1439 }
Bram Moolenaar05bb9532008-07-04 09:44:11 +00001440 if (do_special && find_cmdline_var(p, &l) >= 0)
1441 {
1442 ++length; /* insert backslash */
1443 p += l - 1;
1444 }
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001445 }
1446
1447 /* Allocate memory for the result and fill it. */
1448 escaped_string = alloc(length);
1449 if (escaped_string != NULL)
1450 {
1451 d = escaped_string;
1452
1453 /* add opening quote */
Bram Moolenaar4f974752019-02-17 17:44:42 +01001454# ifdef MSWIN
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001455 if (!p_ssl)
1456 *d++ = '"';
1457 else
1458# endif
1459 *d++ = '\'';
1460
1461 for (p = string; *p != NUL; )
1462 {
Bram Moolenaar4f974752019-02-17 17:44:42 +01001463# ifdef MSWIN
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001464 if (!p_ssl)
1465 {
1466 if (*p == '"')
1467 {
1468 *d++ = '"';
1469 *d++ = '"';
1470 ++p;
1471 continue;
1472 }
1473 }
1474 else
1475# endif
1476 if (*p == '\'')
1477 {
Bram Moolenaar05bb9532008-07-04 09:44:11 +00001478 *d++ = '\'';
1479 *d++ = '\\';
1480 *d++ = '\'';
1481 *d++ = '\'';
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001482 ++p;
1483 continue;
1484 }
Bram Moolenaar26df0922014-02-23 23:39:13 +01001485 if ((*p == '\n' && (csh_like || do_newline))
1486 || (*p == '!' && (csh_like || do_special)))
Bram Moolenaarffd66c42008-07-16 20:43:37 +00001487 {
1488 *d++ = '\\';
1489 if (csh_like && do_special)
1490 *d++ = '\\';
1491 *d++ = *p++;
1492 continue;
1493 }
Bram Moolenaar05bb9532008-07-04 09:44:11 +00001494 if (do_special && find_cmdline_var(p, &l) >= 0)
1495 {
1496 *d++ = '\\'; /* insert backslash */
1497 while (--l >= 0) /* copy the var */
1498 *d++ = *p++;
Bram Moolenaar099d01d2009-11-25 16:14:45 +00001499 continue;
Bram Moolenaar05bb9532008-07-04 09:44:11 +00001500 }
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001501
1502 MB_COPY_CHAR(p, d);
1503 }
1504
1505 /* add terminating quote and finish with a NUL */
Bram Moolenaar4f974752019-02-17 17:44:42 +01001506# ifdef MSWIN
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001507 if (!p_ssl)
1508 *d++ = '"';
1509 else
1510# endif
1511 *d++ = '\'';
1512 *d = NUL;
1513 }
1514
1515 return escaped_string;
1516}
Bram Moolenaar60a495f2006-10-03 12:44:42 +00001517
Bram Moolenaar071d4272004-06-13 20:20:40 +00001518/*
1519 * Like vim_strsave(), but make all characters uppercase.
1520 * This uses ASCII lower-to-upper case translation, language independent.
1521 */
1522 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001523vim_strsave_up(char_u *string)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001524{
1525 char_u *p1;
1526
1527 p1 = vim_strsave(string);
1528 vim_strup(p1);
1529 return p1;
1530}
1531
1532/*
1533 * Like vim_strnsave(), but make all characters uppercase.
1534 * This uses ASCII lower-to-upper case translation, language independent.
1535 */
1536 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001537vim_strnsave_up(char_u *string, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001538{
1539 char_u *p1;
1540
1541 p1 = vim_strnsave(string, len);
1542 vim_strup(p1);
1543 return p1;
1544}
1545
1546/*
1547 * ASCII lower-to-upper case translation, language independent.
1548 */
1549 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001550vim_strup(
1551 char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001552{
1553 char_u *p2;
1554 int c;
1555
1556 if (p != NULL)
1557 {
1558 p2 = p;
1559 while ((c = *p2) != NUL)
1560#ifdef EBCDIC
1561 *p2++ = isalpha(c) ? toupper(c) : c;
1562#else
1563 *p2++ = (c < 'a' || c > 'z') ? c : (c - 0x20);
1564#endif
1565 }
1566}
1567
Bram Moolenaarc4956c82006-03-12 21:58:43 +00001568#if defined(FEAT_EVAL) || defined(FEAT_SPELL) || defined(PROTO)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001569/*
1570 * Make string "s" all upper-case and return it in allocated memory.
1571 * Handles multi-byte characters as well as possible.
1572 * Returns NULL when out of memory.
1573 */
1574 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001575strup_save(char_u *orig)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001576{
1577 char_u *p;
1578 char_u *res;
1579
1580 res = p = vim_strsave(orig);
1581
1582 if (res != NULL)
1583 while (*p != NUL)
1584 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001585 int l;
1586
1587 if (enc_utf8)
1588 {
1589 int c, uc;
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001590 int newl;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001591 char_u *s;
1592
1593 c = utf_ptr2char(p);
Bram Moolenaare6640ad2017-12-22 21:06:56 +01001594 l = utf_ptr2len(p);
1595 if (c == 0)
1596 {
1597 /* overlong sequence, use only the first byte */
1598 c = *p;
1599 l = 1;
1600 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001601 uc = utf_toupper(c);
1602
1603 /* Reallocate string when byte count changes. This is rare,
1604 * thus it's OK to do another malloc()/free(). */
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001605 newl = utf_char2len(uc);
1606 if (newl != l)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001607 {
Bram Moolenaar964b3742019-05-24 18:54:09 +02001608 s = alloc(STRLEN(res) + 1 + newl - l);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001609 if (s == NULL)
Bram Moolenaarcc5b22b2017-01-26 22:51:56 +01001610 {
1611 vim_free(res);
1612 return NULL;
1613 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001614 mch_memmove(s, res, p - res);
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001615 STRCPY(s + (p - res) + newl, p + l);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001616 p = s + (p - res);
1617 vim_free(res);
1618 res = s;
1619 }
1620
1621 utf_char2bytes(uc, p);
Bram Moolenaar70b2a562012-01-10 22:26:17 +01001622 p += newl;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001623 }
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001624 else if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001625 p += l; /* skip multi-byte character */
1626 else
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001627 {
1628 *p = TOUPPER_LOC(*p); /* note that toupper() can be a macro */
1629 p++;
1630 }
1631 }
1632
1633 return res;
1634}
Bram Moolenaarcc5b22b2017-01-26 22:51:56 +01001635
1636/*
1637 * Make string "s" all lower-case and return it in allocated memory.
1638 * Handles multi-byte characters as well as possible.
1639 * Returns NULL when out of memory.
1640 */
1641 char_u *
1642strlow_save(char_u *orig)
1643{
1644 char_u *p;
1645 char_u *res;
1646
1647 res = p = vim_strsave(orig);
1648
1649 if (res != NULL)
1650 while (*p != NUL)
1651 {
Bram Moolenaarcc5b22b2017-01-26 22:51:56 +01001652 int l;
1653
1654 if (enc_utf8)
1655 {
1656 int c, lc;
1657 int newl;
1658 char_u *s;
1659
1660 c = utf_ptr2char(p);
Bram Moolenaare6640ad2017-12-22 21:06:56 +01001661 l = utf_ptr2len(p);
1662 if (c == 0)
1663 {
1664 /* overlong sequence, use only the first byte */
1665 c = *p;
1666 l = 1;
1667 }
Bram Moolenaarcc5b22b2017-01-26 22:51:56 +01001668 lc = utf_tolower(c);
1669
1670 /* Reallocate string when byte count changes. This is rare,
1671 * thus it's OK to do another malloc()/free(). */
Bram Moolenaarcc5b22b2017-01-26 22:51:56 +01001672 newl = utf_char2len(lc);
1673 if (newl != l)
1674 {
Bram Moolenaar964b3742019-05-24 18:54:09 +02001675 s = alloc(STRLEN(res) + 1 + newl - l);
Bram Moolenaarcc5b22b2017-01-26 22:51:56 +01001676 if (s == NULL)
1677 {
1678 vim_free(res);
1679 return NULL;
1680 }
1681 mch_memmove(s, res, p - res);
1682 STRCPY(s + (p - res) + newl, p + l);
1683 p = s + (p - res);
1684 vim_free(res);
1685 res = s;
1686 }
1687
1688 utf_char2bytes(lc, p);
1689 p += newl;
1690 }
1691 else if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
1692 p += l; /* skip multi-byte character */
1693 else
Bram Moolenaarcc5b22b2017-01-26 22:51:56 +01001694 {
1695 *p = TOLOWER_LOC(*p); /* note that tolower() can be a macro */
1696 p++;
1697 }
1698 }
1699
1700 return res;
1701}
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001702#endif
1703
Bram Moolenaar071d4272004-06-13 20:20:40 +00001704/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001705 * delete spaces at the end of a string
1706 */
1707 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001708del_trailing_spaces(char_u *ptr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001709{
1710 char_u *q;
1711
1712 q = ptr + STRLEN(ptr);
Bram Moolenaar1c465442017-03-12 20:10:05 +01001713 while (--q > ptr && VIM_ISWHITE(q[0]) && q[-1] != '\\' && q[-1] != Ctrl_V)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001714 *q = NUL;
1715}
1716
1717/*
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001718 * Like strncpy(), but always terminate the result with one NUL.
Bram Moolenaard042c562005-06-30 22:04:15 +00001719 * "to" must be "len + 1" long!
Bram Moolenaar071d4272004-06-13 20:20:40 +00001720 */
1721 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001722vim_strncpy(char_u *to, char_u *from, size_t len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001723{
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001724 STRNCPY(to, from, len);
1725 to[len] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001726}
1727
1728/*
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02001729 * Like strcat(), but make sure the result fits in "tosize" bytes and is
Bram Moolenaar45600ce2017-01-27 21:54:07 +01001730 * always NUL terminated. "from" and "to" may overlap.
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02001731 */
1732 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001733vim_strcat(char_u *to, char_u *from, size_t tosize)
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02001734{
1735 size_t tolen = STRLEN(to);
1736 size_t fromlen = STRLEN(from);
1737
1738 if (tolen + fromlen + 1 > tosize)
1739 {
1740 mch_memmove(to + tolen, from, tosize - tolen - 1);
1741 to[tosize - 1] = NUL;
1742 }
1743 else
Bram Moolenaar45600ce2017-01-27 21:54:07 +01001744 mch_memmove(to + tolen, from, fromlen + 1);
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02001745}
1746
1747/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001748 * Isolate one part of a string option where parts are separated with
1749 * "sep_chars".
Bram Moolenaar83bab712005-08-01 21:58:57 +00001750 * The part is copied into "buf[maxlen]".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001751 * "*option" is advanced to the next part.
1752 * The length is returned.
1753 */
1754 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001755copy_option_part(
1756 char_u **option,
1757 char_u *buf,
1758 int maxlen,
1759 char *sep_chars)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001760{
1761 int len = 0;
1762 char_u *p = *option;
1763
1764 /* skip '.' at start of option part, for 'suffixes' */
1765 if (*p == '.')
1766 buf[len++] = *p++;
1767 while (*p != NUL && vim_strchr((char_u *)sep_chars, *p) == NULL)
1768 {
1769 /*
1770 * Skip backslash before a separator character and space.
1771 */
1772 if (p[0] == '\\' && vim_strchr((char_u *)sep_chars, p[1]) != NULL)
1773 ++p;
1774 if (len < maxlen - 1)
1775 buf[len++] = *p;
1776 ++p;
1777 }
1778 buf[len] = NUL;
1779
1780 if (*p != NUL && *p != ',') /* skip non-standard separator */
1781 ++p;
1782 p = skip_to_option_part(p); /* p points to next file name */
1783
1784 *option = p;
1785 return len;
1786}
1787
1788/*
Bram Moolenaar4770d092006-01-12 23:22:24 +00001789 * Replacement for free() that ignores NULL pointers.
1790 * Also skip free() when exiting for sure, this helps when we caught a deadly
1791 * signal that was caused by a crash in free().
Bram Moolenaard23a8232018-02-10 18:45:26 +01001792 * If you want to set NULL after calling this function, you should use
1793 * VIM_CLEAR() instead.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001794 */
1795 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01001796vim_free(void *x)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001797{
Bram Moolenaar4770d092006-01-12 23:22:24 +00001798 if (x != NULL && !really_exiting)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001799 {
1800#ifdef MEM_PROFILE
1801 mem_pre_free(&x);
1802#endif
1803 free(x);
1804 }
1805}
1806
1807#ifndef HAVE_MEMSET
1808 void *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001809vim_memset(void *ptr, int c, size_t size)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001810{
1811 char *p = ptr;
1812
1813 while (size-- > 0)
1814 *p++ = c;
1815 return ptr;
1816}
1817#endif
1818
Bram Moolenaar071d4272004-06-13 20:20:40 +00001819#if (!defined(HAVE_STRCASECMP) && !defined(HAVE_STRICMP)) || defined(PROTO)
1820/*
1821 * Compare two strings, ignoring case, using current locale.
1822 * Doesn't work for multi-byte characters.
1823 * return 0 for match, < 0 for smaller, > 0 for bigger
1824 */
1825 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001826vim_stricmp(char *s1, char *s2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001827{
1828 int i;
1829
1830 for (;;)
1831 {
1832 i = (int)TOLOWER_LOC(*s1) - (int)TOLOWER_LOC(*s2);
1833 if (i != 0)
1834 return i; /* this character different */
1835 if (*s1 == NUL)
1836 break; /* strings match until NUL */
1837 ++s1;
1838 ++s2;
1839 }
1840 return 0; /* strings match */
1841}
1842#endif
1843
1844#if (!defined(HAVE_STRNCASECMP) && !defined(HAVE_STRNICMP)) || defined(PROTO)
1845/*
1846 * Compare two strings, for length "len", ignoring case, using current locale.
1847 * Doesn't work for multi-byte characters.
1848 * return 0 for match, < 0 for smaller, > 0 for bigger
1849 */
1850 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001851vim_strnicmp(char *s1, char *s2, size_t len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001852{
1853 int i;
1854
1855 while (len > 0)
1856 {
1857 i = (int)TOLOWER_LOC(*s1) - (int)TOLOWER_LOC(*s2);
1858 if (i != 0)
1859 return i; /* this character different */
1860 if (*s1 == NUL)
1861 break; /* strings match until NUL */
1862 ++s1;
1863 ++s2;
1864 --len;
1865 }
1866 return 0; /* strings match */
1867}
1868#endif
1869
Bram Moolenaar071d4272004-06-13 20:20:40 +00001870/*
1871 * Version of strchr() and strrchr() that handle unsigned char strings
Bram Moolenaar05159a02005-02-26 23:04:13 +00001872 * with characters from 128 to 255 correctly. It also doesn't return a
1873 * pointer to the NUL at the end of the string.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001874 */
1875 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001876vim_strchr(char_u *string, int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001877{
1878 char_u *p;
1879 int b;
1880
1881 p = string;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001882 if (enc_utf8 && c >= 0x80)
1883 {
1884 while (*p != NUL)
1885 {
Bram Moolenaarace95982017-03-29 17:30:27 +02001886 int l = utfc_ptr2len(p);
Bram Moolenaard82a2a92015-04-21 14:02:35 +02001887
1888 /* Avoid matching an illegal byte here. */
1889 if (utf_ptr2char(p) == c && l > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001890 return p;
Bram Moolenaard82a2a92015-04-21 14:02:35 +02001891 p += l;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001892 }
1893 return NULL;
1894 }
1895 if (enc_dbcs != 0 && c > 255)
1896 {
1897 int n2 = c & 0xff;
1898
1899 c = ((unsigned)c >> 8) & 0xff;
1900 while ((b = *p) != NUL)
1901 {
1902 if (b == c && p[1] == n2)
1903 return p;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001904 p += (*mb_ptr2len)(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001905 }
1906 return NULL;
1907 }
1908 if (has_mbyte)
1909 {
1910 while ((b = *p) != NUL)
1911 {
1912 if (b == c)
1913 return p;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001914 p += (*mb_ptr2len)(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001915 }
1916 return NULL;
1917 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001918 while ((b = *p) != NUL)
1919 {
1920 if (b == c)
1921 return p;
1922 ++p;
1923 }
1924 return NULL;
1925}
1926
1927/*
Bram Moolenaar05159a02005-02-26 23:04:13 +00001928 * Version of strchr() that only works for bytes and handles unsigned char
1929 * strings with characters above 128 correctly. It also doesn't return a
1930 * pointer to the NUL at the end of the string.
1931 */
1932 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001933vim_strbyte(char_u *string, int c)
Bram Moolenaar05159a02005-02-26 23:04:13 +00001934{
1935 char_u *p = string;
1936
1937 while (*p != NUL)
1938 {
1939 if (*p == c)
1940 return p;
1941 ++p;
1942 }
1943 return NULL;
1944}
1945
1946/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001947 * Search for last occurrence of "c" in "string".
Bram Moolenaarac6e65f2005-08-29 22:25:38 +00001948 * Return NULL if not found.
Bram Moolenaar05159a02005-02-26 23:04:13 +00001949 * Does not handle multi-byte char for "c"!
Bram Moolenaar071d4272004-06-13 20:20:40 +00001950 */
1951 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001952vim_strrchr(char_u *string, int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001953{
1954 char_u *retval = NULL;
Bram Moolenaar05159a02005-02-26 23:04:13 +00001955 char_u *p = string;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001956
Bram Moolenaar05159a02005-02-26 23:04:13 +00001957 while (*p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001958 {
Bram Moolenaar05159a02005-02-26 23:04:13 +00001959 if (*p == c)
1960 retval = p;
Bram Moolenaar91acfff2017-03-12 19:22:36 +01001961 MB_PTR_ADV(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001962 }
1963 return retval;
1964}
1965
1966/*
1967 * Vim's version of strpbrk(), in case it's missing.
1968 * Don't generate a prototype for this, causes problems when it's not used.
1969 */
1970#ifndef PROTO
1971# ifndef HAVE_STRPBRK
1972# ifdef vim_strpbrk
1973# undef vim_strpbrk
1974# endif
1975 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01001976vim_strpbrk(char_u *s, char_u *charset)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001977{
1978 while (*s)
1979 {
1980 if (vim_strchr(charset, *s) != NULL)
1981 return s;
Bram Moolenaar91acfff2017-03-12 19:22:36 +01001982 MB_PTR_ADV(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001983 }
1984 return NULL;
1985}
1986# endif
1987#endif
1988
1989/*
1990 * Vim has its own isspace() function, because on some machines isspace()
1991 * can't handle characters above 128.
1992 */
1993 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01001994vim_isspace(int x)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001995{
1996 return ((x >= 9 && x <= 13) || x == ' ');
1997}
1998
1999/************************************************************************
Bram Moolenaar383f9bc2005-01-19 22:18:32 +00002000 * Functions for handling growing arrays.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002001 */
2002
2003/*
2004 * Clear an allocated growing array.
2005 */
2006 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002007ga_clear(garray_T *gap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002008{
2009 vim_free(gap->ga_data);
2010 ga_init(gap);
2011}
2012
2013/*
2014 * Clear a growing array that contains a list of strings.
2015 */
2016 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002017ga_clear_strings(garray_T *gap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002018{
2019 int i;
2020
2021 for (i = 0; i < gap->ga_len; ++i)
2022 vim_free(((char_u **)(gap->ga_data))[i]);
2023 ga_clear(gap);
2024}
2025
2026/*
2027 * Initialize a growing array. Don't forget to set ga_itemsize and
2028 * ga_growsize! Or use ga_init2().
2029 */
2030 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002031ga_init(garray_T *gap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002032{
2033 gap->ga_data = NULL;
Bram Moolenaar86b68352004-12-27 21:59:20 +00002034 gap->ga_maxlen = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002035 gap->ga_len = 0;
2036}
2037
2038 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002039ga_init2(garray_T *gap, int itemsize, int growsize)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002040{
2041 ga_init(gap);
2042 gap->ga_itemsize = itemsize;
2043 gap->ga_growsize = growsize;
2044}
2045
2046/*
2047 * Make room in growing array "gap" for at least "n" items.
2048 * Return FAIL for failure, OK otherwise.
2049 */
2050 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002051ga_grow(garray_T *gap, int n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002052{
Bram Moolenaar7282bc32012-02-22 18:12:32 +01002053 size_t old_len;
2054 size_t new_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002055 char_u *pp;
2056
Bram Moolenaar86b68352004-12-27 21:59:20 +00002057 if (gap->ga_maxlen - gap->ga_len < n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002058 {
2059 if (n < gap->ga_growsize)
2060 n = gap->ga_growsize;
Bram Moolenaarc47ed442019-06-01 14:36:26 +02002061
2062 // A linear growth is very inefficient when the array grows big. This
2063 // is a compromise between allocating memory that won't be used and too
2064 // many copy operations. A factor of 1.5 seems reasonable.
2065 if (n < gap->ga_len / 2)
2066 n = gap->ga_len / 2;
2067
Bram Moolenaar7282bc32012-02-22 18:12:32 +01002068 new_len = gap->ga_itemsize * (gap->ga_len + n);
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002069 pp = vim_realloc(gap->ga_data, new_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002070 if (pp == NULL)
2071 return FAIL;
Bram Moolenaar7282bc32012-02-22 18:12:32 +01002072 old_len = gap->ga_itemsize * gap->ga_maxlen;
2073 vim_memset(pp + old_len, 0, new_len - old_len);
Bram Moolenaar86b68352004-12-27 21:59:20 +00002074 gap->ga_maxlen = gap->ga_len + n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002075 gap->ga_data = pp;
2076 }
2077 return OK;
2078}
2079
Bram Moolenaar113e1072019-01-20 15:30:40 +01002080#if defined(FEAT_EVAL) || defined(FEAT_SEARCHPATH) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002081/*
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02002082 * For a growing array that contains a list of strings: concatenate all the
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02002083 * strings with a separating "sep".
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02002084 * Returns NULL when out of memory.
2085 */
2086 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01002087ga_concat_strings(garray_T *gap, char *sep)
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02002088{
2089 int i;
2090 int len = 0;
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02002091 int sep_len = (int)STRLEN(sep);
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02002092 char_u *s;
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02002093 char_u *p;
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02002094
2095 for (i = 0; i < gap->ga_len; ++i)
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02002096 len += (int)STRLEN(((char_u **)(gap->ga_data))[i]) + sep_len;
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02002097
2098 s = alloc(len + 1);
2099 if (s != NULL)
2100 {
2101 *s = NUL;
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02002102 p = s;
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02002103 for (i = 0; i < gap->ga_len; ++i)
2104 {
Bram Moolenaar1b1063a2014-05-07 18:35:30 +02002105 if (p != s)
2106 {
2107 STRCPY(p, sep);
2108 p += sep_len;
2109 }
2110 STRCPY(p, ((char_u **)(gap->ga_data))[i]);
2111 p += STRLEN(p);
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02002112 }
2113 }
2114 return s;
2115}
Bram Moolenaar113e1072019-01-20 15:30:40 +01002116#endif
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02002117
Bram Moolenaar5a66dfb2017-03-01 20:40:39 +01002118#if defined(FEAT_VIMINFO) || defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaarb20e3342016-01-18 23:29:01 +01002119/*
2120 * Make a copy of string "p" and add it to "gap".
2121 * When out of memory nothing changes.
2122 */
2123 void
2124ga_add_string(garray_T *gap, char_u *p)
2125{
2126 char_u *cp = vim_strsave(p);
2127
2128 if (cp != NULL)
2129 {
2130 if (ga_grow(gap, 1) == OK)
2131 ((char_u **)(gap->ga_data))[gap->ga_len++] = cp;
2132 else
2133 vim_free(cp);
2134 }
2135}
2136#endif
2137
Bram Moolenaar80a7dcf2010-08-04 17:07:20 +02002138/*
Bram Moolenaar29ddebe2019-01-26 17:28:26 +01002139 * Concatenate a string to a growarray which contains bytes.
Bram Moolenaar43345542015-11-29 17:35:35 +01002140 * When "s" is NULL does not do anything.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002141 * Note: Does NOT copy the NUL at the end!
2142 */
2143 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002144ga_concat(garray_T *gap, char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002145{
Bram Moolenaar43345542015-11-29 17:35:35 +01002146 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002147
Bram Moolenaar478af672017-04-10 22:22:42 +02002148 if (s == NULL || *s == NUL)
Bram Moolenaar43345542015-11-29 17:35:35 +01002149 return;
2150 len = (int)STRLEN(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002151 if (ga_grow(gap, len) == OK)
2152 {
2153 mch_memmove((char *)gap->ga_data + gap->ga_len, s, (size_t)len);
2154 gap->ga_len += len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002155 }
2156}
2157
2158/*
2159 * Append one byte to a growarray which contains bytes.
2160 */
2161 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002162ga_append(garray_T *gap, int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002163{
2164 if (ga_grow(gap, 1) == OK)
2165 {
2166 *((char *)gap->ga_data + gap->ga_len) = c;
2167 ++gap->ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002168 }
2169}
2170
Bram Moolenaar4f974752019-02-17 17:44:42 +01002171#if (defined(UNIX) && !defined(USE_SYSTEM)) || defined(MSWIN) \
Bram Moolenaar597a4222014-06-25 14:39:50 +02002172 || defined(PROTO)
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02002173/*
2174 * Append the text in "gap" below the cursor line and clear "gap".
2175 */
2176 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01002177append_ga_line(garray_T *gap)
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02002178{
2179 /* Remove trailing CR. */
2180 if (gap->ga_len > 0
2181 && !curbuf->b_p_bin
2182 && ((char_u *)gap->ga_data)[gap->ga_len - 1] == CAR)
2183 --gap->ga_len;
2184 ga_append(gap, NUL);
2185 ml_append(curwin->w_cursor.lnum++, gap->ga_data, 0, FALSE);
2186 gap->ga_len = 0;
2187}
2188#endif
2189
Bram Moolenaar071d4272004-06-13 20:20:40 +00002190/************************************************************************
2191 * functions that use lookup tables for various things, generally to do with
2192 * special key codes.
2193 */
2194
2195/*
2196 * Some useful tables.
2197 */
2198
2199static struct modmasktable
2200{
2201 short mod_mask; /* Bit-mask for particular key modifier */
2202 short mod_flag; /* Bit(s) for particular key modifier */
2203 char_u name; /* Single letter name of modifier */
2204} mod_mask_table[] =
2205{
2206 {MOD_MASK_ALT, MOD_MASK_ALT, (char_u)'M'},
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002207 {MOD_MASK_META, MOD_MASK_META, (char_u)'T'},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002208 {MOD_MASK_CTRL, MOD_MASK_CTRL, (char_u)'C'},
2209 {MOD_MASK_SHIFT, MOD_MASK_SHIFT, (char_u)'S'},
2210 {MOD_MASK_MULTI_CLICK, MOD_MASK_2CLICK, (char_u)'2'},
2211 {MOD_MASK_MULTI_CLICK, MOD_MASK_3CLICK, (char_u)'3'},
2212 {MOD_MASK_MULTI_CLICK, MOD_MASK_4CLICK, (char_u)'4'},
Bram Moolenaard0573012017-10-28 21:11:06 +02002213#ifdef MACOS_X
Bram Moolenaar071d4272004-06-13 20:20:40 +00002214 {MOD_MASK_CMD, MOD_MASK_CMD, (char_u)'D'},
2215#endif
2216 /* 'A' must be the last one */
2217 {MOD_MASK_ALT, MOD_MASK_ALT, (char_u)'A'},
2218 {0, 0, NUL}
Bram Moolenaar423977d2017-01-22 15:05:12 +01002219 /* NOTE: when adding an entry, update MAX_KEY_NAME_LEN! */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002220};
2221
2222/*
2223 * Shifted key terminal codes and their unshifted equivalent.
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00002224 * Don't add mouse codes here, they are handled separately!
Bram Moolenaar071d4272004-06-13 20:20:40 +00002225 */
2226#define MOD_KEYS_ENTRY_SIZE 5
2227
2228static char_u modifier_keys_table[] =
2229{
2230/* mod mask with modifier without modifier */
2231 MOD_MASK_SHIFT, '&', '9', '@', '1', /* begin */
2232 MOD_MASK_SHIFT, '&', '0', '@', '2', /* cancel */
2233 MOD_MASK_SHIFT, '*', '1', '@', '4', /* command */
2234 MOD_MASK_SHIFT, '*', '2', '@', '5', /* copy */
2235 MOD_MASK_SHIFT, '*', '3', '@', '6', /* create */
2236 MOD_MASK_SHIFT, '*', '4', 'k', 'D', /* delete char */
2237 MOD_MASK_SHIFT, '*', '5', 'k', 'L', /* delete line */
2238 MOD_MASK_SHIFT, '*', '7', '@', '7', /* end */
2239 MOD_MASK_CTRL, KS_EXTRA, (int)KE_C_END, '@', '7', /* end */
2240 MOD_MASK_SHIFT, '*', '9', '@', '9', /* exit */
2241 MOD_MASK_SHIFT, '*', '0', '@', '0', /* find */
2242 MOD_MASK_SHIFT, '#', '1', '%', '1', /* help */
2243 MOD_MASK_SHIFT, '#', '2', 'k', 'h', /* home */
2244 MOD_MASK_CTRL, KS_EXTRA, (int)KE_C_HOME, 'k', 'h', /* home */
2245 MOD_MASK_SHIFT, '#', '3', 'k', 'I', /* insert */
2246 MOD_MASK_SHIFT, '#', '4', 'k', 'l', /* left arrow */
2247 MOD_MASK_CTRL, KS_EXTRA, (int)KE_C_LEFT, 'k', 'l', /* left arrow */
2248 MOD_MASK_SHIFT, '%', 'a', '%', '3', /* message */
2249 MOD_MASK_SHIFT, '%', 'b', '%', '4', /* move */
2250 MOD_MASK_SHIFT, '%', 'c', '%', '5', /* next */
2251 MOD_MASK_SHIFT, '%', 'd', '%', '7', /* options */
2252 MOD_MASK_SHIFT, '%', 'e', '%', '8', /* previous */
2253 MOD_MASK_SHIFT, '%', 'f', '%', '9', /* print */
2254 MOD_MASK_SHIFT, '%', 'g', '%', '0', /* redo */
2255 MOD_MASK_SHIFT, '%', 'h', '&', '3', /* replace */
2256 MOD_MASK_SHIFT, '%', 'i', 'k', 'r', /* right arr. */
2257 MOD_MASK_CTRL, KS_EXTRA, (int)KE_C_RIGHT, 'k', 'r', /* right arr. */
2258 MOD_MASK_SHIFT, '%', 'j', '&', '5', /* resume */
2259 MOD_MASK_SHIFT, '!', '1', '&', '6', /* save */
2260 MOD_MASK_SHIFT, '!', '2', '&', '7', /* suspend */
2261 MOD_MASK_SHIFT, '!', '3', '&', '8', /* undo */
2262 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_UP, 'k', 'u', /* up arrow */
2263 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_DOWN, 'k', 'd', /* down arrow */
2264
2265 /* vt100 F1 */
2266 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_XF1, KS_EXTRA, (int)KE_XF1,
2267 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_XF2, KS_EXTRA, (int)KE_XF2,
2268 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_XF3, KS_EXTRA, (int)KE_XF3,
2269 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_XF4, KS_EXTRA, (int)KE_XF4,
2270
2271 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F1, 'k', '1', /* F1 */
2272 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F2, 'k', '2',
2273 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F3, 'k', '3',
2274 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F4, 'k', '4',
2275 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F5, 'k', '5',
2276 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F6, 'k', '6',
2277 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F7, 'k', '7',
2278 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F8, 'k', '8',
2279 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F9, 'k', '9',
2280 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F10, 'k', ';', /* F10 */
2281
2282 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F11, 'F', '1',
2283 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F12, 'F', '2',
2284 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F13, 'F', '3',
2285 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F14, 'F', '4',
2286 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F15, 'F', '5',
2287 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F16, 'F', '6',
2288 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F17, 'F', '7',
2289 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F18, 'F', '8',
2290 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F19, 'F', '9',
2291 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F20, 'F', 'A',
2292
2293 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F21, 'F', 'B',
2294 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F22, 'F', 'C',
2295 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F23, 'F', 'D',
2296 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F24, 'F', 'E',
2297 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F25, 'F', 'F',
2298 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F26, 'F', 'G',
2299 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F27, 'F', 'H',
2300 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F28, 'F', 'I',
2301 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F29, 'F', 'J',
2302 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F30, 'F', 'K',
2303
2304 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F31, 'F', 'L',
2305 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F32, 'F', 'M',
2306 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F33, 'F', 'N',
2307 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F34, 'F', 'O',
2308 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F35, 'F', 'P',
2309 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F36, 'F', 'Q',
2310 MOD_MASK_SHIFT, KS_EXTRA, (int)KE_S_F37, 'F', 'R',
2311
2312 /* TAB pseudo code*/
2313 MOD_MASK_SHIFT, 'k', 'B', KS_EXTRA, (int)KE_TAB,
2314
2315 NUL
2316};
2317
2318static struct key_name_entry
2319{
2320 int key; /* Special key code or ascii value */
2321 char_u *name; /* Name of key */
2322} key_names_table[] =
2323{
2324 {' ', (char_u *)"Space"},
2325 {TAB, (char_u *)"Tab"},
2326 {K_TAB, (char_u *)"Tab"},
2327 {NL, (char_u *)"NL"},
2328 {NL, (char_u *)"NewLine"}, /* Alternative name */
2329 {NL, (char_u *)"LineFeed"}, /* Alternative name */
2330 {NL, (char_u *)"LF"}, /* Alternative name */
2331 {CAR, (char_u *)"CR"},
2332 {CAR, (char_u *)"Return"}, /* Alternative name */
2333 {CAR, (char_u *)"Enter"}, /* Alternative name */
2334 {K_BS, (char_u *)"BS"},
2335 {K_BS, (char_u *)"BackSpace"}, /* Alternative name */
2336 {ESC, (char_u *)"Esc"},
2337 {CSI, (char_u *)"CSI"},
2338 {K_CSI, (char_u *)"xCSI"},
2339 {'|', (char_u *)"Bar"},
2340 {'\\', (char_u *)"Bslash"},
2341 {K_DEL, (char_u *)"Del"},
2342 {K_DEL, (char_u *)"Delete"}, /* Alternative name */
2343 {K_KDEL, (char_u *)"kDel"},
2344 {K_UP, (char_u *)"Up"},
2345 {K_DOWN, (char_u *)"Down"},
2346 {K_LEFT, (char_u *)"Left"},
2347 {K_RIGHT, (char_u *)"Right"},
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002348 {K_XUP, (char_u *)"xUp"},
2349 {K_XDOWN, (char_u *)"xDown"},
2350 {K_XLEFT, (char_u *)"xLeft"},
2351 {K_XRIGHT, (char_u *)"xRight"},
Bram Moolenaarec2da362017-01-21 20:04:22 +01002352 {K_PS, (char_u *)"PasteStart"},
2353 {K_PE, (char_u *)"PasteEnd"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002354
2355 {K_F1, (char_u *)"F1"},
2356 {K_F2, (char_u *)"F2"},
2357 {K_F3, (char_u *)"F3"},
2358 {K_F4, (char_u *)"F4"},
2359 {K_F5, (char_u *)"F5"},
2360 {K_F6, (char_u *)"F6"},
2361 {K_F7, (char_u *)"F7"},
2362 {K_F8, (char_u *)"F8"},
2363 {K_F9, (char_u *)"F9"},
2364 {K_F10, (char_u *)"F10"},
2365
2366 {K_F11, (char_u *)"F11"},
2367 {K_F12, (char_u *)"F12"},
2368 {K_F13, (char_u *)"F13"},
2369 {K_F14, (char_u *)"F14"},
2370 {K_F15, (char_u *)"F15"},
2371 {K_F16, (char_u *)"F16"},
2372 {K_F17, (char_u *)"F17"},
2373 {K_F18, (char_u *)"F18"},
2374 {K_F19, (char_u *)"F19"},
2375 {K_F20, (char_u *)"F20"},
2376
2377 {K_F21, (char_u *)"F21"},
2378 {K_F22, (char_u *)"F22"},
2379 {K_F23, (char_u *)"F23"},
2380 {K_F24, (char_u *)"F24"},
2381 {K_F25, (char_u *)"F25"},
2382 {K_F26, (char_u *)"F26"},
2383 {K_F27, (char_u *)"F27"},
2384 {K_F28, (char_u *)"F28"},
2385 {K_F29, (char_u *)"F29"},
2386 {K_F30, (char_u *)"F30"},
2387
2388 {K_F31, (char_u *)"F31"},
2389 {K_F32, (char_u *)"F32"},
2390 {K_F33, (char_u *)"F33"},
2391 {K_F34, (char_u *)"F34"},
2392 {K_F35, (char_u *)"F35"},
2393 {K_F36, (char_u *)"F36"},
2394 {K_F37, (char_u *)"F37"},
2395
2396 {K_XF1, (char_u *)"xF1"},
2397 {K_XF2, (char_u *)"xF2"},
2398 {K_XF3, (char_u *)"xF3"},
2399 {K_XF4, (char_u *)"xF4"},
2400
2401 {K_HELP, (char_u *)"Help"},
2402 {K_UNDO, (char_u *)"Undo"},
2403 {K_INS, (char_u *)"Insert"},
2404 {K_INS, (char_u *)"Ins"}, /* Alternative name */
2405 {K_KINS, (char_u *)"kInsert"},
2406 {K_HOME, (char_u *)"Home"},
2407 {K_KHOME, (char_u *)"kHome"},
2408 {K_XHOME, (char_u *)"xHome"},
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002409 {K_ZHOME, (char_u *)"zHome"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002410 {K_END, (char_u *)"End"},
2411 {K_KEND, (char_u *)"kEnd"},
2412 {K_XEND, (char_u *)"xEnd"},
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002413 {K_ZEND, (char_u *)"zEnd"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002414 {K_PAGEUP, (char_u *)"PageUp"},
2415 {K_PAGEDOWN, (char_u *)"PageDown"},
2416 {K_KPAGEUP, (char_u *)"kPageUp"},
2417 {K_KPAGEDOWN, (char_u *)"kPageDown"},
2418
2419 {K_KPLUS, (char_u *)"kPlus"},
2420 {K_KMINUS, (char_u *)"kMinus"},
2421 {K_KDIVIDE, (char_u *)"kDivide"},
2422 {K_KMULTIPLY, (char_u *)"kMultiply"},
2423 {K_KENTER, (char_u *)"kEnter"},
2424 {K_KPOINT, (char_u *)"kPoint"},
2425
2426 {K_K0, (char_u *)"k0"},
2427 {K_K1, (char_u *)"k1"},
2428 {K_K2, (char_u *)"k2"},
2429 {K_K3, (char_u *)"k3"},
2430 {K_K4, (char_u *)"k4"},
2431 {K_K5, (char_u *)"k5"},
2432 {K_K6, (char_u *)"k6"},
2433 {K_K7, (char_u *)"k7"},
2434 {K_K8, (char_u *)"k8"},
2435 {K_K9, (char_u *)"k9"},
2436
2437 {'<', (char_u *)"lt"},
2438
2439 {K_MOUSE, (char_u *)"Mouse"},
Bram Moolenaar5af7d712012-01-20 17:15:51 +01002440#ifdef FEAT_MOUSE_NET
Bram Moolenaar071d4272004-06-13 20:20:40 +00002441 {K_NETTERM_MOUSE, (char_u *)"NetMouse"},
Bram Moolenaar5af7d712012-01-20 17:15:51 +01002442#endif
2443#ifdef FEAT_MOUSE_DEC
Bram Moolenaar071d4272004-06-13 20:20:40 +00002444 {K_DEC_MOUSE, (char_u *)"DecMouse"},
Bram Moolenaar5af7d712012-01-20 17:15:51 +01002445#endif
2446#ifdef FEAT_MOUSE_JSB
Bram Moolenaar071d4272004-06-13 20:20:40 +00002447 {K_JSBTERM_MOUSE, (char_u *)"JsbMouse"},
Bram Moolenaar5af7d712012-01-20 17:15:51 +01002448#endif
2449#ifdef FEAT_MOUSE_PTERM
Bram Moolenaar071d4272004-06-13 20:20:40 +00002450 {K_PTERM_MOUSE, (char_u *)"PtermMouse"},
Bram Moolenaar5af7d712012-01-20 17:15:51 +01002451#endif
2452#ifdef FEAT_MOUSE_URXVT
2453 {K_URXVT_MOUSE, (char_u *)"UrxvtMouse"},
2454#endif
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02002455 {K_SGR_MOUSE, (char_u *)"SgrMouse"},
Bram Moolenaara529ce02017-06-22 22:37:57 +02002456 {K_SGR_MOUSERELEASE, (char_u *)"SgrMouseRelelase"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002457 {K_LEFTMOUSE, (char_u *)"LeftMouse"},
2458 {K_LEFTMOUSE_NM, (char_u *)"LeftMouseNM"},
2459 {K_LEFTDRAG, (char_u *)"LeftDrag"},
2460 {K_LEFTRELEASE, (char_u *)"LeftRelease"},
2461 {K_LEFTRELEASE_NM, (char_u *)"LeftReleaseNM"},
Bram Moolenaar51b0f372017-11-18 18:52:04 +01002462 {K_MOUSEMOVE, (char_u *)"MouseMove"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002463 {K_MIDDLEMOUSE, (char_u *)"MiddleMouse"},
2464 {K_MIDDLEDRAG, (char_u *)"MiddleDrag"},
2465 {K_MIDDLERELEASE, (char_u *)"MiddleRelease"},
2466 {K_RIGHTMOUSE, (char_u *)"RightMouse"},
2467 {K_RIGHTDRAG, (char_u *)"RightDrag"},
2468 {K_RIGHTRELEASE, (char_u *)"RightRelease"},
Bram Moolenaar8d9b40e2010-07-25 15:49:07 +02002469 {K_MOUSEDOWN, (char_u *)"ScrollWheelUp"},
2470 {K_MOUSEUP, (char_u *)"ScrollWheelDown"},
2471 {K_MOUSELEFT, (char_u *)"ScrollWheelRight"},
2472 {K_MOUSERIGHT, (char_u *)"ScrollWheelLeft"},
2473 {K_MOUSEDOWN, (char_u *)"MouseDown"}, /* OBSOLETE: Use */
2474 {K_MOUSEUP, (char_u *)"MouseUp"}, /* ScrollWheelXXX instead */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002475 {K_X1MOUSE, (char_u *)"X1Mouse"},
2476 {K_X1DRAG, (char_u *)"X1Drag"},
2477 {K_X1RELEASE, (char_u *)"X1Release"},
2478 {K_X2MOUSE, (char_u *)"X2Mouse"},
2479 {K_X2DRAG, (char_u *)"X2Drag"},
2480 {K_X2RELEASE, (char_u *)"X2Release"},
2481 {K_DROP, (char_u *)"Drop"},
2482 {K_ZERO, (char_u *)"Nul"},
2483#ifdef FEAT_EVAL
2484 {K_SNR, (char_u *)"SNR"},
2485#endif
2486 {K_PLUG, (char_u *)"Plug"},
Bram Moolenaar1db60c42014-09-23 16:49:46 +02002487 {K_CURSORHOLD, (char_u *)"CursorHold"},
Bram Moolenaar2f106582019-05-08 21:59:25 +02002488 {K_IGNORE, (char_u *)"Ignore"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002489 {0, NULL}
Bram Moolenaar423977d2017-01-22 15:05:12 +01002490 /* NOTE: When adding a long name update MAX_KEY_NAME_LEN. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002491};
2492
2493#define KEY_NAMES_TABLE_LEN (sizeof(key_names_table) / sizeof(struct key_name_entry))
2494
2495#ifdef FEAT_MOUSE
2496static struct mousetable
2497{
2498 int pseudo_code; /* Code for pseudo mouse event */
2499 int button; /* Which mouse button is it? */
2500 int is_click; /* Is it a mouse button click event? */
2501 int is_drag; /* Is it a mouse drag event? */
2502} mouse_table[] =
2503{
2504 {(int)KE_LEFTMOUSE, MOUSE_LEFT, TRUE, FALSE},
2505#ifdef FEAT_GUI
2506 {(int)KE_LEFTMOUSE_NM, MOUSE_LEFT, TRUE, FALSE},
2507#endif
2508 {(int)KE_LEFTDRAG, MOUSE_LEFT, FALSE, TRUE},
2509 {(int)KE_LEFTRELEASE, MOUSE_LEFT, FALSE, FALSE},
2510#ifdef FEAT_GUI
2511 {(int)KE_LEFTRELEASE_NM, MOUSE_LEFT, FALSE, FALSE},
2512#endif
2513 {(int)KE_MIDDLEMOUSE, MOUSE_MIDDLE, TRUE, FALSE},
2514 {(int)KE_MIDDLEDRAG, MOUSE_MIDDLE, FALSE, TRUE},
2515 {(int)KE_MIDDLERELEASE, MOUSE_MIDDLE, FALSE, FALSE},
2516 {(int)KE_RIGHTMOUSE, MOUSE_RIGHT, TRUE, FALSE},
2517 {(int)KE_RIGHTDRAG, MOUSE_RIGHT, FALSE, TRUE},
2518 {(int)KE_RIGHTRELEASE, MOUSE_RIGHT, FALSE, FALSE},
2519 {(int)KE_X1MOUSE, MOUSE_X1, TRUE, FALSE},
2520 {(int)KE_X1DRAG, MOUSE_X1, FALSE, TRUE},
2521 {(int)KE_X1RELEASE, MOUSE_X1, FALSE, FALSE},
2522 {(int)KE_X2MOUSE, MOUSE_X2, TRUE, FALSE},
2523 {(int)KE_X2DRAG, MOUSE_X2, FALSE, TRUE},
2524 {(int)KE_X2RELEASE, MOUSE_X2, FALSE, FALSE},
2525 /* DRAG without CLICK */
Bram Moolenaar51b0f372017-11-18 18:52:04 +01002526 {(int)KE_MOUSEMOVE, MOUSE_RELEASE, FALSE, TRUE},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002527 /* RELEASE without CLICK */
2528 {(int)KE_IGNORE, MOUSE_RELEASE, FALSE, FALSE},
2529 {0, 0, 0, 0},
2530};
2531#endif /* FEAT_MOUSE */
2532
2533/*
2534 * Return the modifier mask bit (MOD_MASK_*) which corresponds to the given
2535 * modifier name ('S' for Shift, 'C' for Ctrl etc).
2536 */
2537 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002538name_to_mod_mask(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002539{
2540 int i;
2541
2542 c = TOUPPER_ASC(c);
2543 for (i = 0; mod_mask_table[i].mod_mask != 0; i++)
2544 if (c == mod_mask_table[i].name)
2545 return mod_mask_table[i].mod_flag;
2546 return 0;
2547}
2548
Bram Moolenaar071d4272004-06-13 20:20:40 +00002549/*
2550 * Check if if there is a special key code for "key" that includes the
2551 * modifiers specified.
2552 */
2553 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002554simplify_key(int key, int *modifiers)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002555{
2556 int i;
2557 int key0;
2558 int key1;
2559
2560 if (*modifiers & (MOD_MASK_SHIFT | MOD_MASK_CTRL | MOD_MASK_ALT))
2561 {
2562 /* TAB is a special case */
2563 if (key == TAB && (*modifiers & MOD_MASK_SHIFT))
2564 {
2565 *modifiers &= ~MOD_MASK_SHIFT;
2566 return K_S_TAB;
2567 }
2568 key0 = KEY2TERMCAP0(key);
2569 key1 = KEY2TERMCAP1(key);
2570 for (i = 0; modifier_keys_table[i] != NUL; i += MOD_KEYS_ENTRY_SIZE)
2571 if (key0 == modifier_keys_table[i + 3]
2572 && key1 == modifier_keys_table[i + 4]
2573 && (*modifiers & modifier_keys_table[i]))
2574 {
2575 *modifiers &= ~modifier_keys_table[i];
2576 return TERMCAP2KEY(modifier_keys_table[i + 1],
2577 modifier_keys_table[i + 2]);
2578 }
2579 }
2580 return key;
2581}
2582
2583/*
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002584 * Change <xHome> to <Home>, <xUp> to <Up>, etc.
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002585 */
2586 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002587handle_x_keys(int key)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002588{
2589 switch (key)
2590 {
2591 case K_XUP: return K_UP;
2592 case K_XDOWN: return K_DOWN;
2593 case K_XLEFT: return K_LEFT;
2594 case K_XRIGHT: return K_RIGHT;
2595 case K_XHOME: return K_HOME;
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002596 case K_ZHOME: return K_HOME;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002597 case K_XEND: return K_END;
Bram Moolenaar68b76a62005-03-25 21:53:48 +00002598 case K_ZEND: return K_END;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002599 case K_XF1: return K_F1;
2600 case K_XF2: return K_F2;
2601 case K_XF3: return K_F3;
2602 case K_XF4: return K_F4;
2603 case K_S_XF1: return K_S_F1;
2604 case K_S_XF2: return K_S_F2;
2605 case K_S_XF3: return K_S_F3;
2606 case K_S_XF4: return K_S_F4;
2607 }
2608 return key;
2609}
2610
2611/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002612 * Return a string which contains the name of the given key when the given
2613 * modifiers are down.
2614 */
2615 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01002616get_special_key_name(int c, int modifiers)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002617{
2618 static char_u string[MAX_KEY_NAME_LEN + 1];
2619
2620 int i, idx;
2621 int table_idx;
2622 char_u *s;
2623
2624 string[0] = '<';
2625 idx = 1;
2626
2627 /* Key that stands for a normal character. */
2628 if (IS_SPECIAL(c) && KEY2TERMCAP0(c) == KS_KEY)
2629 c = KEY2TERMCAP1(c);
2630
2631 /*
2632 * Translate shifted special keys into unshifted keys and set modifier.
2633 * Same for CTRL and ALT modifiers.
2634 */
2635 if (IS_SPECIAL(c))
2636 {
2637 for (i = 0; modifier_keys_table[i] != 0; i += MOD_KEYS_ENTRY_SIZE)
2638 if ( KEY2TERMCAP0(c) == (int)modifier_keys_table[i + 1]
2639 && (int)KEY2TERMCAP1(c) == (int)modifier_keys_table[i + 2])
2640 {
2641 modifiers |= modifier_keys_table[i];
2642 c = TERMCAP2KEY(modifier_keys_table[i + 3],
2643 modifier_keys_table[i + 4]);
2644 break;
2645 }
2646 }
2647
2648 /* try to find the key in the special key table */
2649 table_idx = find_special_key_in_table(c);
2650
2651 /*
2652 * When not a known special key, and not a printable character, try to
2653 * extract modifiers.
2654 */
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01002655 if (c > 0 && (*mb_char2len)(c) == 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002656 {
2657 if (table_idx < 0
2658 && (!vim_isprintc(c) || (c & 0x7f) == ' ')
2659 && (c & 0x80))
2660 {
2661 c &= 0x7f;
2662 modifiers |= MOD_MASK_ALT;
2663 /* try again, to find the un-alted key in the special key table */
2664 table_idx = find_special_key_in_table(c);
2665 }
2666 if (table_idx < 0 && !vim_isprintc(c) && c < ' ')
2667 {
2668#ifdef EBCDIC
2669 c = CtrlChar(c);
2670#else
2671 c += '@';
2672#endif
2673 modifiers |= MOD_MASK_CTRL;
2674 }
2675 }
2676
2677 /* translate the modifier into a string */
2678 for (i = 0; mod_mask_table[i].name != 'A'; i++)
2679 if ((modifiers & mod_mask_table[i].mod_mask)
2680 == mod_mask_table[i].mod_flag)
2681 {
2682 string[idx++] = mod_mask_table[i].name;
2683 string[idx++] = (char_u)'-';
2684 }
2685
2686 if (table_idx < 0) /* unknown special key, may output t_xx */
2687 {
2688 if (IS_SPECIAL(c))
2689 {
2690 string[idx++] = 't';
2691 string[idx++] = '_';
2692 string[idx++] = KEY2TERMCAP0(c);
2693 string[idx++] = KEY2TERMCAP1(c);
2694 }
2695 /* Not a special key, only modifiers, output directly */
2696 else
2697 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002698 if (has_mbyte && (*mb_char2len)(c) > 1)
2699 idx += (*mb_char2bytes)(c, string + idx);
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01002700 else if (vim_isprintc(c))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002701 string[idx++] = c;
2702 else
2703 {
2704 s = transchar(c);
2705 while (*s)
2706 string[idx++] = *s++;
2707 }
2708 }
2709 }
2710 else /* use name of special key */
2711 {
Bram Moolenaar423977d2017-01-22 15:05:12 +01002712 size_t len = STRLEN(key_names_table[table_idx].name);
2713
2714 if (len + idx + 2 <= MAX_KEY_NAME_LEN)
2715 {
2716 STRCPY(string + idx, key_names_table[table_idx].name);
2717 idx += (int)len;
2718 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002719 }
2720 string[idx++] = '>';
2721 string[idx] = NUL;
2722 return string;
2723}
2724
2725/*
2726 * Try translating a <> name at (*srcp)[] to dst[].
2727 * Return the number of characters added to dst[], zero for no match.
2728 * If there is a match, srcp is advanced to after the <> name.
2729 * dst[] must be big enough to hold the result (up to six characters)!
2730 */
2731 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002732trans_special(
2733 char_u **srcp,
2734 char_u *dst,
Bram Moolenaarbf0eff02019-06-01 17:13:36 +02002735 int keycode, // prefer key code, e.g. K_DEL instead of DEL
2736 int in_string) // TRUE when inside a double quoted string
Bram Moolenaar071d4272004-06-13 20:20:40 +00002737{
2738 int modifiers = 0;
2739 int key;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002740
Bram Moolenaar35a4cfa2016-08-14 16:07:48 +02002741 key = find_special_key(srcp, &modifiers, keycode, FALSE, in_string);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002742 if (key == 0)
2743 return 0;
2744
Bram Moolenaarbf0eff02019-06-01 17:13:36 +02002745 return special_to_buf(key, modifiers, keycode, dst);
2746}
2747
2748/*
2749 * Put the character sequence for "key" with "modifiers" into "dst" and return
2750 * the resulting length.
2751 * When "keycode" is TRUE prefer key code, e.g. K_DEL instead of DEL.
2752 * The sequence is not NUL terminated.
2753 * This is how characters in a string are encoded.
2754 */
2755 int
2756special_to_buf(int key, int modifiers, int keycode, char_u *dst)
2757{
2758 int dlen = 0;
2759
Bram Moolenaar071d4272004-06-13 20:20:40 +00002760 /* Put the appropriate modifier in a string */
2761 if (modifiers != 0)
2762 {
2763 dst[dlen++] = K_SPECIAL;
2764 dst[dlen++] = KS_MODIFIER;
2765 dst[dlen++] = modifiers;
2766 }
2767
2768 if (IS_SPECIAL(key))
2769 {
2770 dst[dlen++] = K_SPECIAL;
2771 dst[dlen++] = KEY2TERMCAP0(key);
2772 dst[dlen++] = KEY2TERMCAP1(key);
2773 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002774 else if (has_mbyte && !keycode)
2775 dlen += (*mb_char2bytes)(key, dst + dlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002776 else if (keycode)
2777 dlen = (int)(add_char2buf(key, dst + dlen) - dst);
2778 else
2779 dst[dlen++] = key;
2780
2781 return dlen;
2782}
2783
2784/*
2785 * Try translating a <> name at (*srcp)[], return the key and modifiers.
2786 * srcp is advanced to after the <> name.
2787 * returns 0 if there is no match.
2788 */
2789 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002790find_special_key(
2791 char_u **srcp,
2792 int *modp,
2793 int keycode, /* prefer key code, e.g. K_DEL instead of DEL */
Bram Moolenaar35a4cfa2016-08-14 16:07:48 +02002794 int keep_x_key, /* don't translate xHome to Home key */
2795 int in_string) /* TRUE in string, double quote is escaped */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002796{
2797 char_u *last_dash;
2798 char_u *end_of_name;
2799 char_u *src;
2800 char_u *bp;
2801 int modifiers;
2802 int bit;
2803 int key;
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02002804 uvarnumber_T n;
Bram Moolenaarb8bf5412011-08-17 20:33:22 +02002805 int l;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002806
2807 src = *srcp;
2808 if (src[0] != '<')
2809 return 0;
2810
2811 /* Find end of modifier list */
2812 last_dash = src;
2813 for (bp = src + 1; *bp == '-' || vim_isIDc(*bp); bp++)
2814 {
2815 if (*bp == '-')
2816 {
2817 last_dash = bp;
Bram Moolenaarb8bf5412011-08-17 20:33:22 +02002818 if (bp[1] != NUL)
2819 {
Bram Moolenaarb8bf5412011-08-17 20:33:22 +02002820 if (has_mbyte)
2821 l = mb_ptr2len(bp + 1);
2822 else
Bram Moolenaarb8bf5412011-08-17 20:33:22 +02002823 l = 1;
Bram Moolenaar35a4cfa2016-08-14 16:07:48 +02002824 /* Anything accepted, like <C-?>.
2825 * <C-"> or <M-"> are not special in strings as " is
2826 * the string delimiter. With a backslash it works: <M-\"> */
2827 if (!(in_string && bp[1] == '"') && bp[2] == '>')
Bram Moolenaar1d90a5a2016-07-01 11:59:47 +02002828 bp += l;
Bram Moolenaar35a4cfa2016-08-14 16:07:48 +02002829 else if (in_string && bp[1] == '\\' && bp[2] == '"'
2830 && bp[3] == '>')
2831 bp += 2;
Bram Moolenaarb8bf5412011-08-17 20:33:22 +02002832 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002833 }
2834 if (bp[0] == 't' && bp[1] == '_' && bp[2] && bp[3])
2835 bp += 3; /* skip t_xx, xx may be '-' or '>' */
Bram Moolenaar792826c2011-08-19 22:29:02 +02002836 else if (STRNICMP(bp, "char-", 5) == 0)
2837 {
Bram Moolenaar16e9b852019-05-19 19:59:35 +02002838 vim_str2nr(bp + 5, NULL, &l, STR2NR_ALL, NULL, NULL, 0, TRUE);
2839 if (l == 0)
2840 {
2841 emsg(_(e_invarg));
2842 return 0;
2843 }
Bram Moolenaar792826c2011-08-19 22:29:02 +02002844 bp += l + 5;
2845 break;
2846 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002847 }
2848
2849 if (*bp == '>') /* found matching '>' */
2850 {
2851 end_of_name = bp + 1;
2852
Bram Moolenaar071d4272004-06-13 20:20:40 +00002853 /* Which modifiers are given? */
2854 modifiers = 0x0;
2855 for (bp = src + 1; bp < last_dash; bp++)
2856 {
2857 if (*bp != '-')
2858 {
2859 bit = name_to_mod_mask(*bp);
2860 if (bit == 0x0)
2861 break; /* Illegal modifier name */
2862 modifiers |= bit;
2863 }
2864 }
2865
2866 /*
2867 * Legal modifier name.
2868 */
2869 if (bp >= last_dash)
2870 {
Bram Moolenaarb8bf5412011-08-17 20:33:22 +02002871 if (STRNICMP(last_dash + 1, "char-", 5) == 0
2872 && VIM_ISDIGIT(last_dash[6]))
2873 {
2874 /* <Char-123> or <Char-033> or <Char-0x33> */
Bram Moolenaar16e9b852019-05-19 19:59:35 +02002875 vim_str2nr(last_dash + 6, NULL, &l, STR2NR_ALL, NULL, &n, 0, TRUE);
2876 if (l == 0)
2877 {
2878 emsg(_(e_invarg));
2879 return 0;
2880 }
Bram Moolenaar792826c2011-08-19 22:29:02 +02002881 key = (int)n;
Bram Moolenaarb8bf5412011-08-17 20:33:22 +02002882 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002883 else
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002884 {
Bram Moolenaar35a4cfa2016-08-14 16:07:48 +02002885 int off = 1;
2886
2887 /* Modifier with single letter, or special key name. */
2888 if (in_string && last_dash[1] == '\\' && last_dash[2] == '"')
2889 off = 2;
Bram Moolenaar792826c2011-08-19 22:29:02 +02002890 if (has_mbyte)
Bram Moolenaar35a4cfa2016-08-14 16:07:48 +02002891 l = mb_ptr2len(last_dash + off);
Bram Moolenaar792826c2011-08-19 22:29:02 +02002892 else
Bram Moolenaar792826c2011-08-19 22:29:02 +02002893 l = 1;
Bram Moolenaar35a4cfa2016-08-14 16:07:48 +02002894 if (modifiers != 0 && last_dash[l + off] == '>')
2895 key = PTR2CHAR(last_dash + off);
Bram Moolenaar792826c2011-08-19 22:29:02 +02002896 else
2897 {
Bram Moolenaar35a4cfa2016-08-14 16:07:48 +02002898 key = get_special_key_code(last_dash + off);
Bram Moolenaar792826c2011-08-19 22:29:02 +02002899 if (!keep_x_key)
2900 key = handle_x_keys(key);
2901 }
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002902 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002903
2904 /*
2905 * get_special_key_code() may return NUL for invalid
2906 * special key name.
2907 */
2908 if (key != NUL)
2909 {
2910 /*
2911 * Only use a modifier when there is no special key code that
2912 * includes the modifier.
2913 */
2914 key = simplify_key(key, &modifiers);
2915
2916 if (!keycode)
2917 {
2918 /* don't want keycode, use single byte code */
2919 if (key == K_BS)
2920 key = BS;
2921 else if (key == K_DEL || key == K_KDEL)
2922 key = DEL;
2923 }
2924
2925 /*
2926 * Normal Key with modifier: Try to make a single byte code.
2927 */
2928 if (!IS_SPECIAL(key))
2929 key = extract_modifiers(key, &modifiers);
2930
2931 *modp = modifiers;
2932 *srcp = end_of_name;
2933 return key;
2934 }
2935 }
2936 }
2937 return 0;
2938}
2939
2940/*
2941 * Try to include modifiers in the key.
2942 * Changes "Shift-a" to 'A', "Alt-A" to 0xc0, etc.
2943 */
2944 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002945extract_modifiers(int key, int *modp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002946{
2947 int modifiers = *modp;
2948
Bram Moolenaard0573012017-10-28 21:11:06 +02002949#ifdef MACOS_X
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02002950 /* Command-key really special, no fancynest */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002951 if (!(modifiers & MOD_MASK_CMD))
2952#endif
2953 if ((modifiers & MOD_MASK_SHIFT) && ASCII_ISALPHA(key))
2954 {
2955 key = TOUPPER_ASC(key);
2956 modifiers &= ~MOD_MASK_SHIFT;
2957 }
2958 if ((modifiers & MOD_MASK_CTRL)
2959#ifdef EBCDIC
2960 /* * TODO: EBCDIC Better use:
2961 * && (Ctrl_chr(key) || key == '?')
2962 * ??? */
2963 && strchr("?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_", key)
2964 != NULL
2965#else
2966 && ((key >= '?' && key <= '_') || ASCII_ISALPHA(key))
2967#endif
2968 )
2969 {
2970 key = Ctrl_chr(key);
2971 modifiers &= ~MOD_MASK_CTRL;
2972 /* <C-@> is <Nul> */
2973 if (key == 0)
2974 key = K_ZERO;
2975 }
Bram Moolenaard0573012017-10-28 21:11:06 +02002976#ifdef MACOS_X
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02002977 /* Command-key really special, no fancynest */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002978 if (!(modifiers & MOD_MASK_CMD))
2979#endif
2980 if ((modifiers & MOD_MASK_ALT) && key < 0x80
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01002981 && !enc_dbcs) // avoid creating a lead byte
Bram Moolenaar071d4272004-06-13 20:20:40 +00002982 {
2983 key |= 0x80;
2984 modifiers &= ~MOD_MASK_ALT; /* remove the META modifier */
2985 }
2986
2987 *modp = modifiers;
2988 return key;
2989}
2990
2991/*
2992 * Try to find key "c" in the special key table.
2993 * Return the index when found, -1 when not found.
2994 */
2995 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01002996find_special_key_in_table(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002997{
2998 int i;
2999
3000 for (i = 0; key_names_table[i].name != NULL; i++)
3001 if (c == key_names_table[i].key)
3002 break;
3003 if (key_names_table[i].name == NULL)
3004 i = -1;
3005 return i;
3006}
3007
3008/*
3009 * Find the special key with the given name (the given string does not have to
3010 * end with NUL, the name is assumed to end before the first non-idchar).
3011 * If the name starts with "t_" the next two characters are interpreted as a
3012 * termcap name.
3013 * Return the key code, or 0 if not found.
3014 */
3015 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003016get_special_key_code(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003017{
3018 char_u *table_name;
3019 char_u string[3];
3020 int i, j;
3021
3022 /*
3023 * If it's <t_xx> we get the code for xx from the termcap
3024 */
3025 if (name[0] == 't' && name[1] == '_' && name[2] != NUL && name[3] != NUL)
3026 {
3027 string[0] = name[2];
3028 string[1] = name[3];
3029 string[2] = NUL;
3030 if (add_termcap_entry(string, FALSE) == OK)
3031 return TERMCAP2KEY(name[2], name[3]);
3032 }
3033 else
3034 for (i = 0; key_names_table[i].name != NULL; i++)
3035 {
3036 table_name = key_names_table[i].name;
3037 for (j = 0; vim_isIDc(name[j]) && table_name[j] != NUL; j++)
3038 if (TOLOWER_ASC(table_name[j]) != TOLOWER_ASC(name[j]))
3039 break;
3040 if (!vim_isIDc(name[j]) && table_name[j] == NUL)
3041 return key_names_table[i].key;
3042 }
3043 return 0;
3044}
3045
Bram Moolenaar05bb9532008-07-04 09:44:11 +00003046#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003047 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01003048get_key_name(int i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003049{
Bram Moolenaare1fbddc2009-05-16 19:07:03 +00003050 if (i >= (int)KEY_NAMES_TABLE_LEN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003051 return NULL;
3052 return key_names_table[i].name;
3053}
3054#endif
3055
Bram Moolenaar05bb9532008-07-04 09:44:11 +00003056#if defined(FEAT_MOUSE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003057/*
3058 * Look up the given mouse code to return the relevant information in the other
3059 * arguments. Return which button is down or was released.
3060 */
3061 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003062get_mouse_button(int code, int *is_click, int *is_drag)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003063{
3064 int i;
3065
3066 for (i = 0; mouse_table[i].pseudo_code; i++)
3067 if (code == mouse_table[i].pseudo_code)
3068 {
3069 *is_click = mouse_table[i].is_click;
3070 *is_drag = mouse_table[i].is_drag;
3071 return mouse_table[i].button;
3072 }
3073 return 0; /* Shouldn't get here */
3074}
3075
3076/*
3077 * Return the appropriate pseudo mouse event token (KE_LEFTMOUSE etc) based on
3078 * the given information about which mouse button is down, and whether the
3079 * mouse was clicked, dragged or released.
3080 */
3081 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003082get_pseudo_mouse_code(
3083 int button, /* eg MOUSE_LEFT */
3084 int is_click,
3085 int is_drag)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003086{
3087 int i;
3088
3089 for (i = 0; mouse_table[i].pseudo_code; i++)
3090 if (button == mouse_table[i].button
3091 && is_click == mouse_table[i].is_click
3092 && is_drag == mouse_table[i].is_drag)
3093 {
3094#ifdef FEAT_GUI
Bram Moolenaarc91506a2005-04-24 22:04:21 +00003095 /* Trick: a non mappable left click and release has mouse_col -1
3096 * or added MOUSE_COLOFF. Used for 'mousefocus' in
3097 * gui_mouse_moved() */
3098 if (mouse_col < 0 || mouse_col > MOUSE_COLOFF)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003099 {
Bram Moolenaarc91506a2005-04-24 22:04:21 +00003100 if (mouse_col < 0)
3101 mouse_col = 0;
3102 else
3103 mouse_col -= MOUSE_COLOFF;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003104 if (mouse_table[i].pseudo_code == (int)KE_LEFTMOUSE)
3105 return (int)KE_LEFTMOUSE_NM;
3106 if (mouse_table[i].pseudo_code == (int)KE_LEFTRELEASE)
3107 return (int)KE_LEFTRELEASE_NM;
3108 }
3109#endif
3110 return mouse_table[i].pseudo_code;
3111 }
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00003112 return (int)KE_IGNORE; /* not recognized, ignore it */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003113}
3114#endif /* FEAT_MOUSE */
3115
3116/*
3117 * Return the current end-of-line type: EOL_DOS, EOL_UNIX or EOL_MAC.
3118 */
3119 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003120get_fileformat(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003121{
3122 int c = *buf->b_p_ff;
3123
3124 if (buf->b_p_bin || c == 'u')
3125 return EOL_UNIX;
3126 if (c == 'm')
3127 return EOL_MAC;
3128 return EOL_DOS;
3129}
3130
3131/*
3132 * Like get_fileformat(), but override 'fileformat' with "p" for "++opt=val"
3133 * argument.
3134 */
3135 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003136get_fileformat_force(
3137 buf_T *buf,
3138 exarg_T *eap) /* can be NULL! */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003139{
3140 int c;
3141
3142 if (eap != NULL && eap->force_ff != 0)
Bram Moolenaar333b80a2018-04-04 22:57:29 +02003143 c = eap->force_ff;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003144 else
3145 {
3146 if ((eap != NULL && eap->force_bin != 0)
3147 ? (eap->force_bin == FORCE_BIN) : buf->b_p_bin)
3148 return EOL_UNIX;
3149 c = *buf->b_p_ff;
3150 }
3151 if (c == 'u')
3152 return EOL_UNIX;
3153 if (c == 'm')
3154 return EOL_MAC;
3155 return EOL_DOS;
3156}
3157
3158/*
3159 * Set the current end-of-line type to EOL_DOS, EOL_UNIX or EOL_MAC.
3160 * Sets both 'textmode' and 'fileformat'.
3161 * Note: Does _not_ set global value of 'textmode'!
3162 */
3163 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003164set_fileformat(
3165 int t,
3166 int opt_flags) /* OPT_LOCAL and/or OPT_GLOBAL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003167{
3168 char *p = NULL;
3169
3170 switch (t)
3171 {
3172 case EOL_DOS:
3173 p = FF_DOS;
3174 curbuf->b_p_tx = TRUE;
3175 break;
3176 case EOL_UNIX:
3177 p = FF_UNIX;
3178 curbuf->b_p_tx = FALSE;
3179 break;
3180 case EOL_MAC:
3181 p = FF_MAC;
3182 curbuf->b_p_tx = FALSE;
3183 break;
3184 }
3185 if (p != NULL)
3186 set_string_option_direct((char_u *)"ff", -1, (char_u *)p,
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00003187 OPT_FREE | opt_flags, 0);
3188
Bram Moolenaarf740b292006-02-16 22:11:02 +00003189 /* This may cause the buffer to become (un)modified. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003190 check_status(curbuf);
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00003191 redraw_tabline = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003192#ifdef FEAT_TITLE
3193 need_maketitle = TRUE; /* set window title later */
3194#endif
3195}
3196
3197/*
3198 * Return the default fileformat from 'fileformats'.
3199 */
3200 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003201default_fileformat(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003202{
3203 switch (*p_ffs)
3204 {
3205 case 'm': return EOL_MAC;
3206 case 'd': return EOL_DOS;
3207 }
3208 return EOL_UNIX;
3209}
3210
3211/*
3212 * Call shell. Calls mch_call_shell, with 'shellxquote' added.
3213 */
3214 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003215call_shell(char_u *cmd, int opt)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003216{
3217 char_u *ncmd;
3218 int retval;
Bram Moolenaar05159a02005-02-26 23:04:13 +00003219#ifdef FEAT_PROFILE
3220 proftime_T wait_time;
3221#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003222
3223 if (p_verbose > 3)
3224 {
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00003225 verbose_enter();
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003226 smsg(_("Calling shell to execute: \"%s\""),
Bram Moolenaar071d4272004-06-13 20:20:40 +00003227 cmd == NULL ? p_sh : cmd);
3228 out_char('\n');
3229 cursor_on();
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +00003230 verbose_leave();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003231 }
3232
Bram Moolenaar05159a02005-02-26 23:04:13 +00003233#ifdef FEAT_PROFILE
Bram Moolenaar01265852006-03-20 21:50:15 +00003234 if (do_profiling == PROF_YES)
Bram Moolenaar05159a02005-02-26 23:04:13 +00003235 prof_child_enter(&wait_time);
3236#endif
3237
Bram Moolenaar071d4272004-06-13 20:20:40 +00003238 if (*p_sh == NUL)
3239 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003240 emsg(_(e_shellempty));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003241 retval = -1;
3242 }
3243 else
3244 {
3245#ifdef FEAT_GUI_MSWIN
3246 /* Don't hide the pointer while executing a shell command. */
3247 gui_mch_mousehide(FALSE);
3248#endif
3249#ifdef FEAT_GUI
3250 ++hold_gui_events;
3251#endif
3252 /* The external command may update a tags file, clear cached tags. */
3253 tag_freematch();
3254
Bram Moolenaar01257a72019-06-10 14:46:04 +02003255 if (cmd == NULL || *p_sxq == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003256 retval = mch_call_shell(cmd, opt);
3257 else
3258 {
Bram Moolenaarf66b3fc2012-02-20 22:18:30 +01003259 char_u *ecmd = cmd;
3260
3261 if (*p_sxe != NUL && STRCMP(p_sxq, "(") == 0)
3262 {
3263 ecmd = vim_strsave_escaped_ext(cmd, p_sxe, '^', FALSE);
3264 if (ecmd == NULL)
3265 ecmd = cmd;
3266 }
Bram Moolenaar964b3742019-05-24 18:54:09 +02003267 ncmd = alloc(STRLEN(ecmd) + STRLEN(p_sxq) * 2 + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003268 if (ncmd != NULL)
3269 {
3270 STRCPY(ncmd, p_sxq);
Bram Moolenaarf66b3fc2012-02-20 22:18:30 +01003271 STRCAT(ncmd, ecmd);
Bram Moolenaar034b1152012-02-19 18:19:30 +01003272 /* When 'shellxquote' is ( append ).
3273 * When 'shellxquote' is "( append )". */
3274 STRCAT(ncmd, STRCMP(p_sxq, "(") == 0 ? (char_u *)")"
3275 : STRCMP(p_sxq, "\"(") == 0 ? (char_u *)")\""
3276 : p_sxq);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003277 retval = mch_call_shell(ncmd, opt);
3278 vim_free(ncmd);
3279 }
3280 else
3281 retval = -1;
Bram Moolenaarf66b3fc2012-02-20 22:18:30 +01003282 if (ecmd != cmd)
3283 vim_free(ecmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003284 }
3285#ifdef FEAT_GUI
3286 --hold_gui_events;
3287#endif
3288 /*
3289 * Check the window size, in case it changed while executing the
3290 * external command.
3291 */
3292 shell_resized_check();
3293 }
3294
3295#ifdef FEAT_EVAL
3296 set_vim_var_nr(VV_SHELL_ERROR, (long)retval);
Bram Moolenaar05159a02005-02-26 23:04:13 +00003297# ifdef FEAT_PROFILE
Bram Moolenaar01265852006-03-20 21:50:15 +00003298 if (do_profiling == PROF_YES)
Bram Moolenaar05159a02005-02-26 23:04:13 +00003299 prof_child_exit(&wait_time);
3300# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003301#endif
3302
3303 return retval;
3304}
3305
3306/*
Bram Moolenaar01265852006-03-20 21:50:15 +00003307 * VISUAL, SELECTMODE and OP_PENDING State are never set, they are equal to
3308 * NORMAL State with a condition. This function returns the real State.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003309 */
3310 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003311get_real_state(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003312{
3313 if (State & NORMAL)
3314 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003315 if (VIsual_active)
Bram Moolenaar01265852006-03-20 21:50:15 +00003316 {
3317 if (VIsual_select)
3318 return SELECTMODE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003319 return VISUAL;
Bram Moolenaar01265852006-03-20 21:50:15 +00003320 }
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01003321 else if (finish_op)
3322 return OP_PENDING;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003323 }
3324 return State;
3325}
3326
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003327/*
3328 * Return TRUE if "p" points to just after a path separator.
Bram Moolenaarb5ce04d2011-07-07 17:15:33 +02003329 * Takes care of multi-byte characters.
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003330 * "b" must point to the start of the file name
3331 */
3332 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003333after_pathsep(char_u *b, char_u *p)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003334{
Bram Moolenaarb5ce04d2011-07-07 17:15:33 +02003335 return p > b && vim_ispathsep(p[-1])
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003336 && (!has_mbyte || (*mb_head_off)(b, p - 1) == 0);
3337}
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003338
3339/*
3340 * Return TRUE if file names "f1" and "f2" are in the same directory.
3341 * "f1" may be a short name, "f2" must be a full path.
3342 */
3343 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003344same_directory(char_u *f1, char_u *f2)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003345{
3346 char_u ffname[MAXPATHL];
3347 char_u *t1;
3348 char_u *t2;
3349
3350 /* safety check */
3351 if (f1 == NULL || f2 == NULL)
3352 return FALSE;
3353
3354 (void)vim_FullName(f1, ffname, MAXPATHL, FALSE);
3355 t1 = gettail_sep(ffname);
3356 t2 = gettail_sep(f2);
3357 return (t1 - ffname == t2 - f2
3358 && pathcmp((char *)ffname, (char *)f2, (int)(t1 - ffname)) == 0);
3359}
3360
Bram Moolenaar7c365fb2018-06-29 20:28:31 +02003361#if defined(FEAT_SESSION) || defined(FEAT_AUTOCHDIR) \
3362 || defined(MSWIN) || defined(FEAT_GUI_MAC) || defined(FEAT_GUI_GTK) \
Bram Moolenaarbb1969b2019-01-17 15:45:25 +01003363 || defined(FEAT_NETBEANS_INTG) \
Bram Moolenaar071d4272004-06-13 20:20:40 +00003364 || defined(PROTO)
3365/*
3366 * Change to a file's directory.
3367 * Caller must call shorten_fnames()!
3368 * Return OK or FAIL.
3369 */
3370 int
Bram Moolenaar2caad3f2018-12-16 15:38:02 +01003371vim_chdirfile(char_u *fname, char *trigger_autocmd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003372{
Bram Moolenaar2caad3f2018-12-16 15:38:02 +01003373 char_u old_dir[MAXPATHL];
3374 char_u new_dir[MAXPATHL];
Bram Moolenaarb5cb65b2018-02-03 18:01:37 +01003375 int res;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003376
Bram Moolenaar2caad3f2018-12-16 15:38:02 +01003377 if (mch_dirname(old_dir, MAXPATHL) != OK)
3378 *old_dir = NUL;
3379
3380 vim_strncpy(new_dir, fname, MAXPATHL - 1);
3381 *gettail_sep(new_dir) = NUL;
3382
Bram Moolenaar9eb76af2018-12-16 16:30:21 +01003383 if (pathcmp((char *)old_dir, (char *)new_dir, -1) == 0)
Bram Moolenaar2caad3f2018-12-16 15:38:02 +01003384 // nothing to do
3385 res = OK;
3386 else
3387 {
3388 res = mch_chdir((char *)new_dir) == 0 ? OK : FAIL;
3389
3390 if (res == OK && trigger_autocmd != NULL)
3391 apply_autocmds(EVENT_DIRCHANGED, (char_u *)trigger_autocmd,
3392 new_dir, FALSE, curbuf);
3393 }
Bram Moolenaarb5cb65b2018-02-03 18:01:37 +01003394 return res;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003395}
3396#endif
3397
3398#if defined(STAT_IGNORES_SLASH) || defined(PROTO)
3399/*
3400 * Check if "name" ends in a slash and is not a directory.
3401 * Used for systems where stat() ignores a trailing slash on a file name.
3402 * The Vim code assumes a trailing slash is only ignored for a directory.
3403 */
Bram Moolenaar91acfff2017-03-12 19:22:36 +01003404 static int
Bram Moolenaard8492792017-03-16 12:22:38 +01003405illegal_slash(const char *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003406{
3407 if (name[0] == NUL)
3408 return FALSE; /* no file name is not illegal */
3409 if (name[strlen(name) - 1] != '/')
3410 return FALSE; /* no trailing slash */
3411 if (mch_isdir((char_u *)name))
3412 return FALSE; /* trailing slash for a directory */
3413 return TRUE;
3414}
Bram Moolenaar91acfff2017-03-12 19:22:36 +01003415
3416/*
3417 * Special implementation of mch_stat() for Solaris.
3418 */
3419 int
3420vim_stat(const char *name, stat_T *stp)
3421{
3422 /* On Solaris stat() accepts "file/" as if it was "file". Return -1 if
3423 * the name ends in "/" and it's not a directory. */
Bram Moolenaard8492792017-03-16 12:22:38 +01003424 return illegal_slash(name) ? -1 : stat(name, stp);
Bram Moolenaar91acfff2017-03-12 19:22:36 +01003425}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003426#endif
3427
3428#if defined(CURSOR_SHAPE) || defined(PROTO)
3429
3430/*
3431 * Handling of cursor and mouse pointer shapes in various modes.
3432 */
3433
3434cursorentry_T shape_table[SHAPE_IDX_COUNT] =
3435{
3436 /* The values will be filled in from the 'guicursor' and 'mouseshape'
3437 * defaults when Vim starts.
3438 * Adjust the SHAPE_IDX_ defines when making changes! */
3439 {0, 0, 0, 700L, 400L, 250L, 0, 0, "n", SHAPE_CURSOR+SHAPE_MOUSE},
3440 {0, 0, 0, 700L, 400L, 250L, 0, 0, "v", SHAPE_CURSOR+SHAPE_MOUSE},
3441 {0, 0, 0, 700L, 400L, 250L, 0, 0, "i", SHAPE_CURSOR+SHAPE_MOUSE},
3442 {0, 0, 0, 700L, 400L, 250L, 0, 0, "r", SHAPE_CURSOR+SHAPE_MOUSE},
3443 {0, 0, 0, 700L, 400L, 250L, 0, 0, "c", SHAPE_CURSOR+SHAPE_MOUSE},
3444 {0, 0, 0, 700L, 400L, 250L, 0, 0, "ci", SHAPE_CURSOR+SHAPE_MOUSE},
3445 {0, 0, 0, 700L, 400L, 250L, 0, 0, "cr", SHAPE_CURSOR+SHAPE_MOUSE},
3446 {0, 0, 0, 700L, 400L, 250L, 0, 0, "o", SHAPE_CURSOR+SHAPE_MOUSE},
3447 {0, 0, 0, 700L, 400L, 250L, 0, 0, "ve", SHAPE_CURSOR+SHAPE_MOUSE},
3448 {0, 0, 0, 0L, 0L, 0L, 0, 0, "e", SHAPE_MOUSE},
3449 {0, 0, 0, 0L, 0L, 0L, 0, 0, "s", SHAPE_MOUSE},
3450 {0, 0, 0, 0L, 0L, 0L, 0, 0, "sd", SHAPE_MOUSE},
3451 {0, 0, 0, 0L, 0L, 0L, 0, 0, "vs", SHAPE_MOUSE},
3452 {0, 0, 0, 0L, 0L, 0L, 0, 0, "vd", SHAPE_MOUSE},
3453 {0, 0, 0, 0L, 0L, 0L, 0, 0, "m", SHAPE_MOUSE},
3454 {0, 0, 0, 0L, 0L, 0L, 0, 0, "ml", SHAPE_MOUSE},
3455 {0, 0, 0, 100L, 100L, 100L, 0, 0, "sm", SHAPE_CURSOR},
3456};
3457
3458#ifdef FEAT_MOUSESHAPE
3459/*
3460 * Table with names for mouse shapes. Keep in sync with all the tables for
3461 * mch_set_mouse_shape()!.
3462 */
3463static char * mshape_names[] =
3464{
3465 "arrow", /* default, must be the first one */
3466 "blank", /* hidden */
3467 "beam",
3468 "updown",
3469 "udsizing",
3470 "leftright",
3471 "lrsizing",
3472 "busy",
3473 "no",
3474 "crosshair",
3475 "hand1",
3476 "hand2",
3477 "pencil",
3478 "question",
3479 "rightup-arrow",
3480 "up-arrow",
3481 NULL
3482};
3483#endif
3484
3485/*
3486 * Parse the 'guicursor' option ("what" is SHAPE_CURSOR) or 'mouseshape'
3487 * ("what" is SHAPE_MOUSE).
3488 * Returns error message for an illegal option, NULL otherwise.
3489 */
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003490 char *
Bram Moolenaar9b578142016-01-30 19:39:49 +01003491parse_shape_opt(int what)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003492{
3493 char_u *modep;
3494 char_u *colonp;
3495 char_u *commap;
3496 char_u *slashp;
3497 char_u *p, *endp;
3498 int idx = 0; /* init for GCC */
3499 int all_idx;
3500 int len;
3501 int i;
3502 long n;
3503 int found_ve = FALSE; /* found "ve" flag */
3504 int round;
3505
3506 /*
3507 * First round: check for errors; second round: do it for real.
3508 */
3509 for (round = 1; round <= 2; ++round)
3510 {
3511 /*
3512 * Repeat for all comma separated parts.
3513 */
3514#ifdef FEAT_MOUSESHAPE
3515 if (what == SHAPE_MOUSE)
3516 modep = p_mouseshape;
3517 else
3518#endif
3519 modep = p_guicursor;
3520 while (*modep != NUL)
3521 {
3522 colonp = vim_strchr(modep, ':');
Bram Moolenaar24922ec2017-02-23 17:59:22 +01003523 commap = vim_strchr(modep, ',');
3524
3525 if (colonp == NULL || (commap != NULL && commap < colonp))
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003526 return N_("E545: Missing colon");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003527 if (colonp == modep)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003528 return N_("E546: Illegal mode");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003529
3530 /*
3531 * Repeat for all mode's before the colon.
3532 * For the 'a' mode, we loop to handle all the modes.
3533 */
3534 all_idx = -1;
3535 while (modep < colonp || all_idx >= 0)
3536 {
3537 if (all_idx < 0)
3538 {
3539 /* Find the mode. */
3540 if (modep[1] == '-' || modep[1] == ':')
3541 len = 1;
3542 else
3543 len = 2;
3544 if (len == 1 && TOLOWER_ASC(modep[0]) == 'a')
3545 all_idx = SHAPE_IDX_COUNT - 1;
3546 else
3547 {
3548 for (idx = 0; idx < SHAPE_IDX_COUNT; ++idx)
3549 if (STRNICMP(modep, shape_table[idx].name, len)
3550 == 0)
3551 break;
3552 if (idx == SHAPE_IDX_COUNT
3553 || (shape_table[idx].used_for & what) == 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003554 return N_("E546: Illegal mode");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003555 if (len == 2 && modep[0] == 'v' && modep[1] == 'e')
3556 found_ve = TRUE;
3557 }
3558 modep += len + 1;
3559 }
3560
3561 if (all_idx >= 0)
3562 idx = all_idx--;
3563 else if (round == 2)
3564 {
3565#ifdef FEAT_MOUSESHAPE
3566 if (what == SHAPE_MOUSE)
3567 {
3568 /* Set the default, for the missing parts */
3569 shape_table[idx].mshape = 0;
3570 }
3571 else
3572#endif
3573 {
3574 /* Set the defaults, for the missing parts */
3575 shape_table[idx].shape = SHAPE_BLOCK;
3576 shape_table[idx].blinkwait = 700L;
3577 shape_table[idx].blinkon = 400L;
3578 shape_table[idx].blinkoff = 250L;
3579 }
3580 }
3581
3582 /* Parse the part after the colon */
3583 for (p = colonp + 1; *p && *p != ','; )
3584 {
3585#ifdef FEAT_MOUSESHAPE
3586 if (what == SHAPE_MOUSE)
3587 {
3588 for (i = 0; ; ++i)
3589 {
3590 if (mshape_names[i] == NULL)
3591 {
3592 if (!VIM_ISDIGIT(*p))
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003593 return N_("E547: Illegal mouseshape");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003594 if (round == 2)
3595 shape_table[idx].mshape =
3596 getdigits(&p) + MSHAPE_NUMBERED;
3597 else
3598 (void)getdigits(&p);
3599 break;
3600 }
3601 len = (int)STRLEN(mshape_names[i]);
3602 if (STRNICMP(p, mshape_names[i], len) == 0)
3603 {
3604 if (round == 2)
3605 shape_table[idx].mshape = i;
3606 p += len;
3607 break;
3608 }
3609 }
3610 }
3611 else /* if (what == SHAPE_MOUSE) */
3612#endif
3613 {
3614 /*
3615 * First handle the ones with a number argument.
3616 */
3617 i = *p;
3618 len = 0;
3619 if (STRNICMP(p, "ver", 3) == 0)
3620 len = 3;
3621 else if (STRNICMP(p, "hor", 3) == 0)
3622 len = 3;
3623 else if (STRNICMP(p, "blinkwait", 9) == 0)
3624 len = 9;
3625 else if (STRNICMP(p, "blinkon", 7) == 0)
3626 len = 7;
3627 else if (STRNICMP(p, "blinkoff", 8) == 0)
3628 len = 8;
3629 if (len != 0)
3630 {
3631 p += len;
3632 if (!VIM_ISDIGIT(*p))
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003633 return N_("E548: digit expected");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003634 n = getdigits(&p);
3635 if (len == 3) /* "ver" or "hor" */
3636 {
3637 if (n == 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003638 return N_("E549: Illegal percentage");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003639 if (round == 2)
3640 {
3641 if (TOLOWER_ASC(i) == 'v')
3642 shape_table[idx].shape = SHAPE_VER;
3643 else
3644 shape_table[idx].shape = SHAPE_HOR;
3645 shape_table[idx].percentage = n;
3646 }
3647 }
3648 else if (round == 2)
3649 {
3650 if (len == 9)
3651 shape_table[idx].blinkwait = n;
3652 else if (len == 7)
3653 shape_table[idx].blinkon = n;
3654 else
3655 shape_table[idx].blinkoff = n;
3656 }
3657 }
3658 else if (STRNICMP(p, "block", 5) == 0)
3659 {
3660 if (round == 2)
3661 shape_table[idx].shape = SHAPE_BLOCK;
3662 p += 5;
3663 }
3664 else /* must be a highlight group name then */
3665 {
3666 endp = vim_strchr(p, '-');
3667 if (commap == NULL) /* last part */
3668 {
3669 if (endp == NULL)
3670 endp = p + STRLEN(p); /* find end of part */
3671 }
3672 else if (endp > commap || endp == NULL)
3673 endp = commap;
3674 slashp = vim_strchr(p, '/');
3675 if (slashp != NULL && slashp < endp)
3676 {
3677 /* "group/langmap_group" */
3678 i = syn_check_group(p, (int)(slashp - p));
3679 p = slashp + 1;
3680 }
3681 if (round == 2)
3682 {
3683 shape_table[idx].id = syn_check_group(p,
3684 (int)(endp - p));
3685 shape_table[idx].id_lm = shape_table[idx].id;
3686 if (slashp != NULL && slashp < endp)
3687 shape_table[idx].id = i;
3688 }
3689 p = endp;
3690 }
3691 } /* if (what != SHAPE_MOUSE) */
3692
3693 if (*p == '-')
3694 ++p;
3695 }
3696 }
3697 modep = p;
3698 if (*modep == ',')
3699 ++modep;
3700 }
3701 }
3702
3703 /* If the 's' flag is not given, use the 'v' cursor for 's' */
3704 if (!found_ve)
3705 {
3706#ifdef FEAT_MOUSESHAPE
3707 if (what == SHAPE_MOUSE)
3708 {
3709 shape_table[SHAPE_IDX_VE].mshape = shape_table[SHAPE_IDX_V].mshape;
3710 }
3711 else
3712#endif
3713 {
3714 shape_table[SHAPE_IDX_VE].shape = shape_table[SHAPE_IDX_V].shape;
3715 shape_table[SHAPE_IDX_VE].percentage =
3716 shape_table[SHAPE_IDX_V].percentage;
3717 shape_table[SHAPE_IDX_VE].blinkwait =
3718 shape_table[SHAPE_IDX_V].blinkwait;
3719 shape_table[SHAPE_IDX_VE].blinkon =
3720 shape_table[SHAPE_IDX_V].blinkon;
3721 shape_table[SHAPE_IDX_VE].blinkoff =
3722 shape_table[SHAPE_IDX_V].blinkoff;
3723 shape_table[SHAPE_IDX_VE].id = shape_table[SHAPE_IDX_V].id;
3724 shape_table[SHAPE_IDX_VE].id_lm = shape_table[SHAPE_IDX_V].id_lm;
3725 }
3726 }
3727
3728 return NULL;
3729}
3730
Bram Moolenaarac6e65f2005-08-29 22:25:38 +00003731# if defined(MCH_CURSOR_SHAPE) || defined(FEAT_GUI) \
3732 || defined(FEAT_MOUSESHAPE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003733/*
3734 * Return the index into shape_table[] for the current mode.
3735 * When "mouse" is TRUE, consider indexes valid for the mouse pointer.
3736 */
3737 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003738get_shape_idx(int mouse)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003739{
3740#ifdef FEAT_MOUSESHAPE
3741 if (mouse && (State == HITRETURN || State == ASKMORE))
3742 {
3743# ifdef FEAT_GUI
Bram Moolenaar9588a0f2005-01-08 21:45:39 +00003744 int x, y;
3745 gui_mch_getmouse(&x, &y);
3746 if (Y_2_ROW(y) == Rows - 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003747 return SHAPE_IDX_MOREL;
3748# endif
3749 return SHAPE_IDX_MORE;
3750 }
3751 if (mouse && drag_status_line)
3752 return SHAPE_IDX_SDRAG;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003753 if (mouse && drag_sep_line)
3754 return SHAPE_IDX_VDRAG;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003755#endif
3756 if (!mouse && State == SHOWMATCH)
3757 return SHAPE_IDX_SM;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003758 if (State & VREPLACE_FLAG)
3759 return SHAPE_IDX_R;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003760 if (State & REPLACE_FLAG)
3761 return SHAPE_IDX_R;
3762 if (State & INSERT)
3763 return SHAPE_IDX_I;
3764 if (State & CMDLINE)
3765 {
3766 if (cmdline_at_end())
3767 return SHAPE_IDX_C;
3768 if (cmdline_overstrike())
3769 return SHAPE_IDX_CR;
3770 return SHAPE_IDX_CI;
3771 }
3772 if (finish_op)
3773 return SHAPE_IDX_O;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003774 if (VIsual_active)
3775 {
3776 if (*p_sel == 'e')
3777 return SHAPE_IDX_VE;
3778 else
3779 return SHAPE_IDX_V;
3780 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003781 return SHAPE_IDX_N;
3782}
Bram Moolenaarac6e65f2005-08-29 22:25:38 +00003783#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003784
3785# if defined(FEAT_MOUSESHAPE) || defined(PROTO)
3786static int old_mouse_shape = 0;
3787
3788/*
3789 * Set the mouse shape:
3790 * If "shape" is -1, use shape depending on the current mode,
3791 * depending on the current state.
3792 * If "shape" is -2, only update the shape when it's CLINE or STATUS (used
3793 * when the mouse moves off the status or command line).
3794 */
3795 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003796update_mouseshape(int shape_idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003797{
3798 int new_mouse_shape;
3799
3800 /* Only works in GUI mode. */
Bram Moolenaar6bb68362005-03-22 23:03:44 +00003801 if (!gui.in_use || gui.starting)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003802 return;
3803
3804 /* Postpone the updating when more is to come. Speeds up executing of
3805 * mappings. */
3806 if (shape_idx == -1 && char_avail())
3807 {
3808 postponed_mouseshape = TRUE;
3809 return;
3810 }
3811
Bram Moolenaar14716812006-05-04 21:54:08 +00003812 /* When ignoring the mouse don't change shape on the statusline. */
3813 if (*p_mouse == NUL
3814 && (shape_idx == SHAPE_IDX_CLINE
3815 || shape_idx == SHAPE_IDX_STATUS
3816 || shape_idx == SHAPE_IDX_VSEP))
3817 shape_idx = -2;
3818
Bram Moolenaar071d4272004-06-13 20:20:40 +00003819 if (shape_idx == -2
3820 && old_mouse_shape != shape_table[SHAPE_IDX_CLINE].mshape
3821 && old_mouse_shape != shape_table[SHAPE_IDX_STATUS].mshape
3822 && old_mouse_shape != shape_table[SHAPE_IDX_VSEP].mshape)
3823 return;
3824 if (shape_idx < 0)
3825 new_mouse_shape = shape_table[get_shape_idx(TRUE)].mshape;
3826 else
3827 new_mouse_shape = shape_table[shape_idx].mshape;
3828 if (new_mouse_shape != old_mouse_shape)
3829 {
3830 mch_set_mouse_shape(new_mouse_shape);
3831 old_mouse_shape = new_mouse_shape;
3832 }
3833 postponed_mouseshape = FALSE;
3834}
3835# endif
3836
3837#endif /* CURSOR_SHAPE */
3838
3839
Bram Moolenaar071d4272004-06-13 20:20:40 +00003840/*
3841 * Change directory to "new_dir". If FEAT_SEARCHPATH is defined, search
3842 * 'cdpath' for relative directory names, otherwise just mch_chdir().
3843 */
3844 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003845vim_chdir(char_u *new_dir)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003846{
3847#ifndef FEAT_SEARCHPATH
3848 return mch_chdir((char *)new_dir);
3849#else
3850 char_u *dir_name;
3851 int r;
3852
3853 dir_name = find_directory_in_path(new_dir, (int)STRLEN(new_dir),
3854 FNAME_MESS, curbuf->b_ffname);
3855 if (dir_name == NULL)
3856 return -1;
3857 r = mch_chdir((char *)dir_name);
3858 vim_free(dir_name);
3859 return r;
3860#endif
3861}
3862
3863/*
Bram Moolenaarbbebc852005-07-18 21:47:53 +00003864 * Get user name from machine-specific function.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003865 * Returns the user name in "buf[len]".
Bram Moolenaarbbebc852005-07-18 21:47:53 +00003866 * Some systems are quite slow in obtaining the user name (Windows NT), thus
3867 * cache the result.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003868 * Returns OK or FAIL.
3869 */
3870 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003871get_user_name(char_u *buf, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003872{
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003873 if (username == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003874 {
3875 if (mch_get_user_name(buf, len) == FAIL)
3876 return FAIL;
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003877 username = vim_strsave(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003878 }
3879 else
Bram Moolenaarbbebc852005-07-18 21:47:53 +00003880 vim_strncpy(buf, username, len - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003881 return OK;
3882}
3883
3884#ifndef HAVE_QSORT
3885/*
3886 * Our own qsort(), for systems that don't have it.
3887 * It's simple and slow. From the K&R C book.
3888 */
3889 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003890qsort(
3891 void *base,
3892 size_t elm_count,
3893 size_t elm_size,
3894 int (*cmp)(const void *, const void *))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003895{
3896 char_u *buf;
3897 char_u *p1;
3898 char_u *p2;
3899 int i, j;
3900 int gap;
3901
Bram Moolenaar964b3742019-05-24 18:54:09 +02003902 buf = alloc(elm_size);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003903 if (buf == NULL)
3904 return;
3905
3906 for (gap = elm_count / 2; gap > 0; gap /= 2)
3907 for (i = gap; i < elm_count; ++i)
3908 for (j = i - gap; j >= 0; j -= gap)
3909 {
3910 /* Compare the elements. */
3911 p1 = (char_u *)base + j * elm_size;
3912 p2 = (char_u *)base + (j + gap) * elm_size;
3913 if ((*cmp)((void *)p1, (void *)p2) <= 0)
3914 break;
Bram Moolenaar21160b92009-11-11 15:56:10 +00003915 /* Exchange the elements. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003916 mch_memmove(buf, p1, elm_size);
3917 mch_memmove(p1, p2, elm_size);
3918 mch_memmove(p2, buf, elm_size);
3919 }
3920
3921 vim_free(buf);
3922}
3923#endif
3924
Bram Moolenaar071d4272004-06-13 20:20:40 +00003925/*
3926 * Sort an array of strings.
3927 */
Bram Moolenaareae1b912019-05-09 15:12:55 +02003928static int sort_compare(const void *s1, const void *s2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003929
3930 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003931sort_compare(const void *s1, const void *s2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003932{
3933 return STRCMP(*(char **)s1, *(char **)s2);
3934}
3935
3936 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01003937sort_strings(
3938 char_u **files,
3939 int count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003940{
3941 qsort((void *)files, (size_t)count, sizeof(char_u *), sort_compare);
3942}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003943
3944#if !defined(NO_EXPANDPATH) || defined(PROTO)
3945/*
3946 * Compare path "p[]" to "q[]".
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003947 * If "maxlen" >= 0 compare "p[maxlen]" to "q[maxlen]"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003948 * Return value like strcmp(p, q), but consider path separators.
3949 */
3950 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01003951pathcmp(const char *p, const char *q, int maxlen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003952{
Bram Moolenaarf6470c22015-08-25 16:31:40 +02003953 int i, j;
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02003954 int c1, c2;
Bram Moolenaar86b68352004-12-27 21:59:20 +00003955 const char *s = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003956
Bram Moolenaarf6470c22015-08-25 16:31:40 +02003957 for (i = 0, j = 0; maxlen < 0 || (i < maxlen && j < maxlen);)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003958 {
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02003959 c1 = PTR2CHAR((char_u *)p + i);
Bram Moolenaarf6470c22015-08-25 16:31:40 +02003960 c2 = PTR2CHAR((char_u *)q + j);
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02003961
Bram Moolenaar071d4272004-06-13 20:20:40 +00003962 /* End of "p": check if "q" also ends or just has a slash. */
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02003963 if (c1 == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003964 {
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02003965 if (c2 == NUL) /* full match */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003966 return 0;
3967 s = q;
Bram Moolenaar15675582018-02-09 12:29:56 +01003968 i = j;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003969 break;
3970 }
3971
3972 /* End of "q": check if "p" just has a slash. */
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02003973 if (c2 == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003974 {
3975 s = p;
3976 break;
3977 }
3978
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02003979 if ((p_fic ? MB_TOUPPER(c1) != MB_TOUPPER(c2) : c1 != c2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003980#ifdef BACKSLASH_IN_FILENAME
3981 /* consider '/' and '\\' to be equal */
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02003982 && !((c1 == '/' && c2 == '\\')
3983 || (c1 == '\\' && c2 == '/'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003984#endif
3985 )
3986 {
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02003987 if (vim_ispathsep(c1))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003988 return -1;
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02003989 if (vim_ispathsep(c2))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003990 return 1;
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02003991 return p_fic ? MB_TOUPPER(c1) - MB_TOUPPER(c2)
3992 : c1 - c2; /* no match */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003993 }
Bram Moolenaarf6470c22015-08-25 16:31:40 +02003994
3995 i += MB_PTR2LEN((char_u *)p + i);
3996 j += MB_PTR2LEN((char_u *)q + j);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003997 }
Bram Moolenaarf6470c22015-08-25 16:31:40 +02003998 if (s == NULL) /* "i" or "j" ran into "maxlen" */
Bram Moolenaar86b68352004-12-27 21:59:20 +00003999 return 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004000
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02004001 c1 = PTR2CHAR((char_u *)s + i);
4002 c2 = PTR2CHAR((char_u *)s + i + MB_PTR2LEN((char_u *)s + i));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004003 /* ignore a trailing slash, but not "//" or ":/" */
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02004004 if (c2 == NUL
Bram Moolenaar86b68352004-12-27 21:59:20 +00004005 && i > 0
4006 && !after_pathsep((char_u *)s, (char_u *)s + i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004007#ifdef BACKSLASH_IN_FILENAME
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02004008 && (c1 == '/' || c1 == '\\')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004009#else
Bram Moolenaar38ec50b2013-04-12 14:42:39 +02004010 && c1 == '/'
Bram Moolenaar071d4272004-06-13 20:20:40 +00004011#endif
Bram Moolenaar86b68352004-12-27 21:59:20 +00004012 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004013 return 0; /* match with trailing slash */
4014 if (s == q)
4015 return -1; /* no match */
4016 return 1;
4017}
4018#endif
4019
Bram Moolenaar071d4272004-06-13 20:20:40 +00004020/*
4021 * The putenv() implementation below comes from the "screen" program.
4022 * Included with permission from Juergen Weigert.
4023 * See pty.c for the copyright notice.
4024 */
4025
4026/*
4027 * putenv -- put value into environment
4028 *
4029 * Usage: i = putenv (string)
4030 * int i;
4031 * char *string;
4032 *
4033 * where string is of the form <name>=<value>.
4034 * Putenv returns 0 normally, -1 on error (not enough core for malloc).
4035 *
4036 * Putenv may need to add a new name into the environment, or to
4037 * associate a value longer than the current value with a particular
4038 * name. So, to make life simpler, putenv() copies your entire
4039 * environment into the heap (i.e. malloc()) from the stack
4040 * (i.e. where it resides when your process is initiated) the first
4041 * time you call it.
4042 *
4043 * (history removed, not very interesting. See the "screen" sources.)
4044 */
4045
4046#if !defined(HAVE_SETENV) && !defined(HAVE_PUTENV)
4047
4048#define EXTRASIZE 5 /* increment to add to env. size */
4049
4050static int envsize = -1; /* current size of environment */
Bram Moolenaard0573012017-10-28 21:11:06 +02004051extern char **environ; /* the global which is your env. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004052
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +01004053static int findenv(char *name); /* look for a name in the env. */
4054static int newenv(void); /* copy env. from stack to heap */
4055static int moreenv(void); /* incr. size of env. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004056
4057 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01004058putenv(const char *string)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004059{
4060 int i;
4061 char *p;
4062
4063 if (envsize < 0)
4064 { /* first time putenv called */
4065 if (newenv() < 0) /* copy env. to heap */
4066 return -1;
4067 }
4068
4069 i = findenv((char *)string); /* look for name in environment */
4070
4071 if (i < 0)
4072 { /* name must be added */
4073 for (i = 0; environ[i]; i++);
4074 if (i >= (envsize - 1))
4075 { /* need new slot */
4076 if (moreenv() < 0)
4077 return -1;
4078 }
Bram Moolenaarc799fe22019-05-28 23:08:19 +02004079 p = alloc(strlen(string) + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004080 if (p == NULL) /* not enough core */
4081 return -1;
4082 environ[i + 1] = 0; /* new end of env. */
4083 }
4084 else
4085 { /* name already in env. */
4086 p = vim_realloc(environ[i], strlen(string) + 1);
4087 if (p == NULL)
4088 return -1;
4089 }
4090 sprintf(p, "%s", string); /* copy into env. */
4091 environ[i] = p;
4092
4093 return 0;
4094}
4095
4096 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01004097findenv(char *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004098{
4099 char *namechar, *envchar;
4100 int i, found;
4101
4102 found = 0;
4103 for (i = 0; environ[i] && !found; i++)
4104 {
4105 envchar = environ[i];
4106 namechar = name;
4107 while (*namechar && *namechar != '=' && (*namechar == *envchar))
4108 {
4109 namechar++;
4110 envchar++;
4111 }
4112 found = ((*namechar == '\0' || *namechar == '=') && *envchar == '=');
4113 }
4114 return found ? i - 1 : -1;
4115}
4116
4117 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01004118newenv(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004119{
4120 char **env, *elem;
4121 int i, esize;
4122
Bram Moolenaar071d4272004-06-13 20:20:40 +00004123 for (i = 0; environ[i]; i++)
4124 ;
Bram Moolenaard0573012017-10-28 21:11:06 +02004125
Bram Moolenaar071d4272004-06-13 20:20:40 +00004126 esize = i + EXTRASIZE + 1;
Bram Moolenaarc799fe22019-05-28 23:08:19 +02004127 env = ALLOC_MULT(char *, esize);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004128 if (env == NULL)
4129 return -1;
4130
Bram Moolenaar071d4272004-06-13 20:20:40 +00004131 for (i = 0; environ[i]; i++)
4132 {
Bram Moolenaarc799fe22019-05-28 23:08:19 +02004133 elem = alloc(strlen(environ[i]) + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004134 if (elem == NULL)
4135 return -1;
4136 env[i] = elem;
4137 strcpy(elem, environ[i]);
4138 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004139
4140 env[i] = 0;
4141 environ = env;
4142 envsize = esize;
4143 return 0;
4144}
4145
4146 static int
Bram Moolenaar9b578142016-01-30 19:39:49 +01004147moreenv(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004148{
4149 int esize;
4150 char **env;
4151
4152 esize = envsize + EXTRASIZE;
Bram Moolenaarc799fe22019-05-28 23:08:19 +02004153 env = vim_realloc((char *)environ, esize * sizeof (*env));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004154 if (env == 0)
4155 return -1;
4156 environ = env;
4157 envsize = esize;
4158 return 0;
4159}
4160
4161# ifdef USE_VIMPTY_GETENV
Bram Moolenaar613fe7a2017-07-22 21:11:53 +02004162/*
4163 * Used for mch_getenv() for Mac.
4164 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004165 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01004166vimpty_getenv(const char_u *string)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004167{
4168 int i;
4169 char_u *p;
4170
4171 if (envsize < 0)
4172 return NULL;
4173
4174 i = findenv((char *)string);
4175
4176 if (i < 0)
4177 return NULL;
4178
4179 p = vim_strchr((char_u *)environ[i], '=');
4180 return (p + 1);
4181}
4182# endif
4183
4184#endif /* !defined(HAVE_SETENV) && !defined(HAVE_PUTENV) */
Bram Moolenaarc4a06d32005-06-07 21:04:49 +00004185
Bram Moolenaarc4956c82006-03-12 21:58:43 +00004186#if defined(FEAT_EVAL) || defined(FEAT_SPELL) || defined(PROTO)
Bram Moolenaarc4a06d32005-06-07 21:04:49 +00004187/*
4188 * Return 0 for not writable, 1 for writable file, 2 for a dir which we have
4189 * rights to write into.
4190 */
4191 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01004192filewritable(char_u *fname)
Bram Moolenaarc4a06d32005-06-07 21:04:49 +00004193{
4194 int retval = 0;
4195#if defined(UNIX) || defined(VMS)
4196 int perm = 0;
4197#endif
4198
4199#if defined(UNIX) || defined(VMS)
4200 perm = mch_getperm(fname);
4201#endif
Bram Moolenaarc4a06d32005-06-07 21:04:49 +00004202 if (
Bram Moolenaar4f974752019-02-17 17:44:42 +01004203# ifdef MSWIN
Bram Moolenaarc4a06d32005-06-07 21:04:49 +00004204 mch_writable(fname) &&
4205# else
4206# if defined(UNIX) || defined(VMS)
4207 (perm & 0222) &&
4208# endif
4209# endif
4210 mch_access((char *)fname, W_OK) == 0
4211 )
Bram Moolenaarc4a06d32005-06-07 21:04:49 +00004212 {
4213 ++retval;
4214 if (mch_isdir(fname))
4215 ++retval;
4216 }
4217 return retval;
4218}
4219#endif
Bram Moolenaar6bab4d12005-06-16 21:53:56 +00004220
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004221#if defined(FEAT_SPELL) || defined(FEAT_PERSISTENT_UNDO) || defined(PROTO)
4222/*
4223 * Read 2 bytes from "fd" and turn them into an int, MSB first.
Bram Moolenaare26e0d22018-03-20 12:34:04 +01004224 * Returns -1 when encountering EOF.
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004225 */
4226 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01004227get2c(FILE *fd)
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004228{
Bram Moolenaare26e0d22018-03-20 12:34:04 +01004229 int c, n;
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004230
4231 n = getc(fd);
Bram Moolenaare26e0d22018-03-20 12:34:04 +01004232 if (n == EOF) return -1;
4233 c = getc(fd);
4234 if (c == EOF) return -1;
4235 return (n << 8) + c;
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004236}
4237
4238/*
4239 * Read 3 bytes from "fd" and turn them into an int, MSB first.
Bram Moolenaare26e0d22018-03-20 12:34:04 +01004240 * Returns -1 when encountering EOF.
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004241 */
4242 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01004243get3c(FILE *fd)
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004244{
Bram Moolenaare26e0d22018-03-20 12:34:04 +01004245 int c, n;
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004246
4247 n = getc(fd);
Bram Moolenaare26e0d22018-03-20 12:34:04 +01004248 if (n == EOF) return -1;
4249 c = getc(fd);
4250 if (c == EOF) return -1;
4251 n = (n << 8) + c;
4252 c = getc(fd);
4253 if (c == EOF) return -1;
4254 return (n << 8) + c;
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004255}
4256
4257/*
4258 * Read 4 bytes from "fd" and turn them into an int, MSB first.
Bram Moolenaare26e0d22018-03-20 12:34:04 +01004259 * Returns -1 when encountering EOF.
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004260 */
4261 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01004262get4c(FILE *fd)
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004263{
Bram Moolenaare26e0d22018-03-20 12:34:04 +01004264 int c;
Bram Moolenaar95235e62013-09-08 16:07:07 +02004265 /* Use unsigned rather than int otherwise result is undefined
4266 * when left-shift sets the MSB. */
4267 unsigned n;
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004268
Bram Moolenaare26e0d22018-03-20 12:34:04 +01004269 c = getc(fd);
4270 if (c == EOF) return -1;
4271 n = (unsigned)c;
4272 c = getc(fd);
4273 if (c == EOF) return -1;
4274 n = (n << 8) + (unsigned)c;
4275 c = getc(fd);
4276 if (c == EOF) return -1;
4277 n = (n << 8) + (unsigned)c;
4278 c = getc(fd);
4279 if (c == EOF) return -1;
4280 n = (n << 8) + (unsigned)c;
Bram Moolenaar95235e62013-09-08 16:07:07 +02004281 return (int)n;
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004282}
4283
4284/*
Bram Moolenaarf4fba6d2016-06-26 16:44:24 +02004285 * Read 8 bytes from "fd" and turn them into a time_T, MSB first.
Bram Moolenaare26e0d22018-03-20 12:34:04 +01004286 * Returns -1 when encountering EOF.
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004287 */
Bram Moolenaarf4fba6d2016-06-26 16:44:24 +02004288 time_T
Bram Moolenaar9b578142016-01-30 19:39:49 +01004289get8ctime(FILE *fd)
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004290{
Bram Moolenaare26e0d22018-03-20 12:34:04 +01004291 int c;
Bram Moolenaarf4fba6d2016-06-26 16:44:24 +02004292 time_T n = 0;
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004293 int i;
4294
4295 for (i = 0; i < 8; ++i)
Bram Moolenaare26e0d22018-03-20 12:34:04 +01004296 {
4297 c = getc(fd);
4298 if (c == EOF) return -1;
4299 n = (n << 8) + c;
4300 }
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004301 return n;
4302}
4303
4304/*
4305 * Read a string of length "cnt" from "fd" into allocated memory.
4306 * Returns NULL when out of memory or unable to read that many bytes.
4307 */
4308 char_u *
Bram Moolenaar9b578142016-01-30 19:39:49 +01004309read_string(FILE *fd, int cnt)
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004310{
4311 char_u *str;
4312 int i;
4313 int c;
4314
4315 /* allocate memory */
Bram Moolenaar964b3742019-05-24 18:54:09 +02004316 str = alloc(cnt + 1);
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004317 if (str != NULL)
4318 {
4319 /* Read the string. Quit when running into the EOF. */
4320 for (i = 0; i < cnt; ++i)
4321 {
4322 c = getc(fd);
4323 if (c == EOF)
4324 {
4325 vim_free(str);
4326 return NULL;
4327 }
4328 str[i] = c;
4329 }
4330 str[i] = NUL;
4331 }
4332 return str;
4333}
4334
4335/*
4336 * Write a number to file "fd", MSB first, in "len" bytes.
4337 */
4338 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01004339put_bytes(FILE *fd, long_u nr, int len)
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004340{
4341 int i;
4342
4343 for (i = len - 1; i >= 0; --i)
4344 if (putc((int)(nr >> (i * 8)), fd) == EOF)
4345 return FAIL;
4346 return OK;
4347}
4348
4349#ifdef _MSC_VER
4350# if (_MSC_VER <= 1200)
4351/* This line is required for VC6 without the service pack. Also see the
4352 * matching #pragma below. */
4353 # pragma optimize("", off)
4354# endif
4355#endif
4356
4357/*
Bram Moolenaarf4fba6d2016-06-26 16:44:24 +02004358 * Write time_T to file "fd" in 8 bytes.
Bram Moolenaar285bf842016-01-07 22:34:01 +01004359 * Returns FAIL when the write failed.
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004360 */
Bram Moolenaar285bf842016-01-07 22:34:01 +01004361 int
Bram Moolenaarf4fba6d2016-06-26 16:44:24 +02004362put_time(FILE *fd, time_T the_time)
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004363{
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02004364 char_u buf[8];
4365
4366 time_to_bytes(the_time, buf);
Bram Moolenaar285bf842016-01-07 22:34:01 +01004367 return fwrite(buf, (size_t)8, (size_t)1, fd) == 1 ? OK : FAIL;
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02004368}
4369
4370/*
Bram Moolenaarf4fba6d2016-06-26 16:44:24 +02004371 * Write time_T to "buf[8]".
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02004372 */
4373 void
Bram Moolenaarf4fba6d2016-06-26 16:44:24 +02004374time_to_bytes(time_T the_time, char_u *buf)
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02004375{
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004376 int c;
4377 int i;
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02004378 int bi = 0;
Bram Moolenaarf4fba6d2016-06-26 16:44:24 +02004379 time_T wtime = the_time;
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004380
Bram Moolenaarf4fba6d2016-06-26 16:44:24 +02004381 /* time_T can be up to 8 bytes in size, more than long_u, thus we
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004382 * can't use put_bytes() here.
4383 * Another problem is that ">>" may do an arithmetic shift that keeps the
Bram Moolenaar644fdff2010-05-30 13:26:21 +02004384 * sign. This happens for large values of wtime. A cast to long_u may
Bram Moolenaarf4fba6d2016-06-26 16:44:24 +02004385 * truncate if time_T is 8 bytes. So only use a cast when it is 4 bytes,
Bram Moolenaar644fdff2010-05-30 13:26:21 +02004386 * it's safe to assume that long_u is 4 bytes or more and when using 8
4387 * bytes the top bit won't be set. */
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004388 for (i = 7; i >= 0; --i)
4389 {
Bram Moolenaarf4fba6d2016-06-26 16:44:24 +02004390 if (i + 1 > (int)sizeof(time_T))
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004391 /* ">>" doesn't work well when shifting more bits than avail */
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02004392 buf[bi++] = 0;
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004393 else
4394 {
Bram Moolenaar644fdff2010-05-30 13:26:21 +02004395#if defined(SIZEOF_TIME_T) && SIZEOF_TIME_T > 4
Bram Moolenaarbbd6afe2010-06-02 20:32:23 +02004396 c = (int)(wtime >> (i * 8));
Bram Moolenaar644fdff2010-05-30 13:26:21 +02004397#else
Bram Moolenaarbbd6afe2010-06-02 20:32:23 +02004398 c = (int)((long_u)wtime >> (i * 8));
Bram Moolenaar644fdff2010-05-30 13:26:21 +02004399#endif
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02004400 buf[bi++] = c;
Bram Moolenaarcdf04202010-05-29 15:11:47 +02004401 }
4402 }
4403}
4404
4405#ifdef _MSC_VER
4406# if (_MSC_VER <= 1200)
4407 # pragma optimize("", on)
4408# endif
4409#endif
4410
4411#endif
Bram Moolenaar10b7b392012-01-10 16:28:45 +01004412
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01004413#if defined(FEAT_QUICKFIX) || defined(FEAT_SPELL) || defined(PROTO)
Bram Moolenaar10b7b392012-01-10 16:28:45 +01004414/*
4415 * Return TRUE if string "s" contains a non-ASCII character (128 or higher).
4416 * When "s" is NULL FALSE is returned.
4417 */
4418 int
Bram Moolenaar9b578142016-01-30 19:39:49 +01004419has_non_ascii(char_u *s)
Bram Moolenaar10b7b392012-01-10 16:28:45 +01004420{
4421 char_u *p;
4422
4423 if (s != NULL)
4424 for (p = s; *p != NUL; ++p)
4425 if (*p >= 128)
4426 return TRUE;
4427 return FALSE;
4428}
4429#endif
Bram Moolenaar93c88e02015-09-15 14:12:05 +02004430
4431#if defined(MESSAGE_QUEUE) || defined(PROTO)
Bram Moolenaarcd1a62d2018-12-14 21:32:02 +01004432# define MAX_REPEAT_PARSE 8
4433
Bram Moolenaar93c88e02015-09-15 14:12:05 +02004434/*
4435 * Process messages that have been queued for netbeans or clientserver.
Bram Moolenaar3a117e12016-10-30 21:57:52 +01004436 * Also check if any jobs have ended.
Bram Moolenaar93c88e02015-09-15 14:12:05 +02004437 * These functions can call arbitrary vimscript and should only be called when
4438 * it is safe to do so.
4439 */
4440 void
Bram Moolenaar9b578142016-01-30 19:39:49 +01004441parse_queued_messages(void)
Bram Moolenaar93c88e02015-09-15 14:12:05 +02004442{
Bram Moolenaarcd1a62d2018-12-14 21:32:02 +01004443 win_T *old_curwin = curwin;
4444 int i;
Bram Moolenaara3f7e582017-11-09 13:21:58 +01004445
Bram Moolenaar94f01952018-09-01 15:30:03 +02004446 // Do not handle messages while redrawing, because it may cause buffers to
4447 // change or be wiped while they are being redrawn.
4448 if (updating_screen)
4449 return;
4450
Bram Moolenaarcd1a62d2018-12-14 21:32:02 +01004451 // Loop when a job ended, but don't keep looping forever.
4452 for (i = 0; i < MAX_REPEAT_PARSE; ++i)
4453 {
4454 // For Win32 mch_breakcheck() does not check for input, do it here.
Bram Moolenaar4f974752019-02-17 17:44:42 +01004455# if defined(MSWIN) && defined(FEAT_JOB_CHANNEL)
Bram Moolenaarcd1a62d2018-12-14 21:32:02 +01004456 channel_handle_events(FALSE);
Bram Moolenaarb7522a22016-02-21 17:20:55 +01004457# endif
4458
Bram Moolenaar93c88e02015-09-15 14:12:05 +02004459# ifdef FEAT_NETBEANS_INTG
Bram Moolenaarcd1a62d2018-12-14 21:32:02 +01004460 // Process the queued netbeans messages.
4461 netbeans_parse_messages();
Bram Moolenaar93c88e02015-09-15 14:12:05 +02004462# endif
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01004463# ifdef FEAT_JOB_CHANNEL
Bram Moolenaarcd1a62d2018-12-14 21:32:02 +01004464 // Write any buffer lines still to be written.
4465 channel_write_any_lines();
Bram Moolenaar8b877ac2016-03-28 19:16:20 +02004466
Bram Moolenaarcd1a62d2018-12-14 21:32:02 +01004467 // Process the messages queued on channels.
4468 channel_parse_messages();
Bram Moolenaar20fb9f32016-01-30 23:20:33 +01004469# endif
Bram Moolenaar95346802015-09-15 15:57:29 +02004470# if defined(FEAT_CLIENTSERVER) && defined(FEAT_X11)
Bram Moolenaarcd1a62d2018-12-14 21:32:02 +01004471 // Process the queued clientserver messages.
4472 server_parse_messages();
Bram Moolenaar93c88e02015-09-15 14:12:05 +02004473# endif
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01004474# ifdef FEAT_JOB_CHANNEL
Bram Moolenaarcd1a62d2018-12-14 21:32:02 +01004475 // Check if any jobs have ended. If so, repeat the above to handle
4476 // changes, e.g. stdin may have been closed.
4477 if (job_check_ended())
4478 continue;
Bram Moolenaaree1cffc2016-02-21 19:14:41 +01004479# endif
Bram Moolenaar2a4857a2019-01-29 22:29:07 +01004480# ifdef FEAT_TERMINAL
4481 free_unused_terminals();
4482# endif
Bram Moolenaarcd1a62d2018-12-14 21:32:02 +01004483 break;
4484 }
Bram Moolenaara3f7e582017-11-09 13:21:58 +01004485
Bram Moolenaar94f01952018-09-01 15:30:03 +02004486 // If the current window changed we need to bail out of the waiting loop.
4487 // E.g. when a job exit callback closes the terminal window.
Bram Moolenaara3f7e582017-11-09 13:21:58 +01004488 if (curwin != old_curwin)
4489 ins_char_typebuf(K_IGNORE);
Bram Moolenaar93c88e02015-09-15 14:12:05 +02004490}
4491#endif
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01004492
Bram Moolenaar51628222016-12-01 23:03:28 +01004493#ifndef PROTO /* proto is defined in vim.h */
4494# ifdef ELAPSED_TIMEVAL
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01004495/*
4496 * Return time in msec since "start_tv".
4497 */
4498 long
4499elapsed(struct timeval *start_tv)
4500{
4501 struct timeval now_tv;
4502
4503 gettimeofday(&now_tv, NULL);
4504 return (now_tv.tv_sec - start_tv->tv_sec) * 1000L
4505 + (now_tv.tv_usec - start_tv->tv_usec) / 1000L;
4506}
Bram Moolenaar51628222016-12-01 23:03:28 +01004507# endif
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01004508
Bram Moolenaar51628222016-12-01 23:03:28 +01004509# ifdef ELAPSED_TICKCOUNT
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01004510/*
4511 * Return time in msec since "start_tick".
4512 */
4513 long
4514elapsed(DWORD start_tick)
4515{
4516 DWORD now = GetTickCount();
4517
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01004518 return (long)now - (long)start_tick;
4519}
Bram Moolenaar51628222016-12-01 23:03:28 +01004520# endif
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01004521#endif
Bram Moolenaar20608922018-04-21 22:30:08 +02004522
4523#if defined(FEAT_JOB_CHANNEL) \
4524 || (defined(UNIX) && (!defined(USE_SYSTEM) \
4525 || (defined(FEAT_GUI) && defined(FEAT_TERMINAL)))) \
4526 || defined(PROTO)
4527/*
4528 * Parse "cmd" and put the white-separated parts in "argv".
4529 * "argv" is an allocated array with "argc" entries and room for 4 more.
4530 * Returns FAIL when out of memory.
4531 */
4532 int
4533mch_parse_cmd(char_u *cmd, int use_shcf, char ***argv, int *argc)
4534{
4535 int i;
4536 char_u *p, *d;
4537 int inquote;
4538
4539 /*
4540 * Do this loop twice:
4541 * 1: find number of arguments
4542 * 2: separate them and build argv[]
4543 */
4544 for (i = 0; i < 2; ++i)
4545 {
4546 p = skipwhite(cmd);
4547 inquote = FALSE;
4548 *argc = 0;
4549 for (;;)
4550 {
4551 if (i == 1)
4552 (*argv)[*argc] = (char *)p;
4553 ++*argc;
4554 d = p;
4555 while (*p != NUL && (inquote || (*p != ' ' && *p != TAB)))
4556 {
4557 if (p[0] == '"')
Bram Moolenaar1df2fa42018-10-07 21:36:11 +02004558 // quotes surrounding an argument and are dropped
Bram Moolenaar20608922018-04-21 22:30:08 +02004559 inquote = !inquote;
4560 else
4561 {
Bram Moolenaar1df2fa42018-10-07 21:36:11 +02004562 if (rem_backslash(p))
Bram Moolenaar20608922018-04-21 22:30:08 +02004563 {
Bram Moolenaar1df2fa42018-10-07 21:36:11 +02004564 // First pass: skip over "\ " and "\"".
4565 // Second pass: Remove the backslash.
Bram Moolenaar20608922018-04-21 22:30:08 +02004566 ++p;
4567 }
4568 if (i == 1)
4569 *d++ = *p;
4570 }
4571 ++p;
4572 }
4573 if (*p == NUL)
4574 {
4575 if (i == 1)
4576 *d++ = NUL;
4577 break;
4578 }
4579 if (i == 1)
4580 *d++ = NUL;
4581 p = skipwhite(p + 1);
4582 }
4583 if (*argv == NULL)
4584 {
4585 if (use_shcf)
4586 {
4587 /* Account for possible multiple args in p_shcf. */
4588 p = p_shcf;
4589 for (;;)
4590 {
4591 p = skiptowhite(p);
4592 if (*p == NUL)
4593 break;
4594 ++*argc;
4595 p = skipwhite(p);
4596 }
4597 }
4598
Bram Moolenaarc799fe22019-05-28 23:08:19 +02004599 *argv = ALLOC_MULT(char *, *argc + 4);
Bram Moolenaar20608922018-04-21 22:30:08 +02004600 if (*argv == NULL) /* out of memory */
4601 return FAIL;
4602 }
4603 }
4604 return OK;
4605}
Bram Moolenaarebe74b72018-04-21 23:34:43 +02004606
4607# if defined(FEAT_JOB_CHANNEL) || defined(PROTO)
4608/*
4609 * Build "argv[argc]" from the string "cmd".
4610 * "argv[argc]" is set to NULL;
4611 * Return FAIL when out of memory.
4612 */
4613 int
4614build_argv_from_string(char_u *cmd, char ***argv, int *argc)
4615{
4616 char_u *cmd_copy;
4617 int i;
4618
4619 /* Make a copy, parsing will modify "cmd". */
4620 cmd_copy = vim_strsave(cmd);
4621 if (cmd_copy == NULL
4622 || mch_parse_cmd(cmd_copy, FALSE, argv, argc) == FAIL)
4623 {
4624 vim_free(cmd_copy);
4625 return FAIL;
4626 }
4627 for (i = 0; i < *argc; i++)
4628 (*argv)[i] = (char *)vim_strsave((char_u *)(*argv)[i]);
4629 (*argv)[*argc] = NULL;
4630 vim_free(cmd_copy);
4631 return OK;
4632}
4633
4634/*
4635 * Build "argv[argc]" from the list "l".
4636 * "argv[argc]" is set to NULL;
4637 * Return FAIL when out of memory.
4638 */
4639 int
4640build_argv_from_list(list_T *l, char ***argv, int *argc)
4641{
4642 listitem_T *li;
4643 char_u *s;
4644
4645 /* Pass argv[] to mch_call_shell(). */
Bram Moolenaarc799fe22019-05-28 23:08:19 +02004646 *argv = ALLOC_MULT(char *, l->lv_len + 1);
Bram Moolenaarebe74b72018-04-21 23:34:43 +02004647 if (*argv == NULL)
4648 return FAIL;
4649 *argc = 0;
4650 for (li = l->lv_first; li != NULL; li = li->li_next)
4651 {
Bram Moolenaard155d7a2018-12-21 16:04:21 +01004652 s = tv_get_string_chk(&li->li_tv);
Bram Moolenaarebe74b72018-04-21 23:34:43 +02004653 if (s == NULL)
4654 {
4655 int i;
4656
4657 for (i = 0; i < *argc; ++i)
4658 vim_free((*argv)[i]);
4659 return FAIL;
4660 }
4661 (*argv)[*argc] = (char *)vim_strsave(s);
4662 *argc += 1;
4663 }
4664 (*argv)[*argc] = NULL;
4665 return OK;
4666}
4667# endif
Bram Moolenaar20608922018-04-21 22:30:08 +02004668#endif
Bram Moolenaarafde13b2019-04-28 19:46:49 +02004669
4670#if defined(FEAT_SESSION) || defined(PROTO)
4671/*
4672 * Generate a script that can be used to restore the current editing session.
4673 * Save the value of v:this_session before running :mksession in order to make
4674 * automagic session save fully transparent. Return TRUE on success.
4675 */
4676 int
4677write_session_file(char_u *filename)
4678{
4679 char_u *escaped_filename;
4680 char *mksession_cmdline;
4681 unsigned int save_ssop_flags;
4682 int failed;
4683
4684 /*
4685 * Build an ex command line to create a script that restores the current
4686 * session if executed. Escape the filename to avoid nasty surprises.
4687 */
4688 escaped_filename = vim_strsave_escaped(filename, escape_chars);
4689 if (escaped_filename == NULL)
4690 return FALSE;
Bram Moolenaarc799fe22019-05-28 23:08:19 +02004691 mksession_cmdline = alloc(10 + (int)STRLEN(escaped_filename) + 1);
Bram Moolenaarafde13b2019-04-28 19:46:49 +02004692 if (mksession_cmdline == NULL)
4693 {
4694 vim_free(escaped_filename);
4695 return FALSE;
4696 }
4697 strcpy(mksession_cmdline, "mksession ");
4698 STRCAT(mksession_cmdline, escaped_filename);
4699 vim_free(escaped_filename);
4700
4701 /*
4702 * Use a reasonable hardcoded set of 'sessionoptions' flags to avoid
4703 * unpredictable effects when the session is saved automatically. Also,
4704 * we definitely need SSOP_GLOBALS to be able to restore v:this_session.
4705 * Don't use SSOP_BUFFERS to prevent the buffer list from becoming
4706 * enormously large if the GNOME session feature is used regularly.
4707 */
4708 save_ssop_flags = ssop_flags;
4709 ssop_flags = (SSOP_BLANK|SSOP_CURDIR|SSOP_FOLDS|SSOP_GLOBALS
4710 |SSOP_HELP|SSOP_OPTIONS|SSOP_WINSIZE|SSOP_TABPAGES);
4711
4712 do_cmdline_cmd((char_u *)"let Save_VV_this_session = v:this_session");
4713 failed = (do_cmdline_cmd((char_u *)mksession_cmdline) == FAIL);
4714 do_cmdline_cmd((char_u *)"let v:this_session = Save_VV_this_session");
4715 do_unlet((char_u *)"Save_VV_this_session", TRUE);
4716
4717 ssop_flags = save_ssop_flags;
4718 vim_free(mksession_cmdline);
4719
4720 /*
4721 * Reopen the file and append a command to restore v:this_session,
4722 * as if this save never happened. This is to avoid conflicts with
4723 * the user's own sessions. FIXME: It's probably less hackish to add
4724 * a "stealth" flag to 'sessionoptions' -- gotta ask Bram.
4725 */
4726 if (!failed)
4727 {
4728 FILE *fd;
4729
4730 fd = open_exfile(filename, TRUE, APPENDBIN);
4731
4732 failed = (fd == NULL
4733 || put_line(fd, "let v:this_session = Save_VV_this_session") == FAIL
4734 || put_line(fd, "unlet Save_VV_this_session") == FAIL);
4735
4736 if (fd != NULL && fclose(fd) != 0)
4737 failed = TRUE;
4738
4739 if (failed)
4740 mch_remove(filename);
4741 }
4742
4743 return !failed;
4744}
4745#endif