Bram Moolenaar | edf3f97 | 2016-08-29 22:49:24 +0200 | [diff] [blame] | 1 | /* vi:set ts=8 sts=4 sw=4 noet: |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2 | * |
| 3 | * VIM - Vi IMproved by Bram Moolenaar |
| 4 | * |
| 5 | * Do ":help uganda" in Vim to read copying and usage conditions. |
| 6 | * Do ":help credits" in Vim to see a list of people who contributed. |
| 7 | * See README.txt for an overview of the Vim source code. |
| 8 | */ |
| 9 | |
| 10 | /* |
| 11 | * 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 Moolenaar | ddef129 | 2019-12-16 17:10:33 +0100 | [diff] [blame] | 18 | static char *get_end_emsg(cstack_T *cstack); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 19 | |
| 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 Moolenaar | 84a05ac | 2013-05-06 04:24:17 +0200 | [diff] [blame] | 45 | * be set asynchronously afterwards by a SIGINT, so did_throw && got_int is not |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 46 | * 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 Moolenaar | 217e1b8 | 2019-12-01 21:41:28 +0100 | [diff] [blame] | 54 | // Expressions used for testing during the development phase. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 55 | # define THROW_ON_ERROR (!eval_to_number("$VIMNOERRTHROW")) |
| 56 | # define THROW_ON_INTERRUPT (!eval_to_number("$VIMNOINTTHROW")) |
| 57 | # define THROW_TEST |
| 58 | #else |
Bram Moolenaar | 217e1b8 | 2019-12-01 21:41:28 +0100 | [diff] [blame] | 59 | // Values used for the Vim release. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 60 | # define THROW_ON_ERROR TRUE |
Bram Moolenaar | af0167f | 2009-05-16 15:31:32 +0000 | [diff] [blame] | 61 | # define THROW_ON_ERROR_TRUE |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 62 | # define THROW_ON_INTERRUPT TRUE |
Bram Moolenaar | af0167f | 2009-05-16 15:31:32 +0000 | [diff] [blame] | 63 | # define THROW_ON_INTERRUPT_TRUE |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 64 | #endif |
| 65 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 66 | /* |
| 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 | */ |
| 75 | static int cause_abort = FALSE; |
| 76 | |
| 77 | /* |
Bram Moolenaar | ccc1822 | 2007-05-10 18:25:20 +0000 | [diff] [blame] | 78 | * Return TRUE when immediately aborting on error, or when an interrupt |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 79 | * 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 Moolenaar | 67a2deb | 2019-11-25 00:05:32 +0100 | [diff] [blame] | 87 | * "got_int" is also set by calling interrupt(). |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 88 | */ |
| 89 | int |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 90 | aborting(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 91 | { |
| 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 Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 102 | update_force_abort(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 103 | { |
| 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 Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 115 | should_abort(int retcode) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 116 | { |
| 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 Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 127 | aborted_in_try(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 128 | { |
Bram Moolenaar | 217e1b8 | 2019-12-01 21:41:28 +0100 | [diff] [blame] | 129 | // This function is only called after an error. In this case, "force_abort" |
| 130 | // determines whether searching for finally clauses is necessary. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 131 | 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 Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 144 | cause_errthrow( |
| 145 | char_u *mesg, |
| 146 | int severe, |
| 147 | int *ignore) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 148 | { |
Bram Moolenaar | 25e0f58 | 2020-05-25 22:36:50 +0200 | [diff] [blame] | 149 | msglist_T *elem; |
| 150 | msglist_T **plist; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 151 | |
| 152 | /* |
Bram Moolenaar | 57657d8 | 2006-04-21 22:12:41 +0000 | [diff] [blame] | 153 | * 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 Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 157 | */ |
| 158 | if (suppress_errthrow) |
| 159 | return FALSE; |
| 160 | |
| 161 | /* |
Bram Moolenaar | 57657d8 | 2006-04-21 22:12:41 +0000 | [diff] [blame] | 162 | * 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 Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 169 | */ |
| 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 Moolenaar | 57657d8 | 2006-04-21 22:12:41 +0000 | [diff] [blame] | 179 | * 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 Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 183 | */ |
| 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 Moolenaar | 57657d8 | 2006-04-21 22:12:41 +0000 | [diff] [blame] | 189 | * 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 Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 191 | * interrupt exception is catchable by the innermost try conditional and |
| 192 | * not replaced by an interrupt message error exception. |
| 193 | */ |
Bram Moolenaar | 436b5ad | 2021-12-31 22:49:24 +0000 | [diff] [blame] | 194 | if (mesg == (char_u *)_(e_interrupted)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 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 |
Bram Moolenaar | c323527 | 2021-07-10 19:42:03 +0200 | [diff] [blame] | 211 | * user, who wouldn't even get aware of the problem. Therefore, discard the |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 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 Moolenaar | 217e1b8 | 2019-12-01 21:41:28 +0100 | [diff] [blame] | 217 | // 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 Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 220 | 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 Moolenaar | 25e0f58 | 2020-05-25 22:36:50 +0200 | [diff] [blame] | 254 | elem = ALLOC_CLEAR_ONE(msglist_T); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 255 | if (elem == NULL) |
| 256 | { |
| 257 | suppress_errthrow = TRUE; |
Bram Moolenaar | e29a27f | 2021-07-20 21:07:36 +0200 | [diff] [blame] | 258 | emsg(_(e_out_of_memory)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 259 | } |
| 260 | else |
| 261 | { |
Bram Moolenaar | f9e3e09 | 2019-01-13 23:38:42 +0100 | [diff] [blame] | 262 | elem->msg = (char *)vim_strsave(mesg); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 263 | if (elem->msg == NULL) |
| 264 | { |
| 265 | vim_free(elem); |
| 266 | suppress_errthrow = TRUE; |
Bram Moolenaar | e29a27f | 2021-07-20 21:07:36 +0200 | [diff] [blame] | 267 | emsg(_(e_out_of_memory)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 268 | } |
| 269 | else |
| 270 | { |
| 271 | elem->next = NULL; |
| 272 | elem->throw_msg = NULL; |
| 273 | *plist = elem; |
| 274 | if (plist == msg_list || severe) |
| 275 | { |
Bram Moolenaar | f9e3e09 | 2019-01-13 23:38:42 +0100 | [diff] [blame] | 276 | char *tmsg; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 277 | |
Bram Moolenaar | 217e1b8 | 2019-12-01 21:41:28 +0100 | [diff] [blame] | 278 | // Skip the extra "Vim " prefix for message "E458". |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 279 | 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 | } |
Bram Moolenaar | 25e0f58 | 2020-05-25 22:36:50 +0200 | [diff] [blame] | 290 | |
| 291 | // Get the source name and lnum now, it may change before |
| 292 | // reaching do_errthrow(). |
Bram Moolenaar | 4f25b1a | 2020-09-10 19:25:05 +0200 | [diff] [blame] | 293 | elem->sfile = estack_sfile(ESTACK_NONE); |
Bram Moolenaar | 25e0f58 | 2020-05-25 22:36:50 +0200 | [diff] [blame] | 294 | elem->slnum = SOURCING_LNUM; |
Bram Moolenaar | e8c4660 | 2021-04-05 22:27:37 +0200 | [diff] [blame] | 295 | elem->msg_compiling = estack_compiling; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 296 | } |
| 297 | } |
| 298 | } |
| 299 | return TRUE; |
| 300 | } |
| 301 | } |
| 302 | |
| 303 | /* |
| 304 | * Free a "msg_list" and the messages it contains. |
| 305 | */ |
| 306 | static void |
Bram Moolenaar | 25e0f58 | 2020-05-25 22:36:50 +0200 | [diff] [blame] | 307 | free_msglist(msglist_T *l) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 308 | { |
Bram Moolenaar | 25e0f58 | 2020-05-25 22:36:50 +0200 | [diff] [blame] | 309 | msglist_T *messages, *next; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 310 | |
| 311 | messages = l; |
| 312 | while (messages != NULL) |
| 313 | { |
| 314 | next = messages->next; |
| 315 | vim_free(messages->msg); |
Bram Moolenaar | 25e0f58 | 2020-05-25 22:36:50 +0200 | [diff] [blame] | 316 | vim_free(messages->sfile); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 317 | vim_free(messages); |
| 318 | messages = next; |
| 319 | } |
| 320 | } |
| 321 | |
| 322 | /* |
Bram Moolenaar | 9fee7d4 | 2013-11-28 17:04:43 +0100 | [diff] [blame] | 323 | * Free global "*msg_list" and the messages it contains, then set "*msg_list" |
| 324 | * to NULL. |
| 325 | */ |
| 326 | void |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 327 | free_global_msglist(void) |
Bram Moolenaar | 9fee7d4 | 2013-11-28 17:04:43 +0100 | [diff] [blame] | 328 | { |
| 329 | free_msglist(*msg_list); |
| 330 | *msg_list = NULL; |
| 331 | } |
| 332 | |
| 333 | /* |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 334 | * Throw the message specified in the call to cause_errthrow() above as an |
| 335 | * error exception. If cstack is NULL, postpone the throw until do_cmdline() |
| 336 | * has returned (see do_one_cmd()). |
| 337 | */ |
| 338 | void |
Bram Moolenaar | ddef129 | 2019-12-16 17:10:33 +0100 | [diff] [blame] | 339 | do_errthrow(cstack_T *cstack, char_u *cmdname) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 340 | { |
| 341 | /* |
| 342 | * Ensure that all commands in nested function calls and sourced files |
| 343 | * are aborted immediately. |
| 344 | */ |
| 345 | if (cause_abort) |
| 346 | { |
| 347 | cause_abort = FALSE; |
| 348 | force_abort = TRUE; |
| 349 | } |
| 350 | |
Bram Moolenaar | 217e1b8 | 2019-12-01 21:41:28 +0100 | [diff] [blame] | 351 | // If no exception is to be thrown or the conversion should be done after |
| 352 | // returning to a previous invocation of do_one_cmd(), do nothing. |
Bram Moolenaar | 4632d29 | 2006-11-28 17:36:37 +0000 | [diff] [blame] | 353 | if (msg_list == NULL || *msg_list == NULL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 354 | return; |
| 355 | |
| 356 | if (throw_exception(*msg_list, ET_ERROR, cmdname) == FAIL) |
| 357 | free_msglist(*msg_list); |
| 358 | else |
| 359 | { |
| 360 | if (cstack != NULL) |
| 361 | do_throw(cstack); |
| 362 | else |
| 363 | need_rethrow = TRUE; |
| 364 | } |
| 365 | *msg_list = NULL; |
| 366 | } |
| 367 | |
| 368 | /* |
| 369 | * do_intthrow(): Replace the current exception by an interrupt or interrupt |
| 370 | * exception if appropriate. Return TRUE if the current exception is discarded, |
| 371 | * FALSE otherwise. |
| 372 | */ |
| 373 | int |
Bram Moolenaar | ddef129 | 2019-12-16 17:10:33 +0100 | [diff] [blame] | 374 | do_intthrow(cstack_T *cstack) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 375 | { |
| 376 | /* |
| 377 | * If no interrupt occurred or no try conditional is active and no exception |
| 378 | * is being thrown, do nothing (for compatibility of non-EH scripts). |
| 379 | */ |
| 380 | if (!got_int || (trylevel == 0 && !did_throw)) |
| 381 | return FALSE; |
| 382 | |
Bram Moolenaar | 217e1b8 | 2019-12-01 21:41:28 +0100 | [diff] [blame] | 383 | #ifdef THROW_TEST // avoid warning for condition always true |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 384 | if (!THROW_ON_INTERRUPT) |
| 385 | { |
| 386 | /* |
| 387 | * The interrupt aborts everything except for executing finally clauses. |
| 388 | * Discard any user or error or interrupt exception currently being |
| 389 | * thrown. |
| 390 | */ |
| 391 | if (did_throw) |
| 392 | discard_current_exception(); |
| 393 | } |
| 394 | else |
| 395 | #endif |
| 396 | { |
| 397 | /* |
| 398 | * Throw an interrupt exception, so that everything will be aborted |
| 399 | * (except for executing finally clauses), until the interrupt exception |
| 400 | * is caught; if still uncaught at the top level, the script processing |
| 401 | * will be terminated then. - If an interrupt exception is already |
| 402 | * being thrown, do nothing. |
| 403 | * |
| 404 | */ |
| 405 | if (did_throw) |
| 406 | { |
| 407 | if (current_exception->type == ET_INTERRUPT) |
| 408 | return FALSE; |
| 409 | |
Bram Moolenaar | 217e1b8 | 2019-12-01 21:41:28 +0100 | [diff] [blame] | 410 | // An interrupt exception replaces any user or error exception. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 411 | discard_current_exception(); |
| 412 | } |
| 413 | if (throw_exception("Vim:Interrupt", ET_INTERRUPT, NULL) != FAIL) |
| 414 | do_throw(cstack); |
| 415 | } |
| 416 | |
| 417 | return TRUE; |
| 418 | } |
| 419 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 420 | /* |
Bram Moolenaar | 9fee7d4 | 2013-11-28 17:04:43 +0100 | [diff] [blame] | 421 | * Get an exception message that is to be stored in current_exception->value. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 422 | */ |
Bram Moolenaar | f9e3e09 | 2019-01-13 23:38:42 +0100 | [diff] [blame] | 423 | char * |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 424 | get_exception_string( |
| 425 | void *value, |
Bram Moolenaar | 8a5883b | 2016-11-10 20:20:05 +0100 | [diff] [blame] | 426 | except_type_T type, |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 427 | char_u *cmdname, |
| 428 | int *should_free) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 429 | { |
Bram Moolenaar | f9e3e09 | 2019-01-13 23:38:42 +0100 | [diff] [blame] | 430 | char *ret; |
| 431 | char *mesg; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 432 | int cmdlen; |
Bram Moolenaar | f9e3e09 | 2019-01-13 23:38:42 +0100 | [diff] [blame] | 433 | char *p, *val; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 434 | |
| 435 | if (type == ET_ERROR) |
| 436 | { |
Bram Moolenaar | 9ef00be | 2016-03-06 14:58:28 +0100 | [diff] [blame] | 437 | *should_free = TRUE; |
Bram Moolenaar | 25e0f58 | 2020-05-25 22:36:50 +0200 | [diff] [blame] | 438 | mesg = ((msglist_T *)value)->throw_msg; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 439 | if (cmdname != NULL && *cmdname != NUL) |
| 440 | { |
Bram Moolenaar | a93fa7e | 2006-04-17 22:14:47 +0000 | [diff] [blame] | 441 | cmdlen = (int)STRLEN(cmdname); |
Bram Moolenaar | f9e3e09 | 2019-01-13 23:38:42 +0100 | [diff] [blame] | 442 | ret = (char *)vim_strnsave((char_u *)"Vim(", |
Bram Moolenaar | 71ccd03 | 2020-06-12 22:59:11 +0200 | [diff] [blame] | 443 | 4 + cmdlen + 2 + STRLEN(mesg)); |
Bram Moolenaar | 9fee7d4 | 2013-11-28 17:04:43 +0100 | [diff] [blame] | 444 | if (ret == NULL) |
| 445 | return ret; |
| 446 | STRCPY(&ret[4], cmdname); |
| 447 | STRCPY(&ret[4 + cmdlen], "):"); |
| 448 | val = ret + 4 + cmdlen + 2; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 449 | } |
| 450 | else |
| 451 | { |
Bram Moolenaar | 71ccd03 | 2020-06-12 22:59:11 +0200 | [diff] [blame] | 452 | ret = (char *)vim_strnsave((char_u *)"Vim:", 4 + STRLEN(mesg)); |
Bram Moolenaar | 9fee7d4 | 2013-11-28 17:04:43 +0100 | [diff] [blame] | 453 | if (ret == NULL) |
| 454 | return ret; |
| 455 | val = ret + 4; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 456 | } |
| 457 | |
Bram Moolenaar | 217e1b8 | 2019-12-01 21:41:28 +0100 | [diff] [blame] | 458 | // msg_add_fname may have been used to prefix the message with a file |
| 459 | // name in quotes. In the exception value, put the file name in |
| 460 | // parentheses and move it to the end. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 461 | for (p = mesg; ; p++) |
| 462 | { |
| 463 | if (*p == NUL |
| 464 | || (*p == 'E' |
| 465 | && VIM_ISDIGIT(p[1]) |
| 466 | && (p[2] == ':' |
| 467 | || (VIM_ISDIGIT(p[2]) |
| 468 | && (p[3] == ':' |
| 469 | || (VIM_ISDIGIT(p[3]) |
| 470 | && p[4] == ':')))))) |
| 471 | { |
Bram Moolenaar | 051b782 | 2005-05-19 21:00:46 +0000 | [diff] [blame] | 472 | if (*p == NUL || p == mesg) |
Bram Moolenaar | 217e1b8 | 2019-12-01 21:41:28 +0100 | [diff] [blame] | 473 | STRCAT(val, mesg); // 'E123' missing or at beginning |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 474 | else |
| 475 | { |
Bram Moolenaar | 217e1b8 | 2019-12-01 21:41:28 +0100 | [diff] [blame] | 476 | // '"filename" E123: message text' |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 477 | if (mesg[0] != '"' || p-2 < &mesg[1] || |
| 478 | p[-2] != '"' || p[-1] != ' ') |
Bram Moolenaar | 217e1b8 | 2019-12-01 21:41:28 +0100 | [diff] [blame] | 479 | // "E123:" is part of the file name. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 480 | continue; |
| 481 | |
| 482 | STRCAT(val, p); |
| 483 | p[-2] = NUL; |
| 484 | sprintf((char *)(val + STRLEN(p)), " (%s)", &mesg[1]); |
| 485 | p[-2] = '"'; |
| 486 | } |
| 487 | break; |
| 488 | } |
| 489 | } |
| 490 | } |
| 491 | else |
Bram Moolenaar | 9fee7d4 | 2013-11-28 17:04:43 +0100 | [diff] [blame] | 492 | { |
| 493 | *should_free = FALSE; |
Bram Moolenaar | f9e3e09 | 2019-01-13 23:38:42 +0100 | [diff] [blame] | 494 | ret = value; |
Bram Moolenaar | 9fee7d4 | 2013-11-28 17:04:43 +0100 | [diff] [blame] | 495 | } |
| 496 | |
| 497 | return ret; |
| 498 | } |
| 499 | |
| 500 | |
| 501 | /* |
| 502 | * Throw a new exception. Return FAIL when out of memory or it was tried to |
| 503 | * throw an illegal user exception. "value" is the exception string for a |
| 504 | * user or interrupt exception, or points to a message list in case of an |
| 505 | * error exception. |
| 506 | */ |
Bram Moolenaar | 8a7d654 | 2020-01-26 15:56:19 +0100 | [diff] [blame] | 507 | int |
Bram Moolenaar | 8a5883b | 2016-11-10 20:20:05 +0100 | [diff] [blame] | 508 | throw_exception(void *value, except_type_T type, char_u *cmdname) |
Bram Moolenaar | 9fee7d4 | 2013-11-28 17:04:43 +0100 | [diff] [blame] | 509 | { |
| 510 | except_T *excp; |
| 511 | int should_free; |
| 512 | |
| 513 | /* |
| 514 | * Disallow faking Interrupt or error exceptions as user exceptions. They |
| 515 | * would be treated differently from real interrupt or error exceptions |
| 516 | * when no active try block is found, see do_cmdline(). |
| 517 | */ |
| 518 | if (type == ET_USER) |
| 519 | { |
| 520 | if (STRNCMP((char_u *)value, "Vim", 3) == 0 |
| 521 | && (((char_u *)value)[3] == NUL || ((char_u *)value)[3] == ':' |
| 522 | || ((char_u *)value)[3] == '(')) |
| 523 | { |
Bram Moolenaar | d88be5b | 2022-01-04 19:57:55 +0000 | [diff] [blame] | 524 | emsg(_(e_cannot_throw_exceptions_with_vim_prefix)); |
Bram Moolenaar | 9fee7d4 | 2013-11-28 17:04:43 +0100 | [diff] [blame] | 525 | goto fail; |
| 526 | } |
| 527 | } |
| 528 | |
Bram Moolenaar | c799fe2 | 2019-05-28 23:08:19 +0200 | [diff] [blame] | 529 | excp = ALLOC_ONE(except_T); |
Bram Moolenaar | 9fee7d4 | 2013-11-28 17:04:43 +0100 | [diff] [blame] | 530 | if (excp == NULL) |
| 531 | goto nomem; |
| 532 | |
| 533 | if (type == ET_ERROR) |
Bram Moolenaar | 217e1b8 | 2019-12-01 21:41:28 +0100 | [diff] [blame] | 534 | // Store the original message and prefix the exception value with |
| 535 | // "Vim:" or, if a command name is given, "Vim(cmdname):". |
Bram Moolenaar | 25e0f58 | 2020-05-25 22:36:50 +0200 | [diff] [blame] | 536 | excp->messages = (msglist_T *)value; |
Bram Moolenaar | 9fee7d4 | 2013-11-28 17:04:43 +0100 | [diff] [blame] | 537 | |
| 538 | excp->value = get_exception_string(value, type, cmdname, &should_free); |
| 539 | if (excp->value == NULL && should_free) |
| 540 | goto nomem; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 541 | |
| 542 | excp->type = type; |
Bram Moolenaar | 25e0f58 | 2020-05-25 22:36:50 +0200 | [diff] [blame] | 543 | if (type == ET_ERROR && ((msglist_T *)value)->sfile != NULL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 544 | { |
Bram Moolenaar | 25e0f58 | 2020-05-25 22:36:50 +0200 | [diff] [blame] | 545 | msglist_T *entry = (msglist_T *)value; |
| 546 | |
| 547 | excp->throw_name = entry->sfile; |
| 548 | entry->sfile = NULL; |
| 549 | excp->throw_lnum = entry->slnum; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 550 | } |
Bram Moolenaar | 25e0f58 | 2020-05-25 22:36:50 +0200 | [diff] [blame] | 551 | else |
| 552 | { |
Bram Moolenaar | 4f25b1a | 2020-09-10 19:25:05 +0200 | [diff] [blame] | 553 | excp->throw_name = estack_sfile(ESTACK_NONE); |
Bram Moolenaar | 25e0f58 | 2020-05-25 22:36:50 +0200 | [diff] [blame] | 554 | if (excp->throw_name == NULL) |
| 555 | excp->throw_name = vim_strsave((char_u *)""); |
| 556 | if (excp->throw_name == NULL) |
| 557 | { |
| 558 | if (should_free) |
| 559 | vim_free(excp->value); |
| 560 | goto nomem; |
| 561 | } |
| 562 | excp->throw_lnum = SOURCING_LNUM; |
| 563 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 564 | |
ichizok | 663d18d | 2025-01-02 18:06:00 +0100 | [diff] [blame] | 565 | excp->stacktrace = stacktrace_create(); |
| 566 | if (excp->stacktrace != NULL) |
| 567 | excp->stacktrace->lv_refcount = 1; |
| 568 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 569 | if (p_verbose >= 13 || debug_break_level > 0) |
| 570 | { |
| 571 | int save_msg_silent = msg_silent; |
| 572 | |
| 573 | if (debug_break_level > 0) |
Bram Moolenaar | 217e1b8 | 2019-12-01 21:41:28 +0100 | [diff] [blame] | 574 | msg_silent = FALSE; // display messages |
Bram Moolenaar | 5c06f8b | 2005-05-31 22:14:58 +0000 | [diff] [blame] | 575 | else |
| 576 | verbose_enter(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 577 | ++no_wait_return; |
Bram Moolenaar | 5c06f8b | 2005-05-31 22:14:58 +0000 | [diff] [blame] | 578 | if (debug_break_level > 0 || *p_vfile == NUL) |
Bram Moolenaar | 217e1b8 | 2019-12-01 21:41:28 +0100 | [diff] [blame] | 579 | msg_scroll = TRUE; // always scroll up, don't overwrite |
Bram Moolenaar | 5c06f8b | 2005-05-31 22:14:58 +0000 | [diff] [blame] | 580 | |
Bram Moolenaar | f9e3e09 | 2019-01-13 23:38:42 +0100 | [diff] [blame] | 581 | smsg(_("Exception thrown: %s"), excp->value); |
Bram Moolenaar | 217e1b8 | 2019-12-01 21:41:28 +0100 | [diff] [blame] | 582 | msg_puts("\n"); // don't overwrite this either |
Bram Moolenaar | 5c06f8b | 2005-05-31 22:14:58 +0000 | [diff] [blame] | 583 | |
| 584 | if (debug_break_level > 0 || *p_vfile == NUL) |
| 585 | cmdline_row = msg_row; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 586 | --no_wait_return; |
| 587 | if (debug_break_level > 0) |
| 588 | msg_silent = save_msg_silent; |
Bram Moolenaar | 5c06f8b | 2005-05-31 22:14:58 +0000 | [diff] [blame] | 589 | else |
| 590 | verbose_leave(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 591 | } |
| 592 | |
| 593 | current_exception = excp; |
| 594 | return OK; |
| 595 | |
| 596 | nomem: |
| 597 | vim_free(excp); |
| 598 | suppress_errthrow = TRUE; |
Bram Moolenaar | e29a27f | 2021-07-20 21:07:36 +0200 | [diff] [blame] | 599 | emsg(_(e_out_of_memory)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 600 | fail: |
| 601 | current_exception = NULL; |
| 602 | return FAIL; |
| 603 | } |
| 604 | |
| 605 | /* |
| 606 | * Discard an exception. "was_finished" is set when the exception has been |
| 607 | * caught and the catch clause has been ended normally. |
| 608 | */ |
| 609 | static void |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 610 | discard_exception(except_T *excp, int was_finished) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 611 | { |
| 612 | char_u *saved_IObuff; |
| 613 | |
Bram Moolenaar | 13656f0 | 2020-12-19 17:55:54 +0100 | [diff] [blame] | 614 | if (current_exception == excp) |
| 615 | current_exception = NULL; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 616 | if (excp == NULL) |
| 617 | { |
Bram Moolenaar | 95f0960 | 2016-11-10 20:01:45 +0100 | [diff] [blame] | 618 | internal_error("discard_exception()"); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 619 | return; |
| 620 | } |
| 621 | |
| 622 | if (p_verbose >= 13 || debug_break_level > 0) |
| 623 | { |
| 624 | int save_msg_silent = msg_silent; |
| 625 | |
| 626 | saved_IObuff = vim_strsave(IObuff); |
| 627 | if (debug_break_level > 0) |
Bram Moolenaar | 217e1b8 | 2019-12-01 21:41:28 +0100 | [diff] [blame] | 628 | msg_silent = FALSE; // display messages |
Bram Moolenaar | 5c06f8b | 2005-05-31 22:14:58 +0000 | [diff] [blame] | 629 | else |
| 630 | verbose_enter(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 631 | ++no_wait_return; |
Bram Moolenaar | 5c06f8b | 2005-05-31 22:14:58 +0000 | [diff] [blame] | 632 | if (debug_break_level > 0 || *p_vfile == NUL) |
Bram Moolenaar | 217e1b8 | 2019-12-01 21:41:28 +0100 | [diff] [blame] | 633 | msg_scroll = TRUE; // always scroll up, don't overwrite |
Bram Moolenaar | 051b782 | 2005-05-19 21:00:46 +0000 | [diff] [blame] | 634 | smsg(was_finished |
Bram Moolenaar | f9e3e09 | 2019-01-13 23:38:42 +0100 | [diff] [blame] | 635 | ? _("Exception finished: %s") |
| 636 | : _("Exception discarded: %s"), |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 637 | excp->value); |
Bram Moolenaar | 217e1b8 | 2019-12-01 21:41:28 +0100 | [diff] [blame] | 638 | msg_puts("\n"); // don't overwrite this either |
Bram Moolenaar | 5c06f8b | 2005-05-31 22:14:58 +0000 | [diff] [blame] | 639 | if (debug_break_level > 0 || *p_vfile == NUL) |
| 640 | cmdline_row = msg_row; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 641 | --no_wait_return; |
| 642 | if (debug_break_level > 0) |
| 643 | msg_silent = save_msg_silent; |
Bram Moolenaar | 5c06f8b | 2005-05-31 22:14:58 +0000 | [diff] [blame] | 644 | else |
| 645 | verbose_leave(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 646 | STRCPY(IObuff, saved_IObuff); |
| 647 | vim_free(saved_IObuff); |
| 648 | } |
| 649 | if (excp->type != ET_INTERRUPT) |
| 650 | vim_free(excp->value); |
| 651 | if (excp->type == ET_ERROR) |
| 652 | free_msglist(excp->messages); |
| 653 | vim_free(excp->throw_name); |
ichizok | 663d18d | 2025-01-02 18:06:00 +0100 | [diff] [blame] | 654 | list_unref(excp->stacktrace); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 655 | vim_free(excp); |
| 656 | } |
| 657 | |
| 658 | /* |
| 659 | * Discard the exception currently being thrown. |
| 660 | */ |
| 661 | void |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 662 | discard_current_exception(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 663 | { |
Bram Moolenaar | cae24be | 2017-07-10 22:12:10 +0200 | [diff] [blame] | 664 | if (current_exception != NULL) |
Bram Moolenaar | cae24be | 2017-07-10 22:12:10 +0200 | [diff] [blame] | 665 | discard_exception(current_exception, FALSE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 666 | did_throw = FALSE; |
| 667 | need_rethrow = FALSE; |
| 668 | } |
| 669 | |
| 670 | /* |
| 671 | * Put an exception on the caught stack. |
| 672 | */ |
Bram Moolenaar | 8a7d654 | 2020-01-26 15:56:19 +0100 | [diff] [blame] | 673 | void |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 674 | catch_exception(except_T *excp) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 675 | { |
| 676 | excp->caught = caught_stack; |
| 677 | caught_stack = excp; |
Bram Moolenaar | f9e3e09 | 2019-01-13 23:38:42 +0100 | [diff] [blame] | 678 | set_vim_var_string(VV_EXCEPTION, (char_u *)excp->value, -1); |
ichizok | 663d18d | 2025-01-02 18:06:00 +0100 | [diff] [blame] | 679 | set_vim_var_list(VV_STACKTRACE, excp->stacktrace); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 680 | if (*excp->throw_name != NUL) |
| 681 | { |
| 682 | if (excp->throw_lnum != 0) |
Bram Moolenaar | 051b782 | 2005-05-19 21:00:46 +0000 | [diff] [blame] | 683 | vim_snprintf((char *)IObuff, IOSIZE, _("%s, line %ld"), |
| 684 | excp->throw_name, (long)excp->throw_lnum); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 685 | else |
Bram Moolenaar | 051b782 | 2005-05-19 21:00:46 +0000 | [diff] [blame] | 686 | vim_snprintf((char *)IObuff, IOSIZE, "%s", excp->throw_name); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 687 | set_vim_var_string(VV_THROWPOINT, IObuff, -1); |
| 688 | } |
| 689 | else |
Bram Moolenaar | 217e1b8 | 2019-12-01 21:41:28 +0100 | [diff] [blame] | 690 | // throw_name not set on an exception from a command that was typed. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 691 | set_vim_var_string(VV_THROWPOINT, NULL, -1); |
| 692 | |
| 693 | if (p_verbose >= 13 || debug_break_level > 0) |
| 694 | { |
| 695 | int save_msg_silent = msg_silent; |
| 696 | |
| 697 | if (debug_break_level > 0) |
Bram Moolenaar | 217e1b8 | 2019-12-01 21:41:28 +0100 | [diff] [blame] | 698 | msg_silent = FALSE; // display messages |
Bram Moolenaar | 5c06f8b | 2005-05-31 22:14:58 +0000 | [diff] [blame] | 699 | else |
| 700 | verbose_enter(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 701 | ++no_wait_return; |
Bram Moolenaar | 5c06f8b | 2005-05-31 22:14:58 +0000 | [diff] [blame] | 702 | if (debug_break_level > 0 || *p_vfile == NUL) |
Bram Moolenaar | 217e1b8 | 2019-12-01 21:41:28 +0100 | [diff] [blame] | 703 | msg_scroll = TRUE; // always scroll up, don't overwrite |
Bram Moolenaar | 5c06f8b | 2005-05-31 22:14:58 +0000 | [diff] [blame] | 704 | |
Bram Moolenaar | f9e3e09 | 2019-01-13 23:38:42 +0100 | [diff] [blame] | 705 | smsg(_("Exception caught: %s"), excp->value); |
Bram Moolenaar | 217e1b8 | 2019-12-01 21:41:28 +0100 | [diff] [blame] | 706 | msg_puts("\n"); // don't overwrite this either |
Bram Moolenaar | 5c06f8b | 2005-05-31 22:14:58 +0000 | [diff] [blame] | 707 | |
| 708 | if (debug_break_level > 0 || *p_vfile == NUL) |
| 709 | cmdline_row = msg_row; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 710 | --no_wait_return; |
| 711 | if (debug_break_level > 0) |
| 712 | msg_silent = save_msg_silent; |
Bram Moolenaar | 5c06f8b | 2005-05-31 22:14:58 +0000 | [diff] [blame] | 713 | else |
| 714 | verbose_leave(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 715 | } |
| 716 | } |
| 717 | |
| 718 | /* |
| 719 | * Remove an exception from the caught stack. |
| 720 | */ |
Yee Cheng Chin | 2051af1 | 2025-01-09 22:14:34 +0100 | [diff] [blame] | 721 | void |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 722 | finish_exception(except_T *excp) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 723 | { |
| 724 | if (excp != caught_stack) |
Bram Moolenaar | 95f0960 | 2016-11-10 20:01:45 +0100 | [diff] [blame] | 725 | internal_error("finish_exception()"); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 726 | caught_stack = caught_stack->caught; |
| 727 | if (caught_stack != NULL) |
| 728 | { |
Bram Moolenaar | f9e3e09 | 2019-01-13 23:38:42 +0100 | [diff] [blame] | 729 | set_vim_var_string(VV_EXCEPTION, (char_u *)caught_stack->value, -1); |
ichizok | 663d18d | 2025-01-02 18:06:00 +0100 | [diff] [blame] | 730 | set_vim_var_list(VV_STACKTRACE, caught_stack->stacktrace); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 731 | if (*caught_stack->throw_name != NUL) |
| 732 | { |
| 733 | if (caught_stack->throw_lnum != 0) |
Bram Moolenaar | 051b782 | 2005-05-19 21:00:46 +0000 | [diff] [blame] | 734 | vim_snprintf((char *)IObuff, IOSIZE, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 735 | _("%s, line %ld"), caught_stack->throw_name, |
| 736 | (long)caught_stack->throw_lnum); |
| 737 | else |
Bram Moolenaar | 051b782 | 2005-05-19 21:00:46 +0000 | [diff] [blame] | 738 | vim_snprintf((char *)IObuff, IOSIZE, "%s", |
| 739 | caught_stack->throw_name); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 740 | set_vim_var_string(VV_THROWPOINT, IObuff, -1); |
| 741 | } |
| 742 | else |
Bram Moolenaar | 217e1b8 | 2019-12-01 21:41:28 +0100 | [diff] [blame] | 743 | // throw_name not set on an exception from a command that was |
| 744 | // typed. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 745 | set_vim_var_string(VV_THROWPOINT, NULL, -1); |
| 746 | } |
| 747 | else |
| 748 | { |
| 749 | set_vim_var_string(VV_EXCEPTION, NULL, -1); |
| 750 | set_vim_var_string(VV_THROWPOINT, NULL, -1); |
ichizok | 663d18d | 2025-01-02 18:06:00 +0100 | [diff] [blame] | 751 | set_vim_var_list(VV_STACKTRACE, NULL); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 752 | } |
| 753 | |
Bram Moolenaar | 217e1b8 | 2019-12-01 21:41:28 +0100 | [diff] [blame] | 754 | // Discard the exception, but use the finish message for 'verbose'. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 755 | discard_exception(excp, TRUE); |
| 756 | } |
| 757 | |
| 758 | /* |
Yegappan Lakshmanan | c59c1e0 | 2023-10-19 10:52:34 +0200 | [diff] [blame] | 759 | * Save the current exception state in "estate" |
| 760 | */ |
| 761 | void |
| 762 | exception_state_save(exception_state_T *estate) |
| 763 | { |
| 764 | estate->estate_current_exception = current_exception; |
| 765 | estate->estate_did_throw = did_throw; |
| 766 | estate->estate_need_rethrow = need_rethrow; |
| 767 | estate->estate_trylevel = trylevel; |
Yegappan Lakshmanan | 0ab500d | 2023-10-21 11:59:42 +0200 | [diff] [blame] | 768 | estate->estate_did_emsg = did_emsg; |
Yegappan Lakshmanan | c59c1e0 | 2023-10-19 10:52:34 +0200 | [diff] [blame] | 769 | } |
| 770 | |
| 771 | /* |
| 772 | * Restore the current exception state from "estate" |
| 773 | */ |
| 774 | void |
| 775 | exception_state_restore(exception_state_T *estate) |
| 776 | { |
Yegappan Lakshmanan | 0ab500d | 2023-10-21 11:59:42 +0200 | [diff] [blame] | 777 | // Handle any outstanding exceptions before restoring the state |
| 778 | if (did_throw) |
| 779 | handle_did_throw(); |
| 780 | current_exception = estate->estate_current_exception; |
| 781 | did_throw = estate->estate_did_throw; |
| 782 | need_rethrow = estate->estate_need_rethrow; |
| 783 | trylevel = estate->estate_trylevel; |
| 784 | did_emsg = estate->estate_did_emsg; |
Yegappan Lakshmanan | c59c1e0 | 2023-10-19 10:52:34 +0200 | [diff] [blame] | 785 | } |
| 786 | |
| 787 | /* |
| 788 | * Clear the current exception state |
| 789 | */ |
| 790 | void |
| 791 | exception_state_clear(void) |
| 792 | { |
| 793 | current_exception = NULL; |
| 794 | did_throw = FALSE; |
| 795 | need_rethrow = FALSE; |
| 796 | trylevel = 0; |
Yegappan Lakshmanan | 0ab500d | 2023-10-21 11:59:42 +0200 | [diff] [blame] | 797 | did_emsg = 0; |
Yegappan Lakshmanan | c59c1e0 | 2023-10-19 10:52:34 +0200 | [diff] [blame] | 798 | } |
| 799 | |
| 800 | /* |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 801 | * Flags specifying the message displayed by report_pending. |
| 802 | */ |
| 803 | #define RP_MAKE 0 |
| 804 | #define RP_RESUME 1 |
| 805 | #define RP_DISCARD 2 |
| 806 | |
| 807 | /* |
| 808 | * Report information about something pending in a finally clause if required by |
| 809 | * the 'verbose' option or when debugging. "action" tells whether something is |
| 810 | * made pending or something pending is resumed or discarded. "pending" tells |
| 811 | * what is pending. "value" specifies the return value for a pending ":return" |
| 812 | * or the exception value for a pending exception. |
| 813 | */ |
| 814 | static void |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 815 | report_pending(int action, int pending, void *value) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 816 | { |
Bram Moolenaar | f9e3e09 | 2019-01-13 23:38:42 +0100 | [diff] [blame] | 817 | char *mesg; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 818 | char *s; |
| 819 | int save_msg_silent; |
| 820 | |
| 821 | |
| 822 | switch (action) |
| 823 | { |
| 824 | case RP_MAKE: |
Bram Moolenaar | f9e3e09 | 2019-01-13 23:38:42 +0100 | [diff] [blame] | 825 | mesg = _("%s made pending"); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 826 | break; |
| 827 | case RP_RESUME: |
Bram Moolenaar | f9e3e09 | 2019-01-13 23:38:42 +0100 | [diff] [blame] | 828 | mesg = _("%s resumed"); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 829 | break; |
Bram Moolenaar | 217e1b8 | 2019-12-01 21:41:28 +0100 | [diff] [blame] | 830 | // case RP_DISCARD: |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 831 | default: |
Bram Moolenaar | f9e3e09 | 2019-01-13 23:38:42 +0100 | [diff] [blame] | 832 | mesg = _("%s discarded"); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 833 | break; |
| 834 | } |
| 835 | |
| 836 | switch (pending) |
| 837 | { |
| 838 | case CSTP_NONE: |
| 839 | return; |
| 840 | |
| 841 | case CSTP_CONTINUE: |
| 842 | s = ":continue"; |
| 843 | break; |
| 844 | case CSTP_BREAK: |
| 845 | s = ":break"; |
| 846 | break; |
| 847 | case CSTP_FINISH: |
| 848 | s = ":finish"; |
| 849 | break; |
| 850 | case CSTP_RETURN: |
Bram Moolenaar | 217e1b8 | 2019-12-01 21:41:28 +0100 | [diff] [blame] | 851 | // ":return" command producing value, allocated |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 852 | s = (char *)get_return_cmd(value); |
| 853 | break; |
| 854 | |
| 855 | default: |
| 856 | if (pending & CSTP_THROW) |
| 857 | { |
Bram Moolenaar | f9e3e09 | 2019-01-13 23:38:42 +0100 | [diff] [blame] | 858 | vim_snprintf((char *)IObuff, IOSIZE, mesg, _("Exception")); |
Bram Moolenaar | 71ccd03 | 2020-06-12 22:59:11 +0200 | [diff] [blame] | 859 | mesg = (char *)vim_strnsave(IObuff, STRLEN(IObuff) + 4); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 860 | STRCAT(mesg, ": %s"); |
| 861 | s = (char *)((except_T *)value)->value; |
| 862 | } |
| 863 | else if ((pending & CSTP_ERROR) && (pending & CSTP_INTERRUPT)) |
| 864 | s = _("Error and interrupt"); |
| 865 | else if (pending & CSTP_ERROR) |
| 866 | s = _("Error"); |
Bram Moolenaar | 217e1b8 | 2019-12-01 21:41:28 +0100 | [diff] [blame] | 867 | else // if (pending & CSTP_INTERRUPT) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 868 | s = _("Interrupt"); |
| 869 | } |
| 870 | |
| 871 | save_msg_silent = msg_silent; |
| 872 | if (debug_break_level > 0) |
Bram Moolenaar | 217e1b8 | 2019-12-01 21:41:28 +0100 | [diff] [blame] | 873 | msg_silent = FALSE; // display messages |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 874 | ++no_wait_return; |
Bram Moolenaar | 217e1b8 | 2019-12-01 21:41:28 +0100 | [diff] [blame] | 875 | msg_scroll = TRUE; // always scroll up, don't overwrite |
Bram Moolenaar | f9e3e09 | 2019-01-13 23:38:42 +0100 | [diff] [blame] | 876 | smsg(mesg, s); |
Bram Moolenaar | 217e1b8 | 2019-12-01 21:41:28 +0100 | [diff] [blame] | 877 | msg_puts("\n"); // don't overwrite this either |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 878 | cmdline_row = msg_row; |
| 879 | --no_wait_return; |
| 880 | if (debug_break_level > 0) |
| 881 | msg_silent = save_msg_silent; |
| 882 | |
| 883 | if (pending == CSTP_RETURN) |
| 884 | vim_free(s); |
| 885 | else if (pending & CSTP_THROW) |
| 886 | vim_free(mesg); |
| 887 | } |
| 888 | |
| 889 | /* |
| 890 | * If something is made pending in a finally clause, report it if required by |
| 891 | * the 'verbose' option or when debugging. |
| 892 | */ |
| 893 | void |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 894 | report_make_pending(int pending, void *value) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 895 | { |
| 896 | if (p_verbose >= 14 || debug_break_level > 0) |
Bram Moolenaar | 5c06f8b | 2005-05-31 22:14:58 +0000 | [diff] [blame] | 897 | { |
| 898 | if (debug_break_level <= 0) |
| 899 | verbose_enter(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 900 | report_pending(RP_MAKE, pending, value); |
Bram Moolenaar | 5c06f8b | 2005-05-31 22:14:58 +0000 | [diff] [blame] | 901 | if (debug_break_level <= 0) |
| 902 | verbose_leave(); |
| 903 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 904 | } |
| 905 | |
| 906 | /* |
| 907 | * If something pending in a finally clause is resumed at the ":endtry", report |
| 908 | * it if required by the 'verbose' option or when debugging. |
| 909 | */ |
Bram Moolenaar | 5843f5f | 2019-08-20 20:13:45 +0200 | [diff] [blame] | 910 | static void |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 911 | report_resume_pending(int pending, void *value) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 912 | { |
| 913 | if (p_verbose >= 14 || debug_break_level > 0) |
Bram Moolenaar | 5c06f8b | 2005-05-31 22:14:58 +0000 | [diff] [blame] | 914 | { |
| 915 | if (debug_break_level <= 0) |
| 916 | verbose_enter(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 917 | report_pending(RP_RESUME, pending, value); |
Bram Moolenaar | 5c06f8b | 2005-05-31 22:14:58 +0000 | [diff] [blame] | 918 | if (debug_break_level <= 0) |
| 919 | verbose_leave(); |
| 920 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 921 | } |
| 922 | |
| 923 | /* |
| 924 | * If something pending in a finally clause is discarded, report it if required |
| 925 | * by the 'verbose' option or when debugging. |
| 926 | */ |
Bram Moolenaar | 5843f5f | 2019-08-20 20:13:45 +0200 | [diff] [blame] | 927 | static void |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 928 | report_discard_pending(int pending, void *value) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 929 | { |
| 930 | if (p_verbose >= 14 || debug_break_level > 0) |
Bram Moolenaar | 5c06f8b | 2005-05-31 22:14:58 +0000 | [diff] [blame] | 931 | { |
| 932 | if (debug_break_level <= 0) |
| 933 | verbose_enter(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 934 | report_pending(RP_DISCARD, pending, value); |
Bram Moolenaar | 5c06f8b | 2005-05-31 22:14:58 +0000 | [diff] [blame] | 935 | if (debug_break_level <= 0) |
| 936 | verbose_leave(); |
| 937 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 938 | } |
| 939 | |
Bram Moolenaar | 7d5b8be | 2021-11-22 15:05:46 +0000 | [diff] [blame] | 940 | /* |
Bram Moolenaar | 0d03263 | 2022-05-17 12:45:15 +0100 | [diff] [blame] | 941 | * Return TRUE if "arg" is only a variable, register, environment variable, |
| 942 | * option name or string. |
Bram Moolenaar | 7d5b8be | 2021-11-22 15:05:46 +0000 | [diff] [blame] | 943 | */ |
Bram Moolenaar | 4799cef | 2021-08-25 22:37:36 +0200 | [diff] [blame] | 944 | int |
| 945 | cmd_is_name_only(char_u *arg) |
| 946 | { |
| 947 | char_u *p = arg; |
Bram Moolenaar | 7d5b8be | 2021-11-22 15:05:46 +0000 | [diff] [blame] | 948 | char_u *alias = NULL; |
Bram Moolenaar | 4799cef | 2021-08-25 22:37:36 +0200 | [diff] [blame] | 949 | int name_only = FALSE; |
| 950 | |
Bram Moolenaar | 7d5b8be | 2021-11-22 15:05:46 +0000 | [diff] [blame] | 951 | if (*p == '@') |
Bram Moolenaar | 4799cef | 2021-08-25 22:37:36 +0200 | [diff] [blame] | 952 | { |
| 953 | ++p; |
Bram Moolenaar | 7d5b8be | 2021-11-22 15:05:46 +0000 | [diff] [blame] | 954 | if (*p != NUL) |
| 955 | ++p; |
Bram Moolenaar | 4799cef | 2021-08-25 22:37:36 +0200 | [diff] [blame] | 956 | } |
Bram Moolenaar | 0d03263 | 2022-05-17 12:45:15 +0100 | [diff] [blame] | 957 | else if (*p == '\'' || *p == '"') |
| 958 | { |
| 959 | int r; |
| 960 | |
| 961 | if (*p == '"') |
| 962 | r = eval_string(&p, NULL, FALSE, FALSE); |
| 963 | else |
| 964 | r = eval_lit_string(&p, NULL, FALSE, FALSE); |
| 965 | if (r == FAIL) |
| 966 | return FALSE; |
| 967 | } |
Bram Moolenaar | 7d5b8be | 2021-11-22 15:05:46 +0000 | [diff] [blame] | 968 | else |
| 969 | { |
| 970 | if (*p == '&') |
| 971 | { |
| 972 | ++p; |
| 973 | if (STRNCMP("l:", p, 2) == 0 || STRNCMP("g:", p, 2) == 0) |
| 974 | p += 2; |
| 975 | } |
Bram Moolenaar | 65259b5 | 2021-11-23 14:52:06 +0000 | [diff] [blame] | 976 | else if (*p == '$') |
| 977 | ++p; |
Bram Moolenaar | a5348f2 | 2022-09-04 11:42:22 +0100 | [diff] [blame] | 978 | (void)get_name_len(&p, &alias, FALSE, FALSE); |
Bram Moolenaar | 7d5b8be | 2021-11-22 15:05:46 +0000 | [diff] [blame] | 979 | } |
Bram Moolenaar | 4799cef | 2021-08-25 22:37:36 +0200 | [diff] [blame] | 980 | name_only = ends_excmd2(arg, skipwhite(p)); |
| 981 | vim_free(alias); |
| 982 | return name_only; |
| 983 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 984 | |
| 985 | /* |
Bram Moolenaar | 25e4223 | 2019-08-04 15:04:10 +0200 | [diff] [blame] | 986 | * ":eval". |
| 987 | */ |
| 988 | void |
| 989 | ex_eval(exarg_T *eap) |
| 990 | { |
| 991 | typval_T tv; |
Bram Moolenaar | 5409f5d | 2020-06-24 18:37:35 +0200 | [diff] [blame] | 992 | evalarg_T evalarg; |
Bram Moolenaar | c323527 | 2021-07-10 19:42:03 +0200 | [diff] [blame] | 993 | int name_only = FALSE; |
Bram Moolenaar | c323527 | 2021-07-10 19:42:03 +0200 | [diff] [blame] | 994 | long lnum = SOURCING_LNUM; |
| 995 | |
| 996 | if (in_vim9script()) |
Bram Moolenaar | 4799cef | 2021-08-25 22:37:36 +0200 | [diff] [blame] | 997 | name_only = cmd_is_name_only(eap->arg); |
Bram Moolenaar | 25e4223 | 2019-08-04 15:04:10 +0200 | [diff] [blame] | 998 | |
Bram Moolenaar | e6b5324 | 2020-07-01 17:28:33 +0200 | [diff] [blame] | 999 | fill_evalarg_from_eap(&evalarg, eap, eap->skip); |
Bram Moolenaar | 5409f5d | 2020-06-24 18:37:35 +0200 | [diff] [blame] | 1000 | |
Bram Moolenaar | b171fb1 | 2020-06-24 20:34:03 +0200 | [diff] [blame] | 1001 | if (eval0(eap->arg, &tv, eap, &evalarg) == OK) |
Bram Moolenaar | c323527 | 2021-07-10 19:42:03 +0200 | [diff] [blame] | 1002 | { |
Bram Moolenaar | 25e4223 | 2019-08-04 15:04:10 +0200 | [diff] [blame] | 1003 | clear_tv(&tv); |
Bram Moolenaar | ea72038 | 2022-05-05 16:08:55 +0100 | [diff] [blame] | 1004 | if (in_vim9script() && name_only |
| 1005 | && (evalarg.eval_tofree == NULL |
| 1006 | || ends_excmd2(evalarg.eval_tofree, |
| 1007 | skipwhite(evalarg.eval_tofree)))) |
| 1008 | { |
| 1009 | SOURCING_LNUM = lnum; |
Bram Moolenaar | c323527 | 2021-07-10 19:42:03 +0200 | [diff] [blame] | 1010 | semsg(_(e_expression_without_effect_str), eap->arg); |
Bram Moolenaar | ea72038 | 2022-05-05 16:08:55 +0100 | [diff] [blame] | 1011 | } |
Bram Moolenaar | c323527 | 2021-07-10 19:42:03 +0200 | [diff] [blame] | 1012 | } |
Bram Moolenaar | b7a78f7 | 2020-06-28 18:43:40 +0200 | [diff] [blame] | 1013 | |
| 1014 | clear_evalarg(&evalarg, eap); |
Bram Moolenaar | 25e4223 | 2019-08-04 15:04:10 +0200 | [diff] [blame] | 1015 | } |
| 1016 | |
| 1017 | /* |
Bram Moolenaar | fcdc5d8 | 2020-10-10 19:07:09 +0200 | [diff] [blame] | 1018 | * Start a new scope/block. Caller should have checked that cs_idx is not |
| 1019 | * exceeding CSTACK_LEN. |
| 1020 | */ |
| 1021 | static void |
| 1022 | enter_block(cstack_T *cstack) |
| 1023 | { |
| 1024 | ++cstack->cs_idx; |
Bram Moolenaar | 0abc6e4 | 2021-02-26 22:21:23 +0100 | [diff] [blame] | 1025 | if (in_vim9script() && current_sctx.sc_sid > 0) |
Bram Moolenaar | 8d739de | 2020-10-14 19:39:19 +0200 | [diff] [blame] | 1026 | { |
| 1027 | scriptitem_T *si = SCRIPT_ITEM(current_sctx.sc_sid); |
| 1028 | |
| 1029 | cstack->cs_script_var_len[cstack->cs_idx] = si->sn_var_vals.ga_len; |
Bram Moolenaar | fbbcd00 | 2020-10-15 12:46:44 +0200 | [diff] [blame] | 1030 | cstack->cs_block_id[cstack->cs_idx] = ++si->sn_last_block_id; |
| 1031 | si->sn_current_block_id = si->sn_last_block_id; |
Bram Moolenaar | 8d739de | 2020-10-14 19:39:19 +0200 | [diff] [blame] | 1032 | } |
Bram Moolenaar | 3e492c2 | 2021-01-27 21:37:13 +0100 | [diff] [blame] | 1033 | else |
| 1034 | { |
| 1035 | // Just in case in_vim9script() does not return the same value when the |
| 1036 | // block ends. |
| 1037 | cstack->cs_script_var_len[cstack->cs_idx] = 0; |
| 1038 | cstack->cs_block_id[cstack->cs_idx] = 0; |
| 1039 | } |
Bram Moolenaar | fcdc5d8 | 2020-10-10 19:07:09 +0200 | [diff] [blame] | 1040 | } |
| 1041 | |
| 1042 | static void |
| 1043 | leave_block(cstack_T *cstack) |
| 1044 | { |
Bram Moolenaar | 8d739de | 2020-10-14 19:39:19 +0200 | [diff] [blame] | 1045 | if (in_vim9script() && SCRIPT_ID_VALID(current_sctx.sc_sid)) |
Bram Moolenaar | fcdc5d8 | 2020-10-10 19:07:09 +0200 | [diff] [blame] | 1046 | { |
Bram Moolenaar | d747548 | 2020-10-10 20:31:37 +0200 | [diff] [blame] | 1047 | scriptitem_T *si = SCRIPT_ITEM(current_sctx.sc_sid); |
Bram Moolenaar | 8d739de | 2020-10-14 19:39:19 +0200 | [diff] [blame] | 1048 | int i; |
Bram Moolenaar | 39ca412 | 2020-10-20 14:25:07 +0200 | [diff] [blame] | 1049 | int func_defined = |
| 1050 | cstack->cs_flags[cstack->cs_idx] & CSF_FUNC_DEF; |
Bram Moolenaar | fcdc5d8 | 2020-10-10 19:07:09 +0200 | [diff] [blame] | 1051 | |
Bram Moolenaar | 8d739de | 2020-10-14 19:39:19 +0200 | [diff] [blame] | 1052 | for (i = cstack->cs_script_var_len[cstack->cs_idx]; |
Bram Moolenaar | d747548 | 2020-10-10 20:31:37 +0200 | [diff] [blame] | 1053 | i < si->sn_var_vals.ga_len; ++i) |
Bram Moolenaar | 8d739de | 2020-10-14 19:39:19 +0200 | [diff] [blame] | 1054 | { |
| 1055 | svar_T *sv = ((svar_T *)si->sn_var_vals.ga_data) + i; |
Bram Moolenaar | d747548 | 2020-10-10 20:31:37 +0200 | [diff] [blame] | 1056 | |
Bram Moolenaar | 39ca412 | 2020-10-20 14:25:07 +0200 | [diff] [blame] | 1057 | // sv_name is set to NULL if it was already removed. This happens |
| 1058 | // when it was defined in an inner block and no functions were |
| 1059 | // defined there. |
Bram Moolenaar | 8d739de | 2020-10-14 19:39:19 +0200 | [diff] [blame] | 1060 | if (sv->sv_name != NULL) |
| 1061 | // Remove a variable declared inside the block, if it still |
Bram Moolenaar | 39ca412 | 2020-10-20 14:25:07 +0200 | [diff] [blame] | 1062 | // exists, from sn_vars and move the value into sn_all_vars |
| 1063 | // if "func_defined" is non-zero. |
| 1064 | hide_script_var(si, i, func_defined); |
Bram Moolenaar | fcdc5d8 | 2020-10-10 19:07:09 +0200 | [diff] [blame] | 1065 | } |
Bram Moolenaar | 8d739de | 2020-10-14 19:39:19 +0200 | [diff] [blame] | 1066 | |
Bram Moolenaar | fbbcd00 | 2020-10-15 12:46:44 +0200 | [diff] [blame] | 1067 | if (cstack->cs_idx == 0) |
| 1068 | si->sn_current_block_id = 0; |
| 1069 | else |
| 1070 | si->sn_current_block_id = cstack->cs_block_id[cstack->cs_idx - 1]; |
Bram Moolenaar | fcdc5d8 | 2020-10-10 19:07:09 +0200 | [diff] [blame] | 1071 | } |
| 1072 | --cstack->cs_idx; |
| 1073 | } |
| 1074 | |
| 1075 | /* |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1076 | * ":if". |
| 1077 | */ |
| 1078 | void |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 1079 | ex_if(exarg_T *eap) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1080 | { |
| 1081 | int error; |
| 1082 | int skip; |
| 1083 | int result; |
Bram Moolenaar | ddef129 | 2019-12-16 17:10:33 +0100 | [diff] [blame] | 1084 | cstack_T *cstack = eap->cstack; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1085 | |
| 1086 | if (cstack->cs_idx == CSTACK_LEN - 1) |
Bram Moolenaar | 1d423ef | 2022-01-02 21:26:16 +0000 | [diff] [blame] | 1087 | eap->errmsg = _(e_if_nesting_too_deep); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1088 | else |
| 1089 | { |
Bram Moolenaar | fcdc5d8 | 2020-10-10 19:07:09 +0200 | [diff] [blame] | 1090 | enter_block(cstack); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1091 | cstack->cs_flags[cstack->cs_idx] = 0; |
| 1092 | |
| 1093 | /* |
Bram Moolenaar | fcdc5d8 | 2020-10-10 19:07:09 +0200 | [diff] [blame] | 1094 | * Don't do something after an error, interrupt, or throw, or when |
| 1095 | * there is a surrounding conditional and it was not active. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1096 | */ |
| 1097 | skip = did_emsg || got_int || did_throw || (cstack->cs_idx > 0 |
| 1098 | && !(cstack->cs_flags[cstack->cs_idx - 1] & CSF_ACTIVE)); |
| 1099 | |
Bram Moolenaar | a4e0b97 | 2022-10-01 19:43:52 +0100 | [diff] [blame] | 1100 | result = eval_to_bool(eap->arg, &error, eap, skip, FALSE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1101 | |
| 1102 | if (!skip && !error) |
| 1103 | { |
| 1104 | if (result) |
| 1105 | cstack->cs_flags[cstack->cs_idx] = CSF_ACTIVE | CSF_TRUE; |
| 1106 | } |
| 1107 | else |
Bram Moolenaar | 217e1b8 | 2019-12-01 21:41:28 +0100 | [diff] [blame] | 1108 | // set TRUE, so this conditional will never get active |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1109 | cstack->cs_flags[cstack->cs_idx] = CSF_TRUE; |
| 1110 | } |
| 1111 | } |
| 1112 | |
| 1113 | /* |
| 1114 | * ":endif". |
| 1115 | */ |
| 1116 | void |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 1117 | ex_endif(exarg_T *eap) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1118 | { |
Bram Moolenaar | fcdc5d8 | 2020-10-10 19:07:09 +0200 | [diff] [blame] | 1119 | cstack_T *cstack = eap->cstack; |
| 1120 | |
Bram Moolenaar | 917c46a | 2021-08-10 19:53:01 +0200 | [diff] [blame] | 1121 | if (cmdmod_error(FALSE)) |
Bram Moolenaar | fa98441 | 2021-03-25 22:15:28 +0100 | [diff] [blame] | 1122 | return; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1123 | did_endif = TRUE; |
Bram Moolenaar | fcdc5d8 | 2020-10-10 19:07:09 +0200 | [diff] [blame] | 1124 | if (cstack->cs_idx < 0 |
| 1125 | || (cstack->cs_flags[cstack->cs_idx] |
Bram Moolenaar | 9becdf2 | 2020-10-10 21:33:48 +0200 | [diff] [blame] | 1126 | & (CSF_WHILE | CSF_FOR | CSF_TRY | CSF_BLOCK))) |
Bram Moolenaar | 8930caa | 2020-07-23 16:37:03 +0200 | [diff] [blame] | 1127 | eap->errmsg = _(e_endif_without_if); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1128 | else |
| 1129 | { |
| 1130 | /* |
| 1131 | * When debugging or a breakpoint was encountered, display the debug |
| 1132 | * prompt (if not already done). This shows the user that an ":endif" |
| 1133 | * is executed when the ":if" or a previous ":elseif" was not TRUE. |
| 1134 | * Handle a ">quit" debug command as if an interrupt had occurred before |
| 1135 | * the ":endif". That is, throw an interrupt exception if appropriate. |
| 1136 | * Doing this here prevents an exception for a parsing error being |
| 1137 | * discarded by throwing the interrupt exception later on. |
| 1138 | */ |
Bram Moolenaar | fcdc5d8 | 2020-10-10 19:07:09 +0200 | [diff] [blame] | 1139 | if (!(cstack->cs_flags[cstack->cs_idx] & CSF_TRUE) |
Bram Moolenaar | f461c8e | 2005-06-25 23:04:51 +0000 | [diff] [blame] | 1140 | && dbg_check_skipped(eap)) |
Bram Moolenaar | fcdc5d8 | 2020-10-10 19:07:09 +0200 | [diff] [blame] | 1141 | (void)do_intthrow(cstack); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1142 | |
Bram Moolenaar | fcdc5d8 | 2020-10-10 19:07:09 +0200 | [diff] [blame] | 1143 | leave_block(cstack); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1144 | } |
| 1145 | } |
| 1146 | |
| 1147 | /* |
| 1148 | * ":else" and ":elseif". |
| 1149 | */ |
| 1150 | void |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 1151 | ex_else(exarg_T *eap) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1152 | { |
| 1153 | int error; |
| 1154 | int skip; |
| 1155 | int result; |
Bram Moolenaar | ddef129 | 2019-12-16 17:10:33 +0100 | [diff] [blame] | 1156 | cstack_T *cstack = eap->cstack; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1157 | |
| 1158 | /* |
| 1159 | * Don't do something after an error, interrupt, or throw, or when there is |
| 1160 | * a surrounding conditional and it was not active. |
| 1161 | */ |
| 1162 | skip = did_emsg || got_int || did_throw || (cstack->cs_idx > 0 |
| 1163 | && !(cstack->cs_flags[cstack->cs_idx - 1] & CSF_ACTIVE)); |
| 1164 | |
| 1165 | if (cstack->cs_idx < 0 |
Bram Moolenaar | 1280586 | 2005-01-05 22:16:17 +0000 | [diff] [blame] | 1166 | || (cstack->cs_flags[cstack->cs_idx] |
Bram Moolenaar | 9becdf2 | 2020-10-10 21:33:48 +0200 | [diff] [blame] | 1167 | & (CSF_WHILE | CSF_FOR | CSF_TRY | CSF_BLOCK))) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1168 | { |
| 1169 | if (eap->cmdidx == CMD_else) |
| 1170 | { |
Bram Moolenaar | 8930caa | 2020-07-23 16:37:03 +0200 | [diff] [blame] | 1171 | eap->errmsg = _(e_else_without_if); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1172 | return; |
| 1173 | } |
Bram Moolenaar | 8930caa | 2020-07-23 16:37:03 +0200 | [diff] [blame] | 1174 | eap->errmsg = _(e_elseif_without_if); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1175 | skip = TRUE; |
| 1176 | } |
| 1177 | else if (cstack->cs_flags[cstack->cs_idx] & CSF_ELSE) |
| 1178 | { |
| 1179 | if (eap->cmdidx == CMD_else) |
| 1180 | { |
Bram Moolenaar | 1d423ef | 2022-01-02 21:26:16 +0000 | [diff] [blame] | 1181 | eap->errmsg = _(e_multiple_else); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1182 | return; |
| 1183 | } |
Bram Moolenaar | 1d423ef | 2022-01-02 21:26:16 +0000 | [diff] [blame] | 1184 | eap->errmsg = _(e_elseif_after_else); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1185 | skip = TRUE; |
| 1186 | } |
| 1187 | |
Bram Moolenaar | 434725c | 2022-05-06 11:27:52 +0100 | [diff] [blame] | 1188 | if (cstack->cs_idx >= 0) |
| 1189 | { |
| 1190 | // Variables declared in the previous block can no longer be |
| 1191 | // used. Needs to be done before setting "cs_flags". |
| 1192 | leave_block(cstack); |
| 1193 | enter_block(cstack); |
| 1194 | } |
Bram Moolenaar | 505ed0c | 2022-05-05 17:02:46 +0100 | [diff] [blame] | 1195 | |
Bram Moolenaar | 217e1b8 | 2019-12-01 21:41:28 +0100 | [diff] [blame] | 1196 | // if skipping or the ":if" was TRUE, reset ACTIVE, otherwise set it |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1197 | if (skip || cstack->cs_flags[cstack->cs_idx] & CSF_TRUE) |
| 1198 | { |
| 1199 | if (eap->errmsg == NULL) |
| 1200 | cstack->cs_flags[cstack->cs_idx] = CSF_TRUE; |
Bram Moolenaar | 217e1b8 | 2019-12-01 21:41:28 +0100 | [diff] [blame] | 1201 | skip = TRUE; // don't evaluate an ":elseif" |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1202 | } |
| 1203 | else |
| 1204 | cstack->cs_flags[cstack->cs_idx] = CSF_ACTIVE; |
| 1205 | |
| 1206 | /* |
| 1207 | * When debugging or a breakpoint was encountered, display the debug prompt |
| 1208 | * (if not already done). This shows the user that an ":else" or ":elseif" |
| 1209 | * is executed when the ":if" or previous ":elseif" was not TRUE. Handle |
| 1210 | * a ">quit" debug command as if an interrupt had occurred before the |
| 1211 | * ":else" or ":elseif". That is, set "skip" and throw an interrupt |
| 1212 | * exception if appropriate. Doing this here prevents that an exception |
| 1213 | * for a parsing errors is discarded when throwing the interrupt exception |
| 1214 | * later on. |
| 1215 | */ |
| 1216 | if (!skip && dbg_check_skipped(eap) && got_int) |
| 1217 | { |
| 1218 | (void)do_intthrow(cstack); |
| 1219 | skip = TRUE; |
| 1220 | } |
| 1221 | |
| 1222 | if (eap->cmdidx == CMD_elseif) |
| 1223 | { |
Bram Moolenaar | fa010cd | 2022-04-03 16:13:07 +0100 | [diff] [blame] | 1224 | // When skipping we ignore most errors, but a missing expression is |
| 1225 | // wrong, perhaps it should have been "else". |
Bram Moolenaar | 28c56d5 | 2022-11-12 23:12:55 +0000 | [diff] [blame] | 1226 | // A double quote here is the start of a string, not a comment. |
| 1227 | if (skip && *eap->arg != '"' && ends_excmd(*eap->arg)) |
Bram Moolenaar | fa010cd | 2022-04-03 16:13:07 +0100 | [diff] [blame] | 1228 | semsg(_(e_invalid_expression_str), eap->arg); |
| 1229 | else |
Bram Moolenaar | a4e0b97 | 2022-10-01 19:43:52 +0100 | [diff] [blame] | 1230 | result = eval_to_bool(eap->arg, &error, eap, skip, FALSE); |
Bram Moolenaar | 2c5ed4e | 2020-04-20 19:42:10 +0200 | [diff] [blame] | 1231 | |
Bram Moolenaar | 217e1b8 | 2019-12-01 21:41:28 +0100 | [diff] [blame] | 1232 | // When throwing error exceptions, we want to throw always the first |
| 1233 | // of several errors in a row. This is what actually happens when |
| 1234 | // a conditional error was detected above and there is another failure |
| 1235 | // when parsing the expression. Since the skip flag is set in this |
| 1236 | // case, the parsing error will be ignored by emsg(). |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1237 | if (!skip && !error) |
| 1238 | { |
| 1239 | if (result) |
| 1240 | cstack->cs_flags[cstack->cs_idx] = CSF_ACTIVE | CSF_TRUE; |
| 1241 | else |
| 1242 | cstack->cs_flags[cstack->cs_idx] = 0; |
| 1243 | } |
| 1244 | else if (eap->errmsg == NULL) |
Bram Moolenaar | 217e1b8 | 2019-12-01 21:41:28 +0100 | [diff] [blame] | 1245 | // set TRUE, so this conditional will never get active |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1246 | cstack->cs_flags[cstack->cs_idx] = CSF_TRUE; |
| 1247 | } |
| 1248 | else |
| 1249 | cstack->cs_flags[cstack->cs_idx] |= CSF_ELSE; |
| 1250 | } |
| 1251 | |
| 1252 | /* |
Bram Moolenaar | 1280586 | 2005-01-05 22:16:17 +0000 | [diff] [blame] | 1253 | * Handle ":while" and ":for". |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1254 | */ |
| 1255 | void |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 1256 | ex_while(exarg_T *eap) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1257 | { |
| 1258 | int error; |
| 1259 | int skip; |
| 1260 | int result; |
Bram Moolenaar | ddef129 | 2019-12-16 17:10:33 +0100 | [diff] [blame] | 1261 | cstack_T *cstack = eap->cstack; |
Bram Moolenaar | 766ae5b | 2022-09-14 00:30:51 +0100 | [diff] [blame] | 1262 | int prev_cs_flags = 0; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1263 | |
| 1264 | if (cstack->cs_idx == CSTACK_LEN - 1) |
Bram Moolenaar | 1d423ef | 2022-01-02 21:26:16 +0000 | [diff] [blame] | 1265 | eap->errmsg = _(e_while_for_nesting_too_deep); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1266 | else |
| 1267 | { |
| 1268 | /* |
Bram Moolenaar | 1280586 | 2005-01-05 22:16:17 +0000 | [diff] [blame] | 1269 | * The loop flag is set when we have jumped back from the matching |
| 1270 | * ":endwhile" or ":endfor". When not set, need to initialise this |
| 1271 | * cstack entry. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1272 | */ |
Bram Moolenaar | 1280586 | 2005-01-05 22:16:17 +0000 | [diff] [blame] | 1273 | if ((cstack->cs_lflags & CSL_HAD_LOOP) == 0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1274 | { |
Bram Moolenaar | fcdc5d8 | 2020-10-10 19:07:09 +0200 | [diff] [blame] | 1275 | enter_block(cstack); |
Bram Moolenaar | 1280586 | 2005-01-05 22:16:17 +0000 | [diff] [blame] | 1276 | ++cstack->cs_looplevel; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1277 | cstack->cs_line[cstack->cs_idx] = -1; |
| 1278 | } |
Bram Moolenaar | 522eefd | 2021-03-26 18:49:22 +0100 | [diff] [blame] | 1279 | else |
| 1280 | { |
| 1281 | if (in_vim9script() && SCRIPT_ID_VALID(current_sctx.sc_sid)) |
| 1282 | { |
| 1283 | scriptitem_T *si = SCRIPT_ITEM(current_sctx.sc_sid); |
| 1284 | int i; |
Bram Moolenaar | 353b68a | 2022-09-13 21:10:45 +0100 | [diff] [blame] | 1285 | int first; |
Bram Moolenaar | 2eb6fc3 | 2021-07-25 14:13:53 +0200 | [diff] [blame] | 1286 | int func_defined = cstack->cs_flags[cstack->cs_idx] |
| 1287 | & CSF_FUNC_DEF; |
Bram Moolenaar | 522eefd | 2021-03-26 18:49:22 +0100 | [diff] [blame] | 1288 | |
| 1289 | // Any variables defined in the previous round are no longer |
Bram Moolenaar | 7a53f29 | 2021-11-22 18:31:02 +0000 | [diff] [blame] | 1290 | // visible. Keep the first one for ":for", it is the loop |
| 1291 | // variable that we reuse every time around. |
Bram Moolenaar | 353b68a | 2022-09-13 21:10:45 +0100 | [diff] [blame] | 1292 | // Do this backwards, so that vars defined in a later round are |
| 1293 | // found first. |
Bram Moolenaar | e8e369a | 2022-09-21 18:59:14 +0100 | [diff] [blame] | 1294 | first = cstack->cs_script_var_len[cstack->cs_idx]; |
| 1295 | if (eap->cmdidx == CMD_for) |
| 1296 | { |
| 1297 | forinfo_T *fi = cstack->cs_forinfo[cstack->cs_idx]; |
| 1298 | |
| 1299 | first += fi == NULL || fi->fi_varcount == 0 |
| 1300 | ? 1 : fi->fi_varcount; |
| 1301 | } |
Bram Moolenaar | 353b68a | 2022-09-13 21:10:45 +0100 | [diff] [blame] | 1302 | for (i = si->sn_var_vals.ga_len - 1; i >= first; --i) |
Bram Moolenaar | 522eefd | 2021-03-26 18:49:22 +0100 | [diff] [blame] | 1303 | { |
| 1304 | svar_T *sv = ((svar_T *)si->sn_var_vals.ga_data) + i; |
| 1305 | |
| 1306 | // sv_name is set to NULL if it was already removed. This |
| 1307 | // happens when it was defined in an inner block and no |
| 1308 | // functions were defined there. |
| 1309 | if (sv->sv_name != NULL) |
| 1310 | // Remove a variable declared inside the block, if it |
| 1311 | // still exists, from sn_vars. |
Bram Moolenaar | 2eb6fc3 | 2021-07-25 14:13:53 +0200 | [diff] [blame] | 1312 | hide_script_var(si, i, func_defined); |
Bram Moolenaar | 522eefd | 2021-03-26 18:49:22 +0100 | [diff] [blame] | 1313 | } |
Bram Moolenaar | 353b68a | 2022-09-13 21:10:45 +0100 | [diff] [blame] | 1314 | |
| 1315 | // Start a new block ID, so that variables defined inside the |
| 1316 | // loop are created new and not shared with the previous loop. |
| 1317 | // Matters when used in a closure. |
| 1318 | cstack->cs_block_id[cstack->cs_idx] = ++si->sn_last_block_id; |
| 1319 | si->sn_current_block_id = si->sn_last_block_id; |
Bram Moolenaar | 522eefd | 2021-03-26 18:49:22 +0100 | [diff] [blame] | 1320 | } |
| 1321 | } |
Bram Moolenaar | 766ae5b | 2022-09-14 00:30:51 +0100 | [diff] [blame] | 1322 | prev_cs_flags = cstack->cs_flags[cstack->cs_idx]; |
Bram Moolenaar | 1280586 | 2005-01-05 22:16:17 +0000 | [diff] [blame] | 1323 | cstack->cs_flags[cstack->cs_idx] = |
| 1324 | eap->cmdidx == CMD_while ? CSF_WHILE : CSF_FOR; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1325 | |
| 1326 | /* |
Bram Moolenaar | 1280586 | 2005-01-05 22:16:17 +0000 | [diff] [blame] | 1327 | * Don't do something after an error, interrupt, or throw, or when |
| 1328 | * there is a surrounding conditional and it was not active. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1329 | */ |
| 1330 | skip = did_emsg || got_int || did_throw || (cstack->cs_idx > 0 |
| 1331 | && !(cstack->cs_flags[cstack->cs_idx - 1] & CSF_ACTIVE)); |
Bram Moolenaar | 1280586 | 2005-01-05 22:16:17 +0000 | [diff] [blame] | 1332 | if (eap->cmdidx == CMD_while) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1333 | { |
Bram Moolenaar | 1280586 | 2005-01-05 22:16:17 +0000 | [diff] [blame] | 1334 | /* |
| 1335 | * ":while bool-expr" |
| 1336 | */ |
Bram Moolenaar | a4e0b97 | 2022-10-01 19:43:52 +0100 | [diff] [blame] | 1337 | result = eval_to_bool(eap->arg, &error, eap, skip, FALSE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1338 | } |
| 1339 | else |
| 1340 | { |
Bram Moolenaar | 766ae5b | 2022-09-14 00:30:51 +0100 | [diff] [blame] | 1341 | forinfo_T *fi; |
Bram Moolenaar | b7a78f7 | 2020-06-28 18:43:40 +0200 | [diff] [blame] | 1342 | evalarg_T evalarg; |
| 1343 | |
Bram Moolenaar | 522eefd | 2021-03-26 18:49:22 +0100 | [diff] [blame] | 1344 | /* |
| 1345 | * ":for var in list-expr" |
| 1346 | */ |
Bram Moolenaar | 2eb6fc3 | 2021-07-25 14:13:53 +0200 | [diff] [blame] | 1347 | fill_evalarg_from_eap(&evalarg, eap, skip); |
Bram Moolenaar | 1280586 | 2005-01-05 22:16:17 +0000 | [diff] [blame] | 1348 | if ((cstack->cs_lflags & CSL_HAD_LOOP) != 0) |
| 1349 | { |
Bram Moolenaar | 217e1b8 | 2019-12-01 21:41:28 +0100 | [diff] [blame] | 1350 | // Jumping here from a ":continue" or ":endfor": use the |
| 1351 | // previously evaluated list. |
Bram Moolenaar | de8866b | 2005-01-06 23:24:37 +0000 | [diff] [blame] | 1352 | fi = cstack->cs_forinfo[cstack->cs_idx]; |
Bram Moolenaar | 1280586 | 2005-01-05 22:16:17 +0000 | [diff] [blame] | 1353 | error = FALSE; |
Bram Moolenaar | b7a78f7 | 2020-06-28 18:43:40 +0200 | [diff] [blame] | 1354 | |
| 1355 | // the "in expr" is not used, skip over it |
| 1356 | skip_for_lines(fi, &evalarg); |
Bram Moolenaar | 1280586 | 2005-01-05 22:16:17 +0000 | [diff] [blame] | 1357 | } |
| 1358 | else |
| 1359 | { |
Bram Moolenaar | d4ab807 | 2021-07-08 19:22:12 +0200 | [diff] [blame] | 1360 | long save_lnum = SOURCING_LNUM; |
| 1361 | |
Bram Moolenaar | 217e1b8 | 2019-12-01 21:41:28 +0100 | [diff] [blame] | 1362 | // Evaluate the argument and get the info in a structure. |
Bram Moolenaar | b7a78f7 | 2020-06-28 18:43:40 +0200 | [diff] [blame] | 1363 | fi = eval_for_line(eap->arg, &error, eap, &evalarg); |
Bram Moolenaar | de8866b | 2005-01-06 23:24:37 +0000 | [diff] [blame] | 1364 | cstack->cs_forinfo[cstack->cs_idx] = fi; |
Bram Moolenaar | d4ab807 | 2021-07-08 19:22:12 +0200 | [diff] [blame] | 1365 | |
| 1366 | // Errors should use the first line number. |
| 1367 | SOURCING_LNUM = save_lnum; |
Bram Moolenaar | 1280586 | 2005-01-05 22:16:17 +0000 | [diff] [blame] | 1368 | } |
| 1369 | |
Bram Moolenaar | 217e1b8 | 2019-12-01 21:41:28 +0100 | [diff] [blame] | 1370 | // use the element at the start of the list and advance |
Bram Moolenaar | 1280586 | 2005-01-05 22:16:17 +0000 | [diff] [blame] | 1371 | if (!error && fi != NULL && !skip) |
| 1372 | result = next_for_item(fi, eap->arg); |
| 1373 | else |
| 1374 | result = FALSE; |
Bram Moolenaar | 766ae5b | 2022-09-14 00:30:51 +0100 | [diff] [blame] | 1375 | if (fi != NULL) |
| 1376 | // OR all the cs_flags together, if a function was defined in |
| 1377 | // any round then the loop variable may have been used. |
| 1378 | fi->fi_cs_flags |= prev_cs_flags; |
Bram Moolenaar | 1280586 | 2005-01-05 22:16:17 +0000 | [diff] [blame] | 1379 | |
| 1380 | if (!result) |
| 1381 | { |
Bram Moolenaar | 766ae5b | 2022-09-14 00:30:51 +0100 | [diff] [blame] | 1382 | // If a function was defined in any round then set the |
| 1383 | // CSF_FUNC_DEF flag now, so that it's seen by leave_block(). |
| 1384 | if (fi != NULL && (fi->fi_cs_flags & CSF_FUNC_DEF)) |
| 1385 | cstack->cs_flags[cstack->cs_idx] |= CSF_FUNC_DEF; |
| 1386 | |
Bram Moolenaar | 1280586 | 2005-01-05 22:16:17 +0000 | [diff] [blame] | 1387 | free_for_info(fi); |
Bram Moolenaar | de8866b | 2005-01-06 23:24:37 +0000 | [diff] [blame] | 1388 | cstack->cs_forinfo[cstack->cs_idx] = NULL; |
Bram Moolenaar | 1280586 | 2005-01-05 22:16:17 +0000 | [diff] [blame] | 1389 | } |
Bram Moolenaar | b7a78f7 | 2020-06-28 18:43:40 +0200 | [diff] [blame] | 1390 | clear_evalarg(&evalarg, eap); |
Bram Moolenaar | 1280586 | 2005-01-05 22:16:17 +0000 | [diff] [blame] | 1391 | } |
| 1392 | |
| 1393 | /* |
| 1394 | * If this cstack entry was just initialised and is active, set the |
| 1395 | * loop flag, so do_cmdline() will set the line number in cs_line[]. |
| 1396 | * If executing the command a second time, clear the loop flag. |
| 1397 | */ |
| 1398 | if (!skip && !error && result) |
| 1399 | { |
| 1400 | cstack->cs_flags[cstack->cs_idx] |= (CSF_ACTIVE | CSF_TRUE); |
| 1401 | cstack->cs_lflags ^= CSL_HAD_LOOP; |
| 1402 | } |
| 1403 | else |
| 1404 | { |
| 1405 | cstack->cs_lflags &= ~CSL_HAD_LOOP; |
Bram Moolenaar | 217e1b8 | 2019-12-01 21:41:28 +0100 | [diff] [blame] | 1406 | // If the ":while" evaluates to FALSE or ":for" is past the end of |
| 1407 | // the list, show the debug prompt at the ":endwhile"/":endfor" as |
| 1408 | // if there was a ":break" in a ":while"/":for" evaluating to |
| 1409 | // TRUE. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1410 | if (!skip && !error) |
| 1411 | cstack->cs_flags[cstack->cs_idx] |= CSF_TRUE; |
| 1412 | } |
| 1413 | } |
| 1414 | } |
| 1415 | |
| 1416 | /* |
| 1417 | * ":continue" |
| 1418 | */ |
| 1419 | void |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 1420 | ex_continue(exarg_T *eap) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1421 | { |
| 1422 | int idx; |
Bram Moolenaar | ddef129 | 2019-12-16 17:10:33 +0100 | [diff] [blame] | 1423 | cstack_T *cstack = eap->cstack; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1424 | |
Bram Moolenaar | 1280586 | 2005-01-05 22:16:17 +0000 | [diff] [blame] | 1425 | if (cstack->cs_looplevel <= 0 || cstack->cs_idx < 0) |
Bram Moolenaar | 3a846e6 | 2022-01-01 16:21:00 +0000 | [diff] [blame] | 1426 | eap->errmsg = _(e_continue_without_while_or_for); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1427 | else |
| 1428 | { |
Bram Moolenaar | 217e1b8 | 2019-12-01 21:41:28 +0100 | [diff] [blame] | 1429 | // Try to find the matching ":while". This might stop at a try |
| 1430 | // conditional not in its finally clause (which is then to be executed |
Bram Moolenaar | c323527 | 2021-07-10 19:42:03 +0200 | [diff] [blame] | 1431 | // next). Therefore, inactivate all conditionals except the ":while" |
Bram Moolenaar | 217e1b8 | 2019-12-01 21:41:28 +0100 | [diff] [blame] | 1432 | // itself (if reached). |
Bram Moolenaar | 1280586 | 2005-01-05 22:16:17 +0000 | [diff] [blame] | 1433 | idx = cleanup_conditionals(cstack, CSF_WHILE | CSF_FOR, FALSE); |
Bram Moolenaar | eb3593b | 2006-04-22 22:33:57 +0000 | [diff] [blame] | 1434 | if (idx >= 0 && (cstack->cs_flags[idx] & (CSF_WHILE | CSF_FOR))) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1435 | { |
Bram Moolenaar | de8866b | 2005-01-06 23:24:37 +0000 | [diff] [blame] | 1436 | rewind_conditionals(cstack, idx, CSF_TRY, &cstack->cs_trylevel); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1437 | |
| 1438 | /* |
Bram Moolenaar | 1280586 | 2005-01-05 22:16:17 +0000 | [diff] [blame] | 1439 | * Set CSL_HAD_CONT, so do_cmdline() will jump back to the |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1440 | * matching ":while". |
| 1441 | */ |
Bram Moolenaar | 217e1b8 | 2019-12-01 21:41:28 +0100 | [diff] [blame] | 1442 | cstack->cs_lflags |= CSL_HAD_CONT; // let do_cmdline() handle it |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1443 | } |
| 1444 | else |
| 1445 | { |
Bram Moolenaar | 217e1b8 | 2019-12-01 21:41:28 +0100 | [diff] [blame] | 1446 | // If a try conditional not in its finally clause is reached first, |
| 1447 | // make the ":continue" pending for execution at the ":endtry". |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1448 | cstack->cs_pending[idx] = CSTP_CONTINUE; |
| 1449 | report_make_pending(CSTP_CONTINUE, NULL); |
| 1450 | } |
| 1451 | } |
| 1452 | } |
| 1453 | |
| 1454 | /* |
| 1455 | * ":break" |
| 1456 | */ |
| 1457 | void |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 1458 | ex_break(exarg_T *eap) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1459 | { |
| 1460 | int idx; |
Bram Moolenaar | ddef129 | 2019-12-16 17:10:33 +0100 | [diff] [blame] | 1461 | cstack_T *cstack = eap->cstack; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1462 | |
Bram Moolenaar | 1280586 | 2005-01-05 22:16:17 +0000 | [diff] [blame] | 1463 | if (cstack->cs_looplevel <= 0 || cstack->cs_idx < 0) |
Bram Moolenaar | 3a846e6 | 2022-01-01 16:21:00 +0000 | [diff] [blame] | 1464 | eap->errmsg = _(e_break_without_while_or_for); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1465 | else |
| 1466 | { |
Bram Moolenaar | 217e1b8 | 2019-12-01 21:41:28 +0100 | [diff] [blame] | 1467 | // Inactivate conditionals until the matching ":while" or a try |
| 1468 | // conditional not in its finally clause (which is then to be |
| 1469 | // executed next) is found. In the latter case, make the ":break" |
| 1470 | // pending for execution at the ":endtry". |
Bram Moolenaar | 1280586 | 2005-01-05 22:16:17 +0000 | [diff] [blame] | 1471 | idx = cleanup_conditionals(cstack, CSF_WHILE | CSF_FOR, TRUE); |
Bram Moolenaar | eb3593b | 2006-04-22 22:33:57 +0000 | [diff] [blame] | 1472 | if (idx >= 0 && !(cstack->cs_flags[idx] & (CSF_WHILE | CSF_FOR))) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1473 | { |
| 1474 | cstack->cs_pending[idx] = CSTP_BREAK; |
| 1475 | report_make_pending(CSTP_BREAK, NULL); |
| 1476 | } |
| 1477 | } |
| 1478 | } |
| 1479 | |
| 1480 | /* |
Bram Moolenaar | 1280586 | 2005-01-05 22:16:17 +0000 | [diff] [blame] | 1481 | * ":endwhile" and ":endfor" |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1482 | */ |
| 1483 | void |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 1484 | ex_endwhile(exarg_T *eap) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1485 | { |
Bram Moolenaar | ddef129 | 2019-12-16 17:10:33 +0100 | [diff] [blame] | 1486 | cstack_T *cstack = eap->cstack; |
| 1487 | int idx; |
| 1488 | char *err; |
| 1489 | int csf; |
| 1490 | int fl; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1491 | |
Bram Moolenaar | 917c46a | 2021-08-10 19:53:01 +0200 | [diff] [blame] | 1492 | if (cmdmod_error(TRUE)) |
Bram Moolenaar | fa98441 | 2021-03-25 22:15:28 +0100 | [diff] [blame] | 1493 | return; |
| 1494 | |
Bram Moolenaar | 1280586 | 2005-01-05 22:16:17 +0000 | [diff] [blame] | 1495 | if (eap->cmdidx == CMD_endwhile) |
| 1496 | { |
Bram Moolenaar | 436b5ad | 2021-12-31 22:49:24 +0000 | [diff] [blame] | 1497 | err = e_endwhile_without_while; |
Bram Moolenaar | 1280586 | 2005-01-05 22:16:17 +0000 | [diff] [blame] | 1498 | csf = CSF_WHILE; |
| 1499 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1500 | else |
| 1501 | { |
Bram Moolenaar | 436b5ad | 2021-12-31 22:49:24 +0000 | [diff] [blame] | 1502 | err = e_endfor_without_for; |
Bram Moolenaar | 1280586 | 2005-01-05 22:16:17 +0000 | [diff] [blame] | 1503 | csf = CSF_FOR; |
| 1504 | } |
| 1505 | |
| 1506 | if (cstack->cs_looplevel <= 0 || cstack->cs_idx < 0) |
Bram Moolenaar | 8930caa | 2020-07-23 16:37:03 +0200 | [diff] [blame] | 1507 | eap->errmsg = _(err); |
Bram Moolenaar | 1280586 | 2005-01-05 22:16:17 +0000 | [diff] [blame] | 1508 | else |
| 1509 | { |
Bram Moolenaar | cce81e9 | 2021-10-06 22:08:11 +0100 | [diff] [blame] | 1510 | fl = cstack->cs_flags[cstack->cs_idx]; |
Bram Moolenaar | 1280586 | 2005-01-05 22:16:17 +0000 | [diff] [blame] | 1511 | if (!(fl & csf)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1512 | { |
Bram Moolenaar | 217e1b8 | 2019-12-01 21:41:28 +0100 | [diff] [blame] | 1513 | // If we are in a ":while" or ":for" but used the wrong endloop |
| 1514 | // command, do not rewind to the next enclosing ":for"/":while". |
Bram Moolenaar | 1280586 | 2005-01-05 22:16:17 +0000 | [diff] [blame] | 1515 | if (fl & CSF_WHILE) |
Bram Moolenaar | a6f7929 | 2022-01-04 21:30:47 +0000 | [diff] [blame] | 1516 | eap->errmsg = _(e_using_endfor_with_while); |
Bram Moolenaar | 1280586 | 2005-01-05 22:16:17 +0000 | [diff] [blame] | 1517 | else if (fl & CSF_FOR) |
Bram Moolenaar | a6f7929 | 2022-01-04 21:30:47 +0000 | [diff] [blame] | 1518 | eap->errmsg = _(e_using_endwhile_with_for); |
Bram Moolenaar | 3a3a723 | 2005-01-17 22:16:15 +0000 | [diff] [blame] | 1519 | } |
| 1520 | if (!(fl & (CSF_WHILE | CSF_FOR))) |
| 1521 | { |
| 1522 | if (!(fl & CSF_TRY)) |
Bram Moolenaar | 1a99222 | 2021-12-31 17:25:48 +0000 | [diff] [blame] | 1523 | eap->errmsg = _(e_missing_endif); |
Bram Moolenaar | 1280586 | 2005-01-05 22:16:17 +0000 | [diff] [blame] | 1524 | else if (fl & CSF_FINALLY) |
Bram Moolenaar | 436b5ad | 2021-12-31 22:49:24 +0000 | [diff] [blame] | 1525 | eap->errmsg = _(e_missing_endtry); |
Bram Moolenaar | 217e1b8 | 2019-12-01 21:41:28 +0100 | [diff] [blame] | 1526 | // Try to find the matching ":while" and report what's missing. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1527 | for (idx = cstack->cs_idx; idx > 0; --idx) |
| 1528 | { |
Bram Moolenaar | 1280586 | 2005-01-05 22:16:17 +0000 | [diff] [blame] | 1529 | fl = cstack->cs_flags[idx]; |
| 1530 | if ((fl & CSF_TRY) && !(fl & CSF_FINALLY)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1531 | { |
Bram Moolenaar | 217e1b8 | 2019-12-01 21:41:28 +0100 | [diff] [blame] | 1532 | // Give up at a try conditional not in its finally clause. |
| 1533 | // Ignore the ":endwhile"/":endfor". |
Bram Moolenaar | 8930caa | 2020-07-23 16:37:03 +0200 | [diff] [blame] | 1534 | eap->errmsg = _(err); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1535 | return; |
| 1536 | } |
Bram Moolenaar | 1280586 | 2005-01-05 22:16:17 +0000 | [diff] [blame] | 1537 | if (fl & csf) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1538 | break; |
| 1539 | } |
Bram Moolenaar | 217e1b8 | 2019-12-01 21:41:28 +0100 | [diff] [blame] | 1540 | // Cleanup and rewind all contained (and unclosed) conditionals. |
Bram Moolenaar | 1280586 | 2005-01-05 22:16:17 +0000 | [diff] [blame] | 1541 | (void)cleanup_conditionals(cstack, CSF_WHILE | CSF_FOR, FALSE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1542 | rewind_conditionals(cstack, idx, CSF_TRY, &cstack->cs_trylevel); |
| 1543 | } |
| 1544 | |
| 1545 | /* |
| 1546 | * When debugging or a breakpoint was encountered, display the debug |
| 1547 | * prompt (if not already done). This shows the user that an |
Bram Moolenaar | 1280586 | 2005-01-05 22:16:17 +0000 | [diff] [blame] | 1548 | * ":endwhile"/":endfor" is executed when the ":while" was not TRUE or |
| 1549 | * after a ":break". Handle a ">quit" debug command as if an |
| 1550 | * interrupt had occurred before the ":endwhile"/":endfor". That is, |
| 1551 | * throw an interrupt exception if appropriate. Doing this here |
| 1552 | * prevents that an exception for a parsing error is discarded when |
| 1553 | * throwing the interrupt exception later on. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1554 | */ |
| 1555 | else if (cstack->cs_flags[cstack->cs_idx] & CSF_TRUE |
| 1556 | && !(cstack->cs_flags[cstack->cs_idx] & CSF_ACTIVE) |
| 1557 | && dbg_check_skipped(eap)) |
| 1558 | (void)do_intthrow(cstack); |
| 1559 | |
Bram Moolenaar | 522eefd | 2021-03-26 18:49:22 +0100 | [diff] [blame] | 1560 | // Set loop flag, so do_cmdline() will jump back to the matching |
| 1561 | // ":while" or ":for". |
Bram Moolenaar | 1280586 | 2005-01-05 22:16:17 +0000 | [diff] [blame] | 1562 | cstack->cs_lflags |= CSL_HAD_ENDLOOP; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1563 | } |
| 1564 | } |
| 1565 | |
Bram Moolenaar | 9becdf2 | 2020-10-10 21:33:48 +0200 | [diff] [blame] | 1566 | /* |
| 1567 | * "{" start of a block in Vim9 script |
| 1568 | */ |
| 1569 | void |
| 1570 | ex_block(exarg_T *eap) |
| 1571 | { |
| 1572 | cstack_T *cstack = eap->cstack; |
| 1573 | |
| 1574 | if (cstack->cs_idx == CSTACK_LEN - 1) |
Bram Moolenaar | 1d423ef | 2022-01-02 21:26:16 +0000 | [diff] [blame] | 1575 | eap->errmsg = _(e_block_nesting_too_deep); |
Bram Moolenaar | 9becdf2 | 2020-10-10 21:33:48 +0200 | [diff] [blame] | 1576 | else |
| 1577 | { |
| 1578 | enter_block(cstack); |
| 1579 | cstack->cs_flags[cstack->cs_idx] = CSF_BLOCK | CSF_ACTIVE | CSF_TRUE; |
| 1580 | } |
| 1581 | } |
| 1582 | |
| 1583 | /* |
| 1584 | * "}" end of a block in Vim9 script |
| 1585 | */ |
| 1586 | void |
| 1587 | ex_endblock(exarg_T *eap) |
| 1588 | { |
| 1589 | cstack_T *cstack = eap->cstack; |
| 1590 | |
| 1591 | if (cstack->cs_idx < 0 |
| 1592 | || (cstack->cs_flags[cstack->cs_idx] & CSF_BLOCK) == 0) |
| 1593 | eap->errmsg = _(e_endblock_without_block); |
| 1594 | else |
| 1595 | leave_block(cstack); |
| 1596 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1597 | |
Bram Moolenaar | 63b9173 | 2021-08-05 20:40:03 +0200 | [diff] [blame] | 1598 | int |
| 1599 | inside_block(exarg_T *eap) |
| 1600 | { |
| 1601 | cstack_T *cstack = eap->cstack; |
| 1602 | int i; |
| 1603 | |
| 1604 | for (i = 0; i <= cstack->cs_idx; ++i) |
| 1605 | if (cstack->cs_flags[cstack->cs_idx] & CSF_BLOCK) |
| 1606 | return TRUE; |
| 1607 | return FALSE; |
| 1608 | } |
| 1609 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1610 | /* |
| 1611 | * ":throw expr" |
| 1612 | */ |
| 1613 | void |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 1614 | ex_throw(exarg_T *eap) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1615 | { |
| 1616 | char_u *arg = eap->arg; |
| 1617 | char_u *value; |
| 1618 | |
| 1619 | if (*arg != NUL && *arg != '|' && *arg != '\n') |
Bram Moolenaar | b171fb1 | 2020-06-24 20:34:03 +0200 | [diff] [blame] | 1620 | value = eval_to_string_skip(arg, eap, eap->skip); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1621 | else |
| 1622 | { |
Bram Moolenaar | 436b5ad | 2021-12-31 22:49:24 +0000 | [diff] [blame] | 1623 | emsg(_(e_argument_required)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1624 | value = NULL; |
| 1625 | } |
| 1626 | |
Bram Moolenaar | 217e1b8 | 2019-12-01 21:41:28 +0100 | [diff] [blame] | 1627 | // On error or when an exception is thrown during argument evaluation, do |
| 1628 | // not throw. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1629 | if (!eap->skip && value != NULL) |
| 1630 | { |
| 1631 | if (throw_exception(value, ET_USER, NULL) == FAIL) |
| 1632 | vim_free(value); |
| 1633 | else |
| 1634 | do_throw(eap->cstack); |
| 1635 | } |
| 1636 | } |
| 1637 | |
| 1638 | /* |
Bram Moolenaar | 269ec65 | 2004-07-29 08:43:53 +0000 | [diff] [blame] | 1639 | * Throw the current exception through the specified cstack. Common routine |
| 1640 | * for ":throw" (user exception) and error and interrupt exceptions. Also |
| 1641 | * used for rethrowing an uncaught exception. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1642 | */ |
| 1643 | void |
Bram Moolenaar | ddef129 | 2019-12-16 17:10:33 +0100 | [diff] [blame] | 1644 | do_throw(cstack_T *cstack) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1645 | { |
| 1646 | int idx; |
| 1647 | int inactivate_try = FALSE; |
| 1648 | |
| 1649 | /* |
| 1650 | * Cleanup and inactivate up to the next surrounding try conditional that |
| 1651 | * is not in its finally clause. Normally, do not inactivate the try |
| 1652 | * conditional itself, so that its ACTIVE flag can be tested below. But |
| 1653 | * if a previous error or interrupt has not been converted to an exception, |
| 1654 | * inactivate the try conditional, too, as if the conversion had been done, |
Bram Moolenaar | 269ec65 | 2004-07-29 08:43:53 +0000 | [diff] [blame] | 1655 | * and reset the did_emsg or got_int flag, so this won't happen again at |
| 1656 | * the next surrounding try conditional. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1657 | */ |
Bram Moolenaar | af0167f | 2009-05-16 15:31:32 +0000 | [diff] [blame] | 1658 | #ifndef THROW_ON_ERROR_TRUE |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1659 | if (did_emsg && !THROW_ON_ERROR) |
| 1660 | { |
| 1661 | inactivate_try = TRUE; |
| 1662 | did_emsg = FALSE; |
| 1663 | } |
Bram Moolenaar | af0167f | 2009-05-16 15:31:32 +0000 | [diff] [blame] | 1664 | #endif |
| 1665 | #ifndef THROW_ON_INTERRUPT_TRUE |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1666 | if (got_int && !THROW_ON_INTERRUPT) |
| 1667 | { |
| 1668 | inactivate_try = TRUE; |
| 1669 | got_int = FALSE; |
| 1670 | } |
Bram Moolenaar | af0167f | 2009-05-16 15:31:32 +0000 | [diff] [blame] | 1671 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1672 | idx = cleanup_conditionals(cstack, 0, inactivate_try); |
| 1673 | if (idx >= 0) |
| 1674 | { |
| 1675 | /* |
| 1676 | * If this try conditional is active and we are before its first |
Bram Moolenaar | 269ec65 | 2004-07-29 08:43:53 +0000 | [diff] [blame] | 1677 | * ":catch", set THROWN so that the ":catch" commands will check |
| 1678 | * whether the exception matches. When the exception came from any of |
| 1679 | * the catch clauses, it will be made pending at the ":finally" (if |
| 1680 | * present) and rethrown at the ":endtry". This will also happen if |
| 1681 | * the try conditional is inactive. This is the case when we are |
| 1682 | * throwing an exception due to an error or interrupt on the way from |
| 1683 | * a preceding ":continue", ":break", ":return", ":finish", error or |
| 1684 | * interrupt (not converted to an exception) to the finally clause or |
| 1685 | * from a preceding throw of a user or error or interrupt exception to |
| 1686 | * the matching catch clause or the finally clause. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1687 | */ |
| 1688 | if (!(cstack->cs_flags[idx] & CSF_CAUGHT)) |
| 1689 | { |
| 1690 | if (cstack->cs_flags[idx] & CSF_ACTIVE) |
| 1691 | cstack->cs_flags[idx] |= CSF_THROWN; |
| 1692 | else |
Bram Moolenaar | 217e1b8 | 2019-12-01 21:41:28 +0100 | [diff] [blame] | 1693 | // THROWN may have already been set for a catchable exception |
| 1694 | // that has been discarded. Ensure it is reset for the new |
| 1695 | // exception. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1696 | cstack->cs_flags[idx] &= ~CSF_THROWN; |
| 1697 | } |
| 1698 | cstack->cs_flags[idx] &= ~CSF_ACTIVE; |
| 1699 | cstack->cs_exception[idx] = current_exception; |
| 1700 | } |
| 1701 | #if 0 |
Bram Moolenaar | 217e1b8 | 2019-12-01 21:41:28 +0100 | [diff] [blame] | 1702 | // TODO: Add optimization below. Not yet done because of interface |
| 1703 | // problems to eval.c and ex_cmds2.c. (Servatius) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1704 | else |
| 1705 | { |
| 1706 | /* |
| 1707 | * There are no catch clauses to check or finally clauses to execute. |
| 1708 | * End the current script or function. The exception will be rethrown |
| 1709 | * in the caller. |
| 1710 | */ |
| 1711 | if (getline_equal(eap->getline, eap->cookie, get_func_line)) |
| 1712 | current_funccal->returned = TRUE; |
| 1713 | elseif (eap->get_func_line == getsourceline) |
| 1714 | ((struct source_cookie *)eap->cookie)->finished = TRUE; |
| 1715 | } |
| 1716 | #endif |
| 1717 | |
| 1718 | did_throw = TRUE; |
| 1719 | } |
| 1720 | |
| 1721 | /* |
| 1722 | * ":try" |
| 1723 | */ |
| 1724 | void |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 1725 | ex_try(exarg_T *eap) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1726 | { |
| 1727 | int skip; |
Bram Moolenaar | ddef129 | 2019-12-16 17:10:33 +0100 | [diff] [blame] | 1728 | cstack_T *cstack = eap->cstack; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1729 | |
Bram Moolenaar | 917c46a | 2021-08-10 19:53:01 +0200 | [diff] [blame] | 1730 | if (cmdmod_error(FALSE)) |
Bram Moolenaar | fa98441 | 2021-03-25 22:15:28 +0100 | [diff] [blame] | 1731 | return; |
| 1732 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1733 | if (cstack->cs_idx == CSTACK_LEN - 1) |
Bram Moolenaar | d88be5b | 2022-01-04 19:57:55 +0000 | [diff] [blame] | 1734 | eap->errmsg = _(e_try_nesting_too_deep); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1735 | else |
| 1736 | { |
Bram Moolenaar | fcdc5d8 | 2020-10-10 19:07:09 +0200 | [diff] [blame] | 1737 | enter_block(cstack); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1738 | ++cstack->cs_trylevel; |
| 1739 | cstack->cs_flags[cstack->cs_idx] = CSF_TRY; |
| 1740 | cstack->cs_pending[cstack->cs_idx] = CSTP_NONE; |
| 1741 | |
| 1742 | /* |
| 1743 | * Don't do something after an error, interrupt, or throw, or when there |
| 1744 | * is a surrounding conditional and it was not active. |
| 1745 | */ |
| 1746 | skip = did_emsg || got_int || did_throw || (cstack->cs_idx > 0 |
| 1747 | && !(cstack->cs_flags[cstack->cs_idx - 1] & CSF_ACTIVE)); |
| 1748 | |
| 1749 | if (!skip) |
| 1750 | { |
Bram Moolenaar | 217e1b8 | 2019-12-01 21:41:28 +0100 | [diff] [blame] | 1751 | // Set ACTIVE and TRUE. TRUE means that the corresponding ":catch" |
| 1752 | // commands should check for a match if an exception is thrown and |
| 1753 | // that the finally clause needs to be executed. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1754 | cstack->cs_flags[cstack->cs_idx] |= CSF_ACTIVE | CSF_TRUE; |
| 1755 | |
| 1756 | /* |
| 1757 | * ":silent!", even when used in a try conditional, disables |
| 1758 | * displaying of error messages and conversion of errors to |
| 1759 | * exceptions. When the silent commands again open a try |
| 1760 | * conditional, save "emsg_silent" and reset it so that errors are |
| 1761 | * again converted to exceptions. The value is restored when that |
| 1762 | * try conditional is left. If it is left normally, the commands |
| 1763 | * following the ":endtry" are again silent. If it is left by |
| 1764 | * a ":continue", ":break", ":return", or ":finish", the commands |
| 1765 | * executed next are again silent. If it is left due to an |
| 1766 | * aborting error, an interrupt, or an exception, restoring |
| 1767 | * "emsg_silent" does not matter since we are already in the |
| 1768 | * aborting state and/or the exception has already been thrown. |
| 1769 | * The effect is then just freeing the memory that was allocated |
| 1770 | * to save the value. |
| 1771 | */ |
| 1772 | if (emsg_silent) |
| 1773 | { |
| 1774 | eslist_T *elem; |
| 1775 | |
Bram Moolenaar | c799fe2 | 2019-05-28 23:08:19 +0200 | [diff] [blame] | 1776 | elem = ALLOC_ONE(struct eslist_elem); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1777 | if (elem == NULL) |
Bram Moolenaar | e29a27f | 2021-07-20 21:07:36 +0200 | [diff] [blame] | 1778 | emsg(_(e_out_of_memory)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1779 | else |
| 1780 | { |
| 1781 | elem->saved_emsg_silent = emsg_silent; |
| 1782 | elem->next = cstack->cs_emsg_silent_list; |
| 1783 | cstack->cs_emsg_silent_list = elem; |
| 1784 | cstack->cs_flags[cstack->cs_idx] |= CSF_SILENT; |
| 1785 | emsg_silent = 0; |
| 1786 | } |
| 1787 | } |
| 1788 | } |
| 1789 | |
| 1790 | } |
| 1791 | } |
| 1792 | |
| 1793 | /* |
| 1794 | * ":catch /{pattern}/" and ":catch" |
| 1795 | */ |
| 1796 | void |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 1797 | ex_catch(exarg_T *eap) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1798 | { |
| 1799 | int idx = 0; |
| 1800 | int give_up = FALSE; |
| 1801 | int skip = FALSE; |
| 1802 | int caught = FALSE; |
| 1803 | char_u *end; |
| 1804 | int save_char = 0; |
| 1805 | char_u *save_cpo; |
| 1806 | regmatch_T regmatch; |
| 1807 | int prev_got_int; |
Bram Moolenaar | ddef129 | 2019-12-16 17:10:33 +0100 | [diff] [blame] | 1808 | cstack_T *cstack = eap->cstack; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1809 | char_u *pat; |
| 1810 | |
Bram Moolenaar | 917c46a | 2021-08-10 19:53:01 +0200 | [diff] [blame] | 1811 | if (cmdmod_error(FALSE)) |
Bram Moolenaar | fa98441 | 2021-03-25 22:15:28 +0100 | [diff] [blame] | 1812 | return; |
| 1813 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1814 | if (cstack->cs_trylevel <= 0 || cstack->cs_idx < 0) |
| 1815 | { |
Bram Moolenaar | 436b5ad | 2021-12-31 22:49:24 +0000 | [diff] [blame] | 1816 | eap->errmsg = _(e_catch_without_try); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1817 | give_up = TRUE; |
| 1818 | } |
| 1819 | else |
| 1820 | { |
| 1821 | if (!(cstack->cs_flags[cstack->cs_idx] & CSF_TRY)) |
| 1822 | { |
Bram Moolenaar | 217e1b8 | 2019-12-01 21:41:28 +0100 | [diff] [blame] | 1823 | // Report what's missing if the matching ":try" is not in its |
| 1824 | // finally clause. |
Bram Moolenaar | 1280586 | 2005-01-05 22:16:17 +0000 | [diff] [blame] | 1825 | eap->errmsg = get_end_emsg(cstack); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1826 | skip = TRUE; |
| 1827 | } |
| 1828 | for (idx = cstack->cs_idx; idx > 0; --idx) |
| 1829 | if (cstack->cs_flags[idx] & CSF_TRY) |
| 1830 | break; |
Bram Moolenaar | 4197828 | 2021-07-04 14:47:30 +0200 | [diff] [blame] | 1831 | if (cstack->cs_flags[idx] & CSF_TRY) |
| 1832 | cstack->cs_flags[idx] |= CSF_CATCH; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1833 | if (cstack->cs_flags[idx] & CSF_FINALLY) |
| 1834 | { |
Bram Moolenaar | 217e1b8 | 2019-12-01 21:41:28 +0100 | [diff] [blame] | 1835 | // Give up for a ":catch" after ":finally" and ignore it. |
| 1836 | // Just parse. |
Bram Moolenaar | d88be5b | 2022-01-04 19:57:55 +0000 | [diff] [blame] | 1837 | eap->errmsg = _(e_catch_after_finally); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1838 | give_up = TRUE; |
| 1839 | } |
Bram Moolenaar | de8866b | 2005-01-06 23:24:37 +0000 | [diff] [blame] | 1840 | else |
Bram Moolenaar | 1280586 | 2005-01-05 22:16:17 +0000 | [diff] [blame] | 1841 | rewind_conditionals(cstack, idx, CSF_WHILE | CSF_FOR, |
| 1842 | &cstack->cs_looplevel); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1843 | } |
| 1844 | |
Bram Moolenaar | 2c5ed4e | 2020-04-20 19:42:10 +0200 | [diff] [blame] | 1845 | if (ends_excmd2(eap->cmd, eap->arg)) // no argument, catch all errors |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1846 | { |
| 1847 | pat = (char_u *)".*"; |
| 1848 | end = NULL; |
| 1849 | eap->nextcmd = find_nextcmd(eap->arg); |
| 1850 | } |
| 1851 | else |
| 1852 | { |
| 1853 | pat = eap->arg + 1; |
Bram Moolenaar | 2c5ed4e | 2020-04-20 19:42:10 +0200 | [diff] [blame] | 1854 | end = skip_regexp_err(pat, *eap->arg, TRUE); |
| 1855 | if (end == NULL) |
| 1856 | give_up = TRUE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1857 | } |
| 1858 | |
| 1859 | if (!give_up) |
| 1860 | { |
| 1861 | /* |
| 1862 | * Don't do something when no exception has been thrown or when the |
| 1863 | * corresponding try block never got active (because of an inactive |
| 1864 | * surrounding conditional or after an error or interrupt or throw). |
| 1865 | */ |
| 1866 | if (!did_throw || !(cstack->cs_flags[idx] & CSF_TRUE)) |
| 1867 | skip = TRUE; |
| 1868 | |
| 1869 | /* |
| 1870 | * Check for a match only if an exception is thrown but not caught by |
| 1871 | * a previous ":catch". An exception that has replaced a discarded |
| 1872 | * exception is not checked (THROWN is not set then). |
| 1873 | */ |
| 1874 | if (!skip && (cstack->cs_flags[idx] & CSF_THROWN) |
| 1875 | && !(cstack->cs_flags[idx] & CSF_CAUGHT)) |
| 1876 | { |
Bram Moolenaar | 2c5ed4e | 2020-04-20 19:42:10 +0200 | [diff] [blame] | 1877 | if (end != NULL && *end != NUL |
| 1878 | && !ends_excmd2(end, skipwhite(end + 1))) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1879 | { |
Bram Moolenaar | 74409f6 | 2022-01-01 15:58:22 +0000 | [diff] [blame] | 1880 | semsg(_(e_trailing_characters_str), end); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1881 | return; |
| 1882 | } |
| 1883 | |
Bram Moolenaar | 217e1b8 | 2019-12-01 21:41:28 +0100 | [diff] [blame] | 1884 | // When debugging or a breakpoint was encountered, display the |
| 1885 | // debug prompt (if not already done) before checking for a match. |
| 1886 | // This is a helpful hint for the user when the regular expression |
| 1887 | // matching fails. Handle a ">quit" debug command as if an |
| 1888 | // interrupt had occurred before the ":catch". That is, discard |
| 1889 | // the original exception, replace it by an interrupt exception, |
| 1890 | // and don't catch it in this try block. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1891 | if (!dbg_check_skipped(eap) || !do_intthrow(cstack)) |
| 1892 | { |
Bram Moolenaar | 217e1b8 | 2019-12-01 21:41:28 +0100 | [diff] [blame] | 1893 | // Terminate the pattern and avoid the 'l' flag in 'cpoptions' |
| 1894 | // while compiling it. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1895 | if (end != NULL) |
| 1896 | { |
| 1897 | save_char = *end; |
| 1898 | *end = NUL; |
| 1899 | } |
| 1900 | save_cpo = p_cpo; |
Bram Moolenaar | e5a2dc8 | 2021-01-03 19:52:05 +0100 | [diff] [blame] | 1901 | p_cpo = empty_option; |
Bram Moolenaar | 217e1b8 | 2019-12-01 21:41:28 +0100 | [diff] [blame] | 1902 | // Disable error messages, it will make current_exception |
| 1903 | // invalid. |
Bram Moolenaar | 768ce24 | 2016-02-07 19:46:12 +0100 | [diff] [blame] | 1904 | ++emsg_off; |
Bram Moolenaar | 150cc27 | 2007-08-01 13:47:46 +0000 | [diff] [blame] | 1905 | regmatch.regprog = vim_regcomp(pat, RE_MAGIC + RE_STRING); |
Bram Moolenaar | 768ce24 | 2016-02-07 19:46:12 +0100 | [diff] [blame] | 1906 | --emsg_off; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1907 | regmatch.rm_ic = FALSE; |
| 1908 | if (end != NULL) |
| 1909 | *end = save_char; |
| 1910 | p_cpo = save_cpo; |
| 1911 | if (regmatch.regprog == NULL) |
Bram Moolenaar | 436b5ad | 2021-12-31 22:49:24 +0000 | [diff] [blame] | 1912 | semsg(_(e_invalid_argument_str), pat); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1913 | else |
| 1914 | { |
| 1915 | /* |
| 1916 | * Save the value of got_int and reset it. We don't want |
| 1917 | * a previous interruption cancel matching, only hitting |
| 1918 | * CTRL-C while matching should abort it. |
| 1919 | */ |
| 1920 | prev_got_int = got_int; |
| 1921 | got_int = FALSE; |
Bram Moolenaar | f9e3e09 | 2019-01-13 23:38:42 +0100 | [diff] [blame] | 1922 | caught = vim_regexec_nl(®match, |
| 1923 | (char_u *)current_exception->value, (colnr_T)0); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1924 | got_int |= prev_got_int; |
Bram Moolenaar | 473de61 | 2013-06-08 18:19:48 +0200 | [diff] [blame] | 1925 | vim_regfree(regmatch.regprog); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1926 | } |
| 1927 | } |
| 1928 | } |
| 1929 | |
| 1930 | if (caught) |
| 1931 | { |
Bram Moolenaar | 217e1b8 | 2019-12-01 21:41:28 +0100 | [diff] [blame] | 1932 | // Make this ":catch" clause active and reset did_emsg, got_int, |
| 1933 | // and did_throw. Put the exception on the caught stack. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1934 | cstack->cs_flags[idx] |= CSF_ACTIVE | CSF_CAUGHT; |
| 1935 | did_emsg = got_int = did_throw = FALSE; |
| 1936 | catch_exception((except_T *)cstack->cs_exception[idx]); |
Bram Moolenaar | 28bf649 | 2022-03-03 15:11:20 +0000 | [diff] [blame] | 1937 | |
| 1938 | if (cstack->cs_idx >= 0 |
| 1939 | && (cstack->cs_flags[cstack->cs_idx] & CSF_TRY)) |
| 1940 | { |
| 1941 | // Variables declared in the previous block can no longer be |
| 1942 | // used. |
| 1943 | leave_block(cstack); |
| 1944 | enter_block(cstack); |
| 1945 | } |
| 1946 | |
Bram Moolenaar | 217e1b8 | 2019-12-01 21:41:28 +0100 | [diff] [blame] | 1947 | // It's mandatory that the current exception is stored in the cstack |
| 1948 | // so that it can be discarded at the next ":catch", ":finally", or |
| 1949 | // ":endtry" or when the catch clause is left by a ":continue", |
| 1950 | // ":break", ":return", ":finish", error, interrupt, or another |
| 1951 | // exception. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1952 | if (cstack->cs_exception[cstack->cs_idx] != current_exception) |
Bram Moolenaar | 95f0960 | 2016-11-10 20:01:45 +0100 | [diff] [blame] | 1953 | internal_error("ex_catch()"); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1954 | } |
| 1955 | else |
| 1956 | { |
| 1957 | /* |
| 1958 | * If there is a preceding catch clause and it caught the exception, |
| 1959 | * finish the exception now. This happens also after errors except |
| 1960 | * when this ":catch" was after the ":finally" or not within |
| 1961 | * a ":try". Make the try conditional inactive so that the |
| 1962 | * following catch clauses are skipped. On an error or interrupt |
| 1963 | * after the preceding try block or catch clause was left by |
| 1964 | * a ":continue", ":break", ":return", or ":finish", discard the |
| 1965 | * pending action. |
| 1966 | */ |
| 1967 | cleanup_conditionals(cstack, CSF_TRY, TRUE); |
| 1968 | } |
| 1969 | } |
| 1970 | |
| 1971 | if (end != NULL) |
| 1972 | eap->nextcmd = find_nextcmd(end); |
| 1973 | } |
| 1974 | |
| 1975 | /* |
| 1976 | * ":finally" |
| 1977 | */ |
| 1978 | void |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 1979 | ex_finally(exarg_T *eap) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1980 | { |
| 1981 | int idx; |
| 1982 | int skip = FALSE; |
| 1983 | int pending = CSTP_NONE; |
Bram Moolenaar | ddef129 | 2019-12-16 17:10:33 +0100 | [diff] [blame] | 1984 | cstack_T *cstack = eap->cstack; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1985 | |
Bram Moolenaar | 917c46a | 2021-08-10 19:53:01 +0200 | [diff] [blame] | 1986 | if (cmdmod_error(FALSE)) |
Bram Moolenaar | fa98441 | 2021-03-25 22:15:28 +0100 | [diff] [blame] | 1987 | return; |
| 1988 | |
Bram Moolenaar | 96b9bf8 | 2022-09-24 17:24:12 +0100 | [diff] [blame] | 1989 | for (idx = cstack->cs_idx; idx >= 0; --idx) |
| 1990 | if (cstack->cs_flags[idx] & CSF_TRY) |
| 1991 | break; |
| 1992 | if (cstack->cs_trylevel <= 0 || idx < 0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1993 | { |
Bram Moolenaar | 96b9bf8 | 2022-09-24 17:24:12 +0100 | [diff] [blame] | 1994 | eap->errmsg = _(e_finally_without_try); |
| 1995 | return; |
| 1996 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1997 | |
Bram Moolenaar | 96b9bf8 | 2022-09-24 17:24:12 +0100 | [diff] [blame] | 1998 | if (!(cstack->cs_flags[cstack->cs_idx] & CSF_TRY)) |
| 1999 | { |
| 2000 | eap->errmsg = get_end_emsg(cstack); |
| 2001 | // Make this error pending, so that the commands in the following |
| 2002 | // finally clause can be executed. This overrules also a pending |
| 2003 | // ":continue", ":break", ":return", or ":finish". |
| 2004 | pending = CSTP_ERROR; |
| 2005 | } |
| 2006 | |
| 2007 | if (cstack->cs_flags[idx] & CSF_FINALLY) |
| 2008 | { |
| 2009 | // Give up for a multiple ":finally" and ignore it. |
| 2010 | eap->errmsg = _(e_multiple_finally); |
| 2011 | return; |
| 2012 | } |
| 2013 | rewind_conditionals(cstack, idx, CSF_WHILE | CSF_FOR, |
| 2014 | &cstack->cs_looplevel); |
| 2015 | |
| 2016 | /* |
| 2017 | * Don't do something when the corresponding try block never got active |
| 2018 | * (because of an inactive surrounding conditional or after an error or |
| 2019 | * interrupt or throw) or for a ":finally" without ":try" or a multiple |
| 2020 | * ":finally". After every other error (did_emsg or the conditional |
| 2021 | * errors detected above) or after an interrupt (got_int) or an |
| 2022 | * exception (did_throw), the finally clause must be executed. |
| 2023 | */ |
| 2024 | skip = !(cstack->cs_flags[cstack->cs_idx] & CSF_TRUE); |
| 2025 | |
| 2026 | if (!skip) |
| 2027 | { |
| 2028 | // When debugging or a breakpoint was encountered, display the |
| 2029 | // debug prompt (if not already done). The user then knows that the |
| 2030 | // finally clause is executed. |
| 2031 | if (dbg_check_skipped(eap)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2032 | { |
Bram Moolenaar | 96b9bf8 | 2022-09-24 17:24:12 +0100 | [diff] [blame] | 2033 | // Handle a ">quit" debug command as if an interrupt had |
| 2034 | // occurred before the ":finally". That is, discard the |
| 2035 | // original exception and replace it by an interrupt |
| 2036 | // exception. |
| 2037 | (void)do_intthrow(cstack); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2038 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2039 | |
| 2040 | /* |
Bram Moolenaar | 96b9bf8 | 2022-09-24 17:24:12 +0100 | [diff] [blame] | 2041 | * If there is a preceding catch clause and it caught the exception, |
| 2042 | * finish the exception now. This happens also after errors except |
| 2043 | * when this is a multiple ":finally" or one not within a ":try". |
| 2044 | * After an error or interrupt, this also discards a pending |
| 2045 | * ":continue", ":break", ":finish", or ":return" from the preceding |
| 2046 | * try block or catch clause. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2047 | */ |
Bram Moolenaar | 96b9bf8 | 2022-09-24 17:24:12 +0100 | [diff] [blame] | 2048 | cleanup_conditionals(cstack, CSF_TRY, FALSE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2049 | |
Bram Moolenaar | 96b9bf8 | 2022-09-24 17:24:12 +0100 | [diff] [blame] | 2050 | if (cstack->cs_idx >= 0 |
| 2051 | && (cstack->cs_flags[cstack->cs_idx] & CSF_TRY)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2052 | { |
Bram Moolenaar | 96b9bf8 | 2022-09-24 17:24:12 +0100 | [diff] [blame] | 2053 | // Variables declared in the previous block can no longer be |
| 2054 | // used. |
| 2055 | leave_block(cstack); |
| 2056 | enter_block(cstack); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2057 | } |
Bram Moolenaar | 96b9bf8 | 2022-09-24 17:24:12 +0100 | [diff] [blame] | 2058 | |
| 2059 | /* |
| 2060 | * Make did_emsg, got_int, did_throw pending. If set, they overrule |
| 2061 | * a pending ":continue", ":break", ":return", or ":finish". Then |
| 2062 | * we have particularly to discard a pending return value (as done |
| 2063 | * by the call to cleanup_conditionals() above when did_emsg or |
| 2064 | * got_int is set). The pending values are restored by the |
| 2065 | * ":endtry", except if there is a new error, interrupt, exception, |
| 2066 | * ":continue", ":break", ":return", or ":finish" in the following |
| 2067 | * finally clause. A missing ":endwhile", ":endfor" or ":endif" |
| 2068 | * detected here is treated as if did_emsg and did_throw had |
| 2069 | * already been set, respectively in case that the error is not |
| 2070 | * converted to an exception, did_throw had already been unset. |
| 2071 | * We must not set did_emsg here since that would suppress the |
| 2072 | * error message. |
| 2073 | */ |
| 2074 | if (pending == CSTP_ERROR || did_emsg || got_int || did_throw) |
| 2075 | { |
| 2076 | if (cstack->cs_pending[cstack->cs_idx] == CSTP_RETURN) |
| 2077 | { |
| 2078 | report_discard_pending(CSTP_RETURN, |
| 2079 | cstack->cs_rettv[cstack->cs_idx]); |
| 2080 | discard_pending_return(cstack->cs_rettv[cstack->cs_idx]); |
| 2081 | } |
| 2082 | if (pending == CSTP_ERROR && !did_emsg) |
| 2083 | pending |= (THROW_ON_ERROR) ? CSTP_THROW : 0; |
| 2084 | else |
| 2085 | pending |= did_throw ? CSTP_THROW : 0; |
| 2086 | pending |= did_emsg ? CSTP_ERROR : 0; |
| 2087 | pending |= got_int ? CSTP_INTERRUPT : 0; |
| 2088 | cstack->cs_pending[cstack->cs_idx] = pending; |
| 2089 | |
| 2090 | // It's mandatory that the current exception is stored in the |
| 2091 | // cstack so that it can be rethrown at the ":endtry" or be |
| 2092 | // discarded if the finally clause is left by a ":continue", |
| 2093 | // ":break", ":return", ":finish", error, interrupt, or another |
| 2094 | // exception. When emsg() is called for a missing ":endif" or |
| 2095 | // a missing ":endwhile"/":endfor" detected here, the |
| 2096 | // exception will be discarded. |
| 2097 | if (did_throw && cstack->cs_exception[cstack->cs_idx] |
| 2098 | != current_exception) |
| 2099 | internal_error("ex_finally()"); |
| 2100 | } |
| 2101 | |
| 2102 | /* |
| 2103 | * Set CSL_HAD_FINA, so do_cmdline() will reset did_emsg, |
| 2104 | * got_int, and did_throw and make the finally clause active. |
| 2105 | * This will happen after emsg() has been called for a missing |
| 2106 | * ":endif" or a missing ":endwhile"/":endfor" detected here, so |
| 2107 | * that the following finally clause will be executed even then. |
| 2108 | */ |
| 2109 | cstack->cs_lflags |= CSL_HAD_FINA; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2110 | } |
| 2111 | } |
| 2112 | |
| 2113 | /* |
| 2114 | * ":endtry" |
| 2115 | */ |
| 2116 | void |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 2117 | ex_endtry(exarg_T *eap) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2118 | { |
| 2119 | int idx; |
| 2120 | int skip; |
| 2121 | int rethrow = FALSE; |
| 2122 | int pending = CSTP_NONE; |
Bram Moolenaar | fca34d6 | 2005-01-04 21:38:36 +0000 | [diff] [blame] | 2123 | void *rettv = NULL; |
Bram Moolenaar | ddef129 | 2019-12-16 17:10:33 +0100 | [diff] [blame] | 2124 | cstack_T *cstack = eap->cstack; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2125 | |
Bram Moolenaar | 917c46a | 2021-08-10 19:53:01 +0200 | [diff] [blame] | 2126 | if (cmdmod_error(FALSE)) |
Bram Moolenaar | fa98441 | 2021-03-25 22:15:28 +0100 | [diff] [blame] | 2127 | return; |
| 2128 | |
Bram Moolenaar | 96b9bf8 | 2022-09-24 17:24:12 +0100 | [diff] [blame] | 2129 | for (idx = cstack->cs_idx; idx >= 0; --idx) |
| 2130 | if (cstack->cs_flags[idx] & CSF_TRY) |
| 2131 | break; |
| 2132 | if (cstack->cs_trylevel <= 0 || idx < 0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2133 | { |
Bram Moolenaar | 96b9bf8 | 2022-09-24 17:24:12 +0100 | [diff] [blame] | 2134 | eap->errmsg = _(e_endtry_without_try); |
| 2135 | return; |
| 2136 | } |
| 2137 | |
| 2138 | /* |
| 2139 | * Don't do something after an error, interrupt or throw in the try |
| 2140 | * block, catch clause, or finally clause preceding this ":endtry" or |
| 2141 | * when an error or interrupt occurred after a ":continue", ":break", |
| 2142 | * ":return", or ":finish" in a try block or catch clause preceding this |
| 2143 | * ":endtry" or when the try block never got active (because of an |
| 2144 | * inactive surrounding conditional or after an error or interrupt or |
| 2145 | * throw) or when there is a surrounding conditional and it has been |
| 2146 | * made inactive by a ":continue", ":break", ":return", or ":finish" in |
| 2147 | * the finally clause. The latter case need not be tested since then |
| 2148 | * anything pending has already been discarded. */ |
| 2149 | skip = did_emsg || got_int || did_throw |
Bram Moolenaar | 4197828 | 2021-07-04 14:47:30 +0200 | [diff] [blame] | 2150 | || !(cstack->cs_flags[cstack->cs_idx] & CSF_TRUE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2151 | |
Bram Moolenaar | 96b9bf8 | 2022-09-24 17:24:12 +0100 | [diff] [blame] | 2152 | if (!(cstack->cs_flags[cstack->cs_idx] & CSF_TRY)) |
| 2153 | { |
| 2154 | eap->errmsg = get_end_emsg(cstack); |
Bram Moolenaar | cce81e9 | 2021-10-06 22:08:11 +0100 | [diff] [blame] | 2155 | |
Bram Moolenaar | 96b9bf8 | 2022-09-24 17:24:12 +0100 | [diff] [blame] | 2156 | // Find the matching ":try" and report what's missing. |
| 2157 | rewind_conditionals(cstack, idx, CSF_WHILE | CSF_FOR, |
| 2158 | &cstack->cs_looplevel); |
| 2159 | skip = TRUE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2160 | |
Bram Moolenaar | 96b9bf8 | 2022-09-24 17:24:12 +0100 | [diff] [blame] | 2161 | /* |
| 2162 | * If an exception is being thrown, discard it to prevent it from |
| 2163 | * being rethrown at the end of this function. It would be |
| 2164 | * discarded by the error message, anyway. Resets did_throw. |
| 2165 | * This does not affect the script termination due to the error |
| 2166 | * since "trylevel" is decremented after emsg() has been called. |
| 2167 | */ |
| 2168 | if (did_throw) |
| 2169 | discard_current_exception(); |
Bram Moolenaar | cce81e9 | 2021-10-06 22:08:11 +0100 | [diff] [blame] | 2170 | |
Bram Moolenaar | 96b9bf8 | 2022-09-24 17:24:12 +0100 | [diff] [blame] | 2171 | // report eap->errmsg, also when there already was an error |
| 2172 | did_emsg = FALSE; |
| 2173 | } |
| 2174 | else |
| 2175 | { |
| 2176 | idx = cstack->cs_idx; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2177 | |
Bram Moolenaar | 96b9bf8 | 2022-09-24 17:24:12 +0100 | [diff] [blame] | 2178 | // Check the flags only when not in a skipped block. |
| 2179 | if (!skip && in_vim9script() |
Bram Moolenaar | 4197828 | 2021-07-04 14:47:30 +0200 | [diff] [blame] | 2180 | && (cstack->cs_flags[idx] & (CSF_CATCH|CSF_FINALLY)) == 0) |
Bram Moolenaar | 96b9bf8 | 2022-09-24 17:24:12 +0100 | [diff] [blame] | 2181 | { |
| 2182 | // try/endtry without any catch or finally: give an error and |
| 2183 | // continue. |
| 2184 | eap->errmsg = _(e_missing_catch_or_finally); |
| 2185 | } |
Bram Moolenaar | 4197828 | 2021-07-04 14:47:30 +0200 | [diff] [blame] | 2186 | |
Bram Moolenaar | 96b9bf8 | 2022-09-24 17:24:12 +0100 | [diff] [blame] | 2187 | /* |
| 2188 | * If we stopped with the exception currently being thrown at this |
| 2189 | * try conditional since we didn't know that it doesn't have |
| 2190 | * a finally clause, we need to rethrow it after closing the try |
| 2191 | * conditional. |
| 2192 | */ |
| 2193 | if (did_throw && (cstack->cs_flags[idx] & CSF_TRUE) |
| 2194 | && !(cstack->cs_flags[idx] & CSF_FINALLY)) |
| 2195 | rethrow = TRUE; |
| 2196 | } |
| 2197 | |
| 2198 | // If there was no finally clause, show the user when debugging or |
| 2199 | // a breakpoint was encountered that the end of the try conditional has |
| 2200 | // been reached: display the debug prompt (if not already done). Do |
| 2201 | // this on normal control flow or when an exception was thrown, but not |
| 2202 | // on an interrupt or error not converted to an exception or when |
| 2203 | // a ":break", ":continue", ":return", or ":finish" is pending. These |
| 2204 | // actions are carried out immediately. |
| 2205 | if ((rethrow || (!skip && !(cstack->cs_flags[idx] & CSF_FINALLY) |
| 2206 | && !cstack->cs_pending[idx])) |
| 2207 | && dbg_check_skipped(eap)) |
| 2208 | { |
| 2209 | // Handle a ">quit" debug command as if an interrupt had occurred |
| 2210 | // before the ":endtry". That is, throw an interrupt exception and |
| 2211 | // set "skip" and "rethrow". |
| 2212 | if (got_int) |
| 2213 | { |
| 2214 | skip = TRUE; |
| 2215 | (void)do_intthrow(cstack); |
| 2216 | // The do_intthrow() call may have reset did_throw or |
| 2217 | // cstack->cs_pending[idx]. |
| 2218 | rethrow = FALSE; |
| 2219 | if (did_throw && !(cstack->cs_flags[idx] & CSF_FINALLY)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2220 | rethrow = TRUE; |
| 2221 | } |
Bram Moolenaar | 96b9bf8 | 2022-09-24 17:24:12 +0100 | [diff] [blame] | 2222 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2223 | |
Bram Moolenaar | 96b9bf8 | 2022-09-24 17:24:12 +0100 | [diff] [blame] | 2224 | /* |
| 2225 | * If a ":return" is pending, we need to resume it after closing the |
| 2226 | * try conditional; remember the return value. If there was a finally |
| 2227 | * clause making an exception pending, we need to rethrow it. Make it |
| 2228 | * the exception currently being thrown. |
| 2229 | */ |
| 2230 | if (!skip) |
| 2231 | { |
| 2232 | pending = cstack->cs_pending[idx]; |
| 2233 | cstack->cs_pending[idx] = CSTP_NONE; |
| 2234 | if (pending == CSTP_RETURN) |
| 2235 | rettv = cstack->cs_rettv[idx]; |
| 2236 | else if (pending & CSTP_THROW) |
| 2237 | current_exception = cstack->cs_exception[idx]; |
| 2238 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2239 | |
Bram Moolenaar | 96b9bf8 | 2022-09-24 17:24:12 +0100 | [diff] [blame] | 2240 | /* |
| 2241 | * Discard anything pending on an error, interrupt, or throw in the |
| 2242 | * finally clause. If there was no ":finally", discard a pending |
| 2243 | * ":continue", ":break", ":return", or ":finish" if an error or |
| 2244 | * interrupt occurred afterwards, but before the ":endtry" was reached. |
| 2245 | * If an exception was caught by the last of the catch clauses and there |
| 2246 | * was no finally clause, finish the exception now. This happens also |
| 2247 | * after errors except when this ":endtry" is not within a ":try". |
| 2248 | * Restore "emsg_silent" if it has been reset by this try conditional. |
| 2249 | */ |
| 2250 | (void)cleanup_conditionals(cstack, CSF_TRY | CSF_SILENT, TRUE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2251 | |
Bram Moolenaar | 96b9bf8 | 2022-09-24 17:24:12 +0100 | [diff] [blame] | 2252 | if (cstack->cs_idx >= 0 && (cstack->cs_flags[cstack->cs_idx] & CSF_TRY)) |
| 2253 | leave_block(cstack); |
| 2254 | --cstack->cs_trylevel; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2255 | |
Bram Moolenaar | 96b9bf8 | 2022-09-24 17:24:12 +0100 | [diff] [blame] | 2256 | if (!skip) |
| 2257 | { |
| 2258 | report_resume_pending(pending, |
Bram Moolenaar | fca34d6 | 2005-01-04 21:38:36 +0000 | [diff] [blame] | 2259 | (pending == CSTP_RETURN) ? rettv : |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2260 | (pending & CSTP_THROW) ? (void *)current_exception : NULL); |
Bram Moolenaar | 96b9bf8 | 2022-09-24 17:24:12 +0100 | [diff] [blame] | 2261 | switch (pending) |
| 2262 | { |
| 2263 | case CSTP_NONE: |
| 2264 | break; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2265 | |
Bram Moolenaar | 96b9bf8 | 2022-09-24 17:24:12 +0100 | [diff] [blame] | 2266 | // Reactivate a pending ":continue", ":break", ":return", |
| 2267 | // ":finish" from the try block or a catch clause of this try |
| 2268 | // conditional. This is skipped, if there was an error in an |
| 2269 | // (unskipped) conditional command or an interrupt afterwards |
| 2270 | // or if the finally clause is present and executed a new error, |
| 2271 | // interrupt, throw, ":continue", ":break", ":return", or |
| 2272 | // ":finish". |
| 2273 | case CSTP_CONTINUE: |
| 2274 | ex_continue(eap); |
| 2275 | break; |
| 2276 | case CSTP_BREAK: |
| 2277 | ex_break(eap); |
| 2278 | break; |
| 2279 | case CSTP_RETURN: |
| 2280 | do_return(eap, FALSE, FALSE, rettv); |
| 2281 | break; |
| 2282 | case CSTP_FINISH: |
| 2283 | do_finish(eap, FALSE); |
| 2284 | break; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2285 | |
Bram Moolenaar | 96b9bf8 | 2022-09-24 17:24:12 +0100 | [diff] [blame] | 2286 | // When the finally clause was entered due to an error, |
| 2287 | // interrupt or throw (as opposed to a ":continue", ":break", |
| 2288 | // ":return", or ":finish"), restore the pending values of |
| 2289 | // did_emsg, got_int, and did_throw. This is skipped, if there |
| 2290 | // was a new error, interrupt, throw, ":continue", ":break", |
| 2291 | // ":return", or ":finish". in the finally clause. |
| 2292 | default: |
| 2293 | if (pending & CSTP_ERROR) |
| 2294 | did_emsg = TRUE; |
| 2295 | if (pending & CSTP_INTERRUPT) |
| 2296 | got_int = TRUE; |
| 2297 | if (pending & CSTP_THROW) |
| 2298 | rethrow = TRUE; |
| 2299 | break; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2300 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2301 | } |
Bram Moolenaar | 96b9bf8 | 2022-09-24 17:24:12 +0100 | [diff] [blame] | 2302 | |
| 2303 | if (rethrow) |
| 2304 | // Rethrow the current exception (within this cstack). |
| 2305 | do_throw(cstack); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2306 | } |
| 2307 | |
| 2308 | /* |
Bram Moolenaar | 293ee4d | 2004-12-09 21:34:53 +0000 | [diff] [blame] | 2309 | * enter_cleanup() and leave_cleanup() |
Bram Moolenaar | c0197e2 | 2004-09-13 20:26:32 +0000 | [diff] [blame] | 2310 | * |
Bram Moolenaar | 293ee4d | 2004-12-09 21:34:53 +0000 | [diff] [blame] | 2311 | * Functions to be called before/after invoking a sequence of autocommands for |
| 2312 | * cleanup for a failed command. (Failure means here that a call to emsg() |
| 2313 | * has been made, an interrupt occurred, or there is an uncaught exception |
| 2314 | * from a previous autocommand execution of the same command.) |
| 2315 | * |
| 2316 | * Call enter_cleanup() with a pointer to a cleanup_T and pass the same |
| 2317 | * pointer to leave_cleanup(). The cleanup_T structure stores the pending |
| 2318 | * error/interrupt/exception state. |
| 2319 | */ |
| 2320 | |
| 2321 | /* |
| 2322 | * This function works a bit like ex_finally() except that there was not |
| 2323 | * actually an extra try block around the part that failed and an error or |
| 2324 | * interrupt has not (yet) been converted to an exception. This function |
| 2325 | * saves the error/interrupt/ exception state and prepares for the call to |
| 2326 | * do_cmdline() that is going to be made for the cleanup autocommand |
| 2327 | * execution. |
Bram Moolenaar | c0197e2 | 2004-09-13 20:26:32 +0000 | [diff] [blame] | 2328 | */ |
| 2329 | void |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 2330 | enter_cleanup(cleanup_T *csp) |
Bram Moolenaar | c0197e2 | 2004-09-13 20:26:32 +0000 | [diff] [blame] | 2331 | { |
| 2332 | int pending = CSTP_NONE; |
| 2333 | |
| 2334 | /* |
| 2335 | * Postpone did_emsg, got_int, did_throw. The pending values will be |
| 2336 | * restored by leave_cleanup() except if there was an aborting error, |
| 2337 | * interrupt, or uncaught exception after this function ends. |
| 2338 | */ |
| 2339 | if (did_emsg || got_int || did_throw || need_rethrow) |
| 2340 | { |
| 2341 | csp->pending = (did_emsg ? CSTP_ERROR : 0) |
| 2342 | | (got_int ? CSTP_INTERRUPT : 0) |
| 2343 | | (did_throw ? CSTP_THROW : 0) |
| 2344 | | (need_rethrow ? CSTP_THROW : 0); |
| 2345 | |
Bram Moolenaar | 217e1b8 | 2019-12-01 21:41:28 +0100 | [diff] [blame] | 2346 | // If we are currently throwing an exception (did_throw), save it as |
| 2347 | // well. On an error not yet converted to an exception, update |
| 2348 | // "force_abort" and reset "cause_abort" (as do_errthrow() would do). |
| 2349 | // This is needed for the do_cmdline() call that is going to be made |
| 2350 | // for autocommand execution. We need not save *msg_list because |
| 2351 | // there is an extra instance for every call of do_cmdline(), anyway. |
Bram Moolenaar | c0197e2 | 2004-09-13 20:26:32 +0000 | [diff] [blame] | 2352 | if (did_throw || need_rethrow) |
Bram Moolenaar | cae24be | 2017-07-10 22:12:10 +0200 | [diff] [blame] | 2353 | { |
Bram Moolenaar | c0197e2 | 2004-09-13 20:26:32 +0000 | [diff] [blame] | 2354 | csp->exception = current_exception; |
Bram Moolenaar | cae24be | 2017-07-10 22:12:10 +0200 | [diff] [blame] | 2355 | current_exception = NULL; |
| 2356 | } |
Bram Moolenaar | c0197e2 | 2004-09-13 20:26:32 +0000 | [diff] [blame] | 2357 | else |
| 2358 | { |
| 2359 | csp->exception = NULL; |
| 2360 | if (did_emsg) |
| 2361 | { |
| 2362 | force_abort |= cause_abort; |
| 2363 | cause_abort = FALSE; |
| 2364 | } |
| 2365 | } |
| 2366 | did_emsg = got_int = did_throw = need_rethrow = FALSE; |
| 2367 | |
Bram Moolenaar | 217e1b8 | 2019-12-01 21:41:28 +0100 | [diff] [blame] | 2368 | // Report if required by the 'verbose' option or when debugging. |
Bram Moolenaar | c0197e2 | 2004-09-13 20:26:32 +0000 | [diff] [blame] | 2369 | report_make_pending(pending, csp->exception); |
| 2370 | } |
| 2371 | else |
| 2372 | { |
| 2373 | csp->pending = CSTP_NONE; |
| 2374 | csp->exception = NULL; |
| 2375 | } |
| 2376 | } |
| 2377 | |
| 2378 | /* |
Bram Moolenaar | 293ee4d | 2004-12-09 21:34:53 +0000 | [diff] [blame] | 2379 | * See comment above enter_cleanup() for how this function is used. |
| 2380 | * |
| 2381 | * This function is a bit like ex_endtry() except that there was not actually |
| 2382 | * an extra try block around the part that failed and an error or interrupt |
| 2383 | * had not (yet) been converted to an exception when the cleanup autocommand |
| 2384 | * sequence was invoked. |
| 2385 | * |
| 2386 | * This function has to be called with the address of the cleanup_T structure |
| 2387 | * filled by enter_cleanup() as an argument; it restores the error/interrupt/ |
| 2388 | * exception state saved by that function - except there was an aborting |
| 2389 | * error, an interrupt or an uncaught exception during execution of the |
| 2390 | * cleanup autocommands. In the latter case, the saved error/interrupt/ |
| 2391 | * exception state is discarded. |
Bram Moolenaar | c0197e2 | 2004-09-13 20:26:32 +0000 | [diff] [blame] | 2392 | */ |
| 2393 | void |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 2394 | leave_cleanup(cleanup_T *csp) |
Bram Moolenaar | c0197e2 | 2004-09-13 20:26:32 +0000 | [diff] [blame] | 2395 | { |
| 2396 | int pending = csp->pending; |
| 2397 | |
Bram Moolenaar | 217e1b8 | 2019-12-01 21:41:28 +0100 | [diff] [blame] | 2398 | if (pending == CSTP_NONE) // nothing to do |
Bram Moolenaar | c0197e2 | 2004-09-13 20:26:32 +0000 | [diff] [blame] | 2399 | return; |
| 2400 | |
Bram Moolenaar | 217e1b8 | 2019-12-01 21:41:28 +0100 | [diff] [blame] | 2401 | // If there was an aborting error, an interrupt, or an uncaught exception |
| 2402 | // after the corresponding call to enter_cleanup(), discard what has been |
| 2403 | // made pending by it. Report this to the user if required by the |
| 2404 | // 'verbose' option or when debugging. |
Bram Moolenaar | c0197e2 | 2004-09-13 20:26:32 +0000 | [diff] [blame] | 2405 | if (aborting() || need_rethrow) |
| 2406 | { |
| 2407 | if (pending & CSTP_THROW) |
Bram Moolenaar | 217e1b8 | 2019-12-01 21:41:28 +0100 | [diff] [blame] | 2408 | // Cancel the pending exception (includes report). |
=?UTF-8?q?Dundar=20G=C3=B6c?= | 420fabc | 2022-01-28 15:28:04 +0000 | [diff] [blame] | 2409 | discard_exception(csp->exception, FALSE); |
Bram Moolenaar | c0197e2 | 2004-09-13 20:26:32 +0000 | [diff] [blame] | 2410 | else |
| 2411 | report_discard_pending(pending, NULL); |
| 2412 | |
Bram Moolenaar | 217e1b8 | 2019-12-01 21:41:28 +0100 | [diff] [blame] | 2413 | // If an error was about to be converted to an exception when |
| 2414 | // enter_cleanup() was called, free the message list. |
Bram Moolenaar | 4632d29 | 2006-11-28 17:36:37 +0000 | [diff] [blame] | 2415 | if (msg_list != NULL) |
Bram Moolenaar | 9fee7d4 | 2013-11-28 17:04:43 +0100 | [diff] [blame] | 2416 | free_global_msglist(); |
Bram Moolenaar | c0197e2 | 2004-09-13 20:26:32 +0000 | [diff] [blame] | 2417 | } |
| 2418 | |
| 2419 | /* |
| 2420 | * If there was no new error, interrupt, or throw between the calls |
| 2421 | * to enter_cleanup() and leave_cleanup(), restore the pending |
| 2422 | * error/interrupt/exception state. |
| 2423 | */ |
| 2424 | else |
| 2425 | { |
| 2426 | /* |
| 2427 | * If there was an exception being thrown when enter_cleanup() was |
| 2428 | * called, we need to rethrow it. Make it the exception currently |
| 2429 | * being thrown. |
| 2430 | */ |
| 2431 | if (pending & CSTP_THROW) |
| 2432 | current_exception = csp->exception; |
| 2433 | |
| 2434 | /* |
| 2435 | * If an error was about to be converted to an exception when |
| 2436 | * enter_cleanup() was called, let "cause_abort" take the part of |
| 2437 | * "force_abort" (as done by cause_errthrow()). |
| 2438 | */ |
| 2439 | else if (pending & CSTP_ERROR) |
| 2440 | { |
| 2441 | cause_abort = force_abort; |
| 2442 | force_abort = FALSE; |
| 2443 | } |
| 2444 | |
| 2445 | /* |
| 2446 | * Restore the pending values of did_emsg, got_int, and did_throw. |
| 2447 | */ |
| 2448 | if (pending & CSTP_ERROR) |
| 2449 | did_emsg = TRUE; |
| 2450 | if (pending & CSTP_INTERRUPT) |
| 2451 | got_int = TRUE; |
| 2452 | if (pending & CSTP_THROW) |
Bram Moolenaar | 217e1b8 | 2019-12-01 21:41:28 +0100 | [diff] [blame] | 2453 | need_rethrow = TRUE; // did_throw will be set by do_one_cmd() |
Bram Moolenaar | c0197e2 | 2004-09-13 20:26:32 +0000 | [diff] [blame] | 2454 | |
Bram Moolenaar | 217e1b8 | 2019-12-01 21:41:28 +0100 | [diff] [blame] | 2455 | // Report if required by the 'verbose' option or when debugging. |
Bram Moolenaar | c0197e2 | 2004-09-13 20:26:32 +0000 | [diff] [blame] | 2456 | report_resume_pending(pending, |
Bram Moolenaar | 293ee4d | 2004-12-09 21:34:53 +0000 | [diff] [blame] | 2457 | (pending & CSTP_THROW) ? (void *)current_exception : NULL); |
Bram Moolenaar | c0197e2 | 2004-09-13 20:26:32 +0000 | [diff] [blame] | 2458 | } |
| 2459 | } |
| 2460 | |
| 2461 | |
| 2462 | /* |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2463 | * Make conditionals inactive and discard what's pending in finally clauses |
| 2464 | * until the conditional type searched for or a try conditional not in its |
Bram Moolenaar | de8866b | 2005-01-06 23:24:37 +0000 | [diff] [blame] | 2465 | * finally clause is reached. If this is in an active catch clause, finish |
| 2466 | * the caught exception. |
| 2467 | * Return the cstack index where the search stopped. |
Bram Moolenaar | 1280586 | 2005-01-05 22:16:17 +0000 | [diff] [blame] | 2468 | * Values used for "searched_cond" are (CSF_WHILE | CSF_FOR) or CSF_TRY or 0, |
| 2469 | * the latter meaning the innermost try conditional not in its finally clause. |
| 2470 | * "inclusive" tells whether the conditional searched for should be made |
Bram Moolenaar | 84a05ac | 2013-05-06 04:24:17 +0200 | [diff] [blame] | 2471 | * inactive itself (a try conditional not in its finally clause possibly find |
Bram Moolenaar | 1280586 | 2005-01-05 22:16:17 +0000 | [diff] [blame] | 2472 | * before is always made inactive). If "inclusive" is TRUE and |
| 2473 | * "searched_cond" is CSF_TRY|CSF_SILENT, the saved former value of |
| 2474 | * "emsg_silent", if reset when the try conditional finally reached was |
Bram Moolenaar | 84a05ac | 2013-05-06 04:24:17 +0200 | [diff] [blame] | 2475 | * entered, is restored (used by ex_endtry()). This is normally done only |
Bram Moolenaar | 1280586 | 2005-01-05 22:16:17 +0000 | [diff] [blame] | 2476 | * when such a try conditional is left. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2477 | */ |
| 2478 | int |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 2479 | cleanup_conditionals( |
Bram Moolenaar | ddef129 | 2019-12-16 17:10:33 +0100 | [diff] [blame] | 2480 | cstack_T *cstack, |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 2481 | int searched_cond, |
| 2482 | int inclusive) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2483 | { |
| 2484 | int idx; |
| 2485 | int stop = FALSE; |
| 2486 | |
| 2487 | for (idx = cstack->cs_idx; idx >= 0; --idx) |
| 2488 | { |
| 2489 | if (cstack->cs_flags[idx] & CSF_TRY) |
| 2490 | { |
| 2491 | /* |
| 2492 | * Discard anything pending in a finally clause and continue the |
| 2493 | * search. There may also be a pending ":continue", ":break", |
| 2494 | * ":return", or ":finish" before the finally clause. We must not |
| 2495 | * discard it, unless an error or interrupt occurred afterwards. |
| 2496 | */ |
Bram Moolenaar | f461c8e | 2005-06-25 23:04:51 +0000 | [diff] [blame] | 2497 | if (did_emsg || got_int || (cstack->cs_flags[idx] & CSF_FINALLY)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2498 | { |
| 2499 | switch (cstack->cs_pending[idx]) |
| 2500 | { |
| 2501 | case CSTP_NONE: |
| 2502 | break; |
| 2503 | |
| 2504 | case CSTP_CONTINUE: |
| 2505 | case CSTP_BREAK: |
| 2506 | case CSTP_FINISH: |
| 2507 | report_discard_pending(cstack->cs_pending[idx], NULL); |
| 2508 | cstack->cs_pending[idx] = CSTP_NONE; |
| 2509 | break; |
| 2510 | |
| 2511 | case CSTP_RETURN: |
| 2512 | report_discard_pending(CSTP_RETURN, |
Bram Moolenaar | fca34d6 | 2005-01-04 21:38:36 +0000 | [diff] [blame] | 2513 | cstack->cs_rettv[idx]); |
| 2514 | discard_pending_return(cstack->cs_rettv[idx]); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2515 | cstack->cs_pending[idx] = CSTP_NONE; |
| 2516 | break; |
| 2517 | |
| 2518 | default: |
| 2519 | if (cstack->cs_flags[idx] & CSF_FINALLY) |
| 2520 | { |
Bram Moolenaar | a684a68 | 2021-10-04 18:52:19 +0100 | [diff] [blame] | 2521 | if ((cstack->cs_pending[idx] & CSTP_THROW) |
| 2522 | && cstack->cs_exception[idx] != NULL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2523 | { |
Bram Moolenaar | 217e1b8 | 2019-12-01 21:41:28 +0100 | [diff] [blame] | 2524 | // Cancel the pending exception. This is in the |
| 2525 | // finally clause, so that the stack of the |
| 2526 | // caught exceptions is not involved. |
Bram Moolenaar | 13656f0 | 2020-12-19 17:55:54 +0100 | [diff] [blame] | 2527 | discard_exception( |
| 2528 | (except_T *)cstack->cs_exception[idx], |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2529 | FALSE); |
| 2530 | } |
| 2531 | else |
| 2532 | report_discard_pending(cstack->cs_pending[idx], |
| 2533 | NULL); |
| 2534 | cstack->cs_pending[idx] = CSTP_NONE; |
| 2535 | } |
| 2536 | break; |
| 2537 | } |
| 2538 | } |
| 2539 | |
| 2540 | /* |
| 2541 | * Stop at a try conditional not in its finally clause. If this try |
| 2542 | * conditional is in an active catch clause, finish the caught |
| 2543 | * exception. |
| 2544 | */ |
| 2545 | if (!(cstack->cs_flags[idx] & CSF_FINALLY)) |
| 2546 | { |
| 2547 | if ((cstack->cs_flags[idx] & CSF_ACTIVE) |
Bram Moolenaar | f67d3fb | 2021-10-05 11:22:27 +0100 | [diff] [blame] | 2548 | && (cstack->cs_flags[idx] & CSF_CAUGHT) |
| 2549 | && !(cstack->cs_flags[idx] & CSF_FINISHED)) |
| 2550 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2551 | finish_exception((except_T *)cstack->cs_exception[idx]); |
Bram Moolenaar | f67d3fb | 2021-10-05 11:22:27 +0100 | [diff] [blame] | 2552 | cstack->cs_flags[idx] |= CSF_FINISHED; |
| 2553 | } |
Bram Moolenaar | 217e1b8 | 2019-12-01 21:41:28 +0100 | [diff] [blame] | 2554 | // Stop at this try conditional - except the try block never |
| 2555 | // got active (because of an inactive surrounding conditional |
| 2556 | // or when the ":try" appeared after an error or interrupt or |
| 2557 | // throw). |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2558 | if (cstack->cs_flags[idx] & CSF_TRUE) |
| 2559 | { |
| 2560 | if (searched_cond == 0 && !inclusive) |
| 2561 | break; |
| 2562 | stop = TRUE; |
| 2563 | } |
| 2564 | } |
| 2565 | } |
| 2566 | |
Bram Moolenaar | 217e1b8 | 2019-12-01 21:41:28 +0100 | [diff] [blame] | 2567 | // Stop on the searched conditional type (even when the surrounding |
| 2568 | // conditional is not active or something has been made pending). |
| 2569 | // If "inclusive" is TRUE and "searched_cond" is CSF_TRY|CSF_SILENT, |
| 2570 | // check first whether "emsg_silent" needs to be restored. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2571 | if (cstack->cs_flags[idx] & searched_cond) |
| 2572 | { |
| 2573 | if (!inclusive) |
| 2574 | break; |
| 2575 | stop = TRUE; |
| 2576 | } |
| 2577 | cstack->cs_flags[idx] &= ~CSF_ACTIVE; |
| 2578 | if (stop && searched_cond != (CSF_TRY | CSF_SILENT)) |
| 2579 | break; |
| 2580 | |
| 2581 | /* |
Bram Moolenaar | ccc1822 | 2007-05-10 18:25:20 +0000 | [diff] [blame] | 2582 | * When leaving a try conditional that reset "emsg_silent" on its |
| 2583 | * entry after saving the original value, restore that value here and |
| 2584 | * free the memory used to store it. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2585 | */ |
| 2586 | if ((cstack->cs_flags[idx] & CSF_TRY) |
Bram Moolenaar | f461c8e | 2005-06-25 23:04:51 +0000 | [diff] [blame] | 2587 | && (cstack->cs_flags[idx] & CSF_SILENT)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2588 | { |
| 2589 | eslist_T *elem; |
| 2590 | |
| 2591 | elem = cstack->cs_emsg_silent_list; |
| 2592 | cstack->cs_emsg_silent_list = elem->next; |
| 2593 | emsg_silent = elem->saved_emsg_silent; |
| 2594 | vim_free(elem); |
| 2595 | cstack->cs_flags[idx] &= ~CSF_SILENT; |
| 2596 | } |
| 2597 | if (stop) |
| 2598 | break; |
| 2599 | } |
| 2600 | return idx; |
| 2601 | } |
| 2602 | |
| 2603 | /* |
Bram Moolenaar | 1280586 | 2005-01-05 22:16:17 +0000 | [diff] [blame] | 2604 | * Return an appropriate error message for a missing endwhile/endfor/endif. |
| 2605 | */ |
Bram Moolenaar | f9e3e09 | 2019-01-13 23:38:42 +0100 | [diff] [blame] | 2606 | static char * |
Bram Moolenaar | ddef129 | 2019-12-16 17:10:33 +0100 | [diff] [blame] | 2607 | get_end_emsg(cstack_T *cstack) |
Bram Moolenaar | 1280586 | 2005-01-05 22:16:17 +0000 | [diff] [blame] | 2608 | { |
| 2609 | if (cstack->cs_flags[cstack->cs_idx] & CSF_WHILE) |
Bram Moolenaar | 1a99222 | 2021-12-31 17:25:48 +0000 | [diff] [blame] | 2610 | return _(e_missing_endwhile); |
Bram Moolenaar | 1280586 | 2005-01-05 22:16:17 +0000 | [diff] [blame] | 2611 | if (cstack->cs_flags[cstack->cs_idx] & CSF_FOR) |
Bram Moolenaar | 1a99222 | 2021-12-31 17:25:48 +0000 | [diff] [blame] | 2612 | return _(e_missing_endfor); |
| 2613 | return _(e_missing_endif); |
Bram Moolenaar | 1280586 | 2005-01-05 22:16:17 +0000 | [diff] [blame] | 2614 | } |
| 2615 | |
| 2616 | |
| 2617 | /* |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2618 | * Rewind conditionals until index "idx" is reached. "cond_type" and |
| 2619 | * "cond_level" specify a conditional type and the address of a level variable |
| 2620 | * which is to be decremented with each skipped conditional of the specified |
| 2621 | * type. |
Bram Moolenaar | de8866b | 2005-01-06 23:24:37 +0000 | [diff] [blame] | 2622 | * Also free "for info" structures where needed. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2623 | */ |
Bram Moolenaar | de8866b | 2005-01-06 23:24:37 +0000 | [diff] [blame] | 2624 | void |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 2625 | rewind_conditionals( |
Bram Moolenaar | ddef129 | 2019-12-16 17:10:33 +0100 | [diff] [blame] | 2626 | cstack_T *cstack, |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 2627 | int idx, |
| 2628 | int cond_type, |
| 2629 | int *cond_level) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2630 | { |
| 2631 | while (cstack->cs_idx > idx) |
| 2632 | { |
| 2633 | if (cstack->cs_flags[cstack->cs_idx] & cond_type) |
| 2634 | --*cond_level; |
Bram Moolenaar | de8866b | 2005-01-06 23:24:37 +0000 | [diff] [blame] | 2635 | if (cstack->cs_flags[cstack->cs_idx] & CSF_FOR) |
| 2636 | free_for_info(cstack->cs_forinfo[cstack->cs_idx]); |
Bram Moolenaar | fcdc5d8 | 2020-10-10 19:07:09 +0200 | [diff] [blame] | 2637 | leave_block(cstack); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2638 | } |
| 2639 | } |
| 2640 | |
| 2641 | /* |
Bram Moolenaar | 6d05701 | 2021-12-31 18:49:43 +0000 | [diff] [blame] | 2642 | * ":endfunction" or ":enddef" when not after a ":function" |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2643 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2644 | void |
Bram Moolenaar | 6e94978 | 2020-04-13 17:21:00 +0200 | [diff] [blame] | 2645 | ex_endfunction(exarg_T *eap) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2646 | { |
Bram Moolenaar | 6e94978 | 2020-04-13 17:21:00 +0200 | [diff] [blame] | 2647 | if (eap->cmdidx == CMD_enddef) |
Bram Moolenaar | 6d05701 | 2021-12-31 18:49:43 +0000 | [diff] [blame] | 2648 | semsg(_(e_str_not_inside_function), ":enddef"); |
Bram Moolenaar | 6e94978 | 2020-04-13 17:21:00 +0200 | [diff] [blame] | 2649 | else |
Bram Moolenaar | 6d05701 | 2021-12-31 18:49:43 +0000 | [diff] [blame] | 2650 | semsg(_(e_str_not_inside_function), ":endfunction"); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2651 | } |
| 2652 | |
| 2653 | /* |
Bram Moolenaar | 1280586 | 2005-01-05 22:16:17 +0000 | [diff] [blame] | 2654 | * Return TRUE if the string "p" looks like a ":while" or ":for" command. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2655 | */ |
| 2656 | int |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 2657 | has_loop_cmd(char_u *p) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2658 | { |
Bram Moolenaar | ed53fb9 | 2007-11-24 20:50:24 +0000 | [diff] [blame] | 2659 | int len; |
| 2660 | |
Bram Moolenaar | 217e1b8 | 2019-12-01 21:41:28 +0100 | [diff] [blame] | 2661 | // skip modifiers, white space and ':' |
Bram Moolenaar | ed53fb9 | 2007-11-24 20:50:24 +0000 | [diff] [blame] | 2662 | for (;;) |
| 2663 | { |
| 2664 | while (*p == ' ' || *p == '\t' || *p == ':') |
| 2665 | ++p; |
| 2666 | len = modifier_len(p); |
| 2667 | if (len == 0) |
| 2668 | break; |
| 2669 | p += len; |
| 2670 | } |
Bram Moolenaar | 1280586 | 2005-01-05 22:16:17 +0000 | [diff] [blame] | 2671 | if ((p[0] == 'w' && p[1] == 'h') |
| 2672 | || (p[0] == 'f' && p[1] == 'o' && p[2] == 'r')) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2673 | return TRUE; |
| 2674 | return FALSE; |
| 2675 | } |
| 2676 | |
Bram Moolenaar | 217e1b8 | 2019-12-01 21:41:28 +0100 | [diff] [blame] | 2677 | #endif // FEAT_EVAL |