Merge branch 'vim' into floating_point
[vim_extended.git] / src / eval.c
blob21e58f0672159b5342b5fc1aca550e7b966bcf15
1 /* vi:set ts=8 sts=4 sw=4:
3 * VIM - Vi IMproved by Bram Moolenaar
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 */
11 * eval.c: Expression evaluation.
13 #if defined(MSDOS) || defined(WIN16) || defined(WIN32) || defined(_WIN64)
14 # include "vimio.h" /* for mch_open(), must be before vim.h */
15 #endif
17 #include "vim.h"
19 #if defined(FEAT_EVAL) || defined(PROTO)
21 #ifdef AMIGA
22 # include <time.h> /* for strftime() */
23 #endif
25 #ifdef MACOS
26 # include <time.h> /* for time_t */
27 #endif
29 #if defined(FEAT_FLOAT) && defined(HAVE_MATH_H)
30 # include <math.h>
31 #endif
33 #define DICT_MAXNEST 100 /* maximum nesting of lists and dicts */
36 * In a hashtab item "hi_key" points to "di_key" in a dictitem.
37 * This avoids adding a pointer to the hashtab item.
38 * DI2HIKEY() converts a dictitem pointer to a hashitem key pointer.
39 * HIKEY2DI() converts a hashitem key pointer to a dictitem pointer.
40 * HI2DI() converts a hashitem pointer to a dictitem pointer.
42 static dictitem_T dumdi;
43 #define DI2HIKEY(di) ((di)->di_key)
44 #define HIKEY2DI(p) ((dictitem_T *)(p - (dumdi.di_key - (char_u *)&dumdi)))
45 #define HI2DI(hi) HIKEY2DI((hi)->hi_key)
48 * Structure returned by get_lval() and used by set_var_lval().
49 * For a plain name:
50 * "name" points to the variable name.
51 * "exp_name" is NULL.
52 * "tv" is NULL
53 * For a magic braces name:
54 * "name" points to the expanded variable name.
55 * "exp_name" is non-NULL, to be freed later.
56 * "tv" is NULL
57 * For an index in a list:
58 * "name" points to the (expanded) variable name.
59 * "exp_name" NULL or non-NULL, to be freed later.
60 * "tv" points to the (first) list item value
61 * "li" points to the (first) list item
62 * "range", "n1", "n2" and "empty2" indicate what items are used.
63 * For an existing Dict item:
64 * "name" points to the (expanded) variable name.
65 * "exp_name" NULL or non-NULL, to be freed later.
66 * "tv" points to the dict item value
67 * "newkey" is NULL
68 * For a non-existing Dict item:
69 * "name" points to the (expanded) variable name.
70 * "exp_name" NULL or non-NULL, to be freed later.
71 * "tv" points to the Dictionary typval_T
72 * "newkey" is the key for the new item.
74 typedef struct lval_S
76 char_u *ll_name; /* start of variable name (can be NULL) */
77 char_u *ll_exp_name; /* NULL or expanded name in allocated memory. */
78 typval_T *ll_tv; /* Typeval of item being used. If "newkey"
79 isn't NULL it's the Dict to which to add
80 the item. */
81 listitem_T *ll_li; /* The list item or NULL. */
82 list_T *ll_list; /* The list or NULL. */
83 int ll_range; /* TRUE when a [i:j] range was used */
84 long ll_n1; /* First index for list */
85 long ll_n2; /* Second index for list range */
86 int ll_empty2; /* Second index is empty: [i:] */
87 dict_T *ll_dict; /* The Dictionary or NULL */
88 dictitem_T *ll_di; /* The dictitem or NULL */
89 char_u *ll_newkey; /* New key for Dict in alloc. mem or NULL. */
90 } lval_T;
93 static char *e_letunexp = N_("E18: Unexpected characters in :let");
94 static char *e_listidx = N_("E684: list index out of range: %ld");
95 static char *e_undefvar = N_("E121: Undefined variable: %s");
96 static char *e_missbrac = N_("E111: Missing ']'");
97 static char *e_listarg = N_("E686: Argument of %s must be a List");
98 static char *e_listdictarg = N_("E712: Argument of %s must be a List or Dictionary");
99 static char *e_emptykey = N_("E713: Cannot use empty key for Dictionary");
100 static char *e_listreq = N_("E714: List required");
101 static char *e_dictreq = N_("E715: Dictionary required");
102 static char *e_toomanyarg = N_("E118: Too many arguments for function: %s");
103 static char *e_dictkey = N_("E716: Key not present in Dictionary: %s");
104 static char *e_funcexts = N_("E122: Function %s already exists, add ! to replace it");
105 static char *e_funcdict = N_("E717: Dictionary entry already exists");
106 static char *e_funcref = N_("E718: Funcref required");
107 static char *e_dictrange = N_("E719: Cannot use [:] with a Dictionary");
108 static char *e_letwrong = N_("E734: Wrong variable type for %s=");
109 static char *e_nofunc = N_("E130: Unknown function: %s");
110 static char *e_illvar = N_("E461: Illegal variable name: %s");
113 * All user-defined global variables are stored in dictionary "globvardict".
114 * "globvars_var" is the variable that is used for "g:".
116 static dict_T globvardict;
117 static dictitem_T globvars_var;
118 #define globvarht globvardict.dv_hashtab
121 * Old Vim variables such as "v:version" are also available without the "v:".
122 * Also in functions. We need a special hashtable for them.
124 static hashtab_T compat_hashtab;
127 * When recursively copying lists and dicts we need to remember which ones we
128 * have done to avoid endless recursiveness. This unique ID is used for that.
130 static int current_copyID = 0;
133 * Array to hold the hashtab with variables local to each sourced script.
134 * Each item holds a variable (nameless) that points to the dict_T.
136 typedef struct
138 dictitem_T sv_var;
139 dict_T sv_dict;
140 } scriptvar_T;
142 static garray_T ga_scripts = {0, 0, sizeof(scriptvar_T), 4, NULL};
143 #define SCRIPT_SV(id) (((scriptvar_T *)ga_scripts.ga_data)[(id) - 1])
144 #define SCRIPT_VARS(id) (SCRIPT_SV(id).sv_dict.dv_hashtab)
146 static int echo_attr = 0; /* attributes used for ":echo" */
148 /* Values for trans_function_name() argument: */
149 #define TFN_INT 1 /* internal function name OK */
150 #define TFN_QUIET 2 /* no error messages */
153 * Structure to hold info for a user function.
155 typedef struct ufunc ufunc_T;
157 struct ufunc
159 int uf_varargs; /* variable nr of arguments */
160 int uf_flags;
161 int uf_calls; /* nr of active calls */
162 garray_T uf_args; /* arguments */
163 garray_T uf_lines; /* function lines */
164 #ifdef FEAT_PROFILE
165 int uf_profiling; /* TRUE when func is being profiled */
166 /* profiling the function as a whole */
167 int uf_tm_count; /* nr of calls */
168 proftime_T uf_tm_total; /* time spent in function + children */
169 proftime_T uf_tm_self; /* time spent in function itself */
170 proftime_T uf_tm_children; /* time spent in children this call */
171 /* profiling the function per line */
172 int *uf_tml_count; /* nr of times line was executed */
173 proftime_T *uf_tml_total; /* time spent in a line + children */
174 proftime_T *uf_tml_self; /* time spent in a line itself */
175 proftime_T uf_tml_start; /* start time for current line */
176 proftime_T uf_tml_children; /* time spent in children for this line */
177 proftime_T uf_tml_wait; /* start wait time for current line */
178 int uf_tml_idx; /* index of line being timed; -1 if none */
179 int uf_tml_execed; /* line being timed was executed */
180 #endif
181 scid_T uf_script_ID; /* ID of script where function was defined,
182 used for s: variables */
183 int uf_refcount; /* for numbered function: reference count */
184 char_u uf_name[1]; /* name of function (actually longer); can
185 start with <SNR>123_ (<SNR> is K_SPECIAL
186 KS_EXTRA KE_SNR) */
189 /* function flags */
190 #define FC_ABORT 1 /* abort function on error */
191 #define FC_RANGE 2 /* function accepts range */
192 #define FC_DICT 4 /* Dict function, uses "self" */
195 * All user-defined functions are found in this hashtable.
197 static hashtab_T func_hashtab;
199 /* The names of packages that once were loaded are remembered. */
200 static garray_T ga_loaded = {0, 0, sizeof(char_u *), 4, NULL};
202 /* list heads for garbage collection */
203 static dict_T *first_dict = NULL; /* list of all dicts */
204 static list_T *first_list = NULL; /* list of all lists */
206 /* From user function to hashitem and back. */
207 static ufunc_T dumuf;
208 #define UF2HIKEY(fp) ((fp)->uf_name)
209 #define HIKEY2UF(p) ((ufunc_T *)(p - (dumuf.uf_name - (char_u *)&dumuf)))
210 #define HI2UF(hi) HIKEY2UF((hi)->hi_key)
212 #define FUNCARG(fp, j) ((char_u **)(fp->uf_args.ga_data))[j]
213 #define FUNCLINE(fp, j) ((char_u **)(fp->uf_lines.ga_data))[j]
215 #define MAX_FUNC_ARGS 20 /* maximum number of function arguments */
216 #define VAR_SHORT_LEN 20 /* short variable name length */
217 #define FIXVAR_CNT 12 /* number of fixed variables */
219 /* structure to hold info for a function that is currently being executed. */
220 typedef struct funccall_S funccall_T;
222 struct funccall_S
224 ufunc_T *func; /* function being called */
225 int linenr; /* next line to be executed */
226 int returned; /* ":return" used */
227 struct /* fixed variables for arguments */
229 dictitem_T var; /* variable (without room for name) */
230 char_u room[VAR_SHORT_LEN]; /* room for the name */
231 } fixvar[FIXVAR_CNT];
232 dict_T l_vars; /* l: local function variables */
233 dictitem_T l_vars_var; /* variable for l: scope */
234 dict_T l_avars; /* a: argument variables */
235 dictitem_T l_avars_var; /* variable for a: scope */
236 list_T l_varlist; /* list for a:000 */
237 listitem_T l_listitems[MAX_FUNC_ARGS]; /* listitems for a:000 */
238 typval_T *rettv; /* return value */
239 linenr_T breakpoint; /* next line with breakpoint or zero */
240 int dbg_tick; /* debug_tick when breakpoint was set */
241 int level; /* top nesting level of executed function */
242 #ifdef FEAT_PROFILE
243 proftime_T prof_child; /* time spent in a child */
244 #endif
245 funccall_T *caller; /* calling function or NULL */
249 * Info used by a ":for" loop.
251 typedef struct
253 int fi_semicolon; /* TRUE if ending in '; var]' */
254 int fi_varcount; /* nr of variables in the list */
255 listwatch_T fi_lw; /* keep an eye on the item used. */
256 list_T *fi_list; /* list being used */
257 } forinfo_T;
260 * Struct used by trans_function_name()
262 typedef struct
264 dict_T *fd_dict; /* Dictionary used */
265 char_u *fd_newkey; /* new key in "dict" in allocated memory */
266 dictitem_T *fd_di; /* Dictionary item used */
267 } funcdict_T;
271 * Array to hold the value of v: variables.
272 * The value is in a dictitem, so that it can also be used in the v: scope.
273 * The reason to use this table anyway is for very quick access to the
274 * variables with the VV_ defines.
276 #include "version.h"
278 /* values for vv_flags: */
279 #define VV_COMPAT 1 /* compatible, also used without "v:" */
280 #define VV_RO 2 /* read-only */
281 #define VV_RO_SBX 4 /* read-only in the sandbox */
283 #define VV_NAME(s, t) s, {{t}}, {0}
285 static struct vimvar
287 char *vv_name; /* name of variable, without v: */
288 dictitem_T vv_di; /* value and name for key */
289 char vv_filler[16]; /* space for LONGEST name below!!! */
290 char vv_flags; /* VV_COMPAT, VV_RO, VV_RO_SBX */
291 } vimvars[VV_LEN] =
294 * The order here must match the VV_ defines in vim.h!
295 * Initializing a union does not work, leave tv.vval empty to get zero's.
297 {VV_NAME("count", VAR_NUMBER), VV_COMPAT+VV_RO},
298 {VV_NAME("count1", VAR_NUMBER), VV_RO},
299 {VV_NAME("prevcount", VAR_NUMBER), VV_RO},
300 {VV_NAME("errmsg", VAR_STRING), VV_COMPAT},
301 {VV_NAME("warningmsg", VAR_STRING), 0},
302 {VV_NAME("statusmsg", VAR_STRING), 0},
303 {VV_NAME("shell_error", VAR_NUMBER), VV_COMPAT+VV_RO},
304 {VV_NAME("this_session", VAR_STRING), VV_COMPAT},
305 {VV_NAME("version", VAR_NUMBER), VV_COMPAT+VV_RO},
306 {VV_NAME("lnum", VAR_NUMBER), VV_RO_SBX},
307 {VV_NAME("termresponse", VAR_STRING), VV_RO},
308 {VV_NAME("fname", VAR_STRING), VV_RO},
309 {VV_NAME("lang", VAR_STRING), VV_RO},
310 {VV_NAME("lc_time", VAR_STRING), VV_RO},
311 {VV_NAME("ctype", VAR_STRING), VV_RO},
312 {VV_NAME("charconvert_from", VAR_STRING), VV_RO},
313 {VV_NAME("charconvert_to", VAR_STRING), VV_RO},
314 {VV_NAME("fname_in", VAR_STRING), VV_RO},
315 {VV_NAME("fname_out", VAR_STRING), VV_RO},
316 {VV_NAME("fname_new", VAR_STRING), VV_RO},
317 {VV_NAME("fname_diff", VAR_STRING), VV_RO},
318 {VV_NAME("cmdarg", VAR_STRING), VV_RO},
319 {VV_NAME("foldstart", VAR_NUMBER), VV_RO_SBX},
320 {VV_NAME("foldend", VAR_NUMBER), VV_RO_SBX},
321 {VV_NAME("folddashes", VAR_STRING), VV_RO_SBX},
322 {VV_NAME("foldlevel", VAR_NUMBER), VV_RO_SBX},
323 {VV_NAME("progname", VAR_STRING), VV_RO},
324 {VV_NAME("servername", VAR_STRING), VV_RO},
325 {VV_NAME("dying", VAR_NUMBER), VV_RO},
326 {VV_NAME("exception", VAR_STRING), VV_RO},
327 {VV_NAME("throwpoint", VAR_STRING), VV_RO},
328 {VV_NAME("register", VAR_STRING), VV_RO},
329 {VV_NAME("cmdbang", VAR_NUMBER), VV_RO},
330 {VV_NAME("insertmode", VAR_STRING), VV_RO},
331 {VV_NAME("val", VAR_UNKNOWN), VV_RO},
332 {VV_NAME("key", VAR_UNKNOWN), VV_RO},
333 {VV_NAME("profiling", VAR_NUMBER), VV_RO},
334 {VV_NAME("fcs_reason", VAR_STRING), VV_RO},
335 {VV_NAME("fcs_choice", VAR_STRING), 0},
336 {VV_NAME("beval_bufnr", VAR_NUMBER), VV_RO},
337 {VV_NAME("beval_winnr", VAR_NUMBER), VV_RO},
338 {VV_NAME("beval_lnum", VAR_NUMBER), VV_RO},
339 {VV_NAME("beval_col", VAR_NUMBER), VV_RO},
340 {VV_NAME("beval_text", VAR_STRING), VV_RO},
341 {VV_NAME("scrollstart", VAR_STRING), 0},
342 {VV_NAME("swapname", VAR_STRING), VV_RO},
343 {VV_NAME("swapchoice", VAR_STRING), 0},
344 {VV_NAME("swapcommand", VAR_STRING), VV_RO},
345 {VV_NAME("char", VAR_STRING), VV_RO},
346 {VV_NAME("mouse_win", VAR_NUMBER), 0},
347 {VV_NAME("mouse_lnum", VAR_NUMBER), 0},
348 {VV_NAME("mouse_col", VAR_NUMBER), 0},
349 {VV_NAME("operator", VAR_STRING), VV_RO},
350 {VV_NAME("searchforward", VAR_NUMBER), 0},
351 {VV_NAME("oldfiles", VAR_LIST), 0},
354 /* shorthand */
355 #define vv_type vv_di.di_tv.v_type
356 #define vv_nr vv_di.di_tv.vval.v_number
357 #define vv_float vv_di.di_tv.vval.v_float
358 #define vv_str vv_di.di_tv.vval.v_string
359 #define vv_list vv_di.di_tv.vval.v_list
360 #define vv_tv vv_di.di_tv
363 * The v: variables are stored in dictionary "vimvardict".
364 * "vimvars_var" is the variable that is used for the "l:" scope.
366 static dict_T vimvardict;
367 static dictitem_T vimvars_var;
368 #define vimvarht vimvardict.dv_hashtab
370 static void prepare_vimvar __ARGS((int idx, typval_T *save_tv));
371 static void restore_vimvar __ARGS((int idx, typval_T *save_tv));
372 #if defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL)
373 static int call_vim_function __ARGS((char_u *func, int argc, char_u **argv, int safe, typval_T *rettv));
374 #endif
375 static int ex_let_vars __ARGS((char_u *arg, typval_T *tv, int copy, int semicolon, int var_count, char_u *nextchars));
376 static char_u *skip_var_list __ARGS((char_u *arg, int *var_count, int *semicolon));
377 static char_u *skip_var_one __ARGS((char_u *arg));
378 static void list_hashtable_vars __ARGS((hashtab_T *ht, char_u *prefix, int empty, int *first));
379 static void list_glob_vars __ARGS((int *first));
380 static void list_buf_vars __ARGS((int *first));
381 static void list_win_vars __ARGS((int *first));
382 #ifdef FEAT_WINDOWS
383 static void list_tab_vars __ARGS((int *first));
384 #endif
385 static void list_vim_vars __ARGS((int *first));
386 static void list_script_vars __ARGS((int *first));
387 static void list_func_vars __ARGS((int *first));
388 static char_u *list_arg_vars __ARGS((exarg_T *eap, char_u *arg, int *first));
389 static char_u *ex_let_one __ARGS((char_u *arg, typval_T *tv, int copy, char_u *endchars, char_u *op));
390 static int check_changedtick __ARGS((char_u *arg));
391 static char_u *get_lval __ARGS((char_u *name, typval_T *rettv, lval_T *lp, int unlet, int skip, int quiet, int fne_flags));
392 static void clear_lval __ARGS((lval_T *lp));
393 static void set_var_lval __ARGS((lval_T *lp, char_u *endp, typval_T *rettv, int copy, char_u *op));
394 static int tv_op __ARGS((typval_T *tv1, typval_T *tv2, char_u *op));
395 static void list_add_watch __ARGS((list_T *l, listwatch_T *lw));
396 static void list_rem_watch __ARGS((list_T *l, listwatch_T *lwrem));
397 static void list_fix_watch __ARGS((list_T *l, listitem_T *item));
398 static void ex_unletlock __ARGS((exarg_T *eap, char_u *argstart, int deep));
399 static int do_unlet_var __ARGS((lval_T *lp, char_u *name_end, int forceit));
400 static int do_lock_var __ARGS((lval_T *lp, char_u *name_end, int deep, int lock));
401 static void item_lock __ARGS((typval_T *tv, int deep, int lock));
402 static int tv_islocked __ARGS((typval_T *tv));
404 static int eval0 __ARGS((char_u *arg, typval_T *rettv, char_u **nextcmd, int evaluate));
405 static int eval1 __ARGS((char_u **arg, typval_T *rettv, int evaluate));
406 static int eval2 __ARGS((char_u **arg, typval_T *rettv, int evaluate));
407 static int eval3 __ARGS((char_u **arg, typval_T *rettv, int evaluate));
408 static int eval4 __ARGS((char_u **arg, typval_T *rettv, int evaluate));
409 static int eval5 __ARGS((char_u **arg, typval_T *rettv, int evaluate));
410 static int eval6 __ARGS((char_u **arg, typval_T *rettv, int evaluate, int want_string));
411 static int eval7 __ARGS((char_u **arg, typval_T *rettv, int evaluate, int want_string));
413 static int eval_index __ARGS((char_u **arg, typval_T *rettv, int evaluate, int verbose));
414 static int get_option_tv __ARGS((char_u **arg, typval_T *rettv, int evaluate));
415 static int get_string_tv __ARGS((char_u **arg, typval_T *rettv, int evaluate));
416 static int get_lit_string_tv __ARGS((char_u **arg, typval_T *rettv, int evaluate));
417 static int get_list_tv __ARGS((char_u **arg, typval_T *rettv, int evaluate));
418 static int rettv_list_alloc __ARGS((typval_T *rettv));
419 static listitem_T *listitem_alloc __ARGS((void));
420 static void listitem_free __ARGS((listitem_T *item));
421 static void listitem_remove __ARGS((list_T *l, listitem_T *item));
422 static long list_len __ARGS((list_T *l));
423 static int list_equal __ARGS((list_T *l1, list_T *l2, int ic));
424 static int dict_equal __ARGS((dict_T *d1, dict_T *d2, int ic));
425 static int tv_equal __ARGS((typval_T *tv1, typval_T *tv2, int ic));
426 static listitem_T *list_find __ARGS((list_T *l, long n));
427 static long list_find_nr __ARGS((list_T *l, long idx, int *errorp));
428 static long list_idx_of_item __ARGS((list_T *l, listitem_T *item));
429 static void list_append __ARGS((list_T *l, listitem_T *item));
430 static int list_append_tv __ARGS((list_T *l, typval_T *tv));
431 static int list_append_number __ARGS((list_T *l, varnumber_T n));
432 static int list_insert_tv __ARGS((list_T *l, typval_T *tv, listitem_T *item));
433 static int list_extend __ARGS((list_T *l1, list_T *l2, listitem_T *bef));
434 static int list_concat __ARGS((list_T *l1, list_T *l2, typval_T *tv));
435 static list_T *list_copy __ARGS((list_T *orig, int deep, int copyID));
436 static void list_remove __ARGS((list_T *l, listitem_T *item, listitem_T *item2));
437 static char_u *list2string __ARGS((typval_T *tv, int copyID));
438 static int list_join __ARGS((garray_T *gap, list_T *l, char_u *sep, int echo, int copyID));
439 static void set_ref_in_ht __ARGS((hashtab_T *ht, int copyID));
440 static void set_ref_in_list __ARGS((list_T *l, int copyID));
441 static void set_ref_in_item __ARGS((typval_T *tv, int copyID));
442 static void dict_unref __ARGS((dict_T *d));
443 static void dict_free __ARGS((dict_T *d, int recurse));
444 static dictitem_T *dictitem_alloc __ARGS((char_u *key));
445 static dictitem_T *dictitem_copy __ARGS((dictitem_T *org));
446 static void dictitem_remove __ARGS((dict_T *dict, dictitem_T *item));
447 static void dictitem_free __ARGS((dictitem_T *item));
448 static dict_T *dict_copy __ARGS((dict_T *orig, int deep, int copyID));
449 static int dict_add __ARGS((dict_T *d, dictitem_T *item));
450 static long dict_len __ARGS((dict_T *d));
451 static dictitem_T *dict_find __ARGS((dict_T *d, char_u *key, int len));
452 static char_u *dict2string __ARGS((typval_T *tv, int copyID));
453 static int get_dict_tv __ARGS((char_u **arg, typval_T *rettv, int evaluate));
454 static char_u *echo_string __ARGS((typval_T *tv, char_u **tofree, char_u *numbuf, int copyID));
455 static char_u *tv2string __ARGS((typval_T *tv, char_u **tofree, char_u *numbuf, int copyID));
456 static char_u *string_quote __ARGS((char_u *str, int function));
457 #ifdef FEAT_FLOAT
458 static int string2float __ARGS((char_u *text, float_T *value));
459 #endif
460 static int get_env_tv __ARGS((char_u **arg, typval_T *rettv, int evaluate));
461 static int find_internal_func __ARGS((char_u *name));
462 static char_u *deref_func_name __ARGS((char_u *name, int *lenp));
463 static int get_func_tv __ARGS((char_u *name, int len, typval_T *rettv, char_u **arg, linenr_T firstline, linenr_T lastline, int *doesrange, int evaluate, dict_T *selfdict));
464 static int call_func __ARGS((char_u *name, int len, typval_T *rettv, int argcount, typval_T *argvars, linenr_T firstline, linenr_T lastline, int *doesrange, int evaluate, dict_T *selfdict));
465 static void emsg_funcname __ARGS((char *ermsg, char_u *name));
466 static int non_zero_arg __ARGS((typval_T *argvars));
468 #ifdef FEAT_FLOAT
469 static void f_abs __ARGS((typval_T *argvars, typval_T *rettv));
471 /* Below are the 10 added FP functions - I've kept them together */
472 /* here and in their definitions later on. Because the functions[] */
473 /* table must be in ASCII order, they are scattered there - WJMc */
475 static void f_acos __ARGS((typval_T *argvars, typval_T *rettv));
476 static void f_asin __ARGS((typval_T *argvars, typval_T *rettv));
477 static void f_atan2 __ARGS((typval_T *argvars, typval_T *rettv)); /* 2 args */
478 static void f_cosh __ARGS((typval_T *argvars, typval_T *rettv));
479 static void f_exp __ARGS((typval_T *argvars, typval_T *rettv));
480 static void f_fmod __ARGS((typval_T *argvars, typval_T *rettv)); /* 2 args */
481 static void f_log __ARGS((typval_T *argvars, typval_T *rettv));
482 static void f_sinh __ARGS((typval_T *argvars, typval_T *rettv));
483 static void f_tan __ARGS((typval_T *argvars, typval_T *rettv));
484 static void f_tanh __ARGS((typval_T *argvars, typval_T *rettv));
485 #endif
486 static void f_add __ARGS((typval_T *argvars, typval_T *rettv));
487 static void f_append __ARGS((typval_T *argvars, typval_T *rettv));
488 static void f_argc __ARGS((typval_T *argvars, typval_T *rettv));
489 static void f_argidx __ARGS((typval_T *argvars, typval_T *rettv));
490 static void f_argv __ARGS((typval_T *argvars, typval_T *rettv));
491 #ifdef FEAT_FLOAT
492 static void f_atan __ARGS((typval_T *argvars, typval_T *rettv));
493 #endif
494 static void f_browse __ARGS((typval_T *argvars, typval_T *rettv));
495 static void f_browsedir __ARGS((typval_T *argvars, typval_T *rettv));
496 static void f_bufexists __ARGS((typval_T *argvars, typval_T *rettv));
497 static void f_buflisted __ARGS((typval_T *argvars, typval_T *rettv));
498 static void f_bufloaded __ARGS((typval_T *argvars, typval_T *rettv));
499 static void f_bufname __ARGS((typval_T *argvars, typval_T *rettv));
500 static void f_bufnr __ARGS((typval_T *argvars, typval_T *rettv));
501 static void f_bufwinnr __ARGS((typval_T *argvars, typval_T *rettv));
502 static void f_byte2line __ARGS((typval_T *argvars, typval_T *rettv));
503 static void f_byteidx __ARGS((typval_T *argvars, typval_T *rettv));
504 static void f_call __ARGS((typval_T *argvars, typval_T *rettv));
505 #ifdef FEAT_FLOAT
506 static void f_ceil __ARGS((typval_T *argvars, typval_T *rettv));
507 #endif
508 static void f_changenr __ARGS((typval_T *argvars, typval_T *rettv));
509 static void f_char2nr __ARGS((typval_T *argvars, typval_T *rettv));
510 static void f_cindent __ARGS((typval_T *argvars, typval_T *rettv));
511 static void f_clearmatches __ARGS((typval_T *argvars, typval_T *rettv));
512 static void f_col __ARGS((typval_T *argvars, typval_T *rettv));
513 #if defined(FEAT_INS_EXPAND)
514 static void f_complete __ARGS((typval_T *argvars, typval_T *rettv));
515 static void f_complete_add __ARGS((typval_T *argvars, typval_T *rettv));
516 static void f_complete_check __ARGS((typval_T *argvars, typval_T *rettv));
517 #endif
518 static void f_confirm __ARGS((typval_T *argvars, typval_T *rettv));
519 static void f_copy __ARGS((typval_T *argvars, typval_T *rettv));
520 #ifdef FEAT_FLOAT
521 static void f_cos __ARGS((typval_T *argvars, typval_T *rettv));
522 #endif
523 static void f_count __ARGS((typval_T *argvars, typval_T *rettv));
524 static void f_cscope_connection __ARGS((typval_T *argvars, typval_T *rettv));
525 static void f_cursor __ARGS((typval_T *argsvars, typval_T *rettv));
526 static void f_deepcopy __ARGS((typval_T *argvars, typval_T *rettv));
527 static void f_delete __ARGS((typval_T *argvars, typval_T *rettv));
528 static void f_did_filetype __ARGS((typval_T *argvars, typval_T *rettv));
529 static void f_diff_filler __ARGS((typval_T *argvars, typval_T *rettv));
530 static void f_diff_hlID __ARGS((typval_T *argvars, typval_T *rettv));
531 static void f_empty __ARGS((typval_T *argvars, typval_T *rettv));
532 static void f_escape __ARGS((typval_T *argvars, typval_T *rettv));
533 static void f_eval __ARGS((typval_T *argvars, typval_T *rettv));
534 static void f_eventhandler __ARGS((typval_T *argvars, typval_T *rettv));
535 static void f_executable __ARGS((typval_T *argvars, typval_T *rettv));
536 static void f_exists __ARGS((typval_T *argvars, typval_T *rettv));
537 static void f_expand __ARGS((typval_T *argvars, typval_T *rettv));
538 static void f_extend __ARGS((typval_T *argvars, typval_T *rettv));
539 static void f_feedkeys __ARGS((typval_T *argvars, typval_T *rettv));
540 static void f_filereadable __ARGS((typval_T *argvars, typval_T *rettv));
541 static void f_filewritable __ARGS((typval_T *argvars, typval_T *rettv));
542 static void f_filter __ARGS((typval_T *argvars, typval_T *rettv));
543 static void f_finddir __ARGS((typval_T *argvars, typval_T *rettv));
544 static void f_findfile __ARGS((typval_T *argvars, typval_T *rettv));
545 #ifdef FEAT_FLOAT
546 static void f_float2nr __ARGS((typval_T *argvars, typval_T *rettv));
547 static void f_floor __ARGS((typval_T *argvars, typval_T *rettv));
548 #endif
549 static void f_fnameescape __ARGS((typval_T *argvars, typval_T *rettv));
550 static void f_fnamemodify __ARGS((typval_T *argvars, typval_T *rettv));
551 static void f_foldclosed __ARGS((typval_T *argvars, typval_T *rettv));
552 static void f_foldclosedend __ARGS((typval_T *argvars, typval_T *rettv));
553 static void f_foldlevel __ARGS((typval_T *argvars, typval_T *rettv));
554 static void f_foldtext __ARGS((typval_T *argvars, typval_T *rettv));
555 static void f_foldtextresult __ARGS((typval_T *argvars, typval_T *rettv));
556 static void f_foreground __ARGS((typval_T *argvars, typval_T *rettv));
557 static void f_function __ARGS((typval_T *argvars, typval_T *rettv));
558 static void f_garbagecollect __ARGS((typval_T *argvars, typval_T *rettv));
559 static void f_get __ARGS((typval_T *argvars, typval_T *rettv));
560 static void f_getbufline __ARGS((typval_T *argvars, typval_T *rettv));
561 static void f_getbufvar __ARGS((typval_T *argvars, typval_T *rettv));
562 static void f_getchar __ARGS((typval_T *argvars, typval_T *rettv));
563 static void f_getcharmod __ARGS((typval_T *argvars, typval_T *rettv));
564 static void f_getcmdline __ARGS((typval_T *argvars, typval_T *rettv));
565 static void f_getcmdpos __ARGS((typval_T *argvars, typval_T *rettv));
566 static void f_getcmdtype __ARGS((typval_T *argvars, typval_T *rettv));
567 static void f_getcwd __ARGS((typval_T *argvars, typval_T *rettv));
568 static void f_getfontname __ARGS((typval_T *argvars, typval_T *rettv));
569 static void f_getfperm __ARGS((typval_T *argvars, typval_T *rettv));
570 static void f_getfsize __ARGS((typval_T *argvars, typval_T *rettv));
571 static void f_getftime __ARGS((typval_T *argvars, typval_T *rettv));
572 static void f_getftype __ARGS((typval_T *argvars, typval_T *rettv));
573 static void f_getline __ARGS((typval_T *argvars, typval_T *rettv));
574 static void f_getmatches __ARGS((typval_T *argvars, typval_T *rettv));
575 static void f_getpid __ARGS((typval_T *argvars, typval_T *rettv));
576 static void f_getpos __ARGS((typval_T *argvars, typval_T *rettv));
577 static void f_getqflist __ARGS((typval_T *argvars, typval_T *rettv));
578 static void f_getreg __ARGS((typval_T *argvars, typval_T *rettv));
579 static void f_getregtype __ARGS((typval_T *argvars, typval_T *rettv));
580 static void f_gettabwinvar __ARGS((typval_T *argvars, typval_T *rettv));
581 static void f_getwinposx __ARGS((typval_T *argvars, typval_T *rettv));
582 static void f_getwinposy __ARGS((typval_T *argvars, typval_T *rettv));
583 static void f_getwinvar __ARGS((typval_T *argvars, typval_T *rettv));
584 static void f_glob __ARGS((typval_T *argvars, typval_T *rettv));
585 static void f_globpath __ARGS((typval_T *argvars, typval_T *rettv));
586 static void f_has __ARGS((typval_T *argvars, typval_T *rettv));
587 static void f_has_key __ARGS((typval_T *argvars, typval_T *rettv));
588 static void f_haslocaldir __ARGS((typval_T *argvars, typval_T *rettv));
589 static void f_hasmapto __ARGS((typval_T *argvars, typval_T *rettv));
590 static void f_histadd __ARGS((typval_T *argvars, typval_T *rettv));
591 static void f_histdel __ARGS((typval_T *argvars, typval_T *rettv));
592 static void f_histget __ARGS((typval_T *argvars, typval_T *rettv));
593 static void f_histnr __ARGS((typval_T *argvars, typval_T *rettv));
594 static void f_hlID __ARGS((typval_T *argvars, typval_T *rettv));
595 static void f_hlexists __ARGS((typval_T *argvars, typval_T *rettv));
596 static void f_hostname __ARGS((typval_T *argvars, typval_T *rettv));
597 static void f_iconv __ARGS((typval_T *argvars, typval_T *rettv));
598 static void f_indent __ARGS((typval_T *argvars, typval_T *rettv));
599 static void f_index __ARGS((typval_T *argvars, typval_T *rettv));
600 static void f_input __ARGS((typval_T *argvars, typval_T *rettv));
601 static void f_inputdialog __ARGS((typval_T *argvars, typval_T *rettv));
602 static void f_inputlist __ARGS((typval_T *argvars, typval_T *rettv));
603 static void f_inputrestore __ARGS((typval_T *argvars, typval_T *rettv));
604 static void f_inputsave __ARGS((typval_T *argvars, typval_T *rettv));
605 static void f_inputsecret __ARGS((typval_T *argvars, typval_T *rettv));
606 static void f_insert __ARGS((typval_T *argvars, typval_T *rettv));
607 static void f_isdirectory __ARGS((typval_T *argvars, typval_T *rettv));
608 static void f_islocked __ARGS((typval_T *argvars, typval_T *rettv));
609 static void f_items __ARGS((typval_T *argvars, typval_T *rettv));
610 static void f_join __ARGS((typval_T *argvars, typval_T *rettv));
611 static void f_keys __ARGS((typval_T *argvars, typval_T *rettv));
612 static void f_last_buffer_nr __ARGS((typval_T *argvars, typval_T *rettv));
613 static void f_len __ARGS((typval_T *argvars, typval_T *rettv));
614 static void f_libcall __ARGS((typval_T *argvars, typval_T *rettv));
615 static void f_libcallnr __ARGS((typval_T *argvars, typval_T *rettv));
616 static void f_line __ARGS((typval_T *argvars, typval_T *rettv));
617 static void f_line2byte __ARGS((typval_T *argvars, typval_T *rettv));
618 static void f_lispindent __ARGS((typval_T *argvars, typval_T *rettv));
619 static void f_localtime __ARGS((typval_T *argvars, typval_T *rettv));
620 #ifdef FEAT_FLOAT
621 static void f_log10 __ARGS((typval_T *argvars, typval_T *rettv));
622 #endif
623 static void f_map __ARGS((typval_T *argvars, typval_T *rettv));
624 static void f_maparg __ARGS((typval_T *argvars, typval_T *rettv));
625 static void f_mapcheck __ARGS((typval_T *argvars, typval_T *rettv));
626 static void f_match __ARGS((typval_T *argvars, typval_T *rettv));
627 static void f_matchadd __ARGS((typval_T *argvars, typval_T *rettv));
628 static void f_matcharg __ARGS((typval_T *argvars, typval_T *rettv));
629 static void f_matchdelete __ARGS((typval_T *argvars, typval_T *rettv));
630 static void f_matchend __ARGS((typval_T *argvars, typval_T *rettv));
631 static void f_matchlist __ARGS((typval_T *argvars, typval_T *rettv));
632 static void f_matchstr __ARGS((typval_T *argvars, typval_T *rettv));
633 static void f_max __ARGS((typval_T *argvars, typval_T *rettv));
634 static void f_min __ARGS((typval_T *argvars, typval_T *rettv));
635 #ifdef vim_mkdir
636 static void f_mkdir __ARGS((typval_T *argvars, typval_T *rettv));
637 #endif
638 static void f_mode __ARGS((typval_T *argvars, typval_T *rettv));
639 static void f_nextnonblank __ARGS((typval_T *argvars, typval_T *rettv));
640 static void f_nr2char __ARGS((typval_T *argvars, typval_T *rettv));
641 static void f_pathshorten __ARGS((typval_T *argvars, typval_T *rettv));
642 #ifdef FEAT_FLOAT
643 static void f_pow __ARGS((typval_T *argvars, typval_T *rettv));
644 #endif
645 static void f_prevnonblank __ARGS((typval_T *argvars, typval_T *rettv));
646 static void f_printf __ARGS((typval_T *argvars, typval_T *rettv));
647 static void f_pumvisible __ARGS((typval_T *argvars, typval_T *rettv));
648 static void f_range __ARGS((typval_T *argvars, typval_T *rettv));
649 static void f_readfile __ARGS((typval_T *argvars, typval_T *rettv));
650 static void f_reltime __ARGS((typval_T *argvars, typval_T *rettv));
651 static void f_reltimestr __ARGS((typval_T *argvars, typval_T *rettv));
652 static void f_remote_expr __ARGS((typval_T *argvars, typval_T *rettv));
653 static void f_remote_foreground __ARGS((typval_T *argvars, typval_T *rettv));
654 static void f_remote_peek __ARGS((typval_T *argvars, typval_T *rettv));
655 static void f_remote_read __ARGS((typval_T *argvars, typval_T *rettv));
656 static void f_remote_send __ARGS((typval_T *argvars, typval_T *rettv));
657 static void f_remove __ARGS((typval_T *argvars, typval_T *rettv));
658 static void f_rename __ARGS((typval_T *argvars, typval_T *rettv));
659 static void f_repeat __ARGS((typval_T *argvars, typval_T *rettv));
660 static void f_resolve __ARGS((typval_T *argvars, typval_T *rettv));
661 static void f_reverse __ARGS((typval_T *argvars, typval_T *rettv));
662 #ifdef FEAT_FLOAT
663 static void f_round __ARGS((typval_T *argvars, typval_T *rettv));
664 #endif
665 static void f_search __ARGS((typval_T *argvars, typval_T *rettv));
666 static void f_searchdecl __ARGS((typval_T *argvars, typval_T *rettv));
667 static void f_searchpair __ARGS((typval_T *argvars, typval_T *rettv));
668 static void f_searchpairpos __ARGS((typval_T *argvars, typval_T *rettv));
669 static void f_searchpos __ARGS((typval_T *argvars, typval_T *rettv));
670 static void f_server2client __ARGS((typval_T *argvars, typval_T *rettv));
671 static void f_serverlist __ARGS((typval_T *argvars, typval_T *rettv));
672 static void f_setbufvar __ARGS((typval_T *argvars, typval_T *rettv));
673 static void f_setcmdpos __ARGS((typval_T *argvars, typval_T *rettv));
674 static void f_setline __ARGS((typval_T *argvars, typval_T *rettv));
675 static void f_setloclist __ARGS((typval_T *argvars, typval_T *rettv));
676 static void f_setmatches __ARGS((typval_T *argvars, typval_T *rettv));
677 static void f_setpos __ARGS((typval_T *argvars, typval_T *rettv));
678 static void f_setqflist __ARGS((typval_T *argvars, typval_T *rettv));
679 static void f_setreg __ARGS((typval_T *argvars, typval_T *rettv));
680 static void f_settabwinvar __ARGS((typval_T *argvars, typval_T *rettv));
681 static void f_setwinvar __ARGS((typval_T *argvars, typval_T *rettv));
682 static void f_shellescape __ARGS((typval_T *argvars, typval_T *rettv));
683 static void f_simplify __ARGS((typval_T *argvars, typval_T *rettv));
684 #ifdef FEAT_FLOAT
685 static void f_sin __ARGS((typval_T *argvars, typval_T *rettv));
686 #endif
687 static void f_sort __ARGS((typval_T *argvars, typval_T *rettv));
688 static void f_soundfold __ARGS((typval_T *argvars, typval_T *rettv));
689 static void f_spellbadword __ARGS((typval_T *argvars, typval_T *rettv));
690 static void f_spellsuggest __ARGS((typval_T *argvars, typval_T *rettv));
691 static void f_split __ARGS((typval_T *argvars, typval_T *rettv));
692 #ifdef FEAT_FLOAT
693 static void f_sqrt __ARGS((typval_T *argvars, typval_T *rettv));
694 static void f_str2float __ARGS((typval_T *argvars, typval_T *rettv));
695 #endif
696 static void f_str2nr __ARGS((typval_T *argvars, typval_T *rettv));
697 #ifdef HAVE_STRFTIME
698 static void f_strftime __ARGS((typval_T *argvars, typval_T *rettv));
699 #endif
700 static void f_stridx __ARGS((typval_T *argvars, typval_T *rettv));
701 static void f_string __ARGS((typval_T *argvars, typval_T *rettv));
702 static void f_strlen __ARGS((typval_T *argvars, typval_T *rettv));
703 static void f_strpart __ARGS((typval_T *argvars, typval_T *rettv));
704 static void f_strridx __ARGS((typval_T *argvars, typval_T *rettv));
705 static void f_strtrans __ARGS((typval_T *argvars, typval_T *rettv));
706 static void f_submatch __ARGS((typval_T *argvars, typval_T *rettv));
707 static void f_substitute __ARGS((typval_T *argvars, typval_T *rettv));
708 static void f_synID __ARGS((typval_T *argvars, typval_T *rettv));
709 static void f_synIDattr __ARGS((typval_T *argvars, typval_T *rettv));
710 static void f_synIDtrans __ARGS((typval_T *argvars, typval_T *rettv));
711 static void f_synstack __ARGS((typval_T *argvars, typval_T *rettv));
712 static void f_system __ARGS((typval_T *argvars, typval_T *rettv));
713 static void f_tabpagebuflist __ARGS((typval_T *argvars, typval_T *rettv));
714 static void f_tabpagenr __ARGS((typval_T *argvars, typval_T *rettv));
715 static void f_tabpagewinnr __ARGS((typval_T *argvars, typval_T *rettv));
716 static void f_taglist __ARGS((typval_T *argvars, typval_T *rettv));
717 static void f_tagfiles __ARGS((typval_T *argvars, typval_T *rettv));
718 static void f_tempname __ARGS((typval_T *argvars, typval_T *rettv));
719 static void f_test __ARGS((typval_T *argvars, typval_T *rettv));
720 static void f_tolower __ARGS((typval_T *argvars, typval_T *rettv));
721 static void f_toupper __ARGS((typval_T *argvars, typval_T *rettv));
722 static void f_tr __ARGS((typval_T *argvars, typval_T *rettv));
723 #ifdef FEAT_FLOAT
724 static void f_trunc __ARGS((typval_T *argvars, typval_T *rettv));
725 #endif
726 static void f_type __ARGS((typval_T *argvars, typval_T *rettv));
727 static void f_values __ARGS((typval_T *argvars, typval_T *rettv));
728 static void f_virtcol __ARGS((typval_T *argvars, typval_T *rettv));
729 static void f_visualmode __ARGS((typval_T *argvars, typval_T *rettv));
730 static void f_winbufnr __ARGS((typval_T *argvars, typval_T *rettv));
731 static void f_wincol __ARGS((typval_T *argvars, typval_T *rettv));
732 static void f_winheight __ARGS((typval_T *argvars, typval_T *rettv));
733 static void f_winline __ARGS((typval_T *argvars, typval_T *rettv));
734 static void f_winnr __ARGS((typval_T *argvars, typval_T *rettv));
735 static void f_winrestcmd __ARGS((typval_T *argvars, typval_T *rettv));
736 static void f_winrestview __ARGS((typval_T *argvars, typval_T *rettv));
737 static void f_winsaveview __ARGS((typval_T *argvars, typval_T *rettv));
738 static void f_winwidth __ARGS((typval_T *argvars, typval_T *rettv));
739 static void f_writefile __ARGS((typval_T *argvars, typval_T *rettv));
741 static int list2fpos __ARGS((typval_T *arg, pos_T *posp, int *fnump));
742 static pos_T *var2fpos __ARGS((typval_T *varp, int dollar_lnum, int *fnum));
743 static int get_env_len __ARGS((char_u **arg));
744 static int get_id_len __ARGS((char_u **arg));
745 static int get_name_len __ARGS((char_u **arg, char_u **alias, int evaluate, int verbose));
746 static char_u *find_name_end __ARGS((char_u *arg, char_u **expr_start, char_u **expr_end, int flags));
747 #define FNE_INCL_BR 1 /* find_name_end(): include [] in name */
748 #define FNE_CHECK_START 2 /* find_name_end(): check name starts with
749 valid character */
750 static char_u * make_expanded_name __ARGS((char_u *in_start, char_u *expr_start, char_u *expr_end, char_u *in_end));
751 static int eval_isnamec __ARGS((int c));
752 static int eval_isnamec1 __ARGS((int c));
753 static int get_var_tv __ARGS((char_u *name, int len, typval_T *rettv, int verbose));
754 static int handle_subscript __ARGS((char_u **arg, typval_T *rettv, int evaluate, int verbose));
755 static typval_T *alloc_tv __ARGS((void));
756 static typval_T *alloc_string_tv __ARGS((char_u *string));
757 static void init_tv __ARGS((typval_T *varp));
758 static long get_tv_number __ARGS((typval_T *varp));
759 static linenr_T get_tv_lnum __ARGS((typval_T *argvars));
760 static linenr_T get_tv_lnum_buf __ARGS((typval_T *argvars, buf_T *buf));
761 static char_u *get_tv_string __ARGS((typval_T *varp));
762 static char_u *get_tv_string_buf __ARGS((typval_T *varp, char_u *buf));
763 static char_u *get_tv_string_buf_chk __ARGS((typval_T *varp, char_u *buf));
764 static dictitem_T *find_var __ARGS((char_u *name, hashtab_T **htp));
765 static dictitem_T *find_var_in_ht __ARGS((hashtab_T *ht, char_u *varname, int writing));
766 static hashtab_T *find_var_ht __ARGS((char_u *name, char_u **varname));
767 static void vars_clear_ext __ARGS((hashtab_T *ht, int free_val));
768 static void delete_var __ARGS((hashtab_T *ht, hashitem_T *hi));
769 static void list_one_var __ARGS((dictitem_T *v, char_u *prefix, int *first));
770 static void list_one_var_a __ARGS((char_u *prefix, char_u *name, int type, char_u *string, int *first));
771 static void set_var __ARGS((char_u *name, typval_T *varp, int copy));
772 static int var_check_ro __ARGS((int flags, char_u *name));
773 static int var_check_fixed __ARGS((int flags, char_u *name));
774 static int tv_check_lock __ARGS((int lock, char_u *name));
775 static void copy_tv __ARGS((typval_T *from, typval_T *to));
776 static int item_copy __ARGS((typval_T *from, typval_T *to, int deep, int copyID));
777 static char_u *find_option_end __ARGS((char_u **arg, int *opt_flags));
778 static char_u *trans_function_name __ARGS((char_u **pp, int skip, int flags, funcdict_T *fd));
779 static int eval_fname_script __ARGS((char_u *p));
780 static int eval_fname_sid __ARGS((char_u *p));
781 static void list_func_head __ARGS((ufunc_T *fp, int indent));
782 static ufunc_T *find_func __ARGS((char_u *name));
783 static int function_exists __ARGS((char_u *name));
784 static int builtin_function __ARGS((char_u *name));
785 #ifdef FEAT_PROFILE
786 static void func_do_profile __ARGS((ufunc_T *fp));
787 static void prof_sort_list __ARGS((FILE *fd, ufunc_T **sorttab, int st_len, char *title, int prefer_self));
788 static void prof_func_line __ARGS((FILE *fd, int count, proftime_T *total, proftime_T *self, int prefer_self));
789 static int
790 # ifdef __BORLANDC__
791 _RTLENTRYF
792 # endif
793 prof_total_cmp __ARGS((const void *s1, const void *s2));
794 static int
795 # ifdef __BORLANDC__
796 _RTLENTRYF
797 # endif
798 prof_self_cmp __ARGS((const void *s1, const void *s2));
799 #endif
800 static int script_autoload __ARGS((char_u *name, int reload));
801 static char_u *autoload_name __ARGS((char_u *name));
802 static void cat_func_name __ARGS((char_u *buf, ufunc_T *fp));
803 static void func_free __ARGS((ufunc_T *fp));
804 static void func_unref __ARGS((char_u *name));
805 static void func_ref __ARGS((char_u *name));
806 static void call_user_func __ARGS((ufunc_T *fp, int argcount, typval_T *argvars, typval_T *rettv, linenr_T firstline, linenr_T lastline, dict_T *selfdict));
807 static void add_nr_var __ARGS((dict_T *dp, dictitem_T *v, char *name, varnumber_T nr));
808 static win_T *find_win_by_nr __ARGS((typval_T *vp, tabpage_T *tp));
809 static void getwinvar __ARGS((typval_T *argvars, typval_T *rettv, int off));
810 static int searchpair_cmn __ARGS((typval_T *argvars, pos_T *match_pos));
811 static int search_cmn __ARGS((typval_T *argvars, pos_T *match_pos, int *flagsp));
812 static void setwinvar __ARGS((typval_T *argvars, typval_T *rettv, int off));
814 /* Character used as separated in autoload function/variable names. */
815 #define AUTOLOAD_CHAR '#'
818 * Initialize the global and v: variables.
820 void
821 eval_init()
823 int i;
824 struct vimvar *p;
826 init_var_dict(&globvardict, &globvars_var);
827 init_var_dict(&vimvardict, &vimvars_var);
828 hash_init(&compat_hashtab);
829 hash_init(&func_hashtab);
831 for (i = 0; i < VV_LEN; ++i)
833 p = &vimvars[i];
834 STRCPY(p->vv_di.di_key, p->vv_name);
835 if (p->vv_flags & VV_RO)
836 p->vv_di.di_flags = DI_FLAGS_RO | DI_FLAGS_FIX;
837 else if (p->vv_flags & VV_RO_SBX)
838 p->vv_di.di_flags = DI_FLAGS_RO_SBX | DI_FLAGS_FIX;
839 else
840 p->vv_di.di_flags = DI_FLAGS_FIX;
842 /* add to v: scope dict, unless the value is not always available */
843 if (p->vv_type != VAR_UNKNOWN)
844 hash_add(&vimvarht, p->vv_di.di_key);
845 if (p->vv_flags & VV_COMPAT)
846 /* add to compat scope dict */
847 hash_add(&compat_hashtab, p->vv_di.di_key);
849 set_vim_var_nr(VV_SEARCHFORWARD, 1L);
852 #if defined(EXITFREE) || defined(PROTO)
853 void
854 eval_clear()
856 int i;
857 struct vimvar *p;
859 for (i = 0; i < VV_LEN; ++i)
861 p = &vimvars[i];
862 if (p->vv_di.di_tv.v_type == VAR_STRING)
864 vim_free(p->vv_str);
865 p->vv_str = NULL;
867 else if (p->vv_di.di_tv.v_type == VAR_LIST)
869 list_unref(p->vv_list);
870 p->vv_list = NULL;
873 hash_clear(&vimvarht);
874 hash_init(&vimvarht); /* garbage_collect() will access it */
875 hash_clear(&compat_hashtab);
877 /* script-local variables */
878 for (i = 1; i <= ga_scripts.ga_len; ++i)
879 vars_clear(&SCRIPT_VARS(i));
880 ga_clear(&ga_scripts);
881 free_scriptnames();
883 /* global variables */
884 vars_clear(&globvarht);
886 /* autoloaded script names */
887 ga_clear_strings(&ga_loaded);
889 /* unreferenced lists and dicts */
890 (void)garbage_collect();
892 /* functions */
893 free_all_functions();
894 hash_clear(&func_hashtab);
896 #endif
899 * Return the name of the executed function.
901 char_u *
902 func_name(cookie)
903 void *cookie;
905 return ((funccall_T *)cookie)->func->uf_name;
909 * Return the address holding the next breakpoint line for a funccall cookie.
911 linenr_T *
912 func_breakpoint(cookie)
913 void *cookie;
915 return &((funccall_T *)cookie)->breakpoint;
919 * Return the address holding the debug tick for a funccall cookie.
921 int *
922 func_dbg_tick(cookie)
923 void *cookie;
925 return &((funccall_T *)cookie)->dbg_tick;
929 * Return the nesting level for a funccall cookie.
932 func_level(cookie)
933 void *cookie;
935 return ((funccall_T *)cookie)->level;
938 /* pointer to funccal for currently active function */
939 funccall_T *current_funccal = NULL;
942 * Return TRUE when a function was ended by a ":return" command.
945 current_func_returned()
947 return current_funccal->returned;
952 * Set an internal variable to a string value. Creates the variable if it does
953 * not already exist.
955 void
956 set_internal_string_var(name, value)
957 char_u *name;
958 char_u *value;
960 char_u *val;
961 typval_T *tvp;
963 val = vim_strsave(value);
964 if (val != NULL)
966 tvp = alloc_string_tv(val);
967 if (tvp != NULL)
969 set_var(name, tvp, FALSE);
970 free_tv(tvp);
975 static lval_T *redir_lval = NULL;
976 static garray_T redir_ga; /* only valid when redir_lval is not NULL */
977 static char_u *redir_endp = NULL;
978 static char_u *redir_varname = NULL;
981 * Start recording command output to a variable
982 * Returns OK if successfully completed the setup. FAIL otherwise.
985 var_redir_start(name, append)
986 char_u *name;
987 int append; /* append to an existing variable */
989 int save_emsg;
990 int err;
991 typval_T tv;
993 /* Make sure a valid variable name is specified */
994 if (!eval_isnamec1(*name))
996 EMSG(_(e_invarg));
997 return FAIL;
1000 redir_varname = vim_strsave(name);
1001 if (redir_varname == NULL)
1002 return FAIL;
1004 redir_lval = (lval_T *)alloc_clear((unsigned)sizeof(lval_T));
1005 if (redir_lval == NULL)
1007 var_redir_stop();
1008 return FAIL;
1011 /* The output is stored in growarray "redir_ga" until redirection ends. */
1012 ga_init2(&redir_ga, (int)sizeof(char), 500);
1014 /* Parse the variable name (can be a dict or list entry). */
1015 redir_endp = get_lval(redir_varname, NULL, redir_lval, FALSE, FALSE, FALSE,
1016 FNE_CHECK_START);
1017 if (redir_endp == NULL || redir_lval->ll_name == NULL || *redir_endp != NUL)
1019 if (redir_endp != NULL && *redir_endp != NUL)
1020 /* Trailing characters are present after the variable name */
1021 EMSG(_(e_trailing));
1022 else
1023 EMSG(_(e_invarg));
1024 var_redir_stop();
1025 return FAIL;
1028 /* check if we can write to the variable: set it to or append an empty
1029 * string */
1030 save_emsg = did_emsg;
1031 did_emsg = FALSE;
1032 tv.v_type = VAR_STRING;
1033 tv.vval.v_string = (char_u *)"";
1034 if (append)
1035 set_var_lval(redir_lval, redir_endp, &tv, TRUE, (char_u *)".");
1036 else
1037 set_var_lval(redir_lval, redir_endp, &tv, TRUE, (char_u *)"=");
1038 err = did_emsg;
1039 did_emsg |= save_emsg;
1040 if (err)
1042 var_redir_stop();
1043 return FAIL;
1045 if (redir_lval->ll_newkey != NULL)
1047 /* Dictionary item was created, don't do it again. */
1048 vim_free(redir_lval->ll_newkey);
1049 redir_lval->ll_newkey = NULL;
1052 return OK;
1056 * Append "value[value_len]" to the variable set by var_redir_start().
1057 * The actual appending is postponed until redirection ends, because the value
1058 * appended may in fact be the string we write to, changing it may cause freed
1059 * memory to be used:
1060 * :redir => foo
1061 * :let foo
1062 * :redir END
1064 void
1065 var_redir_str(value, value_len)
1066 char_u *value;
1067 int value_len;
1069 int len;
1071 if (redir_lval == NULL)
1072 return;
1074 if (value_len == -1)
1075 len = (int)STRLEN(value); /* Append the entire string */
1076 else
1077 len = value_len; /* Append only "value_len" characters */
1079 if (ga_grow(&redir_ga, len) == OK)
1081 mch_memmove((char *)redir_ga.ga_data + redir_ga.ga_len, value, len);
1082 redir_ga.ga_len += len;
1084 else
1085 var_redir_stop();
1089 * Stop redirecting command output to a variable.
1091 void
1092 var_redir_stop()
1094 typval_T tv;
1096 if (redir_lval != NULL)
1098 /* Append the trailing NUL. */
1099 ga_append(&redir_ga, NUL);
1101 /* Assign the text to the variable. */
1102 tv.v_type = VAR_STRING;
1103 tv.vval.v_string = redir_ga.ga_data;
1104 set_var_lval(redir_lval, redir_endp, &tv, FALSE, (char_u *)".");
1105 vim_free(tv.vval.v_string);
1107 clear_lval(redir_lval);
1108 vim_free(redir_lval);
1109 redir_lval = NULL;
1111 vim_free(redir_varname);
1112 redir_varname = NULL;
1115 # if defined(FEAT_MBYTE) || defined(PROTO)
1117 eval_charconvert(enc_from, enc_to, fname_from, fname_to)
1118 char_u *enc_from;
1119 char_u *enc_to;
1120 char_u *fname_from;
1121 char_u *fname_to;
1123 int err = FALSE;
1125 set_vim_var_string(VV_CC_FROM, enc_from, -1);
1126 set_vim_var_string(VV_CC_TO, enc_to, -1);
1127 set_vim_var_string(VV_FNAME_IN, fname_from, -1);
1128 set_vim_var_string(VV_FNAME_OUT, fname_to, -1);
1129 if (eval_to_bool(p_ccv, &err, NULL, FALSE))
1130 err = TRUE;
1131 set_vim_var_string(VV_CC_FROM, NULL, -1);
1132 set_vim_var_string(VV_CC_TO, NULL, -1);
1133 set_vim_var_string(VV_FNAME_IN, NULL, -1);
1134 set_vim_var_string(VV_FNAME_OUT, NULL, -1);
1136 if (err)
1137 return FAIL;
1138 return OK;
1140 # endif
1142 # if defined(FEAT_POSTSCRIPT) || defined(PROTO)
1144 eval_printexpr(fname, args)
1145 char_u *fname;
1146 char_u *args;
1148 int err = FALSE;
1150 set_vim_var_string(VV_FNAME_IN, fname, -1);
1151 set_vim_var_string(VV_CMDARG, args, -1);
1152 if (eval_to_bool(p_pexpr, &err, NULL, FALSE))
1153 err = TRUE;
1154 set_vim_var_string(VV_FNAME_IN, NULL, -1);
1155 set_vim_var_string(VV_CMDARG, NULL, -1);
1157 if (err)
1159 mch_remove(fname);
1160 return FAIL;
1162 return OK;
1164 # endif
1166 # if defined(FEAT_DIFF) || defined(PROTO)
1167 void
1168 eval_diff(origfile, newfile, outfile)
1169 char_u *origfile;
1170 char_u *newfile;
1171 char_u *outfile;
1173 int err = FALSE;
1175 set_vim_var_string(VV_FNAME_IN, origfile, -1);
1176 set_vim_var_string(VV_FNAME_NEW, newfile, -1);
1177 set_vim_var_string(VV_FNAME_OUT, outfile, -1);
1178 (void)eval_to_bool(p_dex, &err, NULL, FALSE);
1179 set_vim_var_string(VV_FNAME_IN, NULL, -1);
1180 set_vim_var_string(VV_FNAME_NEW, NULL, -1);
1181 set_vim_var_string(VV_FNAME_OUT, NULL, -1);
1184 void
1185 eval_patch(origfile, difffile, outfile)
1186 char_u *origfile;
1187 char_u *difffile;
1188 char_u *outfile;
1190 int err;
1192 set_vim_var_string(VV_FNAME_IN, origfile, -1);
1193 set_vim_var_string(VV_FNAME_DIFF, difffile, -1);
1194 set_vim_var_string(VV_FNAME_OUT, outfile, -1);
1195 (void)eval_to_bool(p_pex, &err, NULL, FALSE);
1196 set_vim_var_string(VV_FNAME_IN, NULL, -1);
1197 set_vim_var_string(VV_FNAME_DIFF, NULL, -1);
1198 set_vim_var_string(VV_FNAME_OUT, NULL, -1);
1200 # endif
1203 * Top level evaluation function, returning a boolean.
1204 * Sets "error" to TRUE if there was an error.
1205 * Return TRUE or FALSE.
1208 eval_to_bool(arg, error, nextcmd, skip)
1209 char_u *arg;
1210 int *error;
1211 char_u **nextcmd;
1212 int skip; /* only parse, don't execute */
1214 typval_T tv;
1215 int retval = FALSE;
1217 if (skip)
1218 ++emsg_skip;
1219 if (eval0(arg, &tv, nextcmd, !skip) == FAIL)
1220 *error = TRUE;
1221 else
1223 *error = FALSE;
1224 if (!skip)
1226 retval = (get_tv_number_chk(&tv, error) != 0);
1227 clear_tv(&tv);
1230 if (skip)
1231 --emsg_skip;
1233 return retval;
1237 * Top level evaluation function, returning a string. If "skip" is TRUE,
1238 * only parsing to "nextcmd" is done, without reporting errors. Return
1239 * pointer to allocated memory, or NULL for failure or when "skip" is TRUE.
1241 char_u *
1242 eval_to_string_skip(arg, nextcmd, skip)
1243 char_u *arg;
1244 char_u **nextcmd;
1245 int skip; /* only parse, don't execute */
1247 typval_T tv;
1248 char_u *retval;
1250 if (skip)
1251 ++emsg_skip;
1252 if (eval0(arg, &tv, nextcmd, !skip) == FAIL || skip)
1253 retval = NULL;
1254 else
1256 retval = vim_strsave(get_tv_string(&tv));
1257 clear_tv(&tv);
1259 if (skip)
1260 --emsg_skip;
1262 return retval;
1266 * Skip over an expression at "*pp".
1267 * Return FAIL for an error, OK otherwise.
1270 skip_expr(pp)
1271 char_u **pp;
1273 typval_T rettv;
1275 *pp = skipwhite(*pp);
1276 return eval1(pp, &rettv, FALSE);
1280 * Top level evaluation function, returning a string.
1281 * When "convert" is TRUE convert a List into a sequence of lines and convert
1282 * a Float to a String.
1283 * Return pointer to allocated memory, or NULL for failure.
1285 char_u *
1286 eval_to_string(arg, nextcmd, convert)
1287 char_u *arg;
1288 char_u **nextcmd;
1289 int convert;
1291 typval_T tv;
1292 char_u *retval;
1293 garray_T ga;
1294 char_u numbuf[NUMBUFLEN];
1296 if (eval0(arg, &tv, nextcmd, TRUE) == FAIL)
1297 retval = NULL;
1298 else
1300 if (convert && tv.v_type == VAR_LIST)
1302 ga_init2(&ga, (int)sizeof(char), 80);
1303 if (tv.vval.v_list != NULL)
1304 list_join(&ga, tv.vval.v_list, (char_u *)"\n", TRUE, 0);
1305 ga_append(&ga, NUL);
1306 retval = (char_u *)ga.ga_data;
1308 #ifdef FEAT_FLOAT
1309 else if (convert && tv.v_type == VAR_FLOAT)
1311 vim_snprintf((char *)numbuf, NUMBUFLEN, "%g", tv.vval.v_float);
1312 retval = vim_strsave(numbuf);
1314 #endif
1315 else
1316 retval = vim_strsave(get_tv_string(&tv));
1317 clear_tv(&tv);
1320 return retval;
1324 * Call eval_to_string() without using current local variables and using
1325 * textlock. When "use_sandbox" is TRUE use the sandbox.
1327 char_u *
1328 eval_to_string_safe(arg, nextcmd, use_sandbox)
1329 char_u *arg;
1330 char_u **nextcmd;
1331 int use_sandbox;
1333 char_u *retval;
1334 void *save_funccalp;
1336 save_funccalp = save_funccal();
1337 if (use_sandbox)
1338 ++sandbox;
1339 ++textlock;
1340 retval = eval_to_string(arg, nextcmd, FALSE);
1341 if (use_sandbox)
1342 --sandbox;
1343 --textlock;
1344 restore_funccal(save_funccalp);
1345 return retval;
1349 * Top level evaluation function, returning a number.
1350 * Evaluates "expr" silently.
1351 * Returns -1 for an error.
1354 eval_to_number(expr)
1355 char_u *expr;
1357 typval_T rettv;
1358 int retval;
1359 char_u *p = skipwhite(expr);
1361 ++emsg_off;
1363 if (eval1(&p, &rettv, TRUE) == FAIL)
1364 retval = -1;
1365 else
1367 retval = get_tv_number_chk(&rettv, NULL);
1368 clear_tv(&rettv);
1370 --emsg_off;
1372 return retval;
1376 * Prepare v: variable "idx" to be used.
1377 * Save the current typeval in "save_tv".
1378 * When not used yet add the variable to the v: hashtable.
1380 static void
1381 prepare_vimvar(idx, save_tv)
1382 int idx;
1383 typval_T *save_tv;
1385 *save_tv = vimvars[idx].vv_tv;
1386 if (vimvars[idx].vv_type == VAR_UNKNOWN)
1387 hash_add(&vimvarht, vimvars[idx].vv_di.di_key);
1391 * Restore v: variable "idx" to typeval "save_tv".
1392 * When no longer defined, remove the variable from the v: hashtable.
1394 static void
1395 restore_vimvar(idx, save_tv)
1396 int idx;
1397 typval_T *save_tv;
1399 hashitem_T *hi;
1401 vimvars[idx].vv_tv = *save_tv;
1402 if (vimvars[idx].vv_type == VAR_UNKNOWN)
1404 hi = hash_find(&vimvarht, vimvars[idx].vv_di.di_key);
1405 if (HASHITEM_EMPTY(hi))
1406 EMSG2(_(e_intern2), "restore_vimvar()");
1407 else
1408 hash_remove(&vimvarht, hi);
1412 #if defined(FEAT_SPELL) || defined(PROTO)
1414 * Evaluate an expression to a list with suggestions.
1415 * For the "expr:" part of 'spellsuggest'.
1416 * Returns NULL when there is an error.
1418 list_T *
1419 eval_spell_expr(badword, expr)
1420 char_u *badword;
1421 char_u *expr;
1423 typval_T save_val;
1424 typval_T rettv;
1425 list_T *list = NULL;
1426 char_u *p = skipwhite(expr);
1428 /* Set "v:val" to the bad word. */
1429 prepare_vimvar(VV_VAL, &save_val);
1430 vimvars[VV_VAL].vv_type = VAR_STRING;
1431 vimvars[VV_VAL].vv_str = badword;
1432 if (p_verbose == 0)
1433 ++emsg_off;
1435 if (eval1(&p, &rettv, TRUE) == OK)
1437 if (rettv.v_type != VAR_LIST)
1438 clear_tv(&rettv);
1439 else
1440 list = rettv.vval.v_list;
1443 if (p_verbose == 0)
1444 --emsg_off;
1445 restore_vimvar(VV_VAL, &save_val);
1447 return list;
1451 * "list" is supposed to contain two items: a word and a number. Return the
1452 * word in "pp" and the number as the return value.
1453 * Return -1 if anything isn't right.
1454 * Used to get the good word and score from the eval_spell_expr() result.
1457 get_spellword(list, pp)
1458 list_T *list;
1459 char_u **pp;
1461 listitem_T *li;
1463 li = list->lv_first;
1464 if (li == NULL)
1465 return -1;
1466 *pp = get_tv_string(&li->li_tv);
1468 li = li->li_next;
1469 if (li == NULL)
1470 return -1;
1471 return get_tv_number(&li->li_tv);
1473 #endif
1476 * Top level evaluation function.
1477 * Returns an allocated typval_T with the result.
1478 * Returns NULL when there is an error.
1480 typval_T *
1481 eval_expr(arg, nextcmd)
1482 char_u *arg;
1483 char_u **nextcmd;
1485 typval_T *tv;
1487 tv = (typval_T *)alloc(sizeof(typval_T));
1488 if (tv != NULL && eval0(arg, tv, nextcmd, TRUE) == FAIL)
1490 vim_free(tv);
1491 tv = NULL;
1494 return tv;
1498 #if (defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL)) \
1499 || defined(FEAT_COMPL_FUNC) || defined(PROTO)
1501 * Call some vimL function and return the result in "*rettv".
1502 * Uses argv[argc] for the function arguments. Only Number and String
1503 * arguments are currently supported.
1504 * Returns OK or FAIL.
1506 static int
1507 call_vim_function(func, argc, argv, safe, rettv)
1508 char_u *func;
1509 int argc;
1510 char_u **argv;
1511 int safe; /* use the sandbox */
1512 typval_T *rettv;
1514 typval_T *argvars;
1515 long n;
1516 int len;
1517 int i;
1518 int doesrange;
1519 void *save_funccalp = NULL;
1520 int ret;
1522 argvars = (typval_T *)alloc((unsigned)((argc + 1) * sizeof(typval_T)));
1523 if (argvars == NULL)
1524 return FAIL;
1526 for (i = 0; i < argc; i++)
1528 /* Pass a NULL or empty argument as an empty string */
1529 if (argv[i] == NULL || *argv[i] == NUL)
1531 argvars[i].v_type = VAR_STRING;
1532 argvars[i].vval.v_string = (char_u *)"";
1533 continue;
1536 /* Recognize a number argument, the others must be strings. */
1537 vim_str2nr(argv[i], NULL, &len, TRUE, TRUE, &n, NULL);
1538 if (len != 0 && len == (int)STRLEN(argv[i]))
1540 argvars[i].v_type = VAR_NUMBER;
1541 argvars[i].vval.v_number = n;
1543 else
1545 argvars[i].v_type = VAR_STRING;
1546 argvars[i].vval.v_string = argv[i];
1550 if (safe)
1552 save_funccalp = save_funccal();
1553 ++sandbox;
1556 rettv->v_type = VAR_UNKNOWN; /* clear_tv() uses this */
1557 ret = call_func(func, (int)STRLEN(func), rettv, argc, argvars,
1558 curwin->w_cursor.lnum, curwin->w_cursor.lnum,
1559 &doesrange, TRUE, NULL);
1560 if (safe)
1562 --sandbox;
1563 restore_funccal(save_funccalp);
1565 vim_free(argvars);
1567 if (ret == FAIL)
1568 clear_tv(rettv);
1570 return ret;
1573 # if (defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL)) || defined(PROTO)
1575 * Call vimL function "func" and return the result as a string.
1576 * Returns NULL when calling the function fails.
1577 * Uses argv[argc] for the function arguments.
1579 void *
1580 call_func_retstr(func, argc, argv, safe)
1581 char_u *func;
1582 int argc;
1583 char_u **argv;
1584 int safe; /* use the sandbox */
1586 typval_T rettv;
1587 char_u *retval;
1589 if (call_vim_function(func, argc, argv, safe, &rettv) == FAIL)
1590 return NULL;
1592 retval = vim_strsave(get_tv_string(&rettv));
1593 clear_tv(&rettv);
1594 return retval;
1596 # endif
1598 # if defined(FEAT_COMPL_FUNC) || defined(PROTO)
1600 * Call vimL function "func" and return the result as a number.
1601 * Returns -1 when calling the function fails.
1602 * Uses argv[argc] for the function arguments.
1604 long
1605 call_func_retnr(func, argc, argv, safe)
1606 char_u *func;
1607 int argc;
1608 char_u **argv;
1609 int safe; /* use the sandbox */
1611 typval_T rettv;
1612 long retval;
1614 if (call_vim_function(func, argc, argv, safe, &rettv) == FAIL)
1615 return -1;
1617 retval = get_tv_number_chk(&rettv, NULL);
1618 clear_tv(&rettv);
1619 return retval;
1621 # endif
1624 * Call vimL function "func" and return the result as a List.
1625 * Uses argv[argc] for the function arguments.
1626 * Returns NULL when there is something wrong.
1628 void *
1629 call_func_retlist(func, argc, argv, safe)
1630 char_u *func;
1631 int argc;
1632 char_u **argv;
1633 int safe; /* use the sandbox */
1635 typval_T rettv;
1637 if (call_vim_function(func, argc, argv, safe, &rettv) == FAIL)
1638 return NULL;
1640 if (rettv.v_type != VAR_LIST)
1642 clear_tv(&rettv);
1643 return NULL;
1646 return rettv.vval.v_list;
1648 #endif
1652 * Save the current function call pointer, and set it to NULL.
1653 * Used when executing autocommands and for ":source".
1655 void *
1656 save_funccal()
1658 funccall_T *fc = current_funccal;
1660 current_funccal = NULL;
1661 return (void *)fc;
1664 void
1665 restore_funccal(vfc)
1666 void *vfc;
1668 funccall_T *fc = (funccall_T *)vfc;
1670 current_funccal = fc;
1673 #if defined(FEAT_PROFILE) || defined(PROTO)
1675 * Prepare profiling for entering a child or something else that is not
1676 * counted for the script/function itself.
1677 * Should always be called in pair with prof_child_exit().
1679 void
1680 prof_child_enter(tm)
1681 proftime_T *tm; /* place to store waittime */
1683 funccall_T *fc = current_funccal;
1685 if (fc != NULL && fc->func->uf_profiling)
1686 profile_start(&fc->prof_child);
1687 script_prof_save(tm);
1691 * Take care of time spent in a child.
1692 * Should always be called after prof_child_enter().
1694 void
1695 prof_child_exit(tm)
1696 proftime_T *tm; /* where waittime was stored */
1698 funccall_T *fc = current_funccal;
1700 if (fc != NULL && fc->func->uf_profiling)
1702 profile_end(&fc->prof_child);
1703 profile_sub_wait(tm, &fc->prof_child); /* don't count waiting time */
1704 profile_add(&fc->func->uf_tm_children, &fc->prof_child);
1705 profile_add(&fc->func->uf_tml_children, &fc->prof_child);
1707 script_prof_restore(tm);
1709 #endif
1712 #ifdef FEAT_FOLDING
1714 * Evaluate 'foldexpr'. Returns the foldlevel, and any character preceding
1715 * it in "*cp". Doesn't give error messages.
1718 eval_foldexpr(arg, cp)
1719 char_u *arg;
1720 int *cp;
1722 typval_T tv;
1723 int retval;
1724 char_u *s;
1725 int use_sandbox = was_set_insecurely((char_u *)"foldexpr",
1726 OPT_LOCAL);
1728 ++emsg_off;
1729 if (use_sandbox)
1730 ++sandbox;
1731 ++textlock;
1732 *cp = NUL;
1733 if (eval0(arg, &tv, NULL, TRUE) == FAIL)
1734 retval = 0;
1735 else
1737 /* If the result is a number, just return the number. */
1738 if (tv.v_type == VAR_NUMBER)
1739 retval = tv.vval.v_number;
1740 else if (tv.v_type != VAR_STRING || tv.vval.v_string == NULL)
1741 retval = 0;
1742 else
1744 /* If the result is a string, check if there is a non-digit before
1745 * the number. */
1746 s = tv.vval.v_string;
1747 if (!VIM_ISDIGIT(*s) && *s != '-')
1748 *cp = *s++;
1749 retval = atol((char *)s);
1751 clear_tv(&tv);
1753 --emsg_off;
1754 if (use_sandbox)
1755 --sandbox;
1756 --textlock;
1758 return retval;
1760 #endif
1763 * ":let" list all variable values
1764 * ":let var1 var2" list variable values
1765 * ":let var = expr" assignment command.
1766 * ":let var += expr" assignment command.
1767 * ":let var -= expr" assignment command.
1768 * ":let var .= expr" assignment command.
1769 * ":let [var1, var2] = expr" unpack list.
1771 void
1772 ex_let(eap)
1773 exarg_T *eap;
1775 char_u *arg = eap->arg;
1776 char_u *expr = NULL;
1777 typval_T rettv;
1778 int i;
1779 int var_count = 0;
1780 int semicolon = 0;
1781 char_u op[2];
1782 char_u *argend;
1783 int first = TRUE;
1785 argend = skip_var_list(arg, &var_count, &semicolon);
1786 if (argend == NULL)
1787 return;
1788 if (argend > arg && argend[-1] == '.') /* for var.='str' */
1789 --argend;
1790 expr = vim_strchr(argend, '=');
1791 if (expr == NULL)
1794 * ":let" without "=": list variables
1796 if (*arg == '[')
1797 EMSG(_(e_invarg));
1798 else if (!ends_excmd(*arg))
1799 /* ":let var1 var2" */
1800 arg = list_arg_vars(eap, arg, &first);
1801 else if (!eap->skip)
1803 /* ":let" */
1804 list_glob_vars(&first);
1805 list_buf_vars(&first);
1806 list_win_vars(&first);
1807 #ifdef FEAT_WINDOWS
1808 list_tab_vars(&first);
1809 #endif
1810 list_script_vars(&first);
1811 list_func_vars(&first);
1812 list_vim_vars(&first);
1814 eap->nextcmd = check_nextcmd(arg);
1816 else
1818 op[0] = '=';
1819 op[1] = NUL;
1820 if (expr > argend)
1822 if (vim_strchr((char_u *)"+-.", expr[-1]) != NULL)
1823 op[0] = expr[-1]; /* +=, -= or .= */
1825 expr = skipwhite(expr + 1);
1827 if (eap->skip)
1828 ++emsg_skip;
1829 i = eval0(expr, &rettv, &eap->nextcmd, !eap->skip);
1830 if (eap->skip)
1832 if (i != FAIL)
1833 clear_tv(&rettv);
1834 --emsg_skip;
1836 else if (i != FAIL)
1838 (void)ex_let_vars(eap->arg, &rettv, FALSE, semicolon, var_count,
1839 op);
1840 clear_tv(&rettv);
1846 * Assign the typevalue "tv" to the variable or variables at "arg_start".
1847 * Handles both "var" with any type and "[var, var; var]" with a list type.
1848 * When "nextchars" is not NULL it points to a string with characters that
1849 * must appear after the variable(s). Use "+", "-" or "." for add, subtract
1850 * or concatenate.
1851 * Returns OK or FAIL;
1853 static int
1854 ex_let_vars(arg_start, tv, copy, semicolon, var_count, nextchars)
1855 char_u *arg_start;
1856 typval_T *tv;
1857 int copy; /* copy values from "tv", don't move */
1858 int semicolon; /* from skip_var_list() */
1859 int var_count; /* from skip_var_list() */
1860 char_u *nextchars;
1862 char_u *arg = arg_start;
1863 list_T *l;
1864 int i;
1865 listitem_T *item;
1866 typval_T ltv;
1868 if (*arg != '[')
1871 * ":let var = expr" or ":for var in list"
1873 if (ex_let_one(arg, tv, copy, nextchars, nextchars) == NULL)
1874 return FAIL;
1875 return OK;
1879 * ":let [v1, v2] = list" or ":for [v1, v2] in listlist"
1881 if (tv->v_type != VAR_LIST || (l = tv->vval.v_list) == NULL)
1883 EMSG(_(e_listreq));
1884 return FAIL;
1887 i = list_len(l);
1888 if (semicolon == 0 && var_count < i)
1890 EMSG(_("E687: Less targets than List items"));
1891 return FAIL;
1893 if (var_count - semicolon > i)
1895 EMSG(_("E688: More targets than List items"));
1896 return FAIL;
1899 item = l->lv_first;
1900 while (*arg != ']')
1902 arg = skipwhite(arg + 1);
1903 arg = ex_let_one(arg, &item->li_tv, TRUE, (char_u *)",;]", nextchars);
1904 item = item->li_next;
1905 if (arg == NULL)
1906 return FAIL;
1908 arg = skipwhite(arg);
1909 if (*arg == ';')
1911 /* Put the rest of the list (may be empty) in the var after ';'.
1912 * Create a new list for this. */
1913 l = list_alloc();
1914 if (l == NULL)
1915 return FAIL;
1916 while (item != NULL)
1918 list_append_tv(l, &item->li_tv);
1919 item = item->li_next;
1922 ltv.v_type = VAR_LIST;
1923 ltv.v_lock = 0;
1924 ltv.vval.v_list = l;
1925 l->lv_refcount = 1;
1927 arg = ex_let_one(skipwhite(arg + 1), &ltv, FALSE,
1928 (char_u *)"]", nextchars);
1929 clear_tv(&ltv);
1930 if (arg == NULL)
1931 return FAIL;
1932 break;
1934 else if (*arg != ',' && *arg != ']')
1936 EMSG2(_(e_intern2), "ex_let_vars()");
1937 return FAIL;
1941 return OK;
1945 * Skip over assignable variable "var" or list of variables "[var, var]".
1946 * Used for ":let varvar = expr" and ":for varvar in expr".
1947 * For "[var, var]" increment "*var_count" for each variable.
1948 * for "[var, var; var]" set "semicolon".
1949 * Return NULL for an error.
1951 static char_u *
1952 skip_var_list(arg, var_count, semicolon)
1953 char_u *arg;
1954 int *var_count;
1955 int *semicolon;
1957 char_u *p, *s;
1959 if (*arg == '[')
1961 /* "[var, var]": find the matching ']'. */
1962 p = arg;
1963 for (;;)
1965 p = skipwhite(p + 1); /* skip whites after '[', ';' or ',' */
1966 s = skip_var_one(p);
1967 if (s == p)
1969 EMSG2(_(e_invarg2), p);
1970 return NULL;
1972 ++*var_count;
1974 p = skipwhite(s);
1975 if (*p == ']')
1976 break;
1977 else if (*p == ';')
1979 if (*semicolon == 1)
1981 EMSG(_("Double ; in list of variables"));
1982 return NULL;
1984 *semicolon = 1;
1986 else if (*p != ',')
1988 EMSG2(_(e_invarg2), p);
1989 return NULL;
1992 return p + 1;
1994 else
1995 return skip_var_one(arg);
1999 * Skip one (assignable) variable name, including @r, $VAR, &option, d.key,
2000 * l[idx].
2002 static char_u *
2003 skip_var_one(arg)
2004 char_u *arg;
2006 if (*arg == '@' && arg[1] != NUL)
2007 return arg + 2;
2008 return find_name_end(*arg == '$' || *arg == '&' ? arg + 1 : arg,
2009 NULL, NULL, FNE_INCL_BR | FNE_CHECK_START);
2013 * List variables for hashtab "ht" with prefix "prefix".
2014 * If "empty" is TRUE also list NULL strings as empty strings.
2016 static void
2017 list_hashtable_vars(ht, prefix, empty, first)
2018 hashtab_T *ht;
2019 char_u *prefix;
2020 int empty;
2021 int *first;
2023 hashitem_T *hi;
2024 dictitem_T *di;
2025 int todo;
2027 todo = (int)ht->ht_used;
2028 for (hi = ht->ht_array; todo > 0 && !got_int; ++hi)
2030 if (!HASHITEM_EMPTY(hi))
2032 --todo;
2033 di = HI2DI(hi);
2034 if (empty || di->di_tv.v_type != VAR_STRING
2035 || di->di_tv.vval.v_string != NULL)
2036 list_one_var(di, prefix, first);
2042 * List global variables.
2044 static void
2045 list_glob_vars(first)
2046 int *first;
2048 list_hashtable_vars(&globvarht, (char_u *)"", TRUE, first);
2052 * List buffer variables.
2054 static void
2055 list_buf_vars(first)
2056 int *first;
2058 char_u numbuf[NUMBUFLEN];
2060 list_hashtable_vars(&curbuf->b_vars.dv_hashtab, (char_u *)"b:",
2061 TRUE, first);
2063 sprintf((char *)numbuf, "%ld", (long)curbuf->b_changedtick);
2064 list_one_var_a((char_u *)"b:", (char_u *)"changedtick", VAR_NUMBER,
2065 numbuf, first);
2069 * List window variables.
2071 static void
2072 list_win_vars(first)
2073 int *first;
2075 list_hashtable_vars(&curwin->w_vars.dv_hashtab,
2076 (char_u *)"w:", TRUE, first);
2079 #ifdef FEAT_WINDOWS
2081 * List tab page variables.
2083 static void
2084 list_tab_vars(first)
2085 int *first;
2087 list_hashtable_vars(&curtab->tp_vars.dv_hashtab,
2088 (char_u *)"t:", TRUE, first);
2090 #endif
2093 * List Vim variables.
2095 static void
2096 list_vim_vars(first)
2097 int *first;
2099 list_hashtable_vars(&vimvarht, (char_u *)"v:", FALSE, first);
2103 * List script-local variables, if there is a script.
2105 static void
2106 list_script_vars(first)
2107 int *first;
2109 if (current_SID > 0 && current_SID <= ga_scripts.ga_len)
2110 list_hashtable_vars(&SCRIPT_VARS(current_SID),
2111 (char_u *)"s:", FALSE, first);
2115 * List function variables, if there is a function.
2117 static void
2118 list_func_vars(first)
2119 int *first;
2121 if (current_funccal != NULL)
2122 list_hashtable_vars(&current_funccal->l_vars.dv_hashtab,
2123 (char_u *)"l:", FALSE, first);
2127 * List variables in "arg".
2129 static char_u *
2130 list_arg_vars(eap, arg, first)
2131 exarg_T *eap;
2132 char_u *arg;
2133 int *first;
2135 int error = FALSE;
2136 int len;
2137 char_u *name;
2138 char_u *name_start;
2139 char_u *arg_subsc;
2140 char_u *tofree;
2141 typval_T tv;
2143 while (!ends_excmd(*arg) && !got_int)
2145 if (error || eap->skip)
2147 arg = find_name_end(arg, NULL, NULL, FNE_INCL_BR | FNE_CHECK_START);
2148 if (!vim_iswhite(*arg) && !ends_excmd(*arg))
2150 emsg_severe = TRUE;
2151 EMSG(_(e_trailing));
2152 break;
2155 else
2157 /* get_name_len() takes care of expanding curly braces */
2158 name_start = name = arg;
2159 len = get_name_len(&arg, &tofree, TRUE, TRUE);
2160 if (len <= 0)
2162 /* This is mainly to keep test 49 working: when expanding
2163 * curly braces fails overrule the exception error message. */
2164 if (len < 0 && !aborting())
2166 emsg_severe = TRUE;
2167 EMSG2(_(e_invarg2), arg);
2168 break;
2170 error = TRUE;
2172 else
2174 if (tofree != NULL)
2175 name = tofree;
2176 if (get_var_tv(name, len, &tv, TRUE) == FAIL)
2177 error = TRUE;
2178 else
2180 /* handle d.key, l[idx], f(expr) */
2181 arg_subsc = arg;
2182 if (handle_subscript(&arg, &tv, TRUE, TRUE) == FAIL)
2183 error = TRUE;
2184 else
2186 if (arg == arg_subsc && len == 2 && name[1] == ':')
2188 switch (*name)
2190 case 'g': list_glob_vars(first); break;
2191 case 'b': list_buf_vars(first); break;
2192 case 'w': list_win_vars(first); break;
2193 #ifdef FEAT_WINDOWS
2194 case 't': list_tab_vars(first); break;
2195 #endif
2196 case 'v': list_vim_vars(first); break;
2197 case 's': list_script_vars(first); break;
2198 case 'l': list_func_vars(first); break;
2199 default:
2200 EMSG2(_("E738: Can't list variables for %s"), name);
2203 else
2205 char_u numbuf[NUMBUFLEN];
2206 char_u *tf;
2207 int c;
2208 char_u *s;
2210 s = echo_string(&tv, &tf, numbuf, 0);
2211 c = *arg;
2212 *arg = NUL;
2213 list_one_var_a((char_u *)"",
2214 arg == arg_subsc ? name : name_start,
2215 tv.v_type,
2216 s == NULL ? (char_u *)"" : s,
2217 first);
2218 *arg = c;
2219 vim_free(tf);
2221 clear_tv(&tv);
2226 vim_free(tofree);
2229 arg = skipwhite(arg);
2232 return arg;
2236 * Set one item of ":let var = expr" or ":let [v1, v2] = list" to its value.
2237 * Returns a pointer to the char just after the var name.
2238 * Returns NULL if there is an error.
2240 static char_u *
2241 ex_let_one(arg, tv, copy, endchars, op)
2242 char_u *arg; /* points to variable name */
2243 typval_T *tv; /* value to assign to variable */
2244 int copy; /* copy value from "tv" */
2245 char_u *endchars; /* valid chars after variable name or NULL */
2246 char_u *op; /* "+", "-", "." or NULL*/
2248 int c1;
2249 char_u *name;
2250 char_u *p;
2251 char_u *arg_end = NULL;
2252 int len;
2253 int opt_flags;
2254 char_u *tofree = NULL;
2257 * ":let $VAR = expr": Set environment variable.
2259 if (*arg == '$')
2261 /* Find the end of the name. */
2262 ++arg;
2263 name = arg;
2264 len = get_env_len(&arg);
2265 if (len == 0)
2266 EMSG2(_(e_invarg2), name - 1);
2267 else
2269 if (op != NULL && (*op == '+' || *op == '-'))
2270 EMSG2(_(e_letwrong), op);
2271 else if (endchars != NULL
2272 && vim_strchr(endchars, *skipwhite(arg)) == NULL)
2273 EMSG(_(e_letunexp));
2274 else
2276 c1 = name[len];
2277 name[len] = NUL;
2278 p = get_tv_string_chk(tv);
2279 if (p != NULL && op != NULL && *op == '.')
2281 int mustfree = FALSE;
2282 char_u *s = vim_getenv(name, &mustfree);
2284 if (s != NULL)
2286 p = tofree = concat_str(s, p);
2287 if (mustfree)
2288 vim_free(s);
2291 if (p != NULL)
2293 vim_setenv(name, p);
2294 if (STRICMP(name, "HOME") == 0)
2295 init_homedir();
2296 else if (didset_vim && STRICMP(name, "VIM") == 0)
2297 didset_vim = FALSE;
2298 else if (didset_vimruntime
2299 && STRICMP(name, "VIMRUNTIME") == 0)
2300 didset_vimruntime = FALSE;
2301 arg_end = arg;
2303 name[len] = c1;
2304 vim_free(tofree);
2310 * ":let &option = expr": Set option value.
2311 * ":let &l:option = expr": Set local option value.
2312 * ":let &g:option = expr": Set global option value.
2314 else if (*arg == '&')
2316 /* Find the end of the name. */
2317 p = find_option_end(&arg, &opt_flags);
2318 if (p == NULL || (endchars != NULL
2319 && vim_strchr(endchars, *skipwhite(p)) == NULL))
2320 EMSG(_(e_letunexp));
2321 else
2323 long n;
2324 int opt_type;
2325 long numval;
2326 char_u *stringval = NULL;
2327 char_u *s;
2329 c1 = *p;
2330 *p = NUL;
2332 n = get_tv_number(tv);
2333 s = get_tv_string_chk(tv); /* != NULL if number or string */
2334 if (s != NULL && op != NULL && *op != '=')
2336 opt_type = get_option_value(arg, &numval,
2337 &stringval, opt_flags);
2338 if ((opt_type == 1 && *op == '.')
2339 || (opt_type == 0 && *op != '.'))
2340 EMSG2(_(e_letwrong), op);
2341 else
2343 if (opt_type == 1) /* number */
2345 if (*op == '+')
2346 n = numval + n;
2347 else
2348 n = numval - n;
2350 else if (opt_type == 0 && stringval != NULL) /* string */
2352 s = concat_str(stringval, s);
2353 vim_free(stringval);
2354 stringval = s;
2358 if (s != NULL)
2360 set_option_value(arg, n, s, opt_flags);
2361 arg_end = p;
2363 *p = c1;
2364 vim_free(stringval);
2369 * ":let @r = expr": Set register contents.
2371 else if (*arg == '@')
2373 ++arg;
2374 if (op != NULL && (*op == '+' || *op == '-'))
2375 EMSG2(_(e_letwrong), op);
2376 else if (endchars != NULL
2377 && vim_strchr(endchars, *skipwhite(arg + 1)) == NULL)
2378 EMSG(_(e_letunexp));
2379 else
2381 char_u *ptofree = NULL;
2382 char_u *s;
2384 p = get_tv_string_chk(tv);
2385 if (p != NULL && op != NULL && *op == '.')
2387 s = get_reg_contents(*arg == '@' ? '"' : *arg, TRUE, TRUE);
2388 if (s != NULL)
2390 p = ptofree = concat_str(s, p);
2391 vim_free(s);
2394 if (p != NULL)
2396 write_reg_contents(*arg == '@' ? '"' : *arg, p, -1, FALSE);
2397 arg_end = arg + 1;
2399 vim_free(ptofree);
2404 * ":let var = expr": Set internal variable.
2405 * ":let {expr} = expr": Idem, name made with curly braces
2407 else if (eval_isnamec1(*arg) || *arg == '{')
2409 lval_T lv;
2411 p = get_lval(arg, tv, &lv, FALSE, FALSE, FALSE, FNE_CHECK_START);
2412 if (p != NULL && lv.ll_name != NULL)
2414 if (endchars != NULL && vim_strchr(endchars, *skipwhite(p)) == NULL)
2415 EMSG(_(e_letunexp));
2416 else
2418 set_var_lval(&lv, p, tv, copy, op);
2419 arg_end = p;
2422 clear_lval(&lv);
2425 else
2426 EMSG2(_(e_invarg2), arg);
2428 return arg_end;
2432 * If "arg" is equal to "b:changedtick" give an error and return TRUE.
2434 static int
2435 check_changedtick(arg)
2436 char_u *arg;
2438 if (STRNCMP(arg, "b:changedtick", 13) == 0 && !eval_isnamec(arg[13]))
2440 EMSG2(_(e_readonlyvar), arg);
2441 return TRUE;
2443 return FALSE;
2447 * Get an lval: variable, Dict item or List item that can be assigned a value
2448 * to: "name", "na{me}", "name[expr]", "name[expr:expr]", "name[expr][expr]",
2449 * "name.key", "name.key[expr]" etc.
2450 * Indexing only works if "name" is an existing List or Dictionary.
2451 * "name" points to the start of the name.
2452 * If "rettv" is not NULL it points to the value to be assigned.
2453 * "unlet" is TRUE for ":unlet": slightly different behavior when something is
2454 * wrong; must end in space or cmd separator.
2456 * Returns a pointer to just after the name, including indexes.
2457 * When an evaluation error occurs "lp->ll_name" is NULL;
2458 * Returns NULL for a parsing error. Still need to free items in "lp"!
2460 static char_u *
2461 get_lval(name, rettv, lp, unlet, skip, quiet, fne_flags)
2462 char_u *name;
2463 typval_T *rettv;
2464 lval_T *lp;
2465 int unlet;
2466 int skip;
2467 int quiet; /* don't give error messages */
2468 int fne_flags; /* flags for find_name_end() */
2470 char_u *p;
2471 char_u *expr_start, *expr_end;
2472 int cc;
2473 dictitem_T *v;
2474 typval_T var1;
2475 typval_T var2;
2476 int empty1 = FALSE;
2477 listitem_T *ni;
2478 char_u *key = NULL;
2479 int len;
2480 hashtab_T *ht;
2482 /* Clear everything in "lp". */
2483 vim_memset(lp, 0, sizeof(lval_T));
2485 if (skip)
2487 /* When skipping just find the end of the name. */
2488 lp->ll_name = name;
2489 return find_name_end(name, NULL, NULL, FNE_INCL_BR | fne_flags);
2492 /* Find the end of the name. */
2493 p = find_name_end(name, &expr_start, &expr_end, fne_flags);
2494 if (expr_start != NULL)
2496 /* Don't expand the name when we already know there is an error. */
2497 if (unlet && !vim_iswhite(*p) && !ends_excmd(*p)
2498 && *p != '[' && *p != '.')
2500 EMSG(_(e_trailing));
2501 return NULL;
2504 lp->ll_exp_name = make_expanded_name(name, expr_start, expr_end, p);
2505 if (lp->ll_exp_name == NULL)
2507 /* Report an invalid expression in braces, unless the
2508 * expression evaluation has been cancelled due to an
2509 * aborting error, an interrupt, or an exception. */
2510 if (!aborting() && !quiet)
2512 emsg_severe = TRUE;
2513 EMSG2(_(e_invarg2), name);
2514 return NULL;
2517 lp->ll_name = lp->ll_exp_name;
2519 else
2520 lp->ll_name = name;
2522 /* Without [idx] or .key we are done. */
2523 if ((*p != '[' && *p != '.') || lp->ll_name == NULL)
2524 return p;
2526 cc = *p;
2527 *p = NUL;
2528 v = find_var(lp->ll_name, &ht);
2529 if (v == NULL && !quiet)
2530 EMSG2(_(e_undefvar), lp->ll_name);
2531 *p = cc;
2532 if (v == NULL)
2533 return NULL;
2536 * Loop until no more [idx] or .key is following.
2538 lp->ll_tv = &v->di_tv;
2539 while (*p == '[' || (*p == '.' && lp->ll_tv->v_type == VAR_DICT))
2541 if (!(lp->ll_tv->v_type == VAR_LIST && lp->ll_tv->vval.v_list != NULL)
2542 && !(lp->ll_tv->v_type == VAR_DICT
2543 && lp->ll_tv->vval.v_dict != NULL))
2545 if (!quiet)
2546 EMSG(_("E689: Can only index a List or Dictionary"));
2547 return NULL;
2549 if (lp->ll_range)
2551 if (!quiet)
2552 EMSG(_("E708: [:] must come last"));
2553 return NULL;
2556 len = -1;
2557 if (*p == '.')
2559 key = p + 1;
2560 for (len = 0; ASCII_ISALNUM(key[len]) || key[len] == '_'; ++len)
2562 if (len == 0)
2564 if (!quiet)
2565 EMSG(_(e_emptykey));
2566 return NULL;
2568 p = key + len;
2570 else
2572 /* Get the index [expr] or the first index [expr: ]. */
2573 p = skipwhite(p + 1);
2574 if (*p == ':')
2575 empty1 = TRUE;
2576 else
2578 empty1 = FALSE;
2579 if (eval1(&p, &var1, TRUE) == FAIL) /* recursive! */
2580 return NULL;
2581 if (get_tv_string_chk(&var1) == NULL)
2583 /* not a number or string */
2584 clear_tv(&var1);
2585 return NULL;
2589 /* Optionally get the second index [ :expr]. */
2590 if (*p == ':')
2592 if (lp->ll_tv->v_type == VAR_DICT)
2594 if (!quiet)
2595 EMSG(_(e_dictrange));
2596 if (!empty1)
2597 clear_tv(&var1);
2598 return NULL;
2600 if (rettv != NULL && (rettv->v_type != VAR_LIST
2601 || rettv->vval.v_list == NULL))
2603 if (!quiet)
2604 EMSG(_("E709: [:] requires a List value"));
2605 if (!empty1)
2606 clear_tv(&var1);
2607 return NULL;
2609 p = skipwhite(p + 1);
2610 if (*p == ']')
2611 lp->ll_empty2 = TRUE;
2612 else
2614 lp->ll_empty2 = FALSE;
2615 if (eval1(&p, &var2, TRUE) == FAIL) /* recursive! */
2617 if (!empty1)
2618 clear_tv(&var1);
2619 return NULL;
2621 if (get_tv_string_chk(&var2) == NULL)
2623 /* not a number or string */
2624 if (!empty1)
2625 clear_tv(&var1);
2626 clear_tv(&var2);
2627 return NULL;
2630 lp->ll_range = TRUE;
2632 else
2633 lp->ll_range = FALSE;
2635 if (*p != ']')
2637 if (!quiet)
2638 EMSG(_(e_missbrac));
2639 if (!empty1)
2640 clear_tv(&var1);
2641 if (lp->ll_range && !lp->ll_empty2)
2642 clear_tv(&var2);
2643 return NULL;
2646 /* Skip to past ']'. */
2647 ++p;
2650 if (lp->ll_tv->v_type == VAR_DICT)
2652 if (len == -1)
2654 /* "[key]": get key from "var1" */
2655 key = get_tv_string(&var1); /* is number or string */
2656 if (*key == NUL)
2658 if (!quiet)
2659 EMSG(_(e_emptykey));
2660 clear_tv(&var1);
2661 return NULL;
2664 lp->ll_list = NULL;
2665 lp->ll_dict = lp->ll_tv->vval.v_dict;
2666 lp->ll_di = dict_find(lp->ll_dict, key, len);
2667 if (lp->ll_di == NULL)
2669 /* Key does not exist in dict: may need to add it. */
2670 if (*p == '[' || *p == '.' || unlet)
2672 if (!quiet)
2673 EMSG2(_(e_dictkey), key);
2674 if (len == -1)
2675 clear_tv(&var1);
2676 return NULL;
2678 if (len == -1)
2679 lp->ll_newkey = vim_strsave(key);
2680 else
2681 lp->ll_newkey = vim_strnsave(key, len);
2682 if (len == -1)
2683 clear_tv(&var1);
2684 if (lp->ll_newkey == NULL)
2685 p = NULL;
2686 break;
2688 if (len == -1)
2689 clear_tv(&var1);
2690 lp->ll_tv = &lp->ll_di->di_tv;
2692 else
2695 * Get the number and item for the only or first index of the List.
2697 if (empty1)
2698 lp->ll_n1 = 0;
2699 else
2701 lp->ll_n1 = get_tv_number(&var1); /* is number or string */
2702 clear_tv(&var1);
2704 lp->ll_dict = NULL;
2705 lp->ll_list = lp->ll_tv->vval.v_list;
2706 lp->ll_li = list_find(lp->ll_list, lp->ll_n1);
2707 if (lp->ll_li == NULL)
2709 if (lp->ll_n1 < 0)
2711 lp->ll_n1 = 0;
2712 lp->ll_li = list_find(lp->ll_list, lp->ll_n1);
2715 if (lp->ll_li == NULL)
2717 if (lp->ll_range && !lp->ll_empty2)
2718 clear_tv(&var2);
2719 return NULL;
2723 * May need to find the item or absolute index for the second
2724 * index of a range.
2725 * When no index given: "lp->ll_empty2" is TRUE.
2726 * Otherwise "lp->ll_n2" is set to the second index.
2728 if (lp->ll_range && !lp->ll_empty2)
2730 lp->ll_n2 = get_tv_number(&var2); /* is number or string */
2731 clear_tv(&var2);
2732 if (lp->ll_n2 < 0)
2734 ni = list_find(lp->ll_list, lp->ll_n2);
2735 if (ni == NULL)
2736 return NULL;
2737 lp->ll_n2 = list_idx_of_item(lp->ll_list, ni);
2740 /* Check that lp->ll_n2 isn't before lp->ll_n1. */
2741 if (lp->ll_n1 < 0)
2742 lp->ll_n1 = list_idx_of_item(lp->ll_list, lp->ll_li);
2743 if (lp->ll_n2 < lp->ll_n1)
2744 return NULL;
2747 lp->ll_tv = &lp->ll_li->li_tv;
2751 return p;
2755 * Clear lval "lp" that was filled by get_lval().
2757 static void
2758 clear_lval(lp)
2759 lval_T *lp;
2761 vim_free(lp->ll_exp_name);
2762 vim_free(lp->ll_newkey);
2766 * Set a variable that was parsed by get_lval() to "rettv".
2767 * "endp" points to just after the parsed name.
2768 * "op" is NULL, "+" for "+=", "-" for "-=", "." for ".=" or "=" for "=".
2770 static void
2771 set_var_lval(lp, endp, rettv, copy, op)
2772 lval_T *lp;
2773 char_u *endp;
2774 typval_T *rettv;
2775 int copy;
2776 char_u *op;
2778 int cc;
2779 listitem_T *ri;
2780 dictitem_T *di;
2782 if (lp->ll_tv == NULL)
2784 if (!check_changedtick(lp->ll_name))
2786 cc = *endp;
2787 *endp = NUL;
2788 if (op != NULL && *op != '=')
2790 typval_T tv;
2792 /* handle +=, -= and .= */
2793 if (get_var_tv(lp->ll_name, (int)STRLEN(lp->ll_name),
2794 &tv, TRUE) == OK)
2796 if (tv_op(&tv, rettv, op) == OK)
2797 set_var(lp->ll_name, &tv, FALSE);
2798 clear_tv(&tv);
2801 else
2802 set_var(lp->ll_name, rettv, copy);
2803 *endp = cc;
2806 else if (tv_check_lock(lp->ll_newkey == NULL
2807 ? lp->ll_tv->v_lock
2808 : lp->ll_tv->vval.v_dict->dv_lock, lp->ll_name))
2810 else if (lp->ll_range)
2813 * Assign the List values to the list items.
2815 for (ri = rettv->vval.v_list->lv_first; ri != NULL; )
2817 if (op != NULL && *op != '=')
2818 tv_op(&lp->ll_li->li_tv, &ri->li_tv, op);
2819 else
2821 clear_tv(&lp->ll_li->li_tv);
2822 copy_tv(&ri->li_tv, &lp->ll_li->li_tv);
2824 ri = ri->li_next;
2825 if (ri == NULL || (!lp->ll_empty2 && lp->ll_n2 == lp->ll_n1))
2826 break;
2827 if (lp->ll_li->li_next == NULL)
2829 /* Need to add an empty item. */
2830 if (list_append_number(lp->ll_list, 0) == FAIL)
2832 ri = NULL;
2833 break;
2836 lp->ll_li = lp->ll_li->li_next;
2837 ++lp->ll_n1;
2839 if (ri != NULL)
2840 EMSG(_("E710: List value has more items than target"));
2841 else if (lp->ll_empty2
2842 ? (lp->ll_li != NULL && lp->ll_li->li_next != NULL)
2843 : lp->ll_n1 != lp->ll_n2)
2844 EMSG(_("E711: List value has not enough items"));
2846 else
2849 * Assign to a List or Dictionary item.
2851 if (lp->ll_newkey != NULL)
2853 if (op != NULL && *op != '=')
2855 EMSG2(_(e_letwrong), op);
2856 return;
2859 /* Need to add an item to the Dictionary. */
2860 di = dictitem_alloc(lp->ll_newkey);
2861 if (di == NULL)
2862 return;
2863 if (dict_add(lp->ll_tv->vval.v_dict, di) == FAIL)
2865 vim_free(di);
2866 return;
2868 lp->ll_tv = &di->di_tv;
2870 else if (op != NULL && *op != '=')
2872 tv_op(lp->ll_tv, rettv, op);
2873 return;
2875 else
2876 clear_tv(lp->ll_tv);
2879 * Assign the value to the variable or list item.
2881 if (copy)
2882 copy_tv(rettv, lp->ll_tv);
2883 else
2885 *lp->ll_tv = *rettv;
2886 lp->ll_tv->v_lock = 0;
2887 init_tv(rettv);
2893 * Handle "tv1 += tv2", "tv1 -= tv2" and "tv1 .= tv2"
2894 * Returns OK or FAIL.
2896 static int
2897 tv_op(tv1, tv2, op)
2898 typval_T *tv1;
2899 typval_T *tv2;
2900 char_u *op;
2902 long n;
2903 char_u numbuf[NUMBUFLEN];
2904 char_u *s;
2906 /* Can't do anything with a Funcref or a Dict on the right. */
2907 if (tv2->v_type != VAR_FUNC && tv2->v_type != VAR_DICT)
2909 switch (tv1->v_type)
2911 case VAR_DICT:
2912 case VAR_FUNC:
2913 break;
2915 case VAR_LIST:
2916 if (*op != '+' || tv2->v_type != VAR_LIST)
2917 break;
2918 /* List += List */
2919 if (tv1->vval.v_list != NULL && tv2->vval.v_list != NULL)
2920 list_extend(tv1->vval.v_list, tv2->vval.v_list, NULL);
2921 return OK;
2923 case VAR_NUMBER:
2924 case VAR_STRING:
2925 if (tv2->v_type == VAR_LIST)
2926 break;
2927 if (*op == '+' || *op == '-')
2929 /* nr += nr or nr -= nr*/
2930 n = get_tv_number(tv1);
2931 #ifdef FEAT_FLOAT
2932 if (tv2->v_type == VAR_FLOAT)
2934 float_T f = n;
2936 if (*op == '+')
2937 f += tv2->vval.v_float;
2938 else
2939 f -= tv2->vval.v_float;
2940 clear_tv(tv1);
2941 tv1->v_type = VAR_FLOAT;
2942 tv1->vval.v_float = f;
2944 else
2945 #endif
2947 if (*op == '+')
2948 n += get_tv_number(tv2);
2949 else
2950 n -= get_tv_number(tv2);
2951 clear_tv(tv1);
2952 tv1->v_type = VAR_NUMBER;
2953 tv1->vval.v_number = n;
2956 else
2958 if (tv2->v_type == VAR_FLOAT)
2959 break;
2961 /* str .= str */
2962 s = get_tv_string(tv1);
2963 s = concat_str(s, get_tv_string_buf(tv2, numbuf));
2964 clear_tv(tv1);
2965 tv1->v_type = VAR_STRING;
2966 tv1->vval.v_string = s;
2968 return OK;
2970 #ifdef FEAT_FLOAT
2971 case VAR_FLOAT:
2973 float_T f;
2975 if (*op == '.' || (tv2->v_type != VAR_FLOAT
2976 && tv2->v_type != VAR_NUMBER
2977 && tv2->v_type != VAR_STRING))
2978 break;
2979 if (tv2->v_type == VAR_FLOAT)
2980 f = tv2->vval.v_float;
2981 else
2982 f = get_tv_number(tv2);
2983 if (*op == '+')
2984 tv1->vval.v_float += f;
2985 else
2986 tv1->vval.v_float -= f;
2988 return OK;
2989 #endif
2993 EMSG2(_(e_letwrong), op);
2994 return FAIL;
2998 * Add a watcher to a list.
3000 static void
3001 list_add_watch(l, lw)
3002 list_T *l;
3003 listwatch_T *lw;
3005 lw->lw_next = l->lv_watch;
3006 l->lv_watch = lw;
3010 * Remove a watcher from a list.
3011 * No warning when it isn't found...
3013 static void
3014 list_rem_watch(l, lwrem)
3015 list_T *l;
3016 listwatch_T *lwrem;
3018 listwatch_T *lw, **lwp;
3020 lwp = &l->lv_watch;
3021 for (lw = l->lv_watch; lw != NULL; lw = lw->lw_next)
3023 if (lw == lwrem)
3025 *lwp = lw->lw_next;
3026 break;
3028 lwp = &lw->lw_next;
3033 * Just before removing an item from a list: advance watchers to the next
3034 * item.
3036 static void
3037 list_fix_watch(l, item)
3038 list_T *l;
3039 listitem_T *item;
3041 listwatch_T *lw;
3043 for (lw = l->lv_watch; lw != NULL; lw = lw->lw_next)
3044 if (lw->lw_item == item)
3045 lw->lw_item = item->li_next;
3049 * Evaluate the expression used in a ":for var in expr" command.
3050 * "arg" points to "var".
3051 * Set "*errp" to TRUE for an error, FALSE otherwise;
3052 * Return a pointer that holds the info. Null when there is an error.
3054 void *
3055 eval_for_line(arg, errp, nextcmdp, skip)
3056 char_u *arg;
3057 int *errp;
3058 char_u **nextcmdp;
3059 int skip;
3061 forinfo_T *fi;
3062 char_u *expr;
3063 typval_T tv;
3064 list_T *l;
3066 *errp = TRUE; /* default: there is an error */
3068 fi = (forinfo_T *)alloc_clear(sizeof(forinfo_T));
3069 if (fi == NULL)
3070 return NULL;
3072 expr = skip_var_list(arg, &fi->fi_varcount, &fi->fi_semicolon);
3073 if (expr == NULL)
3074 return fi;
3076 expr = skipwhite(expr);
3077 if (expr[0] != 'i' || expr[1] != 'n' || !vim_iswhite(expr[2]))
3079 EMSG(_("E690: Missing \"in\" after :for"));
3080 return fi;
3083 if (skip)
3084 ++emsg_skip;
3085 if (eval0(skipwhite(expr + 2), &tv, nextcmdp, !skip) == OK)
3087 *errp = FALSE;
3088 if (!skip)
3090 l = tv.vval.v_list;
3091 if (tv.v_type != VAR_LIST || l == NULL)
3093 EMSG(_(e_listreq));
3094 clear_tv(&tv);
3096 else
3098 /* No need to increment the refcount, it's already set for the
3099 * list being used in "tv". */
3100 fi->fi_list = l;
3101 list_add_watch(l, &fi->fi_lw);
3102 fi->fi_lw.lw_item = l->lv_first;
3106 if (skip)
3107 --emsg_skip;
3109 return fi;
3113 * Use the first item in a ":for" list. Advance to the next.
3114 * Assign the values to the variable (list). "arg" points to the first one.
3115 * Return TRUE when a valid item was found, FALSE when at end of list or
3116 * something wrong.
3119 next_for_item(fi_void, arg)
3120 void *fi_void;
3121 char_u *arg;
3123 forinfo_T *fi = (forinfo_T *)fi_void;
3124 int result;
3125 listitem_T *item;
3127 item = fi->fi_lw.lw_item;
3128 if (item == NULL)
3129 result = FALSE;
3130 else
3132 fi->fi_lw.lw_item = item->li_next;
3133 result = (ex_let_vars(arg, &item->li_tv, TRUE,
3134 fi->fi_semicolon, fi->fi_varcount, NULL) == OK);
3136 return result;
3140 * Free the structure used to store info used by ":for".
3142 void
3143 free_for_info(fi_void)
3144 void *fi_void;
3146 forinfo_T *fi = (forinfo_T *)fi_void;
3148 if (fi != NULL && fi->fi_list != NULL)
3150 list_rem_watch(fi->fi_list, &fi->fi_lw);
3151 list_unref(fi->fi_list);
3153 vim_free(fi);
3156 #if defined(FEAT_CMDL_COMPL) || defined(PROTO)
3158 void
3159 set_context_for_expression(xp, arg, cmdidx)
3160 expand_T *xp;
3161 char_u *arg;
3162 cmdidx_T cmdidx;
3164 int got_eq = FALSE;
3165 int c;
3166 char_u *p;
3168 if (cmdidx == CMD_let)
3170 xp->xp_context = EXPAND_USER_VARS;
3171 if (vim_strpbrk(arg, (char_u *)"\"'+-*/%.=!?~|&$([<>,#") == NULL)
3173 /* ":let var1 var2 ...": find last space. */
3174 for (p = arg + STRLEN(arg); p >= arg; )
3176 xp->xp_pattern = p;
3177 mb_ptr_back(arg, p);
3178 if (vim_iswhite(*p))
3179 break;
3181 return;
3184 else
3185 xp->xp_context = cmdidx == CMD_call ? EXPAND_FUNCTIONS
3186 : EXPAND_EXPRESSION;
3187 while ((xp->xp_pattern = vim_strpbrk(arg,
3188 (char_u *)"\"'+-*/%.=!?~|&$([<>,#")) != NULL)
3190 c = *xp->xp_pattern;
3191 if (c == '&')
3193 c = xp->xp_pattern[1];
3194 if (c == '&')
3196 ++xp->xp_pattern;
3197 xp->xp_context = cmdidx != CMD_let || got_eq
3198 ? EXPAND_EXPRESSION : EXPAND_NOTHING;
3200 else if (c != ' ')
3202 xp->xp_context = EXPAND_SETTINGS;
3203 if ((c == 'l' || c == 'g') && xp->xp_pattern[2] == ':')
3204 xp->xp_pattern += 2;
3208 else if (c == '$')
3210 /* environment variable */
3211 xp->xp_context = EXPAND_ENV_VARS;
3213 else if (c == '=')
3215 got_eq = TRUE;
3216 xp->xp_context = EXPAND_EXPRESSION;
3218 else if (c == '<'
3219 && xp->xp_context == EXPAND_FUNCTIONS
3220 && vim_strchr(xp->xp_pattern, '(') == NULL)
3222 /* Function name can start with "<SNR>" */
3223 break;
3225 else if (cmdidx != CMD_let || got_eq)
3227 if (c == '"') /* string */
3229 while ((c = *++xp->xp_pattern) != NUL && c != '"')
3230 if (c == '\\' && xp->xp_pattern[1] != NUL)
3231 ++xp->xp_pattern;
3232 xp->xp_context = EXPAND_NOTHING;
3234 else if (c == '\'') /* literal string */
3236 /* Trick: '' is like stopping and starting a literal string. */
3237 while ((c = *++xp->xp_pattern) != NUL && c != '\'')
3238 /* skip */ ;
3239 xp->xp_context = EXPAND_NOTHING;
3241 else if (c == '|')
3243 if (xp->xp_pattern[1] == '|')
3245 ++xp->xp_pattern;
3246 xp->xp_context = EXPAND_EXPRESSION;
3248 else
3249 xp->xp_context = EXPAND_COMMANDS;
3251 else
3252 xp->xp_context = EXPAND_EXPRESSION;
3254 else
3255 /* Doesn't look like something valid, expand as an expression
3256 * anyway. */
3257 xp->xp_context = EXPAND_EXPRESSION;
3258 arg = xp->xp_pattern;
3259 if (*arg != NUL)
3260 while ((c = *++arg) != NUL && (c == ' ' || c == '\t'))
3261 /* skip */ ;
3263 xp->xp_pattern = arg;
3266 #endif /* FEAT_CMDL_COMPL */
3269 * ":1,25call func(arg1, arg2)" function call.
3271 void
3272 ex_call(eap)
3273 exarg_T *eap;
3275 char_u *arg = eap->arg;
3276 char_u *startarg;
3277 char_u *name;
3278 char_u *tofree;
3279 int len;
3280 typval_T rettv;
3281 linenr_T lnum;
3282 int doesrange;
3283 int failed = FALSE;
3284 funcdict_T fudi;
3286 tofree = trans_function_name(&arg, eap->skip, TFN_INT, &fudi);
3287 if (fudi.fd_newkey != NULL)
3289 /* Still need to give an error message for missing key. */
3290 EMSG2(_(e_dictkey), fudi.fd_newkey);
3291 vim_free(fudi.fd_newkey);
3293 if (tofree == NULL)
3294 return;
3296 /* Increase refcount on dictionary, it could get deleted when evaluating
3297 * the arguments. */
3298 if (fudi.fd_dict != NULL)
3299 ++fudi.fd_dict->dv_refcount;
3301 /* If it is the name of a variable of type VAR_FUNC use its contents. */
3302 len = (int)STRLEN(tofree);
3303 name = deref_func_name(tofree, &len);
3305 /* Skip white space to allow ":call func ()". Not good, but required for
3306 * backward compatibility. */
3307 startarg = skipwhite(arg);
3308 rettv.v_type = VAR_UNKNOWN; /* clear_tv() uses this */
3310 if (*startarg != '(')
3312 EMSG2(_("E107: Missing parentheses: %s"), eap->arg);
3313 goto end;
3317 * When skipping, evaluate the function once, to find the end of the
3318 * arguments.
3319 * When the function takes a range, this is discovered after the first
3320 * call, and the loop is broken.
3322 if (eap->skip)
3324 ++emsg_skip;
3325 lnum = eap->line2; /* do it once, also with an invalid range */
3327 else
3328 lnum = eap->line1;
3329 for ( ; lnum <= eap->line2; ++lnum)
3331 if (!eap->skip && eap->addr_count > 0)
3333 curwin->w_cursor.lnum = lnum;
3334 curwin->w_cursor.col = 0;
3336 arg = startarg;
3337 if (get_func_tv(name, (int)STRLEN(name), &rettv, &arg,
3338 eap->line1, eap->line2, &doesrange,
3339 !eap->skip, fudi.fd_dict) == FAIL)
3341 failed = TRUE;
3342 break;
3345 /* Handle a function returning a Funcref, Dictionary or List. */
3346 if (handle_subscript(&arg, &rettv, !eap->skip, TRUE) == FAIL)
3348 failed = TRUE;
3349 break;
3352 clear_tv(&rettv);
3353 if (doesrange || eap->skip)
3354 break;
3356 /* Stop when immediately aborting on error, or when an interrupt
3357 * occurred or an exception was thrown but not caught.
3358 * get_func_tv() returned OK, so that the check for trailing
3359 * characters below is executed. */
3360 if (aborting())
3361 break;
3363 if (eap->skip)
3364 --emsg_skip;
3366 if (!failed)
3368 /* Check for trailing illegal characters and a following command. */
3369 if (!ends_excmd(*arg))
3371 emsg_severe = TRUE;
3372 EMSG(_(e_trailing));
3374 else
3375 eap->nextcmd = check_nextcmd(arg);
3378 end:
3379 dict_unref(fudi.fd_dict);
3380 vim_free(tofree);
3384 * ":unlet[!] var1 ... " command.
3386 void
3387 ex_unlet(eap)
3388 exarg_T *eap;
3390 ex_unletlock(eap, eap->arg, 0);
3394 * ":lockvar" and ":unlockvar" commands
3396 void
3397 ex_lockvar(eap)
3398 exarg_T *eap;
3400 char_u *arg = eap->arg;
3401 int deep = 2;
3403 if (eap->forceit)
3404 deep = -1;
3405 else if (vim_isdigit(*arg))
3407 deep = getdigits(&arg);
3408 arg = skipwhite(arg);
3411 ex_unletlock(eap, arg, deep);
3415 * ":unlet", ":lockvar" and ":unlockvar" are quite similar.
3417 static void
3418 ex_unletlock(eap, argstart, deep)
3419 exarg_T *eap;
3420 char_u *argstart;
3421 int deep;
3423 char_u *arg = argstart;
3424 char_u *name_end;
3425 int error = FALSE;
3426 lval_T lv;
3430 /* Parse the name and find the end. */
3431 name_end = get_lval(arg, NULL, &lv, TRUE, eap->skip || error, FALSE,
3432 FNE_CHECK_START);
3433 if (lv.ll_name == NULL)
3434 error = TRUE; /* error but continue parsing */
3435 if (name_end == NULL || (!vim_iswhite(*name_end)
3436 && !ends_excmd(*name_end)))
3438 if (name_end != NULL)
3440 emsg_severe = TRUE;
3441 EMSG(_(e_trailing));
3443 if (!(eap->skip || error))
3444 clear_lval(&lv);
3445 break;
3448 if (!error && !eap->skip)
3450 if (eap->cmdidx == CMD_unlet)
3452 if (do_unlet_var(&lv, name_end, eap->forceit) == FAIL)
3453 error = TRUE;
3455 else
3457 if (do_lock_var(&lv, name_end, deep,
3458 eap->cmdidx == CMD_lockvar) == FAIL)
3459 error = TRUE;
3463 if (!eap->skip)
3464 clear_lval(&lv);
3466 arg = skipwhite(name_end);
3467 } while (!ends_excmd(*arg));
3469 eap->nextcmd = check_nextcmd(arg);
3472 static int
3473 do_unlet_var(lp, name_end, forceit)
3474 lval_T *lp;
3475 char_u *name_end;
3476 int forceit;
3478 int ret = OK;
3479 int cc;
3481 if (lp->ll_tv == NULL)
3483 cc = *name_end;
3484 *name_end = NUL;
3486 /* Normal name or expanded name. */
3487 if (check_changedtick(lp->ll_name))
3488 ret = FAIL;
3489 else if (do_unlet(lp->ll_name, forceit) == FAIL)
3490 ret = FAIL;
3491 *name_end = cc;
3493 else if (tv_check_lock(lp->ll_tv->v_lock, lp->ll_name))
3494 return FAIL;
3495 else if (lp->ll_range)
3497 listitem_T *li;
3499 /* Delete a range of List items. */
3500 while (lp->ll_li != NULL && (lp->ll_empty2 || lp->ll_n2 >= lp->ll_n1))
3502 li = lp->ll_li->li_next;
3503 listitem_remove(lp->ll_list, lp->ll_li);
3504 lp->ll_li = li;
3505 ++lp->ll_n1;
3508 else
3510 if (lp->ll_list != NULL)
3511 /* unlet a List item. */
3512 listitem_remove(lp->ll_list, lp->ll_li);
3513 else
3514 /* unlet a Dictionary item. */
3515 dictitem_remove(lp->ll_dict, lp->ll_di);
3518 return ret;
3522 * "unlet" a variable. Return OK if it existed, FAIL if not.
3523 * When "forceit" is TRUE don't complain if the variable doesn't exist.
3526 do_unlet(name, forceit)
3527 char_u *name;
3528 int forceit;
3530 hashtab_T *ht;
3531 hashitem_T *hi;
3532 char_u *varname;
3533 dictitem_T *di;
3535 ht = find_var_ht(name, &varname);
3536 if (ht != NULL && *varname != NUL)
3538 hi = hash_find(ht, varname);
3539 if (!HASHITEM_EMPTY(hi))
3541 di = HI2DI(hi);
3542 if (var_check_fixed(di->di_flags, name)
3543 || var_check_ro(di->di_flags, name))
3544 return FAIL;
3545 delete_var(ht, hi);
3546 return OK;
3549 if (forceit)
3550 return OK;
3551 EMSG2(_("E108: No such variable: \"%s\""), name);
3552 return FAIL;
3556 * Lock or unlock variable indicated by "lp".
3557 * "deep" is the levels to go (-1 for unlimited);
3558 * "lock" is TRUE for ":lockvar", FALSE for ":unlockvar".
3560 static int
3561 do_lock_var(lp, name_end, deep, lock)
3562 lval_T *lp;
3563 char_u *name_end;
3564 int deep;
3565 int lock;
3567 int ret = OK;
3568 int cc;
3569 dictitem_T *di;
3571 if (deep == 0) /* nothing to do */
3572 return OK;
3574 if (lp->ll_tv == NULL)
3576 cc = *name_end;
3577 *name_end = NUL;
3579 /* Normal name or expanded name. */
3580 if (check_changedtick(lp->ll_name))
3581 ret = FAIL;
3582 else
3584 di = find_var(lp->ll_name, NULL);
3585 if (di == NULL)
3586 ret = FAIL;
3587 else
3589 if (lock)
3590 di->di_flags |= DI_FLAGS_LOCK;
3591 else
3592 di->di_flags &= ~DI_FLAGS_LOCK;
3593 item_lock(&di->di_tv, deep, lock);
3596 *name_end = cc;
3598 else if (lp->ll_range)
3600 listitem_T *li = lp->ll_li;
3602 /* (un)lock a range of List items. */
3603 while (li != NULL && (lp->ll_empty2 || lp->ll_n2 >= lp->ll_n1))
3605 item_lock(&li->li_tv, deep, lock);
3606 li = li->li_next;
3607 ++lp->ll_n1;
3610 else if (lp->ll_list != NULL)
3611 /* (un)lock a List item. */
3612 item_lock(&lp->ll_li->li_tv, deep, lock);
3613 else
3614 /* un(lock) a Dictionary item. */
3615 item_lock(&lp->ll_di->di_tv, deep, lock);
3617 return ret;
3621 * Lock or unlock an item. "deep" is nr of levels to go.
3623 static void
3624 item_lock(tv, deep, lock)
3625 typval_T *tv;
3626 int deep;
3627 int lock;
3629 static int recurse = 0;
3630 list_T *l;
3631 listitem_T *li;
3632 dict_T *d;
3633 hashitem_T *hi;
3634 int todo;
3636 if (recurse >= DICT_MAXNEST)
3638 EMSG(_("E743: variable nested too deep for (un)lock"));
3639 return;
3641 if (deep == 0)
3642 return;
3643 ++recurse;
3645 /* lock/unlock the item itself */
3646 if (lock)
3647 tv->v_lock |= VAR_LOCKED;
3648 else
3649 tv->v_lock &= ~VAR_LOCKED;
3651 switch (tv->v_type)
3653 case VAR_LIST:
3654 if ((l = tv->vval.v_list) != NULL)
3656 if (lock)
3657 l->lv_lock |= VAR_LOCKED;
3658 else
3659 l->lv_lock &= ~VAR_LOCKED;
3660 if (deep < 0 || deep > 1)
3661 /* recursive: lock/unlock the items the List contains */
3662 for (li = l->lv_first; li != NULL; li = li->li_next)
3663 item_lock(&li->li_tv, deep - 1, lock);
3665 break;
3666 case VAR_DICT:
3667 if ((d = tv->vval.v_dict) != NULL)
3669 if (lock)
3670 d->dv_lock |= VAR_LOCKED;
3671 else
3672 d->dv_lock &= ~VAR_LOCKED;
3673 if (deep < 0 || deep > 1)
3675 /* recursive: lock/unlock the items the List contains */
3676 todo = (int)d->dv_hashtab.ht_used;
3677 for (hi = d->dv_hashtab.ht_array; todo > 0; ++hi)
3679 if (!HASHITEM_EMPTY(hi))
3681 --todo;
3682 item_lock(&HI2DI(hi)->di_tv, deep - 1, lock);
3688 --recurse;
3692 * Return TRUE if typeval "tv" is locked: Either that value is locked itself
3693 * or it refers to a List or Dictionary that is locked.
3695 static int
3696 tv_islocked(tv)
3697 typval_T *tv;
3699 return (tv->v_lock & VAR_LOCKED)
3700 || (tv->v_type == VAR_LIST
3701 && tv->vval.v_list != NULL
3702 && (tv->vval.v_list->lv_lock & VAR_LOCKED))
3703 || (tv->v_type == VAR_DICT
3704 && tv->vval.v_dict != NULL
3705 && (tv->vval.v_dict->dv_lock & VAR_LOCKED));
3708 #if (defined(FEAT_MENU) && defined(FEAT_MULTI_LANG)) || defined(PROTO)
3710 * Delete all "menutrans_" variables.
3712 void
3713 del_menutrans_vars()
3715 hashitem_T *hi;
3716 int todo;
3718 hash_lock(&globvarht);
3719 todo = (int)globvarht.ht_used;
3720 for (hi = globvarht.ht_array; todo > 0 && !got_int; ++hi)
3722 if (!HASHITEM_EMPTY(hi))
3724 --todo;
3725 if (STRNCMP(HI2DI(hi)->di_key, "menutrans_", 10) == 0)
3726 delete_var(&globvarht, hi);
3729 hash_unlock(&globvarht);
3731 #endif
3733 #if defined(FEAT_CMDL_COMPL) || defined(PROTO)
3736 * Local string buffer for the next two functions to store a variable name
3737 * with its prefix. Allocated in cat_prefix_varname(), freed later in
3738 * get_user_var_name().
3741 static char_u *cat_prefix_varname __ARGS((int prefix, char_u *name));
3743 static char_u *varnamebuf = NULL;
3744 static int varnamebuflen = 0;
3747 * Function to concatenate a prefix and a variable name.
3749 static char_u *
3750 cat_prefix_varname(prefix, name)
3751 int prefix;
3752 char_u *name;
3754 int len;
3756 len = (int)STRLEN(name) + 3;
3757 if (len > varnamebuflen)
3759 vim_free(varnamebuf);
3760 len += 10; /* some additional space */
3761 varnamebuf = alloc(len);
3762 if (varnamebuf == NULL)
3764 varnamebuflen = 0;
3765 return NULL;
3767 varnamebuflen = len;
3769 *varnamebuf = prefix;
3770 varnamebuf[1] = ':';
3771 STRCPY(varnamebuf + 2, name);
3772 return varnamebuf;
3776 * Function given to ExpandGeneric() to obtain the list of user defined
3777 * (global/buffer/window/built-in) variable names.
3779 /*ARGSUSED*/
3780 char_u *
3781 get_user_var_name(xp, idx)
3782 expand_T *xp;
3783 int idx;
3785 static long_u gdone;
3786 static long_u bdone;
3787 static long_u wdone;
3788 #ifdef FEAT_WINDOWS
3789 static long_u tdone;
3790 #endif
3791 static int vidx;
3792 static hashitem_T *hi;
3793 hashtab_T *ht;
3795 if (idx == 0)
3797 gdone = bdone = wdone = vidx = 0;
3798 #ifdef FEAT_WINDOWS
3799 tdone = 0;
3800 #endif
3803 /* Global variables */
3804 if (gdone < globvarht.ht_used)
3806 if (gdone++ == 0)
3807 hi = globvarht.ht_array;
3808 else
3809 ++hi;
3810 while (HASHITEM_EMPTY(hi))
3811 ++hi;
3812 if (STRNCMP("g:", xp->xp_pattern, 2) == 0)
3813 return cat_prefix_varname('g', hi->hi_key);
3814 return hi->hi_key;
3817 /* b: variables */
3818 ht = &curbuf->b_vars.dv_hashtab;
3819 if (bdone < ht->ht_used)
3821 if (bdone++ == 0)
3822 hi = ht->ht_array;
3823 else
3824 ++hi;
3825 while (HASHITEM_EMPTY(hi))
3826 ++hi;
3827 return cat_prefix_varname('b', hi->hi_key);
3829 if (bdone == ht->ht_used)
3831 ++bdone;
3832 return (char_u *)"b:changedtick";
3835 /* w: variables */
3836 ht = &curwin->w_vars.dv_hashtab;
3837 if (wdone < ht->ht_used)
3839 if (wdone++ == 0)
3840 hi = ht->ht_array;
3841 else
3842 ++hi;
3843 while (HASHITEM_EMPTY(hi))
3844 ++hi;
3845 return cat_prefix_varname('w', hi->hi_key);
3848 #ifdef FEAT_WINDOWS
3849 /* t: variables */
3850 ht = &curtab->tp_vars.dv_hashtab;
3851 if (tdone < ht->ht_used)
3853 if (tdone++ == 0)
3854 hi = ht->ht_array;
3855 else
3856 ++hi;
3857 while (HASHITEM_EMPTY(hi))
3858 ++hi;
3859 return cat_prefix_varname('t', hi->hi_key);
3861 #endif
3863 /* v: variables */
3864 if (vidx < VV_LEN)
3865 return cat_prefix_varname('v', (char_u *)vimvars[vidx++].vv_name);
3867 vim_free(varnamebuf);
3868 varnamebuf = NULL;
3869 varnamebuflen = 0;
3870 return NULL;
3873 #endif /* FEAT_CMDL_COMPL */
3876 * types for expressions.
3878 typedef enum
3880 TYPE_UNKNOWN = 0
3881 , TYPE_EQUAL /* == */
3882 , TYPE_NEQUAL /* != */
3883 , TYPE_GREATER /* > */
3884 , TYPE_GEQUAL /* >= */
3885 , TYPE_SMALLER /* < */
3886 , TYPE_SEQUAL /* <= */
3887 , TYPE_MATCH /* =~ */
3888 , TYPE_NOMATCH /* !~ */
3889 } exptype_T;
3892 * The "evaluate" argument: When FALSE, the argument is only parsed but not
3893 * executed. The function may return OK, but the rettv will be of type
3894 * VAR_UNKNOWN. The function still returns FAIL for a syntax error.
3898 * Handle zero level expression.
3899 * This calls eval1() and handles error message and nextcmd.
3900 * Put the result in "rettv" when returning OK and "evaluate" is TRUE.
3901 * Note: "rettv.v_lock" is not set.
3902 * Return OK or FAIL.
3904 static int
3905 eval0(arg, rettv, nextcmd, evaluate)
3906 char_u *arg;
3907 typval_T *rettv;
3908 char_u **nextcmd;
3909 int evaluate;
3911 int ret;
3912 char_u *p;
3914 p = skipwhite(arg);
3915 ret = eval1(&p, rettv, evaluate);
3916 if (ret == FAIL || !ends_excmd(*p))
3918 if (ret != FAIL)
3919 clear_tv(rettv);
3921 * Report the invalid expression unless the expression evaluation has
3922 * been cancelled due to an aborting error, an interrupt, or an
3923 * exception.
3925 if (!aborting())
3926 EMSG2(_(e_invexpr2), arg);
3927 ret = FAIL;
3929 if (nextcmd != NULL)
3930 *nextcmd = check_nextcmd(p);
3932 return ret;
3936 * Handle top level expression:
3937 * expr1 ? expr0 : expr0
3939 * "arg" must point to the first non-white of the expression.
3940 * "arg" is advanced to the next non-white after the recognized expression.
3942 * Note: "rettv.v_lock" is not set.
3944 * Return OK or FAIL.
3946 static int
3947 eval1(arg, rettv, evaluate)
3948 char_u **arg;
3949 typval_T *rettv;
3950 int evaluate;
3952 int result;
3953 typval_T var2;
3956 * Get the first variable.
3958 if (eval2(arg, rettv, evaluate) == FAIL)
3959 return FAIL;
3961 if ((*arg)[0] == '?')
3963 result = FALSE;
3964 if (evaluate)
3966 int error = FALSE;
3968 if (get_tv_number_chk(rettv, &error) != 0)
3969 result = TRUE;
3970 clear_tv(rettv);
3971 if (error)
3972 return FAIL;
3976 * Get the second variable.
3978 *arg = skipwhite(*arg + 1);
3979 if (eval1(arg, rettv, evaluate && result) == FAIL) /* recursive! */
3980 return FAIL;
3983 * Check for the ":".
3985 if ((*arg)[0] != ':')
3987 EMSG(_("E109: Missing ':' after '?'"));
3988 if (evaluate && result)
3989 clear_tv(rettv);
3990 return FAIL;
3994 * Get the third variable.
3996 *arg = skipwhite(*arg + 1);
3997 if (eval1(arg, &var2, evaluate && !result) == FAIL) /* recursive! */
3999 if (evaluate && result)
4000 clear_tv(rettv);
4001 return FAIL;
4003 if (evaluate && !result)
4004 *rettv = var2;
4007 return OK;
4011 * Handle first level expression:
4012 * expr2 || expr2 || expr2 logical OR
4014 * "arg" must point to the first non-white of the expression.
4015 * "arg" is advanced to the next non-white after the recognized expression.
4017 * Return OK or FAIL.
4019 static int
4020 eval2(arg, rettv, evaluate)
4021 char_u **arg;
4022 typval_T *rettv;
4023 int evaluate;
4025 typval_T var2;
4026 long result;
4027 int first;
4028 int error = FALSE;
4031 * Get the first variable.
4033 if (eval3(arg, rettv, evaluate) == FAIL)
4034 return FAIL;
4037 * Repeat until there is no following "||".
4039 first = TRUE;
4040 result = FALSE;
4041 while ((*arg)[0] == '|' && (*arg)[1] == '|')
4043 if (evaluate && first)
4045 if (get_tv_number_chk(rettv, &error) != 0)
4046 result = TRUE;
4047 clear_tv(rettv);
4048 if (error)
4049 return FAIL;
4050 first = FALSE;
4054 * Get the second variable.
4056 *arg = skipwhite(*arg + 2);
4057 if (eval3(arg, &var2, evaluate && !result) == FAIL)
4058 return FAIL;
4061 * Compute the result.
4063 if (evaluate && !result)
4065 if (get_tv_number_chk(&var2, &error) != 0)
4066 result = TRUE;
4067 clear_tv(&var2);
4068 if (error)
4069 return FAIL;
4071 if (evaluate)
4073 rettv->v_type = VAR_NUMBER;
4074 rettv->vval.v_number = result;
4078 return OK;
4082 * Handle second level expression:
4083 * expr3 && expr3 && expr3 logical AND
4085 * "arg" must point to the first non-white of the expression.
4086 * "arg" is advanced to the next non-white after the recognized expression.
4088 * Return OK or FAIL.
4090 static int
4091 eval3(arg, rettv, evaluate)
4092 char_u **arg;
4093 typval_T *rettv;
4094 int evaluate;
4096 typval_T var2;
4097 long result;
4098 int first;
4099 int error = FALSE;
4102 * Get the first variable.
4104 if (eval4(arg, rettv, evaluate) == FAIL)
4105 return FAIL;
4108 * Repeat until there is no following "&&".
4110 first = TRUE;
4111 result = TRUE;
4112 while ((*arg)[0] == '&' && (*arg)[1] == '&')
4114 if (evaluate && first)
4116 if (get_tv_number_chk(rettv, &error) == 0)
4117 result = FALSE;
4118 clear_tv(rettv);
4119 if (error)
4120 return FAIL;
4121 first = FALSE;
4125 * Get the second variable.
4127 *arg = skipwhite(*arg + 2);
4128 if (eval4(arg, &var2, evaluate && result) == FAIL)
4129 return FAIL;
4132 * Compute the result.
4134 if (evaluate && result)
4136 if (get_tv_number_chk(&var2, &error) == 0)
4137 result = FALSE;
4138 clear_tv(&var2);
4139 if (error)
4140 return FAIL;
4142 if (evaluate)
4144 rettv->v_type = VAR_NUMBER;
4145 rettv->vval.v_number = result;
4149 return OK;
4153 * Handle third level expression:
4154 * var1 == var2
4155 * var1 =~ var2
4156 * var1 != var2
4157 * var1 !~ var2
4158 * var1 > var2
4159 * var1 >= var2
4160 * var1 < var2
4161 * var1 <= var2
4162 * var1 is var2
4163 * var1 isnot var2
4165 * "arg" must point to the first non-white of the expression.
4166 * "arg" is advanced to the next non-white after the recognized expression.
4168 * Return OK or FAIL.
4170 static int
4171 eval4(arg, rettv, evaluate)
4172 char_u **arg;
4173 typval_T *rettv;
4174 int evaluate;
4176 typval_T var2;
4177 char_u *p;
4178 int i;
4179 exptype_T type = TYPE_UNKNOWN;
4180 int type_is = FALSE; /* TRUE for "is" and "isnot" */
4181 int len = 2;
4182 long n1, n2;
4183 char_u *s1, *s2;
4184 char_u buf1[NUMBUFLEN], buf2[NUMBUFLEN];
4185 regmatch_T regmatch;
4186 int ic;
4187 char_u *save_cpo;
4190 * Get the first variable.
4192 if (eval5(arg, rettv, evaluate) == FAIL)
4193 return FAIL;
4195 p = *arg;
4196 switch (p[0])
4198 case '=': if (p[1] == '=')
4199 type = TYPE_EQUAL;
4200 else if (p[1] == '~')
4201 type = TYPE_MATCH;
4202 break;
4203 case '!': if (p[1] == '=')
4204 type = TYPE_NEQUAL;
4205 else if (p[1] == '~')
4206 type = TYPE_NOMATCH;
4207 break;
4208 case '>': if (p[1] != '=')
4210 type = TYPE_GREATER;
4211 len = 1;
4213 else
4214 type = TYPE_GEQUAL;
4215 break;
4216 case '<': if (p[1] != '=')
4218 type = TYPE_SMALLER;
4219 len = 1;
4221 else
4222 type = TYPE_SEQUAL;
4223 break;
4224 case 'i': if (p[1] == 's')
4226 if (p[2] == 'n' && p[3] == 'o' && p[4] == 't')
4227 len = 5;
4228 if (!vim_isIDc(p[len]))
4230 type = len == 2 ? TYPE_EQUAL : TYPE_NEQUAL;
4231 type_is = TRUE;
4234 break;
4238 * If there is a comparative operator, use it.
4240 if (type != TYPE_UNKNOWN)
4242 /* extra question mark appended: ignore case */
4243 if (p[len] == '?')
4245 ic = TRUE;
4246 ++len;
4248 /* extra '#' appended: match case */
4249 else if (p[len] == '#')
4251 ic = FALSE;
4252 ++len;
4254 /* nothing appended: use 'ignorecase' */
4255 else
4256 ic = p_ic;
4259 * Get the second variable.
4261 *arg = skipwhite(p + len);
4262 if (eval5(arg, &var2, evaluate) == FAIL)
4264 clear_tv(rettv);
4265 return FAIL;
4268 if (evaluate)
4270 if (type_is && rettv->v_type != var2.v_type)
4272 /* For "is" a different type always means FALSE, for "notis"
4273 * it means TRUE. */
4274 n1 = (type == TYPE_NEQUAL);
4276 else if (rettv->v_type == VAR_LIST || var2.v_type == VAR_LIST)
4278 if (type_is)
4280 n1 = (rettv->v_type == var2.v_type
4281 && rettv->vval.v_list == var2.vval.v_list);
4282 if (type == TYPE_NEQUAL)
4283 n1 = !n1;
4285 else if (rettv->v_type != var2.v_type
4286 || (type != TYPE_EQUAL && type != TYPE_NEQUAL))
4288 if (rettv->v_type != var2.v_type)
4289 EMSG(_("E691: Can only compare List with List"));
4290 else
4291 EMSG(_("E692: Invalid operation for Lists"));
4292 clear_tv(rettv);
4293 clear_tv(&var2);
4294 return FAIL;
4296 else
4298 /* Compare two Lists for being equal or unequal. */
4299 n1 = list_equal(rettv->vval.v_list, var2.vval.v_list, ic);
4300 if (type == TYPE_NEQUAL)
4301 n1 = !n1;
4305 else if (rettv->v_type == VAR_DICT || var2.v_type == VAR_DICT)
4307 if (type_is)
4309 n1 = (rettv->v_type == var2.v_type
4310 && rettv->vval.v_dict == var2.vval.v_dict);
4311 if (type == TYPE_NEQUAL)
4312 n1 = !n1;
4314 else if (rettv->v_type != var2.v_type
4315 || (type != TYPE_EQUAL && type != TYPE_NEQUAL))
4317 if (rettv->v_type != var2.v_type)
4318 EMSG(_("E735: Can only compare Dictionary with Dictionary"));
4319 else
4320 EMSG(_("E736: Invalid operation for Dictionary"));
4321 clear_tv(rettv);
4322 clear_tv(&var2);
4323 return FAIL;
4325 else
4327 /* Compare two Dictionaries for being equal or unequal. */
4328 n1 = dict_equal(rettv->vval.v_dict, var2.vval.v_dict, ic);
4329 if (type == TYPE_NEQUAL)
4330 n1 = !n1;
4334 else if (rettv->v_type == VAR_FUNC || var2.v_type == VAR_FUNC)
4336 if (rettv->v_type != var2.v_type
4337 || (type != TYPE_EQUAL && type != TYPE_NEQUAL))
4339 if (rettv->v_type != var2.v_type)
4340 EMSG(_("E693: Can only compare Funcref with Funcref"));
4341 else
4342 EMSG(_("E694: Invalid operation for Funcrefs"));
4343 clear_tv(rettv);
4344 clear_tv(&var2);
4345 return FAIL;
4347 else
4349 /* Compare two Funcrefs for being equal or unequal. */
4350 if (rettv->vval.v_string == NULL
4351 || var2.vval.v_string == NULL)
4352 n1 = FALSE;
4353 else
4354 n1 = STRCMP(rettv->vval.v_string,
4355 var2.vval.v_string) == 0;
4356 if (type == TYPE_NEQUAL)
4357 n1 = !n1;
4361 #ifdef FEAT_FLOAT
4363 * If one of the two variables is a float, compare as a float.
4364 * When using "=~" or "!~", always compare as string.
4366 else if ((rettv->v_type == VAR_FLOAT || var2.v_type == VAR_FLOAT)
4367 && type != TYPE_MATCH && type != TYPE_NOMATCH)
4369 float_T f1, f2;
4371 if (rettv->v_type == VAR_FLOAT)
4372 f1 = rettv->vval.v_float;
4373 else
4374 f1 = get_tv_number(rettv);
4375 if (var2.v_type == VAR_FLOAT)
4376 f2 = var2.vval.v_float;
4377 else
4378 f2 = get_tv_number(&var2);
4379 n1 = FALSE;
4380 switch (type)
4382 case TYPE_EQUAL: n1 = (f1 == f2); break;
4383 case TYPE_NEQUAL: n1 = (f1 != f2); break;
4384 case TYPE_GREATER: n1 = (f1 > f2); break;
4385 case TYPE_GEQUAL: n1 = (f1 >= f2); break;
4386 case TYPE_SMALLER: n1 = (f1 < f2); break;
4387 case TYPE_SEQUAL: n1 = (f1 <= f2); break;
4388 case TYPE_UNKNOWN:
4389 case TYPE_MATCH:
4390 case TYPE_NOMATCH: break; /* avoid gcc warning */
4393 #endif
4396 * If one of the two variables is a number, compare as a number.
4397 * When using "=~" or "!~", always compare as string.
4399 else if ((rettv->v_type == VAR_NUMBER || var2.v_type == VAR_NUMBER)
4400 && type != TYPE_MATCH && type != TYPE_NOMATCH)
4402 n1 = get_tv_number(rettv);
4403 n2 = get_tv_number(&var2);
4404 switch (type)
4406 case TYPE_EQUAL: n1 = (n1 == n2); break;
4407 case TYPE_NEQUAL: n1 = (n1 != n2); break;
4408 case TYPE_GREATER: n1 = (n1 > n2); break;
4409 case TYPE_GEQUAL: n1 = (n1 >= n2); break;
4410 case TYPE_SMALLER: n1 = (n1 < n2); break;
4411 case TYPE_SEQUAL: n1 = (n1 <= n2); break;
4412 case TYPE_UNKNOWN:
4413 case TYPE_MATCH:
4414 case TYPE_NOMATCH: break; /* avoid gcc warning */
4417 else
4419 s1 = get_tv_string_buf(rettv, buf1);
4420 s2 = get_tv_string_buf(&var2, buf2);
4421 if (type != TYPE_MATCH && type != TYPE_NOMATCH)
4422 i = ic ? MB_STRICMP(s1, s2) : STRCMP(s1, s2);
4423 else
4424 i = 0;
4425 n1 = FALSE;
4426 switch (type)
4428 case TYPE_EQUAL: n1 = (i == 0); break;
4429 case TYPE_NEQUAL: n1 = (i != 0); break;
4430 case TYPE_GREATER: n1 = (i > 0); break;
4431 case TYPE_GEQUAL: n1 = (i >= 0); break;
4432 case TYPE_SMALLER: n1 = (i < 0); break;
4433 case TYPE_SEQUAL: n1 = (i <= 0); break;
4435 case TYPE_MATCH:
4436 case TYPE_NOMATCH:
4437 /* avoid 'l' flag in 'cpoptions' */
4438 save_cpo = p_cpo;
4439 p_cpo = (char_u *)"";
4440 regmatch.regprog = vim_regcomp(s2,
4441 RE_MAGIC + RE_STRING);
4442 regmatch.rm_ic = ic;
4443 if (regmatch.regprog != NULL)
4445 n1 = vim_regexec_nl(&regmatch, s1, (colnr_T)0);
4446 vim_free(regmatch.regprog);
4447 if (type == TYPE_NOMATCH)
4448 n1 = !n1;
4450 p_cpo = save_cpo;
4451 break;
4453 case TYPE_UNKNOWN: break; /* avoid gcc warning */
4456 clear_tv(rettv);
4457 clear_tv(&var2);
4458 rettv->v_type = VAR_NUMBER;
4459 rettv->vval.v_number = n1;
4463 return OK;
4467 * Handle fourth level expression:
4468 * + number addition
4469 * - number subtraction
4470 * . string concatenation
4472 * "arg" must point to the first non-white of the expression.
4473 * "arg" is advanced to the next non-white after the recognized expression.
4475 * Return OK or FAIL.
4477 static int
4478 eval5(arg, rettv, evaluate)
4479 char_u **arg;
4480 typval_T *rettv;
4481 int evaluate;
4483 typval_T var2;
4484 typval_T var3;
4485 int op;
4486 long n1, n2;
4487 #ifdef FEAT_FLOAT
4488 float_T f1 = 0, f2 = 0;
4489 #endif
4490 char_u *s1, *s2;
4491 char_u buf1[NUMBUFLEN], buf2[NUMBUFLEN];
4492 char_u *p;
4495 * Get the first variable.
4497 if (eval6(arg, rettv, evaluate, FALSE) == FAIL)
4498 return FAIL;
4501 * Repeat computing, until no '+', '-' or '.' is following.
4503 for (;;)
4505 op = **arg;
4506 if (op != '+' && op != '-' && op != '.')
4507 break;
4509 if ((op != '+' || rettv->v_type != VAR_LIST)
4510 #ifdef FEAT_FLOAT
4511 && (op == '.' || rettv->v_type != VAR_FLOAT)
4512 #endif
4515 /* For "list + ...", an illegal use of the first operand as
4516 * a number cannot be determined before evaluating the 2nd
4517 * operand: if this is also a list, all is ok.
4518 * For "something . ...", "something - ..." or "non-list + ...",
4519 * we know that the first operand needs to be a string or number
4520 * without evaluating the 2nd operand. So check before to avoid
4521 * side effects after an error. */
4522 if (evaluate && get_tv_string_chk(rettv) == NULL)
4524 clear_tv(rettv);
4525 return FAIL;
4530 * Get the second variable.
4532 *arg = skipwhite(*arg + 1);
4533 if (eval6(arg, &var2, evaluate, op == '.') == FAIL)
4535 clear_tv(rettv);
4536 return FAIL;
4539 if (evaluate)
4542 * Compute the result.
4544 if (op == '.')
4546 s1 = get_tv_string_buf(rettv, buf1); /* already checked */
4547 s2 = get_tv_string_buf_chk(&var2, buf2);
4548 if (s2 == NULL) /* type error ? */
4550 clear_tv(rettv);
4551 clear_tv(&var2);
4552 return FAIL;
4554 p = concat_str(s1, s2);
4555 clear_tv(rettv);
4556 rettv->v_type = VAR_STRING;
4557 rettv->vval.v_string = p;
4559 else if (op == '+' && rettv->v_type == VAR_LIST
4560 && var2.v_type == VAR_LIST)
4562 /* concatenate Lists */
4563 if (list_concat(rettv->vval.v_list, var2.vval.v_list,
4564 &var3) == FAIL)
4566 clear_tv(rettv);
4567 clear_tv(&var2);
4568 return FAIL;
4570 clear_tv(rettv);
4571 *rettv = var3;
4573 else
4575 int error = FALSE;
4577 #ifdef FEAT_FLOAT
4578 if (rettv->v_type == VAR_FLOAT)
4580 f1 = rettv->vval.v_float;
4581 n1 = 0;
4583 else
4584 #endif
4586 n1 = get_tv_number_chk(rettv, &error);
4587 if (error)
4589 /* This can only happen for "list + non-list". For
4590 * "non-list + ..." or "something - ...", we returned
4591 * before evaluating the 2nd operand. */
4592 clear_tv(rettv);
4593 return FAIL;
4595 #ifdef FEAT_FLOAT
4596 if (var2.v_type == VAR_FLOAT)
4597 f1 = n1;
4598 #endif
4600 #ifdef FEAT_FLOAT
4601 if (var2.v_type == VAR_FLOAT)
4603 f2 = var2.vval.v_float;
4604 n2 = 0;
4606 else
4607 #endif
4609 n2 = get_tv_number_chk(&var2, &error);
4610 if (error)
4612 clear_tv(rettv);
4613 clear_tv(&var2);
4614 return FAIL;
4616 #ifdef FEAT_FLOAT
4617 if (rettv->v_type == VAR_FLOAT)
4618 f2 = n2;
4619 #endif
4621 clear_tv(rettv);
4623 #ifdef FEAT_FLOAT
4624 /* If there is a float on either side the result is a float. */
4625 if (rettv->v_type == VAR_FLOAT || var2.v_type == VAR_FLOAT)
4627 if (op == '+')
4628 f1 = f1 + f2;
4629 else
4630 f1 = f1 - f2;
4631 rettv->v_type = VAR_FLOAT;
4632 rettv->vval.v_float = f1;
4634 else
4635 #endif
4637 if (op == '+')
4638 n1 = n1 + n2;
4639 else
4640 n1 = n1 - n2;
4641 rettv->v_type = VAR_NUMBER;
4642 rettv->vval.v_number = n1;
4645 clear_tv(&var2);
4648 return OK;
4652 * Handle fifth level expression:
4653 * * number multiplication
4654 * / number division
4655 * % number modulo
4657 * "arg" must point to the first non-white of the expression.
4658 * "arg" is advanced to the next non-white after the recognized expression.
4660 * Return OK or FAIL.
4662 static int
4663 eval6(arg, rettv, evaluate, want_string)
4664 char_u **arg;
4665 typval_T *rettv;
4666 int evaluate;
4667 int want_string; /* after "." operator */
4669 typval_T var2;
4670 int op;
4671 long n1, n2;
4672 #ifdef FEAT_FLOAT
4673 int use_float = FALSE;
4674 float_T f1 = 0, f2;
4675 #endif
4676 int error = FALSE;
4679 * Get the first variable.
4681 if (eval7(arg, rettv, evaluate, want_string) == FAIL)
4682 return FAIL;
4685 * Repeat computing, until no '*', '/' or '%' is following.
4687 for (;;)
4689 op = **arg;
4690 if (op != '*' && op != '/' && op != '%')
4691 break;
4693 if (evaluate)
4695 #ifdef FEAT_FLOAT
4696 if (rettv->v_type == VAR_FLOAT)
4698 f1 = rettv->vval.v_float;
4699 use_float = TRUE;
4700 n1 = 0;
4702 else
4703 #endif
4704 n1 = get_tv_number_chk(rettv, &error);
4705 clear_tv(rettv);
4706 if (error)
4707 return FAIL;
4709 else
4710 n1 = 0;
4713 * Get the second variable.
4715 *arg = skipwhite(*arg + 1);
4716 if (eval7(arg, &var2, evaluate, FALSE) == FAIL)
4717 return FAIL;
4719 if (evaluate)
4721 #ifdef FEAT_FLOAT
4722 if (var2.v_type == VAR_FLOAT)
4724 if (!use_float)
4726 f1 = n1;
4727 use_float = TRUE;
4729 f2 = var2.vval.v_float;
4730 n2 = 0;
4732 else
4733 #endif
4735 n2 = get_tv_number_chk(&var2, &error);
4736 clear_tv(&var2);
4737 if (error)
4738 return FAIL;
4739 #ifdef FEAT_FLOAT
4740 if (use_float)
4741 f2 = n2;
4742 #endif
4746 * Compute the result.
4747 * When either side is a float the result is a float.
4749 #ifdef FEAT_FLOAT
4750 if (use_float)
4752 if (op == '*')
4753 f1 = f1 * f2;
4754 else if (op == '/')
4756 /* We rely on the floating point library to handle divide
4757 * by zero to result in "inf" and not a crash. */
4758 f1 = f1 / f2;
4760 else
4762 EMSG(_("E804: Cannot use '%' with Float"));
4763 return FAIL;
4765 rettv->v_type = VAR_FLOAT;
4766 rettv->vval.v_float = f1;
4768 else
4769 #endif
4771 if (op == '*')
4772 n1 = n1 * n2;
4773 else if (op == '/')
4775 if (n2 == 0) /* give an error message? */
4777 if (n1 == 0)
4778 n1 = -0x7fffffffL - 1L; /* similar to NaN */
4779 else if (n1 < 0)
4780 n1 = -0x7fffffffL;
4781 else
4782 n1 = 0x7fffffffL;
4784 else
4785 n1 = n1 / n2;
4787 else
4789 if (n2 == 0) /* give an error message? */
4790 n1 = 0;
4791 else
4792 n1 = n1 % n2;
4794 rettv->v_type = VAR_NUMBER;
4795 rettv->vval.v_number = n1;
4800 return OK;
4804 * Handle sixth level expression:
4805 * number number constant
4806 * "string" string constant
4807 * 'string' literal string constant
4808 * &option-name option value
4809 * @r register contents
4810 * identifier variable value
4811 * function() function call
4812 * $VAR environment variable
4813 * (expression) nested expression
4814 * [expr, expr] List
4815 * {key: val, key: val} Dictionary
4817 * Also handle:
4818 * ! in front logical NOT
4819 * - in front unary minus
4820 * + in front unary plus (ignored)
4821 * trailing [] subscript in String or List
4822 * trailing .name entry in Dictionary
4824 * "arg" must point to the first non-white of the expression.
4825 * "arg" is advanced to the next non-white after the recognized expression.
4827 * Return OK or FAIL.
4829 static int
4830 eval7(arg, rettv, evaluate, want_string)
4831 char_u **arg;
4832 typval_T *rettv;
4833 int evaluate;
4834 int want_string; /* after "." operator */
4836 long n;
4837 int len;
4838 char_u *s;
4839 char_u *start_leader, *end_leader;
4840 int ret = OK;
4841 char_u *alias;
4844 * Initialise variable so that clear_tv() can't mistake this for a
4845 * string and free a string that isn't there.
4847 rettv->v_type = VAR_UNKNOWN;
4850 * Skip '!' and '-' characters. They are handled later.
4852 start_leader = *arg;
4853 while (**arg == '!' || **arg == '-' || **arg == '+')
4854 *arg = skipwhite(*arg + 1);
4855 end_leader = *arg;
4857 switch (**arg)
4860 * Number constant.
4862 case '0':
4863 case '1':
4864 case '2':
4865 case '3':
4866 case '4':
4867 case '5':
4868 case '6':
4869 case '7':
4870 case '8':
4871 case '9':
4873 #ifdef FEAT_FLOAT
4874 char_u *p = skipdigits(*arg + 1);
4875 int get_float = FALSE;
4877 /* We accept a float when the format matches
4878 * "[0-9]\+\.[0-9]\+\([eE][+-]\?[0-9]\+\)\?". This is very
4879 * strict to avoid backwards compatibility problems.
4880 * Don't look for a float after the "." operator, so that
4881 * ":let vers = 1.2.3" doesn't fail. */
4882 if (!want_string && p[0] == '.' && vim_isdigit(p[1]))
4884 get_float = TRUE;
4885 p = skipdigits(p + 2);
4886 if (*p == 'e' || *p == 'E')
4888 ++p;
4889 if (*p == '-' || *p == '+')
4890 ++p;
4891 if (!vim_isdigit(*p))
4892 get_float = FALSE;
4893 else
4894 p = skipdigits(p + 1);
4896 if (ASCII_ISALPHA(*p) || *p == '.')
4897 get_float = FALSE;
4899 if (get_float)
4901 float_T f;
4903 *arg += string2float(*arg, &f);
4904 if (evaluate)
4906 rettv->v_type = VAR_FLOAT;
4907 rettv->vval.v_float = f;
4910 else
4911 #endif
4913 vim_str2nr(*arg, NULL, &len, TRUE, TRUE, &n, NULL);
4914 *arg += len;
4915 if (evaluate)
4917 rettv->v_type = VAR_NUMBER;
4918 rettv->vval.v_number = n;
4921 break;
4925 * String constant: "string".
4927 case '"': ret = get_string_tv(arg, rettv, evaluate);
4928 break;
4931 * Literal string constant: 'str''ing'.
4933 case '\'': ret = get_lit_string_tv(arg, rettv, evaluate);
4934 break;
4937 * List: [expr, expr]
4939 case '[': ret = get_list_tv(arg, rettv, evaluate);
4940 break;
4943 * Dictionary: {key: val, key: val}
4945 case '{': ret = get_dict_tv(arg, rettv, evaluate);
4946 break;
4949 * Option value: &name
4951 case '&': ret = get_option_tv(arg, rettv, evaluate);
4952 break;
4955 * Environment variable: $VAR.
4957 case '$': ret = get_env_tv(arg, rettv, evaluate);
4958 break;
4961 * Register contents: @r.
4963 case '@': ++*arg;
4964 if (evaluate)
4966 rettv->v_type = VAR_STRING;
4967 rettv->vval.v_string = get_reg_contents(**arg, TRUE, TRUE);
4969 if (**arg != NUL)
4970 ++*arg;
4971 break;
4974 * nested expression: (expression).
4976 case '(': *arg = skipwhite(*arg + 1);
4977 ret = eval1(arg, rettv, evaluate); /* recursive! */
4978 if (**arg == ')')
4979 ++*arg;
4980 else if (ret == OK)
4982 EMSG(_("E110: Missing ')'"));
4983 clear_tv(rettv);
4984 ret = FAIL;
4986 break;
4988 default: ret = NOTDONE;
4989 break;
4992 if (ret == NOTDONE)
4995 * Must be a variable or function name.
4996 * Can also be a curly-braces kind of name: {expr}.
4998 s = *arg;
4999 len = get_name_len(arg, &alias, evaluate, TRUE);
5000 if (alias != NULL)
5001 s = alias;
5003 if (len <= 0)
5004 ret = FAIL;
5005 else
5007 if (**arg == '(') /* recursive! */
5009 /* If "s" is the name of a variable of type VAR_FUNC
5010 * use its contents. */
5011 s = deref_func_name(s, &len);
5013 /* Invoke the function. */
5014 ret = get_func_tv(s, len, rettv, arg,
5015 curwin->w_cursor.lnum, curwin->w_cursor.lnum,
5016 &len, evaluate, NULL);
5017 /* Stop the expression evaluation when immediately
5018 * aborting on error, or when an interrupt occurred or
5019 * an exception was thrown but not caught. */
5020 if (aborting())
5022 if (ret == OK)
5023 clear_tv(rettv);
5024 ret = FAIL;
5027 else if (evaluate)
5028 ret = get_var_tv(s, len, rettv, TRUE);
5029 else
5030 ret = OK;
5033 if (alias != NULL)
5034 vim_free(alias);
5037 *arg = skipwhite(*arg);
5039 /* Handle following '[', '(' and '.' for expr[expr], expr.name,
5040 * expr(expr). */
5041 if (ret == OK)
5042 ret = handle_subscript(arg, rettv, evaluate, TRUE);
5045 * Apply logical NOT and unary '-', from right to left, ignore '+'.
5047 if (ret == OK && evaluate && end_leader > start_leader)
5049 int error = FALSE;
5050 int val = 0;
5051 #ifdef FEAT_FLOAT
5052 float_T f = 0.0;
5054 if (rettv->v_type == VAR_FLOAT)
5055 f = rettv->vval.v_float;
5056 else
5057 #endif
5058 val = get_tv_number_chk(rettv, &error);
5059 if (error)
5061 clear_tv(rettv);
5062 ret = FAIL;
5064 else
5066 while (end_leader > start_leader)
5068 --end_leader;
5069 if (*end_leader == '!')
5071 #ifdef FEAT_FLOAT
5072 if (rettv->v_type == VAR_FLOAT)
5073 f = !f;
5074 else
5075 #endif
5076 val = !val;
5078 else if (*end_leader == '-')
5080 #ifdef FEAT_FLOAT
5081 if (rettv->v_type == VAR_FLOAT)
5082 f = -f;
5083 else
5084 #endif
5085 val = -val;
5088 #ifdef FEAT_FLOAT
5089 if (rettv->v_type == VAR_FLOAT)
5091 clear_tv(rettv);
5092 rettv->vval.v_float = f;
5094 else
5095 #endif
5097 clear_tv(rettv);
5098 rettv->v_type = VAR_NUMBER;
5099 rettv->vval.v_number = val;
5104 return ret;
5108 * Evaluate an "[expr]" or "[expr:expr]" index. Also "dict.key".
5109 * "*arg" points to the '[' or '.'.
5110 * Returns FAIL or OK. "*arg" is advanced to after the ']'.
5112 static int
5113 eval_index(arg, rettv, evaluate, verbose)
5114 char_u **arg;
5115 typval_T *rettv;
5116 int evaluate;
5117 int verbose; /* give error messages */
5119 int empty1 = FALSE, empty2 = FALSE;
5120 typval_T var1, var2;
5121 long n1, n2 = 0;
5122 long len = -1;
5123 int range = FALSE;
5124 char_u *s;
5125 char_u *key = NULL;
5127 if (rettv->v_type == VAR_FUNC
5128 #ifdef FEAT_FLOAT
5129 || rettv->v_type == VAR_FLOAT
5130 #endif
5133 if (verbose)
5134 EMSG(_("E695: Cannot index a Funcref"));
5135 return FAIL;
5138 if (**arg == '.')
5141 * dict.name
5143 key = *arg + 1;
5144 for (len = 0; ASCII_ISALNUM(key[len]) || key[len] == '_'; ++len)
5146 if (len == 0)
5147 return FAIL;
5148 *arg = skipwhite(key + len);
5150 else
5153 * something[idx]
5155 * Get the (first) variable from inside the [].
5157 *arg = skipwhite(*arg + 1);
5158 if (**arg == ':')
5159 empty1 = TRUE;
5160 else if (eval1(arg, &var1, evaluate) == FAIL) /* recursive! */
5161 return FAIL;
5162 else if (evaluate && get_tv_string_chk(&var1) == NULL)
5164 /* not a number or string */
5165 clear_tv(&var1);
5166 return FAIL;
5170 * Get the second variable from inside the [:].
5172 if (**arg == ':')
5174 range = TRUE;
5175 *arg = skipwhite(*arg + 1);
5176 if (**arg == ']')
5177 empty2 = TRUE;
5178 else if (eval1(arg, &var2, evaluate) == FAIL) /* recursive! */
5180 if (!empty1)
5181 clear_tv(&var1);
5182 return FAIL;
5184 else if (evaluate && get_tv_string_chk(&var2) == NULL)
5186 /* not a number or string */
5187 if (!empty1)
5188 clear_tv(&var1);
5189 clear_tv(&var2);
5190 return FAIL;
5194 /* Check for the ']'. */
5195 if (**arg != ']')
5197 if (verbose)
5198 EMSG(_(e_missbrac));
5199 clear_tv(&var1);
5200 if (range)
5201 clear_tv(&var2);
5202 return FAIL;
5204 *arg = skipwhite(*arg + 1); /* skip the ']' */
5207 if (evaluate)
5209 n1 = 0;
5210 if (!empty1 && rettv->v_type != VAR_DICT)
5212 n1 = get_tv_number(&var1);
5213 clear_tv(&var1);
5215 if (range)
5217 if (empty2)
5218 n2 = -1;
5219 else
5221 n2 = get_tv_number(&var2);
5222 clear_tv(&var2);
5226 switch (rettv->v_type)
5228 case VAR_NUMBER:
5229 case VAR_STRING:
5230 s = get_tv_string(rettv);
5231 len = (long)STRLEN(s);
5232 if (range)
5234 /* The resulting variable is a substring. If the indexes
5235 * are out of range the result is empty. */
5236 if (n1 < 0)
5238 n1 = len + n1;
5239 if (n1 < 0)
5240 n1 = 0;
5242 if (n2 < 0)
5243 n2 = len + n2;
5244 else if (n2 >= len)
5245 n2 = len;
5246 if (n1 >= len || n2 < 0 || n1 > n2)
5247 s = NULL;
5248 else
5249 s = vim_strnsave(s + n1, (int)(n2 - n1 + 1));
5251 else
5253 /* The resulting variable is a string of a single
5254 * character. If the index is too big or negative the
5255 * result is empty. */
5256 if (n1 >= len || n1 < 0)
5257 s = NULL;
5258 else
5259 s = vim_strnsave(s + n1, 1);
5261 clear_tv(rettv);
5262 rettv->v_type = VAR_STRING;
5263 rettv->vval.v_string = s;
5264 break;
5266 case VAR_LIST:
5267 len = list_len(rettv->vval.v_list);
5268 if (n1 < 0)
5269 n1 = len + n1;
5270 if (!empty1 && (n1 < 0 || n1 >= len))
5272 /* For a range we allow invalid values and return an empty
5273 * list. A list index out of range is an error. */
5274 if (!range)
5276 if (verbose)
5277 EMSGN(_(e_listidx), n1);
5278 return FAIL;
5280 n1 = len;
5282 if (range)
5284 list_T *l;
5285 listitem_T *item;
5287 if (n2 < 0)
5288 n2 = len + n2;
5289 else if (n2 >= len)
5290 n2 = len - 1;
5291 if (!empty2 && (n2 < 0 || n2 + 1 < n1))
5292 n2 = -1;
5293 l = list_alloc();
5294 if (l == NULL)
5295 return FAIL;
5296 for (item = list_find(rettv->vval.v_list, n1);
5297 n1 <= n2; ++n1)
5299 if (list_append_tv(l, &item->li_tv) == FAIL)
5301 list_free(l, TRUE);
5302 return FAIL;
5304 item = item->li_next;
5306 clear_tv(rettv);
5307 rettv->v_type = VAR_LIST;
5308 rettv->vval.v_list = l;
5309 ++l->lv_refcount;
5311 else
5313 copy_tv(&list_find(rettv->vval.v_list, n1)->li_tv, &var1);
5314 clear_tv(rettv);
5315 *rettv = var1;
5317 break;
5319 case VAR_DICT:
5320 if (range)
5322 if (verbose)
5323 EMSG(_(e_dictrange));
5324 if (len == -1)
5325 clear_tv(&var1);
5326 return FAIL;
5329 dictitem_T *item;
5331 if (len == -1)
5333 key = get_tv_string(&var1);
5334 if (*key == NUL)
5336 if (verbose)
5337 EMSG(_(e_emptykey));
5338 clear_tv(&var1);
5339 return FAIL;
5343 item = dict_find(rettv->vval.v_dict, key, (int)len);
5345 if (item == NULL && verbose)
5346 EMSG2(_(e_dictkey), key);
5347 if (len == -1)
5348 clear_tv(&var1);
5349 if (item == NULL)
5350 return FAIL;
5352 copy_tv(&item->di_tv, &var1);
5353 clear_tv(rettv);
5354 *rettv = var1;
5356 break;
5360 return OK;
5364 * Get an option value.
5365 * "arg" points to the '&' or '+' before the option name.
5366 * "arg" is advanced to character after the option name.
5367 * Return OK or FAIL.
5369 static int
5370 get_option_tv(arg, rettv, evaluate)
5371 char_u **arg;
5372 typval_T *rettv; /* when NULL, only check if option exists */
5373 int evaluate;
5375 char_u *option_end;
5376 long numval;
5377 char_u *stringval;
5378 int opt_type;
5379 int c;
5380 int working = (**arg == '+'); /* has("+option") */
5381 int ret = OK;
5382 int opt_flags;
5385 * Isolate the option name and find its value.
5387 option_end = find_option_end(arg, &opt_flags);
5388 if (option_end == NULL)
5390 if (rettv != NULL)
5391 EMSG2(_("E112: Option name missing: %s"), *arg);
5392 return FAIL;
5395 if (!evaluate)
5397 *arg = option_end;
5398 return OK;
5401 c = *option_end;
5402 *option_end = NUL;
5403 opt_type = get_option_value(*arg, &numval,
5404 rettv == NULL ? NULL : &stringval, opt_flags);
5406 if (opt_type == -3) /* invalid name */
5408 if (rettv != NULL)
5409 EMSG2(_("E113: Unknown option: %s"), *arg);
5410 ret = FAIL;
5412 else if (rettv != NULL)
5414 if (opt_type == -2) /* hidden string option */
5416 rettv->v_type = VAR_STRING;
5417 rettv->vval.v_string = NULL;
5419 else if (opt_type == -1) /* hidden number option */
5421 rettv->v_type = VAR_NUMBER;
5422 rettv->vval.v_number = 0;
5424 else if (opt_type == 1) /* number option */
5426 rettv->v_type = VAR_NUMBER;
5427 rettv->vval.v_number = numval;
5429 else /* string option */
5431 rettv->v_type = VAR_STRING;
5432 rettv->vval.v_string = stringval;
5435 else if (working && (opt_type == -2 || opt_type == -1))
5436 ret = FAIL;
5438 *option_end = c; /* put back for error messages */
5439 *arg = option_end;
5441 return ret;
5445 * Allocate a variable for a string constant.
5446 * Return OK or FAIL.
5448 static int
5449 get_string_tv(arg, rettv, evaluate)
5450 char_u **arg;
5451 typval_T *rettv;
5452 int evaluate;
5454 char_u *p;
5455 char_u *name;
5456 int extra = 0;
5459 * Find the end of the string, skipping backslashed characters.
5461 for (p = *arg + 1; *p != NUL && *p != '"'; mb_ptr_adv(p))
5463 if (*p == '\\' && p[1] != NUL)
5465 ++p;
5466 /* A "\<x>" form occupies at least 4 characters, and produces up
5467 * to 6 characters: reserve space for 2 extra */
5468 if (*p == '<')
5469 extra += 2;
5473 if (*p != '"')
5475 EMSG2(_("E114: Missing quote: %s"), *arg);
5476 return FAIL;
5479 /* If only parsing, set *arg and return here */
5480 if (!evaluate)
5482 *arg = p + 1;
5483 return OK;
5487 * Copy the string into allocated memory, handling backslashed
5488 * characters.
5490 name = alloc((unsigned)(p - *arg + extra));
5491 if (name == NULL)
5492 return FAIL;
5493 rettv->v_type = VAR_STRING;
5494 rettv->vval.v_string = name;
5496 for (p = *arg + 1; *p != NUL && *p != '"'; )
5498 if (*p == '\\')
5500 switch (*++p)
5502 case 'b': *name++ = BS; ++p; break;
5503 case 'e': *name++ = ESC; ++p; break;
5504 case 'f': *name++ = FF; ++p; break;
5505 case 'n': *name++ = NL; ++p; break;
5506 case 'r': *name++ = CAR; ++p; break;
5507 case 't': *name++ = TAB; ++p; break;
5509 case 'X': /* hex: "\x1", "\x12" */
5510 case 'x':
5511 case 'u': /* Unicode: "\u0023" */
5512 case 'U':
5513 if (vim_isxdigit(p[1]))
5515 int n, nr;
5516 int c = toupper(*p);
5518 if (c == 'X')
5519 n = 2;
5520 else
5521 n = 4;
5522 nr = 0;
5523 while (--n >= 0 && vim_isxdigit(p[1]))
5525 ++p;
5526 nr = (nr << 4) + hex2nr(*p);
5528 ++p;
5529 #ifdef FEAT_MBYTE
5530 /* For "\u" store the number according to
5531 * 'encoding'. */
5532 if (c != 'X')
5533 name += (*mb_char2bytes)(nr, name);
5534 else
5535 #endif
5536 *name++ = nr;
5538 break;
5540 /* octal: "\1", "\12", "\123" */
5541 case '0':
5542 case '1':
5543 case '2':
5544 case '3':
5545 case '4':
5546 case '5':
5547 case '6':
5548 case '7': *name = *p++ - '0';
5549 if (*p >= '0' && *p <= '7')
5551 *name = (*name << 3) + *p++ - '0';
5552 if (*p >= '0' && *p <= '7')
5553 *name = (*name << 3) + *p++ - '0';
5555 ++name;
5556 break;
5558 /* Special key, e.g.: "\<C-W>" */
5559 case '<': extra = trans_special(&p, name, TRUE);
5560 if (extra != 0)
5562 name += extra;
5563 break;
5565 /* FALLTHROUGH */
5567 default: MB_COPY_CHAR(p, name);
5568 break;
5571 else
5572 MB_COPY_CHAR(p, name);
5575 *name = NUL;
5576 *arg = p + 1;
5578 return OK;
5582 * Allocate a variable for a 'str''ing' constant.
5583 * Return OK or FAIL.
5585 static int
5586 get_lit_string_tv(arg, rettv, evaluate)
5587 char_u **arg;
5588 typval_T *rettv;
5589 int evaluate;
5591 char_u *p;
5592 char_u *str;
5593 int reduce = 0;
5596 * Find the end of the string, skipping ''.
5598 for (p = *arg + 1; *p != NUL; mb_ptr_adv(p))
5600 if (*p == '\'')
5602 if (p[1] != '\'')
5603 break;
5604 ++reduce;
5605 ++p;
5609 if (*p != '\'')
5611 EMSG2(_("E115: Missing quote: %s"), *arg);
5612 return FAIL;
5615 /* If only parsing return after setting "*arg" */
5616 if (!evaluate)
5618 *arg = p + 1;
5619 return OK;
5623 * Copy the string into allocated memory, handling '' to ' reduction.
5625 str = alloc((unsigned)((p - *arg) - reduce));
5626 if (str == NULL)
5627 return FAIL;
5628 rettv->v_type = VAR_STRING;
5629 rettv->vval.v_string = str;
5631 for (p = *arg + 1; *p != NUL; )
5633 if (*p == '\'')
5635 if (p[1] != '\'')
5636 break;
5637 ++p;
5639 MB_COPY_CHAR(p, str);
5641 *str = NUL;
5642 *arg = p + 1;
5644 return OK;
5648 * Allocate a variable for a List and fill it from "*arg".
5649 * Return OK or FAIL.
5651 static int
5652 get_list_tv(arg, rettv, evaluate)
5653 char_u **arg;
5654 typval_T *rettv;
5655 int evaluate;
5657 list_T *l = NULL;
5658 typval_T tv;
5659 listitem_T *item;
5661 if (evaluate)
5663 l = list_alloc();
5664 if (l == NULL)
5665 return FAIL;
5668 *arg = skipwhite(*arg + 1);
5669 while (**arg != ']' && **arg != NUL)
5671 if (eval1(arg, &tv, evaluate) == FAIL) /* recursive! */
5672 goto failret;
5673 if (evaluate)
5675 item = listitem_alloc();
5676 if (item != NULL)
5678 item->li_tv = tv;
5679 item->li_tv.v_lock = 0;
5680 list_append(l, item);
5682 else
5683 clear_tv(&tv);
5686 if (**arg == ']')
5687 break;
5688 if (**arg != ',')
5690 EMSG2(_("E696: Missing comma in List: %s"), *arg);
5691 goto failret;
5693 *arg = skipwhite(*arg + 1);
5696 if (**arg != ']')
5698 EMSG2(_("E697: Missing end of List ']': %s"), *arg);
5699 failret:
5700 if (evaluate)
5701 list_free(l, TRUE);
5702 return FAIL;
5705 *arg = skipwhite(*arg + 1);
5706 if (evaluate)
5708 rettv->v_type = VAR_LIST;
5709 rettv->vval.v_list = l;
5710 ++l->lv_refcount;
5713 return OK;
5717 * Allocate an empty header for a list.
5718 * Caller should take care of the reference count.
5720 list_T *
5721 list_alloc()
5723 list_T *l;
5725 l = (list_T *)alloc_clear(sizeof(list_T));
5726 if (l != NULL)
5728 /* Prepend the list to the list of lists for garbage collection. */
5729 if (first_list != NULL)
5730 first_list->lv_used_prev = l;
5731 l->lv_used_prev = NULL;
5732 l->lv_used_next = first_list;
5733 first_list = l;
5735 return l;
5739 * Allocate an empty list for a return value.
5740 * Returns OK or FAIL.
5742 static int
5743 rettv_list_alloc(rettv)
5744 typval_T *rettv;
5746 list_T *l = list_alloc();
5748 if (l == NULL)
5749 return FAIL;
5751 rettv->vval.v_list = l;
5752 rettv->v_type = VAR_LIST;
5753 ++l->lv_refcount;
5754 return OK;
5758 * Unreference a list: decrement the reference count and free it when it
5759 * becomes zero.
5761 void
5762 list_unref(l)
5763 list_T *l;
5765 if (l != NULL && --l->lv_refcount <= 0)
5766 list_free(l, TRUE);
5770 * Free a list, including all items it points to.
5771 * Ignores the reference count.
5773 void
5774 list_free(l, recurse)
5775 list_T *l;
5776 int recurse; /* Free Lists and Dictionaries recursively. */
5778 listitem_T *item;
5780 /* Remove the list from the list of lists for garbage collection. */
5781 if (l->lv_used_prev == NULL)
5782 first_list = l->lv_used_next;
5783 else
5784 l->lv_used_prev->lv_used_next = l->lv_used_next;
5785 if (l->lv_used_next != NULL)
5786 l->lv_used_next->lv_used_prev = l->lv_used_prev;
5788 for (item = l->lv_first; item != NULL; item = l->lv_first)
5790 /* Remove the item before deleting it. */
5791 l->lv_first = item->li_next;
5792 if (recurse || (item->li_tv.v_type != VAR_LIST
5793 && item->li_tv.v_type != VAR_DICT))
5794 clear_tv(&item->li_tv);
5795 vim_free(item);
5797 vim_free(l);
5801 * Allocate a list item.
5803 static listitem_T *
5804 listitem_alloc()
5806 return (listitem_T *)alloc(sizeof(listitem_T));
5810 * Free a list item. Also clears the value. Does not notify watchers.
5812 static void
5813 listitem_free(item)
5814 listitem_T *item;
5816 clear_tv(&item->li_tv);
5817 vim_free(item);
5821 * Remove a list item from a List and free it. Also clears the value.
5823 static void
5824 listitem_remove(l, item)
5825 list_T *l;
5826 listitem_T *item;
5828 list_remove(l, item, item);
5829 listitem_free(item);
5833 * Get the number of items in a list.
5835 static long
5836 list_len(l)
5837 list_T *l;
5839 if (l == NULL)
5840 return 0L;
5841 return l->lv_len;
5845 * Return TRUE when two lists have exactly the same values.
5847 static int
5848 list_equal(l1, l2, ic)
5849 list_T *l1;
5850 list_T *l2;
5851 int ic; /* ignore case for strings */
5853 listitem_T *item1, *item2;
5855 if (l1 == NULL || l2 == NULL)
5856 return FALSE;
5857 if (l1 == l2)
5858 return TRUE;
5859 if (list_len(l1) != list_len(l2))
5860 return FALSE;
5862 for (item1 = l1->lv_first, item2 = l2->lv_first;
5863 item1 != NULL && item2 != NULL;
5864 item1 = item1->li_next, item2 = item2->li_next)
5865 if (!tv_equal(&item1->li_tv, &item2->li_tv, ic))
5866 return FALSE;
5867 return item1 == NULL && item2 == NULL;
5870 #if defined(FEAT_PYTHON) || defined(PROTO)
5872 * Return the dictitem that an entry in a hashtable points to.
5874 dictitem_T *
5875 dict_lookup(hi)
5876 hashitem_T *hi;
5878 return HI2DI(hi);
5880 #endif
5883 * Return TRUE when two dictionaries have exactly the same key/values.
5885 static int
5886 dict_equal(d1, d2, ic)
5887 dict_T *d1;
5888 dict_T *d2;
5889 int ic; /* ignore case for strings */
5891 hashitem_T *hi;
5892 dictitem_T *item2;
5893 int todo;
5895 if (d1 == NULL || d2 == NULL)
5896 return FALSE;
5897 if (d1 == d2)
5898 return TRUE;
5899 if (dict_len(d1) != dict_len(d2))
5900 return FALSE;
5902 todo = (int)d1->dv_hashtab.ht_used;
5903 for (hi = d1->dv_hashtab.ht_array; todo > 0; ++hi)
5905 if (!HASHITEM_EMPTY(hi))
5907 item2 = dict_find(d2, hi->hi_key, -1);
5908 if (item2 == NULL)
5909 return FALSE;
5910 if (!tv_equal(&HI2DI(hi)->di_tv, &item2->di_tv, ic))
5911 return FALSE;
5912 --todo;
5915 return TRUE;
5919 * Return TRUE if "tv1" and "tv2" have the same value.
5920 * Compares the items just like "==" would compare them, but strings and
5921 * numbers are different. Floats and numbers are also different.
5923 static int
5924 tv_equal(tv1, tv2, ic)
5925 typval_T *tv1;
5926 typval_T *tv2;
5927 int ic; /* ignore case */
5929 char_u buf1[NUMBUFLEN], buf2[NUMBUFLEN];
5930 char_u *s1, *s2;
5931 static int recursive = 0; /* cach recursive loops */
5932 int r;
5934 if (tv1->v_type != tv2->v_type)
5935 return FALSE;
5936 /* Catch lists and dicts that have an endless loop by limiting
5937 * recursiveness to 1000. We guess they are equal then. */
5938 if (recursive >= 1000)
5939 return TRUE;
5941 switch (tv1->v_type)
5943 case VAR_LIST:
5944 ++recursive;
5945 r = list_equal(tv1->vval.v_list, tv2->vval.v_list, ic);
5946 --recursive;
5947 return r;
5949 case VAR_DICT:
5950 ++recursive;
5951 r = dict_equal(tv1->vval.v_dict, tv2->vval.v_dict, ic);
5952 --recursive;
5953 return r;
5955 case VAR_FUNC:
5956 return (tv1->vval.v_string != NULL
5957 && tv2->vval.v_string != NULL
5958 && STRCMP(tv1->vval.v_string, tv2->vval.v_string) == 0);
5960 case VAR_NUMBER:
5961 return tv1->vval.v_number == tv2->vval.v_number;
5963 #ifdef FEAT_FLOAT
5964 case VAR_FLOAT:
5965 return tv1->vval.v_float == tv2->vval.v_float;
5966 #endif
5968 case VAR_STRING:
5969 s1 = get_tv_string_buf(tv1, buf1);
5970 s2 = get_tv_string_buf(tv2, buf2);
5971 return ((ic ? MB_STRICMP(s1, s2) : STRCMP(s1, s2)) == 0);
5974 EMSG2(_(e_intern2), "tv_equal()");
5975 return TRUE;
5979 * Locate item with index "n" in list "l" and return it.
5980 * A negative index is counted from the end; -1 is the last item.
5981 * Returns NULL when "n" is out of range.
5983 static listitem_T *
5984 list_find(l, n)
5985 list_T *l;
5986 long n;
5988 listitem_T *item;
5989 long idx;
5991 if (l == NULL)
5992 return NULL;
5994 /* Negative index is relative to the end. */
5995 if (n < 0)
5996 n = l->lv_len + n;
5998 /* Check for index out of range. */
5999 if (n < 0 || n >= l->lv_len)
6000 return NULL;
6002 /* When there is a cached index may start search from there. */
6003 if (l->lv_idx_item != NULL)
6005 if (n < l->lv_idx / 2)
6007 /* closest to the start of the list */
6008 item = l->lv_first;
6009 idx = 0;
6011 else if (n > (l->lv_idx + l->lv_len) / 2)
6013 /* closest to the end of the list */
6014 item = l->lv_last;
6015 idx = l->lv_len - 1;
6017 else
6019 /* closest to the cached index */
6020 item = l->lv_idx_item;
6021 idx = l->lv_idx;
6024 else
6026 if (n < l->lv_len / 2)
6028 /* closest to the start of the list */
6029 item = l->lv_first;
6030 idx = 0;
6032 else
6034 /* closest to the end of the list */
6035 item = l->lv_last;
6036 idx = l->lv_len - 1;
6040 while (n > idx)
6042 /* search forward */
6043 item = item->li_next;
6044 ++idx;
6046 while (n < idx)
6048 /* search backward */
6049 item = item->li_prev;
6050 --idx;
6053 /* cache the used index */
6054 l->lv_idx = idx;
6055 l->lv_idx_item = item;
6057 return item;
6061 * Get list item "l[idx]" as a number.
6063 static long
6064 list_find_nr(l, idx, errorp)
6065 list_T *l;
6066 long idx;
6067 int *errorp; /* set to TRUE when something wrong */
6069 listitem_T *li;
6071 li = list_find(l, idx);
6072 if (li == NULL)
6074 if (errorp != NULL)
6075 *errorp = TRUE;
6076 return -1L;
6078 return get_tv_number_chk(&li->li_tv, errorp);
6082 * Get list item "l[idx - 1]" as a string. Returns NULL for failure.
6084 char_u *
6085 list_find_str(l, idx)
6086 list_T *l;
6087 long idx;
6089 listitem_T *li;
6091 li = list_find(l, idx - 1);
6092 if (li == NULL)
6094 EMSGN(_(e_listidx), idx);
6095 return NULL;
6097 return get_tv_string(&li->li_tv);
6101 * Locate "item" list "l" and return its index.
6102 * Returns -1 when "item" is not in the list.
6104 static long
6105 list_idx_of_item(l, item)
6106 list_T *l;
6107 listitem_T *item;
6109 long idx = 0;
6110 listitem_T *li;
6112 if (l == NULL)
6113 return -1;
6114 idx = 0;
6115 for (li = l->lv_first; li != NULL && li != item; li = li->li_next)
6116 ++idx;
6117 if (li == NULL)
6118 return -1;
6119 return idx;
6123 * Append item "item" to the end of list "l".
6125 static void
6126 list_append(l, item)
6127 list_T *l;
6128 listitem_T *item;
6130 if (l->lv_last == NULL)
6132 /* empty list */
6133 l->lv_first = item;
6134 l->lv_last = item;
6135 item->li_prev = NULL;
6137 else
6139 l->lv_last->li_next = item;
6140 item->li_prev = l->lv_last;
6141 l->lv_last = item;
6143 ++l->lv_len;
6144 item->li_next = NULL;
6148 * Append typval_T "tv" to the end of list "l".
6149 * Return FAIL when out of memory.
6151 static int
6152 list_append_tv(l, tv)
6153 list_T *l;
6154 typval_T *tv;
6156 listitem_T *li = listitem_alloc();
6158 if (li == NULL)
6159 return FAIL;
6160 copy_tv(tv, &li->li_tv);
6161 list_append(l, li);
6162 return OK;
6166 * Add a dictionary to a list. Used by getqflist().
6167 * Return FAIL when out of memory.
6170 list_append_dict(list, dict)
6171 list_T *list;
6172 dict_T *dict;
6174 listitem_T *li = listitem_alloc();
6176 if (li == NULL)
6177 return FAIL;
6178 li->li_tv.v_type = VAR_DICT;
6179 li->li_tv.v_lock = 0;
6180 li->li_tv.vval.v_dict = dict;
6181 list_append(list, li);
6182 ++dict->dv_refcount;
6183 return OK;
6187 * Make a copy of "str" and append it as an item to list "l".
6188 * When "len" >= 0 use "str[len]".
6189 * Returns FAIL when out of memory.
6192 list_append_string(l, str, len)
6193 list_T *l;
6194 char_u *str;
6195 int len;
6197 listitem_T *li = listitem_alloc();
6199 if (li == NULL)
6200 return FAIL;
6201 list_append(l, li);
6202 li->li_tv.v_type = VAR_STRING;
6203 li->li_tv.v_lock = 0;
6204 if (str == NULL)
6205 li->li_tv.vval.v_string = NULL;
6206 else if ((li->li_tv.vval.v_string = (len >= 0 ? vim_strnsave(str, len)
6207 : vim_strsave(str))) == NULL)
6208 return FAIL;
6209 return OK;
6213 * Append "n" to list "l".
6214 * Returns FAIL when out of memory.
6216 static int
6217 list_append_number(l, n)
6218 list_T *l;
6219 varnumber_T n;
6221 listitem_T *li;
6223 li = listitem_alloc();
6224 if (li == NULL)
6225 return FAIL;
6226 li->li_tv.v_type = VAR_NUMBER;
6227 li->li_tv.v_lock = 0;
6228 li->li_tv.vval.v_number = n;
6229 list_append(l, li);
6230 return OK;
6234 * Insert typval_T "tv" in list "l" before "item".
6235 * If "item" is NULL append at the end.
6236 * Return FAIL when out of memory.
6238 static int
6239 list_insert_tv(l, tv, item)
6240 list_T *l;
6241 typval_T *tv;
6242 listitem_T *item;
6244 listitem_T *ni = listitem_alloc();
6246 if (ni == NULL)
6247 return FAIL;
6248 copy_tv(tv, &ni->li_tv);
6249 if (item == NULL)
6250 /* Append new item at end of list. */
6251 list_append(l, ni);
6252 else
6254 /* Insert new item before existing item. */
6255 ni->li_prev = item->li_prev;
6256 ni->li_next = item;
6257 if (item->li_prev == NULL)
6259 l->lv_first = ni;
6260 ++l->lv_idx;
6262 else
6264 item->li_prev->li_next = ni;
6265 l->lv_idx_item = NULL;
6267 item->li_prev = ni;
6268 ++l->lv_len;
6270 return OK;
6274 * Extend "l1" with "l2".
6275 * If "bef" is NULL append at the end, otherwise insert before this item.
6276 * Returns FAIL when out of memory.
6278 static int
6279 list_extend(l1, l2, bef)
6280 list_T *l1;
6281 list_T *l2;
6282 listitem_T *bef;
6284 listitem_T *item;
6285 int todo = l2->lv_len;
6287 /* We also quit the loop when we have inserted the original item count of
6288 * the list, avoid a hang when we extend a list with itself. */
6289 for (item = l2->lv_first; item != NULL && --todo >= 0; item = item->li_next)
6290 if (list_insert_tv(l1, &item->li_tv, bef) == FAIL)
6291 return FAIL;
6292 return OK;
6296 * Concatenate lists "l1" and "l2" into a new list, stored in "tv".
6297 * Return FAIL when out of memory.
6299 static int
6300 list_concat(l1, l2, tv)
6301 list_T *l1;
6302 list_T *l2;
6303 typval_T *tv;
6305 list_T *l;
6307 if (l1 == NULL || l2 == NULL)
6308 return FAIL;
6310 /* make a copy of the first list. */
6311 l = list_copy(l1, FALSE, 0);
6312 if (l == NULL)
6313 return FAIL;
6314 tv->v_type = VAR_LIST;
6315 tv->vval.v_list = l;
6317 /* append all items from the second list */
6318 return list_extend(l, l2, NULL);
6322 * Make a copy of list "orig". Shallow if "deep" is FALSE.
6323 * The refcount of the new list is set to 1.
6324 * See item_copy() for "copyID".
6325 * Returns NULL when out of memory.
6327 static list_T *
6328 list_copy(orig, deep, copyID)
6329 list_T *orig;
6330 int deep;
6331 int copyID;
6333 list_T *copy;
6334 listitem_T *item;
6335 listitem_T *ni;
6337 if (orig == NULL)
6338 return NULL;
6340 copy = list_alloc();
6341 if (copy != NULL)
6343 if (copyID != 0)
6345 /* Do this before adding the items, because one of the items may
6346 * refer back to this list. */
6347 orig->lv_copyID = copyID;
6348 orig->lv_copylist = copy;
6350 for (item = orig->lv_first; item != NULL && !got_int;
6351 item = item->li_next)
6353 ni = listitem_alloc();
6354 if (ni == NULL)
6355 break;
6356 if (deep)
6358 if (item_copy(&item->li_tv, &ni->li_tv, deep, copyID) == FAIL)
6360 vim_free(ni);
6361 break;
6364 else
6365 copy_tv(&item->li_tv, &ni->li_tv);
6366 list_append(copy, ni);
6368 ++copy->lv_refcount;
6369 if (item != NULL)
6371 list_unref(copy);
6372 copy = NULL;
6376 return copy;
6380 * Remove items "item" to "item2" from list "l".
6381 * Does not free the listitem or the value!
6383 static void
6384 list_remove(l, item, item2)
6385 list_T *l;
6386 listitem_T *item;
6387 listitem_T *item2;
6389 listitem_T *ip;
6391 /* notify watchers */
6392 for (ip = item; ip != NULL; ip = ip->li_next)
6394 --l->lv_len;
6395 list_fix_watch(l, ip);
6396 if (ip == item2)
6397 break;
6400 if (item2->li_next == NULL)
6401 l->lv_last = item->li_prev;
6402 else
6403 item2->li_next->li_prev = item->li_prev;
6404 if (item->li_prev == NULL)
6405 l->lv_first = item2->li_next;
6406 else
6407 item->li_prev->li_next = item2->li_next;
6408 l->lv_idx_item = NULL;
6412 * Return an allocated string with the string representation of a list.
6413 * May return NULL.
6415 static char_u *
6416 list2string(tv, copyID)
6417 typval_T *tv;
6418 int copyID;
6420 garray_T ga;
6422 if (tv->vval.v_list == NULL)
6423 return NULL;
6424 ga_init2(&ga, (int)sizeof(char), 80);
6425 ga_append(&ga, '[');
6426 if (list_join(&ga, tv->vval.v_list, (char_u *)", ", FALSE, copyID) == FAIL)
6428 vim_free(ga.ga_data);
6429 return NULL;
6431 ga_append(&ga, ']');
6432 ga_append(&ga, NUL);
6433 return (char_u *)ga.ga_data;
6437 * Join list "l" into a string in "*gap", using separator "sep".
6438 * When "echo" is TRUE use String as echoed, otherwise as inside a List.
6439 * Return FAIL or OK.
6441 static int
6442 list_join(gap, l, sep, echo, copyID)
6443 garray_T *gap;
6444 list_T *l;
6445 char_u *sep;
6446 int echo;
6447 int copyID;
6449 int first = TRUE;
6450 char_u *tofree;
6451 char_u numbuf[NUMBUFLEN];
6452 listitem_T *item;
6453 char_u *s;
6455 for (item = l->lv_first; item != NULL && !got_int; item = item->li_next)
6457 if (first)
6458 first = FALSE;
6459 else
6460 ga_concat(gap, sep);
6462 if (echo)
6463 s = echo_string(&item->li_tv, &tofree, numbuf, copyID);
6464 else
6465 s = tv2string(&item->li_tv, &tofree, numbuf, copyID);
6466 if (s != NULL)
6467 ga_concat(gap, s);
6468 vim_free(tofree);
6469 if (s == NULL)
6470 return FAIL;
6472 return OK;
6476 * Garbage collection for lists and dictionaries.
6478 * We use reference counts to be able to free most items right away when they
6479 * are no longer used. But for composite items it's possible that it becomes
6480 * unused while the reference count is > 0: When there is a recursive
6481 * reference. Example:
6482 * :let l = [1, 2, 3]
6483 * :let d = {9: l}
6484 * :let l[1] = d
6486 * Since this is quite unusual we handle this with garbage collection: every
6487 * once in a while find out which lists and dicts are not referenced from any
6488 * variable.
6490 * Here is a good reference text about garbage collection (refers to Python
6491 * but it applies to all reference-counting mechanisms):
6492 * http://python.ca/nas/python/gc/
6496 * Do garbage collection for lists and dicts.
6497 * Return TRUE if some memory was freed.
6500 garbage_collect()
6502 dict_T *dd;
6503 list_T *ll;
6504 int copyID = ++current_copyID;
6505 buf_T *buf;
6506 win_T *wp;
6507 int i;
6508 funccall_T *fc;
6509 int did_free = FALSE;
6510 #ifdef FEAT_WINDOWS
6511 tabpage_T *tp;
6512 #endif
6514 /* Only do this once. */
6515 want_garbage_collect = FALSE;
6516 may_garbage_collect = FALSE;
6517 garbage_collect_at_exit = FALSE;
6520 * 1. Go through all accessible variables and mark all lists and dicts
6521 * with copyID.
6523 /* script-local variables */
6524 for (i = 1; i <= ga_scripts.ga_len; ++i)
6525 set_ref_in_ht(&SCRIPT_VARS(i), copyID);
6527 /* buffer-local variables */
6528 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
6529 set_ref_in_ht(&buf->b_vars.dv_hashtab, copyID);
6531 /* window-local variables */
6532 FOR_ALL_TAB_WINDOWS(tp, wp)
6533 set_ref_in_ht(&wp->w_vars.dv_hashtab, copyID);
6535 #ifdef FEAT_WINDOWS
6536 /* tabpage-local variables */
6537 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next)
6538 set_ref_in_ht(&tp->tp_vars.dv_hashtab, copyID);
6539 #endif
6541 /* global variables */
6542 set_ref_in_ht(&globvarht, copyID);
6544 /* function-local variables */
6545 for (fc = current_funccal; fc != NULL; fc = fc->caller)
6547 set_ref_in_ht(&fc->l_vars.dv_hashtab, copyID);
6548 set_ref_in_ht(&fc->l_avars.dv_hashtab, copyID);
6551 /* v: vars */
6552 set_ref_in_ht(&vimvarht, copyID);
6555 * 2. Go through the list of dicts and free items without the copyID.
6557 for (dd = first_dict; dd != NULL; )
6558 if (dd->dv_copyID != copyID)
6560 /* Free the Dictionary and ordinary items it contains, but don't
6561 * recurse into Lists and Dictionaries, they will be in the list
6562 * of dicts or list of lists. */
6563 dict_free(dd, FALSE);
6564 did_free = TRUE;
6566 /* restart, next dict may also have been freed */
6567 dd = first_dict;
6569 else
6570 dd = dd->dv_used_next;
6573 * 3. Go through the list of lists and free items without the copyID.
6574 * But don't free a list that has a watcher (used in a for loop), these
6575 * are not referenced anywhere.
6577 for (ll = first_list; ll != NULL; )
6578 if (ll->lv_copyID != copyID && ll->lv_watch == NULL)
6580 /* Free the List and ordinary items it contains, but don't recurse
6581 * into Lists and Dictionaries, they will be in the list of dicts
6582 * or list of lists. */
6583 list_free(ll, FALSE);
6584 did_free = TRUE;
6586 /* restart, next list may also have been freed */
6587 ll = first_list;
6589 else
6590 ll = ll->lv_used_next;
6592 return did_free;
6596 * Mark all lists and dicts referenced through hashtab "ht" with "copyID".
6598 static void
6599 set_ref_in_ht(ht, copyID)
6600 hashtab_T *ht;
6601 int copyID;
6603 int todo;
6604 hashitem_T *hi;
6606 todo = (int)ht->ht_used;
6607 for (hi = ht->ht_array; todo > 0; ++hi)
6608 if (!HASHITEM_EMPTY(hi))
6610 --todo;
6611 set_ref_in_item(&HI2DI(hi)->di_tv, copyID);
6616 * Mark all lists and dicts referenced through list "l" with "copyID".
6618 static void
6619 set_ref_in_list(l, copyID)
6620 list_T *l;
6621 int copyID;
6623 listitem_T *li;
6625 for (li = l->lv_first; li != NULL; li = li->li_next)
6626 set_ref_in_item(&li->li_tv, copyID);
6630 * Mark all lists and dicts referenced through typval "tv" with "copyID".
6632 static void
6633 set_ref_in_item(tv, copyID)
6634 typval_T *tv;
6635 int copyID;
6637 dict_T *dd;
6638 list_T *ll;
6640 switch (tv->v_type)
6642 case VAR_DICT:
6643 dd = tv->vval.v_dict;
6644 if (dd != NULL && dd->dv_copyID != copyID)
6646 /* Didn't see this dict yet. */
6647 dd->dv_copyID = copyID;
6648 set_ref_in_ht(&dd->dv_hashtab, copyID);
6650 break;
6652 case VAR_LIST:
6653 ll = tv->vval.v_list;
6654 if (ll != NULL && ll->lv_copyID != copyID)
6656 /* Didn't see this list yet. */
6657 ll->lv_copyID = copyID;
6658 set_ref_in_list(ll, copyID);
6660 break;
6662 return;
6666 * Allocate an empty header for a dictionary.
6668 dict_T *
6669 dict_alloc()
6671 dict_T *d;
6673 d = (dict_T *)alloc(sizeof(dict_T));
6674 if (d != NULL)
6676 /* Add the list to the list of dicts for garbage collection. */
6677 if (first_dict != NULL)
6678 first_dict->dv_used_prev = d;
6679 d->dv_used_next = first_dict;
6680 d->dv_used_prev = NULL;
6681 first_dict = d;
6683 hash_init(&d->dv_hashtab);
6684 d->dv_lock = 0;
6685 d->dv_refcount = 0;
6686 d->dv_copyID = 0;
6688 return d;
6692 * Unreference a Dictionary: decrement the reference count and free it when it
6693 * becomes zero.
6695 static void
6696 dict_unref(d)
6697 dict_T *d;
6699 if (d != NULL && --d->dv_refcount <= 0)
6700 dict_free(d, TRUE);
6704 * Free a Dictionary, including all items it contains.
6705 * Ignores the reference count.
6707 static void
6708 dict_free(d, recurse)
6709 dict_T *d;
6710 int recurse; /* Free Lists and Dictionaries recursively. */
6712 int todo;
6713 hashitem_T *hi;
6714 dictitem_T *di;
6716 /* Remove the dict from the list of dicts for garbage collection. */
6717 if (d->dv_used_prev == NULL)
6718 first_dict = d->dv_used_next;
6719 else
6720 d->dv_used_prev->dv_used_next = d->dv_used_next;
6721 if (d->dv_used_next != NULL)
6722 d->dv_used_next->dv_used_prev = d->dv_used_prev;
6724 /* Lock the hashtab, we don't want it to resize while freeing items. */
6725 hash_lock(&d->dv_hashtab);
6726 todo = (int)d->dv_hashtab.ht_used;
6727 for (hi = d->dv_hashtab.ht_array; todo > 0; ++hi)
6729 if (!HASHITEM_EMPTY(hi))
6731 /* Remove the item before deleting it, just in case there is
6732 * something recursive causing trouble. */
6733 di = HI2DI(hi);
6734 hash_remove(&d->dv_hashtab, hi);
6735 if (recurse || (di->di_tv.v_type != VAR_LIST
6736 && di->di_tv.v_type != VAR_DICT))
6737 clear_tv(&di->di_tv);
6738 vim_free(di);
6739 --todo;
6742 hash_clear(&d->dv_hashtab);
6743 vim_free(d);
6747 * Allocate a Dictionary item.
6748 * The "key" is copied to the new item.
6749 * Note that the value of the item "di_tv" still needs to be initialized!
6750 * Returns NULL when out of memory.
6752 static dictitem_T *
6753 dictitem_alloc(key)
6754 char_u *key;
6756 dictitem_T *di;
6758 di = (dictitem_T *)alloc((unsigned)(sizeof(dictitem_T) + STRLEN(key)));
6759 if (di != NULL)
6761 STRCPY(di->di_key, key);
6762 di->di_flags = 0;
6764 return di;
6768 * Make a copy of a Dictionary item.
6770 static dictitem_T *
6771 dictitem_copy(org)
6772 dictitem_T *org;
6774 dictitem_T *di;
6776 di = (dictitem_T *)alloc((unsigned)(sizeof(dictitem_T)
6777 + STRLEN(org->di_key)));
6778 if (di != NULL)
6780 STRCPY(di->di_key, org->di_key);
6781 di->di_flags = 0;
6782 copy_tv(&org->di_tv, &di->di_tv);
6784 return di;
6788 * Remove item "item" from Dictionary "dict" and free it.
6790 static void
6791 dictitem_remove(dict, item)
6792 dict_T *dict;
6793 dictitem_T *item;
6795 hashitem_T *hi;
6797 hi = hash_find(&dict->dv_hashtab, item->di_key);
6798 if (HASHITEM_EMPTY(hi))
6799 EMSG2(_(e_intern2), "dictitem_remove()");
6800 else
6801 hash_remove(&dict->dv_hashtab, hi);
6802 dictitem_free(item);
6806 * Free a dict item. Also clears the value.
6808 static void
6809 dictitem_free(item)
6810 dictitem_T *item;
6812 clear_tv(&item->di_tv);
6813 vim_free(item);
6817 * Make a copy of dict "d". Shallow if "deep" is FALSE.
6818 * The refcount of the new dict is set to 1.
6819 * See item_copy() for "copyID".
6820 * Returns NULL when out of memory.
6822 static dict_T *
6823 dict_copy(orig, deep, copyID)
6824 dict_T *orig;
6825 int deep;
6826 int copyID;
6828 dict_T *copy;
6829 dictitem_T *di;
6830 int todo;
6831 hashitem_T *hi;
6833 if (orig == NULL)
6834 return NULL;
6836 copy = dict_alloc();
6837 if (copy != NULL)
6839 if (copyID != 0)
6841 orig->dv_copyID = copyID;
6842 orig->dv_copydict = copy;
6844 todo = (int)orig->dv_hashtab.ht_used;
6845 for (hi = orig->dv_hashtab.ht_array; todo > 0 && !got_int; ++hi)
6847 if (!HASHITEM_EMPTY(hi))
6849 --todo;
6851 di = dictitem_alloc(hi->hi_key);
6852 if (di == NULL)
6853 break;
6854 if (deep)
6856 if (item_copy(&HI2DI(hi)->di_tv, &di->di_tv, deep,
6857 copyID) == FAIL)
6859 vim_free(di);
6860 break;
6863 else
6864 copy_tv(&HI2DI(hi)->di_tv, &di->di_tv);
6865 if (dict_add(copy, di) == FAIL)
6867 dictitem_free(di);
6868 break;
6873 ++copy->dv_refcount;
6874 if (todo > 0)
6876 dict_unref(copy);
6877 copy = NULL;
6881 return copy;
6885 * Add item "item" to Dictionary "d".
6886 * Returns FAIL when out of memory and when key already existed.
6888 static int
6889 dict_add(d, item)
6890 dict_T *d;
6891 dictitem_T *item;
6893 return hash_add(&d->dv_hashtab, item->di_key);
6897 * Add a number or string entry to dictionary "d".
6898 * When "str" is NULL use number "nr", otherwise use "str".
6899 * Returns FAIL when out of memory and when key already exists.
6902 dict_add_nr_str(d, key, nr, str)
6903 dict_T *d;
6904 char *key;
6905 long nr;
6906 char_u *str;
6908 dictitem_T *item;
6910 item = dictitem_alloc((char_u *)key);
6911 if (item == NULL)
6912 return FAIL;
6913 item->di_tv.v_lock = 0;
6914 if (str == NULL)
6916 item->di_tv.v_type = VAR_NUMBER;
6917 item->di_tv.vval.v_number = nr;
6919 else
6921 item->di_tv.v_type = VAR_STRING;
6922 item->di_tv.vval.v_string = vim_strsave(str);
6924 if (dict_add(d, item) == FAIL)
6926 dictitem_free(item);
6927 return FAIL;
6929 return OK;
6933 * Get the number of items in a Dictionary.
6935 static long
6936 dict_len(d)
6937 dict_T *d;
6939 if (d == NULL)
6940 return 0L;
6941 return (long)d->dv_hashtab.ht_used;
6945 * Find item "key[len]" in Dictionary "d".
6946 * If "len" is negative use strlen(key).
6947 * Returns NULL when not found.
6949 static dictitem_T *
6950 dict_find(d, key, len)
6951 dict_T *d;
6952 char_u *key;
6953 int len;
6955 #define AKEYLEN 200
6956 char_u buf[AKEYLEN];
6957 char_u *akey;
6958 char_u *tofree = NULL;
6959 hashitem_T *hi;
6961 if (len < 0)
6962 akey = key;
6963 else if (len >= AKEYLEN)
6965 tofree = akey = vim_strnsave(key, len);
6966 if (akey == NULL)
6967 return NULL;
6969 else
6971 /* Avoid a malloc/free by using buf[]. */
6972 vim_strncpy(buf, key, len);
6973 akey = buf;
6976 hi = hash_find(&d->dv_hashtab, akey);
6977 vim_free(tofree);
6978 if (HASHITEM_EMPTY(hi))
6979 return NULL;
6980 return HI2DI(hi);
6984 * Get a string item from a dictionary.
6985 * When "save" is TRUE allocate memory for it.
6986 * Returns NULL if the entry doesn't exist or out of memory.
6988 char_u *
6989 get_dict_string(d, key, save)
6990 dict_T *d;
6991 char_u *key;
6992 int save;
6994 dictitem_T *di;
6995 char_u *s;
6997 di = dict_find(d, key, -1);
6998 if (di == NULL)
6999 return NULL;
7000 s = get_tv_string(&di->di_tv);
7001 if (save && s != NULL)
7002 s = vim_strsave(s);
7003 return s;
7007 * Get a number item from a dictionary.
7008 * Returns 0 if the entry doesn't exist or out of memory.
7010 long
7011 get_dict_number(d, key)
7012 dict_T *d;
7013 char_u *key;
7015 dictitem_T *di;
7017 di = dict_find(d, key, -1);
7018 if (di == NULL)
7019 return 0;
7020 return get_tv_number(&di->di_tv);
7024 * Return an allocated string with the string representation of a Dictionary.
7025 * May return NULL.
7027 static char_u *
7028 dict2string(tv, copyID)
7029 typval_T *tv;
7030 int copyID;
7032 garray_T ga;
7033 int first = TRUE;
7034 char_u *tofree;
7035 char_u numbuf[NUMBUFLEN];
7036 hashitem_T *hi;
7037 char_u *s;
7038 dict_T *d;
7039 int todo;
7041 if ((d = tv->vval.v_dict) == NULL)
7042 return NULL;
7043 ga_init2(&ga, (int)sizeof(char), 80);
7044 ga_append(&ga, '{');
7046 todo = (int)d->dv_hashtab.ht_used;
7047 for (hi = d->dv_hashtab.ht_array; todo > 0 && !got_int; ++hi)
7049 if (!HASHITEM_EMPTY(hi))
7051 --todo;
7053 if (first)
7054 first = FALSE;
7055 else
7056 ga_concat(&ga, (char_u *)", ");
7058 tofree = string_quote(hi->hi_key, FALSE);
7059 if (tofree != NULL)
7061 ga_concat(&ga, tofree);
7062 vim_free(tofree);
7064 ga_concat(&ga, (char_u *)": ");
7065 s = tv2string(&HI2DI(hi)->di_tv, &tofree, numbuf, copyID);
7066 if (s != NULL)
7067 ga_concat(&ga, s);
7068 vim_free(tofree);
7069 if (s == NULL)
7070 break;
7073 if (todo > 0)
7075 vim_free(ga.ga_data);
7076 return NULL;
7079 ga_append(&ga, '}');
7080 ga_append(&ga, NUL);
7081 return (char_u *)ga.ga_data;
7085 * Allocate a variable for a Dictionary and fill it from "*arg".
7086 * Return OK or FAIL. Returns NOTDONE for {expr}.
7088 static int
7089 get_dict_tv(arg, rettv, evaluate)
7090 char_u **arg;
7091 typval_T *rettv;
7092 int evaluate;
7094 dict_T *d = NULL;
7095 typval_T tvkey;
7096 typval_T tv;
7097 char_u *key = NULL;
7098 dictitem_T *item;
7099 char_u *start = skipwhite(*arg + 1);
7100 char_u buf[NUMBUFLEN];
7103 * First check if it's not a curly-braces thing: {expr}.
7104 * Must do this without evaluating, otherwise a function may be called
7105 * twice. Unfortunately this means we need to call eval1() twice for the
7106 * first item.
7107 * But {} is an empty Dictionary.
7109 if (*start != '}')
7111 if (eval1(&start, &tv, FALSE) == FAIL) /* recursive! */
7112 return FAIL;
7113 if (*start == '}')
7114 return NOTDONE;
7117 if (evaluate)
7119 d = dict_alloc();
7120 if (d == NULL)
7121 return FAIL;
7123 tvkey.v_type = VAR_UNKNOWN;
7124 tv.v_type = VAR_UNKNOWN;
7126 *arg = skipwhite(*arg + 1);
7127 while (**arg != '}' && **arg != NUL)
7129 if (eval1(arg, &tvkey, evaluate) == FAIL) /* recursive! */
7130 goto failret;
7131 if (**arg != ':')
7133 EMSG2(_("E720: Missing colon in Dictionary: %s"), *arg);
7134 clear_tv(&tvkey);
7135 goto failret;
7137 if (evaluate)
7139 key = get_tv_string_buf_chk(&tvkey, buf);
7140 if (key == NULL || *key == NUL)
7142 /* "key" is NULL when get_tv_string_buf_chk() gave an errmsg */
7143 if (key != NULL)
7144 EMSG(_(e_emptykey));
7145 clear_tv(&tvkey);
7146 goto failret;
7150 *arg = skipwhite(*arg + 1);
7151 if (eval1(arg, &tv, evaluate) == FAIL) /* recursive! */
7153 if (evaluate)
7154 clear_tv(&tvkey);
7155 goto failret;
7157 if (evaluate)
7159 item = dict_find(d, key, -1);
7160 if (item != NULL)
7162 EMSG2(_("E721: Duplicate key in Dictionary: \"%s\""), key);
7163 clear_tv(&tvkey);
7164 clear_tv(&tv);
7165 goto failret;
7167 item = dictitem_alloc(key);
7168 clear_tv(&tvkey);
7169 if (item != NULL)
7171 item->di_tv = tv;
7172 item->di_tv.v_lock = 0;
7173 if (dict_add(d, item) == FAIL)
7174 dictitem_free(item);
7178 if (**arg == '}')
7179 break;
7180 if (**arg != ',')
7182 EMSG2(_("E722: Missing comma in Dictionary: %s"), *arg);
7183 goto failret;
7185 *arg = skipwhite(*arg + 1);
7188 if (**arg != '}')
7190 EMSG2(_("E723: Missing end of Dictionary '}': %s"), *arg);
7191 failret:
7192 if (evaluate)
7193 dict_free(d, TRUE);
7194 return FAIL;
7197 *arg = skipwhite(*arg + 1);
7198 if (evaluate)
7200 rettv->v_type = VAR_DICT;
7201 rettv->vval.v_dict = d;
7202 ++d->dv_refcount;
7205 return OK;
7209 * Return a string with the string representation of a variable.
7210 * If the memory is allocated "tofree" is set to it, otherwise NULL.
7211 * "numbuf" is used for a number.
7212 * Does not put quotes around strings, as ":echo" displays values.
7213 * When "copyID" is not NULL replace recursive lists and dicts with "...".
7214 * May return NULL.
7216 static char_u *
7217 echo_string(tv, tofree, numbuf, copyID)
7218 typval_T *tv;
7219 char_u **tofree;
7220 char_u *numbuf;
7221 int copyID;
7223 static int recurse = 0;
7224 char_u *r = NULL;
7226 if (recurse >= DICT_MAXNEST)
7228 EMSG(_("E724: variable nested too deep for displaying"));
7229 *tofree = NULL;
7230 return NULL;
7232 ++recurse;
7234 switch (tv->v_type)
7236 case VAR_FUNC:
7237 *tofree = NULL;
7238 r = tv->vval.v_string;
7239 break;
7241 case VAR_LIST:
7242 if (tv->vval.v_list == NULL)
7244 *tofree = NULL;
7245 r = NULL;
7247 else if (copyID != 0 && tv->vval.v_list->lv_copyID == copyID)
7249 *tofree = NULL;
7250 r = (char_u *)"[...]";
7252 else
7254 tv->vval.v_list->lv_copyID = copyID;
7255 *tofree = list2string(tv, copyID);
7256 r = *tofree;
7258 break;
7260 case VAR_DICT:
7261 if (tv->vval.v_dict == NULL)
7263 *tofree = NULL;
7264 r = NULL;
7266 else if (copyID != 0 && tv->vval.v_dict->dv_copyID == copyID)
7268 *tofree = NULL;
7269 r = (char_u *)"{...}";
7271 else
7273 tv->vval.v_dict->dv_copyID = copyID;
7274 *tofree = dict2string(tv, copyID);
7275 r = *tofree;
7277 break;
7279 case VAR_STRING:
7280 case VAR_NUMBER:
7281 *tofree = NULL;
7282 r = get_tv_string_buf(tv, numbuf);
7283 break;
7285 #ifdef FEAT_FLOAT
7286 case VAR_FLOAT:
7287 *tofree = NULL;
7288 vim_snprintf((char *)numbuf, NUMBUFLEN, "%g", tv->vval.v_float);
7289 r = numbuf;
7290 break;
7291 #endif
7293 default:
7294 EMSG2(_(e_intern2), "echo_string()");
7295 *tofree = NULL;
7298 --recurse;
7299 return r;
7303 * Return a string with the string representation of a variable.
7304 * If the memory is allocated "tofree" is set to it, otherwise NULL.
7305 * "numbuf" is used for a number.
7306 * Puts quotes around strings, so that they can be parsed back by eval().
7307 * May return NULL.
7309 static char_u *
7310 tv2string(tv, tofree, numbuf, copyID)
7311 typval_T *tv;
7312 char_u **tofree;
7313 char_u *numbuf;
7314 int copyID;
7316 switch (tv->v_type)
7318 case VAR_FUNC:
7319 *tofree = string_quote(tv->vval.v_string, TRUE);
7320 return *tofree;
7321 case VAR_STRING:
7322 *tofree = string_quote(tv->vval.v_string, FALSE);
7323 return *tofree;
7324 #ifdef FEAT_FLOAT
7325 case VAR_FLOAT:
7326 *tofree = NULL;
7327 vim_snprintf((char *)numbuf, NUMBUFLEN - 1, "%g", tv->vval.v_float);
7328 return numbuf;
7329 #endif
7330 case VAR_NUMBER:
7331 case VAR_LIST:
7332 case VAR_DICT:
7333 break;
7334 default:
7335 EMSG2(_(e_intern2), "tv2string()");
7337 return echo_string(tv, tofree, numbuf, copyID);
7341 * Return string "str" in ' quotes, doubling ' characters.
7342 * If "str" is NULL an empty string is assumed.
7343 * If "function" is TRUE make it function('string').
7345 static char_u *
7346 string_quote(str, function)
7347 char_u *str;
7348 int function;
7350 unsigned len;
7351 char_u *p, *r, *s;
7353 len = (function ? 13 : 3);
7354 if (str != NULL)
7356 len += (unsigned)STRLEN(str);
7357 for (p = str; *p != NUL; mb_ptr_adv(p))
7358 if (*p == '\'')
7359 ++len;
7361 s = r = alloc(len);
7362 if (r != NULL)
7364 if (function)
7366 STRCPY(r, "function('");
7367 r += 10;
7369 else
7370 *r++ = '\'';
7371 if (str != NULL)
7372 for (p = str; *p != NUL; )
7374 if (*p == '\'')
7375 *r++ = '\'';
7376 MB_COPY_CHAR(p, r);
7378 *r++ = '\'';
7379 if (function)
7380 *r++ = ')';
7381 *r++ = NUL;
7383 return s;
7386 #ifdef FEAT_FLOAT
7388 * Convert the string "text" to a floating point number.
7389 * This uses strtod(). setlocale(LC_NUMERIC, "C") has been used to make sure
7390 * this always uses a decimal point.
7391 * Returns the length of the text that was consumed.
7393 static int
7394 string2float(text, value)
7395 char_u *text;
7396 float_T *value; /* result stored here */
7398 char *s = (char *)text;
7399 float_T f;
7401 f = strtod(s, &s);
7402 *value = f;
7403 return (int)((char_u *)s - text);
7405 #endif
7408 * Get the value of an environment variable.
7409 * "arg" is pointing to the '$'. It is advanced to after the name.
7410 * If the environment variable was not set, silently assume it is empty.
7411 * Always return OK.
7413 static int
7414 get_env_tv(arg, rettv, evaluate)
7415 char_u **arg;
7416 typval_T *rettv;
7417 int evaluate;
7419 char_u *string = NULL;
7420 int len;
7421 int cc;
7422 char_u *name;
7423 int mustfree = FALSE;
7425 ++*arg;
7426 name = *arg;
7427 len = get_env_len(arg);
7428 if (evaluate)
7430 if (len != 0)
7432 cc = name[len];
7433 name[len] = NUL;
7434 /* first try vim_getenv(), fast for normal environment vars */
7435 string = vim_getenv(name, &mustfree);
7436 if (string != NULL && *string != NUL)
7438 if (!mustfree)
7439 string = vim_strsave(string);
7441 else
7443 if (mustfree)
7444 vim_free(string);
7446 /* next try expanding things like $VIM and ${HOME} */
7447 string = expand_env_save(name - 1);
7448 if (string != NULL && *string == '$')
7450 vim_free(string);
7451 string = NULL;
7454 name[len] = cc;
7456 rettv->v_type = VAR_STRING;
7457 rettv->vval.v_string = string;
7460 return OK;
7464 * Array with names and number of arguments of all internal functions
7465 * MUST BE KEPT SORTED IN strcmp() ORDER FOR BINARY SEARCH!
7467 static struct fst
7469 char *f_name; /* function name */
7470 char f_min_argc; /* minimal number of arguments */
7471 char f_max_argc; /* maximal number of arguments */
7472 void (*f_func) __ARGS((typval_T *args, typval_T *rvar));
7473 /* implementation of function */
7474 } functions[] =
7476 #ifdef FEAT_FLOAT
7477 {"abs", 1, 1, f_abs},
7478 {"acos", 1, 1, f_acos}, /* WJMc */
7479 #endif
7480 {"add", 2, 2, f_add},
7481 {"append", 2, 2, f_append},
7482 {"argc", 0, 0, f_argc},
7483 {"argidx", 0, 0, f_argidx},
7484 {"argv", 0, 1, f_argv},
7485 #ifdef FEAT_FLOAT
7486 {"asin", 1, 1, f_asin}, /* WJMc */
7487 {"atan", 1, 1, f_atan},
7488 {"atan2", 2, 2, f_atan2}, /* WJMc */
7489 #endif
7490 {"browse", 4, 4, f_browse},
7491 {"browsedir", 2, 2, f_browsedir},
7492 {"bufexists", 1, 1, f_bufexists},
7493 {"buffer_exists", 1, 1, f_bufexists}, /* obsolete */
7494 {"buffer_name", 1, 1, f_bufname}, /* obsolete */
7495 {"buffer_number", 1, 1, f_bufnr}, /* obsolete */
7496 {"buflisted", 1, 1, f_buflisted},
7497 {"bufloaded", 1, 1, f_bufloaded},
7498 {"bufname", 1, 1, f_bufname},
7499 {"bufnr", 1, 2, f_bufnr},
7500 {"bufwinnr", 1, 1, f_bufwinnr},
7501 {"byte2line", 1, 1, f_byte2line},
7502 {"byteidx", 2, 2, f_byteidx},
7503 {"call", 2, 3, f_call},
7504 #ifdef FEAT_FLOAT
7505 {"ceil", 1, 1, f_ceil},
7506 #endif
7507 {"changenr", 0, 0, f_changenr},
7508 {"char2nr", 1, 1, f_char2nr},
7509 {"cindent", 1, 1, f_cindent},
7510 {"clearmatches", 0, 0, f_clearmatches},
7511 {"col", 1, 1, f_col},
7512 #if defined(FEAT_INS_EXPAND)
7513 {"complete", 2, 2, f_complete},
7514 {"complete_add", 1, 1, f_complete_add},
7515 {"complete_check", 0, 0, f_complete_check},
7516 #endif
7517 {"confirm", 1, 4, f_confirm},
7518 {"copy", 1, 1, f_copy},
7519 #ifdef FEAT_FLOAT
7520 {"cos", 1, 1, f_cos},
7521 {"cosh", 1, 1, f_cosh}, /* WJMc */
7522 #endif
7523 {"count", 2, 4, f_count},
7524 {"cscope_connection",0,3, f_cscope_connection},
7525 {"cursor", 1, 3, f_cursor},
7526 {"deepcopy", 1, 2, f_deepcopy},
7527 {"delete", 1, 1, f_delete},
7528 {"did_filetype", 0, 0, f_did_filetype},
7529 {"diff_filler", 1, 1, f_diff_filler},
7530 {"diff_hlID", 2, 2, f_diff_hlID},
7531 {"empty", 1, 1, f_empty},
7532 {"escape", 2, 2, f_escape},
7533 {"eval", 1, 1, f_eval},
7534 {"eventhandler", 0, 0, f_eventhandler},
7535 {"executable", 1, 1, f_executable},
7536 {"exists", 1, 1, f_exists},
7537 #ifdef FEAT_FLOAT
7538 {"exp", 1, 1, f_exp}, /* WJMc */
7539 #endif
7540 {"expand", 1, 2, f_expand},
7541 {"extend", 2, 3, f_extend},
7542 {"feedkeys", 1, 2, f_feedkeys},
7543 {"file_readable", 1, 1, f_filereadable}, /* obsolete */
7544 {"filereadable", 1, 1, f_filereadable},
7545 {"filewritable", 1, 1, f_filewritable},
7546 {"filter", 2, 2, f_filter},
7547 {"finddir", 1, 3, f_finddir},
7548 {"findfile", 1, 3, f_findfile},
7549 #ifdef FEAT_FLOAT
7550 {"float2nr", 1, 1, f_float2nr},
7551 {"floor", 1, 1, f_floor},
7552 {"fmod", 2, 2, f_fmod}, /* WJMc */
7553 #endif
7554 {"fnameescape", 1, 1, f_fnameescape},
7555 {"fnamemodify", 2, 2, f_fnamemodify},
7556 {"foldclosed", 1, 1, f_foldclosed},
7557 {"foldclosedend", 1, 1, f_foldclosedend},
7558 {"foldlevel", 1, 1, f_foldlevel},
7559 {"foldtext", 0, 0, f_foldtext},
7560 {"foldtextresult", 1, 1, f_foldtextresult},
7561 {"foreground", 0, 0, f_foreground},
7562 {"function", 1, 1, f_function},
7563 {"garbagecollect", 0, 1, f_garbagecollect},
7564 {"get", 2, 3, f_get},
7565 {"getbufline", 2, 3, f_getbufline},
7566 {"getbufvar", 2, 2, f_getbufvar},
7567 {"getchar", 0, 1, f_getchar},
7568 {"getcharmod", 0, 0, f_getcharmod},
7569 {"getcmdline", 0, 0, f_getcmdline},
7570 {"getcmdpos", 0, 0, f_getcmdpos},
7571 {"getcmdtype", 0, 0, f_getcmdtype},
7572 {"getcwd", 0, 0, f_getcwd},
7573 {"getfontname", 0, 1, f_getfontname},
7574 {"getfperm", 1, 1, f_getfperm},
7575 {"getfsize", 1, 1, f_getfsize},
7576 {"getftime", 1, 1, f_getftime},
7577 {"getftype", 1, 1, f_getftype},
7578 {"getline", 1, 2, f_getline},
7579 {"getloclist", 1, 1, f_getqflist},
7580 {"getmatches", 0, 0, f_getmatches},
7581 {"getpid", 0, 0, f_getpid},
7582 {"getpos", 1, 1, f_getpos},
7583 {"getqflist", 0, 0, f_getqflist},
7584 {"getreg", 0, 2, f_getreg},
7585 {"getregtype", 0, 1, f_getregtype},
7586 {"gettabwinvar", 3, 3, f_gettabwinvar},
7587 {"getwinposx", 0, 0, f_getwinposx},
7588 {"getwinposy", 0, 0, f_getwinposy},
7589 {"getwinvar", 2, 2, f_getwinvar},
7590 {"glob", 1, 2, f_glob},
7591 {"globpath", 2, 3, f_globpath},
7592 {"has", 1, 1, f_has},
7593 {"has_key", 2, 2, f_has_key},
7594 {"haslocaldir", 0, 0, f_haslocaldir},
7595 {"hasmapto", 1, 3, f_hasmapto},
7596 {"highlightID", 1, 1, f_hlID}, /* obsolete */
7597 {"highlight_exists",1, 1, f_hlexists}, /* obsolete */
7598 {"histadd", 2, 2, f_histadd},
7599 {"histdel", 1, 2, f_histdel},
7600 {"histget", 1, 2, f_histget},
7601 {"histnr", 1, 1, f_histnr},
7602 {"hlID", 1, 1, f_hlID},
7603 {"hlexists", 1, 1, f_hlexists},
7604 {"hostname", 0, 0, f_hostname},
7605 {"iconv", 3, 3, f_iconv},
7606 {"indent", 1, 1, f_indent},
7607 {"index", 2, 4, f_index},
7608 {"input", 1, 3, f_input},
7609 {"inputdialog", 1, 3, f_inputdialog},
7610 {"inputlist", 1, 1, f_inputlist},
7611 {"inputrestore", 0, 0, f_inputrestore},
7612 {"inputsave", 0, 0, f_inputsave},
7613 {"inputsecret", 1, 2, f_inputsecret},
7614 {"insert", 2, 3, f_insert},
7615 {"isdirectory", 1, 1, f_isdirectory},
7616 {"islocked", 1, 1, f_islocked},
7617 {"items", 1, 1, f_items},
7618 {"join", 1, 2, f_join},
7619 {"keys", 1, 1, f_keys},
7620 {"last_buffer_nr", 0, 0, f_last_buffer_nr},/* obsolete */
7621 {"len", 1, 1, f_len},
7622 {"libcall", 3, 3, f_libcall},
7623 {"libcallnr", 3, 3, f_libcallnr},
7624 {"line", 1, 1, f_line},
7625 {"line2byte", 1, 1, f_line2byte},
7626 {"lispindent", 1, 1, f_lispindent},
7627 {"localtime", 0, 0, f_localtime},
7628 #ifdef FEAT_FLOAT
7629 {"log", 1, 1, f_log}, /* WJMc */
7630 {"log10", 1, 1, f_log10},
7631 #endif
7632 {"map", 2, 2, f_map},
7633 {"maparg", 1, 3, f_maparg},
7634 {"mapcheck", 1, 3, f_mapcheck},
7635 {"match", 2, 4, f_match},
7636 {"matchadd", 2, 4, f_matchadd},
7637 {"matcharg", 1, 1, f_matcharg},
7638 {"matchdelete", 1, 1, f_matchdelete},
7639 {"matchend", 2, 4, f_matchend},
7640 {"matchlist", 2, 4, f_matchlist},
7641 {"matchstr", 2, 4, f_matchstr},
7642 {"max", 1, 1, f_max},
7643 {"min", 1, 1, f_min},
7644 #ifdef vim_mkdir
7645 {"mkdir", 1, 3, f_mkdir},
7646 #endif
7647 {"mode", 0, 1, f_mode},
7648 {"nextnonblank", 1, 1, f_nextnonblank},
7649 {"nr2char", 1, 1, f_nr2char},
7650 {"pathshorten", 1, 1, f_pathshorten},
7651 #ifdef FEAT_FLOAT
7652 {"pow", 2, 2, f_pow},
7653 #endif
7654 {"prevnonblank", 1, 1, f_prevnonblank},
7655 {"printf", 2, 19, f_printf},
7656 {"pumvisible", 0, 0, f_pumvisible},
7657 {"range", 1, 3, f_range},
7658 {"readfile", 1, 3, f_readfile},
7659 {"reltime", 0, 2, f_reltime},
7660 {"reltimestr", 1, 1, f_reltimestr},
7661 {"remote_expr", 2, 3, f_remote_expr},
7662 {"remote_foreground", 1, 1, f_remote_foreground},
7663 {"remote_peek", 1, 2, f_remote_peek},
7664 {"remote_read", 1, 1, f_remote_read},
7665 {"remote_send", 2, 3, f_remote_send},
7666 {"remove", 2, 3, f_remove},
7667 {"rename", 2, 2, f_rename},
7668 {"repeat", 2, 2, f_repeat},
7669 {"resolve", 1, 1, f_resolve},
7670 {"reverse", 1, 1, f_reverse},
7671 #ifdef FEAT_FLOAT
7672 {"round", 1, 1, f_round},
7673 #endif
7674 {"search", 1, 4, f_search},
7675 {"searchdecl", 1, 3, f_searchdecl},
7676 {"searchpair", 3, 7, f_searchpair},
7677 {"searchpairpos", 3, 7, f_searchpairpos},
7678 {"searchpos", 1, 4, f_searchpos},
7679 {"server2client", 2, 2, f_server2client},
7680 {"serverlist", 0, 0, f_serverlist},
7681 {"setbufvar", 3, 3, f_setbufvar},
7682 {"setcmdpos", 1, 1, f_setcmdpos},
7683 {"setline", 2, 2, f_setline},
7684 {"setloclist", 2, 3, f_setloclist},
7685 {"setmatches", 1, 1, f_setmatches},
7686 {"setpos", 2, 2, f_setpos},
7687 {"setqflist", 1, 2, f_setqflist},
7688 {"setreg", 2, 3, f_setreg},
7689 {"settabwinvar", 4, 4, f_settabwinvar},
7690 {"setwinvar", 3, 3, f_setwinvar},
7691 {"shellescape", 1, 2, f_shellescape},
7692 {"simplify", 1, 1, f_simplify},
7693 #ifdef FEAT_FLOAT
7694 {"sin", 1, 1, f_sin},
7695 {"sinh", 1, 1, f_sinh}, /* WJMc */
7696 #endif
7697 {"sort", 1, 2, f_sort},
7698 {"soundfold", 1, 1, f_soundfold},
7699 {"spellbadword", 0, 1, f_spellbadword},
7700 {"spellsuggest", 1, 3, f_spellsuggest},
7701 {"split", 1, 3, f_split},
7702 #ifdef FEAT_FLOAT
7703 {"sqrt", 1, 1, f_sqrt},
7704 {"str2float", 1, 1, f_str2float},
7705 #endif
7706 {"str2nr", 1, 2, f_str2nr},
7707 #ifdef HAVE_STRFTIME
7708 {"strftime", 1, 2, f_strftime},
7709 #endif
7710 {"stridx", 2, 3, f_stridx},
7711 {"string", 1, 1, f_string},
7712 {"strlen", 1, 1, f_strlen},
7713 {"strpart", 2, 3, f_strpart},
7714 {"strridx", 2, 3, f_strridx},
7715 {"strtrans", 1, 1, f_strtrans},
7716 {"submatch", 1, 1, f_submatch},
7717 {"substitute", 4, 4, f_substitute},
7718 {"synID", 3, 3, f_synID},
7719 {"synIDattr", 2, 3, f_synIDattr},
7720 {"synIDtrans", 1, 1, f_synIDtrans},
7721 {"synstack", 2, 2, f_synstack},
7722 {"system", 1, 2, f_system},
7723 {"tabpagebuflist", 0, 1, f_tabpagebuflist},
7724 {"tabpagenr", 0, 1, f_tabpagenr},
7725 {"tabpagewinnr", 1, 2, f_tabpagewinnr},
7726 {"tagfiles", 0, 0, f_tagfiles},
7727 {"taglist", 1, 1, f_taglist},
7728 {"tan", 1, 1, f_tan}, /* WJMc */
7729 {"tanh", 1, 1, f_tanh}, /* WJMc */
7730 {"tempname", 0, 0, f_tempname},
7731 {"test", 1, 1, f_test},
7732 {"tolower", 1, 1, f_tolower},
7733 {"toupper", 1, 1, f_toupper},
7734 {"tr", 3, 3, f_tr},
7735 #ifdef FEAT_FLOAT
7736 {"trunc", 1, 1, f_trunc},
7737 #endif
7738 {"type", 1, 1, f_type},
7739 {"values", 1, 1, f_values},
7740 {"virtcol", 1, 1, f_virtcol},
7741 {"visualmode", 0, 1, f_visualmode},
7742 {"winbufnr", 1, 1, f_winbufnr},
7743 {"wincol", 0, 0, f_wincol},
7744 {"winheight", 1, 1, f_winheight},
7745 {"winline", 0, 0, f_winline},
7746 {"winnr", 0, 1, f_winnr},
7747 {"winrestcmd", 0, 0, f_winrestcmd},
7748 {"winrestview", 1, 1, f_winrestview},
7749 {"winsaveview", 0, 0, f_winsaveview},
7750 {"winwidth", 1, 1, f_winwidth},
7751 {"writefile", 2, 3, f_writefile},
7754 #if defined(FEAT_CMDL_COMPL) || defined(PROTO)
7757 * Function given to ExpandGeneric() to obtain the list of internal
7758 * or user defined function names.
7760 char_u *
7761 get_function_name(xp, idx)
7762 expand_T *xp;
7763 int idx;
7765 static int intidx = -1;
7766 char_u *name;
7768 if (idx == 0)
7769 intidx = -1;
7770 if (intidx < 0)
7772 name = get_user_func_name(xp, idx);
7773 if (name != NULL)
7774 return name;
7776 if (++intidx < (int)(sizeof(functions) / sizeof(struct fst)))
7778 STRCPY(IObuff, functions[intidx].f_name);
7779 STRCAT(IObuff, "(");
7780 if (functions[intidx].f_max_argc == 0)
7781 STRCAT(IObuff, ")");
7782 return IObuff;
7785 return NULL;
7789 * Function given to ExpandGeneric() to obtain the list of internal or
7790 * user defined variable or function names.
7792 /*ARGSUSED*/
7793 char_u *
7794 get_expr_name(xp, idx)
7795 expand_T *xp;
7796 int idx;
7798 static int intidx = -1;
7799 char_u *name;
7801 if (idx == 0)
7802 intidx = -1;
7803 if (intidx < 0)
7805 name = get_function_name(xp, idx);
7806 if (name != NULL)
7807 return name;
7809 return get_user_var_name(xp, ++intidx);
7812 #endif /* FEAT_CMDL_COMPL */
7815 * Find internal function in table above.
7816 * Return index, or -1 if not found
7818 static int
7819 find_internal_func(name)
7820 char_u *name; /* name of the function */
7822 int first = 0;
7823 int last = (int)(sizeof(functions) / sizeof(struct fst)) - 1;
7824 int cmp;
7825 int x;
7828 * Find the function name in the table. Binary search.
7830 while (first <= last)
7832 x = first + ((unsigned)(last - first) >> 1);
7833 cmp = STRCMP(name, functions[x].f_name);
7834 if (cmp < 0)
7835 last = x - 1;
7836 else if (cmp > 0)
7837 first = x + 1;
7838 else
7839 return x;
7841 return -1;
7845 * Check if "name" is a variable of type VAR_FUNC. If so, return the function
7846 * name it contains, otherwise return "name".
7848 static char_u *
7849 deref_func_name(name, lenp)
7850 char_u *name;
7851 int *lenp;
7853 dictitem_T *v;
7854 int cc;
7856 cc = name[*lenp];
7857 name[*lenp] = NUL;
7858 v = find_var(name, NULL);
7859 name[*lenp] = cc;
7860 if (v != NULL && v->di_tv.v_type == VAR_FUNC)
7862 if (v->di_tv.vval.v_string == NULL)
7864 *lenp = 0;
7865 return (char_u *)""; /* just in case */
7867 *lenp = (int)STRLEN(v->di_tv.vval.v_string);
7868 return v->di_tv.vval.v_string;
7871 return name;
7875 * Allocate a variable for the result of a function.
7876 * Return OK or FAIL.
7878 static int
7879 get_func_tv(name, len, rettv, arg, firstline, lastline, doesrange,
7880 evaluate, selfdict)
7881 char_u *name; /* name of the function */
7882 int len; /* length of "name" */
7883 typval_T *rettv;
7884 char_u **arg; /* argument, pointing to the '(' */
7885 linenr_T firstline; /* first line of range */
7886 linenr_T lastline; /* last line of range */
7887 int *doesrange; /* return: function handled range */
7888 int evaluate;
7889 dict_T *selfdict; /* Dictionary for "self" */
7891 char_u *argp;
7892 int ret = OK;
7893 typval_T argvars[MAX_FUNC_ARGS + 1]; /* vars for arguments */
7894 int argcount = 0; /* number of arguments found */
7897 * Get the arguments.
7899 argp = *arg;
7900 while (argcount < MAX_FUNC_ARGS)
7902 argp = skipwhite(argp + 1); /* skip the '(' or ',' */
7903 if (*argp == ')' || *argp == ',' || *argp == NUL)
7904 break;
7905 if (eval1(&argp, &argvars[argcount], evaluate) == FAIL)
7907 ret = FAIL;
7908 break;
7910 ++argcount;
7911 if (*argp != ',')
7912 break;
7914 if (*argp == ')')
7915 ++argp;
7916 else
7917 ret = FAIL;
7919 if (ret == OK)
7920 ret = call_func(name, len, rettv, argcount, argvars,
7921 firstline, lastline, doesrange, evaluate, selfdict);
7922 else if (!aborting())
7924 if (argcount == MAX_FUNC_ARGS)
7925 emsg_funcname("E740: Too many arguments for function %s", name);
7926 else
7927 emsg_funcname("E116: Invalid arguments for function %s", name);
7930 while (--argcount >= 0)
7931 clear_tv(&argvars[argcount]);
7933 *arg = skipwhite(argp);
7934 return ret;
7939 * Call a function with its resolved parameters
7940 * Return OK when the function can't be called, FAIL otherwise.
7941 * Also returns OK when an error was encountered while executing the function.
7943 static int
7944 call_func(name, len, rettv, argcount, argvars, firstline, lastline,
7945 doesrange, evaluate, selfdict)
7946 char_u *name; /* name of the function */
7947 int len; /* length of "name" */
7948 typval_T *rettv; /* return value goes here */
7949 int argcount; /* number of "argvars" */
7950 typval_T *argvars; /* vars for arguments, must have "argcount"
7951 PLUS ONE elements! */
7952 linenr_T firstline; /* first line of range */
7953 linenr_T lastline; /* last line of range */
7954 int *doesrange; /* return: function handled range */
7955 int evaluate;
7956 dict_T *selfdict; /* Dictionary for "self" */
7958 int ret = FAIL;
7959 #define ERROR_UNKNOWN 0
7960 #define ERROR_TOOMANY 1
7961 #define ERROR_TOOFEW 2
7962 #define ERROR_SCRIPT 3
7963 #define ERROR_DICT 4
7964 #define ERROR_NONE 5
7965 #define ERROR_OTHER 6
7966 int error = ERROR_NONE;
7967 int i;
7968 int llen;
7969 ufunc_T *fp;
7970 int cc;
7971 #define FLEN_FIXED 40
7972 char_u fname_buf[FLEN_FIXED + 1];
7973 char_u *fname;
7976 * In a script change <SID>name() and s:name() to K_SNR 123_name().
7977 * Change <SNR>123_name() to K_SNR 123_name().
7978 * Use fname_buf[] when it fits, otherwise allocate memory (slow).
7980 cc = name[len];
7981 name[len] = NUL;
7982 llen = eval_fname_script(name);
7983 if (llen > 0)
7985 fname_buf[0] = K_SPECIAL;
7986 fname_buf[1] = KS_EXTRA;
7987 fname_buf[2] = (int)KE_SNR;
7988 i = 3;
7989 if (eval_fname_sid(name)) /* "<SID>" or "s:" */
7991 if (current_SID <= 0)
7992 error = ERROR_SCRIPT;
7993 else
7995 sprintf((char *)fname_buf + 3, "%ld_", (long)current_SID);
7996 i = (int)STRLEN(fname_buf);
7999 if (i + STRLEN(name + llen) < FLEN_FIXED)
8001 STRCPY(fname_buf + i, name + llen);
8002 fname = fname_buf;
8004 else
8006 fname = alloc((unsigned)(i + STRLEN(name + llen) + 1));
8007 if (fname == NULL)
8008 error = ERROR_OTHER;
8009 else
8011 mch_memmove(fname, fname_buf, (size_t)i);
8012 STRCPY(fname + i, name + llen);
8016 else
8017 fname = name;
8019 *doesrange = FALSE;
8022 /* execute the function if no errors detected and executing */
8023 if (evaluate && error == ERROR_NONE)
8025 rettv->v_type = VAR_NUMBER; /* default is number rettv */
8026 error = ERROR_UNKNOWN;
8028 if (!builtin_function(fname))
8031 * User defined function.
8033 fp = find_func(fname);
8035 #ifdef FEAT_AUTOCMD
8036 /* Trigger FuncUndefined event, may load the function. */
8037 if (fp == NULL
8038 && apply_autocmds(EVENT_FUNCUNDEFINED,
8039 fname, fname, TRUE, NULL)
8040 && !aborting())
8042 /* executed an autocommand, search for the function again */
8043 fp = find_func(fname);
8045 #endif
8046 /* Try loading a package. */
8047 if (fp == NULL && script_autoload(fname, TRUE) && !aborting())
8049 /* loaded a package, search for the function again */
8050 fp = find_func(fname);
8053 if (fp != NULL)
8055 if (fp->uf_flags & FC_RANGE)
8056 *doesrange = TRUE;
8057 if (argcount < fp->uf_args.ga_len)
8058 error = ERROR_TOOFEW;
8059 else if (!fp->uf_varargs && argcount > fp->uf_args.ga_len)
8060 error = ERROR_TOOMANY;
8061 else if ((fp->uf_flags & FC_DICT) && selfdict == NULL)
8062 error = ERROR_DICT;
8063 else
8066 * Call the user function.
8067 * Save and restore search patterns, script variables and
8068 * redo buffer.
8070 save_search_patterns();
8071 saveRedobuff();
8072 ++fp->uf_calls;
8073 call_user_func(fp, argcount, argvars, rettv,
8074 firstline, lastline,
8075 (fp->uf_flags & FC_DICT) ? selfdict : NULL);
8076 if (--fp->uf_calls <= 0 && isdigit(*fp->uf_name)
8077 && fp->uf_refcount <= 0)
8078 /* Function was unreferenced while being used, free it
8079 * now. */
8080 func_free(fp);
8081 restoreRedobuff();
8082 restore_search_patterns();
8083 error = ERROR_NONE;
8087 else
8090 * Find the function name in the table, call its implementation.
8092 i = find_internal_func(fname);
8093 if (i >= 0)
8095 if (argcount < functions[i].f_min_argc)
8096 error = ERROR_TOOFEW;
8097 else if (argcount > functions[i].f_max_argc)
8098 error = ERROR_TOOMANY;
8099 else
8101 argvars[argcount].v_type = VAR_UNKNOWN;
8102 functions[i].f_func(argvars, rettv);
8103 error = ERROR_NONE;
8108 * The function call (or "FuncUndefined" autocommand sequence) might
8109 * have been aborted by an error, an interrupt, or an explicitly thrown
8110 * exception that has not been caught so far. This situation can be
8111 * tested for by calling aborting(). For an error in an internal
8112 * function or for the "E132" error in call_user_func(), however, the
8113 * throw point at which the "force_abort" flag (temporarily reset by
8114 * emsg()) is normally updated has not been reached yet. We need to
8115 * update that flag first to make aborting() reliable.
8117 update_force_abort();
8119 if (error == ERROR_NONE)
8120 ret = OK;
8123 * Report an error unless the argument evaluation or function call has been
8124 * cancelled due to an aborting error, an interrupt, or an exception.
8126 if (!aborting())
8128 switch (error)
8130 case ERROR_UNKNOWN:
8131 emsg_funcname(N_("E117: Unknown function: %s"), name);
8132 break;
8133 case ERROR_TOOMANY:
8134 emsg_funcname(e_toomanyarg, name);
8135 break;
8136 case ERROR_TOOFEW:
8137 emsg_funcname(N_("E119: Not enough arguments for function: %s"),
8138 name);
8139 break;
8140 case ERROR_SCRIPT:
8141 emsg_funcname(N_("E120: Using <SID> not in a script context: %s"),
8142 name);
8143 break;
8144 case ERROR_DICT:
8145 emsg_funcname(N_("E725: Calling dict function without Dictionary: %s"),
8146 name);
8147 break;
8151 name[len] = cc;
8152 if (fname != name && fname != fname_buf)
8153 vim_free(fname);
8155 return ret;
8159 * Give an error message with a function name. Handle <SNR> things.
8161 static void
8162 emsg_funcname(ermsg, name)
8163 char *ermsg;
8164 char_u *name;
8166 char_u *p;
8168 if (*name == K_SPECIAL)
8169 p = concat_str((char_u *)"<SNR>", name + 3);
8170 else
8171 p = name;
8172 EMSG2(_(ermsg), p);
8173 if (p != name)
8174 vim_free(p);
8178 * Return TRUE for a non-zero Number and a non-empty String.
8180 static int
8181 non_zero_arg(argvars)
8182 typval_T *argvars;
8184 return ((argvars[0].v_type == VAR_NUMBER
8185 && argvars[0].vval.v_number != 0)
8186 || (argvars[0].v_type == VAR_STRING
8187 && argvars[0].vval.v_string != NULL
8188 && *argvars[0].vval.v_string != NUL));
8191 /*********************************************
8192 * Implementation of the built-in functions
8195 #ifdef FEAT_FLOAT
8197 * "abs(expr)" function
8199 static void
8200 f_abs(argvars, rettv)
8201 typval_T *argvars;
8202 typval_T *rettv;
8204 if (argvars[0].v_type == VAR_FLOAT)
8206 rettv->v_type = VAR_FLOAT;
8207 rettv->vval.v_float = fabs(argvars[0].vval.v_float);
8209 else
8211 varnumber_T n;
8212 int error = FALSE;
8214 n = get_tv_number_chk(&argvars[0], &error);
8215 if (error)
8216 rettv->vval.v_number = -1;
8217 else if (n > 0)
8218 rettv->vval.v_number = n;
8219 else
8220 rettv->vval.v_number = -n;
8223 #endif
8226 * "add(list, item)" function
8228 static void
8229 f_add(argvars, rettv)
8230 typval_T *argvars;
8231 typval_T *rettv;
8233 list_T *l;
8235 rettv->vval.v_number = 1; /* Default: Failed */
8236 if (argvars[0].v_type == VAR_LIST)
8238 if ((l = argvars[0].vval.v_list) != NULL
8239 && !tv_check_lock(l->lv_lock, (char_u *)"add()")
8240 && list_append_tv(l, &argvars[1]) == OK)
8241 copy_tv(&argvars[0], rettv);
8243 else
8244 EMSG(_(e_listreq));
8248 * "append(lnum, string/list)" function
8250 static void
8251 f_append(argvars, rettv)
8252 typval_T *argvars;
8253 typval_T *rettv;
8255 long lnum;
8256 char_u *line;
8257 list_T *l = NULL;
8258 listitem_T *li = NULL;
8259 typval_T *tv;
8260 long added = 0;
8262 lnum = get_tv_lnum(argvars);
8263 if (lnum >= 0
8264 && lnum <= curbuf->b_ml.ml_line_count
8265 && u_save(lnum, lnum + 1) == OK)
8267 if (argvars[1].v_type == VAR_LIST)
8269 l = argvars[1].vval.v_list;
8270 if (l == NULL)
8271 return;
8272 li = l->lv_first;
8274 rettv->vval.v_number = 0; /* Default: Success */
8275 for (;;)
8277 if (l == NULL)
8278 tv = &argvars[1]; /* append a string */
8279 else if (li == NULL)
8280 break; /* end of list */
8281 else
8282 tv = &li->li_tv; /* append item from list */
8283 line = get_tv_string_chk(tv);
8284 if (line == NULL) /* type error */
8286 rettv->vval.v_number = 1; /* Failed */
8287 break;
8289 ml_append(lnum + added, line, (colnr_T)0, FALSE);
8290 ++added;
8291 if (l == NULL)
8292 break;
8293 li = li->li_next;
8296 appended_lines_mark(lnum, added);
8297 if (curwin->w_cursor.lnum > lnum)
8298 curwin->w_cursor.lnum += added;
8300 else
8301 rettv->vval.v_number = 1; /* Failed */
8305 * "argc()" function
8307 /* ARGSUSED */
8308 static void
8309 f_argc(argvars, rettv)
8310 typval_T *argvars;
8311 typval_T *rettv;
8313 rettv->vval.v_number = ARGCOUNT;
8317 * "argidx()" function
8319 /* ARGSUSED */
8320 static void
8321 f_argidx(argvars, rettv)
8322 typval_T *argvars;
8323 typval_T *rettv;
8325 rettv->vval.v_number = curwin->w_arg_idx;
8329 * "argv(nr)" function
8331 static void
8332 f_argv(argvars, rettv)
8333 typval_T *argvars;
8334 typval_T *rettv;
8336 int idx;
8338 if (argvars[0].v_type != VAR_UNKNOWN)
8340 idx = get_tv_number_chk(&argvars[0], NULL);
8341 if (idx >= 0 && idx < ARGCOUNT)
8342 rettv->vval.v_string = vim_strsave(alist_name(&ARGLIST[idx]));
8343 else
8344 rettv->vval.v_string = NULL;
8345 rettv->v_type = VAR_STRING;
8347 else if (rettv_list_alloc(rettv) == OK)
8348 for (idx = 0; idx < ARGCOUNT; ++idx)
8349 list_append_string(rettv->vval.v_list,
8350 alist_name(&ARGLIST[idx]), -1);
8353 #ifdef FEAT_FLOAT
8354 static int get_float_arg __ARGS((typval_T *argvars, float_T *f));
8357 * Get the float value of "argvars[0]" into "f".
8358 * Returns FAIL when the argument is not a Number or Float.
8360 static int
8361 get_float_arg(argvars, f)
8362 typval_T *argvars;
8363 float_T *f;
8365 if (argvars[0].v_type == VAR_FLOAT)
8367 *f = argvars[0].vval.v_float;
8368 return OK;
8370 if (argvars[0].v_type == VAR_NUMBER)
8372 *f = (float_T)argvars[0].vval.v_number;
8373 return OK;
8375 EMSG(_("E808: Number or Float required"));
8376 return FAIL;
8379 /* The 10 added FP functions are defined immediately before atan() - WJMc */
8382 * "acos()" function
8384 static void
8385 f_acos(argvars, rettv)
8386 typval_T *argvars;
8387 typval_T *rettv;
8389 float_T f;
8391 rettv->v_type = VAR_FLOAT;
8392 if (get_float_arg(argvars, &f) == OK)
8393 rettv->vval.v_float = acos(f);
8394 else
8395 rettv->vval.v_float = 0.0;
8399 * "asin()" function
8401 static void
8402 f_asin(argvars, rettv)
8403 typval_T *argvars;
8404 typval_T *rettv;
8406 float_T f;
8408 rettv->v_type = VAR_FLOAT;
8409 if (get_float_arg(argvars, &f) == OK)
8410 rettv->vval.v_float = asin(f);
8411 else
8412 rettv->vval.v_float = 0.0;
8416 * "atan2()" function
8418 static void
8419 f_atan2(argvars, rettv)
8420 typval_T *argvars;
8421 typval_T *rettv;
8423 float_T fx, fy;
8425 rettv->v_type = VAR_FLOAT;
8426 if (get_float_arg(argvars, &fx) == OK
8427 && get_float_arg(&argvars[1], &fy) == OK)
8428 rettv->vval.v_float = atan2(fx, fy);
8429 else
8430 rettv->vval.v_float = 0.0;
8434 * "cosh()" function
8436 static void
8437 f_cosh(argvars, rettv)
8438 typval_T *argvars;
8439 typval_T *rettv;
8441 float_T f;
8443 rettv->v_type = VAR_FLOAT;
8444 if (get_float_arg(argvars, &f) == OK)
8445 rettv->vval.v_float = cosh(f);
8446 else
8447 rettv->vval.v_float = 0.0;
8451 * "exp()" function
8453 static void
8454 f_exp(argvars, rettv)
8455 typval_T *argvars;
8456 typval_T *rettv;
8458 float_T f;
8460 rettv->v_type = VAR_FLOAT;
8461 if (get_float_arg(argvars, &f) == OK)
8462 rettv->vval.v_float = exp(f);
8463 else
8464 rettv->vval.v_float = 0.0;
8468 * "fmod()" function
8470 static void
8471 f_fmod(argvars, rettv)
8472 typval_T *argvars;
8473 typval_T *rettv;
8475 float_T fx, fy;
8477 rettv->v_type = VAR_FLOAT;
8478 if (get_float_arg(argvars, &fx) == OK
8479 && get_float_arg(&argvars[1], &fy) == OK)
8480 rettv->vval.v_float = fmod(fx, fy);
8481 else
8482 rettv->vval.v_float = 0.0;
8486 * "log()" function
8488 static void
8489 f_log(argvars, rettv)
8490 typval_T *argvars;
8491 typval_T *rettv;
8493 float_T f;
8495 rettv->v_type = VAR_FLOAT;
8496 if (get_float_arg(argvars, &f) == OK)
8497 rettv->vval.v_float = log(f);
8498 else
8499 rettv->vval.v_float = 0.0;
8503 * "sinh()" function
8505 static void
8506 f_sinh(argvars, rettv)
8507 typval_T *argvars;
8508 typval_T *rettv;
8510 float_T f;
8512 rettv->v_type = VAR_FLOAT;
8513 if (get_float_arg(argvars, &f) == OK)
8514 rettv->vval.v_float = sinh(f);
8515 else
8516 rettv->vval.v_float = 0.0;
8520 * "tan()" function
8522 static void
8523 f_tan(argvars, rettv)
8524 typval_T *argvars;
8525 typval_T *rettv;
8527 float_T f;
8529 rettv->v_type = VAR_FLOAT;
8530 if (get_float_arg(argvars, &f) == OK)
8531 rettv->vval.v_float = tan(f);
8532 else
8533 rettv->vval.v_float = 0.0;
8537 * "tanh()" function
8539 static void
8540 f_tanh(argvars, rettv)
8541 typval_T *argvars;
8542 typval_T *rettv;
8544 float_T f;
8546 rettv->v_type = VAR_FLOAT;
8547 if (get_float_arg(argvars, &f) == OK)
8548 rettv->vval.v_float = tanh(f);
8549 else
8550 rettv->vval.v_float = 0.0;
8553 /* End of the 10 added FP functions - WJMc */
8556 * "atan()" function
8558 static void
8559 f_atan(argvars, rettv)
8560 typval_T *argvars;
8561 typval_T *rettv;
8563 float_T f;
8565 rettv->v_type = VAR_FLOAT;
8566 if (get_float_arg(argvars, &f) == OK)
8567 rettv->vval.v_float = atan(f);
8568 else
8569 rettv->vval.v_float = 0.0;
8571 #endif
8574 * "browse(save, title, initdir, default)" function
8576 /* ARGSUSED */
8577 static void
8578 f_browse(argvars, rettv)
8579 typval_T *argvars;
8580 typval_T *rettv;
8582 #ifdef FEAT_BROWSE
8583 int save;
8584 char_u *title;
8585 char_u *initdir;
8586 char_u *defname;
8587 char_u buf[NUMBUFLEN];
8588 char_u buf2[NUMBUFLEN];
8589 int error = FALSE;
8591 save = get_tv_number_chk(&argvars[0], &error);
8592 title = get_tv_string_chk(&argvars[1]);
8593 initdir = get_tv_string_buf_chk(&argvars[2], buf);
8594 defname = get_tv_string_buf_chk(&argvars[3], buf2);
8596 if (error || title == NULL || initdir == NULL || defname == NULL)
8597 rettv->vval.v_string = NULL;
8598 else
8599 rettv->vval.v_string =
8600 do_browse(save ? BROWSE_SAVE : 0,
8601 title, defname, NULL, initdir, NULL, curbuf);
8602 #else
8603 rettv->vval.v_string = NULL;
8604 #endif
8605 rettv->v_type = VAR_STRING;
8609 * "browsedir(title, initdir)" function
8611 /* ARGSUSED */
8612 static void
8613 f_browsedir(argvars, rettv)
8614 typval_T *argvars;
8615 typval_T *rettv;
8617 #ifdef FEAT_BROWSE
8618 char_u *title;
8619 char_u *initdir;
8620 char_u buf[NUMBUFLEN];
8622 title = get_tv_string_chk(&argvars[0]);
8623 initdir = get_tv_string_buf_chk(&argvars[1], buf);
8625 if (title == NULL || initdir == NULL)
8626 rettv->vval.v_string = NULL;
8627 else
8628 rettv->vval.v_string = do_browse(BROWSE_DIR,
8629 title, NULL, NULL, initdir, NULL, curbuf);
8630 #else
8631 rettv->vval.v_string = NULL;
8632 #endif
8633 rettv->v_type = VAR_STRING;
8636 static buf_T *find_buffer __ARGS((typval_T *avar));
8639 * Find a buffer by number or exact name.
8641 static buf_T *
8642 find_buffer(avar)
8643 typval_T *avar;
8645 buf_T *buf = NULL;
8647 if (avar->v_type == VAR_NUMBER)
8648 buf = buflist_findnr((int)avar->vval.v_number);
8649 else if (avar->v_type == VAR_STRING && avar->vval.v_string != NULL)
8651 buf = buflist_findname_exp(avar->vval.v_string);
8652 if (buf == NULL)
8654 /* No full path name match, try a match with a URL or a "nofile"
8655 * buffer, these don't use the full path. */
8656 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
8657 if (buf->b_fname != NULL
8658 && (path_with_url(buf->b_fname)
8659 #ifdef FEAT_QUICKFIX
8660 || bt_nofile(buf)
8661 #endif
8663 && STRCMP(buf->b_fname, avar->vval.v_string) == 0)
8664 break;
8667 return buf;
8671 * "bufexists(expr)" function
8673 static void
8674 f_bufexists(argvars, rettv)
8675 typval_T *argvars;
8676 typval_T *rettv;
8678 rettv->vval.v_number = (find_buffer(&argvars[0]) != NULL);
8682 * "buflisted(expr)" function
8684 static void
8685 f_buflisted(argvars, rettv)
8686 typval_T *argvars;
8687 typval_T *rettv;
8689 buf_T *buf;
8691 buf = find_buffer(&argvars[0]);
8692 rettv->vval.v_number = (buf != NULL && buf->b_p_bl);
8696 * "bufloaded(expr)" function
8698 static void
8699 f_bufloaded(argvars, rettv)
8700 typval_T *argvars;
8701 typval_T *rettv;
8703 buf_T *buf;
8705 buf = find_buffer(&argvars[0]);
8706 rettv->vval.v_number = (buf != NULL && buf->b_ml.ml_mfp != NULL);
8709 static buf_T *get_buf_tv __ARGS((typval_T *tv));
8712 * Get buffer by number or pattern.
8714 static buf_T *
8715 get_buf_tv(tv)
8716 typval_T *tv;
8718 char_u *name = tv->vval.v_string;
8719 int save_magic;
8720 char_u *save_cpo;
8721 buf_T *buf;
8723 if (tv->v_type == VAR_NUMBER)
8724 return buflist_findnr((int)tv->vval.v_number);
8725 if (tv->v_type != VAR_STRING)
8726 return NULL;
8727 if (name == NULL || *name == NUL)
8728 return curbuf;
8729 if (name[0] == '$' && name[1] == NUL)
8730 return lastbuf;
8732 /* Ignore 'magic' and 'cpoptions' here to make scripts portable */
8733 save_magic = p_magic;
8734 p_magic = TRUE;
8735 save_cpo = p_cpo;
8736 p_cpo = (char_u *)"";
8738 buf = buflist_findnr(buflist_findpat(name, name + STRLEN(name),
8739 TRUE, FALSE));
8741 p_magic = save_magic;
8742 p_cpo = save_cpo;
8744 /* If not found, try expanding the name, like done for bufexists(). */
8745 if (buf == NULL)
8746 buf = find_buffer(tv);
8748 return buf;
8752 * "bufname(expr)" function
8754 static void
8755 f_bufname(argvars, rettv)
8756 typval_T *argvars;
8757 typval_T *rettv;
8759 buf_T *buf;
8761 (void)get_tv_number(&argvars[0]); /* issue errmsg if type error */
8762 ++emsg_off;
8763 buf = get_buf_tv(&argvars[0]);
8764 rettv->v_type = VAR_STRING;
8765 if (buf != NULL && buf->b_fname != NULL)
8766 rettv->vval.v_string = vim_strsave(buf->b_fname);
8767 else
8768 rettv->vval.v_string = NULL;
8769 --emsg_off;
8773 * "bufnr(expr)" function
8775 static void
8776 f_bufnr(argvars, rettv)
8777 typval_T *argvars;
8778 typval_T *rettv;
8780 buf_T *buf;
8781 int error = FALSE;
8782 char_u *name;
8784 (void)get_tv_number(&argvars[0]); /* issue errmsg if type error */
8785 ++emsg_off;
8786 buf = get_buf_tv(&argvars[0]);
8787 --emsg_off;
8789 /* If the buffer isn't found and the second argument is not zero create a
8790 * new buffer. */
8791 if (buf == NULL
8792 && argvars[1].v_type != VAR_UNKNOWN
8793 && get_tv_number_chk(&argvars[1], &error) != 0
8794 && !error
8795 && (name = get_tv_string_chk(&argvars[0])) != NULL
8796 && !error)
8797 buf = buflist_new(name, NULL, (linenr_T)1, 0);
8799 if (buf != NULL)
8800 rettv->vval.v_number = buf->b_fnum;
8801 else
8802 rettv->vval.v_number = -1;
8806 * "bufwinnr(nr)" function
8808 static void
8809 f_bufwinnr(argvars, rettv)
8810 typval_T *argvars;
8811 typval_T *rettv;
8813 #ifdef FEAT_WINDOWS
8814 win_T *wp;
8815 int winnr = 0;
8816 #endif
8817 buf_T *buf;
8819 (void)get_tv_number(&argvars[0]); /* issue errmsg if type error */
8820 ++emsg_off;
8821 buf = get_buf_tv(&argvars[0]);
8822 #ifdef FEAT_WINDOWS
8823 for (wp = firstwin; wp; wp = wp->w_next)
8825 ++winnr;
8826 if (wp->w_buffer == buf)
8827 break;
8829 rettv->vval.v_number = (wp != NULL ? winnr : -1);
8830 #else
8831 rettv->vval.v_number = (curwin->w_buffer == buf ? 1 : -1);
8832 #endif
8833 --emsg_off;
8837 * "byte2line(byte)" function
8839 /*ARGSUSED*/
8840 static void
8841 f_byte2line(argvars, rettv)
8842 typval_T *argvars;
8843 typval_T *rettv;
8845 #ifndef FEAT_BYTEOFF
8846 rettv->vval.v_number = -1;
8847 #else
8848 long boff = 0;
8850 boff = get_tv_number(&argvars[0]) - 1; /* boff gets -1 on type error */
8851 if (boff < 0)
8852 rettv->vval.v_number = -1;
8853 else
8854 rettv->vval.v_number = ml_find_line_or_offset(curbuf,
8855 (linenr_T)0, &boff);
8856 #endif
8860 * "byteidx()" function
8862 /*ARGSUSED*/
8863 static void
8864 f_byteidx(argvars, rettv)
8865 typval_T *argvars;
8866 typval_T *rettv;
8868 #ifdef FEAT_MBYTE
8869 char_u *t;
8870 #endif
8871 char_u *str;
8872 long idx;
8874 str = get_tv_string_chk(&argvars[0]);
8875 idx = get_tv_number_chk(&argvars[1], NULL);
8876 rettv->vval.v_number = -1;
8877 if (str == NULL || idx < 0)
8878 return;
8880 #ifdef FEAT_MBYTE
8881 t = str;
8882 for ( ; idx > 0; idx--)
8884 if (*t == NUL) /* EOL reached */
8885 return;
8886 t += (*mb_ptr2len)(t);
8888 rettv->vval.v_number = (varnumber_T)(t - str);
8889 #else
8890 if ((size_t)idx <= STRLEN(str))
8891 rettv->vval.v_number = idx;
8892 #endif
8896 * "call(func, arglist)" function
8898 static void
8899 f_call(argvars, rettv)
8900 typval_T *argvars;
8901 typval_T *rettv;
8903 char_u *func;
8904 typval_T argv[MAX_FUNC_ARGS + 1];
8905 int argc = 0;
8906 listitem_T *item;
8907 int dummy;
8908 dict_T *selfdict = NULL;
8910 rettv->vval.v_number = 0;
8911 if (argvars[1].v_type != VAR_LIST)
8913 EMSG(_(e_listreq));
8914 return;
8916 if (argvars[1].vval.v_list == NULL)
8917 return;
8919 if (argvars[0].v_type == VAR_FUNC)
8920 func = argvars[0].vval.v_string;
8921 else
8922 func = get_tv_string(&argvars[0]);
8923 if (*func == NUL)
8924 return; /* type error or empty name */
8926 if (argvars[2].v_type != VAR_UNKNOWN)
8928 if (argvars[2].v_type != VAR_DICT)
8930 EMSG(_(e_dictreq));
8931 return;
8933 selfdict = argvars[2].vval.v_dict;
8936 for (item = argvars[1].vval.v_list->lv_first; item != NULL;
8937 item = item->li_next)
8939 if (argc == MAX_FUNC_ARGS)
8941 EMSG(_("E699: Too many arguments"));
8942 break;
8944 /* Make a copy of each argument. This is needed to be able to set
8945 * v_lock to VAR_FIXED in the copy without changing the original list.
8947 copy_tv(&item->li_tv, &argv[argc++]);
8950 if (item == NULL)
8951 (void)call_func(func, (int)STRLEN(func), rettv, argc, argv,
8952 curwin->w_cursor.lnum, curwin->w_cursor.lnum,
8953 &dummy, TRUE, selfdict);
8955 /* Free the arguments. */
8956 while (argc > 0)
8957 clear_tv(&argv[--argc]);
8960 #ifdef FEAT_FLOAT
8962 * "ceil({float})" function
8964 static void
8965 f_ceil(argvars, rettv)
8966 typval_T *argvars;
8967 typval_T *rettv;
8969 float_T f;
8971 rettv->v_type = VAR_FLOAT;
8972 if (get_float_arg(argvars, &f) == OK)
8973 rettv->vval.v_float = ceil(f);
8974 else
8975 rettv->vval.v_float = 0.0;
8977 #endif
8980 * "changenr()" function
8982 /*ARGSUSED*/
8983 static void
8984 f_changenr(argvars, rettv)
8985 typval_T *argvars;
8986 typval_T *rettv;
8988 rettv->vval.v_number = curbuf->b_u_seq_cur;
8992 * "char2nr(string)" function
8994 static void
8995 f_char2nr(argvars, rettv)
8996 typval_T *argvars;
8997 typval_T *rettv;
8999 #ifdef FEAT_MBYTE
9000 if (has_mbyte)
9001 rettv->vval.v_number = (*mb_ptr2char)(get_tv_string(&argvars[0]));
9002 else
9003 #endif
9004 rettv->vval.v_number = get_tv_string(&argvars[0])[0];
9008 * "cindent(lnum)" function
9010 static void
9011 f_cindent(argvars, rettv)
9012 typval_T *argvars;
9013 typval_T *rettv;
9015 #ifdef FEAT_CINDENT
9016 pos_T pos;
9017 linenr_T lnum;
9019 pos = curwin->w_cursor;
9020 lnum = get_tv_lnum(argvars);
9021 if (lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count)
9023 curwin->w_cursor.lnum = lnum;
9024 rettv->vval.v_number = get_c_indent();
9025 curwin->w_cursor = pos;
9027 else
9028 #endif
9029 rettv->vval.v_number = -1;
9033 * "clearmatches()" function
9035 /*ARGSUSED*/
9036 static void
9037 f_clearmatches(argvars, rettv)
9038 typval_T *argvars;
9039 typval_T *rettv;
9041 #ifdef FEAT_SEARCH_EXTRA
9042 clear_matches(curwin);
9043 #endif
9047 * "col(string)" function
9049 static void
9050 f_col(argvars, rettv)
9051 typval_T *argvars;
9052 typval_T *rettv;
9054 colnr_T col = 0;
9055 pos_T *fp;
9056 int fnum = curbuf->b_fnum;
9058 fp = var2fpos(&argvars[0], FALSE, &fnum);
9059 if (fp != NULL && fnum == curbuf->b_fnum)
9061 if (fp->col == MAXCOL)
9063 /* '> can be MAXCOL, get the length of the line then */
9064 if (fp->lnum <= curbuf->b_ml.ml_line_count)
9065 col = (colnr_T)STRLEN(ml_get(fp->lnum)) + 1;
9066 else
9067 col = MAXCOL;
9069 else
9071 col = fp->col + 1;
9072 #ifdef FEAT_VIRTUALEDIT
9073 /* col(".") when the cursor is on the NUL at the end of the line
9074 * because of "coladd" can be seen as an extra column. */
9075 if (virtual_active() && fp == &curwin->w_cursor)
9077 char_u *p = ml_get_cursor();
9079 if (curwin->w_cursor.coladd >= (colnr_T)chartabsize(p,
9080 curwin->w_virtcol - curwin->w_cursor.coladd))
9082 # ifdef FEAT_MBYTE
9083 int l;
9085 if (*p != NUL && p[(l = (*mb_ptr2len)(p))] == NUL)
9086 col += l;
9087 # else
9088 if (*p != NUL && p[1] == NUL)
9089 ++col;
9090 # endif
9093 #endif
9096 rettv->vval.v_number = col;
9099 #if defined(FEAT_INS_EXPAND)
9101 * "complete()" function
9103 /*ARGSUSED*/
9104 static void
9105 f_complete(argvars, rettv)
9106 typval_T *argvars;
9107 typval_T *rettv;
9109 int startcol;
9111 if ((State & INSERT) == 0)
9113 EMSG(_("E785: complete() can only be used in Insert mode"));
9114 return;
9117 /* Check for undo allowed here, because if something was already inserted
9118 * the line was already saved for undo and this check isn't done. */
9119 if (!undo_allowed())
9120 return;
9122 if (argvars[1].v_type != VAR_LIST || argvars[1].vval.v_list == NULL)
9124 EMSG(_(e_invarg));
9125 return;
9128 startcol = get_tv_number_chk(&argvars[0], NULL);
9129 if (startcol <= 0)
9130 return;
9132 set_completion(startcol - 1, argvars[1].vval.v_list);
9136 * "complete_add()" function
9138 /*ARGSUSED*/
9139 static void
9140 f_complete_add(argvars, rettv)
9141 typval_T *argvars;
9142 typval_T *rettv;
9144 rettv->vval.v_number = ins_compl_add_tv(&argvars[0], 0);
9148 * "complete_check()" function
9150 /*ARGSUSED*/
9151 static void
9152 f_complete_check(argvars, rettv)
9153 typval_T *argvars;
9154 typval_T *rettv;
9156 int saved = RedrawingDisabled;
9158 RedrawingDisabled = 0;
9159 ins_compl_check_keys(0);
9160 rettv->vval.v_number = compl_interrupted;
9161 RedrawingDisabled = saved;
9163 #endif
9166 * "confirm(message, buttons[, default [, type]])" function
9168 /*ARGSUSED*/
9169 static void
9170 f_confirm(argvars, rettv)
9171 typval_T *argvars;
9172 typval_T *rettv;
9174 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
9175 char_u *message;
9176 char_u *buttons = NULL;
9177 char_u buf[NUMBUFLEN];
9178 char_u buf2[NUMBUFLEN];
9179 int def = 1;
9180 int type = VIM_GENERIC;
9181 char_u *typestr;
9182 int error = FALSE;
9184 message = get_tv_string_chk(&argvars[0]);
9185 if (message == NULL)
9186 error = TRUE;
9187 if (argvars[1].v_type != VAR_UNKNOWN)
9189 buttons = get_tv_string_buf_chk(&argvars[1], buf);
9190 if (buttons == NULL)
9191 error = TRUE;
9192 if (argvars[2].v_type != VAR_UNKNOWN)
9194 def = get_tv_number_chk(&argvars[2], &error);
9195 if (argvars[3].v_type != VAR_UNKNOWN)
9197 typestr = get_tv_string_buf_chk(&argvars[3], buf2);
9198 if (typestr == NULL)
9199 error = TRUE;
9200 else
9202 switch (TOUPPER_ASC(*typestr))
9204 case 'E': type = VIM_ERROR; break;
9205 case 'Q': type = VIM_QUESTION; break;
9206 case 'I': type = VIM_INFO; break;
9207 case 'W': type = VIM_WARNING; break;
9208 case 'G': type = VIM_GENERIC; break;
9215 if (buttons == NULL || *buttons == NUL)
9216 buttons = (char_u *)_("&Ok");
9218 if (error)
9219 rettv->vval.v_number = 0;
9220 else
9221 rettv->vval.v_number = do_dialog(type, NULL, message, buttons,
9222 def, NULL);
9223 #else
9224 rettv->vval.v_number = 0;
9225 #endif
9229 * "copy()" function
9231 static void
9232 f_copy(argvars, rettv)
9233 typval_T *argvars;
9234 typval_T *rettv;
9236 item_copy(&argvars[0], rettv, FALSE, 0);
9239 #ifdef FEAT_FLOAT
9241 * "cos()" function
9243 static void
9244 f_cos(argvars, rettv)
9245 typval_T *argvars;
9246 typval_T *rettv;
9248 float_T f;
9250 rettv->v_type = VAR_FLOAT;
9251 if (get_float_arg(argvars, &f) == OK)
9252 rettv->vval.v_float = cos(f);
9253 else
9254 rettv->vval.v_float = 0.0;
9256 #endif
9259 * "count()" function
9261 static void
9262 f_count(argvars, rettv)
9263 typval_T *argvars;
9264 typval_T *rettv;
9266 long n = 0;
9267 int ic = FALSE;
9269 if (argvars[0].v_type == VAR_LIST)
9271 listitem_T *li;
9272 list_T *l;
9273 long idx;
9275 if ((l = argvars[0].vval.v_list) != NULL)
9277 li = l->lv_first;
9278 if (argvars[2].v_type != VAR_UNKNOWN)
9280 int error = FALSE;
9282 ic = get_tv_number_chk(&argvars[2], &error);
9283 if (argvars[3].v_type != VAR_UNKNOWN)
9285 idx = get_tv_number_chk(&argvars[3], &error);
9286 if (!error)
9288 li = list_find(l, idx);
9289 if (li == NULL)
9290 EMSGN(_(e_listidx), idx);
9293 if (error)
9294 li = NULL;
9297 for ( ; li != NULL; li = li->li_next)
9298 if (tv_equal(&li->li_tv, &argvars[1], ic))
9299 ++n;
9302 else if (argvars[0].v_type == VAR_DICT)
9304 int todo;
9305 dict_T *d;
9306 hashitem_T *hi;
9308 if ((d = argvars[0].vval.v_dict) != NULL)
9310 int error = FALSE;
9312 if (argvars[2].v_type != VAR_UNKNOWN)
9314 ic = get_tv_number_chk(&argvars[2], &error);
9315 if (argvars[3].v_type != VAR_UNKNOWN)
9316 EMSG(_(e_invarg));
9319 todo = error ? 0 : (int)d->dv_hashtab.ht_used;
9320 for (hi = d->dv_hashtab.ht_array; todo > 0; ++hi)
9322 if (!HASHITEM_EMPTY(hi))
9324 --todo;
9325 if (tv_equal(&HI2DI(hi)->di_tv, &argvars[1], ic))
9326 ++n;
9331 else
9332 EMSG2(_(e_listdictarg), "count()");
9333 rettv->vval.v_number = n;
9337 * "cscope_connection([{num} , {dbpath} [, {prepend}]])" function
9339 * Checks the existence of a cscope connection.
9341 /*ARGSUSED*/
9342 static void
9343 f_cscope_connection(argvars, rettv)
9344 typval_T *argvars;
9345 typval_T *rettv;
9347 #ifdef FEAT_CSCOPE
9348 int num = 0;
9349 char_u *dbpath = NULL;
9350 char_u *prepend = NULL;
9351 char_u buf[NUMBUFLEN];
9353 if (argvars[0].v_type != VAR_UNKNOWN
9354 && argvars[1].v_type != VAR_UNKNOWN)
9356 num = (int)get_tv_number(&argvars[0]);
9357 dbpath = get_tv_string(&argvars[1]);
9358 if (argvars[2].v_type != VAR_UNKNOWN)
9359 prepend = get_tv_string_buf(&argvars[2], buf);
9362 rettv->vval.v_number = cs_connection(num, dbpath, prepend);
9363 #else
9364 rettv->vval.v_number = 0;
9365 #endif
9369 * "cursor(lnum, col)" function
9371 * Moves the cursor to the specified line and column
9373 /*ARGSUSED*/
9374 static void
9375 f_cursor(argvars, rettv)
9376 typval_T *argvars;
9377 typval_T *rettv;
9379 long line, col;
9380 #ifdef FEAT_VIRTUALEDIT
9381 long coladd = 0;
9382 #endif
9384 if (argvars[1].v_type == VAR_UNKNOWN)
9386 pos_T pos;
9388 if (list2fpos(argvars, &pos, NULL) == FAIL)
9389 return;
9390 line = pos.lnum;
9391 col = pos.col;
9392 #ifdef FEAT_VIRTUALEDIT
9393 coladd = pos.coladd;
9394 #endif
9396 else
9398 line = get_tv_lnum(argvars);
9399 col = get_tv_number_chk(&argvars[1], NULL);
9400 #ifdef FEAT_VIRTUALEDIT
9401 if (argvars[2].v_type != VAR_UNKNOWN)
9402 coladd = get_tv_number_chk(&argvars[2], NULL);
9403 #endif
9405 if (line < 0 || col < 0
9406 #ifdef FEAT_VIRTUALEDIT
9407 || coladd < 0
9408 #endif
9410 return; /* type error; errmsg already given */
9411 if (line > 0)
9412 curwin->w_cursor.lnum = line;
9413 if (col > 0)
9414 curwin->w_cursor.col = col - 1;
9415 #ifdef FEAT_VIRTUALEDIT
9416 curwin->w_cursor.coladd = coladd;
9417 #endif
9419 /* Make sure the cursor is in a valid position. */
9420 check_cursor();
9421 #ifdef FEAT_MBYTE
9422 /* Correct cursor for multi-byte character. */
9423 if (has_mbyte)
9424 mb_adjust_cursor();
9425 #endif
9427 curwin->w_set_curswant = TRUE;
9431 * "deepcopy()" function
9433 static void
9434 f_deepcopy(argvars, rettv)
9435 typval_T *argvars;
9436 typval_T *rettv;
9438 int noref = 0;
9440 if (argvars[1].v_type != VAR_UNKNOWN)
9441 noref = get_tv_number_chk(&argvars[1], NULL);
9442 if (noref < 0 || noref > 1)
9443 EMSG(_(e_invarg));
9444 else
9445 item_copy(&argvars[0], rettv, TRUE, noref == 0 ? ++current_copyID : 0);
9449 * "delete()" function
9451 static void
9452 f_delete(argvars, rettv)
9453 typval_T *argvars;
9454 typval_T *rettv;
9456 if (check_restricted() || check_secure())
9457 rettv->vval.v_number = -1;
9458 else
9459 rettv->vval.v_number = mch_remove(get_tv_string(&argvars[0]));
9463 * "did_filetype()" function
9465 /*ARGSUSED*/
9466 static void
9467 f_did_filetype(argvars, rettv)
9468 typval_T *argvars;
9469 typval_T *rettv;
9471 #ifdef FEAT_AUTOCMD
9472 rettv->vval.v_number = did_filetype;
9473 #else
9474 rettv->vval.v_number = 0;
9475 #endif
9479 * "diff_filler()" function
9481 /*ARGSUSED*/
9482 static void
9483 f_diff_filler(argvars, rettv)
9484 typval_T *argvars;
9485 typval_T *rettv;
9487 #ifdef FEAT_DIFF
9488 rettv->vval.v_number = diff_check_fill(curwin, get_tv_lnum(argvars));
9489 #endif
9493 * "diff_hlID()" function
9495 /*ARGSUSED*/
9496 static void
9497 f_diff_hlID(argvars, rettv)
9498 typval_T *argvars;
9499 typval_T *rettv;
9501 #ifdef FEAT_DIFF
9502 linenr_T lnum = get_tv_lnum(argvars);
9503 static linenr_T prev_lnum = 0;
9504 static int changedtick = 0;
9505 static int fnum = 0;
9506 static int change_start = 0;
9507 static int change_end = 0;
9508 static hlf_T hlID = (hlf_T)0;
9509 int filler_lines;
9510 int col;
9512 if (lnum < 0) /* ignore type error in {lnum} arg */
9513 lnum = 0;
9514 if (lnum != prev_lnum
9515 || changedtick != curbuf->b_changedtick
9516 || fnum != curbuf->b_fnum)
9518 /* New line, buffer, change: need to get the values. */
9519 filler_lines = diff_check(curwin, lnum);
9520 if (filler_lines < 0)
9522 if (filler_lines == -1)
9524 change_start = MAXCOL;
9525 change_end = -1;
9526 if (diff_find_change(curwin, lnum, &change_start, &change_end))
9527 hlID = HLF_ADD; /* added line */
9528 else
9529 hlID = HLF_CHD; /* changed line */
9531 else
9532 hlID = HLF_ADD; /* added line */
9534 else
9535 hlID = (hlf_T)0;
9536 prev_lnum = lnum;
9537 changedtick = curbuf->b_changedtick;
9538 fnum = curbuf->b_fnum;
9541 if (hlID == HLF_CHD || hlID == HLF_TXD)
9543 col = get_tv_number(&argvars[1]) - 1; /* ignore type error in {col} */
9544 if (col >= change_start && col <= change_end)
9545 hlID = HLF_TXD; /* changed text */
9546 else
9547 hlID = HLF_CHD; /* changed line */
9549 rettv->vval.v_number = hlID == (hlf_T)0 ? 0 : (int)hlID;
9550 #endif
9554 * "empty({expr})" function
9556 static void
9557 f_empty(argvars, rettv)
9558 typval_T *argvars;
9559 typval_T *rettv;
9561 int n;
9563 switch (argvars[0].v_type)
9565 case VAR_STRING:
9566 case VAR_FUNC:
9567 n = argvars[0].vval.v_string == NULL
9568 || *argvars[0].vval.v_string == NUL;
9569 break;
9570 case VAR_NUMBER:
9571 n = argvars[0].vval.v_number == 0;
9572 break;
9573 #ifdef FEAT_FLOAT
9574 case VAR_FLOAT:
9575 n = argvars[0].vval.v_float == 0.0;
9576 break;
9577 #endif
9578 case VAR_LIST:
9579 n = argvars[0].vval.v_list == NULL
9580 || argvars[0].vval.v_list->lv_first == NULL;
9581 break;
9582 case VAR_DICT:
9583 n = argvars[0].vval.v_dict == NULL
9584 || argvars[0].vval.v_dict->dv_hashtab.ht_used == 0;
9585 break;
9586 default:
9587 EMSG2(_(e_intern2), "f_empty()");
9588 n = 0;
9591 rettv->vval.v_number = n;
9595 * "escape({string}, {chars})" function
9597 static void
9598 f_escape(argvars, rettv)
9599 typval_T *argvars;
9600 typval_T *rettv;
9602 char_u buf[NUMBUFLEN];
9604 rettv->vval.v_string = vim_strsave_escaped(get_tv_string(&argvars[0]),
9605 get_tv_string_buf(&argvars[1], buf));
9606 rettv->v_type = VAR_STRING;
9610 * "eval()" function
9612 /*ARGSUSED*/
9613 static void
9614 f_eval(argvars, rettv)
9615 typval_T *argvars;
9616 typval_T *rettv;
9618 char_u *s;
9620 s = get_tv_string_chk(&argvars[0]);
9621 if (s != NULL)
9622 s = skipwhite(s);
9624 if (s == NULL || eval1(&s, rettv, TRUE) == FAIL)
9626 rettv->v_type = VAR_NUMBER;
9627 rettv->vval.v_number = 0;
9629 else if (*s != NUL)
9630 EMSG(_(e_trailing));
9634 * "eventhandler()" function
9636 /*ARGSUSED*/
9637 static void
9638 f_eventhandler(argvars, rettv)
9639 typval_T *argvars;
9640 typval_T *rettv;
9642 rettv->vval.v_number = vgetc_busy;
9646 * "executable()" function
9648 static void
9649 f_executable(argvars, rettv)
9650 typval_T *argvars;
9651 typval_T *rettv;
9653 rettv->vval.v_number = mch_can_exe(get_tv_string(&argvars[0]));
9657 * "exists()" function
9659 static void
9660 f_exists(argvars, rettv)
9661 typval_T *argvars;
9662 typval_T *rettv;
9664 char_u *p;
9665 char_u *name;
9666 int n = FALSE;
9667 int len = 0;
9669 p = get_tv_string(&argvars[0]);
9670 if (*p == '$') /* environment variable */
9672 /* first try "normal" environment variables (fast) */
9673 if (mch_getenv(p + 1) != NULL)
9674 n = TRUE;
9675 else
9677 /* try expanding things like $VIM and ${HOME} */
9678 p = expand_env_save(p);
9679 if (p != NULL && *p != '$')
9680 n = TRUE;
9681 vim_free(p);
9684 else if (*p == '&' || *p == '+') /* option */
9686 n = (get_option_tv(&p, NULL, TRUE) == OK);
9687 if (*skipwhite(p) != NUL)
9688 n = FALSE; /* trailing garbage */
9690 else if (*p == '*') /* internal or user defined function */
9692 n = function_exists(p + 1);
9694 else if (*p == ':')
9696 n = cmd_exists(p + 1);
9698 else if (*p == '#')
9700 #ifdef FEAT_AUTOCMD
9701 if (p[1] == '#')
9702 n = autocmd_supported(p + 2);
9703 else
9704 n = au_exists(p + 1);
9705 #endif
9707 else /* internal variable */
9709 char_u *tofree;
9710 typval_T tv;
9712 /* get_name_len() takes care of expanding curly braces */
9713 name = p;
9714 len = get_name_len(&p, &tofree, TRUE, FALSE);
9715 if (len > 0)
9717 if (tofree != NULL)
9718 name = tofree;
9719 n = (get_var_tv(name, len, &tv, FALSE) == OK);
9720 if (n)
9722 /* handle d.key, l[idx], f(expr) */
9723 n = (handle_subscript(&p, &tv, TRUE, FALSE) == OK);
9724 if (n)
9725 clear_tv(&tv);
9728 if (*p != NUL)
9729 n = FALSE;
9731 vim_free(tofree);
9734 rettv->vval.v_number = n;
9738 * "expand()" function
9740 static void
9741 f_expand(argvars, rettv)
9742 typval_T *argvars;
9743 typval_T *rettv;
9745 char_u *s;
9746 int len;
9747 char_u *errormsg;
9748 int flags = WILD_SILENT|WILD_USE_NL|WILD_LIST_NOTFOUND;
9749 expand_T xpc;
9750 int error = FALSE;
9752 rettv->v_type = VAR_STRING;
9753 s = get_tv_string(&argvars[0]);
9754 if (*s == '%' || *s == '#' || *s == '<')
9756 ++emsg_off;
9757 rettv->vval.v_string = eval_vars(s, s, &len, NULL, &errormsg, NULL);
9758 --emsg_off;
9760 else
9762 /* When the optional second argument is non-zero, don't remove matches
9763 * for 'wildignore' and don't put matches for 'suffixes' at the end. */
9764 if (argvars[1].v_type != VAR_UNKNOWN
9765 && get_tv_number_chk(&argvars[1], &error))
9766 flags |= WILD_KEEP_ALL;
9767 if (!error)
9769 ExpandInit(&xpc);
9770 xpc.xp_context = EXPAND_FILES;
9771 rettv->vval.v_string = ExpandOne(&xpc, s, NULL, flags, WILD_ALL);
9773 else
9774 rettv->vval.v_string = NULL;
9779 * "extend(list, list [, idx])" function
9780 * "extend(dict, dict [, action])" function
9782 static void
9783 f_extend(argvars, rettv)
9784 typval_T *argvars;
9785 typval_T *rettv;
9787 rettv->vval.v_number = 0;
9788 if (argvars[0].v_type == VAR_LIST && argvars[1].v_type == VAR_LIST)
9790 list_T *l1, *l2;
9791 listitem_T *item;
9792 long before;
9793 int error = FALSE;
9795 l1 = argvars[0].vval.v_list;
9796 l2 = argvars[1].vval.v_list;
9797 if (l1 != NULL && !tv_check_lock(l1->lv_lock, (char_u *)"extend()")
9798 && l2 != NULL)
9800 if (argvars[2].v_type != VAR_UNKNOWN)
9802 before = get_tv_number_chk(&argvars[2], &error);
9803 if (error)
9804 return; /* type error; errmsg already given */
9806 if (before == l1->lv_len)
9807 item = NULL;
9808 else
9810 item = list_find(l1, before);
9811 if (item == NULL)
9813 EMSGN(_(e_listidx), before);
9814 return;
9818 else
9819 item = NULL;
9820 list_extend(l1, l2, item);
9822 copy_tv(&argvars[0], rettv);
9825 else if (argvars[0].v_type == VAR_DICT && argvars[1].v_type == VAR_DICT)
9827 dict_T *d1, *d2;
9828 dictitem_T *di1;
9829 char_u *action;
9830 int i;
9831 hashitem_T *hi2;
9832 int todo;
9834 d1 = argvars[0].vval.v_dict;
9835 d2 = argvars[1].vval.v_dict;
9836 if (d1 != NULL && !tv_check_lock(d1->dv_lock, (char_u *)"extend()")
9837 && d2 != NULL)
9839 /* Check the third argument. */
9840 if (argvars[2].v_type != VAR_UNKNOWN)
9842 static char *(av[]) = {"keep", "force", "error"};
9844 action = get_tv_string_chk(&argvars[2]);
9845 if (action == NULL)
9846 return; /* type error; errmsg already given */
9847 for (i = 0; i < 3; ++i)
9848 if (STRCMP(action, av[i]) == 0)
9849 break;
9850 if (i == 3)
9852 EMSG2(_(e_invarg2), action);
9853 return;
9856 else
9857 action = (char_u *)"force";
9859 /* Go over all entries in the second dict and add them to the
9860 * first dict. */
9861 todo = (int)d2->dv_hashtab.ht_used;
9862 for (hi2 = d2->dv_hashtab.ht_array; todo > 0; ++hi2)
9864 if (!HASHITEM_EMPTY(hi2))
9866 --todo;
9867 di1 = dict_find(d1, hi2->hi_key, -1);
9868 if (di1 == NULL)
9870 di1 = dictitem_copy(HI2DI(hi2));
9871 if (di1 != NULL && dict_add(d1, di1) == FAIL)
9872 dictitem_free(di1);
9874 else if (*action == 'e')
9876 EMSG2(_("E737: Key already exists: %s"), hi2->hi_key);
9877 break;
9879 else if (*action == 'f')
9881 clear_tv(&di1->di_tv);
9882 copy_tv(&HI2DI(hi2)->di_tv, &di1->di_tv);
9887 copy_tv(&argvars[0], rettv);
9890 else
9891 EMSG2(_(e_listdictarg), "extend()");
9895 * "feedkeys()" function
9897 /*ARGSUSED*/
9898 static void
9899 f_feedkeys(argvars, rettv)
9900 typval_T *argvars;
9901 typval_T *rettv;
9903 int remap = TRUE;
9904 char_u *keys, *flags;
9905 char_u nbuf[NUMBUFLEN];
9906 int typed = FALSE;
9907 char_u *keys_esc;
9909 /* This is not allowed in the sandbox. If the commands would still be
9910 * executed in the sandbox it would be OK, but it probably happens later,
9911 * when "sandbox" is no longer set. */
9912 if (check_secure())
9913 return;
9915 rettv->vval.v_number = 0;
9916 keys = get_tv_string(&argvars[0]);
9917 if (*keys != NUL)
9919 if (argvars[1].v_type != VAR_UNKNOWN)
9921 flags = get_tv_string_buf(&argvars[1], nbuf);
9922 for ( ; *flags != NUL; ++flags)
9924 switch (*flags)
9926 case 'n': remap = FALSE; break;
9927 case 'm': remap = TRUE; break;
9928 case 't': typed = TRUE; break;
9933 /* Need to escape K_SPECIAL and CSI before putting the string in the
9934 * typeahead buffer. */
9935 keys_esc = vim_strsave_escape_csi(keys);
9936 if (keys_esc != NULL)
9938 ins_typebuf(keys_esc, (remap ? REMAP_YES : REMAP_NONE),
9939 typebuf.tb_len, !typed, FALSE);
9940 vim_free(keys_esc);
9941 if (vgetc_busy)
9942 typebuf_was_filled = TRUE;
9948 * "filereadable()" function
9950 static void
9951 f_filereadable(argvars, rettv)
9952 typval_T *argvars;
9953 typval_T *rettv;
9955 int fd;
9956 char_u *p;
9957 int n;
9959 #ifndef O_NONBLOCK
9960 # define O_NONBLOCK 0
9961 #endif
9962 p = get_tv_string(&argvars[0]);
9963 if (*p && !mch_isdir(p) && (fd = mch_open((char *)p,
9964 O_RDONLY | O_NONBLOCK, 0)) >= 0)
9966 n = TRUE;
9967 close(fd);
9969 else
9970 n = FALSE;
9972 rettv->vval.v_number = n;
9976 * Return 0 for not writable, 1 for writable file, 2 for a dir which we have
9977 * rights to write into.
9979 static void
9980 f_filewritable(argvars, rettv)
9981 typval_T *argvars;
9982 typval_T *rettv;
9984 rettv->vval.v_number = filewritable(get_tv_string(&argvars[0]));
9987 static void findfilendir __ARGS((typval_T *argvars, typval_T *rettv, int find_what));
9989 static void
9990 findfilendir(argvars, rettv, find_what)
9991 typval_T *argvars;
9992 typval_T *rettv;
9993 int find_what;
9995 #ifdef FEAT_SEARCHPATH
9996 char_u *fname;
9997 char_u *fresult = NULL;
9998 char_u *path = *curbuf->b_p_path == NUL ? p_path : curbuf->b_p_path;
9999 char_u *p;
10000 char_u pathbuf[NUMBUFLEN];
10001 int count = 1;
10002 int first = TRUE;
10003 int error = FALSE;
10004 #endif
10006 rettv->vval.v_string = NULL;
10007 rettv->v_type = VAR_STRING;
10009 #ifdef FEAT_SEARCHPATH
10010 fname = get_tv_string(&argvars[0]);
10012 if (argvars[1].v_type != VAR_UNKNOWN)
10014 p = get_tv_string_buf_chk(&argvars[1], pathbuf);
10015 if (p == NULL)
10016 error = TRUE;
10017 else
10019 if (*p != NUL)
10020 path = p;
10022 if (argvars[2].v_type != VAR_UNKNOWN)
10023 count = get_tv_number_chk(&argvars[2], &error);
10027 if (count < 0 && rettv_list_alloc(rettv) == FAIL)
10028 error = TRUE;
10030 if (*fname != NUL && !error)
10034 if (rettv->v_type == VAR_STRING)
10035 vim_free(fresult);
10036 fresult = find_file_in_path_option(first ? fname : NULL,
10037 first ? (int)STRLEN(fname) : 0,
10038 0, first, path,
10039 find_what,
10040 curbuf->b_ffname,
10041 find_what == FINDFILE_DIR
10042 ? (char_u *)"" : curbuf->b_p_sua);
10043 first = FALSE;
10045 if (fresult != NULL && rettv->v_type == VAR_LIST)
10046 list_append_string(rettv->vval.v_list, fresult, -1);
10048 } while ((rettv->v_type == VAR_LIST || --count > 0) && fresult != NULL);
10051 if (rettv->v_type == VAR_STRING)
10052 rettv->vval.v_string = fresult;
10053 #endif
10056 static void filter_map __ARGS((typval_T *argvars, typval_T *rettv, int map));
10057 static int filter_map_one __ARGS((typval_T *tv, char_u *expr, int map, int *remp));
10060 * Implementation of map() and filter().
10062 static void
10063 filter_map(argvars, rettv, map)
10064 typval_T *argvars;
10065 typval_T *rettv;
10066 int map;
10068 char_u buf[NUMBUFLEN];
10069 char_u *expr;
10070 listitem_T *li, *nli;
10071 list_T *l = NULL;
10072 dictitem_T *di;
10073 hashtab_T *ht;
10074 hashitem_T *hi;
10075 dict_T *d = NULL;
10076 typval_T save_val;
10077 typval_T save_key;
10078 int rem;
10079 int todo;
10080 char_u *ermsg = map ? (char_u *)"map()" : (char_u *)"filter()";
10081 int save_did_emsg;
10083 rettv->vval.v_number = 0;
10084 if (argvars[0].v_type == VAR_LIST)
10086 if ((l = argvars[0].vval.v_list) == NULL
10087 || (map && tv_check_lock(l->lv_lock, ermsg)))
10088 return;
10090 else if (argvars[0].v_type == VAR_DICT)
10092 if ((d = argvars[0].vval.v_dict) == NULL
10093 || (map && tv_check_lock(d->dv_lock, ermsg)))
10094 return;
10096 else
10098 EMSG2(_(e_listdictarg), ermsg);
10099 return;
10102 expr = get_tv_string_buf_chk(&argvars[1], buf);
10103 /* On type errors, the preceding call has already displayed an error
10104 * message. Avoid a misleading error message for an empty string that
10105 * was not passed as argument. */
10106 if (expr != NULL)
10108 prepare_vimvar(VV_VAL, &save_val);
10109 expr = skipwhite(expr);
10111 /* We reset "did_emsg" to be able to detect whether an error
10112 * occurred during evaluation of the expression. */
10113 save_did_emsg = did_emsg;
10114 did_emsg = FALSE;
10116 if (argvars[0].v_type == VAR_DICT)
10118 prepare_vimvar(VV_KEY, &save_key);
10119 vimvars[VV_KEY].vv_type = VAR_STRING;
10121 ht = &d->dv_hashtab;
10122 hash_lock(ht);
10123 todo = (int)ht->ht_used;
10124 for (hi = ht->ht_array; todo > 0; ++hi)
10126 if (!HASHITEM_EMPTY(hi))
10128 --todo;
10129 di = HI2DI(hi);
10130 if (tv_check_lock(di->di_tv.v_lock, ermsg))
10131 break;
10132 vimvars[VV_KEY].vv_str = vim_strsave(di->di_key);
10133 if (filter_map_one(&di->di_tv, expr, map, &rem) == FAIL
10134 || did_emsg)
10135 break;
10136 if (!map && rem)
10137 dictitem_remove(d, di);
10138 clear_tv(&vimvars[VV_KEY].vv_tv);
10141 hash_unlock(ht);
10143 restore_vimvar(VV_KEY, &save_key);
10145 else
10147 for (li = l->lv_first; li != NULL; li = nli)
10149 if (tv_check_lock(li->li_tv.v_lock, ermsg))
10150 break;
10151 nli = li->li_next;
10152 if (filter_map_one(&li->li_tv, expr, map, &rem) == FAIL
10153 || did_emsg)
10154 break;
10155 if (!map && rem)
10156 listitem_remove(l, li);
10160 restore_vimvar(VV_VAL, &save_val);
10162 did_emsg |= save_did_emsg;
10165 copy_tv(&argvars[0], rettv);
10168 static int
10169 filter_map_one(tv, expr, map, remp)
10170 typval_T *tv;
10171 char_u *expr;
10172 int map;
10173 int *remp;
10175 typval_T rettv;
10176 char_u *s;
10177 int retval = FAIL;
10179 copy_tv(tv, &vimvars[VV_VAL].vv_tv);
10180 s = expr;
10181 if (eval1(&s, &rettv, TRUE) == FAIL)
10182 goto theend;
10183 if (*s != NUL) /* check for trailing chars after expr */
10185 EMSG2(_(e_invexpr2), s);
10186 goto theend;
10188 if (map)
10190 /* map(): replace the list item value */
10191 clear_tv(tv);
10192 rettv.v_lock = 0;
10193 *tv = rettv;
10195 else
10197 int error = FALSE;
10199 /* filter(): when expr is zero remove the item */
10200 *remp = (get_tv_number_chk(&rettv, &error) == 0);
10201 clear_tv(&rettv);
10202 /* On type error, nothing has been removed; return FAIL to stop the
10203 * loop. The error message was given by get_tv_number_chk(). */
10204 if (error)
10205 goto theend;
10207 retval = OK;
10208 theend:
10209 clear_tv(&vimvars[VV_VAL].vv_tv);
10210 return retval;
10214 * "filter()" function
10216 static void
10217 f_filter(argvars, rettv)
10218 typval_T *argvars;
10219 typval_T *rettv;
10221 filter_map(argvars, rettv, FALSE);
10225 * "finddir({fname}[, {path}[, {count}]])" function
10227 static void
10228 f_finddir(argvars, rettv)
10229 typval_T *argvars;
10230 typval_T *rettv;
10232 findfilendir(argvars, rettv, FINDFILE_DIR);
10236 * "findfile({fname}[, {path}[, {count}]])" function
10238 static void
10239 f_findfile(argvars, rettv)
10240 typval_T *argvars;
10241 typval_T *rettv;
10243 findfilendir(argvars, rettv, FINDFILE_FILE);
10246 #ifdef FEAT_FLOAT
10248 * "float2nr({float})" function
10250 static void
10251 f_float2nr(argvars, rettv)
10252 typval_T *argvars;
10253 typval_T *rettv;
10255 float_T f;
10257 if (get_float_arg(argvars, &f) == OK)
10259 if (f < -0x7fffffff)
10260 rettv->vval.v_number = -0x7fffffff;
10261 else if (f > 0x7fffffff)
10262 rettv->vval.v_number = 0x7fffffff;
10263 else
10264 rettv->vval.v_number = (varnumber_T)f;
10266 else
10267 rettv->vval.v_number = 0;
10271 * "floor({float})" function
10273 static void
10274 f_floor(argvars, rettv)
10275 typval_T *argvars;
10276 typval_T *rettv;
10278 float_T f;
10280 rettv->v_type = VAR_FLOAT;
10281 if (get_float_arg(argvars, &f) == OK)
10282 rettv->vval.v_float = floor(f);
10283 else
10284 rettv->vval.v_float = 0.0;
10286 #endif
10289 * "fnameescape({string})" function
10291 static void
10292 f_fnameescape(argvars, rettv)
10293 typval_T *argvars;
10294 typval_T *rettv;
10296 rettv->vval.v_string = vim_strsave_fnameescape(
10297 get_tv_string(&argvars[0]), FALSE);
10298 rettv->v_type = VAR_STRING;
10302 * "fnamemodify({fname}, {mods})" function
10304 static void
10305 f_fnamemodify(argvars, rettv)
10306 typval_T *argvars;
10307 typval_T *rettv;
10309 char_u *fname;
10310 char_u *mods;
10311 int usedlen = 0;
10312 int len;
10313 char_u *fbuf = NULL;
10314 char_u buf[NUMBUFLEN];
10316 fname = get_tv_string_chk(&argvars[0]);
10317 mods = get_tv_string_buf_chk(&argvars[1], buf);
10318 if (fname == NULL || mods == NULL)
10319 fname = NULL;
10320 else
10322 len = (int)STRLEN(fname);
10323 (void)modify_fname(mods, &usedlen, &fname, &fbuf, &len);
10326 rettv->v_type = VAR_STRING;
10327 if (fname == NULL)
10328 rettv->vval.v_string = NULL;
10329 else
10330 rettv->vval.v_string = vim_strnsave(fname, len);
10331 vim_free(fbuf);
10334 static void foldclosed_both __ARGS((typval_T *argvars, typval_T *rettv, int end));
10337 * "foldclosed()" function
10339 static void
10340 foldclosed_both(argvars, rettv, end)
10341 typval_T *argvars;
10342 typval_T *rettv;
10343 int end;
10345 #ifdef FEAT_FOLDING
10346 linenr_T lnum;
10347 linenr_T first, last;
10349 lnum = get_tv_lnum(argvars);
10350 if (lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count)
10352 if (hasFoldingWin(curwin, lnum, &first, &last, FALSE, NULL))
10354 if (end)
10355 rettv->vval.v_number = (varnumber_T)last;
10356 else
10357 rettv->vval.v_number = (varnumber_T)first;
10358 return;
10361 #endif
10362 rettv->vval.v_number = -1;
10366 * "foldclosed()" function
10368 static void
10369 f_foldclosed(argvars, rettv)
10370 typval_T *argvars;
10371 typval_T *rettv;
10373 foldclosed_both(argvars, rettv, FALSE);
10377 * "foldclosedend()" function
10379 static void
10380 f_foldclosedend(argvars, rettv)
10381 typval_T *argvars;
10382 typval_T *rettv;
10384 foldclosed_both(argvars, rettv, TRUE);
10388 * "foldlevel()" function
10390 static void
10391 f_foldlevel(argvars, rettv)
10392 typval_T *argvars;
10393 typval_T *rettv;
10395 #ifdef FEAT_FOLDING
10396 linenr_T lnum;
10398 lnum = get_tv_lnum(argvars);
10399 if (lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count)
10400 rettv->vval.v_number = foldLevel(lnum);
10401 else
10402 #endif
10403 rettv->vval.v_number = 0;
10407 * "foldtext()" function
10409 /*ARGSUSED*/
10410 static void
10411 f_foldtext(argvars, rettv)
10412 typval_T *argvars;
10413 typval_T *rettv;
10415 #ifdef FEAT_FOLDING
10416 linenr_T lnum;
10417 char_u *s;
10418 char_u *r;
10419 int len;
10420 char *txt;
10421 #endif
10423 rettv->v_type = VAR_STRING;
10424 rettv->vval.v_string = NULL;
10425 #ifdef FEAT_FOLDING
10426 if ((linenr_T)vimvars[VV_FOLDSTART].vv_nr > 0
10427 && (linenr_T)vimvars[VV_FOLDEND].vv_nr
10428 <= curbuf->b_ml.ml_line_count
10429 && vimvars[VV_FOLDDASHES].vv_str != NULL)
10431 /* Find first non-empty line in the fold. */
10432 lnum = (linenr_T)vimvars[VV_FOLDSTART].vv_nr;
10433 while (lnum < (linenr_T)vimvars[VV_FOLDEND].vv_nr)
10435 if (!linewhite(lnum))
10436 break;
10437 ++lnum;
10440 /* Find interesting text in this line. */
10441 s = skipwhite(ml_get(lnum));
10442 /* skip C comment-start */
10443 if (s[0] == '/' && (s[1] == '*' || s[1] == '/'))
10445 s = skipwhite(s + 2);
10446 if (*skipwhite(s) == NUL
10447 && lnum + 1 < (linenr_T)vimvars[VV_FOLDEND].vv_nr)
10449 s = skipwhite(ml_get(lnum + 1));
10450 if (*s == '*')
10451 s = skipwhite(s + 1);
10454 txt = _("+-%s%3ld lines: ");
10455 r = alloc((unsigned)(STRLEN(txt)
10456 + STRLEN(vimvars[VV_FOLDDASHES].vv_str) /* for %s */
10457 + 20 /* for %3ld */
10458 + STRLEN(s))); /* concatenated */
10459 if (r != NULL)
10461 sprintf((char *)r, txt, vimvars[VV_FOLDDASHES].vv_str,
10462 (long)((linenr_T)vimvars[VV_FOLDEND].vv_nr
10463 - (linenr_T)vimvars[VV_FOLDSTART].vv_nr + 1));
10464 len = (int)STRLEN(r);
10465 STRCAT(r, s);
10466 /* remove 'foldmarker' and 'commentstring' */
10467 foldtext_cleanup(r + len);
10468 rettv->vval.v_string = r;
10471 #endif
10475 * "foldtextresult(lnum)" function
10477 /*ARGSUSED*/
10478 static void
10479 f_foldtextresult(argvars, rettv)
10480 typval_T *argvars;
10481 typval_T *rettv;
10483 #ifdef FEAT_FOLDING
10484 linenr_T lnum;
10485 char_u *text;
10486 char_u buf[51];
10487 foldinfo_T foldinfo;
10488 int fold_count;
10489 #endif
10491 rettv->v_type = VAR_STRING;
10492 rettv->vval.v_string = NULL;
10493 #ifdef FEAT_FOLDING
10494 lnum = get_tv_lnum(argvars);
10495 /* treat illegal types and illegal string values for {lnum} the same */
10496 if (lnum < 0)
10497 lnum = 0;
10498 fold_count = foldedCount(curwin, lnum, &foldinfo);
10499 if (fold_count > 0)
10501 text = get_foldtext(curwin, lnum, lnum + fold_count - 1,
10502 &foldinfo, buf);
10503 if (text == buf)
10504 text = vim_strsave(text);
10505 rettv->vval.v_string = text;
10507 #endif
10511 * "foreground()" function
10513 /*ARGSUSED*/
10514 static void
10515 f_foreground(argvars, rettv)
10516 typval_T *argvars;
10517 typval_T *rettv;
10519 rettv->vval.v_number = 0;
10520 #ifdef FEAT_GUI
10521 if (gui.in_use)
10522 gui_mch_set_foreground();
10523 #else
10524 # ifdef WIN32
10525 win32_set_foreground();
10526 # endif
10527 #endif
10531 * "function()" function
10533 /*ARGSUSED*/
10534 static void
10535 f_function(argvars, rettv)
10536 typval_T *argvars;
10537 typval_T *rettv;
10539 char_u *s;
10541 rettv->vval.v_number = 0;
10542 s = get_tv_string(&argvars[0]);
10543 if (s == NULL || *s == NUL || VIM_ISDIGIT(*s))
10544 EMSG2(_(e_invarg2), s);
10545 /* Don't check an autoload name for existence here. */
10546 else if (vim_strchr(s, AUTOLOAD_CHAR) == NULL && !function_exists(s))
10547 EMSG2(_("E700: Unknown function: %s"), s);
10548 else
10550 rettv->vval.v_string = vim_strsave(s);
10551 rettv->v_type = VAR_FUNC;
10556 * "garbagecollect()" function
10558 /*ARGSUSED*/
10559 static void
10560 f_garbagecollect(argvars, rettv)
10561 typval_T *argvars;
10562 typval_T *rettv;
10564 /* This is postponed until we are back at the toplevel, because we may be
10565 * using Lists and Dicts internally. E.g.: ":echo [garbagecollect()]". */
10566 want_garbage_collect = TRUE;
10568 if (argvars[0].v_type != VAR_UNKNOWN && get_tv_number(&argvars[0]) == 1)
10569 garbage_collect_at_exit = TRUE;
10573 * "get()" function
10575 static void
10576 f_get(argvars, rettv)
10577 typval_T *argvars;
10578 typval_T *rettv;
10580 listitem_T *li;
10581 list_T *l;
10582 dictitem_T *di;
10583 dict_T *d;
10584 typval_T *tv = NULL;
10586 if (argvars[0].v_type == VAR_LIST)
10588 if ((l = argvars[0].vval.v_list) != NULL)
10590 int error = FALSE;
10592 li = list_find(l, get_tv_number_chk(&argvars[1], &error));
10593 if (!error && li != NULL)
10594 tv = &li->li_tv;
10597 else if (argvars[0].v_type == VAR_DICT)
10599 if ((d = argvars[0].vval.v_dict) != NULL)
10601 di = dict_find(d, get_tv_string(&argvars[1]), -1);
10602 if (di != NULL)
10603 tv = &di->di_tv;
10606 else
10607 EMSG2(_(e_listdictarg), "get()");
10609 if (tv == NULL)
10611 if (argvars[2].v_type == VAR_UNKNOWN)
10612 rettv->vval.v_number = 0;
10613 else
10614 copy_tv(&argvars[2], rettv);
10616 else
10617 copy_tv(tv, rettv);
10620 static void get_buffer_lines __ARGS((buf_T *buf, linenr_T start, linenr_T end, int retlist, typval_T *rettv));
10623 * Get line or list of lines from buffer "buf" into "rettv".
10624 * Return a range (from start to end) of lines in rettv from the specified
10625 * buffer.
10626 * If 'retlist' is TRUE, then the lines are returned as a Vim List.
10628 static void
10629 get_buffer_lines(buf, start, end, retlist, rettv)
10630 buf_T *buf;
10631 linenr_T start;
10632 linenr_T end;
10633 int retlist;
10634 typval_T *rettv;
10636 char_u *p;
10638 if (retlist)
10640 if (rettv_list_alloc(rettv) == FAIL)
10641 return;
10643 else
10644 rettv->vval.v_number = 0;
10646 if (buf == NULL || buf->b_ml.ml_mfp == NULL || start < 0)
10647 return;
10649 if (!retlist)
10651 if (start >= 1 && start <= buf->b_ml.ml_line_count)
10652 p = ml_get_buf(buf, start, FALSE);
10653 else
10654 p = (char_u *)"";
10656 rettv->v_type = VAR_STRING;
10657 rettv->vval.v_string = vim_strsave(p);
10659 else
10661 if (end < start)
10662 return;
10664 if (start < 1)
10665 start = 1;
10666 if (end > buf->b_ml.ml_line_count)
10667 end = buf->b_ml.ml_line_count;
10668 while (start <= end)
10669 if (list_append_string(rettv->vval.v_list,
10670 ml_get_buf(buf, start++, FALSE), -1) == FAIL)
10671 break;
10676 * "getbufline()" function
10678 static void
10679 f_getbufline(argvars, rettv)
10680 typval_T *argvars;
10681 typval_T *rettv;
10683 linenr_T lnum;
10684 linenr_T end;
10685 buf_T *buf;
10687 (void)get_tv_number(&argvars[0]); /* issue errmsg if type error */
10688 ++emsg_off;
10689 buf = get_buf_tv(&argvars[0]);
10690 --emsg_off;
10692 lnum = get_tv_lnum_buf(&argvars[1], buf);
10693 if (argvars[2].v_type == VAR_UNKNOWN)
10694 end = lnum;
10695 else
10696 end = get_tv_lnum_buf(&argvars[2], buf);
10698 get_buffer_lines(buf, lnum, end, TRUE, rettv);
10702 * "getbufvar()" function
10704 static void
10705 f_getbufvar(argvars, rettv)
10706 typval_T *argvars;
10707 typval_T *rettv;
10709 buf_T *buf;
10710 buf_T *save_curbuf;
10711 char_u *varname;
10712 dictitem_T *v;
10714 (void)get_tv_number(&argvars[0]); /* issue errmsg if type error */
10715 varname = get_tv_string_chk(&argvars[1]);
10716 ++emsg_off;
10717 buf = get_buf_tv(&argvars[0]);
10719 rettv->v_type = VAR_STRING;
10720 rettv->vval.v_string = NULL;
10722 if (buf != NULL && varname != NULL)
10724 /* set curbuf to be our buf, temporarily */
10725 save_curbuf = curbuf;
10726 curbuf = buf;
10728 if (*varname == '&') /* buffer-local-option */
10729 get_option_tv(&varname, rettv, TRUE);
10730 else
10732 if (*varname == NUL)
10733 /* let getbufvar({nr}, "") return the "b:" dictionary. The
10734 * scope prefix before the NUL byte is required by
10735 * find_var_in_ht(). */
10736 varname = (char_u *)"b:" + 2;
10737 /* look up the variable */
10738 v = find_var_in_ht(&curbuf->b_vars.dv_hashtab, varname, FALSE);
10739 if (v != NULL)
10740 copy_tv(&v->di_tv, rettv);
10743 /* restore previous notion of curbuf */
10744 curbuf = save_curbuf;
10747 --emsg_off;
10751 * "getchar()" function
10753 static void
10754 f_getchar(argvars, rettv)
10755 typval_T *argvars;
10756 typval_T *rettv;
10758 varnumber_T n;
10759 int error = FALSE;
10761 /* Position the cursor. Needed after a message that ends in a space. */
10762 windgoto(msg_row, msg_col);
10764 ++no_mapping;
10765 ++allow_keys;
10766 for (;;)
10768 if (argvars[0].v_type == VAR_UNKNOWN)
10769 /* getchar(): blocking wait. */
10770 n = safe_vgetc();
10771 else if (get_tv_number_chk(&argvars[0], &error) == 1)
10772 /* getchar(1): only check if char avail */
10773 n = vpeekc();
10774 else if (error || vpeekc() == NUL)
10775 /* illegal argument or getchar(0) and no char avail: return zero */
10776 n = 0;
10777 else
10778 /* getchar(0) and char avail: return char */
10779 n = safe_vgetc();
10780 if (n == K_IGNORE)
10781 continue;
10782 break;
10784 --no_mapping;
10785 --allow_keys;
10787 vimvars[VV_MOUSE_WIN].vv_nr = 0;
10788 vimvars[VV_MOUSE_LNUM].vv_nr = 0;
10789 vimvars[VV_MOUSE_COL].vv_nr = 0;
10791 rettv->vval.v_number = n;
10792 if (IS_SPECIAL(n) || mod_mask != 0)
10794 char_u temp[10]; /* modifier: 3, mbyte-char: 6, NUL: 1 */
10795 int i = 0;
10797 /* Turn a special key into three bytes, plus modifier. */
10798 if (mod_mask != 0)
10800 temp[i++] = K_SPECIAL;
10801 temp[i++] = KS_MODIFIER;
10802 temp[i++] = mod_mask;
10804 if (IS_SPECIAL(n))
10806 temp[i++] = K_SPECIAL;
10807 temp[i++] = K_SECOND(n);
10808 temp[i++] = K_THIRD(n);
10810 #ifdef FEAT_MBYTE
10811 else if (has_mbyte)
10812 i += (*mb_char2bytes)(n, temp + i);
10813 #endif
10814 else
10815 temp[i++] = n;
10816 temp[i++] = NUL;
10817 rettv->v_type = VAR_STRING;
10818 rettv->vval.v_string = vim_strsave(temp);
10820 #ifdef FEAT_MOUSE
10821 if (n == K_LEFTMOUSE
10822 || n == K_LEFTMOUSE_NM
10823 || n == K_LEFTDRAG
10824 || n == K_LEFTRELEASE
10825 || n == K_LEFTRELEASE_NM
10826 || n == K_MIDDLEMOUSE
10827 || n == K_MIDDLEDRAG
10828 || n == K_MIDDLERELEASE
10829 || n == K_RIGHTMOUSE
10830 || n == K_RIGHTDRAG
10831 || n == K_RIGHTRELEASE
10832 || n == K_X1MOUSE
10833 || n == K_X1DRAG
10834 || n == K_X1RELEASE
10835 || n == K_X2MOUSE
10836 || n == K_X2DRAG
10837 || n == K_X2RELEASE
10838 || n == K_MOUSEDOWN
10839 || n == K_MOUSEUP)
10841 int row = mouse_row;
10842 int col = mouse_col;
10843 win_T *win;
10844 linenr_T lnum;
10845 # ifdef FEAT_WINDOWS
10846 win_T *wp;
10847 # endif
10848 int winnr = 1;
10850 if (row >= 0 && col >= 0)
10852 /* Find the window at the mouse coordinates and compute the
10853 * text position. */
10854 win = mouse_find_win(&row, &col);
10855 (void)mouse_comp_pos(win, &row, &col, &lnum);
10856 # ifdef FEAT_WINDOWS
10857 for (wp = firstwin; wp != win; wp = wp->w_next)
10858 ++winnr;
10859 # endif
10860 vimvars[VV_MOUSE_WIN].vv_nr = winnr;
10861 vimvars[VV_MOUSE_LNUM].vv_nr = lnum;
10862 vimvars[VV_MOUSE_COL].vv_nr = col + 1;
10865 #endif
10870 * "getcharmod()" function
10872 /*ARGSUSED*/
10873 static void
10874 f_getcharmod(argvars, rettv)
10875 typval_T *argvars;
10876 typval_T *rettv;
10878 rettv->vval.v_number = mod_mask;
10882 * "getcmdline()" function
10884 /*ARGSUSED*/
10885 static void
10886 f_getcmdline(argvars, rettv)
10887 typval_T *argvars;
10888 typval_T *rettv;
10890 rettv->v_type = VAR_STRING;
10891 rettv->vval.v_string = get_cmdline_str();
10895 * "getcmdpos()" function
10897 /*ARGSUSED*/
10898 static void
10899 f_getcmdpos(argvars, rettv)
10900 typval_T *argvars;
10901 typval_T *rettv;
10903 rettv->vval.v_number = get_cmdline_pos() + 1;
10907 * "getcmdtype()" function
10909 /*ARGSUSED*/
10910 static void
10911 f_getcmdtype(argvars, rettv)
10912 typval_T *argvars;
10913 typval_T *rettv;
10915 rettv->v_type = VAR_STRING;
10916 rettv->vval.v_string = alloc(2);
10917 if (rettv->vval.v_string != NULL)
10919 rettv->vval.v_string[0] = get_cmdline_type();
10920 rettv->vval.v_string[1] = NUL;
10925 * "getcwd()" function
10927 /*ARGSUSED*/
10928 static void
10929 f_getcwd(argvars, rettv)
10930 typval_T *argvars;
10931 typval_T *rettv;
10933 char_u cwd[MAXPATHL];
10935 rettv->v_type = VAR_STRING;
10936 if (mch_dirname(cwd, MAXPATHL) == FAIL)
10937 rettv->vval.v_string = NULL;
10938 else
10940 rettv->vval.v_string = vim_strsave(cwd);
10941 #ifdef BACKSLASH_IN_FILENAME
10942 if (rettv->vval.v_string != NULL)
10943 slash_adjust(rettv->vval.v_string);
10944 #endif
10949 * "getfontname()" function
10951 /*ARGSUSED*/
10952 static void
10953 f_getfontname(argvars, rettv)
10954 typval_T *argvars;
10955 typval_T *rettv;
10957 rettv->v_type = VAR_STRING;
10958 rettv->vval.v_string = NULL;
10959 #ifdef FEAT_GUI
10960 if (gui.in_use)
10962 GuiFont font;
10963 char_u *name = NULL;
10965 if (argvars[0].v_type == VAR_UNKNOWN)
10967 /* Get the "Normal" font. Either the name saved by
10968 * hl_set_font_name() or from the font ID. */
10969 font = gui.norm_font;
10970 name = hl_get_font_name();
10972 else
10974 name = get_tv_string(&argvars[0]);
10975 if (STRCMP(name, "*") == 0) /* don't use font dialog */
10976 return;
10977 font = gui_mch_get_font(name, FALSE);
10978 if (font == NOFONT)
10979 return; /* Invalid font name, return empty string. */
10981 rettv->vval.v_string = gui_mch_get_fontname(font, name);
10982 if (argvars[0].v_type != VAR_UNKNOWN)
10983 gui_mch_free_font(font);
10985 #endif
10989 * "getfperm({fname})" function
10991 static void
10992 f_getfperm(argvars, rettv)
10993 typval_T *argvars;
10994 typval_T *rettv;
10996 char_u *fname;
10997 struct stat st;
10998 char_u *perm = NULL;
10999 char_u flags[] = "rwx";
11000 int i;
11002 fname = get_tv_string(&argvars[0]);
11004 rettv->v_type = VAR_STRING;
11005 if (mch_stat((char *)fname, &st) >= 0)
11007 perm = vim_strsave((char_u *)"---------");
11008 if (perm != NULL)
11010 for (i = 0; i < 9; i++)
11012 if (st.st_mode & (1 << (8 - i)))
11013 perm[i] = flags[i % 3];
11017 rettv->vval.v_string = perm;
11021 * "getfsize({fname})" function
11023 static void
11024 f_getfsize(argvars, rettv)
11025 typval_T *argvars;
11026 typval_T *rettv;
11028 char_u *fname;
11029 struct stat st;
11031 fname = get_tv_string(&argvars[0]);
11033 rettv->v_type = VAR_NUMBER;
11035 if (mch_stat((char *)fname, &st) >= 0)
11037 if (mch_isdir(fname))
11038 rettv->vval.v_number = 0;
11039 else
11041 rettv->vval.v_number = (varnumber_T)st.st_size;
11043 /* non-perfect check for overflow */
11044 if ((off_t)rettv->vval.v_number != (off_t)st.st_size)
11045 rettv->vval.v_number = -2;
11048 else
11049 rettv->vval.v_number = -1;
11053 * "getftime({fname})" function
11055 static void
11056 f_getftime(argvars, rettv)
11057 typval_T *argvars;
11058 typval_T *rettv;
11060 char_u *fname;
11061 struct stat st;
11063 fname = get_tv_string(&argvars[0]);
11065 if (mch_stat((char *)fname, &st) >= 0)
11066 rettv->vval.v_number = (varnumber_T)st.st_mtime;
11067 else
11068 rettv->vval.v_number = -1;
11072 * "getftype({fname})" function
11074 static void
11075 f_getftype(argvars, rettv)
11076 typval_T *argvars;
11077 typval_T *rettv;
11079 char_u *fname;
11080 struct stat st;
11081 char_u *type = NULL;
11082 char *t;
11084 fname = get_tv_string(&argvars[0]);
11086 rettv->v_type = VAR_STRING;
11087 if (mch_lstat((char *)fname, &st) >= 0)
11089 #ifdef S_ISREG
11090 if (S_ISREG(st.st_mode))
11091 t = "file";
11092 else if (S_ISDIR(st.st_mode))
11093 t = "dir";
11094 # ifdef S_ISLNK
11095 else if (S_ISLNK(st.st_mode))
11096 t = "link";
11097 # endif
11098 # ifdef S_ISBLK
11099 else if (S_ISBLK(st.st_mode))
11100 t = "bdev";
11101 # endif
11102 # ifdef S_ISCHR
11103 else if (S_ISCHR(st.st_mode))
11104 t = "cdev";
11105 # endif
11106 # ifdef S_ISFIFO
11107 else if (S_ISFIFO(st.st_mode))
11108 t = "fifo";
11109 # endif
11110 # ifdef S_ISSOCK
11111 else if (S_ISSOCK(st.st_mode))
11112 t = "fifo";
11113 # endif
11114 else
11115 t = "other";
11116 #else
11117 # ifdef S_IFMT
11118 switch (st.st_mode & S_IFMT)
11120 case S_IFREG: t = "file"; break;
11121 case S_IFDIR: t = "dir"; break;
11122 # ifdef S_IFLNK
11123 case S_IFLNK: t = "link"; break;
11124 # endif
11125 # ifdef S_IFBLK
11126 case S_IFBLK: t = "bdev"; break;
11127 # endif
11128 # ifdef S_IFCHR
11129 case S_IFCHR: t = "cdev"; break;
11130 # endif
11131 # ifdef S_IFIFO
11132 case S_IFIFO: t = "fifo"; break;
11133 # endif
11134 # ifdef S_IFSOCK
11135 case S_IFSOCK: t = "socket"; break;
11136 # endif
11137 default: t = "other";
11139 # else
11140 if (mch_isdir(fname))
11141 t = "dir";
11142 else
11143 t = "file";
11144 # endif
11145 #endif
11146 type = vim_strsave((char_u *)t);
11148 rettv->vval.v_string = type;
11152 * "getline(lnum, [end])" function
11154 static void
11155 f_getline(argvars, rettv)
11156 typval_T *argvars;
11157 typval_T *rettv;
11159 linenr_T lnum;
11160 linenr_T end;
11161 int retlist;
11163 lnum = get_tv_lnum(argvars);
11164 if (argvars[1].v_type == VAR_UNKNOWN)
11166 end = 0;
11167 retlist = FALSE;
11169 else
11171 end = get_tv_lnum(&argvars[1]);
11172 retlist = TRUE;
11175 get_buffer_lines(curbuf, lnum, end, retlist, rettv);
11179 * "getmatches()" function
11181 /*ARGSUSED*/
11182 static void
11183 f_getmatches(argvars, rettv)
11184 typval_T *argvars;
11185 typval_T *rettv;
11187 #ifdef FEAT_SEARCH_EXTRA
11188 dict_T *dict;
11189 matchitem_T *cur = curwin->w_match_head;
11191 rettv->vval.v_number = 0;
11193 if (rettv_list_alloc(rettv) == OK)
11195 while (cur != NULL)
11197 dict = dict_alloc();
11198 if (dict == NULL)
11199 return;
11200 dict_add_nr_str(dict, "group", 0L, syn_id2name(cur->hlg_id));
11201 dict_add_nr_str(dict, "pattern", 0L, cur->pattern);
11202 dict_add_nr_str(dict, "priority", (long)cur->priority, NULL);
11203 dict_add_nr_str(dict, "id", (long)cur->id, NULL);
11204 list_append_dict(rettv->vval.v_list, dict);
11205 cur = cur->next;
11208 #endif
11212 * "getpid()" function
11214 /*ARGSUSED*/
11215 static void
11216 f_getpid(argvars, rettv)
11217 typval_T *argvars;
11218 typval_T *rettv;
11220 rettv->vval.v_number = mch_get_pid();
11224 * "getpos(string)" function
11226 static void
11227 f_getpos(argvars, rettv)
11228 typval_T *argvars;
11229 typval_T *rettv;
11231 pos_T *fp;
11232 list_T *l;
11233 int fnum = -1;
11235 if (rettv_list_alloc(rettv) == OK)
11237 l = rettv->vval.v_list;
11238 fp = var2fpos(&argvars[0], TRUE, &fnum);
11239 if (fnum != -1)
11240 list_append_number(l, (varnumber_T)fnum);
11241 else
11242 list_append_number(l, (varnumber_T)0);
11243 list_append_number(l, (fp != NULL) ? (varnumber_T)fp->lnum
11244 : (varnumber_T)0);
11245 list_append_number(l, (fp != NULL)
11246 ? (varnumber_T)(fp->col == MAXCOL ? MAXCOL : fp->col + 1)
11247 : (varnumber_T)0);
11248 list_append_number(l,
11249 #ifdef FEAT_VIRTUALEDIT
11250 (fp != NULL) ? (varnumber_T)fp->coladd :
11251 #endif
11252 (varnumber_T)0);
11254 else
11255 rettv->vval.v_number = FALSE;
11259 * "getqflist()" and "getloclist()" functions
11261 /*ARGSUSED*/
11262 static void
11263 f_getqflist(argvars, rettv)
11264 typval_T *argvars;
11265 typval_T *rettv;
11267 #ifdef FEAT_QUICKFIX
11268 win_T *wp;
11269 #endif
11271 rettv->vval.v_number = 0;
11272 #ifdef FEAT_QUICKFIX
11273 if (rettv_list_alloc(rettv) == OK)
11275 wp = NULL;
11276 if (argvars[0].v_type != VAR_UNKNOWN) /* getloclist() */
11278 wp = find_win_by_nr(&argvars[0], NULL);
11279 if (wp == NULL)
11280 return;
11283 (void)get_errorlist(wp, rettv->vval.v_list);
11285 #endif
11289 * "getreg()" function
11291 static void
11292 f_getreg(argvars, rettv)
11293 typval_T *argvars;
11294 typval_T *rettv;
11296 char_u *strregname;
11297 int regname;
11298 int arg2 = FALSE;
11299 int error = FALSE;
11301 if (argvars[0].v_type != VAR_UNKNOWN)
11303 strregname = get_tv_string_chk(&argvars[0]);
11304 error = strregname == NULL;
11305 if (argvars[1].v_type != VAR_UNKNOWN)
11306 arg2 = get_tv_number_chk(&argvars[1], &error);
11308 else
11309 strregname = vimvars[VV_REG].vv_str;
11310 regname = (strregname == NULL ? '"' : *strregname);
11311 if (regname == 0)
11312 regname = '"';
11314 rettv->v_type = VAR_STRING;
11315 rettv->vval.v_string = error ? NULL :
11316 get_reg_contents(regname, TRUE, arg2);
11320 * "getregtype()" function
11322 static void
11323 f_getregtype(argvars, rettv)
11324 typval_T *argvars;
11325 typval_T *rettv;
11327 char_u *strregname;
11328 int regname;
11329 char_u buf[NUMBUFLEN + 2];
11330 long reglen = 0;
11332 if (argvars[0].v_type != VAR_UNKNOWN)
11334 strregname = get_tv_string_chk(&argvars[0]);
11335 if (strregname == NULL) /* type error; errmsg already given */
11337 rettv->v_type = VAR_STRING;
11338 rettv->vval.v_string = NULL;
11339 return;
11342 else
11343 /* Default to v:register */
11344 strregname = vimvars[VV_REG].vv_str;
11346 regname = (strregname == NULL ? '"' : *strregname);
11347 if (regname == 0)
11348 regname = '"';
11350 buf[0] = NUL;
11351 buf[1] = NUL;
11352 switch (get_reg_type(regname, &reglen))
11354 case MLINE: buf[0] = 'V'; break;
11355 case MCHAR: buf[0] = 'v'; break;
11356 #ifdef FEAT_VISUAL
11357 case MBLOCK:
11358 buf[0] = Ctrl_V;
11359 sprintf((char *)buf + 1, "%ld", reglen + 1);
11360 break;
11361 #endif
11363 rettv->v_type = VAR_STRING;
11364 rettv->vval.v_string = vim_strsave(buf);
11368 * "gettabwinvar()" function
11370 static void
11371 f_gettabwinvar(argvars, rettv)
11372 typval_T *argvars;
11373 typval_T *rettv;
11375 getwinvar(argvars, rettv, 1);
11379 * "getwinposx()" function
11381 /*ARGSUSED*/
11382 static void
11383 f_getwinposx(argvars, rettv)
11384 typval_T *argvars;
11385 typval_T *rettv;
11387 rettv->vval.v_number = -1;
11388 #ifdef FEAT_GUI
11389 if (gui.in_use)
11391 int x, y;
11393 if (gui_mch_get_winpos(&x, &y) == OK)
11394 rettv->vval.v_number = x;
11396 #endif
11400 * "getwinposy()" function
11402 /*ARGSUSED*/
11403 static void
11404 f_getwinposy(argvars, rettv)
11405 typval_T *argvars;
11406 typval_T *rettv;
11408 rettv->vval.v_number = -1;
11409 #ifdef FEAT_GUI
11410 if (gui.in_use)
11412 int x, y;
11414 if (gui_mch_get_winpos(&x, &y) == OK)
11415 rettv->vval.v_number = y;
11417 #endif
11421 * Find window specified by "vp" in tabpage "tp".
11423 static win_T *
11424 find_win_by_nr(vp, tp)
11425 typval_T *vp;
11426 tabpage_T *tp; /* NULL for current tab page */
11428 #ifdef FEAT_WINDOWS
11429 win_T *wp;
11430 #endif
11431 int nr;
11433 nr = get_tv_number_chk(vp, NULL);
11435 #ifdef FEAT_WINDOWS
11436 if (nr < 0)
11437 return NULL;
11438 if (nr == 0)
11439 return curwin;
11441 for (wp = (tp == NULL || tp == curtab) ? firstwin : tp->tp_firstwin;
11442 wp != NULL; wp = wp->w_next)
11443 if (--nr <= 0)
11444 break;
11445 return wp;
11446 #else
11447 if (nr == 0 || nr == 1)
11448 return curwin;
11449 return NULL;
11450 #endif
11454 * "getwinvar()" function
11456 static void
11457 f_getwinvar(argvars, rettv)
11458 typval_T *argvars;
11459 typval_T *rettv;
11461 getwinvar(argvars, rettv, 0);
11465 * getwinvar() and gettabwinvar()
11467 static void
11468 getwinvar(argvars, rettv, off)
11469 typval_T *argvars;
11470 typval_T *rettv;
11471 int off; /* 1 for gettabwinvar() */
11473 win_T *win, *oldcurwin;
11474 char_u *varname;
11475 dictitem_T *v;
11476 tabpage_T *tp;
11478 #ifdef FEAT_WINDOWS
11479 if (off == 1)
11480 tp = find_tabpage((int)get_tv_number_chk(&argvars[0], NULL));
11481 else
11482 tp = curtab;
11483 #endif
11484 win = find_win_by_nr(&argvars[off], tp);
11485 varname = get_tv_string_chk(&argvars[off + 1]);
11486 ++emsg_off;
11488 rettv->v_type = VAR_STRING;
11489 rettv->vval.v_string = NULL;
11491 if (win != NULL && varname != NULL)
11493 /* Set curwin to be our win, temporarily. Also set curbuf, so
11494 * that we can get buffer-local options. */
11495 oldcurwin = curwin;
11496 curwin = win;
11497 curbuf = win->w_buffer;
11499 if (*varname == '&') /* window-local-option */
11500 get_option_tv(&varname, rettv, 1);
11501 else
11503 if (*varname == NUL)
11504 /* let getwinvar({nr}, "") return the "w:" dictionary. The
11505 * scope prefix before the NUL byte is required by
11506 * find_var_in_ht(). */
11507 varname = (char_u *)"w:" + 2;
11508 /* look up the variable */
11509 v = find_var_in_ht(&win->w_vars.dv_hashtab, varname, FALSE);
11510 if (v != NULL)
11511 copy_tv(&v->di_tv, rettv);
11514 /* restore previous notion of curwin */
11515 curwin = oldcurwin;
11516 curbuf = curwin->w_buffer;
11519 --emsg_off;
11523 * "glob()" function
11525 static void
11526 f_glob(argvars, rettv)
11527 typval_T *argvars;
11528 typval_T *rettv;
11530 int flags = WILD_SILENT|WILD_USE_NL;
11531 expand_T xpc;
11532 int error = FALSE;
11534 /* When the optional second argument is non-zero, don't remove matches
11535 * for 'wildignore' and don't put matches for 'suffixes' at the end. */
11536 if (argvars[1].v_type != VAR_UNKNOWN
11537 && get_tv_number_chk(&argvars[1], &error))
11538 flags |= WILD_KEEP_ALL;
11539 rettv->v_type = VAR_STRING;
11540 if (!error)
11542 ExpandInit(&xpc);
11543 xpc.xp_context = EXPAND_FILES;
11544 rettv->vval.v_string = ExpandOne(&xpc, get_tv_string(&argvars[0]),
11545 NULL, flags, WILD_ALL);
11547 else
11548 rettv->vval.v_string = NULL;
11552 * "globpath()" function
11554 static void
11555 f_globpath(argvars, rettv)
11556 typval_T *argvars;
11557 typval_T *rettv;
11559 int flags = 0;
11560 char_u buf1[NUMBUFLEN];
11561 char_u *file = get_tv_string_buf_chk(&argvars[1], buf1);
11562 int error = FALSE;
11564 /* When the optional second argument is non-zero, don't remove matches
11565 * for 'wildignore' and don't put matches for 'suffixes' at the end. */
11566 if (argvars[2].v_type != VAR_UNKNOWN
11567 && get_tv_number_chk(&argvars[2], &error))
11568 flags |= WILD_KEEP_ALL;
11569 rettv->v_type = VAR_STRING;
11570 if (file == NULL || error)
11571 rettv->vval.v_string = NULL;
11572 else
11573 rettv->vval.v_string = globpath(get_tv_string(&argvars[0]), file,
11574 flags);
11578 * "has()" function
11580 static void
11581 f_has(argvars, rettv)
11582 typval_T *argvars;
11583 typval_T *rettv;
11585 int i;
11586 char_u *name;
11587 int n = FALSE;
11588 static char *(has_list[]) =
11590 #ifdef AMIGA
11591 "amiga",
11592 # ifdef FEAT_ARP
11593 "arp",
11594 # endif
11595 #endif
11596 #ifdef __BEOS__
11597 "beos",
11598 #endif
11599 #ifdef MSDOS
11600 # ifdef DJGPP
11601 "dos32",
11602 # else
11603 "dos16",
11604 # endif
11605 #endif
11606 #ifdef MACOS
11607 "mac",
11608 #endif
11609 #if defined(MACOS_X_UNIX)
11610 "macunix",
11611 #endif
11612 #ifdef OS2
11613 "os2",
11614 #endif
11615 #ifdef __QNX__
11616 "qnx",
11617 #endif
11618 #ifdef RISCOS
11619 "riscos",
11620 #endif
11621 #ifdef UNIX
11622 "unix",
11623 #endif
11624 #ifdef VMS
11625 "vms",
11626 #endif
11627 #ifdef WIN16
11628 "win16",
11629 #endif
11630 #ifdef WIN32
11631 "win32",
11632 #endif
11633 #if defined(UNIX) && (defined(__CYGWIN32__) || defined(__CYGWIN__))
11634 "win32unix",
11635 #endif
11636 #ifdef WIN64
11637 "win64",
11638 #endif
11639 #ifdef EBCDIC
11640 "ebcdic",
11641 #endif
11642 #ifndef CASE_INSENSITIVE_FILENAME
11643 "fname_case",
11644 #endif
11645 #ifdef FEAT_ARABIC
11646 "arabic",
11647 #endif
11648 #ifdef FEAT_AUTOCMD
11649 "autocmd",
11650 #endif
11651 #ifdef FEAT_BEVAL
11652 "balloon_eval",
11653 # ifndef FEAT_GUI_W32 /* other GUIs always have multiline balloons */
11654 "balloon_multiline",
11655 # endif
11656 #endif
11657 #if defined(SOME_BUILTIN_TCAPS) || defined(ALL_BUILTIN_TCAPS)
11658 "builtin_terms",
11659 # ifdef ALL_BUILTIN_TCAPS
11660 "all_builtin_terms",
11661 # endif
11662 #endif
11663 #ifdef FEAT_BYTEOFF
11664 "byte_offset",
11665 #endif
11666 #ifdef FEAT_CINDENT
11667 "cindent",
11668 #endif
11669 #ifdef FEAT_CLIENTSERVER
11670 "clientserver",
11671 #endif
11672 #ifdef FEAT_CLIPBOARD
11673 "clipboard",
11674 #endif
11675 #ifdef FEAT_CMDL_COMPL
11676 "cmdline_compl",
11677 #endif
11678 #ifdef FEAT_CMDHIST
11679 "cmdline_hist",
11680 #endif
11681 #ifdef FEAT_COMMENTS
11682 "comments",
11683 #endif
11684 #ifdef FEAT_CRYPT
11685 "cryptv",
11686 #endif
11687 #ifdef FEAT_CSCOPE
11688 "cscope",
11689 #endif
11690 #ifdef CURSOR_SHAPE
11691 "cursorshape",
11692 #endif
11693 #ifdef DEBUG
11694 "debug",
11695 #endif
11696 #ifdef FEAT_CON_DIALOG
11697 "dialog_con",
11698 #endif
11699 #ifdef FEAT_GUI_DIALOG
11700 "dialog_gui",
11701 #endif
11702 #ifdef FEAT_DIFF
11703 "diff",
11704 #endif
11705 #ifdef FEAT_DIGRAPHS
11706 "digraphs",
11707 #endif
11708 #ifdef FEAT_DND
11709 "dnd",
11710 #endif
11711 #ifdef FEAT_EMACS_TAGS
11712 "emacs_tags",
11713 #endif
11714 "eval", /* always present, of course! */
11715 #ifdef FEAT_EX_EXTRA
11716 "ex_extra",
11717 #endif
11718 #ifdef FEAT_SEARCH_EXTRA
11719 "extra_search",
11720 #endif
11721 #ifdef FEAT_FKMAP
11722 "farsi",
11723 #endif
11724 #ifdef FEAT_SEARCHPATH
11725 "file_in_path",
11726 #endif
11727 #if defined(UNIX) && !defined(USE_SYSTEM)
11728 "filterpipe",
11729 #endif
11730 #ifdef FEAT_FIND_ID
11731 "find_in_path",
11732 #endif
11733 #ifdef FEAT_FLOAT
11734 "float",
11735 #endif
11736 #ifdef FEAT_FOLDING
11737 "folding",
11738 #endif
11739 #ifdef FEAT_FOOTER
11740 "footer",
11741 #endif
11742 #if !defined(USE_SYSTEM) && defined(UNIX)
11743 "fork",
11744 #endif
11745 #ifdef FEAT_GETTEXT
11746 "gettext",
11747 #endif
11748 #ifdef FEAT_GUI
11749 "gui",
11750 #endif
11751 #ifdef FEAT_GUI_ATHENA
11752 # ifdef FEAT_GUI_NEXTAW
11753 "gui_neXtaw",
11754 # else
11755 "gui_athena",
11756 # endif
11757 #endif
11758 #ifdef FEAT_GUI_GTK
11759 "gui_gtk",
11760 # ifdef HAVE_GTK2
11761 "gui_gtk2",
11762 # endif
11763 #endif
11764 #ifdef FEAT_GUI_GNOME
11765 "gui_gnome",
11766 #endif
11767 #ifdef FEAT_GUI_MAC
11768 "gui_mac",
11769 #endif
11770 #ifdef FEAT_GUI_MOTIF
11771 "gui_motif",
11772 #endif
11773 #ifdef FEAT_GUI_PHOTON
11774 "gui_photon",
11775 #endif
11776 #ifdef FEAT_GUI_W16
11777 "gui_win16",
11778 #endif
11779 #ifdef FEAT_GUI_W32
11780 "gui_win32",
11781 #endif
11782 #ifdef FEAT_HANGULIN
11783 "hangul_input",
11784 #endif
11785 #if defined(HAVE_ICONV_H) && defined(USE_ICONV)
11786 "iconv",
11787 #endif
11788 #ifdef FEAT_INS_EXPAND
11789 "insert_expand",
11790 #endif
11791 #ifdef FEAT_JUMPLIST
11792 "jumplist",
11793 #endif
11794 #ifdef FEAT_KEYMAP
11795 "keymap",
11796 #endif
11797 #ifdef FEAT_LANGMAP
11798 "langmap",
11799 #endif
11800 #ifdef FEAT_LIBCALL
11801 "libcall",
11802 #endif
11803 #ifdef FEAT_LINEBREAK
11804 "linebreak",
11805 #endif
11806 #ifdef FEAT_LISP
11807 "lispindent",
11808 #endif
11809 #ifdef FEAT_LISTCMDS
11810 "listcmds",
11811 #endif
11812 #ifdef FEAT_LOCALMAP
11813 "localmap",
11814 #endif
11815 #ifdef FEAT_MENU
11816 "menu",
11817 #endif
11818 #ifdef FEAT_SESSION
11819 "mksession",
11820 #endif
11821 #ifdef FEAT_MODIFY_FNAME
11822 "modify_fname",
11823 #endif
11824 #ifdef FEAT_MOUSE
11825 "mouse",
11826 #endif
11827 #ifdef FEAT_MOUSESHAPE
11828 "mouseshape",
11829 #endif
11830 #if defined(UNIX) || defined(VMS)
11831 # ifdef FEAT_MOUSE_DEC
11832 "mouse_dec",
11833 # endif
11834 # ifdef FEAT_MOUSE_GPM
11835 "mouse_gpm",
11836 # endif
11837 # ifdef FEAT_MOUSE_JSB
11838 "mouse_jsbterm",
11839 # endif
11840 # ifdef FEAT_MOUSE_NET
11841 "mouse_netterm",
11842 # endif
11843 # ifdef FEAT_MOUSE_PTERM
11844 "mouse_pterm",
11845 # endif
11846 # ifdef FEAT_SYSMOUSE
11847 "mouse_sysmouse",
11848 # endif
11849 # ifdef FEAT_MOUSE_XTERM
11850 "mouse_xterm",
11851 # endif
11852 #endif
11853 #ifdef FEAT_MBYTE
11854 "multi_byte",
11855 #endif
11856 #ifdef FEAT_MBYTE_IME
11857 "multi_byte_ime",
11858 #endif
11859 #ifdef FEAT_MULTI_LANG
11860 "multi_lang",
11861 #endif
11862 #ifdef FEAT_MZSCHEME
11863 #ifndef DYNAMIC_MZSCHEME
11864 "mzscheme",
11865 #endif
11866 #endif
11867 #ifdef FEAT_OLE
11868 "ole",
11869 #endif
11870 #ifdef FEAT_OSFILETYPE
11871 "osfiletype",
11872 #endif
11873 #ifdef FEAT_PATH_EXTRA
11874 "path_extra",
11875 #endif
11876 #ifdef FEAT_PERL
11877 #ifndef DYNAMIC_PERL
11878 "perl",
11879 #endif
11880 #endif
11881 #ifdef FEAT_PYTHON
11882 #ifndef DYNAMIC_PYTHON
11883 "python",
11884 #endif
11885 #endif
11886 #ifdef FEAT_POSTSCRIPT
11887 "postscript",
11888 #endif
11889 #ifdef FEAT_PRINTER
11890 "printer",
11891 #endif
11892 #ifdef FEAT_PROFILE
11893 "profile",
11894 #endif
11895 #ifdef FEAT_RELTIME
11896 "reltime",
11897 #endif
11898 #ifdef FEAT_QUICKFIX
11899 "quickfix",
11900 #endif
11901 #ifdef FEAT_RIGHTLEFT
11902 "rightleft",
11903 #endif
11904 #if defined(FEAT_RUBY) && !defined(DYNAMIC_RUBY)
11905 "ruby",
11906 #endif
11907 #ifdef FEAT_SCROLLBIND
11908 "scrollbind",
11909 #endif
11910 #ifdef FEAT_CMDL_INFO
11911 "showcmd",
11912 "cmdline_info",
11913 #endif
11914 #ifdef FEAT_SIGNS
11915 "signs",
11916 #endif
11917 #ifdef FEAT_SMARTINDENT
11918 "smartindent",
11919 #endif
11920 #ifdef FEAT_SNIFF
11921 "sniff",
11922 #endif
11923 #ifdef FEAT_STL_OPT
11924 "statusline",
11925 #endif
11926 #ifdef FEAT_SUN_WORKSHOP
11927 "sun_workshop",
11928 #endif
11929 #ifdef FEAT_NETBEANS_INTG
11930 "netbeans_intg",
11931 #endif
11932 #ifdef FEAT_SPELL
11933 "spell",
11934 #endif
11935 #ifdef FEAT_SYN_HL
11936 "syntax",
11937 #endif
11938 #if defined(USE_SYSTEM) || !defined(UNIX)
11939 "system",
11940 #endif
11941 #ifdef FEAT_TAG_BINS
11942 "tag_binary",
11943 #endif
11944 #ifdef FEAT_TAG_OLDSTATIC
11945 "tag_old_static",
11946 #endif
11947 #ifdef FEAT_TAG_ANYWHITE
11948 "tag_any_white",
11949 #endif
11950 #ifdef FEAT_TCL
11951 # ifndef DYNAMIC_TCL
11952 "tcl",
11953 # endif
11954 #endif
11955 #ifdef TERMINFO
11956 "terminfo",
11957 #endif
11958 #ifdef FEAT_TERMRESPONSE
11959 "termresponse",
11960 #endif
11961 #ifdef FEAT_TEXTOBJ
11962 "textobjects",
11963 #endif
11964 #ifdef HAVE_TGETENT
11965 "tgetent",
11966 #endif
11967 #ifdef FEAT_TITLE
11968 "title",
11969 #endif
11970 #ifdef FEAT_TOOLBAR
11971 "toolbar",
11972 #endif
11973 #ifdef FEAT_USR_CMDS
11974 "user-commands", /* was accidentally included in 5.4 */
11975 "user_commands",
11976 #endif
11977 #ifdef FEAT_VIMINFO
11978 "viminfo",
11979 #endif
11980 #ifdef FEAT_VERTSPLIT
11981 "vertsplit",
11982 #endif
11983 #ifdef FEAT_VIRTUALEDIT
11984 "virtualedit",
11985 #endif
11986 #ifdef FEAT_VISUAL
11987 "visual",
11988 #endif
11989 #ifdef FEAT_VISUALEXTRA
11990 "visualextra",
11991 #endif
11992 #ifdef FEAT_VREPLACE
11993 "vreplace",
11994 #endif
11995 #ifdef FEAT_WILDIGN
11996 "wildignore",
11997 #endif
11998 #ifdef FEAT_WILDMENU
11999 "wildmenu",
12000 #endif
12001 #ifdef FEAT_WINDOWS
12002 "windows",
12003 #endif
12004 #ifdef FEAT_WAK
12005 "winaltkeys",
12006 #endif
12007 #ifdef FEAT_WRITEBACKUP
12008 "writebackup",
12009 #endif
12010 #ifdef FEAT_XIM
12011 "xim",
12012 #endif
12013 #ifdef FEAT_XFONTSET
12014 "xfontset",
12015 #endif
12016 #ifdef USE_XSMP
12017 "xsmp",
12018 #endif
12019 #ifdef USE_XSMP_INTERACT
12020 "xsmp_interact",
12021 #endif
12022 #ifdef FEAT_XCLIPBOARD
12023 "xterm_clipboard",
12024 #endif
12025 #ifdef FEAT_XTERM_SAVE
12026 "xterm_save",
12027 #endif
12028 #if defined(UNIX) && defined(FEAT_X11)
12029 "X11",
12030 #endif
12031 NULL
12034 name = get_tv_string(&argvars[0]);
12035 for (i = 0; has_list[i] != NULL; ++i)
12036 if (STRICMP(name, has_list[i]) == 0)
12038 n = TRUE;
12039 break;
12042 if (n == FALSE)
12044 if (STRNICMP(name, "patch", 5) == 0)
12045 n = has_patch(atoi((char *)name + 5));
12046 else if (STRICMP(name, "vim_starting") == 0)
12047 n = (starting != 0);
12048 #if defined(FEAT_BEVAL) && defined(FEAT_GUI_W32)
12049 else if (STRICMP(name, "balloon_multiline") == 0)
12050 n = multiline_balloon_available();
12051 #endif
12052 #ifdef DYNAMIC_TCL
12053 else if (STRICMP(name, "tcl") == 0)
12054 n = tcl_enabled(FALSE);
12055 #endif
12056 #if defined(USE_ICONV) && defined(DYNAMIC_ICONV)
12057 else if (STRICMP(name, "iconv") == 0)
12058 n = iconv_enabled(FALSE);
12059 #endif
12060 #ifdef DYNAMIC_MZSCHEME
12061 else if (STRICMP(name, "mzscheme") == 0)
12062 n = mzscheme_enabled(FALSE);
12063 #endif
12064 #ifdef DYNAMIC_RUBY
12065 else if (STRICMP(name, "ruby") == 0)
12066 n = ruby_enabled(FALSE);
12067 #endif
12068 #ifdef DYNAMIC_PYTHON
12069 else if (STRICMP(name, "python") == 0)
12070 n = python_enabled(FALSE);
12071 #endif
12072 #ifdef DYNAMIC_PERL
12073 else if (STRICMP(name, "perl") == 0)
12074 n = perl_enabled(FALSE);
12075 #endif
12076 #ifdef FEAT_GUI
12077 else if (STRICMP(name, "gui_running") == 0)
12078 n = (gui.in_use || gui.starting);
12079 # ifdef FEAT_GUI_W32
12080 else if (STRICMP(name, "gui_win32s") == 0)
12081 n = gui_is_win32s();
12082 # endif
12083 # ifdef FEAT_BROWSE
12084 else if (STRICMP(name, "browse") == 0)
12085 n = gui.in_use; /* gui_mch_browse() works when GUI is running */
12086 # endif
12087 #endif
12088 #ifdef FEAT_SYN_HL
12089 else if (STRICMP(name, "syntax_items") == 0)
12090 n = syntax_present(curbuf);
12091 #endif
12092 #if defined(WIN3264)
12093 else if (STRICMP(name, "win95") == 0)
12094 n = mch_windows95();
12095 #endif
12096 #ifdef FEAT_NETBEANS_INTG
12097 else if (STRICMP(name, "netbeans_enabled") == 0)
12098 n = usingNetbeans;
12099 #endif
12102 rettv->vval.v_number = n;
12106 * "has_key()" function
12108 static void
12109 f_has_key(argvars, rettv)
12110 typval_T *argvars;
12111 typval_T *rettv;
12113 rettv->vval.v_number = 0;
12114 if (argvars[0].v_type != VAR_DICT)
12116 EMSG(_(e_dictreq));
12117 return;
12119 if (argvars[0].vval.v_dict == NULL)
12120 return;
12122 rettv->vval.v_number = dict_find(argvars[0].vval.v_dict,
12123 get_tv_string(&argvars[1]), -1) != NULL;
12127 * "haslocaldir()" function
12129 /*ARGSUSED*/
12130 static void
12131 f_haslocaldir(argvars, rettv)
12132 typval_T *argvars;
12133 typval_T *rettv;
12135 rettv->vval.v_number = (curwin->w_localdir != NULL);
12139 * "hasmapto()" function
12141 static void
12142 f_hasmapto(argvars, rettv)
12143 typval_T *argvars;
12144 typval_T *rettv;
12146 char_u *name;
12147 char_u *mode;
12148 char_u buf[NUMBUFLEN];
12149 int abbr = FALSE;
12151 name = get_tv_string(&argvars[0]);
12152 if (argvars[1].v_type == VAR_UNKNOWN)
12153 mode = (char_u *)"nvo";
12154 else
12156 mode = get_tv_string_buf(&argvars[1], buf);
12157 if (argvars[2].v_type != VAR_UNKNOWN)
12158 abbr = get_tv_number(&argvars[2]);
12161 if (map_to_exists(name, mode, abbr))
12162 rettv->vval.v_number = TRUE;
12163 else
12164 rettv->vval.v_number = FALSE;
12168 * "histadd()" function
12170 /*ARGSUSED*/
12171 static void
12172 f_histadd(argvars, rettv)
12173 typval_T *argvars;
12174 typval_T *rettv;
12176 #ifdef FEAT_CMDHIST
12177 int histype;
12178 char_u *str;
12179 char_u buf[NUMBUFLEN];
12180 #endif
12182 rettv->vval.v_number = FALSE;
12183 if (check_restricted() || check_secure())
12184 return;
12185 #ifdef FEAT_CMDHIST
12186 str = get_tv_string_chk(&argvars[0]); /* NULL on type error */
12187 histype = str != NULL ? get_histtype(str) : -1;
12188 if (histype >= 0)
12190 str = get_tv_string_buf(&argvars[1], buf);
12191 if (*str != NUL)
12193 add_to_history(histype, str, FALSE, NUL);
12194 rettv->vval.v_number = TRUE;
12195 return;
12198 #endif
12202 * "histdel()" function
12204 /*ARGSUSED*/
12205 static void
12206 f_histdel(argvars, rettv)
12207 typval_T *argvars;
12208 typval_T *rettv;
12210 #ifdef FEAT_CMDHIST
12211 int n;
12212 char_u buf[NUMBUFLEN];
12213 char_u *str;
12215 str = get_tv_string_chk(&argvars[0]); /* NULL on type error */
12216 if (str == NULL)
12217 n = 0;
12218 else if (argvars[1].v_type == VAR_UNKNOWN)
12219 /* only one argument: clear entire history */
12220 n = clr_history(get_histtype(str));
12221 else if (argvars[1].v_type == VAR_NUMBER)
12222 /* index given: remove that entry */
12223 n = del_history_idx(get_histtype(str),
12224 (int)get_tv_number(&argvars[1]));
12225 else
12226 /* string given: remove all matching entries */
12227 n = del_history_entry(get_histtype(str),
12228 get_tv_string_buf(&argvars[1], buf));
12229 rettv->vval.v_number = n;
12230 #else
12231 rettv->vval.v_number = 0;
12232 #endif
12236 * "histget()" function
12238 /*ARGSUSED*/
12239 static void
12240 f_histget(argvars, rettv)
12241 typval_T *argvars;
12242 typval_T *rettv;
12244 #ifdef FEAT_CMDHIST
12245 int type;
12246 int idx;
12247 char_u *str;
12249 str = get_tv_string_chk(&argvars[0]); /* NULL on type error */
12250 if (str == NULL)
12251 rettv->vval.v_string = NULL;
12252 else
12254 type = get_histtype(str);
12255 if (argvars[1].v_type == VAR_UNKNOWN)
12256 idx = get_history_idx(type);
12257 else
12258 idx = (int)get_tv_number_chk(&argvars[1], NULL);
12259 /* -1 on type error */
12260 rettv->vval.v_string = vim_strsave(get_history_entry(type, idx));
12262 #else
12263 rettv->vval.v_string = NULL;
12264 #endif
12265 rettv->v_type = VAR_STRING;
12269 * "histnr()" function
12271 /*ARGSUSED*/
12272 static void
12273 f_histnr(argvars, rettv)
12274 typval_T *argvars;
12275 typval_T *rettv;
12277 int i;
12279 #ifdef FEAT_CMDHIST
12280 char_u *history = get_tv_string_chk(&argvars[0]);
12282 i = history == NULL ? HIST_CMD - 1 : get_histtype(history);
12283 if (i >= HIST_CMD && i < HIST_COUNT)
12284 i = get_history_idx(i);
12285 else
12286 #endif
12287 i = -1;
12288 rettv->vval.v_number = i;
12292 * "highlightID(name)" function
12294 static void
12295 f_hlID(argvars, rettv)
12296 typval_T *argvars;
12297 typval_T *rettv;
12299 rettv->vval.v_number = syn_name2id(get_tv_string(&argvars[0]));
12303 * "highlight_exists()" function
12305 static void
12306 f_hlexists(argvars, rettv)
12307 typval_T *argvars;
12308 typval_T *rettv;
12310 rettv->vval.v_number = highlight_exists(get_tv_string(&argvars[0]));
12314 * "hostname()" function
12316 /*ARGSUSED*/
12317 static void
12318 f_hostname(argvars, rettv)
12319 typval_T *argvars;
12320 typval_T *rettv;
12322 char_u hostname[256];
12324 mch_get_host_name(hostname, 256);
12325 rettv->v_type = VAR_STRING;
12326 rettv->vval.v_string = vim_strsave(hostname);
12330 * iconv() function
12332 /*ARGSUSED*/
12333 static void
12334 f_iconv(argvars, rettv)
12335 typval_T *argvars;
12336 typval_T *rettv;
12338 #ifdef FEAT_MBYTE
12339 char_u buf1[NUMBUFLEN];
12340 char_u buf2[NUMBUFLEN];
12341 char_u *from, *to, *str;
12342 vimconv_T vimconv;
12343 #endif
12345 rettv->v_type = VAR_STRING;
12346 rettv->vval.v_string = NULL;
12348 #ifdef FEAT_MBYTE
12349 str = get_tv_string(&argvars[0]);
12350 from = enc_canonize(enc_skip(get_tv_string_buf(&argvars[1], buf1)));
12351 to = enc_canonize(enc_skip(get_tv_string_buf(&argvars[2], buf2)));
12352 vimconv.vc_type = CONV_NONE;
12353 convert_setup(&vimconv, from, to);
12355 /* If the encodings are equal, no conversion needed. */
12356 if (vimconv.vc_type == CONV_NONE)
12357 rettv->vval.v_string = vim_strsave(str);
12358 else
12359 rettv->vval.v_string = string_convert(&vimconv, str, NULL);
12361 convert_setup(&vimconv, NULL, NULL);
12362 vim_free(from);
12363 vim_free(to);
12364 #endif
12368 * "indent()" function
12370 static void
12371 f_indent(argvars, rettv)
12372 typval_T *argvars;
12373 typval_T *rettv;
12375 linenr_T lnum;
12377 lnum = get_tv_lnum(argvars);
12378 if (lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count)
12379 rettv->vval.v_number = get_indent_lnum(lnum);
12380 else
12381 rettv->vval.v_number = -1;
12385 * "index()" function
12387 static void
12388 f_index(argvars, rettv)
12389 typval_T *argvars;
12390 typval_T *rettv;
12392 list_T *l;
12393 listitem_T *item;
12394 long idx = 0;
12395 int ic = FALSE;
12397 rettv->vval.v_number = -1;
12398 if (argvars[0].v_type != VAR_LIST)
12400 EMSG(_(e_listreq));
12401 return;
12403 l = argvars[0].vval.v_list;
12404 if (l != NULL)
12406 item = l->lv_first;
12407 if (argvars[2].v_type != VAR_UNKNOWN)
12409 int error = FALSE;
12411 /* Start at specified item. Use the cached index that list_find()
12412 * sets, so that a negative number also works. */
12413 item = list_find(l, get_tv_number_chk(&argvars[2], &error));
12414 idx = l->lv_idx;
12415 if (argvars[3].v_type != VAR_UNKNOWN)
12416 ic = get_tv_number_chk(&argvars[3], &error);
12417 if (error)
12418 item = NULL;
12421 for ( ; item != NULL; item = item->li_next, ++idx)
12422 if (tv_equal(&item->li_tv, &argvars[1], ic))
12424 rettv->vval.v_number = idx;
12425 break;
12430 static int inputsecret_flag = 0;
12432 static void get_user_input __ARGS((typval_T *argvars, typval_T *rettv, int inputdialog));
12435 * This function is used by f_input() and f_inputdialog() functions. The third
12436 * argument to f_input() specifies the type of completion to use at the
12437 * prompt. The third argument to f_inputdialog() specifies the value to return
12438 * when the user cancels the prompt.
12440 static void
12441 get_user_input(argvars, rettv, inputdialog)
12442 typval_T *argvars;
12443 typval_T *rettv;
12444 int inputdialog;
12446 char_u *prompt = get_tv_string_chk(&argvars[0]);
12447 char_u *p = NULL;
12448 int c;
12449 char_u buf[NUMBUFLEN];
12450 int cmd_silent_save = cmd_silent;
12451 char_u *defstr = (char_u *)"";
12452 int xp_type = EXPAND_NOTHING;
12453 char_u *xp_arg = NULL;
12455 rettv->v_type = VAR_STRING;
12456 rettv->vval.v_string = NULL;
12458 #ifdef NO_CONSOLE_INPUT
12459 /* While starting up, there is no place to enter text. */
12460 if (no_console_input())
12461 return;
12462 #endif
12464 cmd_silent = FALSE; /* Want to see the prompt. */
12465 if (prompt != NULL)
12467 /* Only the part of the message after the last NL is considered as
12468 * prompt for the command line */
12469 p = vim_strrchr(prompt, '\n');
12470 if (p == NULL)
12471 p = prompt;
12472 else
12474 ++p;
12475 c = *p;
12476 *p = NUL;
12477 msg_start();
12478 msg_clr_eos();
12479 msg_puts_attr(prompt, echo_attr);
12480 msg_didout = FALSE;
12481 msg_starthere();
12482 *p = c;
12484 cmdline_row = msg_row;
12486 if (argvars[1].v_type != VAR_UNKNOWN)
12488 defstr = get_tv_string_buf_chk(&argvars[1], buf);
12489 if (defstr != NULL)
12490 stuffReadbuffSpec(defstr);
12492 if (!inputdialog && argvars[2].v_type != VAR_UNKNOWN)
12494 char_u *xp_name;
12495 int xp_namelen;
12496 long argt;
12498 rettv->vval.v_string = NULL;
12500 xp_name = get_tv_string_buf_chk(&argvars[2], buf);
12501 if (xp_name == NULL)
12502 return;
12504 xp_namelen = (int)STRLEN(xp_name);
12506 if (parse_compl_arg(xp_name, xp_namelen, &xp_type, &argt,
12507 &xp_arg) == FAIL)
12508 return;
12512 if (defstr != NULL)
12513 rettv->vval.v_string =
12514 getcmdline_prompt(inputsecret_flag ? NUL : '@', p, echo_attr,
12515 xp_type, xp_arg);
12517 vim_free(xp_arg);
12519 /* since the user typed this, no need to wait for return */
12520 need_wait_return = FALSE;
12521 msg_didout = FALSE;
12523 cmd_silent = cmd_silent_save;
12527 * "input()" function
12528 * Also handles inputsecret() when inputsecret is set.
12530 static void
12531 f_input(argvars, rettv)
12532 typval_T *argvars;
12533 typval_T *rettv;
12535 get_user_input(argvars, rettv, FALSE);
12539 * "inputdialog()" function
12541 static void
12542 f_inputdialog(argvars, rettv)
12543 typval_T *argvars;
12544 typval_T *rettv;
12546 #if defined(FEAT_GUI_TEXTDIALOG)
12547 /* Use a GUI dialog if the GUI is running and 'c' is not in 'guioptions' */
12548 if (gui.in_use && vim_strchr(p_go, GO_CONDIALOG) == NULL)
12550 char_u *message;
12551 char_u buf[NUMBUFLEN];
12552 char_u *defstr = (char_u *)"";
12554 message = get_tv_string_chk(&argvars[0]);
12555 if (argvars[1].v_type != VAR_UNKNOWN
12556 && (defstr = get_tv_string_buf_chk(&argvars[1], buf)) != NULL)
12557 vim_strncpy(IObuff, defstr, IOSIZE - 1);
12558 else
12559 IObuff[0] = NUL;
12560 if (message != NULL && defstr != NULL
12561 && do_dialog(VIM_QUESTION, NULL, message,
12562 (char_u *)_("&OK\n&Cancel"), 1, IObuff) == 1)
12563 rettv->vval.v_string = vim_strsave(IObuff);
12564 else
12566 if (message != NULL && defstr != NULL
12567 && argvars[1].v_type != VAR_UNKNOWN
12568 && argvars[2].v_type != VAR_UNKNOWN)
12569 rettv->vval.v_string = vim_strsave(
12570 get_tv_string_buf(&argvars[2], buf));
12571 else
12572 rettv->vval.v_string = NULL;
12574 rettv->v_type = VAR_STRING;
12576 else
12577 #endif
12578 get_user_input(argvars, rettv, TRUE);
12582 * "inputlist()" function
12584 static void
12585 f_inputlist(argvars, rettv)
12586 typval_T *argvars;
12587 typval_T *rettv;
12589 listitem_T *li;
12590 int selected;
12591 int mouse_used;
12593 rettv->vval.v_number = 0;
12594 #ifdef NO_CONSOLE_INPUT
12595 /* While starting up, there is no place to enter text. */
12596 if (no_console_input())
12597 return;
12598 #endif
12599 if (argvars[0].v_type != VAR_LIST || argvars[0].vval.v_list == NULL)
12601 EMSG2(_(e_listarg), "inputlist()");
12602 return;
12605 msg_start();
12606 msg_row = Rows - 1; /* for when 'cmdheight' > 1 */
12607 lines_left = Rows; /* avoid more prompt */
12608 msg_scroll = TRUE;
12609 msg_clr_eos();
12611 for (li = argvars[0].vval.v_list->lv_first; li != NULL; li = li->li_next)
12613 msg_puts(get_tv_string(&li->li_tv));
12614 msg_putchar('\n');
12617 /* Ask for choice. */
12618 selected = prompt_for_number(&mouse_used);
12619 if (mouse_used)
12620 selected -= lines_left;
12622 rettv->vval.v_number = selected;
12626 static garray_T ga_userinput = {0, 0, sizeof(tasave_T), 4, NULL};
12629 * "inputrestore()" function
12631 /*ARGSUSED*/
12632 static void
12633 f_inputrestore(argvars, rettv)
12634 typval_T *argvars;
12635 typval_T *rettv;
12637 if (ga_userinput.ga_len > 0)
12639 --ga_userinput.ga_len;
12640 restore_typeahead((tasave_T *)(ga_userinput.ga_data)
12641 + ga_userinput.ga_len);
12642 rettv->vval.v_number = 0; /* OK */
12644 else if (p_verbose > 1)
12646 verb_msg((char_u *)_("called inputrestore() more often than inputsave()"));
12647 rettv->vval.v_number = 1; /* Failed */
12652 * "inputsave()" function
12654 /*ARGSUSED*/
12655 static void
12656 f_inputsave(argvars, rettv)
12657 typval_T *argvars;
12658 typval_T *rettv;
12660 /* Add an entry to the stack of typeahead storage. */
12661 if (ga_grow(&ga_userinput, 1) == OK)
12663 save_typeahead((tasave_T *)(ga_userinput.ga_data)
12664 + ga_userinput.ga_len);
12665 ++ga_userinput.ga_len;
12666 rettv->vval.v_number = 0; /* OK */
12668 else
12669 rettv->vval.v_number = 1; /* Failed */
12673 * "inputsecret()" function
12675 static void
12676 f_inputsecret(argvars, rettv)
12677 typval_T *argvars;
12678 typval_T *rettv;
12680 ++cmdline_star;
12681 ++inputsecret_flag;
12682 f_input(argvars, rettv);
12683 --cmdline_star;
12684 --inputsecret_flag;
12688 * "insert()" function
12690 static void
12691 f_insert(argvars, rettv)
12692 typval_T *argvars;
12693 typval_T *rettv;
12695 long before = 0;
12696 listitem_T *item;
12697 list_T *l;
12698 int error = FALSE;
12700 rettv->vval.v_number = 0;
12701 if (argvars[0].v_type != VAR_LIST)
12702 EMSG2(_(e_listarg), "insert()");
12703 else if ((l = argvars[0].vval.v_list) != NULL
12704 && !tv_check_lock(l->lv_lock, (char_u *)"insert()"))
12706 if (argvars[2].v_type != VAR_UNKNOWN)
12707 before = get_tv_number_chk(&argvars[2], &error);
12708 if (error)
12709 return; /* type error; errmsg already given */
12711 if (before == l->lv_len)
12712 item = NULL;
12713 else
12715 item = list_find(l, before);
12716 if (item == NULL)
12718 EMSGN(_(e_listidx), before);
12719 l = NULL;
12722 if (l != NULL)
12724 list_insert_tv(l, &argvars[1], item);
12725 copy_tv(&argvars[0], rettv);
12731 * "isdirectory()" function
12733 static void
12734 f_isdirectory(argvars, rettv)
12735 typval_T *argvars;
12736 typval_T *rettv;
12738 rettv->vval.v_number = mch_isdir(get_tv_string(&argvars[0]));
12742 * "islocked()" function
12744 static void
12745 f_islocked(argvars, rettv)
12746 typval_T *argvars;
12747 typval_T *rettv;
12749 lval_T lv;
12750 char_u *end;
12751 dictitem_T *di;
12753 rettv->vval.v_number = -1;
12754 end = get_lval(get_tv_string(&argvars[0]), NULL, &lv, FALSE, FALSE, FALSE,
12755 FNE_CHECK_START);
12756 if (end != NULL && lv.ll_name != NULL)
12758 if (*end != NUL)
12759 EMSG(_(e_trailing));
12760 else
12762 if (lv.ll_tv == NULL)
12764 if (check_changedtick(lv.ll_name))
12765 rettv->vval.v_number = 1; /* always locked */
12766 else
12768 di = find_var(lv.ll_name, NULL);
12769 if (di != NULL)
12771 /* Consider a variable locked when:
12772 * 1. the variable itself is locked
12773 * 2. the value of the variable is locked.
12774 * 3. the List or Dict value is locked.
12776 rettv->vval.v_number = ((di->di_flags & DI_FLAGS_LOCK)
12777 || tv_islocked(&di->di_tv));
12781 else if (lv.ll_range)
12782 EMSG(_("E786: Range not allowed"));
12783 else if (lv.ll_newkey != NULL)
12784 EMSG2(_(e_dictkey), lv.ll_newkey);
12785 else if (lv.ll_list != NULL)
12786 /* List item. */
12787 rettv->vval.v_number = tv_islocked(&lv.ll_li->li_tv);
12788 else
12789 /* Dictionary item. */
12790 rettv->vval.v_number = tv_islocked(&lv.ll_di->di_tv);
12794 clear_lval(&lv);
12797 static void dict_list __ARGS((typval_T *argvars, typval_T *rettv, int what));
12800 * Turn a dict into a list:
12801 * "what" == 0: list of keys
12802 * "what" == 1: list of values
12803 * "what" == 2: list of items
12805 static void
12806 dict_list(argvars, rettv, what)
12807 typval_T *argvars;
12808 typval_T *rettv;
12809 int what;
12811 list_T *l2;
12812 dictitem_T *di;
12813 hashitem_T *hi;
12814 listitem_T *li;
12815 listitem_T *li2;
12816 dict_T *d;
12817 int todo;
12819 rettv->vval.v_number = 0;
12820 if (argvars[0].v_type != VAR_DICT)
12822 EMSG(_(e_dictreq));
12823 return;
12825 if ((d = argvars[0].vval.v_dict) == NULL)
12826 return;
12828 if (rettv_list_alloc(rettv) == FAIL)
12829 return;
12831 todo = (int)d->dv_hashtab.ht_used;
12832 for (hi = d->dv_hashtab.ht_array; todo > 0; ++hi)
12834 if (!HASHITEM_EMPTY(hi))
12836 --todo;
12837 di = HI2DI(hi);
12839 li = listitem_alloc();
12840 if (li == NULL)
12841 break;
12842 list_append(rettv->vval.v_list, li);
12844 if (what == 0)
12846 /* keys() */
12847 li->li_tv.v_type = VAR_STRING;
12848 li->li_tv.v_lock = 0;
12849 li->li_tv.vval.v_string = vim_strsave(di->di_key);
12851 else if (what == 1)
12853 /* values() */
12854 copy_tv(&di->di_tv, &li->li_tv);
12856 else
12858 /* items() */
12859 l2 = list_alloc();
12860 li->li_tv.v_type = VAR_LIST;
12861 li->li_tv.v_lock = 0;
12862 li->li_tv.vval.v_list = l2;
12863 if (l2 == NULL)
12864 break;
12865 ++l2->lv_refcount;
12867 li2 = listitem_alloc();
12868 if (li2 == NULL)
12869 break;
12870 list_append(l2, li2);
12871 li2->li_tv.v_type = VAR_STRING;
12872 li2->li_tv.v_lock = 0;
12873 li2->li_tv.vval.v_string = vim_strsave(di->di_key);
12875 li2 = listitem_alloc();
12876 if (li2 == NULL)
12877 break;
12878 list_append(l2, li2);
12879 copy_tv(&di->di_tv, &li2->li_tv);
12886 * "items(dict)" function
12888 static void
12889 f_items(argvars, rettv)
12890 typval_T *argvars;
12891 typval_T *rettv;
12893 dict_list(argvars, rettv, 2);
12897 * "join()" function
12899 static void
12900 f_join(argvars, rettv)
12901 typval_T *argvars;
12902 typval_T *rettv;
12904 garray_T ga;
12905 char_u *sep;
12907 rettv->vval.v_number = 0;
12908 if (argvars[0].v_type != VAR_LIST)
12910 EMSG(_(e_listreq));
12911 return;
12913 if (argvars[0].vval.v_list == NULL)
12914 return;
12915 if (argvars[1].v_type == VAR_UNKNOWN)
12916 sep = (char_u *)" ";
12917 else
12918 sep = get_tv_string_chk(&argvars[1]);
12920 rettv->v_type = VAR_STRING;
12922 if (sep != NULL)
12924 ga_init2(&ga, (int)sizeof(char), 80);
12925 list_join(&ga, argvars[0].vval.v_list, sep, TRUE, 0);
12926 ga_append(&ga, NUL);
12927 rettv->vval.v_string = (char_u *)ga.ga_data;
12929 else
12930 rettv->vval.v_string = NULL;
12934 * "keys()" function
12936 static void
12937 f_keys(argvars, rettv)
12938 typval_T *argvars;
12939 typval_T *rettv;
12941 dict_list(argvars, rettv, 0);
12945 * "last_buffer_nr()" function.
12947 /*ARGSUSED*/
12948 static void
12949 f_last_buffer_nr(argvars, rettv)
12950 typval_T *argvars;
12951 typval_T *rettv;
12953 int n = 0;
12954 buf_T *buf;
12956 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
12957 if (n < buf->b_fnum)
12958 n = buf->b_fnum;
12960 rettv->vval.v_number = n;
12964 * "len()" function
12966 static void
12967 f_len(argvars, rettv)
12968 typval_T *argvars;
12969 typval_T *rettv;
12971 switch (argvars[0].v_type)
12973 case VAR_STRING:
12974 case VAR_NUMBER:
12975 rettv->vval.v_number = (varnumber_T)STRLEN(
12976 get_tv_string(&argvars[0]));
12977 break;
12978 case VAR_LIST:
12979 rettv->vval.v_number = list_len(argvars[0].vval.v_list);
12980 break;
12981 case VAR_DICT:
12982 rettv->vval.v_number = dict_len(argvars[0].vval.v_dict);
12983 break;
12984 default:
12985 EMSG(_("E701: Invalid type for len()"));
12986 break;
12990 static void libcall_common __ARGS((typval_T *argvars, typval_T *rettv, int type));
12992 static void
12993 libcall_common(argvars, rettv, type)
12994 typval_T *argvars;
12995 typval_T *rettv;
12996 int type;
12998 #ifdef FEAT_LIBCALL
12999 char_u *string_in;
13000 char_u **string_result;
13001 int nr_result;
13002 #endif
13004 rettv->v_type = type;
13005 if (type == VAR_NUMBER)
13006 rettv->vval.v_number = 0;
13007 else
13008 rettv->vval.v_string = NULL;
13010 if (check_restricted() || check_secure())
13011 return;
13013 #ifdef FEAT_LIBCALL
13014 /* The first two args must be strings, otherwise its meaningless */
13015 if (argvars[0].v_type == VAR_STRING && argvars[1].v_type == VAR_STRING)
13017 string_in = NULL;
13018 if (argvars[2].v_type == VAR_STRING)
13019 string_in = argvars[2].vval.v_string;
13020 if (type == VAR_NUMBER)
13021 string_result = NULL;
13022 else
13023 string_result = &rettv->vval.v_string;
13024 if (mch_libcall(argvars[0].vval.v_string,
13025 argvars[1].vval.v_string,
13026 string_in,
13027 argvars[2].vval.v_number,
13028 string_result,
13029 &nr_result) == OK
13030 && type == VAR_NUMBER)
13031 rettv->vval.v_number = nr_result;
13033 #endif
13037 * "libcall()" function
13039 static void
13040 f_libcall(argvars, rettv)
13041 typval_T *argvars;
13042 typval_T *rettv;
13044 libcall_common(argvars, rettv, VAR_STRING);
13048 * "libcallnr()" function
13050 static void
13051 f_libcallnr(argvars, rettv)
13052 typval_T *argvars;
13053 typval_T *rettv;
13055 libcall_common(argvars, rettv, VAR_NUMBER);
13059 * "line(string)" function
13061 static void
13062 f_line(argvars, rettv)
13063 typval_T *argvars;
13064 typval_T *rettv;
13066 linenr_T lnum = 0;
13067 pos_T *fp;
13068 int fnum;
13070 fp = var2fpos(&argvars[0], TRUE, &fnum);
13071 if (fp != NULL)
13072 lnum = fp->lnum;
13073 rettv->vval.v_number = lnum;
13077 * "line2byte(lnum)" function
13079 /*ARGSUSED*/
13080 static void
13081 f_line2byte(argvars, rettv)
13082 typval_T *argvars;
13083 typval_T *rettv;
13085 #ifndef FEAT_BYTEOFF
13086 rettv->vval.v_number = -1;
13087 #else
13088 linenr_T lnum;
13090 lnum = get_tv_lnum(argvars);
13091 if (lnum < 1 || lnum > curbuf->b_ml.ml_line_count + 1)
13092 rettv->vval.v_number = -1;
13093 else
13094 rettv->vval.v_number = ml_find_line_or_offset(curbuf, lnum, NULL);
13095 if (rettv->vval.v_number >= 0)
13096 ++rettv->vval.v_number;
13097 #endif
13101 * "lispindent(lnum)" function
13103 static void
13104 f_lispindent(argvars, rettv)
13105 typval_T *argvars;
13106 typval_T *rettv;
13108 #ifdef FEAT_LISP
13109 pos_T pos;
13110 linenr_T lnum;
13112 pos = curwin->w_cursor;
13113 lnum = get_tv_lnum(argvars);
13114 if (lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count)
13116 curwin->w_cursor.lnum = lnum;
13117 rettv->vval.v_number = get_lisp_indent();
13118 curwin->w_cursor = pos;
13120 else
13121 #endif
13122 rettv->vval.v_number = -1;
13126 * "localtime()" function
13128 /*ARGSUSED*/
13129 static void
13130 f_localtime(argvars, rettv)
13131 typval_T *argvars;
13132 typval_T *rettv;
13134 rettv->vval.v_number = (varnumber_T)time(NULL);
13137 static void get_maparg __ARGS((typval_T *argvars, typval_T *rettv, int exact));
13139 static void
13140 get_maparg(argvars, rettv, exact)
13141 typval_T *argvars;
13142 typval_T *rettv;
13143 int exact;
13145 char_u *keys;
13146 char_u *which;
13147 char_u buf[NUMBUFLEN];
13148 char_u *keys_buf = NULL;
13149 char_u *rhs;
13150 int mode;
13151 garray_T ga;
13152 int abbr = FALSE;
13154 /* return empty string for failure */
13155 rettv->v_type = VAR_STRING;
13156 rettv->vval.v_string = NULL;
13158 keys = get_tv_string(&argvars[0]);
13159 if (*keys == NUL)
13160 return;
13162 if (argvars[1].v_type != VAR_UNKNOWN)
13164 which = get_tv_string_buf_chk(&argvars[1], buf);
13165 if (argvars[2].v_type != VAR_UNKNOWN)
13166 abbr = get_tv_number(&argvars[2]);
13168 else
13169 which = (char_u *)"";
13170 if (which == NULL)
13171 return;
13173 mode = get_map_mode(&which, 0);
13175 keys = replace_termcodes(keys, &keys_buf, TRUE, TRUE, FALSE);
13176 rhs = check_map(keys, mode, exact, FALSE, abbr);
13177 vim_free(keys_buf);
13178 if (rhs != NULL)
13180 ga_init(&ga);
13181 ga.ga_itemsize = 1;
13182 ga.ga_growsize = 40;
13184 while (*rhs != NUL)
13185 ga_concat(&ga, str2special(&rhs, FALSE));
13187 ga_append(&ga, NUL);
13188 rettv->vval.v_string = (char_u *)ga.ga_data;
13192 #ifdef FEAT_FLOAT
13194 * "log10()" function
13196 static void
13197 f_log10(argvars, rettv)
13198 typval_T *argvars;
13199 typval_T *rettv;
13201 float_T f;
13203 rettv->v_type = VAR_FLOAT;
13204 if (get_float_arg(argvars, &f) == OK)
13205 rettv->vval.v_float = log10(f);
13206 else
13207 rettv->vval.v_float = 0.0;
13209 #endif
13212 * "map()" function
13214 static void
13215 f_map(argvars, rettv)
13216 typval_T *argvars;
13217 typval_T *rettv;
13219 filter_map(argvars, rettv, TRUE);
13223 * "maparg()" function
13225 static void
13226 f_maparg(argvars, rettv)
13227 typval_T *argvars;
13228 typval_T *rettv;
13230 get_maparg(argvars, rettv, TRUE);
13234 * "mapcheck()" function
13236 static void
13237 f_mapcheck(argvars, rettv)
13238 typval_T *argvars;
13239 typval_T *rettv;
13241 get_maparg(argvars, rettv, FALSE);
13244 static void find_some_match __ARGS((typval_T *argvars, typval_T *rettv, int start));
13246 static void
13247 find_some_match(argvars, rettv, type)
13248 typval_T *argvars;
13249 typval_T *rettv;
13250 int type;
13252 char_u *str = NULL;
13253 char_u *expr = NULL;
13254 char_u *pat;
13255 regmatch_T regmatch;
13256 char_u patbuf[NUMBUFLEN];
13257 char_u strbuf[NUMBUFLEN];
13258 char_u *save_cpo;
13259 long start = 0;
13260 long nth = 1;
13261 colnr_T startcol = 0;
13262 int match = 0;
13263 list_T *l = NULL;
13264 listitem_T *li = NULL;
13265 long idx = 0;
13266 char_u *tofree = NULL;
13268 /* Make 'cpoptions' empty, the 'l' flag should not be used here. */
13269 save_cpo = p_cpo;
13270 p_cpo = (char_u *)"";
13272 rettv->vval.v_number = -1;
13273 if (type == 3)
13275 /* return empty list when there are no matches */
13276 if (rettv_list_alloc(rettv) == FAIL)
13277 goto theend;
13279 else if (type == 2)
13281 rettv->v_type = VAR_STRING;
13282 rettv->vval.v_string = NULL;
13285 if (argvars[0].v_type == VAR_LIST)
13287 if ((l = argvars[0].vval.v_list) == NULL)
13288 goto theend;
13289 li = l->lv_first;
13291 else
13292 expr = str = get_tv_string(&argvars[0]);
13294 pat = get_tv_string_buf_chk(&argvars[1], patbuf);
13295 if (pat == NULL)
13296 goto theend;
13298 if (argvars[2].v_type != VAR_UNKNOWN)
13300 int error = FALSE;
13302 start = get_tv_number_chk(&argvars[2], &error);
13303 if (error)
13304 goto theend;
13305 if (l != NULL)
13307 li = list_find(l, start);
13308 if (li == NULL)
13309 goto theend;
13310 idx = l->lv_idx; /* use the cached index */
13312 else
13314 if (start < 0)
13315 start = 0;
13316 if (start > (long)STRLEN(str))
13317 goto theend;
13318 /* When "count" argument is there ignore matches before "start",
13319 * otherwise skip part of the string. Differs when pattern is "^"
13320 * or "\<". */
13321 if (argvars[3].v_type != VAR_UNKNOWN)
13322 startcol = start;
13323 else
13324 str += start;
13327 if (argvars[3].v_type != VAR_UNKNOWN)
13328 nth = get_tv_number_chk(&argvars[3], &error);
13329 if (error)
13330 goto theend;
13333 regmatch.regprog = vim_regcomp(pat, RE_MAGIC + RE_STRING);
13334 if (regmatch.regprog != NULL)
13336 regmatch.rm_ic = p_ic;
13338 for (;;)
13340 if (l != NULL)
13342 if (li == NULL)
13344 match = FALSE;
13345 break;
13347 vim_free(tofree);
13348 str = echo_string(&li->li_tv, &tofree, strbuf, 0);
13349 if (str == NULL)
13350 break;
13353 match = vim_regexec_nl(&regmatch, str, (colnr_T)startcol);
13355 if (match && --nth <= 0)
13356 break;
13357 if (l == NULL && !match)
13358 break;
13360 /* Advance to just after the match. */
13361 if (l != NULL)
13363 li = li->li_next;
13364 ++idx;
13366 else
13368 #ifdef FEAT_MBYTE
13369 startcol = (colnr_T)(regmatch.startp[0]
13370 + (*mb_ptr2len)(regmatch.startp[0]) - str);
13371 #else
13372 startcol = regmatch.startp[0] + 1 - str;
13373 #endif
13377 if (match)
13379 if (type == 3)
13381 int i;
13383 /* return list with matched string and submatches */
13384 for (i = 0; i < NSUBEXP; ++i)
13386 if (regmatch.endp[i] == NULL)
13388 if (list_append_string(rettv->vval.v_list,
13389 (char_u *)"", 0) == FAIL)
13390 break;
13392 else if (list_append_string(rettv->vval.v_list,
13393 regmatch.startp[i],
13394 (int)(regmatch.endp[i] - regmatch.startp[i]))
13395 == FAIL)
13396 break;
13399 else if (type == 2)
13401 /* return matched string */
13402 if (l != NULL)
13403 copy_tv(&li->li_tv, rettv);
13404 else
13405 rettv->vval.v_string = vim_strnsave(regmatch.startp[0],
13406 (int)(regmatch.endp[0] - regmatch.startp[0]));
13408 else if (l != NULL)
13409 rettv->vval.v_number = idx;
13410 else
13412 if (type != 0)
13413 rettv->vval.v_number =
13414 (varnumber_T)(regmatch.startp[0] - str);
13415 else
13416 rettv->vval.v_number =
13417 (varnumber_T)(regmatch.endp[0] - str);
13418 rettv->vval.v_number += (varnumber_T)(str - expr);
13421 vim_free(regmatch.regprog);
13424 theend:
13425 vim_free(tofree);
13426 p_cpo = save_cpo;
13430 * "match()" function
13432 static void
13433 f_match(argvars, rettv)
13434 typval_T *argvars;
13435 typval_T *rettv;
13437 find_some_match(argvars, rettv, 1);
13441 * "matchadd()" function
13443 static void
13444 f_matchadd(argvars, rettv)
13445 typval_T *argvars;
13446 typval_T *rettv;
13448 #ifdef FEAT_SEARCH_EXTRA
13449 char_u buf[NUMBUFLEN];
13450 char_u *grp = get_tv_string_buf_chk(&argvars[0], buf); /* group */
13451 char_u *pat = get_tv_string_buf_chk(&argvars[1], buf); /* pattern */
13452 int prio = 10; /* default priority */
13453 int id = -1;
13454 int error = FALSE;
13456 rettv->vval.v_number = -1;
13458 if (grp == NULL || pat == NULL)
13459 return;
13460 if (argvars[2].v_type != VAR_UNKNOWN)
13462 prio = get_tv_number_chk(&argvars[2], &error);
13463 if (argvars[3].v_type != VAR_UNKNOWN)
13464 id = get_tv_number_chk(&argvars[3], &error);
13466 if (error == TRUE)
13467 return;
13468 if (id >= 1 && id <= 3)
13470 EMSGN("E798: ID is reserved for \":match\": %ld", id);
13471 return;
13474 rettv->vval.v_number = match_add(curwin, grp, pat, prio, id);
13475 #endif
13479 * "matcharg()" function
13481 static void
13482 f_matcharg(argvars, rettv)
13483 typval_T *argvars;
13484 typval_T *rettv;
13486 if (rettv_list_alloc(rettv) == OK)
13488 #ifdef FEAT_SEARCH_EXTRA
13489 int id = get_tv_number(&argvars[0]);
13490 matchitem_T *m;
13492 if (id >= 1 && id <= 3)
13494 if ((m = (matchitem_T *)get_match(curwin, id)) != NULL)
13496 list_append_string(rettv->vval.v_list,
13497 syn_id2name(m->hlg_id), -1);
13498 list_append_string(rettv->vval.v_list, m->pattern, -1);
13500 else
13502 list_append_string(rettv->vval.v_list, NUL, -1);
13503 list_append_string(rettv->vval.v_list, NUL, -1);
13506 #endif
13511 * "matchdelete()" function
13513 static void
13514 f_matchdelete(argvars, rettv)
13515 typval_T *argvars;
13516 typval_T *rettv;
13518 #ifdef FEAT_SEARCH_EXTRA
13519 rettv->vval.v_number = match_delete(curwin,
13520 (int)get_tv_number(&argvars[0]), TRUE);
13521 #endif
13525 * "matchend()" function
13527 static void
13528 f_matchend(argvars, rettv)
13529 typval_T *argvars;
13530 typval_T *rettv;
13532 find_some_match(argvars, rettv, 0);
13536 * "matchlist()" function
13538 static void
13539 f_matchlist(argvars, rettv)
13540 typval_T *argvars;
13541 typval_T *rettv;
13543 find_some_match(argvars, rettv, 3);
13547 * "matchstr()" function
13549 static void
13550 f_matchstr(argvars, rettv)
13551 typval_T *argvars;
13552 typval_T *rettv;
13554 find_some_match(argvars, rettv, 2);
13557 static void max_min __ARGS((typval_T *argvars, typval_T *rettv, int domax));
13559 static void
13560 max_min(argvars, rettv, domax)
13561 typval_T *argvars;
13562 typval_T *rettv;
13563 int domax;
13565 long n = 0;
13566 long i;
13567 int error = FALSE;
13569 if (argvars[0].v_type == VAR_LIST)
13571 list_T *l;
13572 listitem_T *li;
13574 l = argvars[0].vval.v_list;
13575 if (l != NULL)
13577 li = l->lv_first;
13578 if (li != NULL)
13580 n = get_tv_number_chk(&li->li_tv, &error);
13581 for (;;)
13583 li = li->li_next;
13584 if (li == NULL)
13585 break;
13586 i = get_tv_number_chk(&li->li_tv, &error);
13587 if (domax ? i > n : i < n)
13588 n = i;
13593 else if (argvars[0].v_type == VAR_DICT)
13595 dict_T *d;
13596 int first = TRUE;
13597 hashitem_T *hi;
13598 int todo;
13600 d = argvars[0].vval.v_dict;
13601 if (d != NULL)
13603 todo = (int)d->dv_hashtab.ht_used;
13604 for (hi = d->dv_hashtab.ht_array; todo > 0; ++hi)
13606 if (!HASHITEM_EMPTY(hi))
13608 --todo;
13609 i = get_tv_number_chk(&HI2DI(hi)->di_tv, &error);
13610 if (first)
13612 n = i;
13613 first = FALSE;
13615 else if (domax ? i > n : i < n)
13616 n = i;
13621 else
13622 EMSG(_(e_listdictarg));
13623 rettv->vval.v_number = error ? 0 : n;
13627 * "max()" function
13629 static void
13630 f_max(argvars, rettv)
13631 typval_T *argvars;
13632 typval_T *rettv;
13634 max_min(argvars, rettv, TRUE);
13638 * "min()" function
13640 static void
13641 f_min(argvars, rettv)
13642 typval_T *argvars;
13643 typval_T *rettv;
13645 max_min(argvars, rettv, FALSE);
13648 static int mkdir_recurse __ARGS((char_u *dir, int prot));
13651 * Create the directory in which "dir" is located, and higher levels when
13652 * needed.
13654 static int
13655 mkdir_recurse(dir, prot)
13656 char_u *dir;
13657 int prot;
13659 char_u *p;
13660 char_u *updir;
13661 int r = FAIL;
13663 /* Get end of directory name in "dir".
13664 * We're done when it's "/" or "c:/". */
13665 p = gettail_sep(dir);
13666 if (p <= get_past_head(dir))
13667 return OK;
13669 /* If the directory exists we're done. Otherwise: create it.*/
13670 updir = vim_strnsave(dir, (int)(p - dir));
13671 if (updir == NULL)
13672 return FAIL;
13673 if (mch_isdir(updir))
13674 r = OK;
13675 else if (mkdir_recurse(updir, prot) == OK)
13676 r = vim_mkdir_emsg(updir, prot);
13677 vim_free(updir);
13678 return r;
13681 #ifdef vim_mkdir
13683 * "mkdir()" function
13685 static void
13686 f_mkdir(argvars, rettv)
13687 typval_T *argvars;
13688 typval_T *rettv;
13690 char_u *dir;
13691 char_u buf[NUMBUFLEN];
13692 int prot = 0755;
13694 rettv->vval.v_number = FAIL;
13695 if (check_restricted() || check_secure())
13696 return;
13698 dir = get_tv_string_buf(&argvars[0], buf);
13699 if (argvars[1].v_type != VAR_UNKNOWN)
13701 if (argvars[2].v_type != VAR_UNKNOWN)
13702 prot = get_tv_number_chk(&argvars[2], NULL);
13703 if (prot != -1 && STRCMP(get_tv_string(&argvars[1]), "p") == 0)
13704 mkdir_recurse(dir, prot);
13706 rettv->vval.v_number = prot != -1 ? vim_mkdir_emsg(dir, prot) : 0;
13708 #endif
13711 * "mode()" function
13713 /*ARGSUSED*/
13714 static void
13715 f_mode(argvars, rettv)
13716 typval_T *argvars;
13717 typval_T *rettv;
13719 char_u buf[3];
13721 buf[1] = NUL;
13722 buf[2] = NUL;
13724 #ifdef FEAT_VISUAL
13725 if (VIsual_active)
13727 if (VIsual_select)
13728 buf[0] = VIsual_mode + 's' - 'v';
13729 else
13730 buf[0] = VIsual_mode;
13732 else
13733 #endif
13734 if (State == HITRETURN || State == ASKMORE || State == SETWSIZE
13735 || State == CONFIRM)
13737 buf[0] = 'r';
13738 if (State == ASKMORE)
13739 buf[1] = 'm';
13740 else if (State == CONFIRM)
13741 buf[1] = '?';
13743 else if (State == EXTERNCMD)
13744 buf[0] = '!';
13745 else if (State & INSERT)
13747 #ifdef FEAT_VREPLACE
13748 if (State & VREPLACE_FLAG)
13750 buf[0] = 'R';
13751 buf[1] = 'v';
13753 else
13754 #endif
13755 if (State & REPLACE_FLAG)
13756 buf[0] = 'R';
13757 else
13758 buf[0] = 'i';
13760 else if (State & CMDLINE)
13762 buf[0] = 'c';
13763 if (exmode_active)
13764 buf[1] = 'v';
13766 else if (exmode_active)
13768 buf[0] = 'c';
13769 buf[1] = 'e';
13771 else
13773 buf[0] = 'n';
13774 if (finish_op)
13775 buf[1] = 'o';
13778 /* Clear out the minor mode when the argument is not a non-zero number or
13779 * non-empty string. */
13780 if (!non_zero_arg(&argvars[0]))
13781 buf[1] = NUL;
13783 rettv->vval.v_string = vim_strsave(buf);
13784 rettv->v_type = VAR_STRING;
13788 * "nextnonblank()" function
13790 static void
13791 f_nextnonblank(argvars, rettv)
13792 typval_T *argvars;
13793 typval_T *rettv;
13795 linenr_T lnum;
13797 for (lnum = get_tv_lnum(argvars); ; ++lnum)
13799 if (lnum < 0 || lnum > curbuf->b_ml.ml_line_count)
13801 lnum = 0;
13802 break;
13804 if (*skipwhite(ml_get(lnum)) != NUL)
13805 break;
13807 rettv->vval.v_number = lnum;
13811 * "nr2char()" function
13813 static void
13814 f_nr2char(argvars, rettv)
13815 typval_T *argvars;
13816 typval_T *rettv;
13818 char_u buf[NUMBUFLEN];
13820 #ifdef FEAT_MBYTE
13821 if (has_mbyte)
13822 buf[(*mb_char2bytes)((int)get_tv_number(&argvars[0]), buf)] = NUL;
13823 else
13824 #endif
13826 buf[0] = (char_u)get_tv_number(&argvars[0]);
13827 buf[1] = NUL;
13829 rettv->v_type = VAR_STRING;
13830 rettv->vval.v_string = vim_strsave(buf);
13834 * "pathshorten()" function
13836 static void
13837 f_pathshorten(argvars, rettv)
13838 typval_T *argvars;
13839 typval_T *rettv;
13841 char_u *p;
13843 rettv->v_type = VAR_STRING;
13844 p = get_tv_string_chk(&argvars[0]);
13845 if (p == NULL)
13846 rettv->vval.v_string = NULL;
13847 else
13849 p = vim_strsave(p);
13850 rettv->vval.v_string = p;
13851 if (p != NULL)
13852 shorten_dir(p);
13856 #ifdef FEAT_FLOAT
13858 * "pow()" function
13860 static void
13861 f_pow(argvars, rettv)
13862 typval_T *argvars;
13863 typval_T *rettv;
13865 float_T fx, fy;
13867 rettv->v_type = VAR_FLOAT;
13868 if (get_float_arg(argvars, &fx) == OK
13869 && get_float_arg(&argvars[1], &fy) == OK)
13870 rettv->vval.v_float = pow(fx, fy);
13871 else
13872 rettv->vval.v_float = 0.0;
13874 #endif
13877 * "prevnonblank()" function
13879 static void
13880 f_prevnonblank(argvars, rettv)
13881 typval_T *argvars;
13882 typval_T *rettv;
13884 linenr_T lnum;
13886 lnum = get_tv_lnum(argvars);
13887 if (lnum < 1 || lnum > curbuf->b_ml.ml_line_count)
13888 lnum = 0;
13889 else
13890 while (lnum >= 1 && *skipwhite(ml_get(lnum)) == NUL)
13891 --lnum;
13892 rettv->vval.v_number = lnum;
13895 #ifdef HAVE_STDARG_H
13896 /* This dummy va_list is here because:
13897 * - passing a NULL pointer doesn't work when va_list isn't a pointer
13898 * - locally in the function results in a "used before set" warning
13899 * - using va_start() to initialize it gives "function with fixed args" error */
13900 static va_list ap;
13901 #endif
13904 * "printf()" function
13906 static void
13907 f_printf(argvars, rettv)
13908 typval_T *argvars;
13909 typval_T *rettv;
13911 rettv->v_type = VAR_STRING;
13912 rettv->vval.v_string = NULL;
13913 #ifdef HAVE_STDARG_H /* only very old compilers can't do this */
13915 char_u buf[NUMBUFLEN];
13916 int len;
13917 char_u *s;
13918 int saved_did_emsg = did_emsg;
13919 char *fmt;
13921 /* Get the required length, allocate the buffer and do it for real. */
13922 did_emsg = FALSE;
13923 fmt = (char *)get_tv_string_buf(&argvars[0], buf);
13924 len = vim_vsnprintf(NULL, 0, fmt, ap, argvars + 1);
13925 if (!did_emsg)
13927 s = alloc(len + 1);
13928 if (s != NULL)
13930 rettv->vval.v_string = s;
13931 (void)vim_vsnprintf((char *)s, len + 1, fmt, ap, argvars + 1);
13934 did_emsg |= saved_did_emsg;
13936 #endif
13940 * "pumvisible()" function
13942 /*ARGSUSED*/
13943 static void
13944 f_pumvisible(argvars, rettv)
13945 typval_T *argvars;
13946 typval_T *rettv;
13948 rettv->vval.v_number = 0;
13949 #ifdef FEAT_INS_EXPAND
13950 if (pum_visible())
13951 rettv->vval.v_number = 1;
13952 #endif
13956 * "range()" function
13958 static void
13959 f_range(argvars, rettv)
13960 typval_T *argvars;
13961 typval_T *rettv;
13963 long start;
13964 long end;
13965 long stride = 1;
13966 long i;
13967 int error = FALSE;
13969 start = get_tv_number_chk(&argvars[0], &error);
13970 if (argvars[1].v_type == VAR_UNKNOWN)
13972 end = start - 1;
13973 start = 0;
13975 else
13977 end = get_tv_number_chk(&argvars[1], &error);
13978 if (argvars[2].v_type != VAR_UNKNOWN)
13979 stride = get_tv_number_chk(&argvars[2], &error);
13982 rettv->vval.v_number = 0;
13983 if (error)
13984 return; /* type error; errmsg already given */
13985 if (stride == 0)
13986 EMSG(_("E726: Stride is zero"));
13987 else if (stride > 0 ? end + 1 < start : end - 1 > start)
13988 EMSG(_("E727: Start past end"));
13989 else
13991 if (rettv_list_alloc(rettv) == OK)
13992 for (i = start; stride > 0 ? i <= end : i >= end; i += stride)
13993 if (list_append_number(rettv->vval.v_list,
13994 (varnumber_T)i) == FAIL)
13995 break;
14000 * "readfile()" function
14002 static void
14003 f_readfile(argvars, rettv)
14004 typval_T *argvars;
14005 typval_T *rettv;
14007 int binary = FALSE;
14008 char_u *fname;
14009 FILE *fd;
14010 listitem_T *li;
14011 #define FREAD_SIZE 200 /* optimized for text lines */
14012 char_u buf[FREAD_SIZE];
14013 int readlen; /* size of last fread() */
14014 int buflen; /* nr of valid chars in buf[] */
14015 int filtd; /* how much in buf[] was NUL -> '\n' filtered */
14016 int tolist; /* first byte in buf[] still to be put in list */
14017 int chop; /* how many CR to chop off */
14018 char_u *prev = NULL; /* previously read bytes, if any */
14019 int prevlen = 0; /* length of "prev" if not NULL */
14020 char_u *s;
14021 int len;
14022 long maxline = MAXLNUM;
14023 long cnt = 0;
14025 if (argvars[1].v_type != VAR_UNKNOWN)
14027 if (STRCMP(get_tv_string(&argvars[1]), "b") == 0)
14028 binary = TRUE;
14029 if (argvars[2].v_type != VAR_UNKNOWN)
14030 maxline = get_tv_number(&argvars[2]);
14033 if (rettv_list_alloc(rettv) == FAIL)
14034 return;
14036 /* Always open the file in binary mode, library functions have a mind of
14037 * their own about CR-LF conversion. */
14038 fname = get_tv_string(&argvars[0]);
14039 if (*fname == NUL || (fd = mch_fopen((char *)fname, READBIN)) == NULL)
14041 EMSG2(_(e_notopen), *fname == NUL ? (char_u *)_("<empty>") : fname);
14042 return;
14045 filtd = 0;
14046 while (cnt < maxline || maxline < 0)
14048 readlen = (int)fread(buf + filtd, 1, FREAD_SIZE - filtd, fd);
14049 buflen = filtd + readlen;
14050 tolist = 0;
14051 for ( ; filtd < buflen || readlen <= 0; ++filtd)
14053 if (buf[filtd] == '\n' || readlen <= 0)
14055 /* Only when in binary mode add an empty list item when the
14056 * last line ends in a '\n'. */
14057 if (!binary && readlen == 0 && filtd == 0)
14058 break;
14060 /* Found end-of-line or end-of-file: add a text line to the
14061 * list. */
14062 chop = 0;
14063 if (!binary)
14064 while (filtd - chop - 1 >= tolist
14065 && buf[filtd - chop - 1] == '\r')
14066 ++chop;
14067 len = filtd - tolist - chop;
14068 if (prev == NULL)
14069 s = vim_strnsave(buf + tolist, len);
14070 else
14072 s = alloc((unsigned)(prevlen + len + 1));
14073 if (s != NULL)
14075 mch_memmove(s, prev, prevlen);
14076 vim_free(prev);
14077 prev = NULL;
14078 mch_memmove(s + prevlen, buf + tolist, len);
14079 s[prevlen + len] = NUL;
14082 tolist = filtd + 1;
14084 li = listitem_alloc();
14085 if (li == NULL)
14087 vim_free(s);
14088 break;
14090 li->li_tv.v_type = VAR_STRING;
14091 li->li_tv.v_lock = 0;
14092 li->li_tv.vval.v_string = s;
14093 list_append(rettv->vval.v_list, li);
14095 if (++cnt >= maxline && maxline >= 0)
14096 break;
14097 if (readlen <= 0)
14098 break;
14100 else if (buf[filtd] == NUL)
14101 buf[filtd] = '\n';
14103 if (readlen <= 0)
14104 break;
14106 if (tolist == 0)
14108 /* "buf" is full, need to move text to an allocated buffer */
14109 if (prev == NULL)
14111 prev = vim_strnsave(buf, buflen);
14112 prevlen = buflen;
14114 else
14116 s = alloc((unsigned)(prevlen + buflen));
14117 if (s != NULL)
14119 mch_memmove(s, prev, prevlen);
14120 mch_memmove(s + prevlen, buf, buflen);
14121 vim_free(prev);
14122 prev = s;
14123 prevlen += buflen;
14126 filtd = 0;
14128 else
14130 mch_memmove(buf, buf + tolist, buflen - tolist);
14131 filtd -= tolist;
14136 * For a negative line count use only the lines at the end of the file,
14137 * free the rest.
14139 if (maxline < 0)
14140 while (cnt > -maxline)
14142 listitem_remove(rettv->vval.v_list, rettv->vval.v_list->lv_first);
14143 --cnt;
14146 vim_free(prev);
14147 fclose(fd);
14150 #if defined(FEAT_RELTIME)
14151 static int list2proftime __ARGS((typval_T *arg, proftime_T *tm));
14154 * Convert a List to proftime_T.
14155 * Return FAIL when there is something wrong.
14157 static int
14158 list2proftime(arg, tm)
14159 typval_T *arg;
14160 proftime_T *tm;
14162 long n1, n2;
14163 int error = FALSE;
14165 if (arg->v_type != VAR_LIST || arg->vval.v_list == NULL
14166 || arg->vval.v_list->lv_len != 2)
14167 return FAIL;
14168 n1 = list_find_nr(arg->vval.v_list, 0L, &error);
14169 n2 = list_find_nr(arg->vval.v_list, 1L, &error);
14170 # ifdef WIN3264
14171 tm->HighPart = n1;
14172 tm->LowPart = n2;
14173 # else
14174 tm->tv_sec = n1;
14175 tm->tv_usec = n2;
14176 # endif
14177 return error ? FAIL : OK;
14179 #endif /* FEAT_RELTIME */
14182 * "reltime()" function
14184 static void
14185 f_reltime(argvars, rettv)
14186 typval_T *argvars;
14187 typval_T *rettv;
14189 #ifdef FEAT_RELTIME
14190 proftime_T res;
14191 proftime_T start;
14193 if (argvars[0].v_type == VAR_UNKNOWN)
14195 /* No arguments: get current time. */
14196 profile_start(&res);
14198 else if (argvars[1].v_type == VAR_UNKNOWN)
14200 if (list2proftime(&argvars[0], &res) == FAIL)
14201 return;
14202 profile_end(&res);
14204 else
14206 /* Two arguments: compute the difference. */
14207 if (list2proftime(&argvars[0], &start) == FAIL
14208 || list2proftime(&argvars[1], &res) == FAIL)
14209 return;
14210 profile_sub(&res, &start);
14213 if (rettv_list_alloc(rettv) == OK)
14215 long n1, n2;
14217 # ifdef WIN3264
14218 n1 = res.HighPart;
14219 n2 = res.LowPart;
14220 # else
14221 n1 = res.tv_sec;
14222 n2 = res.tv_usec;
14223 # endif
14224 list_append_number(rettv->vval.v_list, (varnumber_T)n1);
14225 list_append_number(rettv->vval.v_list, (varnumber_T)n2);
14227 #endif
14231 * "reltimestr()" function
14233 static void
14234 f_reltimestr(argvars, rettv)
14235 typval_T *argvars;
14236 typval_T *rettv;
14238 #ifdef FEAT_RELTIME
14239 proftime_T tm;
14240 #endif
14242 rettv->v_type = VAR_STRING;
14243 rettv->vval.v_string = NULL;
14244 #ifdef FEAT_RELTIME
14245 if (list2proftime(&argvars[0], &tm) == OK)
14246 rettv->vval.v_string = vim_strsave((char_u *)profile_msg(&tm));
14247 #endif
14250 #if defined(FEAT_CLIENTSERVER) && defined(FEAT_X11)
14251 static void make_connection __ARGS((void));
14252 static int check_connection __ARGS((void));
14254 static void
14255 make_connection()
14257 if (X_DISPLAY == NULL
14258 # ifdef FEAT_GUI
14259 && !gui.in_use
14260 # endif
14263 x_force_connect = TRUE;
14264 setup_term_clip();
14265 x_force_connect = FALSE;
14269 static int
14270 check_connection()
14272 make_connection();
14273 if (X_DISPLAY == NULL)
14275 EMSG(_("E240: No connection to Vim server"));
14276 return FAIL;
14278 return OK;
14280 #endif
14282 #ifdef FEAT_CLIENTSERVER
14283 static void remote_common __ARGS((typval_T *argvars, typval_T *rettv, int expr));
14285 static void
14286 remote_common(argvars, rettv, expr)
14287 typval_T *argvars;
14288 typval_T *rettv;
14289 int expr;
14291 char_u *server_name;
14292 char_u *keys;
14293 char_u *r = NULL;
14294 char_u buf[NUMBUFLEN];
14295 # ifdef WIN32
14296 HWND w;
14297 # else
14298 Window w;
14299 # endif
14301 if (check_restricted() || check_secure())
14302 return;
14304 # ifdef FEAT_X11
14305 if (check_connection() == FAIL)
14306 return;
14307 # endif
14309 server_name = get_tv_string_chk(&argvars[0]);
14310 if (server_name == NULL)
14311 return; /* type error; errmsg already given */
14312 keys = get_tv_string_buf(&argvars[1], buf);
14313 # ifdef WIN32
14314 if (serverSendToVim(server_name, keys, &r, &w, expr, TRUE) < 0)
14315 # else
14316 if (serverSendToVim(X_DISPLAY, server_name, keys, &r, &w, expr, 0, TRUE)
14317 < 0)
14318 # endif
14320 if (r != NULL)
14321 EMSG(r); /* sending worked but evaluation failed */
14322 else
14323 EMSG2(_("E241: Unable to send to %s"), server_name);
14324 return;
14327 rettv->vval.v_string = r;
14329 if (argvars[2].v_type != VAR_UNKNOWN)
14331 dictitem_T v;
14332 char_u str[30];
14333 char_u *idvar;
14335 sprintf((char *)str, PRINTF_HEX_LONG_U, (long_u)w);
14336 v.di_tv.v_type = VAR_STRING;
14337 v.di_tv.vval.v_string = vim_strsave(str);
14338 idvar = get_tv_string_chk(&argvars[2]);
14339 if (idvar != NULL)
14340 set_var(idvar, &v.di_tv, FALSE);
14341 vim_free(v.di_tv.vval.v_string);
14344 #endif
14347 * "remote_expr()" function
14349 /*ARGSUSED*/
14350 static void
14351 f_remote_expr(argvars, rettv)
14352 typval_T *argvars;
14353 typval_T *rettv;
14355 rettv->v_type = VAR_STRING;
14356 rettv->vval.v_string = NULL;
14357 #ifdef FEAT_CLIENTSERVER
14358 remote_common(argvars, rettv, TRUE);
14359 #endif
14363 * "remote_foreground()" function
14365 /*ARGSUSED*/
14366 static void
14367 f_remote_foreground(argvars, rettv)
14368 typval_T *argvars;
14369 typval_T *rettv;
14371 rettv->vval.v_number = 0;
14372 #ifdef FEAT_CLIENTSERVER
14373 # ifdef WIN32
14374 /* On Win32 it's done in this application. */
14376 char_u *server_name = get_tv_string_chk(&argvars[0]);
14378 if (server_name != NULL)
14379 serverForeground(server_name);
14381 # else
14382 /* Send a foreground() expression to the server. */
14383 argvars[1].v_type = VAR_STRING;
14384 argvars[1].vval.v_string = vim_strsave((char_u *)"foreground()");
14385 argvars[2].v_type = VAR_UNKNOWN;
14386 remote_common(argvars, rettv, TRUE);
14387 vim_free(argvars[1].vval.v_string);
14388 # endif
14389 #endif
14392 /*ARGSUSED*/
14393 static void
14394 f_remote_peek(argvars, rettv)
14395 typval_T *argvars;
14396 typval_T *rettv;
14398 #ifdef FEAT_CLIENTSERVER
14399 dictitem_T v;
14400 char_u *s = NULL;
14401 # ifdef WIN32
14402 long_u n = 0;
14403 # endif
14404 char_u *serverid;
14406 if (check_restricted() || check_secure())
14408 rettv->vval.v_number = -1;
14409 return;
14411 serverid = get_tv_string_chk(&argvars[0]);
14412 if (serverid == NULL)
14414 rettv->vval.v_number = -1;
14415 return; /* type error; errmsg already given */
14417 # ifdef WIN32
14418 sscanf(serverid, SCANF_HEX_LONG_U, &n);
14419 if (n == 0)
14420 rettv->vval.v_number = -1;
14421 else
14423 s = serverGetReply((HWND)n, FALSE, FALSE, FALSE);
14424 rettv->vval.v_number = (s != NULL);
14426 # else
14427 rettv->vval.v_number = 0;
14428 if (check_connection() == FAIL)
14429 return;
14431 rettv->vval.v_number = serverPeekReply(X_DISPLAY,
14432 serverStrToWin(serverid), &s);
14433 # endif
14435 if (argvars[1].v_type != VAR_UNKNOWN && rettv->vval.v_number > 0)
14437 char_u *retvar;
14439 v.di_tv.v_type = VAR_STRING;
14440 v.di_tv.vval.v_string = vim_strsave(s);
14441 retvar = get_tv_string_chk(&argvars[1]);
14442 if (retvar != NULL)
14443 set_var(retvar, &v.di_tv, FALSE);
14444 vim_free(v.di_tv.vval.v_string);
14446 #else
14447 rettv->vval.v_number = -1;
14448 #endif
14451 /*ARGSUSED*/
14452 static void
14453 f_remote_read(argvars, rettv)
14454 typval_T *argvars;
14455 typval_T *rettv;
14457 char_u *r = NULL;
14459 #ifdef FEAT_CLIENTSERVER
14460 char_u *serverid = get_tv_string_chk(&argvars[0]);
14462 if (serverid != NULL && !check_restricted() && !check_secure())
14464 # ifdef WIN32
14465 /* The server's HWND is encoded in the 'id' parameter */
14466 long_u n = 0;
14468 sscanf(serverid, SCANF_HEX_LONG_U, &n);
14469 if (n != 0)
14470 r = serverGetReply((HWND)n, FALSE, TRUE, TRUE);
14471 if (r == NULL)
14472 # else
14473 if (check_connection() == FAIL || serverReadReply(X_DISPLAY,
14474 serverStrToWin(serverid), &r, FALSE) < 0)
14475 # endif
14476 EMSG(_("E277: Unable to read a server reply"));
14478 #endif
14479 rettv->v_type = VAR_STRING;
14480 rettv->vval.v_string = r;
14484 * "remote_send()" function
14486 /*ARGSUSED*/
14487 static void
14488 f_remote_send(argvars, rettv)
14489 typval_T *argvars;
14490 typval_T *rettv;
14492 rettv->v_type = VAR_STRING;
14493 rettv->vval.v_string = NULL;
14494 #ifdef FEAT_CLIENTSERVER
14495 remote_common(argvars, rettv, FALSE);
14496 #endif
14500 * "remove()" function
14502 static void
14503 f_remove(argvars, rettv)
14504 typval_T *argvars;
14505 typval_T *rettv;
14507 list_T *l;
14508 listitem_T *item, *item2;
14509 listitem_T *li;
14510 long idx;
14511 long end;
14512 char_u *key;
14513 dict_T *d;
14514 dictitem_T *di;
14516 rettv->vval.v_number = 0;
14517 if (argvars[0].v_type == VAR_DICT)
14519 if (argvars[2].v_type != VAR_UNKNOWN)
14520 EMSG2(_(e_toomanyarg), "remove()");
14521 else if ((d = argvars[0].vval.v_dict) != NULL
14522 && !tv_check_lock(d->dv_lock, (char_u *)"remove() argument"))
14524 key = get_tv_string_chk(&argvars[1]);
14525 if (key != NULL)
14527 di = dict_find(d, key, -1);
14528 if (di == NULL)
14529 EMSG2(_(e_dictkey), key);
14530 else
14532 *rettv = di->di_tv;
14533 init_tv(&di->di_tv);
14534 dictitem_remove(d, di);
14539 else if (argvars[0].v_type != VAR_LIST)
14540 EMSG2(_(e_listdictarg), "remove()");
14541 else if ((l = argvars[0].vval.v_list) != NULL
14542 && !tv_check_lock(l->lv_lock, (char_u *)"remove() argument"))
14544 int error = FALSE;
14546 idx = get_tv_number_chk(&argvars[1], &error);
14547 if (error)
14548 ; /* type error: do nothing, errmsg already given */
14549 else if ((item = list_find(l, idx)) == NULL)
14550 EMSGN(_(e_listidx), idx);
14551 else
14553 if (argvars[2].v_type == VAR_UNKNOWN)
14555 /* Remove one item, return its value. */
14556 list_remove(l, item, item);
14557 *rettv = item->li_tv;
14558 vim_free(item);
14560 else
14562 /* Remove range of items, return list with values. */
14563 end = get_tv_number_chk(&argvars[2], &error);
14564 if (error)
14565 ; /* type error: do nothing */
14566 else if ((item2 = list_find(l, end)) == NULL)
14567 EMSGN(_(e_listidx), end);
14568 else
14570 int cnt = 0;
14572 for (li = item; li != NULL; li = li->li_next)
14574 ++cnt;
14575 if (li == item2)
14576 break;
14578 if (li == NULL) /* didn't find "item2" after "item" */
14579 EMSG(_(e_invrange));
14580 else
14582 list_remove(l, item, item2);
14583 if (rettv_list_alloc(rettv) == OK)
14585 l = rettv->vval.v_list;
14586 l->lv_first = item;
14587 l->lv_last = item2;
14588 item->li_prev = NULL;
14589 item2->li_next = NULL;
14590 l->lv_len = cnt;
14600 * "rename({from}, {to})" function
14602 static void
14603 f_rename(argvars, rettv)
14604 typval_T *argvars;
14605 typval_T *rettv;
14607 char_u buf[NUMBUFLEN];
14609 if (check_restricted() || check_secure())
14610 rettv->vval.v_number = -1;
14611 else
14612 rettv->vval.v_number = vim_rename(get_tv_string(&argvars[0]),
14613 get_tv_string_buf(&argvars[1], buf));
14617 * "repeat()" function
14619 /*ARGSUSED*/
14620 static void
14621 f_repeat(argvars, rettv)
14622 typval_T *argvars;
14623 typval_T *rettv;
14625 char_u *p;
14626 int n;
14627 int slen;
14628 int len;
14629 char_u *r;
14630 int i;
14632 n = get_tv_number(&argvars[1]);
14633 if (argvars[0].v_type == VAR_LIST)
14635 if (rettv_list_alloc(rettv) == OK && argvars[0].vval.v_list != NULL)
14636 while (n-- > 0)
14637 if (list_extend(rettv->vval.v_list,
14638 argvars[0].vval.v_list, NULL) == FAIL)
14639 break;
14641 else
14643 p = get_tv_string(&argvars[0]);
14644 rettv->v_type = VAR_STRING;
14645 rettv->vval.v_string = NULL;
14647 slen = (int)STRLEN(p);
14648 len = slen * n;
14649 if (len <= 0)
14650 return;
14652 r = alloc(len + 1);
14653 if (r != NULL)
14655 for (i = 0; i < n; i++)
14656 mch_memmove(r + i * slen, p, (size_t)slen);
14657 r[len] = NUL;
14660 rettv->vval.v_string = r;
14665 * "resolve()" function
14667 static void
14668 f_resolve(argvars, rettv)
14669 typval_T *argvars;
14670 typval_T *rettv;
14672 char_u *p;
14674 p = get_tv_string(&argvars[0]);
14675 #ifdef FEAT_SHORTCUT
14677 char_u *v = NULL;
14679 v = mch_resolve_shortcut(p);
14680 if (v != NULL)
14681 rettv->vval.v_string = v;
14682 else
14683 rettv->vval.v_string = vim_strsave(p);
14685 #else
14686 # ifdef HAVE_READLINK
14688 char_u buf[MAXPATHL + 1];
14689 char_u *cpy;
14690 int len;
14691 char_u *remain = NULL;
14692 char_u *q;
14693 int is_relative_to_current = FALSE;
14694 int has_trailing_pathsep = FALSE;
14695 int limit = 100;
14697 p = vim_strsave(p);
14699 if (p[0] == '.' && (vim_ispathsep(p[1])
14700 || (p[1] == '.' && (vim_ispathsep(p[2])))))
14701 is_relative_to_current = TRUE;
14703 len = STRLEN(p);
14704 if (len > 0 && after_pathsep(p, p + len))
14705 has_trailing_pathsep = TRUE;
14707 q = getnextcomp(p);
14708 if (*q != NUL)
14710 /* Separate the first path component in "p", and keep the
14711 * remainder (beginning with the path separator). */
14712 remain = vim_strsave(q - 1);
14713 q[-1] = NUL;
14716 for (;;)
14718 for (;;)
14720 len = readlink((char *)p, (char *)buf, MAXPATHL);
14721 if (len <= 0)
14722 break;
14723 buf[len] = NUL;
14725 if (limit-- == 0)
14727 vim_free(p);
14728 vim_free(remain);
14729 EMSG(_("E655: Too many symbolic links (cycle?)"));
14730 rettv->vval.v_string = NULL;
14731 goto fail;
14734 /* Ensure that the result will have a trailing path separator
14735 * if the argument has one. */
14736 if (remain == NULL && has_trailing_pathsep)
14737 add_pathsep(buf);
14739 /* Separate the first path component in the link value and
14740 * concatenate the remainders. */
14741 q = getnextcomp(vim_ispathsep(*buf) ? buf + 1 : buf);
14742 if (*q != NUL)
14744 if (remain == NULL)
14745 remain = vim_strsave(q - 1);
14746 else
14748 cpy = concat_str(q - 1, remain);
14749 if (cpy != NULL)
14751 vim_free(remain);
14752 remain = cpy;
14755 q[-1] = NUL;
14758 q = gettail(p);
14759 if (q > p && *q == NUL)
14761 /* Ignore trailing path separator. */
14762 q[-1] = NUL;
14763 q = gettail(p);
14765 if (q > p && !mch_isFullName(buf))
14767 /* symlink is relative to directory of argument */
14768 cpy = alloc((unsigned)(STRLEN(p) + STRLEN(buf) + 1));
14769 if (cpy != NULL)
14771 STRCPY(cpy, p);
14772 STRCPY(gettail(cpy), buf);
14773 vim_free(p);
14774 p = cpy;
14777 else
14779 vim_free(p);
14780 p = vim_strsave(buf);
14784 if (remain == NULL)
14785 break;
14787 /* Append the first path component of "remain" to "p". */
14788 q = getnextcomp(remain + 1);
14789 len = q - remain - (*q != NUL);
14790 cpy = vim_strnsave(p, STRLEN(p) + len);
14791 if (cpy != NULL)
14793 STRNCAT(cpy, remain, len);
14794 vim_free(p);
14795 p = cpy;
14797 /* Shorten "remain". */
14798 if (*q != NUL)
14799 STRMOVE(remain, q - 1);
14800 else
14802 vim_free(remain);
14803 remain = NULL;
14807 /* If the result is a relative path name, make it explicitly relative to
14808 * the current directory if and only if the argument had this form. */
14809 if (!vim_ispathsep(*p))
14811 if (is_relative_to_current
14812 && *p != NUL
14813 && !(p[0] == '.'
14814 && (p[1] == NUL
14815 || vim_ispathsep(p[1])
14816 || (p[1] == '.'
14817 && (p[2] == NUL
14818 || vim_ispathsep(p[2]))))))
14820 /* Prepend "./". */
14821 cpy = concat_str((char_u *)"./", p);
14822 if (cpy != NULL)
14824 vim_free(p);
14825 p = cpy;
14828 else if (!is_relative_to_current)
14830 /* Strip leading "./". */
14831 q = p;
14832 while (q[0] == '.' && vim_ispathsep(q[1]))
14833 q += 2;
14834 if (q > p)
14835 STRMOVE(p, p + 2);
14839 /* Ensure that the result will have no trailing path separator
14840 * if the argument had none. But keep "/" or "//". */
14841 if (!has_trailing_pathsep)
14843 q = p + STRLEN(p);
14844 if (after_pathsep(p, q))
14845 *gettail_sep(p) = NUL;
14848 rettv->vval.v_string = p;
14850 # else
14851 rettv->vval.v_string = vim_strsave(p);
14852 # endif
14853 #endif
14855 simplify_filename(rettv->vval.v_string);
14857 #ifdef HAVE_READLINK
14858 fail:
14859 #endif
14860 rettv->v_type = VAR_STRING;
14864 * "reverse({list})" function
14866 static void
14867 f_reverse(argvars, rettv)
14868 typval_T *argvars;
14869 typval_T *rettv;
14871 list_T *l;
14872 listitem_T *li, *ni;
14874 rettv->vval.v_number = 0;
14875 if (argvars[0].v_type != VAR_LIST)
14876 EMSG2(_(e_listarg), "reverse()");
14877 else if ((l = argvars[0].vval.v_list) != NULL
14878 && !tv_check_lock(l->lv_lock, (char_u *)"reverse()"))
14880 li = l->lv_last;
14881 l->lv_first = l->lv_last = NULL;
14882 l->lv_len = 0;
14883 while (li != NULL)
14885 ni = li->li_prev;
14886 list_append(l, li);
14887 li = ni;
14889 rettv->vval.v_list = l;
14890 rettv->v_type = VAR_LIST;
14891 ++l->lv_refcount;
14892 l->lv_idx = l->lv_len - l->lv_idx - 1;
14896 #define SP_NOMOVE 0x01 /* don't move cursor */
14897 #define SP_REPEAT 0x02 /* repeat to find outer pair */
14898 #define SP_RETCOUNT 0x04 /* return matchcount */
14899 #define SP_SETPCMARK 0x08 /* set previous context mark */
14900 #define SP_START 0x10 /* accept match at start position */
14901 #define SP_SUBPAT 0x20 /* return nr of matching sub-pattern */
14902 #define SP_END 0x40 /* leave cursor at end of match */
14904 static int get_search_arg __ARGS((typval_T *varp, int *flagsp));
14907 * Get flags for a search function.
14908 * Possibly sets "p_ws".
14909 * Returns BACKWARD, FORWARD or zero (for an error).
14911 static int
14912 get_search_arg(varp, flagsp)
14913 typval_T *varp;
14914 int *flagsp;
14916 int dir = FORWARD;
14917 char_u *flags;
14918 char_u nbuf[NUMBUFLEN];
14919 int mask;
14921 if (varp->v_type != VAR_UNKNOWN)
14923 flags = get_tv_string_buf_chk(varp, nbuf);
14924 if (flags == NULL)
14925 return 0; /* type error; errmsg already given */
14926 while (*flags != NUL)
14928 switch (*flags)
14930 case 'b': dir = BACKWARD; break;
14931 case 'w': p_ws = TRUE; break;
14932 case 'W': p_ws = FALSE; break;
14933 default: mask = 0;
14934 if (flagsp != NULL)
14935 switch (*flags)
14937 case 'c': mask = SP_START; break;
14938 case 'e': mask = SP_END; break;
14939 case 'm': mask = SP_RETCOUNT; break;
14940 case 'n': mask = SP_NOMOVE; break;
14941 case 'p': mask = SP_SUBPAT; break;
14942 case 'r': mask = SP_REPEAT; break;
14943 case 's': mask = SP_SETPCMARK; break;
14945 if (mask == 0)
14947 EMSG2(_(e_invarg2), flags);
14948 dir = 0;
14950 else
14951 *flagsp |= mask;
14953 if (dir == 0)
14954 break;
14955 ++flags;
14958 return dir;
14962 * Shared by search() and searchpos() functions
14964 static int
14965 search_cmn(argvars, match_pos, flagsp)
14966 typval_T *argvars;
14967 pos_T *match_pos;
14968 int *flagsp;
14970 int flags;
14971 char_u *pat;
14972 pos_T pos;
14973 pos_T save_cursor;
14974 int save_p_ws = p_ws;
14975 int dir;
14976 int retval = 0; /* default: FAIL */
14977 long lnum_stop = 0;
14978 proftime_T tm;
14979 #ifdef FEAT_RELTIME
14980 long time_limit = 0;
14981 #endif
14982 int options = SEARCH_KEEP;
14983 int subpatnum;
14985 pat = get_tv_string(&argvars[0]);
14986 dir = get_search_arg(&argvars[1], flagsp); /* may set p_ws */
14987 if (dir == 0)
14988 goto theend;
14989 flags = *flagsp;
14990 if (flags & SP_START)
14991 options |= SEARCH_START;
14992 if (flags & SP_END)
14993 options |= SEARCH_END;
14995 /* Optional arguments: line number to stop searching and timeout. */
14996 if (argvars[1].v_type != VAR_UNKNOWN && argvars[2].v_type != VAR_UNKNOWN)
14998 lnum_stop = get_tv_number_chk(&argvars[2], NULL);
14999 if (lnum_stop < 0)
15000 goto theend;
15001 #ifdef FEAT_RELTIME
15002 if (argvars[3].v_type != VAR_UNKNOWN)
15004 time_limit = get_tv_number_chk(&argvars[3], NULL);
15005 if (time_limit < 0)
15006 goto theend;
15008 #endif
15011 #ifdef FEAT_RELTIME
15012 /* Set the time limit, if there is one. */
15013 profile_setlimit(time_limit, &tm);
15014 #endif
15017 * This function does not accept SP_REPEAT and SP_RETCOUNT flags.
15018 * Check to make sure only those flags are set.
15019 * Also, Only the SP_NOMOVE or the SP_SETPCMARK flag can be set. Both
15020 * flags cannot be set. Check for that condition also.
15022 if (((flags & (SP_REPEAT | SP_RETCOUNT)) != 0)
15023 || ((flags & SP_NOMOVE) && (flags & SP_SETPCMARK)))
15025 EMSG2(_(e_invarg2), get_tv_string(&argvars[1]));
15026 goto theend;
15029 pos = save_cursor = curwin->w_cursor;
15030 subpatnum = searchit(curwin, curbuf, &pos, dir, pat, 1L,
15031 options, RE_SEARCH, (linenr_T)lnum_stop, &tm);
15032 if (subpatnum != FAIL)
15034 if (flags & SP_SUBPAT)
15035 retval = subpatnum;
15036 else
15037 retval = pos.lnum;
15038 if (flags & SP_SETPCMARK)
15039 setpcmark();
15040 curwin->w_cursor = pos;
15041 if (match_pos != NULL)
15043 /* Store the match cursor position */
15044 match_pos->lnum = pos.lnum;
15045 match_pos->col = pos.col + 1;
15047 /* "/$" will put the cursor after the end of the line, may need to
15048 * correct that here */
15049 check_cursor();
15052 /* If 'n' flag is used: restore cursor position. */
15053 if (flags & SP_NOMOVE)
15054 curwin->w_cursor = save_cursor;
15055 else
15056 curwin->w_set_curswant = TRUE;
15057 theend:
15058 p_ws = save_p_ws;
15060 return retval;
15063 #ifdef FEAT_FLOAT
15065 * "round({float})" function
15067 static void
15068 f_round(argvars, rettv)
15069 typval_T *argvars;
15070 typval_T *rettv;
15072 float_T f;
15074 rettv->v_type = VAR_FLOAT;
15075 if (get_float_arg(argvars, &f) == OK)
15076 /* round() is not in C90, use ceil() or floor() instead. */
15077 rettv->vval.v_float = f > 0 ? floor(f + 0.5) : ceil(f - 0.5);
15078 else
15079 rettv->vval.v_float = 0.0;
15081 #endif
15084 * "search()" function
15086 static void
15087 f_search(argvars, rettv)
15088 typval_T *argvars;
15089 typval_T *rettv;
15091 int flags = 0;
15093 rettv->vval.v_number = search_cmn(argvars, NULL, &flags);
15097 * "searchdecl()" function
15099 static void
15100 f_searchdecl(argvars, rettv)
15101 typval_T *argvars;
15102 typval_T *rettv;
15104 int locally = 1;
15105 int thisblock = 0;
15106 int error = FALSE;
15107 char_u *name;
15109 rettv->vval.v_number = 1; /* default: FAIL */
15111 name = get_tv_string_chk(&argvars[0]);
15112 if (argvars[1].v_type != VAR_UNKNOWN)
15114 locally = get_tv_number_chk(&argvars[1], &error) == 0;
15115 if (!error && argvars[2].v_type != VAR_UNKNOWN)
15116 thisblock = get_tv_number_chk(&argvars[2], &error) != 0;
15118 if (!error && name != NULL)
15119 rettv->vval.v_number = find_decl(name, (int)STRLEN(name),
15120 locally, thisblock, SEARCH_KEEP) == FAIL;
15124 * Used by searchpair() and searchpairpos()
15126 static int
15127 searchpair_cmn(argvars, match_pos)
15128 typval_T *argvars;
15129 pos_T *match_pos;
15131 char_u *spat, *mpat, *epat;
15132 char_u *skip;
15133 int save_p_ws = p_ws;
15134 int dir;
15135 int flags = 0;
15136 char_u nbuf1[NUMBUFLEN];
15137 char_u nbuf2[NUMBUFLEN];
15138 char_u nbuf3[NUMBUFLEN];
15139 int retval = 0; /* default: FAIL */
15140 long lnum_stop = 0;
15141 long time_limit = 0;
15143 /* Get the three pattern arguments: start, middle, end. */
15144 spat = get_tv_string_chk(&argvars[0]);
15145 mpat = get_tv_string_buf_chk(&argvars[1], nbuf1);
15146 epat = get_tv_string_buf_chk(&argvars[2], nbuf2);
15147 if (spat == NULL || mpat == NULL || epat == NULL)
15148 goto theend; /* type error */
15150 /* Handle the optional fourth argument: flags */
15151 dir = get_search_arg(&argvars[3], &flags); /* may set p_ws */
15152 if (dir == 0)
15153 goto theend;
15155 /* Don't accept SP_END or SP_SUBPAT.
15156 * Only one of the SP_NOMOVE or SP_SETPCMARK flags can be set.
15158 if ((flags & (SP_END | SP_SUBPAT)) != 0
15159 || ((flags & SP_NOMOVE) && (flags & SP_SETPCMARK)))
15161 EMSG2(_(e_invarg2), get_tv_string(&argvars[3]));
15162 goto theend;
15165 /* Using 'r' implies 'W', otherwise it doesn't work. */
15166 if (flags & SP_REPEAT)
15167 p_ws = FALSE;
15169 /* Optional fifth argument: skip expression */
15170 if (argvars[3].v_type == VAR_UNKNOWN
15171 || argvars[4].v_type == VAR_UNKNOWN)
15172 skip = (char_u *)"";
15173 else
15175 skip = get_tv_string_buf_chk(&argvars[4], nbuf3);
15176 if (argvars[5].v_type != VAR_UNKNOWN)
15178 lnum_stop = get_tv_number_chk(&argvars[5], NULL);
15179 if (lnum_stop < 0)
15180 goto theend;
15181 #ifdef FEAT_RELTIME
15182 if (argvars[6].v_type != VAR_UNKNOWN)
15184 time_limit = get_tv_number_chk(&argvars[6], NULL);
15185 if (time_limit < 0)
15186 goto theend;
15188 #endif
15191 if (skip == NULL)
15192 goto theend; /* type error */
15194 retval = do_searchpair(spat, mpat, epat, dir, skip, flags,
15195 match_pos, lnum_stop, time_limit);
15197 theend:
15198 p_ws = save_p_ws;
15200 return retval;
15204 * "searchpair()" function
15206 static void
15207 f_searchpair(argvars, rettv)
15208 typval_T *argvars;
15209 typval_T *rettv;
15211 rettv->vval.v_number = searchpair_cmn(argvars, NULL);
15215 * "searchpairpos()" function
15217 static void
15218 f_searchpairpos(argvars, rettv)
15219 typval_T *argvars;
15220 typval_T *rettv;
15222 pos_T match_pos;
15223 int lnum = 0;
15224 int col = 0;
15226 rettv->vval.v_number = 0;
15228 if (rettv_list_alloc(rettv) == FAIL)
15229 return;
15231 if (searchpair_cmn(argvars, &match_pos) > 0)
15233 lnum = match_pos.lnum;
15234 col = match_pos.col;
15237 list_append_number(rettv->vval.v_list, (varnumber_T)lnum);
15238 list_append_number(rettv->vval.v_list, (varnumber_T)col);
15242 * Search for a start/middle/end thing.
15243 * Used by searchpair(), see its documentation for the details.
15244 * Returns 0 or -1 for no match,
15246 long
15247 do_searchpair(spat, mpat, epat, dir, skip, flags, match_pos,
15248 lnum_stop, time_limit)
15249 char_u *spat; /* start pattern */
15250 char_u *mpat; /* middle pattern */
15251 char_u *epat; /* end pattern */
15252 int dir; /* BACKWARD or FORWARD */
15253 char_u *skip; /* skip expression */
15254 int flags; /* SP_SETPCMARK and other SP_ values */
15255 pos_T *match_pos;
15256 linenr_T lnum_stop; /* stop at this line if not zero */
15257 long time_limit; /* stop after this many msec */
15259 char_u *save_cpo;
15260 char_u *pat, *pat2 = NULL, *pat3 = NULL;
15261 long retval = 0;
15262 pos_T pos;
15263 pos_T firstpos;
15264 pos_T foundpos;
15265 pos_T save_cursor;
15266 pos_T save_pos;
15267 int n;
15268 int r;
15269 int nest = 1;
15270 int err;
15271 int options = SEARCH_KEEP;
15272 proftime_T tm;
15274 /* Make 'cpoptions' empty, the 'l' flag should not be used here. */
15275 save_cpo = p_cpo;
15276 p_cpo = empty_option;
15278 #ifdef FEAT_RELTIME
15279 /* Set the time limit, if there is one. */
15280 profile_setlimit(time_limit, &tm);
15281 #endif
15283 /* Make two search patterns: start/end (pat2, for in nested pairs) and
15284 * start/middle/end (pat3, for the top pair). */
15285 pat2 = alloc((unsigned)(STRLEN(spat) + STRLEN(epat) + 15));
15286 pat3 = alloc((unsigned)(STRLEN(spat) + STRLEN(mpat) + STRLEN(epat) + 23));
15287 if (pat2 == NULL || pat3 == NULL)
15288 goto theend;
15289 sprintf((char *)pat2, "\\(%s\\m\\)\\|\\(%s\\m\\)", spat, epat);
15290 if (*mpat == NUL)
15291 STRCPY(pat3, pat2);
15292 else
15293 sprintf((char *)pat3, "\\(%s\\m\\)\\|\\(%s\\m\\)\\|\\(%s\\m\\)",
15294 spat, epat, mpat);
15295 if (flags & SP_START)
15296 options |= SEARCH_START;
15298 save_cursor = curwin->w_cursor;
15299 pos = curwin->w_cursor;
15300 clearpos(&firstpos);
15301 clearpos(&foundpos);
15302 pat = pat3;
15303 for (;;)
15305 n = searchit(curwin, curbuf, &pos, dir, pat, 1L,
15306 options, RE_SEARCH, lnum_stop, &tm);
15307 if (n == FAIL || (firstpos.lnum != 0 && equalpos(pos, firstpos)))
15308 /* didn't find it or found the first match again: FAIL */
15309 break;
15311 if (firstpos.lnum == 0)
15312 firstpos = pos;
15313 if (equalpos(pos, foundpos))
15315 /* Found the same position again. Can happen with a pattern that
15316 * has "\zs" at the end and searching backwards. Advance one
15317 * character and try again. */
15318 if (dir == BACKWARD)
15319 decl(&pos);
15320 else
15321 incl(&pos);
15323 foundpos = pos;
15325 /* clear the start flag to avoid getting stuck here */
15326 options &= ~SEARCH_START;
15328 /* If the skip pattern matches, ignore this match. */
15329 if (*skip != NUL)
15331 save_pos = curwin->w_cursor;
15332 curwin->w_cursor = pos;
15333 r = eval_to_bool(skip, &err, NULL, FALSE);
15334 curwin->w_cursor = save_pos;
15335 if (err)
15337 /* Evaluating {skip} caused an error, break here. */
15338 curwin->w_cursor = save_cursor;
15339 retval = -1;
15340 break;
15342 if (r)
15343 continue;
15346 if ((dir == BACKWARD && n == 3) || (dir == FORWARD && n == 2))
15348 /* Found end when searching backwards or start when searching
15349 * forward: nested pair. */
15350 ++nest;
15351 pat = pat2; /* nested, don't search for middle */
15353 else
15355 /* Found end when searching forward or start when searching
15356 * backward: end of (nested) pair; or found middle in outer pair. */
15357 if (--nest == 1)
15358 pat = pat3; /* outer level, search for middle */
15361 if (nest == 0)
15363 /* Found the match: return matchcount or line number. */
15364 if (flags & SP_RETCOUNT)
15365 ++retval;
15366 else
15367 retval = pos.lnum;
15368 if (flags & SP_SETPCMARK)
15369 setpcmark();
15370 curwin->w_cursor = pos;
15371 if (!(flags & SP_REPEAT))
15372 break;
15373 nest = 1; /* search for next unmatched */
15377 if (match_pos != NULL)
15379 /* Store the match cursor position */
15380 match_pos->lnum = curwin->w_cursor.lnum;
15381 match_pos->col = curwin->w_cursor.col + 1;
15384 /* If 'n' flag is used or search failed: restore cursor position. */
15385 if ((flags & SP_NOMOVE) || retval == 0)
15386 curwin->w_cursor = save_cursor;
15388 theend:
15389 vim_free(pat2);
15390 vim_free(pat3);
15391 if (p_cpo == empty_option)
15392 p_cpo = save_cpo;
15393 else
15394 /* Darn, evaluating the {skip} expression changed the value. */
15395 free_string_option(save_cpo);
15397 return retval;
15401 * "searchpos()" function
15403 static void
15404 f_searchpos(argvars, rettv)
15405 typval_T *argvars;
15406 typval_T *rettv;
15408 pos_T match_pos;
15409 int lnum = 0;
15410 int col = 0;
15411 int n;
15412 int flags = 0;
15414 rettv->vval.v_number = 0;
15416 if (rettv_list_alloc(rettv) == FAIL)
15417 return;
15419 n = search_cmn(argvars, &match_pos, &flags);
15420 if (n > 0)
15422 lnum = match_pos.lnum;
15423 col = match_pos.col;
15426 list_append_number(rettv->vval.v_list, (varnumber_T)lnum);
15427 list_append_number(rettv->vval.v_list, (varnumber_T)col);
15428 if (flags & SP_SUBPAT)
15429 list_append_number(rettv->vval.v_list, (varnumber_T)n);
15433 /*ARGSUSED*/
15434 static void
15435 f_server2client(argvars, rettv)
15436 typval_T *argvars;
15437 typval_T *rettv;
15439 #ifdef FEAT_CLIENTSERVER
15440 char_u buf[NUMBUFLEN];
15441 char_u *server = get_tv_string_chk(&argvars[0]);
15442 char_u *reply = get_tv_string_buf_chk(&argvars[1], buf);
15444 rettv->vval.v_number = -1;
15445 if (server == NULL || reply == NULL)
15446 return;
15447 if (check_restricted() || check_secure())
15448 return;
15449 # ifdef FEAT_X11
15450 if (check_connection() == FAIL)
15451 return;
15452 # endif
15454 if (serverSendReply(server, reply) < 0)
15456 EMSG(_("E258: Unable to send to client"));
15457 return;
15459 rettv->vval.v_number = 0;
15460 #else
15461 rettv->vval.v_number = -1;
15462 #endif
15465 /*ARGSUSED*/
15466 static void
15467 f_serverlist(argvars, rettv)
15468 typval_T *argvars;
15469 typval_T *rettv;
15471 char_u *r = NULL;
15473 #ifdef FEAT_CLIENTSERVER
15474 # ifdef WIN32
15475 r = serverGetVimNames();
15476 # else
15477 make_connection();
15478 if (X_DISPLAY != NULL)
15479 r = serverGetVimNames(X_DISPLAY);
15480 # endif
15481 #endif
15482 rettv->v_type = VAR_STRING;
15483 rettv->vval.v_string = r;
15487 * "setbufvar()" function
15489 /*ARGSUSED*/
15490 static void
15491 f_setbufvar(argvars, rettv)
15492 typval_T *argvars;
15493 typval_T *rettv;
15495 buf_T *buf;
15496 aco_save_T aco;
15497 char_u *varname, *bufvarname;
15498 typval_T *varp;
15499 char_u nbuf[NUMBUFLEN];
15501 rettv->vval.v_number = 0;
15503 if (check_restricted() || check_secure())
15504 return;
15505 (void)get_tv_number(&argvars[0]); /* issue errmsg if type error */
15506 varname = get_tv_string_chk(&argvars[1]);
15507 buf = get_buf_tv(&argvars[0]);
15508 varp = &argvars[2];
15510 if (buf != NULL && varname != NULL && varp != NULL)
15512 /* set curbuf to be our buf, temporarily */
15513 aucmd_prepbuf(&aco, buf);
15515 if (*varname == '&')
15517 long numval;
15518 char_u *strval;
15519 int error = FALSE;
15521 ++varname;
15522 numval = get_tv_number_chk(varp, &error);
15523 strval = get_tv_string_buf_chk(varp, nbuf);
15524 if (!error && strval != NULL)
15525 set_option_value(varname, numval, strval, OPT_LOCAL);
15527 else
15529 bufvarname = alloc((unsigned)STRLEN(varname) + 3);
15530 if (bufvarname != NULL)
15532 STRCPY(bufvarname, "b:");
15533 STRCPY(bufvarname + 2, varname);
15534 set_var(bufvarname, varp, TRUE);
15535 vim_free(bufvarname);
15539 /* reset notion of buffer */
15540 aucmd_restbuf(&aco);
15545 * "setcmdpos()" function
15547 static void
15548 f_setcmdpos(argvars, rettv)
15549 typval_T *argvars;
15550 typval_T *rettv;
15552 int pos = (int)get_tv_number(&argvars[0]) - 1;
15554 if (pos >= 0)
15555 rettv->vval.v_number = set_cmdline_pos(pos);
15559 * "setline()" function
15561 static void
15562 f_setline(argvars, rettv)
15563 typval_T *argvars;
15564 typval_T *rettv;
15566 linenr_T lnum;
15567 char_u *line = NULL;
15568 list_T *l = NULL;
15569 listitem_T *li = NULL;
15570 long added = 0;
15571 linenr_T lcount = curbuf->b_ml.ml_line_count;
15573 lnum = get_tv_lnum(&argvars[0]);
15574 if (argvars[1].v_type == VAR_LIST)
15576 l = argvars[1].vval.v_list;
15577 li = l->lv_first;
15579 else
15580 line = get_tv_string_chk(&argvars[1]);
15582 rettv->vval.v_number = 0; /* OK */
15583 for (;;)
15585 if (l != NULL)
15587 /* list argument, get next string */
15588 if (li == NULL)
15589 break;
15590 line = get_tv_string_chk(&li->li_tv);
15591 li = li->li_next;
15594 rettv->vval.v_number = 1; /* FAIL */
15595 if (line == NULL || lnum < 1 || lnum > curbuf->b_ml.ml_line_count + 1)
15596 break;
15597 if (lnum <= curbuf->b_ml.ml_line_count)
15599 /* existing line, replace it */
15600 if (u_savesub(lnum) == OK && ml_replace(lnum, line, TRUE) == OK)
15602 changed_bytes(lnum, 0);
15603 if (lnum == curwin->w_cursor.lnum)
15604 check_cursor_col();
15605 rettv->vval.v_number = 0; /* OK */
15608 else if (added > 0 || u_save(lnum - 1, lnum) == OK)
15610 /* lnum is one past the last line, append the line */
15611 ++added;
15612 if (ml_append(lnum - 1, line, (colnr_T)0, FALSE) == OK)
15613 rettv->vval.v_number = 0; /* OK */
15616 if (l == NULL) /* only one string argument */
15617 break;
15618 ++lnum;
15621 if (added > 0)
15622 appended_lines_mark(lcount, added);
15625 static void set_qf_ll_list __ARGS((win_T *wp, typval_T *list_arg, typval_T *action_arg, typval_T *rettv));
15628 * Used by "setqflist()" and "setloclist()" functions
15630 /*ARGSUSED*/
15631 static void
15632 set_qf_ll_list(wp, list_arg, action_arg, rettv)
15633 win_T *wp;
15634 typval_T *list_arg;
15635 typval_T *action_arg;
15636 typval_T *rettv;
15638 #ifdef FEAT_QUICKFIX
15639 char_u *act;
15640 int action = ' ';
15641 #endif
15643 rettv->vval.v_number = -1;
15645 #ifdef FEAT_QUICKFIX
15646 if (list_arg->v_type != VAR_LIST)
15647 EMSG(_(e_listreq));
15648 else
15650 list_T *l = list_arg->vval.v_list;
15652 if (action_arg->v_type == VAR_STRING)
15654 act = get_tv_string_chk(action_arg);
15655 if (act == NULL)
15656 return; /* type error; errmsg already given */
15657 if (*act == 'a' || *act == 'r')
15658 action = *act;
15661 if (l != NULL && set_errorlist(wp, l, action) == OK)
15662 rettv->vval.v_number = 0;
15664 #endif
15668 * "setloclist()" function
15670 /*ARGSUSED*/
15671 static void
15672 f_setloclist(argvars, rettv)
15673 typval_T *argvars;
15674 typval_T *rettv;
15676 win_T *win;
15678 rettv->vval.v_number = -1;
15680 win = find_win_by_nr(&argvars[0], NULL);
15681 if (win != NULL)
15682 set_qf_ll_list(win, &argvars[1], &argvars[2], rettv);
15686 * "setmatches()" function
15688 static void
15689 f_setmatches(argvars, rettv)
15690 typval_T *argvars;
15691 typval_T *rettv;
15693 #ifdef FEAT_SEARCH_EXTRA
15694 list_T *l;
15695 listitem_T *li;
15696 dict_T *d;
15698 rettv->vval.v_number = -1;
15699 if (argvars[0].v_type != VAR_LIST)
15701 EMSG(_(e_listreq));
15702 return;
15704 if ((l = argvars[0].vval.v_list) != NULL)
15707 /* To some extent make sure that we are dealing with a list from
15708 * "getmatches()". */
15709 li = l->lv_first;
15710 while (li != NULL)
15712 if (li->li_tv.v_type != VAR_DICT
15713 || (d = li->li_tv.vval.v_dict) == NULL)
15715 EMSG(_(e_invarg));
15716 return;
15718 if (!(dict_find(d, (char_u *)"group", -1) != NULL
15719 && dict_find(d, (char_u *)"pattern", -1) != NULL
15720 && dict_find(d, (char_u *)"priority", -1) != NULL
15721 && dict_find(d, (char_u *)"id", -1) != NULL))
15723 EMSG(_(e_invarg));
15724 return;
15726 li = li->li_next;
15729 clear_matches(curwin);
15730 li = l->lv_first;
15731 while (li != NULL)
15733 d = li->li_tv.vval.v_dict;
15734 match_add(curwin, get_dict_string(d, (char_u *)"group", FALSE),
15735 get_dict_string(d, (char_u *)"pattern", FALSE),
15736 (int)get_dict_number(d, (char_u *)"priority"),
15737 (int)get_dict_number(d, (char_u *)"id"));
15738 li = li->li_next;
15740 rettv->vval.v_number = 0;
15742 #endif
15746 * "setpos()" function
15748 /*ARGSUSED*/
15749 static void
15750 f_setpos(argvars, rettv)
15751 typval_T *argvars;
15752 typval_T *rettv;
15754 pos_T pos;
15755 int fnum;
15756 char_u *name;
15758 rettv->vval.v_number = -1;
15759 name = get_tv_string_chk(argvars);
15760 if (name != NULL)
15762 if (list2fpos(&argvars[1], &pos, &fnum) == OK)
15764 --pos.col;
15765 if (name[0] == '.' && name[1] == NUL)
15767 /* set cursor */
15768 if (fnum == curbuf->b_fnum)
15770 curwin->w_cursor = pos;
15771 check_cursor();
15772 rettv->vval.v_number = 0;
15774 else
15775 EMSG(_(e_invarg));
15777 else if (name[0] == '\'' && name[1] != NUL && name[2] == NUL)
15779 /* set mark */
15780 if (setmark_pos(name[1], &pos, fnum) == OK)
15781 rettv->vval.v_number = 0;
15783 else
15784 EMSG(_(e_invarg));
15790 * "setqflist()" function
15792 /*ARGSUSED*/
15793 static void
15794 f_setqflist(argvars, rettv)
15795 typval_T *argvars;
15796 typval_T *rettv;
15798 set_qf_ll_list(NULL, &argvars[0], &argvars[1], rettv);
15802 * "setreg()" function
15804 static void
15805 f_setreg(argvars, rettv)
15806 typval_T *argvars;
15807 typval_T *rettv;
15809 int regname;
15810 char_u *strregname;
15811 char_u *stropt;
15812 char_u *strval;
15813 int append;
15814 char_u yank_type;
15815 long block_len;
15817 block_len = -1;
15818 yank_type = MAUTO;
15819 append = FALSE;
15821 strregname = get_tv_string_chk(argvars);
15822 rettv->vval.v_number = 1; /* FAIL is default */
15824 if (strregname == NULL)
15825 return; /* type error; errmsg already given */
15826 regname = *strregname;
15827 if (regname == 0 || regname == '@')
15828 regname = '"';
15829 else if (regname == '=')
15830 return;
15832 if (argvars[2].v_type != VAR_UNKNOWN)
15834 stropt = get_tv_string_chk(&argvars[2]);
15835 if (stropt == NULL)
15836 return; /* type error */
15837 for (; *stropt != NUL; ++stropt)
15838 switch (*stropt)
15840 case 'a': case 'A': /* append */
15841 append = TRUE;
15842 break;
15843 case 'v': case 'c': /* character-wise selection */
15844 yank_type = MCHAR;
15845 break;
15846 case 'V': case 'l': /* line-wise selection */
15847 yank_type = MLINE;
15848 break;
15849 #ifdef FEAT_VISUAL
15850 case 'b': case Ctrl_V: /* block-wise selection */
15851 yank_type = MBLOCK;
15852 if (VIM_ISDIGIT(stropt[1]))
15854 ++stropt;
15855 block_len = getdigits(&stropt) - 1;
15856 --stropt;
15858 break;
15859 #endif
15863 strval = get_tv_string_chk(&argvars[1]);
15864 if (strval != NULL)
15865 write_reg_contents_ex(regname, strval, -1,
15866 append, yank_type, block_len);
15867 rettv->vval.v_number = 0;
15871 * "settabwinvar()" function
15873 static void
15874 f_settabwinvar(argvars, rettv)
15875 typval_T *argvars;
15876 typval_T *rettv;
15878 setwinvar(argvars, rettv, 1);
15882 * "setwinvar()" function
15884 static void
15885 f_setwinvar(argvars, rettv)
15886 typval_T *argvars;
15887 typval_T *rettv;
15889 setwinvar(argvars, rettv, 0);
15893 * "setwinvar()" and "settabwinvar()" functions
15895 static void
15896 setwinvar(argvars, rettv, off)
15897 typval_T *argvars;
15898 typval_T *rettv;
15899 int off;
15901 win_T *win;
15902 #ifdef FEAT_WINDOWS
15903 win_T *save_curwin;
15904 tabpage_T *save_curtab;
15905 #endif
15906 char_u *varname, *winvarname;
15907 typval_T *varp;
15908 char_u nbuf[NUMBUFLEN];
15909 tabpage_T *tp;
15911 rettv->vval.v_number = 0;
15913 if (check_restricted() || check_secure())
15914 return;
15916 #ifdef FEAT_WINDOWS
15917 if (off == 1)
15918 tp = find_tabpage((int)get_tv_number_chk(&argvars[0], NULL));
15919 else
15920 tp = curtab;
15921 #endif
15922 win = find_win_by_nr(&argvars[off], tp);
15923 varname = get_tv_string_chk(&argvars[off + 1]);
15924 varp = &argvars[off + 2];
15926 if (win != NULL && varname != NULL && varp != NULL)
15928 #ifdef FEAT_WINDOWS
15929 /* set curwin to be our win, temporarily */
15930 save_curwin = curwin;
15931 save_curtab = curtab;
15932 goto_tabpage_tp(tp);
15933 if (!win_valid(win))
15934 return;
15935 curwin = win;
15936 curbuf = curwin->w_buffer;
15937 #endif
15939 if (*varname == '&')
15941 long numval;
15942 char_u *strval;
15943 int error = FALSE;
15945 ++varname;
15946 numval = get_tv_number_chk(varp, &error);
15947 strval = get_tv_string_buf_chk(varp, nbuf);
15948 if (!error && strval != NULL)
15949 set_option_value(varname, numval, strval, OPT_LOCAL);
15951 else
15953 winvarname = alloc((unsigned)STRLEN(varname) + 3);
15954 if (winvarname != NULL)
15956 STRCPY(winvarname, "w:");
15957 STRCPY(winvarname + 2, varname);
15958 set_var(winvarname, varp, TRUE);
15959 vim_free(winvarname);
15963 #ifdef FEAT_WINDOWS
15964 /* Restore current tabpage and window, if still valid (autocomands can
15965 * make them invalid). */
15966 if (valid_tabpage(save_curtab))
15967 goto_tabpage_tp(save_curtab);
15968 if (win_valid(save_curwin))
15970 curwin = save_curwin;
15971 curbuf = curwin->w_buffer;
15973 #endif
15978 * "shellescape({string})" function
15980 static void
15981 f_shellescape(argvars, rettv)
15982 typval_T *argvars;
15983 typval_T *rettv;
15985 rettv->vval.v_string = vim_strsave_shellescape(
15986 get_tv_string(&argvars[0]), non_zero_arg(&argvars[1]));
15987 rettv->v_type = VAR_STRING;
15991 * "simplify()" function
15993 static void
15994 f_simplify(argvars, rettv)
15995 typval_T *argvars;
15996 typval_T *rettv;
15998 char_u *p;
16000 p = get_tv_string(&argvars[0]);
16001 rettv->vval.v_string = vim_strsave(p);
16002 simplify_filename(rettv->vval.v_string); /* simplify in place */
16003 rettv->v_type = VAR_STRING;
16006 #ifdef FEAT_FLOAT
16008 * "sin()" function
16010 static void
16011 f_sin(argvars, rettv)
16012 typval_T *argvars;
16013 typval_T *rettv;
16015 float_T f;
16017 rettv->v_type = VAR_FLOAT;
16018 if (get_float_arg(argvars, &f) == OK)
16019 rettv->vval.v_float = sin(f);
16020 else
16021 rettv->vval.v_float = 0.0;
16023 #endif
16025 static int
16026 #ifdef __BORLANDC__
16027 _RTLENTRYF
16028 #endif
16029 item_compare __ARGS((const void *s1, const void *s2));
16030 static int
16031 #ifdef __BORLANDC__
16032 _RTLENTRYF
16033 #endif
16034 item_compare2 __ARGS((const void *s1, const void *s2));
16036 static int item_compare_ic;
16037 static char_u *item_compare_func;
16038 static int item_compare_func_err;
16039 #define ITEM_COMPARE_FAIL 999
16042 * Compare functions for f_sort() below.
16044 static int
16045 #ifdef __BORLANDC__
16046 _RTLENTRYF
16047 #endif
16048 item_compare(s1, s2)
16049 const void *s1;
16050 const void *s2;
16052 char_u *p1, *p2;
16053 char_u *tofree1, *tofree2;
16054 int res;
16055 char_u numbuf1[NUMBUFLEN];
16056 char_u numbuf2[NUMBUFLEN];
16058 p1 = tv2string(&(*(listitem_T **)s1)->li_tv, &tofree1, numbuf1, 0);
16059 p2 = tv2string(&(*(listitem_T **)s2)->li_tv, &tofree2, numbuf2, 0);
16060 if (p1 == NULL)
16061 p1 = (char_u *)"";
16062 if (p2 == NULL)
16063 p2 = (char_u *)"";
16064 if (item_compare_ic)
16065 res = STRICMP(p1, p2);
16066 else
16067 res = STRCMP(p1, p2);
16068 vim_free(tofree1);
16069 vim_free(tofree2);
16070 return res;
16073 static int
16074 #ifdef __BORLANDC__
16075 _RTLENTRYF
16076 #endif
16077 item_compare2(s1, s2)
16078 const void *s1;
16079 const void *s2;
16081 int res;
16082 typval_T rettv;
16083 typval_T argv[3];
16084 int dummy;
16086 /* shortcut after failure in previous call; compare all items equal */
16087 if (item_compare_func_err)
16088 return 0;
16090 /* copy the values. This is needed to be able to set v_lock to VAR_FIXED
16091 * in the copy without changing the original list items. */
16092 copy_tv(&(*(listitem_T **)s1)->li_tv, &argv[0]);
16093 copy_tv(&(*(listitem_T **)s2)->li_tv, &argv[1]);
16095 rettv.v_type = VAR_UNKNOWN; /* clear_tv() uses this */
16096 res = call_func(item_compare_func, (int)STRLEN(item_compare_func),
16097 &rettv, 2, argv, 0L, 0L, &dummy, TRUE, NULL);
16098 clear_tv(&argv[0]);
16099 clear_tv(&argv[1]);
16101 if (res == FAIL)
16102 res = ITEM_COMPARE_FAIL;
16103 else
16104 res = get_tv_number_chk(&rettv, &item_compare_func_err);
16105 if (item_compare_func_err)
16106 res = ITEM_COMPARE_FAIL; /* return value has wrong type */
16107 clear_tv(&rettv);
16108 return res;
16112 * "sort({list})" function
16114 static void
16115 f_sort(argvars, rettv)
16116 typval_T *argvars;
16117 typval_T *rettv;
16119 list_T *l;
16120 listitem_T *li;
16121 listitem_T **ptrs;
16122 long len;
16123 long i;
16125 rettv->vval.v_number = 0;
16126 if (argvars[0].v_type != VAR_LIST)
16127 EMSG2(_(e_listarg), "sort()");
16128 else
16130 l = argvars[0].vval.v_list;
16131 if (l == NULL || tv_check_lock(l->lv_lock, (char_u *)"sort()"))
16132 return;
16133 rettv->vval.v_list = l;
16134 rettv->v_type = VAR_LIST;
16135 ++l->lv_refcount;
16137 len = list_len(l);
16138 if (len <= 1)
16139 return; /* short list sorts pretty quickly */
16141 item_compare_ic = FALSE;
16142 item_compare_func = NULL;
16143 if (argvars[1].v_type != VAR_UNKNOWN)
16145 if (argvars[1].v_type == VAR_FUNC)
16146 item_compare_func = argvars[1].vval.v_string;
16147 else
16149 int error = FALSE;
16151 i = get_tv_number_chk(&argvars[1], &error);
16152 if (error)
16153 return; /* type error; errmsg already given */
16154 if (i == 1)
16155 item_compare_ic = TRUE;
16156 else
16157 item_compare_func = get_tv_string(&argvars[1]);
16161 /* Make an array with each entry pointing to an item in the List. */
16162 ptrs = (listitem_T **)alloc((int)(len * sizeof(listitem_T *)));
16163 if (ptrs == NULL)
16164 return;
16165 i = 0;
16166 for (li = l->lv_first; li != NULL; li = li->li_next)
16167 ptrs[i++] = li;
16169 item_compare_func_err = FALSE;
16170 /* test the compare function */
16171 if (item_compare_func != NULL
16172 && item_compare2((void *)&ptrs[0], (void *)&ptrs[1])
16173 == ITEM_COMPARE_FAIL)
16174 EMSG(_("E702: Sort compare function failed"));
16175 else
16177 /* Sort the array with item pointers. */
16178 qsort((void *)ptrs, (size_t)len, sizeof(listitem_T *),
16179 item_compare_func == NULL ? item_compare : item_compare2);
16181 if (!item_compare_func_err)
16183 /* Clear the List and append the items in the sorted order. */
16184 l->lv_first = l->lv_last = l->lv_idx_item = NULL;
16185 l->lv_len = 0;
16186 for (i = 0; i < len; ++i)
16187 list_append(l, ptrs[i]);
16191 vim_free(ptrs);
16196 * "soundfold({word})" function
16198 static void
16199 f_soundfold(argvars, rettv)
16200 typval_T *argvars;
16201 typval_T *rettv;
16203 char_u *s;
16205 rettv->v_type = VAR_STRING;
16206 s = get_tv_string(&argvars[0]);
16207 #ifdef FEAT_SPELL
16208 rettv->vval.v_string = eval_soundfold(s);
16209 #else
16210 rettv->vval.v_string = vim_strsave(s);
16211 #endif
16215 * "spellbadword()" function
16217 /* ARGSUSED */
16218 static void
16219 f_spellbadword(argvars, rettv)
16220 typval_T *argvars;
16221 typval_T *rettv;
16223 char_u *word = (char_u *)"";
16224 hlf_T attr = HLF_COUNT;
16225 int len = 0;
16227 if (rettv_list_alloc(rettv) == FAIL)
16228 return;
16230 #ifdef FEAT_SPELL
16231 if (argvars[0].v_type == VAR_UNKNOWN)
16233 /* Find the start and length of the badly spelled word. */
16234 len = spell_move_to(curwin, FORWARD, TRUE, TRUE, &attr);
16235 if (len != 0)
16236 word = ml_get_cursor();
16238 else if (curwin->w_p_spell && *curbuf->b_p_spl != NUL)
16240 char_u *str = get_tv_string_chk(&argvars[0]);
16241 int capcol = -1;
16243 if (str != NULL)
16245 /* Check the argument for spelling. */
16246 while (*str != NUL)
16248 len = spell_check(curwin, str, &attr, &capcol, FALSE);
16249 if (attr != HLF_COUNT)
16251 word = str;
16252 break;
16254 str += len;
16258 #endif
16260 list_append_string(rettv->vval.v_list, word, len);
16261 list_append_string(rettv->vval.v_list, (char_u *)(
16262 attr == HLF_SPB ? "bad" :
16263 attr == HLF_SPR ? "rare" :
16264 attr == HLF_SPL ? "local" :
16265 attr == HLF_SPC ? "caps" :
16266 ""), -1);
16270 * "spellsuggest()" function
16272 /*ARGSUSED*/
16273 static void
16274 f_spellsuggest(argvars, rettv)
16275 typval_T *argvars;
16276 typval_T *rettv;
16278 #ifdef FEAT_SPELL
16279 char_u *str;
16280 int typeerr = FALSE;
16281 int maxcount;
16282 garray_T ga;
16283 int i;
16284 listitem_T *li;
16285 int need_capital = FALSE;
16286 #endif
16288 if (rettv_list_alloc(rettv) == FAIL)
16289 return;
16291 #ifdef FEAT_SPELL
16292 if (curwin->w_p_spell && *curbuf->b_p_spl != NUL)
16294 str = get_tv_string(&argvars[0]);
16295 if (argvars[1].v_type != VAR_UNKNOWN)
16297 maxcount = get_tv_number_chk(&argvars[1], &typeerr);
16298 if (maxcount <= 0)
16299 return;
16300 if (argvars[2].v_type != VAR_UNKNOWN)
16302 need_capital = get_tv_number_chk(&argvars[2], &typeerr);
16303 if (typeerr)
16304 return;
16307 else
16308 maxcount = 25;
16310 spell_suggest_list(&ga, str, maxcount, need_capital, FALSE);
16312 for (i = 0; i < ga.ga_len; ++i)
16314 str = ((char_u **)ga.ga_data)[i];
16316 li = listitem_alloc();
16317 if (li == NULL)
16318 vim_free(str);
16319 else
16321 li->li_tv.v_type = VAR_STRING;
16322 li->li_tv.v_lock = 0;
16323 li->li_tv.vval.v_string = str;
16324 list_append(rettv->vval.v_list, li);
16327 ga_clear(&ga);
16329 #endif
16332 static void
16333 f_split(argvars, rettv)
16334 typval_T *argvars;
16335 typval_T *rettv;
16337 char_u *str;
16338 char_u *end;
16339 char_u *pat = NULL;
16340 regmatch_T regmatch;
16341 char_u patbuf[NUMBUFLEN];
16342 char_u *save_cpo;
16343 int match;
16344 colnr_T col = 0;
16345 int keepempty = FALSE;
16346 int typeerr = FALSE;
16348 /* Make 'cpoptions' empty, the 'l' flag should not be used here. */
16349 save_cpo = p_cpo;
16350 p_cpo = (char_u *)"";
16352 str = get_tv_string(&argvars[0]);
16353 if (argvars[1].v_type != VAR_UNKNOWN)
16355 pat = get_tv_string_buf_chk(&argvars[1], patbuf);
16356 if (pat == NULL)
16357 typeerr = TRUE;
16358 if (argvars[2].v_type != VAR_UNKNOWN)
16359 keepempty = get_tv_number_chk(&argvars[2], &typeerr);
16361 if (pat == NULL || *pat == NUL)
16362 pat = (char_u *)"[\\x01- ]\\+";
16364 if (rettv_list_alloc(rettv) == FAIL)
16365 return;
16366 if (typeerr)
16367 return;
16369 regmatch.regprog = vim_regcomp(pat, RE_MAGIC + RE_STRING);
16370 if (regmatch.regprog != NULL)
16372 regmatch.rm_ic = FALSE;
16373 while (*str != NUL || keepempty)
16375 if (*str == NUL)
16376 match = FALSE; /* empty item at the end */
16377 else
16378 match = vim_regexec_nl(&regmatch, str, col);
16379 if (match)
16380 end = regmatch.startp[0];
16381 else
16382 end = str + STRLEN(str);
16383 if (keepempty || end > str || (rettv->vval.v_list->lv_len > 0
16384 && *str != NUL && match && end < regmatch.endp[0]))
16386 if (list_append_string(rettv->vval.v_list, str,
16387 (int)(end - str)) == FAIL)
16388 break;
16390 if (!match)
16391 break;
16392 /* Advance to just after the match. */
16393 if (regmatch.endp[0] > str)
16394 col = 0;
16395 else
16397 /* Don't get stuck at the same match. */
16398 #ifdef FEAT_MBYTE
16399 col = (*mb_ptr2len)(regmatch.endp[0]);
16400 #else
16401 col = 1;
16402 #endif
16404 str = regmatch.endp[0];
16407 vim_free(regmatch.regprog);
16410 p_cpo = save_cpo;
16413 #ifdef FEAT_FLOAT
16415 * "sqrt()" function
16417 static void
16418 f_sqrt(argvars, rettv)
16419 typval_T *argvars;
16420 typval_T *rettv;
16422 float_T f;
16424 rettv->v_type = VAR_FLOAT;
16425 if (get_float_arg(argvars, &f) == OK)
16426 rettv->vval.v_float = sqrt(f);
16427 else
16428 rettv->vval.v_float = 0.0;
16432 * "str2float()" function
16434 static void
16435 f_str2float(argvars, rettv)
16436 typval_T *argvars;
16437 typval_T *rettv;
16439 char_u *p = skipwhite(get_tv_string(&argvars[0]));
16441 if (*p == '+')
16442 p = skipwhite(p + 1);
16443 (void)string2float(p, &rettv->vval.v_float);
16444 rettv->v_type = VAR_FLOAT;
16446 #endif
16449 * "str2nr()" function
16451 static void
16452 f_str2nr(argvars, rettv)
16453 typval_T *argvars;
16454 typval_T *rettv;
16456 int base = 10;
16457 char_u *p;
16458 long n;
16460 if (argvars[1].v_type != VAR_UNKNOWN)
16462 base = get_tv_number(&argvars[1]);
16463 if (base != 8 && base != 10 && base != 16)
16465 EMSG(_(e_invarg));
16466 return;
16470 p = skipwhite(get_tv_string(&argvars[0]));
16471 if (*p == '+')
16472 p = skipwhite(p + 1);
16473 vim_str2nr(p, NULL, NULL, base == 8 ? 2 : 0, base == 16 ? 2 : 0, &n, NULL);
16474 rettv->vval.v_number = n;
16477 #ifdef HAVE_STRFTIME
16479 * "strftime({format}[, {time}])" function
16481 static void
16482 f_strftime(argvars, rettv)
16483 typval_T *argvars;
16484 typval_T *rettv;
16486 char_u result_buf[256];
16487 struct tm *curtime;
16488 time_t seconds;
16489 char_u *p;
16491 rettv->v_type = VAR_STRING;
16493 p = get_tv_string(&argvars[0]);
16494 if (argvars[1].v_type == VAR_UNKNOWN)
16495 seconds = time(NULL);
16496 else
16497 seconds = (time_t)get_tv_number(&argvars[1]);
16498 curtime = localtime(&seconds);
16499 /* MSVC returns NULL for an invalid value of seconds. */
16500 if (curtime == NULL)
16501 rettv->vval.v_string = vim_strsave((char_u *)_("(Invalid)"));
16502 else
16504 # ifdef FEAT_MBYTE
16505 vimconv_T conv;
16506 char_u *enc;
16508 conv.vc_type = CONV_NONE;
16509 enc = enc_locale();
16510 convert_setup(&conv, p_enc, enc);
16511 if (conv.vc_type != CONV_NONE)
16512 p = string_convert(&conv, p, NULL);
16513 # endif
16514 if (p != NULL)
16515 (void)strftime((char *)result_buf, sizeof(result_buf),
16516 (char *)p, curtime);
16517 else
16518 result_buf[0] = NUL;
16520 # ifdef FEAT_MBYTE
16521 if (conv.vc_type != CONV_NONE)
16522 vim_free(p);
16523 convert_setup(&conv, enc, p_enc);
16524 if (conv.vc_type != CONV_NONE)
16525 rettv->vval.v_string = string_convert(&conv, result_buf, NULL);
16526 else
16527 # endif
16528 rettv->vval.v_string = vim_strsave(result_buf);
16530 # ifdef FEAT_MBYTE
16531 /* Release conversion descriptors */
16532 convert_setup(&conv, NULL, NULL);
16533 vim_free(enc);
16534 # endif
16537 #endif
16540 * "stridx()" function
16542 static void
16543 f_stridx(argvars, rettv)
16544 typval_T *argvars;
16545 typval_T *rettv;
16547 char_u buf[NUMBUFLEN];
16548 char_u *needle;
16549 char_u *haystack;
16550 char_u *save_haystack;
16551 char_u *pos;
16552 int start_idx;
16554 needle = get_tv_string_chk(&argvars[1]);
16555 save_haystack = haystack = get_tv_string_buf_chk(&argvars[0], buf);
16556 rettv->vval.v_number = -1;
16557 if (needle == NULL || haystack == NULL)
16558 return; /* type error; errmsg already given */
16560 if (argvars[2].v_type != VAR_UNKNOWN)
16562 int error = FALSE;
16564 start_idx = get_tv_number_chk(&argvars[2], &error);
16565 if (error || start_idx >= (int)STRLEN(haystack))
16566 return;
16567 if (start_idx >= 0)
16568 haystack += start_idx;
16571 pos = (char_u *)strstr((char *)haystack, (char *)needle);
16572 if (pos != NULL)
16573 rettv->vval.v_number = (varnumber_T)(pos - save_haystack);
16577 * "string()" function
16579 static void
16580 f_string(argvars, rettv)
16581 typval_T *argvars;
16582 typval_T *rettv;
16584 char_u *tofree;
16585 char_u numbuf[NUMBUFLEN];
16587 rettv->v_type = VAR_STRING;
16588 rettv->vval.v_string = tv2string(&argvars[0], &tofree, numbuf, 0);
16589 /* Make a copy if we have a value but it's not in allocated memory. */
16590 if (rettv->vval.v_string != NULL && tofree == NULL)
16591 rettv->vval.v_string = vim_strsave(rettv->vval.v_string);
16595 * "strlen()" function
16597 static void
16598 f_strlen(argvars, rettv)
16599 typval_T *argvars;
16600 typval_T *rettv;
16602 rettv->vval.v_number = (varnumber_T)(STRLEN(
16603 get_tv_string(&argvars[0])));
16607 * "strpart()" function
16609 static void
16610 f_strpart(argvars, rettv)
16611 typval_T *argvars;
16612 typval_T *rettv;
16614 char_u *p;
16615 int n;
16616 int len;
16617 int slen;
16618 int error = FALSE;
16620 p = get_tv_string(&argvars[0]);
16621 slen = (int)STRLEN(p);
16623 n = get_tv_number_chk(&argvars[1], &error);
16624 if (error)
16625 len = 0;
16626 else if (argvars[2].v_type != VAR_UNKNOWN)
16627 len = get_tv_number(&argvars[2]);
16628 else
16629 len = slen - n; /* default len: all bytes that are available. */
16632 * Only return the overlap between the specified part and the actual
16633 * string.
16635 if (n < 0)
16637 len += n;
16638 n = 0;
16640 else if (n > slen)
16641 n = slen;
16642 if (len < 0)
16643 len = 0;
16644 else if (n + len > slen)
16645 len = slen - n;
16647 rettv->v_type = VAR_STRING;
16648 rettv->vval.v_string = vim_strnsave(p + n, len);
16652 * "strridx()" function
16654 static void
16655 f_strridx(argvars, rettv)
16656 typval_T *argvars;
16657 typval_T *rettv;
16659 char_u buf[NUMBUFLEN];
16660 char_u *needle;
16661 char_u *haystack;
16662 char_u *rest;
16663 char_u *lastmatch = NULL;
16664 int haystack_len, end_idx;
16666 needle = get_tv_string_chk(&argvars[1]);
16667 haystack = get_tv_string_buf_chk(&argvars[0], buf);
16669 rettv->vval.v_number = -1;
16670 if (needle == NULL || haystack == NULL)
16671 return; /* type error; errmsg already given */
16673 haystack_len = (int)STRLEN(haystack);
16674 if (argvars[2].v_type != VAR_UNKNOWN)
16676 /* Third argument: upper limit for index */
16677 end_idx = get_tv_number_chk(&argvars[2], NULL);
16678 if (end_idx < 0)
16679 return; /* can never find a match */
16681 else
16682 end_idx = haystack_len;
16684 if (*needle == NUL)
16686 /* Empty string matches past the end. */
16687 lastmatch = haystack + end_idx;
16689 else
16691 for (rest = haystack; *rest != '\0'; ++rest)
16693 rest = (char_u *)strstr((char *)rest, (char *)needle);
16694 if (rest == NULL || rest > haystack + end_idx)
16695 break;
16696 lastmatch = rest;
16700 if (lastmatch == NULL)
16701 rettv->vval.v_number = -1;
16702 else
16703 rettv->vval.v_number = (varnumber_T)(lastmatch - haystack);
16707 * "strtrans()" function
16709 static void
16710 f_strtrans(argvars, rettv)
16711 typval_T *argvars;
16712 typval_T *rettv;
16714 rettv->v_type = VAR_STRING;
16715 rettv->vval.v_string = transstr(get_tv_string(&argvars[0]));
16719 * "submatch()" function
16721 static void
16722 f_submatch(argvars, rettv)
16723 typval_T *argvars;
16724 typval_T *rettv;
16726 rettv->v_type = VAR_STRING;
16727 rettv->vval.v_string =
16728 reg_submatch((int)get_tv_number_chk(&argvars[0], NULL));
16732 * "substitute()" function
16734 static void
16735 f_substitute(argvars, rettv)
16736 typval_T *argvars;
16737 typval_T *rettv;
16739 char_u patbuf[NUMBUFLEN];
16740 char_u subbuf[NUMBUFLEN];
16741 char_u flagsbuf[NUMBUFLEN];
16743 char_u *str = get_tv_string_chk(&argvars[0]);
16744 char_u *pat = get_tv_string_buf_chk(&argvars[1], patbuf);
16745 char_u *sub = get_tv_string_buf_chk(&argvars[2], subbuf);
16746 char_u *flg = get_tv_string_buf_chk(&argvars[3], flagsbuf);
16748 rettv->v_type = VAR_STRING;
16749 if (str == NULL || pat == NULL || sub == NULL || flg == NULL)
16750 rettv->vval.v_string = NULL;
16751 else
16752 rettv->vval.v_string = do_string_sub(str, pat, sub, flg);
16756 * "synID(lnum, col, trans)" function
16758 /*ARGSUSED*/
16759 static void
16760 f_synID(argvars, rettv)
16761 typval_T *argvars;
16762 typval_T *rettv;
16764 int id = 0;
16765 #ifdef FEAT_SYN_HL
16766 long lnum;
16767 long col;
16768 int trans;
16769 int transerr = FALSE;
16771 lnum = get_tv_lnum(argvars); /* -1 on type error */
16772 col = get_tv_number(&argvars[1]) - 1; /* -1 on type error */
16773 trans = get_tv_number_chk(&argvars[2], &transerr);
16775 if (!transerr && lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count
16776 && col >= 0 && col < (long)STRLEN(ml_get(lnum)))
16777 id = syn_get_id(curwin, lnum, (colnr_T)col, trans, NULL, FALSE);
16778 #endif
16780 rettv->vval.v_number = id;
16784 * "synIDattr(id, what [, mode])" function
16786 /*ARGSUSED*/
16787 static void
16788 f_synIDattr(argvars, rettv)
16789 typval_T *argvars;
16790 typval_T *rettv;
16792 char_u *p = NULL;
16793 #ifdef FEAT_SYN_HL
16794 int id;
16795 char_u *what;
16796 char_u *mode;
16797 char_u modebuf[NUMBUFLEN];
16798 int modec;
16800 id = get_tv_number(&argvars[0]);
16801 what = get_tv_string(&argvars[1]);
16802 if (argvars[2].v_type != VAR_UNKNOWN)
16804 mode = get_tv_string_buf(&argvars[2], modebuf);
16805 modec = TOLOWER_ASC(mode[0]);
16806 if (modec != 't' && modec != 'c'
16807 #ifdef FEAT_GUI
16808 && modec != 'g'
16809 #endif
16811 modec = 0; /* replace invalid with current */
16813 else
16815 #ifdef FEAT_GUI
16816 if (gui.in_use)
16817 modec = 'g';
16818 else
16819 #endif
16820 if (t_colors > 1)
16821 modec = 'c';
16822 else
16823 modec = 't';
16827 switch (TOLOWER_ASC(what[0]))
16829 case 'b':
16830 if (TOLOWER_ASC(what[1]) == 'g') /* bg[#] */
16831 p = highlight_color(id, what, modec);
16832 else /* bold */
16833 p = highlight_has_attr(id, HL_BOLD, modec);
16834 break;
16836 case 'f': /* fg[#] */
16837 p = highlight_color(id, what, modec);
16838 break;
16840 case 'i':
16841 if (TOLOWER_ASC(what[1]) == 'n') /* inverse */
16842 p = highlight_has_attr(id, HL_INVERSE, modec);
16843 else /* italic */
16844 p = highlight_has_attr(id, HL_ITALIC, modec);
16845 break;
16847 case 'n': /* name */
16848 p = get_highlight_name(NULL, id - 1);
16849 break;
16851 case 'r': /* reverse */
16852 p = highlight_has_attr(id, HL_INVERSE, modec);
16853 break;
16855 case 's':
16856 if (TOLOWER_ASC(what[1]) == 'p') /* sp[#] */
16857 p = highlight_color(id, what, modec);
16858 else /* standout */
16859 p = highlight_has_attr(id, HL_STANDOUT, modec);
16860 break;
16862 case 'u':
16863 if (STRLEN(what) <= 5 || TOLOWER_ASC(what[5]) != 'c')
16864 /* underline */
16865 p = highlight_has_attr(id, HL_UNDERLINE, modec);
16866 else
16867 /* undercurl */
16868 p = highlight_has_attr(id, HL_UNDERCURL, modec);
16869 break;
16872 if (p != NULL)
16873 p = vim_strsave(p);
16874 #endif
16875 rettv->v_type = VAR_STRING;
16876 rettv->vval.v_string = p;
16880 * "synIDtrans(id)" function
16882 /*ARGSUSED*/
16883 static void
16884 f_synIDtrans(argvars, rettv)
16885 typval_T *argvars;
16886 typval_T *rettv;
16888 int id;
16890 #ifdef FEAT_SYN_HL
16891 id = get_tv_number(&argvars[0]);
16893 if (id > 0)
16894 id = syn_get_final_id(id);
16895 else
16896 #endif
16897 id = 0;
16899 rettv->vval.v_number = id;
16903 * "synstack(lnum, col)" function
16905 /*ARGSUSED*/
16906 static void
16907 f_synstack(argvars, rettv)
16908 typval_T *argvars;
16909 typval_T *rettv;
16911 #ifdef FEAT_SYN_HL
16912 long lnum;
16913 long col;
16914 int i;
16915 int id;
16916 #endif
16918 rettv->v_type = VAR_LIST;
16919 rettv->vval.v_list = NULL;
16921 #ifdef FEAT_SYN_HL
16922 lnum = get_tv_lnum(argvars); /* -1 on type error */
16923 col = get_tv_number(&argvars[1]) - 1; /* -1 on type error */
16925 if (lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count
16926 && col >= 0 && (col == 0 || col < (long)STRLEN(ml_get(lnum)))
16927 && rettv_list_alloc(rettv) != FAIL)
16929 (void)syn_get_id(curwin, lnum, (colnr_T)col, FALSE, NULL, TRUE);
16930 for (i = 0; ; ++i)
16932 id = syn_get_stack_item(i);
16933 if (id < 0)
16934 break;
16935 if (list_append_number(rettv->vval.v_list, id) == FAIL)
16936 break;
16939 #endif
16943 * "system()" function
16945 static void
16946 f_system(argvars, rettv)
16947 typval_T *argvars;
16948 typval_T *rettv;
16950 char_u *res = NULL;
16951 char_u *p;
16952 char_u *infile = NULL;
16953 char_u buf[NUMBUFLEN];
16954 int err = FALSE;
16955 FILE *fd;
16957 if (check_restricted() || check_secure())
16958 goto done;
16960 if (argvars[1].v_type != VAR_UNKNOWN)
16963 * Write the string to a temp file, to be used for input of the shell
16964 * command.
16966 if ((infile = vim_tempname('i')) == NULL)
16968 EMSG(_(e_notmp));
16969 goto done;
16972 fd = mch_fopen((char *)infile, WRITEBIN);
16973 if (fd == NULL)
16975 EMSG2(_(e_notopen), infile);
16976 goto done;
16978 p = get_tv_string_buf_chk(&argvars[1], buf);
16979 if (p == NULL)
16981 fclose(fd);
16982 goto done; /* type error; errmsg already given */
16984 if (fwrite(p, STRLEN(p), 1, fd) != 1)
16985 err = TRUE;
16986 if (fclose(fd) != 0)
16987 err = TRUE;
16988 if (err)
16990 EMSG(_("E677: Error writing temp file"));
16991 goto done;
16995 res = get_cmd_output(get_tv_string(&argvars[0]), infile,
16996 SHELL_SILENT | SHELL_COOKED);
16998 #ifdef USE_CR
16999 /* translate <CR> into <NL> */
17000 if (res != NULL)
17002 char_u *s;
17004 for (s = res; *s; ++s)
17006 if (*s == CAR)
17007 *s = NL;
17010 #else
17011 # ifdef USE_CRNL
17012 /* translate <CR><NL> into <NL> */
17013 if (res != NULL)
17015 char_u *s, *d;
17017 d = res;
17018 for (s = res; *s; ++s)
17020 if (s[0] == CAR && s[1] == NL)
17021 ++s;
17022 *d++ = *s;
17024 *d = NUL;
17026 # endif
17027 #endif
17029 done:
17030 if (infile != NULL)
17032 mch_remove(infile);
17033 vim_free(infile);
17035 rettv->v_type = VAR_STRING;
17036 rettv->vval.v_string = res;
17040 * "tabpagebuflist()" function
17042 /* ARGSUSED */
17043 static void
17044 f_tabpagebuflist(argvars, rettv)
17045 typval_T *argvars;
17046 typval_T *rettv;
17048 #ifndef FEAT_WINDOWS
17049 rettv->vval.v_number = 0;
17050 #else
17051 tabpage_T *tp;
17052 win_T *wp = NULL;
17054 if (argvars[0].v_type == VAR_UNKNOWN)
17055 wp = firstwin;
17056 else
17058 tp = find_tabpage((int)get_tv_number(&argvars[0]));
17059 if (tp != NULL)
17060 wp = (tp == curtab) ? firstwin : tp->tp_firstwin;
17062 if (wp == NULL)
17063 rettv->vval.v_number = 0;
17064 else
17066 if (rettv_list_alloc(rettv) == FAIL)
17067 rettv->vval.v_number = 0;
17068 else
17070 for (; wp != NULL; wp = wp->w_next)
17071 if (list_append_number(rettv->vval.v_list,
17072 wp->w_buffer->b_fnum) == FAIL)
17073 break;
17076 #endif
17081 * "tabpagenr()" function
17083 /* ARGSUSED */
17084 static void
17085 f_tabpagenr(argvars, rettv)
17086 typval_T *argvars;
17087 typval_T *rettv;
17089 int nr = 1;
17090 #ifdef FEAT_WINDOWS
17091 char_u *arg;
17093 if (argvars[0].v_type != VAR_UNKNOWN)
17095 arg = get_tv_string_chk(&argvars[0]);
17096 nr = 0;
17097 if (arg != NULL)
17099 if (STRCMP(arg, "$") == 0)
17100 nr = tabpage_index(NULL) - 1;
17101 else
17102 EMSG2(_(e_invexpr2), arg);
17105 else
17106 nr = tabpage_index(curtab);
17107 #endif
17108 rettv->vval.v_number = nr;
17112 #ifdef FEAT_WINDOWS
17113 static int get_winnr __ARGS((tabpage_T *tp, typval_T *argvar));
17116 * Common code for tabpagewinnr() and winnr().
17118 static int
17119 get_winnr(tp, argvar)
17120 tabpage_T *tp;
17121 typval_T *argvar;
17123 win_T *twin;
17124 int nr = 1;
17125 win_T *wp;
17126 char_u *arg;
17128 twin = (tp == curtab) ? curwin : tp->tp_curwin;
17129 if (argvar->v_type != VAR_UNKNOWN)
17131 arg = get_tv_string_chk(argvar);
17132 if (arg == NULL)
17133 nr = 0; /* type error; errmsg already given */
17134 else if (STRCMP(arg, "$") == 0)
17135 twin = (tp == curtab) ? lastwin : tp->tp_lastwin;
17136 else if (STRCMP(arg, "#") == 0)
17138 twin = (tp == curtab) ? prevwin : tp->tp_prevwin;
17139 if (twin == NULL)
17140 nr = 0;
17142 else
17144 EMSG2(_(e_invexpr2), arg);
17145 nr = 0;
17149 if (nr > 0)
17150 for (wp = (tp == curtab) ? firstwin : tp->tp_firstwin;
17151 wp != twin; wp = wp->w_next)
17153 if (wp == NULL)
17155 /* didn't find it in this tabpage */
17156 nr = 0;
17157 break;
17159 ++nr;
17161 return nr;
17163 #endif
17166 * "tabpagewinnr()" function
17168 /* ARGSUSED */
17169 static void
17170 f_tabpagewinnr(argvars, rettv)
17171 typval_T *argvars;
17172 typval_T *rettv;
17174 int nr = 1;
17175 #ifdef FEAT_WINDOWS
17176 tabpage_T *tp;
17178 tp = find_tabpage((int)get_tv_number(&argvars[0]));
17179 if (tp == NULL)
17180 nr = 0;
17181 else
17182 nr = get_winnr(tp, &argvars[1]);
17183 #endif
17184 rettv->vval.v_number = nr;
17189 * "tagfiles()" function
17191 /*ARGSUSED*/
17192 static void
17193 f_tagfiles(argvars, rettv)
17194 typval_T *argvars;
17195 typval_T *rettv;
17197 char_u fname[MAXPATHL + 1];
17198 tagname_T tn;
17199 int first;
17201 if (rettv_list_alloc(rettv) == FAIL)
17203 rettv->vval.v_number = 0;
17204 return;
17207 for (first = TRUE; ; first = FALSE)
17208 if (get_tagfname(&tn, first, fname) == FAIL
17209 || list_append_string(rettv->vval.v_list, fname, -1) == FAIL)
17210 break;
17211 tagname_free(&tn);
17215 * "taglist()" function
17217 static void
17218 f_taglist(argvars, rettv)
17219 typval_T *argvars;
17220 typval_T *rettv;
17222 char_u *tag_pattern;
17224 tag_pattern = get_tv_string(&argvars[0]);
17226 rettv->vval.v_number = FALSE;
17227 if (*tag_pattern == NUL)
17228 return;
17230 if (rettv_list_alloc(rettv) == OK)
17231 (void)get_tags(rettv->vval.v_list, tag_pattern);
17235 * "tempname()" function
17237 /*ARGSUSED*/
17238 static void
17239 f_tempname(argvars, rettv)
17240 typval_T *argvars;
17241 typval_T *rettv;
17243 static int x = 'A';
17245 rettv->v_type = VAR_STRING;
17246 rettv->vval.v_string = vim_tempname(x);
17248 /* Advance 'x' to use A-Z and 0-9, so that there are at least 34 different
17249 * names. Skip 'I' and 'O', they are used for shell redirection. */
17252 if (x == 'Z')
17253 x = '0';
17254 else if (x == '9')
17255 x = 'A';
17256 else
17258 #ifdef EBCDIC
17259 if (x == 'I')
17260 x = 'J';
17261 else if (x == 'R')
17262 x = 'S';
17263 else
17264 #endif
17265 ++x;
17267 } while (x == 'I' || x == 'O');
17271 * "test(list)" function: Just checking the walls...
17273 /*ARGSUSED*/
17274 static void
17275 f_test(argvars, rettv)
17276 typval_T *argvars;
17277 typval_T *rettv;
17279 /* Used for unit testing. Change the code below to your liking. */
17280 #if 0
17281 listitem_T *li;
17282 list_T *l;
17283 char_u *bad, *good;
17285 if (argvars[0].v_type != VAR_LIST)
17286 return;
17287 l = argvars[0].vval.v_list;
17288 if (l == NULL)
17289 return;
17290 li = l->lv_first;
17291 if (li == NULL)
17292 return;
17293 bad = get_tv_string(&li->li_tv);
17294 li = li->li_next;
17295 if (li == NULL)
17296 return;
17297 good = get_tv_string(&li->li_tv);
17298 rettv->vval.v_number = test_edit_score(bad, good);
17299 #endif
17303 * "tolower(string)" function
17305 static void
17306 f_tolower(argvars, rettv)
17307 typval_T *argvars;
17308 typval_T *rettv;
17310 char_u *p;
17312 p = vim_strsave(get_tv_string(&argvars[0]));
17313 rettv->v_type = VAR_STRING;
17314 rettv->vval.v_string = p;
17316 if (p != NULL)
17317 while (*p != NUL)
17319 #ifdef FEAT_MBYTE
17320 int l;
17322 if (enc_utf8)
17324 int c, lc;
17326 c = utf_ptr2char(p);
17327 lc = utf_tolower(c);
17328 l = utf_ptr2len(p);
17329 /* TODO: reallocate string when byte count changes. */
17330 if (utf_char2len(lc) == l)
17331 utf_char2bytes(lc, p);
17332 p += l;
17334 else if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
17335 p += l; /* skip multi-byte character */
17336 else
17337 #endif
17339 *p = TOLOWER_LOC(*p); /* note that tolower() can be a macro */
17340 ++p;
17346 * "toupper(string)" function
17348 static void
17349 f_toupper(argvars, rettv)
17350 typval_T *argvars;
17351 typval_T *rettv;
17353 rettv->v_type = VAR_STRING;
17354 rettv->vval.v_string = strup_save(get_tv_string(&argvars[0]));
17358 * "tr(string, fromstr, tostr)" function
17360 static void
17361 f_tr(argvars, rettv)
17362 typval_T *argvars;
17363 typval_T *rettv;
17365 char_u *instr;
17366 char_u *fromstr;
17367 char_u *tostr;
17368 char_u *p;
17369 #ifdef FEAT_MBYTE
17370 int inlen;
17371 int fromlen;
17372 int tolen;
17373 int idx;
17374 char_u *cpstr;
17375 int cplen;
17376 int first = TRUE;
17377 #endif
17378 char_u buf[NUMBUFLEN];
17379 char_u buf2[NUMBUFLEN];
17380 garray_T ga;
17382 instr = get_tv_string(&argvars[0]);
17383 fromstr = get_tv_string_buf_chk(&argvars[1], buf);
17384 tostr = get_tv_string_buf_chk(&argvars[2], buf2);
17386 /* Default return value: empty string. */
17387 rettv->v_type = VAR_STRING;
17388 rettv->vval.v_string = NULL;
17389 if (fromstr == NULL || tostr == NULL)
17390 return; /* type error; errmsg already given */
17391 ga_init2(&ga, (int)sizeof(char), 80);
17393 #ifdef FEAT_MBYTE
17394 if (!has_mbyte)
17395 #endif
17396 /* not multi-byte: fromstr and tostr must be the same length */
17397 if (STRLEN(fromstr) != STRLEN(tostr))
17399 #ifdef FEAT_MBYTE
17400 error:
17401 #endif
17402 EMSG2(_(e_invarg2), fromstr);
17403 ga_clear(&ga);
17404 return;
17407 /* fromstr and tostr have to contain the same number of chars */
17408 while (*instr != NUL)
17410 #ifdef FEAT_MBYTE
17411 if (has_mbyte)
17413 inlen = (*mb_ptr2len)(instr);
17414 cpstr = instr;
17415 cplen = inlen;
17416 idx = 0;
17417 for (p = fromstr; *p != NUL; p += fromlen)
17419 fromlen = (*mb_ptr2len)(p);
17420 if (fromlen == inlen && STRNCMP(instr, p, inlen) == 0)
17422 for (p = tostr; *p != NUL; p += tolen)
17424 tolen = (*mb_ptr2len)(p);
17425 if (idx-- == 0)
17427 cplen = tolen;
17428 cpstr = p;
17429 break;
17432 if (*p == NUL) /* tostr is shorter than fromstr */
17433 goto error;
17434 break;
17436 ++idx;
17439 if (first && cpstr == instr)
17441 /* Check that fromstr and tostr have the same number of
17442 * (multi-byte) characters. Done only once when a character
17443 * of instr doesn't appear in fromstr. */
17444 first = FALSE;
17445 for (p = tostr; *p != NUL; p += tolen)
17447 tolen = (*mb_ptr2len)(p);
17448 --idx;
17450 if (idx != 0)
17451 goto error;
17454 ga_grow(&ga, cplen);
17455 mch_memmove((char *)ga.ga_data + ga.ga_len, cpstr, (size_t)cplen);
17456 ga.ga_len += cplen;
17458 instr += inlen;
17460 else
17461 #endif
17463 /* When not using multi-byte chars we can do it faster. */
17464 p = vim_strchr(fromstr, *instr);
17465 if (p != NULL)
17466 ga_append(&ga, tostr[p - fromstr]);
17467 else
17468 ga_append(&ga, *instr);
17469 ++instr;
17473 /* add a terminating NUL */
17474 ga_grow(&ga, 1);
17475 ga_append(&ga, NUL);
17477 rettv->vval.v_string = ga.ga_data;
17480 #ifdef FEAT_FLOAT
17482 * "trunc({float})" function
17484 static void
17485 f_trunc(argvars, rettv)
17486 typval_T *argvars;
17487 typval_T *rettv;
17489 float_T f;
17491 rettv->v_type = VAR_FLOAT;
17492 if (get_float_arg(argvars, &f) == OK)
17493 /* trunc() is not in C90, use floor() or ceil() instead. */
17494 rettv->vval.v_float = f > 0 ? floor(f) : ceil(f);
17495 else
17496 rettv->vval.v_float = 0.0;
17498 #endif
17501 * "type(expr)" function
17503 static void
17504 f_type(argvars, rettv)
17505 typval_T *argvars;
17506 typval_T *rettv;
17508 int n;
17510 switch (argvars[0].v_type)
17512 case VAR_NUMBER: n = 0; break;
17513 case VAR_STRING: n = 1; break;
17514 case VAR_FUNC: n = 2; break;
17515 case VAR_LIST: n = 3; break;
17516 case VAR_DICT: n = 4; break;
17517 #ifdef FEAT_FLOAT
17518 case VAR_FLOAT: n = 5; break;
17519 #endif
17520 default: EMSG2(_(e_intern2), "f_type()"); n = 0; break;
17522 rettv->vval.v_number = n;
17526 * "values(dict)" function
17528 static void
17529 f_values(argvars, rettv)
17530 typval_T *argvars;
17531 typval_T *rettv;
17533 dict_list(argvars, rettv, 1);
17537 * "virtcol(string)" function
17539 static void
17540 f_virtcol(argvars, rettv)
17541 typval_T *argvars;
17542 typval_T *rettv;
17544 colnr_T vcol = 0;
17545 pos_T *fp;
17546 int fnum = curbuf->b_fnum;
17548 fp = var2fpos(&argvars[0], FALSE, &fnum);
17549 if (fp != NULL && fp->lnum <= curbuf->b_ml.ml_line_count
17550 && fnum == curbuf->b_fnum)
17552 getvvcol(curwin, fp, NULL, NULL, &vcol);
17553 ++vcol;
17556 rettv->vval.v_number = vcol;
17560 * "visualmode()" function
17562 /*ARGSUSED*/
17563 static void
17564 f_visualmode(argvars, rettv)
17565 typval_T *argvars;
17566 typval_T *rettv;
17568 #ifdef FEAT_VISUAL
17569 char_u str[2];
17571 rettv->v_type = VAR_STRING;
17572 str[0] = curbuf->b_visual_mode_eval;
17573 str[1] = NUL;
17574 rettv->vval.v_string = vim_strsave(str);
17576 /* A non-zero number or non-empty string argument: reset mode. */
17577 if (non_zero_arg(&argvars[0]))
17578 curbuf->b_visual_mode_eval = NUL;
17579 #else
17580 rettv->vval.v_number = 0; /* return anything, it won't work anyway */
17581 #endif
17585 * "winbufnr(nr)" function
17587 static void
17588 f_winbufnr(argvars, rettv)
17589 typval_T *argvars;
17590 typval_T *rettv;
17592 win_T *wp;
17594 wp = find_win_by_nr(&argvars[0], NULL);
17595 if (wp == NULL)
17596 rettv->vval.v_number = -1;
17597 else
17598 rettv->vval.v_number = wp->w_buffer->b_fnum;
17602 * "wincol()" function
17604 /*ARGSUSED*/
17605 static void
17606 f_wincol(argvars, rettv)
17607 typval_T *argvars;
17608 typval_T *rettv;
17610 validate_cursor();
17611 rettv->vval.v_number = curwin->w_wcol + 1;
17615 * "winheight(nr)" function
17617 static void
17618 f_winheight(argvars, rettv)
17619 typval_T *argvars;
17620 typval_T *rettv;
17622 win_T *wp;
17624 wp = find_win_by_nr(&argvars[0], NULL);
17625 if (wp == NULL)
17626 rettv->vval.v_number = -1;
17627 else
17628 rettv->vval.v_number = wp->w_height;
17632 * "winline()" function
17634 /*ARGSUSED*/
17635 static void
17636 f_winline(argvars, rettv)
17637 typval_T *argvars;
17638 typval_T *rettv;
17640 validate_cursor();
17641 rettv->vval.v_number = curwin->w_wrow + 1;
17645 * "winnr()" function
17647 /* ARGSUSED */
17648 static void
17649 f_winnr(argvars, rettv)
17650 typval_T *argvars;
17651 typval_T *rettv;
17653 int nr = 1;
17655 #ifdef FEAT_WINDOWS
17656 nr = get_winnr(curtab, &argvars[0]);
17657 #endif
17658 rettv->vval.v_number = nr;
17662 * "winrestcmd()" function
17664 /* ARGSUSED */
17665 static void
17666 f_winrestcmd(argvars, rettv)
17667 typval_T *argvars;
17668 typval_T *rettv;
17670 #ifdef FEAT_WINDOWS
17671 win_T *wp;
17672 int winnr = 1;
17673 garray_T ga;
17674 char_u buf[50];
17676 ga_init2(&ga, (int)sizeof(char), 70);
17677 for (wp = firstwin; wp != NULL; wp = wp->w_next)
17679 sprintf((char *)buf, "%dresize %d|", winnr, wp->w_height);
17680 ga_concat(&ga, buf);
17681 # ifdef FEAT_VERTSPLIT
17682 sprintf((char *)buf, "vert %dresize %d|", winnr, wp->w_width);
17683 ga_concat(&ga, buf);
17684 # endif
17685 ++winnr;
17687 ga_append(&ga, NUL);
17689 rettv->vval.v_string = ga.ga_data;
17690 #else
17691 rettv->vval.v_string = NULL;
17692 #endif
17693 rettv->v_type = VAR_STRING;
17697 * "winrestview()" function
17699 /* ARGSUSED */
17700 static void
17701 f_winrestview(argvars, rettv)
17702 typval_T *argvars;
17703 typval_T *rettv;
17705 dict_T *dict;
17707 if (argvars[0].v_type != VAR_DICT
17708 || (dict = argvars[0].vval.v_dict) == NULL)
17709 EMSG(_(e_invarg));
17710 else
17712 curwin->w_cursor.lnum = get_dict_number(dict, (char_u *)"lnum");
17713 curwin->w_cursor.col = get_dict_number(dict, (char_u *)"col");
17714 #ifdef FEAT_VIRTUALEDIT
17715 curwin->w_cursor.coladd = get_dict_number(dict, (char_u *)"coladd");
17716 #endif
17717 curwin->w_curswant = get_dict_number(dict, (char_u *)"curswant");
17718 curwin->w_set_curswant = FALSE;
17720 set_topline(curwin, get_dict_number(dict, (char_u *)"topline"));
17721 #ifdef FEAT_DIFF
17722 curwin->w_topfill = get_dict_number(dict, (char_u *)"topfill");
17723 #endif
17724 curwin->w_leftcol = get_dict_number(dict, (char_u *)"leftcol");
17725 curwin->w_skipcol = get_dict_number(dict, (char_u *)"skipcol");
17727 check_cursor();
17728 changed_cline_bef_curs();
17729 invalidate_botline();
17730 redraw_later(VALID);
17732 if (curwin->w_topline == 0)
17733 curwin->w_topline = 1;
17734 if (curwin->w_topline > curbuf->b_ml.ml_line_count)
17735 curwin->w_topline = curbuf->b_ml.ml_line_count;
17736 #ifdef FEAT_DIFF
17737 check_topfill(curwin, TRUE);
17738 #endif
17743 * "winsaveview()" function
17745 /* ARGSUSED */
17746 static void
17747 f_winsaveview(argvars, rettv)
17748 typval_T *argvars;
17749 typval_T *rettv;
17751 dict_T *dict;
17753 dict = dict_alloc();
17754 if (dict == NULL)
17755 return;
17756 rettv->v_type = VAR_DICT;
17757 rettv->vval.v_dict = dict;
17758 ++dict->dv_refcount;
17760 dict_add_nr_str(dict, "lnum", (long)curwin->w_cursor.lnum, NULL);
17761 dict_add_nr_str(dict, "col", (long)curwin->w_cursor.col, NULL);
17762 #ifdef FEAT_VIRTUALEDIT
17763 dict_add_nr_str(dict, "coladd", (long)curwin->w_cursor.coladd, NULL);
17764 #endif
17765 update_curswant();
17766 dict_add_nr_str(dict, "curswant", (long)curwin->w_curswant, NULL);
17768 dict_add_nr_str(dict, "topline", (long)curwin->w_topline, NULL);
17769 #ifdef FEAT_DIFF
17770 dict_add_nr_str(dict, "topfill", (long)curwin->w_topfill, NULL);
17771 #endif
17772 dict_add_nr_str(dict, "leftcol", (long)curwin->w_leftcol, NULL);
17773 dict_add_nr_str(dict, "skipcol", (long)curwin->w_skipcol, NULL);
17777 * "winwidth(nr)" function
17779 static void
17780 f_winwidth(argvars, rettv)
17781 typval_T *argvars;
17782 typval_T *rettv;
17784 win_T *wp;
17786 wp = find_win_by_nr(&argvars[0], NULL);
17787 if (wp == NULL)
17788 rettv->vval.v_number = -1;
17789 else
17790 #ifdef FEAT_VERTSPLIT
17791 rettv->vval.v_number = wp->w_width;
17792 #else
17793 rettv->vval.v_number = Columns;
17794 #endif
17798 * "writefile()" function
17800 static void
17801 f_writefile(argvars, rettv)
17802 typval_T *argvars;
17803 typval_T *rettv;
17805 int binary = FALSE;
17806 char_u *fname;
17807 FILE *fd;
17808 listitem_T *li;
17809 char_u *s;
17810 int ret = 0;
17811 int c;
17813 if (check_restricted() || check_secure())
17814 return;
17816 if (argvars[0].v_type != VAR_LIST)
17818 EMSG2(_(e_listarg), "writefile()");
17819 return;
17821 if (argvars[0].vval.v_list == NULL)
17822 return;
17824 if (argvars[2].v_type != VAR_UNKNOWN
17825 && STRCMP(get_tv_string(&argvars[2]), "b") == 0)
17826 binary = TRUE;
17828 /* Always open the file in binary mode, library functions have a mind of
17829 * their own about CR-LF conversion. */
17830 fname = get_tv_string(&argvars[1]);
17831 if (*fname == NUL || (fd = mch_fopen((char *)fname, WRITEBIN)) == NULL)
17833 EMSG2(_(e_notcreate), *fname == NUL ? (char_u *)_("<empty>") : fname);
17834 ret = -1;
17836 else
17838 for (li = argvars[0].vval.v_list->lv_first; li != NULL;
17839 li = li->li_next)
17841 for (s = get_tv_string(&li->li_tv); *s != NUL; ++s)
17843 if (*s == '\n')
17844 c = putc(NUL, fd);
17845 else
17846 c = putc(*s, fd);
17847 if (c == EOF)
17849 ret = -1;
17850 break;
17853 if (!binary || li->li_next != NULL)
17854 if (putc('\n', fd) == EOF)
17856 ret = -1;
17857 break;
17859 if (ret < 0)
17861 EMSG(_(e_write));
17862 break;
17865 fclose(fd);
17868 rettv->vval.v_number = ret;
17872 * Translate a String variable into a position.
17873 * Returns NULL when there is an error.
17875 static pos_T *
17876 var2fpos(varp, dollar_lnum, fnum)
17877 typval_T *varp;
17878 int dollar_lnum; /* TRUE when $ is last line */
17879 int *fnum; /* set to fnum for '0, 'A, etc. */
17881 char_u *name;
17882 static pos_T pos;
17883 pos_T *pp;
17885 /* Argument can be [lnum, col, coladd]. */
17886 if (varp->v_type == VAR_LIST)
17888 list_T *l;
17889 int len;
17890 int error = FALSE;
17891 listitem_T *li;
17893 l = varp->vval.v_list;
17894 if (l == NULL)
17895 return NULL;
17897 /* Get the line number */
17898 pos.lnum = list_find_nr(l, 0L, &error);
17899 if (error || pos.lnum <= 0 || pos.lnum > curbuf->b_ml.ml_line_count)
17900 return NULL; /* invalid line number */
17902 /* Get the column number */
17903 pos.col = list_find_nr(l, 1L, &error);
17904 if (error)
17905 return NULL;
17906 len = (long)STRLEN(ml_get(pos.lnum));
17908 /* We accept "$" for the column number: last column. */
17909 li = list_find(l, 1L);
17910 if (li != NULL && li->li_tv.v_type == VAR_STRING
17911 && li->li_tv.vval.v_string != NULL
17912 && STRCMP(li->li_tv.vval.v_string, "$") == 0)
17913 pos.col = len + 1;
17915 /* Accept a position up to the NUL after the line. */
17916 if (pos.col == 0 || (int)pos.col > len + 1)
17917 return NULL; /* invalid column number */
17918 --pos.col;
17920 #ifdef FEAT_VIRTUALEDIT
17921 /* Get the virtual offset. Defaults to zero. */
17922 pos.coladd = list_find_nr(l, 2L, &error);
17923 if (error)
17924 pos.coladd = 0;
17925 #endif
17927 return &pos;
17930 name = get_tv_string_chk(varp);
17931 if (name == NULL)
17932 return NULL;
17933 if (name[0] == '.') /* cursor */
17934 return &curwin->w_cursor;
17935 #ifdef FEAT_VISUAL
17936 if (name[0] == 'v' && name[1] == NUL) /* Visual start */
17938 if (VIsual_active)
17939 return &VIsual;
17940 return &curwin->w_cursor;
17942 #endif
17943 if (name[0] == '\'') /* mark */
17945 pp = getmark_fnum(name[1], FALSE, fnum);
17946 if (pp == NULL || pp == (pos_T *)-1 || pp->lnum <= 0)
17947 return NULL;
17948 return pp;
17951 #ifdef FEAT_VIRTUALEDIT
17952 pos.coladd = 0;
17953 #endif
17955 if (name[0] == 'w' && dollar_lnum)
17957 pos.col = 0;
17958 if (name[1] == '0') /* "w0": first visible line */
17960 update_topline();
17961 pos.lnum = curwin->w_topline;
17962 return &pos;
17964 else if (name[1] == '$') /* "w$": last visible line */
17966 validate_botline();
17967 pos.lnum = curwin->w_botline - 1;
17968 return &pos;
17971 else if (name[0] == '$') /* last column or line */
17973 if (dollar_lnum)
17975 pos.lnum = curbuf->b_ml.ml_line_count;
17976 pos.col = 0;
17978 else
17980 pos.lnum = curwin->w_cursor.lnum;
17981 pos.col = (colnr_T)STRLEN(ml_get_curline());
17983 return &pos;
17985 return NULL;
17989 * Convert list in "arg" into a position and optional file number.
17990 * When "fnump" is NULL there is no file number, only 3 items.
17991 * Note that the column is passed on as-is, the caller may want to decrement
17992 * it to use 1 for the first column.
17993 * Return FAIL when conversion is not possible, doesn't check the position for
17994 * validity.
17996 static int
17997 list2fpos(arg, posp, fnump)
17998 typval_T *arg;
17999 pos_T *posp;
18000 int *fnump;
18002 list_T *l = arg->vval.v_list;
18003 long i = 0;
18004 long n;
18006 /* List must be: [fnum, lnum, col, coladd], where "fnum" is only there
18007 * when "fnump" isn't NULL and "coladd" is optional. */
18008 if (arg->v_type != VAR_LIST
18009 || l == NULL
18010 || l->lv_len < (fnump == NULL ? 2 : 3)
18011 || l->lv_len > (fnump == NULL ? 3 : 4))
18012 return FAIL;
18014 if (fnump != NULL)
18016 n = list_find_nr(l, i++, NULL); /* fnum */
18017 if (n < 0)
18018 return FAIL;
18019 if (n == 0)
18020 n = curbuf->b_fnum; /* current buffer */
18021 *fnump = n;
18024 n = list_find_nr(l, i++, NULL); /* lnum */
18025 if (n < 0)
18026 return FAIL;
18027 posp->lnum = n;
18029 n = list_find_nr(l, i++, NULL); /* col */
18030 if (n < 0)
18031 return FAIL;
18032 posp->col = n;
18034 #ifdef FEAT_VIRTUALEDIT
18035 n = list_find_nr(l, i, NULL);
18036 if (n < 0)
18037 posp->coladd = 0;
18038 else
18039 posp->coladd = n;
18040 #endif
18042 return OK;
18046 * Get the length of an environment variable name.
18047 * Advance "arg" to the first character after the name.
18048 * Return 0 for error.
18050 static int
18051 get_env_len(arg)
18052 char_u **arg;
18054 char_u *p;
18055 int len;
18057 for (p = *arg; vim_isIDc(*p); ++p)
18059 if (p == *arg) /* no name found */
18060 return 0;
18062 len = (int)(p - *arg);
18063 *arg = p;
18064 return len;
18068 * Get the length of the name of a function or internal variable.
18069 * "arg" is advanced to the first non-white character after the name.
18070 * Return 0 if something is wrong.
18072 static int
18073 get_id_len(arg)
18074 char_u **arg;
18076 char_u *p;
18077 int len;
18079 /* Find the end of the name. */
18080 for (p = *arg; eval_isnamec(*p); ++p)
18082 if (p == *arg) /* no name found */
18083 return 0;
18085 len = (int)(p - *arg);
18086 *arg = skipwhite(p);
18088 return len;
18092 * Get the length of the name of a variable or function.
18093 * Only the name is recognized, does not handle ".key" or "[idx]".
18094 * "arg" is advanced to the first non-white character after the name.
18095 * Return -1 if curly braces expansion failed.
18096 * Return 0 if something else is wrong.
18097 * If the name contains 'magic' {}'s, expand them and return the
18098 * expanded name in an allocated string via 'alias' - caller must free.
18100 static int
18101 get_name_len(arg, alias, evaluate, verbose)
18102 char_u **arg;
18103 char_u **alias;
18104 int evaluate;
18105 int verbose;
18107 int len;
18108 char_u *p;
18109 char_u *expr_start;
18110 char_u *expr_end;
18112 *alias = NULL; /* default to no alias */
18114 if ((*arg)[0] == K_SPECIAL && (*arg)[1] == KS_EXTRA
18115 && (*arg)[2] == (int)KE_SNR)
18117 /* hard coded <SNR>, already translated */
18118 *arg += 3;
18119 return get_id_len(arg) + 3;
18121 len = eval_fname_script(*arg);
18122 if (len > 0)
18124 /* literal "<SID>", "s:" or "<SNR>" */
18125 *arg += len;
18129 * Find the end of the name; check for {} construction.
18131 p = find_name_end(*arg, &expr_start, &expr_end,
18132 len > 0 ? 0 : FNE_CHECK_START);
18133 if (expr_start != NULL)
18135 char_u *temp_string;
18137 if (!evaluate)
18139 len += (int)(p - *arg);
18140 *arg = skipwhite(p);
18141 return len;
18145 * Include any <SID> etc in the expanded string:
18146 * Thus the -len here.
18148 temp_string = make_expanded_name(*arg - len, expr_start, expr_end, p);
18149 if (temp_string == NULL)
18150 return -1;
18151 *alias = temp_string;
18152 *arg = skipwhite(p);
18153 return (int)STRLEN(temp_string);
18156 len += get_id_len(arg);
18157 if (len == 0 && verbose)
18158 EMSG2(_(e_invexpr2), *arg);
18160 return len;
18164 * Find the end of a variable or function name, taking care of magic braces.
18165 * If "expr_start" is not NULL then "expr_start" and "expr_end" are set to the
18166 * start and end of the first magic braces item.
18167 * "flags" can have FNE_INCL_BR and FNE_CHECK_START.
18168 * Return a pointer to just after the name. Equal to "arg" if there is no
18169 * valid name.
18171 static char_u *
18172 find_name_end(arg, expr_start, expr_end, flags)
18173 char_u *arg;
18174 char_u **expr_start;
18175 char_u **expr_end;
18176 int flags;
18178 int mb_nest = 0;
18179 int br_nest = 0;
18180 char_u *p;
18182 if (expr_start != NULL)
18184 *expr_start = NULL;
18185 *expr_end = NULL;
18188 /* Quick check for valid starting character. */
18189 if ((flags & FNE_CHECK_START) && !eval_isnamec1(*arg) && *arg != '{')
18190 return arg;
18192 for (p = arg; *p != NUL
18193 && (eval_isnamec(*p)
18194 || *p == '{'
18195 || ((flags & FNE_INCL_BR) && (*p == '[' || *p == '.'))
18196 || mb_nest != 0
18197 || br_nest != 0); mb_ptr_adv(p))
18199 if (*p == '\'')
18201 /* skip over 'string' to avoid counting [ and ] inside it. */
18202 for (p = p + 1; *p != NUL && *p != '\''; mb_ptr_adv(p))
18204 if (*p == NUL)
18205 break;
18207 else if (*p == '"')
18209 /* skip over "str\"ing" to avoid counting [ and ] inside it. */
18210 for (p = p + 1; *p != NUL && *p != '"'; mb_ptr_adv(p))
18211 if (*p == '\\' && p[1] != NUL)
18212 ++p;
18213 if (*p == NUL)
18214 break;
18217 if (mb_nest == 0)
18219 if (*p == '[')
18220 ++br_nest;
18221 else if (*p == ']')
18222 --br_nest;
18225 if (br_nest == 0)
18227 if (*p == '{')
18229 mb_nest++;
18230 if (expr_start != NULL && *expr_start == NULL)
18231 *expr_start = p;
18233 else if (*p == '}')
18235 mb_nest--;
18236 if (expr_start != NULL && mb_nest == 0 && *expr_end == NULL)
18237 *expr_end = p;
18242 return p;
18246 * Expands out the 'magic' {}'s in a variable/function name.
18247 * Note that this can call itself recursively, to deal with
18248 * constructs like foo{bar}{baz}{bam}
18249 * The four pointer arguments point to "foo{expre}ss{ion}bar"
18250 * "in_start" ^
18251 * "expr_start" ^
18252 * "expr_end" ^
18253 * "in_end" ^
18255 * Returns a new allocated string, which the caller must free.
18256 * Returns NULL for failure.
18258 static char_u *
18259 make_expanded_name(in_start, expr_start, expr_end, in_end)
18260 char_u *in_start;
18261 char_u *expr_start;
18262 char_u *expr_end;
18263 char_u *in_end;
18265 char_u c1;
18266 char_u *retval = NULL;
18267 char_u *temp_result;
18268 char_u *nextcmd = NULL;
18270 if (expr_end == NULL || in_end == NULL)
18271 return NULL;
18272 *expr_start = NUL;
18273 *expr_end = NUL;
18274 c1 = *in_end;
18275 *in_end = NUL;
18277 temp_result = eval_to_string(expr_start + 1, &nextcmd, FALSE);
18278 if (temp_result != NULL && nextcmd == NULL)
18280 retval = alloc((unsigned)(STRLEN(temp_result) + (expr_start - in_start)
18281 + (in_end - expr_end) + 1));
18282 if (retval != NULL)
18284 STRCPY(retval, in_start);
18285 STRCAT(retval, temp_result);
18286 STRCAT(retval, expr_end + 1);
18289 vim_free(temp_result);
18291 *in_end = c1; /* put char back for error messages */
18292 *expr_start = '{';
18293 *expr_end = '}';
18295 if (retval != NULL)
18297 temp_result = find_name_end(retval, &expr_start, &expr_end, 0);
18298 if (expr_start != NULL)
18300 /* Further expansion! */
18301 temp_result = make_expanded_name(retval, expr_start,
18302 expr_end, temp_result);
18303 vim_free(retval);
18304 retval = temp_result;
18308 return retval;
18312 * Return TRUE if character "c" can be used in a variable or function name.
18313 * Does not include '{' or '}' for magic braces.
18315 static int
18316 eval_isnamec(c)
18317 int c;
18319 return (ASCII_ISALNUM(c) || c == '_' || c == ':' || c == AUTOLOAD_CHAR);
18323 * Return TRUE if character "c" can be used as the first character in a
18324 * variable or function name (excluding '{' and '}').
18326 static int
18327 eval_isnamec1(c)
18328 int c;
18330 return (ASCII_ISALPHA(c) || c == '_');
18334 * Set number v: variable to "val".
18336 void
18337 set_vim_var_nr(idx, val)
18338 int idx;
18339 long val;
18341 vimvars[idx].vv_nr = val;
18345 * Get number v: variable value.
18347 long
18348 get_vim_var_nr(idx)
18349 int idx;
18351 return vimvars[idx].vv_nr;
18355 * Get string v: variable value. Uses a static buffer, can only be used once.
18357 char_u *
18358 get_vim_var_str(idx)
18359 int idx;
18361 return get_tv_string(&vimvars[idx].vv_tv);
18365 * Get List v: variable value. Caller must take care of reference count when
18366 * needed.
18368 list_T *
18369 get_vim_var_list(idx)
18370 int idx;
18372 return vimvars[idx].vv_list;
18376 * Set v:count to "count" and v:count1 to "count1".
18377 * When "set_prevcount" is TRUE first set v:prevcount from v:count.
18379 void
18380 set_vcount(count, count1, set_prevcount)
18381 long count;
18382 long count1;
18383 int set_prevcount;
18385 if (set_prevcount)
18386 vimvars[VV_PREVCOUNT].vv_nr = vimvars[VV_COUNT].vv_nr;
18387 vimvars[VV_COUNT].vv_nr = count;
18388 vimvars[VV_COUNT1].vv_nr = count1;
18392 * Set string v: variable to a copy of "val".
18394 void
18395 set_vim_var_string(idx, val, len)
18396 int idx;
18397 char_u *val;
18398 int len; /* length of "val" to use or -1 (whole string) */
18400 /* Need to do this (at least) once, since we can't initialize a union.
18401 * Will always be invoked when "v:progname" is set. */
18402 vimvars[VV_VERSION].vv_nr = VIM_VERSION_100;
18404 vim_free(vimvars[idx].vv_str);
18405 if (val == NULL)
18406 vimvars[idx].vv_str = NULL;
18407 else if (len == -1)
18408 vimvars[idx].vv_str = vim_strsave(val);
18409 else
18410 vimvars[idx].vv_str = vim_strnsave(val, len);
18414 * Set List v: variable to "val".
18416 void
18417 set_vim_var_list(idx, val)
18418 int idx;
18419 list_T *val;
18421 list_unref(vimvars[idx].vv_list);
18422 vimvars[idx].vv_list = val;
18423 if (val != NULL)
18424 ++val->lv_refcount;
18428 * Set v:register if needed.
18430 void
18431 set_reg_var(c)
18432 int c;
18434 char_u regname;
18436 if (c == 0 || c == ' ')
18437 regname = '"';
18438 else
18439 regname = c;
18440 /* Avoid free/alloc when the value is already right. */
18441 if (vimvars[VV_REG].vv_str == NULL || vimvars[VV_REG].vv_str[0] != c)
18442 set_vim_var_string(VV_REG, &regname, 1);
18446 * Get or set v:exception. If "oldval" == NULL, return the current value.
18447 * Otherwise, restore the value to "oldval" and return NULL.
18448 * Must always be called in pairs to save and restore v:exception! Does not
18449 * take care of memory allocations.
18451 char_u *
18452 v_exception(oldval)
18453 char_u *oldval;
18455 if (oldval == NULL)
18456 return vimvars[VV_EXCEPTION].vv_str;
18458 vimvars[VV_EXCEPTION].vv_str = oldval;
18459 return NULL;
18463 * Get or set v:throwpoint. If "oldval" == NULL, return the current value.
18464 * Otherwise, restore the value to "oldval" and return NULL.
18465 * Must always be called in pairs to save and restore v:throwpoint! Does not
18466 * take care of memory allocations.
18468 char_u *
18469 v_throwpoint(oldval)
18470 char_u *oldval;
18472 if (oldval == NULL)
18473 return vimvars[VV_THROWPOINT].vv_str;
18475 vimvars[VV_THROWPOINT].vv_str = oldval;
18476 return NULL;
18479 #if defined(FEAT_AUTOCMD) || defined(PROTO)
18481 * Set v:cmdarg.
18482 * If "eap" != NULL, use "eap" to generate the value and return the old value.
18483 * If "oldarg" != NULL, restore the value to "oldarg" and return NULL.
18484 * Must always be called in pairs!
18486 char_u *
18487 set_cmdarg(eap, oldarg)
18488 exarg_T *eap;
18489 char_u *oldarg;
18491 char_u *oldval;
18492 char_u *newval;
18493 unsigned len;
18495 oldval = vimvars[VV_CMDARG].vv_str;
18496 if (eap == NULL)
18498 vim_free(oldval);
18499 vimvars[VV_CMDARG].vv_str = oldarg;
18500 return NULL;
18503 if (eap->force_bin == FORCE_BIN)
18504 len = 6;
18505 else if (eap->force_bin == FORCE_NOBIN)
18506 len = 8;
18507 else
18508 len = 0;
18510 if (eap->read_edit)
18511 len += 7;
18513 if (eap->force_ff != 0)
18514 len += (unsigned)STRLEN(eap->cmd + eap->force_ff) + 6;
18515 # ifdef FEAT_MBYTE
18516 if (eap->force_enc != 0)
18517 len += (unsigned)STRLEN(eap->cmd + eap->force_enc) + 7;
18518 if (eap->bad_char != 0)
18519 len += (unsigned)STRLEN(eap->cmd + eap->bad_char) + 7;
18520 # endif
18522 newval = alloc(len + 1);
18523 if (newval == NULL)
18524 return NULL;
18526 if (eap->force_bin == FORCE_BIN)
18527 sprintf((char *)newval, " ++bin");
18528 else if (eap->force_bin == FORCE_NOBIN)
18529 sprintf((char *)newval, " ++nobin");
18530 else
18531 *newval = NUL;
18533 if (eap->read_edit)
18534 STRCAT(newval, " ++edit");
18536 if (eap->force_ff != 0)
18537 sprintf((char *)newval + STRLEN(newval), " ++ff=%s",
18538 eap->cmd + eap->force_ff);
18539 # ifdef FEAT_MBYTE
18540 if (eap->force_enc != 0)
18541 sprintf((char *)newval + STRLEN(newval), " ++enc=%s",
18542 eap->cmd + eap->force_enc);
18543 if (eap->bad_char != 0)
18544 sprintf((char *)newval + STRLEN(newval), " ++bad=%s",
18545 eap->cmd + eap->bad_char);
18546 # endif
18547 vimvars[VV_CMDARG].vv_str = newval;
18548 return oldval;
18550 #endif
18553 * Get the value of internal variable "name".
18554 * Return OK or FAIL.
18556 static int
18557 get_var_tv(name, len, rettv, verbose)
18558 char_u *name;
18559 int len; /* length of "name" */
18560 typval_T *rettv; /* NULL when only checking existence */
18561 int verbose; /* may give error message */
18563 int ret = OK;
18564 typval_T *tv = NULL;
18565 typval_T atv;
18566 dictitem_T *v;
18567 int cc;
18569 /* truncate the name, so that we can use strcmp() */
18570 cc = name[len];
18571 name[len] = NUL;
18574 * Check for "b:changedtick".
18576 if (STRCMP(name, "b:changedtick") == 0)
18578 atv.v_type = VAR_NUMBER;
18579 atv.vval.v_number = curbuf->b_changedtick;
18580 tv = &atv;
18584 * Check for user-defined variables.
18586 else
18588 v = find_var(name, NULL);
18589 if (v != NULL)
18590 tv = &v->di_tv;
18593 if (tv == NULL)
18595 if (rettv != NULL && verbose)
18596 EMSG2(_(e_undefvar), name);
18597 ret = FAIL;
18599 else if (rettv != NULL)
18600 copy_tv(tv, rettv);
18602 name[len] = cc;
18604 return ret;
18608 * Handle expr[expr], expr[expr:expr] subscript and .name lookup.
18609 * Also handle function call with Funcref variable: func(expr)
18610 * Can all be combined: dict.func(expr)[idx]['func'](expr)
18612 static int
18613 handle_subscript(arg, rettv, evaluate, verbose)
18614 char_u **arg;
18615 typval_T *rettv;
18616 int evaluate; /* do more than finding the end */
18617 int verbose; /* give error messages */
18619 int ret = OK;
18620 dict_T *selfdict = NULL;
18621 char_u *s;
18622 int len;
18623 typval_T functv;
18625 while (ret == OK
18626 && (**arg == '['
18627 || (**arg == '.' && rettv->v_type == VAR_DICT)
18628 || (**arg == '(' && rettv->v_type == VAR_FUNC))
18629 && !vim_iswhite(*(*arg - 1)))
18631 if (**arg == '(')
18633 /* need to copy the funcref so that we can clear rettv */
18634 functv = *rettv;
18635 rettv->v_type = VAR_UNKNOWN;
18637 /* Invoke the function. Recursive! */
18638 s = functv.vval.v_string;
18639 ret = get_func_tv(s, (int)STRLEN(s), rettv, arg,
18640 curwin->w_cursor.lnum, curwin->w_cursor.lnum,
18641 &len, evaluate, selfdict);
18643 /* Clear the funcref afterwards, so that deleting it while
18644 * evaluating the arguments is possible (see test55). */
18645 clear_tv(&functv);
18647 /* Stop the expression evaluation when immediately aborting on
18648 * error, or when an interrupt occurred or an exception was thrown
18649 * but not caught. */
18650 if (aborting())
18652 if (ret == OK)
18653 clear_tv(rettv);
18654 ret = FAIL;
18656 dict_unref(selfdict);
18657 selfdict = NULL;
18659 else /* **arg == '[' || **arg == '.' */
18661 dict_unref(selfdict);
18662 if (rettv->v_type == VAR_DICT)
18664 selfdict = rettv->vval.v_dict;
18665 if (selfdict != NULL)
18666 ++selfdict->dv_refcount;
18668 else
18669 selfdict = NULL;
18670 if (eval_index(arg, rettv, evaluate, verbose) == FAIL)
18672 clear_tv(rettv);
18673 ret = FAIL;
18677 dict_unref(selfdict);
18678 return ret;
18682 * Allocate memory for a variable type-value, and make it empty (0 or NULL
18683 * value).
18685 static typval_T *
18686 alloc_tv()
18688 return (typval_T *)alloc_clear((unsigned)sizeof(typval_T));
18692 * Allocate memory for a variable type-value, and assign a string to it.
18693 * The string "s" must have been allocated, it is consumed.
18694 * Return NULL for out of memory, the variable otherwise.
18696 static typval_T *
18697 alloc_string_tv(s)
18698 char_u *s;
18700 typval_T *rettv;
18702 rettv = alloc_tv();
18703 if (rettv != NULL)
18705 rettv->v_type = VAR_STRING;
18706 rettv->vval.v_string = s;
18708 else
18709 vim_free(s);
18710 return rettv;
18714 * Free the memory for a variable type-value.
18716 void
18717 free_tv(varp)
18718 typval_T *varp;
18720 if (varp != NULL)
18722 switch (varp->v_type)
18724 case VAR_FUNC:
18725 func_unref(varp->vval.v_string);
18726 /*FALLTHROUGH*/
18727 case VAR_STRING:
18728 vim_free(varp->vval.v_string);
18729 break;
18730 case VAR_LIST:
18731 list_unref(varp->vval.v_list);
18732 break;
18733 case VAR_DICT:
18734 dict_unref(varp->vval.v_dict);
18735 break;
18736 case VAR_NUMBER:
18737 #ifdef FEAT_FLOAT
18738 case VAR_FLOAT:
18739 #endif
18740 case VAR_UNKNOWN:
18741 break;
18742 default:
18743 EMSG2(_(e_intern2), "free_tv()");
18744 break;
18746 vim_free(varp);
18751 * Free the memory for a variable value and set the value to NULL or 0.
18753 void
18754 clear_tv(varp)
18755 typval_T *varp;
18757 if (varp != NULL)
18759 switch (varp->v_type)
18761 case VAR_FUNC:
18762 func_unref(varp->vval.v_string);
18763 /*FALLTHROUGH*/
18764 case VAR_STRING:
18765 vim_free(varp->vval.v_string);
18766 varp->vval.v_string = NULL;
18767 break;
18768 case VAR_LIST:
18769 list_unref(varp->vval.v_list);
18770 varp->vval.v_list = NULL;
18771 break;
18772 case VAR_DICT:
18773 dict_unref(varp->vval.v_dict);
18774 varp->vval.v_dict = NULL;
18775 break;
18776 case VAR_NUMBER:
18777 varp->vval.v_number = 0;
18778 break;
18779 #ifdef FEAT_FLOAT
18780 case VAR_FLOAT:
18781 varp->vval.v_float = 0.0;
18782 break;
18783 #endif
18784 case VAR_UNKNOWN:
18785 break;
18786 default:
18787 EMSG2(_(e_intern2), "clear_tv()");
18789 varp->v_lock = 0;
18794 * Set the value of a variable to NULL without freeing items.
18796 static void
18797 init_tv(varp)
18798 typval_T *varp;
18800 if (varp != NULL)
18801 vim_memset(varp, 0, sizeof(typval_T));
18805 * Get the number value of a variable.
18806 * If it is a String variable, uses vim_str2nr().
18807 * For incompatible types, return 0.
18808 * get_tv_number_chk() is similar to get_tv_number(), but informs the
18809 * caller of incompatible types: it sets *denote to TRUE if "denote"
18810 * is not NULL or returns -1 otherwise.
18812 static long
18813 get_tv_number(varp)
18814 typval_T *varp;
18816 int error = FALSE;
18818 return get_tv_number_chk(varp, &error); /* return 0L on error */
18821 long
18822 get_tv_number_chk(varp, denote)
18823 typval_T *varp;
18824 int *denote;
18826 long n = 0L;
18828 switch (varp->v_type)
18830 case VAR_NUMBER:
18831 return (long)(varp->vval.v_number);
18832 #ifdef FEAT_FLOAT
18833 case VAR_FLOAT:
18834 EMSG(_("E805: Using a Float as a Number"));
18835 break;
18836 #endif
18837 case VAR_FUNC:
18838 EMSG(_("E703: Using a Funcref as a Number"));
18839 break;
18840 case VAR_STRING:
18841 if (varp->vval.v_string != NULL)
18842 vim_str2nr(varp->vval.v_string, NULL, NULL,
18843 TRUE, TRUE, &n, NULL);
18844 return n;
18845 case VAR_LIST:
18846 EMSG(_("E745: Using a List as a Number"));
18847 break;
18848 case VAR_DICT:
18849 EMSG(_("E728: Using a Dictionary as a Number"));
18850 break;
18851 default:
18852 EMSG2(_(e_intern2), "get_tv_number()");
18853 break;
18855 if (denote == NULL) /* useful for values that must be unsigned */
18856 n = -1;
18857 else
18858 *denote = TRUE;
18859 return n;
18863 * Get the lnum from the first argument.
18864 * Also accepts ".", "$", etc., but that only works for the current buffer.
18865 * Returns -1 on error.
18867 static linenr_T
18868 get_tv_lnum(argvars)
18869 typval_T *argvars;
18871 typval_T rettv;
18872 linenr_T lnum;
18874 lnum = get_tv_number_chk(&argvars[0], NULL);
18875 if (lnum == 0) /* no valid number, try using line() */
18877 rettv.v_type = VAR_NUMBER;
18878 f_line(argvars, &rettv);
18879 lnum = rettv.vval.v_number;
18880 clear_tv(&rettv);
18882 return lnum;
18886 * Get the lnum from the first argument.
18887 * Also accepts "$", then "buf" is used.
18888 * Returns 0 on error.
18890 static linenr_T
18891 get_tv_lnum_buf(argvars, buf)
18892 typval_T *argvars;
18893 buf_T *buf;
18895 if (argvars[0].v_type == VAR_STRING
18896 && argvars[0].vval.v_string != NULL
18897 && argvars[0].vval.v_string[0] == '$'
18898 && buf != NULL)
18899 return buf->b_ml.ml_line_count;
18900 return get_tv_number_chk(&argvars[0], NULL);
18904 * Get the string value of a variable.
18905 * If it is a Number variable, the number is converted into a string.
18906 * get_tv_string() uses a single, static buffer. YOU CAN ONLY USE IT ONCE!
18907 * get_tv_string_buf() uses a given buffer.
18908 * If the String variable has never been set, return an empty string.
18909 * Never returns NULL;
18910 * get_tv_string_chk() and get_tv_string_buf_chk() are similar, but return
18911 * NULL on error.
18913 static char_u *
18914 get_tv_string(varp)
18915 typval_T *varp;
18917 static char_u mybuf[NUMBUFLEN];
18919 return get_tv_string_buf(varp, mybuf);
18922 static char_u *
18923 get_tv_string_buf(varp, buf)
18924 typval_T *varp;
18925 char_u *buf;
18927 char_u *res = get_tv_string_buf_chk(varp, buf);
18929 return res != NULL ? res : (char_u *)"";
18932 char_u *
18933 get_tv_string_chk(varp)
18934 typval_T *varp;
18936 static char_u mybuf[NUMBUFLEN];
18938 return get_tv_string_buf_chk(varp, mybuf);
18941 static char_u *
18942 get_tv_string_buf_chk(varp, buf)
18943 typval_T *varp;
18944 char_u *buf;
18946 switch (varp->v_type)
18948 case VAR_NUMBER:
18949 sprintf((char *)buf, "%ld", (long)varp->vval.v_number);
18950 return buf;
18951 case VAR_FUNC:
18952 EMSG(_("E729: using Funcref as a String"));
18953 break;
18954 case VAR_LIST:
18955 EMSG(_("E730: using List as a String"));
18956 break;
18957 case VAR_DICT:
18958 EMSG(_("E731: using Dictionary as a String"));
18959 break;
18960 #ifdef FEAT_FLOAT
18961 case VAR_FLOAT:
18962 EMSG(_("E806: using Float as a String"));
18963 break;
18964 #endif
18965 case VAR_STRING:
18966 if (varp->vval.v_string != NULL)
18967 return varp->vval.v_string;
18968 return (char_u *)"";
18969 default:
18970 EMSG2(_(e_intern2), "get_tv_string_buf()");
18971 break;
18973 return NULL;
18977 * Find variable "name" in the list of variables.
18978 * Return a pointer to it if found, NULL if not found.
18979 * Careful: "a:0" variables don't have a name.
18980 * When "htp" is not NULL we are writing to the variable, set "htp" to the
18981 * hashtab_T used.
18983 static dictitem_T *
18984 find_var(name, htp)
18985 char_u *name;
18986 hashtab_T **htp;
18988 char_u *varname;
18989 hashtab_T *ht;
18991 ht = find_var_ht(name, &varname);
18992 if (htp != NULL)
18993 *htp = ht;
18994 if (ht == NULL)
18995 return NULL;
18996 return find_var_in_ht(ht, varname, htp != NULL);
19000 * Find variable "varname" in hashtab "ht".
19001 * Returns NULL if not found.
19003 static dictitem_T *
19004 find_var_in_ht(ht, varname, writing)
19005 hashtab_T *ht;
19006 char_u *varname;
19007 int writing;
19009 hashitem_T *hi;
19011 if (*varname == NUL)
19013 /* Must be something like "s:", otherwise "ht" would be NULL. */
19014 switch (varname[-2])
19016 case 's': return &SCRIPT_SV(current_SID).sv_var;
19017 case 'g': return &globvars_var;
19018 case 'v': return &vimvars_var;
19019 case 'b': return &curbuf->b_bufvar;
19020 case 'w': return &curwin->w_winvar;
19021 #ifdef FEAT_WINDOWS
19022 case 't': return &curtab->tp_winvar;
19023 #endif
19024 case 'l': return current_funccal == NULL
19025 ? NULL : &current_funccal->l_vars_var;
19026 case 'a': return current_funccal == NULL
19027 ? NULL : &current_funccal->l_avars_var;
19029 return NULL;
19032 hi = hash_find(ht, varname);
19033 if (HASHITEM_EMPTY(hi))
19035 /* For global variables we may try auto-loading the script. If it
19036 * worked find the variable again. Don't auto-load a script if it was
19037 * loaded already, otherwise it would be loaded every time when
19038 * checking if a function name is a Funcref variable. */
19039 if (ht == &globvarht && !writing
19040 && script_autoload(varname, FALSE) && !aborting())
19041 hi = hash_find(ht, varname);
19042 if (HASHITEM_EMPTY(hi))
19043 return NULL;
19045 return HI2DI(hi);
19049 * Find the hashtab used for a variable name.
19050 * Set "varname" to the start of name without ':'.
19052 static hashtab_T *
19053 find_var_ht(name, varname)
19054 char_u *name;
19055 char_u **varname;
19057 hashitem_T *hi;
19059 if (name[1] != ':')
19061 /* The name must not start with a colon or #. */
19062 if (name[0] == ':' || name[0] == AUTOLOAD_CHAR)
19063 return NULL;
19064 *varname = name;
19066 /* "version" is "v:version" in all scopes */
19067 hi = hash_find(&compat_hashtab, name);
19068 if (!HASHITEM_EMPTY(hi))
19069 return &compat_hashtab;
19071 if (current_funccal == NULL)
19072 return &globvarht; /* global variable */
19073 return &current_funccal->l_vars.dv_hashtab; /* l: variable */
19075 *varname = name + 2;
19076 if (*name == 'g') /* global variable */
19077 return &globvarht;
19078 /* There must be no ':' or '#' in the rest of the name, unless g: is used
19080 if (vim_strchr(name + 2, ':') != NULL
19081 || vim_strchr(name + 2, AUTOLOAD_CHAR) != NULL)
19082 return NULL;
19083 if (*name == 'b') /* buffer variable */
19084 return &curbuf->b_vars.dv_hashtab;
19085 if (*name == 'w') /* window variable */
19086 return &curwin->w_vars.dv_hashtab;
19087 #ifdef FEAT_WINDOWS
19088 if (*name == 't') /* tab page variable */
19089 return &curtab->tp_vars.dv_hashtab;
19090 #endif
19091 if (*name == 'v') /* v: variable */
19092 return &vimvarht;
19093 if (*name == 'a' && current_funccal != NULL) /* function argument */
19094 return &current_funccal->l_avars.dv_hashtab;
19095 if (*name == 'l' && current_funccal != NULL) /* local function variable */
19096 return &current_funccal->l_vars.dv_hashtab;
19097 if (*name == 's' /* script variable */
19098 && current_SID > 0 && current_SID <= ga_scripts.ga_len)
19099 return &SCRIPT_VARS(current_SID);
19100 return NULL;
19104 * Get the string value of a (global/local) variable.
19105 * Returns NULL when it doesn't exist.
19107 char_u *
19108 get_var_value(name)
19109 char_u *name;
19111 dictitem_T *v;
19113 v = find_var(name, NULL);
19114 if (v == NULL)
19115 return NULL;
19116 return get_tv_string(&v->di_tv);
19120 * Allocate a new hashtab for a sourced script. It will be used while
19121 * sourcing this script and when executing functions defined in the script.
19123 void
19124 new_script_vars(id)
19125 scid_T id;
19127 int i;
19128 hashtab_T *ht;
19129 scriptvar_T *sv;
19131 if (ga_grow(&ga_scripts, (int)(id - ga_scripts.ga_len)) == OK)
19133 /* Re-allocating ga_data means that an ht_array pointing to
19134 * ht_smallarray becomes invalid. We can recognize this: ht_mask is
19135 * at its init value. Also reset "v_dict", it's always the same. */
19136 for (i = 1; i <= ga_scripts.ga_len; ++i)
19138 ht = &SCRIPT_VARS(i);
19139 if (ht->ht_mask == HT_INIT_SIZE - 1)
19140 ht->ht_array = ht->ht_smallarray;
19141 sv = &SCRIPT_SV(i);
19142 sv->sv_var.di_tv.vval.v_dict = &sv->sv_dict;
19145 while (ga_scripts.ga_len < id)
19147 sv = &SCRIPT_SV(ga_scripts.ga_len + 1);
19148 init_var_dict(&sv->sv_dict, &sv->sv_var);
19149 ++ga_scripts.ga_len;
19155 * Initialize dictionary "dict" as a scope and set variable "dict_var" to
19156 * point to it.
19158 void
19159 init_var_dict(dict, dict_var)
19160 dict_T *dict;
19161 dictitem_T *dict_var;
19163 hash_init(&dict->dv_hashtab);
19164 dict->dv_refcount = 99999;
19165 dict_var->di_tv.vval.v_dict = dict;
19166 dict_var->di_tv.v_type = VAR_DICT;
19167 dict_var->di_tv.v_lock = VAR_FIXED;
19168 dict_var->di_flags = DI_FLAGS_RO | DI_FLAGS_FIX;
19169 dict_var->di_key[0] = NUL;
19173 * Clean up a list of internal variables.
19174 * Frees all allocated variables and the value they contain.
19175 * Clears hashtab "ht", does not free it.
19177 void
19178 vars_clear(ht)
19179 hashtab_T *ht;
19181 vars_clear_ext(ht, TRUE);
19185 * Like vars_clear(), but only free the value if "free_val" is TRUE.
19187 static void
19188 vars_clear_ext(ht, free_val)
19189 hashtab_T *ht;
19190 int free_val;
19192 int todo;
19193 hashitem_T *hi;
19194 dictitem_T *v;
19196 hash_lock(ht);
19197 todo = (int)ht->ht_used;
19198 for (hi = ht->ht_array; todo > 0; ++hi)
19200 if (!HASHITEM_EMPTY(hi))
19202 --todo;
19204 /* Free the variable. Don't remove it from the hashtab,
19205 * ht_array might change then. hash_clear() takes care of it
19206 * later. */
19207 v = HI2DI(hi);
19208 if (free_val)
19209 clear_tv(&v->di_tv);
19210 if ((v->di_flags & DI_FLAGS_FIX) == 0)
19211 vim_free(v);
19214 hash_clear(ht);
19215 ht->ht_used = 0;
19219 * Delete a variable from hashtab "ht" at item "hi".
19220 * Clear the variable value and free the dictitem.
19222 static void
19223 delete_var(ht, hi)
19224 hashtab_T *ht;
19225 hashitem_T *hi;
19227 dictitem_T *di = HI2DI(hi);
19229 hash_remove(ht, hi);
19230 clear_tv(&di->di_tv);
19231 vim_free(di);
19235 * List the value of one internal variable.
19237 static void
19238 list_one_var(v, prefix, first)
19239 dictitem_T *v;
19240 char_u *prefix;
19241 int *first;
19243 char_u *tofree;
19244 char_u *s;
19245 char_u numbuf[NUMBUFLEN];
19247 s = echo_string(&v->di_tv, &tofree, numbuf, ++current_copyID);
19248 list_one_var_a(prefix, v->di_key, v->di_tv.v_type,
19249 s == NULL ? (char_u *)"" : s, first);
19250 vim_free(tofree);
19253 static void
19254 list_one_var_a(prefix, name, type, string, first)
19255 char_u *prefix;
19256 char_u *name;
19257 int type;
19258 char_u *string;
19259 int *first; /* when TRUE clear rest of screen and set to FALSE */
19261 /* don't use msg() or msg_attr() to avoid overwriting "v:statusmsg" */
19262 msg_start();
19263 msg_puts(prefix);
19264 if (name != NULL) /* "a:" vars don't have a name stored */
19265 msg_puts(name);
19266 msg_putchar(' ');
19267 msg_advance(22);
19268 if (type == VAR_NUMBER)
19269 msg_putchar('#');
19270 else if (type == VAR_FUNC)
19271 msg_putchar('*');
19272 else if (type == VAR_LIST)
19274 msg_putchar('[');
19275 if (*string == '[')
19276 ++string;
19278 else if (type == VAR_DICT)
19280 msg_putchar('{');
19281 if (*string == '{')
19282 ++string;
19284 else
19285 msg_putchar(' ');
19287 msg_outtrans(string);
19289 if (type == VAR_FUNC)
19290 msg_puts((char_u *)"()");
19291 if (*first)
19293 msg_clr_eos();
19294 *first = FALSE;
19299 * Set variable "name" to value in "tv".
19300 * If the variable already exists, the value is updated.
19301 * Otherwise the variable is created.
19303 static void
19304 set_var(name, tv, copy)
19305 char_u *name;
19306 typval_T *tv;
19307 int copy; /* make copy of value in "tv" */
19309 dictitem_T *v;
19310 char_u *varname;
19311 hashtab_T *ht;
19312 char_u *p;
19314 if (tv->v_type == VAR_FUNC)
19316 if (!(vim_strchr((char_u *)"wbs", name[0]) != NULL && name[1] == ':')
19317 && !ASCII_ISUPPER((name[0] != NUL && name[1] == ':')
19318 ? name[2] : name[0]))
19320 EMSG2(_("E704: Funcref variable name must start with a capital: %s"), name);
19321 return;
19323 if (function_exists(name))
19325 EMSG2(_("E705: Variable name conflicts with existing function: %s"),
19326 name);
19327 return;
19331 ht = find_var_ht(name, &varname);
19332 if (ht == NULL || *varname == NUL)
19334 EMSG2(_(e_illvar), name);
19335 return;
19338 v = find_var_in_ht(ht, varname, TRUE);
19339 if (v != NULL)
19341 /* existing variable, need to clear the value */
19342 if (var_check_ro(v->di_flags, name)
19343 || tv_check_lock(v->di_tv.v_lock, name))
19344 return;
19345 if (v->di_tv.v_type != tv->v_type
19346 && !((v->di_tv.v_type == VAR_STRING
19347 || v->di_tv.v_type == VAR_NUMBER)
19348 && (tv->v_type == VAR_STRING
19349 || tv->v_type == VAR_NUMBER))
19350 #ifdef FEAT_FLOAT
19351 && !((v->di_tv.v_type == VAR_NUMBER
19352 || v->di_tv.v_type == VAR_FLOAT)
19353 && (tv->v_type == VAR_NUMBER
19354 || tv->v_type == VAR_FLOAT))
19355 #endif
19358 EMSG2(_("E706: Variable type mismatch for: %s"), name);
19359 return;
19363 * Handle setting internal v: variables separately: we don't change
19364 * the type.
19366 if (ht == &vimvarht)
19368 if (v->di_tv.v_type == VAR_STRING)
19370 vim_free(v->di_tv.vval.v_string);
19371 if (copy || tv->v_type != VAR_STRING)
19372 v->di_tv.vval.v_string = vim_strsave(get_tv_string(tv));
19373 else
19375 /* Take over the string to avoid an extra alloc/free. */
19376 v->di_tv.vval.v_string = tv->vval.v_string;
19377 tv->vval.v_string = NULL;
19380 else if (v->di_tv.v_type != VAR_NUMBER)
19381 EMSG2(_(e_intern2), "set_var()");
19382 else
19384 v->di_tv.vval.v_number = get_tv_number(tv);
19385 if (STRCMP(varname, "searchforward") == 0)
19386 set_search_direction(v->di_tv.vval.v_number ? '/' : '?');
19388 return;
19391 clear_tv(&v->di_tv);
19393 else /* add a new variable */
19395 /* Can't add "v:" variable. */
19396 if (ht == &vimvarht)
19398 EMSG2(_(e_illvar), name);
19399 return;
19402 /* Make sure the variable name is valid. */
19403 for (p = varname; *p != NUL; ++p)
19404 if (!eval_isnamec1(*p) && (p == varname || !VIM_ISDIGIT(*p))
19405 && *p != AUTOLOAD_CHAR)
19407 EMSG2(_(e_illvar), varname);
19408 return;
19411 v = (dictitem_T *)alloc((unsigned)(sizeof(dictitem_T)
19412 + STRLEN(varname)));
19413 if (v == NULL)
19414 return;
19415 STRCPY(v->di_key, varname);
19416 if (hash_add(ht, DI2HIKEY(v)) == FAIL)
19418 vim_free(v);
19419 return;
19421 v->di_flags = 0;
19424 if (copy || tv->v_type == VAR_NUMBER || tv->v_type == VAR_FLOAT)
19425 copy_tv(tv, &v->di_tv);
19426 else
19428 v->di_tv = *tv;
19429 v->di_tv.v_lock = 0;
19430 init_tv(tv);
19435 * Return TRUE if di_flags "flags" indicates variable "name" is read-only.
19436 * Also give an error message.
19438 static int
19439 var_check_ro(flags, name)
19440 int flags;
19441 char_u *name;
19443 if (flags & DI_FLAGS_RO)
19445 EMSG2(_(e_readonlyvar), name);
19446 return TRUE;
19448 if ((flags & DI_FLAGS_RO_SBX) && sandbox)
19450 EMSG2(_(e_readonlysbx), name);
19451 return TRUE;
19453 return FALSE;
19457 * Return TRUE if di_flags "flags" indicates variable "name" is fixed.
19458 * Also give an error message.
19460 static int
19461 var_check_fixed(flags, name)
19462 int flags;
19463 char_u *name;
19465 if (flags & DI_FLAGS_FIX)
19467 EMSG2(_("E795: Cannot delete variable %s"), name);
19468 return TRUE;
19470 return FALSE;
19474 * Return TRUE if typeval "tv" is set to be locked (immutable).
19475 * Also give an error message, using "name".
19477 static int
19478 tv_check_lock(lock, name)
19479 int lock;
19480 char_u *name;
19482 if (lock & VAR_LOCKED)
19484 EMSG2(_("E741: Value is locked: %s"),
19485 name == NULL ? (char_u *)_("Unknown") : name);
19486 return TRUE;
19488 if (lock & VAR_FIXED)
19490 EMSG2(_("E742: Cannot change value of %s"),
19491 name == NULL ? (char_u *)_("Unknown") : name);
19492 return TRUE;
19494 return FALSE;
19498 * Copy the values from typval_T "from" to typval_T "to".
19499 * When needed allocates string or increases reference count.
19500 * Does not make a copy of a list or dict but copies the reference!
19502 static void
19503 copy_tv(from, to)
19504 typval_T *from;
19505 typval_T *to;
19507 to->v_type = from->v_type;
19508 to->v_lock = 0;
19509 switch (from->v_type)
19511 case VAR_NUMBER:
19512 to->vval.v_number = from->vval.v_number;
19513 break;
19514 #ifdef FEAT_FLOAT
19515 case VAR_FLOAT:
19516 to->vval.v_float = from->vval.v_float;
19517 break;
19518 #endif
19519 case VAR_STRING:
19520 case VAR_FUNC:
19521 if (from->vval.v_string == NULL)
19522 to->vval.v_string = NULL;
19523 else
19525 to->vval.v_string = vim_strsave(from->vval.v_string);
19526 if (from->v_type == VAR_FUNC)
19527 func_ref(to->vval.v_string);
19529 break;
19530 case VAR_LIST:
19531 if (from->vval.v_list == NULL)
19532 to->vval.v_list = NULL;
19533 else
19535 to->vval.v_list = from->vval.v_list;
19536 ++to->vval.v_list->lv_refcount;
19538 break;
19539 case VAR_DICT:
19540 if (from->vval.v_dict == NULL)
19541 to->vval.v_dict = NULL;
19542 else
19544 to->vval.v_dict = from->vval.v_dict;
19545 ++to->vval.v_dict->dv_refcount;
19547 break;
19548 default:
19549 EMSG2(_(e_intern2), "copy_tv()");
19550 break;
19555 * Make a copy of an item.
19556 * Lists and Dictionaries are also copied. A deep copy if "deep" is set.
19557 * For deepcopy() "copyID" is zero for a full copy or the ID for when a
19558 * reference to an already copied list/dict can be used.
19559 * Returns FAIL or OK.
19561 static int
19562 item_copy(from, to, deep, copyID)
19563 typval_T *from;
19564 typval_T *to;
19565 int deep;
19566 int copyID;
19568 static int recurse = 0;
19569 int ret = OK;
19571 if (recurse >= DICT_MAXNEST)
19573 EMSG(_("E698: variable nested too deep for making a copy"));
19574 return FAIL;
19576 ++recurse;
19578 switch (from->v_type)
19580 case VAR_NUMBER:
19581 #ifdef FEAT_FLOAT
19582 case VAR_FLOAT:
19583 #endif
19584 case VAR_STRING:
19585 case VAR_FUNC:
19586 copy_tv(from, to);
19587 break;
19588 case VAR_LIST:
19589 to->v_type = VAR_LIST;
19590 to->v_lock = 0;
19591 if (from->vval.v_list == NULL)
19592 to->vval.v_list = NULL;
19593 else if (copyID != 0 && from->vval.v_list->lv_copyID == copyID)
19595 /* use the copy made earlier */
19596 to->vval.v_list = from->vval.v_list->lv_copylist;
19597 ++to->vval.v_list->lv_refcount;
19599 else
19600 to->vval.v_list = list_copy(from->vval.v_list, deep, copyID);
19601 if (to->vval.v_list == NULL)
19602 ret = FAIL;
19603 break;
19604 case VAR_DICT:
19605 to->v_type = VAR_DICT;
19606 to->v_lock = 0;
19607 if (from->vval.v_dict == NULL)
19608 to->vval.v_dict = NULL;
19609 else if (copyID != 0 && from->vval.v_dict->dv_copyID == copyID)
19611 /* use the copy made earlier */
19612 to->vval.v_dict = from->vval.v_dict->dv_copydict;
19613 ++to->vval.v_dict->dv_refcount;
19615 else
19616 to->vval.v_dict = dict_copy(from->vval.v_dict, deep, copyID);
19617 if (to->vval.v_dict == NULL)
19618 ret = FAIL;
19619 break;
19620 default:
19621 EMSG2(_(e_intern2), "item_copy()");
19622 ret = FAIL;
19624 --recurse;
19625 return ret;
19629 * ":echo expr1 ..." print each argument separated with a space, add a
19630 * newline at the end.
19631 * ":echon expr1 ..." print each argument plain.
19633 void
19634 ex_echo(eap)
19635 exarg_T *eap;
19637 char_u *arg = eap->arg;
19638 typval_T rettv;
19639 char_u *tofree;
19640 char_u *p;
19641 int needclr = TRUE;
19642 int atstart = TRUE;
19643 char_u numbuf[NUMBUFLEN];
19645 if (eap->skip)
19646 ++emsg_skip;
19647 while (*arg != NUL && *arg != '|' && *arg != '\n' && !got_int)
19649 /* If eval1() causes an error message the text from the command may
19650 * still need to be cleared. E.g., "echo 22,44". */
19651 need_clr_eos = needclr;
19653 p = arg;
19654 if (eval1(&arg, &rettv, !eap->skip) == FAIL)
19657 * Report the invalid expression unless the expression evaluation
19658 * has been cancelled due to an aborting error, an interrupt, or an
19659 * exception.
19661 if (!aborting())
19662 EMSG2(_(e_invexpr2), p);
19663 need_clr_eos = FALSE;
19664 break;
19666 need_clr_eos = FALSE;
19668 if (!eap->skip)
19670 if (atstart)
19672 atstart = FALSE;
19673 /* Call msg_start() after eval1(), evaluating the expression
19674 * may cause a message to appear. */
19675 if (eap->cmdidx == CMD_echo)
19676 msg_start();
19678 else if (eap->cmdidx == CMD_echo)
19679 msg_puts_attr((char_u *)" ", echo_attr);
19680 p = echo_string(&rettv, &tofree, numbuf, ++current_copyID);
19681 if (p != NULL)
19682 for ( ; *p != NUL && !got_int; ++p)
19684 if (*p == '\n' || *p == '\r' || *p == TAB)
19686 if (*p != TAB && needclr)
19688 /* remove any text still there from the command */
19689 msg_clr_eos();
19690 needclr = FALSE;
19692 msg_putchar_attr(*p, echo_attr);
19694 else
19696 #ifdef FEAT_MBYTE
19697 if (has_mbyte)
19699 int i = (*mb_ptr2len)(p);
19701 (void)msg_outtrans_len_attr(p, i, echo_attr);
19702 p += i - 1;
19704 else
19705 #endif
19706 (void)msg_outtrans_len_attr(p, 1, echo_attr);
19709 vim_free(tofree);
19711 clear_tv(&rettv);
19712 arg = skipwhite(arg);
19714 eap->nextcmd = check_nextcmd(arg);
19716 if (eap->skip)
19717 --emsg_skip;
19718 else
19720 /* remove text that may still be there from the command */
19721 if (needclr)
19722 msg_clr_eos();
19723 if (eap->cmdidx == CMD_echo)
19724 msg_end();
19729 * ":echohl {name}".
19731 void
19732 ex_echohl(eap)
19733 exarg_T *eap;
19735 int id;
19737 id = syn_name2id(eap->arg);
19738 if (id == 0)
19739 echo_attr = 0;
19740 else
19741 echo_attr = syn_id2attr(id);
19745 * ":execute expr1 ..." execute the result of an expression.
19746 * ":echomsg expr1 ..." Print a message
19747 * ":echoerr expr1 ..." Print an error
19748 * Each gets spaces around each argument and a newline at the end for
19749 * echo commands
19751 void
19752 ex_execute(eap)
19753 exarg_T *eap;
19755 char_u *arg = eap->arg;
19756 typval_T rettv;
19757 int ret = OK;
19758 char_u *p;
19759 garray_T ga;
19760 int len;
19761 int save_did_emsg;
19763 ga_init2(&ga, 1, 80);
19765 if (eap->skip)
19766 ++emsg_skip;
19767 while (*arg != NUL && *arg != '|' && *arg != '\n')
19769 p = arg;
19770 if (eval1(&arg, &rettv, !eap->skip) == FAIL)
19773 * Report the invalid expression unless the expression evaluation
19774 * has been cancelled due to an aborting error, an interrupt, or an
19775 * exception.
19777 if (!aborting())
19778 EMSG2(_(e_invexpr2), p);
19779 ret = FAIL;
19780 break;
19783 if (!eap->skip)
19785 p = get_tv_string(&rettv);
19786 len = (int)STRLEN(p);
19787 if (ga_grow(&ga, len + 2) == FAIL)
19789 clear_tv(&rettv);
19790 ret = FAIL;
19791 break;
19793 if (ga.ga_len)
19794 ((char_u *)(ga.ga_data))[ga.ga_len++] = ' ';
19795 STRCPY((char_u *)(ga.ga_data) + ga.ga_len, p);
19796 ga.ga_len += len;
19799 clear_tv(&rettv);
19800 arg = skipwhite(arg);
19803 if (ret != FAIL && ga.ga_data != NULL)
19805 if (eap->cmdidx == CMD_echomsg)
19807 MSG_ATTR(ga.ga_data, echo_attr);
19808 out_flush();
19810 else if (eap->cmdidx == CMD_echoerr)
19812 /* We don't want to abort following commands, restore did_emsg. */
19813 save_did_emsg = did_emsg;
19814 EMSG((char_u *)ga.ga_data);
19815 if (!force_abort)
19816 did_emsg = save_did_emsg;
19818 else if (eap->cmdidx == CMD_execute)
19819 do_cmdline((char_u *)ga.ga_data,
19820 eap->getline, eap->cookie, DOCMD_NOWAIT|DOCMD_VERBOSE);
19823 ga_clear(&ga);
19825 if (eap->skip)
19826 --emsg_skip;
19828 eap->nextcmd = check_nextcmd(arg);
19832 * Skip over the name of an option: "&option", "&g:option" or "&l:option".
19833 * "arg" points to the "&" or '+' when called, to "option" when returning.
19834 * Returns NULL when no option name found. Otherwise pointer to the char
19835 * after the option name.
19837 static char_u *
19838 find_option_end(arg, opt_flags)
19839 char_u **arg;
19840 int *opt_flags;
19842 char_u *p = *arg;
19844 ++p;
19845 if (*p == 'g' && p[1] == ':')
19847 *opt_flags = OPT_GLOBAL;
19848 p += 2;
19850 else if (*p == 'l' && p[1] == ':')
19852 *opt_flags = OPT_LOCAL;
19853 p += 2;
19855 else
19856 *opt_flags = 0;
19858 if (!ASCII_ISALPHA(*p))
19859 return NULL;
19860 *arg = p;
19862 if (p[0] == 't' && p[1] == '_' && p[2] != NUL && p[3] != NUL)
19863 p += 4; /* termcap option */
19864 else
19865 while (ASCII_ISALPHA(*p))
19866 ++p;
19867 return p;
19871 * ":function"
19873 void
19874 ex_function(eap)
19875 exarg_T *eap;
19877 char_u *theline;
19878 int j;
19879 int c;
19880 int saved_did_emsg;
19881 char_u *name = NULL;
19882 char_u *p;
19883 char_u *arg;
19884 char_u *line_arg = NULL;
19885 garray_T newargs;
19886 garray_T newlines;
19887 int varargs = FALSE;
19888 int mustend = FALSE;
19889 int flags = 0;
19890 ufunc_T *fp;
19891 int indent;
19892 int nesting;
19893 char_u *skip_until = NULL;
19894 dictitem_T *v;
19895 funcdict_T fudi;
19896 static int func_nr = 0; /* number for nameless function */
19897 int paren;
19898 hashtab_T *ht;
19899 int todo;
19900 hashitem_T *hi;
19901 int sourcing_lnum_off;
19904 * ":function" without argument: list functions.
19906 if (ends_excmd(*eap->arg))
19908 if (!eap->skip)
19910 todo = (int)func_hashtab.ht_used;
19911 for (hi = func_hashtab.ht_array; todo > 0 && !got_int; ++hi)
19913 if (!HASHITEM_EMPTY(hi))
19915 --todo;
19916 fp = HI2UF(hi);
19917 if (!isdigit(*fp->uf_name))
19918 list_func_head(fp, FALSE);
19922 eap->nextcmd = check_nextcmd(eap->arg);
19923 return;
19927 * ":function /pat": list functions matching pattern.
19929 if (*eap->arg == '/')
19931 p = skip_regexp(eap->arg + 1, '/', TRUE, NULL);
19932 if (!eap->skip)
19934 regmatch_T regmatch;
19936 c = *p;
19937 *p = NUL;
19938 regmatch.regprog = vim_regcomp(eap->arg + 1, RE_MAGIC);
19939 *p = c;
19940 if (regmatch.regprog != NULL)
19942 regmatch.rm_ic = p_ic;
19944 todo = (int)func_hashtab.ht_used;
19945 for (hi = func_hashtab.ht_array; todo > 0 && !got_int; ++hi)
19947 if (!HASHITEM_EMPTY(hi))
19949 --todo;
19950 fp = HI2UF(hi);
19951 if (!isdigit(*fp->uf_name)
19952 && vim_regexec(&regmatch, fp->uf_name, 0))
19953 list_func_head(fp, FALSE);
19958 if (*p == '/')
19959 ++p;
19960 eap->nextcmd = check_nextcmd(p);
19961 return;
19965 * Get the function name. There are these situations:
19966 * func normal function name
19967 * "name" == func, "fudi.fd_dict" == NULL
19968 * dict.func new dictionary entry
19969 * "name" == NULL, "fudi.fd_dict" set,
19970 * "fudi.fd_di" == NULL, "fudi.fd_newkey" == func
19971 * dict.func existing dict entry with a Funcref
19972 * "name" == func, "fudi.fd_dict" set,
19973 * "fudi.fd_di" set, "fudi.fd_newkey" == NULL
19974 * dict.func existing dict entry that's not a Funcref
19975 * "name" == NULL, "fudi.fd_dict" set,
19976 * "fudi.fd_di" set, "fudi.fd_newkey" == NULL
19978 p = eap->arg;
19979 name = trans_function_name(&p, eap->skip, 0, &fudi);
19980 paren = (vim_strchr(p, '(') != NULL);
19981 if (name == NULL && (fudi.fd_dict == NULL || !paren) && !eap->skip)
19984 * Return on an invalid expression in braces, unless the expression
19985 * evaluation has been cancelled due to an aborting error, an
19986 * interrupt, or an exception.
19988 if (!aborting())
19990 if (!eap->skip && fudi.fd_newkey != NULL)
19991 EMSG2(_(e_dictkey), fudi.fd_newkey);
19992 vim_free(fudi.fd_newkey);
19993 return;
19995 else
19996 eap->skip = TRUE;
19999 /* An error in a function call during evaluation of an expression in magic
20000 * braces should not cause the function not to be defined. */
20001 saved_did_emsg = did_emsg;
20002 did_emsg = FALSE;
20005 * ":function func" with only function name: list function.
20007 if (!paren)
20009 if (!ends_excmd(*skipwhite(p)))
20011 EMSG(_(e_trailing));
20012 goto ret_free;
20014 eap->nextcmd = check_nextcmd(p);
20015 if (eap->nextcmd != NULL)
20016 *p = NUL;
20017 if (!eap->skip && !got_int)
20019 fp = find_func(name);
20020 if (fp != NULL)
20022 list_func_head(fp, TRUE);
20023 for (j = 0; j < fp->uf_lines.ga_len && !got_int; ++j)
20025 if (FUNCLINE(fp, j) == NULL)
20026 continue;
20027 msg_putchar('\n');
20028 msg_outnum((long)(j + 1));
20029 if (j < 9)
20030 msg_putchar(' ');
20031 if (j < 99)
20032 msg_putchar(' ');
20033 msg_prt_line(FUNCLINE(fp, j), FALSE);
20034 out_flush(); /* show a line at a time */
20035 ui_breakcheck();
20037 if (!got_int)
20039 msg_putchar('\n');
20040 msg_puts((char_u *)" endfunction");
20043 else
20044 emsg_funcname("E123: Undefined function: %s", name);
20046 goto ret_free;
20050 * ":function name(arg1, arg2)" Define function.
20052 p = skipwhite(p);
20053 if (*p != '(')
20055 if (!eap->skip)
20057 EMSG2(_("E124: Missing '(': %s"), eap->arg);
20058 goto ret_free;
20060 /* attempt to continue by skipping some text */
20061 if (vim_strchr(p, '(') != NULL)
20062 p = vim_strchr(p, '(');
20064 p = skipwhite(p + 1);
20066 ga_init2(&newargs, (int)sizeof(char_u *), 3);
20067 ga_init2(&newlines, (int)sizeof(char_u *), 3);
20069 if (!eap->skip)
20071 /* Check the name of the function. Unless it's a dictionary function
20072 * (that we are overwriting). */
20073 if (name != NULL)
20074 arg = name;
20075 else
20076 arg = fudi.fd_newkey;
20077 if (arg != NULL && (fudi.fd_di == NULL
20078 || fudi.fd_di->di_tv.v_type != VAR_FUNC))
20080 if (*arg == K_SPECIAL)
20081 j = 3;
20082 else
20083 j = 0;
20084 while (arg[j] != NUL && (j == 0 ? eval_isnamec1(arg[j])
20085 : eval_isnamec(arg[j])))
20086 ++j;
20087 if (arg[j] != NUL)
20088 emsg_funcname(_(e_invarg2), arg);
20093 * Isolate the arguments: "arg1, arg2, ...)"
20095 while (*p != ')')
20097 if (p[0] == '.' && p[1] == '.' && p[2] == '.')
20099 varargs = TRUE;
20100 p += 3;
20101 mustend = TRUE;
20103 else
20105 arg = p;
20106 while (ASCII_ISALNUM(*p) || *p == '_')
20107 ++p;
20108 if (arg == p || isdigit(*arg)
20109 || (p - arg == 9 && STRNCMP(arg, "firstline", 9) == 0)
20110 || (p - arg == 8 && STRNCMP(arg, "lastline", 8) == 0))
20112 if (!eap->skip)
20113 EMSG2(_("E125: Illegal argument: %s"), arg);
20114 break;
20116 if (ga_grow(&newargs, 1) == FAIL)
20117 goto erret;
20118 c = *p;
20119 *p = NUL;
20120 arg = vim_strsave(arg);
20121 if (arg == NULL)
20122 goto erret;
20123 ((char_u **)(newargs.ga_data))[newargs.ga_len] = arg;
20124 *p = c;
20125 newargs.ga_len++;
20126 if (*p == ',')
20127 ++p;
20128 else
20129 mustend = TRUE;
20131 p = skipwhite(p);
20132 if (mustend && *p != ')')
20134 if (!eap->skip)
20135 EMSG2(_(e_invarg2), eap->arg);
20136 break;
20139 ++p; /* skip the ')' */
20141 /* find extra arguments "range", "dict" and "abort" */
20142 for (;;)
20144 p = skipwhite(p);
20145 if (STRNCMP(p, "range", 5) == 0)
20147 flags |= FC_RANGE;
20148 p += 5;
20150 else if (STRNCMP(p, "dict", 4) == 0)
20152 flags |= FC_DICT;
20153 p += 4;
20155 else if (STRNCMP(p, "abort", 5) == 0)
20157 flags |= FC_ABORT;
20158 p += 5;
20160 else
20161 break;
20164 /* When there is a line break use what follows for the function body.
20165 * Makes 'exe "func Test()\n...\nendfunc"' work. */
20166 if (*p == '\n')
20167 line_arg = p + 1;
20168 else if (*p != NUL && *p != '"' && !eap->skip && !did_emsg)
20169 EMSG(_(e_trailing));
20172 * Read the body of the function, until ":endfunction" is found.
20174 if (KeyTyped)
20176 /* Check if the function already exists, don't let the user type the
20177 * whole function before telling him it doesn't work! For a script we
20178 * need to skip the body to be able to find what follows. */
20179 if (!eap->skip && !eap->forceit)
20181 if (fudi.fd_dict != NULL && fudi.fd_newkey == NULL)
20182 EMSG(_(e_funcdict));
20183 else if (name != NULL && find_func(name) != NULL)
20184 emsg_funcname(e_funcexts, name);
20187 if (!eap->skip && did_emsg)
20188 goto erret;
20190 msg_putchar('\n'); /* don't overwrite the function name */
20191 cmdline_row = msg_row;
20194 indent = 2;
20195 nesting = 0;
20196 for (;;)
20198 msg_scroll = TRUE;
20199 need_wait_return = FALSE;
20200 sourcing_lnum_off = sourcing_lnum;
20202 if (line_arg != NULL)
20204 /* Use eap->arg, split up in parts by line breaks. */
20205 theline = line_arg;
20206 p = vim_strchr(theline, '\n');
20207 if (p == NULL)
20208 line_arg += STRLEN(line_arg);
20209 else
20211 *p = NUL;
20212 line_arg = p + 1;
20215 else if (eap->getline == NULL)
20216 theline = getcmdline(':', 0L, indent);
20217 else
20218 theline = eap->getline(':', eap->cookie, indent);
20219 if (KeyTyped)
20220 lines_left = Rows - 1;
20221 if (theline == NULL)
20223 EMSG(_("E126: Missing :endfunction"));
20224 goto erret;
20227 /* Detect line continuation: sourcing_lnum increased more than one. */
20228 if (sourcing_lnum > sourcing_lnum_off + 1)
20229 sourcing_lnum_off = sourcing_lnum - sourcing_lnum_off - 1;
20230 else
20231 sourcing_lnum_off = 0;
20233 if (skip_until != NULL)
20235 /* between ":append" and "." and between ":python <<EOF" and "EOF"
20236 * don't check for ":endfunc". */
20237 if (STRCMP(theline, skip_until) == 0)
20239 vim_free(skip_until);
20240 skip_until = NULL;
20243 else
20245 /* skip ':' and blanks*/
20246 for (p = theline; vim_iswhite(*p) || *p == ':'; ++p)
20249 /* Check for "endfunction". */
20250 if (checkforcmd(&p, "endfunction", 4) && nesting-- == 0)
20252 if (line_arg == NULL)
20253 vim_free(theline);
20254 break;
20257 /* Increase indent inside "if", "while", "for" and "try", decrease
20258 * at "end". */
20259 if (indent > 2 && STRNCMP(p, "end", 3) == 0)
20260 indent -= 2;
20261 else if (STRNCMP(p, "if", 2) == 0
20262 || STRNCMP(p, "wh", 2) == 0
20263 || STRNCMP(p, "for", 3) == 0
20264 || STRNCMP(p, "try", 3) == 0)
20265 indent += 2;
20267 /* Check for defining a function inside this function. */
20268 if (checkforcmd(&p, "function", 2))
20270 if (*p == '!')
20271 p = skipwhite(p + 1);
20272 p += eval_fname_script(p);
20273 if (ASCII_ISALPHA(*p))
20275 vim_free(trans_function_name(&p, TRUE, 0, NULL));
20276 if (*skipwhite(p) == '(')
20278 ++nesting;
20279 indent += 2;
20284 /* Check for ":append" or ":insert". */
20285 p = skip_range(p, NULL);
20286 if ((p[0] == 'a' && (!ASCII_ISALPHA(p[1]) || p[1] == 'p'))
20287 || (p[0] == 'i'
20288 && (!ASCII_ISALPHA(p[1]) || (p[1] == 'n'
20289 && (!ASCII_ISALPHA(p[2]) || (p[2] == 's'))))))
20290 skip_until = vim_strsave((char_u *)".");
20292 /* Check for ":python <<EOF", ":tcl <<EOF", etc. */
20293 arg = skipwhite(skiptowhite(p));
20294 if (arg[0] == '<' && arg[1] =='<'
20295 && ((p[0] == 'p' && p[1] == 'y'
20296 && (!ASCII_ISALPHA(p[2]) || p[2] == 't'))
20297 || (p[0] == 'p' && p[1] == 'e'
20298 && (!ASCII_ISALPHA(p[2]) || p[2] == 'r'))
20299 || (p[0] == 't' && p[1] == 'c'
20300 && (!ASCII_ISALPHA(p[2]) || p[2] == 'l'))
20301 || (p[0] == 'r' && p[1] == 'u' && p[2] == 'b'
20302 && (!ASCII_ISALPHA(p[3]) || p[3] == 'y'))
20303 || (p[0] == 'm' && p[1] == 'z'
20304 && (!ASCII_ISALPHA(p[2]) || p[2] == 's'))
20307 /* ":python <<" continues until a dot, like ":append" */
20308 p = skipwhite(arg + 2);
20309 if (*p == NUL)
20310 skip_until = vim_strsave((char_u *)".");
20311 else
20312 skip_until = vim_strsave(p);
20316 /* Add the line to the function. */
20317 if (ga_grow(&newlines, 1 + sourcing_lnum_off) == FAIL)
20319 if (line_arg == NULL)
20320 vim_free(theline);
20321 goto erret;
20324 /* Copy the line to newly allocated memory. get_one_sourceline()
20325 * allocates 250 bytes per line, this saves 80% on average. The cost
20326 * is an extra alloc/free. */
20327 p = vim_strsave(theline);
20328 if (p != NULL)
20330 if (line_arg == NULL)
20331 vim_free(theline);
20332 theline = p;
20335 ((char_u **)(newlines.ga_data))[newlines.ga_len++] = theline;
20337 /* Add NULL lines for continuation lines, so that the line count is
20338 * equal to the index in the growarray. */
20339 while (sourcing_lnum_off-- > 0)
20340 ((char_u **)(newlines.ga_data))[newlines.ga_len++] = NULL;
20342 /* Check for end of eap->arg. */
20343 if (line_arg != NULL && *line_arg == NUL)
20344 line_arg = NULL;
20347 /* Don't define the function when skipping commands or when an error was
20348 * detected. */
20349 if (eap->skip || did_emsg)
20350 goto erret;
20353 * If there are no errors, add the function
20355 if (fudi.fd_dict == NULL)
20357 v = find_var(name, &ht);
20358 if (v != NULL && v->di_tv.v_type == VAR_FUNC)
20360 emsg_funcname("E707: Function name conflicts with variable: %s",
20361 name);
20362 goto erret;
20365 fp = find_func(name);
20366 if (fp != NULL)
20368 if (!eap->forceit)
20370 emsg_funcname(e_funcexts, name);
20371 goto erret;
20373 if (fp->uf_calls > 0)
20375 emsg_funcname("E127: Cannot redefine function %s: It is in use",
20376 name);
20377 goto erret;
20379 /* redefine existing function */
20380 ga_clear_strings(&(fp->uf_args));
20381 ga_clear_strings(&(fp->uf_lines));
20382 vim_free(name);
20383 name = NULL;
20386 else
20388 char numbuf[20];
20390 fp = NULL;
20391 if (fudi.fd_newkey == NULL && !eap->forceit)
20393 EMSG(_(e_funcdict));
20394 goto erret;
20396 if (fudi.fd_di == NULL)
20398 /* Can't add a function to a locked dictionary */
20399 if (tv_check_lock(fudi.fd_dict->dv_lock, eap->arg))
20400 goto erret;
20402 /* Can't change an existing function if it is locked */
20403 else if (tv_check_lock(fudi.fd_di->di_tv.v_lock, eap->arg))
20404 goto erret;
20406 /* Give the function a sequential number. Can only be used with a
20407 * Funcref! */
20408 vim_free(name);
20409 sprintf(numbuf, "%d", ++func_nr);
20410 name = vim_strsave((char_u *)numbuf);
20411 if (name == NULL)
20412 goto erret;
20415 if (fp == NULL)
20417 if (fudi.fd_dict == NULL && vim_strchr(name, AUTOLOAD_CHAR) != NULL)
20419 int slen, plen;
20420 char_u *scriptname;
20422 /* Check that the autoload name matches the script name. */
20423 j = FAIL;
20424 if (sourcing_name != NULL)
20426 scriptname = autoload_name(name);
20427 if (scriptname != NULL)
20429 p = vim_strchr(scriptname, '/');
20430 plen = (int)STRLEN(p);
20431 slen = (int)STRLEN(sourcing_name);
20432 if (slen > plen && fnamecmp(p,
20433 sourcing_name + slen - plen) == 0)
20434 j = OK;
20435 vim_free(scriptname);
20438 if (j == FAIL)
20440 EMSG2(_("E746: Function name does not match script file name: %s"), name);
20441 goto erret;
20445 fp = (ufunc_T *)alloc((unsigned)(sizeof(ufunc_T) + STRLEN(name)));
20446 if (fp == NULL)
20447 goto erret;
20449 if (fudi.fd_dict != NULL)
20451 if (fudi.fd_di == NULL)
20453 /* add new dict entry */
20454 fudi.fd_di = dictitem_alloc(fudi.fd_newkey);
20455 if (fudi.fd_di == NULL)
20457 vim_free(fp);
20458 goto erret;
20460 if (dict_add(fudi.fd_dict, fudi.fd_di) == FAIL)
20462 vim_free(fudi.fd_di);
20463 vim_free(fp);
20464 goto erret;
20467 else
20468 /* overwrite existing dict entry */
20469 clear_tv(&fudi.fd_di->di_tv);
20470 fudi.fd_di->di_tv.v_type = VAR_FUNC;
20471 fudi.fd_di->di_tv.v_lock = 0;
20472 fudi.fd_di->di_tv.vval.v_string = vim_strsave(name);
20473 fp->uf_refcount = 1;
20475 /* behave like "dict" was used */
20476 flags |= FC_DICT;
20479 /* insert the new function in the function list */
20480 STRCPY(fp->uf_name, name);
20481 hash_add(&func_hashtab, UF2HIKEY(fp));
20483 fp->uf_args = newargs;
20484 fp->uf_lines = newlines;
20485 #ifdef FEAT_PROFILE
20486 fp->uf_tml_count = NULL;
20487 fp->uf_tml_total = NULL;
20488 fp->uf_tml_self = NULL;
20489 fp->uf_profiling = FALSE;
20490 if (prof_def_func())
20491 func_do_profile(fp);
20492 #endif
20493 fp->uf_varargs = varargs;
20494 fp->uf_flags = flags;
20495 fp->uf_calls = 0;
20496 fp->uf_script_ID = current_SID;
20497 goto ret_free;
20499 erret:
20500 ga_clear_strings(&newargs);
20501 ga_clear_strings(&newlines);
20502 ret_free:
20503 vim_free(skip_until);
20504 vim_free(fudi.fd_newkey);
20505 vim_free(name);
20506 did_emsg |= saved_did_emsg;
20510 * Get a function name, translating "<SID>" and "<SNR>".
20511 * Also handles a Funcref in a List or Dictionary.
20512 * Returns the function name in allocated memory, or NULL for failure.
20513 * flags:
20514 * TFN_INT: internal function name OK
20515 * TFN_QUIET: be quiet
20516 * Advances "pp" to just after the function name (if no error).
20518 static char_u *
20519 trans_function_name(pp, skip, flags, fdp)
20520 char_u **pp;
20521 int skip; /* only find the end, don't evaluate */
20522 int flags;
20523 funcdict_T *fdp; /* return: info about dictionary used */
20525 char_u *name = NULL;
20526 char_u *start;
20527 char_u *end;
20528 int lead;
20529 char_u sid_buf[20];
20530 int len;
20531 lval_T lv;
20533 if (fdp != NULL)
20534 vim_memset(fdp, 0, sizeof(funcdict_T));
20535 start = *pp;
20537 /* Check for hard coded <SNR>: already translated function ID (from a user
20538 * command). */
20539 if ((*pp)[0] == K_SPECIAL && (*pp)[1] == KS_EXTRA
20540 && (*pp)[2] == (int)KE_SNR)
20542 *pp += 3;
20543 len = get_id_len(pp) + 3;
20544 return vim_strnsave(start, len);
20547 /* A name starting with "<SID>" or "<SNR>" is local to a script. But
20548 * don't skip over "s:", get_lval() needs it for "s:dict.func". */
20549 lead = eval_fname_script(start);
20550 if (lead > 2)
20551 start += lead;
20553 end = get_lval(start, NULL, &lv, FALSE, skip, flags & TFN_QUIET,
20554 lead > 2 ? 0 : FNE_CHECK_START);
20555 if (end == start)
20557 if (!skip)
20558 EMSG(_("E129: Function name required"));
20559 goto theend;
20561 if (end == NULL || (lv.ll_tv != NULL && (lead > 2 || lv.ll_range)))
20564 * Report an invalid expression in braces, unless the expression
20565 * evaluation has been cancelled due to an aborting error, an
20566 * interrupt, or an exception.
20568 if (!aborting())
20570 if (end != NULL)
20571 EMSG2(_(e_invarg2), start);
20573 else
20574 *pp = find_name_end(start, NULL, NULL, FNE_INCL_BR);
20575 goto theend;
20578 if (lv.ll_tv != NULL)
20580 if (fdp != NULL)
20582 fdp->fd_dict = lv.ll_dict;
20583 fdp->fd_newkey = lv.ll_newkey;
20584 lv.ll_newkey = NULL;
20585 fdp->fd_di = lv.ll_di;
20587 if (lv.ll_tv->v_type == VAR_FUNC && lv.ll_tv->vval.v_string != NULL)
20589 name = vim_strsave(lv.ll_tv->vval.v_string);
20590 *pp = end;
20592 else
20594 if (!skip && !(flags & TFN_QUIET) && (fdp == NULL
20595 || lv.ll_dict == NULL || fdp->fd_newkey == NULL))
20596 EMSG(_(e_funcref));
20597 else
20598 *pp = end;
20599 name = NULL;
20601 goto theend;
20604 if (lv.ll_name == NULL)
20606 /* Error found, but continue after the function name. */
20607 *pp = end;
20608 goto theend;
20611 /* Check if the name is a Funcref. If so, use the value. */
20612 if (lv.ll_exp_name != NULL)
20614 len = (int)STRLEN(lv.ll_exp_name);
20615 name = deref_func_name(lv.ll_exp_name, &len);
20616 if (name == lv.ll_exp_name)
20617 name = NULL;
20619 else
20621 len = (int)(end - *pp);
20622 name = deref_func_name(*pp, &len);
20623 if (name == *pp)
20624 name = NULL;
20626 if (name != NULL)
20628 name = vim_strsave(name);
20629 *pp = end;
20630 goto theend;
20633 if (lv.ll_exp_name != NULL)
20635 len = (int)STRLEN(lv.ll_exp_name);
20636 if (lead <= 2 && lv.ll_name == lv.ll_exp_name
20637 && STRNCMP(lv.ll_name, "s:", 2) == 0)
20639 /* When there was "s:" already or the name expanded to get a
20640 * leading "s:" then remove it. */
20641 lv.ll_name += 2;
20642 len -= 2;
20643 lead = 2;
20646 else
20648 if (lead == 2) /* skip over "s:" */
20649 lv.ll_name += 2;
20650 len = (int)(end - lv.ll_name);
20654 * Copy the function name to allocated memory.
20655 * Accept <SID>name() inside a script, translate into <SNR>123_name().
20656 * Accept <SNR>123_name() outside a script.
20658 if (skip)
20659 lead = 0; /* do nothing */
20660 else if (lead > 0)
20662 lead = 3;
20663 if ((lv.ll_exp_name != NULL && eval_fname_sid(lv.ll_exp_name))
20664 || eval_fname_sid(*pp))
20666 /* It's "s:" or "<SID>" */
20667 if (current_SID <= 0)
20669 EMSG(_(e_usingsid));
20670 goto theend;
20672 sprintf((char *)sid_buf, "%ld_", (long)current_SID);
20673 lead += (int)STRLEN(sid_buf);
20676 else if (!(flags & TFN_INT) && builtin_function(lv.ll_name))
20678 EMSG2(_("E128: Function name must start with a capital or contain a colon: %s"), lv.ll_name);
20679 goto theend;
20681 name = alloc((unsigned)(len + lead + 1));
20682 if (name != NULL)
20684 if (lead > 0)
20686 name[0] = K_SPECIAL;
20687 name[1] = KS_EXTRA;
20688 name[2] = (int)KE_SNR;
20689 if (lead > 3) /* If it's "<SID>" */
20690 STRCPY(name + 3, sid_buf);
20692 mch_memmove(name + lead, lv.ll_name, (size_t)len);
20693 name[len + lead] = NUL;
20695 *pp = end;
20697 theend:
20698 clear_lval(&lv);
20699 return name;
20703 * Return 5 if "p" starts with "<SID>" or "<SNR>" (ignoring case).
20704 * Return 2 if "p" starts with "s:".
20705 * Return 0 otherwise.
20707 static int
20708 eval_fname_script(p)
20709 char_u *p;
20711 if (p[0] == '<' && (STRNICMP(p + 1, "SID>", 4) == 0
20712 || STRNICMP(p + 1, "SNR>", 4) == 0))
20713 return 5;
20714 if (p[0] == 's' && p[1] == ':')
20715 return 2;
20716 return 0;
20720 * Return TRUE if "p" starts with "<SID>" or "s:".
20721 * Only works if eval_fname_script() returned non-zero for "p"!
20723 static int
20724 eval_fname_sid(p)
20725 char_u *p;
20727 return (*p == 's' || TOUPPER_ASC(p[2]) == 'I');
20731 * List the head of the function: "name(arg1, arg2)".
20733 static void
20734 list_func_head(fp, indent)
20735 ufunc_T *fp;
20736 int indent;
20738 int j;
20740 msg_start();
20741 if (indent)
20742 MSG_PUTS(" ");
20743 MSG_PUTS("function ");
20744 if (fp->uf_name[0] == K_SPECIAL)
20746 MSG_PUTS_ATTR("<SNR>", hl_attr(HLF_8));
20747 msg_puts(fp->uf_name + 3);
20749 else
20750 msg_puts(fp->uf_name);
20751 msg_putchar('(');
20752 for (j = 0; j < fp->uf_args.ga_len; ++j)
20754 if (j)
20755 MSG_PUTS(", ");
20756 msg_puts(FUNCARG(fp, j));
20758 if (fp->uf_varargs)
20760 if (j)
20761 MSG_PUTS(", ");
20762 MSG_PUTS("...");
20764 msg_putchar(')');
20765 msg_clr_eos();
20766 if (p_verbose > 0)
20767 last_set_msg(fp->uf_script_ID);
20771 * Find a function by name, return pointer to it in ufuncs.
20772 * Return NULL for unknown function.
20774 static ufunc_T *
20775 find_func(name)
20776 char_u *name;
20778 hashitem_T *hi;
20780 hi = hash_find(&func_hashtab, name);
20781 if (!HASHITEM_EMPTY(hi))
20782 return HI2UF(hi);
20783 return NULL;
20786 #if defined(EXITFREE) || defined(PROTO)
20787 void
20788 free_all_functions()
20790 hashitem_T *hi;
20792 /* Need to start all over every time, because func_free() may change the
20793 * hash table. */
20794 while (func_hashtab.ht_used > 0)
20795 for (hi = func_hashtab.ht_array; ; ++hi)
20796 if (!HASHITEM_EMPTY(hi))
20798 func_free(HI2UF(hi));
20799 break;
20802 #endif
20805 * Return TRUE if a function "name" exists.
20807 static int
20808 function_exists(name)
20809 char_u *name;
20811 char_u *nm = name;
20812 char_u *p;
20813 int n = FALSE;
20815 p = trans_function_name(&nm, FALSE, TFN_INT|TFN_QUIET, NULL);
20816 nm = skipwhite(nm);
20818 /* Only accept "funcname", "funcname ", "funcname (..." and
20819 * "funcname(...", not "funcname!...". */
20820 if (p != NULL && (*nm == NUL || *nm == '('))
20822 if (builtin_function(p))
20823 n = (find_internal_func(p) >= 0);
20824 else
20825 n = (find_func(p) != NULL);
20827 vim_free(p);
20828 return n;
20832 * Return TRUE if "name" looks like a builtin function name: starts with a
20833 * lower case letter and doesn't contain a ':' or AUTOLOAD_CHAR.
20835 static int
20836 builtin_function(name)
20837 char_u *name;
20839 return ASCII_ISLOWER(name[0]) && vim_strchr(name, ':') == NULL
20840 && vim_strchr(name, AUTOLOAD_CHAR) == NULL;
20843 #if defined(FEAT_PROFILE) || defined(PROTO)
20845 * Start profiling function "fp".
20847 static void
20848 func_do_profile(fp)
20849 ufunc_T *fp;
20851 fp->uf_tm_count = 0;
20852 profile_zero(&fp->uf_tm_self);
20853 profile_zero(&fp->uf_tm_total);
20854 if (fp->uf_tml_count == NULL)
20855 fp->uf_tml_count = (int *)alloc_clear((unsigned)
20856 (sizeof(int) * fp->uf_lines.ga_len));
20857 if (fp->uf_tml_total == NULL)
20858 fp->uf_tml_total = (proftime_T *)alloc_clear((unsigned)
20859 (sizeof(proftime_T) * fp->uf_lines.ga_len));
20860 if (fp->uf_tml_self == NULL)
20861 fp->uf_tml_self = (proftime_T *)alloc_clear((unsigned)
20862 (sizeof(proftime_T) * fp->uf_lines.ga_len));
20863 fp->uf_tml_idx = -1;
20864 if (fp->uf_tml_count == NULL || fp->uf_tml_total == NULL
20865 || fp->uf_tml_self == NULL)
20866 return; /* out of memory */
20868 fp->uf_profiling = TRUE;
20872 * Dump the profiling results for all functions in file "fd".
20874 void
20875 func_dump_profile(fd)
20876 FILE *fd;
20878 hashitem_T *hi;
20879 int todo;
20880 ufunc_T *fp;
20881 int i;
20882 ufunc_T **sorttab;
20883 int st_len = 0;
20885 todo = (int)func_hashtab.ht_used;
20886 if (todo == 0)
20887 return; /* nothing to dump */
20889 sorttab = (ufunc_T **)alloc((unsigned)(sizeof(ufunc_T) * todo));
20891 for (hi = func_hashtab.ht_array; todo > 0; ++hi)
20893 if (!HASHITEM_EMPTY(hi))
20895 --todo;
20896 fp = HI2UF(hi);
20897 if (fp->uf_profiling)
20899 if (sorttab != NULL)
20900 sorttab[st_len++] = fp;
20902 if (fp->uf_name[0] == K_SPECIAL)
20903 fprintf(fd, "FUNCTION <SNR>%s()\n", fp->uf_name + 3);
20904 else
20905 fprintf(fd, "FUNCTION %s()\n", fp->uf_name);
20906 if (fp->uf_tm_count == 1)
20907 fprintf(fd, "Called 1 time\n");
20908 else
20909 fprintf(fd, "Called %d times\n", fp->uf_tm_count);
20910 fprintf(fd, "Total time: %s\n", profile_msg(&fp->uf_tm_total));
20911 fprintf(fd, " Self time: %s\n", profile_msg(&fp->uf_tm_self));
20912 fprintf(fd, "\n");
20913 fprintf(fd, "count total (s) self (s)\n");
20915 for (i = 0; i < fp->uf_lines.ga_len; ++i)
20917 if (FUNCLINE(fp, i) == NULL)
20918 continue;
20919 prof_func_line(fd, fp->uf_tml_count[i],
20920 &fp->uf_tml_total[i], &fp->uf_tml_self[i], TRUE);
20921 fprintf(fd, "%s\n", FUNCLINE(fp, i));
20923 fprintf(fd, "\n");
20928 if (sorttab != NULL && st_len > 0)
20930 qsort((void *)sorttab, (size_t)st_len, sizeof(ufunc_T *),
20931 prof_total_cmp);
20932 prof_sort_list(fd, sorttab, st_len, "TOTAL", FALSE);
20933 qsort((void *)sorttab, (size_t)st_len, sizeof(ufunc_T *),
20934 prof_self_cmp);
20935 prof_sort_list(fd, sorttab, st_len, "SELF", TRUE);
20938 vim_free(sorttab);
20941 static void
20942 prof_sort_list(fd, sorttab, st_len, title, prefer_self)
20943 FILE *fd;
20944 ufunc_T **sorttab;
20945 int st_len;
20946 char *title;
20947 int prefer_self; /* when equal print only self time */
20949 int i;
20950 ufunc_T *fp;
20952 fprintf(fd, "FUNCTIONS SORTED ON %s TIME\n", title);
20953 fprintf(fd, "count total (s) self (s) function\n");
20954 for (i = 0; i < 20 && i < st_len; ++i)
20956 fp = sorttab[i];
20957 prof_func_line(fd, fp->uf_tm_count, &fp->uf_tm_total, &fp->uf_tm_self,
20958 prefer_self);
20959 if (fp->uf_name[0] == K_SPECIAL)
20960 fprintf(fd, " <SNR>%s()\n", fp->uf_name + 3);
20961 else
20962 fprintf(fd, " %s()\n", fp->uf_name);
20964 fprintf(fd, "\n");
20968 * Print the count and times for one function or function line.
20970 static void
20971 prof_func_line(fd, count, total, self, prefer_self)
20972 FILE *fd;
20973 int count;
20974 proftime_T *total;
20975 proftime_T *self;
20976 int prefer_self; /* when equal print only self time */
20978 if (count > 0)
20980 fprintf(fd, "%5d ", count);
20981 if (prefer_self && profile_equal(total, self))
20982 fprintf(fd, " ");
20983 else
20984 fprintf(fd, "%s ", profile_msg(total));
20985 if (!prefer_self && profile_equal(total, self))
20986 fprintf(fd, " ");
20987 else
20988 fprintf(fd, "%s ", profile_msg(self));
20990 else
20991 fprintf(fd, " ");
20995 * Compare function for total time sorting.
20997 static int
20998 #ifdef __BORLANDC__
20999 _RTLENTRYF
21000 #endif
21001 prof_total_cmp(s1, s2)
21002 const void *s1;
21003 const void *s2;
21005 ufunc_T *p1, *p2;
21007 p1 = *(ufunc_T **)s1;
21008 p2 = *(ufunc_T **)s2;
21009 return profile_cmp(&p1->uf_tm_total, &p2->uf_tm_total);
21013 * Compare function for self time sorting.
21015 static int
21016 #ifdef __BORLANDC__
21017 _RTLENTRYF
21018 #endif
21019 prof_self_cmp(s1, s2)
21020 const void *s1;
21021 const void *s2;
21023 ufunc_T *p1, *p2;
21025 p1 = *(ufunc_T **)s1;
21026 p2 = *(ufunc_T **)s2;
21027 return profile_cmp(&p1->uf_tm_self, &p2->uf_tm_self);
21030 #endif
21033 * If "name" has a package name try autoloading the script for it.
21034 * Return TRUE if a package was loaded.
21036 static int
21037 script_autoload(name, reload)
21038 char_u *name;
21039 int reload; /* load script again when already loaded */
21041 char_u *p;
21042 char_u *scriptname, *tofree;
21043 int ret = FALSE;
21044 int i;
21046 /* If there is no '#' after name[0] there is no package name. */
21047 p = vim_strchr(name, AUTOLOAD_CHAR);
21048 if (p == NULL || p == name)
21049 return FALSE;
21051 tofree = scriptname = autoload_name(name);
21053 /* Find the name in the list of previously loaded package names. Skip
21054 * "autoload/", it's always the same. */
21055 for (i = 0; i < ga_loaded.ga_len; ++i)
21056 if (STRCMP(((char_u **)ga_loaded.ga_data)[i] + 9, scriptname + 9) == 0)
21057 break;
21058 if (!reload && i < ga_loaded.ga_len)
21059 ret = FALSE; /* was loaded already */
21060 else
21062 /* Remember the name if it wasn't loaded already. */
21063 if (i == ga_loaded.ga_len && ga_grow(&ga_loaded, 1) == OK)
21065 ((char_u **)ga_loaded.ga_data)[ga_loaded.ga_len++] = scriptname;
21066 tofree = NULL;
21069 /* Try loading the package from $VIMRUNTIME/autoload/<name>.vim */
21070 if (source_runtime(scriptname, FALSE) == OK)
21071 ret = TRUE;
21074 vim_free(tofree);
21075 return ret;
21079 * Return the autoload script name for a function or variable name.
21080 * Returns NULL when out of memory.
21082 static char_u *
21083 autoload_name(name)
21084 char_u *name;
21086 char_u *p;
21087 char_u *scriptname;
21089 /* Get the script file name: replace '#' with '/', append ".vim". */
21090 scriptname = alloc((unsigned)(STRLEN(name) + 14));
21091 if (scriptname == NULL)
21092 return FALSE;
21093 STRCPY(scriptname, "autoload/");
21094 STRCAT(scriptname, name);
21095 *vim_strrchr(scriptname, AUTOLOAD_CHAR) = NUL;
21096 STRCAT(scriptname, ".vim");
21097 while ((p = vim_strchr(scriptname, AUTOLOAD_CHAR)) != NULL)
21098 *p = '/';
21099 return scriptname;
21102 #if defined(FEAT_CMDL_COMPL) || defined(PROTO)
21105 * Function given to ExpandGeneric() to obtain the list of user defined
21106 * function names.
21108 char_u *
21109 get_user_func_name(xp, idx)
21110 expand_T *xp;
21111 int idx;
21113 static long_u done;
21114 static hashitem_T *hi;
21115 ufunc_T *fp;
21117 if (idx == 0)
21119 done = 0;
21120 hi = func_hashtab.ht_array;
21122 if (done < func_hashtab.ht_used)
21124 if (done++ > 0)
21125 ++hi;
21126 while (HASHITEM_EMPTY(hi))
21127 ++hi;
21128 fp = HI2UF(hi);
21130 if (STRLEN(fp->uf_name) + 4 >= IOSIZE)
21131 return fp->uf_name; /* prevents overflow */
21133 cat_func_name(IObuff, fp);
21134 if (xp->xp_context != EXPAND_USER_FUNC)
21136 STRCAT(IObuff, "(");
21137 if (!fp->uf_varargs && fp->uf_args.ga_len == 0)
21138 STRCAT(IObuff, ")");
21140 return IObuff;
21142 return NULL;
21145 #endif /* FEAT_CMDL_COMPL */
21148 * Copy the function name of "fp" to buffer "buf".
21149 * "buf" must be able to hold the function name plus three bytes.
21150 * Takes care of script-local function names.
21152 static void
21153 cat_func_name(buf, fp)
21154 char_u *buf;
21155 ufunc_T *fp;
21157 if (fp->uf_name[0] == K_SPECIAL)
21159 STRCPY(buf, "<SNR>");
21160 STRCAT(buf, fp->uf_name + 3);
21162 else
21163 STRCPY(buf, fp->uf_name);
21167 * ":delfunction {name}"
21169 void
21170 ex_delfunction(eap)
21171 exarg_T *eap;
21173 ufunc_T *fp = NULL;
21174 char_u *p;
21175 char_u *name;
21176 funcdict_T fudi;
21178 p = eap->arg;
21179 name = trans_function_name(&p, eap->skip, 0, &fudi);
21180 vim_free(fudi.fd_newkey);
21181 if (name == NULL)
21183 if (fudi.fd_dict != NULL && !eap->skip)
21184 EMSG(_(e_funcref));
21185 return;
21187 if (!ends_excmd(*skipwhite(p)))
21189 vim_free(name);
21190 EMSG(_(e_trailing));
21191 return;
21193 eap->nextcmd = check_nextcmd(p);
21194 if (eap->nextcmd != NULL)
21195 *p = NUL;
21197 if (!eap->skip)
21198 fp = find_func(name);
21199 vim_free(name);
21201 if (!eap->skip)
21203 if (fp == NULL)
21205 EMSG2(_(e_nofunc), eap->arg);
21206 return;
21208 if (fp->uf_calls > 0)
21210 EMSG2(_("E131: Cannot delete function %s: It is in use"), eap->arg);
21211 return;
21214 if (fudi.fd_dict != NULL)
21216 /* Delete the dict item that refers to the function, it will
21217 * invoke func_unref() and possibly delete the function. */
21218 dictitem_remove(fudi.fd_dict, fudi.fd_di);
21220 else
21221 func_free(fp);
21226 * Free a function and remove it from the list of functions.
21228 static void
21229 func_free(fp)
21230 ufunc_T *fp;
21232 hashitem_T *hi;
21234 /* clear this function */
21235 ga_clear_strings(&(fp->uf_args));
21236 ga_clear_strings(&(fp->uf_lines));
21237 #ifdef FEAT_PROFILE
21238 vim_free(fp->uf_tml_count);
21239 vim_free(fp->uf_tml_total);
21240 vim_free(fp->uf_tml_self);
21241 #endif
21243 /* remove the function from the function hashtable */
21244 hi = hash_find(&func_hashtab, UF2HIKEY(fp));
21245 if (HASHITEM_EMPTY(hi))
21246 EMSG2(_(e_intern2), "func_free()");
21247 else
21248 hash_remove(&func_hashtab, hi);
21250 vim_free(fp);
21254 * Unreference a Function: decrement the reference count and free it when it
21255 * becomes zero. Only for numbered functions.
21257 static void
21258 func_unref(name)
21259 char_u *name;
21261 ufunc_T *fp;
21263 if (name != NULL && isdigit(*name))
21265 fp = find_func(name);
21266 if (fp == NULL)
21267 EMSG2(_(e_intern2), "func_unref()");
21268 else if (--fp->uf_refcount <= 0)
21270 /* Only delete it when it's not being used. Otherwise it's done
21271 * when "uf_calls" becomes zero. */
21272 if (fp->uf_calls == 0)
21273 func_free(fp);
21279 * Count a reference to a Function.
21281 static void
21282 func_ref(name)
21283 char_u *name;
21285 ufunc_T *fp;
21287 if (name != NULL && isdigit(*name))
21289 fp = find_func(name);
21290 if (fp == NULL)
21291 EMSG2(_(e_intern2), "func_ref()");
21292 else
21293 ++fp->uf_refcount;
21298 * Call a user function.
21300 static void
21301 call_user_func(fp, argcount, argvars, rettv, firstline, lastline, selfdict)
21302 ufunc_T *fp; /* pointer to function */
21303 int argcount; /* nr of args */
21304 typval_T *argvars; /* arguments */
21305 typval_T *rettv; /* return value */
21306 linenr_T firstline; /* first line of range */
21307 linenr_T lastline; /* last line of range */
21308 dict_T *selfdict; /* Dictionary for "self" */
21310 char_u *save_sourcing_name;
21311 linenr_T save_sourcing_lnum;
21312 scid_T save_current_SID;
21313 funccall_T fc;
21314 int save_did_emsg;
21315 static int depth = 0;
21316 dictitem_T *v;
21317 int fixvar_idx = 0; /* index in fixvar[] */
21318 int i;
21319 int ai;
21320 char_u numbuf[NUMBUFLEN];
21321 char_u *name;
21322 #ifdef FEAT_PROFILE
21323 proftime_T wait_start;
21324 proftime_T call_start;
21325 #endif
21327 /* If depth of calling is getting too high, don't execute the function */
21328 if (depth >= p_mfd)
21330 EMSG(_("E132: Function call depth is higher than 'maxfuncdepth'"));
21331 rettv->v_type = VAR_NUMBER;
21332 rettv->vval.v_number = -1;
21333 return;
21335 ++depth;
21337 line_breakcheck(); /* check for CTRL-C hit */
21339 fc.caller = current_funccal;
21340 current_funccal = &fc;
21341 fc.func = fp;
21342 fc.rettv = rettv;
21343 rettv->vval.v_number = 0;
21344 fc.linenr = 0;
21345 fc.returned = FALSE;
21346 fc.level = ex_nesting_level;
21347 /* Check if this function has a breakpoint. */
21348 fc.breakpoint = dbg_find_breakpoint(FALSE, fp->uf_name, (linenr_T)0);
21349 fc.dbg_tick = debug_tick;
21352 * Note about using fc.fixvar[]: This is an array of FIXVAR_CNT variables
21353 * with names up to VAR_SHORT_LEN long. This avoids having to alloc/free
21354 * each argument variable and saves a lot of time.
21357 * Init l: variables.
21359 init_var_dict(&fc.l_vars, &fc.l_vars_var);
21360 if (selfdict != NULL)
21362 /* Set l:self to "selfdict". Use "name" to avoid a warning from
21363 * some compiler that checks the destination size. */
21364 v = &fc.fixvar[fixvar_idx++].var;
21365 name = v->di_key;
21366 STRCPY(name, "self");
21367 v->di_flags = DI_FLAGS_RO + DI_FLAGS_FIX;
21368 hash_add(&fc.l_vars.dv_hashtab, DI2HIKEY(v));
21369 v->di_tv.v_type = VAR_DICT;
21370 v->di_tv.v_lock = 0;
21371 v->di_tv.vval.v_dict = selfdict;
21372 ++selfdict->dv_refcount;
21376 * Init a: variables.
21377 * Set a:0 to "argcount".
21378 * Set a:000 to a list with room for the "..." arguments.
21380 init_var_dict(&fc.l_avars, &fc.l_avars_var);
21381 add_nr_var(&fc.l_avars, &fc.fixvar[fixvar_idx++].var, "0",
21382 (varnumber_T)(argcount - fp->uf_args.ga_len));
21383 /* Use "name" to avoid a warning from some compiler that checks the
21384 * destination size. */
21385 v = &fc.fixvar[fixvar_idx++].var;
21386 name = v->di_key;
21387 STRCPY(name, "000");
21388 v->di_flags = DI_FLAGS_RO | DI_FLAGS_FIX;
21389 hash_add(&fc.l_avars.dv_hashtab, DI2HIKEY(v));
21390 v->di_tv.v_type = VAR_LIST;
21391 v->di_tv.v_lock = VAR_FIXED;
21392 v->di_tv.vval.v_list = &fc.l_varlist;
21393 vim_memset(&fc.l_varlist, 0, sizeof(list_T));
21394 fc.l_varlist.lv_refcount = 99999;
21395 fc.l_varlist.lv_lock = VAR_FIXED;
21398 * Set a:firstline to "firstline" and a:lastline to "lastline".
21399 * Set a:name to named arguments.
21400 * Set a:N to the "..." arguments.
21402 add_nr_var(&fc.l_avars, &fc.fixvar[fixvar_idx++].var, "firstline",
21403 (varnumber_T)firstline);
21404 add_nr_var(&fc.l_avars, &fc.fixvar[fixvar_idx++].var, "lastline",
21405 (varnumber_T)lastline);
21406 for (i = 0; i < argcount; ++i)
21408 ai = i - fp->uf_args.ga_len;
21409 if (ai < 0)
21410 /* named argument a:name */
21411 name = FUNCARG(fp, i);
21412 else
21414 /* "..." argument a:1, a:2, etc. */
21415 sprintf((char *)numbuf, "%d", ai + 1);
21416 name = numbuf;
21418 if (fixvar_idx < FIXVAR_CNT && STRLEN(name) <= VAR_SHORT_LEN)
21420 v = &fc.fixvar[fixvar_idx++].var;
21421 v->di_flags = DI_FLAGS_RO | DI_FLAGS_FIX;
21423 else
21425 v = (dictitem_T *)alloc((unsigned)(sizeof(dictitem_T)
21426 + STRLEN(name)));
21427 if (v == NULL)
21428 break;
21429 v->di_flags = DI_FLAGS_RO;
21431 STRCPY(v->di_key, name);
21432 hash_add(&fc.l_avars.dv_hashtab, DI2HIKEY(v));
21434 /* Note: the values are copied directly to avoid alloc/free.
21435 * "argvars" must have VAR_FIXED for v_lock. */
21436 v->di_tv = argvars[i];
21437 v->di_tv.v_lock = VAR_FIXED;
21439 if (ai >= 0 && ai < MAX_FUNC_ARGS)
21441 list_append(&fc.l_varlist, &fc.l_listitems[ai]);
21442 fc.l_listitems[ai].li_tv = argvars[i];
21443 fc.l_listitems[ai].li_tv.v_lock = VAR_FIXED;
21447 /* Don't redraw while executing the function. */
21448 ++RedrawingDisabled;
21449 save_sourcing_name = sourcing_name;
21450 save_sourcing_lnum = sourcing_lnum;
21451 sourcing_lnum = 1;
21452 sourcing_name = alloc((unsigned)((save_sourcing_name == NULL ? 0
21453 : STRLEN(save_sourcing_name)) + STRLEN(fp->uf_name) + 13));
21454 if (sourcing_name != NULL)
21456 if (save_sourcing_name != NULL
21457 && STRNCMP(save_sourcing_name, "function ", 9) == 0)
21458 sprintf((char *)sourcing_name, "%s..", save_sourcing_name);
21459 else
21460 STRCPY(sourcing_name, "function ");
21461 cat_func_name(sourcing_name + STRLEN(sourcing_name), fp);
21463 if (p_verbose >= 12)
21465 ++no_wait_return;
21466 verbose_enter_scroll();
21468 smsg((char_u *)_("calling %s"), sourcing_name);
21469 if (p_verbose >= 14)
21471 char_u buf[MSG_BUF_LEN];
21472 char_u numbuf2[NUMBUFLEN];
21473 char_u *tofree;
21474 char_u *s;
21476 msg_puts((char_u *)"(");
21477 for (i = 0; i < argcount; ++i)
21479 if (i > 0)
21480 msg_puts((char_u *)", ");
21481 if (argvars[i].v_type == VAR_NUMBER)
21482 msg_outnum((long)argvars[i].vval.v_number);
21483 else
21485 s = tv2string(&argvars[i], &tofree, numbuf2, 0);
21486 if (s != NULL)
21488 trunc_string(s, buf, MSG_BUF_CLEN);
21489 msg_puts(buf);
21490 vim_free(tofree);
21494 msg_puts((char_u *)")");
21496 msg_puts((char_u *)"\n"); /* don't overwrite this either */
21498 verbose_leave_scroll();
21499 --no_wait_return;
21502 #ifdef FEAT_PROFILE
21503 if (do_profiling == PROF_YES)
21505 if (!fp->uf_profiling && has_profiling(FALSE, fp->uf_name, NULL))
21506 func_do_profile(fp);
21507 if (fp->uf_profiling
21508 || (fc.caller != NULL && fc.caller->func->uf_profiling))
21510 ++fp->uf_tm_count;
21511 profile_start(&call_start);
21512 profile_zero(&fp->uf_tm_children);
21514 script_prof_save(&wait_start);
21516 #endif
21518 save_current_SID = current_SID;
21519 current_SID = fp->uf_script_ID;
21520 save_did_emsg = did_emsg;
21521 did_emsg = FALSE;
21523 /* call do_cmdline() to execute the lines */
21524 do_cmdline(NULL, get_func_line, (void *)&fc,
21525 DOCMD_NOWAIT|DOCMD_VERBOSE|DOCMD_REPEAT);
21527 --RedrawingDisabled;
21529 /* when the function was aborted because of an error, return -1 */
21530 if ((did_emsg && (fp->uf_flags & FC_ABORT)) || rettv->v_type == VAR_UNKNOWN)
21532 clear_tv(rettv);
21533 rettv->v_type = VAR_NUMBER;
21534 rettv->vval.v_number = -1;
21537 #ifdef FEAT_PROFILE
21538 if (do_profiling == PROF_YES && (fp->uf_profiling
21539 || (fc.caller != NULL && fc.caller->func->uf_profiling)))
21541 profile_end(&call_start);
21542 profile_sub_wait(&wait_start, &call_start);
21543 profile_add(&fp->uf_tm_total, &call_start);
21544 profile_self(&fp->uf_tm_self, &call_start, &fp->uf_tm_children);
21545 if (fc.caller != NULL && fc.caller->func->uf_profiling)
21547 profile_add(&fc.caller->func->uf_tm_children, &call_start);
21548 profile_add(&fc.caller->func->uf_tml_children, &call_start);
21551 #endif
21553 /* when being verbose, mention the return value */
21554 if (p_verbose >= 12)
21556 ++no_wait_return;
21557 verbose_enter_scroll();
21559 if (aborting())
21560 smsg((char_u *)_("%s aborted"), sourcing_name);
21561 else if (fc.rettv->v_type == VAR_NUMBER)
21562 smsg((char_u *)_("%s returning #%ld"), sourcing_name,
21563 (long)fc.rettv->vval.v_number);
21564 else
21566 char_u buf[MSG_BUF_LEN];
21567 char_u numbuf2[NUMBUFLEN];
21568 char_u *tofree;
21569 char_u *s;
21571 /* The value may be very long. Skip the middle part, so that we
21572 * have some idea how it starts and ends. smsg() would always
21573 * truncate it at the end. */
21574 s = tv2string(fc.rettv, &tofree, numbuf2, 0);
21575 if (s != NULL)
21577 trunc_string(s, buf, MSG_BUF_CLEN);
21578 smsg((char_u *)_("%s returning %s"), sourcing_name, buf);
21579 vim_free(tofree);
21582 msg_puts((char_u *)"\n"); /* don't overwrite this either */
21584 verbose_leave_scroll();
21585 --no_wait_return;
21588 vim_free(sourcing_name);
21589 sourcing_name = save_sourcing_name;
21590 sourcing_lnum = save_sourcing_lnum;
21591 current_SID = save_current_SID;
21592 #ifdef FEAT_PROFILE
21593 if (do_profiling == PROF_YES)
21594 script_prof_restore(&wait_start);
21595 #endif
21597 if (p_verbose >= 12 && sourcing_name != NULL)
21599 ++no_wait_return;
21600 verbose_enter_scroll();
21602 smsg((char_u *)_("continuing in %s"), sourcing_name);
21603 msg_puts((char_u *)"\n"); /* don't overwrite this either */
21605 verbose_leave_scroll();
21606 --no_wait_return;
21609 did_emsg |= save_did_emsg;
21610 current_funccal = fc.caller;
21612 /* The a: variables typevals were not allocated, only free the allocated
21613 * variables. */
21614 vars_clear_ext(&fc.l_avars.dv_hashtab, FALSE);
21616 vars_clear(&fc.l_vars.dv_hashtab); /* free all l: variables */
21617 --depth;
21621 * Add a number variable "name" to dict "dp" with value "nr".
21623 static void
21624 add_nr_var(dp, v, name, nr)
21625 dict_T *dp;
21626 dictitem_T *v;
21627 char *name;
21628 varnumber_T nr;
21630 STRCPY(v->di_key, name);
21631 v->di_flags = DI_FLAGS_RO | DI_FLAGS_FIX;
21632 hash_add(&dp->dv_hashtab, DI2HIKEY(v));
21633 v->di_tv.v_type = VAR_NUMBER;
21634 v->di_tv.v_lock = VAR_FIXED;
21635 v->di_tv.vval.v_number = nr;
21639 * ":return [expr]"
21641 void
21642 ex_return(eap)
21643 exarg_T *eap;
21645 char_u *arg = eap->arg;
21646 typval_T rettv;
21647 int returning = FALSE;
21649 if (current_funccal == NULL)
21651 EMSG(_("E133: :return not inside a function"));
21652 return;
21655 if (eap->skip)
21656 ++emsg_skip;
21658 eap->nextcmd = NULL;
21659 if ((*arg != NUL && *arg != '|' && *arg != '\n')
21660 && eval0(arg, &rettv, &eap->nextcmd, !eap->skip) != FAIL)
21662 if (!eap->skip)
21663 returning = do_return(eap, FALSE, TRUE, &rettv);
21664 else
21665 clear_tv(&rettv);
21667 /* It's safer to return also on error. */
21668 else if (!eap->skip)
21671 * Return unless the expression evaluation has been cancelled due to an
21672 * aborting error, an interrupt, or an exception.
21674 if (!aborting())
21675 returning = do_return(eap, FALSE, TRUE, NULL);
21678 /* When skipping or the return gets pending, advance to the next command
21679 * in this line (!returning). Otherwise, ignore the rest of the line.
21680 * Following lines will be ignored by get_func_line(). */
21681 if (returning)
21682 eap->nextcmd = NULL;
21683 else if (eap->nextcmd == NULL) /* no argument */
21684 eap->nextcmd = check_nextcmd(arg);
21686 if (eap->skip)
21687 --emsg_skip;
21691 * Return from a function. Possibly makes the return pending. Also called
21692 * for a pending return at the ":endtry" or after returning from an extra
21693 * do_cmdline(). "reanimate" is used in the latter case. "is_cmd" is set
21694 * when called due to a ":return" command. "rettv" may point to a typval_T
21695 * with the return rettv. Returns TRUE when the return can be carried out,
21696 * FALSE when the return gets pending.
21699 do_return(eap, reanimate, is_cmd, rettv)
21700 exarg_T *eap;
21701 int reanimate;
21702 int is_cmd;
21703 void *rettv;
21705 int idx;
21706 struct condstack *cstack = eap->cstack;
21708 if (reanimate)
21709 /* Undo the return. */
21710 current_funccal->returned = FALSE;
21713 * Cleanup (and inactivate) conditionals, but stop when a try conditional
21714 * not in its finally clause (which then is to be executed next) is found.
21715 * In this case, make the ":return" pending for execution at the ":endtry".
21716 * Otherwise, return normally.
21718 idx = cleanup_conditionals(eap->cstack, 0, TRUE);
21719 if (idx >= 0)
21721 cstack->cs_pending[idx] = CSTP_RETURN;
21723 if (!is_cmd && !reanimate)
21724 /* A pending return again gets pending. "rettv" points to an
21725 * allocated variable with the rettv of the original ":return"'s
21726 * argument if present or is NULL else. */
21727 cstack->cs_rettv[idx] = rettv;
21728 else
21730 /* When undoing a return in order to make it pending, get the stored
21731 * return rettv. */
21732 if (reanimate)
21733 rettv = current_funccal->rettv;
21735 if (rettv != NULL)
21737 /* Store the value of the pending return. */
21738 if ((cstack->cs_rettv[idx] = alloc_tv()) != NULL)
21739 *(typval_T *)cstack->cs_rettv[idx] = *(typval_T *)rettv;
21740 else
21741 EMSG(_(e_outofmem));
21743 else
21744 cstack->cs_rettv[idx] = NULL;
21746 if (reanimate)
21748 /* The pending return value could be overwritten by a ":return"
21749 * without argument in a finally clause; reset the default
21750 * return value. */
21751 current_funccal->rettv->v_type = VAR_NUMBER;
21752 current_funccal->rettv->vval.v_number = 0;
21755 report_make_pending(CSTP_RETURN, rettv);
21757 else
21759 current_funccal->returned = TRUE;
21761 /* If the return is carried out now, store the return value. For
21762 * a return immediately after reanimation, the value is already
21763 * there. */
21764 if (!reanimate && rettv != NULL)
21766 clear_tv(current_funccal->rettv);
21767 *current_funccal->rettv = *(typval_T *)rettv;
21768 if (!is_cmd)
21769 vim_free(rettv);
21773 return idx < 0;
21777 * Free the variable with a pending return value.
21779 void
21780 discard_pending_return(rettv)
21781 void *rettv;
21783 free_tv((typval_T *)rettv);
21787 * Generate a return command for producing the value of "rettv". The result
21788 * is an allocated string. Used by report_pending() for verbose messages.
21790 char_u *
21791 get_return_cmd(rettv)
21792 void *rettv;
21794 char_u *s = NULL;
21795 char_u *tofree = NULL;
21796 char_u numbuf[NUMBUFLEN];
21798 if (rettv != NULL)
21799 s = echo_string((typval_T *)rettv, &tofree, numbuf, 0);
21800 if (s == NULL)
21801 s = (char_u *)"";
21803 STRCPY(IObuff, ":return ");
21804 STRNCPY(IObuff + 8, s, IOSIZE - 8);
21805 if (STRLEN(s) + 8 >= IOSIZE)
21806 STRCPY(IObuff + IOSIZE - 4, "...");
21807 vim_free(tofree);
21808 return vim_strsave(IObuff);
21812 * Get next function line.
21813 * Called by do_cmdline() to get the next line.
21814 * Returns allocated string, or NULL for end of function.
21816 /* ARGSUSED */
21817 char_u *
21818 get_func_line(c, cookie, indent)
21819 int c; /* not used */
21820 void *cookie;
21821 int indent; /* not used */
21823 funccall_T *fcp = (funccall_T *)cookie;
21824 ufunc_T *fp = fcp->func;
21825 char_u *retval;
21826 garray_T *gap; /* growarray with function lines */
21828 /* If breakpoints have been added/deleted need to check for it. */
21829 if (fcp->dbg_tick != debug_tick)
21831 fcp->breakpoint = dbg_find_breakpoint(FALSE, fp->uf_name,
21832 sourcing_lnum);
21833 fcp->dbg_tick = debug_tick;
21835 #ifdef FEAT_PROFILE
21836 if (do_profiling == PROF_YES)
21837 func_line_end(cookie);
21838 #endif
21840 gap = &fp->uf_lines;
21841 if (((fp->uf_flags & FC_ABORT) && did_emsg && !aborted_in_try())
21842 || fcp->returned)
21843 retval = NULL;
21844 else
21846 /* Skip NULL lines (continuation lines). */
21847 while (fcp->linenr < gap->ga_len
21848 && ((char_u **)(gap->ga_data))[fcp->linenr] == NULL)
21849 ++fcp->linenr;
21850 if (fcp->linenr >= gap->ga_len)
21851 retval = NULL;
21852 else
21854 retval = vim_strsave(((char_u **)(gap->ga_data))[fcp->linenr++]);
21855 sourcing_lnum = fcp->linenr;
21856 #ifdef FEAT_PROFILE
21857 if (do_profiling == PROF_YES)
21858 func_line_start(cookie);
21859 #endif
21863 /* Did we encounter a breakpoint? */
21864 if (fcp->breakpoint != 0 && fcp->breakpoint <= sourcing_lnum)
21866 dbg_breakpoint(fp->uf_name, sourcing_lnum);
21867 /* Find next breakpoint. */
21868 fcp->breakpoint = dbg_find_breakpoint(FALSE, fp->uf_name,
21869 sourcing_lnum);
21870 fcp->dbg_tick = debug_tick;
21873 return retval;
21876 #if defined(FEAT_PROFILE) || defined(PROTO)
21878 * Called when starting to read a function line.
21879 * "sourcing_lnum" must be correct!
21880 * When skipping lines it may not actually be executed, but we won't find out
21881 * until later and we need to store the time now.
21883 void
21884 func_line_start(cookie)
21885 void *cookie;
21887 funccall_T *fcp = (funccall_T *)cookie;
21888 ufunc_T *fp = fcp->func;
21890 if (fp->uf_profiling && sourcing_lnum >= 1
21891 && sourcing_lnum <= fp->uf_lines.ga_len)
21893 fp->uf_tml_idx = sourcing_lnum - 1;
21894 /* Skip continuation lines. */
21895 while (fp->uf_tml_idx > 0 && FUNCLINE(fp, fp->uf_tml_idx) == NULL)
21896 --fp->uf_tml_idx;
21897 fp->uf_tml_execed = FALSE;
21898 profile_start(&fp->uf_tml_start);
21899 profile_zero(&fp->uf_tml_children);
21900 profile_get_wait(&fp->uf_tml_wait);
21905 * Called when actually executing a function line.
21907 void
21908 func_line_exec(cookie)
21909 void *cookie;
21911 funccall_T *fcp = (funccall_T *)cookie;
21912 ufunc_T *fp = fcp->func;
21914 if (fp->uf_profiling && fp->uf_tml_idx >= 0)
21915 fp->uf_tml_execed = TRUE;
21919 * Called when done with a function line.
21921 void
21922 func_line_end(cookie)
21923 void *cookie;
21925 funccall_T *fcp = (funccall_T *)cookie;
21926 ufunc_T *fp = fcp->func;
21928 if (fp->uf_profiling && fp->uf_tml_idx >= 0)
21930 if (fp->uf_tml_execed)
21932 ++fp->uf_tml_count[fp->uf_tml_idx];
21933 profile_end(&fp->uf_tml_start);
21934 profile_sub_wait(&fp->uf_tml_wait, &fp->uf_tml_start);
21935 profile_add(&fp->uf_tml_total[fp->uf_tml_idx], &fp->uf_tml_start);
21936 profile_self(&fp->uf_tml_self[fp->uf_tml_idx], &fp->uf_tml_start,
21937 &fp->uf_tml_children);
21939 fp->uf_tml_idx = -1;
21942 #endif
21945 * Return TRUE if the currently active function should be ended, because a
21946 * return was encountered or an error occurred. Used inside a ":while".
21949 func_has_ended(cookie)
21950 void *cookie;
21952 funccall_T *fcp = (funccall_T *)cookie;
21954 /* Ignore the "abort" flag if the abortion behavior has been changed due to
21955 * an error inside a try conditional. */
21956 return (((fcp->func->uf_flags & FC_ABORT) && did_emsg && !aborted_in_try())
21957 || fcp->returned);
21961 * return TRUE if cookie indicates a function which "abort"s on errors.
21964 func_has_abort(cookie)
21965 void *cookie;
21967 return ((funccall_T *)cookie)->func->uf_flags & FC_ABORT;
21970 #if defined(FEAT_VIMINFO) || defined(FEAT_SESSION)
21971 typedef enum
21973 VAR_FLAVOUR_DEFAULT, /* doesn't start with uppercase */
21974 VAR_FLAVOUR_SESSION, /* starts with uppercase, some lower */
21975 VAR_FLAVOUR_VIMINFO /* all uppercase */
21976 } var_flavour_T;
21978 static var_flavour_T var_flavour __ARGS((char_u *varname));
21980 static var_flavour_T
21981 var_flavour(varname)
21982 char_u *varname;
21984 char_u *p = varname;
21986 if (ASCII_ISUPPER(*p))
21988 while (*(++p))
21989 if (ASCII_ISLOWER(*p))
21990 return VAR_FLAVOUR_SESSION;
21991 return VAR_FLAVOUR_VIMINFO;
21993 else
21994 return VAR_FLAVOUR_DEFAULT;
21996 #endif
21998 #if defined(FEAT_VIMINFO) || defined(PROTO)
22000 * Restore global vars that start with a capital from the viminfo file
22003 read_viminfo_varlist(virp, writing)
22004 vir_T *virp;
22005 int writing;
22007 char_u *tab;
22008 int type = VAR_NUMBER;
22009 typval_T tv;
22011 if (!writing && (find_viminfo_parameter('!') != NULL))
22013 tab = vim_strchr(virp->vir_line + 1, '\t');
22014 if (tab != NULL)
22016 *tab++ = '\0'; /* isolate the variable name */
22017 if (*tab == 'S') /* string var */
22018 type = VAR_STRING;
22019 #ifdef FEAT_FLOAT
22020 else if (*tab == 'F')
22021 type = VAR_FLOAT;
22022 #endif
22024 tab = vim_strchr(tab, '\t');
22025 if (tab != NULL)
22027 tv.v_type = type;
22028 if (type == VAR_STRING)
22029 tv.vval.v_string = viminfo_readstring(virp,
22030 (int)(tab - virp->vir_line + 1), TRUE);
22031 #ifdef FEAT_FLOAT
22032 else if (type == VAR_FLOAT)
22033 (void)string2float(tab + 1, &tv.vval.v_float);
22034 #endif
22035 else
22036 tv.vval.v_number = atol((char *)tab + 1);
22037 set_var(virp->vir_line + 1, &tv, FALSE);
22038 if (type == VAR_STRING)
22039 vim_free(tv.vval.v_string);
22044 return viminfo_readline(virp);
22048 * Write global vars that start with a capital to the viminfo file
22050 void
22051 write_viminfo_varlist(fp)
22052 FILE *fp;
22054 hashitem_T *hi;
22055 dictitem_T *this_var;
22056 int todo;
22057 char *s;
22058 char_u *p;
22059 char_u *tofree;
22060 char_u numbuf[NUMBUFLEN];
22062 if (find_viminfo_parameter('!') == NULL)
22063 return;
22065 fprintf(fp, _("\n# global variables:\n"));
22067 todo = (int)globvarht.ht_used;
22068 for (hi = globvarht.ht_array; todo > 0; ++hi)
22070 if (!HASHITEM_EMPTY(hi))
22072 --todo;
22073 this_var = HI2DI(hi);
22074 if (var_flavour(this_var->di_key) == VAR_FLAVOUR_VIMINFO)
22076 switch (this_var->di_tv.v_type)
22078 case VAR_STRING: s = "STR"; break;
22079 case VAR_NUMBER: s = "NUM"; break;
22080 #ifdef FEAT_FLOAT
22081 case VAR_FLOAT: s = "FLO"; break;
22082 #endif
22083 default: continue;
22085 fprintf(fp, "!%s\t%s\t", this_var->di_key, s);
22086 p = echo_string(&this_var->di_tv, &tofree, numbuf, 0);
22087 if (p != NULL)
22088 viminfo_writestring(fp, p);
22089 vim_free(tofree);
22094 #endif
22096 #if defined(FEAT_SESSION) || defined(PROTO)
22098 store_session_globals(fd)
22099 FILE *fd;
22101 hashitem_T *hi;
22102 dictitem_T *this_var;
22103 int todo;
22104 char_u *p, *t;
22106 todo = (int)globvarht.ht_used;
22107 for (hi = globvarht.ht_array; todo > 0; ++hi)
22109 if (!HASHITEM_EMPTY(hi))
22111 --todo;
22112 this_var = HI2DI(hi);
22113 if ((this_var->di_tv.v_type == VAR_NUMBER
22114 || this_var->di_tv.v_type == VAR_STRING)
22115 && var_flavour(this_var->di_key) == VAR_FLAVOUR_SESSION)
22117 /* Escape special characters with a backslash. Turn a LF and
22118 * CR into \n and \r. */
22119 p = vim_strsave_escaped(get_tv_string(&this_var->di_tv),
22120 (char_u *)"\\\"\n\r");
22121 if (p == NULL) /* out of memory */
22122 break;
22123 for (t = p; *t != NUL; ++t)
22124 if (*t == '\n')
22125 *t = 'n';
22126 else if (*t == '\r')
22127 *t = 'r';
22128 if ((fprintf(fd, "let %s = %c%s%c",
22129 this_var->di_key,
22130 (this_var->di_tv.v_type == VAR_STRING) ? '"'
22131 : ' ',
22133 (this_var->di_tv.v_type == VAR_STRING) ? '"'
22134 : ' ') < 0)
22135 || put_eol(fd) == FAIL)
22137 vim_free(p);
22138 return FAIL;
22140 vim_free(p);
22142 #ifdef FEAT_FLOAT
22143 else if (this_var->di_tv.v_type == VAR_FLOAT
22144 && var_flavour(this_var->di_key) == VAR_FLAVOUR_SESSION)
22146 float_T f = this_var->di_tv.vval.v_float;
22147 int sign = ' ';
22149 if (f < 0)
22151 f = -f;
22152 sign = '-';
22154 if ((fprintf(fd, "let %s = %c&%f",
22155 this_var->di_key, sign, f) < 0)
22156 || put_eol(fd) == FAIL)
22157 return FAIL;
22159 #endif
22162 return OK;
22164 #endif
22167 * Display script name where an item was last set.
22168 * Should only be invoked when 'verbose' is non-zero.
22170 void
22171 last_set_msg(scriptID)
22172 scid_T scriptID;
22174 char_u *p;
22176 if (scriptID != 0)
22178 p = home_replace_save(NULL, get_scriptname(scriptID));
22179 if (p != NULL)
22181 verbose_enter();
22182 MSG_PUTS(_("\n\tLast set from "));
22183 MSG_PUTS(p);
22184 vim_free(p);
22185 verbose_leave();
22191 * List v:oldfiles in a nice way.
22193 /*ARGSUSED*/
22194 void
22195 ex_oldfiles(eap)
22196 exarg_T *eap;
22198 list_T *l = vimvars[VV_OLDFILES].vv_list;
22199 listitem_T *li;
22200 int nr = 0;
22202 if (l == NULL)
22203 msg((char_u *)_("No old files"));
22204 else
22206 msg_start();
22207 msg_scroll = TRUE;
22208 for (li = l->lv_first; li != NULL && !got_int; li = li->li_next)
22210 msg_outnum((long)++nr);
22211 MSG_PUTS(": ");
22212 msg_outtrans(get_tv_string(&li->li_tv));
22213 msg_putchar('\n');
22214 out_flush(); /* output one line at a time */
22215 ui_breakcheck();
22217 /* Assume "got_int" was set to truncate the listing. */
22218 got_int = FALSE;
22220 #ifdef FEAT_BROWSE_CMD
22221 if (cmdmod.browse)
22223 quit_more = FALSE;
22224 nr = prompt_for_number(FALSE);
22225 msg_starthere();
22226 if (nr > 0)
22228 char_u *p = list_find_str(get_vim_var_list(VV_OLDFILES),
22229 (long)nr);
22231 if (p != NULL)
22233 p = expand_env_save(p);
22234 eap->arg = p;
22235 eap->cmdidx = CMD_edit;
22236 cmdmod.browse = FALSE;
22237 do_exedit(eap, NULL);
22238 vim_free(p);
22242 #endif
22246 #endif /* FEAT_EVAL */
22249 #if defined(FEAT_MODIFY_FNAME) || defined(FEAT_EVAL) || defined(PROTO)
22251 #ifdef WIN3264
22253 * Functions for ":8" filename modifier: get 8.3 version of a filename.
22255 static int get_short_pathname __ARGS((char_u **fnamep, char_u **bufp, int *fnamelen));
22256 static int shortpath_for_invalid_fname __ARGS((char_u **fname, char_u **bufp, int *fnamelen));
22257 static int shortpath_for_partial __ARGS((char_u **fnamep, char_u **bufp, int *fnamelen));
22260 * Get the short path (8.3) for the filename in "fnamep".
22261 * Only works for a valid file name.
22262 * When the path gets longer "fnamep" is changed and the allocated buffer
22263 * is put in "bufp".
22264 * *fnamelen is the length of "fnamep" and set to 0 for a nonexistent path.
22265 * Returns OK on success, FAIL on failure.
22267 static int
22268 get_short_pathname(fnamep, bufp, fnamelen)
22269 char_u **fnamep;
22270 char_u **bufp;
22271 int *fnamelen;
22273 int l, len;
22274 char_u *newbuf;
22276 len = *fnamelen;
22277 l = GetShortPathName(*fnamep, *fnamep, len);
22278 if (l > len - 1)
22280 /* If that doesn't work (not enough space), then save the string
22281 * and try again with a new buffer big enough. */
22282 newbuf = vim_strnsave(*fnamep, l);
22283 if (newbuf == NULL)
22284 return FAIL;
22286 vim_free(*bufp);
22287 *fnamep = *bufp = newbuf;
22289 /* Really should always succeed, as the buffer is big enough. */
22290 l = GetShortPathName(*fnamep, *fnamep, l+1);
22293 *fnamelen = l;
22294 return OK;
22298 * Get the short path (8.3) for the filename in "fname". The converted
22299 * path is returned in "bufp".
22301 * Some of the directories specified in "fname" may not exist. This function
22302 * will shorten the existing directories at the beginning of the path and then
22303 * append the remaining non-existing path.
22305 * fname - Pointer to the filename to shorten. On return, contains the
22306 * pointer to the shortened pathname
22307 * bufp - Pointer to an allocated buffer for the filename.
22308 * fnamelen - Length of the filename pointed to by fname
22310 * Returns OK on success (or nothing done) and FAIL on failure (out of memory).
22312 static int
22313 shortpath_for_invalid_fname(fname, bufp, fnamelen)
22314 char_u **fname;
22315 char_u **bufp;
22316 int *fnamelen;
22318 char_u *short_fname, *save_fname, *pbuf_unused;
22319 char_u *endp, *save_endp;
22320 char_u ch;
22321 int old_len, len;
22322 int new_len, sfx_len;
22323 int retval = OK;
22325 /* Make a copy */
22326 old_len = *fnamelen;
22327 save_fname = vim_strnsave(*fname, old_len);
22328 pbuf_unused = NULL;
22329 short_fname = NULL;
22331 endp = save_fname + old_len - 1; /* Find the end of the copy */
22332 save_endp = endp;
22335 * Try shortening the supplied path till it succeeds by removing one
22336 * directory at a time from the tail of the path.
22338 len = 0;
22339 for (;;)
22341 /* go back one path-separator */
22342 while (endp > save_fname && !after_pathsep(save_fname, endp + 1))
22343 --endp;
22344 if (endp <= save_fname)
22345 break; /* processed the complete path */
22348 * Replace the path separator with a NUL and try to shorten the
22349 * resulting path.
22351 ch = *endp;
22352 *endp = 0;
22353 short_fname = save_fname;
22354 len = (int)STRLEN(short_fname) + 1;
22355 if (get_short_pathname(&short_fname, &pbuf_unused, &len) == FAIL)
22357 retval = FAIL;
22358 goto theend;
22360 *endp = ch; /* preserve the string */
22362 if (len > 0)
22363 break; /* successfully shortened the path */
22365 /* failed to shorten the path. Skip the path separator */
22366 --endp;
22369 if (len > 0)
22372 * Succeeded in shortening the path. Now concatenate the shortened
22373 * path with the remaining path at the tail.
22376 /* Compute the length of the new path. */
22377 sfx_len = (int)(save_endp - endp) + 1;
22378 new_len = len + sfx_len;
22380 *fnamelen = new_len;
22381 vim_free(*bufp);
22382 if (new_len > old_len)
22384 /* There is not enough space in the currently allocated string,
22385 * copy it to a buffer big enough. */
22386 *fname = *bufp = vim_strnsave(short_fname, new_len);
22387 if (*fname == NULL)
22389 retval = FAIL;
22390 goto theend;
22393 else
22395 /* Transfer short_fname to the main buffer (it's big enough),
22396 * unless get_short_pathname() did its work in-place. */
22397 *fname = *bufp = save_fname;
22398 if (short_fname != save_fname)
22399 vim_strncpy(save_fname, short_fname, len);
22400 save_fname = NULL;
22403 /* concat the not-shortened part of the path */
22404 vim_strncpy(*fname + len, endp, sfx_len);
22405 (*fname)[new_len] = NUL;
22408 theend:
22409 vim_free(pbuf_unused);
22410 vim_free(save_fname);
22412 return retval;
22416 * Get a pathname for a partial path.
22417 * Returns OK for success, FAIL for failure.
22419 static int
22420 shortpath_for_partial(fnamep, bufp, fnamelen)
22421 char_u **fnamep;
22422 char_u **bufp;
22423 int *fnamelen;
22425 int sepcount, len, tflen;
22426 char_u *p;
22427 char_u *pbuf, *tfname;
22428 int hasTilde;
22430 /* Count up the path separators from the RHS.. so we know which part
22431 * of the path to return. */
22432 sepcount = 0;
22433 for (p = *fnamep; p < *fnamep + *fnamelen; mb_ptr_adv(p))
22434 if (vim_ispathsep(*p))
22435 ++sepcount;
22437 /* Need full path first (use expand_env() to remove a "~/") */
22438 hasTilde = (**fnamep == '~');
22439 if (hasTilde)
22440 pbuf = tfname = expand_env_save(*fnamep);
22441 else
22442 pbuf = tfname = FullName_save(*fnamep, FALSE);
22444 len = tflen = (int)STRLEN(tfname);
22446 if (get_short_pathname(&tfname, &pbuf, &len) == FAIL)
22447 return FAIL;
22449 if (len == 0)
22451 /* Don't have a valid filename, so shorten the rest of the
22452 * path if we can. This CAN give us invalid 8.3 filenames, but
22453 * there's not a lot of point in guessing what it might be.
22455 len = tflen;
22456 if (shortpath_for_invalid_fname(&tfname, &pbuf, &len) == FAIL)
22457 return FAIL;
22460 /* Count the paths backward to find the beginning of the desired string. */
22461 for (p = tfname + len - 1; p >= tfname; --p)
22463 #ifdef FEAT_MBYTE
22464 if (has_mbyte)
22465 p -= mb_head_off(tfname, p);
22466 #endif
22467 if (vim_ispathsep(*p))
22469 if (sepcount == 0 || (hasTilde && sepcount == 1))
22470 break;
22471 else
22472 sepcount --;
22475 if (hasTilde)
22477 --p;
22478 if (p >= tfname)
22479 *p = '~';
22480 else
22481 return FAIL;
22483 else
22484 ++p;
22486 /* Copy in the string - p indexes into tfname - allocated at pbuf */
22487 vim_free(*bufp);
22488 *fnamelen = (int)STRLEN(p);
22489 *bufp = pbuf;
22490 *fnamep = p;
22492 return OK;
22494 #endif /* WIN3264 */
22497 * Adjust a filename, according to a string of modifiers.
22498 * *fnamep must be NUL terminated when called. When returning, the length is
22499 * determined by *fnamelen.
22500 * Returns VALID_ flags or -1 for failure.
22501 * When there is an error, *fnamep is set to NULL.
22504 modify_fname(src, usedlen, fnamep, bufp, fnamelen)
22505 char_u *src; /* string with modifiers */
22506 int *usedlen; /* characters after src that are used */
22507 char_u **fnamep; /* file name so far */
22508 char_u **bufp; /* buffer for allocated file name or NULL */
22509 int *fnamelen; /* length of fnamep */
22511 int valid = 0;
22512 char_u *tail;
22513 char_u *s, *p, *pbuf;
22514 char_u dirname[MAXPATHL];
22515 int c;
22516 int has_fullname = 0;
22517 #ifdef WIN3264
22518 int has_shortname = 0;
22519 #endif
22521 repeat:
22522 /* ":p" - full path/file_name */
22523 if (src[*usedlen] == ':' && src[*usedlen + 1] == 'p')
22525 has_fullname = 1;
22527 valid |= VALID_PATH;
22528 *usedlen += 2;
22530 /* Expand "~/path" for all systems and "~user/path" for Unix and VMS */
22531 if ((*fnamep)[0] == '~'
22532 #if !defined(UNIX) && !(defined(VMS) && defined(USER_HOME))
22533 && ((*fnamep)[1] == '/'
22534 # ifdef BACKSLASH_IN_FILENAME
22535 || (*fnamep)[1] == '\\'
22536 # endif
22537 || (*fnamep)[1] == NUL)
22539 #endif
22542 *fnamep = expand_env_save(*fnamep);
22543 vim_free(*bufp); /* free any allocated file name */
22544 *bufp = *fnamep;
22545 if (*fnamep == NULL)
22546 return -1;
22549 /* When "/." or "/.." is used: force expansion to get rid of it. */
22550 for (p = *fnamep; *p != NUL; mb_ptr_adv(p))
22552 if (vim_ispathsep(*p)
22553 && p[1] == '.'
22554 && (p[2] == NUL
22555 || vim_ispathsep(p[2])
22556 || (p[2] == '.'
22557 && (p[3] == NUL || vim_ispathsep(p[3])))))
22558 break;
22561 /* FullName_save() is slow, don't use it when not needed. */
22562 if (*p != NUL || !vim_isAbsName(*fnamep))
22564 *fnamep = FullName_save(*fnamep, *p != NUL);
22565 vim_free(*bufp); /* free any allocated file name */
22566 *bufp = *fnamep;
22567 if (*fnamep == NULL)
22568 return -1;
22571 /* Append a path separator to a directory. */
22572 if (mch_isdir(*fnamep))
22574 /* Make room for one or two extra characters. */
22575 *fnamep = vim_strnsave(*fnamep, (int)STRLEN(*fnamep) + 2);
22576 vim_free(*bufp); /* free any allocated file name */
22577 *bufp = *fnamep;
22578 if (*fnamep == NULL)
22579 return -1;
22580 add_pathsep(*fnamep);
22584 /* ":." - path relative to the current directory */
22585 /* ":~" - path relative to the home directory */
22586 /* ":8" - shortname path - postponed till after */
22587 while (src[*usedlen] == ':'
22588 && ((c = src[*usedlen + 1]) == '.' || c == '~' || c == '8'))
22590 *usedlen += 2;
22591 if (c == '8')
22593 #ifdef WIN3264
22594 has_shortname = 1; /* Postpone this. */
22595 #endif
22596 continue;
22598 pbuf = NULL;
22599 /* Need full path first (use expand_env() to remove a "~/") */
22600 if (!has_fullname)
22602 if (c == '.' && **fnamep == '~')
22603 p = pbuf = expand_env_save(*fnamep);
22604 else
22605 p = pbuf = FullName_save(*fnamep, FALSE);
22607 else
22608 p = *fnamep;
22610 has_fullname = 0;
22612 if (p != NULL)
22614 if (c == '.')
22616 mch_dirname(dirname, MAXPATHL);
22617 s = shorten_fname(p, dirname);
22618 if (s != NULL)
22620 *fnamep = s;
22621 if (pbuf != NULL)
22623 vim_free(*bufp); /* free any allocated file name */
22624 *bufp = pbuf;
22625 pbuf = NULL;
22629 else
22631 home_replace(NULL, p, dirname, MAXPATHL, TRUE);
22632 /* Only replace it when it starts with '~' */
22633 if (*dirname == '~')
22635 s = vim_strsave(dirname);
22636 if (s != NULL)
22638 *fnamep = s;
22639 vim_free(*bufp);
22640 *bufp = s;
22644 vim_free(pbuf);
22648 tail = gettail(*fnamep);
22649 *fnamelen = (int)STRLEN(*fnamep);
22651 /* ":h" - head, remove "/file_name", can be repeated */
22652 /* Don't remove the first "/" or "c:\" */
22653 while (src[*usedlen] == ':' && src[*usedlen + 1] == 'h')
22655 valid |= VALID_HEAD;
22656 *usedlen += 2;
22657 s = get_past_head(*fnamep);
22658 while (tail > s && after_pathsep(s, tail))
22659 mb_ptr_back(*fnamep, tail);
22660 *fnamelen = (int)(tail - *fnamep);
22661 #ifdef VMS
22662 if (*fnamelen > 0)
22663 *fnamelen += 1; /* the path separator is part of the path */
22664 #endif
22665 if (*fnamelen == 0)
22667 /* Result is empty. Turn it into "." to make ":cd %:h" work. */
22668 p = vim_strsave((char_u *)".");
22669 if (p == NULL)
22670 return -1;
22671 vim_free(*bufp);
22672 *bufp = *fnamep = tail = p;
22673 *fnamelen = 1;
22675 else
22677 while (tail > s && !after_pathsep(s, tail))
22678 mb_ptr_back(*fnamep, tail);
22682 /* ":8" - shortname */
22683 if (src[*usedlen] == ':' && src[*usedlen + 1] == '8')
22685 *usedlen += 2;
22686 #ifdef WIN3264
22687 has_shortname = 1;
22688 #endif
22691 #ifdef WIN3264
22692 /* Check shortname after we have done 'heads' and before we do 'tails'
22694 if (has_shortname)
22696 pbuf = NULL;
22697 /* Copy the string if it is shortened by :h */
22698 if (*fnamelen < (int)STRLEN(*fnamep))
22700 p = vim_strnsave(*fnamep, *fnamelen);
22701 if (p == 0)
22702 return -1;
22703 vim_free(*bufp);
22704 *bufp = *fnamep = p;
22707 /* Split into two implementations - makes it easier. First is where
22708 * there isn't a full name already, second is where there is.
22710 if (!has_fullname && !vim_isAbsName(*fnamep))
22712 if (shortpath_for_partial(fnamep, bufp, fnamelen) == FAIL)
22713 return -1;
22715 else
22717 int l;
22719 /* Simple case, already have the full-name
22720 * Nearly always shorter, so try first time. */
22721 l = *fnamelen;
22722 if (get_short_pathname(fnamep, bufp, &l) == FAIL)
22723 return -1;
22725 if (l == 0)
22727 /* Couldn't find the filename.. search the paths.
22729 l = *fnamelen;
22730 if (shortpath_for_invalid_fname(fnamep, bufp, &l) == FAIL)
22731 return -1;
22733 *fnamelen = l;
22736 #endif /* WIN3264 */
22738 /* ":t" - tail, just the basename */
22739 if (src[*usedlen] == ':' && src[*usedlen + 1] == 't')
22741 *usedlen += 2;
22742 *fnamelen -= (int)(tail - *fnamep);
22743 *fnamep = tail;
22746 /* ":e" - extension, can be repeated */
22747 /* ":r" - root, without extension, can be repeated */
22748 while (src[*usedlen] == ':'
22749 && (src[*usedlen + 1] == 'e' || src[*usedlen + 1] == 'r'))
22751 /* find a '.' in the tail:
22752 * - for second :e: before the current fname
22753 * - otherwise: The last '.'
22755 if (src[*usedlen + 1] == 'e' && *fnamep > tail)
22756 s = *fnamep - 2;
22757 else
22758 s = *fnamep + *fnamelen - 1;
22759 for ( ; s > tail; --s)
22760 if (s[0] == '.')
22761 break;
22762 if (src[*usedlen + 1] == 'e') /* :e */
22764 if (s > tail)
22766 *fnamelen += (int)(*fnamep - (s + 1));
22767 *fnamep = s + 1;
22768 #ifdef VMS
22769 /* cut version from the extension */
22770 s = *fnamep + *fnamelen - 1;
22771 for ( ; s > *fnamep; --s)
22772 if (s[0] == ';')
22773 break;
22774 if (s > *fnamep)
22775 *fnamelen = s - *fnamep;
22776 #endif
22778 else if (*fnamep <= tail)
22779 *fnamelen = 0;
22781 else /* :r */
22783 if (s > tail) /* remove one extension */
22784 *fnamelen = (int)(s - *fnamep);
22786 *usedlen += 2;
22789 /* ":s?pat?foo?" - substitute */
22790 /* ":gs?pat?foo?" - global substitute */
22791 if (src[*usedlen] == ':'
22792 && (src[*usedlen + 1] == 's'
22793 || (src[*usedlen + 1] == 'g' && src[*usedlen + 2] == 's')))
22795 char_u *str;
22796 char_u *pat;
22797 char_u *sub;
22798 int sep;
22799 char_u *flags;
22800 int didit = FALSE;
22802 flags = (char_u *)"";
22803 s = src + *usedlen + 2;
22804 if (src[*usedlen + 1] == 'g')
22806 flags = (char_u *)"g";
22807 ++s;
22810 sep = *s++;
22811 if (sep)
22813 /* find end of pattern */
22814 p = vim_strchr(s, sep);
22815 if (p != NULL)
22817 pat = vim_strnsave(s, (int)(p - s));
22818 if (pat != NULL)
22820 s = p + 1;
22821 /* find end of substitution */
22822 p = vim_strchr(s, sep);
22823 if (p != NULL)
22825 sub = vim_strnsave(s, (int)(p - s));
22826 str = vim_strnsave(*fnamep, *fnamelen);
22827 if (sub != NULL && str != NULL)
22829 *usedlen = (int)(p + 1 - src);
22830 s = do_string_sub(str, pat, sub, flags);
22831 if (s != NULL)
22833 *fnamep = s;
22834 *fnamelen = (int)STRLEN(s);
22835 vim_free(*bufp);
22836 *bufp = s;
22837 didit = TRUE;
22840 vim_free(sub);
22841 vim_free(str);
22843 vim_free(pat);
22846 /* after using ":s", repeat all the modifiers */
22847 if (didit)
22848 goto repeat;
22852 return valid;
22856 * Perform a substitution on "str" with pattern "pat" and substitute "sub".
22857 * "flags" can be "g" to do a global substitute.
22858 * Returns an allocated string, NULL for error.
22860 char_u *
22861 do_string_sub(str, pat, sub, flags)
22862 char_u *str;
22863 char_u *pat;
22864 char_u *sub;
22865 char_u *flags;
22867 int sublen;
22868 regmatch_T regmatch;
22869 int i;
22870 int do_all;
22871 char_u *tail;
22872 garray_T ga;
22873 char_u *ret;
22874 char_u *save_cpo;
22876 /* Make 'cpoptions' empty, so that the 'l' flag doesn't work here */
22877 save_cpo = p_cpo;
22878 p_cpo = empty_option;
22880 ga_init2(&ga, 1, 200);
22882 do_all = (flags[0] == 'g');
22884 regmatch.rm_ic = p_ic;
22885 regmatch.regprog = vim_regcomp(pat, RE_MAGIC + RE_STRING);
22886 if (regmatch.regprog != NULL)
22888 tail = str;
22889 while (vim_regexec_nl(&regmatch, str, (colnr_T)(tail - str)))
22892 * Get some space for a temporary buffer to do the substitution
22893 * into. It will contain:
22894 * - The text up to where the match is.
22895 * - The substituted text.
22896 * - The text after the match.
22898 sublen = vim_regsub(&regmatch, sub, tail, FALSE, TRUE, FALSE);
22899 if (ga_grow(&ga, (int)(STRLEN(tail) + sublen -
22900 (regmatch.endp[0] - regmatch.startp[0]))) == FAIL)
22902 ga_clear(&ga);
22903 break;
22906 /* copy the text up to where the match is */
22907 i = (int)(regmatch.startp[0] - tail);
22908 mch_memmove((char_u *)ga.ga_data + ga.ga_len, tail, (size_t)i);
22909 /* add the substituted text */
22910 (void)vim_regsub(&regmatch, sub, (char_u *)ga.ga_data
22911 + ga.ga_len + i, TRUE, TRUE, FALSE);
22912 ga.ga_len += i + sublen - 1;
22913 /* avoid getting stuck on a match with an empty string */
22914 if (tail == regmatch.endp[0])
22916 if (*tail == NUL)
22917 break;
22918 *((char_u *)ga.ga_data + ga.ga_len) = *tail++;
22919 ++ga.ga_len;
22921 else
22923 tail = regmatch.endp[0];
22924 if (*tail == NUL)
22925 break;
22927 if (!do_all)
22928 break;
22931 if (ga.ga_data != NULL)
22932 STRCPY((char *)ga.ga_data + ga.ga_len, tail);
22934 vim_free(regmatch.regprog);
22937 ret = vim_strsave(ga.ga_data == NULL ? str : (char_u *)ga.ga_data);
22938 ga_clear(&ga);
22939 if (p_cpo == empty_option)
22940 p_cpo = save_cpo;
22941 else
22942 /* Darn, evaluating {sub} expression changed the value. */
22943 free_string_option(save_cpo);
22945 return ret;
22948 #endif /* defined(FEAT_MODIFY_FNAME) || defined(FEAT_EVAL) */