blob: f7253438d7dfd2aef61a53f76b81cb0ace9f3208 [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 * ex_eval.c: functions for Ex command line for the +eval feature.
12 */
13
14#include "vim.h"
15
16#if defined(FEAT_EVAL) || defined(PROTO)
17
Bram Moolenaarddef1292019-12-16 17:10:33 +010018static char *get_end_emsg(cstack_T *cstack);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019
20/*
21 * Exception handling terms:
22 *
23 * :try ":try" command \
24 * ... try block |
25 * :catch RE ":catch" command |
26 * ... catch clause |- try conditional
27 * :finally ":finally" command |
28 * ... finally clause |
29 * :endtry ":endtry" command /
30 *
31 * The try conditional may have any number of catch clauses and at most one
32 * finally clause. A ":throw" command can be inside the try block, a catch
33 * clause, the finally clause, or in a function called or script sourced from
34 * there or even outside the try conditional. Try conditionals may be nested.
35 */
36
37/*
38 * Configuration whether an exception is thrown on error or interrupt. When
39 * the preprocessor macros below evaluate to FALSE, an error (did_emsg) or
40 * interrupt (got_int) under an active try conditional terminates the script
41 * after the non-active finally clauses of all active try conditionals have been
42 * executed. Otherwise, errors and/or interrupts are converted into catchable
43 * exceptions (did_throw additionally set), which terminate the script only if
44 * not caught. For user exceptions, only did_throw is set. (Note: got_int can
Bram Moolenaar84a05ac2013-05-06 04:24:17 +020045 * be set asynchronously afterwards by a SIGINT, so did_throw && got_int is not
Bram Moolenaar071d4272004-06-13 20:20:40 +000046 * a reliant test that the exception currently being thrown is an interrupt
47 * exception. Similarly, did_emsg can be set afterwards on an error in an
48 * (unskipped) conditional command inside an inactive conditional, so did_throw
49 * && did_emsg is not a reliant test that the exception currently being thrown
50 * is an error exception.) - The macros can be defined as expressions checking
51 * for a variable that is allowed to be changed during execution of a script.
52 */
53#if 0
Bram Moolenaar217e1b82019-12-01 21:41:28 +010054// Expressions used for testing during the development phase.
Bram Moolenaar071d4272004-06-13 20:20:40 +000055# define THROW_ON_ERROR (!eval_to_number("$VIMNOERRTHROW"))
56# define THROW_ON_INTERRUPT (!eval_to_number("$VIMNOINTTHROW"))
57# define THROW_TEST
58#else
Bram Moolenaar217e1b82019-12-01 21:41:28 +010059// Values used for the Vim release.
Bram Moolenaar071d4272004-06-13 20:20:40 +000060# define THROW_ON_ERROR TRUE
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000061# define THROW_ON_ERROR_TRUE
Bram Moolenaar071d4272004-06-13 20:20:40 +000062# define THROW_ON_INTERRUPT TRUE
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000063# define THROW_ON_INTERRUPT_TRUE
Bram Moolenaar071d4272004-06-13 20:20:40 +000064#endif
65
Bram Moolenaar071d4272004-06-13 20:20:40 +000066/*
67 * When several errors appear in a row, setting "force_abort" is delayed until
68 * the failing command returned. "cause_abort" is set to TRUE meanwhile, in
69 * order to indicate that situation. This is useful when "force_abort" was set
70 * during execution of a function call from an expression: the aborting of the
71 * expression evaluation is done without producing any error messages, but all
72 * error messages on parsing errors during the expression evaluation are given
73 * (even if a try conditional is active).
74 */
75static int cause_abort = FALSE;
76
77/*
Bram Moolenaarccc18222007-05-10 18:25:20 +000078 * Return TRUE when immediately aborting on error, or when an interrupt
Bram Moolenaar071d4272004-06-13 20:20:40 +000079 * occurred or an exception was thrown but not caught. Use for ":{range}call"
80 * to check whether an aborted function that does not handle a range itself
81 * should be called again for the next line in the range. Also used for
82 * cancelling expression evaluation after a function call caused an immediate
83 * abort. Note that the first emsg() call temporarily resets "force_abort"
84 * until the throw point for error messages has been reached. That is, during
85 * cancellation of an expression evaluation after an aborting function call or
86 * due to a parsing error, aborting() always returns the same value.
Bram Moolenaar67a2deb2019-11-25 00:05:32 +010087 * "got_int" is also set by calling interrupt().
Bram Moolenaar071d4272004-06-13 20:20:40 +000088 */
89 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +010090aborting(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +000091{
92 return (did_emsg && force_abort) || got_int || did_throw;
93}
94
95/*
96 * The value of "force_abort" is temporarily reset by the first emsg() call
97 * during an expression evaluation, and "cause_abort" is used instead. It might
98 * be necessary to restore "force_abort" even before the throw point for the
99 * error message has been reached. update_force_abort() should be called then.
100 */
101 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100102update_force_abort(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000103{
104 if (cause_abort)
105 force_abort = TRUE;
106}
107
108/*
109 * Return TRUE if a command with a subcommand resulting in "retcode" should
110 * abort the script processing. Can be used to suppress an autocommand after
111 * execution of a failing subcommand as long as the error message has not been
112 * displayed and actually caused the abortion.
113 */
114 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100115should_abort(int retcode)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000116{
117 return ((retcode == FAIL && trylevel != 0 && !emsg_silent) || aborting());
118}
119
120/*
121 * Return TRUE if a function with the "abort" flag should not be considered
122 * ended on an error. This means that parsing commands is continued in order
123 * to find finally clauses to be executed, and that some errors in skipped
124 * commands are still reported.
125 */
126 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100127aborted_in_try(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000128{
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100129 // This function is only called after an error. In this case, "force_abort"
130 // determines whether searching for finally clauses is necessary.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000131 return force_abort;
132}
133
134/*
135 * cause_errthrow(): Cause a throw of an error exception if appropriate.
136 * Return TRUE if the error message should not be displayed by emsg().
137 * Sets "ignore", if the emsg() call should be ignored completely.
138 *
139 * When several messages appear in the same command, the first is usually the
140 * most specific one and used as the exception value. The "severe" flag can be
141 * set to TRUE, if a later but severer message should be used instead.
142 */
143 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100144cause_errthrow(
145 char_u *mesg,
146 int severe,
147 int *ignore)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000148{
149 struct msglist *elem;
150 struct msglist **plist;
151
152 /*
Bram Moolenaar57657d82006-04-21 22:12:41 +0000153 * Do nothing when displaying the interrupt message or reporting an
154 * uncaught exception (which has already been discarded then) at the top
155 * level. Also when no exception can be thrown. The message will be
156 * displayed by emsg().
Bram Moolenaar071d4272004-06-13 20:20:40 +0000157 */
158 if (suppress_errthrow)
159 return FALSE;
160
161 /*
Bram Moolenaar57657d82006-04-21 22:12:41 +0000162 * If emsg() has not been called previously, temporarily reset
163 * "force_abort" until the throw point for error messages has been
164 * reached. This ensures that aborting() returns the same value for all
165 * errors that appear in the same command. This means particularly that
166 * for parsing errors during expression evaluation emsg() will be called
167 * multiply, even when the expression is evaluated from a finally clause
168 * that was activated due to an aborting error, interrupt, or exception.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000169 */
170 if (!did_emsg)
171 {
172 cause_abort = force_abort;
173 force_abort = FALSE;
174 }
175
176 /*
177 * If no try conditional is active and no exception is being thrown and
178 * there has not been an error in a try conditional or a throw so far, do
Bram Moolenaar57657d82006-04-21 22:12:41 +0000179 * nothing (for compatibility of non-EH scripts). The message will then
180 * be displayed by emsg(). When ":silent!" was used and we are not
181 * currently throwing an exception, do nothing. The message text will
182 * then be stored to v:errmsg by emsg() without displaying it.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000183 */
184 if (((trylevel == 0 && !cause_abort) || emsg_silent) && !did_throw)
185 return FALSE;
186
187 /*
188 * Ignore an interrupt message when inside a try conditional or when an
Bram Moolenaar57657d82006-04-21 22:12:41 +0000189 * exception is being thrown or when an error in a try conditional or
190 * throw has been detected previously. This is important in order that an
Bram Moolenaar071d4272004-06-13 20:20:40 +0000191 * interrupt exception is catchable by the innermost try conditional and
192 * not replaced by an interrupt message error exception.
193 */
194 if (mesg == (char_u *)_(e_interr))
195 {
196 *ignore = TRUE;
197 return TRUE;
198 }
199
200 /*
201 * Ensure that all commands in nested function calls and sourced files
202 * are aborted immediately.
203 */
204 cause_abort = TRUE;
205
206 /*
207 * When an exception is being thrown, some commands (like conditionals) are
208 * not skipped. Errors in those commands may affect what of the subsequent
209 * commands are regarded part of catch and finally clauses. Catching the
210 * exception would then cause execution of commands not intended by the
211 * user, who wouldn't even get aware of the problem. Therefor, discard the
212 * exception currently being thrown to prevent it from being caught. Just
213 * execute finally clauses and terminate.
214 */
215 if (did_throw)
216 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100217 // When discarding an interrupt exception, reset got_int to prevent the
218 // same interrupt being converted to an exception again and discarding
219 // the error exception we are about to throw here.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000220 if (current_exception->type == ET_INTERRUPT)
221 got_int = FALSE;
222 discard_current_exception();
223 }
224
225#ifdef THROW_TEST
226 if (!THROW_ON_ERROR)
227 {
228 /*
229 * Print error message immediately without searching for a matching
230 * catch clause; just finally clauses are executed before the script
231 * is terminated.
232 */
233 return FALSE;
234 }
235 else
236#endif
237 {
238 /*
239 * Prepare the throw of an error exception, so that everything will
240 * be aborted (except for executing finally clauses), until the error
241 * exception is caught; if still uncaught at the top level, the error
242 * message will be displayed and the script processing terminated
243 * then. - This function has no access to the conditional stack.
244 * Thus, the actual throw is made after the failing command has
245 * returned. - Throw only the first of several errors in a row, except
246 * a severe error is following.
247 */
248 if (msg_list != NULL)
249 {
250 plist = msg_list;
251 while (*plist != NULL)
252 plist = &(*plist)->next;
253
Bram Moolenaarc799fe22019-05-28 23:08:19 +0200254 elem = ALLOC_ONE(struct msglist);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000255 if (elem == NULL)
256 {
257 suppress_errthrow = TRUE;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100258 emsg(_(e_outofmem));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000259 }
260 else
261 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100262 elem->msg = (char *)vim_strsave(mesg);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000263 if (elem->msg == NULL)
264 {
265 vim_free(elem);
266 suppress_errthrow = TRUE;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100267 emsg(_(e_outofmem));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000268 }
269 else
270 {
271 elem->next = NULL;
272 elem->throw_msg = NULL;
273 *plist = elem;
274 if (plist == msg_list || severe)
275 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100276 char *tmsg;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000277
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100278 // Skip the extra "Vim " prefix for message "E458".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000279 tmsg = elem->msg;
280 if (STRNCMP(tmsg, "Vim E", 5) == 0
281 && VIM_ISDIGIT(tmsg[5])
282 && VIM_ISDIGIT(tmsg[6])
283 && VIM_ISDIGIT(tmsg[7])
284 && tmsg[8] == ':'
285 && tmsg[9] == ' ')
286 (*msg_list)->throw_msg = &tmsg[4];
287 else
288 (*msg_list)->throw_msg = tmsg;
289 }
290 }
291 }
292 }
293 return TRUE;
294 }
295}
296
297/*
298 * Free a "msg_list" and the messages it contains.
299 */
300 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100301free_msglist(struct msglist *l)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000302{
303 struct msglist *messages, *next;
304
305 messages = l;
306 while (messages != NULL)
307 {
308 next = messages->next;
309 vim_free(messages->msg);
310 vim_free(messages);
311 messages = next;
312 }
313}
314
315/*
Bram Moolenaar9fee7d42013-11-28 17:04:43 +0100316 * Free global "*msg_list" and the messages it contains, then set "*msg_list"
317 * to NULL.
318 */
319 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100320free_global_msglist(void)
Bram Moolenaar9fee7d42013-11-28 17:04:43 +0100321{
322 free_msglist(*msg_list);
323 *msg_list = NULL;
324}
325
326/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000327 * Throw the message specified in the call to cause_errthrow() above as an
328 * error exception. If cstack is NULL, postpone the throw until do_cmdline()
329 * has returned (see do_one_cmd()).
330 */
331 void
Bram Moolenaarddef1292019-12-16 17:10:33 +0100332do_errthrow(cstack_T *cstack, char_u *cmdname)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000333{
334 /*
335 * Ensure that all commands in nested function calls and sourced files
336 * are aborted immediately.
337 */
338 if (cause_abort)
339 {
340 cause_abort = FALSE;
341 force_abort = TRUE;
342 }
343
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100344 // If no exception is to be thrown or the conversion should be done after
345 // returning to a previous invocation of do_one_cmd(), do nothing.
Bram Moolenaar4632d292006-11-28 17:36:37 +0000346 if (msg_list == NULL || *msg_list == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000347 return;
348
349 if (throw_exception(*msg_list, ET_ERROR, cmdname) == FAIL)
350 free_msglist(*msg_list);
351 else
352 {
353 if (cstack != NULL)
354 do_throw(cstack);
355 else
356 need_rethrow = TRUE;
357 }
358 *msg_list = NULL;
359}
360
361/*
362 * do_intthrow(): Replace the current exception by an interrupt or interrupt
363 * exception if appropriate. Return TRUE if the current exception is discarded,
364 * FALSE otherwise.
365 */
366 int
Bram Moolenaarddef1292019-12-16 17:10:33 +0100367do_intthrow(cstack_T *cstack)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000368{
369 /*
370 * If no interrupt occurred or no try conditional is active and no exception
371 * is being thrown, do nothing (for compatibility of non-EH scripts).
372 */
373 if (!got_int || (trylevel == 0 && !did_throw))
374 return FALSE;
375
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100376#ifdef THROW_TEST // avoid warning for condition always true
Bram Moolenaar071d4272004-06-13 20:20:40 +0000377 if (!THROW_ON_INTERRUPT)
378 {
379 /*
380 * The interrupt aborts everything except for executing finally clauses.
381 * Discard any user or error or interrupt exception currently being
382 * thrown.
383 */
384 if (did_throw)
385 discard_current_exception();
386 }
387 else
388#endif
389 {
390 /*
391 * Throw an interrupt exception, so that everything will be aborted
392 * (except for executing finally clauses), until the interrupt exception
393 * is caught; if still uncaught at the top level, the script processing
394 * will be terminated then. - If an interrupt exception is already
395 * being thrown, do nothing.
396 *
397 */
398 if (did_throw)
399 {
400 if (current_exception->type == ET_INTERRUPT)
401 return FALSE;
402
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100403 // An interrupt exception replaces any user or error exception.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000404 discard_current_exception();
405 }
406 if (throw_exception("Vim:Interrupt", ET_INTERRUPT, NULL) != FAIL)
407 do_throw(cstack);
408 }
409
410 return TRUE;
411}
412
Bram Moolenaar071d4272004-06-13 20:20:40 +0000413/*
Bram Moolenaar9fee7d42013-11-28 17:04:43 +0100414 * Get an exception message that is to be stored in current_exception->value.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000415 */
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100416 char *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100417get_exception_string(
418 void *value,
Bram Moolenaar8a5883b2016-11-10 20:20:05 +0100419 except_type_T type,
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100420 char_u *cmdname,
421 int *should_free)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000422{
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100423 char *ret;
424 char *mesg;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000425 int cmdlen;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100426 char *p, *val;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000427
428 if (type == ET_ERROR)
429 {
Bram Moolenaar9ef00be2016-03-06 14:58:28 +0100430 *should_free = TRUE;
Bram Moolenaar9fee7d42013-11-28 17:04:43 +0100431 mesg = ((struct msglist *)value)->throw_msg;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000432 if (cmdname != NULL && *cmdname != NUL)
433 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000434 cmdlen = (int)STRLEN(cmdname);
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100435 ret = (char *)vim_strnsave((char_u *)"Vim(",
Bram Moolenaar071d4272004-06-13 20:20:40 +0000436 4 + cmdlen + 2 + (int)STRLEN(mesg));
Bram Moolenaar9fee7d42013-11-28 17:04:43 +0100437 if (ret == NULL)
438 return ret;
439 STRCPY(&ret[4], cmdname);
440 STRCPY(&ret[4 + cmdlen], "):");
441 val = ret + 4 + cmdlen + 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000442 }
443 else
444 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100445 ret = (char *)vim_strnsave((char_u *)"Vim:", 4 + (int)STRLEN(mesg));
Bram Moolenaar9fee7d42013-11-28 17:04:43 +0100446 if (ret == NULL)
447 return ret;
448 val = ret + 4;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000449 }
450
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100451 // msg_add_fname may have been used to prefix the message with a file
452 // name in quotes. In the exception value, put the file name in
453 // parentheses and move it to the end.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000454 for (p = mesg; ; p++)
455 {
456 if (*p == NUL
457 || (*p == 'E'
458 && VIM_ISDIGIT(p[1])
459 && (p[2] == ':'
460 || (VIM_ISDIGIT(p[2])
461 && (p[3] == ':'
462 || (VIM_ISDIGIT(p[3])
463 && p[4] == ':'))))))
464 {
Bram Moolenaar051b7822005-05-19 21:00:46 +0000465 if (*p == NUL || p == mesg)
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100466 STRCAT(val, mesg); // 'E123' missing or at beginning
Bram Moolenaar071d4272004-06-13 20:20:40 +0000467 else
468 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100469 // '"filename" E123: message text'
Bram Moolenaar071d4272004-06-13 20:20:40 +0000470 if (mesg[0] != '"' || p-2 < &mesg[1] ||
471 p[-2] != '"' || p[-1] != ' ')
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100472 // "E123:" is part of the file name.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000473 continue;
474
475 STRCAT(val, p);
476 p[-2] = NUL;
477 sprintf((char *)(val + STRLEN(p)), " (%s)", &mesg[1]);
478 p[-2] = '"';
479 }
480 break;
481 }
482 }
483 }
484 else
Bram Moolenaar9fee7d42013-11-28 17:04:43 +0100485 {
486 *should_free = FALSE;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100487 ret = value;
Bram Moolenaar9fee7d42013-11-28 17:04:43 +0100488 }
489
490 return ret;
491}
492
493
494/*
495 * Throw a new exception. Return FAIL when out of memory or it was tried to
496 * throw an illegal user exception. "value" is the exception string for a
497 * user or interrupt exception, or points to a message list in case of an
498 * error exception.
499 */
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100500 int
Bram Moolenaar8a5883b2016-11-10 20:20:05 +0100501throw_exception(void *value, except_type_T type, char_u *cmdname)
Bram Moolenaar9fee7d42013-11-28 17:04:43 +0100502{
503 except_T *excp;
504 int should_free;
505
506 /*
507 * Disallow faking Interrupt or error exceptions as user exceptions. They
508 * would be treated differently from real interrupt or error exceptions
509 * when no active try block is found, see do_cmdline().
510 */
511 if (type == ET_USER)
512 {
513 if (STRNCMP((char_u *)value, "Vim", 3) == 0
514 && (((char_u *)value)[3] == NUL || ((char_u *)value)[3] == ':'
515 || ((char_u *)value)[3] == '('))
516 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100517 emsg(_("E608: Cannot :throw exceptions with 'Vim' prefix"));
Bram Moolenaar9fee7d42013-11-28 17:04:43 +0100518 goto fail;
519 }
520 }
521
Bram Moolenaarc799fe22019-05-28 23:08:19 +0200522 excp = ALLOC_ONE(except_T);
Bram Moolenaar9fee7d42013-11-28 17:04:43 +0100523 if (excp == NULL)
524 goto nomem;
525
526 if (type == ET_ERROR)
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100527 // Store the original message and prefix the exception value with
528 // "Vim:" or, if a command name is given, "Vim(cmdname):".
Bram Moolenaar9fee7d42013-11-28 17:04:43 +0100529 excp->messages = (struct msglist *)value;
530
531 excp->value = get_exception_string(value, type, cmdname, &should_free);
532 if (excp->value == NULL && should_free)
533 goto nomem;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000534
535 excp->type = type;
Bram Moolenaar1a47ae32019-12-29 23:04:25 +0100536 excp->throw_name = estack_sfile();
537 if (excp->throw_name == NULL)
538 excp->throw_name = vim_strsave((char_u *)"");
Bram Moolenaar071d4272004-06-13 20:20:40 +0000539 if (excp->throw_name == NULL)
540 {
Bram Moolenaar9fee7d42013-11-28 17:04:43 +0100541 if (should_free)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000542 vim_free(excp->value);
543 goto nomem;
544 }
Bram Moolenaar1a47ae32019-12-29 23:04:25 +0100545 excp->throw_lnum = SOURCING_LNUM;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000546
547 if (p_verbose >= 13 || debug_break_level > 0)
548 {
549 int save_msg_silent = msg_silent;
550
551 if (debug_break_level > 0)
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100552 msg_silent = FALSE; // display messages
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +0000553 else
554 verbose_enter();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000555 ++no_wait_return;
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +0000556 if (debug_break_level > 0 || *p_vfile == NUL)
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100557 msg_scroll = TRUE; // always scroll up, don't overwrite
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +0000558
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100559 smsg(_("Exception thrown: %s"), excp->value);
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100560 msg_puts("\n"); // don't overwrite this either
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +0000561
562 if (debug_break_level > 0 || *p_vfile == NUL)
563 cmdline_row = msg_row;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000564 --no_wait_return;
565 if (debug_break_level > 0)
566 msg_silent = save_msg_silent;
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +0000567 else
568 verbose_leave();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000569 }
570
571 current_exception = excp;
572 return OK;
573
574nomem:
575 vim_free(excp);
576 suppress_errthrow = TRUE;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100577 emsg(_(e_outofmem));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000578fail:
579 current_exception = NULL;
580 return FAIL;
581}
582
583/*
584 * Discard an exception. "was_finished" is set when the exception has been
585 * caught and the catch clause has been ended normally.
586 */
587 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100588discard_exception(except_T *excp, int was_finished)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000589{
590 char_u *saved_IObuff;
591
592 if (excp == NULL)
593 {
Bram Moolenaar95f09602016-11-10 20:01:45 +0100594 internal_error("discard_exception()");
Bram Moolenaar071d4272004-06-13 20:20:40 +0000595 return;
596 }
597
598 if (p_verbose >= 13 || debug_break_level > 0)
599 {
600 int save_msg_silent = msg_silent;
601
602 saved_IObuff = vim_strsave(IObuff);
603 if (debug_break_level > 0)
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100604 msg_silent = FALSE; // display messages
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +0000605 else
606 verbose_enter();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000607 ++no_wait_return;
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +0000608 if (debug_break_level > 0 || *p_vfile == NUL)
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100609 msg_scroll = TRUE; // always scroll up, don't overwrite
Bram Moolenaar051b7822005-05-19 21:00:46 +0000610 smsg(was_finished
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100611 ? _("Exception finished: %s")
612 : _("Exception discarded: %s"),
Bram Moolenaar071d4272004-06-13 20:20:40 +0000613 excp->value);
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100614 msg_puts("\n"); // don't overwrite this either
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +0000615 if (debug_break_level > 0 || *p_vfile == NUL)
616 cmdline_row = msg_row;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000617 --no_wait_return;
618 if (debug_break_level > 0)
619 msg_silent = save_msg_silent;
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +0000620 else
621 verbose_leave();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000622 STRCPY(IObuff, saved_IObuff);
623 vim_free(saved_IObuff);
624 }
625 if (excp->type != ET_INTERRUPT)
626 vim_free(excp->value);
627 if (excp->type == ET_ERROR)
628 free_msglist(excp->messages);
629 vim_free(excp->throw_name);
630 vim_free(excp);
631}
632
633/*
634 * Discard the exception currently being thrown.
635 */
636 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100637discard_current_exception(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000638{
Bram Moolenaarcae24be2017-07-10 22:12:10 +0200639 if (current_exception != NULL)
640 {
641 discard_exception(current_exception, FALSE);
642 current_exception = NULL;
643 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000644 did_throw = FALSE;
645 need_rethrow = FALSE;
646}
647
648/*
649 * Put an exception on the caught stack.
650 */
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100651 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100652catch_exception(except_T *excp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000653{
654 excp->caught = caught_stack;
655 caught_stack = excp;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100656 set_vim_var_string(VV_EXCEPTION, (char_u *)excp->value, -1);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000657 if (*excp->throw_name != NUL)
658 {
659 if (excp->throw_lnum != 0)
Bram Moolenaar051b7822005-05-19 21:00:46 +0000660 vim_snprintf((char *)IObuff, IOSIZE, _("%s, line %ld"),
661 excp->throw_name, (long)excp->throw_lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000662 else
Bram Moolenaar051b7822005-05-19 21:00:46 +0000663 vim_snprintf((char *)IObuff, IOSIZE, "%s", excp->throw_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000664 set_vim_var_string(VV_THROWPOINT, IObuff, -1);
665 }
666 else
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100667 // throw_name not set on an exception from a command that was typed.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000668 set_vim_var_string(VV_THROWPOINT, NULL, -1);
669
670 if (p_verbose >= 13 || debug_break_level > 0)
671 {
672 int save_msg_silent = msg_silent;
673
674 if (debug_break_level > 0)
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100675 msg_silent = FALSE; // display messages
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +0000676 else
677 verbose_enter();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000678 ++no_wait_return;
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +0000679 if (debug_break_level > 0 || *p_vfile == NUL)
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100680 msg_scroll = TRUE; // always scroll up, don't overwrite
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +0000681
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100682 smsg(_("Exception caught: %s"), excp->value);
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100683 msg_puts("\n"); // don't overwrite this either
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +0000684
685 if (debug_break_level > 0 || *p_vfile == NUL)
686 cmdline_row = msg_row;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000687 --no_wait_return;
688 if (debug_break_level > 0)
689 msg_silent = save_msg_silent;
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +0000690 else
691 verbose_leave();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000692 }
693}
694
695/*
696 * Remove an exception from the caught stack.
697 */
698 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100699finish_exception(except_T *excp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000700{
701 if (excp != caught_stack)
Bram Moolenaar95f09602016-11-10 20:01:45 +0100702 internal_error("finish_exception()");
Bram Moolenaar071d4272004-06-13 20:20:40 +0000703 caught_stack = caught_stack->caught;
704 if (caught_stack != NULL)
705 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100706 set_vim_var_string(VV_EXCEPTION, (char_u *)caught_stack->value, -1);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000707 if (*caught_stack->throw_name != NUL)
708 {
709 if (caught_stack->throw_lnum != 0)
Bram Moolenaar051b7822005-05-19 21:00:46 +0000710 vim_snprintf((char *)IObuff, IOSIZE,
Bram Moolenaar071d4272004-06-13 20:20:40 +0000711 _("%s, line %ld"), caught_stack->throw_name,
712 (long)caught_stack->throw_lnum);
713 else
Bram Moolenaar051b7822005-05-19 21:00:46 +0000714 vim_snprintf((char *)IObuff, IOSIZE, "%s",
715 caught_stack->throw_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000716 set_vim_var_string(VV_THROWPOINT, IObuff, -1);
717 }
718 else
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100719 // throw_name not set on an exception from a command that was
720 // typed.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000721 set_vim_var_string(VV_THROWPOINT, NULL, -1);
722 }
723 else
724 {
725 set_vim_var_string(VV_EXCEPTION, NULL, -1);
726 set_vim_var_string(VV_THROWPOINT, NULL, -1);
727 }
728
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100729 // Discard the exception, but use the finish message for 'verbose'.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000730 discard_exception(excp, TRUE);
731}
732
733/*
734 * Flags specifying the message displayed by report_pending.
735 */
736#define RP_MAKE 0
737#define RP_RESUME 1
738#define RP_DISCARD 2
739
740/*
741 * Report information about something pending in a finally clause if required by
742 * the 'verbose' option or when debugging. "action" tells whether something is
743 * made pending or something pending is resumed or discarded. "pending" tells
744 * what is pending. "value" specifies the return value for a pending ":return"
745 * or the exception value for a pending exception.
746 */
747 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100748report_pending(int action, int pending, void *value)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000749{
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100750 char *mesg;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000751 char *s;
752 int save_msg_silent;
753
754
755 switch (action)
756 {
757 case RP_MAKE:
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100758 mesg = _("%s made pending");
Bram Moolenaar071d4272004-06-13 20:20:40 +0000759 break;
760 case RP_RESUME:
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100761 mesg = _("%s resumed");
Bram Moolenaar071d4272004-06-13 20:20:40 +0000762 break;
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100763 // case RP_DISCARD:
Bram Moolenaar071d4272004-06-13 20:20:40 +0000764 default:
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100765 mesg = _("%s discarded");
Bram Moolenaar071d4272004-06-13 20:20:40 +0000766 break;
767 }
768
769 switch (pending)
770 {
771 case CSTP_NONE:
772 return;
773
774 case CSTP_CONTINUE:
775 s = ":continue";
776 break;
777 case CSTP_BREAK:
778 s = ":break";
779 break;
780 case CSTP_FINISH:
781 s = ":finish";
782 break;
783 case CSTP_RETURN:
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100784 // ":return" command producing value, allocated
Bram Moolenaar071d4272004-06-13 20:20:40 +0000785 s = (char *)get_return_cmd(value);
786 break;
787
788 default:
789 if (pending & CSTP_THROW)
790 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100791 vim_snprintf((char *)IObuff, IOSIZE, mesg, _("Exception"));
792 mesg = (char *)vim_strnsave(IObuff, (int)STRLEN(IObuff) + 4);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000793 STRCAT(mesg, ": %s");
794 s = (char *)((except_T *)value)->value;
795 }
796 else if ((pending & CSTP_ERROR) && (pending & CSTP_INTERRUPT))
797 s = _("Error and interrupt");
798 else if (pending & CSTP_ERROR)
799 s = _("Error");
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100800 else // if (pending & CSTP_INTERRUPT)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000801 s = _("Interrupt");
802 }
803
804 save_msg_silent = msg_silent;
805 if (debug_break_level > 0)
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100806 msg_silent = FALSE; // display messages
Bram Moolenaar071d4272004-06-13 20:20:40 +0000807 ++no_wait_return;
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100808 msg_scroll = TRUE; // always scroll up, don't overwrite
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100809 smsg(mesg, s);
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100810 msg_puts("\n"); // don't overwrite this either
Bram Moolenaar071d4272004-06-13 20:20:40 +0000811 cmdline_row = msg_row;
812 --no_wait_return;
813 if (debug_break_level > 0)
814 msg_silent = save_msg_silent;
815
816 if (pending == CSTP_RETURN)
817 vim_free(s);
818 else if (pending & CSTP_THROW)
819 vim_free(mesg);
820}
821
822/*
823 * If something is made pending in a finally clause, report it if required by
824 * the 'verbose' option or when debugging.
825 */
826 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100827report_make_pending(int pending, void *value)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000828{
829 if (p_verbose >= 14 || debug_break_level > 0)
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +0000830 {
831 if (debug_break_level <= 0)
832 verbose_enter();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000833 report_pending(RP_MAKE, pending, value);
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +0000834 if (debug_break_level <= 0)
835 verbose_leave();
836 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000837}
838
839/*
840 * If something pending in a finally clause is resumed at the ":endtry", report
841 * it if required by the 'verbose' option or when debugging.
842 */
Bram Moolenaar5843f5f2019-08-20 20:13:45 +0200843 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100844report_resume_pending(int pending, void *value)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000845{
846 if (p_verbose >= 14 || debug_break_level > 0)
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +0000847 {
848 if (debug_break_level <= 0)
849 verbose_enter();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000850 report_pending(RP_RESUME, pending, value);
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +0000851 if (debug_break_level <= 0)
852 verbose_leave();
853 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000854}
855
856/*
857 * If something pending in a finally clause is discarded, report it if required
858 * by the 'verbose' option or when debugging.
859 */
Bram Moolenaar5843f5f2019-08-20 20:13:45 +0200860 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100861report_discard_pending(int pending, void *value)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000862{
863 if (p_verbose >= 14 || debug_break_level > 0)
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +0000864 {
865 if (debug_break_level <= 0)
866 verbose_enter();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000867 report_pending(RP_DISCARD, pending, value);
Bram Moolenaar5c06f8b2005-05-31 22:14:58 +0000868 if (debug_break_level <= 0)
869 verbose_leave();
870 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000871}
872
873
874/*
Bram Moolenaar25e42232019-08-04 15:04:10 +0200875 * ":eval".
876 */
877 void
878ex_eval(exarg_T *eap)
879{
880 typval_T tv;
881
Bram Moolenaar32e35112020-05-14 22:41:15 +0200882 if (eval0(eap->arg, &tv, &eap->nextcmd, eap->skip ? 0 : EVAL_EVALUATE)
883 == OK)
Bram Moolenaar25e42232019-08-04 15:04:10 +0200884 clear_tv(&tv);
885}
886
887/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000888 * ":if".
889 */
890 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100891ex_if(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000892{
893 int error;
894 int skip;
895 int result;
Bram Moolenaarddef1292019-12-16 17:10:33 +0100896 cstack_T *cstack = eap->cstack;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000897
898 if (cstack->cs_idx == CSTACK_LEN - 1)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100899 eap->errmsg = N_("E579: :if nesting too deep");
Bram Moolenaar071d4272004-06-13 20:20:40 +0000900 else
901 {
902 ++cstack->cs_idx;
903 cstack->cs_flags[cstack->cs_idx] = 0;
904
905 /*
906 * Don't do something after an error, interrupt, or throw, or when there
907 * is a surrounding conditional and it was not active.
908 */
909 skip = did_emsg || got_int || did_throw || (cstack->cs_idx > 0
910 && !(cstack->cs_flags[cstack->cs_idx - 1] & CSF_ACTIVE));
911
912 result = eval_to_bool(eap->arg, &error, &eap->nextcmd, skip);
913
914 if (!skip && !error)
915 {
916 if (result)
917 cstack->cs_flags[cstack->cs_idx] = CSF_ACTIVE | CSF_TRUE;
918 }
919 else
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100920 // set TRUE, so this conditional will never get active
Bram Moolenaar071d4272004-06-13 20:20:40 +0000921 cstack->cs_flags[cstack->cs_idx] = CSF_TRUE;
922 }
923}
924
925/*
926 * ":endif".
927 */
928 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100929ex_endif(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000930{
931 did_endif = TRUE;
932 if (eap->cstack->cs_idx < 0
Bram Moolenaarde8866b2005-01-06 23:24:37 +0000933 || (eap->cstack->cs_flags[eap->cstack->cs_idx]
934 & (CSF_WHILE | CSF_FOR | CSF_TRY)))
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100935 eap->errmsg = N_(e_endif_without_if);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000936 else
937 {
938 /*
939 * When debugging or a breakpoint was encountered, display the debug
940 * prompt (if not already done). This shows the user that an ":endif"
941 * is executed when the ":if" or a previous ":elseif" was not TRUE.
942 * Handle a ">quit" debug command as if an interrupt had occurred before
943 * the ":endif". That is, throw an interrupt exception if appropriate.
944 * Doing this here prevents an exception for a parsing error being
945 * discarded by throwing the interrupt exception later on.
946 */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000947 if (!(eap->cstack->cs_flags[eap->cstack->cs_idx] & CSF_TRUE)
948 && dbg_check_skipped(eap))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000949 (void)do_intthrow(eap->cstack);
950
951 --eap->cstack->cs_idx;
952 }
953}
954
955/*
956 * ":else" and ":elseif".
957 */
958 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100959ex_else(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000960{
961 int error;
962 int skip;
963 int result;
Bram Moolenaarddef1292019-12-16 17:10:33 +0100964 cstack_T *cstack = eap->cstack;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000965
966 /*
967 * Don't do something after an error, interrupt, or throw, or when there is
968 * a surrounding conditional and it was not active.
969 */
970 skip = did_emsg || got_int || did_throw || (cstack->cs_idx > 0
971 && !(cstack->cs_flags[cstack->cs_idx - 1] & CSF_ACTIVE));
972
973 if (cstack->cs_idx < 0
Bram Moolenaar12805862005-01-05 22:16:17 +0000974 || (cstack->cs_flags[cstack->cs_idx]
975 & (CSF_WHILE | CSF_FOR | CSF_TRY)))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000976 {
977 if (eap->cmdidx == CMD_else)
978 {
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100979 eap->errmsg = N_(e_else_without_if);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000980 return;
981 }
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100982 eap->errmsg = N_(e_elseif_without_if);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000983 skip = TRUE;
984 }
985 else if (cstack->cs_flags[cstack->cs_idx] & CSF_ELSE)
986 {
987 if (eap->cmdidx == CMD_else)
988 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100989 eap->errmsg = N_("E583: multiple :else");
Bram Moolenaar071d4272004-06-13 20:20:40 +0000990 return;
991 }
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100992 eap->errmsg = N_("E584: :elseif after :else");
Bram Moolenaar071d4272004-06-13 20:20:40 +0000993 skip = TRUE;
994 }
995
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100996 // if skipping or the ":if" was TRUE, reset ACTIVE, otherwise set it
Bram Moolenaar071d4272004-06-13 20:20:40 +0000997 if (skip || cstack->cs_flags[cstack->cs_idx] & CSF_TRUE)
998 {
999 if (eap->errmsg == NULL)
1000 cstack->cs_flags[cstack->cs_idx] = CSF_TRUE;
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001001 skip = TRUE; // don't evaluate an ":elseif"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001002 }
1003 else
1004 cstack->cs_flags[cstack->cs_idx] = CSF_ACTIVE;
1005
1006 /*
1007 * When debugging or a breakpoint was encountered, display the debug prompt
1008 * (if not already done). This shows the user that an ":else" or ":elseif"
1009 * is executed when the ":if" or previous ":elseif" was not TRUE. Handle
1010 * a ">quit" debug command as if an interrupt had occurred before the
1011 * ":else" or ":elseif". That is, set "skip" and throw an interrupt
1012 * exception if appropriate. Doing this here prevents that an exception
1013 * for a parsing errors is discarded when throwing the interrupt exception
1014 * later on.
1015 */
1016 if (!skip && dbg_check_skipped(eap) && got_int)
1017 {
1018 (void)do_intthrow(cstack);
1019 skip = TRUE;
1020 }
1021
1022 if (eap->cmdidx == CMD_elseif)
1023 {
1024 result = eval_to_bool(eap->arg, &error, &eap->nextcmd, skip);
Bram Moolenaar2c5ed4e2020-04-20 19:42:10 +02001025
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001026 // When throwing error exceptions, we want to throw always the first
1027 // of several errors in a row. This is what actually happens when
1028 // a conditional error was detected above and there is another failure
1029 // when parsing the expression. Since the skip flag is set in this
1030 // case, the parsing error will be ignored by emsg().
Bram Moolenaar071d4272004-06-13 20:20:40 +00001031 if (!skip && !error)
1032 {
1033 if (result)
1034 cstack->cs_flags[cstack->cs_idx] = CSF_ACTIVE | CSF_TRUE;
1035 else
1036 cstack->cs_flags[cstack->cs_idx] = 0;
1037 }
1038 else if (eap->errmsg == NULL)
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001039 // set TRUE, so this conditional will never get active
Bram Moolenaar071d4272004-06-13 20:20:40 +00001040 cstack->cs_flags[cstack->cs_idx] = CSF_TRUE;
1041 }
1042 else
1043 cstack->cs_flags[cstack->cs_idx] |= CSF_ELSE;
1044}
1045
1046/*
Bram Moolenaar12805862005-01-05 22:16:17 +00001047 * Handle ":while" and ":for".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001048 */
1049 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001050ex_while(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001051{
1052 int error;
1053 int skip;
1054 int result;
Bram Moolenaarddef1292019-12-16 17:10:33 +01001055 cstack_T *cstack = eap->cstack;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001056
1057 if (cstack->cs_idx == CSTACK_LEN - 1)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001058 eap->errmsg = N_("E585: :while/:for nesting too deep");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001059 else
1060 {
1061 /*
Bram Moolenaar12805862005-01-05 22:16:17 +00001062 * The loop flag is set when we have jumped back from the matching
1063 * ":endwhile" or ":endfor". When not set, need to initialise this
1064 * cstack entry.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001065 */
Bram Moolenaar12805862005-01-05 22:16:17 +00001066 if ((cstack->cs_lflags & CSL_HAD_LOOP) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001067 {
1068 ++cstack->cs_idx;
Bram Moolenaar12805862005-01-05 22:16:17 +00001069 ++cstack->cs_looplevel;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001070 cstack->cs_line[cstack->cs_idx] = -1;
1071 }
Bram Moolenaar12805862005-01-05 22:16:17 +00001072 cstack->cs_flags[cstack->cs_idx] =
1073 eap->cmdidx == CMD_while ? CSF_WHILE : CSF_FOR;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001074
1075 /*
Bram Moolenaar12805862005-01-05 22:16:17 +00001076 * Don't do something after an error, interrupt, or throw, or when
1077 * there is a surrounding conditional and it was not active.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001078 */
1079 skip = did_emsg || got_int || did_throw || (cstack->cs_idx > 0
1080 && !(cstack->cs_flags[cstack->cs_idx - 1] & CSF_ACTIVE));
Bram Moolenaar12805862005-01-05 22:16:17 +00001081 if (eap->cmdidx == CMD_while)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001082 {
Bram Moolenaar12805862005-01-05 22:16:17 +00001083 /*
1084 * ":while bool-expr"
1085 */
1086 result = eval_to_bool(eap->arg, &error, &eap->nextcmd, skip);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001087 }
1088 else
1089 {
Bram Moolenaar12805862005-01-05 22:16:17 +00001090 void *fi;
1091
1092 /*
1093 * ":for var in list-expr"
1094 */
1095 if ((cstack->cs_lflags & CSL_HAD_LOOP) != 0)
1096 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001097 // Jumping here from a ":continue" or ":endfor": use the
1098 // previously evaluated list.
Bram Moolenaarde8866b2005-01-06 23:24:37 +00001099 fi = cstack->cs_forinfo[cstack->cs_idx];
Bram Moolenaar12805862005-01-05 22:16:17 +00001100 error = FALSE;
1101 }
1102 else
1103 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001104 // Evaluate the argument and get the info in a structure.
Bram Moolenaar12805862005-01-05 22:16:17 +00001105 fi = eval_for_line(eap->arg, &error, &eap->nextcmd, skip);
Bram Moolenaarde8866b2005-01-06 23:24:37 +00001106 cstack->cs_forinfo[cstack->cs_idx] = fi;
Bram Moolenaar12805862005-01-05 22:16:17 +00001107 }
1108
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001109 // use the element at the start of the list and advance
Bram Moolenaar12805862005-01-05 22:16:17 +00001110 if (!error && fi != NULL && !skip)
1111 result = next_for_item(fi, eap->arg);
1112 else
1113 result = FALSE;
1114
1115 if (!result)
1116 {
1117 free_for_info(fi);
Bram Moolenaarde8866b2005-01-06 23:24:37 +00001118 cstack->cs_forinfo[cstack->cs_idx] = NULL;
Bram Moolenaar12805862005-01-05 22:16:17 +00001119 }
1120 }
1121
1122 /*
1123 * If this cstack entry was just initialised and is active, set the
1124 * loop flag, so do_cmdline() will set the line number in cs_line[].
1125 * If executing the command a second time, clear the loop flag.
1126 */
1127 if (!skip && !error && result)
1128 {
1129 cstack->cs_flags[cstack->cs_idx] |= (CSF_ACTIVE | CSF_TRUE);
1130 cstack->cs_lflags ^= CSL_HAD_LOOP;
1131 }
1132 else
1133 {
1134 cstack->cs_lflags &= ~CSL_HAD_LOOP;
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001135 // If the ":while" evaluates to FALSE or ":for" is past the end of
1136 // the list, show the debug prompt at the ":endwhile"/":endfor" as
1137 // if there was a ":break" in a ":while"/":for" evaluating to
1138 // TRUE.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001139 if (!skip && !error)
1140 cstack->cs_flags[cstack->cs_idx] |= CSF_TRUE;
1141 }
1142 }
1143}
1144
1145/*
1146 * ":continue"
1147 */
1148 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001149ex_continue(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001150{
1151 int idx;
Bram Moolenaarddef1292019-12-16 17:10:33 +01001152 cstack_T *cstack = eap->cstack;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001153
Bram Moolenaar12805862005-01-05 22:16:17 +00001154 if (cstack->cs_looplevel <= 0 || cstack->cs_idx < 0)
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001155 eap->errmsg = N_(e_continue);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001156 else
1157 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001158 // Try to find the matching ":while". This might stop at a try
1159 // conditional not in its finally clause (which is then to be executed
1160 // next). Therefor, inactivate all conditionals except the ":while"
1161 // itself (if reached).
Bram Moolenaar12805862005-01-05 22:16:17 +00001162 idx = cleanup_conditionals(cstack, CSF_WHILE | CSF_FOR, FALSE);
Bram Moolenaareb3593b2006-04-22 22:33:57 +00001163 if (idx >= 0 && (cstack->cs_flags[idx] & (CSF_WHILE | CSF_FOR)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001164 {
Bram Moolenaarde8866b2005-01-06 23:24:37 +00001165 rewind_conditionals(cstack, idx, CSF_TRY, &cstack->cs_trylevel);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001166
1167 /*
Bram Moolenaar12805862005-01-05 22:16:17 +00001168 * Set CSL_HAD_CONT, so do_cmdline() will jump back to the
Bram Moolenaar071d4272004-06-13 20:20:40 +00001169 * matching ":while".
1170 */
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001171 cstack->cs_lflags |= CSL_HAD_CONT; // let do_cmdline() handle it
Bram Moolenaar071d4272004-06-13 20:20:40 +00001172 }
1173 else
1174 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001175 // If a try conditional not in its finally clause is reached first,
1176 // make the ":continue" pending for execution at the ":endtry".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001177 cstack->cs_pending[idx] = CSTP_CONTINUE;
1178 report_make_pending(CSTP_CONTINUE, NULL);
1179 }
1180 }
1181}
1182
1183/*
1184 * ":break"
1185 */
1186 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001187ex_break(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001188{
1189 int idx;
Bram Moolenaarddef1292019-12-16 17:10:33 +01001190 cstack_T *cstack = eap->cstack;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001191
Bram Moolenaar12805862005-01-05 22:16:17 +00001192 if (cstack->cs_looplevel <= 0 || cstack->cs_idx < 0)
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001193 eap->errmsg = N_(e_break);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001194 else
1195 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001196 // Inactivate conditionals until the matching ":while" or a try
1197 // conditional not in its finally clause (which is then to be
1198 // executed next) is found. In the latter case, make the ":break"
1199 // pending for execution at the ":endtry".
Bram Moolenaar12805862005-01-05 22:16:17 +00001200 idx = cleanup_conditionals(cstack, CSF_WHILE | CSF_FOR, TRUE);
Bram Moolenaareb3593b2006-04-22 22:33:57 +00001201 if (idx >= 0 && !(cstack->cs_flags[idx] & (CSF_WHILE | CSF_FOR)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001202 {
1203 cstack->cs_pending[idx] = CSTP_BREAK;
1204 report_make_pending(CSTP_BREAK, NULL);
1205 }
1206 }
1207}
1208
1209/*
Bram Moolenaar12805862005-01-05 22:16:17 +00001210 * ":endwhile" and ":endfor"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001211 */
1212 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001213ex_endwhile(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001214{
Bram Moolenaarddef1292019-12-16 17:10:33 +01001215 cstack_T *cstack = eap->cstack;
1216 int idx;
1217 char *err;
1218 int csf;
1219 int fl;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001220
Bram Moolenaar12805862005-01-05 22:16:17 +00001221 if (eap->cmdidx == CMD_endwhile)
1222 {
1223 err = e_while;
1224 csf = CSF_WHILE;
1225 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001226 else
1227 {
Bram Moolenaar12805862005-01-05 22:16:17 +00001228 err = e_for;
1229 csf = CSF_FOR;
1230 }
1231
1232 if (cstack->cs_looplevel <= 0 || cstack->cs_idx < 0)
1233 eap->errmsg = err;
1234 else
1235 {
1236 fl = cstack->cs_flags[cstack->cs_idx];
1237 if (!(fl & csf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001238 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001239 // If we are in a ":while" or ":for" but used the wrong endloop
1240 // command, do not rewind to the next enclosing ":for"/":while".
Bram Moolenaar12805862005-01-05 22:16:17 +00001241 if (fl & CSF_WHILE)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001242 eap->errmsg = _("E732: Using :endfor with :while");
Bram Moolenaar12805862005-01-05 22:16:17 +00001243 else if (fl & CSF_FOR)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001244 eap->errmsg = _("E733: Using :endwhile with :for");
Bram Moolenaar3a3a7232005-01-17 22:16:15 +00001245 }
1246 if (!(fl & (CSF_WHILE | CSF_FOR)))
1247 {
1248 if (!(fl & CSF_TRY))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001249 eap->errmsg = e_endif;
Bram Moolenaar12805862005-01-05 22:16:17 +00001250 else if (fl & CSF_FINALLY)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001251 eap->errmsg = e_endtry;
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001252 // Try to find the matching ":while" and report what's missing.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001253 for (idx = cstack->cs_idx; idx > 0; --idx)
1254 {
Bram Moolenaar12805862005-01-05 22:16:17 +00001255 fl = cstack->cs_flags[idx];
1256 if ((fl & CSF_TRY) && !(fl & CSF_FINALLY))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001257 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001258 // Give up at a try conditional not in its finally clause.
1259 // Ignore the ":endwhile"/":endfor".
Bram Moolenaar12805862005-01-05 22:16:17 +00001260 eap->errmsg = err;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001261 return;
1262 }
Bram Moolenaar12805862005-01-05 22:16:17 +00001263 if (fl & csf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001264 break;
1265 }
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001266 // Cleanup and rewind all contained (and unclosed) conditionals.
Bram Moolenaar12805862005-01-05 22:16:17 +00001267 (void)cleanup_conditionals(cstack, CSF_WHILE | CSF_FOR, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001268 rewind_conditionals(cstack, idx, CSF_TRY, &cstack->cs_trylevel);
1269 }
1270
1271 /*
1272 * When debugging or a breakpoint was encountered, display the debug
1273 * prompt (if not already done). This shows the user that an
Bram Moolenaar12805862005-01-05 22:16:17 +00001274 * ":endwhile"/":endfor" is executed when the ":while" was not TRUE or
1275 * after a ":break". Handle a ">quit" debug command as if an
1276 * interrupt had occurred before the ":endwhile"/":endfor". That is,
1277 * throw an interrupt exception if appropriate. Doing this here
1278 * prevents that an exception for a parsing error is discarded when
1279 * throwing the interrupt exception later on.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001280 */
1281 else if (cstack->cs_flags[cstack->cs_idx] & CSF_TRUE
1282 && !(cstack->cs_flags[cstack->cs_idx] & CSF_ACTIVE)
1283 && dbg_check_skipped(eap))
1284 (void)do_intthrow(cstack);
1285
1286 /*
Bram Moolenaar12805862005-01-05 22:16:17 +00001287 * Set loop flag, so do_cmdline() will jump back to the matching
1288 * ":while" or ":for".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001289 */
Bram Moolenaar12805862005-01-05 22:16:17 +00001290 cstack->cs_lflags |= CSL_HAD_ENDLOOP;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001291 }
1292}
1293
1294
1295/*
1296 * ":throw expr"
1297 */
1298 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001299ex_throw(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001300{
1301 char_u *arg = eap->arg;
1302 char_u *value;
1303
1304 if (*arg != NUL && *arg != '|' && *arg != '\n')
1305 value = eval_to_string_skip(arg, &eap->nextcmd, eap->skip);
1306 else
1307 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001308 emsg(_(e_argreq));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001309 value = NULL;
1310 }
1311
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001312 // On error or when an exception is thrown during argument evaluation, do
1313 // not throw.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001314 if (!eap->skip && value != NULL)
1315 {
1316 if (throw_exception(value, ET_USER, NULL) == FAIL)
1317 vim_free(value);
1318 else
1319 do_throw(eap->cstack);
1320 }
1321}
1322
1323/*
Bram Moolenaar269ec652004-07-29 08:43:53 +00001324 * Throw the current exception through the specified cstack. Common routine
1325 * for ":throw" (user exception) and error and interrupt exceptions. Also
1326 * used for rethrowing an uncaught exception.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001327 */
1328 void
Bram Moolenaarddef1292019-12-16 17:10:33 +01001329do_throw(cstack_T *cstack)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001330{
1331 int idx;
1332 int inactivate_try = FALSE;
1333
1334 /*
1335 * Cleanup and inactivate up to the next surrounding try conditional that
1336 * is not in its finally clause. Normally, do not inactivate the try
1337 * conditional itself, so that its ACTIVE flag can be tested below. But
1338 * if a previous error or interrupt has not been converted to an exception,
1339 * inactivate the try conditional, too, as if the conversion had been done,
Bram Moolenaar269ec652004-07-29 08:43:53 +00001340 * and reset the did_emsg or got_int flag, so this won't happen again at
1341 * the next surrounding try conditional.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001342 */
Bram Moolenaaraf0167f2009-05-16 15:31:32 +00001343#ifndef THROW_ON_ERROR_TRUE
Bram Moolenaar071d4272004-06-13 20:20:40 +00001344 if (did_emsg && !THROW_ON_ERROR)
1345 {
1346 inactivate_try = TRUE;
1347 did_emsg = FALSE;
1348 }
Bram Moolenaaraf0167f2009-05-16 15:31:32 +00001349#endif
1350#ifndef THROW_ON_INTERRUPT_TRUE
Bram Moolenaar071d4272004-06-13 20:20:40 +00001351 if (got_int && !THROW_ON_INTERRUPT)
1352 {
1353 inactivate_try = TRUE;
1354 got_int = FALSE;
1355 }
Bram Moolenaaraf0167f2009-05-16 15:31:32 +00001356#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001357 idx = cleanup_conditionals(cstack, 0, inactivate_try);
1358 if (idx >= 0)
1359 {
1360 /*
1361 * If this try conditional is active and we are before its first
Bram Moolenaar269ec652004-07-29 08:43:53 +00001362 * ":catch", set THROWN so that the ":catch" commands will check
1363 * whether the exception matches. When the exception came from any of
1364 * the catch clauses, it will be made pending at the ":finally" (if
1365 * present) and rethrown at the ":endtry". This will also happen if
1366 * the try conditional is inactive. This is the case when we are
1367 * throwing an exception due to an error or interrupt on the way from
1368 * a preceding ":continue", ":break", ":return", ":finish", error or
1369 * interrupt (not converted to an exception) to the finally clause or
1370 * from a preceding throw of a user or error or interrupt exception to
1371 * the matching catch clause or the finally clause.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001372 */
1373 if (!(cstack->cs_flags[idx] & CSF_CAUGHT))
1374 {
1375 if (cstack->cs_flags[idx] & CSF_ACTIVE)
1376 cstack->cs_flags[idx] |= CSF_THROWN;
1377 else
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001378 // THROWN may have already been set for a catchable exception
1379 // that has been discarded. Ensure it is reset for the new
1380 // exception.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001381 cstack->cs_flags[idx] &= ~CSF_THROWN;
1382 }
1383 cstack->cs_flags[idx] &= ~CSF_ACTIVE;
1384 cstack->cs_exception[idx] = current_exception;
1385 }
1386#if 0
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001387 // TODO: Add optimization below. Not yet done because of interface
1388 // problems to eval.c and ex_cmds2.c. (Servatius)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001389 else
1390 {
1391 /*
1392 * There are no catch clauses to check or finally clauses to execute.
1393 * End the current script or function. The exception will be rethrown
1394 * in the caller.
1395 */
1396 if (getline_equal(eap->getline, eap->cookie, get_func_line))
1397 current_funccal->returned = TRUE;
1398 elseif (eap->get_func_line == getsourceline)
1399 ((struct source_cookie *)eap->cookie)->finished = TRUE;
1400 }
1401#endif
1402
1403 did_throw = TRUE;
1404}
1405
1406/*
1407 * ":try"
1408 */
1409 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001410ex_try(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001411{
1412 int skip;
Bram Moolenaarddef1292019-12-16 17:10:33 +01001413 cstack_T *cstack = eap->cstack;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001414
1415 if (cstack->cs_idx == CSTACK_LEN - 1)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001416 eap->errmsg = N_("E601: :try nesting too deep");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001417 else
1418 {
1419 ++cstack->cs_idx;
1420 ++cstack->cs_trylevel;
1421 cstack->cs_flags[cstack->cs_idx] = CSF_TRY;
1422 cstack->cs_pending[cstack->cs_idx] = CSTP_NONE;
1423
1424 /*
1425 * Don't do something after an error, interrupt, or throw, or when there
1426 * is a surrounding conditional and it was not active.
1427 */
1428 skip = did_emsg || got_int || did_throw || (cstack->cs_idx > 0
1429 && !(cstack->cs_flags[cstack->cs_idx - 1] & CSF_ACTIVE));
1430
1431 if (!skip)
1432 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001433 // Set ACTIVE and TRUE. TRUE means that the corresponding ":catch"
1434 // commands should check for a match if an exception is thrown and
1435 // that the finally clause needs to be executed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001436 cstack->cs_flags[cstack->cs_idx] |= CSF_ACTIVE | CSF_TRUE;
1437
1438 /*
1439 * ":silent!", even when used in a try conditional, disables
1440 * displaying of error messages and conversion of errors to
1441 * exceptions. When the silent commands again open a try
1442 * conditional, save "emsg_silent" and reset it so that errors are
1443 * again converted to exceptions. The value is restored when that
1444 * try conditional is left. If it is left normally, the commands
1445 * following the ":endtry" are again silent. If it is left by
1446 * a ":continue", ":break", ":return", or ":finish", the commands
1447 * executed next are again silent. If it is left due to an
1448 * aborting error, an interrupt, or an exception, restoring
1449 * "emsg_silent" does not matter since we are already in the
1450 * aborting state and/or the exception has already been thrown.
1451 * The effect is then just freeing the memory that was allocated
1452 * to save the value.
1453 */
1454 if (emsg_silent)
1455 {
1456 eslist_T *elem;
1457
Bram Moolenaarc799fe22019-05-28 23:08:19 +02001458 elem = ALLOC_ONE(struct eslist_elem);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001459 if (elem == NULL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001460 emsg(_(e_outofmem));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001461 else
1462 {
1463 elem->saved_emsg_silent = emsg_silent;
1464 elem->next = cstack->cs_emsg_silent_list;
1465 cstack->cs_emsg_silent_list = elem;
1466 cstack->cs_flags[cstack->cs_idx] |= CSF_SILENT;
1467 emsg_silent = 0;
1468 }
1469 }
1470 }
1471
1472 }
1473}
1474
1475/*
1476 * ":catch /{pattern}/" and ":catch"
1477 */
1478 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001479ex_catch(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001480{
1481 int idx = 0;
1482 int give_up = FALSE;
1483 int skip = FALSE;
1484 int caught = FALSE;
1485 char_u *end;
1486 int save_char = 0;
1487 char_u *save_cpo;
1488 regmatch_T regmatch;
1489 int prev_got_int;
Bram Moolenaarddef1292019-12-16 17:10:33 +01001490 cstack_T *cstack = eap->cstack;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001491 char_u *pat;
1492
1493 if (cstack->cs_trylevel <= 0 || cstack->cs_idx < 0)
1494 {
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001495 eap->errmsg = e_catch;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001496 give_up = TRUE;
1497 }
1498 else
1499 {
1500 if (!(cstack->cs_flags[cstack->cs_idx] & CSF_TRY))
1501 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001502 // Report what's missing if the matching ":try" is not in its
1503 // finally clause.
Bram Moolenaar12805862005-01-05 22:16:17 +00001504 eap->errmsg = get_end_emsg(cstack);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001505 skip = TRUE;
1506 }
1507 for (idx = cstack->cs_idx; idx > 0; --idx)
1508 if (cstack->cs_flags[idx] & CSF_TRY)
1509 break;
1510 if (cstack->cs_flags[idx] & CSF_FINALLY)
1511 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001512 // Give up for a ":catch" after ":finally" and ignore it.
1513 // Just parse.
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001514 eap->errmsg = N_("E604: :catch after :finally");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001515 give_up = TRUE;
1516 }
Bram Moolenaarde8866b2005-01-06 23:24:37 +00001517 else
Bram Moolenaar12805862005-01-05 22:16:17 +00001518 rewind_conditionals(cstack, idx, CSF_WHILE | CSF_FOR,
1519 &cstack->cs_looplevel);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001520 }
1521
Bram Moolenaar2c5ed4e2020-04-20 19:42:10 +02001522 if (ends_excmd2(eap->cmd, eap->arg)) // no argument, catch all errors
Bram Moolenaar071d4272004-06-13 20:20:40 +00001523 {
1524 pat = (char_u *)".*";
1525 end = NULL;
1526 eap->nextcmd = find_nextcmd(eap->arg);
1527 }
1528 else
1529 {
1530 pat = eap->arg + 1;
Bram Moolenaar2c5ed4e2020-04-20 19:42:10 +02001531 end = skip_regexp_err(pat, *eap->arg, TRUE);
1532 if (end == NULL)
1533 give_up = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001534 }
1535
1536 if (!give_up)
1537 {
1538 /*
1539 * Don't do something when no exception has been thrown or when the
1540 * corresponding try block never got active (because of an inactive
1541 * surrounding conditional or after an error or interrupt or throw).
1542 */
1543 if (!did_throw || !(cstack->cs_flags[idx] & CSF_TRUE))
1544 skip = TRUE;
1545
1546 /*
1547 * Check for a match only if an exception is thrown but not caught by
1548 * a previous ":catch". An exception that has replaced a discarded
1549 * exception is not checked (THROWN is not set then).
1550 */
1551 if (!skip && (cstack->cs_flags[idx] & CSF_THROWN)
1552 && !(cstack->cs_flags[idx] & CSF_CAUGHT))
1553 {
Bram Moolenaar2c5ed4e2020-04-20 19:42:10 +02001554 if (end != NULL && *end != NUL
1555 && !ends_excmd2(end, skipwhite(end + 1)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001556 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001557 emsg(_(e_trailing));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001558 return;
1559 }
1560
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001561 // When debugging or a breakpoint was encountered, display the
1562 // debug prompt (if not already done) before checking for a match.
1563 // This is a helpful hint for the user when the regular expression
1564 // matching fails. Handle a ">quit" debug command as if an
1565 // interrupt had occurred before the ":catch". That is, discard
1566 // the original exception, replace it by an interrupt exception,
1567 // and don't catch it in this try block.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001568 if (!dbg_check_skipped(eap) || !do_intthrow(cstack))
1569 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001570 // Terminate the pattern and avoid the 'l' flag in 'cpoptions'
1571 // while compiling it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001572 if (end != NULL)
1573 {
1574 save_char = *end;
1575 *end = NUL;
1576 }
1577 save_cpo = p_cpo;
1578 p_cpo = (char_u *)"";
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001579 // Disable error messages, it will make current_exception
1580 // invalid.
Bram Moolenaar768ce242016-02-07 19:46:12 +01001581 ++emsg_off;
Bram Moolenaar150cc272007-08-01 13:47:46 +00001582 regmatch.regprog = vim_regcomp(pat, RE_MAGIC + RE_STRING);
Bram Moolenaar768ce242016-02-07 19:46:12 +01001583 --emsg_off;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001584 regmatch.rm_ic = FALSE;
1585 if (end != NULL)
1586 *end = save_char;
1587 p_cpo = save_cpo;
1588 if (regmatch.regprog == NULL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001589 semsg(_(e_invarg2), pat);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001590 else
1591 {
1592 /*
1593 * Save the value of got_int and reset it. We don't want
1594 * a previous interruption cancel matching, only hitting
1595 * CTRL-C while matching should abort it.
1596 */
1597 prev_got_int = got_int;
1598 got_int = FALSE;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001599 caught = vim_regexec_nl(&regmatch,
1600 (char_u *)current_exception->value, (colnr_T)0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001601 got_int |= prev_got_int;
Bram Moolenaar473de612013-06-08 18:19:48 +02001602 vim_regfree(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001603 }
1604 }
1605 }
1606
1607 if (caught)
1608 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001609 // Make this ":catch" clause active and reset did_emsg, got_int,
1610 // and did_throw. Put the exception on the caught stack.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001611 cstack->cs_flags[idx] |= CSF_ACTIVE | CSF_CAUGHT;
1612 did_emsg = got_int = did_throw = FALSE;
1613 catch_exception((except_T *)cstack->cs_exception[idx]);
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001614 // It's mandatory that the current exception is stored in the cstack
1615 // so that it can be discarded at the next ":catch", ":finally", or
1616 // ":endtry" or when the catch clause is left by a ":continue",
1617 // ":break", ":return", ":finish", error, interrupt, or another
1618 // exception.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001619 if (cstack->cs_exception[cstack->cs_idx] != current_exception)
Bram Moolenaar95f09602016-11-10 20:01:45 +01001620 internal_error("ex_catch()");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001621 }
1622 else
1623 {
1624 /*
1625 * If there is a preceding catch clause and it caught the exception,
1626 * finish the exception now. This happens also after errors except
1627 * when this ":catch" was after the ":finally" or not within
1628 * a ":try". Make the try conditional inactive so that the
1629 * following catch clauses are skipped. On an error or interrupt
1630 * after the preceding try block or catch clause was left by
1631 * a ":continue", ":break", ":return", or ":finish", discard the
1632 * pending action.
1633 */
1634 cleanup_conditionals(cstack, CSF_TRY, TRUE);
1635 }
1636 }
1637
1638 if (end != NULL)
1639 eap->nextcmd = find_nextcmd(end);
1640}
1641
1642/*
1643 * ":finally"
1644 */
1645 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001646ex_finally(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001647{
1648 int idx;
1649 int skip = FALSE;
1650 int pending = CSTP_NONE;
Bram Moolenaarddef1292019-12-16 17:10:33 +01001651 cstack_T *cstack = eap->cstack;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001652
1653 if (cstack->cs_trylevel <= 0 || cstack->cs_idx < 0)
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001654 eap->errmsg = e_finally;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001655 else
1656 {
1657 if (!(cstack->cs_flags[cstack->cs_idx] & CSF_TRY))
1658 {
Bram Moolenaar12805862005-01-05 22:16:17 +00001659 eap->errmsg = get_end_emsg(cstack);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001660 for (idx = cstack->cs_idx - 1; idx > 0; --idx)
1661 if (cstack->cs_flags[idx] & CSF_TRY)
1662 break;
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001663 // Make this error pending, so that the commands in the following
1664 // finally clause can be executed. This overrules also a pending
1665 // ":continue", ":break", ":return", or ":finish".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001666 pending = CSTP_ERROR;
1667 }
1668 else
1669 idx = cstack->cs_idx;
1670
1671 if (cstack->cs_flags[idx] & CSF_FINALLY)
1672 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001673 // Give up for a multiple ":finally" and ignore it.
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001674 eap->errmsg = e_finally_dup;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001675 return;
1676 }
Bram Moolenaarde8866b2005-01-06 23:24:37 +00001677 rewind_conditionals(cstack, idx, CSF_WHILE | CSF_FOR,
Bram Moolenaar12805862005-01-05 22:16:17 +00001678 &cstack->cs_looplevel);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001679
1680 /*
1681 * Don't do something when the corresponding try block never got active
1682 * (because of an inactive surrounding conditional or after an error or
1683 * interrupt or throw) or for a ":finally" without ":try" or a multiple
1684 * ":finally". After every other error (did_emsg or the conditional
1685 * errors detected above) or after an interrupt (got_int) or an
1686 * exception (did_throw), the finally clause must be executed.
1687 */
1688 skip = !(cstack->cs_flags[cstack->cs_idx] & CSF_TRUE);
1689
1690 if (!skip)
1691 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001692 // When debugging or a breakpoint was encountered, display the
1693 // debug prompt (if not already done). The user then knows that the
1694 // finally clause is executed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001695 if (dbg_check_skipped(eap))
1696 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001697 // Handle a ">quit" debug command as if an interrupt had
1698 // occurred before the ":finally". That is, discard the
1699 // original exception and replace it by an interrupt
1700 // exception.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001701 (void)do_intthrow(cstack);
1702 }
1703
1704 /*
1705 * If there is a preceding catch clause and it caught the exception,
1706 * finish the exception now. This happens also after errors except
1707 * when this is a multiple ":finally" or one not within a ":try".
1708 * After an error or interrupt, this also discards a pending
1709 * ":continue", ":break", ":finish", or ":return" from the preceding
1710 * try block or catch clause.
1711 */
1712 cleanup_conditionals(cstack, CSF_TRY, FALSE);
1713
1714 /*
1715 * Make did_emsg, got_int, did_throw pending. If set, they overrule
1716 * a pending ":continue", ":break", ":return", or ":finish". Then
1717 * we have particularly to discard a pending return value (as done
1718 * by the call to cleanup_conditionals() above when did_emsg or
1719 * got_int is set). The pending values are restored by the
1720 * ":endtry", except if there is a new error, interrupt, exception,
1721 * ":continue", ":break", ":return", or ":finish" in the following
Bram Moolenaar12805862005-01-05 22:16:17 +00001722 * finally clause. A missing ":endwhile", ":endfor" or ":endif"
1723 * detected here is treated as if did_emsg and did_throw had
1724 * already been set, respectively in case that the error is not
1725 * converted to an exception, did_throw had already been unset.
1726 * We must not set did_emsg here since that would suppress the
1727 * error message.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001728 */
1729 if (pending == CSTP_ERROR || did_emsg || got_int || did_throw)
1730 {
1731 if (cstack->cs_pending[cstack->cs_idx] == CSTP_RETURN)
1732 {
1733 report_discard_pending(CSTP_RETURN,
Bram Moolenaarfca34d62005-01-04 21:38:36 +00001734 cstack->cs_rettv[cstack->cs_idx]);
1735 discard_pending_return(cstack->cs_rettv[cstack->cs_idx]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001736 }
1737 if (pending == CSTP_ERROR && !did_emsg)
1738 pending |= (THROW_ON_ERROR) ? CSTP_THROW : 0;
1739 else
1740 pending |= did_throw ? CSTP_THROW : 0;
1741 pending |= did_emsg ? CSTP_ERROR : 0;
1742 pending |= got_int ? CSTP_INTERRUPT : 0;
1743 cstack->cs_pending[cstack->cs_idx] = pending;
1744
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001745 // It's mandatory that the current exception is stored in the
1746 // cstack so that it can be rethrown at the ":endtry" or be
1747 // discarded if the finally clause is left by a ":continue",
1748 // ":break", ":return", ":finish", error, interrupt, or another
1749 // exception. When emsg() is called for a missing ":endif" or
1750 // a missing ":endwhile"/":endfor" detected here, the
1751 // exception will be discarded.
Bram Moolenaarde8866b2005-01-06 23:24:37 +00001752 if (did_throw && cstack->cs_exception[cstack->cs_idx]
1753 != current_exception)
Bram Moolenaar95f09602016-11-10 20:01:45 +01001754 internal_error("ex_finally()");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001755 }
1756
1757 /*
Bram Moolenaar12805862005-01-05 22:16:17 +00001758 * Set CSL_HAD_FINA, so do_cmdline() will reset did_emsg,
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001759 * got_int, and did_throw and make the finally clause active.
1760 * This will happen after emsg() has been called for a missing
Bram Moolenaar12805862005-01-05 22:16:17 +00001761 * ":endif" or a missing ":endwhile"/":endfor" detected here, so
1762 * that the following finally clause will be executed even then.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001763 */
Bram Moolenaar12805862005-01-05 22:16:17 +00001764 cstack->cs_lflags |= CSL_HAD_FINA;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001765 }
1766 }
1767}
1768
1769/*
1770 * ":endtry"
1771 */
1772 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001773ex_endtry(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001774{
1775 int idx;
1776 int skip;
1777 int rethrow = FALSE;
1778 int pending = CSTP_NONE;
Bram Moolenaarfca34d62005-01-04 21:38:36 +00001779 void *rettv = NULL;
Bram Moolenaarddef1292019-12-16 17:10:33 +01001780 cstack_T *cstack = eap->cstack;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001781
1782 if (cstack->cs_trylevel <= 0 || cstack->cs_idx < 0)
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001783 eap->errmsg = e_no_endtry;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001784 else
1785 {
1786 /*
1787 * Don't do something after an error, interrupt or throw in the try
1788 * block, catch clause, or finally clause preceding this ":endtry" or
1789 * when an error or interrupt occurred after a ":continue", ":break",
1790 * ":return", or ":finish" in a try block or catch clause preceding this
1791 * ":endtry" or when the try block never got active (because of an
1792 * inactive surrounding conditional or after an error or interrupt or
1793 * throw) or when there is a surrounding conditional and it has been
1794 * made inactive by a ":continue", ":break", ":return", or ":finish" in
1795 * the finally clause. The latter case need not be tested since then
1796 * anything pending has already been discarded. */
1797 skip = did_emsg || got_int || did_throw ||
1798 !(cstack->cs_flags[cstack->cs_idx] & CSF_TRUE);
1799
1800 if (!(cstack->cs_flags[cstack->cs_idx] & CSF_TRY))
1801 {
Bram Moolenaar12805862005-01-05 22:16:17 +00001802 eap->errmsg = get_end_emsg(cstack);
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001803 // Find the matching ":try" and report what's missing.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001804 idx = cstack->cs_idx;
1805 do
1806 --idx;
1807 while (idx > 0 && !(cstack->cs_flags[idx] & CSF_TRY));
Bram Moolenaar12805862005-01-05 22:16:17 +00001808 rewind_conditionals(cstack, idx, CSF_WHILE | CSF_FOR,
1809 &cstack->cs_looplevel);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001810 skip = TRUE;
1811
1812 /*
1813 * If an exception is being thrown, discard it to prevent it from
1814 * being rethrown at the end of this function. It would be
1815 * discarded by the error message, anyway. Resets did_throw.
1816 * This does not affect the script termination due to the error
1817 * since "trylevel" is decremented after emsg() has been called.
1818 */
1819 if (did_throw)
1820 discard_current_exception();
1821 }
1822 else
1823 {
1824 idx = cstack->cs_idx;
1825
1826 /*
1827 * If we stopped with the exception currently being thrown at this
1828 * try conditional since we didn't know that it doesn't have
1829 * a finally clause, we need to rethrow it after closing the try
1830 * conditional.
1831 */
1832 if (did_throw && (cstack->cs_flags[idx] & CSF_TRUE)
1833 && !(cstack->cs_flags[idx] & CSF_FINALLY))
1834 rethrow = TRUE;
1835 }
1836
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001837 // If there was no finally clause, show the user when debugging or
1838 // a breakpoint was encountered that the end of the try conditional has
1839 // been reached: display the debug prompt (if not already done). Do
1840 // this on normal control flow or when an exception was thrown, but not
1841 // on an interrupt or error not converted to an exception or when
1842 // a ":break", ":continue", ":return", or ":finish" is pending. These
1843 // actions are carried out immediately.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001844 if ((rethrow || (!skip
1845 && !(cstack->cs_flags[idx] & CSF_FINALLY)
1846 && !cstack->cs_pending[idx]))
1847 && dbg_check_skipped(eap))
1848 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001849 // Handle a ">quit" debug command as if an interrupt had occurred
1850 // before the ":endtry". That is, throw an interrupt exception and
1851 // set "skip" and "rethrow".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001852 if (got_int)
1853 {
1854 skip = TRUE;
1855 (void)do_intthrow(cstack);
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001856 // The do_intthrow() call may have reset did_throw or
1857 // cstack->cs_pending[idx].
Bram Moolenaar071d4272004-06-13 20:20:40 +00001858 rethrow = FALSE;
1859 if (did_throw && !(cstack->cs_flags[idx] & CSF_FINALLY))
1860 rethrow = TRUE;
1861 }
1862 }
1863
1864 /*
1865 * If a ":return" is pending, we need to resume it after closing the
1866 * try conditional; remember the return value. If there was a finally
1867 * clause making an exception pending, we need to rethrow it. Make it
1868 * the exception currently being thrown.
1869 */
1870 if (!skip)
1871 {
1872 pending = cstack->cs_pending[idx];
1873 cstack->cs_pending[idx] = CSTP_NONE;
1874 if (pending == CSTP_RETURN)
Bram Moolenaarfca34d62005-01-04 21:38:36 +00001875 rettv = cstack->cs_rettv[idx];
Bram Moolenaar071d4272004-06-13 20:20:40 +00001876 else if (pending & CSTP_THROW)
1877 current_exception = cstack->cs_exception[idx];
1878 }
1879
1880 /*
1881 * Discard anything pending on an error, interrupt, or throw in the
1882 * finally clause. If there was no ":finally", discard a pending
1883 * ":continue", ":break", ":return", or ":finish" if an error or
1884 * interrupt occurred afterwards, but before the ":endtry" was reached.
1885 * If an exception was caught by the last of the catch clauses and there
1886 * was no finally clause, finish the exception now. This happens also
1887 * after errors except when this ":endtry" is not within a ":try".
1888 * Restore "emsg_silent" if it has been reset by this try conditional.
1889 */
Bram Moolenaareb3593b2006-04-22 22:33:57 +00001890 (void)cleanup_conditionals(cstack, CSF_TRY | CSF_SILENT, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001891
1892 --cstack->cs_idx;
1893 --cstack->cs_trylevel;
1894
1895 if (!skip)
1896 {
1897 report_resume_pending(pending,
Bram Moolenaarfca34d62005-01-04 21:38:36 +00001898 (pending == CSTP_RETURN) ? rettv :
Bram Moolenaar071d4272004-06-13 20:20:40 +00001899 (pending & CSTP_THROW) ? (void *)current_exception : NULL);
1900 switch (pending)
1901 {
1902 case CSTP_NONE:
1903 break;
1904
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001905 // Reactivate a pending ":continue", ":break", ":return",
1906 // ":finish" from the try block or a catch clause of this try
1907 // conditional. This is skipped, if there was an error in an
1908 // (unskipped) conditional command or an interrupt afterwards
1909 // or if the finally clause is present and executed a new error,
1910 // interrupt, throw, ":continue", ":break", ":return", or
1911 // ":finish".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001912 case CSTP_CONTINUE:
1913 ex_continue(eap);
1914 break;
1915 case CSTP_BREAK:
1916 ex_break(eap);
1917 break;
1918 case CSTP_RETURN:
Bram Moolenaarfca34d62005-01-04 21:38:36 +00001919 do_return(eap, FALSE, FALSE, rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001920 break;
1921 case CSTP_FINISH:
1922 do_finish(eap, FALSE);
1923 break;
1924
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001925 // When the finally clause was entered due to an error,
1926 // interrupt or throw (as opposed to a ":continue", ":break",
1927 // ":return", or ":finish"), restore the pending values of
1928 // did_emsg, got_int, and did_throw. This is skipped, if there
1929 // was a new error, interrupt, throw, ":continue", ":break",
1930 // ":return", or ":finish". in the finally clause.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001931 default:
1932 if (pending & CSTP_ERROR)
1933 did_emsg = TRUE;
1934 if (pending & CSTP_INTERRUPT)
1935 got_int = TRUE;
1936 if (pending & CSTP_THROW)
1937 rethrow = TRUE;
1938 break;
1939 }
1940 }
1941
1942 if (rethrow)
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001943 // Rethrow the current exception (within this cstack).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001944 do_throw(cstack);
1945 }
1946}
1947
1948/*
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001949 * enter_cleanup() and leave_cleanup()
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001950 *
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001951 * Functions to be called before/after invoking a sequence of autocommands for
1952 * cleanup for a failed command. (Failure means here that a call to emsg()
1953 * has been made, an interrupt occurred, or there is an uncaught exception
1954 * from a previous autocommand execution of the same command.)
1955 *
1956 * Call enter_cleanup() with a pointer to a cleanup_T and pass the same
1957 * pointer to leave_cleanup(). The cleanup_T structure stores the pending
1958 * error/interrupt/exception state.
1959 */
1960
1961/*
1962 * This function works a bit like ex_finally() except that there was not
1963 * actually an extra try block around the part that failed and an error or
1964 * interrupt has not (yet) been converted to an exception. This function
1965 * saves the error/interrupt/ exception state and prepares for the call to
1966 * do_cmdline() that is going to be made for the cleanup autocommand
1967 * execution.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001968 */
1969 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001970enter_cleanup(cleanup_T *csp)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001971{
1972 int pending = CSTP_NONE;
1973
1974 /*
1975 * Postpone did_emsg, got_int, did_throw. The pending values will be
1976 * restored by leave_cleanup() except if there was an aborting error,
1977 * interrupt, or uncaught exception after this function ends.
1978 */
1979 if (did_emsg || got_int || did_throw || need_rethrow)
1980 {
1981 csp->pending = (did_emsg ? CSTP_ERROR : 0)
1982 | (got_int ? CSTP_INTERRUPT : 0)
1983 | (did_throw ? CSTP_THROW : 0)
1984 | (need_rethrow ? CSTP_THROW : 0);
1985
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001986 // If we are currently throwing an exception (did_throw), save it as
1987 // well. On an error not yet converted to an exception, update
1988 // "force_abort" and reset "cause_abort" (as do_errthrow() would do).
1989 // This is needed for the do_cmdline() call that is going to be made
1990 // for autocommand execution. We need not save *msg_list because
1991 // there is an extra instance for every call of do_cmdline(), anyway.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001992 if (did_throw || need_rethrow)
Bram Moolenaarcae24be2017-07-10 22:12:10 +02001993 {
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001994 csp->exception = current_exception;
Bram Moolenaarcae24be2017-07-10 22:12:10 +02001995 current_exception = NULL;
1996 }
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001997 else
1998 {
1999 csp->exception = NULL;
2000 if (did_emsg)
2001 {
2002 force_abort |= cause_abort;
2003 cause_abort = FALSE;
2004 }
2005 }
2006 did_emsg = got_int = did_throw = need_rethrow = FALSE;
2007
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002008 // Report if required by the 'verbose' option or when debugging.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00002009 report_make_pending(pending, csp->exception);
2010 }
2011 else
2012 {
2013 csp->pending = CSTP_NONE;
2014 csp->exception = NULL;
2015 }
2016}
2017
2018/*
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00002019 * See comment above enter_cleanup() for how this function is used.
2020 *
2021 * This function is a bit like ex_endtry() except that there was not actually
2022 * an extra try block around the part that failed and an error or interrupt
2023 * had not (yet) been converted to an exception when the cleanup autocommand
2024 * sequence was invoked.
2025 *
2026 * This function has to be called with the address of the cleanup_T structure
2027 * filled by enter_cleanup() as an argument; it restores the error/interrupt/
2028 * exception state saved by that function - except there was an aborting
2029 * error, an interrupt or an uncaught exception during execution of the
2030 * cleanup autocommands. In the latter case, the saved error/interrupt/
2031 * exception state is discarded.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00002032 */
2033 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002034leave_cleanup(cleanup_T *csp)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00002035{
2036 int pending = csp->pending;
2037
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002038 if (pending == CSTP_NONE) // nothing to do
Bram Moolenaarc0197e22004-09-13 20:26:32 +00002039 return;
2040
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002041 // If there was an aborting error, an interrupt, or an uncaught exception
2042 // after the corresponding call to enter_cleanup(), discard what has been
2043 // made pending by it. Report this to the user if required by the
2044 // 'verbose' option or when debugging.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00002045 if (aborting() || need_rethrow)
2046 {
2047 if (pending & CSTP_THROW)
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002048 // Cancel the pending exception (includes report).
Bram Moolenaarc0197e22004-09-13 20:26:32 +00002049 discard_exception((except_T *)csp->exception, FALSE);
2050 else
2051 report_discard_pending(pending, NULL);
2052
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002053 // If an error was about to be converted to an exception when
2054 // enter_cleanup() was called, free the message list.
Bram Moolenaar4632d292006-11-28 17:36:37 +00002055 if (msg_list != NULL)
Bram Moolenaar9fee7d42013-11-28 17:04:43 +01002056 free_global_msglist();
Bram Moolenaarc0197e22004-09-13 20:26:32 +00002057 }
2058
2059 /*
2060 * If there was no new error, interrupt, or throw between the calls
2061 * to enter_cleanup() and leave_cleanup(), restore the pending
2062 * error/interrupt/exception state.
2063 */
2064 else
2065 {
2066 /*
2067 * If there was an exception being thrown when enter_cleanup() was
2068 * called, we need to rethrow it. Make it the exception currently
2069 * being thrown.
2070 */
2071 if (pending & CSTP_THROW)
2072 current_exception = csp->exception;
2073
2074 /*
2075 * If an error was about to be converted to an exception when
2076 * enter_cleanup() was called, let "cause_abort" take the part of
2077 * "force_abort" (as done by cause_errthrow()).
2078 */
2079 else if (pending & CSTP_ERROR)
2080 {
2081 cause_abort = force_abort;
2082 force_abort = FALSE;
2083 }
2084
2085 /*
2086 * Restore the pending values of did_emsg, got_int, and did_throw.
2087 */
2088 if (pending & CSTP_ERROR)
2089 did_emsg = TRUE;
2090 if (pending & CSTP_INTERRUPT)
2091 got_int = TRUE;
2092 if (pending & CSTP_THROW)
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002093 need_rethrow = TRUE; // did_throw will be set by do_one_cmd()
Bram Moolenaarc0197e22004-09-13 20:26:32 +00002094
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002095 // Report if required by the 'verbose' option or when debugging.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00002096 report_resume_pending(pending,
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00002097 (pending & CSTP_THROW) ? (void *)current_exception : NULL);
Bram Moolenaarc0197e22004-09-13 20:26:32 +00002098 }
2099}
2100
2101
2102/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002103 * Make conditionals inactive and discard what's pending in finally clauses
2104 * until the conditional type searched for or a try conditional not in its
Bram Moolenaarde8866b2005-01-06 23:24:37 +00002105 * finally clause is reached. If this is in an active catch clause, finish
2106 * the caught exception.
2107 * Return the cstack index where the search stopped.
Bram Moolenaar12805862005-01-05 22:16:17 +00002108 * Values used for "searched_cond" are (CSF_WHILE | CSF_FOR) or CSF_TRY or 0,
2109 * the latter meaning the innermost try conditional not in its finally clause.
2110 * "inclusive" tells whether the conditional searched for should be made
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02002111 * inactive itself (a try conditional not in its finally clause possibly find
Bram Moolenaar12805862005-01-05 22:16:17 +00002112 * before is always made inactive). If "inclusive" is TRUE and
2113 * "searched_cond" is CSF_TRY|CSF_SILENT, the saved former value of
2114 * "emsg_silent", if reset when the try conditional finally reached was
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02002115 * entered, is restored (used by ex_endtry()). This is normally done only
Bram Moolenaar12805862005-01-05 22:16:17 +00002116 * when such a try conditional is left.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002117 */
2118 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002119cleanup_conditionals(
Bram Moolenaarddef1292019-12-16 17:10:33 +01002120 cstack_T *cstack,
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002121 int searched_cond,
2122 int inclusive)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002123{
2124 int idx;
2125 int stop = FALSE;
2126
2127 for (idx = cstack->cs_idx; idx >= 0; --idx)
2128 {
2129 if (cstack->cs_flags[idx] & CSF_TRY)
2130 {
2131 /*
2132 * Discard anything pending in a finally clause and continue the
2133 * search. There may also be a pending ":continue", ":break",
2134 * ":return", or ":finish" before the finally clause. We must not
2135 * discard it, unless an error or interrupt occurred afterwards.
2136 */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002137 if (did_emsg || got_int || (cstack->cs_flags[idx] & CSF_FINALLY))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002138 {
2139 switch (cstack->cs_pending[idx])
2140 {
2141 case CSTP_NONE:
2142 break;
2143
2144 case CSTP_CONTINUE:
2145 case CSTP_BREAK:
2146 case CSTP_FINISH:
2147 report_discard_pending(cstack->cs_pending[idx], NULL);
2148 cstack->cs_pending[idx] = CSTP_NONE;
2149 break;
2150
2151 case CSTP_RETURN:
2152 report_discard_pending(CSTP_RETURN,
Bram Moolenaarfca34d62005-01-04 21:38:36 +00002153 cstack->cs_rettv[idx]);
2154 discard_pending_return(cstack->cs_rettv[idx]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002155 cstack->cs_pending[idx] = CSTP_NONE;
2156 break;
2157
2158 default:
2159 if (cstack->cs_flags[idx] & CSF_FINALLY)
2160 {
2161 if (cstack->cs_pending[idx] & CSTP_THROW)
2162 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002163 // Cancel the pending exception. This is in the
2164 // finally clause, so that the stack of the
2165 // caught exceptions is not involved.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002166 discard_exception((except_T *)
2167 cstack->cs_exception[idx],
2168 FALSE);
2169 }
2170 else
2171 report_discard_pending(cstack->cs_pending[idx],
2172 NULL);
2173 cstack->cs_pending[idx] = CSTP_NONE;
2174 }
2175 break;
2176 }
2177 }
2178
2179 /*
2180 * Stop at a try conditional not in its finally clause. If this try
2181 * conditional is in an active catch clause, finish the caught
2182 * exception.
2183 */
2184 if (!(cstack->cs_flags[idx] & CSF_FINALLY))
2185 {
2186 if ((cstack->cs_flags[idx] & CSF_ACTIVE)
2187 && (cstack->cs_flags[idx] & CSF_CAUGHT))
2188 finish_exception((except_T *)cstack->cs_exception[idx]);
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002189 // Stop at this try conditional - except the try block never
2190 // got active (because of an inactive surrounding conditional
2191 // or when the ":try" appeared after an error or interrupt or
2192 // throw).
Bram Moolenaar071d4272004-06-13 20:20:40 +00002193 if (cstack->cs_flags[idx] & CSF_TRUE)
2194 {
2195 if (searched_cond == 0 && !inclusive)
2196 break;
2197 stop = TRUE;
2198 }
2199 }
2200 }
2201
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002202 // Stop on the searched conditional type (even when the surrounding
2203 // conditional is not active or something has been made pending).
2204 // If "inclusive" is TRUE and "searched_cond" is CSF_TRY|CSF_SILENT,
2205 // check first whether "emsg_silent" needs to be restored.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002206 if (cstack->cs_flags[idx] & searched_cond)
2207 {
2208 if (!inclusive)
2209 break;
2210 stop = TRUE;
2211 }
2212 cstack->cs_flags[idx] &= ~CSF_ACTIVE;
2213 if (stop && searched_cond != (CSF_TRY | CSF_SILENT))
2214 break;
2215
2216 /*
Bram Moolenaarccc18222007-05-10 18:25:20 +00002217 * When leaving a try conditional that reset "emsg_silent" on its
2218 * entry after saving the original value, restore that value here and
2219 * free the memory used to store it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002220 */
2221 if ((cstack->cs_flags[idx] & CSF_TRY)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002222 && (cstack->cs_flags[idx] & CSF_SILENT))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002223 {
2224 eslist_T *elem;
2225
2226 elem = cstack->cs_emsg_silent_list;
2227 cstack->cs_emsg_silent_list = elem->next;
2228 emsg_silent = elem->saved_emsg_silent;
2229 vim_free(elem);
2230 cstack->cs_flags[idx] &= ~CSF_SILENT;
2231 }
2232 if (stop)
2233 break;
2234 }
2235 return idx;
2236}
2237
2238/*
Bram Moolenaar12805862005-01-05 22:16:17 +00002239 * Return an appropriate error message for a missing endwhile/endfor/endif.
2240 */
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002241 static char *
Bram Moolenaarddef1292019-12-16 17:10:33 +01002242get_end_emsg(cstack_T *cstack)
Bram Moolenaar12805862005-01-05 22:16:17 +00002243{
2244 if (cstack->cs_flags[cstack->cs_idx] & CSF_WHILE)
2245 return e_endwhile;
2246 if (cstack->cs_flags[cstack->cs_idx] & CSF_FOR)
2247 return e_endfor;
2248 return e_endif;
2249}
2250
2251
2252/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002253 * Rewind conditionals until index "idx" is reached. "cond_type" and
2254 * "cond_level" specify a conditional type and the address of a level variable
2255 * which is to be decremented with each skipped conditional of the specified
2256 * type.
Bram Moolenaarde8866b2005-01-06 23:24:37 +00002257 * Also free "for info" structures where needed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002258 */
Bram Moolenaarde8866b2005-01-06 23:24:37 +00002259 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002260rewind_conditionals(
Bram Moolenaarddef1292019-12-16 17:10:33 +01002261 cstack_T *cstack,
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002262 int idx,
2263 int cond_type,
2264 int *cond_level)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002265{
2266 while (cstack->cs_idx > idx)
2267 {
2268 if (cstack->cs_flags[cstack->cs_idx] & cond_type)
2269 --*cond_level;
Bram Moolenaarde8866b2005-01-06 23:24:37 +00002270 if (cstack->cs_flags[cstack->cs_idx] & CSF_FOR)
2271 free_for_info(cstack->cs_forinfo[cstack->cs_idx]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002272 --cstack->cs_idx;
2273 }
2274}
2275
2276/*
2277 * ":endfunction" when not after a ":function"
2278 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002279 void
Bram Moolenaar6e949782020-04-13 17:21:00 +02002280ex_endfunction(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002281{
Bram Moolenaar6e949782020-04-13 17:21:00 +02002282 if (eap->cmdidx == CMD_enddef)
2283 emsg(_("E193: :enddef not inside a function"));
2284 else
2285 emsg(_("E193: :endfunction not inside a function"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002286}
2287
2288/*
Bram Moolenaar12805862005-01-05 22:16:17 +00002289 * Return TRUE if the string "p" looks like a ":while" or ":for" command.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002290 */
2291 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002292has_loop_cmd(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002293{
Bram Moolenaared53fb92007-11-24 20:50:24 +00002294 int len;
2295
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002296 // skip modifiers, white space and ':'
Bram Moolenaared53fb92007-11-24 20:50:24 +00002297 for (;;)
2298 {
2299 while (*p == ' ' || *p == '\t' || *p == ':')
2300 ++p;
2301 len = modifier_len(p);
2302 if (len == 0)
2303 break;
2304 p += len;
2305 }
Bram Moolenaar12805862005-01-05 22:16:17 +00002306 if ((p[0] == 'w' && p[1] == 'h')
2307 || (p[0] == 'f' && p[1] == 'o' && p[2] == 'r'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002308 return TRUE;
2309 return FALSE;
2310}
2311
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002312#endif // FEAT_EVAL