blob: b33aee77410fa6efe0c6b53115e194dbf8ba7ee2 [file] [log] [blame]
Bram Moolenaaredf3f972016-08-29 22:49:24 +02001/* vi:set ts=8 sts=4 sw=4 noet:
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002 *
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/*
Bram Moolenaar14c01f82019-10-09 22:53:08 +020011 * userfunc.c: User defined function support
Bram Moolenaara9b579f2016-07-17 18:29:19 +020012 */
13
14#include "vim.h"
15
16#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaara9b579f2016-07-17 18:29:19 +020017/*
18 * All user-defined functions are found in this hashtable.
19 */
20static hashtab_T func_hashtab;
21
Bram Moolenaare38eab22019-12-05 21:50:01 +010022// Used by get_func_tv()
Bram Moolenaara9b579f2016-07-17 18:29:19 +020023static garray_T funcargs = GA_EMPTY;
24
Bram Moolenaar209b8e32019-03-14 13:43:24 +010025// pointer to funccal for currently active function
26static funccall_T *current_funccal = NULL;
Bram Moolenaara9b579f2016-07-17 18:29:19 +020027
Bram Moolenaar209b8e32019-03-14 13:43:24 +010028// Pointer to list of previously used funccal, still around because some
29// item in it is still being used.
30static funccall_T *previous_funccal = NULL;
Bram Moolenaara9b579f2016-07-17 18:29:19 +020031
32static char *e_funcexts = N_("E122: Function %s already exists, add ! to replace it");
33static char *e_funcdict = N_("E717: Dictionary entry already exists");
34static char *e_funcref = N_("E718: Funcref required");
35static char *e_nofunc = N_("E130: Unknown function: %s");
36
Bram Moolenaarbc7ce672016-08-01 22:49:22 +020037static void funccal_unref(funccall_T *fc, ufunc_T *fp, int force);
Bram Moolenaara9b579f2016-07-17 18:29:19 +020038
39 void
40func_init()
41{
42 hash_init(&func_hashtab);
43}
44
Bram Moolenaar4f0383b2016-07-19 22:43:11 +020045/*
Bram Moolenaar660a10a2019-07-14 15:48:38 +020046 * Return the function hash table
47 */
48 hashtab_T *
49func_tbl_get(void)
50{
51 return &func_hashtab;
52}
53
54/*
Bram Moolenaar6e949782020-04-13 17:21:00 +020055 * Get one function argument.
56 * If "argtypes" is not NULL also get the type: "arg: type".
Bram Moolenaar8a7d6542020-01-26 15:56:19 +010057 * Return a pointer to after the type.
58 * When something is wrong return "arg".
59 */
60 static char_u *
61one_function_arg(char_u *arg, garray_T *newargs, garray_T *argtypes, int skip)
62{
Bram Moolenaar6e949782020-04-13 17:21:00 +020063 char_u *p = arg;
64 char_u *arg_copy = NULL;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +010065
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 {
Bram Moolenaar8a7d6542020-01-26 15:56:19 +010080 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
Bram Moolenaar6e949782020-04-13 17:21:00 +0200111 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 }
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100117 if (*p == ':')
118 {
Bram Moolenaarf93c7fe2020-04-23 22:16:53 +0200119 ++p;
120 if (!VIM_ISWHITE(*p))
121 {
122 semsg(_(e_white_after), ":");
123 return arg;
124 }
125 type = skipwhite(p);
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100126 p = skip_type(type);
127 type = vim_strnsave(type, p - type);
128 }
Bram Moolenaar6e949782020-04-13 17:21:00 +0200129 else if (*skipwhite(p) != '=')
130 {
131 semsg(_("E1077: Missing argument type for %s"),
132 arg_copy == NULL ? arg : arg_copy);
133 return arg;
134 }
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100135 ((char_u **)argtypes->ga_data)[argtypes->ga_len++] = type;
136 }
137
138 return p;
139}
140
141/*
Bram Moolenaar4f0383b2016-07-19 22:43:11 +0200142 * Get function arguments.
143 */
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100144 int
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200145get_function_args(
146 char_u **argp,
147 char_u endchar,
148 garray_T *newargs,
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100149 garray_T *argtypes, // NULL unless using :def
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200150 int *varargs,
Bram Moolenaar42ae78c2019-05-09 21:08:58 +0200151 garray_T *default_args,
Bram Moolenaar5e774c72020-04-12 21:53:00 +0200152 int skip,
153 exarg_T *eap,
154 char_u **line_to_free)
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200155{
156 int mustend = FALSE;
157 char_u *arg = *argp;
158 char_u *p = arg;
159 int c;
Bram Moolenaar42ae78c2019-05-09 21:08:58 +0200160 int any_default = FALSE;
161 char_u *expr;
Bram Moolenaar2c330432020-04-13 14:41:35 +0200162 char_u *whitep = arg;
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200163
164 if (newargs != NULL)
165 ga_init2(newargs, (int)sizeof(char_u *), 3);
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100166 if (argtypes != NULL)
167 ga_init2(argtypes, (int)sizeof(char_u *), 3);
Bram Moolenaar42ae78c2019-05-09 21:08:58 +0200168 if (default_args != NULL)
169 ga_init2(default_args, (int)sizeof(char_u *), 3);
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200170
171 if (varargs != NULL)
172 *varargs = FALSE;
173
174 /*
175 * Isolate the arguments: "arg1, arg2, ...)"
176 */
177 while (*p != endchar)
178 {
Bram Moolenaar2c330432020-04-13 14:41:35 +0200179 while (eap != NULL && eap->getline != NULL
180 && (*p == NUL || (VIM_ISWHITE(*whitep) && *p == '#')))
Bram Moolenaar5e774c72020-04-12 21:53:00 +0200181 {
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;
Bram Moolenaar2c330432020-04-13 14:41:35 +0200190 whitep = (char_u *)" ";
Bram Moolenaar5e774c72020-04-12 21:53:00 +0200191 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
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200203 if (p[0] == '.' && p[1] == '.' && p[2] == '.')
204 {
205 if (varargs != NULL)
206 *varargs = TRUE;
207 p += 3;
208 mustend = TRUE;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100209
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 }
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200224 }
225 else
226 {
227 arg = p;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100228 p = one_function_arg(p, newargs, argtypes, skip);
229 if (p == arg)
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200230 break;
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200231
Bram Moolenaar42ae78c2019-05-09 21:08:58 +0200232 if (*skipwhite(p) == '=' && default_args != NULL)
233 {
234 typval_T rettv;
235
Bram Moolenaar170fcfc2020-02-06 17:51:35 +0100236 // find the end of the expression (doesn't evaluate it)
Bram Moolenaar42ae78c2019-05-09 21:08:58 +0200237 any_default = TRUE;
238 p = skipwhite(p) + 1;
Bram Moolenaar2c330432020-04-13 14:41:35 +0200239 whitep = p;
Bram Moolenaar42ae78c2019-05-09 21:08:58 +0200240 p = skipwhite(p);
241 expr = p;
242 if (eval1(&p, &rettv, FALSE) != 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 }
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200271 if (*p == ',')
272 ++p;
273 else
274 mustend = TRUE;
275 }
Bram Moolenaar2c330432020-04-13 14:41:35 +0200276 whitep = p;
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200277 p = skipwhite(p);
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200278 }
Bram Moolenaar5e774c72020-04-12 21:53:00 +0200279
Bram Moolenaar4f0383b2016-07-19 22:43:11 +0200280 if (*p != endchar)
281 goto err_ret;
Bram Moolenaare38eab22019-12-05 21:50:01 +0100282 ++p; // skip "endchar"
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200283
284 *argp = p;
285 return OK;
286
287err_ret:
288 if (newargs != NULL)
289 ga_clear_strings(newargs);
Bram Moolenaar42ae78c2019-05-09 21:08:58 +0200290 if (default_args != NULL)
291 ga_clear_strings(default_args);
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200292 return FAIL;
293}
294
295/*
Bram Moolenaar58016442016-07-31 18:30:22 +0200296 * Register function "fp" as using "current_funccal" as its scope.
297 */
298 static int
299register_closure(ufunc_T *fp)
300{
Bram Moolenaar8dd3a432016-08-01 20:46:25 +0200301 if (fp->uf_scoped == current_funccal)
Bram Moolenaare38eab22019-12-05 21:50:01 +0100302 // no change
Bram Moolenaar8dd3a432016-08-01 20:46:25 +0200303 return OK;
Bram Moolenaarbc7ce672016-08-01 22:49:22 +0200304 funccal_unref(fp->uf_scoped, fp, FALSE);
Bram Moolenaar58016442016-07-31 18:30:22 +0200305 fp->uf_scoped = current_funccal;
306 current_funccal->fc_refcount++;
Bram Moolenaar8dd3a432016-08-01 20:46:25 +0200307
Bram Moolenaar58016442016-07-31 18:30:22 +0200308 if (ga_grow(&current_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;
Bram Moolenaar58016442016-07-31 18:30:22 +0200312 return OK;
313}
314
Bram Moolenaar1a47ae32019-12-29 23:04:25 +0100315 static void
316set_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
Bram Moolenaar58016442016-07-31 18:30:22 +0200331/*
Bram Moolenaar04b12692020-05-04 23:24:44 +0200332 * Get a name for a lambda. Returned in static memory.
333 */
334 char_u *
335get_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/*
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200345 * Parse a lambda expression and get a Funcref from "*arg".
346 * Return OK or FAIL. Returns NOTDONE for dict or {expr}.
347 */
348 int
349get_lambda_tv(char_u **arg, typval_T *rettv, int evaluate)
350{
351 garray_T newargs;
352 garray_T newlines;
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +0200353 garray_T *pnewargs;
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200354 ufunc_T *fp = NULL;
Bram Moolenaar445e71c2019-02-14 13:43:36 +0100355 partial_T *pt = NULL;
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200356 int varargs;
357 int ret;
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200358 char_u *start = skipwhite(*arg + 1);
359 char_u *s, *e;
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +0200360 int *old_eval_lavars = eval_lavars_used;
361 int eval_lavars = FALSE;
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200362
363 ga_init(&newargs);
364 ga_init(&newlines);
365
Bram Moolenaare38eab22019-12-05 21:50:01 +0100366 // First, check if this is a lambda expression. "->" must exist.
Bram Moolenaar5e774c72020-04-12 21:53:00 +0200367 ret = get_function_args(&start, '-', NULL, NULL, NULL, NULL, TRUE,
368 NULL, NULL);
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200369 if (ret == FAIL || *start != '>')
370 return NOTDONE;
371
Bram Moolenaare38eab22019-12-05 21:50:01 +0100372 // Parse the arguments again.
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +0200373 if (evaluate)
374 pnewargs = &newargs;
375 else
376 pnewargs = NULL;
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200377 *arg = skipwhite(*arg + 1);
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100378 // TODO: argument types
Bram Moolenaar5e774c72020-04-12 21:53:00 +0200379 ret = get_function_args(arg, '-', pnewargs, NULL, &varargs, NULL, FALSE,
380 NULL, NULL);
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200381 if (ret == FAIL || **arg != '>')
382 goto errret;
383
Bram Moolenaare38eab22019-12-05 21:50:01 +0100384 // Set up a flag for checking local variables and arguments.
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +0200385 if (evaluate)
386 eval_lavars_used = &eval_lavars;
387
Bram Moolenaare38eab22019-12-05 21:50:01 +0100388 // Get the start and the end of the expression.
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200389 *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 != '}')
Bram Moolenaaree619e52020-03-28 21:38:06 +0100397 {
398 semsg(_("E451: Expected }: %s"), *arg);
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200399 goto errret;
Bram Moolenaaree619e52020-03-28 21:38:06 +0100400 }
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200401 ++*arg;
402
403 if (evaluate)
404 {
Bram Moolenaar437bafe2016-08-01 15:40:54 +0200405 int len, flags = 0;
406 char_u *p;
Bram Moolenaar04b12692020-05-04 23:24:44 +0200407 char_u *name = get_lambda_name();
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +0200408
Bram Moolenaar47ed5532019-08-08 20:49:14 +0200409 fp = alloc_clear(offsetof(ufunc_T, uf_name) + STRLEN(name) + 1);
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200410 if (fp == NULL)
411 goto errret;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100412 fp->uf_dfunc_idx = -1;
Bram Moolenaarc799fe22019-05-28 23:08:19 +0200413 pt = ALLOC_CLEAR_ONE(partial_T);
Bram Moolenaar437bafe2016-08-01 15:40:54 +0200414 if (pt == NULL)
Bram Moolenaar437bafe2016-08-01 15:40:54 +0200415 goto errret;
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200416
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200417 ga_init2(&newlines, (int)sizeof(char_u *), 1);
418 if (ga_grow(&newlines, 1) == FAIL)
419 goto errret;
420
Bram Moolenaare38eab22019-12-05 21:50:01 +0100421 // Add "return " before the expression.
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200422 len = 7 + e - s + 1;
Bram Moolenaarc799fe22019-05-28 23:08:19 +0200423 p = alloc(len);
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200424 if (p == NULL)
425 goto errret;
426 ((char_u **)(newlines.ga_data))[newlines.ga_len++] = p;
427 STRCPY(p, "return ");
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +0200428 vim_strncpy(p + 7, s, e - s);
Bram Moolenaarf10806b2020-04-02 18:34:35 +0200429 if (strstr((char *)p + 7, "a:") == NULL)
430 // No a: variables are used for sure.
431 flags |= FC_NOARGS;
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200432
433 fp->uf_refcount = 1;
Bram Moolenaar1a47ae32019-12-29 23:04:25 +0100434 set_ufunc_name(fp, name);
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200435 hash_add(&func_hashtab, UF2HIKEY(fp));
436 fp->uf_args = newargs;
Bram Moolenaar42ae78c2019-05-09 21:08:58 +0200437 ga_init(&fp->uf_def_args);
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200438 fp->uf_lines = newlines;
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +0200439 if (current_funccal != NULL && eval_lavars)
440 {
Bram Moolenaar10ce39a2016-07-29 22:37:06 +0200441 flags |= FC_CLOSURE;
Bram Moolenaar58016442016-07-31 18:30:22 +0200442 if (register_closure(fp) == FAIL)
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +0200443 goto errret;
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +0200444 }
445 else
446 fp->uf_scoped = NULL;
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200447
448#ifdef FEAT_PROFILE
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200449 if (prof_def_func())
450 func_do_profile(fp);
451#endif
Bram Moolenaar93343722018-07-10 19:39:18 +0200452 if (sandbox)
453 flags |= FC_SANDBOX;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100454 // can be called with more args than uf_args.ga_len
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200455 fp->uf_varargs = TRUE;
Bram Moolenaar10ce39a2016-07-29 22:37:06 +0200456 fp->uf_flags = flags;
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200457 fp->uf_calls = 0;
Bram Moolenaarf29c1c62018-09-10 21:05:02 +0200458 fp->uf_script_ctx = current_sctx;
Bram Moolenaar1a47ae32019-12-29 23:04:25 +0100459 fp->uf_script_ctx.sc_lnum += SOURCING_LNUM - newlines.ga_len;
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200460
Bram Moolenaar437bafe2016-08-01 15:40:54 +0200461 pt->pt_func = fp;
462 pt->pt_refcount = 1;
463 rettv->vval.v_partial = pt;
464 rettv->v_type = VAR_PARTIAL;
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200465 }
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200466
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +0200467 eval_lavars_used = old_eval_lavars;
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200468 return OK;
469
470errret:
471 ga_clear_strings(&newargs);
472 ga_clear_strings(&newlines);
473 vim_free(fp);
Bram Moolenaar445e71c2019-02-14 13:43:36 +0100474 vim_free(pt);
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +0200475 eval_lavars_used = old_eval_lavars;
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200476 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 *
486deref_func_name(char_u *name, int *lenp, partial_T **partialp, int no_autoload)
487{
488 dictitem_T *v;
489 int cc;
Bram Moolenaar437bafe2016-08-01 15:40:54 +0200490 char_u *s;
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200491
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;
Bram Moolenaare38eab22019-12-05 21:50:01 +0100504 return (char_u *)""; // just in case
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200505 }
Bram Moolenaar437bafe2016-08-01 15:40:54 +0200506 s = v->di_tv.vval.v_string;
507 *lenp = (int)STRLEN(s);
508 return s;
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200509 }
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;
Bram Moolenaare38eab22019-12-05 21:50:01 +0100518 return (char_u *)""; // just in case
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200519 }
520 if (partialp != NULL)
521 *partialp = pt;
Bram Moolenaar437bafe2016-08-01 15:40:54 +0200522 s = partial_name(pt);
523 *lenp = (int)STRLEN(s);
524 return s;
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200525 }
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 */
Bram Moolenaar4c054e92019-11-10 00:13:50 +0100534 void
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200535emsg_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;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100543 semsg(_(ermsg), p);
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200544 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
553get_func_tv(
Bram Moolenaar6ed88192019-05-11 18:37:44 +0200554 char_u *name, // name of the function
555 int len, // length of "name" or -1 to use strlen()
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200556 typval_T *rettv,
Bram Moolenaar6ed88192019-05-11 18:37:44 +0200557 char_u **arg, // argument, pointing to the '('
Bram Moolenaarc6538bc2019-08-03 18:17:11 +0200558 funcexe_T *funcexe) // various values
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200559{
560 char_u *argp;
561 int ret = OK;
Bram Moolenaare38eab22019-12-05 21:50:01 +0100562 typval_T argvars[MAX_FUNC_ARGS + 1]; // vars for arguments
563 int argcount = 0; // number of arguments found
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200564
565 /*
566 * Get the arguments.
567 */
568 argp = *arg;
Bram Moolenaarc6538bc2019-08-03 18:17:11 +0200569 while (argcount < MAX_FUNC_ARGS - (funcexe->partial == NULL ? 0
570 : funcexe->partial->pt_argc))
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200571 {
Bram Moolenaare38eab22019-12-05 21:50:01 +0100572 argp = skipwhite(argp + 1); // skip the '(' or ','
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200573 if (*argp == ')' || *argp == ',' || *argp == NUL)
574 break;
Bram Moolenaarc6538bc2019-08-03 18:17:11 +0200575 if (eval1(&argp, &argvars[argcount], funcexe->evaluate) == FAIL)
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200576 {
577 ret = FAIL;
578 break;
579 }
580 ++argcount;
581 if (*argp != ',')
582 break;
583 }
584 if (*argp == ')')
585 ++argp;
586 else
587 ret = FAIL;
588
589 if (ret == OK)
590 {
591 int i = 0;
592
593 if (get_vim_var_nr(VV_TESTING))
594 {
Bram Moolenaare38eab22019-12-05 21:50:01 +0100595 // Prepare for calling test_garbagecollect_now(), need to know
596 // what variables are used on the call stack.
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200597 if (funcargs.ga_itemsize == 0)
598 ga_init2(&funcargs, (int)sizeof(typval_T *), 50);
599 for (i = 0; i < argcount; ++i)
600 if (ga_grow(&funcargs, 1) == OK)
601 ((typval_T **)funcargs.ga_data)[funcargs.ga_len++] =
602 &argvars[i];
603 }
604
Bram Moolenaarc6538bc2019-08-03 18:17:11 +0200605 ret = call_func(name, len, rettv, argcount, argvars, funcexe);
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200606
607 funcargs.ga_len -= i;
608 }
609 else if (!aborting())
610 {
611 if (argcount == MAX_FUNC_ARGS)
612 emsg_funcname(N_("E740: Too many arguments for function %s"), name);
613 else
614 emsg_funcname(N_("E116: Invalid arguments for function %s"), name);
615 }
616
617 while (--argcount >= 0)
618 clear_tv(&argvars[argcount]);
619
620 *arg = skipwhite(argp);
621 return ret;
622}
623
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200624/*
625 * Return TRUE if "p" starts with "<SID>" or "s:".
626 * Only works if eval_fname_script() returned non-zero for "p"!
627 */
628 static int
629eval_fname_sid(char_u *p)
630{
631 return (*p == 's' || TOUPPER_ASC(p[2]) == 'I');
632}
633
634/*
635 * In a script change <SID>name() and s:name() to K_SNR 123_name().
636 * Change <SNR>123_name() to K_SNR 123_name().
637 * Use "fname_buf[FLEN_FIXED + 1]" when it fits, otherwise allocate memory
638 * (slow).
639 */
Bram Moolenaar5cab73f2020-02-06 19:25:19 +0100640 char_u *
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200641fname_trans_sid(char_u *name, char_u *fname_buf, char_u **tofree, int *error)
642{
643 int llen;
644 char_u *fname;
645 int i;
646
647 llen = eval_fname_script(name);
648 if (llen > 0)
649 {
650 fname_buf[0] = K_SPECIAL;
651 fname_buf[1] = KS_EXTRA;
652 fname_buf[2] = (int)KE_SNR;
653 i = 3;
Bram Moolenaare38eab22019-12-05 21:50:01 +0100654 if (eval_fname_sid(name)) // "<SID>" or "s:"
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200655 {
Bram Moolenaarf29c1c62018-09-10 21:05:02 +0200656 if (current_sctx.sc_sid <= 0)
Bram Moolenaaref140542019-12-31 21:27:13 +0100657 *error = FCERR_SCRIPT;
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200658 else
659 {
Bram Moolenaarad3ec762019-04-21 00:00:13 +0200660 sprintf((char *)fname_buf + 3, "%ld_",
661 (long)current_sctx.sc_sid);
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200662 i = (int)STRLEN(fname_buf);
663 }
664 }
665 if (i + STRLEN(name + llen) < FLEN_FIXED)
666 {
667 STRCPY(fname_buf + i, name + llen);
668 fname = fname_buf;
669 }
670 else
671 {
Bram Moolenaar964b3742019-05-24 18:54:09 +0200672 fname = alloc(i + STRLEN(name + llen) + 1);
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200673 if (fname == NULL)
Bram Moolenaaref140542019-12-31 21:27:13 +0100674 *error = FCERR_OTHER;
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200675 else
676 {
677 *tofree = fname;
678 mch_memmove(fname, fname_buf, (size_t)i);
679 STRCPY(fname + i, name + llen);
680 }
681 }
682 }
683 else
684 fname = name;
685 return fname;
686}
687
688/*
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100689 * Find a function "name" in script "sid".
690 */
691 static ufunc_T *
692find_func_with_sid(char_u *name, int sid)
693{
694 hashitem_T *hi;
695 char_u buffer[200];
696
697 buffer[0] = K_SPECIAL;
698 buffer[1] = KS_EXTRA;
699 buffer[2] = (int)KE_SNR;
700 vim_snprintf((char *)buffer + 3, sizeof(buffer) - 3, "%ld_%s",
701 (long)sid, name);
702 hi = hash_find(&func_hashtab, buffer);
703 if (!HASHITEM_EMPTY(hi))
704 return HI2UF(hi);
705
706 return NULL;
707}
708
709/*
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200710 * Find a function by name, return pointer to it in ufuncs.
Bram Moolenaar4c17ad92020-04-27 22:47:51 +0200711 * When "is_global" is true don't find script-local or imported functions.
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200712 * Return NULL for unknown function.
713 */
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100714 static ufunc_T *
Bram Moolenaar4c17ad92020-04-27 22:47:51 +0200715find_func_even_dead(char_u *name, int is_global, cctx_T *cctx)
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200716{
717 hashitem_T *hi;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100718 ufunc_T *func;
719 imported_T *imported;
720
Bram Moolenaar4c17ad92020-04-27 22:47:51 +0200721 if (in_vim9script() && !is_global)
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100722 {
723 // Find script-local function before global one.
724 func = find_func_with_sid(name, current_sctx.sc_sid);
725 if (func != NULL)
726 return func;
727
728 // Find imported funcion before global one.
Bram Moolenaar4e12a5d2020-02-03 20:50:59 +0100729 imported = find_imported(name, 0, cctx);
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100730 if (imported != NULL && imported->imp_funcname != NULL)
731 {
732 hi = hash_find(&func_hashtab, imported->imp_funcname);
733 if (!HASHITEM_EMPTY(hi))
734 return HI2UF(hi);
735 }
736 }
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200737
Bram Moolenaara26b9702020-04-18 19:53:28 +0200738 hi = hash_find(&func_hashtab,
739 STRNCMP(name, "g:", 2) == 0 ? name + 2 : name);
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200740 if (!HASHITEM_EMPTY(hi))
741 return HI2UF(hi);
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100742
743 return NULL;
744}
745
746/*
747 * Find a function by name, return pointer to it in ufuncs.
748 * "cctx" is passed in a :def function to find imported functions.
749 * Return NULL for unknown or dead function.
750 */
751 ufunc_T *
Bram Moolenaar4c17ad92020-04-27 22:47:51 +0200752find_func(char_u *name, int is_global, cctx_T *cctx)
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100753{
Bram Moolenaar4c17ad92020-04-27 22:47:51 +0200754 ufunc_T *fp = find_func_even_dead(name, is_global, cctx);
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100755
756 if (fp != NULL && (fp->uf_flags & FC_DEAD) == 0)
757 return fp;
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200758 return NULL;
759}
760
761/*
762 * Copy the function name of "fp" to buffer "buf".
763 * "buf" must be able to hold the function name plus three bytes.
764 * Takes care of script-local function names.
765 */
766 static void
767cat_func_name(char_u *buf, ufunc_T *fp)
768{
769 if (fp->uf_name[0] == K_SPECIAL)
770 {
771 STRCPY(buf, "<SNR>");
772 STRCAT(buf, fp->uf_name + 3);
773 }
774 else
775 STRCPY(buf, fp->uf_name);
776}
777
778/*
779 * Add a number variable "name" to dict "dp" with value "nr".
780 */
781 static void
782add_nr_var(
783 dict_T *dp,
784 dictitem_T *v,
785 char *name,
786 varnumber_T nr)
787{
788 STRCPY(v->di_key, name);
789 v->di_flags = DI_FLAGS_RO | DI_FLAGS_FIX;
790 hash_add(&dp->dv_hashtab, DI2HIKEY(v));
791 v->di_tv.v_type = VAR_NUMBER;
792 v->di_tv.v_lock = VAR_FIXED;
793 v->di_tv.vval.v_number = nr;
794}
795
796/*
Bram Moolenaar209b8e32019-03-14 13:43:24 +0100797 * Free "fc".
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200798 */
Bram Moolenaar209b8e32019-03-14 13:43:24 +0100799 static void
800free_funccal(funccall_T *fc)
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200801{
Bram Moolenaar209b8e32019-03-14 13:43:24 +0100802 int i;
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +0200803
804 for (i = 0; i < fc->fc_funcs.ga_len; ++i)
805 {
Bram Moolenaar209b8e32019-03-14 13:43:24 +0100806 ufunc_T *fp = ((ufunc_T **)(fc->fc_funcs.ga_data))[i];
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +0200807
Bram Moolenaar209b8e32019-03-14 13:43:24 +0100808 // When garbage collecting a funccall_T may be freed before the
809 // function that references it, clear its uf_scoped field.
810 // The function may have been redefined and point to another
811 // funccall_T, don't clear it then.
Bram Moolenaarbc7ce672016-08-01 22:49:22 +0200812 if (fp != NULL && fp->uf_scoped == fc)
813 fp->uf_scoped = NULL;
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +0200814 }
Bram Moolenaar58016442016-07-31 18:30:22 +0200815 ga_clear(&fc->fc_funcs);
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200816
Bram Moolenaar437bafe2016-08-01 15:40:54 +0200817 func_ptr_unref(fc->func);
Bram Moolenaara9b579f2016-07-17 18:29:19 +0200818 vim_free(fc);
819}
820
821/*
Bram Moolenaar209b8e32019-03-14 13:43:24 +0100822 * Free "fc" and what it contains.
823 * Can be called only when "fc" is kept beyond the period of it called,
824 * i.e. after cleanup_function_call(fc).
825 */
826 static void
827free_funccal_contents(funccall_T *fc)
828{
829 listitem_T *li;
830
831 // Free all l: variables.
832 vars_clear(&fc->l_vars.dv_hashtab);
833
834 // Free all a: variables.
835 vars_clear(&fc->l_avars.dv_hashtab);
836
837 // Free the a:000 variables.
Bram Moolenaaraeea7212020-04-02 18:50:46 +0200838 FOR_ALL_LIST_ITEMS(&fc->l_varlist, li)
Bram Moolenaar209b8e32019-03-14 13:43:24 +0100839 clear_tv(&li->li_tv);
840
841 free_funccal(fc);
842}
843
844/*
Bram Moolenaar6914c642017-04-01 21:21:30 +0200845 * Handle the last part of returning from a function: free the local hashtable.
846 * Unless it is still in use by a closure.
847 */
848 static void
849cleanup_function_call(funccall_T *fc)
850{
Bram Moolenaar209b8e32019-03-14 13:43:24 +0100851 int may_free_fc = fc->fc_refcount <= 0;
852 int free_fc = TRUE;
853
Bram Moolenaar6914c642017-04-01 21:21:30 +0200854 current_funccal = fc->caller;
855
Bram Moolenaar209b8e32019-03-14 13:43:24 +0100856 // Free all l: variables if not referred.
857 if (may_free_fc && fc->l_vars.dv_refcount == DO_NOT_FREE_CNT)
858 vars_clear(&fc->l_vars.dv_hashtab);
859 else
860 free_fc = FALSE;
861
862 // If the a:000 list and the l: and a: dicts are not referenced and
863 // there is no closure using it, we can free the funccall_T and what's
864 // in it.
865 if (may_free_fc && fc->l_avars.dv_refcount == DO_NOT_FREE_CNT)
866 vars_clear_ext(&fc->l_avars.dv_hashtab, FALSE);
Bram Moolenaar6914c642017-04-01 21:21:30 +0200867 else
868 {
Bram Moolenaar209b8e32019-03-14 13:43:24 +0100869 int todo;
870 hashitem_T *hi;
871 dictitem_T *di;
Bram Moolenaar6914c642017-04-01 21:21:30 +0200872
Bram Moolenaar209b8e32019-03-14 13:43:24 +0100873 free_fc = FALSE;
Bram Moolenaar6914c642017-04-01 21:21:30 +0200874
Bram Moolenaar209b8e32019-03-14 13:43:24 +0100875 // Make a copy of the a: variables, since we didn't do that above.
Bram Moolenaar6914c642017-04-01 21:21:30 +0200876 todo = (int)fc->l_avars.dv_hashtab.ht_used;
877 for (hi = fc->l_avars.dv_hashtab.ht_array; todo > 0; ++hi)
878 {
879 if (!HASHITEM_EMPTY(hi))
880 {
881 --todo;
Bram Moolenaar209b8e32019-03-14 13:43:24 +0100882 di = HI2DI(hi);
883 copy_tv(&di->di_tv, &di->di_tv);
Bram Moolenaar6914c642017-04-01 21:21:30 +0200884 }
885 }
Bram Moolenaar209b8e32019-03-14 13:43:24 +0100886 }
Bram Moolenaar6914c642017-04-01 21:21:30 +0200887
Bram Moolenaar209b8e32019-03-14 13:43:24 +0100888 if (may_free_fc && fc->l_varlist.lv_refcount == DO_NOT_FREE_CNT)
889 fc->l_varlist.lv_first = NULL;
890 else
891 {
892 listitem_T *li;
893
894 free_fc = FALSE;
895
896 // Make a copy of the a:000 items, since we didn't do that above.
Bram Moolenaaraeea7212020-04-02 18:50:46 +0200897 FOR_ALL_LIST_ITEMS(&fc->l_varlist, li)
Bram Moolenaar6914c642017-04-01 21:21:30 +0200898 copy_tv(&li->li_tv, &li->li_tv);
Bram Moolenaar209b8e32019-03-14 13:43:24 +0100899 }
Bram Moolenaar4456ab52019-01-23 23:00:30 +0100900
Bram Moolenaar209b8e32019-03-14 13:43:24 +0100901 if (free_fc)
902 free_funccal(fc);
903 else
904 {
905 static int made_copy = 0;
906
907 // "fc" is still in use. This can happen when returning "a:000",
908 // assigning "l:" to a global variable or defining a closure.
909 // Link "fc" in the list for garbage collection later.
910 fc->caller = previous_funccal;
911 previous_funccal = fc;
912
913 if (want_garbage_collect)
914 // If garbage collector is ready, clear count.
915 made_copy = 0;
916 else if (++made_copy >= (int)((4096 * 1024) / sizeof(*fc)))
Bram Moolenaar4456ab52019-01-23 23:00:30 +0100917 {
Bram Moolenaar209b8e32019-03-14 13:43:24 +0100918 // We have made a lot of copies, worth 4 Mbyte. This can happen
919 // when repetitively calling a function that creates a reference to
Bram Moolenaar889da2f2019-02-02 14:02:30 +0100920 // itself somehow. Call the garbage collector soon to avoid using
Bram Moolenaar4456ab52019-01-23 23:00:30 +0100921 // too much memory.
922 made_copy = 0;
Bram Moolenaar889da2f2019-02-02 14:02:30 +0100923 want_garbage_collect = TRUE;
Bram Moolenaar4456ab52019-01-23 23:00:30 +0100924 }
Bram Moolenaar6914c642017-04-01 21:21:30 +0200925 }
926}
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100927/*
928 * Unreference "fc": decrement the reference count and free it when it
929 * becomes zero. "fp" is detached from "fc".
930 * When "force" is TRUE we are exiting.
931 */
932 static void
933funccal_unref(funccall_T *fc, ufunc_T *fp, int force)
934{
935 funccall_T **pfc;
936 int i;
937
938 if (fc == NULL)
939 return;
940
941 if (--fc->fc_refcount <= 0 && (force || (
942 fc->l_varlist.lv_refcount == DO_NOT_FREE_CNT
943 && fc->l_vars.dv_refcount == DO_NOT_FREE_CNT
944 && fc->l_avars.dv_refcount == DO_NOT_FREE_CNT)))
945 for (pfc = &previous_funccal; *pfc != NULL; pfc = &(*pfc)->caller)
946 {
947 if (fc == *pfc)
948 {
949 *pfc = fc->caller;
950 free_funccal_contents(fc);
951 return;
952 }
953 }
954 for (i = 0; i < fc->fc_funcs.ga_len; ++i)
955 if (((ufunc_T **)(fc->fc_funcs.ga_data))[i] == fp)
956 ((ufunc_T **)(fc->fc_funcs.ga_data))[i] = NULL;
957}
958
959/*
960 * Remove the function from the function hashtable. If the function was
961 * deleted while it still has references this was already done.
962 * Return TRUE if the entry was deleted, FALSE if it wasn't found.
963 */
964 static int
965func_remove(ufunc_T *fp)
966{
967 hashitem_T *hi;
968
969 // Return if it was already virtually deleted.
970 if (fp->uf_flags & FC_DEAD)
971 return FALSE;
972
973 hi = hash_find(&func_hashtab, UF2HIKEY(fp));
974 if (!HASHITEM_EMPTY(hi))
975 {
976 // When there is a def-function index do not actually remove the
977 // function, so we can find the index when defining the function again.
978 if (fp->uf_dfunc_idx >= 0)
979 fp->uf_flags |= FC_DEAD;
980 else
981 hash_remove(&func_hashtab, hi);
982 return TRUE;
983 }
984 return FALSE;
985}
986
987 static void
988func_clear_items(ufunc_T *fp)
989{
990 ga_clear_strings(&(fp->uf_args));
991 ga_clear_strings(&(fp->uf_def_args));
992 ga_clear_strings(&(fp->uf_lines));
993 VIM_CLEAR(fp->uf_name_exp);
994 VIM_CLEAR(fp->uf_arg_types);
Bram Moolenaar292b90d2020-03-18 15:23:16 +0100995 VIM_CLEAR(fp->uf_def_arg_idx);
996 VIM_CLEAR(fp->uf_va_name);
Bram Moolenaar5deeb3f2020-04-05 17:08:17 +0200997 while (fp->uf_type_list.ga_len > 0)
998 vim_free(((type_T **)fp->uf_type_list.ga_data)
999 [--fp->uf_type_list.ga_len]);
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001000 ga_clear(&fp->uf_type_list);
1001#ifdef FEAT_PROFILE
1002 VIM_CLEAR(fp->uf_tml_count);
1003 VIM_CLEAR(fp->uf_tml_total);
1004 VIM_CLEAR(fp->uf_tml_self);
1005#endif
1006}
1007
1008/*
1009 * Free all things that a function contains. Does not free the function
1010 * itself, use func_free() for that.
1011 * When "force" is TRUE we are exiting.
1012 */
1013 static void
1014func_clear(ufunc_T *fp, int force)
1015{
1016 if (fp->uf_cleared)
1017 return;
1018 fp->uf_cleared = TRUE;
1019
1020 // clear this function
1021 func_clear_items(fp);
1022 funccal_unref(fp->uf_scoped, fp, force);
1023 delete_def_function(fp);
1024}
1025
1026/*
1027 * Free a function and remove it from the list of functions. Does not free
1028 * what a function contains, call func_clear() first.
Bram Moolenaarf7779c62020-05-03 15:38:16 +02001029 * When "force" is TRUE we are exiting.
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001030 */
1031 static void
Bram Moolenaarf7779c62020-05-03 15:38:16 +02001032func_free(ufunc_T *fp, int force)
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001033{
1034 // Only remove it when not done already, otherwise we would remove a newer
1035 // version of the function with the same name.
1036 if ((fp->uf_flags & (FC_DELETED | FC_REMOVED)) == 0)
1037 func_remove(fp);
1038
Bram Moolenaarf7779c62020-05-03 15:38:16 +02001039 if ((fp->uf_flags & FC_DEAD) == 0 || force)
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001040 vim_free(fp);
1041}
1042
1043/*
1044 * Free all things that a function contains and free the function itself.
1045 * When "force" is TRUE we are exiting.
1046 */
1047 static void
1048func_clear_free(ufunc_T *fp, int force)
1049{
1050 func_clear(fp, force);
Bram Moolenaarf7779c62020-05-03 15:38:16 +02001051 func_free(fp, force);
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001052}
1053
Bram Moolenaar6914c642017-04-01 21:21:30 +02001054
1055/*
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001056 * Call a user function.
1057 */
1058 static void
1059call_user_func(
Bram Moolenaare38eab22019-12-05 21:50:01 +01001060 ufunc_T *fp, // pointer to function
1061 int argcount, // nr of args
1062 typval_T *argvars, // arguments
1063 typval_T *rettv, // return value
1064 linenr_T firstline, // first line of range
1065 linenr_T lastline, // last line of range
1066 dict_T *selfdict) // Dictionary for "self"
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001067{
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02001068 sctx_T save_current_sctx;
Bram Moolenaar93343722018-07-10 19:39:18 +02001069 int using_sandbox = FALSE;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001070 funccall_T *fc;
1071 int save_did_emsg;
Bram Moolenaar42ae78c2019-05-09 21:08:58 +02001072 int default_arg_err = FALSE;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001073 static int depth = 0;
1074 dictitem_T *v;
Bram Moolenaare38eab22019-12-05 21:50:01 +01001075 int fixvar_idx = 0; // index in fixvar[]
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001076 int i;
1077 int ai;
1078 int islambda = FALSE;
1079 char_u numbuf[NUMBUFLEN];
1080 char_u *name;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001081#ifdef FEAT_PROFILE
1082 proftime_T wait_start;
1083 proftime_T call_start;
Bram Moolenaarad648092018-06-30 18:28:03 +02001084 int started_profiling = FALSE;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001085#endif
Bram Moolenaare31ee862020-01-07 20:59:34 +01001086 ESTACK_CHECK_DECLARATION
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001087
Bram Moolenaare38eab22019-12-05 21:50:01 +01001088 // If depth of calling is getting too high, don't execute the function
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001089 if (depth >= p_mfd)
1090 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001091 emsg(_("E132: Function call depth is higher than 'maxfuncdepth'"));
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001092 rettv->v_type = VAR_NUMBER;
1093 rettv->vval.v_number = -1;
1094 return;
1095 }
1096 ++depth;
1097
Bram Moolenaare38eab22019-12-05 21:50:01 +01001098 line_breakcheck(); // check for CTRL-C hit
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001099
Bram Moolenaarc799fe22019-05-28 23:08:19 +02001100 fc = ALLOC_CLEAR_ONE(funccall_T);
Bram Moolenaar4456ab52019-01-23 23:00:30 +01001101 if (fc == NULL)
1102 return;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001103 fc->caller = current_funccal;
1104 current_funccal = fc;
1105 fc->func = fp;
1106 fc->rettv = rettv;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001107 fc->level = ex_nesting_level;
Bram Moolenaare38eab22019-12-05 21:50:01 +01001108 // Check if this function has a breakpoint.
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001109 fc->breakpoint = dbg_find_breakpoint(FALSE, fp->uf_name, (linenr_T)0);
1110 fc->dbg_tick = debug_tick;
Bram Moolenaare38eab22019-12-05 21:50:01 +01001111 // Set up fields for closure.
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +02001112 ga_init2(&fc->fc_funcs, sizeof(ufunc_T *), 1);
Bram Moolenaar437bafe2016-08-01 15:40:54 +02001113 func_ptr_ref(fp);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001114
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001115 if (fp->uf_dfunc_idx >= 0)
1116 {
1117 estack_push_ufunc(ETYPE_UFUNC, fp, 1);
Bram Moolenaar0f18b6d2020-02-02 17:22:27 +01001118 save_current_sctx = current_sctx;
1119 current_sctx = fp->uf_script_ctx;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001120
1121 // Execute the compiled function.
1122 call_def_function(fp, argcount, argvars, rettv);
1123 --depth;
1124 current_funccal = fc->caller;
1125
1126 estack_pop();
Bram Moolenaar0f18b6d2020-02-02 17:22:27 +01001127 current_sctx = save_current_sctx;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001128 free_funccal(fc);
1129 return;
1130 }
1131
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001132 if (STRNCMP(fp->uf_name, "<lambda>", 8) == 0)
1133 islambda = TRUE;
1134
1135 /*
1136 * Note about using fc->fixvar[]: This is an array of FIXVAR_CNT variables
1137 * with names up to VAR_SHORT_LEN long. This avoids having to alloc/free
1138 * each argument variable and saves a lot of time.
1139 */
1140 /*
1141 * Init l: variables.
1142 */
1143 init_var_dict(&fc->l_vars, &fc->l_vars_var, VAR_DEF_SCOPE);
1144 if (selfdict != NULL)
1145 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01001146 // Set l:self to "selfdict". Use "name" to avoid a warning from
1147 // some compiler that checks the destination size.
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001148 v = &fc->fixvar[fixvar_idx++].var;
1149 name = v->di_key;
1150 STRCPY(name, "self");
Bram Moolenaar31b81602019-02-10 22:14:27 +01001151 v->di_flags = DI_FLAGS_RO | DI_FLAGS_FIX;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001152 hash_add(&fc->l_vars.dv_hashtab, DI2HIKEY(v));
1153 v->di_tv.v_type = VAR_DICT;
1154 v->di_tv.v_lock = 0;
1155 v->di_tv.vval.v_dict = selfdict;
1156 ++selfdict->dv_refcount;
1157 }
1158
1159 /*
Bram Moolenaarf10806b2020-04-02 18:34:35 +02001160 * Init a: variables, unless none found (in lambda).
Bram Moolenaar42ae78c2019-05-09 21:08:58 +02001161 * Set a:0 to "argcount" less number of named arguments, if >= 0.
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001162 * Set a:000 to a list with room for the "..." arguments.
1163 */
1164 init_var_dict(&fc->l_avars, &fc->l_avars_var, VAR_SCOPE);
Bram Moolenaarf10806b2020-04-02 18:34:35 +02001165 if ((fp->uf_flags & FC_NOARGS) == 0)
1166 add_nr_var(&fc->l_avars, &fc->fixvar[fixvar_idx++].var, "0",
Bram Moolenaar42ae78c2019-05-09 21:08:58 +02001167 (varnumber_T)(argcount >= fp->uf_args.ga_len
1168 ? argcount - fp->uf_args.ga_len : 0));
Bram Moolenaar31b81602019-02-10 22:14:27 +01001169 fc->l_avars.dv_lock = VAR_FIXED;
Bram Moolenaarf10806b2020-04-02 18:34:35 +02001170 if ((fp->uf_flags & FC_NOARGS) == 0)
1171 {
1172 // Use "name" to avoid a warning from some compiler that checks the
1173 // destination size.
1174 v = &fc->fixvar[fixvar_idx++].var;
1175 name = v->di_key;
1176 STRCPY(name, "000");
1177 v->di_flags = DI_FLAGS_RO | DI_FLAGS_FIX;
1178 hash_add(&fc->l_avars.dv_hashtab, DI2HIKEY(v));
1179 v->di_tv.v_type = VAR_LIST;
1180 v->di_tv.v_lock = VAR_FIXED;
1181 v->di_tv.vval.v_list = &fc->l_varlist;
1182 }
Bram Moolenaara80faa82020-04-12 19:37:17 +02001183 CLEAR_FIELD(fc->l_varlist);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001184 fc->l_varlist.lv_refcount = DO_NOT_FREE_CNT;
1185 fc->l_varlist.lv_lock = VAR_FIXED;
1186
1187 /*
1188 * Set a:firstline to "firstline" and a:lastline to "lastline".
1189 * Set a:name to named arguments.
1190 * Set a:N to the "..." arguments.
Bram Moolenaarf10806b2020-04-02 18:34:35 +02001191 * Skipped when no a: variables used (in lambda).
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001192 */
Bram Moolenaarf10806b2020-04-02 18:34:35 +02001193 if ((fp->uf_flags & FC_NOARGS) == 0)
1194 {
1195 add_nr_var(&fc->l_avars, &fc->fixvar[fixvar_idx++].var, "firstline",
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001196 (varnumber_T)firstline);
Bram Moolenaarf10806b2020-04-02 18:34:35 +02001197 add_nr_var(&fc->l_avars, &fc->fixvar[fixvar_idx++].var, "lastline",
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001198 (varnumber_T)lastline);
Bram Moolenaarf10806b2020-04-02 18:34:35 +02001199 }
Bram Moolenaar42ae78c2019-05-09 21:08:58 +02001200 for (i = 0; i < argcount || i < fp->uf_args.ga_len; ++i)
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001201 {
1202 int addlocal = FALSE;
Bram Moolenaar42ae78c2019-05-09 21:08:58 +02001203 typval_T def_rettv;
1204 int isdefault = FALSE;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001205
1206 ai = i - fp->uf_args.ga_len;
1207 if (ai < 0)
1208 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01001209 // named argument a:name
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001210 name = FUNCARG(fp, i);
1211 if (islambda)
1212 addlocal = TRUE;
Bram Moolenaar42ae78c2019-05-09 21:08:58 +02001213
1214 // evaluate named argument default expression
1215 isdefault = ai + fp->uf_def_args.ga_len >= 0
1216 && (i >= argcount || (argvars[i].v_type == VAR_SPECIAL
1217 && argvars[i].vval.v_number == VVAL_NONE));
1218 if (isdefault)
1219 {
1220 char_u *default_expr = NULL;
1221 def_rettv.v_type = VAR_NUMBER;
1222 def_rettv.vval.v_number = -1;
1223
1224 default_expr = ((char_u **)(fp->uf_def_args.ga_data))
1225 [ai + fp->uf_def_args.ga_len];
1226 if (eval1(&default_expr, &def_rettv, TRUE) == FAIL)
1227 {
1228 default_arg_err = 1;
1229 break;
1230 }
1231 }
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001232 }
1233 else
1234 {
Bram Moolenaarf10806b2020-04-02 18:34:35 +02001235 if ((fp->uf_flags & FC_NOARGS) != 0)
1236 // Bail out if no a: arguments used (in lambda).
1237 break;
1238
Bram Moolenaare38eab22019-12-05 21:50:01 +01001239 // "..." argument a:1, a:2, etc.
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001240 sprintf((char *)numbuf, "%d", ai + 1);
1241 name = numbuf;
1242 }
1243 if (fixvar_idx < FIXVAR_CNT && STRLEN(name) <= VAR_SHORT_LEN)
1244 {
1245 v = &fc->fixvar[fixvar_idx++].var;
1246 v->di_flags = DI_FLAGS_RO | DI_FLAGS_FIX;
Bram Moolenaar209b8e32019-03-14 13:43:24 +01001247 STRCPY(v->di_key, name);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001248 }
1249 else
1250 {
Bram Moolenaar209b8e32019-03-14 13:43:24 +01001251 v = dictitem_alloc(name);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001252 if (v == NULL)
1253 break;
Bram Moolenaar209b8e32019-03-14 13:43:24 +01001254 v->di_flags |= DI_FLAGS_RO | DI_FLAGS_FIX;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001255 }
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001256
Bram Moolenaar6e5000d2019-06-17 21:18:41 +02001257 // Note: the values are copied directly to avoid alloc/free.
1258 // "argvars" must have VAR_FIXED for v_lock.
1259 v->di_tv = isdefault ? def_rettv : argvars[i];
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001260 v->di_tv.v_lock = VAR_FIXED;
1261
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001262 if (addlocal)
1263 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01001264 // Named arguments should be accessed without the "a:" prefix in
1265 // lambda expressions. Add to the l: dict.
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +02001266 copy_tv(&v->di_tv, &v->di_tv);
1267 hash_add(&fc->l_vars.dv_hashtab, DI2HIKEY(v));
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001268 }
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +02001269 else
1270 hash_add(&fc->l_avars.dv_hashtab, DI2HIKEY(v));
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001271
1272 if (ai >= 0 && ai < MAX_FUNC_ARGS)
1273 {
Bram Moolenaar209b8e32019-03-14 13:43:24 +01001274 listitem_T *li = &fc->l_listitems[ai];
1275
1276 li->li_tv = argvars[i];
1277 li->li_tv.v_lock = VAR_FIXED;
1278 list_append(&fc->l_varlist, li);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001279 }
1280 }
1281
Bram Moolenaare38eab22019-12-05 21:50:01 +01001282 // Don't redraw while executing the function.
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001283 ++RedrawingDisabled;
Bram Moolenaar93343722018-07-10 19:39:18 +02001284
1285 if (fp->uf_flags & FC_SANDBOX)
1286 {
1287 using_sandbox = TRUE;
1288 ++sandbox;
1289 }
1290
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01001291 estack_push_ufunc(ETYPE_UFUNC, fp, 1);
Bram Moolenaare31ee862020-01-07 20:59:34 +01001292 ESTACK_CHECK_SETUP
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01001293 if (p_verbose >= 12)
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001294 {
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01001295 ++no_wait_return;
1296 verbose_enter_scroll();
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001297
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01001298 smsg(_("calling %s"), SOURCING_NAME);
1299 if (p_verbose >= 14)
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001300 {
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01001301 char_u buf[MSG_BUF_LEN];
1302 char_u numbuf2[NUMBUFLEN];
1303 char_u *tofree;
1304 char_u *s;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001305
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01001306 msg_puts("(");
1307 for (i = 0; i < argcount; ++i)
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001308 {
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01001309 if (i > 0)
1310 msg_puts(", ");
1311 if (argvars[i].v_type == VAR_NUMBER)
1312 msg_outnum((long)argvars[i].vval.v_number);
1313 else
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001314 {
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01001315 // Do not want errors such as E724 here.
1316 ++emsg_off;
1317 s = tv2string(&argvars[i], &tofree, numbuf2, 0);
1318 --emsg_off;
1319 if (s != NULL)
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001320 {
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01001321 if (vim_strsize(s) > MSG_BUF_CLEN)
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001322 {
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01001323 trunc_string(s, buf, MSG_BUF_CLEN, MSG_BUF_LEN);
1324 s = buf;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001325 }
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01001326 msg_puts((char *)s);
1327 vim_free(tofree);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001328 }
1329 }
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001330 }
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01001331 msg_puts(")");
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001332 }
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01001333 msg_puts("\n"); // don't overwrite this either
1334
1335 verbose_leave_scroll();
1336 --no_wait_return;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001337 }
1338#ifdef FEAT_PROFILE
1339 if (do_profiling == PROF_YES)
1340 {
1341 if (!fp->uf_profiling && has_profiling(FALSE, fp->uf_name, NULL))
Bram Moolenaarad648092018-06-30 18:28:03 +02001342 {
1343 started_profiling = TRUE;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001344 func_do_profile(fp);
Bram Moolenaarad648092018-06-30 18:28:03 +02001345 }
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001346 if (fp->uf_profiling
1347 || (fc->caller != NULL && fc->caller->func->uf_profiling))
1348 {
1349 ++fp->uf_tm_count;
1350 profile_start(&call_start);
1351 profile_zero(&fp->uf_tm_children);
1352 }
1353 script_prof_save(&wait_start);
1354 }
1355#endif
1356
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02001357 save_current_sctx = current_sctx;
1358 current_sctx = fp->uf_script_ctx;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001359 save_did_emsg = did_emsg;
1360 did_emsg = FALSE;
1361
Bram Moolenaar42ae78c2019-05-09 21:08:58 +02001362 if (default_arg_err && (fp->uf_flags & FC_ABORT))
1363 did_emsg = TRUE;
Bram Moolenaarf10806b2020-04-02 18:34:35 +02001364 else if (islambda)
1365 {
1366 char_u *p = *(char_u **)fp->uf_lines.ga_data + 7;
1367
1368 // A Lambda always has the command "return {expr}". It is much faster
1369 // to evaluate {expr} directly.
1370 ++ex_nesting_level;
Bram Moolenaard1e9dc22020-04-03 18:13:57 +02001371 (void)eval1(&p, rettv, TRUE);
Bram Moolenaarf10806b2020-04-02 18:34:35 +02001372 --ex_nesting_level;
1373 }
Bram Moolenaar42ae78c2019-05-09 21:08:58 +02001374 else
1375 // call do_cmdline() to execute the lines
1376 do_cmdline(NULL, get_func_line, (void *)fc,
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001377 DOCMD_NOWAIT|DOCMD_VERBOSE|DOCMD_REPEAT);
1378
1379 --RedrawingDisabled;
1380
Bram Moolenaare38eab22019-12-05 21:50:01 +01001381 // when the function was aborted because of an error, return -1
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001382 if ((did_emsg && (fp->uf_flags & FC_ABORT)) || rettv->v_type == VAR_UNKNOWN)
1383 {
1384 clear_tv(rettv);
1385 rettv->v_type = VAR_NUMBER;
1386 rettv->vval.v_number = -1;
1387 }
1388
1389#ifdef FEAT_PROFILE
1390 if (do_profiling == PROF_YES && (fp->uf_profiling
1391 || (fc->caller != NULL && fc->caller->func->uf_profiling)))
1392 {
1393 profile_end(&call_start);
1394 profile_sub_wait(&wait_start, &call_start);
1395 profile_add(&fp->uf_tm_total, &call_start);
1396 profile_self(&fp->uf_tm_self, &call_start, &fp->uf_tm_children);
1397 if (fc->caller != NULL && fc->caller->func->uf_profiling)
1398 {
1399 profile_add(&fc->caller->func->uf_tm_children, &call_start);
1400 profile_add(&fc->caller->func->uf_tml_children, &call_start);
1401 }
Bram Moolenaarad648092018-06-30 18:28:03 +02001402 if (started_profiling)
1403 // make a ":profdel func" stop profiling the function
1404 fp->uf_profiling = FALSE;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001405 }
1406#endif
1407
Bram Moolenaare38eab22019-12-05 21:50:01 +01001408 // when being verbose, mention the return value
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001409 if (p_verbose >= 12)
1410 {
1411 ++no_wait_return;
1412 verbose_enter_scroll();
1413
1414 if (aborting())
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01001415 smsg(_("%s aborted"), SOURCING_NAME);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001416 else if (fc->rettv->v_type == VAR_NUMBER)
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01001417 smsg(_("%s returning #%ld"), SOURCING_NAME,
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001418 (long)fc->rettv->vval.v_number);
1419 else
1420 {
1421 char_u buf[MSG_BUF_LEN];
1422 char_u numbuf2[NUMBUFLEN];
1423 char_u *tofree;
1424 char_u *s;
1425
Bram Moolenaare38eab22019-12-05 21:50:01 +01001426 // The value may be very long. Skip the middle part, so that we
1427 // have some idea how it starts and ends. smsg() would always
1428 // truncate it at the end. Don't want errors such as E724 here.
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001429 ++emsg_off;
1430 s = tv2string(fc->rettv, &tofree, numbuf2, 0);
1431 --emsg_off;
1432 if (s != NULL)
1433 {
1434 if (vim_strsize(s) > MSG_BUF_CLEN)
1435 {
1436 trunc_string(s, buf, MSG_BUF_CLEN, MSG_BUF_LEN);
1437 s = buf;
1438 }
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01001439 smsg(_("%s returning %s"), SOURCING_NAME, s);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001440 vim_free(tofree);
1441 }
1442 }
Bram Moolenaare38eab22019-12-05 21:50:01 +01001443 msg_puts("\n"); // don't overwrite this either
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001444
1445 verbose_leave_scroll();
1446 --no_wait_return;
1447 }
1448
Bram Moolenaare31ee862020-01-07 20:59:34 +01001449 ESTACK_CHECK_NOW
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01001450 estack_pop();
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02001451 current_sctx = save_current_sctx;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001452#ifdef FEAT_PROFILE
1453 if (do_profiling == PROF_YES)
1454 script_prof_restore(&wait_start);
1455#endif
Bram Moolenaar93343722018-07-10 19:39:18 +02001456 if (using_sandbox)
1457 --sandbox;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001458
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01001459 if (p_verbose >= 12 && SOURCING_NAME != NULL)
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001460 {
1461 ++no_wait_return;
1462 verbose_enter_scroll();
1463
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01001464 smsg(_("continuing in %s"), SOURCING_NAME);
Bram Moolenaare38eab22019-12-05 21:50:01 +01001465 msg_puts("\n"); // don't overwrite this either
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001466
1467 verbose_leave_scroll();
1468 --no_wait_return;
1469 }
1470
1471 did_emsg |= save_did_emsg;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001472 --depth;
1473
Bram Moolenaar6914c642017-04-01 21:21:30 +02001474 cleanup_function_call(fc);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001475}
1476
1477/*
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001478 * Call a user function after checking the arguments.
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +02001479 */
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001480 int
1481call_user_func_check(
1482 ufunc_T *fp,
1483 int argcount,
1484 typval_T *argvars,
1485 typval_T *rettv,
1486 funcexe_T *funcexe,
1487 dict_T *selfdict)
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +02001488{
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001489 int error;
1490 int regular_args = fp->uf_args.ga_len;
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +02001491
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001492 if (fp->uf_flags & FC_RANGE && funcexe->doesrange != NULL)
1493 *funcexe->doesrange = TRUE;
1494 if (argcount < regular_args - fp->uf_def_args.ga_len)
1495 error = FCERR_TOOFEW;
1496 else if (!has_varargs(fp) && argcount > regular_args)
1497 error = FCERR_TOOMANY;
1498 else if ((fp->uf_flags & FC_DICT) && selfdict == NULL)
1499 error = FCERR_DICT;
1500 else
Bram Moolenaar8dd3a432016-08-01 20:46:25 +02001501 {
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001502 int did_save_redo = FALSE;
1503 save_redo_T save_redo;
1504
1505 /*
1506 * Call the user function.
1507 * Save and restore search patterns, script variables and
1508 * redo buffer.
1509 */
1510 save_search_patterns();
1511 if (!ins_compl_active())
1512 {
1513 saveRedobuff(&save_redo);
1514 did_save_redo = TRUE;
1515 }
1516 ++fp->uf_calls;
1517 call_user_func(fp, argcount, argvars, rettv,
1518 funcexe->firstline, funcexe->lastline,
1519 (fp->uf_flags & FC_DICT) ? selfdict : NULL);
1520 if (--fp->uf_calls <= 0 && fp->uf_refcount <= 0)
1521 // Function was unreferenced while being used, free it now.
1522 func_clear_free(fp, FALSE);
1523 if (did_save_redo)
1524 restoreRedobuff(&save_redo);
1525 restore_search_patterns();
1526 error = FCERR_NONE;
Bram Moolenaar8dd3a432016-08-01 20:46:25 +02001527 }
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001528 return error;
Bram Moolenaar03ff9bc2017-02-02 22:59:27 +01001529}
1530
1531/*
Bram Moolenaarc2574872016-08-11 22:51:05 +02001532 * There are two kinds of function names:
1533 * 1. ordinary names, function defined with :function
1534 * 2. numbered functions and lambdas
1535 * For the first we only count the name stored in func_hashtab as a reference,
1536 * using function() does not count as a reference, because the function is
1537 * looked up by name.
1538 */
1539 static int
1540func_name_refcount(char_u *name)
1541{
1542 return isdigit(*name) || *name == '<';
1543}
1544
Bram Moolenaar27e80c82018-10-14 21:41:01 +02001545static funccal_entry_T *funccal_stack = NULL;
1546
1547/*
1548 * Save the current function call pointer, and set it to NULL.
1549 * Used when executing autocommands and for ":source".
1550 */
1551 void
1552save_funccal(funccal_entry_T *entry)
1553{
1554 entry->top_funccal = current_funccal;
1555 entry->next = funccal_stack;
1556 funccal_stack = entry;
1557 current_funccal = NULL;
1558}
1559
1560 void
1561restore_funccal(void)
1562{
1563 if (funccal_stack == NULL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001564 iemsg("INTERNAL: restore_funccal()");
Bram Moolenaar27e80c82018-10-14 21:41:01 +02001565 else
1566 {
1567 current_funccal = funccal_stack->top_funccal;
1568 funccal_stack = funccal_stack->next;
1569 }
1570}
1571
Bram Moolenaarfa55cfc2019-07-13 22:59:32 +02001572 funccall_T *
1573get_current_funccal(void)
1574{
1575 return current_funccal;
1576}
1577
Bram Moolenaar4c17ad92020-04-27 22:47:51 +02001578/*
1579 * Mark all functions of script "sid" as deleted.
1580 */
1581 void
1582delete_script_functions(int sid)
1583{
1584 hashitem_T *hi;
1585 ufunc_T *fp;
1586 long_u todo;
Bram Moolenaar909ed7e2020-04-27 23:16:41 +02001587 char_u buf[30];
Bram Moolenaar4c17ad92020-04-27 22:47:51 +02001588 size_t len;
1589
1590 buf[0] = K_SPECIAL;
1591 buf[1] = KS_EXTRA;
1592 buf[2] = (int)KE_SNR;
Bram Moolenaar909ed7e2020-04-27 23:16:41 +02001593 sprintf((char *)buf + 3, "%d_", sid);
Bram Moolenaar4c17ad92020-04-27 22:47:51 +02001594 len = STRLEN(buf);
1595
1596 todo = func_hashtab.ht_used;
1597 for (hi = func_hashtab.ht_array; todo > 0; ++hi)
1598 if (!HASHITEM_EMPTY(hi))
1599 {
Bram Moolenaar03afdcf2020-04-27 23:39:30 +02001600 fp = HI2UF(hi);
Bram Moolenaar4c17ad92020-04-27 22:47:51 +02001601 if (STRNCMP(fp->uf_name, buf, len) == 0)
1602 {
Bram Moolenaar4c17ad92020-04-27 22:47:51 +02001603 fp->uf_flags |= FC_DEAD;
1604 func_clear(fp, TRUE);
1605 }
1606 --todo;
1607 }
1608}
1609
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001610#if defined(EXITFREE) || defined(PROTO)
1611 void
1612free_all_functions(void)
1613{
1614 hashitem_T *hi;
Bram Moolenaarc2574872016-08-11 22:51:05 +02001615 ufunc_T *fp;
1616 long_u skipped = 0;
Bram Moolenaar03ff9bc2017-02-02 22:59:27 +01001617 long_u todo = 1;
1618 long_u used;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001619
Bram Moolenaare38eab22019-12-05 21:50:01 +01001620 // Clean up the current_funccal chain and the funccal stack.
Bram Moolenaar6914c642017-04-01 21:21:30 +02001621 while (current_funccal != NULL)
1622 {
1623 clear_tv(current_funccal->rettv);
1624 cleanup_function_call(current_funccal);
Bram Moolenaar27e80c82018-10-14 21:41:01 +02001625 if (current_funccal == NULL && funccal_stack != NULL)
1626 restore_funccal();
Bram Moolenaar6914c642017-04-01 21:21:30 +02001627 }
1628
Bram Moolenaare38eab22019-12-05 21:50:01 +01001629 // First clear what the functions contain. Since this may lower the
1630 // reference count of a function, it may also free a function and change
1631 // the hash table. Restart if that happens.
Bram Moolenaar03ff9bc2017-02-02 22:59:27 +01001632 while (todo > 0)
1633 {
1634 todo = func_hashtab.ht_used;
1635 for (hi = func_hashtab.ht_array; todo > 0; ++hi)
1636 if (!HASHITEM_EMPTY(hi))
1637 {
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001638 // clear the def function index now
1639 fp = HI2UF(hi);
1640 fp->uf_flags &= ~FC_DEAD;
1641 fp->uf_dfunc_idx = -1;
1642
Bram Moolenaare38eab22019-12-05 21:50:01 +01001643 // Only free functions that are not refcounted, those are
1644 // supposed to be freed when no longer referenced.
Bram Moolenaar03ff9bc2017-02-02 22:59:27 +01001645 if (func_name_refcount(fp->uf_name))
1646 ++skipped;
1647 else
1648 {
1649 used = func_hashtab.ht_used;
1650 func_clear(fp, TRUE);
1651 if (used != func_hashtab.ht_used)
1652 {
1653 skipped = 0;
1654 break;
1655 }
1656 }
1657 --todo;
1658 }
1659 }
1660
Bram Moolenaare38eab22019-12-05 21:50:01 +01001661 // Now actually free the functions. Need to start all over every time,
1662 // because func_free() may change the hash table.
Bram Moolenaar03ff9bc2017-02-02 22:59:27 +01001663 skipped = 0;
Bram Moolenaarc2574872016-08-11 22:51:05 +02001664 while (func_hashtab.ht_used > skipped)
1665 {
1666 todo = func_hashtab.ht_used;
1667 for (hi = func_hashtab.ht_array; todo > 0; ++hi)
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001668 if (!HASHITEM_EMPTY(hi))
1669 {
Bram Moolenaarc2574872016-08-11 22:51:05 +02001670 --todo;
Bram Moolenaare38eab22019-12-05 21:50:01 +01001671 // Only free functions that are not refcounted, those are
1672 // supposed to be freed when no longer referenced.
Bram Moolenaarc2574872016-08-11 22:51:05 +02001673 fp = HI2UF(hi);
1674 if (func_name_refcount(fp->uf_name))
1675 ++skipped;
1676 else
1677 {
Bram Moolenaarf7779c62020-05-03 15:38:16 +02001678 func_free(fp, FALSE);
Bram Moolenaarc2574872016-08-11 22:51:05 +02001679 skipped = 0;
1680 break;
1681 }
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001682 }
Bram Moolenaarc2574872016-08-11 22:51:05 +02001683 }
1684 if (skipped == 0)
1685 hash_clear(&func_hashtab);
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001686
1687 free_def_functions();
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001688}
1689#endif
1690
1691/*
1692 * Return TRUE if "name" looks like a builtin function name: starts with a
Bram Moolenaara26b9702020-04-18 19:53:28 +02001693 * lower case letter and doesn't contain AUTOLOAD_CHAR or ':'.
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001694 * "len" is the length of "name", or -1 for NUL terminated.
1695 */
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001696 int
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001697builtin_function(char_u *name, int len)
1698{
1699 char_u *p;
1700
Bram Moolenaara26b9702020-04-18 19:53:28 +02001701 if (!ASCII_ISLOWER(name[0]) || name[1] == ':')
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001702 return FALSE;
1703 p = vim_strchr(name, AUTOLOAD_CHAR);
1704 return p == NULL || (len > 0 && p > name + len);
1705}
1706
1707 int
1708func_call(
1709 char_u *name,
1710 typval_T *args,
1711 partial_T *partial,
1712 dict_T *selfdict,
1713 typval_T *rettv)
1714{
Bram Moolenaar50985eb2020-01-27 22:09:39 +01001715 list_T *l = args->vval.v_list;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001716 listitem_T *item;
1717 typval_T argv[MAX_FUNC_ARGS + 1];
1718 int argc = 0;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001719 int r = 0;
1720
Bram Moolenaar50985eb2020-01-27 22:09:39 +01001721 range_list_materialize(l);
Bram Moolenaar00d253e2020-04-06 22:13:01 +02001722 FOR_ALL_LIST_ITEMS(l, item)
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001723 {
1724 if (argc == MAX_FUNC_ARGS - (partial == NULL ? 0 : partial->pt_argc))
1725 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001726 emsg(_("E699: Too many arguments"));
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001727 break;
1728 }
Bram Moolenaare38eab22019-12-05 21:50:01 +01001729 // Make a copy of each argument. This is needed to be able to set
1730 // v_lock to VAR_FIXED in the copy without changing the original list.
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001731 copy_tv(&item->li_tv, &argv[argc++]);
1732 }
1733
1734 if (item == NULL)
Bram Moolenaarc6538bc2019-08-03 18:17:11 +02001735 {
1736 funcexe_T funcexe;
1737
Bram Moolenaara80faa82020-04-12 19:37:17 +02001738 CLEAR_FIELD(funcexe);
Bram Moolenaarc6538bc2019-08-03 18:17:11 +02001739 funcexe.firstline = curwin->w_cursor.lnum;
1740 funcexe.lastline = curwin->w_cursor.lnum;
Bram Moolenaarc6538bc2019-08-03 18:17:11 +02001741 funcexe.evaluate = TRUE;
1742 funcexe.partial = partial;
1743 funcexe.selfdict = selfdict;
1744 r = call_func(name, -1, rettv, argc, argv, &funcexe);
1745 }
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001746
Bram Moolenaare38eab22019-12-05 21:50:01 +01001747 // Free the arguments.
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001748 while (argc > 0)
1749 clear_tv(&argv[--argc]);
1750
1751 return r;
1752}
1753
Bram Moolenaar0e57dd82019-09-16 22:56:03 +02001754static int callback_depth = 0;
1755
1756 int
1757get_callback_depth(void)
1758{
1759 return callback_depth;
1760}
1761
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001762/*
Bram Moolenaar3a97bb32019-06-01 13:28:35 +02001763 * Invoke call_func() with a callback.
1764 */
1765 int
1766call_callback(
1767 callback_T *callback,
1768 int len, // length of "name" or -1 to use strlen()
1769 typval_T *rettv, // return value goes here
1770 int argcount, // number of "argvars"
Bram Moolenaarc6538bc2019-08-03 18:17:11 +02001771 typval_T *argvars) // vars for arguments, must have "argcount"
Bram Moolenaar3a97bb32019-06-01 13:28:35 +02001772 // PLUS ONE elements!
Bram Moolenaar3a97bb32019-06-01 13:28:35 +02001773{
Bram Moolenaarc6538bc2019-08-03 18:17:11 +02001774 funcexe_T funcexe;
Bram Moolenaar0e57dd82019-09-16 22:56:03 +02001775 int ret;
Bram Moolenaarc6538bc2019-08-03 18:17:11 +02001776
Bram Moolenaara80faa82020-04-12 19:37:17 +02001777 CLEAR_FIELD(funcexe);
Bram Moolenaarc6538bc2019-08-03 18:17:11 +02001778 funcexe.evaluate = TRUE;
1779 funcexe.partial = callback->cb_partial;
Bram Moolenaar0e57dd82019-09-16 22:56:03 +02001780 ++callback_depth;
1781 ret = call_func(callback->cb_name, len, rettv, argcount, argvars, &funcexe);
1782 --callback_depth;
1783 return ret;
Bram Moolenaar3a97bb32019-06-01 13:28:35 +02001784}
1785
1786/*
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001787 * Give an error message for the result of a function.
1788 * Nothing if "error" is FCERR_NONE.
1789 */
1790 void
1791user_func_error(int error, char_u *name)
1792{
1793 switch (error)
1794 {
1795 case FCERR_UNKNOWN:
1796 emsg_funcname(e_unknownfunc, name);
1797 break;
1798 case FCERR_NOTMETHOD:
1799 emsg_funcname(
1800 N_("E276: Cannot use function as a method: %s"), name);
1801 break;
1802 case FCERR_DELETED:
1803 emsg_funcname(N_(e_func_deleted), name);
1804 break;
1805 case FCERR_TOOMANY:
1806 emsg_funcname((char *)e_toomanyarg, name);
1807 break;
1808 case FCERR_TOOFEW:
1809 emsg_funcname((char *)e_toofewarg, name);
1810 break;
1811 case FCERR_SCRIPT:
1812 emsg_funcname(
1813 N_("E120: Using <SID> not in a script context: %s"), name);
1814 break;
1815 case FCERR_DICT:
1816 emsg_funcname(
1817 N_("E725: Calling dict function without Dictionary: %s"),
1818 name);
1819 break;
1820 }
1821}
1822
1823/*
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001824 * Call a function with its resolved parameters
Bram Moolenaardf48fb42016-07-22 21:50:18 +02001825 *
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001826 * Return FAIL when the function can't be called, OK otherwise.
1827 * Also returns OK when an error was encountered while executing the function.
1828 */
1829 int
1830call_func(
Bram Moolenaar6ed88192019-05-11 18:37:44 +02001831 char_u *funcname, // name of the function
1832 int len, // length of "name" or -1 to use strlen()
1833 typval_T *rettv, // return value goes here
1834 int argcount_in, // number of "argvars"
1835 typval_T *argvars_in, // vars for arguments, must have "argcount"
1836 // PLUS ONE elements!
Bram Moolenaarc6538bc2019-08-03 18:17:11 +02001837 funcexe_T *funcexe) // more arguments
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001838{
1839 int ret = FAIL;
Bram Moolenaaref140542019-12-31 21:27:13 +01001840 int error = FCERR_NONE;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001841 int i;
Bram Moolenaarf10806b2020-04-02 18:34:35 +02001842 ufunc_T *fp = NULL;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001843 char_u fname_buf[FLEN_FIXED + 1];
1844 char_u *tofree = NULL;
Bram Moolenaarf10806b2020-04-02 18:34:35 +02001845 char_u *fname = NULL;
1846 char_u *name = NULL;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001847 int argcount = argcount_in;
1848 typval_T *argvars = argvars_in;
Bram Moolenaarc6538bc2019-08-03 18:17:11 +02001849 dict_T *selfdict = funcexe->selfdict;
Bram Moolenaarfcfe1a92019-08-04 23:04:39 +02001850 typval_T argv[MAX_FUNC_ARGS + 1]; // used when "partial" or
1851 // "funcexe->basetv" is not NULL
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001852 int argv_clear = 0;
Bram Moolenaar761fdf02019-08-05 23:10:16 +02001853 int argv_base = 0;
Bram Moolenaarc6538bc2019-08-03 18:17:11 +02001854 partial_T *partial = funcexe->partial;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001855
Bram Moolenaarc507a2d2019-08-29 21:32:55 +02001856 // Initialize rettv so that it is safe for caller to invoke clear_tv(rettv)
1857 // even when call_func() returns FAIL.
1858 rettv->v_type = VAR_UNKNOWN;
1859
Bram Moolenaarf10806b2020-04-02 18:34:35 +02001860 if (partial != NULL)
1861 fp = partial->pt_func;
1862 if (fp == NULL)
1863 {
1864 // Make a copy of the name, if it comes from a funcref variable it
1865 // could be changed or deleted in the called function.
1866 name = len > 0 ? vim_strnsave(funcname, len) : vim_strsave(funcname);
1867 if (name == NULL)
1868 return ret;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001869
Bram Moolenaarf10806b2020-04-02 18:34:35 +02001870 fname = fname_trans_sid(name, fname_buf, &tofree, &error);
1871 }
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001872
Bram Moolenaarc6538bc2019-08-03 18:17:11 +02001873 if (funcexe->doesrange != NULL)
1874 *funcexe->doesrange = FALSE;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001875
1876 if (partial != NULL)
1877 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01001878 // When the function has a partial with a dict and there is a dict
1879 // argument, use the dict argument. That is backwards compatible.
1880 // When the dict was bound explicitly use the one from the partial.
Bram Moolenaarc6538bc2019-08-03 18:17:11 +02001881 if (partial->pt_dict != NULL && (selfdict == NULL || !partial->pt_auto))
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001882 selfdict = partial->pt_dict;
Bram Moolenaaref140542019-12-31 21:27:13 +01001883 if (error == FCERR_NONE && partial->pt_argc > 0)
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001884 {
1885 for (argv_clear = 0; argv_clear < partial->pt_argc; ++argv_clear)
Bram Moolenaar4c054e92019-11-10 00:13:50 +01001886 {
1887 if (argv_clear + argcount_in >= MAX_FUNC_ARGS)
1888 {
Bram Moolenaaref140542019-12-31 21:27:13 +01001889 error = FCERR_TOOMANY;
Bram Moolenaar4c054e92019-11-10 00:13:50 +01001890 goto theend;
1891 }
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001892 copy_tv(&partial->pt_argv[argv_clear], &argv[argv_clear]);
Bram Moolenaar4c054e92019-11-10 00:13:50 +01001893 }
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001894 for (i = 0; i < argcount_in; ++i)
1895 argv[i + argv_clear] = argvars_in[i];
1896 argvars = argv;
1897 argcount = partial->pt_argc + argcount_in;
1898 }
1899 }
1900
Bram Moolenaaref140542019-12-31 21:27:13 +01001901 if (error == FCERR_NONE && funcexe->evaluate)
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001902 {
1903 char_u *rfname = fname;
1904
Bram Moolenaare38eab22019-12-05 21:50:01 +01001905 // Ignore "g:" before a function name.
Bram Moolenaarf10806b2020-04-02 18:34:35 +02001906 if (fp == NULL && fname[0] == 'g' && fname[1] == ':')
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001907 rfname = fname + 2;
1908
Bram Moolenaare38eab22019-12-05 21:50:01 +01001909 rettv->v_type = VAR_NUMBER; // default rettv is number zero
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001910 rettv->vval.v_number = 0;
Bram Moolenaaref140542019-12-31 21:27:13 +01001911 error = FCERR_UNKNOWN;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001912
Bram Moolenaarf10806b2020-04-02 18:34:35 +02001913 if (fp != NULL || !builtin_function(rfname, -1))
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001914 {
1915 /*
1916 * User defined function.
1917 */
Bram Moolenaarf10806b2020-04-02 18:34:35 +02001918 if (fp == NULL)
Bram Moolenaar4c17ad92020-04-27 22:47:51 +02001919 fp = find_func(rfname, FALSE, NULL);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001920
Bram Moolenaare38eab22019-12-05 21:50:01 +01001921 // Trigger FuncUndefined event, may load the function.
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001922 if (fp == NULL
1923 && apply_autocmds(EVENT_FUNCUNDEFINED,
Bram Moolenaar4c17ad92020-04-27 22:47:51 +02001924 rfname, rfname, TRUE, NULL)
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001925 && !aborting())
1926 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01001927 // executed an autocommand, search for the function again
Bram Moolenaar4c17ad92020-04-27 22:47:51 +02001928 fp = find_func(rfname, FALSE, NULL);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001929 }
Bram Moolenaare38eab22019-12-05 21:50:01 +01001930 // Try loading a package.
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001931 if (fp == NULL && script_autoload(rfname, TRUE) && !aborting())
1932 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01001933 // loaded a package, search for the function again
Bram Moolenaar4c17ad92020-04-27 22:47:51 +02001934 fp = find_func(rfname, FALSE, NULL);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001935 }
Bram Moolenaara26b9702020-04-18 19:53:28 +02001936 if (fp == NULL)
1937 {
1938 char_u *p = untrans_function_name(rfname);
1939
1940 // If using Vim9 script try not local to the script.
1941 // TODO: should not do this if the name started with "s:".
1942 if (p != NULL)
Bram Moolenaar4c17ad92020-04-27 22:47:51 +02001943 fp = find_func(p, FALSE, NULL);
Bram Moolenaara26b9702020-04-18 19:53:28 +02001944 }
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001945
Bram Moolenaar437bafe2016-08-01 15:40:54 +02001946 if (fp != NULL && (fp->uf_flags & FC_DELETED))
Bram Moolenaaref140542019-12-31 21:27:13 +01001947 error = FCERR_DELETED;
Bram Moolenaar437bafe2016-08-01 15:40:54 +02001948 else if (fp != NULL)
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001949 {
Bram Moolenaarc6538bc2019-08-03 18:17:11 +02001950 if (funcexe->argv_func != NULL)
Bram Moolenaarb0745b22019-11-09 22:28:11 +01001951 // postponed filling in the arguments, do it now
1952 argcount = funcexe->argv_func(argcount, argvars, argv_clear,
Bram Moolenaarc6538bc2019-08-03 18:17:11 +02001953 fp->uf_args.ga_len);
Bram Moolenaardf48fb42016-07-22 21:50:18 +02001954
Bram Moolenaarfcfe1a92019-08-04 23:04:39 +02001955 if (funcexe->basetv != NULL)
1956 {
1957 // Method call: base->Method()
1958 mch_memmove(&argv[1], argvars, sizeof(typval_T) * argcount);
1959 argv[0] = *funcexe->basetv;
1960 argcount++;
Bram Moolenaar761fdf02019-08-05 23:10:16 +02001961 argvars = argv;
1962 argv_base = 1;
Bram Moolenaarfcfe1a92019-08-04 23:04:39 +02001963 }
Bram Moolenaarfcfe1a92019-08-04 23:04:39 +02001964
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001965 error = call_user_func_check(fp, argcount, argvars, rettv,
1966 funcexe, selfdict);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001967 }
1968 }
Bram Moolenaarac92e252019-08-03 21:58:38 +02001969 else if (funcexe->basetv != NULL)
1970 {
1971 /*
Bram Moolenaarfcfe1a92019-08-04 23:04:39 +02001972 * expr->method(): Find the method name in the table, call its
1973 * implementation with the base as one of the arguments.
Bram Moolenaarac92e252019-08-03 21:58:38 +02001974 */
1975 error = call_internal_method(fname, argcount, argvars, rettv,
1976 funcexe->basetv);
1977 }
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001978 else
1979 {
1980 /*
1981 * Find the function name in the table, call its implementation.
1982 */
1983 error = call_internal_func(fname, argcount, argvars, rettv);
1984 }
1985 /*
1986 * The function call (or "FuncUndefined" autocommand sequence) might
1987 * have been aborted by an error, an interrupt, or an explicitly thrown
1988 * exception that has not been caught so far. This situation can be
1989 * tested for by calling aborting(). For an error in an internal
1990 * function or for the "E132" error in call_user_func(), however, the
1991 * throw point at which the "force_abort" flag (temporarily reset by
1992 * emsg()) is normally updated has not been reached yet. We need to
1993 * update that flag first to make aborting() reliable.
1994 */
1995 update_force_abort();
1996 }
Bram Moolenaaref140542019-12-31 21:27:13 +01001997 if (error == FCERR_NONE)
Bram Moolenaara9b579f2016-07-17 18:29:19 +02001998 ret = OK;
1999
Bram Moolenaar4c054e92019-11-10 00:13:50 +01002000theend:
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002001 /*
2002 * Report an error unless the argument evaluation or function call has been
2003 * cancelled due to an aborting error, an interrupt, or an exception.
2004 */
2005 if (!aborting())
2006 {
Bram Moolenaarf10806b2020-04-02 18:34:35 +02002007 user_func_error(error, (name != NULL) ? name : funcname);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002008 }
2009
Bram Moolenaar761fdf02019-08-05 23:10:16 +02002010 // clear the copies made from the partial
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002011 while (argv_clear > 0)
Bram Moolenaar761fdf02019-08-05 23:10:16 +02002012 clear_tv(&argv[--argv_clear + argv_base]);
2013
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002014 vim_free(tofree);
2015 vim_free(name);
2016
2017 return ret;
2018}
2019
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002020 static char_u *
2021printable_func_name(ufunc_T *fp)
2022{
2023 return fp->uf_name_exp != NULL ? fp->uf_name_exp : fp->uf_name;
2024}
2025
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002026/*
Bram Moolenaar61a6d4e2020-03-01 23:32:25 +01002027 * List the head of the function: "function name(arg1, arg2)".
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002028 */
2029 static void
2030list_func_head(ufunc_T *fp, int indent)
2031{
2032 int j;
2033
2034 msg_start();
2035 if (indent)
Bram Moolenaar32526b32019-01-19 17:43:09 +01002036 msg_puts(" ");
Bram Moolenaar61a6d4e2020-03-01 23:32:25 +01002037 if (fp->uf_dfunc_idx >= 0)
2038 msg_puts("def ");
2039 else
2040 msg_puts("function ");
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002041 msg_puts((char *)printable_func_name(fp));
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002042 msg_putchar('(');
2043 for (j = 0; j < fp->uf_args.ga_len; ++j)
2044 {
2045 if (j)
Bram Moolenaar32526b32019-01-19 17:43:09 +01002046 msg_puts(", ");
2047 msg_puts((char *)FUNCARG(fp, j));
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002048 if (fp->uf_arg_types != NULL)
2049 {
2050 char *tofree;
2051
2052 msg_puts(": ");
2053 msg_puts(type_name(fp->uf_arg_types[j], &tofree));
2054 vim_free(tofree);
2055 }
Bram Moolenaar42ae78c2019-05-09 21:08:58 +02002056 if (j >= fp->uf_args.ga_len - fp->uf_def_args.ga_len)
2057 {
2058 msg_puts(" = ");
2059 msg_puts(((char **)(fp->uf_def_args.ga_data))
2060 [j - fp->uf_args.ga_len + fp->uf_def_args.ga_len]);
2061 }
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002062 }
2063 if (fp->uf_varargs)
2064 {
2065 if (j)
Bram Moolenaar32526b32019-01-19 17:43:09 +01002066 msg_puts(", ");
2067 msg_puts("...");
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002068 }
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002069 if (fp->uf_va_name != NULL)
2070 {
2071 if (j)
2072 msg_puts(", ");
2073 msg_puts("...");
2074 msg_puts((char *)fp->uf_va_name);
2075 if (fp->uf_va_type)
2076 {
2077 char *tofree;
2078
2079 msg_puts(": ");
2080 msg_puts(type_name(fp->uf_va_type, &tofree));
2081 vim_free(tofree);
2082 }
2083 }
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002084 msg_putchar(')');
Bram Moolenaar61a6d4e2020-03-01 23:32:25 +01002085
2086 if (fp->uf_dfunc_idx >= 0)
2087 {
2088 if (fp->uf_ret_type != &t_void)
2089 {
2090 char *tofree;
2091
2092 msg_puts(": ");
2093 msg_puts(type_name(fp->uf_ret_type, &tofree));
2094 vim_free(tofree);
2095 }
2096 }
2097 else if (fp->uf_flags & FC_ABORT)
Bram Moolenaar32526b32019-01-19 17:43:09 +01002098 msg_puts(" abort");
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002099 if (fp->uf_flags & FC_RANGE)
Bram Moolenaar32526b32019-01-19 17:43:09 +01002100 msg_puts(" range");
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002101 if (fp->uf_flags & FC_DICT)
Bram Moolenaar32526b32019-01-19 17:43:09 +01002102 msg_puts(" dict");
Bram Moolenaar10ce39a2016-07-29 22:37:06 +02002103 if (fp->uf_flags & FC_CLOSURE)
Bram Moolenaar32526b32019-01-19 17:43:09 +01002104 msg_puts(" closure");
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002105 msg_clr_eos();
2106 if (p_verbose > 0)
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02002107 last_set_msg(fp->uf_script_ctx);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002108}
2109
2110/*
2111 * Get a function name, translating "<SID>" and "<SNR>".
2112 * Also handles a Funcref in a List or Dictionary.
2113 * Returns the function name in allocated memory, or NULL for failure.
Bram Moolenaar4c17ad92020-04-27 22:47:51 +02002114 * Set "*is_global" to TRUE when the function must be global, unless
2115 * "is_global" is NULL.
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002116 * flags:
2117 * TFN_INT: internal function name OK
2118 * TFN_QUIET: be quiet
2119 * TFN_NO_AUTOLOAD: do not use script autoloading
Bram Moolenaarb54c3ff2016-07-31 14:11:58 +02002120 * TFN_NO_DEREF: do not dereference a Funcref
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002121 * Advances "pp" to just after the function name (if no error).
2122 */
Bram Moolenaar437bafe2016-08-01 15:40:54 +02002123 char_u *
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002124trans_function_name(
2125 char_u **pp,
Bram Moolenaar4c17ad92020-04-27 22:47:51 +02002126 int *is_global,
Bram Moolenaare38eab22019-12-05 21:50:01 +01002127 int skip, // only find the end, don't evaluate
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002128 int flags,
Bram Moolenaare38eab22019-12-05 21:50:01 +01002129 funcdict_T *fdp, // return: info about dictionary used
2130 partial_T **partial) // return: partial of a FuncRef
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002131{
2132 char_u *name = NULL;
2133 char_u *start;
2134 char_u *end;
2135 int lead;
2136 char_u sid_buf[20];
2137 int len;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002138 int extra = 0;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002139 lval_T lv;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002140 int vim9script;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002141
2142 if (fdp != NULL)
Bram Moolenaara80faa82020-04-12 19:37:17 +02002143 CLEAR_POINTER(fdp);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002144 start = *pp;
2145
Bram Moolenaare38eab22019-12-05 21:50:01 +01002146 // Check for hard coded <SNR>: already translated function ID (from a user
2147 // command).
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002148 if ((*pp)[0] == K_SPECIAL && (*pp)[1] == KS_EXTRA
2149 && (*pp)[2] == (int)KE_SNR)
2150 {
2151 *pp += 3;
2152 len = get_id_len(pp) + 3;
2153 return vim_strnsave(start, len);
2154 }
2155
Bram Moolenaare38eab22019-12-05 21:50:01 +01002156 // A name starting with "<SID>" or "<SNR>" is local to a script. But
2157 // don't skip over "s:", get_lval() needs it for "s:dict.func".
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002158 lead = eval_fname_script(start);
2159 if (lead > 2)
2160 start += lead;
2161
Bram Moolenaare38eab22019-12-05 21:50:01 +01002162 // Note that TFN_ flags use the same values as GLV_ flags.
Bram Moolenaar6e65d592017-12-07 22:11:27 +01002163 end = get_lval(start, NULL, &lv, FALSE, skip, flags | GLV_READ_ONLY,
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002164 lead > 2 ? 0 : FNE_CHECK_START);
2165 if (end == start)
2166 {
2167 if (!skip)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002168 emsg(_("E129: Function name required"));
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002169 goto theend;
2170 }
2171 if (end == NULL || (lv.ll_tv != NULL && (lead > 2 || lv.ll_range)))
2172 {
2173 /*
2174 * Report an invalid expression in braces, unless the expression
2175 * evaluation has been cancelled due to an aborting error, an
2176 * interrupt, or an exception.
2177 */
2178 if (!aborting())
2179 {
2180 if (end != NULL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002181 semsg(_(e_invarg2), start);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002182 }
2183 else
2184 *pp = find_name_end(start, NULL, NULL, FNE_INCL_BR);
2185 goto theend;
2186 }
2187
2188 if (lv.ll_tv != NULL)
2189 {
2190 if (fdp != NULL)
2191 {
2192 fdp->fd_dict = lv.ll_dict;
2193 fdp->fd_newkey = lv.ll_newkey;
2194 lv.ll_newkey = NULL;
2195 fdp->fd_di = lv.ll_di;
2196 }
2197 if (lv.ll_tv->v_type == VAR_FUNC && lv.ll_tv->vval.v_string != NULL)
2198 {
2199 name = vim_strsave(lv.ll_tv->vval.v_string);
2200 *pp = end;
2201 }
2202 else if (lv.ll_tv->v_type == VAR_PARTIAL
2203 && lv.ll_tv->vval.v_partial != NULL)
2204 {
Bram Moolenaar437bafe2016-08-01 15:40:54 +02002205 name = vim_strsave(partial_name(lv.ll_tv->vval.v_partial));
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002206 *pp = end;
2207 if (partial != NULL)
2208 *partial = lv.ll_tv->vval.v_partial;
2209 }
2210 else
2211 {
2212 if (!skip && !(flags & TFN_QUIET) && (fdp == NULL
2213 || lv.ll_dict == NULL || fdp->fd_newkey == NULL))
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002214 emsg(_(e_funcref));
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002215 else
2216 *pp = end;
2217 name = NULL;
2218 }
2219 goto theend;
2220 }
2221
2222 if (lv.ll_name == NULL)
2223 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01002224 // Error found, but continue after the function name.
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002225 *pp = end;
2226 goto theend;
2227 }
2228
Bram Moolenaare38eab22019-12-05 21:50:01 +01002229 // Check if the name is a Funcref. If so, use the value.
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002230 if (lv.ll_exp_name != NULL)
2231 {
2232 len = (int)STRLEN(lv.ll_exp_name);
2233 name = deref_func_name(lv.ll_exp_name, &len, partial,
2234 flags & TFN_NO_AUTOLOAD);
2235 if (name == lv.ll_exp_name)
2236 name = NULL;
2237 }
Bram Moolenaarb54c3ff2016-07-31 14:11:58 +02002238 else if (!(flags & TFN_NO_DEREF))
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002239 {
2240 len = (int)(end - *pp);
2241 name = deref_func_name(*pp, &len, partial, flags & TFN_NO_AUTOLOAD);
2242 if (name == *pp)
2243 name = NULL;
2244 }
2245 if (name != NULL)
2246 {
2247 name = vim_strsave(name);
2248 *pp = end;
2249 if (STRNCMP(name, "<SNR>", 5) == 0)
2250 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01002251 // Change "<SNR>" to the byte sequence.
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002252 name[0] = K_SPECIAL;
2253 name[1] = KS_EXTRA;
2254 name[2] = (int)KE_SNR;
2255 mch_memmove(name + 3, name + 5, STRLEN(name + 5) + 1);
2256 }
2257 goto theend;
2258 }
2259
2260 if (lv.ll_exp_name != NULL)
2261 {
2262 len = (int)STRLEN(lv.ll_exp_name);
2263 if (lead <= 2 && lv.ll_name == lv.ll_exp_name
2264 && STRNCMP(lv.ll_name, "s:", 2) == 0)
2265 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01002266 // When there was "s:" already or the name expanded to get a
2267 // leading "s:" then remove it.
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002268 lv.ll_name += 2;
2269 len -= 2;
2270 lead = 2;
2271 }
2272 }
2273 else
2274 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01002275 // skip over "s:" and "g:"
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002276 if (lead == 2 || (lv.ll_name[0] == 'g' && lv.ll_name[1] == ':'))
Bram Moolenaar4c17ad92020-04-27 22:47:51 +02002277 {
2278 if (is_global != NULL && lv.ll_name[0] == 'g')
2279 *is_global = TRUE;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002280 lv.ll_name += 2;
Bram Moolenaar4c17ad92020-04-27 22:47:51 +02002281 }
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002282 len = (int)(end - lv.ll_name);
2283 }
2284
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002285 // In Vim9 script a user function is script-local by default.
2286 vim9script = ASCII_ISUPPER(*start)
2287 && current_sctx.sc_version == SCRIPT_VERSION_VIM9;
2288
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002289 /*
2290 * Copy the function name to allocated memory.
2291 * Accept <SID>name() inside a script, translate into <SNR>123_name().
2292 * Accept <SNR>123_name() outside a script.
2293 */
2294 if (skip)
Bram Moolenaare38eab22019-12-05 21:50:01 +01002295 lead = 0; // do nothing
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002296 else if (lead > 0 || vim9script)
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002297 {
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002298 if (!vim9script)
2299 lead = 3;
2300 if (vim9script || (lv.ll_exp_name != NULL
2301 && eval_fname_sid(lv.ll_exp_name))
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002302 || eval_fname_sid(*pp))
2303 {
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002304 // It's script-local, "s:" or "<SID>"
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02002305 if (current_sctx.sc_sid <= 0)
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002306 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002307 emsg(_(e_usingsid));
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002308 goto theend;
2309 }
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02002310 sprintf((char *)sid_buf, "%ld_", (long)current_sctx.sc_sid);
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002311 if (vim9script)
2312 extra = 3 + (int)STRLEN(sid_buf);
2313 else
2314 lead += (int)STRLEN(sid_buf);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002315 }
2316 }
2317 else if (!(flags & TFN_INT) && builtin_function(lv.ll_name, len))
2318 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002319 semsg(_("E128: Function name must start with a capital or \"s:\": %s"),
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002320 start);
2321 goto theend;
2322 }
Bram Moolenaarb54c3ff2016-07-31 14:11:58 +02002323 if (!skip && !(flags & TFN_QUIET) && !(flags & TFN_NO_DEREF))
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002324 {
2325 char_u *cp = vim_strchr(lv.ll_name, ':');
2326
2327 if (cp != NULL && cp < end)
2328 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002329 semsg(_("E884: Function name cannot contain a colon: %s"), start);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002330 goto theend;
2331 }
2332 }
2333
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002334 name = alloc(len + lead + extra + 1);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002335 if (name != NULL)
2336 {
Bram Moolenaar9a5e5a32020-01-28 23:09:23 +01002337 if (!skip && (lead > 0 || vim9script))
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002338 {
2339 name[0] = K_SPECIAL;
2340 name[1] = KS_EXTRA;
2341 name[2] = (int)KE_SNR;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002342 if (vim9script || lead > 3) // If it's "<SID>"
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002343 STRCPY(name + 3, sid_buf);
2344 }
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002345 mch_memmove(name + lead + extra, lv.ll_name, (size_t)len);
2346 name[lead + extra + len] = NUL;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002347 }
2348 *pp = end;
2349
2350theend:
2351 clear_lval(&lv);
2352 return name;
2353}
2354
2355/*
Bram Moolenaara26b9702020-04-18 19:53:28 +02002356 * Assuming "name" is the result of trans_function_name() and it was prefixed
2357 * to use the script-local name, return the unmodified name (points into
2358 * "name"). Otherwise return NULL.
2359 * This can be used to first search for a script-local function and fall back
2360 * to the global function if not found.
2361 */
2362 char_u *
2363untrans_function_name(char_u *name)
2364{
2365 char_u *p;
2366
2367 if (*name == K_SPECIAL && current_sctx.sc_version == SCRIPT_VERSION_VIM9)
2368 {
2369 p = vim_strchr(name, '_');
2370 if (p != NULL)
2371 return p + 1;
2372 }
2373 return NULL;
2374}
2375
2376/*
Bram Moolenaar04b12692020-05-04 23:24:44 +02002377 * ":function" also supporting nested ":def".
2378 * Returns a pointer to the function or NULL if no function defined.
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002379 */
Bram Moolenaar04b12692020-05-04 23:24:44 +02002380 ufunc_T *
Bram Moolenaar09689a02020-05-09 22:50:08 +02002381def_function(exarg_T *eap, char_u *name_arg, void *context, int compile)
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002382{
2383 char_u *theline;
Bram Moolenaar53564f72017-06-24 14:48:11 +02002384 char_u *line_to_free = NULL;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002385 int j;
2386 int c;
2387 int saved_did_emsg;
2388 int saved_wait_return = need_wait_return;
Bram Moolenaar04b12692020-05-04 23:24:44 +02002389 char_u *name = name_arg;
Bram Moolenaar4c17ad92020-04-27 22:47:51 +02002390 int is_global = FALSE;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002391 char_u *p;
2392 char_u *arg;
2393 char_u *line_arg = NULL;
2394 garray_T newargs;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002395 garray_T argtypes;
Bram Moolenaar42ae78c2019-05-09 21:08:58 +02002396 garray_T default_args;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002397 garray_T newlines;
2398 int varargs = FALSE;
2399 int flags = 0;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002400 char_u *ret_type = NULL;
Bram Moolenaar04b12692020-05-04 23:24:44 +02002401 ufunc_T *fp = NULL;
Bram Moolenaar437bafe2016-08-01 15:40:54 +02002402 int overwrite = FALSE;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002403 int indent;
2404 int nesting;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002405#define MAX_FUNC_NESTING 50
2406 char nesting_def[MAX_FUNC_NESTING];
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002407 dictitem_T *v;
2408 funcdict_T fudi;
Bram Moolenaare38eab22019-12-05 21:50:01 +01002409 static int func_nr = 0; // number for nameless function
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002410 int paren;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002411 int todo;
2412 hashitem_T *hi;
Bram Moolenaare96a2492019-06-25 04:12:16 +02002413 int do_concat = TRUE;
Bram Moolenaarbc2cfe42019-07-04 14:57:12 +02002414 linenr_T sourcing_lnum_off;
2415 linenr_T sourcing_lnum_top;
Bram Moolenaarecaa75b2019-07-21 23:04:21 +02002416 int is_heredoc = FALSE;
2417 char_u *skip_until = NULL;
2418 char_u *heredoc_trimmed = NULL;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002419
2420 /*
2421 * ":function" without argument: list functions.
2422 */
Bram Moolenaara72cfb82020-04-23 17:07:30 +02002423 if (ends_excmd2(eap->cmd, eap->arg))
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002424 {
2425 if (!eap->skip)
2426 {
2427 todo = (int)func_hashtab.ht_used;
2428 for (hi = func_hashtab.ht_array; todo > 0 && !got_int; ++hi)
2429 {
2430 if (!HASHITEM_EMPTY(hi))
2431 {
2432 --todo;
2433 fp = HI2UF(hi);
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002434 if ((fp->uf_flags & FC_DEAD)
2435 || message_filtered(fp->uf_name))
Bram Moolenaarf86db782018-10-25 13:31:37 +02002436 continue;
Bram Moolenaarbc7ce672016-08-01 22:49:22 +02002437 if (!func_name_refcount(fp->uf_name))
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002438 list_func_head(fp, FALSE);
2439 }
2440 }
2441 }
2442 eap->nextcmd = check_nextcmd(eap->arg);
Bram Moolenaar04b12692020-05-04 23:24:44 +02002443 return NULL;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002444 }
2445
2446 /*
2447 * ":function /pat": list functions matching pattern.
2448 */
2449 if (*eap->arg == '/')
2450 {
Bram Moolenaare8c4abb2020-04-02 21:13:25 +02002451 p = skip_regexp(eap->arg + 1, '/', TRUE);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002452 if (!eap->skip)
2453 {
2454 regmatch_T regmatch;
2455
2456 c = *p;
2457 *p = NUL;
2458 regmatch.regprog = vim_regcomp(eap->arg + 1, RE_MAGIC);
2459 *p = c;
2460 if (regmatch.regprog != NULL)
2461 {
2462 regmatch.rm_ic = p_ic;
2463
2464 todo = (int)func_hashtab.ht_used;
2465 for (hi = func_hashtab.ht_array; todo > 0 && !got_int; ++hi)
2466 {
2467 if (!HASHITEM_EMPTY(hi))
2468 {
2469 --todo;
2470 fp = HI2UF(hi);
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002471 if ((fp->uf_flags & FC_DEAD) == 0
2472 && !isdigit(*fp->uf_name)
2473 && vim_regexec(&regmatch, fp->uf_name, 0))
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002474 list_func_head(fp, FALSE);
2475 }
2476 }
2477 vim_regfree(regmatch.regprog);
2478 }
2479 }
2480 if (*p == '/')
2481 ++p;
2482 eap->nextcmd = check_nextcmd(p);
Bram Moolenaar04b12692020-05-04 23:24:44 +02002483 return NULL;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002484 }
2485
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002486 ga_init(&newargs);
2487 ga_init(&argtypes);
2488 ga_init(&default_args);
2489
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002490 /*
2491 * Get the function name. There are these situations:
2492 * func normal function name
2493 * "name" == func, "fudi.fd_dict" == NULL
2494 * dict.func new dictionary entry
2495 * "name" == NULL, "fudi.fd_dict" set,
2496 * "fudi.fd_di" == NULL, "fudi.fd_newkey" == func
2497 * dict.func existing dict entry with a Funcref
2498 * "name" == func, "fudi.fd_dict" set,
2499 * "fudi.fd_di" set, "fudi.fd_newkey" == NULL
2500 * dict.func existing dict entry that's not a Funcref
2501 * "name" == NULL, "fudi.fd_dict" set,
2502 * "fudi.fd_di" set, "fudi.fd_newkey" == NULL
2503 * s:func script-local function name
2504 * g:func global function name, same as "func"
2505 */
2506 p = eap->arg;
Bram Moolenaar04b12692020-05-04 23:24:44 +02002507 if (name_arg != NULL)
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002508 {
Bram Moolenaar04b12692020-05-04 23:24:44 +02002509 // nested function, argument is (args).
2510 paren = TRUE;
2511 CLEAR_FIELD(fudi);
2512 }
2513 else
2514 {
2515 name = trans_function_name(&p, &is_global, eap->skip,
2516 TFN_NO_AUTOLOAD, &fudi, NULL);
2517 paren = (vim_strchr(p, '(') != NULL);
2518 if (name == NULL && (fudi.fd_dict == NULL || !paren) && !eap->skip)
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002519 {
Bram Moolenaar04b12692020-05-04 23:24:44 +02002520 /*
2521 * Return on an invalid expression in braces, unless the expression
2522 * evaluation has been cancelled due to an aborting error, an
2523 * interrupt, or an exception.
2524 */
2525 if (!aborting())
2526 {
2527 if (!eap->skip && fudi.fd_newkey != NULL)
2528 semsg(_(e_dictkey), fudi.fd_newkey);
2529 vim_free(fudi.fd_newkey);
2530 return NULL;
2531 }
2532 else
2533 eap->skip = TRUE;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002534 }
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002535 }
2536
Bram Moolenaare38eab22019-12-05 21:50:01 +01002537 // An error in a function call during evaluation of an expression in magic
2538 // braces should not cause the function not to be defined.
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002539 saved_did_emsg = did_emsg;
2540 did_emsg = FALSE;
2541
2542 /*
2543 * ":function func" with only function name: list function.
2544 */
2545 if (!paren)
2546 {
2547 if (!ends_excmd(*skipwhite(p)))
2548 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002549 emsg(_(e_trailing));
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002550 goto ret_free;
2551 }
2552 eap->nextcmd = check_nextcmd(p);
2553 if (eap->nextcmd != NULL)
2554 *p = NUL;
2555 if (!eap->skip && !got_int)
2556 {
Bram Moolenaar4c17ad92020-04-27 22:47:51 +02002557 fp = find_func(name, is_global, NULL);
Bram Moolenaara26b9702020-04-18 19:53:28 +02002558 if (fp == NULL && ASCII_ISUPPER(*eap->arg))
2559 {
2560 char_u *up = untrans_function_name(name);
2561
2562 // With Vim9 script the name was made script-local, if not
2563 // found try again with the original name.
Bram Moolenaarec9749f2020-04-18 20:51:40 +02002564 if (up != NULL)
Bram Moolenaar4c17ad92020-04-27 22:47:51 +02002565 fp = find_func(up, FALSE, NULL);
Bram Moolenaara26b9702020-04-18 19:53:28 +02002566 }
2567
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002568 if (fp != NULL)
2569 {
2570 list_func_head(fp, TRUE);
2571 for (j = 0; j < fp->uf_lines.ga_len && !got_int; ++j)
2572 {
2573 if (FUNCLINE(fp, j) == NULL)
2574 continue;
2575 msg_putchar('\n');
2576 msg_outnum((long)(j + 1));
2577 if (j < 9)
2578 msg_putchar(' ');
2579 if (j < 99)
2580 msg_putchar(' ');
2581 msg_prt_line(FUNCLINE(fp, j), FALSE);
Bram Moolenaare38eab22019-12-05 21:50:01 +01002582 out_flush(); // show a line at a time
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002583 ui_breakcheck();
2584 }
2585 if (!got_int)
2586 {
2587 msg_putchar('\n');
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002588 if (fp->uf_dfunc_idx >= 0)
2589 msg_puts(" enddef");
2590 else
2591 msg_puts(" endfunction");
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002592 }
2593 }
2594 else
Bram Moolenaara26b9702020-04-18 19:53:28 +02002595 emsg_funcname(N_("E123: Undefined function: %s"), eap->arg);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002596 }
2597 goto ret_free;
2598 }
2599
2600 /*
2601 * ":function name(arg1, arg2)" Define function.
2602 */
2603 p = skipwhite(p);
2604 if (*p != '(')
2605 {
2606 if (!eap->skip)
2607 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002608 semsg(_("E124: Missing '(': %s"), eap->arg);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002609 goto ret_free;
2610 }
Bram Moolenaare38eab22019-12-05 21:50:01 +01002611 // attempt to continue by skipping some text
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002612 if (vim_strchr(p, '(') != NULL)
2613 p = vim_strchr(p, '(');
2614 }
2615 p = skipwhite(p + 1);
2616
2617 ga_init2(&newlines, (int)sizeof(char_u *), 3);
2618
Bram Moolenaar04b12692020-05-04 23:24:44 +02002619 if (!eap->skip && name_arg == NULL)
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002620 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01002621 // Check the name of the function. Unless it's a dictionary function
2622 // (that we are overwriting).
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002623 if (name != NULL)
2624 arg = name;
2625 else
2626 arg = fudi.fd_newkey;
2627 if (arg != NULL && (fudi.fd_di == NULL
2628 || (fudi.fd_di->di_tv.v_type != VAR_FUNC
2629 && fudi.fd_di->di_tv.v_type != VAR_PARTIAL)))
2630 {
2631 if (*arg == K_SPECIAL)
2632 j = 3;
2633 else
2634 j = 0;
2635 while (arg[j] != NUL && (j == 0 ? eval_isnamec1(arg[j])
2636 : eval_isnamec(arg[j])))
2637 ++j;
2638 if (arg[j] != NUL)
2639 emsg_funcname((char *)e_invarg2, arg);
2640 }
Bram Moolenaare38eab22019-12-05 21:50:01 +01002641 // Disallow using the g: dict.
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002642 if (fudi.fd_dict != NULL && fudi.fd_dict->dv_scope == VAR_DEF_SCOPE)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002643 emsg(_("E862: Cannot use g: here"));
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002644 }
2645
Bram Moolenaar5e774c72020-04-12 21:53:00 +02002646 // This may get more lines and make the pointers into the first line
2647 // invalid.
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002648 if (get_function_args(&p, ')', &newargs,
2649 eap->cmdidx == CMD_def ? &argtypes : NULL,
Bram Moolenaar5e774c72020-04-12 21:53:00 +02002650 &varargs, &default_args, eap->skip,
2651 eap, &line_to_free) == FAIL)
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002652 goto errret_2;
2653
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002654 if (eap->cmdidx == CMD_def)
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002655 {
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002656 // find the return type: :def Func(): type
2657 if (*p == ':')
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002658 {
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002659 ret_type = skipwhite(p + 1);
2660 p = skip_type(ret_type);
2661 if (p > ret_type)
Bram Moolenaar5e774c72020-04-12 21:53:00 +02002662 {
2663 ret_type = vim_strnsave(ret_type, (int)(p - ret_type));
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002664 p = skipwhite(p);
Bram Moolenaar5e774c72020-04-12 21:53:00 +02002665 }
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002666 else
Bram Moolenaar5e774c72020-04-12 21:53:00 +02002667 {
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002668 semsg(_("E1056: expected a type: %s"), ret_type);
Bram Moolenaarb8ce6b02020-04-23 22:23:14 +02002669 ret_type = NULL;
Bram Moolenaar5e774c72020-04-12 21:53:00 +02002670 }
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002671 }
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002672 }
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002673 else
2674 // find extra arguments "range", "dict", "abort" and "closure"
2675 for (;;)
2676 {
2677 p = skipwhite(p);
2678 if (STRNCMP(p, "range", 5) == 0)
2679 {
2680 flags |= FC_RANGE;
2681 p += 5;
2682 }
2683 else if (STRNCMP(p, "dict", 4) == 0)
2684 {
2685 flags |= FC_DICT;
2686 p += 4;
2687 }
2688 else if (STRNCMP(p, "abort", 5) == 0)
2689 {
2690 flags |= FC_ABORT;
2691 p += 5;
2692 }
2693 else if (STRNCMP(p, "closure", 7) == 0)
2694 {
2695 flags |= FC_CLOSURE;
2696 p += 7;
2697 if (current_funccal == NULL)
2698 {
2699 emsg_funcname(N_("E932: Closure function should not be at top level: %s"),
2700 name == NULL ? (char_u *)"" : name);
2701 goto erret;
2702 }
2703 }
2704 else
2705 break;
2706 }
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002707
Bram Moolenaare38eab22019-12-05 21:50:01 +01002708 // When there is a line break use what follows for the function body.
2709 // Makes 'exe "func Test()\n...\nendfunc"' work.
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002710 if (*p == '\n')
2711 line_arg = p + 1;
Bram Moolenaar2c330432020-04-13 14:41:35 +02002712 else if (*p != NUL && *p != '"' && !(eap->cmdidx == CMD_def && *p == '#')
2713 && !eap->skip && !did_emsg)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002714 emsg(_(e_trailing));
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002715
2716 /*
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002717 * Read the body of the function, until "}", ":endfunction" or ":enddef" is
2718 * found.
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002719 */
2720 if (KeyTyped)
2721 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01002722 // Check if the function already exists, don't let the user type the
2723 // whole function before telling him it doesn't work! For a script we
2724 // need to skip the body to be able to find what follows.
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002725 if (!eap->skip && !eap->forceit)
2726 {
2727 if (fudi.fd_dict != NULL && fudi.fd_newkey == NULL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002728 emsg(_(e_funcdict));
Bram Moolenaar4c17ad92020-04-27 22:47:51 +02002729 else if (name != NULL && find_func(name, is_global, NULL) != NULL)
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002730 emsg_funcname(e_funcexts, name);
2731 }
2732
2733 if (!eap->skip && did_emsg)
2734 goto erret;
2735
Bram Moolenaare38eab22019-12-05 21:50:01 +01002736 msg_putchar('\n'); // don't overwrite the function name
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002737 cmdline_row = msg_row;
2738 }
2739
Bram Moolenaarbc2cfe42019-07-04 14:57:12 +02002740 // Save the starting line number.
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01002741 sourcing_lnum_top = SOURCING_LNUM;
Bram Moolenaarbc2cfe42019-07-04 14:57:12 +02002742
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002743 indent = 2;
2744 nesting = 0;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002745 nesting_def[nesting] = (eap->cmdidx == CMD_def);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002746 for (;;)
2747 {
2748 if (KeyTyped)
2749 {
2750 msg_scroll = TRUE;
2751 saved_wait_return = FALSE;
2752 }
2753 need_wait_return = FALSE;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002754
2755 if (line_arg != NULL)
2756 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01002757 // Use eap->arg, split up in parts by line breaks.
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002758 theline = line_arg;
2759 p = vim_strchr(theline, '\n');
2760 if (p == NULL)
2761 line_arg += STRLEN(line_arg);
2762 else
2763 {
2764 *p = NUL;
2765 line_arg = p + 1;
2766 }
2767 }
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002768 else
Bram Moolenaar53564f72017-06-24 14:48:11 +02002769 {
2770 vim_free(line_to_free);
2771 if (eap->getline == NULL)
Bram Moolenaare96a2492019-06-25 04:12:16 +02002772 theline = getcmdline(':', 0L, indent, do_concat);
Bram Moolenaar53564f72017-06-24 14:48:11 +02002773 else
Bram Moolenaare96a2492019-06-25 04:12:16 +02002774 theline = eap->getline(':', eap->cookie, indent, do_concat);
Bram Moolenaar53564f72017-06-24 14:48:11 +02002775 line_to_free = theline;
2776 }
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002777 if (KeyTyped)
2778 lines_left = Rows - 1;
2779 if (theline == NULL)
2780 {
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002781 if (eap->cmdidx == CMD_def)
2782 emsg(_("E1057: Missing :enddef"));
2783 else
2784 emsg(_("E126: Missing :endfunction"));
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002785 goto erret;
2786 }
2787
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01002788 // Detect line continuation: SOURCING_LNUM increased more than one.
Bram Moolenaarbc2cfe42019-07-04 14:57:12 +02002789 sourcing_lnum_off = get_sourced_lnum(eap->getline, eap->cookie);
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01002790 if (SOURCING_LNUM < sourcing_lnum_off)
2791 sourcing_lnum_off -= SOURCING_LNUM;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002792 else
2793 sourcing_lnum_off = 0;
2794
2795 if (skip_until != NULL)
2796 {
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002797 // Don't check for ":endfunc"/":enddef" between
Bram Moolenaarecaa75b2019-07-21 23:04:21 +02002798 // * ":append" and "."
2799 // * ":python <<EOF" and "EOF"
2800 // * ":let {var-name} =<< [trim] {marker}" and "{marker}"
2801 if (heredoc_trimmed == NULL
2802 || (is_heredoc && skipwhite(theline) == theline)
2803 || STRNCMP(theline, heredoc_trimmed,
2804 STRLEN(heredoc_trimmed)) == 0)
Bram Moolenaar8471e572019-05-19 21:37:18 +02002805 {
Bram Moolenaarecaa75b2019-07-21 23:04:21 +02002806 if (heredoc_trimmed == NULL)
2807 p = theline;
2808 else if (is_heredoc)
2809 p = skipwhite(theline) == theline
2810 ? theline : theline + STRLEN(heredoc_trimmed);
2811 else
2812 p = theline + STRLEN(heredoc_trimmed);
Bram Moolenaar8471e572019-05-19 21:37:18 +02002813 if (STRCMP(p, skip_until) == 0)
2814 {
2815 VIM_CLEAR(skip_until);
Bram Moolenaarecaa75b2019-07-21 23:04:21 +02002816 VIM_CLEAR(heredoc_trimmed);
Bram Moolenaare96a2492019-06-25 04:12:16 +02002817 do_concat = TRUE;
Bram Moolenaarecaa75b2019-07-21 23:04:21 +02002818 is_heredoc = FALSE;
Bram Moolenaar8471e572019-05-19 21:37:18 +02002819 }
2820 }
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002821 }
2822 else
2823 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01002824 // skip ':' and blanks
Bram Moolenaar1c465442017-03-12 20:10:05 +01002825 for (p = theline; VIM_ISWHITE(*p) || *p == ':'; ++p)
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002826 ;
2827
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002828 // Check for "endfunction" or "enddef".
2829 if (checkforcmd(&p, nesting_def[nesting]
2830 ? "enddef" : "endfunction", 4) && nesting-- == 0)
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002831 {
Bram Moolenaar53564f72017-06-24 14:48:11 +02002832 char_u *nextcmd = NULL;
2833
Bram Moolenaar663bb232017-06-22 19:12:10 +02002834 if (*p == '|')
Bram Moolenaar53564f72017-06-24 14:48:11 +02002835 nextcmd = p + 1;
Bram Moolenaar663bb232017-06-22 19:12:10 +02002836 else if (line_arg != NULL && *skipwhite(line_arg) != NUL)
Bram Moolenaar53564f72017-06-24 14:48:11 +02002837 nextcmd = line_arg;
Bram Moolenaar663bb232017-06-22 19:12:10 +02002838 else if (*p != NUL && *p != '"' && p_verbose > 0)
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002839 give_warning2(eap->cmdidx == CMD_def
2840 ? (char_u *)_("W1001: Text found after :enddef: %s")
2841 : (char_u *)_("W22: Text found after :endfunction: %s"),
Bram Moolenaarf8be4612017-06-23 20:52:40 +02002842 p, TRUE);
Bram Moolenaar53564f72017-06-24 14:48:11 +02002843 if (nextcmd != NULL)
2844 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01002845 // Another command follows. If the line came from "eap" we
2846 // can simply point into it, otherwise we need to change
2847 // "eap->cmdlinep".
Bram Moolenaar53564f72017-06-24 14:48:11 +02002848 eap->nextcmd = nextcmd;
2849 if (line_to_free != NULL)
2850 {
2851 vim_free(*eap->cmdlinep);
2852 *eap->cmdlinep = line_to_free;
2853 line_to_free = NULL;
2854 }
2855 }
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002856 break;
2857 }
2858
Bram Moolenaare38eab22019-12-05 21:50:01 +01002859 // Increase indent inside "if", "while", "for" and "try", decrease
2860 // at "end".
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002861 if (indent > 2 && (*p == '}' || STRNCMP(p, "end", 3) == 0))
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002862 indent -= 2;
2863 else if (STRNCMP(p, "if", 2) == 0
2864 || STRNCMP(p, "wh", 2) == 0
2865 || STRNCMP(p, "for", 3) == 0
2866 || STRNCMP(p, "try", 3) == 0)
2867 indent += 2;
2868
Bram Moolenaare38eab22019-12-05 21:50:01 +01002869 // Check for defining a function inside this function.
Bram Moolenaar673660a2020-01-26 16:50:05 +01002870 // Only recognize "def" inside "def", not inside "function",
2871 // For backwards compatibility, see Test_function_python().
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002872 c = *p;
Bram Moolenaar673660a2020-01-26 16:50:05 +01002873 if (checkforcmd(&p, "function", 2)
2874 || (eap->cmdidx == CMD_def && checkforcmd(&p, "def", 3)))
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002875 {
2876 if (*p == '!')
2877 p = skipwhite(p + 1);
2878 p += eval_fname_script(p);
Bram Moolenaar4c17ad92020-04-27 22:47:51 +02002879 vim_free(trans_function_name(&p, NULL, TRUE, 0, NULL, NULL));
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002880 if (*skipwhite(p) == '(')
2881 {
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002882 if (nesting == MAX_FUNC_NESTING - 1)
2883 emsg(_("E1058: function nesting too deep"));
2884 else
2885 {
2886 ++nesting;
2887 nesting_def[nesting] = (c == 'd');
2888 indent += 2;
2889 }
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002890 }
2891 }
2892
Bram Moolenaara259d8d2020-01-31 20:10:50 +01002893 // Check for ":append", ":change", ":insert". Not for :def.
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002894 p = skip_range(p, NULL);
Bram Moolenaara259d8d2020-01-31 20:10:50 +01002895 if (eap->cmdidx != CMD_def
2896 && ((p[0] == 'a' && (!ASCII_ISALPHA(p[1]) || p[1] == 'p'))
Bram Moolenaar70bcd732017-01-12 22:20:54 +01002897 || (p[0] == 'c'
2898 && (!ASCII_ISALPHA(p[1]) || (p[1] == 'h'
2899 && (!ASCII_ISALPHA(p[2]) || (p[2] == 'a'
2900 && (STRNCMP(&p[3], "nge", 3) != 0
2901 || !ASCII_ISALPHA(p[6])))))))
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002902 || (p[0] == 'i'
2903 && (!ASCII_ISALPHA(p[1]) || (p[1] == 'n'
Bram Moolenaara259d8d2020-01-31 20:10:50 +01002904 && (!ASCII_ISALPHA(p[2])
2905 || (p[2] == 's'
2906 && (!ASCII_ISALPHA(p[3])
2907 || p[3] == 'e'))))))))
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002908 skip_until = vim_strsave((char_u *)".");
2909
Bram Moolenaare38eab22019-12-05 21:50:01 +01002910 // Check for ":python <<EOF", ":tcl <<EOF", etc.
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002911 arg = skipwhite(skiptowhite(p));
2912 if (arg[0] == '<' && arg[1] =='<'
2913 && ((p[0] == 'p' && p[1] == 'y'
Bram Moolenaarf42dd3c2017-01-28 16:06:38 +01002914 && (!ASCII_ISALNUM(p[2]) || p[2] == 't'
2915 || ((p[2] == '3' || p[2] == 'x')
2916 && !ASCII_ISALPHA(p[3]))))
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002917 || (p[0] == 'p' && p[1] == 'e'
2918 && (!ASCII_ISALPHA(p[2]) || p[2] == 'r'))
2919 || (p[0] == 't' && p[1] == 'c'
2920 && (!ASCII_ISALPHA(p[2]) || p[2] == 'l'))
2921 || (p[0] == 'l' && p[1] == 'u' && p[2] == 'a'
2922 && !ASCII_ISALPHA(p[3]))
2923 || (p[0] == 'r' && p[1] == 'u' && p[2] == 'b'
2924 && (!ASCII_ISALPHA(p[3]) || p[3] == 'y'))
2925 || (p[0] == 'm' && p[1] == 'z'
2926 && (!ASCII_ISALPHA(p[2]) || p[2] == 's'))
2927 ))
2928 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01002929 // ":python <<" continues until a dot, like ":append"
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002930 p = skipwhite(arg + 2);
Bram Moolenaar6c2b7b82020-04-14 20:15:49 +02002931 if (STRNCMP(p, "trim", 4) == 0)
2932 {
2933 // Ignore leading white space.
2934 p = skipwhite(p + 4);
2935 heredoc_trimmed = vim_strnsave(theline,
2936 (int)(skipwhite(theline) - theline));
2937 }
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002938 if (*p == NUL)
2939 skip_until = vim_strsave((char_u *)".");
2940 else
Bram Moolenaar6c2b7b82020-04-14 20:15:49 +02002941 skip_until = vim_strnsave(p, (int)(skiptowhite(p) - p));
2942 do_concat = FALSE;
2943 is_heredoc = TRUE;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002944 }
Bram Moolenaar8471e572019-05-19 21:37:18 +02002945
2946 // Check for ":let v =<< [trim] EOF"
Bram Moolenaar1e673b92019-11-06 15:02:50 +01002947 // and ":let [a, b] =<< [trim] EOF"
Bram Moolenaar8471e572019-05-19 21:37:18 +02002948 arg = skipwhite(skiptowhite(p));
Bram Moolenaar1e673b92019-11-06 15:02:50 +01002949 if (*arg == '[')
2950 arg = vim_strchr(arg, ']');
2951 if (arg != NULL)
Bram Moolenaar8471e572019-05-19 21:37:18 +02002952 {
Bram Moolenaar1e673b92019-11-06 15:02:50 +01002953 arg = skipwhite(skiptowhite(arg));
2954 if ( arg[0] == '=' && arg[1] == '<' && arg[2] =='<'
2955 && ((p[0] == 'l'
2956 && p[1] == 'e'
2957 && (!ASCII_ISALNUM(p[2])
2958 || (p[2] == 't' && !ASCII_ISALNUM(p[3]))))))
Bram Moolenaar8471e572019-05-19 21:37:18 +02002959 {
Bram Moolenaar1e673b92019-11-06 15:02:50 +01002960 p = skipwhite(arg + 3);
2961 if (STRNCMP(p, "trim", 4) == 0)
2962 {
2963 // Ignore leading white space.
2964 p = skipwhite(p + 4);
2965 heredoc_trimmed = vim_strnsave(theline,
Bram Moolenaar8471e572019-05-19 21:37:18 +02002966 (int)(skipwhite(theline) - theline));
Bram Moolenaar1e673b92019-11-06 15:02:50 +01002967 }
2968 skip_until = vim_strnsave(p, (int)(skiptowhite(p) - p));
2969 do_concat = FALSE;
2970 is_heredoc = TRUE;
Bram Moolenaar8471e572019-05-19 21:37:18 +02002971 }
Bram Moolenaar8471e572019-05-19 21:37:18 +02002972 }
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002973 }
2974
Bram Moolenaare38eab22019-12-05 21:50:01 +01002975 // Add the line to the function.
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002976 if (ga_grow(&newlines, 1 + sourcing_lnum_off) == FAIL)
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002977 goto erret;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002978
Bram Moolenaare38eab22019-12-05 21:50:01 +01002979 // Copy the line to newly allocated memory. get_one_sourceline()
2980 // allocates 250 bytes per line, this saves 80% on average. The cost
2981 // is an extra alloc/free.
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002982 p = vim_strsave(theline);
Bram Moolenaar53564f72017-06-24 14:48:11 +02002983 if (p == NULL)
2984 goto erret;
2985 ((char_u **)(newlines.ga_data))[newlines.ga_len++] = p;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002986
Bram Moolenaare38eab22019-12-05 21:50:01 +01002987 // Add NULL lines for continuation lines, so that the line count is
2988 // equal to the index in the growarray.
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002989 while (sourcing_lnum_off-- > 0)
2990 ((char_u **)(newlines.ga_data))[newlines.ga_len++] = NULL;
2991
Bram Moolenaare38eab22019-12-05 21:50:01 +01002992 // Check for end of eap->arg.
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002993 if (line_arg != NULL && *line_arg == NUL)
2994 line_arg = NULL;
2995 }
2996
Bram Moolenaare38eab22019-12-05 21:50:01 +01002997 // Don't define the function when skipping commands or when an error was
2998 // detected.
Bram Moolenaara9b579f2016-07-17 18:29:19 +02002999 if (eap->skip || did_emsg)
3000 goto erret;
3001
3002 /*
3003 * If there are no errors, add the function
3004 */
3005 if (fudi.fd_dict == NULL)
3006 {
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003007 hashtab_T *ht;
3008
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003009 v = find_var(name, &ht, FALSE);
3010 if (v != NULL && v->di_tv.v_type == VAR_FUNC)
3011 {
3012 emsg_funcname(N_("E707: Function name conflicts with variable: %s"),
3013 name);
3014 goto erret;
3015 }
3016
Bram Moolenaar4c17ad92020-04-27 22:47:51 +02003017 fp = find_func_even_dead(name, is_global, NULL);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003018 if (fp != NULL)
3019 {
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003020 int dead = fp->uf_flags & FC_DEAD;
3021
Bram Moolenaarded5f1b2018-11-10 17:33:29 +01003022 // Function can be replaced with "function!" and when sourcing the
3023 // same script again, but only once.
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003024 if (!dead && !eap->forceit
Bram Moolenaarded5f1b2018-11-10 17:33:29 +01003025 && (fp->uf_script_ctx.sc_sid != current_sctx.sc_sid
3026 || fp->uf_script_ctx.sc_seq == current_sctx.sc_seq))
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003027 {
3028 emsg_funcname(e_funcexts, name);
3029 goto erret;
3030 }
3031 if (fp->uf_calls > 0)
3032 {
Bram Moolenaarded5f1b2018-11-10 17:33:29 +01003033 emsg_funcname(
3034 N_("E127: Cannot redefine function %s: It is in use"),
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003035 name);
3036 goto erret;
3037 }
Bram Moolenaar437bafe2016-08-01 15:40:54 +02003038 if (fp->uf_refcount > 1)
3039 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01003040 // This function is referenced somewhere, don't redefine it but
3041 // create a new one.
Bram Moolenaar437bafe2016-08-01 15:40:54 +02003042 --fp->uf_refcount;
Bram Moolenaar8dd3a432016-08-01 20:46:25 +02003043 fp->uf_flags |= FC_REMOVED;
Bram Moolenaar437bafe2016-08-01 15:40:54 +02003044 fp = NULL;
3045 overwrite = TRUE;
3046 }
3047 else
3048 {
Bram Moolenaarb9adef72020-01-02 14:31:22 +01003049 char_u *exp_name = fp->uf_name_exp;
3050
3051 // redefine existing function, keep the expanded name
Bram Moolenaard23a8232018-02-10 18:45:26 +01003052 VIM_CLEAR(name);
Bram Moolenaarb9adef72020-01-02 14:31:22 +01003053 fp->uf_name_exp = NULL;
Bram Moolenaar79c2ad52018-07-29 17:40:43 +02003054 func_clear_items(fp);
Bram Moolenaarb9adef72020-01-02 14:31:22 +01003055 fp->uf_name_exp = exp_name;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003056 fp->uf_flags &= ~FC_DEAD;
Bram Moolenaar79c2ad52018-07-29 17:40:43 +02003057#ifdef FEAT_PROFILE
3058 fp->uf_profiling = FALSE;
3059 fp->uf_prof_initialized = FALSE;
3060#endif
Bram Moolenaar437bafe2016-08-01 15:40:54 +02003061 }
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003062 }
3063 }
3064 else
3065 {
3066 char numbuf[20];
3067
3068 fp = NULL;
3069 if (fudi.fd_newkey == NULL && !eap->forceit)
3070 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003071 emsg(_(e_funcdict));
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003072 goto erret;
3073 }
3074 if (fudi.fd_di == NULL)
3075 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01003076 // Can't add a function to a locked dictionary
Bram Moolenaar05c00c02019-02-11 22:00:11 +01003077 if (var_check_lock(fudi.fd_dict->dv_lock, eap->arg, FALSE))
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003078 goto erret;
3079 }
Bram Moolenaare38eab22019-12-05 21:50:01 +01003080 // Can't change an existing function if it is locked
Bram Moolenaar05c00c02019-02-11 22:00:11 +01003081 else if (var_check_lock(fudi.fd_di->di_tv.v_lock, eap->arg, FALSE))
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003082 goto erret;
3083
Bram Moolenaare38eab22019-12-05 21:50:01 +01003084 // Give the function a sequential number. Can only be used with a
3085 // Funcref!
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003086 vim_free(name);
3087 sprintf(numbuf, "%d", ++func_nr);
3088 name = vim_strsave((char_u *)numbuf);
3089 if (name == NULL)
3090 goto erret;
3091 }
3092
3093 if (fp == NULL)
3094 {
3095 if (fudi.fd_dict == NULL && vim_strchr(name, AUTOLOAD_CHAR) != NULL)
3096 {
3097 int slen, plen;
3098 char_u *scriptname;
3099
Bram Moolenaare38eab22019-12-05 21:50:01 +01003100 // Check that the autoload name matches the script name.
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003101 j = FAIL;
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01003102 if (SOURCING_NAME != NULL)
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003103 {
3104 scriptname = autoload_name(name);
3105 if (scriptname != NULL)
3106 {
3107 p = vim_strchr(scriptname, '/');
3108 plen = (int)STRLEN(p);
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01003109 slen = (int)STRLEN(SOURCING_NAME);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003110 if (slen > plen && fnamecmp(p,
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01003111 SOURCING_NAME + slen - plen) == 0)
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003112 j = OK;
3113 vim_free(scriptname);
3114 }
3115 }
3116 if (j == FAIL)
3117 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003118 semsg(_("E746: Function name does not match script file name: %s"), name);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003119 goto erret;
3120 }
3121 }
3122
Bram Moolenaar47ed5532019-08-08 20:49:14 +02003123 fp = alloc_clear(offsetof(ufunc_T, uf_name) + STRLEN(name) + 1);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003124 if (fp == NULL)
3125 goto erret;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003126 fp->uf_dfunc_idx = -1;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003127
3128 if (fudi.fd_dict != NULL)
3129 {
3130 if (fudi.fd_di == NULL)
3131 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01003132 // add new dict entry
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003133 fudi.fd_di = dictitem_alloc(fudi.fd_newkey);
3134 if (fudi.fd_di == NULL)
3135 {
3136 vim_free(fp);
3137 goto erret;
3138 }
3139 if (dict_add(fudi.fd_dict, fudi.fd_di) == FAIL)
3140 {
3141 vim_free(fudi.fd_di);
3142 vim_free(fp);
3143 goto erret;
3144 }
3145 }
3146 else
Bram Moolenaare38eab22019-12-05 21:50:01 +01003147 // overwrite existing dict entry
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003148 clear_tv(&fudi.fd_di->di_tv);
3149 fudi.fd_di->di_tv.v_type = VAR_FUNC;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003150 fudi.fd_di->di_tv.vval.v_string = vim_strsave(name);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003151
Bram Moolenaare38eab22019-12-05 21:50:01 +01003152 // behave like "dict" was used
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003153 flags |= FC_DICT;
3154 }
3155
Bram Moolenaare38eab22019-12-05 21:50:01 +01003156 // insert the new function in the function list
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01003157 set_ufunc_name(fp, name);
Bram Moolenaar437bafe2016-08-01 15:40:54 +02003158 if (overwrite)
3159 {
3160 hi = hash_find(&func_hashtab, name);
3161 hi->hi_key = UF2HIKEY(fp);
3162 }
3163 else if (hash_add(&func_hashtab, UF2HIKEY(fp)) == FAIL)
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003164 {
3165 vim_free(fp);
3166 goto erret;
3167 }
Bram Moolenaar437bafe2016-08-01 15:40:54 +02003168 fp->uf_refcount = 1;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003169 }
3170 fp->uf_args = newargs;
Bram Moolenaar42ae78c2019-05-09 21:08:58 +02003171 fp->uf_def_args = default_args;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003172 fp->uf_ret_type = &t_any;
Bram Moolenaar5deeb3f2020-04-05 17:08:17 +02003173 fp->uf_func_type = &t_func_any;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003174
3175 if (eap->cmdidx == CMD_def)
3176 {
Bram Moolenaar0b76b422020-04-07 22:05:08 +02003177 int lnum_save = SOURCING_LNUM;
Bram Moolenaarbfe12042020-02-04 21:54:07 +01003178
3179 // error messages are for the first function line
3180 SOURCING_LNUM = sourcing_lnum_top;
3181
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003182 // parse the argument types
Bram Moolenaar5deeb3f2020-04-05 17:08:17 +02003183 ga_init2(&fp->uf_type_list, sizeof(type_T *), 10);
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003184
3185 if (argtypes.ga_len > 0)
3186 {
3187 // When "varargs" is set the last name/type goes into uf_va_name
3188 // and uf_va_type.
3189 int len = argtypes.ga_len - (varargs ? 1 : 0);
3190
Bram Moolenaar0b76b422020-04-07 22:05:08 +02003191 if (len > 0)
3192 fp->uf_arg_types = ALLOC_CLEAR_MULT(type_T *, len);
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003193 if (fp->uf_arg_types != NULL)
3194 {
Bram Moolenaarbfe12042020-02-04 21:54:07 +01003195 int i;
3196 type_T *type;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003197
3198 for (i = 0; i < len; ++ i)
3199 {
3200 p = ((char_u **)argtypes.ga_data)[i];
3201 if (p == NULL)
Bram Moolenaar49cf7cc2020-04-07 22:45:00 +02003202 // will get the type from the default value
3203 type = &t_unknown;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003204 else
Bram Moolenaarbfe12042020-02-04 21:54:07 +01003205 type = parse_type(&p, &fp->uf_type_list);
3206 if (type == NULL)
3207 {
3208 SOURCING_LNUM = lnum_save;
3209 goto errret_2;
3210 }
3211 fp->uf_arg_types[i] = type;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003212 }
3213 }
3214 if (varargs)
3215 {
3216 // Move the last argument "...name: type" to uf_va_name and
3217 // uf_va_type.
3218 fp->uf_va_name = ((char_u **)fp->uf_args.ga_data)
3219 [fp->uf_args.ga_len - 1];
3220 --fp->uf_args.ga_len;
3221 p = ((char_u **)argtypes.ga_data)[len];
3222 if (p == NULL)
3223 // todo: get type from default value
3224 fp->uf_va_type = &t_any;
3225 else
3226 fp->uf_va_type = parse_type(&p, &fp->uf_type_list);
Bram Moolenaarbfe12042020-02-04 21:54:07 +01003227 if (fp->uf_va_type == NULL)
3228 {
3229 SOURCING_LNUM = lnum_save;
3230 goto errret_2;
3231 }
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003232 }
3233 varargs = FALSE;
3234 }
3235
3236 // parse the return type, if any
3237 if (ret_type == NULL)
3238 fp->uf_ret_type = &t_void;
3239 else
3240 {
3241 p = ret_type;
3242 fp->uf_ret_type = parse_type(&p, &fp->uf_type_list);
3243 }
Bram Moolenaar09689a02020-05-09 22:50:08 +02003244 SOURCING_LNUM = lnum_save;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003245 }
3246
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003247 fp->uf_lines = newlines;
Bram Moolenaar10ce39a2016-07-29 22:37:06 +02003248 if ((flags & FC_CLOSURE) != 0)
3249 {
Bram Moolenaar58016442016-07-31 18:30:22 +02003250 if (register_closure(fp) == FAIL)
Bram Moolenaar10ce39a2016-07-29 22:37:06 +02003251 goto erret;
Bram Moolenaar10ce39a2016-07-29 22:37:06 +02003252 }
3253 else
3254 fp->uf_scoped = NULL;
3255
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003256#ifdef FEAT_PROFILE
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003257 if (prof_def_func())
3258 func_do_profile(fp);
3259#endif
3260 fp->uf_varargs = varargs;
Bram Moolenaar93343722018-07-10 19:39:18 +02003261 if (sandbox)
3262 flags |= FC_SANDBOX;
Bram Moolenaar4c17ad92020-04-27 22:47:51 +02003263 if (in_vim9script() && !ASCII_ISUPPER(*fp->uf_name))
3264 flags |= FC_VIM9;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003265 fp->uf_flags = flags;
3266 fp->uf_calls = 0;
Bram Moolenaar63ce4842020-02-19 15:46:48 +01003267 fp->uf_cleared = FALSE;
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02003268 fp->uf_script_ctx = current_sctx;
Bram Moolenaarbc2cfe42019-07-04 14:57:12 +02003269 fp->uf_script_ctx.sc_lnum += sourcing_lnum_top;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003270 if (is_export)
3271 {
3272 fp->uf_flags |= FC_EXPORT;
3273 // let ex_export() know the export worked.
3274 is_export = FALSE;
3275 }
3276
Bram Moolenaar09689a02020-05-09 22:50:08 +02003277 // ":def Func()" may need to be compiled
3278 if (eap->cmdidx == CMD_def && compile)
Bram Moolenaar04b12692020-05-04 23:24:44 +02003279 compile_def_function(fp, FALSE, context);
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003280
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003281 goto ret_free;
3282
3283erret:
3284 ga_clear_strings(&newargs);
Bram Moolenaar42ae78c2019-05-09 21:08:58 +02003285 ga_clear_strings(&default_args);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003286errret_2:
3287 ga_clear_strings(&newlines);
3288ret_free:
Bram Moolenaar292b90d2020-03-18 15:23:16 +01003289 ga_clear_strings(&argtypes);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003290 vim_free(skip_until);
Bram Moolenaar53564f72017-06-24 14:48:11 +02003291 vim_free(line_to_free);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003292 vim_free(fudi.fd_newkey);
Bram Moolenaar04b12692020-05-04 23:24:44 +02003293 if (name != name_arg)
3294 vim_free(name);
Bram Moolenaar5e774c72020-04-12 21:53:00 +02003295 vim_free(ret_type);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003296 did_emsg |= saved_did_emsg;
3297 need_wait_return |= saved_wait_return;
Bram Moolenaar04b12692020-05-04 23:24:44 +02003298
3299 return fp;
3300}
3301
3302/*
3303 * ":function"
3304 */
3305 void
3306ex_function(exarg_T *eap)
3307{
Bram Moolenaar09689a02020-05-09 22:50:08 +02003308 (void)def_function(eap, NULL, NULL, TRUE);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003309}
3310
3311/*
3312 * Return 5 if "p" starts with "<SID>" or "<SNR>" (ignoring case).
3313 * Return 2 if "p" starts with "s:".
3314 * Return 0 otherwise.
3315 */
3316 int
3317eval_fname_script(char_u *p)
3318{
Bram Moolenaare38eab22019-12-05 21:50:01 +01003319 // Use MB_STRICMP() because in Turkish comparing the "I" may not work with
3320 // the standard library function.
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003321 if (p[0] == '<' && (MB_STRNICMP(p + 1, "SID>", 4) == 0
3322 || MB_STRNICMP(p + 1, "SNR>", 4) == 0))
3323 return 5;
3324 if (p[0] == 's' && p[1] == ':')
3325 return 2;
3326 return 0;
3327}
3328
3329 int
Bram Moolenaar4c17ad92020-04-27 22:47:51 +02003330translated_function_exists(char_u *name, int is_global)
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003331{
3332 if (builtin_function(name, -1))
Bram Moolenaarac92e252019-08-03 21:58:38 +02003333 return has_internal_func(name);
Bram Moolenaar4c17ad92020-04-27 22:47:51 +02003334 return find_func(name, is_global, NULL) != NULL;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003335}
3336
3337/*
3338 * Return TRUE when "ufunc" has old-style "..." varargs
3339 * or named varargs "...name: type".
3340 */
3341 int
3342has_varargs(ufunc_T *ufunc)
3343{
3344 return ufunc->uf_varargs || ufunc->uf_va_name != NULL;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003345}
3346
3347/*
3348 * Return TRUE if a function "name" exists.
Bram Moolenaarb54c3ff2016-07-31 14:11:58 +02003349 * If "no_defef" is TRUE, do not dereference a Funcref.
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003350 */
3351 int
Bram Moolenaarb54c3ff2016-07-31 14:11:58 +02003352function_exists(char_u *name, int no_deref)
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003353{
3354 char_u *nm = name;
3355 char_u *p;
3356 int n = FALSE;
Bram Moolenaarb54c3ff2016-07-31 14:11:58 +02003357 int flag;
Bram Moolenaar4c17ad92020-04-27 22:47:51 +02003358 int is_global = FALSE;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003359
Bram Moolenaarb54c3ff2016-07-31 14:11:58 +02003360 flag = TFN_INT | TFN_QUIET | TFN_NO_AUTOLOAD;
3361 if (no_deref)
3362 flag |= TFN_NO_DEREF;
Bram Moolenaar4c17ad92020-04-27 22:47:51 +02003363 p = trans_function_name(&nm, &is_global, FALSE, flag, NULL, NULL);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003364 nm = skipwhite(nm);
3365
Bram Moolenaare38eab22019-12-05 21:50:01 +01003366 // Only accept "funcname", "funcname ", "funcname (..." and
3367 // "funcname(...", not "funcname!...".
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003368 if (p != NULL && (*nm == NUL || *nm == '('))
Bram Moolenaar4c17ad92020-04-27 22:47:51 +02003369 n = translated_function_exists(p, is_global);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003370 vim_free(p);
3371 return n;
3372}
3373
Bram Moolenaar113e1072019-01-20 15:30:40 +01003374#if defined(FEAT_PYTHON) || defined(FEAT_PYTHON3) || defined(PROTO)
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003375 char_u *
3376get_expanded_name(char_u *name, int check)
3377{
3378 char_u *nm = name;
3379 char_u *p;
Bram Moolenaar4c17ad92020-04-27 22:47:51 +02003380 int is_global = FALSE;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003381
Bram Moolenaar4c17ad92020-04-27 22:47:51 +02003382 p = trans_function_name(&nm, &is_global, FALSE,
3383 TFN_INT|TFN_QUIET, NULL, NULL);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003384
Bram Moolenaar4c17ad92020-04-27 22:47:51 +02003385 if (p != NULL && *nm == NUL
3386 && (!check || translated_function_exists(p, is_global)))
3387 return p;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003388
3389 vim_free(p);
3390 return NULL;
3391}
Bram Moolenaar113e1072019-01-20 15:30:40 +01003392#endif
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003393
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003394/*
3395 * Function given to ExpandGeneric() to obtain the list of user defined
3396 * function names.
3397 */
3398 char_u *
3399get_user_func_name(expand_T *xp, int idx)
3400{
3401 static long_u done;
3402 static hashitem_T *hi;
3403 ufunc_T *fp;
3404
3405 if (idx == 0)
3406 {
3407 done = 0;
3408 hi = func_hashtab.ht_array;
3409 }
3410 if (done < func_hashtab.ht_used)
3411 {
3412 if (done++ > 0)
3413 ++hi;
3414 while (HASHITEM_EMPTY(hi))
3415 ++hi;
3416 fp = HI2UF(hi);
3417
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003418 // don't show dead, dict and lambda functions
3419 if ((fp->uf_flags & FC_DEAD) || (fp->uf_flags & FC_DICT)
Bram Moolenaarb49edc12016-07-23 15:47:34 +02003420 || STRNCMP(fp->uf_name, "<lambda>", 8) == 0)
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003421 return (char_u *)"";
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003422
3423 if (STRLEN(fp->uf_name) + 4 >= IOSIZE)
Bram Moolenaare38eab22019-12-05 21:50:01 +01003424 return fp->uf_name; // prevents overflow
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003425
3426 cat_func_name(IObuff, fp);
3427 if (xp->xp_context != EXPAND_USER_FUNC)
3428 {
3429 STRCAT(IObuff, "(");
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003430 if (!has_varargs(fp) && fp->uf_args.ga_len == 0)
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003431 STRCAT(IObuff, ")");
3432 }
3433 return IObuff;
3434 }
3435 return NULL;
3436}
3437
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003438/*
3439 * ":delfunction {name}"
3440 */
3441 void
3442ex_delfunction(exarg_T *eap)
3443{
3444 ufunc_T *fp = NULL;
3445 char_u *p;
3446 char_u *name;
3447 funcdict_T fudi;
Bram Moolenaar4c17ad92020-04-27 22:47:51 +02003448 int is_global = FALSE;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003449
3450 p = eap->arg;
Bram Moolenaar4c17ad92020-04-27 22:47:51 +02003451 name = trans_function_name(&p, &is_global, eap->skip, 0, &fudi, NULL);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003452 vim_free(fudi.fd_newkey);
3453 if (name == NULL)
3454 {
3455 if (fudi.fd_dict != NULL && !eap->skip)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003456 emsg(_(e_funcref));
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003457 return;
3458 }
3459 if (!ends_excmd(*skipwhite(p)))
3460 {
3461 vim_free(name);
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003462 emsg(_(e_trailing));
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003463 return;
3464 }
3465 eap->nextcmd = check_nextcmd(p);
3466 if (eap->nextcmd != NULL)
3467 *p = NUL;
3468
3469 if (!eap->skip)
Bram Moolenaar4c17ad92020-04-27 22:47:51 +02003470 fp = find_func(name, is_global, NULL);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003471 vim_free(name);
3472
3473 if (!eap->skip)
3474 {
3475 if (fp == NULL)
3476 {
Bram Moolenaard6abcd12017-06-22 19:15:24 +02003477 if (!eap->forceit)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003478 semsg(_(e_nofunc), eap->arg);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003479 return;
3480 }
3481 if (fp->uf_calls > 0)
3482 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003483 semsg(_("E131: Cannot delete function %s: It is in use"), eap->arg);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003484 return;
3485 }
Bram Moolenaar4c17ad92020-04-27 22:47:51 +02003486 if (fp->uf_flags & FC_VIM9)
3487 {
3488 semsg(_("E1084: Cannot delete Vim9 script function %s"), eap->arg);
3489 return;
3490 }
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003491
3492 if (fudi.fd_dict != NULL)
3493 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01003494 // Delete the dict item that refers to the function, it will
3495 // invoke func_unref() and possibly delete the function.
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003496 dictitem_remove(fudi.fd_dict, fudi.fd_di);
3497 }
3498 else
Bram Moolenaar437bafe2016-08-01 15:40:54 +02003499 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01003500 // A normal function (not a numbered function or lambda) has a
3501 // refcount of 1 for the entry in the hashtable. When deleting
3502 // it and the refcount is more than one, it should be kept.
3503 // A numbered function and lambda should be kept if the refcount is
3504 // one or more.
Bram Moolenaar8dd3a432016-08-01 20:46:25 +02003505 if (fp->uf_refcount > (func_name_refcount(fp->uf_name) ? 0 : 1))
Bram Moolenaar437bafe2016-08-01 15:40:54 +02003506 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01003507 // Function is still referenced somewhere. Don't free it but
3508 // do remove it from the hashtable.
Bram Moolenaar8dd3a432016-08-01 20:46:25 +02003509 if (func_remove(fp))
3510 fp->uf_refcount--;
Bram Moolenaar437bafe2016-08-01 15:40:54 +02003511 fp->uf_flags |= FC_DELETED;
Bram Moolenaar437bafe2016-08-01 15:40:54 +02003512 }
3513 else
Bram Moolenaar03ff9bc2017-02-02 22:59:27 +01003514 func_clear_free(fp, FALSE);
Bram Moolenaar437bafe2016-08-01 15:40:54 +02003515 }
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003516 }
3517}
3518
3519/*
3520 * Unreference a Function: decrement the reference count and free it when it
Bram Moolenaar437bafe2016-08-01 15:40:54 +02003521 * becomes zero.
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003522 */
3523 void
3524func_unref(char_u *name)
3525{
Bram Moolenaar97baee82016-07-26 20:46:08 +02003526 ufunc_T *fp = NULL;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003527
Bram Moolenaar8dd3a432016-08-01 20:46:25 +02003528 if (name == NULL || !func_name_refcount(name))
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003529 return;
Bram Moolenaar4c17ad92020-04-27 22:47:51 +02003530 fp = find_func(name, FALSE, NULL);
Bram Moolenaar437bafe2016-08-01 15:40:54 +02003531 if (fp == NULL && isdigit(*name))
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003532 {
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003533#ifdef EXITFREE
Bram Moolenaar437bafe2016-08-01 15:40:54 +02003534 if (!entered_free_all_mem)
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003535#endif
Bram Moolenaar95f09602016-11-10 20:01:45 +01003536 internal_error("func_unref()");
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003537 }
Bram Moolenaar437bafe2016-08-01 15:40:54 +02003538 if (fp != NULL && --fp->uf_refcount <= 0)
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003539 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01003540 // Only delete it when it's not being used. Otherwise it's done
3541 // when "uf_calls" becomes zero.
Bram Moolenaar437bafe2016-08-01 15:40:54 +02003542 if (fp->uf_calls == 0)
Bram Moolenaar03ff9bc2017-02-02 22:59:27 +01003543 func_clear_free(fp, FALSE);
Bram Moolenaar97baee82016-07-26 20:46:08 +02003544 }
Bram Moolenaar437bafe2016-08-01 15:40:54 +02003545}
3546
3547/*
3548 * Unreference a Function: decrement the reference count and free it when it
3549 * becomes zero.
3550 */
3551 void
3552func_ptr_unref(ufunc_T *fp)
3553{
Bram Moolenaar97baee82016-07-26 20:46:08 +02003554 if (fp != NULL && --fp->uf_refcount <= 0)
3555 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01003556 // Only delete it when it's not being used. Otherwise it's done
3557 // when "uf_calls" becomes zero.
Bram Moolenaar97baee82016-07-26 20:46:08 +02003558 if (fp->uf_calls == 0)
Bram Moolenaar03ff9bc2017-02-02 22:59:27 +01003559 func_clear_free(fp, FALSE);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003560 }
3561}
3562
3563/*
3564 * Count a reference to a Function.
3565 */
3566 void
3567func_ref(char_u *name)
3568{
3569 ufunc_T *fp;
3570
Bram Moolenaar8dd3a432016-08-01 20:46:25 +02003571 if (name == NULL || !func_name_refcount(name))
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003572 return;
Bram Moolenaar4c17ad92020-04-27 22:47:51 +02003573 fp = find_func(name, FALSE, NULL);
Bram Moolenaar437bafe2016-08-01 15:40:54 +02003574 if (fp != NULL)
3575 ++fp->uf_refcount;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003576 else if (isdigit(*name))
Bram Moolenaare38eab22019-12-05 21:50:01 +01003577 // Only give an error for a numbered function.
3578 // Fail silently, when named or lambda function isn't found.
Bram Moolenaar95f09602016-11-10 20:01:45 +01003579 internal_error("func_ref()");
Bram Moolenaar437bafe2016-08-01 15:40:54 +02003580}
3581
3582/*
3583 * Count a reference to a Function.
3584 */
3585 void
3586func_ptr_ref(ufunc_T *fp)
3587{
3588 if (fp != NULL)
3589 ++fp->uf_refcount;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003590}
3591
3592/*
3593 * Return TRUE if items in "fc" do not have "copyID". That means they are not
3594 * referenced from anywhere that is in use.
3595 */
3596 static int
3597can_free_funccal(funccall_T *fc, int copyID)
3598{
3599 return (fc->l_varlist.lv_copyID != copyID
3600 && fc->l_vars.dv_copyID != copyID
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +02003601 && fc->l_avars.dv_copyID != copyID
3602 && fc->fc_copyID != copyID);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003603}
3604
3605/*
3606 * ":return [expr]"
3607 */
3608 void
3609ex_return(exarg_T *eap)
3610{
3611 char_u *arg = eap->arg;
3612 typval_T rettv;
3613 int returning = FALSE;
3614
3615 if (current_funccal == NULL)
3616 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003617 emsg(_("E133: :return not inside a function"));
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003618 return;
3619 }
3620
3621 if (eap->skip)
3622 ++emsg_skip;
3623
3624 eap->nextcmd = NULL;
3625 if ((*arg != NUL && *arg != '|' && *arg != '\n')
3626 && eval0(arg, &rettv, &eap->nextcmd, !eap->skip) != FAIL)
3627 {
3628 if (!eap->skip)
3629 returning = do_return(eap, FALSE, TRUE, &rettv);
3630 else
3631 clear_tv(&rettv);
3632 }
Bram Moolenaare38eab22019-12-05 21:50:01 +01003633 // It's safer to return also on error.
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003634 else if (!eap->skip)
3635 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01003636 // In return statement, cause_abort should be force_abort.
Bram Moolenaarfabaf752017-12-23 17:26:11 +01003637 update_force_abort();
3638
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003639 /*
3640 * Return unless the expression evaluation has been cancelled due to an
3641 * aborting error, an interrupt, or an exception.
3642 */
3643 if (!aborting())
3644 returning = do_return(eap, FALSE, TRUE, NULL);
3645 }
3646
Bram Moolenaare38eab22019-12-05 21:50:01 +01003647 // When skipping or the return gets pending, advance to the next command
3648 // in this line (!returning). Otherwise, ignore the rest of the line.
3649 // Following lines will be ignored by get_func_line().
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003650 if (returning)
3651 eap->nextcmd = NULL;
Bram Moolenaare38eab22019-12-05 21:50:01 +01003652 else if (eap->nextcmd == NULL) // no argument
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003653 eap->nextcmd = check_nextcmd(arg);
3654
3655 if (eap->skip)
3656 --emsg_skip;
3657}
3658
3659/*
3660 * ":1,25call func(arg1, arg2)" function call.
3661 */
3662 void
3663ex_call(exarg_T *eap)
3664{
3665 char_u *arg = eap->arg;
3666 char_u *startarg;
3667 char_u *name;
3668 char_u *tofree;
3669 int len;
3670 typval_T rettv;
3671 linenr_T lnum;
3672 int doesrange;
3673 int failed = FALSE;
3674 funcdict_T fudi;
3675 partial_T *partial = NULL;
3676
3677 if (eap->skip)
3678 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01003679 // trans_function_name() doesn't work well when skipping, use eval0()
3680 // instead to skip to any following command, e.g. for:
3681 // :if 0 | call dict.foo().bar() | endif
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003682 ++emsg_skip;
3683 if (eval0(eap->arg, &rettv, &eap->nextcmd, FALSE) != FAIL)
3684 clear_tv(&rettv);
3685 --emsg_skip;
3686 return;
3687 }
3688
Bram Moolenaar4c17ad92020-04-27 22:47:51 +02003689 tofree = trans_function_name(&arg, NULL, eap->skip,
3690 TFN_INT, &fudi, &partial);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003691 if (fudi.fd_newkey != NULL)
3692 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01003693 // Still need to give an error message for missing key.
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003694 semsg(_(e_dictkey), fudi.fd_newkey);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003695 vim_free(fudi.fd_newkey);
3696 }
3697 if (tofree == NULL)
3698 return;
3699
Bram Moolenaare38eab22019-12-05 21:50:01 +01003700 // Increase refcount on dictionary, it could get deleted when evaluating
3701 // the arguments.
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003702 if (fudi.fd_dict != NULL)
3703 ++fudi.fd_dict->dv_refcount;
3704
Bram Moolenaare38eab22019-12-05 21:50:01 +01003705 // If it is the name of a variable of type VAR_FUNC or VAR_PARTIAL use its
3706 // contents. For VAR_PARTIAL get its partial, unless we already have one
3707 // from trans_function_name().
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003708 len = (int)STRLEN(tofree);
3709 name = deref_func_name(tofree, &len,
3710 partial != NULL ? NULL : &partial, FALSE);
3711
Bram Moolenaare38eab22019-12-05 21:50:01 +01003712 // Skip white space to allow ":call func ()". Not good, but required for
3713 // backward compatibility.
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003714 startarg = skipwhite(arg);
Bram Moolenaare38eab22019-12-05 21:50:01 +01003715 rettv.v_type = VAR_UNKNOWN; // clear_tv() uses this
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003716
3717 if (*startarg != '(')
3718 {
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003719 semsg(_(e_missing_paren), eap->arg);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003720 goto end;
3721 }
3722
3723 /*
3724 * When skipping, evaluate the function once, to find the end of the
3725 * arguments.
3726 * When the function takes a range, this is discovered after the first
3727 * call, and the loop is broken.
3728 */
3729 if (eap->skip)
3730 {
3731 ++emsg_skip;
Bram Moolenaare38eab22019-12-05 21:50:01 +01003732 lnum = eap->line2; // do it once, also with an invalid range
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003733 }
3734 else
3735 lnum = eap->line1;
3736 for ( ; lnum <= eap->line2; ++lnum)
3737 {
Bram Moolenaarc6538bc2019-08-03 18:17:11 +02003738 funcexe_T funcexe;
3739
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003740 if (!eap->skip && eap->addr_count > 0)
3741 {
Bram Moolenaar9e353b52018-11-04 23:39:38 +01003742 if (lnum > curbuf->b_ml.ml_line_count)
3743 {
3744 // If the function deleted lines or switched to another buffer
3745 // the line number may become invalid.
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003746 emsg(_(e_invrange));
Bram Moolenaar9e353b52018-11-04 23:39:38 +01003747 break;
3748 }
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003749 curwin->w_cursor.lnum = lnum;
3750 curwin->w_cursor.col = 0;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003751 curwin->w_cursor.coladd = 0;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003752 }
3753 arg = startarg;
Bram Moolenaarc6538bc2019-08-03 18:17:11 +02003754
Bram Moolenaara80faa82020-04-12 19:37:17 +02003755 CLEAR_FIELD(funcexe);
Bram Moolenaarc6538bc2019-08-03 18:17:11 +02003756 funcexe.firstline = eap->line1;
3757 funcexe.lastline = eap->line2;
3758 funcexe.doesrange = &doesrange;
3759 funcexe.evaluate = !eap->skip;
3760 funcexe.partial = partial;
3761 funcexe.selfdict = fudi.fd_dict;
3762 if (get_func_tv(name, -1, &rettv, &arg, &funcexe) == FAIL)
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003763 {
3764 failed = TRUE;
3765 break;
3766 }
Bram Moolenaarc6f9f732018-02-11 19:06:26 +01003767 if (has_watchexpr())
3768 dbg_check_breakpoint(eap);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003769
Bram Moolenaar9cfe8f62019-08-17 21:04:16 +02003770 // Handle a function returning a Funcref, Dictionary or List.
3771 if (handle_subscript(&arg, &rettv, !eap->skip, TRUE,
3772 name, &name) == FAIL)
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003773 {
3774 failed = TRUE;
3775 break;
3776 }
3777
3778 clear_tv(&rettv);
3779 if (doesrange || eap->skip)
3780 break;
3781
Bram Moolenaare38eab22019-12-05 21:50:01 +01003782 // Stop when immediately aborting on error, or when an interrupt
3783 // occurred or an exception was thrown but not caught.
3784 // get_func_tv() returned OK, so that the check for trailing
3785 // characters below is executed.
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003786 if (aborting())
3787 break;
3788 }
3789 if (eap->skip)
3790 --emsg_skip;
3791
Bram Moolenaare51bb172020-02-16 19:42:23 +01003792 // When inside :try we need to check for following "| catch".
3793 if (!failed || eap->cstack->cs_trylevel > 0)
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003794 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01003795 // Check for trailing illegal characters and a following command.
Bram Moolenaara72cfb82020-04-23 17:07:30 +02003796 if (!ends_excmd2(eap->arg, arg))
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003797 {
Bram Moolenaar40d9da22020-02-17 10:01:24 +01003798 if (!failed)
3799 {
3800 emsg_severe = TRUE;
3801 emsg(_(e_trailing));
3802 }
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003803 }
3804 else
3805 eap->nextcmd = check_nextcmd(arg);
3806 }
3807
3808end:
3809 dict_unref(fudi.fd_dict);
3810 vim_free(tofree);
3811}
3812
3813/*
3814 * Return from a function. Possibly makes the return pending. Also called
3815 * for a pending return at the ":endtry" or after returning from an extra
3816 * do_cmdline(). "reanimate" is used in the latter case. "is_cmd" is set
3817 * when called due to a ":return" command. "rettv" may point to a typval_T
3818 * with the return rettv. Returns TRUE when the return can be carried out,
3819 * FALSE when the return gets pending.
3820 */
3821 int
3822do_return(
3823 exarg_T *eap,
3824 int reanimate,
3825 int is_cmd,
3826 void *rettv)
3827{
3828 int idx;
Bram Moolenaarddef1292019-12-16 17:10:33 +01003829 cstack_T *cstack = eap->cstack;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003830
3831 if (reanimate)
Bram Moolenaare38eab22019-12-05 21:50:01 +01003832 // Undo the return.
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003833 current_funccal->returned = FALSE;
3834
3835 /*
3836 * Cleanup (and inactivate) conditionals, but stop when a try conditional
3837 * not in its finally clause (which then is to be executed next) is found.
3838 * In this case, make the ":return" pending for execution at the ":endtry".
3839 * Otherwise, return normally.
3840 */
3841 idx = cleanup_conditionals(eap->cstack, 0, TRUE);
3842 if (idx >= 0)
3843 {
3844 cstack->cs_pending[idx] = CSTP_RETURN;
3845
3846 if (!is_cmd && !reanimate)
Bram Moolenaare38eab22019-12-05 21:50:01 +01003847 // A pending return again gets pending. "rettv" points to an
3848 // allocated variable with the rettv of the original ":return"'s
3849 // argument if present or is NULL else.
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003850 cstack->cs_rettv[idx] = rettv;
3851 else
3852 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01003853 // When undoing a return in order to make it pending, get the stored
3854 // return rettv.
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003855 if (reanimate)
3856 rettv = current_funccal->rettv;
3857
3858 if (rettv != NULL)
3859 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01003860 // Store the value of the pending return.
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003861 if ((cstack->cs_rettv[idx] = alloc_tv()) != NULL)
3862 *(typval_T *)cstack->cs_rettv[idx] = *(typval_T *)rettv;
3863 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003864 emsg(_(e_outofmem));
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003865 }
3866 else
3867 cstack->cs_rettv[idx] = NULL;
3868
3869 if (reanimate)
3870 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01003871 // The pending return value could be overwritten by a ":return"
3872 // without argument in a finally clause; reset the default
3873 // return value.
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003874 current_funccal->rettv->v_type = VAR_NUMBER;
3875 current_funccal->rettv->vval.v_number = 0;
3876 }
3877 }
3878 report_make_pending(CSTP_RETURN, rettv);
3879 }
3880 else
3881 {
3882 current_funccal->returned = TRUE;
3883
Bram Moolenaare38eab22019-12-05 21:50:01 +01003884 // If the return is carried out now, store the return value. For
3885 // a return immediately after reanimation, the value is already
3886 // there.
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003887 if (!reanimate && rettv != NULL)
3888 {
3889 clear_tv(current_funccal->rettv);
3890 *current_funccal->rettv = *(typval_T *)rettv;
3891 if (!is_cmd)
3892 vim_free(rettv);
3893 }
3894 }
3895
3896 return idx < 0;
3897}
3898
3899/*
3900 * Free the variable with a pending return value.
3901 */
3902 void
3903discard_pending_return(void *rettv)
3904{
3905 free_tv((typval_T *)rettv);
3906}
3907
3908/*
3909 * Generate a return command for producing the value of "rettv". The result
3910 * is an allocated string. Used by report_pending() for verbose messages.
3911 */
3912 char_u *
3913get_return_cmd(void *rettv)
3914{
3915 char_u *s = NULL;
3916 char_u *tofree = NULL;
3917 char_u numbuf[NUMBUFLEN];
3918
3919 if (rettv != NULL)
3920 s = echo_string((typval_T *)rettv, &tofree, numbuf, 0);
3921 if (s == NULL)
3922 s = (char_u *)"";
3923
3924 STRCPY(IObuff, ":return ");
3925 STRNCPY(IObuff + 8, s, IOSIZE - 8);
3926 if (STRLEN(s) + 8 >= IOSIZE)
3927 STRCPY(IObuff + IOSIZE - 4, "...");
3928 vim_free(tofree);
3929 return vim_strsave(IObuff);
3930}
3931
3932/*
3933 * Get next function line.
3934 * Called by do_cmdline() to get the next line.
3935 * Returns allocated string, or NULL for end of function.
3936 */
3937 char_u *
3938get_func_line(
3939 int c UNUSED,
3940 void *cookie,
Bram Moolenaare96a2492019-06-25 04:12:16 +02003941 int indent UNUSED,
3942 int do_concat UNUSED)
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003943{
3944 funccall_T *fcp = (funccall_T *)cookie;
3945 ufunc_T *fp = fcp->func;
3946 char_u *retval;
Bram Moolenaare38eab22019-12-05 21:50:01 +01003947 garray_T *gap; // growarray with function lines
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003948
Bram Moolenaare38eab22019-12-05 21:50:01 +01003949 // If breakpoints have been added/deleted need to check for it.
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003950 if (fcp->dbg_tick != debug_tick)
3951 {
3952 fcp->breakpoint = dbg_find_breakpoint(FALSE, fp->uf_name,
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01003953 SOURCING_LNUM);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003954 fcp->dbg_tick = debug_tick;
3955 }
3956#ifdef FEAT_PROFILE
3957 if (do_profiling == PROF_YES)
3958 func_line_end(cookie);
3959#endif
3960
3961 gap = &fp->uf_lines;
3962 if (((fp->uf_flags & FC_ABORT) && did_emsg && !aborted_in_try())
3963 || fcp->returned)
3964 retval = NULL;
3965 else
3966 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01003967 // Skip NULL lines (continuation lines).
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003968 while (fcp->linenr < gap->ga_len
3969 && ((char_u **)(gap->ga_data))[fcp->linenr] == NULL)
3970 ++fcp->linenr;
3971 if (fcp->linenr >= gap->ga_len)
3972 retval = NULL;
3973 else
3974 {
3975 retval = vim_strsave(((char_u **)(gap->ga_data))[fcp->linenr++]);
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01003976 SOURCING_LNUM = fcp->linenr;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003977#ifdef FEAT_PROFILE
3978 if (do_profiling == PROF_YES)
3979 func_line_start(cookie);
3980#endif
3981 }
3982 }
3983
Bram Moolenaare38eab22019-12-05 21:50:01 +01003984 // Did we encounter a breakpoint?
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01003985 if (fcp->breakpoint != 0 && fcp->breakpoint <= SOURCING_LNUM)
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003986 {
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01003987 dbg_breakpoint(fp->uf_name, SOURCING_LNUM);
Bram Moolenaare38eab22019-12-05 21:50:01 +01003988 // Find next breakpoint.
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003989 fcp->breakpoint = dbg_find_breakpoint(FALSE, fp->uf_name,
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01003990 SOURCING_LNUM);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003991 fcp->dbg_tick = debug_tick;
3992 }
3993
3994 return retval;
3995}
3996
Bram Moolenaara9b579f2016-07-17 18:29:19 +02003997/*
3998 * Return TRUE if the currently active function should be ended, because a
3999 * return was encountered or an error occurred. Used inside a ":while".
4000 */
4001 int
4002func_has_ended(void *cookie)
4003{
4004 funccall_T *fcp = (funccall_T *)cookie;
4005
Bram Moolenaare38eab22019-12-05 21:50:01 +01004006 // Ignore the "abort" flag if the abortion behavior has been changed due to
4007 // an error inside a try conditional.
Bram Moolenaara9b579f2016-07-17 18:29:19 +02004008 return (((fcp->func->uf_flags & FC_ABORT) && did_emsg && !aborted_in_try())
4009 || fcp->returned);
4010}
4011
4012/*
4013 * return TRUE if cookie indicates a function which "abort"s on errors.
4014 */
4015 int
4016func_has_abort(
4017 void *cookie)
4018{
4019 return ((funccall_T *)cookie)->func->uf_flags & FC_ABORT;
4020}
4021
4022
4023/*
4024 * Turn "dict.Func" into a partial for "Func" bound to "dict".
4025 * Don't do this when "Func" is already a partial that was bound
4026 * explicitly (pt_auto is FALSE).
4027 * Changes "rettv" in-place.
4028 * Returns the updated "selfdict_in".
4029 */
4030 dict_T *
4031make_partial(dict_T *selfdict_in, typval_T *rettv)
4032{
Bram Moolenaar437bafe2016-08-01 15:40:54 +02004033 char_u *fname;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02004034 char_u *tofree = NULL;
4035 ufunc_T *fp;
4036 char_u fname_buf[FLEN_FIXED + 1];
4037 int error;
4038 dict_T *selfdict = selfdict_in;
4039
Bram Moolenaar437bafe2016-08-01 15:40:54 +02004040 if (rettv->v_type == VAR_PARTIAL && rettv->vval.v_partial->pt_func != NULL)
4041 fp = rettv->vval.v_partial->pt_func;
4042 else
4043 {
4044 fname = rettv->v_type == VAR_FUNC ? rettv->vval.v_string
4045 : rettv->vval.v_partial->pt_name;
Bram Moolenaare38eab22019-12-05 21:50:01 +01004046 // Translate "s:func" to the stored function name.
Bram Moolenaar437bafe2016-08-01 15:40:54 +02004047 fname = fname_trans_sid(fname, fname_buf, &tofree, &error);
Bram Moolenaar4c17ad92020-04-27 22:47:51 +02004048 fp = find_func(fname, FALSE, NULL);
Bram Moolenaar437bafe2016-08-01 15:40:54 +02004049 vim_free(tofree);
4050 }
Bram Moolenaara9b579f2016-07-17 18:29:19 +02004051
4052 if (fp != NULL && (fp->uf_flags & FC_DICT))
4053 {
Bram Moolenaarc799fe22019-05-28 23:08:19 +02004054 partial_T *pt = ALLOC_CLEAR_ONE(partial_T);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02004055
4056 if (pt != NULL)
4057 {
4058 pt->pt_refcount = 1;
4059 pt->pt_dict = selfdict;
4060 pt->pt_auto = TRUE;
4061 selfdict = NULL;
4062 if (rettv->v_type == VAR_FUNC)
4063 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01004064 // Just a function: Take over the function name and use
4065 // selfdict.
Bram Moolenaara9b579f2016-07-17 18:29:19 +02004066 pt->pt_name = rettv->vval.v_string;
4067 }
4068 else
4069 {
4070 partial_T *ret_pt = rettv->vval.v_partial;
4071 int i;
4072
Bram Moolenaare38eab22019-12-05 21:50:01 +01004073 // Partial: copy the function name, use selfdict and copy
4074 // args. Can't take over name or args, the partial might
4075 // be referenced elsewhere.
Bram Moolenaar437bafe2016-08-01 15:40:54 +02004076 if (ret_pt->pt_name != NULL)
4077 {
4078 pt->pt_name = vim_strsave(ret_pt->pt_name);
4079 func_ref(pt->pt_name);
4080 }
4081 else
4082 {
4083 pt->pt_func = ret_pt->pt_func;
4084 func_ptr_ref(pt->pt_func);
4085 }
Bram Moolenaara9b579f2016-07-17 18:29:19 +02004086 if (ret_pt->pt_argc > 0)
4087 {
Bram Moolenaarc799fe22019-05-28 23:08:19 +02004088 pt->pt_argv = ALLOC_MULT(typval_T, ret_pt->pt_argc);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02004089 if (pt->pt_argv == NULL)
Bram Moolenaare38eab22019-12-05 21:50:01 +01004090 // out of memory: drop the arguments
Bram Moolenaara9b579f2016-07-17 18:29:19 +02004091 pt->pt_argc = 0;
4092 else
4093 {
4094 pt->pt_argc = ret_pt->pt_argc;
4095 for (i = 0; i < pt->pt_argc; i++)
4096 copy_tv(&ret_pt->pt_argv[i], &pt->pt_argv[i]);
4097 }
4098 }
4099 partial_unref(ret_pt);
4100 }
4101 rettv->v_type = VAR_PARTIAL;
4102 rettv->vval.v_partial = pt;
4103 }
4104 }
4105 return selfdict;
4106}
4107
4108/*
4109 * Return the name of the executed function.
4110 */
4111 char_u *
4112func_name(void *cookie)
4113{
4114 return ((funccall_T *)cookie)->func->uf_name;
4115}
4116
4117/*
4118 * Return the address holding the next breakpoint line for a funccall cookie.
4119 */
4120 linenr_T *
4121func_breakpoint(void *cookie)
4122{
4123 return &((funccall_T *)cookie)->breakpoint;
4124}
4125
4126/*
4127 * Return the address holding the debug tick for a funccall cookie.
4128 */
4129 int *
4130func_dbg_tick(void *cookie)
4131{
4132 return &((funccall_T *)cookie)->dbg_tick;
4133}
4134
4135/*
4136 * Return the nesting level for a funccall cookie.
4137 */
4138 int
4139func_level(void *cookie)
4140{
4141 return ((funccall_T *)cookie)->level;
4142}
4143
4144/*
4145 * Return TRUE when a function was ended by a ":return" command.
4146 */
4147 int
4148current_func_returned(void)
4149{
4150 return current_funccal->returned;
4151}
4152
Bram Moolenaara9b579f2016-07-17 18:29:19 +02004153 int
4154free_unref_funccal(int copyID, int testing)
4155{
4156 int did_free = FALSE;
4157 int did_free_funccal = FALSE;
4158 funccall_T *fc, **pfc;
4159
4160 for (pfc = &previous_funccal; *pfc != NULL; )
4161 {
4162 if (can_free_funccal(*pfc, copyID))
4163 {
4164 fc = *pfc;
4165 *pfc = fc->caller;
Bram Moolenaar209b8e32019-03-14 13:43:24 +01004166 free_funccal_contents(fc);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02004167 did_free = TRUE;
4168 did_free_funccal = TRUE;
4169 }
4170 else
4171 pfc = &(*pfc)->caller;
4172 }
4173 if (did_free_funccal)
Bram Moolenaare38eab22019-12-05 21:50:01 +01004174 // When a funccal was freed some more items might be garbage
4175 // collected, so run again.
Bram Moolenaara9b579f2016-07-17 18:29:19 +02004176 (void)garbage_collect(testing);
4177
4178 return did_free;
4179}
4180
4181/*
Bram Moolenaarba209902016-08-24 22:06:38 +02004182 * Get function call environment based on backtrace debug level
Bram Moolenaara9b579f2016-07-17 18:29:19 +02004183 */
4184 static funccall_T *
4185get_funccal(void)
4186{
4187 int i;
4188 funccall_T *funccal;
4189 funccall_T *temp_funccal;
4190
4191 funccal = current_funccal;
4192 if (debug_backtrace_level > 0)
4193 {
4194 for (i = 0; i < debug_backtrace_level; i++)
4195 {
4196 temp_funccal = funccal->caller;
4197 if (temp_funccal)
4198 funccal = temp_funccal;
4199 else
Bram Moolenaare38eab22019-12-05 21:50:01 +01004200 // backtrace level overflow. reset to max
Bram Moolenaara9b579f2016-07-17 18:29:19 +02004201 debug_backtrace_level = i;
4202 }
4203 }
4204 return funccal;
4205}
4206
4207/*
4208 * Return the hashtable used for local variables in the current funccal.
4209 * Return NULL if there is no current funccal.
4210 */
4211 hashtab_T *
4212get_funccal_local_ht()
4213{
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01004214 if (current_funccal == NULL || current_funccal->l_vars.dv_refcount == 0)
Bram Moolenaara9b579f2016-07-17 18:29:19 +02004215 return NULL;
4216 return &get_funccal()->l_vars.dv_hashtab;
4217}
4218
4219/*
4220 * Return the l: scope variable.
4221 * Return NULL if there is no current funccal.
4222 */
4223 dictitem_T *
4224get_funccal_local_var()
4225{
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01004226 if (current_funccal == NULL || current_funccal->l_vars.dv_refcount == 0)
Bram Moolenaara9b579f2016-07-17 18:29:19 +02004227 return NULL;
4228 return &get_funccal()->l_vars_var;
4229}
4230
4231/*
4232 * Return the hashtable used for argument in the current funccal.
4233 * Return NULL if there is no current funccal.
4234 */
4235 hashtab_T *
4236get_funccal_args_ht()
4237{
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01004238 if (current_funccal == NULL || current_funccal->l_vars.dv_refcount == 0)
Bram Moolenaara9b579f2016-07-17 18:29:19 +02004239 return NULL;
4240 return &get_funccal()->l_avars.dv_hashtab;
4241}
4242
4243/*
4244 * Return the a: scope variable.
4245 * Return NULL if there is no current funccal.
4246 */
4247 dictitem_T *
4248get_funccal_args_var()
4249{
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01004250 if (current_funccal == NULL || current_funccal->l_vars.dv_refcount == 0)
Bram Moolenaara9b579f2016-07-17 18:29:19 +02004251 return NULL;
Bram Moolenaarc7d9eac2017-02-01 20:26:51 +01004252 return &get_funccal()->l_avars_var;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02004253}
4254
4255/*
Bram Moolenaara9b579f2016-07-17 18:29:19 +02004256 * List function variables, if there is a function.
4257 */
4258 void
4259list_func_vars(int *first)
4260{
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01004261 if (current_funccal != NULL && current_funccal->l_vars.dv_refcount > 0)
Bram Moolenaara9b579f2016-07-17 18:29:19 +02004262 list_hashtable_vars(&current_funccal->l_vars.dv_hashtab,
Bram Moolenaar32526b32019-01-19 17:43:09 +01004263 "l:", FALSE, first);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02004264}
4265
4266/*
4267 * If "ht" is the hashtable for local variables in the current funccal, return
4268 * the dict that contains it.
4269 * Otherwise return NULL.
4270 */
4271 dict_T *
4272get_current_funccal_dict(hashtab_T *ht)
4273{
4274 if (current_funccal != NULL
4275 && ht == &current_funccal->l_vars.dv_hashtab)
4276 return &current_funccal->l_vars;
4277 return NULL;
4278}
4279
4280/*
Bram Moolenaar10ce39a2016-07-29 22:37:06 +02004281 * Search hashitem in parent scope.
4282 */
4283 hashitem_T *
Bram Moolenaarba96e9a2016-08-01 17:10:20 +02004284find_hi_in_scoped_ht(char_u *name, hashtab_T **pht)
Bram Moolenaar10ce39a2016-07-29 22:37:06 +02004285{
4286 funccall_T *old_current_funccal = current_funccal;
4287 hashtab_T *ht;
4288 hashitem_T *hi = NULL;
Bram Moolenaarba96e9a2016-08-01 17:10:20 +02004289 char_u *varname;
Bram Moolenaar10ce39a2016-07-29 22:37:06 +02004290
4291 if (current_funccal == NULL || current_funccal->func->uf_scoped == NULL)
4292 return NULL;
4293
Bram Moolenaare38eab22019-12-05 21:50:01 +01004294 // Search in parent scope which is possible to reference from lambda
Bram Moolenaar10ce39a2016-07-29 22:37:06 +02004295 current_funccal = current_funccal->func->uf_scoped;
Bram Moolenaar58016442016-07-31 18:30:22 +02004296 while (current_funccal != NULL)
Bram Moolenaar10ce39a2016-07-29 22:37:06 +02004297 {
Bram Moolenaarba96e9a2016-08-01 17:10:20 +02004298 ht = find_var_ht(name, &varname);
4299 if (ht != NULL && *varname != NUL)
Bram Moolenaar58016442016-07-31 18:30:22 +02004300 {
Bram Moolenaarba96e9a2016-08-01 17:10:20 +02004301 hi = hash_find(ht, varname);
Bram Moolenaar58016442016-07-31 18:30:22 +02004302 if (!HASHITEM_EMPTY(hi))
4303 {
4304 *pht = ht;
4305 break;
4306 }
4307 }
4308 if (current_funccal == current_funccal->func->uf_scoped)
4309 break;
4310 current_funccal = current_funccal->func->uf_scoped;
Bram Moolenaar10ce39a2016-07-29 22:37:06 +02004311 }
4312 current_funccal = old_current_funccal;
4313
4314 return hi;
4315}
4316
4317/*
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +02004318 * Search variable in parent scope.
4319 */
4320 dictitem_T *
Bram Moolenaarba96e9a2016-08-01 17:10:20 +02004321find_var_in_scoped_ht(char_u *name, int no_autoload)
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +02004322{
4323 dictitem_T *v = NULL;
4324 funccall_T *old_current_funccal = current_funccal;
4325 hashtab_T *ht;
Bram Moolenaarba96e9a2016-08-01 17:10:20 +02004326 char_u *varname;
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +02004327
4328 if (current_funccal == NULL || current_funccal->func->uf_scoped == NULL)
4329 return NULL;
4330
Bram Moolenaare38eab22019-12-05 21:50:01 +01004331 // Search in parent scope which is possible to reference from lambda
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +02004332 current_funccal = current_funccal->func->uf_scoped;
4333 while (current_funccal)
4334 {
Bram Moolenaarba96e9a2016-08-01 17:10:20 +02004335 ht = find_var_ht(name, &varname);
4336 if (ht != NULL && *varname != NUL)
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +02004337 {
Bram Moolenaarba96e9a2016-08-01 17:10:20 +02004338 v = find_var_in_ht(ht, *name, varname, no_autoload);
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +02004339 if (v != NULL)
4340 break;
4341 }
4342 if (current_funccal == current_funccal->func->uf_scoped)
4343 break;
4344 current_funccal = current_funccal->func->uf_scoped;
4345 }
4346 current_funccal = old_current_funccal;
4347
4348 return v;
4349}
4350
4351/*
Bram Moolenaara9b579f2016-07-17 18:29:19 +02004352 * Set "copyID + 1" in previous_funccal and callers.
4353 */
4354 int
4355set_ref_in_previous_funccal(int copyID)
4356{
4357 int abort = FALSE;
4358 funccall_T *fc;
4359
Bram Moolenaar6e5000d2019-06-17 21:18:41 +02004360 for (fc = previous_funccal; !abort && fc != NULL; fc = fc->caller)
Bram Moolenaara9b579f2016-07-17 18:29:19 +02004361 {
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +02004362 fc->fc_copyID = copyID + 1;
Bram Moolenaar6e5000d2019-06-17 21:18:41 +02004363 abort = abort
4364 || set_ref_in_ht(&fc->l_vars.dv_hashtab, copyID + 1, NULL)
4365 || set_ref_in_ht(&fc->l_avars.dv_hashtab, copyID + 1, NULL)
Bram Moolenaar7be3ab22019-06-23 01:46:15 +02004366 || set_ref_in_list_items(&fc->l_varlist, copyID + 1, NULL);
Bram Moolenaara9b579f2016-07-17 18:29:19 +02004367 }
4368 return abort;
4369}
4370
Bram Moolenaarbc7ce672016-08-01 22:49:22 +02004371 static int
4372set_ref_in_funccal(funccall_T *fc, int copyID)
4373{
4374 int abort = FALSE;
4375
4376 if (fc->fc_copyID != copyID)
4377 {
4378 fc->fc_copyID = copyID;
Bram Moolenaar6e5000d2019-06-17 21:18:41 +02004379 abort = abort
4380 || set_ref_in_ht(&fc->l_vars.dv_hashtab, copyID, NULL)
4381 || set_ref_in_ht(&fc->l_avars.dv_hashtab, copyID, NULL)
Bram Moolenaar7be3ab22019-06-23 01:46:15 +02004382 || set_ref_in_list_items(&fc->l_varlist, copyID, NULL)
Bram Moolenaar6e5000d2019-06-17 21:18:41 +02004383 || set_ref_in_func(NULL, fc->func, copyID);
Bram Moolenaarbc7ce672016-08-01 22:49:22 +02004384 }
4385 return abort;
4386}
4387
Bram Moolenaara9b579f2016-07-17 18:29:19 +02004388/*
4389 * Set "copyID" in all local vars and arguments in the call stack.
4390 */
4391 int
4392set_ref_in_call_stack(int copyID)
4393{
Bram Moolenaarc07f67a2019-06-06 19:03:17 +02004394 int abort = FALSE;
4395 funccall_T *fc;
4396 funccal_entry_T *entry;
Bram Moolenaara9b579f2016-07-17 18:29:19 +02004397
Bram Moolenaar75a1a942019-06-20 03:45:36 +02004398 for (fc = current_funccal; !abort && fc != NULL; fc = fc->caller)
Bram Moolenaarbc7ce672016-08-01 22:49:22 +02004399 abort = abort || set_ref_in_funccal(fc, copyID);
Bram Moolenaarc07f67a2019-06-06 19:03:17 +02004400
4401 // Also go through the funccal_stack.
Bram Moolenaar75a1a942019-06-20 03:45:36 +02004402 for (entry = funccal_stack; !abort && entry != NULL; entry = entry->next)
4403 for (fc = entry->top_funccal; !abort && fc != NULL; fc = fc->caller)
Bram Moolenaarc07f67a2019-06-06 19:03:17 +02004404 abort = abort || set_ref_in_funccal(fc, copyID);
4405
Bram Moolenaarbc7ce672016-08-01 22:49:22 +02004406 return abort;
4407}
4408
4409/*
4410 * Set "copyID" in all functions available by name.
4411 */
4412 int
4413set_ref_in_functions(int copyID)
4414{
4415 int todo;
4416 hashitem_T *hi = NULL;
4417 int abort = FALSE;
4418 ufunc_T *fp;
4419
4420 todo = (int)func_hashtab.ht_used;
4421 for (hi = func_hashtab.ht_array; todo > 0 && !got_int; ++hi)
Bram Moolenaara9b579f2016-07-17 18:29:19 +02004422 {
Bram Moolenaarbc7ce672016-08-01 22:49:22 +02004423 if (!HASHITEM_EMPTY(hi))
4424 {
4425 --todo;
4426 fp = HI2UF(hi);
4427 if (!func_name_refcount(fp->uf_name))
4428 abort = abort || set_ref_in_func(NULL, fp, copyID);
4429 }
Bram Moolenaara9b579f2016-07-17 18:29:19 +02004430 }
4431 return abort;
4432}
4433
4434/*
4435 * Set "copyID" in all function arguments.
4436 */
4437 int
4438set_ref_in_func_args(int copyID)
4439{
4440 int i;
4441 int abort = FALSE;
4442
4443 for (i = 0; i < funcargs.ga_len; ++i)
4444 abort = abort || set_ref_in_item(((typval_T **)funcargs.ga_data)[i],
4445 copyID, NULL, NULL);
4446 return abort;
4447}
4448
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +02004449/*
4450 * Mark all lists and dicts referenced through function "name" with "copyID".
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +02004451 * Returns TRUE if setting references failed somehow.
4452 */
4453 int
Bram Moolenaar437bafe2016-08-01 15:40:54 +02004454set_ref_in_func(char_u *name, ufunc_T *fp_in, int copyID)
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +02004455{
Bram Moolenaar437bafe2016-08-01 15:40:54 +02004456 ufunc_T *fp = fp_in;
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +02004457 funccall_T *fc;
Bram Moolenaaref140542019-12-31 21:27:13 +01004458 int error = FCERR_NONE;
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +02004459 char_u fname_buf[FLEN_FIXED + 1];
4460 char_u *tofree = NULL;
4461 char_u *fname;
Bram Moolenaarbc7ce672016-08-01 22:49:22 +02004462 int abort = FALSE;
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +02004463
Bram Moolenaar437bafe2016-08-01 15:40:54 +02004464 if (name == NULL && fp_in == NULL)
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +02004465 return FALSE;
4466
Bram Moolenaar437bafe2016-08-01 15:40:54 +02004467 if (fp_in == NULL)
4468 {
4469 fname = fname_trans_sid(name, fname_buf, &tofree, &error);
Bram Moolenaar4c17ad92020-04-27 22:47:51 +02004470 fp = find_func(fname, FALSE, NULL);
Bram Moolenaar437bafe2016-08-01 15:40:54 +02004471 }
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +02004472 if (fp != NULL)
4473 {
4474 for (fc = fp->uf_scoped; fc != NULL; fc = fc->func->uf_scoped)
Bram Moolenaarbc7ce672016-08-01 22:49:22 +02004475 abort = abort || set_ref_in_funccal(fc, copyID);
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +02004476 }
Bram Moolenaar5adc55c2020-05-02 23:12:58 +02004477
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +02004478 vim_free(tofree);
Bram Moolenaarbc7ce672016-08-01 22:49:22 +02004479 return abort;
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +02004480}
4481
Bram Moolenaare38eab22019-12-05 21:50:01 +01004482#endif // FEAT_EVAL