1 /* vi:set ts=8 sts=4 sw=4 noet: 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 * userfunc.c: User defined function support 12 */ 13 14 #include "vim.h" 15 16 #if defined(FEAT_EVAL) || defined(PROTO) 17 /* 18 * All user-defined functions are found in this hashtable. 19 */ 20 static hashtab_T func_hashtab; 21 22 // Used by get_func_tv() 23 static garray_T funcargs = GA_EMPTY; 24 25 // pointer to funccal for currently active function 26 static funccall_T *current_funccal = NULL; 27 28 // Pointer to list of previously used funccal, still around because some 29 // item in it is still being used. 30 static funccall_T *previous_funccal = NULL; 31 32 static char *e_funcexts = N_("E122: Function %s already exists, add ! to replace it"); 33 static char *e_funcdict = N_("E717: Dictionary entry already exists"); 34 static char *e_funcref = N_("E718: Funcref required"); 35 static char *e_nofunc = N_("E130: Unknown function: %s"); 36 37 static void funccal_unref(funccall_T *fc, ufunc_T *fp, int force); 38 39 void 40 func_init() 41 { 42 hash_init(&func_hashtab); 43 } 44 45 /* 46 * Return the function hash table 47 */ 48 hashtab_T * 49 func_tbl_get(void) 50 { 51 return &func_hashtab; 52 } 53 54 /* 55 * Get one function argument. 56 * If "argtypes" is not NULL also get the type: "arg: type". 57 * Return a pointer to after the type. 58 * When something is wrong return "arg". 59 */ 60 static char_u * 61 one_function_arg(char_u *arg, garray_T *newargs, garray_T *argtypes, int skip) 62 { 63 char_u *p = arg; 64 char_u *arg_copy = NULL; 65 66 while (ASCII_ISALNUM(*p) || *p == '_') 67 ++p; 68 if (arg == p || isdigit(*arg) 69 || (p - arg == 9 && STRNCMP(arg, "firstline", 9) == 0) 70 || (p - arg == 8 && STRNCMP(arg, "lastline", 8) == 0)) 71 { 72 if (!skip) 73 semsg(_("E125: Illegal argument: %s"), arg); 74 return arg; 75 } 76 if (newargs != NULL && ga_grow(newargs, 1) == FAIL) 77 return arg; 78 if (newargs != NULL) 79 { 80 int c; 81 int i; 82 83 c = *p; 84 *p = NUL; 85 arg_copy = vim_strsave(arg); 86 if (arg_copy == NULL) 87 { 88 *p = c; 89 return arg; 90 } 91 92 // Check for duplicate argument name. 93 for (i = 0; i < newargs->ga_len; ++i) 94 if (STRCMP(((char_u **)(newargs->ga_data))[i], arg_copy) == 0) 95 { 96 semsg(_("E853: Duplicate argument name: %s"), arg_copy); 97 vim_free(arg_copy); 98 return arg; 99 } 100 ((char_u **)(newargs->ga_data))[newargs->ga_len] = arg_copy; 101 newargs->ga_len++; 102 103 *p = c; 104 } 105 106 // get any type from "arg: type" 107 if (argtypes != NULL && ga_grow(argtypes, 1) == OK) 108 { 109 char_u *type = NULL; 110 111 if (VIM_ISWHITE(*p) && *skipwhite(p) == ':') 112 { 113 semsg(_("E1059: No white space allowed before colon: %s"), 114 arg_copy == NULL ? arg : arg_copy); 115 p = skipwhite(p); 116 } 117 if (*p == ':') 118 { 119 ++p; 120 if (!VIM_ISWHITE(*p)) 121 { 122 semsg(_(e_white_after), ":"); 123 return arg; 124 } 125 type = skipwhite(p); 126 p = skip_type(type); 127 type = vim_strnsave(type, p - type); 128 } 129 else if (*skipwhite(p) != '=') 130 { 131 semsg(_("E1077: Missing argument type for %s"), 132 arg_copy == NULL ? arg : arg_copy); 133 return arg; 134 } 135 ((char_u **)argtypes->ga_data)[argtypes->ga_len++] = type; 136 } 137 138 return p; 139 } 140 141 /* 142 * Get function arguments. 143 */ 144 int 145 get_function_args( 146 char_u **argp, 147 char_u endchar, 148 garray_T *newargs, 149 garray_T *argtypes, // NULL unless using :def 150 int *varargs, 151 garray_T *default_args, 152 int skip, 153 exarg_T *eap, 154 char_u **line_to_free) 155 { 156 int mustend = FALSE; 157 char_u *arg = *argp; 158 char_u *p = arg; 159 int c; 160 int any_default = FALSE; 161 char_u *expr; 162 char_u *whitep = arg; 163 164 if (newargs != NULL) 165 ga_init2(newargs, (int)sizeof(char_u *), 3); 166 if (argtypes != NULL) 167 ga_init2(argtypes, (int)sizeof(char_u *), 3); 168 if (default_args != NULL) 169 ga_init2(default_args, (int)sizeof(char_u *), 3); 170 171 if (varargs != NULL) 172 *varargs = FALSE; 173 174 /* 175 * Isolate the arguments: "arg1, arg2, ...)" 176 */ 177 while (*p != endchar) 178 { 179 while (eap != NULL && eap->getline != NULL 180 && (*p == NUL || (VIM_ISWHITE(*whitep) && *p == '#'))) 181 { 182 char_u *theline; 183 184 // End of the line, get the next one. 185 theline = eap->getline(':', eap->cookie, 0, TRUE); 186 if (theline == NULL) 187 break; 188 vim_free(*line_to_free); 189 *line_to_free = theline; 190 whitep = (char_u *)" "; 191 p = skipwhite(theline); 192 } 193 194 if (mustend && *p != endchar) 195 { 196 if (!skip) 197 semsg(_(e_invarg2), *argp); 198 break; 199 } 200 if (*p == endchar) 201 break; 202 203 if (p[0] == '.' && p[1] == '.' && p[2] == '.') 204 { 205 if (varargs != NULL) 206 *varargs = TRUE; 207 p += 3; 208 mustend = TRUE; 209 210 if (argtypes != NULL) 211 { 212 // ...name: list<type> 213 if (!ASCII_ISALPHA(*p)) 214 { 215 emsg(_("E1055: Missing name after ...")); 216 break; 217 } 218 219 arg = p; 220 p = one_function_arg(p, newargs, argtypes, skip); 221 if (p == arg) 222 break; 223 } 224 } 225 else 226 { 227 arg = p; 228 p = one_function_arg(p, newargs, argtypes, skip); 229 if (p == arg) 230 break; 231 232 if (*skipwhite(p) == '=' && default_args != NULL) 233 { 234 typval_T rettv; 235 236 // find the end of the expression (doesn't evaluate it) 237 any_default = TRUE; 238 p = skipwhite(p) + 1; 239 whitep = p; 240 p = skipwhite(p); 241 expr = p; 242 if (eval1(&p, &rettv, 0) != FAIL) 243 { 244 if (ga_grow(default_args, 1) == FAIL) 245 goto err_ret; 246 247 // trim trailing whitespace 248 while (p > expr && VIM_ISWHITE(p[-1])) 249 p--; 250 c = *p; 251 *p = NUL; 252 expr = vim_strsave(expr); 253 if (expr == NULL) 254 { 255 *p = c; 256 goto err_ret; 257 } 258 ((char_u **)(default_args->ga_data)) 259 [default_args->ga_len] = expr; 260 default_args->ga_len++; 261 *p = c; 262 } 263 else 264 mustend = TRUE; 265 } 266 else if (any_default) 267 { 268 emsg(_("E989: Non-default argument follows default argument")); 269 mustend = TRUE; 270 } 271 if (*p == ',') 272 ++p; 273 else 274 mustend = TRUE; 275 } 276 whitep = p; 277 p = skipwhite(p); 278 } 279 280 if (*p != endchar) 281 goto err_ret; 282 ++p; // skip "endchar" 283 284 *argp = p; 285 return OK; 286 287 err_ret: 288 if (newargs != NULL) 289 ga_clear_strings(newargs); 290 if (default_args != NULL) 291 ga_clear_strings(default_args); 292 return FAIL; 293 } 294 295 /* 296 * Register function "fp" as using "current_funccal" as its scope. 297 */ 298 static int 299 register_closure(ufunc_T *fp) 300 { 301 if (fp->uf_scoped == current_funccal) 302 // no change 303 return OK; 304 funccal_unref(fp->uf_scoped, fp, FALSE); 305 fp->uf_scoped = current_funccal; 306 current_funccal->fc_refcount++; 307 308 if (ga_grow(¤t_funccal->fc_funcs, 1) == FAIL) 309 return FAIL; 310 ((ufunc_T **)current_funccal->fc_funcs.ga_data) 311 [current_funccal->fc_funcs.ga_len++] = fp; 312 return OK; 313 } 314 315 static void 316 set_ufunc_name(ufunc_T *fp, char_u *name) 317 { 318 STRCPY(fp->uf_name, name); 319 320 if (name[0] == K_SPECIAL) 321 { 322 fp->uf_name_exp = alloc(STRLEN(name) + 3); 323 if (fp->uf_name_exp != NULL) 324 { 325 STRCPY(fp->uf_name_exp, "<SNR>"); 326 STRCAT(fp->uf_name_exp, fp->uf_name + 3); 327 } 328 } 329 } 330 331 /* 332 * Get a name for a lambda. Returned in static memory. 333 */ 334 char_u * 335 get_lambda_name(void) 336 { 337 static char_u name[30]; 338 static int lambda_no = 0; 339 340 sprintf((char*)name, "<lambda>%d", ++lambda_no); 341 return name; 342 } 343 344 /* 345 * Parse a lambda expression and get a Funcref from "*arg". 346 * Return OK or FAIL. Returns NOTDONE for dict or {expr}. 347 */ 348 int 349 get_lambda_tv(char_u **arg, typval_T *rettv, int evaluate) 350 { 351 garray_T newargs; 352 garray_T newlines; 353 garray_T *pnewargs; 354 ufunc_T *fp = NULL; 355 partial_T *pt = NULL; 356 int varargs; 357 int ret; 358 char_u *start = skipwhite(*arg + 1); 359 char_u *s, *e; 360 int *old_eval_lavars = eval_lavars_used; 361 int eval_lavars = FALSE; 362 363 ga_init(&newargs); 364 ga_init(&newlines); 365 366 // First, check if this is a lambda expression. "->" must exist. 367 ret = get_function_args(&start, '-', NULL, NULL, NULL, NULL, TRUE, 368 NULL, NULL); 369 if (ret == FAIL || *start != '>') 370 return NOTDONE; 371 372 // Parse the arguments again. 373 if (evaluate) 374 pnewargs = &newargs; 375 else 376 pnewargs = NULL; 377 *arg = skipwhite(*arg + 1); 378 // TODO: argument types 379 ret = get_function_args(arg, '-', pnewargs, NULL, &varargs, NULL, FALSE, 380 NULL, NULL); 381 if (ret == FAIL || **arg != '>') 382 goto errret; 383 384 // Set up a flag for checking local variables and arguments. 385 if (evaluate) 386 eval_lavars_used = &eval_lavars; 387 388 // Get the start and the end of the expression. 389 *arg = skipwhite(*arg + 1); 390 s = *arg; 391 ret = skip_expr(arg); 392 if (ret == FAIL) 393 goto errret; 394 e = *arg; 395 *arg = skipwhite(*arg); 396 if (**arg != '}') 397 { 398 semsg(_("E451: Expected }: %s"), *arg); 399 goto errret; 400 } 401 ++*arg; 402 403 if (evaluate) 404 { 405 int len, flags = 0; 406 char_u *p; 407 char_u *name = get_lambda_name(); 408 409 fp = alloc_clear(offsetof(ufunc_T, uf_name) + STRLEN(name) + 1); 410 if (fp == NULL) 411 goto errret; 412 fp->uf_dfunc_idx = UF_NOT_COMPILED; 413 pt = ALLOC_CLEAR_ONE(partial_T); 414 if (pt == NULL) 415 goto errret; 416 417 ga_init2(&newlines, (int)sizeof(char_u *), 1); 418 if (ga_grow(&newlines, 1) == FAIL) 419 goto errret; 420 421 // Add "return " before the expression. 422 len = 7 + e - s + 1; 423 p = alloc(len); 424 if (p == NULL) 425 goto errret; 426 ((char_u **)(newlines.ga_data))[newlines.ga_len++] = p; 427 STRCPY(p, "return "); 428 vim_strncpy(p + 7, s, e - s); 429 if (strstr((char *)p + 7, "a:") == NULL) 430 // No a: variables are used for sure. 431 flags |= FC_NOARGS; 432 433 fp->uf_refcount = 1; 434 set_ufunc_name(fp, name); 435 hash_add(&func_hashtab, UF2HIKEY(fp)); 436 fp->uf_args = newargs; 437 ga_init(&fp->uf_def_args); 438 fp->uf_lines = newlines; 439 if (current_funccal != NULL && eval_lavars) 440 { 441 flags |= FC_CLOSURE; 442 if (register_closure(fp) == FAIL) 443 goto errret; 444 } 445 else 446 fp->uf_scoped = NULL; 447 448 #ifdef FEAT_PROFILE 449 if (prof_def_func()) 450 func_do_profile(fp); 451 #endif 452 if (sandbox) 453 flags |= FC_SANDBOX; 454 // can be called with more args than uf_args.ga_len 455 fp->uf_varargs = TRUE; 456 fp->uf_flags = flags; 457 fp->uf_calls = 0; 458 fp->uf_script_ctx = current_sctx; 459 fp->uf_script_ctx.sc_lnum += SOURCING_LNUM - newlines.ga_len; 460 461 pt->pt_func = fp; 462 pt->pt_refcount = 1; 463 rettv->vval.v_partial = pt; 464 rettv->v_type = VAR_PARTIAL; 465 } 466 467 eval_lavars_used = old_eval_lavars; 468 return OK; 469 470 errret: 471 ga_clear_strings(&newargs); 472 ga_clear_strings(&newlines); 473 vim_free(fp); 474 vim_free(pt); 475 eval_lavars_used = old_eval_lavars; 476 return FAIL; 477 } 478 479 /* 480 * Check if "name" is a variable of type VAR_FUNC. If so, return the function 481 * name it contains, otherwise return "name". 482 * If "partialp" is not NULL, and "name" is of type VAR_PARTIAL also set 483 * "partialp". 484 */ 485 char_u * 486 deref_func_name(char_u *name, int *lenp, partial_T **partialp, int no_autoload) 487 { 488 dictitem_T *v; 489 int cc; 490 char_u *s; 491 492 if (partialp != NULL) 493 *partialp = NULL; 494 495 cc = name[*lenp]; 496 name[*lenp] = NUL; 497 v = find_var(name, NULL, no_autoload); 498 name[*lenp] = cc; 499 if (v != NULL && v->di_tv.v_type == VAR_FUNC) 500 { 501 if (v->di_tv.vval.v_string == NULL) 502 { 503 *lenp = 0; 504 return (char_u *)""; // just in case 505 } 506 s = v->di_tv.vval.v_string; 507 *lenp = (int)STRLEN(s); 508 return s; 509 } 510 511 if (v != NULL && v->di_tv.v_type == VAR_PARTIAL) 512 { 513 partial_T *pt = v->di_tv.vval.v_partial; 514 515 if (pt == NULL) 516 { 517 *lenp = 0; 518 return (char_u *)""; // just in case 519 } 520 if (partialp != NULL) 521 *partialp = pt; 522 s = partial_name(pt); 523 *lenp = (int)STRLEN(s); 524 return s; 525 } 526 527 return name; 528 } 529 530 /* 531 * Give an error message with a function name. Handle <SNR> things. 532 * "ermsg" is to be passed without translation, use N_() instead of _(). 533 */ 534 void 535 emsg_funcname(char *ermsg, char_u *name) 536 { 537 char_u *p; 538 539 if (*name == K_SPECIAL) 540 p = concat_str((char_u *)"<SNR>", name + 3); 541 else 542 p = name; 543 semsg(_(ermsg), p); 544 if (p != name) 545 vim_free(p); 546 } 547 548 /* 549 * Allocate a variable for the result of a function. 550 * Return OK or FAIL. 551 */ 552 int 553 get_func_tv( 554 char_u *name, // name of the function 555 int len, // length of "name" or -1 to use strlen() 556 typval_T *rettv, 557 char_u **arg, // argument, pointing to the '(' 558 funcexe_T *funcexe) // various values 559 { 560 char_u *argp; 561 int ret = OK; 562 typval_T argvars[MAX_FUNC_ARGS + 1]; // vars for arguments 563 int argcount = 0; // number of arguments found 564 565 /* 566 * Get the arguments. 567 */ 568 argp = *arg; 569 while (argcount < MAX_FUNC_ARGS - (funcexe->partial == NULL ? 0 570 : funcexe->partial->pt_argc)) 571 { 572 argp = skipwhite(argp + 1); // skip the '(' or ',' 573 if (*argp == ')' || *argp == ',' || *argp == NUL) 574 break; 575 if (eval1(&argp, &argvars[argcount], 576 funcexe->evaluate ? EVAL_EVALUATE : 0) == FAIL) 577 { 578 ret = FAIL; 579 break; 580 } 581 ++argcount; 582 if (*argp != ',') 583 break; 584 } 585 if (*argp == ')') 586 ++argp; 587 else 588 ret = FAIL; 589 590 if (ret == OK) 591 { 592 int i = 0; 593 594 if (get_vim_var_nr(VV_TESTING)) 595 { 596 // Prepare for calling test_garbagecollect_now(), need to know 597 // what variables are used on the call stack. 598 if (funcargs.ga_itemsize == 0) 599 ga_init2(&funcargs, (int)sizeof(typval_T *), 50); 600 for (i = 0; i < argcount; ++i) 601 if (ga_grow(&funcargs, 1) == OK) 602 ((typval_T **)funcargs.ga_data)[funcargs.ga_len++] = 603 &argvars[i]; 604 } 605 606 ret = call_func(name, len, rettv, argcount, argvars, funcexe); 607 608 funcargs.ga_len -= i; 609 } 610 else if (!aborting()) 611 { 612 if (argcount == MAX_FUNC_ARGS) 613 emsg_funcname(N_("E740: Too many arguments for function %s"), name); 614 else 615 emsg_funcname(N_("E116: Invalid arguments for function %s"), name); 616 } 617 618 while (--argcount >= 0) 619 clear_tv(&argvars[argcount]); 620 621 *arg = skipwhite(argp); 622 return ret; 623 } 624 625 /* 626 * Return TRUE if "p" starts with "<SID>" or "s:". 627 * Only works if eval_fname_script() returned non-zero for "p"! 628 */ 629 static int 630 eval_fname_sid(char_u *p) 631 { 632 return (*p == 's' || TOUPPER_ASC(p[2]) == 'I'); 633 } 634 635 /* 636 * In a script change <SID>name() and s:name() to K_SNR 123_name(). 637 * Change <SNR>123_name() to K_SNR 123_name(). 638 * Use "fname_buf[FLEN_FIXED + 1]" when it fits, otherwise allocate memory 639 * (slow). 640 */ 641 char_u * 642 fname_trans_sid(char_u *name, char_u *fname_buf, char_u **tofree, int *error) 643 { 644 int llen; 645 char_u *fname; 646 int i; 647 648 llen = eval_fname_script(name); 649 if (llen > 0) 650 { 651 fname_buf[0] = K_SPECIAL; 652 fname_buf[1] = KS_EXTRA; 653 fname_buf[2] = (int)KE_SNR; 654 i = 3; 655 if (eval_fname_sid(name)) // "<SID>" or "s:" 656 { 657 if (current_sctx.sc_sid <= 0) 658 *error = FCERR_SCRIPT; 659 else 660 { 661 sprintf((char *)fname_buf + 3, "%ld_", 662 (long)current_sctx.sc_sid); 663 i = (int)STRLEN(fname_buf); 664 } 665 } 666 if (i + STRLEN(name + llen) < FLEN_FIXED) 667 { 668 STRCPY(fname_buf + i, name + llen); 669 fname = fname_buf; 670 } 671 else 672 { 673 fname = alloc(i + STRLEN(name + llen) + 1); 674 if (fname == NULL) 675 *error = FCERR_OTHER; 676 else 677 { 678 *tofree = fname; 679 mch_memmove(fname, fname_buf, (size_t)i); 680 STRCPY(fname + i, name + llen); 681 } 682 } 683 } 684 else 685 fname = name; 686 return fname; 687 } 688 689 /* 690 * Find a function "name" in script "sid". 691 */ 692 static ufunc_T * 693 find_func_with_sid(char_u *name, int sid) 694 { 695 hashitem_T *hi; 696 char_u buffer[200]; 697 698 buffer[0] = K_SPECIAL; 699 buffer[1] = KS_EXTRA; 700 buffer[2] = (int)KE_SNR; 701 vim_snprintf((char *)buffer + 3, sizeof(buffer) - 3, "%ld_%s", 702 (long)sid, name); 703 hi = hash_find(&func_hashtab, buffer); 704 if (!HASHITEM_EMPTY(hi)) 705 return HI2UF(hi); 706 707 return NULL; 708 } 709 710 /* 711 * Find a function by name, return pointer to it in ufuncs. 712 * When "is_global" is true don't find script-local or imported functions. 713 * Return NULL for unknown function. 714 */ 715 static ufunc_T * 716 find_func_even_dead(char_u *name, int is_global, cctx_T *cctx) 717 { 718 hashitem_T *hi; 719 ufunc_T *func; 720 imported_T *imported; 721 722 if (!is_global) 723 { 724 char_u *after_script = NULL; 725 726 if (in_vim9script()) 727 { 728 // Find script-local function before global one. 729 func = find_func_with_sid(name, current_sctx.sc_sid); 730 if (func != NULL) 731 return func; 732 } 733 734 if (!in_vim9script() 735 && name[0] == K_SPECIAL 736 && name[1] == KS_EXTRA 737 && name[2] == KE_SNR) 738 { 739 long sid; 740 741 // Caller changes s: to <SNR>99_name. 742 743 after_script = name + 3; 744 sid = getdigits(&after_script); 745 if (sid == current_sctx.sc_sid && *after_script == '_') 746 ++after_script; 747 else 748 after_script = NULL; 749 } 750 if (in_vim9script() || after_script != NULL) 751 { 752 // Find imported function before global one. 753 imported = find_imported( 754 after_script == NULL ? name : after_script, 0, cctx); 755 if (imported != NULL && imported->imp_funcname != NULL) 756 { 757 hi = hash_find(&func_hashtab, imported->imp_funcname); 758 if (!HASHITEM_EMPTY(hi)) 759 return HI2UF(hi); 760 } 761 } 762 } 763 764 hi = hash_find(&func_hashtab, 765 STRNCMP(name, "g:", 2) == 0 ? name + 2 : name); 766 if (!HASHITEM_EMPTY(hi)) 767 return HI2UF(hi); 768 769 return NULL; 770 } 771 772 /* 773 * Find a function by name, return pointer to it in ufuncs. 774 * "cctx" is passed in a :def function to find imported functions. 775 * Return NULL for unknown or dead function. 776 */ 777 ufunc_T * 778 find_func(char_u *name, int is_global, cctx_T *cctx) 779 { 780 ufunc_T *fp = find_func_even_dead(name, is_global, cctx); 781 782 if (fp != NULL && (fp->uf_flags & FC_DEAD) == 0) 783 return fp; 784 return NULL; 785 } 786 787 /* 788 * Copy the function name of "fp" to buffer "buf". 789 * "buf" must be able to hold the function name plus three bytes. 790 * Takes care of script-local function names. 791 */ 792 static void 793 cat_func_name(char_u *buf, ufunc_T *fp) 794 { 795 if (fp->uf_name[0] == K_SPECIAL) 796 { 797 STRCPY(buf, "<SNR>"); 798 STRCAT(buf, fp->uf_name + 3); 799 } 800 else 801 STRCPY(buf, fp->uf_name); 802 } 803 804 /* 805 * Add a number variable "name" to dict "dp" with value "nr". 806 */ 807 static void 808 add_nr_var( 809 dict_T *dp, 810 dictitem_T *v, 811 char *name, 812 varnumber_T nr) 813 { 814 STRCPY(v->di_key, name); 815 v->di_flags = DI_FLAGS_RO | DI_FLAGS_FIX; 816 hash_add(&dp->dv_hashtab, DI2HIKEY(v)); 817 v->di_tv.v_type = VAR_NUMBER; 818 v->di_tv.v_lock = VAR_FIXED; 819 v->di_tv.vval.v_number = nr; 820 } 821 822 /* 823 * Free "fc". 824 */ 825 static void 826 free_funccal(funccall_T *fc) 827 { 828 int i; 829 830 for (i = 0; i < fc->fc_funcs.ga_len; ++i) 831 { 832 ufunc_T *fp = ((ufunc_T **)(fc->fc_funcs.ga_data))[i]; 833 834 // When garbage collecting a funccall_T may be freed before the 835 // function that references it, clear its uf_scoped field. 836 // The function may have been redefined and point to another 837 // funccall_T, don't clear it then. 838 if (fp != NULL && fp->uf_scoped == fc) 839 fp->uf_scoped = NULL; 840 } 841 ga_clear(&fc->fc_funcs); 842 843 func_ptr_unref(fc->func); 844 vim_free(fc); 845 } 846 847 /* 848 * Free "fc" and what it contains. 849 * Can be called only when "fc" is kept beyond the period of it called, 850 * i.e. after cleanup_function_call(fc). 851 */ 852 static void 853 free_funccal_contents(funccall_T *fc) 854 { 855 listitem_T *li; 856 857 // Free all l: variables. 858 vars_clear(&fc->l_vars.dv_hashtab); 859 860 // Free all a: variables. 861 vars_clear(&fc->l_avars.dv_hashtab); 862 863 // Free the a:000 variables. 864 FOR_ALL_LIST_ITEMS(&fc->l_varlist, li) 865 clear_tv(&li->li_tv); 866 867 free_funccal(fc); 868 } 869 870 /* 871 * Handle the last part of returning from a function: free the local hashtable. 872 * Unless it is still in use by a closure. 873 */ 874 static void 875 cleanup_function_call(funccall_T *fc) 876 { 877 int may_free_fc = fc->fc_refcount <= 0; 878 int free_fc = TRUE; 879 880 current_funccal = fc->caller; 881 882 // Free all l: variables if not referred. 883 if (may_free_fc && fc->l_vars.dv_refcount == DO_NOT_FREE_CNT) 884 vars_clear(&fc->l_vars.dv_hashtab); 885 else 886 free_fc = FALSE; 887 888 // If the a:000 list and the l: and a: dicts are not referenced and 889 // there is no closure using it, we can free the funccall_T and what's 890 // in it. 891 if (may_free_fc && fc->l_avars.dv_refcount == DO_NOT_FREE_CNT) 892 vars_clear_ext(&fc->l_avars.dv_hashtab, FALSE); 893 else 894 { 895 int todo; 896 hashitem_T *hi; 897 dictitem_T *di; 898 899 free_fc = FALSE; 900 901 // Make a copy of the a: variables, since we didn't do that above. 902 todo = (int)fc->l_avars.dv_hashtab.ht_used; 903 for (hi = fc->l_avars.dv_hashtab.ht_array; todo > 0; ++hi) 904 { 905 if (!HASHITEM_EMPTY(hi)) 906 { 907 --todo; 908 di = HI2DI(hi); 909 copy_tv(&di->di_tv, &di->di_tv); 910 } 911 } 912 } 913 914 if (may_free_fc && fc->l_varlist.lv_refcount == DO_NOT_FREE_CNT) 915 fc->l_varlist.lv_first = NULL; 916 else 917 { 918 listitem_T *li; 919 920 free_fc = FALSE; 921 922 // Make a copy of the a:000 items, since we didn't do that above. 923 FOR_ALL_LIST_ITEMS(&fc->l_varlist, li) 924 copy_tv(&li->li_tv, &li->li_tv); 925 } 926 927 if (free_fc) 928 free_funccal(fc); 929 else 930 { 931 static int made_copy = 0; 932 933 // "fc" is still in use. This can happen when returning "a:000", 934 // assigning "l:" to a global variable or defining a closure. 935 // Link "fc" in the list for garbage collection later. 936 fc->caller = previous_funccal; 937 previous_funccal = fc; 938 939 if (want_garbage_collect) 940 // If garbage collector is ready, clear count. 941 made_copy = 0; 942 else if (++made_copy >= (int)((4096 * 1024) / sizeof(*fc))) 943 { 944 // We have made a lot of copies, worth 4 Mbyte. This can happen 945 // when repetitively calling a function that creates a reference to 946 // itself somehow. Call the garbage collector soon to avoid using 947 // too much memory. 948 made_copy = 0; 949 want_garbage_collect = TRUE; 950 } 951 } 952 } 953 /* 954 * Unreference "fc": decrement the reference count and free it when it 955 * becomes zero. "fp" is detached from "fc". 956 * When "force" is TRUE we are exiting. 957 */ 958 static void 959 funccal_unref(funccall_T *fc, ufunc_T *fp, int force) 960 { 961 funccall_T **pfc; 962 int i; 963 964 if (fc == NULL) 965 return; 966 967 if (--fc->fc_refcount <= 0 && (force || ( 968 fc->l_varlist.lv_refcount == DO_NOT_FREE_CNT 969 && fc->l_vars.dv_refcount == DO_NOT_FREE_CNT 970 && fc->l_avars.dv_refcount == DO_NOT_FREE_CNT))) 971 for (pfc = &previous_funccal; *pfc != NULL; pfc = &(*pfc)->caller) 972 { 973 if (fc == *pfc) 974 { 975 *pfc = fc->caller; 976 free_funccal_contents(fc); 977 return; 978 } 979 } 980 for (i = 0; i < fc->fc_funcs.ga_len; ++i) 981 if (((ufunc_T **)(fc->fc_funcs.ga_data))[i] == fp) 982 ((ufunc_T **)(fc->fc_funcs.ga_data))[i] = NULL; 983 } 984 985 /* 986 * Remove the function from the function hashtable. If the function was 987 * deleted while it still has references this was already done. 988 * Return TRUE if the entry was deleted, FALSE if it wasn't found. 989 */ 990 static int 991 func_remove(ufunc_T *fp) 992 { 993 hashitem_T *hi; 994 995 // Return if it was already virtually deleted. 996 if (fp->uf_flags & FC_DEAD) 997 return FALSE; 998 999 hi = hash_find(&func_hashtab, UF2HIKEY(fp)); 1000 if (!HASHITEM_EMPTY(hi)) 1001 { 1002 // When there is a def-function index do not actually remove the 1003 // function, so we can find the index when defining the function again. 1004 if (fp->uf_dfunc_idx >= 0) 1005 fp->uf_flags |= FC_DEAD; 1006 else 1007 hash_remove(&func_hashtab, hi); 1008 return TRUE; 1009 } 1010 return FALSE; 1011 } 1012 1013 static void 1014 func_clear_items(ufunc_T *fp) 1015 { 1016 ga_clear_strings(&(fp->uf_args)); 1017 ga_clear_strings(&(fp->uf_def_args)); 1018 ga_clear_strings(&(fp->uf_lines)); 1019 VIM_CLEAR(fp->uf_name_exp); 1020 VIM_CLEAR(fp->uf_arg_types); 1021 VIM_CLEAR(fp->uf_def_arg_idx); 1022 VIM_CLEAR(fp->uf_va_name); 1023 while (fp->uf_type_list.ga_len > 0) 1024 vim_free(((type_T **)fp->uf_type_list.ga_data) 1025 [--fp->uf_type_list.ga_len]); 1026 ga_clear(&fp->uf_type_list); 1027 #ifdef FEAT_PROFILE 1028 VIM_CLEAR(fp->uf_tml_count); 1029 VIM_CLEAR(fp->uf_tml_total); 1030 VIM_CLEAR(fp->uf_tml_self); 1031 #endif 1032 } 1033 1034 /* 1035 * Free all things that a function contains. Does not free the function 1036 * itself, use func_free() for that. 1037 * When "force" is TRUE we are exiting. 1038 */ 1039 static void 1040 func_clear(ufunc_T *fp, int force) 1041 { 1042 if (fp->uf_cleared) 1043 return; 1044 fp->uf_cleared = TRUE; 1045 1046 // clear this function 1047 func_clear_items(fp); 1048 funccal_unref(fp->uf_scoped, fp, force); 1049 delete_def_function(fp); 1050 } 1051 1052 /* 1053 * Free a function and remove it from the list of functions. Does not free 1054 * what a function contains, call func_clear() first. 1055 * When "force" is TRUE we are exiting. 1056 */ 1057 static void 1058 func_free(ufunc_T *fp, int force) 1059 { 1060 // Only remove it when not done already, otherwise we would remove a newer 1061 // version of the function with the same name. 1062 if ((fp->uf_flags & (FC_DELETED | FC_REMOVED)) == 0) 1063 func_remove(fp); 1064 1065 if ((fp->uf_flags & FC_DEAD) == 0 || force) 1066 vim_free(fp); 1067 } 1068 1069 /* 1070 * Free all things that a function contains and free the function itself. 1071 * When "force" is TRUE we are exiting. 1072 */ 1073 static void 1074 func_clear_free(ufunc_T *fp, int force) 1075 { 1076 func_clear(fp, force); 1077 func_free(fp, force); 1078 } 1079 1080 1081 /* 1082 * Call a user function. 1083 */ 1084 static void 1085 call_user_func( 1086 ufunc_T *fp, // pointer to function 1087 int argcount, // nr of args 1088 typval_T *argvars, // arguments 1089 typval_T *rettv, // return value 1090 funcexe_T *funcexe, // context 1091 dict_T *selfdict) // Dictionary for "self" 1092 { 1093 sctx_T save_current_sctx; 1094 int using_sandbox = FALSE; 1095 funccall_T *fc; 1096 int save_did_emsg; 1097 int default_arg_err = FALSE; 1098 static int depth = 0; 1099 dictitem_T *v; 1100 int fixvar_idx = 0; // index in fixvar[] 1101 int i; 1102 int ai; 1103 int islambda = FALSE; 1104 char_u numbuf[NUMBUFLEN]; 1105 char_u *name; 1106 #ifdef FEAT_PROFILE 1107 proftime_T wait_start; 1108 proftime_T call_start; 1109 int started_profiling = FALSE; 1110 #endif 1111 ESTACK_CHECK_DECLARATION 1112 1113 // If depth of calling is getting too high, don't execute the function 1114 if (depth >= p_mfd) 1115 { 1116 emsg(_("E132: Function call depth is higher than 'maxfuncdepth'")); 1117 rettv->v_type = VAR_NUMBER; 1118 rettv->vval.v_number = -1; 1119 return; 1120 } 1121 ++depth; 1122 1123 line_breakcheck(); // check for CTRL-C hit 1124 1125 fc = ALLOC_CLEAR_ONE(funccall_T); 1126 if (fc == NULL) 1127 return; 1128 fc->caller = current_funccal; 1129 current_funccal = fc; 1130 fc->func = fp; 1131 fc->rettv = rettv; 1132 fc->level = ex_nesting_level; 1133 // Check if this function has a breakpoint. 1134 fc->breakpoint = dbg_find_breakpoint(FALSE, fp->uf_name, (linenr_T)0); 1135 fc->dbg_tick = debug_tick; 1136 // Set up fields for closure. 1137 ga_init2(&fc->fc_funcs, sizeof(ufunc_T *), 1); 1138 func_ptr_ref(fp); 1139 1140 if (fp->uf_dfunc_idx != UF_NOT_COMPILED) 1141 { 1142 estack_push_ufunc(fp, 1); 1143 save_current_sctx = current_sctx; 1144 current_sctx = fp->uf_script_ctx; 1145 1146 // Execute the function, possibly compiling it first. 1147 call_def_function(fp, argcount, argvars, funcexe->partial, rettv); 1148 --depth; 1149 current_funccal = fc->caller; 1150 1151 estack_pop(); 1152 current_sctx = save_current_sctx; 1153 free_funccal(fc); 1154 return; 1155 } 1156 1157 if (STRNCMP(fp->uf_name, "<lambda>", 8) == 0) 1158 islambda = TRUE; 1159 1160 /* 1161 * Note about using fc->fixvar[]: This is an array of FIXVAR_CNT variables 1162 * with names up to VAR_SHORT_LEN long. This avoids having to alloc/free 1163 * each argument variable and saves a lot of time. 1164 */ 1165 /* 1166 * Init l: variables. 1167 */ 1168 init_var_dict(&fc->l_vars, &fc->l_vars_var, VAR_DEF_SCOPE); 1169 if (selfdict != NULL) 1170 { 1171 // Set l:self to "selfdict". Use "name" to avoid a warning from 1172 // some compiler that checks the destination size. 1173 v = &fc->fixvar[fixvar_idx++].var; 1174 name = v->di_key; 1175 STRCPY(name, "self"); 1176 v->di_flags = DI_FLAGS_RO | DI_FLAGS_FIX; 1177 hash_add(&fc->l_vars.dv_hashtab, DI2HIKEY(v)); 1178 v->di_tv.v_type = VAR_DICT; 1179 v->di_tv.v_lock = 0; 1180 v->di_tv.vval.v_dict = selfdict; 1181 ++selfdict->dv_refcount; 1182 } 1183 1184 /* 1185 * Init a: variables, unless none found (in lambda). 1186 * Set a:0 to "argcount" less number of named arguments, if >= 0. 1187 * Set a:000 to a list with room for the "..." arguments. 1188 */ 1189 init_var_dict(&fc->l_avars, &fc->l_avars_var, VAR_SCOPE); 1190 if ((fp->uf_flags & FC_NOARGS) == 0) 1191 add_nr_var(&fc->l_avars, &fc->fixvar[fixvar_idx++].var, "0", 1192 (varnumber_T)(argcount >= fp->uf_args.ga_len 1193 ? argcount - fp->uf_args.ga_len : 0)); 1194 fc->l_avars.dv_lock = VAR_FIXED; 1195 if ((fp->uf_flags & FC_NOARGS) == 0) 1196 { 1197 // Use "name" to avoid a warning from some compiler that checks the 1198 // destination size. 1199 v = &fc->fixvar[fixvar_idx++].var; 1200 name = v->di_key; 1201 STRCPY(name, "000"); 1202 v->di_flags = DI_FLAGS_RO | DI_FLAGS_FIX; 1203 hash_add(&fc->l_avars.dv_hashtab, DI2HIKEY(v)); 1204 v->di_tv.v_type = VAR_LIST; 1205 v->di_tv.v_lock = VAR_FIXED; 1206 v->di_tv.vval.v_list = &fc->l_varlist; 1207 } 1208 CLEAR_FIELD(fc->l_varlist); 1209 fc->l_varlist.lv_refcount = DO_NOT_FREE_CNT; 1210 fc->l_varlist.lv_lock = VAR_FIXED; 1211 1212 /* 1213 * Set a:firstline to "firstline" and a:lastline to "lastline". 1214 * Set a:name to named arguments. 1215 * Set a:N to the "..." arguments. 1216 * Skipped when no a: variables used (in lambda). 1217 */ 1218 if ((fp->uf_flags & FC_NOARGS) == 0) 1219 { 1220 add_nr_var(&fc->l_avars, &fc->fixvar[fixvar_idx++].var, "firstline", 1221 (varnumber_T)funcexe->firstline); 1222 add_nr_var(&fc->l_avars, &fc->fixvar[fixvar_idx++].var, "lastline", 1223 (varnumber_T)funcexe->lastline); 1224 } 1225 for (i = 0; i < argcount || i < fp->uf_args.ga_len; ++i) 1226 { 1227 int addlocal = FALSE; 1228 typval_T def_rettv; 1229 int isdefault = FALSE; 1230 1231 ai = i - fp->uf_args.ga_len; 1232 if (ai < 0) 1233 { 1234 // named argument a:name 1235 name = FUNCARG(fp, i); 1236 if (islambda) 1237 addlocal = TRUE; 1238 1239 // evaluate named argument default expression 1240 isdefault = ai + fp->uf_def_args.ga_len >= 0 1241 && (i >= argcount || (argvars[i].v_type == VAR_SPECIAL 1242 && argvars[i].vval.v_number == VVAL_NONE)); 1243 if (isdefault) 1244 { 1245 char_u *default_expr = NULL; 1246 def_rettv.v_type = VAR_NUMBER; 1247 def_rettv.vval.v_number = -1; 1248 1249 default_expr = ((char_u **)(fp->uf_def_args.ga_data)) 1250 [ai + fp->uf_def_args.ga_len]; 1251 if (eval1(&default_expr, &def_rettv, EVAL_EVALUATE) == FAIL) 1252 { 1253 default_arg_err = 1; 1254 break; 1255 } 1256 } 1257 } 1258 else 1259 { 1260 if ((fp->uf_flags & FC_NOARGS) != 0) 1261 // Bail out if no a: arguments used (in lambda). 1262 break; 1263 1264 // "..." argument a:1, a:2, etc. 1265 sprintf((char *)numbuf, "%d", ai + 1); 1266 name = numbuf; 1267 } 1268 if (fixvar_idx < FIXVAR_CNT && STRLEN(name) <= VAR_SHORT_LEN) 1269 { 1270 v = &fc->fixvar[fixvar_idx++].var; 1271 v->di_flags = DI_FLAGS_RO | DI_FLAGS_FIX; 1272 STRCPY(v->di_key, name); 1273 } 1274 else 1275 { 1276 v = dictitem_alloc(name); 1277 if (v == NULL) 1278 break; 1279 v->di_flags |= DI_FLAGS_RO | DI_FLAGS_FIX; 1280 } 1281 1282 // Note: the values are copied directly to avoid alloc/free. 1283 // "argvars" must have VAR_FIXED for v_lock. 1284 v->di_tv = isdefault ? def_rettv : argvars[i]; 1285 v->di_tv.v_lock = VAR_FIXED; 1286 1287 if (addlocal) 1288 { 1289 // Named arguments should be accessed without the "a:" prefix in 1290 // lambda expressions. Add to the l: dict. 1291 copy_tv(&v->di_tv, &v->di_tv); 1292 hash_add(&fc->l_vars.dv_hashtab, DI2HIKEY(v)); 1293 } 1294 else 1295 hash_add(&fc->l_avars.dv_hashtab, DI2HIKEY(v)); 1296 1297 if (ai >= 0 && ai < MAX_FUNC_ARGS) 1298 { 1299 listitem_T *li = &fc->l_listitems[ai]; 1300 1301 li->li_tv = argvars[i]; 1302 li->li_tv.v_lock = VAR_FIXED; 1303 list_append(&fc->l_varlist, li); 1304 } 1305 } 1306 1307 // Don't redraw while executing the function. 1308 ++RedrawingDisabled; 1309 1310 if (fp->uf_flags & FC_SANDBOX) 1311 { 1312 using_sandbox = TRUE; 1313 ++sandbox; 1314 } 1315 1316 estack_push_ufunc(fp, 1); 1317 ESTACK_CHECK_SETUP 1318 if (p_verbose >= 12) 1319 { 1320 ++no_wait_return; 1321 verbose_enter_scroll(); 1322 1323 smsg(_("calling %s"), SOURCING_NAME); 1324 if (p_verbose >= 14) 1325 { 1326 char_u buf[MSG_BUF_LEN]; 1327 char_u numbuf2[NUMBUFLEN]; 1328 char_u *tofree; 1329 char_u *s; 1330 1331 msg_puts("("); 1332 for (i = 0; i < argcount; ++i) 1333 { 1334 if (i > 0) 1335 msg_puts(", "); 1336 if (argvars[i].v_type == VAR_NUMBER) 1337 msg_outnum((long)argvars[i].vval.v_number); 1338 else 1339 { 1340 // Do not want errors such as E724 here. 1341 ++emsg_off; 1342 s = tv2string(&argvars[i], &tofree, numbuf2, 0); 1343 --emsg_off; 1344 if (s != NULL) 1345 { 1346 if (vim_strsize(s) > MSG_BUF_CLEN) 1347 { 1348 trunc_string(s, buf, MSG_BUF_CLEN, MSG_BUF_LEN); 1349 s = buf; 1350 } 1351 msg_puts((char *)s); 1352 vim_free(tofree); 1353 } 1354 } 1355 } 1356 msg_puts(")"); 1357 } 1358 msg_puts("\n"); // don't overwrite this either 1359 1360 verbose_leave_scroll(); 1361 --no_wait_return; 1362 } 1363 #ifdef FEAT_PROFILE 1364 if (do_profiling == PROF_YES) 1365 { 1366 if (!fp->uf_profiling && has_profiling(FALSE, fp->uf_name, NULL)) 1367 { 1368 started_profiling = TRUE; 1369 func_do_profile(fp); 1370 } 1371 if (fp->uf_profiling 1372 || (fc->caller != NULL && fc->caller->func->uf_profiling)) 1373 { 1374 ++fp->uf_tm_count; 1375 profile_start(&call_start); 1376 profile_zero(&fp->uf_tm_children); 1377 } 1378 script_prof_save(&wait_start); 1379 } 1380 #endif 1381 1382 save_current_sctx = current_sctx; 1383 current_sctx = fp->uf_script_ctx; 1384 save_did_emsg = did_emsg; 1385 did_emsg = FALSE; 1386 1387 if (default_arg_err && (fp->uf_flags & FC_ABORT)) 1388 did_emsg = TRUE; 1389 else if (islambda) 1390 { 1391 char_u *p = *(char_u **)fp->uf_lines.ga_data + 7; 1392 1393 // A Lambda always has the command "return {expr}". It is much faster 1394 // to evaluate {expr} directly. 1395 ++ex_nesting_level; 1396 (void)eval1(&p, rettv, EVAL_EVALUATE); 1397 --ex_nesting_level; 1398 } 1399 else 1400 // call do_cmdline() to execute the lines 1401 do_cmdline(NULL, get_func_line, (void *)fc, 1402 DOCMD_NOWAIT|DOCMD_VERBOSE|DOCMD_REPEAT); 1403 1404 --RedrawingDisabled; 1405 1406 // when the function was aborted because of an error, return -1 1407 if ((did_emsg && (fp->uf_flags & FC_ABORT)) || rettv->v_type == VAR_UNKNOWN) 1408 { 1409 clear_tv(rettv); 1410 rettv->v_type = VAR_NUMBER; 1411 rettv->vval.v_number = -1; 1412 } 1413 1414 #ifdef FEAT_PROFILE 1415 if (do_profiling == PROF_YES && (fp->uf_profiling 1416 || (fc->caller != NULL && fc->caller->func->uf_profiling))) 1417 { 1418 profile_end(&call_start); 1419 profile_sub_wait(&wait_start, &call_start); 1420 profile_add(&fp->uf_tm_total, &call_start); 1421 profile_self(&fp->uf_tm_self, &call_start, &fp->uf_tm_children); 1422 if (fc->caller != NULL && fc->caller->func->uf_profiling) 1423 { 1424 profile_add(&fc->caller->func->uf_tm_children, &call_start); 1425 profile_add(&fc->caller->func->uf_tml_children, &call_start); 1426 } 1427 if (started_profiling) 1428 // make a ":profdel func" stop profiling the function 1429 fp->uf_profiling = FALSE; 1430 } 1431 #endif 1432 1433 // when being verbose, mention the return value 1434 if (p_verbose >= 12) 1435 { 1436 ++no_wait_return; 1437 verbose_enter_scroll(); 1438 1439 if (aborting()) 1440 smsg(_("%s aborted"), SOURCING_NAME); 1441 else if (fc->rettv->v_type == VAR_NUMBER) 1442 smsg(_("%s returning #%ld"), SOURCING_NAME, 1443 (long)fc->rettv->vval.v_number); 1444 else 1445 { 1446 char_u buf[MSG_BUF_LEN]; 1447 char_u numbuf2[NUMBUFLEN]; 1448 char_u *tofree; 1449 char_u *s; 1450 1451 // The value may be very long. Skip the middle part, so that we 1452 // have some idea how it starts and ends. smsg() would always 1453 // truncate it at the end. Don't want errors such as E724 here. 1454 ++emsg_off; 1455 s = tv2string(fc->rettv, &tofree, numbuf2, 0); 1456 --emsg_off; 1457 if (s != NULL) 1458 { 1459 if (vim_strsize(s) > MSG_BUF_CLEN) 1460 { 1461 trunc_string(s, buf, MSG_BUF_CLEN, MSG_BUF_LEN); 1462 s = buf; 1463 } 1464 smsg(_("%s returning %s"), SOURCING_NAME, s); 1465 vim_free(tofree); 1466 } 1467 } 1468 msg_puts("\n"); // don't overwrite this either 1469 1470 verbose_leave_scroll(); 1471 --no_wait_return; 1472 } 1473 1474 ESTACK_CHECK_NOW 1475 estack_pop(); 1476 current_sctx = save_current_sctx; 1477 #ifdef FEAT_PROFILE 1478 if (do_profiling == PROF_YES) 1479 script_prof_restore(&wait_start); 1480 #endif 1481 if (using_sandbox) 1482 --sandbox; 1483 1484 if (p_verbose >= 12 && SOURCING_NAME != NULL) 1485 { 1486 ++no_wait_return; 1487 verbose_enter_scroll(); 1488 1489 smsg(_("continuing in %s"), SOURCING_NAME); 1490 msg_puts("\n"); // don't overwrite this either 1491 1492 verbose_leave_scroll(); 1493 --no_wait_return; 1494 } 1495 1496 did_emsg |= save_did_emsg; 1497 --depth; 1498 1499 cleanup_function_call(fc); 1500 } 1501 1502 /* 1503 * Call a user function after checking the arguments. 1504 */ 1505 int 1506 call_user_func_check( 1507 ufunc_T *fp, 1508 int argcount, 1509 typval_T *argvars, 1510 typval_T *rettv, 1511 funcexe_T *funcexe, 1512 dict_T *selfdict) 1513 { 1514 int error; 1515 int regular_args = fp->uf_args.ga_len; 1516 1517 if (fp->uf_flags & FC_RANGE && funcexe->doesrange != NULL) 1518 *funcexe->doesrange = TRUE; 1519 if (argcount < regular_args - fp->uf_def_args.ga_len) 1520 error = FCERR_TOOFEW; 1521 else if (!has_varargs(fp) && argcount > regular_args) 1522 error = FCERR_TOOMANY; 1523 else if ((fp->uf_flags & FC_DICT) && selfdict == NULL) 1524 error = FCERR_DICT; 1525 else 1526 { 1527 int did_save_redo = FALSE; 1528 save_redo_T save_redo; 1529 1530 /* 1531 * Call the user function. 1532 * Save and restore search patterns, script variables and 1533 * redo buffer. 1534 */ 1535 save_search_patterns(); 1536 if (!ins_compl_active()) 1537 { 1538 saveRedobuff(&save_redo); 1539 did_save_redo = TRUE; 1540 } 1541 ++fp->uf_calls; 1542 call_user_func(fp, argcount, argvars, rettv, funcexe, 1543 (fp->uf_flags & FC_DICT) ? selfdict : NULL); 1544 if (--fp->uf_calls <= 0 && fp->uf_refcount <= 0) 1545 // Function was unreferenced while being used, free it now. 1546 func_clear_free(fp, FALSE); 1547 if (did_save_redo) 1548 restoreRedobuff(&save_redo); 1549 restore_search_patterns(); 1550 error = FCERR_NONE; 1551 } 1552 return error; 1553 } 1554 1555 /* 1556 * There are two kinds of function names: 1557 * 1. ordinary names, function defined with :function 1558 * 2. numbered functions and lambdas 1559 * For the first we only count the name stored in func_hashtab as a reference, 1560 * using function() does not count as a reference, because the function is 1561 * looked up by name. 1562 */ 1563 static int 1564 func_name_refcount(char_u *name) 1565 { 1566 return isdigit(*name) || *name == '<'; 1567 } 1568 1569 static funccal_entry_T *funccal_stack = NULL; 1570 1571 /* 1572 * Save the current function call pointer, and set it to NULL. 1573 * Used when executing autocommands and for ":source". 1574 */ 1575 void 1576 save_funccal(funccal_entry_T *entry) 1577 { 1578 entry->top_funccal = current_funccal; 1579 entry->next = funccal_stack; 1580 funccal_stack = entry; 1581 current_funccal = NULL; 1582 } 1583 1584 void 1585 restore_funccal(void) 1586 { 1587 if (funccal_stack == NULL) 1588 iemsg("INTERNAL: restore_funccal()"); 1589 else 1590 { 1591 current_funccal = funccal_stack->top_funccal; 1592 funccal_stack = funccal_stack->next; 1593 } 1594 } 1595 1596 funccall_T * 1597 get_current_funccal(void) 1598 { 1599 return current_funccal; 1600 } 1601 1602 /* 1603 * Mark all functions of script "sid" as deleted. 1604 */ 1605 void 1606 delete_script_functions(int sid) 1607 { 1608 hashitem_T *hi; 1609 ufunc_T *fp; 1610 long_u todo; 1611 char_u buf[30]; 1612 size_t len; 1613 1614 buf[0] = K_SPECIAL; 1615 buf[1] = KS_EXTRA; 1616 buf[2] = (int)KE_SNR; 1617 sprintf((char *)buf + 3, "%d_", sid); 1618 len = STRLEN(buf); 1619 1620 todo = func_hashtab.ht_used; 1621 for (hi = func_hashtab.ht_array; todo > 0; ++hi) 1622 if (!HASHITEM_EMPTY(hi)) 1623 { 1624 fp = HI2UF(hi); 1625 if (STRNCMP(fp->uf_name, buf, len) == 0) 1626 { 1627 fp->uf_flags |= FC_DEAD; 1628 func_clear(fp, TRUE); 1629 } 1630 --todo; 1631 } 1632 } 1633 1634 #if defined(EXITFREE) || defined(PROTO) 1635 void 1636 free_all_functions(void) 1637 { 1638 hashitem_T *hi; 1639 ufunc_T *fp; 1640 long_u skipped = 0; 1641 long_u todo = 1; 1642 long_u used; 1643 1644 // Clean up the current_funccal chain and the funccal stack. 1645 while (current_funccal != NULL) 1646 { 1647 clear_tv(current_funccal->rettv); 1648 cleanup_function_call(current_funccal); 1649 if (current_funccal == NULL && funccal_stack != NULL) 1650 restore_funccal(); 1651 } 1652 1653 // First clear what the functions contain. Since this may lower the 1654 // reference count of a function, it may also free a function and change 1655 // the hash table. Restart if that happens. 1656 while (todo > 0) 1657 { 1658 todo = func_hashtab.ht_used; 1659 for (hi = func_hashtab.ht_array; todo > 0; ++hi) 1660 if (!HASHITEM_EMPTY(hi)) 1661 { 1662 // clear the def function index now 1663 fp = HI2UF(hi); 1664 fp->uf_flags &= ~FC_DEAD; 1665 fp->uf_dfunc_idx = UF_NOT_COMPILED; 1666 1667 // Only free functions that are not refcounted, those are 1668 // supposed to be freed when no longer referenced. 1669 if (func_name_refcount(fp->uf_name)) 1670 ++skipped; 1671 else 1672 { 1673 used = func_hashtab.ht_used; 1674 func_clear(fp, TRUE); 1675 if (used != func_hashtab.ht_used) 1676 { 1677 skipped = 0; 1678 break; 1679 } 1680 } 1681 --todo; 1682 } 1683 } 1684 1685 // Now actually free the functions. Need to start all over every time, 1686 // because func_free() may change the hash table. 1687 skipped = 0; 1688 while (func_hashtab.ht_used > skipped) 1689 { 1690 todo = func_hashtab.ht_used; 1691 for (hi = func_hashtab.ht_array; todo > 0; ++hi) 1692 if (!HASHITEM_EMPTY(hi)) 1693 { 1694 --todo; 1695 // Only free functions that are not refcounted, those are 1696 // supposed to be freed when no longer referenced. 1697 fp = HI2UF(hi); 1698 if (func_name_refcount(fp->uf_name)) 1699 ++skipped; 1700 else 1701 { 1702 func_free(fp, FALSE); 1703 skipped = 0; 1704 break; 1705 } 1706 } 1707 } 1708 if (skipped == 0) 1709 hash_clear(&func_hashtab); 1710 1711 free_def_functions(); 1712 } 1713 #endif 1714 1715 /* 1716 * Return TRUE if "name" looks like a builtin function name: starts with a 1717 * lower case letter and doesn't contain AUTOLOAD_CHAR or ':'. 1718 * "len" is the length of "name", or -1 for NUL terminated. 1719 */ 1720 int 1721 builtin_function(char_u *name, int len) 1722 { 1723 char_u *p; 1724 1725 if (!ASCII_ISLOWER(name[0]) || name[1] == ':') 1726 return FALSE; 1727 p = vim_strchr(name, AUTOLOAD_CHAR); 1728 return p == NULL || (len > 0 && p > name + len); 1729 } 1730 1731 int 1732 func_call( 1733 char_u *name, 1734 typval_T *args, 1735 partial_T *partial, 1736 dict_T *selfdict, 1737 typval_T *rettv) 1738 { 1739 list_T *l = args->vval.v_list; 1740 listitem_T *item; 1741 typval_T argv[MAX_FUNC_ARGS + 1]; 1742 int argc = 0; 1743 int r = 0; 1744 1745 CHECK_LIST_MATERIALIZE(l); 1746 FOR_ALL_LIST_ITEMS(l, item) 1747 { 1748 if (argc == MAX_FUNC_ARGS - (partial == NULL ? 0 : partial->pt_argc)) 1749 { 1750 emsg(_("E699: Too many arguments")); 1751 break; 1752 } 1753 // Make a copy of each argument. This is needed to be able to set 1754 // v_lock to VAR_FIXED in the copy without changing the original list. 1755 copy_tv(&item->li_tv, &argv[argc++]); 1756 } 1757 1758 if (item == NULL) 1759 { 1760 funcexe_T funcexe; 1761 1762 CLEAR_FIELD(funcexe); 1763 funcexe.firstline = curwin->w_cursor.lnum; 1764 funcexe.lastline = curwin->w_cursor.lnum; 1765 funcexe.evaluate = TRUE; 1766 funcexe.partial = partial; 1767 funcexe.selfdict = selfdict; 1768 r = call_func(name, -1, rettv, argc, argv, &funcexe); 1769 } 1770 1771 // Free the arguments. 1772 while (argc > 0) 1773 clear_tv(&argv[--argc]); 1774 1775 return r; 1776 } 1777 1778 static int callback_depth = 0; 1779 1780 int 1781 get_callback_depth(void) 1782 { 1783 return callback_depth; 1784 } 1785 1786 /* 1787 * Invoke call_func() with a callback. 1788 */ 1789 int 1790 call_callback( 1791 callback_T *callback, 1792 int len, // length of "name" or -1 to use strlen() 1793 typval_T *rettv, // return value goes here 1794 int argcount, // number of "argvars" 1795 typval_T *argvars) // vars for arguments, must have "argcount" 1796 // PLUS ONE elements! 1797 { 1798 funcexe_T funcexe; 1799 int ret; 1800 1801 CLEAR_FIELD(funcexe); 1802 funcexe.evaluate = TRUE; 1803 funcexe.partial = callback->cb_partial; 1804 ++callback_depth; 1805 ret = call_func(callback->cb_name, len, rettv, argcount, argvars, &funcexe); 1806 --callback_depth; 1807 return ret; 1808 } 1809 1810 /* 1811 * Give an error message for the result of a function. 1812 * Nothing if "error" is FCERR_NONE. 1813 */ 1814 void 1815 user_func_error(int error, char_u *name) 1816 { 1817 switch (error) 1818 { 1819 case FCERR_UNKNOWN: 1820 emsg_funcname(e_unknownfunc, name); 1821 break; 1822 case FCERR_NOTMETHOD: 1823 emsg_funcname( 1824 N_("E276: Cannot use function as a method: %s"), name); 1825 break; 1826 case FCERR_DELETED: 1827 emsg_funcname(N_(e_func_deleted), name); 1828 break; 1829 case FCERR_TOOMANY: 1830 emsg_funcname((char *)e_toomanyarg, name); 1831 break; 1832 case FCERR_TOOFEW: 1833 emsg_funcname((char *)e_toofewarg, name); 1834 break; 1835 case FCERR_SCRIPT: 1836 emsg_funcname( 1837 N_("E120: Using <SID> not in a script context: %s"), name); 1838 break; 1839 case FCERR_DICT: 1840 emsg_funcname( 1841 N_("E725: Calling dict function without Dictionary: %s"), 1842 name); 1843 break; 1844 } 1845 } 1846 1847 /* 1848 * Call a function with its resolved parameters 1849 * 1850 * Return FAIL when the function can't be called, OK otherwise. 1851 * Also returns OK when an error was encountered while executing the function. 1852 */ 1853 int 1854 call_func( 1855 char_u *funcname, // name of the function 1856 int len, // length of "name" or -1 to use strlen() 1857 typval_T *rettv, // return value goes here 1858 int argcount_in, // number of "argvars" 1859 typval_T *argvars_in, // vars for arguments, must have "argcount" 1860 // PLUS ONE elements! 1861 funcexe_T *funcexe) // more arguments 1862 { 1863 int ret = FAIL; 1864 int error = FCERR_NONE; 1865 int i; 1866 ufunc_T *fp = NULL; 1867 char_u fname_buf[FLEN_FIXED + 1]; 1868 char_u *tofree = NULL; 1869 char_u *fname = NULL; 1870 char_u *name = NULL; 1871 int argcount = argcount_in; 1872 typval_T *argvars = argvars_in; 1873 dict_T *selfdict = funcexe->selfdict; 1874 typval_T argv[MAX_FUNC_ARGS + 1]; // used when "partial" or 1875 // "funcexe->basetv" is not NULL 1876 int argv_clear = 0; 1877 int argv_base = 0; 1878 partial_T *partial = funcexe->partial; 1879 1880 // Initialize rettv so that it is safe for caller to invoke clear_tv(rettv) 1881 // even when call_func() returns FAIL. 1882 rettv->v_type = VAR_UNKNOWN; 1883 1884 if (partial != NULL) 1885 fp = partial->pt_func; 1886 if (fp == NULL) 1887 { 1888 // Make a copy of the name, if it comes from a funcref variable it 1889 // could be changed or deleted in the called function. 1890 name = len > 0 ? vim_strnsave(funcname, len) : vim_strsave(funcname); 1891 if (name == NULL) 1892 return ret; 1893 1894 fname = fname_trans_sid(name, fname_buf, &tofree, &error); 1895 } 1896 1897 if (funcexe->doesrange != NULL) 1898 *funcexe->doesrange = FALSE; 1899 1900 if (partial != NULL) 1901 { 1902 // When the function has a partial with a dict and there is a dict 1903 // argument, use the dict argument. That is backwards compatible. 1904 // When the dict was bound explicitly use the one from the partial. 1905 if (partial->pt_dict != NULL && (selfdict == NULL || !partial->pt_auto)) 1906 selfdict = partial->pt_dict; 1907 if (error == FCERR_NONE && partial->pt_argc > 0) 1908 { 1909 for (argv_clear = 0; argv_clear < partial->pt_argc; ++argv_clear) 1910 { 1911 if (argv_clear + argcount_in >= MAX_FUNC_ARGS) 1912 { 1913 error = FCERR_TOOMANY; 1914 goto theend; 1915 } 1916 copy_tv(&partial->pt_argv[argv_clear], &argv[argv_clear]); 1917 } 1918 for (i = 0; i < argcount_in; ++i) 1919 argv[i + argv_clear] = argvars_in[i]; 1920 argvars = argv; 1921 argcount = partial->pt_argc + argcount_in; 1922 } 1923 } 1924 1925 if (error == FCERR_NONE && funcexe->evaluate) 1926 { 1927 char_u *rfname = fname; 1928 1929 // Ignore "g:" before a function name. 1930 if (fp == NULL && fname[0] == 'g' && fname[1] == ':') 1931 rfname = fname + 2; 1932 1933 rettv->v_type = VAR_NUMBER; // default rettv is number zero 1934 rettv->vval.v_number = 0; 1935 error = FCERR_UNKNOWN; 1936 1937 if (fp != NULL || !builtin_function(rfname, -1)) 1938 { 1939 /* 1940 * User defined function. 1941 */ 1942 if (fp == NULL) 1943 fp = find_func(rfname, FALSE, NULL); 1944 1945 // Trigger FuncUndefined event, may load the function. 1946 if (fp == NULL 1947 && apply_autocmds(EVENT_FUNCUNDEFINED, 1948 rfname, rfname, TRUE, NULL) 1949 && !aborting()) 1950 { 1951 // executed an autocommand, search for the function again 1952 fp = find_func(rfname, FALSE, NULL); 1953 } 1954 // Try loading a package. 1955 if (fp == NULL && script_autoload(rfname, TRUE) && !aborting()) 1956 { 1957 // loaded a package, search for the function again 1958 fp = find_func(rfname, FALSE, NULL); 1959 } 1960 if (fp == NULL) 1961 { 1962 char_u *p = untrans_function_name(rfname); 1963 1964 // If using Vim9 script try not local to the script. 1965 // TODO: should not do this if the name started with "s:". 1966 if (p != NULL) 1967 fp = find_func(p, FALSE, NULL); 1968 } 1969 1970 if (fp != NULL && (fp->uf_flags & FC_DELETED)) 1971 error = FCERR_DELETED; 1972 else if (fp != NULL) 1973 { 1974 if (funcexe->argv_func != NULL) 1975 // postponed filling in the arguments, do it now 1976 argcount = funcexe->argv_func(argcount, argvars, argv_clear, 1977 fp->uf_args.ga_len); 1978 1979 if (funcexe->basetv != NULL) 1980 { 1981 // Method call: base->Method() 1982 mch_memmove(&argv[1], argvars, sizeof(typval_T) * argcount); 1983 argv[0] = *funcexe->basetv; 1984 argcount++; 1985 argvars = argv; 1986 argv_base = 1; 1987 } 1988 1989 error = call_user_func_check(fp, argcount, argvars, rettv, 1990 funcexe, selfdict); 1991 } 1992 } 1993 else if (funcexe->basetv != NULL) 1994 { 1995 /* 1996 * expr->method(): Find the method name in the table, call its 1997 * implementation with the base as one of the arguments. 1998 */ 1999 error = call_internal_method(fname, argcount, argvars, rettv, 2000 funcexe->basetv); 2001 } 2002 else 2003 { 2004 /* 2005 * Find the function name in the table, call its implementation. 2006 */ 2007 error = call_internal_func(fname, argcount, argvars, rettv); 2008 } 2009 /* 2010 * The function call (or "FuncUndefined" autocommand sequence) might 2011 * have been aborted by an error, an interrupt, or an explicitly thrown 2012 * exception that has not been caught so far. This situation can be 2013 * tested for by calling aborting(). For an error in an internal 2014 * function or for the "E132" error in call_user_func(), however, the 2015 * throw point at which the "force_abort" flag (temporarily reset by 2016 * emsg()) is normally updated has not been reached yet. We need to 2017 * update that flag first to make aborting() reliable. 2018 */ 2019 update_force_abort(); 2020 } 2021 if (error == FCERR_NONE) 2022 ret = OK; 2023 2024 theend: 2025 /* 2026 * Report an error unless the argument evaluation or function call has been 2027 * cancelled due to an aborting error, an interrupt, or an exception. 2028 */ 2029 if (!aborting()) 2030 { 2031 user_func_error(error, (name != NULL) ? name : funcname); 2032 } 2033 2034 // clear the copies made from the partial 2035 while (argv_clear > 0) 2036 clear_tv(&argv[--argv_clear + argv_base]); 2037 2038 vim_free(tofree); 2039 vim_free(name); 2040 2041 return ret; 2042 } 2043 2044 static char_u * 2045 printable_func_name(ufunc_T *fp) 2046 { 2047 return fp->uf_name_exp != NULL ? fp->uf_name_exp : fp->uf_name; 2048 } 2049 2050 /* 2051 * List the head of the function: "function name(arg1, arg2)". 2052 */ 2053 static void 2054 list_func_head(ufunc_T *fp, int indent) 2055 { 2056 int j; 2057 2058 msg_start(); 2059 if (indent) 2060 msg_puts(" "); 2061 if (fp->uf_dfunc_idx != UF_NOT_COMPILED) 2062 msg_puts("def "); 2063 else 2064 msg_puts("function "); 2065 msg_puts((char *)printable_func_name(fp)); 2066 msg_putchar('('); 2067 for (j = 0; j < fp->uf_args.ga_len; ++j) 2068 { 2069 if (j) 2070 msg_puts(", "); 2071 msg_puts((char *)FUNCARG(fp, j)); 2072 if (fp->uf_arg_types != NULL) 2073 { 2074 char *tofree; 2075 2076 msg_puts(": "); 2077 msg_puts(type_name(fp->uf_arg_types[j], &tofree)); 2078 vim_free(tofree); 2079 } 2080 if (j >= fp->uf_args.ga_len - fp->uf_def_args.ga_len) 2081 { 2082 msg_puts(" = "); 2083 msg_puts(((char **)(fp->uf_def_args.ga_data)) 2084 [j - fp->uf_args.ga_len + fp->uf_def_args.ga_len]); 2085 } 2086 } 2087 if (fp->uf_varargs) 2088 { 2089 if (j) 2090 msg_puts(", "); 2091 msg_puts("..."); 2092 } 2093 if (fp->uf_va_name != NULL) 2094 { 2095 if (j) 2096 msg_puts(", "); 2097 msg_puts("..."); 2098 msg_puts((char *)fp->uf_va_name); 2099 if (fp->uf_va_type) 2100 { 2101 char *tofree; 2102 2103 msg_puts(": "); 2104 msg_puts(type_name(fp->uf_va_type, &tofree)); 2105 vim_free(tofree); 2106 } 2107 } 2108 msg_putchar(')'); 2109 2110 if (fp->uf_dfunc_idx != UF_NOT_COMPILED) 2111 { 2112 if (fp->uf_ret_type != &t_void) 2113 { 2114 char *tofree; 2115 2116 msg_puts(": "); 2117 msg_puts(type_name(fp->uf_ret_type, &tofree)); 2118 vim_free(tofree); 2119 } 2120 } 2121 else if (fp->uf_flags & FC_ABORT) 2122 msg_puts(" abort"); 2123 if (fp->uf_flags & FC_RANGE) 2124 msg_puts(" range"); 2125 if (fp->uf_flags & FC_DICT) 2126 msg_puts(" dict"); 2127 if (fp->uf_flags & FC_CLOSURE) 2128 msg_puts(" closure"); 2129 msg_clr_eos(); 2130 if (p_verbose > 0) 2131 last_set_msg(fp->uf_script_ctx); 2132 } 2133 2134 /* 2135 * Get a function name, translating "<SID>" and "<SNR>". 2136 * Also handles a Funcref in a List or Dictionary. 2137 * Returns the function name in allocated memory, or NULL for failure. 2138 * Set "*is_global" to TRUE when the function must be global, unless 2139 * "is_global" is NULL. 2140 * flags: 2141 * TFN_INT: internal function name OK 2142 * TFN_QUIET: be quiet 2143 * TFN_NO_AUTOLOAD: do not use script autoloading 2144 * TFN_NO_DEREF: do not dereference a Funcref 2145 * Advances "pp" to just after the function name (if no error). 2146 */ 2147 char_u * 2148 trans_function_name( 2149 char_u **pp, 2150 int *is_global, 2151 int skip, // only find the end, don't evaluate 2152 int flags, 2153 funcdict_T *fdp, // return: info about dictionary used 2154 partial_T **partial) // return: partial of a FuncRef 2155 { 2156 char_u *name = NULL; 2157 char_u *start; 2158 char_u *end; 2159 int lead; 2160 char_u sid_buf[20]; 2161 int len; 2162 int extra = 0; 2163 lval_T lv; 2164 int vim9script; 2165 2166 if (fdp != NULL) 2167 CLEAR_POINTER(fdp); 2168 start = *pp; 2169 2170 // Check for hard coded <SNR>: already translated function ID (from a user 2171 // command). 2172 if ((*pp)[0] == K_SPECIAL && (*pp)[1] == KS_EXTRA 2173 && (*pp)[2] == (int)KE_SNR) 2174 { 2175 *pp += 3; 2176 len = get_id_len(pp) + 3; 2177 return vim_strnsave(start, len); 2178 } 2179 2180 // A name starting with "<SID>" or "<SNR>" is local to a script. But 2181 // don't skip over "s:", get_lval() needs it for "s:dict.func". 2182 lead = eval_fname_script(start); 2183 if (lead > 2) 2184 start += lead; 2185 2186 // Note that TFN_ flags use the same values as GLV_ flags. 2187 end = get_lval(start, NULL, &lv, FALSE, skip, flags | GLV_READ_ONLY, 2188 lead > 2 ? 0 : FNE_CHECK_START); 2189 if (end == start) 2190 { 2191 if (!skip) 2192 emsg(_("E129: Function name required")); 2193 goto theend; 2194 } 2195 if (end == NULL || (lv.ll_tv != NULL && (lead > 2 || lv.ll_range))) 2196 { 2197 /* 2198 * Report an invalid expression in braces, unless the expression 2199 * evaluation has been cancelled due to an aborting error, an 2200 * interrupt, or an exception. 2201 */ 2202 if (!aborting()) 2203 { 2204 if (end != NULL) 2205 semsg(_(e_invarg2), start); 2206 } 2207 else 2208 *pp = find_name_end(start, NULL, NULL, FNE_INCL_BR); 2209 goto theend; 2210 } 2211 2212 if (lv.ll_tv != NULL) 2213 { 2214 if (fdp != NULL) 2215 { 2216 fdp->fd_dict = lv.ll_dict; 2217 fdp->fd_newkey = lv.ll_newkey; 2218 lv.ll_newkey = NULL; 2219 fdp->fd_di = lv.ll_di; 2220 } 2221 if (lv.ll_tv->v_type == VAR_FUNC && lv.ll_tv->vval.v_string != NULL) 2222 { 2223 name = vim_strsave(lv.ll_tv->vval.v_string); 2224 *pp = end; 2225 } 2226 else if (lv.ll_tv->v_type == VAR_PARTIAL 2227 && lv.ll_tv->vval.v_partial != NULL) 2228 { 2229 name = vim_strsave(partial_name(lv.ll_tv->vval.v_partial)); 2230 *pp = end; 2231 if (partial != NULL) 2232 *partial = lv.ll_tv->vval.v_partial; 2233 } 2234 else 2235 { 2236 if (!skip && !(flags & TFN_QUIET) && (fdp == NULL 2237 || lv.ll_dict == NULL || fdp->fd_newkey == NULL)) 2238 emsg(_(e_funcref)); 2239 else 2240 *pp = end; 2241 name = NULL; 2242 } 2243 goto theend; 2244 } 2245 2246 if (lv.ll_name == NULL) 2247 { 2248 // Error found, but continue after the function name. 2249 *pp = end; 2250 goto theend; 2251 } 2252 2253 // Check if the name is a Funcref. If so, use the value. 2254 if (lv.ll_exp_name != NULL) 2255 { 2256 len = (int)STRLEN(lv.ll_exp_name); 2257 name = deref_func_name(lv.ll_exp_name, &len, partial, 2258 flags & TFN_NO_AUTOLOAD); 2259 if (name == lv.ll_exp_name) 2260 name = NULL; 2261 } 2262 else if (!(flags & TFN_NO_DEREF)) 2263 { 2264 len = (int)(end - *pp); 2265 name = deref_func_name(*pp, &len, partial, flags & TFN_NO_AUTOLOAD); 2266 if (name == *pp) 2267 name = NULL; 2268 } 2269 if (name != NULL) 2270 { 2271 name = vim_strsave(name); 2272 *pp = end; 2273 if (STRNCMP(name, "<SNR>", 5) == 0) 2274 { 2275 // Change "<SNR>" to the byte sequence. 2276 name[0] = K_SPECIAL; 2277 name[1] = KS_EXTRA; 2278 name[2] = (int)KE_SNR; 2279 mch_memmove(name + 3, name + 5, STRLEN(name + 5) + 1); 2280 } 2281 goto theend; 2282 } 2283 2284 if (lv.ll_exp_name != NULL) 2285 { 2286 len = (int)STRLEN(lv.ll_exp_name); 2287 if (lead <= 2 && lv.ll_name == lv.ll_exp_name 2288 && STRNCMP(lv.ll_name, "s:", 2) == 0) 2289 { 2290 // When there was "s:" already or the name expanded to get a 2291 // leading "s:" then remove it. 2292 lv.ll_name += 2; 2293 len -= 2; 2294 lead = 2; 2295 } 2296 } 2297 else 2298 { 2299 // skip over "s:" and "g:" 2300 if (lead == 2 || (lv.ll_name[0] == 'g' && lv.ll_name[1] == ':')) 2301 { 2302 if (is_global != NULL && lv.ll_name[0] == 'g') 2303 *is_global = TRUE; 2304 lv.ll_name += 2; 2305 } 2306 len = (int)(end - lv.ll_name); 2307 } 2308 2309 // In Vim9 script a user function is script-local by default. 2310 vim9script = ASCII_ISUPPER(*start) 2311 && current_sctx.sc_version == SCRIPT_VERSION_VIM9; 2312 2313 /* 2314 * Copy the function name to allocated memory. 2315 * Accept <SID>name() inside a script, translate into <SNR>123_name(). 2316 * Accept <SNR>123_name() outside a script. 2317 */ 2318 if (skip) 2319 lead = 0; // do nothing 2320 else if (lead > 0 || vim9script) 2321 { 2322 if (!vim9script) 2323 lead = 3; 2324 if (vim9script || (lv.ll_exp_name != NULL 2325 && eval_fname_sid(lv.ll_exp_name)) 2326 || eval_fname_sid(*pp)) 2327 { 2328 // It's script-local, "s:" or "<SID>" 2329 if (current_sctx.sc_sid <= 0) 2330 { 2331 emsg(_(e_usingsid)); 2332 goto theend; 2333 } 2334 sprintf((char *)sid_buf, "%ld_", (long)current_sctx.sc_sid); 2335 if (vim9script) 2336 extra = 3 + (int)STRLEN(sid_buf); 2337 else 2338 lead += (int)STRLEN(sid_buf); 2339 } 2340 } 2341 else if (!(flags & TFN_INT) && builtin_function(lv.ll_name, len)) 2342 { 2343 semsg(_("E128: Function name must start with a capital or \"s:\": %s"), 2344 start); 2345 goto theend; 2346 } 2347 if (!skip && !(flags & TFN_QUIET) && !(flags & TFN_NO_DEREF)) 2348 { 2349 char_u *cp = vim_strchr(lv.ll_name, ':'); 2350 2351 if (cp != NULL && cp < end) 2352 { 2353 semsg(_("E884: Function name cannot contain a colon: %s"), start); 2354 goto theend; 2355 } 2356 } 2357 2358 name = alloc(len + lead + extra + 1); 2359 if (name != NULL) 2360 { 2361 if (!skip && (lead > 0 || vim9script)) 2362 { 2363 name[0] = K_SPECIAL; 2364 name[1] = KS_EXTRA; 2365 name[2] = (int)KE_SNR; 2366 if (vim9script || lead > 3) // If it's "<SID>" 2367 STRCPY(name + 3, sid_buf); 2368 } 2369 mch_memmove(name + lead + extra, lv.ll_name, (size_t)len); 2370 name[lead + extra + len] = NUL; 2371 } 2372 *pp = end; 2373 2374 theend: 2375 clear_lval(&lv); 2376 return name; 2377 } 2378 2379 /* 2380 * Assuming "name" is the result of trans_function_name() and it was prefixed 2381 * to use the script-local name, return the unmodified name (points into 2382 * "name"). Otherwise return NULL. 2383 * This can be used to first search for a script-local function and fall back 2384 * to the global function if not found. 2385 */ 2386 char_u * 2387 untrans_function_name(char_u *name) 2388 { 2389 char_u *p; 2390 2391 if (*name == K_SPECIAL && current_sctx.sc_version == SCRIPT_VERSION_VIM9) 2392 { 2393 p = vim_strchr(name, '_'); 2394 if (p != NULL) 2395 return p + 1; 2396 } 2397 return NULL; 2398 } 2399 2400 /* 2401 * List functions. When "regmatch" is NULL all of then. 2402 * Otherwise functions matching "regmatch". 2403 */ 2404 static void 2405 list_functions(regmatch_T *regmatch) 2406 { 2407 long_u used = func_hashtab.ht_used; 2408 long_u todo = used; 2409 hashitem_T *ht_array = func_hashtab.ht_array; 2410 hashitem_T *hi; 2411 2412 for (hi = ht_array; todo > 0 && !got_int; ++hi) 2413 { 2414 if (!HASHITEM_EMPTY(hi)) 2415 { 2416 ufunc_T *fp = HI2UF(hi); 2417 2418 --todo; 2419 if ((fp->uf_flags & FC_DEAD) == 0 2420 && (regmatch == NULL 2421 ? !message_filtered(fp->uf_name) 2422 && !func_name_refcount(fp->uf_name) 2423 : !isdigit(*fp->uf_name) 2424 && vim_regexec(regmatch, fp->uf_name, 0))) 2425 { 2426 list_func_head(fp, FALSE); 2427 if (used != func_hashtab.ht_used 2428 || ht_array != func_hashtab.ht_array) 2429 { 2430 emsg(_("E454: function list was modified")); 2431 return; 2432 } 2433 } 2434 } 2435 } 2436 } 2437 2438 /* 2439 * ":function" also supporting nested ":def". 2440 * Returns a pointer to the function or NULL if no function defined. 2441 */ 2442 ufunc_T * 2443 def_function(exarg_T *eap, char_u *name_arg) 2444 { 2445 char_u *theline; 2446 char_u *line_to_free = NULL; 2447 int j; 2448 int c; 2449 int saved_did_emsg; 2450 int saved_wait_return = need_wait_return; 2451 char_u *name = name_arg; 2452 int is_global = FALSE; 2453 char_u *p; 2454 char_u *arg; 2455 char_u *line_arg = NULL; 2456 garray_T newargs; 2457 garray_T argtypes; 2458 garray_T default_args; 2459 garray_T newlines; 2460 int varargs = FALSE; 2461 int flags = 0; 2462 char_u *ret_type = NULL; 2463 ufunc_T *fp = NULL; 2464 int overwrite = FALSE; 2465 int indent; 2466 int nesting; 2467 #define MAX_FUNC_NESTING 50 2468 char nesting_def[MAX_FUNC_NESTING]; 2469 dictitem_T *v; 2470 funcdict_T fudi; 2471 static int func_nr = 0; // number for nameless function 2472 int paren; 2473 hashitem_T *hi; 2474 int do_concat = TRUE; 2475 linenr_T sourcing_lnum_off; 2476 linenr_T sourcing_lnum_top; 2477 int is_heredoc = FALSE; 2478 char_u *skip_until = NULL; 2479 char_u *heredoc_trimmed = NULL; 2480 2481 if (in_vim9script() && eap->forceit) 2482 { 2483 emsg(_(e_nobang)); 2484 return NULL; 2485 } 2486 2487 /* 2488 * ":function" without argument: list functions. 2489 */ 2490 if (ends_excmd2(eap->cmd, eap->arg)) 2491 { 2492 if (!eap->skip) 2493 list_functions(NULL); 2494 eap->nextcmd = check_nextcmd(eap->arg); 2495 return NULL; 2496 } 2497 2498 /* 2499 * ":function /pat": list functions matching pattern. 2500 */ 2501 if (*eap->arg == '/') 2502 { 2503 p = skip_regexp(eap->arg + 1, '/', TRUE); 2504 if (!eap->skip) 2505 { 2506 regmatch_T regmatch; 2507 2508 c = *p; 2509 *p = NUL; 2510 regmatch.regprog = vim_regcomp(eap->arg + 1, RE_MAGIC); 2511 *p = c; 2512 if (regmatch.regprog != NULL) 2513 { 2514 regmatch.rm_ic = p_ic; 2515 list_functions(®match); 2516 vim_regfree(regmatch.regprog); 2517 } 2518 } 2519 if (*p == '/') 2520 ++p; 2521 eap->nextcmd = check_nextcmd(p); 2522 return NULL; 2523 } 2524 2525 ga_init(&newargs); 2526 ga_init(&argtypes); 2527 ga_init(&default_args); 2528 2529 /* 2530 * Get the function name. There are these situations: 2531 * func normal function name 2532 * "name" == func, "fudi.fd_dict" == NULL 2533 * dict.func new dictionary entry 2534 * "name" == NULL, "fudi.fd_dict" set, 2535 * "fudi.fd_di" == NULL, "fudi.fd_newkey" == func 2536 * dict.func existing dict entry with a Funcref 2537 * "name" == func, "fudi.fd_dict" set, 2538 * "fudi.fd_di" set, "fudi.fd_newkey" == NULL 2539 * dict.func existing dict entry that's not a Funcref 2540 * "name" == NULL, "fudi.fd_dict" set, 2541 * "fudi.fd_di" set, "fudi.fd_newkey" == NULL 2542 * s:func script-local function name 2543 * g:func global function name, same as "func" 2544 */ 2545 p = eap->arg; 2546 if (name_arg != NULL) 2547 { 2548 // nested function, argument is (args). 2549 paren = TRUE; 2550 CLEAR_FIELD(fudi); 2551 } 2552 else 2553 { 2554 name = trans_function_name(&p, &is_global, eap->skip, 2555 TFN_NO_AUTOLOAD, &fudi, NULL); 2556 paren = (vim_strchr(p, '(') != NULL); 2557 if (name == NULL && (fudi.fd_dict == NULL || !paren) && !eap->skip) 2558 { 2559 /* 2560 * Return on an invalid expression in braces, unless the expression 2561 * evaluation has been cancelled due to an aborting error, an 2562 * interrupt, or an exception. 2563 */ 2564 if (!aborting()) 2565 { 2566 if (!eap->skip && fudi.fd_newkey != NULL) 2567 semsg(_(e_dictkey), fudi.fd_newkey); 2568 vim_free(fudi.fd_newkey); 2569 return NULL; 2570 } 2571 else 2572 eap->skip = TRUE; 2573 } 2574 } 2575 2576 // An error in a function call during evaluation of an expression in magic 2577 // braces should not cause the function not to be defined. 2578 saved_did_emsg = did_emsg; 2579 did_emsg = FALSE; 2580 2581 /* 2582 * ":function func" with only function name: list function. 2583 */ 2584 if (!paren) 2585 { 2586 if (!ends_excmd(*skipwhite(p))) 2587 { 2588 emsg(_(e_trailing)); 2589 goto ret_free; 2590 } 2591 eap->nextcmd = check_nextcmd(p); 2592 if (eap->nextcmd != NULL) 2593 *p = NUL; 2594 if (!eap->skip && !got_int) 2595 { 2596 fp = find_func(name, is_global, NULL); 2597 if (fp == NULL && ASCII_ISUPPER(*eap->arg)) 2598 { 2599 char_u *up = untrans_function_name(name); 2600 2601 // With Vim9 script the name was made script-local, if not 2602 // found try again with the original name. 2603 if (up != NULL) 2604 fp = find_func(up, FALSE, NULL); 2605 } 2606 2607 if (fp != NULL) 2608 { 2609 list_func_head(fp, TRUE); 2610 for (j = 0; j < fp->uf_lines.ga_len && !got_int; ++j) 2611 { 2612 if (FUNCLINE(fp, j) == NULL) 2613 continue; 2614 msg_putchar('\n'); 2615 msg_outnum((long)(j + 1)); 2616 if (j < 9) 2617 msg_putchar(' '); 2618 if (j < 99) 2619 msg_putchar(' '); 2620 msg_prt_line(FUNCLINE(fp, j), FALSE); 2621 out_flush(); // show a line at a time 2622 ui_breakcheck(); 2623 } 2624 if (!got_int) 2625 { 2626 msg_putchar('\n'); 2627 if (fp->uf_dfunc_idx != UF_NOT_COMPILED) 2628 msg_puts(" enddef"); 2629 else 2630 msg_puts(" endfunction"); 2631 } 2632 } 2633 else 2634 emsg_funcname(N_("E123: Undefined function: %s"), eap->arg); 2635 } 2636 goto ret_free; 2637 } 2638 2639 /* 2640 * ":function name(arg1, arg2)" Define function. 2641 */ 2642 p = skipwhite(p); 2643 if (*p != '(') 2644 { 2645 if (!eap->skip) 2646 { 2647 semsg(_("E124: Missing '(': %s"), eap->arg); 2648 goto ret_free; 2649 } 2650 // attempt to continue by skipping some text 2651 if (vim_strchr(p, '(') != NULL) 2652 p = vim_strchr(p, '('); 2653 } 2654 p = skipwhite(p + 1); 2655 2656 ga_init2(&newlines, (int)sizeof(char_u *), 3); 2657 2658 if (!eap->skip && name_arg == NULL) 2659 { 2660 // Check the name of the function. Unless it's a dictionary function 2661 // (that we are overwriting). 2662 if (name != NULL) 2663 arg = name; 2664 else 2665 arg = fudi.fd_newkey; 2666 if (arg != NULL && (fudi.fd_di == NULL 2667 || (fudi.fd_di->di_tv.v_type != VAR_FUNC 2668 && fudi.fd_di->di_tv.v_type != VAR_PARTIAL))) 2669 { 2670 if (*arg == K_SPECIAL) 2671 j = 3; 2672 else 2673 j = 0; 2674 while (arg[j] != NUL && (j == 0 ? eval_isnamec1(arg[j]) 2675 : eval_isnamec(arg[j]))) 2676 ++j; 2677 if (arg[j] != NUL) 2678 emsg_funcname((char *)e_invarg2, arg); 2679 } 2680 // Disallow using the g: dict. 2681 if (fudi.fd_dict != NULL && fudi.fd_dict->dv_scope == VAR_DEF_SCOPE) 2682 emsg(_("E862: Cannot use g: here")); 2683 } 2684 2685 // This may get more lines and make the pointers into the first line 2686 // invalid. 2687 if (get_function_args(&p, ')', &newargs, 2688 eap->cmdidx == CMD_def ? &argtypes : NULL, 2689 &varargs, &default_args, eap->skip, 2690 eap, &line_to_free) == FAIL) 2691 goto errret_2; 2692 2693 if (eap->cmdidx == CMD_def) 2694 { 2695 // find the return type: :def Func(): type 2696 if (*p == ':') 2697 { 2698 ret_type = skipwhite(p + 1); 2699 p = skip_type(ret_type); 2700 if (p > ret_type) 2701 { 2702 ret_type = vim_strnsave(ret_type, p - ret_type); 2703 p = skipwhite(p); 2704 } 2705 else 2706 { 2707 semsg(_("E1056: expected a type: %s"), ret_type); 2708 ret_type = NULL; 2709 } 2710 } 2711 } 2712 else 2713 // find extra arguments "range", "dict", "abort" and "closure" 2714 for (;;) 2715 { 2716 p = skipwhite(p); 2717 if (STRNCMP(p, "range", 5) == 0) 2718 { 2719 flags |= FC_RANGE; 2720 p += 5; 2721 } 2722 else if (STRNCMP(p, "dict", 4) == 0) 2723 { 2724 flags |= FC_DICT; 2725 p += 4; 2726 } 2727 else if (STRNCMP(p, "abort", 5) == 0) 2728 { 2729 flags |= FC_ABORT; 2730 p += 5; 2731 } 2732 else if (STRNCMP(p, "closure", 7) == 0) 2733 { 2734 flags |= FC_CLOSURE; 2735 p += 7; 2736 if (current_funccal == NULL) 2737 { 2738 emsg_funcname(N_("E932: Closure function should not be at top level: %s"), 2739 name == NULL ? (char_u *)"" : name); 2740 goto erret; 2741 } 2742 } 2743 else 2744 break; 2745 } 2746 2747 // When there is a line break use what follows for the function body. 2748 // Makes 'exe "func Test()\n...\nendfunc"' work. 2749 if (*p == '\n') 2750 line_arg = p + 1; 2751 else if (*p != NUL && *p != '"' && !(eap->cmdidx == CMD_def && *p == '#') 2752 && !eap->skip && !did_emsg) 2753 emsg(_(e_trailing)); 2754 2755 /* 2756 * Read the body of the function, until "}", ":endfunction" or ":enddef" is 2757 * found. 2758 */ 2759 if (KeyTyped) 2760 { 2761 // Check if the function already exists, don't let the user type the 2762 // whole function before telling him it doesn't work! For a script we 2763 // need to skip the body to be able to find what follows. 2764 if (!eap->skip && !eap->forceit) 2765 { 2766 if (fudi.fd_dict != NULL && fudi.fd_newkey == NULL) 2767 emsg(_(e_funcdict)); 2768 else if (name != NULL && find_func(name, is_global, NULL) != NULL) 2769 emsg_funcname(e_funcexts, name); 2770 } 2771 2772 if (!eap->skip && did_emsg) 2773 goto erret; 2774 2775 msg_putchar('\n'); // don't overwrite the function name 2776 cmdline_row = msg_row; 2777 } 2778 2779 // Save the starting line number. 2780 sourcing_lnum_top = SOURCING_LNUM; 2781 2782 indent = 2; 2783 nesting = 0; 2784 nesting_def[nesting] = (eap->cmdidx == CMD_def); 2785 for (;;) 2786 { 2787 if (KeyTyped) 2788 { 2789 msg_scroll = TRUE; 2790 saved_wait_return = FALSE; 2791 } 2792 need_wait_return = FALSE; 2793 2794 if (line_arg != NULL) 2795 { 2796 // Use eap->arg, split up in parts by line breaks. 2797 theline = line_arg; 2798 p = vim_strchr(theline, '\n'); 2799 if (p == NULL) 2800 line_arg += STRLEN(line_arg); 2801 else 2802 { 2803 *p = NUL; 2804 line_arg = p + 1; 2805 } 2806 } 2807 else 2808 { 2809 vim_free(line_to_free); 2810 if (eap->getline == NULL) 2811 theline = getcmdline(':', 0L, indent, do_concat); 2812 else 2813 theline = eap->getline(':', eap->cookie, indent, do_concat); 2814 line_to_free = theline; 2815 } 2816 if (KeyTyped) 2817 lines_left = Rows - 1; 2818 if (theline == NULL) 2819 { 2820 if (eap->cmdidx == CMD_def) 2821 emsg(_("E1057: Missing :enddef")); 2822 else 2823 emsg(_("E126: Missing :endfunction")); 2824 goto erret; 2825 } 2826 2827 // Detect line continuation: SOURCING_LNUM increased more than one. 2828 sourcing_lnum_off = get_sourced_lnum(eap->getline, eap->cookie); 2829 if (SOURCING_LNUM < sourcing_lnum_off) 2830 sourcing_lnum_off -= SOURCING_LNUM; 2831 else 2832 sourcing_lnum_off = 0; 2833 2834 if (skip_until != NULL) 2835 { 2836 // Don't check for ":endfunc"/":enddef" between 2837 // * ":append" and "." 2838 // * ":python <<EOF" and "EOF" 2839 // * ":let {var-name} =<< [trim] {marker}" and "{marker}" 2840 if (heredoc_trimmed == NULL 2841 || (is_heredoc && skipwhite(theline) == theline) 2842 || STRNCMP(theline, heredoc_trimmed, 2843 STRLEN(heredoc_trimmed)) == 0) 2844 { 2845 if (heredoc_trimmed == NULL) 2846 p = theline; 2847 else if (is_heredoc) 2848 p = skipwhite(theline) == theline 2849 ? theline : theline + STRLEN(heredoc_trimmed); 2850 else 2851 p = theline + STRLEN(heredoc_trimmed); 2852 if (STRCMP(p, skip_until) == 0) 2853 { 2854 VIM_CLEAR(skip_until); 2855 VIM_CLEAR(heredoc_trimmed); 2856 do_concat = TRUE; 2857 is_heredoc = FALSE; 2858 } 2859 } 2860 } 2861 else 2862 { 2863 // skip ':' and blanks 2864 for (p = theline; VIM_ISWHITE(*p) || *p == ':'; ++p) 2865 ; 2866 2867 // Check for "endfunction" or "enddef". 2868 if (checkforcmd(&p, nesting_def[nesting] 2869 ? "enddef" : "endfunction", 4) && nesting-- == 0) 2870 { 2871 char_u *nextcmd = NULL; 2872 2873 if (*p == '|') 2874 nextcmd = p + 1; 2875 else if (line_arg != NULL && *skipwhite(line_arg) != NUL) 2876 nextcmd = line_arg; 2877 else if (*p != NUL && *p != '"' && p_verbose > 0) 2878 give_warning2(eap->cmdidx == CMD_def 2879 ? (char_u *)_("W1001: Text found after :enddef: %s") 2880 : (char_u *)_("W22: Text found after :endfunction: %s"), 2881 p, TRUE); 2882 if (nextcmd != NULL) 2883 { 2884 // Another command follows. If the line came from "eap" we 2885 // can simply point into it, otherwise we need to change 2886 // "eap->cmdlinep". 2887 eap->nextcmd = nextcmd; 2888 if (line_to_free != NULL) 2889 { 2890 vim_free(*eap->cmdlinep); 2891 *eap->cmdlinep = line_to_free; 2892 line_to_free = NULL; 2893 } 2894 } 2895 break; 2896 } 2897 2898 // Increase indent inside "if", "while", "for" and "try", decrease 2899 // at "end". 2900 if (indent > 2 && (*p == '}' || STRNCMP(p, "end", 3) == 0)) 2901 indent -= 2; 2902 else if (STRNCMP(p, "if", 2) == 0 2903 || STRNCMP(p, "wh", 2) == 0 2904 || STRNCMP(p, "for", 3) == 0 2905 || STRNCMP(p, "try", 3) == 0) 2906 indent += 2; 2907 2908 // Check for defining a function inside this function. 2909 // Only recognize "def" inside "def", not inside "function", 2910 // For backwards compatibility, see Test_function_python(). 2911 c = *p; 2912 if (checkforcmd(&p, "function", 2) 2913 || (eap->cmdidx == CMD_def && checkforcmd(&p, "def", 3))) 2914 { 2915 if (*p == '!') 2916 p = skipwhite(p + 1); 2917 p += eval_fname_script(p); 2918 vim_free(trans_function_name(&p, NULL, TRUE, 0, NULL, NULL)); 2919 if (*skipwhite(p) == '(') 2920 { 2921 if (nesting == MAX_FUNC_NESTING - 1) 2922 emsg(_("E1058: function nesting too deep")); 2923 else 2924 { 2925 ++nesting; 2926 nesting_def[nesting] = (c == 'd'); 2927 indent += 2; 2928 } 2929 } 2930 } 2931 2932 // Check for ":append", ":change", ":insert". Not for :def. 2933 p = skip_range(p, NULL); 2934 if (eap->cmdidx != CMD_def 2935 && ((p[0] == 'a' && (!ASCII_ISALPHA(p[1]) || p[1] == 'p')) 2936 || (p[0] == 'c' 2937 && (!ASCII_ISALPHA(p[1]) || (p[1] == 'h' 2938 && (!ASCII_ISALPHA(p[2]) || (p[2] == 'a' 2939 && (STRNCMP(&p[3], "nge", 3) != 0 2940 || !ASCII_ISALPHA(p[6]))))))) 2941 || (p[0] == 'i' 2942 && (!ASCII_ISALPHA(p[1]) || (p[1] == 'n' 2943 && (!ASCII_ISALPHA(p[2]) 2944 || (p[2] == 's' 2945 && (!ASCII_ISALPHA(p[3]) 2946 || p[3] == 'e')))))))) 2947 skip_until = vim_strsave((char_u *)"."); 2948 2949 // Check for ":python <<EOF", ":tcl <<EOF", etc. 2950 arg = skipwhite(skiptowhite(p)); 2951 if (arg[0] == '<' && arg[1] =='<' 2952 && ((p[0] == 'p' && p[1] == 'y' 2953 && (!ASCII_ISALNUM(p[2]) || p[2] == 't' 2954 || ((p[2] == '3' || p[2] == 'x') 2955 && !ASCII_ISALPHA(p[3])))) 2956 || (p[0] == 'p' && p[1] == 'e' 2957 && (!ASCII_ISALPHA(p[2]) || p[2] == 'r')) 2958 || (p[0] == 't' && p[1] == 'c' 2959 && (!ASCII_ISALPHA(p[2]) || p[2] == 'l')) 2960 || (p[0] == 'l' && p[1] == 'u' && p[2] == 'a' 2961 && !ASCII_ISALPHA(p[3])) 2962 || (p[0] == 'r' && p[1] == 'u' && p[2] == 'b' 2963 && (!ASCII_ISALPHA(p[3]) || p[3] == 'y')) 2964 || (p[0] == 'm' && p[1] == 'z' 2965 && (!ASCII_ISALPHA(p[2]) || p[2] == 's')) 2966 )) 2967 { 2968 // ":python <<" continues until a dot, like ":append" 2969 p = skipwhite(arg + 2); 2970 if (STRNCMP(p, "trim", 4) == 0) 2971 { 2972 // Ignore leading white space. 2973 p = skipwhite(p + 4); 2974 heredoc_trimmed = vim_strnsave(theline, 2975 skipwhite(theline) - theline); 2976 } 2977 if (*p == NUL) 2978 skip_until = vim_strsave((char_u *)"."); 2979 else 2980 skip_until = vim_strnsave(p, skiptowhite(p) - p); 2981 do_concat = FALSE; 2982 is_heredoc = TRUE; 2983 } 2984 2985 // Check for ":let v =<< [trim] EOF" 2986 // and ":let [a, b] =<< [trim] EOF" 2987 arg = skipwhite(skiptowhite(p)); 2988 if (*arg == '[') 2989 arg = vim_strchr(arg, ']'); 2990 if (arg != NULL) 2991 { 2992 arg = skipwhite(skiptowhite(arg)); 2993 if ( arg[0] == '=' && arg[1] == '<' && arg[2] =='<' 2994 && ((p[0] == 'l' 2995 && p[1] == 'e' 2996 && (!ASCII_ISALNUM(p[2]) 2997 || (p[2] == 't' && !ASCII_ISALNUM(p[3])))))) 2998 { 2999 p = skipwhite(arg + 3); 3000 if (STRNCMP(p, "trim", 4) == 0) 3001 { 3002 // Ignore leading white space. 3003 p = skipwhite(p + 4); 3004 heredoc_trimmed = vim_strnsave(theline, 3005 skipwhite(theline) - theline); 3006 } 3007 skip_until = vim_strnsave(p, skiptowhite(p) - p); 3008 do_concat = FALSE; 3009 is_heredoc = TRUE; 3010 } 3011 } 3012 } 3013 3014 // Add the line to the function. 3015 if (ga_grow(&newlines, 1 + sourcing_lnum_off) == FAIL) 3016 goto erret; 3017 3018 // Copy the line to newly allocated memory. get_one_sourceline() 3019 // allocates 250 bytes per line, this saves 80% on average. The cost 3020 // is an extra alloc/free. 3021 p = vim_strsave(theline); 3022 if (p == NULL) 3023 goto erret; 3024 ((char_u **)(newlines.ga_data))[newlines.ga_len++] = p; 3025 3026 // Add NULL lines for continuation lines, so that the line count is 3027 // equal to the index in the growarray. 3028 while (sourcing_lnum_off-- > 0) 3029 ((char_u **)(newlines.ga_data))[newlines.ga_len++] = NULL; 3030 3031 // Check for end of eap->arg. 3032 if (line_arg != NULL && *line_arg == NUL) 3033 line_arg = NULL; 3034 } 3035 3036 // Don't define the function when skipping commands or when an error was 3037 // detected. 3038 if (eap->skip || did_emsg) 3039 goto erret; 3040 3041 /* 3042 * If there are no errors, add the function 3043 */ 3044 if (fudi.fd_dict == NULL) 3045 { 3046 hashtab_T *ht; 3047 3048 v = find_var(name, &ht, FALSE); 3049 if (v != NULL && v->di_tv.v_type == VAR_FUNC) 3050 { 3051 emsg_funcname(N_("E707: Function name conflicts with variable: %s"), 3052 name); 3053 goto erret; 3054 } 3055 3056 fp = find_func_even_dead(name, is_global, NULL); 3057 if (fp != NULL) 3058 { 3059 int dead = fp->uf_flags & FC_DEAD; 3060 3061 // Function can be replaced with "function!" and when sourcing the 3062 // same script again, but only once. 3063 if (!dead && !eap->forceit 3064 && (fp->uf_script_ctx.sc_sid != current_sctx.sc_sid 3065 || fp->uf_script_ctx.sc_seq == current_sctx.sc_seq)) 3066 { 3067 emsg_funcname(e_funcexts, name); 3068 goto erret; 3069 } 3070 if (fp->uf_calls > 0) 3071 { 3072 emsg_funcname( 3073 N_("E127: Cannot redefine function %s: It is in use"), 3074 name); 3075 goto erret; 3076 } 3077 if (fp->uf_refcount > 1) 3078 { 3079 // This function is referenced somewhere, don't redefine it but 3080 // create a new one. 3081 --fp->uf_refcount; 3082 fp->uf_flags |= FC_REMOVED; 3083 fp = NULL; 3084 overwrite = TRUE; 3085 } 3086 else 3087 { 3088 char_u *exp_name = fp->uf_name_exp; 3089 3090 // redefine existing function, keep the expanded name 3091 VIM_CLEAR(name); 3092 fp->uf_name_exp = NULL; 3093 func_clear_items(fp); 3094 fp->uf_name_exp = exp_name; 3095 fp->uf_flags &= ~FC_DEAD; 3096 #ifdef FEAT_PROFILE 3097 fp->uf_profiling = FALSE; 3098 fp->uf_prof_initialized = FALSE; 3099 #endif 3100 } 3101 } 3102 } 3103 else 3104 { 3105 char numbuf[20]; 3106 3107 fp = NULL; 3108 if (fudi.fd_newkey == NULL && !eap->forceit) 3109 { 3110 emsg(_(e_funcdict)); 3111 goto erret; 3112 } 3113 if (fudi.fd_di == NULL) 3114 { 3115 // Can't add a function to a locked dictionary 3116 if (var_check_lock(fudi.fd_dict->dv_lock, eap->arg, FALSE)) 3117 goto erret; 3118 } 3119 // Can't change an existing function if it is locked 3120 else if (var_check_lock(fudi.fd_di->di_tv.v_lock, eap->arg, FALSE)) 3121 goto erret; 3122 3123 // Give the function a sequential number. Can only be used with a 3124 // Funcref! 3125 vim_free(name); 3126 sprintf(numbuf, "%d", ++func_nr); 3127 name = vim_strsave((char_u *)numbuf); 3128 if (name == NULL) 3129 goto erret; 3130 } 3131 3132 if (fp == NULL) 3133 { 3134 if (fudi.fd_dict == NULL && vim_strchr(name, AUTOLOAD_CHAR) != NULL) 3135 { 3136 int slen, plen; 3137 char_u *scriptname; 3138 3139 // Check that the autoload name matches the script name. 3140 j = FAIL; 3141 if (SOURCING_NAME != NULL) 3142 { 3143 scriptname = autoload_name(name); 3144 if (scriptname != NULL) 3145 { 3146 p = vim_strchr(scriptname, '/'); 3147 plen = (int)STRLEN(p); 3148 slen = (int)STRLEN(SOURCING_NAME); 3149 if (slen > plen && fnamecmp(p, 3150 SOURCING_NAME + slen - plen) == 0) 3151 j = OK; 3152 vim_free(scriptname); 3153 } 3154 } 3155 if (j == FAIL) 3156 { 3157 semsg(_("E746: Function name does not match script file name: %s"), name); 3158 goto erret; 3159 } 3160 } 3161 3162 fp = alloc_clear(offsetof(ufunc_T, uf_name) + STRLEN(name) + 1); 3163 if (fp == NULL) 3164 goto erret; 3165 fp->uf_dfunc_idx = eap->cmdidx == CMD_def ? UF_TO_BE_COMPILED 3166 : UF_NOT_COMPILED; 3167 3168 if (fudi.fd_dict != NULL) 3169 { 3170 if (fudi.fd_di == NULL) 3171 { 3172 // add new dict entry 3173 fudi.fd_di = dictitem_alloc(fudi.fd_newkey); 3174 if (fudi.fd_di == NULL) 3175 { 3176 vim_free(fp); 3177 fp = NULL; 3178 goto erret; 3179 } 3180 if (dict_add(fudi.fd_dict, fudi.fd_di) == FAIL) 3181 { 3182 vim_free(fudi.fd_di); 3183 vim_free(fp); 3184 fp = NULL; 3185 goto erret; 3186 } 3187 } 3188 else 3189 // overwrite existing dict entry 3190 clear_tv(&fudi.fd_di->di_tv); 3191 fudi.fd_di->di_tv.v_type = VAR_FUNC; 3192 fudi.fd_di->di_tv.vval.v_string = vim_strsave(name); 3193 3194 // behave like "dict" was used 3195 flags |= FC_DICT; 3196 } 3197 3198 // insert the new function in the function list 3199 set_ufunc_name(fp, name); 3200 if (overwrite) 3201 { 3202 hi = hash_find(&func_hashtab, name); 3203 hi->hi_key = UF2HIKEY(fp); 3204 } 3205 else if (hash_add(&func_hashtab, UF2HIKEY(fp)) == FAIL) 3206 { 3207 vim_free(fp); 3208 fp = NULL; 3209 goto erret; 3210 } 3211 fp->uf_refcount = 1; 3212 } 3213 fp->uf_args = newargs; 3214 fp->uf_def_args = default_args; 3215 fp->uf_ret_type = &t_any; 3216 fp->uf_func_type = &t_func_any; 3217 3218 if (eap->cmdidx == CMD_def) 3219 { 3220 int lnum_save = SOURCING_LNUM; 3221 3222 fp->uf_dfunc_idx = UF_TO_BE_COMPILED; 3223 3224 // error messages are for the first function line 3225 SOURCING_LNUM = sourcing_lnum_top; 3226 3227 // parse the argument types 3228 ga_init2(&fp->uf_type_list, sizeof(type_T *), 10); 3229 3230 if (argtypes.ga_len > 0) 3231 { 3232 // When "varargs" is set the last name/type goes into uf_va_name 3233 // and uf_va_type. 3234 int len = argtypes.ga_len - (varargs ? 1 : 0); 3235 3236 if (len > 0) 3237 fp->uf_arg_types = ALLOC_CLEAR_MULT(type_T *, len); 3238 if (fp->uf_arg_types != NULL) 3239 { 3240 int i; 3241 type_T *type; 3242 3243 for (i = 0; i < len; ++ i) 3244 { 3245 p = ((char_u **)argtypes.ga_data)[i]; 3246 if (p == NULL) 3247 // will get the type from the default value 3248 type = &t_unknown; 3249 else 3250 type = parse_type(&p, &fp->uf_type_list); 3251 if (type == NULL) 3252 { 3253 SOURCING_LNUM = lnum_save; 3254 goto errret_2; 3255 } 3256 fp->uf_arg_types[i] = type; 3257 } 3258 } 3259 if (varargs) 3260 { 3261 // Move the last argument "...name: type" to uf_va_name and 3262 // uf_va_type. 3263 fp->uf_va_name = ((char_u **)fp->uf_args.ga_data) 3264 [fp->uf_args.ga_len - 1]; 3265 --fp->uf_args.ga_len; 3266 p = ((char_u **)argtypes.ga_data)[len]; 3267 if (p == NULL) 3268 // todo: get type from default value 3269 fp->uf_va_type = &t_any; 3270 else 3271 fp->uf_va_type = parse_type(&p, &fp->uf_type_list); 3272 if (fp->uf_va_type == NULL) 3273 { 3274 SOURCING_LNUM = lnum_save; 3275 goto errret_2; 3276 } 3277 } 3278 varargs = FALSE; 3279 } 3280 3281 // parse the return type, if any 3282 if (ret_type == NULL) 3283 fp->uf_ret_type = &t_void; 3284 else 3285 { 3286 p = ret_type; 3287 fp->uf_ret_type = parse_type(&p, &fp->uf_type_list); 3288 } 3289 SOURCING_LNUM = lnum_save; 3290 } 3291 else 3292 fp->uf_dfunc_idx = UF_NOT_COMPILED; 3293 3294 fp->uf_lines = newlines; 3295 if ((flags & FC_CLOSURE) != 0) 3296 { 3297 if (register_closure(fp) == FAIL) 3298 goto erret; 3299 } 3300 else 3301 fp->uf_scoped = NULL; 3302 3303 #ifdef FEAT_PROFILE 3304 if (prof_def_func()) 3305 func_do_profile(fp); 3306 #endif 3307 fp->uf_varargs = varargs; 3308 if (sandbox) 3309 flags |= FC_SANDBOX; 3310 if (in_vim9script() && !ASCII_ISUPPER(*fp->uf_name)) 3311 flags |= FC_VIM9; 3312 fp->uf_flags = flags; 3313 fp->uf_calls = 0; 3314 fp->uf_cleared = FALSE; 3315 fp->uf_script_ctx = current_sctx; 3316 fp->uf_script_ctx.sc_lnum += sourcing_lnum_top; 3317 if (is_export) 3318 { 3319 fp->uf_flags |= FC_EXPORT; 3320 // let ex_export() know the export worked. 3321 is_export = FALSE; 3322 } 3323 3324 if (eap->cmdidx == CMD_def) 3325 set_function_type(fp); 3326 3327 goto ret_free; 3328 3329 erret: 3330 ga_clear_strings(&newargs); 3331 ga_clear_strings(&default_args); 3332 errret_2: 3333 ga_clear_strings(&newlines); 3334 ret_free: 3335 ga_clear_strings(&argtypes); 3336 vim_free(skip_until); 3337 vim_free(line_to_free); 3338 vim_free(fudi.fd_newkey); 3339 if (name != name_arg) 3340 vim_free(name); 3341 vim_free(ret_type); 3342 did_emsg |= saved_did_emsg; 3343 need_wait_return |= saved_wait_return; 3344 3345 return fp; 3346 } 3347 3348 /* 3349 * ":function" 3350 */ 3351 void 3352 ex_function(exarg_T *eap) 3353 { 3354 (void)def_function(eap, NULL); 3355 } 3356 3357 /* 3358 * :defcompile - compile all :def functions in the current script. 3359 */ 3360 void 3361 ex_defcompile(exarg_T *eap UNUSED) 3362 { 3363 long_u ht_used = func_hashtab.ht_used; 3364 int todo = (int)ht_used; 3365 hashitem_T *hi; 3366 ufunc_T *ufunc; 3367 3368 for (hi = func_hashtab.ht_array; todo > 0 && !got_int; ++hi) 3369 { 3370 if (!HASHITEM_EMPTY(hi)) 3371 { 3372 --todo; 3373 ufunc = HI2UF(hi); 3374 if (ufunc->uf_script_ctx.sc_sid == current_sctx.sc_sid 3375 && ufunc->uf_dfunc_idx == UF_TO_BE_COMPILED) 3376 { 3377 compile_def_function(ufunc, FALSE, NULL); 3378 3379 if (func_hashtab.ht_used != ht_used) 3380 { 3381 // another function has been defined, need to start over 3382 hi = func_hashtab.ht_array; 3383 ht_used = func_hashtab.ht_used; 3384 todo = (int)ht_used; 3385 --hi; 3386 } 3387 } 3388 } 3389 } 3390 } 3391 3392 /* 3393 * Return 5 if "p" starts with "<SID>" or "<SNR>" (ignoring case). 3394 * Return 2 if "p" starts with "s:". 3395 * Return 0 otherwise. 3396 */ 3397 int 3398 eval_fname_script(char_u *p) 3399 { 3400 // Use MB_STRICMP() because in Turkish comparing the "I" may not work with 3401 // the standard library function. 3402 if (p[0] == '<' && (MB_STRNICMP(p + 1, "SID>", 4) == 0 3403 || MB_STRNICMP(p + 1, "SNR>", 4) == 0)) 3404 return 5; 3405 if (p[0] == 's' && p[1] == ':') 3406 return 2; 3407 return 0; 3408 } 3409 3410 int 3411 translated_function_exists(char_u *name, int is_global) 3412 { 3413 if (builtin_function(name, -1)) 3414 return has_internal_func(name); 3415 return find_func(name, is_global, NULL) != NULL; 3416 } 3417 3418 /* 3419 * Return TRUE when "ufunc" has old-style "..." varargs 3420 * or named varargs "...name: type". 3421 */ 3422 int 3423 has_varargs(ufunc_T *ufunc) 3424 { 3425 return ufunc->uf_varargs || ufunc->uf_va_name != NULL; 3426 } 3427 3428 /* 3429 * Return TRUE if a function "name" exists. 3430 * If "no_defef" is TRUE, do not dereference a Funcref. 3431 */ 3432 int 3433 function_exists(char_u *name, int no_deref) 3434 { 3435 char_u *nm = name; 3436 char_u *p; 3437 int n = FALSE; 3438 int flag; 3439 int is_global = FALSE; 3440 3441 flag = TFN_INT | TFN_QUIET | TFN_NO_AUTOLOAD; 3442 if (no_deref) 3443 flag |= TFN_NO_DEREF; 3444 p = trans_function_name(&nm, &is_global, FALSE, flag, NULL, NULL); 3445 nm = skipwhite(nm); 3446 3447 // Only accept "funcname", "funcname ", "funcname (..." and 3448 // "funcname(...", not "funcname!...". 3449 if (p != NULL && (*nm == NUL || *nm == '(')) 3450 n = translated_function_exists(p, is_global); 3451 vim_free(p); 3452 return n; 3453 } 3454 3455 #if defined(FEAT_PYTHON) || defined(FEAT_PYTHON3) || defined(PROTO) 3456 char_u * 3457 get_expanded_name(char_u *name, int check) 3458 { 3459 char_u *nm = name; 3460 char_u *p; 3461 int is_global = FALSE; 3462 3463 p = trans_function_name(&nm, &is_global, FALSE, 3464 TFN_INT|TFN_QUIET, NULL, NULL); 3465 3466 if (p != NULL && *nm == NUL 3467 && (!check || translated_function_exists(p, is_global))) 3468 return p; 3469 3470 vim_free(p); 3471 return NULL; 3472 } 3473 #endif 3474 3475 /* 3476 * Function given to ExpandGeneric() to obtain the list of user defined 3477 * function names. 3478 */ 3479 char_u * 3480 get_user_func_name(expand_T *xp, int idx) 3481 { 3482 static long_u done; 3483 static hashitem_T *hi; 3484 ufunc_T *fp; 3485 3486 if (idx == 0) 3487 { 3488 done = 0; 3489 hi = func_hashtab.ht_array; 3490 } 3491 if (done < func_hashtab.ht_used) 3492 { 3493 if (done++ > 0) 3494 ++hi; 3495 while (HASHITEM_EMPTY(hi)) 3496 ++hi; 3497 fp = HI2UF(hi); 3498 3499 // don't show dead, dict and lambda functions 3500 if ((fp->uf_flags & FC_DEAD) || (fp->uf_flags & FC_DICT) 3501 || STRNCMP(fp->uf_name, "<lambda>", 8) == 0) 3502 return (char_u *)""; 3503 3504 if (STRLEN(fp->uf_name) + 4 >= IOSIZE) 3505 return fp->uf_name; // prevents overflow 3506 3507 cat_func_name(IObuff, fp); 3508 if (xp->xp_context != EXPAND_USER_FUNC) 3509 { 3510 STRCAT(IObuff, "("); 3511 if (!has_varargs(fp) && fp->uf_args.ga_len == 0) 3512 STRCAT(IObuff, ")"); 3513 } 3514 return IObuff; 3515 } 3516 return NULL; 3517 } 3518 3519 /* 3520 * ":delfunction {name}" 3521 */ 3522 void 3523 ex_delfunction(exarg_T *eap) 3524 { 3525 ufunc_T *fp = NULL; 3526 char_u *p; 3527 char_u *name; 3528 funcdict_T fudi; 3529 int is_global = FALSE; 3530 3531 p = eap->arg; 3532 name = trans_function_name(&p, &is_global, eap->skip, 0, &fudi, NULL); 3533 vim_free(fudi.fd_newkey); 3534 if (name == NULL) 3535 { 3536 if (fudi.fd_dict != NULL && !eap->skip) 3537 emsg(_(e_funcref)); 3538 return; 3539 } 3540 if (!ends_excmd(*skipwhite(p))) 3541 { 3542 vim_free(name); 3543 emsg(_(e_trailing)); 3544 return; 3545 } 3546 eap->nextcmd = check_nextcmd(p); 3547 if (eap->nextcmd != NULL) 3548 *p = NUL; 3549 3550 if (!eap->skip) 3551 fp = find_func(name, is_global, NULL); 3552 vim_free(name); 3553 3554 if (!eap->skip) 3555 { 3556 if (fp == NULL) 3557 { 3558 if (!eap->forceit) 3559 semsg(_(e_nofunc), eap->arg); 3560 return; 3561 } 3562 if (fp->uf_calls > 0) 3563 { 3564 semsg(_("E131: Cannot delete function %s: It is in use"), eap->arg); 3565 return; 3566 } 3567 if (fp->uf_flags & FC_VIM9) 3568 { 3569 semsg(_("E1084: Cannot delete Vim9 script function %s"), eap->arg); 3570 return; 3571 } 3572 3573 if (fudi.fd_dict != NULL) 3574 { 3575 // Delete the dict item that refers to the function, it will 3576 // invoke func_unref() and possibly delete the function. 3577 dictitem_remove(fudi.fd_dict, fudi.fd_di); 3578 } 3579 else 3580 { 3581 // A normal function (not a numbered function or lambda) has a 3582 // refcount of 1 for the entry in the hashtable. When deleting 3583 // it and the refcount is more than one, it should be kept. 3584 // A numbered function and lambda should be kept if the refcount is 3585 // one or more. 3586 if (fp->uf_refcount > (func_name_refcount(fp->uf_name) ? 0 : 1)) 3587 { 3588 // Function is still referenced somewhere. Don't free it but 3589 // do remove it from the hashtable. 3590 if (func_remove(fp)) 3591 fp->uf_refcount--; 3592 fp->uf_flags |= FC_DELETED; 3593 } 3594 else 3595 func_clear_free(fp, FALSE); 3596 } 3597 } 3598 } 3599 3600 /* 3601 * Unreference a Function: decrement the reference count and free it when it 3602 * becomes zero. 3603 */ 3604 void 3605 func_unref(char_u *name) 3606 { 3607 ufunc_T *fp = NULL; 3608 3609 if (name == NULL || !func_name_refcount(name)) 3610 return; 3611 fp = find_func(name, FALSE, NULL); 3612 if (fp == NULL && isdigit(*name)) 3613 { 3614 #ifdef EXITFREE 3615 if (!entered_free_all_mem) 3616 #endif 3617 internal_error("func_unref()"); 3618 } 3619 if (fp != NULL && --fp->uf_refcount <= 0) 3620 { 3621 // Only delete it when it's not being used. Otherwise it's done 3622 // when "uf_calls" becomes zero. 3623 if (fp->uf_calls == 0) 3624 func_clear_free(fp, FALSE); 3625 } 3626 } 3627 3628 /* 3629 * Unreference a Function: decrement the reference count and free it when it 3630 * becomes zero. 3631 */ 3632 void 3633 func_ptr_unref(ufunc_T *fp) 3634 { 3635 if (fp != NULL && --fp->uf_refcount <= 0) 3636 { 3637 // Only delete it when it's not being used. Otherwise it's done 3638 // when "uf_calls" becomes zero. 3639 if (fp->uf_calls == 0) 3640 func_clear_free(fp, FALSE); 3641 } 3642 } 3643 3644 /* 3645 * Count a reference to a Function. 3646 */ 3647 void 3648 func_ref(char_u *name) 3649 { 3650 ufunc_T *fp; 3651 3652 if (name == NULL || !func_name_refcount(name)) 3653 return; 3654 fp = find_func(name, FALSE, NULL); 3655 if (fp != NULL) 3656 ++fp->uf_refcount; 3657 else if (isdigit(*name)) 3658 // Only give an error for a numbered function. 3659 // Fail silently, when named or lambda function isn't found. 3660 internal_error("func_ref()"); 3661 } 3662 3663 /* 3664 * Count a reference to a Function. 3665 */ 3666 void 3667 func_ptr_ref(ufunc_T *fp) 3668 { 3669 if (fp != NULL) 3670 ++fp->uf_refcount; 3671 } 3672 3673 /* 3674 * Return TRUE if items in "fc" do not have "copyID". That means they are not 3675 * referenced from anywhere that is in use. 3676 */ 3677 static int 3678 can_free_funccal(funccall_T *fc, int copyID) 3679 { 3680 return (fc->l_varlist.lv_copyID != copyID 3681 && fc->l_vars.dv_copyID != copyID 3682 && fc->l_avars.dv_copyID != copyID 3683 && fc->fc_copyID != copyID); 3684 } 3685 3686 /* 3687 * ":return [expr]" 3688 */ 3689 void 3690 ex_return(exarg_T *eap) 3691 { 3692 char_u *arg = eap->arg; 3693 typval_T rettv; 3694 int returning = FALSE; 3695 3696 if (current_funccal == NULL) 3697 { 3698 emsg(_("E133: :return not inside a function")); 3699 return; 3700 } 3701 3702 if (eap->skip) 3703 ++emsg_skip; 3704 3705 eap->nextcmd = NULL; 3706 if ((*arg != NUL && *arg != '|' && *arg != '\n') 3707 && eval0(arg, &rettv, &eap->nextcmd, eap->skip ? 0 : EVAL_EVALUATE) 3708 != FAIL) 3709 { 3710 if (!eap->skip) 3711 returning = do_return(eap, FALSE, TRUE, &rettv); 3712 else 3713 clear_tv(&rettv); 3714 } 3715 // It's safer to return also on error. 3716 else if (!eap->skip) 3717 { 3718 // In return statement, cause_abort should be force_abort. 3719 update_force_abort(); 3720 3721 /* 3722 * Return unless the expression evaluation has been cancelled due to an 3723 * aborting error, an interrupt, or an exception. 3724 */ 3725 if (!aborting()) 3726 returning = do_return(eap, FALSE, TRUE, NULL); 3727 } 3728 3729 // When skipping or the return gets pending, advance to the next command 3730 // in this line (!returning). Otherwise, ignore the rest of the line. 3731 // Following lines will be ignored by get_func_line(). 3732 if (returning) 3733 eap->nextcmd = NULL; 3734 else if (eap->nextcmd == NULL) // no argument 3735 eap->nextcmd = check_nextcmd(arg); 3736 3737 if (eap->skip) 3738 --emsg_skip; 3739 } 3740 3741 /* 3742 * ":1,25call func(arg1, arg2)" function call. 3743 */ 3744 void 3745 ex_call(exarg_T *eap) 3746 { 3747 char_u *arg = eap->arg; 3748 char_u *startarg; 3749 char_u *name; 3750 char_u *tofree; 3751 int len; 3752 typval_T rettv; 3753 linenr_T lnum; 3754 int doesrange; 3755 int failed = FALSE; 3756 funcdict_T fudi; 3757 partial_T *partial = NULL; 3758 3759 if (eap->skip) 3760 { 3761 // trans_function_name() doesn't work well when skipping, use eval0() 3762 // instead to skip to any following command, e.g. for: 3763 // :if 0 | call dict.foo().bar() | endif 3764 ++emsg_skip; 3765 if (eval0(eap->arg, &rettv, &eap->nextcmd, 0) != FAIL) 3766 clear_tv(&rettv); 3767 --emsg_skip; 3768 return; 3769 } 3770 3771 tofree = trans_function_name(&arg, NULL, eap->skip, 3772 TFN_INT, &fudi, &partial); 3773 if (fudi.fd_newkey != NULL) 3774 { 3775 // Still need to give an error message for missing key. 3776 semsg(_(e_dictkey), fudi.fd_newkey); 3777 vim_free(fudi.fd_newkey); 3778 } 3779 if (tofree == NULL) 3780 return; 3781 3782 // Increase refcount on dictionary, it could get deleted when evaluating 3783 // the arguments. 3784 if (fudi.fd_dict != NULL) 3785 ++fudi.fd_dict->dv_refcount; 3786 3787 // If it is the name of a variable of type VAR_FUNC or VAR_PARTIAL use its 3788 // contents. For VAR_PARTIAL get its partial, unless we already have one 3789 // from trans_function_name(). 3790 len = (int)STRLEN(tofree); 3791 name = deref_func_name(tofree, &len, 3792 partial != NULL ? NULL : &partial, FALSE); 3793 3794 // Skip white space to allow ":call func ()". Not good, but required for 3795 // backward compatibility. 3796 startarg = skipwhite(arg); 3797 rettv.v_type = VAR_UNKNOWN; // clear_tv() uses this 3798 3799 if (*startarg != '(') 3800 { 3801 semsg(_(e_missing_paren), eap->arg); 3802 goto end; 3803 } 3804 3805 /* 3806 * When skipping, evaluate the function once, to find the end of the 3807 * arguments. 3808 * When the function takes a range, this is discovered after the first 3809 * call, and the loop is broken. 3810 */ 3811 if (eap->skip) 3812 { 3813 ++emsg_skip; 3814 lnum = eap->line2; // do it once, also with an invalid range 3815 } 3816 else 3817 lnum = eap->line1; 3818 for ( ; lnum <= eap->line2; ++lnum) 3819 { 3820 funcexe_T funcexe; 3821 3822 if (!eap->skip && eap->addr_count > 0) 3823 { 3824 if (lnum > curbuf->b_ml.ml_line_count) 3825 { 3826 // If the function deleted lines or switched to another buffer 3827 // the line number may become invalid. 3828 emsg(_(e_invrange)); 3829 break; 3830 } 3831 curwin->w_cursor.lnum = lnum; 3832 curwin->w_cursor.col = 0; 3833 curwin->w_cursor.coladd = 0; 3834 } 3835 arg = startarg; 3836 3837 CLEAR_FIELD(funcexe); 3838 funcexe.firstline = eap->line1; 3839 funcexe.lastline = eap->line2; 3840 funcexe.doesrange = &doesrange; 3841 funcexe.evaluate = !eap->skip; 3842 funcexe.partial = partial; 3843 funcexe.selfdict = fudi.fd_dict; 3844 if (get_func_tv(name, -1, &rettv, &arg, &funcexe) == FAIL) 3845 { 3846 failed = TRUE; 3847 break; 3848 } 3849 if (has_watchexpr()) 3850 dbg_check_breakpoint(eap); 3851 3852 // Handle a function returning a Funcref, Dictionary or List. 3853 if (handle_subscript(&arg, &rettv, eap->skip ? 0 : EVAL_EVALUATE, 3854 TRUE, name, &name) == FAIL) 3855 { 3856 failed = TRUE; 3857 break; 3858 } 3859 3860 clear_tv(&rettv); 3861 if (doesrange || eap->skip) 3862 break; 3863 3864 // Stop when immediately aborting on error, or when an interrupt 3865 // occurred or an exception was thrown but not caught. 3866 // get_func_tv() returned OK, so that the check for trailing 3867 // characters below is executed. 3868 if (aborting()) 3869 break; 3870 } 3871 if (eap->skip) 3872 --emsg_skip; 3873 3874 // When inside :try we need to check for following "| catch". 3875 if (!failed || eap->cstack->cs_trylevel > 0) 3876 { 3877 // Check for trailing illegal characters and a following command. 3878 if (!ends_excmd2(eap->arg, arg)) 3879 { 3880 if (!failed) 3881 { 3882 emsg_severe = TRUE; 3883 emsg(_(e_trailing)); 3884 } 3885 } 3886 else 3887 eap->nextcmd = check_nextcmd(arg); 3888 } 3889 3890 end: 3891 dict_unref(fudi.fd_dict); 3892 vim_free(tofree); 3893 } 3894 3895 /* 3896 * Return from a function. Possibly makes the return pending. Also called 3897 * for a pending return at the ":endtry" or after returning from an extra 3898 * do_cmdline(). "reanimate" is used in the latter case. "is_cmd" is set 3899 * when called due to a ":return" command. "rettv" may point to a typval_T 3900 * with the return rettv. Returns TRUE when the return can be carried out, 3901 * FALSE when the return gets pending. 3902 */ 3903 int 3904 do_return( 3905 exarg_T *eap, 3906 int reanimate, 3907 int is_cmd, 3908 void *rettv) 3909 { 3910 int idx; 3911 cstack_T *cstack = eap->cstack; 3912 3913 if (reanimate) 3914 // Undo the return. 3915 current_funccal->returned = FALSE; 3916 3917 /* 3918 * Cleanup (and inactivate) conditionals, but stop when a try conditional 3919 * not in its finally clause (which then is to be executed next) is found. 3920 * In this case, make the ":return" pending for execution at the ":endtry". 3921 * Otherwise, return normally. 3922 */ 3923 idx = cleanup_conditionals(eap->cstack, 0, TRUE); 3924 if (idx >= 0) 3925 { 3926 cstack->cs_pending[idx] = CSTP_RETURN; 3927 3928 if (!is_cmd && !reanimate) 3929 // A pending return again gets pending. "rettv" points to an 3930 // allocated variable with the rettv of the original ":return"'s 3931 // argument if present or is NULL else. 3932 cstack->cs_rettv[idx] = rettv; 3933 else 3934 { 3935 // When undoing a return in order to make it pending, get the stored 3936 // return rettv. 3937 if (reanimate) 3938 rettv = current_funccal->rettv; 3939 3940 if (rettv != NULL) 3941 { 3942 // Store the value of the pending return. 3943 if ((cstack->cs_rettv[idx] = alloc_tv()) != NULL) 3944 *(typval_T *)cstack->cs_rettv[idx] = *(typval_T *)rettv; 3945 else 3946 emsg(_(e_outofmem)); 3947 } 3948 else 3949 cstack->cs_rettv[idx] = NULL; 3950 3951 if (reanimate) 3952 { 3953 // The pending return value could be overwritten by a ":return" 3954 // without argument in a finally clause; reset the default 3955 // return value. 3956 current_funccal->rettv->v_type = VAR_NUMBER; 3957 current_funccal->rettv->vval.v_number = 0; 3958 } 3959 } 3960 report_make_pending(CSTP_RETURN, rettv); 3961 } 3962 else 3963 { 3964 current_funccal->returned = TRUE; 3965 3966 // If the return is carried out now, store the return value. For 3967 // a return immediately after reanimation, the value is already 3968 // there. 3969 if (!reanimate && rettv != NULL) 3970 { 3971 clear_tv(current_funccal->rettv); 3972 *current_funccal->rettv = *(typval_T *)rettv; 3973 if (!is_cmd) 3974 vim_free(rettv); 3975 } 3976 } 3977 3978 return idx < 0; 3979 } 3980 3981 /* 3982 * Free the variable with a pending return value. 3983 */ 3984 void 3985 discard_pending_return(void *rettv) 3986 { 3987 free_tv((typval_T *)rettv); 3988 } 3989 3990 /* 3991 * Generate a return command for producing the value of "rettv". The result 3992 * is an allocated string. Used by report_pending() for verbose messages. 3993 */ 3994 char_u * 3995 get_return_cmd(void *rettv) 3996 { 3997 char_u *s = NULL; 3998 char_u *tofree = NULL; 3999 char_u numbuf[NUMBUFLEN]; 4000 4001 if (rettv != NULL) 4002 s = echo_string((typval_T *)rettv, &tofree, numbuf, 0); 4003 if (s == NULL) 4004 s = (char_u *)""; 4005 4006 STRCPY(IObuff, ":return "); 4007 STRNCPY(IObuff + 8, s, IOSIZE - 8); 4008 if (STRLEN(s) + 8 >= IOSIZE) 4009 STRCPY(IObuff + IOSIZE - 4, "..."); 4010 vim_free(tofree); 4011 return vim_strsave(IObuff); 4012 } 4013 4014 /* 4015 * Get next function line. 4016 * Called by do_cmdline() to get the next line. 4017 * Returns allocated string, or NULL for end of function. 4018 */ 4019 char_u * 4020 get_func_line( 4021 int c UNUSED, 4022 void *cookie, 4023 int indent UNUSED, 4024 int do_concat UNUSED) 4025 { 4026 funccall_T *fcp = (funccall_T *)cookie; 4027 ufunc_T *fp = fcp->func; 4028 char_u *retval; 4029 garray_T *gap; // growarray with function lines 4030 4031 // If breakpoints have been added/deleted need to check for it. 4032 if (fcp->dbg_tick != debug_tick) 4033 { 4034 fcp->breakpoint = dbg_find_breakpoint(FALSE, fp->uf_name, 4035 SOURCING_LNUM); 4036 fcp->dbg_tick = debug_tick; 4037 } 4038 #ifdef FEAT_PROFILE 4039 if (do_profiling == PROF_YES) 4040 func_line_end(cookie); 4041 #endif 4042 4043 gap = &fp->uf_lines; 4044 if (((fp->uf_flags & FC_ABORT) && did_emsg && !aborted_in_try()) 4045 || fcp->returned) 4046 retval = NULL; 4047 else 4048 { 4049 // Skip NULL lines (continuation lines). 4050 while (fcp->linenr < gap->ga_len 4051 && ((char_u **)(gap->ga_data))[fcp->linenr] == NULL) 4052 ++fcp->linenr; 4053 if (fcp->linenr >= gap->ga_len) 4054 retval = NULL; 4055 else 4056 { 4057 retval = vim_strsave(((char_u **)(gap->ga_data))[fcp->linenr++]); 4058 SOURCING_LNUM = fcp->linenr; 4059 #ifdef FEAT_PROFILE 4060 if (do_profiling == PROF_YES) 4061 func_line_start(cookie); 4062 #endif 4063 } 4064 } 4065 4066 // Did we encounter a breakpoint? 4067 if (fcp->breakpoint != 0 && fcp->breakpoint <= SOURCING_LNUM) 4068 { 4069 dbg_breakpoint(fp->uf_name, SOURCING_LNUM); 4070 // Find next breakpoint. 4071 fcp->breakpoint = dbg_find_breakpoint(FALSE, fp->uf_name, 4072 SOURCING_LNUM); 4073 fcp->dbg_tick = debug_tick; 4074 } 4075 4076 return retval; 4077 } 4078 4079 /* 4080 * Return TRUE if the currently active function should be ended, because a 4081 * return was encountered or an error occurred. Used inside a ":while". 4082 */ 4083 int 4084 func_has_ended(void *cookie) 4085 { 4086 funccall_T *fcp = (funccall_T *)cookie; 4087 4088 // Ignore the "abort" flag if the abortion behavior has been changed due to 4089 // an error inside a try conditional. 4090 return (((fcp->func->uf_flags & FC_ABORT) && did_emsg && !aborted_in_try()) 4091 || fcp->returned); 4092 } 4093 4094 /* 4095 * return TRUE if cookie indicates a function which "abort"s on errors. 4096 */ 4097 int 4098 func_has_abort( 4099 void *cookie) 4100 { 4101 return ((funccall_T *)cookie)->func->uf_flags & FC_ABORT; 4102 } 4103 4104 4105 /* 4106 * Turn "dict.Func" into a partial for "Func" bound to "dict". 4107 * Don't do this when "Func" is already a partial that was bound 4108 * explicitly (pt_auto is FALSE). 4109 * Changes "rettv" in-place. 4110 * Returns the updated "selfdict_in". 4111 */ 4112 dict_T * 4113 make_partial(dict_T *selfdict_in, typval_T *rettv) 4114 { 4115 char_u *fname; 4116 char_u *tofree = NULL; 4117 ufunc_T *fp; 4118 char_u fname_buf[FLEN_FIXED + 1]; 4119 int error; 4120 dict_T *selfdict = selfdict_in; 4121 4122 if (rettv->v_type == VAR_PARTIAL && rettv->vval.v_partial->pt_func != NULL) 4123 fp = rettv->vval.v_partial->pt_func; 4124 else 4125 { 4126 fname = rettv->v_type == VAR_FUNC ? rettv->vval.v_string 4127 : rettv->vval.v_partial->pt_name; 4128 // Translate "s:func" to the stored function name. 4129 fname = fname_trans_sid(fname, fname_buf, &tofree, &error); 4130 fp = find_func(fname, FALSE, NULL); 4131 vim_free(tofree); 4132 } 4133 4134 if (fp != NULL && (fp->uf_flags & FC_DICT)) 4135 { 4136 partial_T *pt = ALLOC_CLEAR_ONE(partial_T); 4137 4138 if (pt != NULL) 4139 { 4140 pt->pt_refcount = 1; 4141 pt->pt_dict = selfdict; 4142 pt->pt_auto = TRUE; 4143 selfdict = NULL; 4144 if (rettv->v_type == VAR_FUNC) 4145 { 4146 // Just a function: Take over the function name and use 4147 // selfdict. 4148 pt->pt_name = rettv->vval.v_string; 4149 } 4150 else 4151 { 4152 partial_T *ret_pt = rettv->vval.v_partial; 4153 int i; 4154 4155 // Partial: copy the function name, use selfdict and copy 4156 // args. Can't take over name or args, the partial might 4157 // be referenced elsewhere. 4158 if (ret_pt->pt_name != NULL) 4159 { 4160 pt->pt_name = vim_strsave(ret_pt->pt_name); 4161 func_ref(pt->pt_name); 4162 } 4163 else 4164 { 4165 pt->pt_func = ret_pt->pt_func; 4166 func_ptr_ref(pt->pt_func); 4167 } 4168 if (ret_pt->pt_argc > 0) 4169 { 4170 pt->pt_argv = ALLOC_MULT(typval_T, ret_pt->pt_argc); 4171 if (pt->pt_argv == NULL) 4172 // out of memory: drop the arguments 4173 pt->pt_argc = 0; 4174 else 4175 { 4176 pt->pt_argc = ret_pt->pt_argc; 4177 for (i = 0; i < pt->pt_argc; i++) 4178 copy_tv(&ret_pt->pt_argv[i], &pt->pt_argv[i]); 4179 } 4180 } 4181 partial_unref(ret_pt); 4182 } 4183 rettv->v_type = VAR_PARTIAL; 4184 rettv->vval.v_partial = pt; 4185 } 4186 } 4187 return selfdict; 4188 } 4189 4190 /* 4191 * Return the name of the executed function. 4192 */ 4193 char_u * 4194 func_name(void *cookie) 4195 { 4196 return ((funccall_T *)cookie)->func->uf_name; 4197 } 4198 4199 /* 4200 * Return the address holding the next breakpoint line for a funccall cookie. 4201 */ 4202 linenr_T * 4203 func_breakpoint(void *cookie) 4204 { 4205 return &((funccall_T *)cookie)->breakpoint; 4206 } 4207 4208 /* 4209 * Return the address holding the debug tick for a funccall cookie. 4210 */ 4211 int * 4212 func_dbg_tick(void *cookie) 4213 { 4214 return &((funccall_T *)cookie)->dbg_tick; 4215 } 4216 4217 /* 4218 * Return the nesting level for a funccall cookie. 4219 */ 4220 int 4221 func_level(void *cookie) 4222 { 4223 return ((funccall_T *)cookie)->level; 4224 } 4225 4226 /* 4227 * Return TRUE when a function was ended by a ":return" command. 4228 */ 4229 int 4230 current_func_returned(void) 4231 { 4232 return current_funccal->returned; 4233 } 4234 4235 int 4236 free_unref_funccal(int copyID, int testing) 4237 { 4238 int did_free = FALSE; 4239 int did_free_funccal = FALSE; 4240 funccall_T *fc, **pfc; 4241 4242 for (pfc = &previous_funccal; *pfc != NULL; ) 4243 { 4244 if (can_free_funccal(*pfc, copyID)) 4245 { 4246 fc = *pfc; 4247 *pfc = fc->caller; 4248 free_funccal_contents(fc); 4249 did_free = TRUE; 4250 did_free_funccal = TRUE; 4251 } 4252 else 4253 pfc = &(*pfc)->caller; 4254 } 4255 if (did_free_funccal) 4256 // When a funccal was freed some more items might be garbage 4257 // collected, so run again. 4258 (void)garbage_collect(testing); 4259 4260 return did_free; 4261 } 4262 4263 /* 4264 * Get function call environment based on backtrace debug level 4265 */ 4266 static funccall_T * 4267 get_funccal(void) 4268 { 4269 int i; 4270 funccall_T *funccal; 4271 funccall_T *temp_funccal; 4272 4273 funccal = current_funccal; 4274 if (debug_backtrace_level > 0) 4275 { 4276 for (i = 0; i < debug_backtrace_level; i++) 4277 { 4278 temp_funccal = funccal->caller; 4279 if (temp_funccal) 4280 funccal = temp_funccal; 4281 else 4282 // backtrace level overflow. reset to max 4283 debug_backtrace_level = i; 4284 } 4285 } 4286 return funccal; 4287 } 4288 4289 /* 4290 * Return the hashtable used for local variables in the current funccal. 4291 * Return NULL if there is no current funccal. 4292 */ 4293 hashtab_T * 4294 get_funccal_local_ht() 4295 { 4296 if (current_funccal == NULL || current_funccal->l_vars.dv_refcount == 0) 4297 return NULL; 4298 return &get_funccal()->l_vars.dv_hashtab; 4299 } 4300 4301 /* 4302 * Return the l: scope variable. 4303 * Return NULL if there is no current funccal. 4304 */ 4305 dictitem_T * 4306 get_funccal_local_var() 4307 { 4308 if (current_funccal == NULL || current_funccal->l_vars.dv_refcount == 0) 4309 return NULL; 4310 return &get_funccal()->l_vars_var; 4311 } 4312 4313 /* 4314 * Return the hashtable used for argument in the current funccal. 4315 * Return NULL if there is no current funccal. 4316 */ 4317 hashtab_T * 4318 get_funccal_args_ht() 4319 { 4320 if (current_funccal == NULL || current_funccal->l_vars.dv_refcount == 0) 4321 return NULL; 4322 return &get_funccal()->l_avars.dv_hashtab; 4323 } 4324 4325 /* 4326 * Return the a: scope variable. 4327 * Return NULL if there is no current funccal. 4328 */ 4329 dictitem_T * 4330 get_funccal_args_var() 4331 { 4332 if (current_funccal == NULL || current_funccal->l_vars.dv_refcount == 0) 4333 return NULL; 4334 return &get_funccal()->l_avars_var; 4335 } 4336 4337 /* 4338 * List function variables, if there is a function. 4339 */ 4340 void 4341 list_func_vars(int *first) 4342 { 4343 if (current_funccal != NULL && current_funccal->l_vars.dv_refcount > 0) 4344 list_hashtable_vars(¤t_funccal->l_vars.dv_hashtab, 4345 "l:", FALSE, first); 4346 } 4347 4348 /* 4349 * If "ht" is the hashtable for local variables in the current funccal, return 4350 * the dict that contains it. 4351 * Otherwise return NULL. 4352 */ 4353 dict_T * 4354 get_current_funccal_dict(hashtab_T *ht) 4355 { 4356 if (current_funccal != NULL 4357 && ht == ¤t_funccal->l_vars.dv_hashtab) 4358 return ¤t_funccal->l_vars; 4359 return NULL; 4360 } 4361 4362 /* 4363 * Search hashitem in parent scope. 4364 */ 4365 hashitem_T * 4366 find_hi_in_scoped_ht(char_u *name, hashtab_T **pht) 4367 { 4368 funccall_T *old_current_funccal = current_funccal; 4369 hashtab_T *ht; 4370 hashitem_T *hi = NULL; 4371 char_u *varname; 4372 4373 if (current_funccal == NULL || current_funccal->func->uf_scoped == NULL) 4374 return NULL; 4375 4376 // Search in parent scope, which can be referenced from a lambda. 4377 current_funccal = current_funccal->func->uf_scoped; 4378 while (current_funccal != NULL) 4379 { 4380 ht = find_var_ht(name, &varname); 4381 if (ht != NULL && *varname != NUL) 4382 { 4383 hi = hash_find(ht, varname); 4384 if (!HASHITEM_EMPTY(hi)) 4385 { 4386 *pht = ht; 4387 break; 4388 } 4389 } 4390 if (current_funccal == current_funccal->func->uf_scoped) 4391 break; 4392 current_funccal = current_funccal->func->uf_scoped; 4393 } 4394 current_funccal = old_current_funccal; 4395 4396 return hi; 4397 } 4398 4399 /* 4400 * Search variable in parent scope. 4401 */ 4402 dictitem_T * 4403 find_var_in_scoped_ht(char_u *name, int no_autoload) 4404 { 4405 dictitem_T *v = NULL; 4406 funccall_T *old_current_funccal = current_funccal; 4407 hashtab_T *ht; 4408 char_u *varname; 4409 4410 if (current_funccal == NULL || current_funccal->func->uf_scoped == NULL) 4411 return NULL; 4412 4413 // Search in parent scope which is possible to reference from lambda 4414 current_funccal = current_funccal->func->uf_scoped; 4415 while (current_funccal) 4416 { 4417 ht = find_var_ht(name, &varname); 4418 if (ht != NULL && *varname != NUL) 4419 { 4420 v = find_var_in_ht(ht, *name, varname, no_autoload); 4421 if (v != NULL) 4422 break; 4423 } 4424 if (current_funccal == current_funccal->func->uf_scoped) 4425 break; 4426 current_funccal = current_funccal->func->uf_scoped; 4427 } 4428 current_funccal = old_current_funccal; 4429 4430 return v; 4431 } 4432 4433 /* 4434 * Set "copyID + 1" in previous_funccal and callers. 4435 */ 4436 int 4437 set_ref_in_previous_funccal(int copyID) 4438 { 4439 int abort = FALSE; 4440 funccall_T *fc; 4441 4442 for (fc = previous_funccal; !abort && fc != NULL; fc = fc->caller) 4443 { 4444 fc->fc_copyID = copyID + 1; 4445 abort = abort 4446 || set_ref_in_ht(&fc->l_vars.dv_hashtab, copyID + 1, NULL) 4447 || set_ref_in_ht(&fc->l_avars.dv_hashtab, copyID + 1, NULL) 4448 || set_ref_in_list_items(&fc->l_varlist, copyID + 1, NULL); 4449 } 4450 return abort; 4451 } 4452 4453 static int 4454 set_ref_in_funccal(funccall_T *fc, int copyID) 4455 { 4456 int abort = FALSE; 4457 4458 if (fc->fc_copyID != copyID) 4459 { 4460 fc->fc_copyID = copyID; 4461 abort = abort 4462 || set_ref_in_ht(&fc->l_vars.dv_hashtab, copyID, NULL) 4463 || set_ref_in_ht(&fc->l_avars.dv_hashtab, copyID, NULL) 4464 || set_ref_in_list_items(&fc->l_varlist, copyID, NULL) 4465 || set_ref_in_func(NULL, fc->func, copyID); 4466 } 4467 return abort; 4468 } 4469 4470 /* 4471 * Set "copyID" in all local vars and arguments in the call stack. 4472 */ 4473 int 4474 set_ref_in_call_stack(int copyID) 4475 { 4476 int abort = FALSE; 4477 funccall_T *fc; 4478 funccal_entry_T *entry; 4479 4480 for (fc = current_funccal; !abort && fc != NULL; fc = fc->caller) 4481 abort = abort || set_ref_in_funccal(fc, copyID); 4482 4483 // Also go through the funccal_stack. 4484 for (entry = funccal_stack; !abort && entry != NULL; entry = entry->next) 4485 for (fc = entry->top_funccal; !abort && fc != NULL; fc = fc->caller) 4486 abort = abort || set_ref_in_funccal(fc, copyID); 4487 4488 return abort; 4489 } 4490 4491 /* 4492 * Set "copyID" in all functions available by name. 4493 */ 4494 int 4495 set_ref_in_functions(int copyID) 4496 { 4497 int todo; 4498 hashitem_T *hi = NULL; 4499 int abort = FALSE; 4500 ufunc_T *fp; 4501 4502 todo = (int)func_hashtab.ht_used; 4503 for (hi = func_hashtab.ht_array; todo > 0 && !got_int; ++hi) 4504 { 4505 if (!HASHITEM_EMPTY(hi)) 4506 { 4507 --todo; 4508 fp = HI2UF(hi); 4509 if (!func_name_refcount(fp->uf_name)) 4510 abort = abort || set_ref_in_func(NULL, fp, copyID); 4511 } 4512 } 4513 return abort; 4514 } 4515 4516 /* 4517 * Set "copyID" in all function arguments. 4518 */ 4519 int 4520 set_ref_in_func_args(int copyID) 4521 { 4522 int i; 4523 int abort = FALSE; 4524 4525 for (i = 0; i < funcargs.ga_len; ++i) 4526 abort = abort || set_ref_in_item(((typval_T **)funcargs.ga_data)[i], 4527 copyID, NULL, NULL); 4528 return abort; 4529 } 4530 4531 /* 4532 * Mark all lists and dicts referenced through function "name" with "copyID". 4533 * Returns TRUE if setting references failed somehow. 4534 */ 4535 int 4536 set_ref_in_func(char_u *name, ufunc_T *fp_in, int copyID) 4537 { 4538 ufunc_T *fp = fp_in; 4539 funccall_T *fc; 4540 int error = FCERR_NONE; 4541 char_u fname_buf[FLEN_FIXED + 1]; 4542 char_u *tofree = NULL; 4543 char_u *fname; 4544 int abort = FALSE; 4545 4546 if (name == NULL && fp_in == NULL) 4547 return FALSE; 4548 4549 if (fp_in == NULL) 4550 { 4551 fname = fname_trans_sid(name, fname_buf, &tofree, &error); 4552 fp = find_func(fname, FALSE, NULL); 4553 } 4554 if (fp != NULL) 4555 { 4556 for (fc = fp->uf_scoped; fc != NULL; fc = fc->func->uf_scoped) 4557 abort = abort || set_ref_in_funccal(fc, copyID); 4558 } 4559 4560 vim_free(tofree); 4561 return abort; 4562 } 4563 4564 #endif // FEAT_EVAL 4565