Snapshot 44
[MacVim.git] / src / eval.c
blob5b215bec51de2870e4f4503d78310250edf8062c
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 */
35 #define DO_NOT_FREE_CNT 99999 /* refcount for dict or list that should not
36 be freed. */
39 * In a hashtab item "hi_key" points to "di_key" in a dictitem.
40 * This avoids adding a pointer to the hashtab item.
41 * DI2HIKEY() converts a dictitem pointer to a hashitem key pointer.
42 * HIKEY2DI() converts a hashitem key pointer to a dictitem pointer.
43 * HI2DI() converts a hashitem pointer to a dictitem pointer.
45 static dictitem_T dumdi;
46 #define DI2HIKEY(di) ((di)->di_key)
47 #define HIKEY2DI(p) ((dictitem_T *)(p - (dumdi.di_key - (char_u *)&dumdi)))
48 #define HI2DI(hi) HIKEY2DI((hi)->hi_key)
51 * Structure returned by get_lval() and used by set_var_lval().
52 * For a plain name:
53 * "name" points to the variable name.
54 * "exp_name" is NULL.
55 * "tv" is NULL
56 * For a magic braces name:
57 * "name" points to the expanded variable name.
58 * "exp_name" is non-NULL, to be freed later.
59 * "tv" is NULL
60 * For an index in a list:
61 * "name" points to the (expanded) variable name.
62 * "exp_name" NULL or non-NULL, to be freed later.
63 * "tv" points to the (first) list item value
64 * "li" points to the (first) list item
65 * "range", "n1", "n2" and "empty2" indicate what items are used.
66 * For an existing Dict item:
67 * "name" points to the (expanded) variable name.
68 * "exp_name" NULL or non-NULL, to be freed later.
69 * "tv" points to the dict item value
70 * "newkey" is NULL
71 * For a non-existing Dict item:
72 * "name" points to the (expanded) variable name.
73 * "exp_name" NULL or non-NULL, to be freed later.
74 * "tv" points to the Dictionary typval_T
75 * "newkey" is the key for the new item.
77 typedef struct lval_S
79 char_u *ll_name; /* start of variable name (can be NULL) */
80 char_u *ll_exp_name; /* NULL or expanded name in allocated memory. */
81 typval_T *ll_tv; /* Typeval of item being used. If "newkey"
82 isn't NULL it's the Dict to which to add
83 the item. */
84 listitem_T *ll_li; /* The list item or NULL. */
85 list_T *ll_list; /* The list or NULL. */
86 int ll_range; /* TRUE when a [i:j] range was used */
87 long ll_n1; /* First index for list */
88 long ll_n2; /* Second index for list range */
89 int ll_empty2; /* Second index is empty: [i:] */
90 dict_T *ll_dict; /* The Dictionary or NULL */
91 dictitem_T *ll_di; /* The dictitem or NULL */
92 char_u *ll_newkey; /* New key for Dict in alloc. mem or NULL. */
93 } lval_T;
96 static char *e_letunexp = N_("E18: Unexpected characters in :let");
97 static char *e_listidx = N_("E684: list index out of range: %ld");
98 static char *e_undefvar = N_("E121: Undefined variable: %s");
99 static char *e_missbrac = N_("E111: Missing ']'");
100 static char *e_listarg = N_("E686: Argument of %s must be a List");
101 static char *e_listdictarg = N_("E712: Argument of %s must be a List or Dictionary");
102 static char *e_emptykey = N_("E713: Cannot use empty key for Dictionary");
103 static char *e_listreq = N_("E714: List required");
104 static char *e_dictreq = N_("E715: Dictionary required");
105 static char *e_toomanyarg = N_("E118: Too many arguments for function: %s");
106 static char *e_dictkey = N_("E716: Key not present in Dictionary: %s");
107 static char *e_funcexts = N_("E122: Function %s already exists, add ! to replace it");
108 static char *e_funcdict = N_("E717: Dictionary entry already exists");
109 static char *e_funcref = N_("E718: Funcref required");
110 static char *e_dictrange = N_("E719: Cannot use [:] with a Dictionary");
111 static char *e_letwrong = N_("E734: Wrong variable type for %s=");
112 static char *e_nofunc = N_("E130: Unknown function: %s");
113 static char *e_illvar = N_("E461: Illegal variable name: %s");
116 * All user-defined global variables are stored in dictionary "globvardict".
117 * "globvars_var" is the variable that is used for "g:".
119 static dict_T globvardict;
120 static dictitem_T globvars_var;
121 #define globvarht globvardict.dv_hashtab
124 * Old Vim variables such as "v:version" are also available without the "v:".
125 * Also in functions. We need a special hashtable for them.
127 static hashtab_T compat_hashtab;
130 * When recursively copying lists and dicts we need to remember which ones we
131 * have done to avoid endless recursiveness. This unique ID is used for that.
133 static int current_copyID = 0;
136 * Array to hold the hashtab with variables local to each sourced script.
137 * Each item holds a variable (nameless) that points to the dict_T.
139 typedef struct
141 dictitem_T sv_var;
142 dict_T sv_dict;
143 } scriptvar_T;
145 static garray_T ga_scripts = {0, 0, sizeof(scriptvar_T), 4, NULL};
146 #define SCRIPT_SV(id) (((scriptvar_T *)ga_scripts.ga_data)[(id) - 1])
147 #define SCRIPT_VARS(id) (SCRIPT_SV(id).sv_dict.dv_hashtab)
149 static int echo_attr = 0; /* attributes used for ":echo" */
151 /* Values for trans_function_name() argument: */
152 #define TFN_INT 1 /* internal function name OK */
153 #define TFN_QUIET 2 /* no error messages */
156 * Structure to hold info for a user function.
158 typedef struct ufunc ufunc_T;
160 struct ufunc
162 int uf_varargs; /* variable nr of arguments */
163 int uf_flags;
164 int uf_calls; /* nr of active calls */
165 garray_T uf_args; /* arguments */
166 garray_T uf_lines; /* function lines */
167 #ifdef FEAT_PROFILE
168 int uf_profiling; /* TRUE when func is being profiled */
169 /* profiling the function as a whole */
170 int uf_tm_count; /* nr of calls */
171 proftime_T uf_tm_total; /* time spent in function + children */
172 proftime_T uf_tm_self; /* time spent in function itself */
173 proftime_T uf_tm_children; /* time spent in children this call */
174 /* profiling the function per line */
175 int *uf_tml_count; /* nr of times line was executed */
176 proftime_T *uf_tml_total; /* time spent in a line + children */
177 proftime_T *uf_tml_self; /* time spent in a line itself */
178 proftime_T uf_tml_start; /* start time for current line */
179 proftime_T uf_tml_children; /* time spent in children for this line */
180 proftime_T uf_tml_wait; /* start wait time for current line */
181 int uf_tml_idx; /* index of line being timed; -1 if none */
182 int uf_tml_execed; /* line being timed was executed */
183 #endif
184 scid_T uf_script_ID; /* ID of script where function was defined,
185 used for s: variables */
186 int uf_refcount; /* for numbered function: reference count */
187 char_u uf_name[1]; /* name of function (actually longer); can
188 start with <SNR>123_ (<SNR> is K_SPECIAL
189 KS_EXTRA KE_SNR) */
192 /* function flags */
193 #define FC_ABORT 1 /* abort function on error */
194 #define FC_RANGE 2 /* function accepts range */
195 #define FC_DICT 4 /* Dict function, uses "self" */
198 * All user-defined functions are found in this hashtable.
200 static hashtab_T func_hashtab;
202 /* The names of packages that once were loaded are remembered. */
203 static garray_T ga_loaded = {0, 0, sizeof(char_u *), 4, NULL};
205 /* list heads for garbage collection */
206 static dict_T *first_dict = NULL; /* list of all dicts */
207 static list_T *first_list = NULL; /* list of all lists */
209 /* From user function to hashitem and back. */
210 static ufunc_T dumuf;
211 #define UF2HIKEY(fp) ((fp)->uf_name)
212 #define HIKEY2UF(p) ((ufunc_T *)(p - (dumuf.uf_name - (char_u *)&dumuf)))
213 #define HI2UF(hi) HIKEY2UF((hi)->hi_key)
215 #define FUNCARG(fp, j) ((char_u **)(fp->uf_args.ga_data))[j]
216 #define FUNCLINE(fp, j) ((char_u **)(fp->uf_lines.ga_data))[j]
218 #define MAX_FUNC_ARGS 20 /* maximum number of function arguments */
219 #define VAR_SHORT_LEN 20 /* short variable name length */
220 #define FIXVAR_CNT 12 /* number of fixed variables */
222 /* structure to hold info for a function that is currently being executed. */
223 typedef struct funccall_S funccall_T;
225 struct funccall_S
227 ufunc_T *func; /* function being called */
228 int linenr; /* next line to be executed */
229 int returned; /* ":return" used */
230 struct /* fixed variables for arguments */
232 dictitem_T var; /* variable (without room for name) */
233 char_u room[VAR_SHORT_LEN]; /* room for the name */
234 } fixvar[FIXVAR_CNT];
235 dict_T l_vars; /* l: local function variables */
236 dictitem_T l_vars_var; /* variable for l: scope */
237 dict_T l_avars; /* a: argument variables */
238 dictitem_T l_avars_var; /* variable for a: scope */
239 list_T l_varlist; /* list for a:000 */
240 listitem_T l_listitems[MAX_FUNC_ARGS]; /* listitems for a:000 */
241 typval_T *rettv; /* return value */
242 linenr_T breakpoint; /* next line with breakpoint or zero */
243 int dbg_tick; /* debug_tick when breakpoint was set */
244 int level; /* top nesting level of executed function */
245 #ifdef FEAT_PROFILE
246 proftime_T prof_child; /* time spent in a child */
247 #endif
248 funccall_T *caller; /* calling function or NULL */
252 * Info used by a ":for" loop.
254 typedef struct
256 int fi_semicolon; /* TRUE if ending in '; var]' */
257 int fi_varcount; /* nr of variables in the list */
258 listwatch_T fi_lw; /* keep an eye on the item used. */
259 list_T *fi_list; /* list being used */
260 } forinfo_T;
263 * Struct used by trans_function_name()
265 typedef struct
267 dict_T *fd_dict; /* Dictionary used */
268 char_u *fd_newkey; /* new key in "dict" in allocated memory */
269 dictitem_T *fd_di; /* Dictionary item used */
270 } funcdict_T;
274 * Array to hold the value of v: variables.
275 * The value is in a dictitem, so that it can also be used in the v: scope.
276 * The reason to use this table anyway is for very quick access to the
277 * variables with the VV_ defines.
279 #include "version.h"
281 /* values for vv_flags: */
282 #define VV_COMPAT 1 /* compatible, also used without "v:" */
283 #define VV_RO 2 /* read-only */
284 #define VV_RO_SBX 4 /* read-only in the sandbox */
286 #define VV_NAME(s, t) s, {{t}}, {0}
288 static struct vimvar
290 char *vv_name; /* name of variable, without v: */
291 dictitem_T vv_di; /* value and name for key */
292 char vv_filler[16]; /* space for LONGEST name below!!! */
293 char vv_flags; /* VV_COMPAT, VV_RO, VV_RO_SBX */
294 } vimvars[VV_LEN] =
297 * The order here must match the VV_ defines in vim.h!
298 * Initializing a union does not work, leave tv.vval empty to get zero's.
300 {VV_NAME("count", VAR_NUMBER), VV_COMPAT+VV_RO},
301 {VV_NAME("count1", VAR_NUMBER), VV_RO},
302 {VV_NAME("prevcount", VAR_NUMBER), VV_RO},
303 {VV_NAME("errmsg", VAR_STRING), VV_COMPAT},
304 {VV_NAME("warningmsg", VAR_STRING), 0},
305 {VV_NAME("statusmsg", VAR_STRING), 0},
306 {VV_NAME("shell_error", VAR_NUMBER), VV_COMPAT+VV_RO},
307 {VV_NAME("this_session", VAR_STRING), VV_COMPAT},
308 {VV_NAME("version", VAR_NUMBER), VV_COMPAT+VV_RO},
309 {VV_NAME("lnum", VAR_NUMBER), VV_RO_SBX},
310 {VV_NAME("termresponse", VAR_STRING), VV_RO},
311 {VV_NAME("fname", VAR_STRING), VV_RO},
312 {VV_NAME("lang", VAR_STRING), VV_RO},
313 {VV_NAME("lc_time", VAR_STRING), VV_RO},
314 {VV_NAME("ctype", VAR_STRING), VV_RO},
315 {VV_NAME("charconvert_from", VAR_STRING), VV_RO},
316 {VV_NAME("charconvert_to", VAR_STRING), VV_RO},
317 {VV_NAME("fname_in", VAR_STRING), VV_RO},
318 {VV_NAME("fname_out", VAR_STRING), VV_RO},
319 {VV_NAME("fname_new", VAR_STRING), VV_RO},
320 {VV_NAME("fname_diff", VAR_STRING), VV_RO},
321 {VV_NAME("cmdarg", VAR_STRING), VV_RO},
322 {VV_NAME("foldstart", VAR_NUMBER), VV_RO_SBX},
323 {VV_NAME("foldend", VAR_NUMBER), VV_RO_SBX},
324 {VV_NAME("folddashes", VAR_STRING), VV_RO_SBX},
325 {VV_NAME("foldlevel", VAR_NUMBER), VV_RO_SBX},
326 {VV_NAME("progname", VAR_STRING), VV_RO},
327 {VV_NAME("servername", VAR_STRING), VV_RO},
328 {VV_NAME("dying", VAR_NUMBER), VV_RO},
329 {VV_NAME("exception", VAR_STRING), VV_RO},
330 {VV_NAME("throwpoint", VAR_STRING), VV_RO},
331 {VV_NAME("register", VAR_STRING), VV_RO},
332 {VV_NAME("cmdbang", VAR_NUMBER), VV_RO},
333 {VV_NAME("insertmode", VAR_STRING), VV_RO},
334 {VV_NAME("val", VAR_UNKNOWN), VV_RO},
335 {VV_NAME("key", VAR_UNKNOWN), VV_RO},
336 {VV_NAME("profiling", VAR_NUMBER), VV_RO},
337 {VV_NAME("fcs_reason", VAR_STRING), VV_RO},
338 {VV_NAME("fcs_choice", VAR_STRING), 0},
339 {VV_NAME("beval_bufnr", VAR_NUMBER), VV_RO},
340 {VV_NAME("beval_winnr", VAR_NUMBER), VV_RO},
341 {VV_NAME("beval_lnum", VAR_NUMBER), VV_RO},
342 {VV_NAME("beval_col", VAR_NUMBER), VV_RO},
343 {VV_NAME("beval_text", VAR_STRING), VV_RO},
344 {VV_NAME("scrollstart", VAR_STRING), 0},
345 {VV_NAME("swapname", VAR_STRING), VV_RO},
346 {VV_NAME("swapchoice", VAR_STRING), 0},
347 {VV_NAME("swapcommand", VAR_STRING), VV_RO},
348 {VV_NAME("char", VAR_STRING), VV_RO},
349 {VV_NAME("mouse_win", VAR_NUMBER), 0},
350 {VV_NAME("mouse_lnum", VAR_NUMBER), 0},
351 {VV_NAME("mouse_col", VAR_NUMBER), 0},
352 {VV_NAME("operator", VAR_STRING), VV_RO},
353 {VV_NAME("searchforward", VAR_NUMBER), 0},
354 {VV_NAME("oldfiles", VAR_LIST), 0},
357 /* shorthand */
358 #define vv_type vv_di.di_tv.v_type
359 #define vv_nr vv_di.di_tv.vval.v_number
360 #define vv_float vv_di.di_tv.vval.v_float
361 #define vv_str vv_di.di_tv.vval.v_string
362 #define vv_list vv_di.di_tv.vval.v_list
363 #define vv_tv vv_di.di_tv
366 * The v: variables are stored in dictionary "vimvardict".
367 * "vimvars_var" is the variable that is used for the "l:" scope.
369 static dict_T vimvardict;
370 static dictitem_T vimvars_var;
371 #define vimvarht vimvardict.dv_hashtab
373 static void prepare_vimvar __ARGS((int idx, typval_T *save_tv));
374 static void restore_vimvar __ARGS((int idx, typval_T *save_tv));
375 #if defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL)
376 static int call_vim_function __ARGS((char_u *func, int argc, char_u **argv, int safe, typval_T *rettv));
377 #endif
378 static int ex_let_vars __ARGS((char_u *arg, typval_T *tv, int copy, int semicolon, int var_count, char_u *nextchars));
379 static char_u *skip_var_list __ARGS((char_u *arg, int *var_count, int *semicolon));
380 static char_u *skip_var_one __ARGS((char_u *arg));
381 static void list_hashtable_vars __ARGS((hashtab_T *ht, char_u *prefix, int empty, int *first));
382 static void list_glob_vars __ARGS((int *first));
383 static void list_buf_vars __ARGS((int *first));
384 static void list_win_vars __ARGS((int *first));
385 #ifdef FEAT_WINDOWS
386 static void list_tab_vars __ARGS((int *first));
387 #endif
388 static void list_vim_vars __ARGS((int *first));
389 static void list_script_vars __ARGS((int *first));
390 static void list_func_vars __ARGS((int *first));
391 static char_u *list_arg_vars __ARGS((exarg_T *eap, char_u *arg, int *first));
392 static char_u *ex_let_one __ARGS((char_u *arg, typval_T *tv, int copy, char_u *endchars, char_u *op));
393 static int check_changedtick __ARGS((char_u *arg));
394 static char_u *get_lval __ARGS((char_u *name, typval_T *rettv, lval_T *lp, int unlet, int skip, int quiet, int fne_flags));
395 static void clear_lval __ARGS((lval_T *lp));
396 static void set_var_lval __ARGS((lval_T *lp, char_u *endp, typval_T *rettv, int copy, char_u *op));
397 static int tv_op __ARGS((typval_T *tv1, typval_T *tv2, char_u *op));
398 static void list_add_watch __ARGS((list_T *l, listwatch_T *lw));
399 static void list_rem_watch __ARGS((list_T *l, listwatch_T *lwrem));
400 static void list_fix_watch __ARGS((list_T *l, listitem_T *item));
401 static void ex_unletlock __ARGS((exarg_T *eap, char_u *argstart, int deep));
402 static int do_unlet_var __ARGS((lval_T *lp, char_u *name_end, int forceit));
403 static int do_lock_var __ARGS((lval_T *lp, char_u *name_end, int deep, int lock));
404 static void item_lock __ARGS((typval_T *tv, int deep, int lock));
405 static int tv_islocked __ARGS((typval_T *tv));
407 static int eval0 __ARGS((char_u *arg, typval_T *rettv, char_u **nextcmd, int evaluate));
408 static int eval1 __ARGS((char_u **arg, typval_T *rettv, int evaluate));
409 static int eval2 __ARGS((char_u **arg, typval_T *rettv, int evaluate));
410 static int eval3 __ARGS((char_u **arg, typval_T *rettv, int evaluate));
411 static int eval4 __ARGS((char_u **arg, typval_T *rettv, int evaluate));
412 static int eval5 __ARGS((char_u **arg, typval_T *rettv, int evaluate));
413 static int eval6 __ARGS((char_u **arg, typval_T *rettv, int evaluate, int want_string));
414 static int eval7 __ARGS((char_u **arg, typval_T *rettv, int evaluate, int want_string));
416 static int eval_index __ARGS((char_u **arg, typval_T *rettv, int evaluate, int verbose));
417 static int get_option_tv __ARGS((char_u **arg, typval_T *rettv, int evaluate));
418 static int get_string_tv __ARGS((char_u **arg, typval_T *rettv, int evaluate));
419 static int get_lit_string_tv __ARGS((char_u **arg, typval_T *rettv, int evaluate));
420 static int get_list_tv __ARGS((char_u **arg, typval_T *rettv, int evaluate));
421 static int rettv_list_alloc __ARGS((typval_T *rettv));
422 static listitem_T *listitem_alloc __ARGS((void));
423 static void listitem_free __ARGS((listitem_T *item));
424 static void listitem_remove __ARGS((list_T *l, listitem_T *item));
425 static long list_len __ARGS((list_T *l));
426 static int list_equal __ARGS((list_T *l1, list_T *l2, int ic));
427 static int dict_equal __ARGS((dict_T *d1, dict_T *d2, int ic));
428 static int tv_equal __ARGS((typval_T *tv1, typval_T *tv2, int ic));
429 static listitem_T *list_find __ARGS((list_T *l, long n));
430 static long list_find_nr __ARGS((list_T *l, long idx, int *errorp));
431 static long list_idx_of_item __ARGS((list_T *l, listitem_T *item));
432 static void list_append __ARGS((list_T *l, listitem_T *item));
433 static int list_append_tv __ARGS((list_T *l, typval_T *tv));
434 static int list_append_number __ARGS((list_T *l, varnumber_T n));
435 static int list_insert_tv __ARGS((list_T *l, typval_T *tv, listitem_T *item));
436 static int list_extend __ARGS((list_T *l1, list_T *l2, listitem_T *bef));
437 static int list_concat __ARGS((list_T *l1, list_T *l2, typval_T *tv));
438 static list_T *list_copy __ARGS((list_T *orig, int deep, int copyID));
439 static void list_remove __ARGS((list_T *l, listitem_T *item, listitem_T *item2));
440 static char_u *list2string __ARGS((typval_T *tv, int copyID));
441 static int list_join __ARGS((garray_T *gap, list_T *l, char_u *sep, int echo, int copyID));
442 static void set_ref_in_ht __ARGS((hashtab_T *ht, int copyID));
443 static void set_ref_in_list __ARGS((list_T *l, int copyID));
444 static void set_ref_in_item __ARGS((typval_T *tv, int copyID));
445 static void dict_unref __ARGS((dict_T *d));
446 static void dict_free __ARGS((dict_T *d, int recurse));
447 static dictitem_T *dictitem_alloc __ARGS((char_u *key));
448 static dictitem_T *dictitem_copy __ARGS((dictitem_T *org));
449 static void dictitem_remove __ARGS((dict_T *dict, dictitem_T *item));
450 static void dictitem_free __ARGS((dictitem_T *item));
451 static dict_T *dict_copy __ARGS((dict_T *orig, int deep, int copyID));
452 static int dict_add __ARGS((dict_T *d, dictitem_T *item));
453 static long dict_len __ARGS((dict_T *d));
454 static dictitem_T *dict_find __ARGS((dict_T *d, char_u *key, int len));
455 static char_u *dict2string __ARGS((typval_T *tv, int copyID));
456 static int get_dict_tv __ARGS((char_u **arg, typval_T *rettv, int evaluate));
457 static char_u *echo_string __ARGS((typval_T *tv, char_u **tofree, char_u *numbuf, int copyID));
458 static char_u *tv2string __ARGS((typval_T *tv, char_u **tofree, char_u *numbuf, int copyID));
459 static char_u *string_quote __ARGS((char_u *str, int function));
460 #ifdef FEAT_FLOAT
461 static int string2float __ARGS((char_u *text, float_T *value));
462 #endif
463 static int get_env_tv __ARGS((char_u **arg, typval_T *rettv, int evaluate));
464 static int find_internal_func __ARGS((char_u *name));
465 static char_u *deref_func_name __ARGS((char_u *name, int *lenp));
466 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));
467 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));
468 static void emsg_funcname __ARGS((char *ermsg, char_u *name));
469 static int non_zero_arg __ARGS((typval_T *argvars));
471 #ifdef FEAT_FLOAT
472 static void f_abs __ARGS((typval_T *argvars, typval_T *rettv));
473 #endif
474 static void f_add __ARGS((typval_T *argvars, typval_T *rettv));
475 static void f_append __ARGS((typval_T *argvars, typval_T *rettv));
476 static void f_argc __ARGS((typval_T *argvars, typval_T *rettv));
477 static void f_argidx __ARGS((typval_T *argvars, typval_T *rettv));
478 static void f_argv __ARGS((typval_T *argvars, typval_T *rettv));
479 #ifdef FEAT_FLOAT
480 static void f_atan __ARGS((typval_T *argvars, typval_T *rettv));
481 #endif
482 static void f_browse __ARGS((typval_T *argvars, typval_T *rettv));
483 static void f_browsedir __ARGS((typval_T *argvars, typval_T *rettv));
484 static void f_bufexists __ARGS((typval_T *argvars, typval_T *rettv));
485 static void f_buflisted __ARGS((typval_T *argvars, typval_T *rettv));
486 static void f_bufloaded __ARGS((typval_T *argvars, typval_T *rettv));
487 static void f_bufname __ARGS((typval_T *argvars, typval_T *rettv));
488 static void f_bufnr __ARGS((typval_T *argvars, typval_T *rettv));
489 static void f_bufwinnr __ARGS((typval_T *argvars, typval_T *rettv));
490 static void f_byte2line __ARGS((typval_T *argvars, typval_T *rettv));
491 static void f_byteidx __ARGS((typval_T *argvars, typval_T *rettv));
492 static void f_call __ARGS((typval_T *argvars, typval_T *rettv));
493 #ifdef FEAT_FLOAT
494 static void f_ceil __ARGS((typval_T *argvars, typval_T *rettv));
495 #endif
496 static void f_changenr __ARGS((typval_T *argvars, typval_T *rettv));
497 static void f_char2nr __ARGS((typval_T *argvars, typval_T *rettv));
498 static void f_cindent __ARGS((typval_T *argvars, typval_T *rettv));
499 static void f_clearmatches __ARGS((typval_T *argvars, typval_T *rettv));
500 static void f_col __ARGS((typval_T *argvars, typval_T *rettv));
501 #if defined(FEAT_INS_EXPAND)
502 static void f_complete __ARGS((typval_T *argvars, typval_T *rettv));
503 static void f_complete_add __ARGS((typval_T *argvars, typval_T *rettv));
504 static void f_complete_check __ARGS((typval_T *argvars, typval_T *rettv));
505 #endif
506 static void f_confirm __ARGS((typval_T *argvars, typval_T *rettv));
507 static void f_copy __ARGS((typval_T *argvars, typval_T *rettv));
508 #ifdef FEAT_FLOAT
509 static void f_cos __ARGS((typval_T *argvars, typval_T *rettv));
510 #endif
511 static void f_count __ARGS((typval_T *argvars, typval_T *rettv));
512 static void f_cscope_connection __ARGS((typval_T *argvars, typval_T *rettv));
513 static void f_cursor __ARGS((typval_T *argsvars, typval_T *rettv));
514 static void f_deepcopy __ARGS((typval_T *argvars, typval_T *rettv));
515 static void f_delete __ARGS((typval_T *argvars, typval_T *rettv));
516 static void f_did_filetype __ARGS((typval_T *argvars, typval_T *rettv));
517 static void f_diff_filler __ARGS((typval_T *argvars, typval_T *rettv));
518 static void f_diff_hlID __ARGS((typval_T *argvars, typval_T *rettv));
519 static void f_empty __ARGS((typval_T *argvars, typval_T *rettv));
520 static void f_escape __ARGS((typval_T *argvars, typval_T *rettv));
521 static void f_eval __ARGS((typval_T *argvars, typval_T *rettv));
522 static void f_eventhandler __ARGS((typval_T *argvars, typval_T *rettv));
523 static void f_executable __ARGS((typval_T *argvars, typval_T *rettv));
524 static void f_exists __ARGS((typval_T *argvars, typval_T *rettv));
525 static void f_expand __ARGS((typval_T *argvars, typval_T *rettv));
526 static void f_extend __ARGS((typval_T *argvars, typval_T *rettv));
527 static void f_feedkeys __ARGS((typval_T *argvars, typval_T *rettv));
528 static void f_filereadable __ARGS((typval_T *argvars, typval_T *rettv));
529 static void f_filewritable __ARGS((typval_T *argvars, typval_T *rettv));
530 static void f_filter __ARGS((typval_T *argvars, typval_T *rettv));
531 static void f_finddir __ARGS((typval_T *argvars, typval_T *rettv));
532 static void f_findfile __ARGS((typval_T *argvars, typval_T *rettv));
533 #ifdef FEAT_FLOAT
534 static void f_float2nr __ARGS((typval_T *argvars, typval_T *rettv));
535 static void f_floor __ARGS((typval_T *argvars, typval_T *rettv));
536 #endif
537 static void f_fnameescape __ARGS((typval_T *argvars, typval_T *rettv));
538 static void f_fnamemodify __ARGS((typval_T *argvars, typval_T *rettv));
539 static void f_foldclosed __ARGS((typval_T *argvars, typval_T *rettv));
540 static void f_foldclosedend __ARGS((typval_T *argvars, typval_T *rettv));
541 static void f_foldlevel __ARGS((typval_T *argvars, typval_T *rettv));
542 static void f_foldtext __ARGS((typval_T *argvars, typval_T *rettv));
543 static void f_foldtextresult __ARGS((typval_T *argvars, typval_T *rettv));
544 static void f_foreground __ARGS((typval_T *argvars, typval_T *rettv));
545 static void f_function __ARGS((typval_T *argvars, typval_T *rettv));
546 static void f_garbagecollect __ARGS((typval_T *argvars, typval_T *rettv));
547 static void f_get __ARGS((typval_T *argvars, typval_T *rettv));
548 static void f_getbufline __ARGS((typval_T *argvars, typval_T *rettv));
549 static void f_getbufvar __ARGS((typval_T *argvars, typval_T *rettv));
550 static void f_getchar __ARGS((typval_T *argvars, typval_T *rettv));
551 static void f_getcharmod __ARGS((typval_T *argvars, typval_T *rettv));
552 static void f_getcmdline __ARGS((typval_T *argvars, typval_T *rettv));
553 static void f_getcmdpos __ARGS((typval_T *argvars, typval_T *rettv));
554 static void f_getcmdtype __ARGS((typval_T *argvars, typval_T *rettv));
555 static void f_getcwd __ARGS((typval_T *argvars, typval_T *rettv));
556 static void f_getfontname __ARGS((typval_T *argvars, typval_T *rettv));
557 static void f_getfperm __ARGS((typval_T *argvars, typval_T *rettv));
558 static void f_getfsize __ARGS((typval_T *argvars, typval_T *rettv));
559 static void f_getftime __ARGS((typval_T *argvars, typval_T *rettv));
560 static void f_getftype __ARGS((typval_T *argvars, typval_T *rettv));
561 static void f_getline __ARGS((typval_T *argvars, typval_T *rettv));
562 static void f_getmatches __ARGS((typval_T *argvars, typval_T *rettv));
563 static void f_getpid __ARGS((typval_T *argvars, typval_T *rettv));
564 static void f_getpos __ARGS((typval_T *argvars, typval_T *rettv));
565 static void f_getqflist __ARGS((typval_T *argvars, typval_T *rettv));
566 static void f_getreg __ARGS((typval_T *argvars, typval_T *rettv));
567 static void f_getregtype __ARGS((typval_T *argvars, typval_T *rettv));
568 static void f_gettabwinvar __ARGS((typval_T *argvars, typval_T *rettv));
569 static void f_getwinposx __ARGS((typval_T *argvars, typval_T *rettv));
570 static void f_getwinposy __ARGS((typval_T *argvars, typval_T *rettv));
571 static void f_getwinvar __ARGS((typval_T *argvars, typval_T *rettv));
572 static void f_glob __ARGS((typval_T *argvars, typval_T *rettv));
573 static void f_globpath __ARGS((typval_T *argvars, typval_T *rettv));
574 static void f_has __ARGS((typval_T *argvars, typval_T *rettv));
575 static void f_has_key __ARGS((typval_T *argvars, typval_T *rettv));
576 static void f_haslocaldir __ARGS((typval_T *argvars, typval_T *rettv));
577 static void f_hasmapto __ARGS((typval_T *argvars, typval_T *rettv));
578 static void f_histadd __ARGS((typval_T *argvars, typval_T *rettv));
579 static void f_histdel __ARGS((typval_T *argvars, typval_T *rettv));
580 static void f_histget __ARGS((typval_T *argvars, typval_T *rettv));
581 static void f_histnr __ARGS((typval_T *argvars, typval_T *rettv));
582 static void f_hlID __ARGS((typval_T *argvars, typval_T *rettv));
583 static void f_hlexists __ARGS((typval_T *argvars, typval_T *rettv));
584 static void f_hostname __ARGS((typval_T *argvars, typval_T *rettv));
585 static void f_iconv __ARGS((typval_T *argvars, typval_T *rettv));
586 static void f_indent __ARGS((typval_T *argvars, typval_T *rettv));
587 static void f_index __ARGS((typval_T *argvars, typval_T *rettv));
588 static void f_input __ARGS((typval_T *argvars, typval_T *rettv));
589 static void f_inputdialog __ARGS((typval_T *argvars, typval_T *rettv));
590 static void f_inputlist __ARGS((typval_T *argvars, typval_T *rettv));
591 static void f_inputrestore __ARGS((typval_T *argvars, typval_T *rettv));
592 static void f_inputsave __ARGS((typval_T *argvars, typval_T *rettv));
593 static void f_inputsecret __ARGS((typval_T *argvars, typval_T *rettv));
594 static void f_insert __ARGS((typval_T *argvars, typval_T *rettv));
595 static void f_isdirectory __ARGS((typval_T *argvars, typval_T *rettv));
596 static void f_islocked __ARGS((typval_T *argvars, typval_T *rettv));
597 static void f_items __ARGS((typval_T *argvars, typval_T *rettv));
598 static void f_join __ARGS((typval_T *argvars, typval_T *rettv));
599 static void f_keys __ARGS((typval_T *argvars, typval_T *rettv));
600 static void f_last_buffer_nr __ARGS((typval_T *argvars, typval_T *rettv));
601 static void f_len __ARGS((typval_T *argvars, typval_T *rettv));
602 static void f_libcall __ARGS((typval_T *argvars, typval_T *rettv));
603 static void f_libcallnr __ARGS((typval_T *argvars, typval_T *rettv));
604 static void f_line __ARGS((typval_T *argvars, typval_T *rettv));
605 static void f_line2byte __ARGS((typval_T *argvars, typval_T *rettv));
606 static void f_lispindent __ARGS((typval_T *argvars, typval_T *rettv));
607 static void f_localtime __ARGS((typval_T *argvars, typval_T *rettv));
608 #ifdef FEAT_FLOAT
609 static void f_log10 __ARGS((typval_T *argvars, typval_T *rettv));
610 #endif
611 static void f_map __ARGS((typval_T *argvars, typval_T *rettv));
612 static void f_maparg __ARGS((typval_T *argvars, typval_T *rettv));
613 static void f_mapcheck __ARGS((typval_T *argvars, typval_T *rettv));
614 static void f_match __ARGS((typval_T *argvars, typval_T *rettv));
615 static void f_matchadd __ARGS((typval_T *argvars, typval_T *rettv));
616 static void f_matcharg __ARGS((typval_T *argvars, typval_T *rettv));
617 static void f_matchdelete __ARGS((typval_T *argvars, typval_T *rettv));
618 static void f_matchend __ARGS((typval_T *argvars, typval_T *rettv));
619 static void f_matchlist __ARGS((typval_T *argvars, typval_T *rettv));
620 static void f_matchstr __ARGS((typval_T *argvars, typval_T *rettv));
621 static void f_max __ARGS((typval_T *argvars, typval_T *rettv));
622 static void f_min __ARGS((typval_T *argvars, typval_T *rettv));
623 #ifdef vim_mkdir
624 static void f_mkdir __ARGS((typval_T *argvars, typval_T *rettv));
625 #endif
626 static void f_mode __ARGS((typval_T *argvars, typval_T *rettv));
627 static void f_nextnonblank __ARGS((typval_T *argvars, typval_T *rettv));
628 static void f_nr2char __ARGS((typval_T *argvars, typval_T *rettv));
629 static void f_pathshorten __ARGS((typval_T *argvars, typval_T *rettv));
630 #ifdef FEAT_FLOAT
631 static void f_pow __ARGS((typval_T *argvars, typval_T *rettv));
632 #endif
633 static void f_prevnonblank __ARGS((typval_T *argvars, typval_T *rettv));
634 static void f_printf __ARGS((typval_T *argvars, typval_T *rettv));
635 static void f_pumvisible __ARGS((typval_T *argvars, typval_T *rettv));
636 static void f_range __ARGS((typval_T *argvars, typval_T *rettv));
637 static void f_readfile __ARGS((typval_T *argvars, typval_T *rettv));
638 static void f_reltime __ARGS((typval_T *argvars, typval_T *rettv));
639 static void f_reltimestr __ARGS((typval_T *argvars, typval_T *rettv));
640 static void f_remote_expr __ARGS((typval_T *argvars, typval_T *rettv));
641 static void f_remote_foreground __ARGS((typval_T *argvars, typval_T *rettv));
642 static void f_remote_peek __ARGS((typval_T *argvars, typval_T *rettv));
643 static void f_remote_read __ARGS((typval_T *argvars, typval_T *rettv));
644 static void f_remote_send __ARGS((typval_T *argvars, typval_T *rettv));
645 static void f_remove __ARGS((typval_T *argvars, typval_T *rettv));
646 static void f_rename __ARGS((typval_T *argvars, typval_T *rettv));
647 static void f_repeat __ARGS((typval_T *argvars, typval_T *rettv));
648 static void f_resolve __ARGS((typval_T *argvars, typval_T *rettv));
649 static void f_reverse __ARGS((typval_T *argvars, typval_T *rettv));
650 #ifdef FEAT_FLOAT
651 static void f_round __ARGS((typval_T *argvars, typval_T *rettv));
652 #endif
653 static void f_search __ARGS((typval_T *argvars, typval_T *rettv));
654 static void f_searchdecl __ARGS((typval_T *argvars, typval_T *rettv));
655 static void f_searchpair __ARGS((typval_T *argvars, typval_T *rettv));
656 static void f_searchpairpos __ARGS((typval_T *argvars, typval_T *rettv));
657 static void f_searchpos __ARGS((typval_T *argvars, typval_T *rettv));
658 static void f_server2client __ARGS((typval_T *argvars, typval_T *rettv));
659 static void f_serverlist __ARGS((typval_T *argvars, typval_T *rettv));
660 static void f_setbufvar __ARGS((typval_T *argvars, typval_T *rettv));
661 static void f_setcmdpos __ARGS((typval_T *argvars, typval_T *rettv));
662 static void f_setline __ARGS((typval_T *argvars, typval_T *rettv));
663 static void f_setloclist __ARGS((typval_T *argvars, typval_T *rettv));
664 static void f_setmatches __ARGS((typval_T *argvars, typval_T *rettv));
665 static void f_setpos __ARGS((typval_T *argvars, typval_T *rettv));
666 static void f_setqflist __ARGS((typval_T *argvars, typval_T *rettv));
667 static void f_setreg __ARGS((typval_T *argvars, typval_T *rettv));
668 static void f_settabwinvar __ARGS((typval_T *argvars, typval_T *rettv));
669 static void f_setwinvar __ARGS((typval_T *argvars, typval_T *rettv));
670 static void f_shellescape __ARGS((typval_T *argvars, typval_T *rettv));
671 static void f_simplify __ARGS((typval_T *argvars, typval_T *rettv));
672 #ifdef FEAT_FLOAT
673 static void f_sin __ARGS((typval_T *argvars, typval_T *rettv));
674 #endif
675 static void f_sort __ARGS((typval_T *argvars, typval_T *rettv));
676 static void f_soundfold __ARGS((typval_T *argvars, typval_T *rettv));
677 static void f_spellbadword __ARGS((typval_T *argvars, typval_T *rettv));
678 static void f_spellsuggest __ARGS((typval_T *argvars, typval_T *rettv));
679 static void f_split __ARGS((typval_T *argvars, typval_T *rettv));
680 #ifdef FEAT_FLOAT
681 static void f_sqrt __ARGS((typval_T *argvars, typval_T *rettv));
682 static void f_str2float __ARGS((typval_T *argvars, typval_T *rettv));
683 #endif
684 static void f_str2nr __ARGS((typval_T *argvars, typval_T *rettv));
685 #ifdef HAVE_STRFTIME
686 static void f_strftime __ARGS((typval_T *argvars, typval_T *rettv));
687 #endif
688 static void f_stridx __ARGS((typval_T *argvars, typval_T *rettv));
689 static void f_string __ARGS((typval_T *argvars, typval_T *rettv));
690 static void f_strlen __ARGS((typval_T *argvars, typval_T *rettv));
691 static void f_strpart __ARGS((typval_T *argvars, typval_T *rettv));
692 static void f_strridx __ARGS((typval_T *argvars, typval_T *rettv));
693 static void f_strtrans __ARGS((typval_T *argvars, typval_T *rettv));
694 static void f_submatch __ARGS((typval_T *argvars, typval_T *rettv));
695 static void f_substitute __ARGS((typval_T *argvars, typval_T *rettv));
696 static void f_synID __ARGS((typval_T *argvars, typval_T *rettv));
697 static void f_synIDattr __ARGS((typval_T *argvars, typval_T *rettv));
698 static void f_synIDtrans __ARGS((typval_T *argvars, typval_T *rettv));
699 static void f_synstack __ARGS((typval_T *argvars, typval_T *rettv));
700 static void f_system __ARGS((typval_T *argvars, typval_T *rettv));
701 static void f_tabpagebuflist __ARGS((typval_T *argvars, typval_T *rettv));
702 static void f_tabpagenr __ARGS((typval_T *argvars, typval_T *rettv));
703 static void f_tabpagewinnr __ARGS((typval_T *argvars, typval_T *rettv));
704 static void f_taglist __ARGS((typval_T *argvars, typval_T *rettv));
705 static void f_tagfiles __ARGS((typval_T *argvars, typval_T *rettv));
706 static void f_tempname __ARGS((typval_T *argvars, typval_T *rettv));
707 static void f_test __ARGS((typval_T *argvars, typval_T *rettv));
708 static void f_tolower __ARGS((typval_T *argvars, typval_T *rettv));
709 static void f_toupper __ARGS((typval_T *argvars, typval_T *rettv));
710 static void f_tr __ARGS((typval_T *argvars, typval_T *rettv));
711 #ifdef FEAT_FLOAT
712 static void f_trunc __ARGS((typval_T *argvars, typval_T *rettv));
713 #endif
714 static void f_type __ARGS((typval_T *argvars, typval_T *rettv));
715 static void f_values __ARGS((typval_T *argvars, typval_T *rettv));
716 static void f_virtcol __ARGS((typval_T *argvars, typval_T *rettv));
717 static void f_visualmode __ARGS((typval_T *argvars, typval_T *rettv));
718 static void f_winbufnr __ARGS((typval_T *argvars, typval_T *rettv));
719 static void f_wincol __ARGS((typval_T *argvars, typval_T *rettv));
720 static void f_winheight __ARGS((typval_T *argvars, typval_T *rettv));
721 static void f_winline __ARGS((typval_T *argvars, typval_T *rettv));
722 static void f_winnr __ARGS((typval_T *argvars, typval_T *rettv));
723 static void f_winrestcmd __ARGS((typval_T *argvars, typval_T *rettv));
724 static void f_winrestview __ARGS((typval_T *argvars, typval_T *rettv));
725 static void f_winsaveview __ARGS((typval_T *argvars, typval_T *rettv));
726 static void f_winwidth __ARGS((typval_T *argvars, typval_T *rettv));
727 static void f_writefile __ARGS((typval_T *argvars, typval_T *rettv));
729 static int list2fpos __ARGS((typval_T *arg, pos_T *posp, int *fnump));
730 static pos_T *var2fpos __ARGS((typval_T *varp, int dollar_lnum, int *fnum));
731 static int get_env_len __ARGS((char_u **arg));
732 static int get_id_len __ARGS((char_u **arg));
733 static int get_name_len __ARGS((char_u **arg, char_u **alias, int evaluate, int verbose));
734 static char_u *find_name_end __ARGS((char_u *arg, char_u **expr_start, char_u **expr_end, int flags));
735 #define FNE_INCL_BR 1 /* find_name_end(): include [] in name */
736 #define FNE_CHECK_START 2 /* find_name_end(): check name starts with
737 valid character */
738 static char_u * make_expanded_name __ARGS((char_u *in_start, char_u *expr_start, char_u *expr_end, char_u *in_end));
739 static int eval_isnamec __ARGS((int c));
740 static int eval_isnamec1 __ARGS((int c));
741 static int get_var_tv __ARGS((char_u *name, int len, typval_T *rettv, int verbose));
742 static int handle_subscript __ARGS((char_u **arg, typval_T *rettv, int evaluate, int verbose));
743 static typval_T *alloc_tv __ARGS((void));
744 static typval_T *alloc_string_tv __ARGS((char_u *string));
745 static void init_tv __ARGS((typval_T *varp));
746 static long get_tv_number __ARGS((typval_T *varp));
747 static linenr_T get_tv_lnum __ARGS((typval_T *argvars));
748 static linenr_T get_tv_lnum_buf __ARGS((typval_T *argvars, buf_T *buf));
749 static char_u *get_tv_string __ARGS((typval_T *varp));
750 static char_u *get_tv_string_buf __ARGS((typval_T *varp, char_u *buf));
751 static char_u *get_tv_string_buf_chk __ARGS((typval_T *varp, char_u *buf));
752 static dictitem_T *find_var __ARGS((char_u *name, hashtab_T **htp));
753 static dictitem_T *find_var_in_ht __ARGS((hashtab_T *ht, char_u *varname, int writing));
754 static hashtab_T *find_var_ht __ARGS((char_u *name, char_u **varname));
755 static void vars_clear_ext __ARGS((hashtab_T *ht, int free_val));
756 static void delete_var __ARGS((hashtab_T *ht, hashitem_T *hi));
757 static void list_one_var __ARGS((dictitem_T *v, char_u *prefix, int *first));
758 static void list_one_var_a __ARGS((char_u *prefix, char_u *name, int type, char_u *string, int *first));
759 static void set_var __ARGS((char_u *name, typval_T *varp, int copy));
760 static int var_check_ro __ARGS((int flags, char_u *name));
761 static int var_check_fixed __ARGS((int flags, char_u *name));
762 static int tv_check_lock __ARGS((int lock, char_u *name));
763 static void copy_tv __ARGS((typval_T *from, typval_T *to));
764 static int item_copy __ARGS((typval_T *from, typval_T *to, int deep, int copyID));
765 static char_u *find_option_end __ARGS((char_u **arg, int *opt_flags));
766 static char_u *trans_function_name __ARGS((char_u **pp, int skip, int flags, funcdict_T *fd));
767 static int eval_fname_script __ARGS((char_u *p));
768 static int eval_fname_sid __ARGS((char_u *p));
769 static void list_func_head __ARGS((ufunc_T *fp, int indent));
770 static ufunc_T *find_func __ARGS((char_u *name));
771 static int function_exists __ARGS((char_u *name));
772 static int builtin_function __ARGS((char_u *name));
773 #ifdef FEAT_PROFILE
774 static void func_do_profile __ARGS((ufunc_T *fp));
775 static void prof_sort_list __ARGS((FILE *fd, ufunc_T **sorttab, int st_len, char *title, int prefer_self));
776 static void prof_func_line __ARGS((FILE *fd, int count, proftime_T *total, proftime_T *self, int prefer_self));
777 static int
778 # ifdef __BORLANDC__
779 _RTLENTRYF
780 # endif
781 prof_total_cmp __ARGS((const void *s1, const void *s2));
782 static int
783 # ifdef __BORLANDC__
784 _RTLENTRYF
785 # endif
786 prof_self_cmp __ARGS((const void *s1, const void *s2));
787 #endif
788 static int script_autoload __ARGS((char_u *name, int reload));
789 static char_u *autoload_name __ARGS((char_u *name));
790 static void cat_func_name __ARGS((char_u *buf, ufunc_T *fp));
791 static void func_free __ARGS((ufunc_T *fp));
792 static void func_unref __ARGS((char_u *name));
793 static void func_ref __ARGS((char_u *name));
794 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));
795 static int can_free_funccal __ARGS((funccall_T *fc, int copyID)) ;
796 static void free_funccal __ARGS((funccall_T *fc, int free_val));
797 static void add_nr_var __ARGS((dict_T *dp, dictitem_T *v, char *name, varnumber_T nr));
798 static win_T *find_win_by_nr __ARGS((typval_T *vp, tabpage_T *tp));
799 static void getwinvar __ARGS((typval_T *argvars, typval_T *rettv, int off));
800 static int searchpair_cmn __ARGS((typval_T *argvars, pos_T *match_pos));
801 static int search_cmn __ARGS((typval_T *argvars, pos_T *match_pos, int *flagsp));
802 static void setwinvar __ARGS((typval_T *argvars, typval_T *rettv, int off));
804 /* Character used as separated in autoload function/variable names. */
805 #define AUTOLOAD_CHAR '#'
808 * Initialize the global and v: variables.
810 void
811 eval_init()
813 int i;
814 struct vimvar *p;
816 init_var_dict(&globvardict, &globvars_var);
817 init_var_dict(&vimvardict, &vimvars_var);
818 hash_init(&compat_hashtab);
819 hash_init(&func_hashtab);
821 for (i = 0; i < VV_LEN; ++i)
823 p = &vimvars[i];
824 STRCPY(p->vv_di.di_key, p->vv_name);
825 if (p->vv_flags & VV_RO)
826 p->vv_di.di_flags = DI_FLAGS_RO | DI_FLAGS_FIX;
827 else if (p->vv_flags & VV_RO_SBX)
828 p->vv_di.di_flags = DI_FLAGS_RO_SBX | DI_FLAGS_FIX;
829 else
830 p->vv_di.di_flags = DI_FLAGS_FIX;
832 /* add to v: scope dict, unless the value is not always available */
833 if (p->vv_type != VAR_UNKNOWN)
834 hash_add(&vimvarht, p->vv_di.di_key);
835 if (p->vv_flags & VV_COMPAT)
836 /* add to compat scope dict */
837 hash_add(&compat_hashtab, p->vv_di.di_key);
839 set_vim_var_nr(VV_SEARCHFORWARD, 1L);
842 #if defined(EXITFREE) || defined(PROTO)
843 void
844 eval_clear()
846 int i;
847 struct vimvar *p;
849 for (i = 0; i < VV_LEN; ++i)
851 p = &vimvars[i];
852 if (p->vv_di.di_tv.v_type == VAR_STRING)
854 vim_free(p->vv_str);
855 p->vv_str = NULL;
857 else if (p->vv_di.di_tv.v_type == VAR_LIST)
859 list_unref(p->vv_list);
860 p->vv_list = NULL;
863 hash_clear(&vimvarht);
864 hash_init(&vimvarht); /* garbage_collect() will access it */
865 hash_clear(&compat_hashtab);
867 /* script-local variables */
868 for (i = 1; i <= ga_scripts.ga_len; ++i)
869 vars_clear(&SCRIPT_VARS(i));
870 ga_clear(&ga_scripts);
871 free_scriptnames();
873 /* global variables */
874 vars_clear(&globvarht);
876 /* autoloaded script names */
877 ga_clear_strings(&ga_loaded);
879 /* unreferenced lists and dicts */
880 (void)garbage_collect();
882 /* functions */
883 free_all_functions();
884 hash_clear(&func_hashtab);
886 #endif
889 * Return the name of the executed function.
891 char_u *
892 func_name(cookie)
893 void *cookie;
895 return ((funccall_T *)cookie)->func->uf_name;
899 * Return the address holding the next breakpoint line for a funccall cookie.
901 linenr_T *
902 func_breakpoint(cookie)
903 void *cookie;
905 return &((funccall_T *)cookie)->breakpoint;
909 * Return the address holding the debug tick for a funccall cookie.
911 int *
912 func_dbg_tick(cookie)
913 void *cookie;
915 return &((funccall_T *)cookie)->dbg_tick;
919 * Return the nesting level for a funccall cookie.
922 func_level(cookie)
923 void *cookie;
925 return ((funccall_T *)cookie)->level;
928 /* pointer to funccal for currently active function */
929 funccall_T *current_funccal = NULL;
931 /* pointer to list of previously used funccal, still around because some
932 * item in it is still being used. */
933 funccall_T *previous_funccal = NULL;
936 * Return TRUE when a function was ended by a ":return" command.
939 current_func_returned()
941 return current_funccal->returned;
946 * Set an internal variable to a string value. Creates the variable if it does
947 * not already exist.
949 void
950 set_internal_string_var(name, value)
951 char_u *name;
952 char_u *value;
954 char_u *val;
955 typval_T *tvp;
957 val = vim_strsave(value);
958 if (val != NULL)
960 tvp = alloc_string_tv(val);
961 if (tvp != NULL)
963 set_var(name, tvp, FALSE);
964 free_tv(tvp);
969 static lval_T *redir_lval = NULL;
970 static garray_T redir_ga; /* only valid when redir_lval is not NULL */
971 static char_u *redir_endp = NULL;
972 static char_u *redir_varname = NULL;
975 * Start recording command output to a variable
976 * Returns OK if successfully completed the setup. FAIL otherwise.
979 var_redir_start(name, append)
980 char_u *name;
981 int append; /* append to an existing variable */
983 int save_emsg;
984 int err;
985 typval_T tv;
987 /* Make sure a valid variable name is specified */
988 if (!eval_isnamec1(*name))
990 EMSG(_(e_invarg));
991 return FAIL;
994 redir_varname = vim_strsave(name);
995 if (redir_varname == NULL)
996 return FAIL;
998 redir_lval = (lval_T *)alloc_clear((unsigned)sizeof(lval_T));
999 if (redir_lval == NULL)
1001 var_redir_stop();
1002 return FAIL;
1005 /* The output is stored in growarray "redir_ga" until redirection ends. */
1006 ga_init2(&redir_ga, (int)sizeof(char), 500);
1008 /* Parse the variable name (can be a dict or list entry). */
1009 redir_endp = get_lval(redir_varname, NULL, redir_lval, FALSE, FALSE, FALSE,
1010 FNE_CHECK_START);
1011 if (redir_endp == NULL || redir_lval->ll_name == NULL || *redir_endp != NUL)
1013 if (redir_endp != NULL && *redir_endp != NUL)
1014 /* Trailing characters are present after the variable name */
1015 EMSG(_(e_trailing));
1016 else
1017 EMSG(_(e_invarg));
1018 var_redir_stop();
1019 return FAIL;
1022 /* check if we can write to the variable: set it to or append an empty
1023 * string */
1024 save_emsg = did_emsg;
1025 did_emsg = FALSE;
1026 tv.v_type = VAR_STRING;
1027 tv.vval.v_string = (char_u *)"";
1028 if (append)
1029 set_var_lval(redir_lval, redir_endp, &tv, TRUE, (char_u *)".");
1030 else
1031 set_var_lval(redir_lval, redir_endp, &tv, TRUE, (char_u *)"=");
1032 err = did_emsg;
1033 did_emsg |= save_emsg;
1034 if (err)
1036 var_redir_stop();
1037 return FAIL;
1039 if (redir_lval->ll_newkey != NULL)
1041 /* Dictionary item was created, don't do it again. */
1042 vim_free(redir_lval->ll_newkey);
1043 redir_lval->ll_newkey = NULL;
1046 return OK;
1050 * Append "value[value_len]" to the variable set by var_redir_start().
1051 * The actual appending is postponed until redirection ends, because the value
1052 * appended may in fact be the string we write to, changing it may cause freed
1053 * memory to be used:
1054 * :redir => foo
1055 * :let foo
1056 * :redir END
1058 void
1059 var_redir_str(value, value_len)
1060 char_u *value;
1061 int value_len;
1063 int len;
1065 if (redir_lval == NULL)
1066 return;
1068 if (value_len == -1)
1069 len = (int)STRLEN(value); /* Append the entire string */
1070 else
1071 len = value_len; /* Append only "value_len" characters */
1073 if (ga_grow(&redir_ga, len) == OK)
1075 mch_memmove((char *)redir_ga.ga_data + redir_ga.ga_len, value, len);
1076 redir_ga.ga_len += len;
1078 else
1079 var_redir_stop();
1083 * Stop redirecting command output to a variable.
1085 void
1086 var_redir_stop()
1088 typval_T tv;
1090 if (redir_lval != NULL)
1092 /* Append the trailing NUL. */
1093 ga_append(&redir_ga, NUL);
1095 /* Assign the text to the variable. */
1096 tv.v_type = VAR_STRING;
1097 tv.vval.v_string = redir_ga.ga_data;
1098 set_var_lval(redir_lval, redir_endp, &tv, FALSE, (char_u *)".");
1099 vim_free(tv.vval.v_string);
1101 clear_lval(redir_lval);
1102 vim_free(redir_lval);
1103 redir_lval = NULL;
1105 vim_free(redir_varname);
1106 redir_varname = NULL;
1109 # if defined(FEAT_MBYTE) || defined(PROTO)
1111 eval_charconvert(enc_from, enc_to, fname_from, fname_to)
1112 char_u *enc_from;
1113 char_u *enc_to;
1114 char_u *fname_from;
1115 char_u *fname_to;
1117 int err = FALSE;
1119 set_vim_var_string(VV_CC_FROM, enc_from, -1);
1120 set_vim_var_string(VV_CC_TO, enc_to, -1);
1121 set_vim_var_string(VV_FNAME_IN, fname_from, -1);
1122 set_vim_var_string(VV_FNAME_OUT, fname_to, -1);
1123 if (eval_to_bool(p_ccv, &err, NULL, FALSE))
1124 err = TRUE;
1125 set_vim_var_string(VV_CC_FROM, NULL, -1);
1126 set_vim_var_string(VV_CC_TO, NULL, -1);
1127 set_vim_var_string(VV_FNAME_IN, NULL, -1);
1128 set_vim_var_string(VV_FNAME_OUT, NULL, -1);
1130 if (err)
1131 return FAIL;
1132 return OK;
1134 # endif
1136 # if defined(FEAT_POSTSCRIPT) || defined(PROTO)
1138 eval_printexpr(fname, args)
1139 char_u *fname;
1140 char_u *args;
1142 int err = FALSE;
1144 set_vim_var_string(VV_FNAME_IN, fname, -1);
1145 set_vim_var_string(VV_CMDARG, args, -1);
1146 if (eval_to_bool(p_pexpr, &err, NULL, FALSE))
1147 err = TRUE;
1148 set_vim_var_string(VV_FNAME_IN, NULL, -1);
1149 set_vim_var_string(VV_CMDARG, NULL, -1);
1151 if (err)
1153 mch_remove(fname);
1154 return FAIL;
1156 return OK;
1158 # endif
1160 # if defined(FEAT_DIFF) || defined(PROTO)
1161 void
1162 eval_diff(origfile, newfile, outfile)
1163 char_u *origfile;
1164 char_u *newfile;
1165 char_u *outfile;
1167 int err = FALSE;
1169 set_vim_var_string(VV_FNAME_IN, origfile, -1);
1170 set_vim_var_string(VV_FNAME_NEW, newfile, -1);
1171 set_vim_var_string(VV_FNAME_OUT, outfile, -1);
1172 (void)eval_to_bool(p_dex, &err, NULL, FALSE);
1173 set_vim_var_string(VV_FNAME_IN, NULL, -1);
1174 set_vim_var_string(VV_FNAME_NEW, NULL, -1);
1175 set_vim_var_string(VV_FNAME_OUT, NULL, -1);
1178 void
1179 eval_patch(origfile, difffile, outfile)
1180 char_u *origfile;
1181 char_u *difffile;
1182 char_u *outfile;
1184 int err;
1186 set_vim_var_string(VV_FNAME_IN, origfile, -1);
1187 set_vim_var_string(VV_FNAME_DIFF, difffile, -1);
1188 set_vim_var_string(VV_FNAME_OUT, outfile, -1);
1189 (void)eval_to_bool(p_pex, &err, NULL, FALSE);
1190 set_vim_var_string(VV_FNAME_IN, NULL, -1);
1191 set_vim_var_string(VV_FNAME_DIFF, NULL, -1);
1192 set_vim_var_string(VV_FNAME_OUT, NULL, -1);
1194 # endif
1197 * Top level evaluation function, returning a boolean.
1198 * Sets "error" to TRUE if there was an error.
1199 * Return TRUE or FALSE.
1202 eval_to_bool(arg, error, nextcmd, skip)
1203 char_u *arg;
1204 int *error;
1205 char_u **nextcmd;
1206 int skip; /* only parse, don't execute */
1208 typval_T tv;
1209 int retval = FALSE;
1211 if (skip)
1212 ++emsg_skip;
1213 if (eval0(arg, &tv, nextcmd, !skip) == FAIL)
1214 *error = TRUE;
1215 else
1217 *error = FALSE;
1218 if (!skip)
1220 retval = (get_tv_number_chk(&tv, error) != 0);
1221 clear_tv(&tv);
1224 if (skip)
1225 --emsg_skip;
1227 return retval;
1231 * Top level evaluation function, returning a string. If "skip" is TRUE,
1232 * only parsing to "nextcmd" is done, without reporting errors. Return
1233 * pointer to allocated memory, or NULL for failure or when "skip" is TRUE.
1235 char_u *
1236 eval_to_string_skip(arg, nextcmd, skip)
1237 char_u *arg;
1238 char_u **nextcmd;
1239 int skip; /* only parse, don't execute */
1241 typval_T tv;
1242 char_u *retval;
1244 if (skip)
1245 ++emsg_skip;
1246 if (eval0(arg, &tv, nextcmd, !skip) == FAIL || skip)
1247 retval = NULL;
1248 else
1250 retval = vim_strsave(get_tv_string(&tv));
1251 clear_tv(&tv);
1253 if (skip)
1254 --emsg_skip;
1256 return retval;
1260 * Skip over an expression at "*pp".
1261 * Return FAIL for an error, OK otherwise.
1264 skip_expr(pp)
1265 char_u **pp;
1267 typval_T rettv;
1269 *pp = skipwhite(*pp);
1270 return eval1(pp, &rettv, FALSE);
1274 * Top level evaluation function, returning a string.
1275 * When "convert" is TRUE convert a List into a sequence of lines and convert
1276 * a Float to a String.
1277 * Return pointer to allocated memory, or NULL for failure.
1279 char_u *
1280 eval_to_string(arg, nextcmd, convert)
1281 char_u *arg;
1282 char_u **nextcmd;
1283 int convert;
1285 typval_T tv;
1286 char_u *retval;
1287 garray_T ga;
1288 char_u numbuf[NUMBUFLEN];
1290 if (eval0(arg, &tv, nextcmd, TRUE) == FAIL)
1291 retval = NULL;
1292 else
1294 if (convert && tv.v_type == VAR_LIST)
1296 ga_init2(&ga, (int)sizeof(char), 80);
1297 if (tv.vval.v_list != NULL)
1298 list_join(&ga, tv.vval.v_list, (char_u *)"\n", TRUE, 0);
1299 ga_append(&ga, NUL);
1300 retval = (char_u *)ga.ga_data;
1302 #ifdef FEAT_FLOAT
1303 else if (convert && tv.v_type == VAR_FLOAT)
1305 vim_snprintf((char *)numbuf, NUMBUFLEN, "%g", tv.vval.v_float);
1306 retval = vim_strsave(numbuf);
1308 #endif
1309 else
1310 retval = vim_strsave(get_tv_string(&tv));
1311 clear_tv(&tv);
1314 return retval;
1318 * Call eval_to_string() without using current local variables and using
1319 * textlock. When "use_sandbox" is TRUE use the sandbox.
1321 char_u *
1322 eval_to_string_safe(arg, nextcmd, use_sandbox)
1323 char_u *arg;
1324 char_u **nextcmd;
1325 int use_sandbox;
1327 char_u *retval;
1328 void *save_funccalp;
1330 save_funccalp = save_funccal();
1331 if (use_sandbox)
1332 ++sandbox;
1333 ++textlock;
1334 retval = eval_to_string(arg, nextcmd, FALSE);
1335 if (use_sandbox)
1336 --sandbox;
1337 --textlock;
1338 restore_funccal(save_funccalp);
1339 return retval;
1343 * Top level evaluation function, returning a number.
1344 * Evaluates "expr" silently.
1345 * Returns -1 for an error.
1348 eval_to_number(expr)
1349 char_u *expr;
1351 typval_T rettv;
1352 int retval;
1353 char_u *p = skipwhite(expr);
1355 ++emsg_off;
1357 if (eval1(&p, &rettv, TRUE) == FAIL)
1358 retval = -1;
1359 else
1361 retval = get_tv_number_chk(&rettv, NULL);
1362 clear_tv(&rettv);
1364 --emsg_off;
1366 return retval;
1370 * Prepare v: variable "idx" to be used.
1371 * Save the current typeval in "save_tv".
1372 * When not used yet add the variable to the v: hashtable.
1374 static void
1375 prepare_vimvar(idx, save_tv)
1376 int idx;
1377 typval_T *save_tv;
1379 *save_tv = vimvars[idx].vv_tv;
1380 if (vimvars[idx].vv_type == VAR_UNKNOWN)
1381 hash_add(&vimvarht, vimvars[idx].vv_di.di_key);
1385 * Restore v: variable "idx" to typeval "save_tv".
1386 * When no longer defined, remove the variable from the v: hashtable.
1388 static void
1389 restore_vimvar(idx, save_tv)
1390 int idx;
1391 typval_T *save_tv;
1393 hashitem_T *hi;
1395 vimvars[idx].vv_tv = *save_tv;
1396 if (vimvars[idx].vv_type == VAR_UNKNOWN)
1398 hi = hash_find(&vimvarht, vimvars[idx].vv_di.di_key);
1399 if (HASHITEM_EMPTY(hi))
1400 EMSG2(_(e_intern2), "restore_vimvar()");
1401 else
1402 hash_remove(&vimvarht, hi);
1406 #if defined(FEAT_SPELL) || defined(PROTO)
1408 * Evaluate an expression to a list with suggestions.
1409 * For the "expr:" part of 'spellsuggest'.
1410 * Returns NULL when there is an error.
1412 list_T *
1413 eval_spell_expr(badword, expr)
1414 char_u *badword;
1415 char_u *expr;
1417 typval_T save_val;
1418 typval_T rettv;
1419 list_T *list = NULL;
1420 char_u *p = skipwhite(expr);
1422 /* Set "v:val" to the bad word. */
1423 prepare_vimvar(VV_VAL, &save_val);
1424 vimvars[VV_VAL].vv_type = VAR_STRING;
1425 vimvars[VV_VAL].vv_str = badword;
1426 if (p_verbose == 0)
1427 ++emsg_off;
1429 if (eval1(&p, &rettv, TRUE) == OK)
1431 if (rettv.v_type != VAR_LIST)
1432 clear_tv(&rettv);
1433 else
1434 list = rettv.vval.v_list;
1437 if (p_verbose == 0)
1438 --emsg_off;
1439 restore_vimvar(VV_VAL, &save_val);
1441 return list;
1445 * "list" is supposed to contain two items: a word and a number. Return the
1446 * word in "pp" and the number as the return value.
1447 * Return -1 if anything isn't right.
1448 * Used to get the good word and score from the eval_spell_expr() result.
1451 get_spellword(list, pp)
1452 list_T *list;
1453 char_u **pp;
1455 listitem_T *li;
1457 li = list->lv_first;
1458 if (li == NULL)
1459 return -1;
1460 *pp = get_tv_string(&li->li_tv);
1462 li = li->li_next;
1463 if (li == NULL)
1464 return -1;
1465 return get_tv_number(&li->li_tv);
1467 #endif
1470 * Top level evaluation function.
1471 * Returns an allocated typval_T with the result.
1472 * Returns NULL when there is an error.
1474 typval_T *
1475 eval_expr(arg, nextcmd)
1476 char_u *arg;
1477 char_u **nextcmd;
1479 typval_T *tv;
1481 tv = (typval_T *)alloc(sizeof(typval_T));
1482 if (tv != NULL && eval0(arg, tv, nextcmd, TRUE) == FAIL)
1484 vim_free(tv);
1485 tv = NULL;
1488 return tv;
1492 #if (defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL)) \
1493 || defined(FEAT_COMPL_FUNC) || defined(PROTO)
1495 * Call some vimL function and return the result in "*rettv".
1496 * Uses argv[argc] for the function arguments. Only Number and String
1497 * arguments are currently supported.
1498 * Returns OK or FAIL.
1500 static int
1501 call_vim_function(func, argc, argv, safe, rettv)
1502 char_u *func;
1503 int argc;
1504 char_u **argv;
1505 int safe; /* use the sandbox */
1506 typval_T *rettv;
1508 typval_T *argvars;
1509 long n;
1510 int len;
1511 int i;
1512 int doesrange;
1513 void *save_funccalp = NULL;
1514 int ret;
1516 argvars = (typval_T *)alloc((unsigned)((argc + 1) * sizeof(typval_T)));
1517 if (argvars == NULL)
1518 return FAIL;
1520 for (i = 0; i < argc; i++)
1522 /* Pass a NULL or empty argument as an empty string */
1523 if (argv[i] == NULL || *argv[i] == NUL)
1525 argvars[i].v_type = VAR_STRING;
1526 argvars[i].vval.v_string = (char_u *)"";
1527 continue;
1530 /* Recognize a number argument, the others must be strings. */
1531 vim_str2nr(argv[i], NULL, &len, TRUE, TRUE, &n, NULL);
1532 if (len != 0 && len == (int)STRLEN(argv[i]))
1534 argvars[i].v_type = VAR_NUMBER;
1535 argvars[i].vval.v_number = n;
1537 else
1539 argvars[i].v_type = VAR_STRING;
1540 argvars[i].vval.v_string = argv[i];
1544 if (safe)
1546 save_funccalp = save_funccal();
1547 ++sandbox;
1550 rettv->v_type = VAR_UNKNOWN; /* clear_tv() uses this */
1551 ret = call_func(func, (int)STRLEN(func), rettv, argc, argvars,
1552 curwin->w_cursor.lnum, curwin->w_cursor.lnum,
1553 &doesrange, TRUE, NULL);
1554 if (safe)
1556 --sandbox;
1557 restore_funccal(save_funccalp);
1559 vim_free(argvars);
1561 if (ret == FAIL)
1562 clear_tv(rettv);
1564 return ret;
1567 # if (defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL)) || defined(PROTO)
1569 * Call vimL function "func" and return the result as a string.
1570 * Returns NULL when calling the function fails.
1571 * Uses argv[argc] for the function arguments.
1573 void *
1574 call_func_retstr(func, argc, argv, safe)
1575 char_u *func;
1576 int argc;
1577 char_u **argv;
1578 int safe; /* use the sandbox */
1580 typval_T rettv;
1581 char_u *retval;
1583 if (call_vim_function(func, argc, argv, safe, &rettv) == FAIL)
1584 return NULL;
1586 retval = vim_strsave(get_tv_string(&rettv));
1587 clear_tv(&rettv);
1588 return retval;
1590 # endif
1592 # if defined(FEAT_COMPL_FUNC) || defined(PROTO)
1594 * Call vimL function "func" and return the result as a number.
1595 * Returns -1 when calling the function fails.
1596 * Uses argv[argc] for the function arguments.
1598 long
1599 call_func_retnr(func, argc, argv, safe)
1600 char_u *func;
1601 int argc;
1602 char_u **argv;
1603 int safe; /* use the sandbox */
1605 typval_T rettv;
1606 long retval;
1608 if (call_vim_function(func, argc, argv, safe, &rettv) == FAIL)
1609 return -1;
1611 retval = get_tv_number_chk(&rettv, NULL);
1612 clear_tv(&rettv);
1613 return retval;
1615 # endif
1618 * Call vimL function "func" and return the result as a List.
1619 * Uses argv[argc] for the function arguments.
1620 * Returns NULL when there is something wrong.
1622 void *
1623 call_func_retlist(func, argc, argv, safe)
1624 char_u *func;
1625 int argc;
1626 char_u **argv;
1627 int safe; /* use the sandbox */
1629 typval_T rettv;
1631 if (call_vim_function(func, argc, argv, safe, &rettv) == FAIL)
1632 return NULL;
1634 if (rettv.v_type != VAR_LIST)
1636 clear_tv(&rettv);
1637 return NULL;
1640 return rettv.vval.v_list;
1642 #endif
1646 * Save the current function call pointer, and set it to NULL.
1647 * Used when executing autocommands and for ":source".
1649 void *
1650 save_funccal()
1652 funccall_T *fc = current_funccal;
1654 current_funccal = NULL;
1655 return (void *)fc;
1658 void
1659 restore_funccal(vfc)
1660 void *vfc;
1662 funccall_T *fc = (funccall_T *)vfc;
1664 current_funccal = fc;
1667 #if defined(FEAT_PROFILE) || defined(PROTO)
1669 * Prepare profiling for entering a child or something else that is not
1670 * counted for the script/function itself.
1671 * Should always be called in pair with prof_child_exit().
1673 void
1674 prof_child_enter(tm)
1675 proftime_T *tm; /* place to store waittime */
1677 funccall_T *fc = current_funccal;
1679 if (fc != NULL && fc->func->uf_profiling)
1680 profile_start(&fc->prof_child);
1681 script_prof_save(tm);
1685 * Take care of time spent in a child.
1686 * Should always be called after prof_child_enter().
1688 void
1689 prof_child_exit(tm)
1690 proftime_T *tm; /* where waittime was stored */
1692 funccall_T *fc = current_funccal;
1694 if (fc != NULL && fc->func->uf_profiling)
1696 profile_end(&fc->prof_child);
1697 profile_sub_wait(tm, &fc->prof_child); /* don't count waiting time */
1698 profile_add(&fc->func->uf_tm_children, &fc->prof_child);
1699 profile_add(&fc->func->uf_tml_children, &fc->prof_child);
1701 script_prof_restore(tm);
1703 #endif
1706 #ifdef FEAT_FOLDING
1708 * Evaluate 'foldexpr'. Returns the foldlevel, and any character preceding
1709 * it in "*cp". Doesn't give error messages.
1712 eval_foldexpr(arg, cp)
1713 char_u *arg;
1714 int *cp;
1716 typval_T tv;
1717 int retval;
1718 char_u *s;
1719 int use_sandbox = was_set_insecurely((char_u *)"foldexpr",
1720 OPT_LOCAL);
1722 ++emsg_off;
1723 if (use_sandbox)
1724 ++sandbox;
1725 ++textlock;
1726 *cp = NUL;
1727 if (eval0(arg, &tv, NULL, TRUE) == FAIL)
1728 retval = 0;
1729 else
1731 /* If the result is a number, just return the number. */
1732 if (tv.v_type == VAR_NUMBER)
1733 retval = tv.vval.v_number;
1734 else if (tv.v_type != VAR_STRING || tv.vval.v_string == NULL)
1735 retval = 0;
1736 else
1738 /* If the result is a string, check if there is a non-digit before
1739 * the number. */
1740 s = tv.vval.v_string;
1741 if (!VIM_ISDIGIT(*s) && *s != '-')
1742 *cp = *s++;
1743 retval = atol((char *)s);
1745 clear_tv(&tv);
1747 --emsg_off;
1748 if (use_sandbox)
1749 --sandbox;
1750 --textlock;
1752 return retval;
1754 #endif
1757 * ":let" list all variable values
1758 * ":let var1 var2" list variable values
1759 * ":let var = expr" assignment command.
1760 * ":let var += expr" assignment command.
1761 * ":let var -= expr" assignment command.
1762 * ":let var .= expr" assignment command.
1763 * ":let [var1, var2] = expr" unpack list.
1765 void
1766 ex_let(eap)
1767 exarg_T *eap;
1769 char_u *arg = eap->arg;
1770 char_u *expr = NULL;
1771 typval_T rettv;
1772 int i;
1773 int var_count = 0;
1774 int semicolon = 0;
1775 char_u op[2];
1776 char_u *argend;
1777 int first = TRUE;
1779 argend = skip_var_list(arg, &var_count, &semicolon);
1780 if (argend == NULL)
1781 return;
1782 if (argend > arg && argend[-1] == '.') /* for var.='str' */
1783 --argend;
1784 expr = vim_strchr(argend, '=');
1785 if (expr == NULL)
1788 * ":let" without "=": list variables
1790 if (*arg == '[')
1791 EMSG(_(e_invarg));
1792 else if (!ends_excmd(*arg))
1793 /* ":let var1 var2" */
1794 arg = list_arg_vars(eap, arg, &first);
1795 else if (!eap->skip)
1797 /* ":let" */
1798 list_glob_vars(&first);
1799 list_buf_vars(&first);
1800 list_win_vars(&first);
1801 #ifdef FEAT_WINDOWS
1802 list_tab_vars(&first);
1803 #endif
1804 list_script_vars(&first);
1805 list_func_vars(&first);
1806 list_vim_vars(&first);
1808 eap->nextcmd = check_nextcmd(arg);
1810 else
1812 op[0] = '=';
1813 op[1] = NUL;
1814 if (expr > argend)
1816 if (vim_strchr((char_u *)"+-.", expr[-1]) != NULL)
1817 op[0] = expr[-1]; /* +=, -= or .= */
1819 expr = skipwhite(expr + 1);
1821 if (eap->skip)
1822 ++emsg_skip;
1823 i = eval0(expr, &rettv, &eap->nextcmd, !eap->skip);
1824 if (eap->skip)
1826 if (i != FAIL)
1827 clear_tv(&rettv);
1828 --emsg_skip;
1830 else if (i != FAIL)
1832 (void)ex_let_vars(eap->arg, &rettv, FALSE, semicolon, var_count,
1833 op);
1834 clear_tv(&rettv);
1840 * Assign the typevalue "tv" to the variable or variables at "arg_start".
1841 * Handles both "var" with any type and "[var, var; var]" with a list type.
1842 * When "nextchars" is not NULL it points to a string with characters that
1843 * must appear after the variable(s). Use "+", "-" or "." for add, subtract
1844 * or concatenate.
1845 * Returns OK or FAIL;
1847 static int
1848 ex_let_vars(arg_start, tv, copy, semicolon, var_count, nextchars)
1849 char_u *arg_start;
1850 typval_T *tv;
1851 int copy; /* copy values from "tv", don't move */
1852 int semicolon; /* from skip_var_list() */
1853 int var_count; /* from skip_var_list() */
1854 char_u *nextchars;
1856 char_u *arg = arg_start;
1857 list_T *l;
1858 int i;
1859 listitem_T *item;
1860 typval_T ltv;
1862 if (*arg != '[')
1865 * ":let var = expr" or ":for var in list"
1867 if (ex_let_one(arg, tv, copy, nextchars, nextchars) == NULL)
1868 return FAIL;
1869 return OK;
1873 * ":let [v1, v2] = list" or ":for [v1, v2] in listlist"
1875 if (tv->v_type != VAR_LIST || (l = tv->vval.v_list) == NULL)
1877 EMSG(_(e_listreq));
1878 return FAIL;
1881 i = list_len(l);
1882 if (semicolon == 0 && var_count < i)
1884 EMSG(_("E687: Less targets than List items"));
1885 return FAIL;
1887 if (var_count - semicolon > i)
1889 EMSG(_("E688: More targets than List items"));
1890 return FAIL;
1893 item = l->lv_first;
1894 while (*arg != ']')
1896 arg = skipwhite(arg + 1);
1897 arg = ex_let_one(arg, &item->li_tv, TRUE, (char_u *)",;]", nextchars);
1898 item = item->li_next;
1899 if (arg == NULL)
1900 return FAIL;
1902 arg = skipwhite(arg);
1903 if (*arg == ';')
1905 /* Put the rest of the list (may be empty) in the var after ';'.
1906 * Create a new list for this. */
1907 l = list_alloc();
1908 if (l == NULL)
1909 return FAIL;
1910 while (item != NULL)
1912 list_append_tv(l, &item->li_tv);
1913 item = item->li_next;
1916 ltv.v_type = VAR_LIST;
1917 ltv.v_lock = 0;
1918 ltv.vval.v_list = l;
1919 l->lv_refcount = 1;
1921 arg = ex_let_one(skipwhite(arg + 1), &ltv, FALSE,
1922 (char_u *)"]", nextchars);
1923 clear_tv(&ltv);
1924 if (arg == NULL)
1925 return FAIL;
1926 break;
1928 else if (*arg != ',' && *arg != ']')
1930 EMSG2(_(e_intern2), "ex_let_vars()");
1931 return FAIL;
1935 return OK;
1939 * Skip over assignable variable "var" or list of variables "[var, var]".
1940 * Used for ":let varvar = expr" and ":for varvar in expr".
1941 * For "[var, var]" increment "*var_count" for each variable.
1942 * for "[var, var; var]" set "semicolon".
1943 * Return NULL for an error.
1945 static char_u *
1946 skip_var_list(arg, var_count, semicolon)
1947 char_u *arg;
1948 int *var_count;
1949 int *semicolon;
1951 char_u *p, *s;
1953 if (*arg == '[')
1955 /* "[var, var]": find the matching ']'. */
1956 p = arg;
1957 for (;;)
1959 p = skipwhite(p + 1); /* skip whites after '[', ';' or ',' */
1960 s = skip_var_one(p);
1961 if (s == p)
1963 EMSG2(_(e_invarg2), p);
1964 return NULL;
1966 ++*var_count;
1968 p = skipwhite(s);
1969 if (*p == ']')
1970 break;
1971 else if (*p == ';')
1973 if (*semicolon == 1)
1975 EMSG(_("Double ; in list of variables"));
1976 return NULL;
1978 *semicolon = 1;
1980 else if (*p != ',')
1982 EMSG2(_(e_invarg2), p);
1983 return NULL;
1986 return p + 1;
1988 else
1989 return skip_var_one(arg);
1993 * Skip one (assignable) variable name, including @r, $VAR, &option, d.key,
1994 * l[idx].
1996 static char_u *
1997 skip_var_one(arg)
1998 char_u *arg;
2000 if (*arg == '@' && arg[1] != NUL)
2001 return arg + 2;
2002 return find_name_end(*arg == '$' || *arg == '&' ? arg + 1 : arg,
2003 NULL, NULL, FNE_INCL_BR | FNE_CHECK_START);
2007 * List variables for hashtab "ht" with prefix "prefix".
2008 * If "empty" is TRUE also list NULL strings as empty strings.
2010 static void
2011 list_hashtable_vars(ht, prefix, empty, first)
2012 hashtab_T *ht;
2013 char_u *prefix;
2014 int empty;
2015 int *first;
2017 hashitem_T *hi;
2018 dictitem_T *di;
2019 int todo;
2021 todo = (int)ht->ht_used;
2022 for (hi = ht->ht_array; todo > 0 && !got_int; ++hi)
2024 if (!HASHITEM_EMPTY(hi))
2026 --todo;
2027 di = HI2DI(hi);
2028 if (empty || di->di_tv.v_type != VAR_STRING
2029 || di->di_tv.vval.v_string != NULL)
2030 list_one_var(di, prefix, first);
2036 * List global variables.
2038 static void
2039 list_glob_vars(first)
2040 int *first;
2042 list_hashtable_vars(&globvarht, (char_u *)"", TRUE, first);
2046 * List buffer variables.
2048 static void
2049 list_buf_vars(first)
2050 int *first;
2052 char_u numbuf[NUMBUFLEN];
2054 list_hashtable_vars(&curbuf->b_vars.dv_hashtab, (char_u *)"b:",
2055 TRUE, first);
2057 sprintf((char *)numbuf, "%ld", (long)curbuf->b_changedtick);
2058 list_one_var_a((char_u *)"b:", (char_u *)"changedtick", VAR_NUMBER,
2059 numbuf, first);
2063 * List window variables.
2065 static void
2066 list_win_vars(first)
2067 int *first;
2069 list_hashtable_vars(&curwin->w_vars.dv_hashtab,
2070 (char_u *)"w:", TRUE, first);
2073 #ifdef FEAT_WINDOWS
2075 * List tab page variables.
2077 static void
2078 list_tab_vars(first)
2079 int *first;
2081 list_hashtable_vars(&curtab->tp_vars.dv_hashtab,
2082 (char_u *)"t:", TRUE, first);
2084 #endif
2087 * List Vim variables.
2089 static void
2090 list_vim_vars(first)
2091 int *first;
2093 list_hashtable_vars(&vimvarht, (char_u *)"v:", FALSE, first);
2097 * List script-local variables, if there is a script.
2099 static void
2100 list_script_vars(first)
2101 int *first;
2103 if (current_SID > 0 && current_SID <= ga_scripts.ga_len)
2104 list_hashtable_vars(&SCRIPT_VARS(current_SID),
2105 (char_u *)"s:", FALSE, first);
2109 * List function variables, if there is a function.
2111 static void
2112 list_func_vars(first)
2113 int *first;
2115 if (current_funccal != NULL)
2116 list_hashtable_vars(&current_funccal->l_vars.dv_hashtab,
2117 (char_u *)"l:", FALSE, first);
2121 * List variables in "arg".
2123 static char_u *
2124 list_arg_vars(eap, arg, first)
2125 exarg_T *eap;
2126 char_u *arg;
2127 int *first;
2129 int error = FALSE;
2130 int len;
2131 char_u *name;
2132 char_u *name_start;
2133 char_u *arg_subsc;
2134 char_u *tofree;
2135 typval_T tv;
2137 while (!ends_excmd(*arg) && !got_int)
2139 if (error || eap->skip)
2141 arg = find_name_end(arg, NULL, NULL, FNE_INCL_BR | FNE_CHECK_START);
2142 if (!vim_iswhite(*arg) && !ends_excmd(*arg))
2144 emsg_severe = TRUE;
2145 EMSG(_(e_trailing));
2146 break;
2149 else
2151 /* get_name_len() takes care of expanding curly braces */
2152 name_start = name = arg;
2153 len = get_name_len(&arg, &tofree, TRUE, TRUE);
2154 if (len <= 0)
2156 /* This is mainly to keep test 49 working: when expanding
2157 * curly braces fails overrule the exception error message. */
2158 if (len < 0 && !aborting())
2160 emsg_severe = TRUE;
2161 EMSG2(_(e_invarg2), arg);
2162 break;
2164 error = TRUE;
2166 else
2168 if (tofree != NULL)
2169 name = tofree;
2170 if (get_var_tv(name, len, &tv, TRUE) == FAIL)
2171 error = TRUE;
2172 else
2174 /* handle d.key, l[idx], f(expr) */
2175 arg_subsc = arg;
2176 if (handle_subscript(&arg, &tv, TRUE, TRUE) == FAIL)
2177 error = TRUE;
2178 else
2180 if (arg == arg_subsc && len == 2 && name[1] == ':')
2182 switch (*name)
2184 case 'g': list_glob_vars(first); break;
2185 case 'b': list_buf_vars(first); break;
2186 case 'w': list_win_vars(first); break;
2187 #ifdef FEAT_WINDOWS
2188 case 't': list_tab_vars(first); break;
2189 #endif
2190 case 'v': list_vim_vars(first); break;
2191 case 's': list_script_vars(first); break;
2192 case 'l': list_func_vars(first); break;
2193 default:
2194 EMSG2(_("E738: Can't list variables for %s"), name);
2197 else
2199 char_u numbuf[NUMBUFLEN];
2200 char_u *tf;
2201 int c;
2202 char_u *s;
2204 s = echo_string(&tv, &tf, numbuf, 0);
2205 c = *arg;
2206 *arg = NUL;
2207 list_one_var_a((char_u *)"",
2208 arg == arg_subsc ? name : name_start,
2209 tv.v_type,
2210 s == NULL ? (char_u *)"" : s,
2211 first);
2212 *arg = c;
2213 vim_free(tf);
2215 clear_tv(&tv);
2220 vim_free(tofree);
2223 arg = skipwhite(arg);
2226 return arg;
2230 * Set one item of ":let var = expr" or ":let [v1, v2] = list" to its value.
2231 * Returns a pointer to the char just after the var name.
2232 * Returns NULL if there is an error.
2234 static char_u *
2235 ex_let_one(arg, tv, copy, endchars, op)
2236 char_u *arg; /* points to variable name */
2237 typval_T *tv; /* value to assign to variable */
2238 int copy; /* copy value from "tv" */
2239 char_u *endchars; /* valid chars after variable name or NULL */
2240 char_u *op; /* "+", "-", "." or NULL*/
2242 int c1;
2243 char_u *name;
2244 char_u *p;
2245 char_u *arg_end = NULL;
2246 int len;
2247 int opt_flags;
2248 char_u *tofree = NULL;
2251 * ":let $VAR = expr": Set environment variable.
2253 if (*arg == '$')
2255 /* Find the end of the name. */
2256 ++arg;
2257 name = arg;
2258 len = get_env_len(&arg);
2259 if (len == 0)
2260 EMSG2(_(e_invarg2), name - 1);
2261 else
2263 if (op != NULL && (*op == '+' || *op == '-'))
2264 EMSG2(_(e_letwrong), op);
2265 else if (endchars != NULL
2266 && vim_strchr(endchars, *skipwhite(arg)) == NULL)
2267 EMSG(_(e_letunexp));
2268 else
2270 c1 = name[len];
2271 name[len] = NUL;
2272 p = get_tv_string_chk(tv);
2273 if (p != NULL && op != NULL && *op == '.')
2275 int mustfree = FALSE;
2276 char_u *s = vim_getenv(name, &mustfree);
2278 if (s != NULL)
2280 p = tofree = concat_str(s, p);
2281 if (mustfree)
2282 vim_free(s);
2285 if (p != NULL)
2287 vim_setenv(name, p);
2288 if (STRICMP(name, "HOME") == 0)
2289 init_homedir();
2290 else if (didset_vim && STRICMP(name, "VIM") == 0)
2291 didset_vim = FALSE;
2292 else if (didset_vimruntime
2293 && STRICMP(name, "VIMRUNTIME") == 0)
2294 didset_vimruntime = FALSE;
2295 arg_end = arg;
2297 name[len] = c1;
2298 vim_free(tofree);
2304 * ":let &option = expr": Set option value.
2305 * ":let &l:option = expr": Set local option value.
2306 * ":let &g:option = expr": Set global option value.
2308 else if (*arg == '&')
2310 /* Find the end of the name. */
2311 p = find_option_end(&arg, &opt_flags);
2312 if (p == NULL || (endchars != NULL
2313 && vim_strchr(endchars, *skipwhite(p)) == NULL))
2314 EMSG(_(e_letunexp));
2315 else
2317 long n;
2318 int opt_type;
2319 long numval;
2320 char_u *stringval = NULL;
2321 char_u *s;
2323 c1 = *p;
2324 *p = NUL;
2326 n = get_tv_number(tv);
2327 s = get_tv_string_chk(tv); /* != NULL if number or string */
2328 if (s != NULL && op != NULL && *op != '=')
2330 opt_type = get_option_value(arg, &numval,
2331 &stringval, opt_flags);
2332 if ((opt_type == 1 && *op == '.')
2333 || (opt_type == 0 && *op != '.'))
2334 EMSG2(_(e_letwrong), op);
2335 else
2337 if (opt_type == 1) /* number */
2339 if (*op == '+')
2340 n = numval + n;
2341 else
2342 n = numval - n;
2344 else if (opt_type == 0 && stringval != NULL) /* string */
2346 s = concat_str(stringval, s);
2347 vim_free(stringval);
2348 stringval = s;
2352 if (s != NULL)
2354 set_option_value(arg, n, s, opt_flags);
2355 arg_end = p;
2357 *p = c1;
2358 vim_free(stringval);
2363 * ":let @r = expr": Set register contents.
2365 else if (*arg == '@')
2367 ++arg;
2368 if (op != NULL && (*op == '+' || *op == '-'))
2369 EMSG2(_(e_letwrong), op);
2370 else if (endchars != NULL
2371 && vim_strchr(endchars, *skipwhite(arg + 1)) == NULL)
2372 EMSG(_(e_letunexp));
2373 else
2375 char_u *ptofree = NULL;
2376 char_u *s;
2378 p = get_tv_string_chk(tv);
2379 if (p != NULL && op != NULL && *op == '.')
2381 s = get_reg_contents(*arg == '@' ? '"' : *arg, TRUE, TRUE);
2382 if (s != NULL)
2384 p = ptofree = concat_str(s, p);
2385 vim_free(s);
2388 if (p != NULL)
2390 write_reg_contents(*arg == '@' ? '"' : *arg, p, -1, FALSE);
2391 arg_end = arg + 1;
2393 vim_free(ptofree);
2398 * ":let var = expr": Set internal variable.
2399 * ":let {expr} = expr": Idem, name made with curly braces
2401 else if (eval_isnamec1(*arg) || *arg == '{')
2403 lval_T lv;
2405 p = get_lval(arg, tv, &lv, FALSE, FALSE, FALSE, FNE_CHECK_START);
2406 if (p != NULL && lv.ll_name != NULL)
2408 if (endchars != NULL && vim_strchr(endchars, *skipwhite(p)) == NULL)
2409 EMSG(_(e_letunexp));
2410 else
2412 set_var_lval(&lv, p, tv, copy, op);
2413 arg_end = p;
2416 clear_lval(&lv);
2419 else
2420 EMSG2(_(e_invarg2), arg);
2422 return arg_end;
2426 * If "arg" is equal to "b:changedtick" give an error and return TRUE.
2428 static int
2429 check_changedtick(arg)
2430 char_u *arg;
2432 if (STRNCMP(arg, "b:changedtick", 13) == 0 && !eval_isnamec(arg[13]))
2434 EMSG2(_(e_readonlyvar), arg);
2435 return TRUE;
2437 return FALSE;
2441 * Get an lval: variable, Dict item or List item that can be assigned a value
2442 * to: "name", "na{me}", "name[expr]", "name[expr:expr]", "name[expr][expr]",
2443 * "name.key", "name.key[expr]" etc.
2444 * Indexing only works if "name" is an existing List or Dictionary.
2445 * "name" points to the start of the name.
2446 * If "rettv" is not NULL it points to the value to be assigned.
2447 * "unlet" is TRUE for ":unlet": slightly different behavior when something is
2448 * wrong; must end in space or cmd separator.
2450 * Returns a pointer to just after the name, including indexes.
2451 * When an evaluation error occurs "lp->ll_name" is NULL;
2452 * Returns NULL for a parsing error. Still need to free items in "lp"!
2454 static char_u *
2455 get_lval(name, rettv, lp, unlet, skip, quiet, fne_flags)
2456 char_u *name;
2457 typval_T *rettv;
2458 lval_T *lp;
2459 int unlet;
2460 int skip;
2461 int quiet; /* don't give error messages */
2462 int fne_flags; /* flags for find_name_end() */
2464 char_u *p;
2465 char_u *expr_start, *expr_end;
2466 int cc;
2467 dictitem_T *v;
2468 typval_T var1;
2469 typval_T var2;
2470 int empty1 = FALSE;
2471 listitem_T *ni;
2472 char_u *key = NULL;
2473 int len;
2474 hashtab_T *ht;
2476 /* Clear everything in "lp". */
2477 vim_memset(lp, 0, sizeof(lval_T));
2479 if (skip)
2481 /* When skipping just find the end of the name. */
2482 lp->ll_name = name;
2483 return find_name_end(name, NULL, NULL, FNE_INCL_BR | fne_flags);
2486 /* Find the end of the name. */
2487 p = find_name_end(name, &expr_start, &expr_end, fne_flags);
2488 if (expr_start != NULL)
2490 /* Don't expand the name when we already know there is an error. */
2491 if (unlet && !vim_iswhite(*p) && !ends_excmd(*p)
2492 && *p != '[' && *p != '.')
2494 EMSG(_(e_trailing));
2495 return NULL;
2498 lp->ll_exp_name = make_expanded_name(name, expr_start, expr_end, p);
2499 if (lp->ll_exp_name == NULL)
2501 /* Report an invalid expression in braces, unless the
2502 * expression evaluation has been cancelled due to an
2503 * aborting error, an interrupt, or an exception. */
2504 if (!aborting() && !quiet)
2506 emsg_severe = TRUE;
2507 EMSG2(_(e_invarg2), name);
2508 return NULL;
2511 lp->ll_name = lp->ll_exp_name;
2513 else
2514 lp->ll_name = name;
2516 /* Without [idx] or .key we are done. */
2517 if ((*p != '[' && *p != '.') || lp->ll_name == NULL)
2518 return p;
2520 cc = *p;
2521 *p = NUL;
2522 v = find_var(lp->ll_name, &ht);
2523 if (v == NULL && !quiet)
2524 EMSG2(_(e_undefvar), lp->ll_name);
2525 *p = cc;
2526 if (v == NULL)
2527 return NULL;
2530 * Loop until no more [idx] or .key is following.
2532 lp->ll_tv = &v->di_tv;
2533 while (*p == '[' || (*p == '.' && lp->ll_tv->v_type == VAR_DICT))
2535 if (!(lp->ll_tv->v_type == VAR_LIST && lp->ll_tv->vval.v_list != NULL)
2536 && !(lp->ll_tv->v_type == VAR_DICT
2537 && lp->ll_tv->vval.v_dict != NULL))
2539 if (!quiet)
2540 EMSG(_("E689: Can only index a List or Dictionary"));
2541 return NULL;
2543 if (lp->ll_range)
2545 if (!quiet)
2546 EMSG(_("E708: [:] must come last"));
2547 return NULL;
2550 len = -1;
2551 if (*p == '.')
2553 key = p + 1;
2554 for (len = 0; ASCII_ISALNUM(key[len]) || key[len] == '_'; ++len)
2556 if (len == 0)
2558 if (!quiet)
2559 EMSG(_(e_emptykey));
2560 return NULL;
2562 p = key + len;
2564 else
2566 /* Get the index [expr] or the first index [expr: ]. */
2567 p = skipwhite(p + 1);
2568 if (*p == ':')
2569 empty1 = TRUE;
2570 else
2572 empty1 = FALSE;
2573 if (eval1(&p, &var1, TRUE) == FAIL) /* recursive! */
2574 return NULL;
2575 if (get_tv_string_chk(&var1) == NULL)
2577 /* not a number or string */
2578 clear_tv(&var1);
2579 return NULL;
2583 /* Optionally get the second index [ :expr]. */
2584 if (*p == ':')
2586 if (lp->ll_tv->v_type == VAR_DICT)
2588 if (!quiet)
2589 EMSG(_(e_dictrange));
2590 if (!empty1)
2591 clear_tv(&var1);
2592 return NULL;
2594 if (rettv != NULL && (rettv->v_type != VAR_LIST
2595 || rettv->vval.v_list == NULL))
2597 if (!quiet)
2598 EMSG(_("E709: [:] requires a List value"));
2599 if (!empty1)
2600 clear_tv(&var1);
2601 return NULL;
2603 p = skipwhite(p + 1);
2604 if (*p == ']')
2605 lp->ll_empty2 = TRUE;
2606 else
2608 lp->ll_empty2 = FALSE;
2609 if (eval1(&p, &var2, TRUE) == FAIL) /* recursive! */
2611 if (!empty1)
2612 clear_tv(&var1);
2613 return NULL;
2615 if (get_tv_string_chk(&var2) == NULL)
2617 /* not a number or string */
2618 if (!empty1)
2619 clear_tv(&var1);
2620 clear_tv(&var2);
2621 return NULL;
2624 lp->ll_range = TRUE;
2626 else
2627 lp->ll_range = FALSE;
2629 if (*p != ']')
2631 if (!quiet)
2632 EMSG(_(e_missbrac));
2633 if (!empty1)
2634 clear_tv(&var1);
2635 if (lp->ll_range && !lp->ll_empty2)
2636 clear_tv(&var2);
2637 return NULL;
2640 /* Skip to past ']'. */
2641 ++p;
2644 if (lp->ll_tv->v_type == VAR_DICT)
2646 if (len == -1)
2648 /* "[key]": get key from "var1" */
2649 key = get_tv_string(&var1); /* is number or string */
2650 if (*key == NUL)
2652 if (!quiet)
2653 EMSG(_(e_emptykey));
2654 clear_tv(&var1);
2655 return NULL;
2658 lp->ll_list = NULL;
2659 lp->ll_dict = lp->ll_tv->vval.v_dict;
2660 lp->ll_di = dict_find(lp->ll_dict, key, len);
2661 if (lp->ll_di == NULL)
2663 /* Key does not exist in dict: may need to add it. */
2664 if (*p == '[' || *p == '.' || unlet)
2666 if (!quiet)
2667 EMSG2(_(e_dictkey), key);
2668 if (len == -1)
2669 clear_tv(&var1);
2670 return NULL;
2672 if (len == -1)
2673 lp->ll_newkey = vim_strsave(key);
2674 else
2675 lp->ll_newkey = vim_strnsave(key, len);
2676 if (len == -1)
2677 clear_tv(&var1);
2678 if (lp->ll_newkey == NULL)
2679 p = NULL;
2680 break;
2682 if (len == -1)
2683 clear_tv(&var1);
2684 lp->ll_tv = &lp->ll_di->di_tv;
2686 else
2689 * Get the number and item for the only or first index of the List.
2691 if (empty1)
2692 lp->ll_n1 = 0;
2693 else
2695 lp->ll_n1 = get_tv_number(&var1); /* is number or string */
2696 clear_tv(&var1);
2698 lp->ll_dict = NULL;
2699 lp->ll_list = lp->ll_tv->vval.v_list;
2700 lp->ll_li = list_find(lp->ll_list, lp->ll_n1);
2701 if (lp->ll_li == NULL)
2703 if (lp->ll_n1 < 0)
2705 lp->ll_n1 = 0;
2706 lp->ll_li = list_find(lp->ll_list, lp->ll_n1);
2709 if (lp->ll_li == NULL)
2711 if (lp->ll_range && !lp->ll_empty2)
2712 clear_tv(&var2);
2713 return NULL;
2717 * May need to find the item or absolute index for the second
2718 * index of a range.
2719 * When no index given: "lp->ll_empty2" is TRUE.
2720 * Otherwise "lp->ll_n2" is set to the second index.
2722 if (lp->ll_range && !lp->ll_empty2)
2724 lp->ll_n2 = get_tv_number(&var2); /* is number or string */
2725 clear_tv(&var2);
2726 if (lp->ll_n2 < 0)
2728 ni = list_find(lp->ll_list, lp->ll_n2);
2729 if (ni == NULL)
2730 return NULL;
2731 lp->ll_n2 = list_idx_of_item(lp->ll_list, ni);
2734 /* Check that lp->ll_n2 isn't before lp->ll_n1. */
2735 if (lp->ll_n1 < 0)
2736 lp->ll_n1 = list_idx_of_item(lp->ll_list, lp->ll_li);
2737 if (lp->ll_n2 < lp->ll_n1)
2738 return NULL;
2741 lp->ll_tv = &lp->ll_li->li_tv;
2745 return p;
2749 * Clear lval "lp" that was filled by get_lval().
2751 static void
2752 clear_lval(lp)
2753 lval_T *lp;
2755 vim_free(lp->ll_exp_name);
2756 vim_free(lp->ll_newkey);
2760 * Set a variable that was parsed by get_lval() to "rettv".
2761 * "endp" points to just after the parsed name.
2762 * "op" is NULL, "+" for "+=", "-" for "-=", "." for ".=" or "=" for "=".
2764 static void
2765 set_var_lval(lp, endp, rettv, copy, op)
2766 lval_T *lp;
2767 char_u *endp;
2768 typval_T *rettv;
2769 int copy;
2770 char_u *op;
2772 int cc;
2773 listitem_T *ri;
2774 dictitem_T *di;
2776 if (lp->ll_tv == NULL)
2778 if (!check_changedtick(lp->ll_name))
2780 cc = *endp;
2781 *endp = NUL;
2782 if (op != NULL && *op != '=')
2784 typval_T tv;
2786 /* handle +=, -= and .= */
2787 if (get_var_tv(lp->ll_name, (int)STRLEN(lp->ll_name),
2788 &tv, TRUE) == OK)
2790 if (tv_op(&tv, rettv, op) == OK)
2791 set_var(lp->ll_name, &tv, FALSE);
2792 clear_tv(&tv);
2795 else
2796 set_var(lp->ll_name, rettv, copy);
2797 *endp = cc;
2800 else if (tv_check_lock(lp->ll_newkey == NULL
2801 ? lp->ll_tv->v_lock
2802 : lp->ll_tv->vval.v_dict->dv_lock, lp->ll_name))
2804 else if (lp->ll_range)
2807 * Assign the List values to the list items.
2809 for (ri = rettv->vval.v_list->lv_first; ri != NULL; )
2811 if (op != NULL && *op != '=')
2812 tv_op(&lp->ll_li->li_tv, &ri->li_tv, op);
2813 else
2815 clear_tv(&lp->ll_li->li_tv);
2816 copy_tv(&ri->li_tv, &lp->ll_li->li_tv);
2818 ri = ri->li_next;
2819 if (ri == NULL || (!lp->ll_empty2 && lp->ll_n2 == lp->ll_n1))
2820 break;
2821 if (lp->ll_li->li_next == NULL)
2823 /* Need to add an empty item. */
2824 if (list_append_number(lp->ll_list, 0) == FAIL)
2826 ri = NULL;
2827 break;
2830 lp->ll_li = lp->ll_li->li_next;
2831 ++lp->ll_n1;
2833 if (ri != NULL)
2834 EMSG(_("E710: List value has more items than target"));
2835 else if (lp->ll_empty2
2836 ? (lp->ll_li != NULL && lp->ll_li->li_next != NULL)
2837 : lp->ll_n1 != lp->ll_n2)
2838 EMSG(_("E711: List value has not enough items"));
2840 else
2843 * Assign to a List or Dictionary item.
2845 if (lp->ll_newkey != NULL)
2847 if (op != NULL && *op != '=')
2849 EMSG2(_(e_letwrong), op);
2850 return;
2853 /* Need to add an item to the Dictionary. */
2854 di = dictitem_alloc(lp->ll_newkey);
2855 if (di == NULL)
2856 return;
2857 if (dict_add(lp->ll_tv->vval.v_dict, di) == FAIL)
2859 vim_free(di);
2860 return;
2862 lp->ll_tv = &di->di_tv;
2864 else if (op != NULL && *op != '=')
2866 tv_op(lp->ll_tv, rettv, op);
2867 return;
2869 else
2870 clear_tv(lp->ll_tv);
2873 * Assign the value to the variable or list item.
2875 if (copy)
2876 copy_tv(rettv, lp->ll_tv);
2877 else
2879 *lp->ll_tv = *rettv;
2880 lp->ll_tv->v_lock = 0;
2881 init_tv(rettv);
2887 * Handle "tv1 += tv2", "tv1 -= tv2" and "tv1 .= tv2"
2888 * Returns OK or FAIL.
2890 static int
2891 tv_op(tv1, tv2, op)
2892 typval_T *tv1;
2893 typval_T *tv2;
2894 char_u *op;
2896 long n;
2897 char_u numbuf[NUMBUFLEN];
2898 char_u *s;
2900 /* Can't do anything with a Funcref or a Dict on the right. */
2901 if (tv2->v_type != VAR_FUNC && tv2->v_type != VAR_DICT)
2903 switch (tv1->v_type)
2905 case VAR_DICT:
2906 case VAR_FUNC:
2907 break;
2909 case VAR_LIST:
2910 if (*op != '+' || tv2->v_type != VAR_LIST)
2911 break;
2912 /* List += List */
2913 if (tv1->vval.v_list != NULL && tv2->vval.v_list != NULL)
2914 list_extend(tv1->vval.v_list, tv2->vval.v_list, NULL);
2915 return OK;
2917 case VAR_NUMBER:
2918 case VAR_STRING:
2919 if (tv2->v_type == VAR_LIST)
2920 break;
2921 if (*op == '+' || *op == '-')
2923 /* nr += nr or nr -= nr*/
2924 n = get_tv_number(tv1);
2925 #ifdef FEAT_FLOAT
2926 if (tv2->v_type == VAR_FLOAT)
2928 float_T f = n;
2930 if (*op == '+')
2931 f += tv2->vval.v_float;
2932 else
2933 f -= tv2->vval.v_float;
2934 clear_tv(tv1);
2935 tv1->v_type = VAR_FLOAT;
2936 tv1->vval.v_float = f;
2938 else
2939 #endif
2941 if (*op == '+')
2942 n += get_tv_number(tv2);
2943 else
2944 n -= get_tv_number(tv2);
2945 clear_tv(tv1);
2946 tv1->v_type = VAR_NUMBER;
2947 tv1->vval.v_number = n;
2950 else
2952 if (tv2->v_type == VAR_FLOAT)
2953 break;
2955 /* str .= str */
2956 s = get_tv_string(tv1);
2957 s = concat_str(s, get_tv_string_buf(tv2, numbuf));
2958 clear_tv(tv1);
2959 tv1->v_type = VAR_STRING;
2960 tv1->vval.v_string = s;
2962 return OK;
2964 #ifdef FEAT_FLOAT
2965 case VAR_FLOAT:
2967 float_T f;
2969 if (*op == '.' || (tv2->v_type != VAR_FLOAT
2970 && tv2->v_type != VAR_NUMBER
2971 && tv2->v_type != VAR_STRING))
2972 break;
2973 if (tv2->v_type == VAR_FLOAT)
2974 f = tv2->vval.v_float;
2975 else
2976 f = get_tv_number(tv2);
2977 if (*op == '+')
2978 tv1->vval.v_float += f;
2979 else
2980 tv1->vval.v_float -= f;
2982 return OK;
2983 #endif
2987 EMSG2(_(e_letwrong), op);
2988 return FAIL;
2992 * Add a watcher to a list.
2994 static void
2995 list_add_watch(l, lw)
2996 list_T *l;
2997 listwatch_T *lw;
2999 lw->lw_next = l->lv_watch;
3000 l->lv_watch = lw;
3004 * Remove a watcher from a list.
3005 * No warning when it isn't found...
3007 static void
3008 list_rem_watch(l, lwrem)
3009 list_T *l;
3010 listwatch_T *lwrem;
3012 listwatch_T *lw, **lwp;
3014 lwp = &l->lv_watch;
3015 for (lw = l->lv_watch; lw != NULL; lw = lw->lw_next)
3017 if (lw == lwrem)
3019 *lwp = lw->lw_next;
3020 break;
3022 lwp = &lw->lw_next;
3027 * Just before removing an item from a list: advance watchers to the next
3028 * item.
3030 static void
3031 list_fix_watch(l, item)
3032 list_T *l;
3033 listitem_T *item;
3035 listwatch_T *lw;
3037 for (lw = l->lv_watch; lw != NULL; lw = lw->lw_next)
3038 if (lw->lw_item == item)
3039 lw->lw_item = item->li_next;
3043 * Evaluate the expression used in a ":for var in expr" command.
3044 * "arg" points to "var".
3045 * Set "*errp" to TRUE for an error, FALSE otherwise;
3046 * Return a pointer that holds the info. Null when there is an error.
3048 void *
3049 eval_for_line(arg, errp, nextcmdp, skip)
3050 char_u *arg;
3051 int *errp;
3052 char_u **nextcmdp;
3053 int skip;
3055 forinfo_T *fi;
3056 char_u *expr;
3057 typval_T tv;
3058 list_T *l;
3060 *errp = TRUE; /* default: there is an error */
3062 fi = (forinfo_T *)alloc_clear(sizeof(forinfo_T));
3063 if (fi == NULL)
3064 return NULL;
3066 expr = skip_var_list(arg, &fi->fi_varcount, &fi->fi_semicolon);
3067 if (expr == NULL)
3068 return fi;
3070 expr = skipwhite(expr);
3071 if (expr[0] != 'i' || expr[1] != 'n' || !vim_iswhite(expr[2]))
3073 EMSG(_("E690: Missing \"in\" after :for"));
3074 return fi;
3077 if (skip)
3078 ++emsg_skip;
3079 if (eval0(skipwhite(expr + 2), &tv, nextcmdp, !skip) == OK)
3081 *errp = FALSE;
3082 if (!skip)
3084 l = tv.vval.v_list;
3085 if (tv.v_type != VAR_LIST || l == NULL)
3087 EMSG(_(e_listreq));
3088 clear_tv(&tv);
3090 else
3092 /* No need to increment the refcount, it's already set for the
3093 * list being used in "tv". */
3094 fi->fi_list = l;
3095 list_add_watch(l, &fi->fi_lw);
3096 fi->fi_lw.lw_item = l->lv_first;
3100 if (skip)
3101 --emsg_skip;
3103 return fi;
3107 * Use the first item in a ":for" list. Advance to the next.
3108 * Assign the values to the variable (list). "arg" points to the first one.
3109 * Return TRUE when a valid item was found, FALSE when at end of list or
3110 * something wrong.
3113 next_for_item(fi_void, arg)
3114 void *fi_void;
3115 char_u *arg;
3117 forinfo_T *fi = (forinfo_T *)fi_void;
3118 int result;
3119 listitem_T *item;
3121 item = fi->fi_lw.lw_item;
3122 if (item == NULL)
3123 result = FALSE;
3124 else
3126 fi->fi_lw.lw_item = item->li_next;
3127 result = (ex_let_vars(arg, &item->li_tv, TRUE,
3128 fi->fi_semicolon, fi->fi_varcount, NULL) == OK);
3130 return result;
3134 * Free the structure used to store info used by ":for".
3136 void
3137 free_for_info(fi_void)
3138 void *fi_void;
3140 forinfo_T *fi = (forinfo_T *)fi_void;
3142 if (fi != NULL && fi->fi_list != NULL)
3144 list_rem_watch(fi->fi_list, &fi->fi_lw);
3145 list_unref(fi->fi_list);
3147 vim_free(fi);
3150 #if defined(FEAT_CMDL_COMPL) || defined(PROTO)
3152 void
3153 set_context_for_expression(xp, arg, cmdidx)
3154 expand_T *xp;
3155 char_u *arg;
3156 cmdidx_T cmdidx;
3158 int got_eq = FALSE;
3159 int c;
3160 char_u *p;
3162 if (cmdidx == CMD_let)
3164 xp->xp_context = EXPAND_USER_VARS;
3165 if (vim_strpbrk(arg, (char_u *)"\"'+-*/%.=!?~|&$([<>,#") == NULL)
3167 /* ":let var1 var2 ...": find last space. */
3168 for (p = arg + STRLEN(arg); p >= arg; )
3170 xp->xp_pattern = p;
3171 mb_ptr_back(arg, p);
3172 if (vim_iswhite(*p))
3173 break;
3175 return;
3178 else
3179 xp->xp_context = cmdidx == CMD_call ? EXPAND_FUNCTIONS
3180 : EXPAND_EXPRESSION;
3181 while ((xp->xp_pattern = vim_strpbrk(arg,
3182 (char_u *)"\"'+-*/%.=!?~|&$([<>,#")) != NULL)
3184 c = *xp->xp_pattern;
3185 if (c == '&')
3187 c = xp->xp_pattern[1];
3188 if (c == '&')
3190 ++xp->xp_pattern;
3191 xp->xp_context = cmdidx != CMD_let || got_eq
3192 ? EXPAND_EXPRESSION : EXPAND_NOTHING;
3194 else if (c != ' ')
3196 xp->xp_context = EXPAND_SETTINGS;
3197 if ((c == 'l' || c == 'g') && xp->xp_pattern[2] == ':')
3198 xp->xp_pattern += 2;
3202 else if (c == '$')
3204 /* environment variable */
3205 xp->xp_context = EXPAND_ENV_VARS;
3207 else if (c == '=')
3209 got_eq = TRUE;
3210 xp->xp_context = EXPAND_EXPRESSION;
3212 else if (c == '<'
3213 && xp->xp_context == EXPAND_FUNCTIONS
3214 && vim_strchr(xp->xp_pattern, '(') == NULL)
3216 /* Function name can start with "<SNR>" */
3217 break;
3219 else if (cmdidx != CMD_let || got_eq)
3221 if (c == '"') /* string */
3223 while ((c = *++xp->xp_pattern) != NUL && c != '"')
3224 if (c == '\\' && xp->xp_pattern[1] != NUL)
3225 ++xp->xp_pattern;
3226 xp->xp_context = EXPAND_NOTHING;
3228 else if (c == '\'') /* literal string */
3230 /* Trick: '' is like stopping and starting a literal string. */
3231 while ((c = *++xp->xp_pattern) != NUL && c != '\'')
3232 /* skip */ ;
3233 xp->xp_context = EXPAND_NOTHING;
3235 else if (c == '|')
3237 if (xp->xp_pattern[1] == '|')
3239 ++xp->xp_pattern;
3240 xp->xp_context = EXPAND_EXPRESSION;
3242 else
3243 xp->xp_context = EXPAND_COMMANDS;
3245 else
3246 xp->xp_context = EXPAND_EXPRESSION;
3248 else
3249 /* Doesn't look like something valid, expand as an expression
3250 * anyway. */
3251 xp->xp_context = EXPAND_EXPRESSION;
3252 arg = xp->xp_pattern;
3253 if (*arg != NUL)
3254 while ((c = *++arg) != NUL && (c == ' ' || c == '\t'))
3255 /* skip */ ;
3257 xp->xp_pattern = arg;
3260 #endif /* FEAT_CMDL_COMPL */
3263 * ":1,25call func(arg1, arg2)" function call.
3265 void
3266 ex_call(eap)
3267 exarg_T *eap;
3269 char_u *arg = eap->arg;
3270 char_u *startarg;
3271 char_u *name;
3272 char_u *tofree;
3273 int len;
3274 typval_T rettv;
3275 linenr_T lnum;
3276 int doesrange;
3277 int failed = FALSE;
3278 funcdict_T fudi;
3280 tofree = trans_function_name(&arg, eap->skip, TFN_INT, &fudi);
3281 if (fudi.fd_newkey != NULL)
3283 /* Still need to give an error message for missing key. */
3284 EMSG2(_(e_dictkey), fudi.fd_newkey);
3285 vim_free(fudi.fd_newkey);
3287 if (tofree == NULL)
3288 return;
3290 /* Increase refcount on dictionary, it could get deleted when evaluating
3291 * the arguments. */
3292 if (fudi.fd_dict != NULL)
3293 ++fudi.fd_dict->dv_refcount;
3295 /* If it is the name of a variable of type VAR_FUNC use its contents. */
3296 len = (int)STRLEN(tofree);
3297 name = deref_func_name(tofree, &len);
3299 /* Skip white space to allow ":call func ()". Not good, but required for
3300 * backward compatibility. */
3301 startarg = skipwhite(arg);
3302 rettv.v_type = VAR_UNKNOWN; /* clear_tv() uses this */
3304 if (*startarg != '(')
3306 EMSG2(_("E107: Missing parentheses: %s"), eap->arg);
3307 goto end;
3311 * When skipping, evaluate the function once, to find the end of the
3312 * arguments.
3313 * When the function takes a range, this is discovered after the first
3314 * call, and the loop is broken.
3316 if (eap->skip)
3318 ++emsg_skip;
3319 lnum = eap->line2; /* do it once, also with an invalid range */
3321 else
3322 lnum = eap->line1;
3323 for ( ; lnum <= eap->line2; ++lnum)
3325 if (!eap->skip && eap->addr_count > 0)
3327 curwin->w_cursor.lnum = lnum;
3328 curwin->w_cursor.col = 0;
3330 arg = startarg;
3331 if (get_func_tv(name, (int)STRLEN(name), &rettv, &arg,
3332 eap->line1, eap->line2, &doesrange,
3333 !eap->skip, fudi.fd_dict) == FAIL)
3335 failed = TRUE;
3336 break;
3339 /* Handle a function returning a Funcref, Dictionary or List. */
3340 if (handle_subscript(&arg, &rettv, !eap->skip, TRUE) == FAIL)
3342 failed = TRUE;
3343 break;
3346 clear_tv(&rettv);
3347 if (doesrange || eap->skip)
3348 break;
3350 /* Stop when immediately aborting on error, or when an interrupt
3351 * occurred or an exception was thrown but not caught.
3352 * get_func_tv() returned OK, so that the check for trailing
3353 * characters below is executed. */
3354 if (aborting())
3355 break;
3357 if (eap->skip)
3358 --emsg_skip;
3360 if (!failed)
3362 /* Check for trailing illegal characters and a following command. */
3363 if (!ends_excmd(*arg))
3365 emsg_severe = TRUE;
3366 EMSG(_(e_trailing));
3368 else
3369 eap->nextcmd = check_nextcmd(arg);
3372 end:
3373 dict_unref(fudi.fd_dict);
3374 vim_free(tofree);
3378 * ":unlet[!] var1 ... " command.
3380 void
3381 ex_unlet(eap)
3382 exarg_T *eap;
3384 ex_unletlock(eap, eap->arg, 0);
3388 * ":lockvar" and ":unlockvar" commands
3390 void
3391 ex_lockvar(eap)
3392 exarg_T *eap;
3394 char_u *arg = eap->arg;
3395 int deep = 2;
3397 if (eap->forceit)
3398 deep = -1;
3399 else if (vim_isdigit(*arg))
3401 deep = getdigits(&arg);
3402 arg = skipwhite(arg);
3405 ex_unletlock(eap, arg, deep);
3409 * ":unlet", ":lockvar" and ":unlockvar" are quite similar.
3411 static void
3412 ex_unletlock(eap, argstart, deep)
3413 exarg_T *eap;
3414 char_u *argstart;
3415 int deep;
3417 char_u *arg = argstart;
3418 char_u *name_end;
3419 int error = FALSE;
3420 lval_T lv;
3424 /* Parse the name and find the end. */
3425 name_end = get_lval(arg, NULL, &lv, TRUE, eap->skip || error, FALSE,
3426 FNE_CHECK_START);
3427 if (lv.ll_name == NULL)
3428 error = TRUE; /* error but continue parsing */
3429 if (name_end == NULL || (!vim_iswhite(*name_end)
3430 && !ends_excmd(*name_end)))
3432 if (name_end != NULL)
3434 emsg_severe = TRUE;
3435 EMSG(_(e_trailing));
3437 if (!(eap->skip || error))
3438 clear_lval(&lv);
3439 break;
3442 if (!error && !eap->skip)
3444 if (eap->cmdidx == CMD_unlet)
3446 if (do_unlet_var(&lv, name_end, eap->forceit) == FAIL)
3447 error = TRUE;
3449 else
3451 if (do_lock_var(&lv, name_end, deep,
3452 eap->cmdidx == CMD_lockvar) == FAIL)
3453 error = TRUE;
3457 if (!eap->skip)
3458 clear_lval(&lv);
3460 arg = skipwhite(name_end);
3461 } while (!ends_excmd(*arg));
3463 eap->nextcmd = check_nextcmd(arg);
3466 static int
3467 do_unlet_var(lp, name_end, forceit)
3468 lval_T *lp;
3469 char_u *name_end;
3470 int forceit;
3472 int ret = OK;
3473 int cc;
3475 if (lp->ll_tv == NULL)
3477 cc = *name_end;
3478 *name_end = NUL;
3480 /* Normal name or expanded name. */
3481 if (check_changedtick(lp->ll_name))
3482 ret = FAIL;
3483 else if (do_unlet(lp->ll_name, forceit) == FAIL)
3484 ret = FAIL;
3485 *name_end = cc;
3487 else if (tv_check_lock(lp->ll_tv->v_lock, lp->ll_name))
3488 return FAIL;
3489 else if (lp->ll_range)
3491 listitem_T *li;
3493 /* Delete a range of List items. */
3494 while (lp->ll_li != NULL && (lp->ll_empty2 || lp->ll_n2 >= lp->ll_n1))
3496 li = lp->ll_li->li_next;
3497 listitem_remove(lp->ll_list, lp->ll_li);
3498 lp->ll_li = li;
3499 ++lp->ll_n1;
3502 else
3504 if (lp->ll_list != NULL)
3505 /* unlet a List item. */
3506 listitem_remove(lp->ll_list, lp->ll_li);
3507 else
3508 /* unlet a Dictionary item. */
3509 dictitem_remove(lp->ll_dict, lp->ll_di);
3512 return ret;
3516 * "unlet" a variable. Return OK if it existed, FAIL if not.
3517 * When "forceit" is TRUE don't complain if the variable doesn't exist.
3520 do_unlet(name, forceit)
3521 char_u *name;
3522 int forceit;
3524 hashtab_T *ht;
3525 hashitem_T *hi;
3526 char_u *varname;
3527 dictitem_T *di;
3529 ht = find_var_ht(name, &varname);
3530 if (ht != NULL && *varname != NUL)
3532 hi = hash_find(ht, varname);
3533 if (!HASHITEM_EMPTY(hi))
3535 di = HI2DI(hi);
3536 if (var_check_fixed(di->di_flags, name)
3537 || var_check_ro(di->di_flags, name))
3538 return FAIL;
3539 delete_var(ht, hi);
3540 return OK;
3543 if (forceit)
3544 return OK;
3545 EMSG2(_("E108: No such variable: \"%s\""), name);
3546 return FAIL;
3550 * Lock or unlock variable indicated by "lp".
3551 * "deep" is the levels to go (-1 for unlimited);
3552 * "lock" is TRUE for ":lockvar", FALSE for ":unlockvar".
3554 static int
3555 do_lock_var(lp, name_end, deep, lock)
3556 lval_T *lp;
3557 char_u *name_end;
3558 int deep;
3559 int lock;
3561 int ret = OK;
3562 int cc;
3563 dictitem_T *di;
3565 if (deep == 0) /* nothing to do */
3566 return OK;
3568 if (lp->ll_tv == NULL)
3570 cc = *name_end;
3571 *name_end = NUL;
3573 /* Normal name or expanded name. */
3574 if (check_changedtick(lp->ll_name))
3575 ret = FAIL;
3576 else
3578 di = find_var(lp->ll_name, NULL);
3579 if (di == NULL)
3580 ret = FAIL;
3581 else
3583 if (lock)
3584 di->di_flags |= DI_FLAGS_LOCK;
3585 else
3586 di->di_flags &= ~DI_FLAGS_LOCK;
3587 item_lock(&di->di_tv, deep, lock);
3590 *name_end = cc;
3592 else if (lp->ll_range)
3594 listitem_T *li = lp->ll_li;
3596 /* (un)lock a range of List items. */
3597 while (li != NULL && (lp->ll_empty2 || lp->ll_n2 >= lp->ll_n1))
3599 item_lock(&li->li_tv, deep, lock);
3600 li = li->li_next;
3601 ++lp->ll_n1;
3604 else if (lp->ll_list != NULL)
3605 /* (un)lock a List item. */
3606 item_lock(&lp->ll_li->li_tv, deep, lock);
3607 else
3608 /* un(lock) a Dictionary item. */
3609 item_lock(&lp->ll_di->di_tv, deep, lock);
3611 return ret;
3615 * Lock or unlock an item. "deep" is nr of levels to go.
3617 static void
3618 item_lock(tv, deep, lock)
3619 typval_T *tv;
3620 int deep;
3621 int lock;
3623 static int recurse = 0;
3624 list_T *l;
3625 listitem_T *li;
3626 dict_T *d;
3627 hashitem_T *hi;
3628 int todo;
3630 if (recurse >= DICT_MAXNEST)
3632 EMSG(_("E743: variable nested too deep for (un)lock"));
3633 return;
3635 if (deep == 0)
3636 return;
3637 ++recurse;
3639 /* lock/unlock the item itself */
3640 if (lock)
3641 tv->v_lock |= VAR_LOCKED;
3642 else
3643 tv->v_lock &= ~VAR_LOCKED;
3645 switch (tv->v_type)
3647 case VAR_LIST:
3648 if ((l = tv->vval.v_list) != NULL)
3650 if (lock)
3651 l->lv_lock |= VAR_LOCKED;
3652 else
3653 l->lv_lock &= ~VAR_LOCKED;
3654 if (deep < 0 || deep > 1)
3655 /* recursive: lock/unlock the items the List contains */
3656 for (li = l->lv_first; li != NULL; li = li->li_next)
3657 item_lock(&li->li_tv, deep - 1, lock);
3659 break;
3660 case VAR_DICT:
3661 if ((d = tv->vval.v_dict) != NULL)
3663 if (lock)
3664 d->dv_lock |= VAR_LOCKED;
3665 else
3666 d->dv_lock &= ~VAR_LOCKED;
3667 if (deep < 0 || deep > 1)
3669 /* recursive: lock/unlock the items the List contains */
3670 todo = (int)d->dv_hashtab.ht_used;
3671 for (hi = d->dv_hashtab.ht_array; todo > 0; ++hi)
3673 if (!HASHITEM_EMPTY(hi))
3675 --todo;
3676 item_lock(&HI2DI(hi)->di_tv, deep - 1, lock);
3682 --recurse;
3686 * Return TRUE if typeval "tv" is locked: Either that value is locked itself
3687 * or it refers to a List or Dictionary that is locked.
3689 static int
3690 tv_islocked(tv)
3691 typval_T *tv;
3693 return (tv->v_lock & VAR_LOCKED)
3694 || (tv->v_type == VAR_LIST
3695 && tv->vval.v_list != NULL
3696 && (tv->vval.v_list->lv_lock & VAR_LOCKED))
3697 || (tv->v_type == VAR_DICT
3698 && tv->vval.v_dict != NULL
3699 && (tv->vval.v_dict->dv_lock & VAR_LOCKED));
3702 #if (defined(FEAT_MENU) && defined(FEAT_MULTI_LANG)) || defined(PROTO)
3704 * Delete all "menutrans_" variables.
3706 void
3707 del_menutrans_vars()
3709 hashitem_T *hi;
3710 int todo;
3712 hash_lock(&globvarht);
3713 todo = (int)globvarht.ht_used;
3714 for (hi = globvarht.ht_array; todo > 0 && !got_int; ++hi)
3716 if (!HASHITEM_EMPTY(hi))
3718 --todo;
3719 if (STRNCMP(HI2DI(hi)->di_key, "menutrans_", 10) == 0)
3720 delete_var(&globvarht, hi);
3723 hash_unlock(&globvarht);
3725 #endif
3727 #if defined(FEAT_CMDL_COMPL) || defined(PROTO)
3730 * Local string buffer for the next two functions to store a variable name
3731 * with its prefix. Allocated in cat_prefix_varname(), freed later in
3732 * get_user_var_name().
3735 static char_u *cat_prefix_varname __ARGS((int prefix, char_u *name));
3737 static char_u *varnamebuf = NULL;
3738 static int varnamebuflen = 0;
3741 * Function to concatenate a prefix and a variable name.
3743 static char_u *
3744 cat_prefix_varname(prefix, name)
3745 int prefix;
3746 char_u *name;
3748 int len;
3750 len = (int)STRLEN(name) + 3;
3751 if (len > varnamebuflen)
3753 vim_free(varnamebuf);
3754 len += 10; /* some additional space */
3755 varnamebuf = alloc(len);
3756 if (varnamebuf == NULL)
3758 varnamebuflen = 0;
3759 return NULL;
3761 varnamebuflen = len;
3763 *varnamebuf = prefix;
3764 varnamebuf[1] = ':';
3765 STRCPY(varnamebuf + 2, name);
3766 return varnamebuf;
3770 * Function given to ExpandGeneric() to obtain the list of user defined
3771 * (global/buffer/window/built-in) variable names.
3773 /*ARGSUSED*/
3774 char_u *
3775 get_user_var_name(xp, idx)
3776 expand_T *xp;
3777 int idx;
3779 static long_u gdone;
3780 static long_u bdone;
3781 static long_u wdone;
3782 #ifdef FEAT_WINDOWS
3783 static long_u tdone;
3784 #endif
3785 static int vidx;
3786 static hashitem_T *hi;
3787 hashtab_T *ht;
3789 if (idx == 0)
3791 gdone = bdone = wdone = vidx = 0;
3792 #ifdef FEAT_WINDOWS
3793 tdone = 0;
3794 #endif
3797 /* Global variables */
3798 if (gdone < globvarht.ht_used)
3800 if (gdone++ == 0)
3801 hi = globvarht.ht_array;
3802 else
3803 ++hi;
3804 while (HASHITEM_EMPTY(hi))
3805 ++hi;
3806 if (STRNCMP("g:", xp->xp_pattern, 2) == 0)
3807 return cat_prefix_varname('g', hi->hi_key);
3808 return hi->hi_key;
3811 /* b: variables */
3812 ht = &curbuf->b_vars.dv_hashtab;
3813 if (bdone < ht->ht_used)
3815 if (bdone++ == 0)
3816 hi = ht->ht_array;
3817 else
3818 ++hi;
3819 while (HASHITEM_EMPTY(hi))
3820 ++hi;
3821 return cat_prefix_varname('b', hi->hi_key);
3823 if (bdone == ht->ht_used)
3825 ++bdone;
3826 return (char_u *)"b:changedtick";
3829 /* w: variables */
3830 ht = &curwin->w_vars.dv_hashtab;
3831 if (wdone < ht->ht_used)
3833 if (wdone++ == 0)
3834 hi = ht->ht_array;
3835 else
3836 ++hi;
3837 while (HASHITEM_EMPTY(hi))
3838 ++hi;
3839 return cat_prefix_varname('w', hi->hi_key);
3842 #ifdef FEAT_WINDOWS
3843 /* t: variables */
3844 ht = &curtab->tp_vars.dv_hashtab;
3845 if (tdone < ht->ht_used)
3847 if (tdone++ == 0)
3848 hi = ht->ht_array;
3849 else
3850 ++hi;
3851 while (HASHITEM_EMPTY(hi))
3852 ++hi;
3853 return cat_prefix_varname('t', hi->hi_key);
3855 #endif
3857 /* v: variables */
3858 if (vidx < VV_LEN)
3859 return cat_prefix_varname('v', (char_u *)vimvars[vidx++].vv_name);
3861 vim_free(varnamebuf);
3862 varnamebuf = NULL;
3863 varnamebuflen = 0;
3864 return NULL;
3867 #endif /* FEAT_CMDL_COMPL */
3870 * types for expressions.
3872 typedef enum
3874 TYPE_UNKNOWN = 0
3875 , TYPE_EQUAL /* == */
3876 , TYPE_NEQUAL /* != */
3877 , TYPE_GREATER /* > */
3878 , TYPE_GEQUAL /* >= */
3879 , TYPE_SMALLER /* < */
3880 , TYPE_SEQUAL /* <= */
3881 , TYPE_MATCH /* =~ */
3882 , TYPE_NOMATCH /* !~ */
3883 } exptype_T;
3886 * The "evaluate" argument: When FALSE, the argument is only parsed but not
3887 * executed. The function may return OK, but the rettv will be of type
3888 * VAR_UNKNOWN. The function still returns FAIL for a syntax error.
3892 * Handle zero level expression.
3893 * This calls eval1() and handles error message and nextcmd.
3894 * Put the result in "rettv" when returning OK and "evaluate" is TRUE.
3895 * Note: "rettv.v_lock" is not set.
3896 * Return OK or FAIL.
3898 static int
3899 eval0(arg, rettv, nextcmd, evaluate)
3900 char_u *arg;
3901 typval_T *rettv;
3902 char_u **nextcmd;
3903 int evaluate;
3905 int ret;
3906 char_u *p;
3908 p = skipwhite(arg);
3909 ret = eval1(&p, rettv, evaluate);
3910 if (ret == FAIL || !ends_excmd(*p))
3912 if (ret != FAIL)
3913 clear_tv(rettv);
3915 * Report the invalid expression unless the expression evaluation has
3916 * been cancelled due to an aborting error, an interrupt, or an
3917 * exception.
3919 if (!aborting())
3920 EMSG2(_(e_invexpr2), arg);
3921 ret = FAIL;
3923 if (nextcmd != NULL)
3924 *nextcmd = check_nextcmd(p);
3926 return ret;
3930 * Handle top level expression:
3931 * expr2 ? expr1 : expr1
3933 * "arg" must point to the first non-white of the expression.
3934 * "arg" is advanced to the next non-white after the recognized expression.
3936 * Note: "rettv.v_lock" is not set.
3938 * Return OK or FAIL.
3940 static int
3941 eval1(arg, rettv, evaluate)
3942 char_u **arg;
3943 typval_T *rettv;
3944 int evaluate;
3946 int result;
3947 typval_T var2;
3950 * Get the first variable.
3952 if (eval2(arg, rettv, evaluate) == FAIL)
3953 return FAIL;
3955 if ((*arg)[0] == '?')
3957 result = FALSE;
3958 if (evaluate)
3960 int error = FALSE;
3962 if (get_tv_number_chk(rettv, &error) != 0)
3963 result = TRUE;
3964 clear_tv(rettv);
3965 if (error)
3966 return FAIL;
3970 * Get the second variable.
3972 *arg = skipwhite(*arg + 1);
3973 if (eval1(arg, rettv, evaluate && result) == FAIL) /* recursive! */
3974 return FAIL;
3977 * Check for the ":".
3979 if ((*arg)[0] != ':')
3981 EMSG(_("E109: Missing ':' after '?'"));
3982 if (evaluate && result)
3983 clear_tv(rettv);
3984 return FAIL;
3988 * Get the third variable.
3990 *arg = skipwhite(*arg + 1);
3991 if (eval1(arg, &var2, evaluate && !result) == FAIL) /* recursive! */
3993 if (evaluate && result)
3994 clear_tv(rettv);
3995 return FAIL;
3997 if (evaluate && !result)
3998 *rettv = var2;
4001 return OK;
4005 * Handle first level expression:
4006 * expr2 || expr2 || expr2 logical OR
4008 * "arg" must point to the first non-white of the expression.
4009 * "arg" is advanced to the next non-white after the recognized expression.
4011 * Return OK or FAIL.
4013 static int
4014 eval2(arg, rettv, evaluate)
4015 char_u **arg;
4016 typval_T *rettv;
4017 int evaluate;
4019 typval_T var2;
4020 long result;
4021 int first;
4022 int error = FALSE;
4025 * Get the first variable.
4027 if (eval3(arg, rettv, evaluate) == FAIL)
4028 return FAIL;
4031 * Repeat until there is no following "||".
4033 first = TRUE;
4034 result = FALSE;
4035 while ((*arg)[0] == '|' && (*arg)[1] == '|')
4037 if (evaluate && first)
4039 if (get_tv_number_chk(rettv, &error) != 0)
4040 result = TRUE;
4041 clear_tv(rettv);
4042 if (error)
4043 return FAIL;
4044 first = FALSE;
4048 * Get the second variable.
4050 *arg = skipwhite(*arg + 2);
4051 if (eval3(arg, &var2, evaluate && !result) == FAIL)
4052 return FAIL;
4055 * Compute the result.
4057 if (evaluate && !result)
4059 if (get_tv_number_chk(&var2, &error) != 0)
4060 result = TRUE;
4061 clear_tv(&var2);
4062 if (error)
4063 return FAIL;
4065 if (evaluate)
4067 rettv->v_type = VAR_NUMBER;
4068 rettv->vval.v_number = result;
4072 return OK;
4076 * Handle second level expression:
4077 * expr3 && expr3 && expr3 logical AND
4079 * "arg" must point to the first non-white of the expression.
4080 * "arg" is advanced to the next non-white after the recognized expression.
4082 * Return OK or FAIL.
4084 static int
4085 eval3(arg, rettv, evaluate)
4086 char_u **arg;
4087 typval_T *rettv;
4088 int evaluate;
4090 typval_T var2;
4091 long result;
4092 int first;
4093 int error = FALSE;
4096 * Get the first variable.
4098 if (eval4(arg, rettv, evaluate) == FAIL)
4099 return FAIL;
4102 * Repeat until there is no following "&&".
4104 first = TRUE;
4105 result = TRUE;
4106 while ((*arg)[0] == '&' && (*arg)[1] == '&')
4108 if (evaluate && first)
4110 if (get_tv_number_chk(rettv, &error) == 0)
4111 result = FALSE;
4112 clear_tv(rettv);
4113 if (error)
4114 return FAIL;
4115 first = FALSE;
4119 * Get the second variable.
4121 *arg = skipwhite(*arg + 2);
4122 if (eval4(arg, &var2, evaluate && result) == FAIL)
4123 return FAIL;
4126 * Compute the result.
4128 if (evaluate && result)
4130 if (get_tv_number_chk(&var2, &error) == 0)
4131 result = FALSE;
4132 clear_tv(&var2);
4133 if (error)
4134 return FAIL;
4136 if (evaluate)
4138 rettv->v_type = VAR_NUMBER;
4139 rettv->vval.v_number = result;
4143 return OK;
4147 * Handle third level expression:
4148 * var1 == var2
4149 * var1 =~ var2
4150 * var1 != var2
4151 * var1 !~ var2
4152 * var1 > var2
4153 * var1 >= var2
4154 * var1 < var2
4155 * var1 <= var2
4156 * var1 is var2
4157 * var1 isnot var2
4159 * "arg" must point to the first non-white of the expression.
4160 * "arg" is advanced to the next non-white after the recognized expression.
4162 * Return OK or FAIL.
4164 static int
4165 eval4(arg, rettv, evaluate)
4166 char_u **arg;
4167 typval_T *rettv;
4168 int evaluate;
4170 typval_T var2;
4171 char_u *p;
4172 int i;
4173 exptype_T type = TYPE_UNKNOWN;
4174 int type_is = FALSE; /* TRUE for "is" and "isnot" */
4175 int len = 2;
4176 long n1, n2;
4177 char_u *s1, *s2;
4178 char_u buf1[NUMBUFLEN], buf2[NUMBUFLEN];
4179 regmatch_T regmatch;
4180 int ic;
4181 char_u *save_cpo;
4184 * Get the first variable.
4186 if (eval5(arg, rettv, evaluate) == FAIL)
4187 return FAIL;
4189 p = *arg;
4190 switch (p[0])
4192 case '=': if (p[1] == '=')
4193 type = TYPE_EQUAL;
4194 else if (p[1] == '~')
4195 type = TYPE_MATCH;
4196 break;
4197 case '!': if (p[1] == '=')
4198 type = TYPE_NEQUAL;
4199 else if (p[1] == '~')
4200 type = TYPE_NOMATCH;
4201 break;
4202 case '>': if (p[1] != '=')
4204 type = TYPE_GREATER;
4205 len = 1;
4207 else
4208 type = TYPE_GEQUAL;
4209 break;
4210 case '<': if (p[1] != '=')
4212 type = TYPE_SMALLER;
4213 len = 1;
4215 else
4216 type = TYPE_SEQUAL;
4217 break;
4218 case 'i': if (p[1] == 's')
4220 if (p[2] == 'n' && p[3] == 'o' && p[4] == 't')
4221 len = 5;
4222 if (!vim_isIDc(p[len]))
4224 type = len == 2 ? TYPE_EQUAL : TYPE_NEQUAL;
4225 type_is = TRUE;
4228 break;
4232 * If there is a comparative operator, use it.
4234 if (type != TYPE_UNKNOWN)
4236 /* extra question mark appended: ignore case */
4237 if (p[len] == '?')
4239 ic = TRUE;
4240 ++len;
4242 /* extra '#' appended: match case */
4243 else if (p[len] == '#')
4245 ic = FALSE;
4246 ++len;
4248 /* nothing appended: use 'ignorecase' */
4249 else
4250 ic = p_ic;
4253 * Get the second variable.
4255 *arg = skipwhite(p + len);
4256 if (eval5(arg, &var2, evaluate) == FAIL)
4258 clear_tv(rettv);
4259 return FAIL;
4262 if (evaluate)
4264 if (type_is && rettv->v_type != var2.v_type)
4266 /* For "is" a different type always means FALSE, for "notis"
4267 * it means TRUE. */
4268 n1 = (type == TYPE_NEQUAL);
4270 else if (rettv->v_type == VAR_LIST || var2.v_type == VAR_LIST)
4272 if (type_is)
4274 n1 = (rettv->v_type == var2.v_type
4275 && rettv->vval.v_list == var2.vval.v_list);
4276 if (type == TYPE_NEQUAL)
4277 n1 = !n1;
4279 else if (rettv->v_type != var2.v_type
4280 || (type != TYPE_EQUAL && type != TYPE_NEQUAL))
4282 if (rettv->v_type != var2.v_type)
4283 EMSG(_("E691: Can only compare List with List"));
4284 else
4285 EMSG(_("E692: Invalid operation for Lists"));
4286 clear_tv(rettv);
4287 clear_tv(&var2);
4288 return FAIL;
4290 else
4292 /* Compare two Lists for being equal or unequal. */
4293 n1 = list_equal(rettv->vval.v_list, var2.vval.v_list, ic);
4294 if (type == TYPE_NEQUAL)
4295 n1 = !n1;
4299 else if (rettv->v_type == VAR_DICT || var2.v_type == VAR_DICT)
4301 if (type_is)
4303 n1 = (rettv->v_type == var2.v_type
4304 && rettv->vval.v_dict == var2.vval.v_dict);
4305 if (type == TYPE_NEQUAL)
4306 n1 = !n1;
4308 else if (rettv->v_type != var2.v_type
4309 || (type != TYPE_EQUAL && type != TYPE_NEQUAL))
4311 if (rettv->v_type != var2.v_type)
4312 EMSG(_("E735: Can only compare Dictionary with Dictionary"));
4313 else
4314 EMSG(_("E736: Invalid operation for Dictionary"));
4315 clear_tv(rettv);
4316 clear_tv(&var2);
4317 return FAIL;
4319 else
4321 /* Compare two Dictionaries for being equal or unequal. */
4322 n1 = dict_equal(rettv->vval.v_dict, var2.vval.v_dict, ic);
4323 if (type == TYPE_NEQUAL)
4324 n1 = !n1;
4328 else if (rettv->v_type == VAR_FUNC || var2.v_type == VAR_FUNC)
4330 if (rettv->v_type != var2.v_type
4331 || (type != TYPE_EQUAL && type != TYPE_NEQUAL))
4333 if (rettv->v_type != var2.v_type)
4334 EMSG(_("E693: Can only compare Funcref with Funcref"));
4335 else
4336 EMSG(_("E694: Invalid operation for Funcrefs"));
4337 clear_tv(rettv);
4338 clear_tv(&var2);
4339 return FAIL;
4341 else
4343 /* Compare two Funcrefs for being equal or unequal. */
4344 if (rettv->vval.v_string == NULL
4345 || var2.vval.v_string == NULL)
4346 n1 = FALSE;
4347 else
4348 n1 = STRCMP(rettv->vval.v_string,
4349 var2.vval.v_string) == 0;
4350 if (type == TYPE_NEQUAL)
4351 n1 = !n1;
4355 #ifdef FEAT_FLOAT
4357 * If one of the two variables is a float, compare as a float.
4358 * When using "=~" or "!~", always compare as string.
4360 else if ((rettv->v_type == VAR_FLOAT || var2.v_type == VAR_FLOAT)
4361 && type != TYPE_MATCH && type != TYPE_NOMATCH)
4363 float_T f1, f2;
4365 if (rettv->v_type == VAR_FLOAT)
4366 f1 = rettv->vval.v_float;
4367 else
4368 f1 = get_tv_number(rettv);
4369 if (var2.v_type == VAR_FLOAT)
4370 f2 = var2.vval.v_float;
4371 else
4372 f2 = get_tv_number(&var2);
4373 n1 = FALSE;
4374 switch (type)
4376 case TYPE_EQUAL: n1 = (f1 == f2); break;
4377 case TYPE_NEQUAL: n1 = (f1 != f2); break;
4378 case TYPE_GREATER: n1 = (f1 > f2); break;
4379 case TYPE_GEQUAL: n1 = (f1 >= f2); break;
4380 case TYPE_SMALLER: n1 = (f1 < f2); break;
4381 case TYPE_SEQUAL: n1 = (f1 <= f2); break;
4382 case TYPE_UNKNOWN:
4383 case TYPE_MATCH:
4384 case TYPE_NOMATCH: break; /* avoid gcc warning */
4387 #endif
4390 * If one of the two variables is a number, compare as a number.
4391 * When using "=~" or "!~", always compare as string.
4393 else if ((rettv->v_type == VAR_NUMBER || var2.v_type == VAR_NUMBER)
4394 && type != TYPE_MATCH && type != TYPE_NOMATCH)
4396 n1 = get_tv_number(rettv);
4397 n2 = get_tv_number(&var2);
4398 switch (type)
4400 case TYPE_EQUAL: n1 = (n1 == n2); break;
4401 case TYPE_NEQUAL: n1 = (n1 != n2); break;
4402 case TYPE_GREATER: n1 = (n1 > n2); break;
4403 case TYPE_GEQUAL: n1 = (n1 >= n2); break;
4404 case TYPE_SMALLER: n1 = (n1 < n2); break;
4405 case TYPE_SEQUAL: n1 = (n1 <= n2); break;
4406 case TYPE_UNKNOWN:
4407 case TYPE_MATCH:
4408 case TYPE_NOMATCH: break; /* avoid gcc warning */
4411 else
4413 s1 = get_tv_string_buf(rettv, buf1);
4414 s2 = get_tv_string_buf(&var2, buf2);
4415 if (type != TYPE_MATCH && type != TYPE_NOMATCH)
4416 i = ic ? MB_STRICMP(s1, s2) : STRCMP(s1, s2);
4417 else
4418 i = 0;
4419 n1 = FALSE;
4420 switch (type)
4422 case TYPE_EQUAL: n1 = (i == 0); break;
4423 case TYPE_NEQUAL: n1 = (i != 0); break;
4424 case TYPE_GREATER: n1 = (i > 0); break;
4425 case TYPE_GEQUAL: n1 = (i >= 0); break;
4426 case TYPE_SMALLER: n1 = (i < 0); break;
4427 case TYPE_SEQUAL: n1 = (i <= 0); break;
4429 case TYPE_MATCH:
4430 case TYPE_NOMATCH:
4431 /* avoid 'l' flag in 'cpoptions' */
4432 save_cpo = p_cpo;
4433 p_cpo = (char_u *)"";
4434 regmatch.regprog = vim_regcomp(s2,
4435 RE_MAGIC + RE_STRING);
4436 regmatch.rm_ic = ic;
4437 if (regmatch.regprog != NULL)
4439 n1 = vim_regexec_nl(&regmatch, s1, (colnr_T)0);
4440 vim_free(regmatch.regprog);
4441 if (type == TYPE_NOMATCH)
4442 n1 = !n1;
4444 p_cpo = save_cpo;
4445 break;
4447 case TYPE_UNKNOWN: break; /* avoid gcc warning */
4450 clear_tv(rettv);
4451 clear_tv(&var2);
4452 rettv->v_type = VAR_NUMBER;
4453 rettv->vval.v_number = n1;
4457 return OK;
4461 * Handle fourth level expression:
4462 * + number addition
4463 * - number subtraction
4464 * . string concatenation
4466 * "arg" must point to the first non-white of the expression.
4467 * "arg" is advanced to the next non-white after the recognized expression.
4469 * Return OK or FAIL.
4471 static int
4472 eval5(arg, rettv, evaluate)
4473 char_u **arg;
4474 typval_T *rettv;
4475 int evaluate;
4477 typval_T var2;
4478 typval_T var3;
4479 int op;
4480 long n1, n2;
4481 #ifdef FEAT_FLOAT
4482 float_T f1 = 0, f2 = 0;
4483 #endif
4484 char_u *s1, *s2;
4485 char_u buf1[NUMBUFLEN], buf2[NUMBUFLEN];
4486 char_u *p;
4489 * Get the first variable.
4491 if (eval6(arg, rettv, evaluate, FALSE) == FAIL)
4492 return FAIL;
4495 * Repeat computing, until no '+', '-' or '.' is following.
4497 for (;;)
4499 op = **arg;
4500 if (op != '+' && op != '-' && op != '.')
4501 break;
4503 if ((op != '+' || rettv->v_type != VAR_LIST)
4504 #ifdef FEAT_FLOAT
4505 && (op == '.' || rettv->v_type != VAR_FLOAT)
4506 #endif
4509 /* For "list + ...", an illegal use of the first operand as
4510 * a number cannot be determined before evaluating the 2nd
4511 * operand: if this is also a list, all is ok.
4512 * For "something . ...", "something - ..." or "non-list + ...",
4513 * we know that the first operand needs to be a string or number
4514 * without evaluating the 2nd operand. So check before to avoid
4515 * side effects after an error. */
4516 if (evaluate && get_tv_string_chk(rettv) == NULL)
4518 clear_tv(rettv);
4519 return FAIL;
4524 * Get the second variable.
4526 *arg = skipwhite(*arg + 1);
4527 if (eval6(arg, &var2, evaluate, op == '.') == FAIL)
4529 clear_tv(rettv);
4530 return FAIL;
4533 if (evaluate)
4536 * Compute the result.
4538 if (op == '.')
4540 s1 = get_tv_string_buf(rettv, buf1); /* already checked */
4541 s2 = get_tv_string_buf_chk(&var2, buf2);
4542 if (s2 == NULL) /* type error ? */
4544 clear_tv(rettv);
4545 clear_tv(&var2);
4546 return FAIL;
4548 p = concat_str(s1, s2);
4549 clear_tv(rettv);
4550 rettv->v_type = VAR_STRING;
4551 rettv->vval.v_string = p;
4553 else if (op == '+' && rettv->v_type == VAR_LIST
4554 && var2.v_type == VAR_LIST)
4556 /* concatenate Lists */
4557 if (list_concat(rettv->vval.v_list, var2.vval.v_list,
4558 &var3) == FAIL)
4560 clear_tv(rettv);
4561 clear_tv(&var2);
4562 return FAIL;
4564 clear_tv(rettv);
4565 *rettv = var3;
4567 else
4569 int error = FALSE;
4571 #ifdef FEAT_FLOAT
4572 if (rettv->v_type == VAR_FLOAT)
4574 f1 = rettv->vval.v_float;
4575 n1 = 0;
4577 else
4578 #endif
4580 n1 = get_tv_number_chk(rettv, &error);
4581 if (error)
4583 /* This can only happen for "list + non-list". For
4584 * "non-list + ..." or "something - ...", we returned
4585 * before evaluating the 2nd operand. */
4586 clear_tv(rettv);
4587 return FAIL;
4589 #ifdef FEAT_FLOAT
4590 if (var2.v_type == VAR_FLOAT)
4591 f1 = n1;
4592 #endif
4594 #ifdef FEAT_FLOAT
4595 if (var2.v_type == VAR_FLOAT)
4597 f2 = var2.vval.v_float;
4598 n2 = 0;
4600 else
4601 #endif
4603 n2 = get_tv_number_chk(&var2, &error);
4604 if (error)
4606 clear_tv(rettv);
4607 clear_tv(&var2);
4608 return FAIL;
4610 #ifdef FEAT_FLOAT
4611 if (rettv->v_type == VAR_FLOAT)
4612 f2 = n2;
4613 #endif
4615 clear_tv(rettv);
4617 #ifdef FEAT_FLOAT
4618 /* If there is a float on either side the result is a float. */
4619 if (rettv->v_type == VAR_FLOAT || var2.v_type == VAR_FLOAT)
4621 if (op == '+')
4622 f1 = f1 + f2;
4623 else
4624 f1 = f1 - f2;
4625 rettv->v_type = VAR_FLOAT;
4626 rettv->vval.v_float = f1;
4628 else
4629 #endif
4631 if (op == '+')
4632 n1 = n1 + n2;
4633 else
4634 n1 = n1 - n2;
4635 rettv->v_type = VAR_NUMBER;
4636 rettv->vval.v_number = n1;
4639 clear_tv(&var2);
4642 return OK;
4646 * Handle fifth level expression:
4647 * * number multiplication
4648 * / number division
4649 * % number modulo
4651 * "arg" must point to the first non-white of the expression.
4652 * "arg" is advanced to the next non-white after the recognized expression.
4654 * Return OK or FAIL.
4656 static int
4657 eval6(arg, rettv, evaluate, want_string)
4658 char_u **arg;
4659 typval_T *rettv;
4660 int evaluate;
4661 int want_string; /* after "." operator */
4663 typval_T var2;
4664 int op;
4665 long n1, n2;
4666 #ifdef FEAT_FLOAT
4667 int use_float = FALSE;
4668 float_T f1 = 0, f2;
4669 #endif
4670 int error = FALSE;
4673 * Get the first variable.
4675 if (eval7(arg, rettv, evaluate, want_string) == FAIL)
4676 return FAIL;
4679 * Repeat computing, until no '*', '/' or '%' is following.
4681 for (;;)
4683 op = **arg;
4684 if (op != '*' && op != '/' && op != '%')
4685 break;
4687 if (evaluate)
4689 #ifdef FEAT_FLOAT
4690 if (rettv->v_type == VAR_FLOAT)
4692 f1 = rettv->vval.v_float;
4693 use_float = TRUE;
4694 n1 = 0;
4696 else
4697 #endif
4698 n1 = get_tv_number_chk(rettv, &error);
4699 clear_tv(rettv);
4700 if (error)
4701 return FAIL;
4703 else
4704 n1 = 0;
4707 * Get the second variable.
4709 *arg = skipwhite(*arg + 1);
4710 if (eval7(arg, &var2, evaluate, FALSE) == FAIL)
4711 return FAIL;
4713 if (evaluate)
4715 #ifdef FEAT_FLOAT
4716 if (var2.v_type == VAR_FLOAT)
4718 if (!use_float)
4720 f1 = n1;
4721 use_float = TRUE;
4723 f2 = var2.vval.v_float;
4724 n2 = 0;
4726 else
4727 #endif
4729 n2 = get_tv_number_chk(&var2, &error);
4730 clear_tv(&var2);
4731 if (error)
4732 return FAIL;
4733 #ifdef FEAT_FLOAT
4734 if (use_float)
4735 f2 = n2;
4736 #endif
4740 * Compute the result.
4741 * When either side is a float the result is a float.
4743 #ifdef FEAT_FLOAT
4744 if (use_float)
4746 if (op == '*')
4747 f1 = f1 * f2;
4748 else if (op == '/')
4750 /* We rely on the floating point library to handle divide
4751 * by zero to result in "inf" and not a crash. */
4752 f1 = f1 / f2;
4754 else
4756 EMSG(_("E804: Cannot use '%' with Float"));
4757 return FAIL;
4759 rettv->v_type = VAR_FLOAT;
4760 rettv->vval.v_float = f1;
4762 else
4763 #endif
4765 if (op == '*')
4766 n1 = n1 * n2;
4767 else if (op == '/')
4769 if (n2 == 0) /* give an error message? */
4771 if (n1 == 0)
4772 n1 = -0x7fffffffL - 1L; /* similar to NaN */
4773 else if (n1 < 0)
4774 n1 = -0x7fffffffL;
4775 else
4776 n1 = 0x7fffffffL;
4778 else
4779 n1 = n1 / n2;
4781 else
4783 if (n2 == 0) /* give an error message? */
4784 n1 = 0;
4785 else
4786 n1 = n1 % n2;
4788 rettv->v_type = VAR_NUMBER;
4789 rettv->vval.v_number = n1;
4794 return OK;
4798 * Handle sixth level expression:
4799 * number number constant
4800 * "string" string constant
4801 * 'string' literal string constant
4802 * &option-name option value
4803 * @r register contents
4804 * identifier variable value
4805 * function() function call
4806 * $VAR environment variable
4807 * (expression) nested expression
4808 * [expr, expr] List
4809 * {key: val, key: val} Dictionary
4811 * Also handle:
4812 * ! in front logical NOT
4813 * - in front unary minus
4814 * + in front unary plus (ignored)
4815 * trailing [] subscript in String or List
4816 * trailing .name entry in Dictionary
4818 * "arg" must point to the first non-white of the expression.
4819 * "arg" is advanced to the next non-white after the recognized expression.
4821 * Return OK or FAIL.
4823 static int
4824 eval7(arg, rettv, evaluate, want_string)
4825 char_u **arg;
4826 typval_T *rettv;
4827 int evaluate;
4828 int want_string; /* after "." operator */
4830 long n;
4831 int len;
4832 char_u *s;
4833 char_u *start_leader, *end_leader;
4834 int ret = OK;
4835 char_u *alias;
4838 * Initialise variable so that clear_tv() can't mistake this for a
4839 * string and free a string that isn't there.
4841 rettv->v_type = VAR_UNKNOWN;
4844 * Skip '!' and '-' characters. They are handled later.
4846 start_leader = *arg;
4847 while (**arg == '!' || **arg == '-' || **arg == '+')
4848 *arg = skipwhite(*arg + 1);
4849 end_leader = *arg;
4851 switch (**arg)
4854 * Number constant.
4856 case '0':
4857 case '1':
4858 case '2':
4859 case '3':
4860 case '4':
4861 case '5':
4862 case '6':
4863 case '7':
4864 case '8':
4865 case '9':
4867 #ifdef FEAT_FLOAT
4868 char_u *p = skipdigits(*arg + 1);
4869 int get_float = FALSE;
4871 /* We accept a float when the format matches
4872 * "[0-9]\+\.[0-9]\+\([eE][+-]\?[0-9]\+\)\?". This is very
4873 * strict to avoid backwards compatibility problems.
4874 * Don't look for a float after the "." operator, so that
4875 * ":let vers = 1.2.3" doesn't fail. */
4876 if (!want_string && p[0] == '.' && vim_isdigit(p[1]))
4878 get_float = TRUE;
4879 p = skipdigits(p + 2);
4880 if (*p == 'e' || *p == 'E')
4882 ++p;
4883 if (*p == '-' || *p == '+')
4884 ++p;
4885 if (!vim_isdigit(*p))
4886 get_float = FALSE;
4887 else
4888 p = skipdigits(p + 1);
4890 if (ASCII_ISALPHA(*p) || *p == '.')
4891 get_float = FALSE;
4893 if (get_float)
4895 float_T f;
4897 *arg += string2float(*arg, &f);
4898 if (evaluate)
4900 rettv->v_type = VAR_FLOAT;
4901 rettv->vval.v_float = f;
4904 else
4905 #endif
4907 vim_str2nr(*arg, NULL, &len, TRUE, TRUE, &n, NULL);
4908 *arg += len;
4909 if (evaluate)
4911 rettv->v_type = VAR_NUMBER;
4912 rettv->vval.v_number = n;
4915 break;
4919 * String constant: "string".
4921 case '"': ret = get_string_tv(arg, rettv, evaluate);
4922 break;
4925 * Literal string constant: 'str''ing'.
4927 case '\'': ret = get_lit_string_tv(arg, rettv, evaluate);
4928 break;
4931 * List: [expr, expr]
4933 case '[': ret = get_list_tv(arg, rettv, evaluate);
4934 break;
4937 * Dictionary: {key: val, key: val}
4939 case '{': ret = get_dict_tv(arg, rettv, evaluate);
4940 break;
4943 * Option value: &name
4945 case '&': ret = get_option_tv(arg, rettv, evaluate);
4946 break;
4949 * Environment variable: $VAR.
4951 case '$': ret = get_env_tv(arg, rettv, evaluate);
4952 break;
4955 * Register contents: @r.
4957 case '@': ++*arg;
4958 if (evaluate)
4960 rettv->v_type = VAR_STRING;
4961 rettv->vval.v_string = get_reg_contents(**arg, TRUE, TRUE);
4963 if (**arg != NUL)
4964 ++*arg;
4965 break;
4968 * nested expression: (expression).
4970 case '(': *arg = skipwhite(*arg + 1);
4971 ret = eval1(arg, rettv, evaluate); /* recursive! */
4972 if (**arg == ')')
4973 ++*arg;
4974 else if (ret == OK)
4976 EMSG(_("E110: Missing ')'"));
4977 clear_tv(rettv);
4978 ret = FAIL;
4980 break;
4982 default: ret = NOTDONE;
4983 break;
4986 if (ret == NOTDONE)
4989 * Must be a variable or function name.
4990 * Can also be a curly-braces kind of name: {expr}.
4992 s = *arg;
4993 len = get_name_len(arg, &alias, evaluate, TRUE);
4994 if (alias != NULL)
4995 s = alias;
4997 if (len <= 0)
4998 ret = FAIL;
4999 else
5001 if (**arg == '(') /* recursive! */
5003 /* If "s" is the name of a variable of type VAR_FUNC
5004 * use its contents. */
5005 s = deref_func_name(s, &len);
5007 /* Invoke the function. */
5008 ret = get_func_tv(s, len, rettv, arg,
5009 curwin->w_cursor.lnum, curwin->w_cursor.lnum,
5010 &len, evaluate, NULL);
5011 /* Stop the expression evaluation when immediately
5012 * aborting on error, or when an interrupt occurred or
5013 * an exception was thrown but not caught. */
5014 if (aborting())
5016 if (ret == OK)
5017 clear_tv(rettv);
5018 ret = FAIL;
5021 else if (evaluate)
5022 ret = get_var_tv(s, len, rettv, TRUE);
5023 else
5024 ret = OK;
5027 if (alias != NULL)
5028 vim_free(alias);
5031 *arg = skipwhite(*arg);
5033 /* Handle following '[', '(' and '.' for expr[expr], expr.name,
5034 * expr(expr). */
5035 if (ret == OK)
5036 ret = handle_subscript(arg, rettv, evaluate, TRUE);
5039 * Apply logical NOT and unary '-', from right to left, ignore '+'.
5041 if (ret == OK && evaluate && end_leader > start_leader)
5043 int error = FALSE;
5044 int val = 0;
5045 #ifdef FEAT_FLOAT
5046 float_T f = 0.0;
5048 if (rettv->v_type == VAR_FLOAT)
5049 f = rettv->vval.v_float;
5050 else
5051 #endif
5052 val = get_tv_number_chk(rettv, &error);
5053 if (error)
5055 clear_tv(rettv);
5056 ret = FAIL;
5058 else
5060 while (end_leader > start_leader)
5062 --end_leader;
5063 if (*end_leader == '!')
5065 #ifdef FEAT_FLOAT
5066 if (rettv->v_type == VAR_FLOAT)
5067 f = !f;
5068 else
5069 #endif
5070 val = !val;
5072 else if (*end_leader == '-')
5074 #ifdef FEAT_FLOAT
5075 if (rettv->v_type == VAR_FLOAT)
5076 f = -f;
5077 else
5078 #endif
5079 val = -val;
5082 #ifdef FEAT_FLOAT
5083 if (rettv->v_type == VAR_FLOAT)
5085 clear_tv(rettv);
5086 rettv->vval.v_float = f;
5088 else
5089 #endif
5091 clear_tv(rettv);
5092 rettv->v_type = VAR_NUMBER;
5093 rettv->vval.v_number = val;
5098 return ret;
5102 * Evaluate an "[expr]" or "[expr:expr]" index. Also "dict.key".
5103 * "*arg" points to the '[' or '.'.
5104 * Returns FAIL or OK. "*arg" is advanced to after the ']'.
5106 static int
5107 eval_index(arg, rettv, evaluate, verbose)
5108 char_u **arg;
5109 typval_T *rettv;
5110 int evaluate;
5111 int verbose; /* give error messages */
5113 int empty1 = FALSE, empty2 = FALSE;
5114 typval_T var1, var2;
5115 long n1, n2 = 0;
5116 long len = -1;
5117 int range = FALSE;
5118 char_u *s;
5119 char_u *key = NULL;
5121 if (rettv->v_type == VAR_FUNC
5122 #ifdef FEAT_FLOAT
5123 || rettv->v_type == VAR_FLOAT
5124 #endif
5127 if (verbose)
5128 EMSG(_("E695: Cannot index a Funcref"));
5129 return FAIL;
5132 if (**arg == '.')
5135 * dict.name
5137 key = *arg + 1;
5138 for (len = 0; ASCII_ISALNUM(key[len]) || key[len] == '_'; ++len)
5140 if (len == 0)
5141 return FAIL;
5142 *arg = skipwhite(key + len);
5144 else
5147 * something[idx]
5149 * Get the (first) variable from inside the [].
5151 *arg = skipwhite(*arg + 1);
5152 if (**arg == ':')
5153 empty1 = TRUE;
5154 else if (eval1(arg, &var1, evaluate) == FAIL) /* recursive! */
5155 return FAIL;
5156 else if (evaluate && get_tv_string_chk(&var1) == NULL)
5158 /* not a number or string */
5159 clear_tv(&var1);
5160 return FAIL;
5164 * Get the second variable from inside the [:].
5166 if (**arg == ':')
5168 range = TRUE;
5169 *arg = skipwhite(*arg + 1);
5170 if (**arg == ']')
5171 empty2 = TRUE;
5172 else if (eval1(arg, &var2, evaluate) == FAIL) /* recursive! */
5174 if (!empty1)
5175 clear_tv(&var1);
5176 return FAIL;
5178 else if (evaluate && get_tv_string_chk(&var2) == NULL)
5180 /* not a number or string */
5181 if (!empty1)
5182 clear_tv(&var1);
5183 clear_tv(&var2);
5184 return FAIL;
5188 /* Check for the ']'. */
5189 if (**arg != ']')
5191 if (verbose)
5192 EMSG(_(e_missbrac));
5193 clear_tv(&var1);
5194 if (range)
5195 clear_tv(&var2);
5196 return FAIL;
5198 *arg = skipwhite(*arg + 1); /* skip the ']' */
5201 if (evaluate)
5203 n1 = 0;
5204 if (!empty1 && rettv->v_type != VAR_DICT)
5206 n1 = get_tv_number(&var1);
5207 clear_tv(&var1);
5209 if (range)
5211 if (empty2)
5212 n2 = -1;
5213 else
5215 n2 = get_tv_number(&var2);
5216 clear_tv(&var2);
5220 switch (rettv->v_type)
5222 case VAR_NUMBER:
5223 case VAR_STRING:
5224 s = get_tv_string(rettv);
5225 len = (long)STRLEN(s);
5226 if (range)
5228 /* The resulting variable is a substring. If the indexes
5229 * are out of range the result is empty. */
5230 if (n1 < 0)
5232 n1 = len + n1;
5233 if (n1 < 0)
5234 n1 = 0;
5236 if (n2 < 0)
5237 n2 = len + n2;
5238 else if (n2 >= len)
5239 n2 = len;
5240 if (n1 >= len || n2 < 0 || n1 > n2)
5241 s = NULL;
5242 else
5243 s = vim_strnsave(s + n1, (int)(n2 - n1 + 1));
5245 else
5247 /* The resulting variable is a string of a single
5248 * character. If the index is too big or negative the
5249 * result is empty. */
5250 if (n1 >= len || n1 < 0)
5251 s = NULL;
5252 else
5253 s = vim_strnsave(s + n1, 1);
5255 clear_tv(rettv);
5256 rettv->v_type = VAR_STRING;
5257 rettv->vval.v_string = s;
5258 break;
5260 case VAR_LIST:
5261 len = list_len(rettv->vval.v_list);
5262 if (n1 < 0)
5263 n1 = len + n1;
5264 if (!empty1 && (n1 < 0 || n1 >= len))
5266 /* For a range we allow invalid values and return an empty
5267 * list. A list index out of range is an error. */
5268 if (!range)
5270 if (verbose)
5271 EMSGN(_(e_listidx), n1);
5272 return FAIL;
5274 n1 = len;
5276 if (range)
5278 list_T *l;
5279 listitem_T *item;
5281 if (n2 < 0)
5282 n2 = len + n2;
5283 else if (n2 >= len)
5284 n2 = len - 1;
5285 if (!empty2 && (n2 < 0 || n2 + 1 < n1))
5286 n2 = -1;
5287 l = list_alloc();
5288 if (l == NULL)
5289 return FAIL;
5290 for (item = list_find(rettv->vval.v_list, n1);
5291 n1 <= n2; ++n1)
5293 if (list_append_tv(l, &item->li_tv) == FAIL)
5295 list_free(l, TRUE);
5296 return FAIL;
5298 item = item->li_next;
5300 clear_tv(rettv);
5301 rettv->v_type = VAR_LIST;
5302 rettv->vval.v_list = l;
5303 ++l->lv_refcount;
5305 else
5307 copy_tv(&list_find(rettv->vval.v_list, n1)->li_tv, &var1);
5308 clear_tv(rettv);
5309 *rettv = var1;
5311 break;
5313 case VAR_DICT:
5314 if (range)
5316 if (verbose)
5317 EMSG(_(e_dictrange));
5318 if (len == -1)
5319 clear_tv(&var1);
5320 return FAIL;
5323 dictitem_T *item;
5325 if (len == -1)
5327 key = get_tv_string(&var1);
5328 if (*key == NUL)
5330 if (verbose)
5331 EMSG(_(e_emptykey));
5332 clear_tv(&var1);
5333 return FAIL;
5337 item = dict_find(rettv->vval.v_dict, key, (int)len);
5339 if (item == NULL && verbose)
5340 EMSG2(_(e_dictkey), key);
5341 if (len == -1)
5342 clear_tv(&var1);
5343 if (item == NULL)
5344 return FAIL;
5346 copy_tv(&item->di_tv, &var1);
5347 clear_tv(rettv);
5348 *rettv = var1;
5350 break;
5354 return OK;
5358 * Get an option value.
5359 * "arg" points to the '&' or '+' before the option name.
5360 * "arg" is advanced to character after the option name.
5361 * Return OK or FAIL.
5363 static int
5364 get_option_tv(arg, rettv, evaluate)
5365 char_u **arg;
5366 typval_T *rettv; /* when NULL, only check if option exists */
5367 int evaluate;
5369 char_u *option_end;
5370 long numval;
5371 char_u *stringval;
5372 int opt_type;
5373 int c;
5374 int working = (**arg == '+'); /* has("+option") */
5375 int ret = OK;
5376 int opt_flags;
5379 * Isolate the option name and find its value.
5381 option_end = find_option_end(arg, &opt_flags);
5382 if (option_end == NULL)
5384 if (rettv != NULL)
5385 EMSG2(_("E112: Option name missing: %s"), *arg);
5386 return FAIL;
5389 if (!evaluate)
5391 *arg = option_end;
5392 return OK;
5395 c = *option_end;
5396 *option_end = NUL;
5397 opt_type = get_option_value(*arg, &numval,
5398 rettv == NULL ? NULL : &stringval, opt_flags);
5400 if (opt_type == -3) /* invalid name */
5402 if (rettv != NULL)
5403 EMSG2(_("E113: Unknown option: %s"), *arg);
5404 ret = FAIL;
5406 else if (rettv != NULL)
5408 if (opt_type == -2) /* hidden string option */
5410 rettv->v_type = VAR_STRING;
5411 rettv->vval.v_string = NULL;
5413 else if (opt_type == -1) /* hidden number option */
5415 rettv->v_type = VAR_NUMBER;
5416 rettv->vval.v_number = 0;
5418 else if (opt_type == 1) /* number option */
5420 rettv->v_type = VAR_NUMBER;
5421 rettv->vval.v_number = numval;
5423 else /* string option */
5425 rettv->v_type = VAR_STRING;
5426 rettv->vval.v_string = stringval;
5429 else if (working && (opt_type == -2 || opt_type == -1))
5430 ret = FAIL;
5432 *option_end = c; /* put back for error messages */
5433 *arg = option_end;
5435 return ret;
5439 * Allocate a variable for a string constant.
5440 * Return OK or FAIL.
5442 static int
5443 get_string_tv(arg, rettv, evaluate)
5444 char_u **arg;
5445 typval_T *rettv;
5446 int evaluate;
5448 char_u *p;
5449 char_u *name;
5450 int extra = 0;
5453 * Find the end of the string, skipping backslashed characters.
5455 for (p = *arg + 1; *p != NUL && *p != '"'; mb_ptr_adv(p))
5457 if (*p == '\\' && p[1] != NUL)
5459 ++p;
5460 /* A "\<x>" form occupies at least 4 characters, and produces up
5461 * to 6 characters: reserve space for 2 extra */
5462 if (*p == '<')
5463 extra += 2;
5467 if (*p != '"')
5469 EMSG2(_("E114: Missing quote: %s"), *arg);
5470 return FAIL;
5473 /* If only parsing, set *arg and return here */
5474 if (!evaluate)
5476 *arg = p + 1;
5477 return OK;
5481 * Copy the string into allocated memory, handling backslashed
5482 * characters.
5484 name = alloc((unsigned)(p - *arg + extra));
5485 if (name == NULL)
5486 return FAIL;
5487 rettv->v_type = VAR_STRING;
5488 rettv->vval.v_string = name;
5490 for (p = *arg + 1; *p != NUL && *p != '"'; )
5492 if (*p == '\\')
5494 switch (*++p)
5496 case 'b': *name++ = BS; ++p; break;
5497 case 'e': *name++ = ESC; ++p; break;
5498 case 'f': *name++ = FF; ++p; break;
5499 case 'n': *name++ = NL; ++p; break;
5500 case 'r': *name++ = CAR; ++p; break;
5501 case 't': *name++ = TAB; ++p; break;
5503 case 'X': /* hex: "\x1", "\x12" */
5504 case 'x':
5505 case 'u': /* Unicode: "\u0023" */
5506 case 'U':
5507 if (vim_isxdigit(p[1]))
5509 int n, nr;
5510 int c = toupper(*p);
5512 if (c == 'X')
5513 n = 2;
5514 else
5515 n = 4;
5516 nr = 0;
5517 while (--n >= 0 && vim_isxdigit(p[1]))
5519 ++p;
5520 nr = (nr << 4) + hex2nr(*p);
5522 ++p;
5523 #ifdef FEAT_MBYTE
5524 /* For "\u" store the number according to
5525 * 'encoding'. */
5526 if (c != 'X')
5527 name += (*mb_char2bytes)(nr, name);
5528 else
5529 #endif
5530 *name++ = nr;
5532 break;
5534 /* octal: "\1", "\12", "\123" */
5535 case '0':
5536 case '1':
5537 case '2':
5538 case '3':
5539 case '4':
5540 case '5':
5541 case '6':
5542 case '7': *name = *p++ - '0';
5543 if (*p >= '0' && *p <= '7')
5545 *name = (*name << 3) + *p++ - '0';
5546 if (*p >= '0' && *p <= '7')
5547 *name = (*name << 3) + *p++ - '0';
5549 ++name;
5550 break;
5552 /* Special key, e.g.: "\<C-W>" */
5553 case '<': extra = trans_special(&p, name, TRUE);
5554 if (extra != 0)
5556 name += extra;
5557 break;
5559 /* FALLTHROUGH */
5561 default: MB_COPY_CHAR(p, name);
5562 break;
5565 else
5566 MB_COPY_CHAR(p, name);
5569 *name = NUL;
5570 *arg = p + 1;
5572 return OK;
5576 * Allocate a variable for a 'str''ing' constant.
5577 * Return OK or FAIL.
5579 static int
5580 get_lit_string_tv(arg, rettv, evaluate)
5581 char_u **arg;
5582 typval_T *rettv;
5583 int evaluate;
5585 char_u *p;
5586 char_u *str;
5587 int reduce = 0;
5590 * Find the end of the string, skipping ''.
5592 for (p = *arg + 1; *p != NUL; mb_ptr_adv(p))
5594 if (*p == '\'')
5596 if (p[1] != '\'')
5597 break;
5598 ++reduce;
5599 ++p;
5603 if (*p != '\'')
5605 EMSG2(_("E115: Missing quote: %s"), *arg);
5606 return FAIL;
5609 /* If only parsing return after setting "*arg" */
5610 if (!evaluate)
5612 *arg = p + 1;
5613 return OK;
5617 * Copy the string into allocated memory, handling '' to ' reduction.
5619 str = alloc((unsigned)((p - *arg) - reduce));
5620 if (str == NULL)
5621 return FAIL;
5622 rettv->v_type = VAR_STRING;
5623 rettv->vval.v_string = str;
5625 for (p = *arg + 1; *p != NUL; )
5627 if (*p == '\'')
5629 if (p[1] != '\'')
5630 break;
5631 ++p;
5633 MB_COPY_CHAR(p, str);
5635 *str = NUL;
5636 *arg = p + 1;
5638 return OK;
5642 * Allocate a variable for a List and fill it from "*arg".
5643 * Return OK or FAIL.
5645 static int
5646 get_list_tv(arg, rettv, evaluate)
5647 char_u **arg;
5648 typval_T *rettv;
5649 int evaluate;
5651 list_T *l = NULL;
5652 typval_T tv;
5653 listitem_T *item;
5655 if (evaluate)
5657 l = list_alloc();
5658 if (l == NULL)
5659 return FAIL;
5662 *arg = skipwhite(*arg + 1);
5663 while (**arg != ']' && **arg != NUL)
5665 if (eval1(arg, &tv, evaluate) == FAIL) /* recursive! */
5666 goto failret;
5667 if (evaluate)
5669 item = listitem_alloc();
5670 if (item != NULL)
5672 item->li_tv = tv;
5673 item->li_tv.v_lock = 0;
5674 list_append(l, item);
5676 else
5677 clear_tv(&tv);
5680 if (**arg == ']')
5681 break;
5682 if (**arg != ',')
5684 EMSG2(_("E696: Missing comma in List: %s"), *arg);
5685 goto failret;
5687 *arg = skipwhite(*arg + 1);
5690 if (**arg != ']')
5692 EMSG2(_("E697: Missing end of List ']': %s"), *arg);
5693 failret:
5694 if (evaluate)
5695 list_free(l, TRUE);
5696 return FAIL;
5699 *arg = skipwhite(*arg + 1);
5700 if (evaluate)
5702 rettv->v_type = VAR_LIST;
5703 rettv->vval.v_list = l;
5704 ++l->lv_refcount;
5707 return OK;
5711 * Allocate an empty header for a list.
5712 * Caller should take care of the reference count.
5714 list_T *
5715 list_alloc()
5717 list_T *l;
5719 l = (list_T *)alloc_clear(sizeof(list_T));
5720 if (l != NULL)
5722 /* Prepend the list to the list of lists for garbage collection. */
5723 if (first_list != NULL)
5724 first_list->lv_used_prev = l;
5725 l->lv_used_prev = NULL;
5726 l->lv_used_next = first_list;
5727 first_list = l;
5729 return l;
5733 * Allocate an empty list for a return value.
5734 * Returns OK or FAIL.
5736 static int
5737 rettv_list_alloc(rettv)
5738 typval_T *rettv;
5740 list_T *l = list_alloc();
5742 if (l == NULL)
5743 return FAIL;
5745 rettv->vval.v_list = l;
5746 rettv->v_type = VAR_LIST;
5747 ++l->lv_refcount;
5748 return OK;
5752 * Unreference a list: decrement the reference count and free it when it
5753 * becomes zero.
5755 void
5756 list_unref(l)
5757 list_T *l;
5759 if (l != NULL && --l->lv_refcount <= 0)
5760 list_free(l, TRUE);
5764 * Free a list, including all items it points to.
5765 * Ignores the reference count.
5767 void
5768 list_free(l, recurse)
5769 list_T *l;
5770 int recurse; /* Free Lists and Dictionaries recursively. */
5772 listitem_T *item;
5774 /* Remove the list from the list of lists for garbage collection. */
5775 if (l->lv_used_prev == NULL)
5776 first_list = l->lv_used_next;
5777 else
5778 l->lv_used_prev->lv_used_next = l->lv_used_next;
5779 if (l->lv_used_next != NULL)
5780 l->lv_used_next->lv_used_prev = l->lv_used_prev;
5782 for (item = l->lv_first; item != NULL; item = l->lv_first)
5784 /* Remove the item before deleting it. */
5785 l->lv_first = item->li_next;
5786 if (recurse || (item->li_tv.v_type != VAR_LIST
5787 && item->li_tv.v_type != VAR_DICT))
5788 clear_tv(&item->li_tv);
5789 vim_free(item);
5791 vim_free(l);
5795 * Allocate a list item.
5797 static listitem_T *
5798 listitem_alloc()
5800 return (listitem_T *)alloc(sizeof(listitem_T));
5804 * Free a list item. Also clears the value. Does not notify watchers.
5806 static void
5807 listitem_free(item)
5808 listitem_T *item;
5810 clear_tv(&item->li_tv);
5811 vim_free(item);
5815 * Remove a list item from a List and free it. Also clears the value.
5817 static void
5818 listitem_remove(l, item)
5819 list_T *l;
5820 listitem_T *item;
5822 list_remove(l, item, item);
5823 listitem_free(item);
5827 * Get the number of items in a list.
5829 static long
5830 list_len(l)
5831 list_T *l;
5833 if (l == NULL)
5834 return 0L;
5835 return l->lv_len;
5839 * Return TRUE when two lists have exactly the same values.
5841 static int
5842 list_equal(l1, l2, ic)
5843 list_T *l1;
5844 list_T *l2;
5845 int ic; /* ignore case for strings */
5847 listitem_T *item1, *item2;
5849 if (l1 == NULL || l2 == NULL)
5850 return FALSE;
5851 if (l1 == l2)
5852 return TRUE;
5853 if (list_len(l1) != list_len(l2))
5854 return FALSE;
5856 for (item1 = l1->lv_first, item2 = l2->lv_first;
5857 item1 != NULL && item2 != NULL;
5858 item1 = item1->li_next, item2 = item2->li_next)
5859 if (!tv_equal(&item1->li_tv, &item2->li_tv, ic))
5860 return FALSE;
5861 return item1 == NULL && item2 == NULL;
5864 #if defined(FEAT_PYTHON) || defined(PROTO) || defined(FEAT_GUI_MACVIM)
5866 * Return the dictitem that an entry in a hashtable points to.
5868 dictitem_T *
5869 dict_lookup(hi)
5870 hashitem_T *hi;
5872 return HI2DI(hi);
5874 #endif
5877 * Return TRUE when two dictionaries have exactly the same key/values.
5879 static int
5880 dict_equal(d1, d2, ic)
5881 dict_T *d1;
5882 dict_T *d2;
5883 int ic; /* ignore case for strings */
5885 hashitem_T *hi;
5886 dictitem_T *item2;
5887 int todo;
5889 if (d1 == NULL || d2 == NULL)
5890 return FALSE;
5891 if (d1 == d2)
5892 return TRUE;
5893 if (dict_len(d1) != dict_len(d2))
5894 return FALSE;
5896 todo = (int)d1->dv_hashtab.ht_used;
5897 for (hi = d1->dv_hashtab.ht_array; todo > 0; ++hi)
5899 if (!HASHITEM_EMPTY(hi))
5901 item2 = dict_find(d2, hi->hi_key, -1);
5902 if (item2 == NULL)
5903 return FALSE;
5904 if (!tv_equal(&HI2DI(hi)->di_tv, &item2->di_tv, ic))
5905 return FALSE;
5906 --todo;
5909 return TRUE;
5913 * Return TRUE if "tv1" and "tv2" have the same value.
5914 * Compares the items just like "==" would compare them, but strings and
5915 * numbers are different. Floats and numbers are also different.
5917 static int
5918 tv_equal(tv1, tv2, ic)
5919 typval_T *tv1;
5920 typval_T *tv2;
5921 int ic; /* ignore case */
5923 char_u buf1[NUMBUFLEN], buf2[NUMBUFLEN];
5924 char_u *s1, *s2;
5925 static int recursive = 0; /* cach recursive loops */
5926 int r;
5928 if (tv1->v_type != tv2->v_type)
5929 return FALSE;
5930 /* Catch lists and dicts that have an endless loop by limiting
5931 * recursiveness to 1000. We guess they are equal then. */
5932 if (recursive >= 1000)
5933 return TRUE;
5935 switch (tv1->v_type)
5937 case VAR_LIST:
5938 ++recursive;
5939 r = list_equal(tv1->vval.v_list, tv2->vval.v_list, ic);
5940 --recursive;
5941 return r;
5943 case VAR_DICT:
5944 ++recursive;
5945 r = dict_equal(tv1->vval.v_dict, tv2->vval.v_dict, ic);
5946 --recursive;
5947 return r;
5949 case VAR_FUNC:
5950 return (tv1->vval.v_string != NULL
5951 && tv2->vval.v_string != NULL
5952 && STRCMP(tv1->vval.v_string, tv2->vval.v_string) == 0);
5954 case VAR_NUMBER:
5955 return tv1->vval.v_number == tv2->vval.v_number;
5957 #ifdef FEAT_FLOAT
5958 case VAR_FLOAT:
5959 return tv1->vval.v_float == tv2->vval.v_float;
5960 #endif
5962 case VAR_STRING:
5963 s1 = get_tv_string_buf(tv1, buf1);
5964 s2 = get_tv_string_buf(tv2, buf2);
5965 return ((ic ? MB_STRICMP(s1, s2) : STRCMP(s1, s2)) == 0);
5968 EMSG2(_(e_intern2), "tv_equal()");
5969 return TRUE;
5973 * Locate item with index "n" in list "l" and return it.
5974 * A negative index is counted from the end; -1 is the last item.
5975 * Returns NULL when "n" is out of range.
5977 static listitem_T *
5978 list_find(l, n)
5979 list_T *l;
5980 long n;
5982 listitem_T *item;
5983 long idx;
5985 if (l == NULL)
5986 return NULL;
5988 /* Negative index is relative to the end. */
5989 if (n < 0)
5990 n = l->lv_len + n;
5992 /* Check for index out of range. */
5993 if (n < 0 || n >= l->lv_len)
5994 return NULL;
5996 /* When there is a cached index may start search from there. */
5997 if (l->lv_idx_item != NULL)
5999 if (n < l->lv_idx / 2)
6001 /* closest to the start of the list */
6002 item = l->lv_first;
6003 idx = 0;
6005 else if (n > (l->lv_idx + l->lv_len) / 2)
6007 /* closest to the end of the list */
6008 item = l->lv_last;
6009 idx = l->lv_len - 1;
6011 else
6013 /* closest to the cached index */
6014 item = l->lv_idx_item;
6015 idx = l->lv_idx;
6018 else
6020 if (n < l->lv_len / 2)
6022 /* closest to the start of the list */
6023 item = l->lv_first;
6024 idx = 0;
6026 else
6028 /* closest to the end of the list */
6029 item = l->lv_last;
6030 idx = l->lv_len - 1;
6034 while (n > idx)
6036 /* search forward */
6037 item = item->li_next;
6038 ++idx;
6040 while (n < idx)
6042 /* search backward */
6043 item = item->li_prev;
6044 --idx;
6047 /* cache the used index */
6048 l->lv_idx = idx;
6049 l->lv_idx_item = item;
6051 return item;
6055 * Get list item "l[idx]" as a number.
6057 static long
6058 list_find_nr(l, idx, errorp)
6059 list_T *l;
6060 long idx;
6061 int *errorp; /* set to TRUE when something wrong */
6063 listitem_T *li;
6065 li = list_find(l, idx);
6066 if (li == NULL)
6068 if (errorp != NULL)
6069 *errorp = TRUE;
6070 return -1L;
6072 return get_tv_number_chk(&li->li_tv, errorp);
6076 * Get list item "l[idx - 1]" as a string. Returns NULL for failure.
6078 char_u *
6079 list_find_str(l, idx)
6080 list_T *l;
6081 long idx;
6083 listitem_T *li;
6085 li = list_find(l, idx - 1);
6086 if (li == NULL)
6088 EMSGN(_(e_listidx), idx);
6089 return NULL;
6091 return get_tv_string(&li->li_tv);
6095 * Locate "item" list "l" and return its index.
6096 * Returns -1 when "item" is not in the list.
6098 static long
6099 list_idx_of_item(l, item)
6100 list_T *l;
6101 listitem_T *item;
6103 long idx = 0;
6104 listitem_T *li;
6106 if (l == NULL)
6107 return -1;
6108 idx = 0;
6109 for (li = l->lv_first; li != NULL && li != item; li = li->li_next)
6110 ++idx;
6111 if (li == NULL)
6112 return -1;
6113 return idx;
6117 * Append item "item" to the end of list "l".
6119 static void
6120 list_append(l, item)
6121 list_T *l;
6122 listitem_T *item;
6124 if (l->lv_last == NULL)
6126 /* empty list */
6127 l->lv_first = item;
6128 l->lv_last = item;
6129 item->li_prev = NULL;
6131 else
6133 l->lv_last->li_next = item;
6134 item->li_prev = l->lv_last;
6135 l->lv_last = item;
6137 ++l->lv_len;
6138 item->li_next = NULL;
6142 * Append typval_T "tv" to the end of list "l".
6143 * Return FAIL when out of memory.
6145 static int
6146 list_append_tv(l, tv)
6147 list_T *l;
6148 typval_T *tv;
6150 listitem_T *li = listitem_alloc();
6152 if (li == NULL)
6153 return FAIL;
6154 copy_tv(tv, &li->li_tv);
6155 list_append(l, li);
6156 return OK;
6160 * Add a dictionary to a list. Used by getqflist().
6161 * Return FAIL when out of memory.
6164 list_append_dict(list, dict)
6165 list_T *list;
6166 dict_T *dict;
6168 listitem_T *li = listitem_alloc();
6170 if (li == NULL)
6171 return FAIL;
6172 li->li_tv.v_type = VAR_DICT;
6173 li->li_tv.v_lock = 0;
6174 li->li_tv.vval.v_dict = dict;
6175 list_append(list, li);
6176 ++dict->dv_refcount;
6177 return OK;
6181 * Make a copy of "str" and append it as an item to list "l".
6182 * When "len" >= 0 use "str[len]".
6183 * Returns FAIL when out of memory.
6186 list_append_string(l, str, len)
6187 list_T *l;
6188 char_u *str;
6189 int len;
6191 listitem_T *li = listitem_alloc();
6193 if (li == NULL)
6194 return FAIL;
6195 list_append(l, li);
6196 li->li_tv.v_type = VAR_STRING;
6197 li->li_tv.v_lock = 0;
6198 if (str == NULL)
6199 li->li_tv.vval.v_string = NULL;
6200 else if ((li->li_tv.vval.v_string = (len >= 0 ? vim_strnsave(str, len)
6201 : vim_strsave(str))) == NULL)
6202 return FAIL;
6203 return OK;
6207 * Append "n" to list "l".
6208 * Returns FAIL when out of memory.
6210 static int
6211 list_append_number(l, n)
6212 list_T *l;
6213 varnumber_T n;
6215 listitem_T *li;
6217 li = listitem_alloc();
6218 if (li == NULL)
6219 return FAIL;
6220 li->li_tv.v_type = VAR_NUMBER;
6221 li->li_tv.v_lock = 0;
6222 li->li_tv.vval.v_number = n;
6223 list_append(l, li);
6224 return OK;
6228 * Insert typval_T "tv" in list "l" before "item".
6229 * If "item" is NULL append at the end.
6230 * Return FAIL when out of memory.
6232 static int
6233 list_insert_tv(l, tv, item)
6234 list_T *l;
6235 typval_T *tv;
6236 listitem_T *item;
6238 listitem_T *ni = listitem_alloc();
6240 if (ni == NULL)
6241 return FAIL;
6242 copy_tv(tv, &ni->li_tv);
6243 if (item == NULL)
6244 /* Append new item at end of list. */
6245 list_append(l, ni);
6246 else
6248 /* Insert new item before existing item. */
6249 ni->li_prev = item->li_prev;
6250 ni->li_next = item;
6251 if (item->li_prev == NULL)
6253 l->lv_first = ni;
6254 ++l->lv_idx;
6256 else
6258 item->li_prev->li_next = ni;
6259 l->lv_idx_item = NULL;
6261 item->li_prev = ni;
6262 ++l->lv_len;
6264 return OK;
6268 * Extend "l1" with "l2".
6269 * If "bef" is NULL append at the end, otherwise insert before this item.
6270 * Returns FAIL when out of memory.
6272 static int
6273 list_extend(l1, l2, bef)
6274 list_T *l1;
6275 list_T *l2;
6276 listitem_T *bef;
6278 listitem_T *item;
6279 int todo = l2->lv_len;
6281 /* We also quit the loop when we have inserted the original item count of
6282 * the list, avoid a hang when we extend a list with itself. */
6283 for (item = l2->lv_first; item != NULL && --todo >= 0; item = item->li_next)
6284 if (list_insert_tv(l1, &item->li_tv, bef) == FAIL)
6285 return FAIL;
6286 return OK;
6290 * Concatenate lists "l1" and "l2" into a new list, stored in "tv".
6291 * Return FAIL when out of memory.
6293 static int
6294 list_concat(l1, l2, tv)
6295 list_T *l1;
6296 list_T *l2;
6297 typval_T *tv;
6299 list_T *l;
6301 if (l1 == NULL || l2 == NULL)
6302 return FAIL;
6304 /* make a copy of the first list. */
6305 l = list_copy(l1, FALSE, 0);
6306 if (l == NULL)
6307 return FAIL;
6308 tv->v_type = VAR_LIST;
6309 tv->vval.v_list = l;
6311 /* append all items from the second list */
6312 return list_extend(l, l2, NULL);
6316 * Make a copy of list "orig". Shallow if "deep" is FALSE.
6317 * The refcount of the new list is set to 1.
6318 * See item_copy() for "copyID".
6319 * Returns NULL when out of memory.
6321 static list_T *
6322 list_copy(orig, deep, copyID)
6323 list_T *orig;
6324 int deep;
6325 int copyID;
6327 list_T *copy;
6328 listitem_T *item;
6329 listitem_T *ni;
6331 if (orig == NULL)
6332 return NULL;
6334 copy = list_alloc();
6335 if (copy != NULL)
6337 if (copyID != 0)
6339 /* Do this before adding the items, because one of the items may
6340 * refer back to this list. */
6341 orig->lv_copyID = copyID;
6342 orig->lv_copylist = copy;
6344 for (item = orig->lv_first; item != NULL && !got_int;
6345 item = item->li_next)
6347 ni = listitem_alloc();
6348 if (ni == NULL)
6349 break;
6350 if (deep)
6352 if (item_copy(&item->li_tv, &ni->li_tv, deep, copyID) == FAIL)
6354 vim_free(ni);
6355 break;
6358 else
6359 copy_tv(&item->li_tv, &ni->li_tv);
6360 list_append(copy, ni);
6362 ++copy->lv_refcount;
6363 if (item != NULL)
6365 list_unref(copy);
6366 copy = NULL;
6370 return copy;
6374 * Remove items "item" to "item2" from list "l".
6375 * Does not free the listitem or the value!
6377 static void
6378 list_remove(l, item, item2)
6379 list_T *l;
6380 listitem_T *item;
6381 listitem_T *item2;
6383 listitem_T *ip;
6385 /* notify watchers */
6386 for (ip = item; ip != NULL; ip = ip->li_next)
6388 --l->lv_len;
6389 list_fix_watch(l, ip);
6390 if (ip == item2)
6391 break;
6394 if (item2->li_next == NULL)
6395 l->lv_last = item->li_prev;
6396 else
6397 item2->li_next->li_prev = item->li_prev;
6398 if (item->li_prev == NULL)
6399 l->lv_first = item2->li_next;
6400 else
6401 item->li_prev->li_next = item2->li_next;
6402 l->lv_idx_item = NULL;
6406 * Return an allocated string with the string representation of a list.
6407 * May return NULL.
6409 static char_u *
6410 list2string(tv, copyID)
6411 typval_T *tv;
6412 int copyID;
6414 garray_T ga;
6416 if (tv->vval.v_list == NULL)
6417 return NULL;
6418 ga_init2(&ga, (int)sizeof(char), 80);
6419 ga_append(&ga, '[');
6420 if (list_join(&ga, tv->vval.v_list, (char_u *)", ", FALSE, copyID) == FAIL)
6422 vim_free(ga.ga_data);
6423 return NULL;
6425 ga_append(&ga, ']');
6426 ga_append(&ga, NUL);
6427 return (char_u *)ga.ga_data;
6431 * Join list "l" into a string in "*gap", using separator "sep".
6432 * When "echo" is TRUE use String as echoed, otherwise as inside a List.
6433 * Return FAIL or OK.
6435 static int
6436 list_join(gap, l, sep, echo, copyID)
6437 garray_T *gap;
6438 list_T *l;
6439 char_u *sep;
6440 int echo;
6441 int copyID;
6443 int first = TRUE;
6444 char_u *tofree;
6445 char_u numbuf[NUMBUFLEN];
6446 listitem_T *item;
6447 char_u *s;
6449 for (item = l->lv_first; item != NULL && !got_int; item = item->li_next)
6451 if (first)
6452 first = FALSE;
6453 else
6454 ga_concat(gap, sep);
6456 if (echo)
6457 s = echo_string(&item->li_tv, &tofree, numbuf, copyID);
6458 else
6459 s = tv2string(&item->li_tv, &tofree, numbuf, copyID);
6460 if (s != NULL)
6461 ga_concat(gap, s);
6462 vim_free(tofree);
6463 if (s == NULL)
6464 return FAIL;
6466 return OK;
6470 * Garbage collection for lists and dictionaries.
6472 * We use reference counts to be able to free most items right away when they
6473 * are no longer used. But for composite items it's possible that it becomes
6474 * unused while the reference count is > 0: When there is a recursive
6475 * reference. Example:
6476 * :let l = [1, 2, 3]
6477 * :let d = {9: l}
6478 * :let l[1] = d
6480 * Since this is quite unusual we handle this with garbage collection: every
6481 * once in a while find out which lists and dicts are not referenced from any
6482 * variable.
6484 * Here is a good reference text about garbage collection (refers to Python
6485 * but it applies to all reference-counting mechanisms):
6486 * http://python.ca/nas/python/gc/
6490 * Do garbage collection for lists and dicts.
6491 * Return TRUE if some memory was freed.
6494 garbage_collect()
6496 dict_T *dd;
6497 list_T *ll;
6498 int copyID = ++current_copyID;
6499 buf_T *buf;
6500 win_T *wp;
6501 int i;
6502 funccall_T *fc, **pfc;
6503 int did_free = FALSE;
6504 #ifdef FEAT_WINDOWS
6505 tabpage_T *tp;
6506 #endif
6508 /* Only do this once. */
6509 want_garbage_collect = FALSE;
6510 may_garbage_collect = FALSE;
6511 garbage_collect_at_exit = FALSE;
6514 * 1. Go through all accessible variables and mark all lists and dicts
6515 * with copyID.
6517 /* script-local variables */
6518 for (i = 1; i <= ga_scripts.ga_len; ++i)
6519 set_ref_in_ht(&SCRIPT_VARS(i), copyID);
6521 /* buffer-local variables */
6522 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
6523 set_ref_in_ht(&buf->b_vars.dv_hashtab, copyID);
6525 /* window-local variables */
6526 FOR_ALL_TAB_WINDOWS(tp, wp)
6527 set_ref_in_ht(&wp->w_vars.dv_hashtab, copyID);
6529 #ifdef FEAT_WINDOWS
6530 /* tabpage-local variables */
6531 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next)
6532 set_ref_in_ht(&tp->tp_vars.dv_hashtab, copyID);
6533 #endif
6535 /* global variables */
6536 set_ref_in_ht(&globvarht, copyID);
6538 /* function-local variables */
6539 for (fc = current_funccal; fc != NULL; fc = fc->caller)
6541 set_ref_in_ht(&fc->l_vars.dv_hashtab, copyID);
6542 set_ref_in_ht(&fc->l_avars.dv_hashtab, copyID);
6545 /* v: vars */
6546 set_ref_in_ht(&vimvarht, copyID);
6549 * 2. Go through the list of dicts and free items without the copyID.
6551 for (dd = first_dict; dd != NULL; )
6552 if (dd->dv_copyID != copyID)
6554 /* Free the Dictionary and ordinary items it contains, but don't
6555 * recurse into Lists and Dictionaries, they will be in the list
6556 * of dicts or list of lists. */
6557 dict_free(dd, FALSE);
6558 did_free = TRUE;
6560 /* restart, next dict may also have been freed */
6561 dd = first_dict;
6563 else
6564 dd = dd->dv_used_next;
6567 * 3. Go through the list of lists and free items without the copyID.
6568 * But don't free a list that has a watcher (used in a for loop), these
6569 * are not referenced anywhere.
6571 for (ll = first_list; ll != NULL; )
6572 if (ll->lv_copyID != copyID && ll->lv_watch == NULL)
6574 /* Free the List and ordinary items it contains, but don't recurse
6575 * into Lists and Dictionaries, they will be in the list of dicts
6576 * or list of lists. */
6577 list_free(ll, FALSE);
6578 did_free = TRUE;
6580 /* restart, next list may also have been freed */
6581 ll = first_list;
6583 else
6584 ll = ll->lv_used_next;
6586 /* check if any funccal can be freed now */
6587 for (pfc = &previous_funccal; *pfc != NULL; )
6589 if (can_free_funccal(*pfc, copyID))
6591 fc = *pfc;
6592 *pfc = fc->caller;
6593 free_funccal(fc, TRUE);
6594 did_free = TRUE;
6596 else
6597 pfc = &(*pfc)->caller;
6600 return did_free;
6604 * Mark all lists and dicts referenced through hashtab "ht" with "copyID".
6606 static void
6607 set_ref_in_ht(ht, copyID)
6608 hashtab_T *ht;
6609 int copyID;
6611 int todo;
6612 hashitem_T *hi;
6614 todo = (int)ht->ht_used;
6615 for (hi = ht->ht_array; todo > 0; ++hi)
6616 if (!HASHITEM_EMPTY(hi))
6618 --todo;
6619 set_ref_in_item(&HI2DI(hi)->di_tv, copyID);
6624 * Mark all lists and dicts referenced through list "l" with "copyID".
6626 static void
6627 set_ref_in_list(l, copyID)
6628 list_T *l;
6629 int copyID;
6631 listitem_T *li;
6633 for (li = l->lv_first; li != NULL; li = li->li_next)
6634 set_ref_in_item(&li->li_tv, copyID);
6638 * Mark all lists and dicts referenced through typval "tv" with "copyID".
6640 static void
6641 set_ref_in_item(tv, copyID)
6642 typval_T *tv;
6643 int copyID;
6645 dict_T *dd;
6646 list_T *ll;
6648 switch (tv->v_type)
6650 case VAR_DICT:
6651 dd = tv->vval.v_dict;
6652 if (dd != NULL && dd->dv_copyID != copyID)
6654 /* Didn't see this dict yet. */
6655 dd->dv_copyID = copyID;
6656 set_ref_in_ht(&dd->dv_hashtab, copyID);
6658 break;
6660 case VAR_LIST:
6661 ll = tv->vval.v_list;
6662 if (ll != NULL && ll->lv_copyID != copyID)
6664 /* Didn't see this list yet. */
6665 ll->lv_copyID = copyID;
6666 set_ref_in_list(ll, copyID);
6668 break;
6670 return;
6674 * Allocate an empty header for a dictionary.
6676 dict_T *
6677 dict_alloc()
6679 dict_T *d;
6681 d = (dict_T *)alloc(sizeof(dict_T));
6682 if (d != NULL)
6684 /* Add the list to the list of dicts for garbage collection. */
6685 if (first_dict != NULL)
6686 first_dict->dv_used_prev = d;
6687 d->dv_used_next = first_dict;
6688 d->dv_used_prev = NULL;
6689 first_dict = d;
6691 hash_init(&d->dv_hashtab);
6692 d->dv_lock = 0;
6693 d->dv_refcount = 0;
6694 d->dv_copyID = 0;
6696 return d;
6700 * Unreference a Dictionary: decrement the reference count and free it when it
6701 * becomes zero.
6703 static void
6704 dict_unref(d)
6705 dict_T *d;
6707 if (d != NULL && --d->dv_refcount <= 0)
6708 dict_free(d, TRUE);
6712 * Free a Dictionary, including all items it contains.
6713 * Ignores the reference count.
6715 static void
6716 dict_free(d, recurse)
6717 dict_T *d;
6718 int recurse; /* Free Lists and Dictionaries recursively. */
6720 int todo;
6721 hashitem_T *hi;
6722 dictitem_T *di;
6724 /* Remove the dict from the list of dicts for garbage collection. */
6725 if (d->dv_used_prev == NULL)
6726 first_dict = d->dv_used_next;
6727 else
6728 d->dv_used_prev->dv_used_next = d->dv_used_next;
6729 if (d->dv_used_next != NULL)
6730 d->dv_used_next->dv_used_prev = d->dv_used_prev;
6732 /* Lock the hashtab, we don't want it to resize while freeing items. */
6733 hash_lock(&d->dv_hashtab);
6734 todo = (int)d->dv_hashtab.ht_used;
6735 for (hi = d->dv_hashtab.ht_array; todo > 0; ++hi)
6737 if (!HASHITEM_EMPTY(hi))
6739 /* Remove the item before deleting it, just in case there is
6740 * something recursive causing trouble. */
6741 di = HI2DI(hi);
6742 hash_remove(&d->dv_hashtab, hi);
6743 if (recurse || (di->di_tv.v_type != VAR_LIST
6744 && di->di_tv.v_type != VAR_DICT))
6745 clear_tv(&di->di_tv);
6746 vim_free(di);
6747 --todo;
6750 hash_clear(&d->dv_hashtab);
6751 vim_free(d);
6755 * Allocate a Dictionary item.
6756 * The "key" is copied to the new item.
6757 * Note that the value of the item "di_tv" still needs to be initialized!
6758 * Returns NULL when out of memory.
6760 static dictitem_T *
6761 dictitem_alloc(key)
6762 char_u *key;
6764 dictitem_T *di;
6766 di = (dictitem_T *)alloc((unsigned)(sizeof(dictitem_T) + STRLEN(key)));
6767 if (di != NULL)
6769 STRCPY(di->di_key, key);
6770 di->di_flags = 0;
6772 return di;
6776 * Make a copy of a Dictionary item.
6778 static dictitem_T *
6779 dictitem_copy(org)
6780 dictitem_T *org;
6782 dictitem_T *di;
6784 di = (dictitem_T *)alloc((unsigned)(sizeof(dictitem_T)
6785 + STRLEN(org->di_key)));
6786 if (di != NULL)
6788 STRCPY(di->di_key, org->di_key);
6789 di->di_flags = 0;
6790 copy_tv(&org->di_tv, &di->di_tv);
6792 return di;
6796 * Remove item "item" from Dictionary "dict" and free it.
6798 static void
6799 dictitem_remove(dict, item)
6800 dict_T *dict;
6801 dictitem_T *item;
6803 hashitem_T *hi;
6805 hi = hash_find(&dict->dv_hashtab, item->di_key);
6806 if (HASHITEM_EMPTY(hi))
6807 EMSG2(_(e_intern2), "dictitem_remove()");
6808 else
6809 hash_remove(&dict->dv_hashtab, hi);
6810 dictitem_free(item);
6814 * Free a dict item. Also clears the value.
6816 static void
6817 dictitem_free(item)
6818 dictitem_T *item;
6820 clear_tv(&item->di_tv);
6821 vim_free(item);
6825 * Make a copy of dict "d". Shallow if "deep" is FALSE.
6826 * The refcount of the new dict is set to 1.
6827 * See item_copy() for "copyID".
6828 * Returns NULL when out of memory.
6830 static dict_T *
6831 dict_copy(orig, deep, copyID)
6832 dict_T *orig;
6833 int deep;
6834 int copyID;
6836 dict_T *copy;
6837 dictitem_T *di;
6838 int todo;
6839 hashitem_T *hi;
6841 if (orig == NULL)
6842 return NULL;
6844 copy = dict_alloc();
6845 if (copy != NULL)
6847 if (copyID != 0)
6849 orig->dv_copyID = copyID;
6850 orig->dv_copydict = copy;
6852 todo = (int)orig->dv_hashtab.ht_used;
6853 for (hi = orig->dv_hashtab.ht_array; todo > 0 && !got_int; ++hi)
6855 if (!HASHITEM_EMPTY(hi))
6857 --todo;
6859 di = dictitem_alloc(hi->hi_key);
6860 if (di == NULL)
6861 break;
6862 if (deep)
6864 if (item_copy(&HI2DI(hi)->di_tv, &di->di_tv, deep,
6865 copyID) == FAIL)
6867 vim_free(di);
6868 break;
6871 else
6872 copy_tv(&HI2DI(hi)->di_tv, &di->di_tv);
6873 if (dict_add(copy, di) == FAIL)
6875 dictitem_free(di);
6876 break;
6881 ++copy->dv_refcount;
6882 if (todo > 0)
6884 dict_unref(copy);
6885 copy = NULL;
6889 return copy;
6893 * Add item "item" to Dictionary "d".
6894 * Returns FAIL when out of memory and when key already existed.
6896 static int
6897 dict_add(d, item)
6898 dict_T *d;
6899 dictitem_T *item;
6901 return hash_add(&d->dv_hashtab, item->di_key);
6905 * Add a number or string entry to dictionary "d".
6906 * When "str" is NULL use number "nr", otherwise use "str".
6907 * Returns FAIL when out of memory and when key already exists.
6910 dict_add_nr_str(d, key, nr, str)
6911 dict_T *d;
6912 char *key;
6913 long nr;
6914 char_u *str;
6916 dictitem_T *item;
6918 item = dictitem_alloc((char_u *)key);
6919 if (item == NULL)
6920 return FAIL;
6921 item->di_tv.v_lock = 0;
6922 if (str == NULL)
6924 item->di_tv.v_type = VAR_NUMBER;
6925 item->di_tv.vval.v_number = nr;
6927 else
6929 item->di_tv.v_type = VAR_STRING;
6930 item->di_tv.vval.v_string = vim_strsave(str);
6932 if (dict_add(d, item) == FAIL)
6934 dictitem_free(item);
6935 return FAIL;
6937 return OK;
6941 * Get the number of items in a Dictionary.
6943 static long
6944 dict_len(d)
6945 dict_T *d;
6947 if (d == NULL)
6948 return 0L;
6949 return (long)d->dv_hashtab.ht_used;
6953 * Find item "key[len]" in Dictionary "d".
6954 * If "len" is negative use strlen(key).
6955 * Returns NULL when not found.
6957 static dictitem_T *
6958 dict_find(d, key, len)
6959 dict_T *d;
6960 char_u *key;
6961 int len;
6963 #define AKEYLEN 200
6964 char_u buf[AKEYLEN];
6965 char_u *akey;
6966 char_u *tofree = NULL;
6967 hashitem_T *hi;
6969 if (len < 0)
6970 akey = key;
6971 else if (len >= AKEYLEN)
6973 tofree = akey = vim_strnsave(key, len);
6974 if (akey == NULL)
6975 return NULL;
6977 else
6979 /* Avoid a malloc/free by using buf[]. */
6980 vim_strncpy(buf, key, len);
6981 akey = buf;
6984 hi = hash_find(&d->dv_hashtab, akey);
6985 vim_free(tofree);
6986 if (HASHITEM_EMPTY(hi))
6987 return NULL;
6988 return HI2DI(hi);
6992 * Get a string item from a dictionary.
6993 * When "save" is TRUE allocate memory for it.
6994 * Returns NULL if the entry doesn't exist or out of memory.
6996 char_u *
6997 get_dict_string(d, key, save)
6998 dict_T *d;
6999 char_u *key;
7000 int save;
7002 dictitem_T *di;
7003 char_u *s;
7005 di = dict_find(d, key, -1);
7006 if (di == NULL)
7007 return NULL;
7008 s = get_tv_string(&di->di_tv);
7009 if (save && s != NULL)
7010 s = vim_strsave(s);
7011 return s;
7015 * Get a number item from a dictionary.
7016 * Returns 0 if the entry doesn't exist or out of memory.
7018 long
7019 get_dict_number(d, key)
7020 dict_T *d;
7021 char_u *key;
7023 dictitem_T *di;
7025 di = dict_find(d, key, -1);
7026 if (di == NULL)
7027 return 0;
7028 return get_tv_number(&di->di_tv);
7032 * Return an allocated string with the string representation of a Dictionary.
7033 * May return NULL.
7035 static char_u *
7036 dict2string(tv, copyID)
7037 typval_T *tv;
7038 int copyID;
7040 garray_T ga;
7041 int first = TRUE;
7042 char_u *tofree;
7043 char_u numbuf[NUMBUFLEN];
7044 hashitem_T *hi;
7045 char_u *s;
7046 dict_T *d;
7047 int todo;
7049 if ((d = tv->vval.v_dict) == NULL)
7050 return NULL;
7051 ga_init2(&ga, (int)sizeof(char), 80);
7052 ga_append(&ga, '{');
7054 todo = (int)d->dv_hashtab.ht_used;
7055 for (hi = d->dv_hashtab.ht_array; todo > 0 && !got_int; ++hi)
7057 if (!HASHITEM_EMPTY(hi))
7059 --todo;
7061 if (first)
7062 first = FALSE;
7063 else
7064 ga_concat(&ga, (char_u *)", ");
7066 tofree = string_quote(hi->hi_key, FALSE);
7067 if (tofree != NULL)
7069 ga_concat(&ga, tofree);
7070 vim_free(tofree);
7072 ga_concat(&ga, (char_u *)": ");
7073 s = tv2string(&HI2DI(hi)->di_tv, &tofree, numbuf, copyID);
7074 if (s != NULL)
7075 ga_concat(&ga, s);
7076 vim_free(tofree);
7077 if (s == NULL)
7078 break;
7081 if (todo > 0)
7083 vim_free(ga.ga_data);
7084 return NULL;
7087 ga_append(&ga, '}');
7088 ga_append(&ga, NUL);
7089 return (char_u *)ga.ga_data;
7093 * Allocate a variable for a Dictionary and fill it from "*arg".
7094 * Return OK or FAIL. Returns NOTDONE for {expr}.
7096 static int
7097 get_dict_tv(arg, rettv, evaluate)
7098 char_u **arg;
7099 typval_T *rettv;
7100 int evaluate;
7102 dict_T *d = NULL;
7103 typval_T tvkey;
7104 typval_T tv;
7105 char_u *key = NULL;
7106 dictitem_T *item;
7107 char_u *start = skipwhite(*arg + 1);
7108 char_u buf[NUMBUFLEN];
7111 * First check if it's not a curly-braces thing: {expr}.
7112 * Must do this without evaluating, otherwise a function may be called
7113 * twice. Unfortunately this means we need to call eval1() twice for the
7114 * first item.
7115 * But {} is an empty Dictionary.
7117 if (*start != '}')
7119 if (eval1(&start, &tv, FALSE) == FAIL) /* recursive! */
7120 return FAIL;
7121 if (*start == '}')
7122 return NOTDONE;
7125 if (evaluate)
7127 d = dict_alloc();
7128 if (d == NULL)
7129 return FAIL;
7131 tvkey.v_type = VAR_UNKNOWN;
7132 tv.v_type = VAR_UNKNOWN;
7134 *arg = skipwhite(*arg + 1);
7135 while (**arg != '}' && **arg != NUL)
7137 if (eval1(arg, &tvkey, evaluate) == FAIL) /* recursive! */
7138 goto failret;
7139 if (**arg != ':')
7141 EMSG2(_("E720: Missing colon in Dictionary: %s"), *arg);
7142 clear_tv(&tvkey);
7143 goto failret;
7145 if (evaluate)
7147 key = get_tv_string_buf_chk(&tvkey, buf);
7148 if (key == NULL || *key == NUL)
7150 /* "key" is NULL when get_tv_string_buf_chk() gave an errmsg */
7151 if (key != NULL)
7152 EMSG(_(e_emptykey));
7153 clear_tv(&tvkey);
7154 goto failret;
7158 *arg = skipwhite(*arg + 1);
7159 if (eval1(arg, &tv, evaluate) == FAIL) /* recursive! */
7161 if (evaluate)
7162 clear_tv(&tvkey);
7163 goto failret;
7165 if (evaluate)
7167 item = dict_find(d, key, -1);
7168 if (item != NULL)
7170 EMSG2(_("E721: Duplicate key in Dictionary: \"%s\""), key);
7171 clear_tv(&tvkey);
7172 clear_tv(&tv);
7173 goto failret;
7175 item = dictitem_alloc(key);
7176 clear_tv(&tvkey);
7177 if (item != NULL)
7179 item->di_tv = tv;
7180 item->di_tv.v_lock = 0;
7181 if (dict_add(d, item) == FAIL)
7182 dictitem_free(item);
7186 if (**arg == '}')
7187 break;
7188 if (**arg != ',')
7190 EMSG2(_("E722: Missing comma in Dictionary: %s"), *arg);
7191 goto failret;
7193 *arg = skipwhite(*arg + 1);
7196 if (**arg != '}')
7198 EMSG2(_("E723: Missing end of Dictionary '}': %s"), *arg);
7199 failret:
7200 if (evaluate)
7201 dict_free(d, TRUE);
7202 return FAIL;
7205 *arg = skipwhite(*arg + 1);
7206 if (evaluate)
7208 rettv->v_type = VAR_DICT;
7209 rettv->vval.v_dict = d;
7210 ++d->dv_refcount;
7213 return OK;
7217 * Return a string with the string representation of a variable.
7218 * If the memory is allocated "tofree" is set to it, otherwise NULL.
7219 * "numbuf" is used for a number.
7220 * Does not put quotes around strings, as ":echo" displays values.
7221 * When "copyID" is not NULL replace recursive lists and dicts with "...".
7222 * May return NULL.
7224 static char_u *
7225 echo_string(tv, tofree, numbuf, copyID)
7226 typval_T *tv;
7227 char_u **tofree;
7228 char_u *numbuf;
7229 int copyID;
7231 static int recurse = 0;
7232 char_u *r = NULL;
7234 if (recurse >= DICT_MAXNEST)
7236 EMSG(_("E724: variable nested too deep for displaying"));
7237 *tofree = NULL;
7238 return NULL;
7240 ++recurse;
7242 switch (tv->v_type)
7244 case VAR_FUNC:
7245 *tofree = NULL;
7246 r = tv->vval.v_string;
7247 break;
7249 case VAR_LIST:
7250 if (tv->vval.v_list == NULL)
7252 *tofree = NULL;
7253 r = NULL;
7255 else if (copyID != 0 && tv->vval.v_list->lv_copyID == copyID)
7257 *tofree = NULL;
7258 r = (char_u *)"[...]";
7260 else
7262 tv->vval.v_list->lv_copyID = copyID;
7263 *tofree = list2string(tv, copyID);
7264 r = *tofree;
7266 break;
7268 case VAR_DICT:
7269 if (tv->vval.v_dict == NULL)
7271 *tofree = NULL;
7272 r = NULL;
7274 else if (copyID != 0 && tv->vval.v_dict->dv_copyID == copyID)
7276 *tofree = NULL;
7277 r = (char_u *)"{...}";
7279 else
7281 tv->vval.v_dict->dv_copyID = copyID;
7282 *tofree = dict2string(tv, copyID);
7283 r = *tofree;
7285 break;
7287 case VAR_STRING:
7288 case VAR_NUMBER:
7289 *tofree = NULL;
7290 r = get_tv_string_buf(tv, numbuf);
7291 break;
7293 #ifdef FEAT_FLOAT
7294 case VAR_FLOAT:
7295 *tofree = NULL;
7296 vim_snprintf((char *)numbuf, NUMBUFLEN, "%g", tv->vval.v_float);
7297 r = numbuf;
7298 break;
7299 #endif
7301 default:
7302 EMSG2(_(e_intern2), "echo_string()");
7303 *tofree = NULL;
7306 --recurse;
7307 return r;
7311 * Return a string with the string representation of a variable.
7312 * If the memory is allocated "tofree" is set to it, otherwise NULL.
7313 * "numbuf" is used for a number.
7314 * Puts quotes around strings, so that they can be parsed back by eval().
7315 * May return NULL.
7317 static char_u *
7318 tv2string(tv, tofree, numbuf, copyID)
7319 typval_T *tv;
7320 char_u **tofree;
7321 char_u *numbuf;
7322 int copyID;
7324 switch (tv->v_type)
7326 case VAR_FUNC:
7327 *tofree = string_quote(tv->vval.v_string, TRUE);
7328 return *tofree;
7329 case VAR_STRING:
7330 *tofree = string_quote(tv->vval.v_string, FALSE);
7331 return *tofree;
7332 #ifdef FEAT_FLOAT
7333 case VAR_FLOAT:
7334 *tofree = NULL;
7335 vim_snprintf((char *)numbuf, NUMBUFLEN - 1, "%g", tv->vval.v_float);
7336 return numbuf;
7337 #endif
7338 case VAR_NUMBER:
7339 case VAR_LIST:
7340 case VAR_DICT:
7341 break;
7342 default:
7343 EMSG2(_(e_intern2), "tv2string()");
7345 return echo_string(tv, tofree, numbuf, copyID);
7349 * Return string "str" in ' quotes, doubling ' characters.
7350 * If "str" is NULL an empty string is assumed.
7351 * If "function" is TRUE make it function('string').
7353 static char_u *
7354 string_quote(str, function)
7355 char_u *str;
7356 int function;
7358 unsigned len;
7359 char_u *p, *r, *s;
7361 len = (function ? 13 : 3);
7362 if (str != NULL)
7364 len += (unsigned)STRLEN(str);
7365 for (p = str; *p != NUL; mb_ptr_adv(p))
7366 if (*p == '\'')
7367 ++len;
7369 s = r = alloc(len);
7370 if (r != NULL)
7372 if (function)
7374 STRCPY(r, "function('");
7375 r += 10;
7377 else
7378 *r++ = '\'';
7379 if (str != NULL)
7380 for (p = str; *p != NUL; )
7382 if (*p == '\'')
7383 *r++ = '\'';
7384 MB_COPY_CHAR(p, r);
7386 *r++ = '\'';
7387 if (function)
7388 *r++ = ')';
7389 *r++ = NUL;
7391 return s;
7394 #ifdef FEAT_FLOAT
7396 * Convert the string "text" to a floating point number.
7397 * This uses strtod(). setlocale(LC_NUMERIC, "C") has been used to make sure
7398 * this always uses a decimal point.
7399 * Returns the length of the text that was consumed.
7401 static int
7402 string2float(text, value)
7403 char_u *text;
7404 float_T *value; /* result stored here */
7406 char *s = (char *)text;
7407 float_T f;
7409 f = strtod(s, &s);
7410 *value = f;
7411 return (int)((char_u *)s - text);
7413 #endif
7416 * Get the value of an environment variable.
7417 * "arg" is pointing to the '$'. It is advanced to after the name.
7418 * If the environment variable was not set, silently assume it is empty.
7419 * Always return OK.
7421 static int
7422 get_env_tv(arg, rettv, evaluate)
7423 char_u **arg;
7424 typval_T *rettv;
7425 int evaluate;
7427 char_u *string = NULL;
7428 int len;
7429 int cc;
7430 char_u *name;
7431 int mustfree = FALSE;
7433 ++*arg;
7434 name = *arg;
7435 len = get_env_len(arg);
7436 if (evaluate)
7438 if (len != 0)
7440 cc = name[len];
7441 name[len] = NUL;
7442 /* first try vim_getenv(), fast for normal environment vars */
7443 string = vim_getenv(name, &mustfree);
7444 if (string != NULL && *string != NUL)
7446 if (!mustfree)
7447 string = vim_strsave(string);
7449 else
7451 if (mustfree)
7452 vim_free(string);
7454 /* next try expanding things like $VIM and ${HOME} */
7455 string = expand_env_save(name - 1);
7456 if (string != NULL && *string == '$')
7458 vim_free(string);
7459 string = NULL;
7462 name[len] = cc;
7464 rettv->v_type = VAR_STRING;
7465 rettv->vval.v_string = string;
7468 return OK;
7472 * Array with names and number of arguments of all internal functions
7473 * MUST BE KEPT SORTED IN strcmp() ORDER FOR BINARY SEARCH!
7475 static struct fst
7477 char *f_name; /* function name */
7478 char f_min_argc; /* minimal number of arguments */
7479 char f_max_argc; /* maximal number of arguments */
7480 void (*f_func) __ARGS((typval_T *args, typval_T *rvar));
7481 /* implementation of function */
7482 } functions[] =
7484 #ifdef FEAT_FLOAT
7485 {"abs", 1, 1, f_abs},
7486 #endif
7487 {"add", 2, 2, f_add},
7488 {"append", 2, 2, f_append},
7489 {"argc", 0, 0, f_argc},
7490 {"argidx", 0, 0, f_argidx},
7491 {"argv", 0, 1, f_argv},
7492 #ifdef FEAT_FLOAT
7493 {"atan", 1, 1, f_atan},
7494 #endif
7495 {"browse", 4, 4, f_browse},
7496 {"browsedir", 2, 2, f_browsedir},
7497 {"bufexists", 1, 1, f_bufexists},
7498 {"buffer_exists", 1, 1, f_bufexists}, /* obsolete */
7499 {"buffer_name", 1, 1, f_bufname}, /* obsolete */
7500 {"buffer_number", 1, 1, f_bufnr}, /* obsolete */
7501 {"buflisted", 1, 1, f_buflisted},
7502 {"bufloaded", 1, 1, f_bufloaded},
7503 {"bufname", 1, 1, f_bufname},
7504 {"bufnr", 1, 2, f_bufnr},
7505 {"bufwinnr", 1, 1, f_bufwinnr},
7506 {"byte2line", 1, 1, f_byte2line},
7507 {"byteidx", 2, 2, f_byteidx},
7508 {"call", 2, 3, f_call},
7509 #ifdef FEAT_FLOAT
7510 {"ceil", 1, 1, f_ceil},
7511 #endif
7512 {"changenr", 0, 0, f_changenr},
7513 {"char2nr", 1, 1, f_char2nr},
7514 {"cindent", 1, 1, f_cindent},
7515 {"clearmatches", 0, 0, f_clearmatches},
7516 {"col", 1, 1, f_col},
7517 #if defined(FEAT_INS_EXPAND)
7518 {"complete", 2, 2, f_complete},
7519 {"complete_add", 1, 1, f_complete_add},
7520 {"complete_check", 0, 0, f_complete_check},
7521 #endif
7522 {"confirm", 1, 4, f_confirm},
7523 {"copy", 1, 1, f_copy},
7524 #ifdef FEAT_FLOAT
7525 {"cos", 1, 1, f_cos},
7526 #endif
7527 {"count", 2, 4, f_count},
7528 {"cscope_connection",0,3, f_cscope_connection},
7529 {"cursor", 1, 3, f_cursor},
7530 {"deepcopy", 1, 2, f_deepcopy},
7531 {"delete", 1, 1, f_delete},
7532 {"did_filetype", 0, 0, f_did_filetype},
7533 {"diff_filler", 1, 1, f_diff_filler},
7534 {"diff_hlID", 2, 2, f_diff_hlID},
7535 {"empty", 1, 1, f_empty},
7536 {"escape", 2, 2, f_escape},
7537 {"eval", 1, 1, f_eval},
7538 {"eventhandler", 0, 0, f_eventhandler},
7539 {"executable", 1, 1, f_executable},
7540 {"exists", 1, 1, f_exists},
7541 {"expand", 1, 2, f_expand},
7542 {"extend", 2, 3, f_extend},
7543 {"feedkeys", 1, 2, f_feedkeys},
7544 {"file_readable", 1, 1, f_filereadable}, /* obsolete */
7545 {"filereadable", 1, 1, f_filereadable},
7546 {"filewritable", 1, 1, f_filewritable},
7547 {"filter", 2, 2, f_filter},
7548 {"finddir", 1, 3, f_finddir},
7549 {"findfile", 1, 3, f_findfile},
7550 #ifdef FEAT_FLOAT
7551 {"float2nr", 1, 1, f_float2nr},
7552 {"floor", 1, 1, f_floor},
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 {"log10", 1, 1, f_log10},
7630 #endif
7631 {"map", 2, 2, f_map},
7632 {"maparg", 1, 3, f_maparg},
7633 {"mapcheck", 1, 3, f_mapcheck},
7634 {"match", 2, 4, f_match},
7635 {"matchadd", 2, 4, f_matchadd},
7636 {"matcharg", 1, 1, f_matcharg},
7637 {"matchdelete", 1, 1, f_matchdelete},
7638 {"matchend", 2, 4, f_matchend},
7639 {"matchlist", 2, 4, f_matchlist},
7640 {"matchstr", 2, 4, f_matchstr},
7641 {"max", 1, 1, f_max},
7642 {"min", 1, 1, f_min},
7643 #ifdef vim_mkdir
7644 {"mkdir", 1, 3, f_mkdir},
7645 #endif
7646 {"mode", 0, 1, f_mode},
7647 {"nextnonblank", 1, 1, f_nextnonblank},
7648 {"nr2char", 1, 1, f_nr2char},
7649 {"pathshorten", 1, 1, f_pathshorten},
7650 #ifdef FEAT_FLOAT
7651 {"pow", 2, 2, f_pow},
7652 #endif
7653 {"prevnonblank", 1, 1, f_prevnonblank},
7654 {"printf", 2, 19, f_printf},
7655 {"pumvisible", 0, 0, f_pumvisible},
7656 {"range", 1, 3, f_range},
7657 {"readfile", 1, 3, f_readfile},
7658 {"reltime", 0, 2, f_reltime},
7659 {"reltimestr", 1, 1, f_reltimestr},
7660 {"remote_expr", 2, 3, f_remote_expr},
7661 {"remote_foreground", 1, 1, f_remote_foreground},
7662 {"remote_peek", 1, 2, f_remote_peek},
7663 {"remote_read", 1, 1, f_remote_read},
7664 {"remote_send", 2, 3, f_remote_send},
7665 {"remove", 2, 3, f_remove},
7666 {"rename", 2, 2, f_rename},
7667 {"repeat", 2, 2, f_repeat},
7668 {"resolve", 1, 1, f_resolve},
7669 {"reverse", 1, 1, f_reverse},
7670 #ifdef FEAT_FLOAT
7671 {"round", 1, 1, f_round},
7672 #endif
7673 {"search", 1, 4, f_search},
7674 {"searchdecl", 1, 3, f_searchdecl},
7675 {"searchpair", 3, 7, f_searchpair},
7676 {"searchpairpos", 3, 7, f_searchpairpos},
7677 {"searchpos", 1, 4, f_searchpos},
7678 {"server2client", 2, 2, f_server2client},
7679 {"serverlist", 0, 0, f_serverlist},
7680 {"setbufvar", 3, 3, f_setbufvar},
7681 {"setcmdpos", 1, 1, f_setcmdpos},
7682 {"setline", 2, 2, f_setline},
7683 {"setloclist", 2, 3, f_setloclist},
7684 {"setmatches", 1, 1, f_setmatches},
7685 {"setpos", 2, 2, f_setpos},
7686 {"setqflist", 1, 2, f_setqflist},
7687 {"setreg", 2, 3, f_setreg},
7688 {"settabwinvar", 4, 4, f_settabwinvar},
7689 {"setwinvar", 3, 3, f_setwinvar},
7690 {"shellescape", 1, 2, f_shellescape},
7691 {"simplify", 1, 1, f_simplify},
7692 #ifdef FEAT_FLOAT
7693 {"sin", 1, 1, f_sin},
7694 #endif
7695 {"sort", 1, 2, f_sort},
7696 {"soundfold", 1, 1, f_soundfold},
7697 {"spellbadword", 0, 1, f_spellbadword},
7698 {"spellsuggest", 1, 3, f_spellsuggest},
7699 {"split", 1, 3, f_split},
7700 #ifdef FEAT_FLOAT
7701 {"sqrt", 1, 1, f_sqrt},
7702 {"str2float", 1, 1, f_str2float},
7703 #endif
7704 {"str2nr", 1, 2, f_str2nr},
7705 #ifdef HAVE_STRFTIME
7706 {"strftime", 1, 2, f_strftime},
7707 #endif
7708 {"stridx", 2, 3, f_stridx},
7709 {"string", 1, 1, f_string},
7710 {"strlen", 1, 1, f_strlen},
7711 {"strpart", 2, 3, f_strpart},
7712 {"strridx", 2, 3, f_strridx},
7713 {"strtrans", 1, 1, f_strtrans},
7714 {"submatch", 1, 1, f_submatch},
7715 {"substitute", 4, 4, f_substitute},
7716 {"synID", 3, 3, f_synID},
7717 {"synIDattr", 2, 3, f_synIDattr},
7718 {"synIDtrans", 1, 1, f_synIDtrans},
7719 {"synstack", 2, 2, f_synstack},
7720 {"system", 1, 2, f_system},
7721 {"tabpagebuflist", 0, 1, f_tabpagebuflist},
7722 {"tabpagenr", 0, 1, f_tabpagenr},
7723 {"tabpagewinnr", 1, 2, f_tabpagewinnr},
7724 {"tagfiles", 0, 0, f_tagfiles},
7725 {"taglist", 1, 1, f_taglist},
7726 {"tempname", 0, 0, f_tempname},
7727 {"test", 1, 1, f_test},
7728 {"tolower", 1, 1, f_tolower},
7729 {"toupper", 1, 1, f_toupper},
7730 {"tr", 3, 3, f_tr},
7731 #ifdef FEAT_FLOAT
7732 {"trunc", 1, 1, f_trunc},
7733 #endif
7734 {"type", 1, 1, f_type},
7735 {"values", 1, 1, f_values},
7736 {"virtcol", 1, 1, f_virtcol},
7737 {"visualmode", 0, 1, f_visualmode},
7738 {"winbufnr", 1, 1, f_winbufnr},
7739 {"wincol", 0, 0, f_wincol},
7740 {"winheight", 1, 1, f_winheight},
7741 {"winline", 0, 0, f_winline},
7742 {"winnr", 0, 1, f_winnr},
7743 {"winrestcmd", 0, 0, f_winrestcmd},
7744 {"winrestview", 1, 1, f_winrestview},
7745 {"winsaveview", 0, 0, f_winsaveview},
7746 {"winwidth", 1, 1, f_winwidth},
7747 {"writefile", 2, 3, f_writefile},
7750 #if defined(FEAT_CMDL_COMPL) || defined(PROTO)
7753 * Function given to ExpandGeneric() to obtain the list of internal
7754 * or user defined function names.
7756 char_u *
7757 get_function_name(xp, idx)
7758 expand_T *xp;
7759 int idx;
7761 static int intidx = -1;
7762 char_u *name;
7764 if (idx == 0)
7765 intidx = -1;
7766 if (intidx < 0)
7768 name = get_user_func_name(xp, idx);
7769 if (name != NULL)
7770 return name;
7772 if (++intidx < (int)(sizeof(functions) / sizeof(struct fst)))
7774 STRCPY(IObuff, functions[intidx].f_name);
7775 STRCAT(IObuff, "(");
7776 if (functions[intidx].f_max_argc == 0)
7777 STRCAT(IObuff, ")");
7778 return IObuff;
7781 return NULL;
7785 * Function given to ExpandGeneric() to obtain the list of internal or
7786 * user defined variable or function names.
7788 /*ARGSUSED*/
7789 char_u *
7790 get_expr_name(xp, idx)
7791 expand_T *xp;
7792 int idx;
7794 static int intidx = -1;
7795 char_u *name;
7797 if (idx == 0)
7798 intidx = -1;
7799 if (intidx < 0)
7801 name = get_function_name(xp, idx);
7802 if (name != NULL)
7803 return name;
7805 return get_user_var_name(xp, ++intidx);
7808 #endif /* FEAT_CMDL_COMPL */
7811 * Find internal function in table above.
7812 * Return index, or -1 if not found
7814 static int
7815 find_internal_func(name)
7816 char_u *name; /* name of the function */
7818 int first = 0;
7819 int last = (int)(sizeof(functions) / sizeof(struct fst)) - 1;
7820 int cmp;
7821 int x;
7824 * Find the function name in the table. Binary search.
7826 while (first <= last)
7828 x = first + ((unsigned)(last - first) >> 1);
7829 cmp = STRCMP(name, functions[x].f_name);
7830 if (cmp < 0)
7831 last = x - 1;
7832 else if (cmp > 0)
7833 first = x + 1;
7834 else
7835 return x;
7837 return -1;
7841 * Check if "name" is a variable of type VAR_FUNC. If so, return the function
7842 * name it contains, otherwise return "name".
7844 static char_u *
7845 deref_func_name(name, lenp)
7846 char_u *name;
7847 int *lenp;
7849 dictitem_T *v;
7850 int cc;
7852 cc = name[*lenp];
7853 name[*lenp] = NUL;
7854 v = find_var(name, NULL);
7855 name[*lenp] = cc;
7856 if (v != NULL && v->di_tv.v_type == VAR_FUNC)
7858 if (v->di_tv.vval.v_string == NULL)
7860 *lenp = 0;
7861 return (char_u *)""; /* just in case */
7863 *lenp = (int)STRLEN(v->di_tv.vval.v_string);
7864 return v->di_tv.vval.v_string;
7867 return name;
7871 * Allocate a variable for the result of a function.
7872 * Return OK or FAIL.
7874 static int
7875 get_func_tv(name, len, rettv, arg, firstline, lastline, doesrange,
7876 evaluate, selfdict)
7877 char_u *name; /* name of the function */
7878 int len; /* length of "name" */
7879 typval_T *rettv;
7880 char_u **arg; /* argument, pointing to the '(' */
7881 linenr_T firstline; /* first line of range */
7882 linenr_T lastline; /* last line of range */
7883 int *doesrange; /* return: function handled range */
7884 int evaluate;
7885 dict_T *selfdict; /* Dictionary for "self" */
7887 char_u *argp;
7888 int ret = OK;
7889 typval_T argvars[MAX_FUNC_ARGS + 1]; /* vars for arguments */
7890 int argcount = 0; /* number of arguments found */
7893 * Get the arguments.
7895 argp = *arg;
7896 while (argcount < MAX_FUNC_ARGS)
7898 argp = skipwhite(argp + 1); /* skip the '(' or ',' */
7899 if (*argp == ')' || *argp == ',' || *argp == NUL)
7900 break;
7901 if (eval1(&argp, &argvars[argcount], evaluate) == FAIL)
7903 ret = FAIL;
7904 break;
7906 ++argcount;
7907 if (*argp != ',')
7908 break;
7910 if (*argp == ')')
7911 ++argp;
7912 else
7913 ret = FAIL;
7915 if (ret == OK)
7916 ret = call_func(name, len, rettv, argcount, argvars,
7917 firstline, lastline, doesrange, evaluate, selfdict);
7918 else if (!aborting())
7920 if (argcount == MAX_FUNC_ARGS)
7921 emsg_funcname(N_("E740: Too many arguments for function %s"), name);
7922 else
7923 emsg_funcname(N_("E116: Invalid arguments for function %s"), name);
7926 while (--argcount >= 0)
7927 clear_tv(&argvars[argcount]);
7929 *arg = skipwhite(argp);
7930 return ret;
7935 * Call a function with its resolved parameters
7936 * Return OK when the function can't be called, FAIL otherwise.
7937 * Also returns OK when an error was encountered while executing the function.
7939 static int
7940 call_func(name, len, rettv, argcount, argvars, firstline, lastline,
7941 doesrange, evaluate, selfdict)
7942 char_u *name; /* name of the function */
7943 int len; /* length of "name" */
7944 typval_T *rettv; /* return value goes here */
7945 int argcount; /* number of "argvars" */
7946 typval_T *argvars; /* vars for arguments, must have "argcount"
7947 PLUS ONE elements! */
7948 linenr_T firstline; /* first line of range */
7949 linenr_T lastline; /* last line of range */
7950 int *doesrange; /* return: function handled range */
7951 int evaluate;
7952 dict_T *selfdict; /* Dictionary for "self" */
7954 int ret = FAIL;
7955 #define ERROR_UNKNOWN 0
7956 #define ERROR_TOOMANY 1
7957 #define ERROR_TOOFEW 2
7958 #define ERROR_SCRIPT 3
7959 #define ERROR_DICT 4
7960 #define ERROR_NONE 5
7961 #define ERROR_OTHER 6
7962 int error = ERROR_NONE;
7963 int i;
7964 int llen;
7965 ufunc_T *fp;
7966 int cc;
7967 #define FLEN_FIXED 40
7968 char_u fname_buf[FLEN_FIXED + 1];
7969 char_u *fname;
7972 * In a script change <SID>name() and s:name() to K_SNR 123_name().
7973 * Change <SNR>123_name() to K_SNR 123_name().
7974 * Use fname_buf[] when it fits, otherwise allocate memory (slow).
7976 cc = name[len];
7977 name[len] = NUL;
7978 llen = eval_fname_script(name);
7979 if (llen > 0)
7981 fname_buf[0] = K_SPECIAL;
7982 fname_buf[1] = KS_EXTRA;
7983 fname_buf[2] = (int)KE_SNR;
7984 i = 3;
7985 if (eval_fname_sid(name)) /* "<SID>" or "s:" */
7987 if (current_SID <= 0)
7988 error = ERROR_SCRIPT;
7989 else
7991 sprintf((char *)fname_buf + 3, "%ld_", (long)current_SID);
7992 i = (int)STRLEN(fname_buf);
7995 if (i + STRLEN(name + llen) < FLEN_FIXED)
7997 STRCPY(fname_buf + i, name + llen);
7998 fname = fname_buf;
8000 else
8002 fname = alloc((unsigned)(i + STRLEN(name + llen) + 1));
8003 if (fname == NULL)
8004 error = ERROR_OTHER;
8005 else
8007 mch_memmove(fname, fname_buf, (size_t)i);
8008 STRCPY(fname + i, name + llen);
8012 else
8013 fname = name;
8015 *doesrange = FALSE;
8018 /* execute the function if no errors detected and executing */
8019 if (evaluate && error == ERROR_NONE)
8021 rettv->v_type = VAR_NUMBER; /* default is number rettv */
8022 error = ERROR_UNKNOWN;
8024 if (!builtin_function(fname))
8027 * User defined function.
8029 fp = find_func(fname);
8031 #ifdef FEAT_AUTOCMD
8032 /* Trigger FuncUndefined event, may load the function. */
8033 if (fp == NULL
8034 && apply_autocmds(EVENT_FUNCUNDEFINED,
8035 fname, fname, TRUE, NULL)
8036 && !aborting())
8038 /* executed an autocommand, search for the function again */
8039 fp = find_func(fname);
8041 #endif
8042 /* Try loading a package. */
8043 if (fp == NULL && script_autoload(fname, TRUE) && !aborting())
8045 /* loaded a package, search for the function again */
8046 fp = find_func(fname);
8049 if (fp != NULL)
8051 if (fp->uf_flags & FC_RANGE)
8052 *doesrange = TRUE;
8053 if (argcount < fp->uf_args.ga_len)
8054 error = ERROR_TOOFEW;
8055 else if (!fp->uf_varargs && argcount > fp->uf_args.ga_len)
8056 error = ERROR_TOOMANY;
8057 else if ((fp->uf_flags & FC_DICT) && selfdict == NULL)
8058 error = ERROR_DICT;
8059 else
8062 * Call the user function.
8063 * Save and restore search patterns, script variables and
8064 * redo buffer.
8066 save_search_patterns();
8067 saveRedobuff();
8068 ++fp->uf_calls;
8069 call_user_func(fp, argcount, argvars, rettv,
8070 firstline, lastline,
8071 (fp->uf_flags & FC_DICT) ? selfdict : NULL);
8072 if (--fp->uf_calls <= 0 && isdigit(*fp->uf_name)
8073 && fp->uf_refcount <= 0)
8074 /* Function was unreferenced while being used, free it
8075 * now. */
8076 func_free(fp);
8077 restoreRedobuff();
8078 restore_search_patterns();
8079 error = ERROR_NONE;
8083 else
8086 * Find the function name in the table, call its implementation.
8088 i = find_internal_func(fname);
8089 if (i >= 0)
8091 if (argcount < functions[i].f_min_argc)
8092 error = ERROR_TOOFEW;
8093 else if (argcount > functions[i].f_max_argc)
8094 error = ERROR_TOOMANY;
8095 else
8097 argvars[argcount].v_type = VAR_UNKNOWN;
8098 functions[i].f_func(argvars, rettv);
8099 error = ERROR_NONE;
8104 * The function call (or "FuncUndefined" autocommand sequence) might
8105 * have been aborted by an error, an interrupt, or an explicitly thrown
8106 * exception that has not been caught so far. This situation can be
8107 * tested for by calling aborting(). For an error in an internal
8108 * function or for the "E132" error in call_user_func(), however, the
8109 * throw point at which the "force_abort" flag (temporarily reset by
8110 * emsg()) is normally updated has not been reached yet. We need to
8111 * update that flag first to make aborting() reliable.
8113 update_force_abort();
8115 if (error == ERROR_NONE)
8116 ret = OK;
8119 * Report an error unless the argument evaluation or function call has been
8120 * cancelled due to an aborting error, an interrupt, or an exception.
8122 if (!aborting())
8124 switch (error)
8126 case ERROR_UNKNOWN:
8127 emsg_funcname(N_("E117: Unknown function: %s"), name);
8128 break;
8129 case ERROR_TOOMANY:
8130 emsg_funcname(e_toomanyarg, name);
8131 break;
8132 case ERROR_TOOFEW:
8133 emsg_funcname(N_("E119: Not enough arguments for function: %s"),
8134 name);
8135 break;
8136 case ERROR_SCRIPT:
8137 emsg_funcname(N_("E120: Using <SID> not in a script context: %s"),
8138 name);
8139 break;
8140 case ERROR_DICT:
8141 emsg_funcname(N_("E725: Calling dict function without Dictionary: %s"),
8142 name);
8143 break;
8147 name[len] = cc;
8148 if (fname != name && fname != fname_buf)
8149 vim_free(fname);
8151 return ret;
8155 * Give an error message with a function name. Handle <SNR> things.
8156 * "ermsg" is to be passed without translation, use N_() instead of _().
8158 static void
8159 emsg_funcname(ermsg, name)
8160 char *ermsg;
8161 char_u *name;
8163 char_u *p;
8165 if (*name == K_SPECIAL)
8166 p = concat_str((char_u *)"<SNR>", name + 3);
8167 else
8168 p = name;
8169 EMSG2(_(ermsg), p);
8170 if (p != name)
8171 vim_free(p);
8175 * Return TRUE for a non-zero Number and a non-empty String.
8177 static int
8178 non_zero_arg(argvars)
8179 typval_T *argvars;
8181 return ((argvars[0].v_type == VAR_NUMBER
8182 && argvars[0].vval.v_number != 0)
8183 || (argvars[0].v_type == VAR_STRING
8184 && argvars[0].vval.v_string != NULL
8185 && *argvars[0].vval.v_string != NUL));
8188 /*********************************************
8189 * Implementation of the built-in functions
8192 #ifdef FEAT_FLOAT
8194 * "abs(expr)" function
8196 static void
8197 f_abs(argvars, rettv)
8198 typval_T *argvars;
8199 typval_T *rettv;
8201 if (argvars[0].v_type == VAR_FLOAT)
8203 rettv->v_type = VAR_FLOAT;
8204 rettv->vval.v_float = fabs(argvars[0].vval.v_float);
8206 else
8208 varnumber_T n;
8209 int error = FALSE;
8211 n = get_tv_number_chk(&argvars[0], &error);
8212 if (error)
8213 rettv->vval.v_number = -1;
8214 else if (n > 0)
8215 rettv->vval.v_number = n;
8216 else
8217 rettv->vval.v_number = -n;
8220 #endif
8223 * "add(list, item)" function
8225 static void
8226 f_add(argvars, rettv)
8227 typval_T *argvars;
8228 typval_T *rettv;
8230 list_T *l;
8232 rettv->vval.v_number = 1; /* Default: Failed */
8233 if (argvars[0].v_type == VAR_LIST)
8235 if ((l = argvars[0].vval.v_list) != NULL
8236 && !tv_check_lock(l->lv_lock, (char_u *)"add()")
8237 && list_append_tv(l, &argvars[1]) == OK)
8238 copy_tv(&argvars[0], rettv);
8240 else
8241 EMSG(_(e_listreq));
8245 * "append(lnum, string/list)" function
8247 static void
8248 f_append(argvars, rettv)
8249 typval_T *argvars;
8250 typval_T *rettv;
8252 long lnum;
8253 char_u *line;
8254 list_T *l = NULL;
8255 listitem_T *li = NULL;
8256 typval_T *tv;
8257 long added = 0;
8259 lnum = get_tv_lnum(argvars);
8260 if (lnum >= 0
8261 && lnum <= curbuf->b_ml.ml_line_count
8262 && u_save(lnum, lnum + 1) == OK)
8264 if (argvars[1].v_type == VAR_LIST)
8266 l = argvars[1].vval.v_list;
8267 if (l == NULL)
8268 return;
8269 li = l->lv_first;
8271 rettv->vval.v_number = 0; /* Default: Success */
8272 for (;;)
8274 if (l == NULL)
8275 tv = &argvars[1]; /* append a string */
8276 else if (li == NULL)
8277 break; /* end of list */
8278 else
8279 tv = &li->li_tv; /* append item from list */
8280 line = get_tv_string_chk(tv);
8281 if (line == NULL) /* type error */
8283 rettv->vval.v_number = 1; /* Failed */
8284 break;
8286 ml_append(lnum + added, line, (colnr_T)0, FALSE);
8287 ++added;
8288 if (l == NULL)
8289 break;
8290 li = li->li_next;
8293 appended_lines_mark(lnum, added);
8294 if (curwin->w_cursor.lnum > lnum)
8295 curwin->w_cursor.lnum += added;
8297 else
8298 rettv->vval.v_number = 1; /* Failed */
8302 * "argc()" function
8304 /* ARGSUSED */
8305 static void
8306 f_argc(argvars, rettv)
8307 typval_T *argvars;
8308 typval_T *rettv;
8310 rettv->vval.v_number = ARGCOUNT;
8314 * "argidx()" function
8316 /* ARGSUSED */
8317 static void
8318 f_argidx(argvars, rettv)
8319 typval_T *argvars;
8320 typval_T *rettv;
8322 rettv->vval.v_number = curwin->w_arg_idx;
8326 * "argv(nr)" function
8328 static void
8329 f_argv(argvars, rettv)
8330 typval_T *argvars;
8331 typval_T *rettv;
8333 int idx;
8335 if (argvars[0].v_type != VAR_UNKNOWN)
8337 idx = get_tv_number_chk(&argvars[0], NULL);
8338 if (idx >= 0 && idx < ARGCOUNT)
8339 rettv->vval.v_string = vim_strsave(alist_name(&ARGLIST[idx]));
8340 else
8341 rettv->vval.v_string = NULL;
8342 rettv->v_type = VAR_STRING;
8344 else if (rettv_list_alloc(rettv) == OK)
8345 for (idx = 0; idx < ARGCOUNT; ++idx)
8346 list_append_string(rettv->vval.v_list,
8347 alist_name(&ARGLIST[idx]), -1);
8350 #ifdef FEAT_FLOAT
8351 static int get_float_arg __ARGS((typval_T *argvars, float_T *f));
8354 * Get the float value of "argvars[0]" into "f".
8355 * Returns FAIL when the argument is not a Number or Float.
8357 static int
8358 get_float_arg(argvars, f)
8359 typval_T *argvars;
8360 float_T *f;
8362 if (argvars[0].v_type == VAR_FLOAT)
8364 *f = argvars[0].vval.v_float;
8365 return OK;
8367 if (argvars[0].v_type == VAR_NUMBER)
8369 *f = (float_T)argvars[0].vval.v_number;
8370 return OK;
8372 EMSG(_("E808: Number or Float required"));
8373 return FAIL;
8377 * "atan()" function
8379 static void
8380 f_atan(argvars, rettv)
8381 typval_T *argvars;
8382 typval_T *rettv;
8384 float_T f;
8386 rettv->v_type = VAR_FLOAT;
8387 if (get_float_arg(argvars, &f) == OK)
8388 rettv->vval.v_float = atan(f);
8389 else
8390 rettv->vval.v_float = 0.0;
8392 #endif
8395 * "browse(save, title, initdir, default)" function
8397 /* ARGSUSED */
8398 static void
8399 f_browse(argvars, rettv)
8400 typval_T *argvars;
8401 typval_T *rettv;
8403 #ifdef FEAT_BROWSE
8404 int save;
8405 char_u *title;
8406 char_u *initdir;
8407 char_u *defname;
8408 char_u buf[NUMBUFLEN];
8409 char_u buf2[NUMBUFLEN];
8410 int error = FALSE;
8412 save = get_tv_number_chk(&argvars[0], &error);
8413 title = get_tv_string_chk(&argvars[1]);
8414 initdir = get_tv_string_buf_chk(&argvars[2], buf);
8415 defname = get_tv_string_buf_chk(&argvars[3], buf2);
8417 if (error || title == NULL || initdir == NULL || defname == NULL)
8418 rettv->vval.v_string = NULL;
8419 else
8420 rettv->vval.v_string =
8421 do_browse(save ? BROWSE_SAVE : 0,
8422 title, defname, NULL, initdir, NULL, curbuf);
8423 #else
8424 rettv->vval.v_string = NULL;
8425 #endif
8426 rettv->v_type = VAR_STRING;
8430 * "browsedir(title, initdir)" function
8432 /* ARGSUSED */
8433 static void
8434 f_browsedir(argvars, rettv)
8435 typval_T *argvars;
8436 typval_T *rettv;
8438 #ifdef FEAT_BROWSE
8439 char_u *title;
8440 char_u *initdir;
8441 char_u buf[NUMBUFLEN];
8443 title = get_tv_string_chk(&argvars[0]);
8444 initdir = get_tv_string_buf_chk(&argvars[1], buf);
8446 if (title == NULL || initdir == NULL)
8447 rettv->vval.v_string = NULL;
8448 else
8449 rettv->vval.v_string = do_browse(BROWSE_DIR,
8450 title, NULL, NULL, initdir, NULL, curbuf);
8451 #else
8452 rettv->vval.v_string = NULL;
8453 #endif
8454 rettv->v_type = VAR_STRING;
8457 static buf_T *find_buffer __ARGS((typval_T *avar));
8460 * Find a buffer by number or exact name.
8462 static buf_T *
8463 find_buffer(avar)
8464 typval_T *avar;
8466 buf_T *buf = NULL;
8468 if (avar->v_type == VAR_NUMBER)
8469 buf = buflist_findnr((int)avar->vval.v_number);
8470 else if (avar->v_type == VAR_STRING && avar->vval.v_string != NULL)
8472 buf = buflist_findname_exp(avar->vval.v_string);
8473 if (buf == NULL)
8475 /* No full path name match, try a match with a URL or a "nofile"
8476 * buffer, these don't use the full path. */
8477 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
8478 if (buf->b_fname != NULL
8479 && (path_with_url(buf->b_fname)
8480 #ifdef FEAT_QUICKFIX
8481 || bt_nofile(buf)
8482 #endif
8484 && STRCMP(buf->b_fname, avar->vval.v_string) == 0)
8485 break;
8488 return buf;
8492 * "bufexists(expr)" function
8494 static void
8495 f_bufexists(argvars, rettv)
8496 typval_T *argvars;
8497 typval_T *rettv;
8499 rettv->vval.v_number = (find_buffer(&argvars[0]) != NULL);
8503 * "buflisted(expr)" function
8505 static void
8506 f_buflisted(argvars, rettv)
8507 typval_T *argvars;
8508 typval_T *rettv;
8510 buf_T *buf;
8512 buf = find_buffer(&argvars[0]);
8513 rettv->vval.v_number = (buf != NULL && buf->b_p_bl);
8517 * "bufloaded(expr)" function
8519 static void
8520 f_bufloaded(argvars, rettv)
8521 typval_T *argvars;
8522 typval_T *rettv;
8524 buf_T *buf;
8526 buf = find_buffer(&argvars[0]);
8527 rettv->vval.v_number = (buf != NULL && buf->b_ml.ml_mfp != NULL);
8530 static buf_T *get_buf_tv __ARGS((typval_T *tv));
8533 * Get buffer by number or pattern.
8535 static buf_T *
8536 get_buf_tv(tv)
8537 typval_T *tv;
8539 char_u *name = tv->vval.v_string;
8540 int save_magic;
8541 char_u *save_cpo;
8542 buf_T *buf;
8544 if (tv->v_type == VAR_NUMBER)
8545 return buflist_findnr((int)tv->vval.v_number);
8546 if (tv->v_type != VAR_STRING)
8547 return NULL;
8548 if (name == NULL || *name == NUL)
8549 return curbuf;
8550 if (name[0] == '$' && name[1] == NUL)
8551 return lastbuf;
8553 /* Ignore 'magic' and 'cpoptions' here to make scripts portable */
8554 save_magic = p_magic;
8555 p_magic = TRUE;
8556 save_cpo = p_cpo;
8557 p_cpo = (char_u *)"";
8559 buf = buflist_findnr(buflist_findpat(name, name + STRLEN(name),
8560 TRUE, FALSE));
8562 p_magic = save_magic;
8563 p_cpo = save_cpo;
8565 /* If not found, try expanding the name, like done for bufexists(). */
8566 if (buf == NULL)
8567 buf = find_buffer(tv);
8569 return buf;
8573 * "bufname(expr)" function
8575 static void
8576 f_bufname(argvars, rettv)
8577 typval_T *argvars;
8578 typval_T *rettv;
8580 buf_T *buf;
8582 (void)get_tv_number(&argvars[0]); /* issue errmsg if type error */
8583 ++emsg_off;
8584 buf = get_buf_tv(&argvars[0]);
8585 rettv->v_type = VAR_STRING;
8586 if (buf != NULL && buf->b_fname != NULL)
8587 rettv->vval.v_string = vim_strsave(buf->b_fname);
8588 else
8589 rettv->vval.v_string = NULL;
8590 --emsg_off;
8594 * "bufnr(expr)" function
8596 static void
8597 f_bufnr(argvars, rettv)
8598 typval_T *argvars;
8599 typval_T *rettv;
8601 buf_T *buf;
8602 int error = FALSE;
8603 char_u *name;
8605 (void)get_tv_number(&argvars[0]); /* issue errmsg if type error */
8606 ++emsg_off;
8607 buf = get_buf_tv(&argvars[0]);
8608 --emsg_off;
8610 /* If the buffer isn't found and the second argument is not zero create a
8611 * new buffer. */
8612 if (buf == NULL
8613 && argvars[1].v_type != VAR_UNKNOWN
8614 && get_tv_number_chk(&argvars[1], &error) != 0
8615 && !error
8616 && (name = get_tv_string_chk(&argvars[0])) != NULL
8617 && !error)
8618 buf = buflist_new(name, NULL, (linenr_T)1, 0);
8620 if (buf != NULL)
8621 rettv->vval.v_number = buf->b_fnum;
8622 else
8623 rettv->vval.v_number = -1;
8627 * "bufwinnr(nr)" function
8629 static void
8630 f_bufwinnr(argvars, rettv)
8631 typval_T *argvars;
8632 typval_T *rettv;
8634 #ifdef FEAT_WINDOWS
8635 win_T *wp;
8636 int winnr = 0;
8637 #endif
8638 buf_T *buf;
8640 (void)get_tv_number(&argvars[0]); /* issue errmsg if type error */
8641 ++emsg_off;
8642 buf = get_buf_tv(&argvars[0]);
8643 #ifdef FEAT_WINDOWS
8644 for (wp = firstwin; wp; wp = wp->w_next)
8646 ++winnr;
8647 if (wp->w_buffer == buf)
8648 break;
8650 rettv->vval.v_number = (wp != NULL ? winnr : -1);
8651 #else
8652 rettv->vval.v_number = (curwin->w_buffer == buf ? 1 : -1);
8653 #endif
8654 --emsg_off;
8658 * "byte2line(byte)" function
8660 /*ARGSUSED*/
8661 static void
8662 f_byte2line(argvars, rettv)
8663 typval_T *argvars;
8664 typval_T *rettv;
8666 #ifndef FEAT_BYTEOFF
8667 rettv->vval.v_number = -1;
8668 #else
8669 long boff = 0;
8671 boff = get_tv_number(&argvars[0]) - 1; /* boff gets -1 on type error */
8672 if (boff < 0)
8673 rettv->vval.v_number = -1;
8674 else
8675 rettv->vval.v_number = ml_find_line_or_offset(curbuf,
8676 (linenr_T)0, &boff);
8677 #endif
8681 * "byteidx()" function
8683 /*ARGSUSED*/
8684 static void
8685 f_byteidx(argvars, rettv)
8686 typval_T *argvars;
8687 typval_T *rettv;
8689 #ifdef FEAT_MBYTE
8690 char_u *t;
8691 #endif
8692 char_u *str;
8693 long idx;
8695 str = get_tv_string_chk(&argvars[0]);
8696 idx = get_tv_number_chk(&argvars[1], NULL);
8697 rettv->vval.v_number = -1;
8698 if (str == NULL || idx < 0)
8699 return;
8701 #ifdef FEAT_MBYTE
8702 t = str;
8703 for ( ; idx > 0; idx--)
8705 if (*t == NUL) /* EOL reached */
8706 return;
8707 t += (*mb_ptr2len)(t);
8709 rettv->vval.v_number = (varnumber_T)(t - str);
8710 #else
8711 if ((size_t)idx <= STRLEN(str))
8712 rettv->vval.v_number = idx;
8713 #endif
8717 * "call(func, arglist)" function
8719 static void
8720 f_call(argvars, rettv)
8721 typval_T *argvars;
8722 typval_T *rettv;
8724 char_u *func;
8725 typval_T argv[MAX_FUNC_ARGS + 1];
8726 int argc = 0;
8727 listitem_T *item;
8728 int dummy;
8729 dict_T *selfdict = NULL;
8731 rettv->vval.v_number = 0;
8732 if (argvars[1].v_type != VAR_LIST)
8734 EMSG(_(e_listreq));
8735 return;
8737 if (argvars[1].vval.v_list == NULL)
8738 return;
8740 if (argvars[0].v_type == VAR_FUNC)
8741 func = argvars[0].vval.v_string;
8742 else
8743 func = get_tv_string(&argvars[0]);
8744 if (*func == NUL)
8745 return; /* type error or empty name */
8747 if (argvars[2].v_type != VAR_UNKNOWN)
8749 if (argvars[2].v_type != VAR_DICT)
8751 EMSG(_(e_dictreq));
8752 return;
8754 selfdict = argvars[2].vval.v_dict;
8757 for (item = argvars[1].vval.v_list->lv_first; item != NULL;
8758 item = item->li_next)
8760 if (argc == MAX_FUNC_ARGS)
8762 EMSG(_("E699: Too many arguments"));
8763 break;
8765 /* Make a copy of each argument. This is needed to be able to set
8766 * v_lock to VAR_FIXED in the copy without changing the original list.
8768 copy_tv(&item->li_tv, &argv[argc++]);
8771 if (item == NULL)
8772 (void)call_func(func, (int)STRLEN(func), rettv, argc, argv,
8773 curwin->w_cursor.lnum, curwin->w_cursor.lnum,
8774 &dummy, TRUE, selfdict);
8776 /* Free the arguments. */
8777 while (argc > 0)
8778 clear_tv(&argv[--argc]);
8781 #ifdef FEAT_FLOAT
8783 * "ceil({float})" function
8785 static void
8786 f_ceil(argvars, rettv)
8787 typval_T *argvars;
8788 typval_T *rettv;
8790 float_T f;
8792 rettv->v_type = VAR_FLOAT;
8793 if (get_float_arg(argvars, &f) == OK)
8794 rettv->vval.v_float = ceil(f);
8795 else
8796 rettv->vval.v_float = 0.0;
8798 #endif
8801 * "changenr()" function
8803 /*ARGSUSED*/
8804 static void
8805 f_changenr(argvars, rettv)
8806 typval_T *argvars;
8807 typval_T *rettv;
8809 rettv->vval.v_number = curbuf->b_u_seq_cur;
8813 * "char2nr(string)" function
8815 static void
8816 f_char2nr(argvars, rettv)
8817 typval_T *argvars;
8818 typval_T *rettv;
8820 #ifdef FEAT_MBYTE
8821 if (has_mbyte)
8822 rettv->vval.v_number = (*mb_ptr2char)(get_tv_string(&argvars[0]));
8823 else
8824 #endif
8825 rettv->vval.v_number = get_tv_string(&argvars[0])[0];
8829 * "cindent(lnum)" function
8831 static void
8832 f_cindent(argvars, rettv)
8833 typval_T *argvars;
8834 typval_T *rettv;
8836 #ifdef FEAT_CINDENT
8837 pos_T pos;
8838 linenr_T lnum;
8840 pos = curwin->w_cursor;
8841 lnum = get_tv_lnum(argvars);
8842 if (lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count)
8844 curwin->w_cursor.lnum = lnum;
8845 rettv->vval.v_number = get_c_indent();
8846 curwin->w_cursor = pos;
8848 else
8849 #endif
8850 rettv->vval.v_number = -1;
8854 * "clearmatches()" function
8856 /*ARGSUSED*/
8857 static void
8858 f_clearmatches(argvars, rettv)
8859 typval_T *argvars;
8860 typval_T *rettv;
8862 #ifdef FEAT_SEARCH_EXTRA
8863 clear_matches(curwin);
8864 #endif
8868 * "col(string)" function
8870 static void
8871 f_col(argvars, rettv)
8872 typval_T *argvars;
8873 typval_T *rettv;
8875 colnr_T col = 0;
8876 pos_T *fp;
8877 int fnum = curbuf->b_fnum;
8879 fp = var2fpos(&argvars[0], FALSE, &fnum);
8880 if (fp != NULL && fnum == curbuf->b_fnum)
8882 if (fp->col == MAXCOL)
8884 /* '> can be MAXCOL, get the length of the line then */
8885 if (fp->lnum <= curbuf->b_ml.ml_line_count)
8886 col = (colnr_T)STRLEN(ml_get(fp->lnum)) + 1;
8887 else
8888 col = MAXCOL;
8890 else
8892 col = fp->col + 1;
8893 #ifdef FEAT_VIRTUALEDIT
8894 /* col(".") when the cursor is on the NUL at the end of the line
8895 * because of "coladd" can be seen as an extra column. */
8896 if (virtual_active() && fp == &curwin->w_cursor)
8898 char_u *p = ml_get_cursor();
8900 if (curwin->w_cursor.coladd >= (colnr_T)chartabsize(p,
8901 curwin->w_virtcol - curwin->w_cursor.coladd))
8903 # ifdef FEAT_MBYTE
8904 int l;
8906 if (*p != NUL && p[(l = (*mb_ptr2len)(p))] == NUL)
8907 col += l;
8908 # else
8909 if (*p != NUL && p[1] == NUL)
8910 ++col;
8911 # endif
8914 #endif
8917 rettv->vval.v_number = col;
8920 #if defined(FEAT_INS_EXPAND)
8922 * "complete()" function
8924 /*ARGSUSED*/
8925 static void
8926 f_complete(argvars, rettv)
8927 typval_T *argvars;
8928 typval_T *rettv;
8930 int startcol;
8932 if ((State & INSERT) == 0)
8934 EMSG(_("E785: complete() can only be used in Insert mode"));
8935 return;
8938 /* Check for undo allowed here, because if something was already inserted
8939 * the line was already saved for undo and this check isn't done. */
8940 if (!undo_allowed())
8941 return;
8943 if (argvars[1].v_type != VAR_LIST || argvars[1].vval.v_list == NULL)
8945 EMSG(_(e_invarg));
8946 return;
8949 startcol = get_tv_number_chk(&argvars[0], NULL);
8950 if (startcol <= 0)
8951 return;
8953 set_completion(startcol - 1, argvars[1].vval.v_list);
8957 * "complete_add()" function
8959 /*ARGSUSED*/
8960 static void
8961 f_complete_add(argvars, rettv)
8962 typval_T *argvars;
8963 typval_T *rettv;
8965 rettv->vval.v_number = ins_compl_add_tv(&argvars[0], 0);
8969 * "complete_check()" function
8971 /*ARGSUSED*/
8972 static void
8973 f_complete_check(argvars, rettv)
8974 typval_T *argvars;
8975 typval_T *rettv;
8977 int saved = RedrawingDisabled;
8979 RedrawingDisabled = 0;
8980 ins_compl_check_keys(0);
8981 rettv->vval.v_number = compl_interrupted;
8982 RedrawingDisabled = saved;
8984 #endif
8987 * "confirm(message, buttons[, default [, type]])" function
8989 /*ARGSUSED*/
8990 static void
8991 f_confirm(argvars, rettv)
8992 typval_T *argvars;
8993 typval_T *rettv;
8995 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
8996 char_u *message;
8997 char_u *buttons = NULL;
8998 char_u buf[NUMBUFLEN];
8999 char_u buf2[NUMBUFLEN];
9000 int def = 1;
9001 int type = VIM_GENERIC;
9002 char_u *typestr;
9003 int error = FALSE;
9005 message = get_tv_string_chk(&argvars[0]);
9006 if (message == NULL)
9007 error = TRUE;
9008 if (argvars[1].v_type != VAR_UNKNOWN)
9010 buttons = get_tv_string_buf_chk(&argvars[1], buf);
9011 if (buttons == NULL)
9012 error = TRUE;
9013 if (argvars[2].v_type != VAR_UNKNOWN)
9015 def = get_tv_number_chk(&argvars[2], &error);
9016 if (argvars[3].v_type != VAR_UNKNOWN)
9018 typestr = get_tv_string_buf_chk(&argvars[3], buf2);
9019 if (typestr == NULL)
9020 error = TRUE;
9021 else
9023 switch (TOUPPER_ASC(*typestr))
9025 case 'E': type = VIM_ERROR; break;
9026 case 'Q': type = VIM_QUESTION; break;
9027 case 'I': type = VIM_INFO; break;
9028 case 'W': type = VIM_WARNING; break;
9029 case 'G': type = VIM_GENERIC; break;
9036 if (buttons == NULL || *buttons == NUL)
9037 buttons = (char_u *)_("&Ok");
9039 if (error)
9040 rettv->vval.v_number = 0;
9041 else
9042 rettv->vval.v_number = do_dialog(type, NULL, message, buttons,
9043 def, NULL);
9044 #else
9045 rettv->vval.v_number = 0;
9046 #endif
9050 * "copy()" function
9052 static void
9053 f_copy(argvars, rettv)
9054 typval_T *argvars;
9055 typval_T *rettv;
9057 item_copy(&argvars[0], rettv, FALSE, 0);
9060 #ifdef FEAT_FLOAT
9062 * "cos()" function
9064 static void
9065 f_cos(argvars, rettv)
9066 typval_T *argvars;
9067 typval_T *rettv;
9069 float_T f;
9071 rettv->v_type = VAR_FLOAT;
9072 if (get_float_arg(argvars, &f) == OK)
9073 rettv->vval.v_float = cos(f);
9074 else
9075 rettv->vval.v_float = 0.0;
9077 #endif
9080 * "count()" function
9082 static void
9083 f_count(argvars, rettv)
9084 typval_T *argvars;
9085 typval_T *rettv;
9087 long n = 0;
9088 int ic = FALSE;
9090 if (argvars[0].v_type == VAR_LIST)
9092 listitem_T *li;
9093 list_T *l;
9094 long idx;
9096 if ((l = argvars[0].vval.v_list) != NULL)
9098 li = l->lv_first;
9099 if (argvars[2].v_type != VAR_UNKNOWN)
9101 int error = FALSE;
9103 ic = get_tv_number_chk(&argvars[2], &error);
9104 if (argvars[3].v_type != VAR_UNKNOWN)
9106 idx = get_tv_number_chk(&argvars[3], &error);
9107 if (!error)
9109 li = list_find(l, idx);
9110 if (li == NULL)
9111 EMSGN(_(e_listidx), idx);
9114 if (error)
9115 li = NULL;
9118 for ( ; li != NULL; li = li->li_next)
9119 if (tv_equal(&li->li_tv, &argvars[1], ic))
9120 ++n;
9123 else if (argvars[0].v_type == VAR_DICT)
9125 int todo;
9126 dict_T *d;
9127 hashitem_T *hi;
9129 if ((d = argvars[0].vval.v_dict) != NULL)
9131 int error = FALSE;
9133 if (argvars[2].v_type != VAR_UNKNOWN)
9135 ic = get_tv_number_chk(&argvars[2], &error);
9136 if (argvars[3].v_type != VAR_UNKNOWN)
9137 EMSG(_(e_invarg));
9140 todo = error ? 0 : (int)d->dv_hashtab.ht_used;
9141 for (hi = d->dv_hashtab.ht_array; todo > 0; ++hi)
9143 if (!HASHITEM_EMPTY(hi))
9145 --todo;
9146 if (tv_equal(&HI2DI(hi)->di_tv, &argvars[1], ic))
9147 ++n;
9152 else
9153 EMSG2(_(e_listdictarg), "count()");
9154 rettv->vval.v_number = n;
9158 * "cscope_connection([{num} , {dbpath} [, {prepend}]])" function
9160 * Checks the existence of a cscope connection.
9162 /*ARGSUSED*/
9163 static void
9164 f_cscope_connection(argvars, rettv)
9165 typval_T *argvars;
9166 typval_T *rettv;
9168 #ifdef FEAT_CSCOPE
9169 int num = 0;
9170 char_u *dbpath = NULL;
9171 char_u *prepend = NULL;
9172 char_u buf[NUMBUFLEN];
9174 if (argvars[0].v_type != VAR_UNKNOWN
9175 && argvars[1].v_type != VAR_UNKNOWN)
9177 num = (int)get_tv_number(&argvars[0]);
9178 dbpath = get_tv_string(&argvars[1]);
9179 if (argvars[2].v_type != VAR_UNKNOWN)
9180 prepend = get_tv_string_buf(&argvars[2], buf);
9183 rettv->vval.v_number = cs_connection(num, dbpath, prepend);
9184 #else
9185 rettv->vval.v_number = 0;
9186 #endif
9190 * "cursor(lnum, col)" function
9192 * Moves the cursor to the specified line and column
9194 /*ARGSUSED*/
9195 static void
9196 f_cursor(argvars, rettv)
9197 typval_T *argvars;
9198 typval_T *rettv;
9200 long line, col;
9201 #ifdef FEAT_VIRTUALEDIT
9202 long coladd = 0;
9203 #endif
9205 if (argvars[1].v_type == VAR_UNKNOWN)
9207 pos_T pos;
9209 if (list2fpos(argvars, &pos, NULL) == FAIL)
9210 return;
9211 line = pos.lnum;
9212 col = pos.col;
9213 #ifdef FEAT_VIRTUALEDIT
9214 coladd = pos.coladd;
9215 #endif
9217 else
9219 line = get_tv_lnum(argvars);
9220 col = get_tv_number_chk(&argvars[1], NULL);
9221 #ifdef FEAT_VIRTUALEDIT
9222 if (argvars[2].v_type != VAR_UNKNOWN)
9223 coladd = get_tv_number_chk(&argvars[2], NULL);
9224 #endif
9226 if (line < 0 || col < 0
9227 #ifdef FEAT_VIRTUALEDIT
9228 || coladd < 0
9229 #endif
9231 return; /* type error; errmsg already given */
9232 if (line > 0)
9233 curwin->w_cursor.lnum = line;
9234 if (col > 0)
9235 curwin->w_cursor.col = col - 1;
9236 #ifdef FEAT_VIRTUALEDIT
9237 curwin->w_cursor.coladd = coladd;
9238 #endif
9240 /* Make sure the cursor is in a valid position. */
9241 check_cursor();
9242 #ifdef FEAT_MBYTE
9243 /* Correct cursor for multi-byte character. */
9244 if (has_mbyte)
9245 mb_adjust_cursor();
9246 #endif
9248 curwin->w_set_curswant = TRUE;
9252 * "deepcopy()" function
9254 static void
9255 f_deepcopy(argvars, rettv)
9256 typval_T *argvars;
9257 typval_T *rettv;
9259 int noref = 0;
9261 if (argvars[1].v_type != VAR_UNKNOWN)
9262 noref = get_tv_number_chk(&argvars[1], NULL);
9263 if (noref < 0 || noref > 1)
9264 EMSG(_(e_invarg));
9265 else
9266 item_copy(&argvars[0], rettv, TRUE, noref == 0 ? ++current_copyID : 0);
9270 * "delete()" function
9272 static void
9273 f_delete(argvars, rettv)
9274 typval_T *argvars;
9275 typval_T *rettv;
9277 if (check_restricted() || check_secure())
9278 rettv->vval.v_number = -1;
9279 else
9280 rettv->vval.v_number = mch_remove(get_tv_string(&argvars[0]));
9284 * "did_filetype()" function
9286 /*ARGSUSED*/
9287 static void
9288 f_did_filetype(argvars, rettv)
9289 typval_T *argvars;
9290 typval_T *rettv;
9292 #ifdef FEAT_AUTOCMD
9293 rettv->vval.v_number = did_filetype;
9294 #else
9295 rettv->vval.v_number = 0;
9296 #endif
9300 * "diff_filler()" function
9302 /*ARGSUSED*/
9303 static void
9304 f_diff_filler(argvars, rettv)
9305 typval_T *argvars;
9306 typval_T *rettv;
9308 #ifdef FEAT_DIFF
9309 rettv->vval.v_number = diff_check_fill(curwin, get_tv_lnum(argvars));
9310 #endif
9314 * "diff_hlID()" function
9316 /*ARGSUSED*/
9317 static void
9318 f_diff_hlID(argvars, rettv)
9319 typval_T *argvars;
9320 typval_T *rettv;
9322 #ifdef FEAT_DIFF
9323 linenr_T lnum = get_tv_lnum(argvars);
9324 static linenr_T prev_lnum = 0;
9325 static int changedtick = 0;
9326 static int fnum = 0;
9327 static int change_start = 0;
9328 static int change_end = 0;
9329 static hlf_T hlID = (hlf_T)0;
9330 int filler_lines;
9331 int col;
9333 if (lnum < 0) /* ignore type error in {lnum} arg */
9334 lnum = 0;
9335 if (lnum != prev_lnum
9336 || changedtick != curbuf->b_changedtick
9337 || fnum != curbuf->b_fnum)
9339 /* New line, buffer, change: need to get the values. */
9340 filler_lines = diff_check(curwin, lnum);
9341 if (filler_lines < 0)
9343 if (filler_lines == -1)
9345 change_start = MAXCOL;
9346 change_end = -1;
9347 if (diff_find_change(curwin, lnum, &change_start, &change_end))
9348 hlID = HLF_ADD; /* added line */
9349 else
9350 hlID = HLF_CHD; /* changed line */
9352 else
9353 hlID = HLF_ADD; /* added line */
9355 else
9356 hlID = (hlf_T)0;
9357 prev_lnum = lnum;
9358 changedtick = curbuf->b_changedtick;
9359 fnum = curbuf->b_fnum;
9362 if (hlID == HLF_CHD || hlID == HLF_TXD)
9364 col = get_tv_number(&argvars[1]) - 1; /* ignore type error in {col} */
9365 if (col >= change_start && col <= change_end)
9366 hlID = HLF_TXD; /* changed text */
9367 else
9368 hlID = HLF_CHD; /* changed line */
9370 rettv->vval.v_number = hlID == (hlf_T)0 ? 0 : (int)hlID;
9371 #endif
9375 * "empty({expr})" function
9377 static void
9378 f_empty(argvars, rettv)
9379 typval_T *argvars;
9380 typval_T *rettv;
9382 int n;
9384 switch (argvars[0].v_type)
9386 case VAR_STRING:
9387 case VAR_FUNC:
9388 n = argvars[0].vval.v_string == NULL
9389 || *argvars[0].vval.v_string == NUL;
9390 break;
9391 case VAR_NUMBER:
9392 n = argvars[0].vval.v_number == 0;
9393 break;
9394 #ifdef FEAT_FLOAT
9395 case VAR_FLOAT:
9396 n = argvars[0].vval.v_float == 0.0;
9397 break;
9398 #endif
9399 case VAR_LIST:
9400 n = argvars[0].vval.v_list == NULL
9401 || argvars[0].vval.v_list->lv_first == NULL;
9402 break;
9403 case VAR_DICT:
9404 n = argvars[0].vval.v_dict == NULL
9405 || argvars[0].vval.v_dict->dv_hashtab.ht_used == 0;
9406 break;
9407 default:
9408 EMSG2(_(e_intern2), "f_empty()");
9409 n = 0;
9412 rettv->vval.v_number = n;
9416 * "escape({string}, {chars})" function
9418 static void
9419 f_escape(argvars, rettv)
9420 typval_T *argvars;
9421 typval_T *rettv;
9423 char_u buf[NUMBUFLEN];
9425 rettv->vval.v_string = vim_strsave_escaped(get_tv_string(&argvars[0]),
9426 get_tv_string_buf(&argvars[1], buf));
9427 rettv->v_type = VAR_STRING;
9431 * "eval()" function
9433 /*ARGSUSED*/
9434 static void
9435 f_eval(argvars, rettv)
9436 typval_T *argvars;
9437 typval_T *rettv;
9439 char_u *s;
9441 s = get_tv_string_chk(&argvars[0]);
9442 if (s != NULL)
9443 s = skipwhite(s);
9445 if (s == NULL || eval1(&s, rettv, TRUE) == FAIL)
9447 rettv->v_type = VAR_NUMBER;
9448 rettv->vval.v_number = 0;
9450 else if (*s != NUL)
9451 EMSG(_(e_trailing));
9455 * "eventhandler()" function
9457 /*ARGSUSED*/
9458 static void
9459 f_eventhandler(argvars, rettv)
9460 typval_T *argvars;
9461 typval_T *rettv;
9463 rettv->vval.v_number = vgetc_busy;
9467 * "executable()" function
9469 static void
9470 f_executable(argvars, rettv)
9471 typval_T *argvars;
9472 typval_T *rettv;
9474 rettv->vval.v_number = mch_can_exe(get_tv_string(&argvars[0]));
9478 * "exists()" function
9480 static void
9481 f_exists(argvars, rettv)
9482 typval_T *argvars;
9483 typval_T *rettv;
9485 char_u *p;
9486 char_u *name;
9487 int n = FALSE;
9488 int len = 0;
9490 p = get_tv_string(&argvars[0]);
9491 if (*p == '$') /* environment variable */
9493 /* first try "normal" environment variables (fast) */
9494 if (mch_getenv(p + 1) != NULL)
9495 n = TRUE;
9496 else
9498 /* try expanding things like $VIM and ${HOME} */
9499 p = expand_env_save(p);
9500 if (p != NULL && *p != '$')
9501 n = TRUE;
9502 vim_free(p);
9505 else if (*p == '&' || *p == '+') /* option */
9507 n = (get_option_tv(&p, NULL, TRUE) == OK);
9508 if (*skipwhite(p) != NUL)
9509 n = FALSE; /* trailing garbage */
9511 else if (*p == '*') /* internal or user defined function */
9513 n = function_exists(p + 1);
9515 else if (*p == ':')
9517 n = cmd_exists(p + 1);
9519 else if (*p == '#')
9521 #ifdef FEAT_AUTOCMD
9522 if (p[1] == '#')
9523 n = autocmd_supported(p + 2);
9524 else
9525 n = au_exists(p + 1);
9526 #endif
9528 else /* internal variable */
9530 char_u *tofree;
9531 typval_T tv;
9533 /* get_name_len() takes care of expanding curly braces */
9534 name = p;
9535 len = get_name_len(&p, &tofree, TRUE, FALSE);
9536 if (len > 0)
9538 if (tofree != NULL)
9539 name = tofree;
9540 n = (get_var_tv(name, len, &tv, FALSE) == OK);
9541 if (n)
9543 /* handle d.key, l[idx], f(expr) */
9544 n = (handle_subscript(&p, &tv, TRUE, FALSE) == OK);
9545 if (n)
9546 clear_tv(&tv);
9549 if (*p != NUL)
9550 n = FALSE;
9552 vim_free(tofree);
9555 rettv->vval.v_number = n;
9559 * "expand()" function
9561 static void
9562 f_expand(argvars, rettv)
9563 typval_T *argvars;
9564 typval_T *rettv;
9566 char_u *s;
9567 int len;
9568 char_u *errormsg;
9569 int flags = WILD_SILENT|WILD_USE_NL|WILD_LIST_NOTFOUND;
9570 expand_T xpc;
9571 int error = FALSE;
9573 rettv->v_type = VAR_STRING;
9574 s = get_tv_string(&argvars[0]);
9575 if (*s == '%' || *s == '#' || *s == '<')
9577 ++emsg_off;
9578 rettv->vval.v_string = eval_vars(s, s, &len, NULL, &errormsg, NULL);
9579 --emsg_off;
9581 else
9583 /* When the optional second argument is non-zero, don't remove matches
9584 * for 'wildignore' and don't put matches for 'suffixes' at the end. */
9585 if (argvars[1].v_type != VAR_UNKNOWN
9586 && get_tv_number_chk(&argvars[1], &error))
9587 flags |= WILD_KEEP_ALL;
9588 if (!error)
9590 ExpandInit(&xpc);
9591 xpc.xp_context = EXPAND_FILES;
9592 rettv->vval.v_string = ExpandOne(&xpc, s, NULL, flags, WILD_ALL);
9594 else
9595 rettv->vval.v_string = NULL;
9600 * "extend(list, list [, idx])" function
9601 * "extend(dict, dict [, action])" function
9603 static void
9604 f_extend(argvars, rettv)
9605 typval_T *argvars;
9606 typval_T *rettv;
9608 rettv->vval.v_number = 0;
9609 if (argvars[0].v_type == VAR_LIST && argvars[1].v_type == VAR_LIST)
9611 list_T *l1, *l2;
9612 listitem_T *item;
9613 long before;
9614 int error = FALSE;
9616 l1 = argvars[0].vval.v_list;
9617 l2 = argvars[1].vval.v_list;
9618 if (l1 != NULL && !tv_check_lock(l1->lv_lock, (char_u *)"extend()")
9619 && l2 != NULL)
9621 if (argvars[2].v_type != VAR_UNKNOWN)
9623 before = get_tv_number_chk(&argvars[2], &error);
9624 if (error)
9625 return; /* type error; errmsg already given */
9627 if (before == l1->lv_len)
9628 item = NULL;
9629 else
9631 item = list_find(l1, before);
9632 if (item == NULL)
9634 EMSGN(_(e_listidx), before);
9635 return;
9639 else
9640 item = NULL;
9641 list_extend(l1, l2, item);
9643 copy_tv(&argvars[0], rettv);
9646 else if (argvars[0].v_type == VAR_DICT && argvars[1].v_type == VAR_DICT)
9648 dict_T *d1, *d2;
9649 dictitem_T *di1;
9650 char_u *action;
9651 int i;
9652 hashitem_T *hi2;
9653 int todo;
9655 d1 = argvars[0].vval.v_dict;
9656 d2 = argvars[1].vval.v_dict;
9657 if (d1 != NULL && !tv_check_lock(d1->dv_lock, (char_u *)"extend()")
9658 && d2 != NULL)
9660 /* Check the third argument. */
9661 if (argvars[2].v_type != VAR_UNKNOWN)
9663 static char *(av[]) = {"keep", "force", "error"};
9665 action = get_tv_string_chk(&argvars[2]);
9666 if (action == NULL)
9667 return; /* type error; errmsg already given */
9668 for (i = 0; i < 3; ++i)
9669 if (STRCMP(action, av[i]) == 0)
9670 break;
9671 if (i == 3)
9673 EMSG2(_(e_invarg2), action);
9674 return;
9677 else
9678 action = (char_u *)"force";
9680 /* Go over all entries in the second dict and add them to the
9681 * first dict. */
9682 todo = (int)d2->dv_hashtab.ht_used;
9683 for (hi2 = d2->dv_hashtab.ht_array; todo > 0; ++hi2)
9685 if (!HASHITEM_EMPTY(hi2))
9687 --todo;
9688 di1 = dict_find(d1, hi2->hi_key, -1);
9689 if (di1 == NULL)
9691 di1 = dictitem_copy(HI2DI(hi2));
9692 if (di1 != NULL && dict_add(d1, di1) == FAIL)
9693 dictitem_free(di1);
9695 else if (*action == 'e')
9697 EMSG2(_("E737: Key already exists: %s"), hi2->hi_key);
9698 break;
9700 else if (*action == 'f')
9702 clear_tv(&di1->di_tv);
9703 copy_tv(&HI2DI(hi2)->di_tv, &di1->di_tv);
9708 copy_tv(&argvars[0], rettv);
9711 else
9712 EMSG2(_(e_listdictarg), "extend()");
9716 * "feedkeys()" function
9718 /*ARGSUSED*/
9719 static void
9720 f_feedkeys(argvars, rettv)
9721 typval_T *argvars;
9722 typval_T *rettv;
9724 int remap = TRUE;
9725 char_u *keys, *flags;
9726 char_u nbuf[NUMBUFLEN];
9727 int typed = FALSE;
9728 char_u *keys_esc;
9730 /* This is not allowed in the sandbox. If the commands would still be
9731 * executed in the sandbox it would be OK, but it probably happens later,
9732 * when "sandbox" is no longer set. */
9733 if (check_secure())
9734 return;
9736 rettv->vval.v_number = 0;
9737 keys = get_tv_string(&argvars[0]);
9738 if (*keys != NUL)
9740 if (argvars[1].v_type != VAR_UNKNOWN)
9742 flags = get_tv_string_buf(&argvars[1], nbuf);
9743 for ( ; *flags != NUL; ++flags)
9745 switch (*flags)
9747 case 'n': remap = FALSE; break;
9748 case 'm': remap = TRUE; break;
9749 case 't': typed = TRUE; break;
9754 /* Need to escape K_SPECIAL and CSI before putting the string in the
9755 * typeahead buffer. */
9756 keys_esc = vim_strsave_escape_csi(keys);
9757 if (keys_esc != NULL)
9759 ins_typebuf(keys_esc, (remap ? REMAP_YES : REMAP_NONE),
9760 typebuf.tb_len, !typed, FALSE);
9761 vim_free(keys_esc);
9762 if (vgetc_busy)
9763 typebuf_was_filled = TRUE;
9769 * "filereadable()" function
9771 static void
9772 f_filereadable(argvars, rettv)
9773 typval_T *argvars;
9774 typval_T *rettv;
9776 int fd;
9777 char_u *p;
9778 int n;
9780 #ifndef O_NONBLOCK
9781 # define O_NONBLOCK 0
9782 #endif
9783 p = get_tv_string(&argvars[0]);
9784 if (*p && !mch_isdir(p) && (fd = mch_open((char *)p,
9785 O_RDONLY | O_NONBLOCK, 0)) >= 0)
9787 n = TRUE;
9788 close(fd);
9790 else
9791 n = FALSE;
9793 rettv->vval.v_number = n;
9797 * Return 0 for not writable, 1 for writable file, 2 for a dir which we have
9798 * rights to write into.
9800 static void
9801 f_filewritable(argvars, rettv)
9802 typval_T *argvars;
9803 typval_T *rettv;
9805 rettv->vval.v_number = filewritable(get_tv_string(&argvars[0]));
9808 static void findfilendir __ARGS((typval_T *argvars, typval_T *rettv, int find_what));
9810 static void
9811 findfilendir(argvars, rettv, find_what)
9812 typval_T *argvars;
9813 typval_T *rettv;
9814 int find_what;
9816 #ifdef FEAT_SEARCHPATH
9817 char_u *fname;
9818 char_u *fresult = NULL;
9819 char_u *path = *curbuf->b_p_path == NUL ? p_path : curbuf->b_p_path;
9820 char_u *p;
9821 char_u pathbuf[NUMBUFLEN];
9822 int count = 1;
9823 int first = TRUE;
9824 int error = FALSE;
9825 #endif
9827 rettv->vval.v_string = NULL;
9828 rettv->v_type = VAR_STRING;
9830 #ifdef FEAT_SEARCHPATH
9831 fname = get_tv_string(&argvars[0]);
9833 if (argvars[1].v_type != VAR_UNKNOWN)
9835 p = get_tv_string_buf_chk(&argvars[1], pathbuf);
9836 if (p == NULL)
9837 error = TRUE;
9838 else
9840 if (*p != NUL)
9841 path = p;
9843 if (argvars[2].v_type != VAR_UNKNOWN)
9844 count = get_tv_number_chk(&argvars[2], &error);
9848 if (count < 0 && rettv_list_alloc(rettv) == FAIL)
9849 error = TRUE;
9851 if (*fname != NUL && !error)
9855 if (rettv->v_type == VAR_STRING)
9856 vim_free(fresult);
9857 fresult = find_file_in_path_option(first ? fname : NULL,
9858 first ? (int)STRLEN(fname) : 0,
9859 0, first, path,
9860 find_what,
9861 curbuf->b_ffname,
9862 find_what == FINDFILE_DIR
9863 ? (char_u *)"" : curbuf->b_p_sua);
9864 first = FALSE;
9866 if (fresult != NULL && rettv->v_type == VAR_LIST)
9867 list_append_string(rettv->vval.v_list, fresult, -1);
9869 } while ((rettv->v_type == VAR_LIST || --count > 0) && fresult != NULL);
9872 if (rettv->v_type == VAR_STRING)
9873 rettv->vval.v_string = fresult;
9874 #endif
9877 static void filter_map __ARGS((typval_T *argvars, typval_T *rettv, int map));
9878 static int filter_map_one __ARGS((typval_T *tv, char_u *expr, int map, int *remp));
9881 * Implementation of map() and filter().
9883 static void
9884 filter_map(argvars, rettv, map)
9885 typval_T *argvars;
9886 typval_T *rettv;
9887 int map;
9889 char_u buf[NUMBUFLEN];
9890 char_u *expr;
9891 listitem_T *li, *nli;
9892 list_T *l = NULL;
9893 dictitem_T *di;
9894 hashtab_T *ht;
9895 hashitem_T *hi;
9896 dict_T *d = NULL;
9897 typval_T save_val;
9898 typval_T save_key;
9899 int rem;
9900 int todo;
9901 char_u *ermsg = map ? (char_u *)"map()" : (char_u *)"filter()";
9902 int save_did_emsg;
9904 rettv->vval.v_number = 0;
9905 if (argvars[0].v_type == VAR_LIST)
9907 if ((l = argvars[0].vval.v_list) == NULL
9908 || (map && tv_check_lock(l->lv_lock, ermsg)))
9909 return;
9911 else if (argvars[0].v_type == VAR_DICT)
9913 if ((d = argvars[0].vval.v_dict) == NULL
9914 || (map && tv_check_lock(d->dv_lock, ermsg)))
9915 return;
9917 else
9919 EMSG2(_(e_listdictarg), ermsg);
9920 return;
9923 expr = get_tv_string_buf_chk(&argvars[1], buf);
9924 /* On type errors, the preceding call has already displayed an error
9925 * message. Avoid a misleading error message for an empty string that
9926 * was not passed as argument. */
9927 if (expr != NULL)
9929 prepare_vimvar(VV_VAL, &save_val);
9930 expr = skipwhite(expr);
9932 /* We reset "did_emsg" to be able to detect whether an error
9933 * occurred during evaluation of the expression. */
9934 save_did_emsg = did_emsg;
9935 did_emsg = FALSE;
9937 if (argvars[0].v_type == VAR_DICT)
9939 prepare_vimvar(VV_KEY, &save_key);
9940 vimvars[VV_KEY].vv_type = VAR_STRING;
9942 ht = &d->dv_hashtab;
9943 hash_lock(ht);
9944 todo = (int)ht->ht_used;
9945 for (hi = ht->ht_array; todo > 0; ++hi)
9947 if (!HASHITEM_EMPTY(hi))
9949 --todo;
9950 di = HI2DI(hi);
9951 if (tv_check_lock(di->di_tv.v_lock, ermsg))
9952 break;
9953 vimvars[VV_KEY].vv_str = vim_strsave(di->di_key);
9954 if (filter_map_one(&di->di_tv, expr, map, &rem) == FAIL
9955 || did_emsg)
9956 break;
9957 if (!map && rem)
9958 dictitem_remove(d, di);
9959 clear_tv(&vimvars[VV_KEY].vv_tv);
9962 hash_unlock(ht);
9964 restore_vimvar(VV_KEY, &save_key);
9966 else
9968 for (li = l->lv_first; li != NULL; li = nli)
9970 if (tv_check_lock(li->li_tv.v_lock, ermsg))
9971 break;
9972 nli = li->li_next;
9973 if (filter_map_one(&li->li_tv, expr, map, &rem) == FAIL
9974 || did_emsg)
9975 break;
9976 if (!map && rem)
9977 listitem_remove(l, li);
9981 restore_vimvar(VV_VAL, &save_val);
9983 did_emsg |= save_did_emsg;
9986 copy_tv(&argvars[0], rettv);
9989 static int
9990 filter_map_one(tv, expr, map, remp)
9991 typval_T *tv;
9992 char_u *expr;
9993 int map;
9994 int *remp;
9996 typval_T rettv;
9997 char_u *s;
9998 int retval = FAIL;
10000 copy_tv(tv, &vimvars[VV_VAL].vv_tv);
10001 s = expr;
10002 if (eval1(&s, &rettv, TRUE) == FAIL)
10003 goto theend;
10004 if (*s != NUL) /* check for trailing chars after expr */
10006 EMSG2(_(e_invexpr2), s);
10007 goto theend;
10009 if (map)
10011 /* map(): replace the list item value */
10012 clear_tv(tv);
10013 rettv.v_lock = 0;
10014 *tv = rettv;
10016 else
10018 int error = FALSE;
10020 /* filter(): when expr is zero remove the item */
10021 *remp = (get_tv_number_chk(&rettv, &error) == 0);
10022 clear_tv(&rettv);
10023 /* On type error, nothing has been removed; return FAIL to stop the
10024 * loop. The error message was given by get_tv_number_chk(). */
10025 if (error)
10026 goto theend;
10028 retval = OK;
10029 theend:
10030 clear_tv(&vimvars[VV_VAL].vv_tv);
10031 return retval;
10035 * "filter()" function
10037 static void
10038 f_filter(argvars, rettv)
10039 typval_T *argvars;
10040 typval_T *rettv;
10042 filter_map(argvars, rettv, FALSE);
10046 * "finddir({fname}[, {path}[, {count}]])" function
10048 static void
10049 f_finddir(argvars, rettv)
10050 typval_T *argvars;
10051 typval_T *rettv;
10053 findfilendir(argvars, rettv, FINDFILE_DIR);
10057 * "findfile({fname}[, {path}[, {count}]])" function
10059 static void
10060 f_findfile(argvars, rettv)
10061 typval_T *argvars;
10062 typval_T *rettv;
10064 findfilendir(argvars, rettv, FINDFILE_FILE);
10067 #ifdef FEAT_FLOAT
10069 * "float2nr({float})" function
10071 static void
10072 f_float2nr(argvars, rettv)
10073 typval_T *argvars;
10074 typval_T *rettv;
10076 float_T f;
10078 if (get_float_arg(argvars, &f) == OK)
10080 if (f < -0x7fffffff)
10081 rettv->vval.v_number = -0x7fffffff;
10082 else if (f > 0x7fffffff)
10083 rettv->vval.v_number = 0x7fffffff;
10084 else
10085 rettv->vval.v_number = (varnumber_T)f;
10087 else
10088 rettv->vval.v_number = 0;
10092 * "floor({float})" function
10094 static void
10095 f_floor(argvars, rettv)
10096 typval_T *argvars;
10097 typval_T *rettv;
10099 float_T f;
10101 rettv->v_type = VAR_FLOAT;
10102 if (get_float_arg(argvars, &f) == OK)
10103 rettv->vval.v_float = floor(f);
10104 else
10105 rettv->vval.v_float = 0.0;
10107 #endif
10110 * "fnameescape({string})" function
10112 static void
10113 f_fnameescape(argvars, rettv)
10114 typval_T *argvars;
10115 typval_T *rettv;
10117 rettv->vval.v_string = vim_strsave_fnameescape(
10118 get_tv_string(&argvars[0]), FALSE);
10119 rettv->v_type = VAR_STRING;
10123 * "fnamemodify({fname}, {mods})" function
10125 static void
10126 f_fnamemodify(argvars, rettv)
10127 typval_T *argvars;
10128 typval_T *rettv;
10130 char_u *fname;
10131 char_u *mods;
10132 int usedlen = 0;
10133 int len;
10134 char_u *fbuf = NULL;
10135 char_u buf[NUMBUFLEN];
10137 fname = get_tv_string_chk(&argvars[0]);
10138 mods = get_tv_string_buf_chk(&argvars[1], buf);
10139 if (fname == NULL || mods == NULL)
10140 fname = NULL;
10141 else
10143 len = (int)STRLEN(fname);
10144 (void)modify_fname(mods, &usedlen, &fname, &fbuf, &len);
10147 rettv->v_type = VAR_STRING;
10148 if (fname == NULL)
10149 rettv->vval.v_string = NULL;
10150 else
10151 rettv->vval.v_string = vim_strnsave(fname, len);
10152 vim_free(fbuf);
10155 static void foldclosed_both __ARGS((typval_T *argvars, typval_T *rettv, int end));
10158 * "foldclosed()" function
10160 static void
10161 foldclosed_both(argvars, rettv, end)
10162 typval_T *argvars;
10163 typval_T *rettv;
10164 int end;
10166 #ifdef FEAT_FOLDING
10167 linenr_T lnum;
10168 linenr_T first, last;
10170 lnum = get_tv_lnum(argvars);
10171 if (lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count)
10173 if (hasFoldingWin(curwin, lnum, &first, &last, FALSE, NULL))
10175 if (end)
10176 rettv->vval.v_number = (varnumber_T)last;
10177 else
10178 rettv->vval.v_number = (varnumber_T)first;
10179 return;
10182 #endif
10183 rettv->vval.v_number = -1;
10187 * "foldclosed()" function
10189 static void
10190 f_foldclosed(argvars, rettv)
10191 typval_T *argvars;
10192 typval_T *rettv;
10194 foldclosed_both(argvars, rettv, FALSE);
10198 * "foldclosedend()" function
10200 static void
10201 f_foldclosedend(argvars, rettv)
10202 typval_T *argvars;
10203 typval_T *rettv;
10205 foldclosed_both(argvars, rettv, TRUE);
10209 * "foldlevel()" function
10211 static void
10212 f_foldlevel(argvars, rettv)
10213 typval_T *argvars;
10214 typval_T *rettv;
10216 #ifdef FEAT_FOLDING
10217 linenr_T lnum;
10219 lnum = get_tv_lnum(argvars);
10220 if (lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count)
10221 rettv->vval.v_number = foldLevel(lnum);
10222 else
10223 #endif
10224 rettv->vval.v_number = 0;
10228 * "foldtext()" function
10230 /*ARGSUSED*/
10231 static void
10232 f_foldtext(argvars, rettv)
10233 typval_T *argvars;
10234 typval_T *rettv;
10236 #ifdef FEAT_FOLDING
10237 linenr_T lnum;
10238 char_u *s;
10239 char_u *r;
10240 int len;
10241 char *txt;
10242 #endif
10244 rettv->v_type = VAR_STRING;
10245 rettv->vval.v_string = NULL;
10246 #ifdef FEAT_FOLDING
10247 if ((linenr_T)vimvars[VV_FOLDSTART].vv_nr > 0
10248 && (linenr_T)vimvars[VV_FOLDEND].vv_nr
10249 <= curbuf->b_ml.ml_line_count
10250 && vimvars[VV_FOLDDASHES].vv_str != NULL)
10252 /* Find first non-empty line in the fold. */
10253 lnum = (linenr_T)vimvars[VV_FOLDSTART].vv_nr;
10254 while (lnum < (linenr_T)vimvars[VV_FOLDEND].vv_nr)
10256 if (!linewhite(lnum))
10257 break;
10258 ++lnum;
10261 /* Find interesting text in this line. */
10262 s = skipwhite(ml_get(lnum));
10263 /* skip C comment-start */
10264 if (s[0] == '/' && (s[1] == '*' || s[1] == '/'))
10266 s = skipwhite(s + 2);
10267 if (*skipwhite(s) == NUL
10268 && lnum + 1 < (linenr_T)vimvars[VV_FOLDEND].vv_nr)
10270 s = skipwhite(ml_get(lnum + 1));
10271 if (*s == '*')
10272 s = skipwhite(s + 1);
10275 txt = _("+-%s%3ld lines: ");
10276 r = alloc((unsigned)(STRLEN(txt)
10277 + STRLEN(vimvars[VV_FOLDDASHES].vv_str) /* for %s */
10278 + 20 /* for %3ld */
10279 + STRLEN(s))); /* concatenated */
10280 if (r != NULL)
10282 sprintf((char *)r, txt, vimvars[VV_FOLDDASHES].vv_str,
10283 (long)((linenr_T)vimvars[VV_FOLDEND].vv_nr
10284 - (linenr_T)vimvars[VV_FOLDSTART].vv_nr + 1));
10285 len = (int)STRLEN(r);
10286 STRCAT(r, s);
10287 /* remove 'foldmarker' and 'commentstring' */
10288 foldtext_cleanup(r + len);
10289 rettv->vval.v_string = r;
10292 #endif
10296 * "foldtextresult(lnum)" function
10298 /*ARGSUSED*/
10299 static void
10300 f_foldtextresult(argvars, rettv)
10301 typval_T *argvars;
10302 typval_T *rettv;
10304 #ifdef FEAT_FOLDING
10305 linenr_T lnum;
10306 char_u *text;
10307 char_u buf[51];
10308 foldinfo_T foldinfo;
10309 int fold_count;
10310 #endif
10312 rettv->v_type = VAR_STRING;
10313 rettv->vval.v_string = NULL;
10314 #ifdef FEAT_FOLDING
10315 lnum = get_tv_lnum(argvars);
10316 /* treat illegal types and illegal string values for {lnum} the same */
10317 if (lnum < 0)
10318 lnum = 0;
10319 fold_count = foldedCount(curwin, lnum, &foldinfo);
10320 if (fold_count > 0)
10322 text = get_foldtext(curwin, lnum, lnum + fold_count - 1,
10323 &foldinfo, buf);
10324 if (text == buf)
10325 text = vim_strsave(text);
10326 rettv->vval.v_string = text;
10328 #endif
10332 * "foreground()" function
10334 /*ARGSUSED*/
10335 static void
10336 f_foreground(argvars, rettv)
10337 typval_T *argvars;
10338 typval_T *rettv;
10340 rettv->vval.v_number = 0;
10341 #ifdef FEAT_GUI
10342 if (gui.in_use)
10343 gui_mch_set_foreground();
10344 #else
10345 # ifdef WIN32
10346 win32_set_foreground();
10347 # endif
10348 #endif
10352 * "function()" function
10354 /*ARGSUSED*/
10355 static void
10356 f_function(argvars, rettv)
10357 typval_T *argvars;
10358 typval_T *rettv;
10360 char_u *s;
10362 rettv->vval.v_number = 0;
10363 s = get_tv_string(&argvars[0]);
10364 if (s == NULL || *s == NUL || VIM_ISDIGIT(*s))
10365 EMSG2(_(e_invarg2), s);
10366 /* Don't check an autoload name for existence here. */
10367 else if (vim_strchr(s, AUTOLOAD_CHAR) == NULL && !function_exists(s))
10368 EMSG2(_("E700: Unknown function: %s"), s);
10369 else
10371 rettv->vval.v_string = vim_strsave(s);
10372 rettv->v_type = VAR_FUNC;
10377 * "garbagecollect()" function
10379 /*ARGSUSED*/
10380 static void
10381 f_garbagecollect(argvars, rettv)
10382 typval_T *argvars;
10383 typval_T *rettv;
10385 /* This is postponed until we are back at the toplevel, because we may be
10386 * using Lists and Dicts internally. E.g.: ":echo [garbagecollect()]". */
10387 want_garbage_collect = TRUE;
10389 if (argvars[0].v_type != VAR_UNKNOWN && get_tv_number(&argvars[0]) == 1)
10390 garbage_collect_at_exit = TRUE;
10394 * "get()" function
10396 static void
10397 f_get(argvars, rettv)
10398 typval_T *argvars;
10399 typval_T *rettv;
10401 listitem_T *li;
10402 list_T *l;
10403 dictitem_T *di;
10404 dict_T *d;
10405 typval_T *tv = NULL;
10407 if (argvars[0].v_type == VAR_LIST)
10409 if ((l = argvars[0].vval.v_list) != NULL)
10411 int error = FALSE;
10413 li = list_find(l, get_tv_number_chk(&argvars[1], &error));
10414 if (!error && li != NULL)
10415 tv = &li->li_tv;
10418 else if (argvars[0].v_type == VAR_DICT)
10420 if ((d = argvars[0].vval.v_dict) != NULL)
10422 di = dict_find(d, get_tv_string(&argvars[1]), -1);
10423 if (di != NULL)
10424 tv = &di->di_tv;
10427 else
10428 EMSG2(_(e_listdictarg), "get()");
10430 if (tv == NULL)
10432 if (argvars[2].v_type == VAR_UNKNOWN)
10433 rettv->vval.v_number = 0;
10434 else
10435 copy_tv(&argvars[2], rettv);
10437 else
10438 copy_tv(tv, rettv);
10441 static void get_buffer_lines __ARGS((buf_T *buf, linenr_T start, linenr_T end, int retlist, typval_T *rettv));
10444 * Get line or list of lines from buffer "buf" into "rettv".
10445 * Return a range (from start to end) of lines in rettv from the specified
10446 * buffer.
10447 * If 'retlist' is TRUE, then the lines are returned as a Vim List.
10449 static void
10450 get_buffer_lines(buf, start, end, retlist, rettv)
10451 buf_T *buf;
10452 linenr_T start;
10453 linenr_T end;
10454 int retlist;
10455 typval_T *rettv;
10457 char_u *p;
10459 if (retlist)
10461 if (rettv_list_alloc(rettv) == FAIL)
10462 return;
10464 else
10465 rettv->vval.v_number = 0;
10467 if (buf == NULL || buf->b_ml.ml_mfp == NULL || start < 0)
10468 return;
10470 if (!retlist)
10472 if (start >= 1 && start <= buf->b_ml.ml_line_count)
10473 p = ml_get_buf(buf, start, FALSE);
10474 else
10475 p = (char_u *)"";
10477 rettv->v_type = VAR_STRING;
10478 rettv->vval.v_string = vim_strsave(p);
10480 else
10482 if (end < start)
10483 return;
10485 if (start < 1)
10486 start = 1;
10487 if (end > buf->b_ml.ml_line_count)
10488 end = buf->b_ml.ml_line_count;
10489 while (start <= end)
10490 if (list_append_string(rettv->vval.v_list,
10491 ml_get_buf(buf, start++, FALSE), -1) == FAIL)
10492 break;
10497 * "getbufline()" function
10499 static void
10500 f_getbufline(argvars, rettv)
10501 typval_T *argvars;
10502 typval_T *rettv;
10504 linenr_T lnum;
10505 linenr_T end;
10506 buf_T *buf;
10508 (void)get_tv_number(&argvars[0]); /* issue errmsg if type error */
10509 ++emsg_off;
10510 buf = get_buf_tv(&argvars[0]);
10511 --emsg_off;
10513 lnum = get_tv_lnum_buf(&argvars[1], buf);
10514 if (argvars[2].v_type == VAR_UNKNOWN)
10515 end = lnum;
10516 else
10517 end = get_tv_lnum_buf(&argvars[2], buf);
10519 get_buffer_lines(buf, lnum, end, TRUE, rettv);
10523 * "getbufvar()" function
10525 static void
10526 f_getbufvar(argvars, rettv)
10527 typval_T *argvars;
10528 typval_T *rettv;
10530 buf_T *buf;
10531 buf_T *save_curbuf;
10532 char_u *varname;
10533 dictitem_T *v;
10535 (void)get_tv_number(&argvars[0]); /* issue errmsg if type error */
10536 varname = get_tv_string_chk(&argvars[1]);
10537 ++emsg_off;
10538 buf = get_buf_tv(&argvars[0]);
10540 rettv->v_type = VAR_STRING;
10541 rettv->vval.v_string = NULL;
10543 if (buf != NULL && varname != NULL)
10545 /* set curbuf to be our buf, temporarily */
10546 save_curbuf = curbuf;
10547 curbuf = buf;
10549 if (*varname == '&') /* buffer-local-option */
10550 get_option_tv(&varname, rettv, TRUE);
10551 else
10553 if (*varname == NUL)
10554 /* let getbufvar({nr}, "") return the "b:" dictionary. The
10555 * scope prefix before the NUL byte is required by
10556 * find_var_in_ht(). */
10557 varname = (char_u *)"b:" + 2;
10558 /* look up the variable */
10559 v = find_var_in_ht(&curbuf->b_vars.dv_hashtab, varname, FALSE);
10560 if (v != NULL)
10561 copy_tv(&v->di_tv, rettv);
10564 /* restore previous notion of curbuf */
10565 curbuf = save_curbuf;
10568 --emsg_off;
10572 * "getchar()" function
10574 static void
10575 f_getchar(argvars, rettv)
10576 typval_T *argvars;
10577 typval_T *rettv;
10579 varnumber_T n;
10580 int error = FALSE;
10582 /* Position the cursor. Needed after a message that ends in a space. */
10583 windgoto(msg_row, msg_col);
10585 ++no_mapping;
10586 ++allow_keys;
10587 for (;;)
10589 if (argvars[0].v_type == VAR_UNKNOWN)
10590 /* getchar(): blocking wait. */
10591 n = safe_vgetc();
10592 else if (get_tv_number_chk(&argvars[0], &error) == 1)
10593 /* getchar(1): only check if char avail */
10594 n = vpeekc();
10595 else if (error || vpeekc() == NUL)
10596 /* illegal argument or getchar(0) and no char avail: return zero */
10597 n = 0;
10598 else
10599 /* getchar(0) and char avail: return char */
10600 n = safe_vgetc();
10601 if (n == K_IGNORE)
10602 continue;
10603 break;
10605 --no_mapping;
10606 --allow_keys;
10608 vimvars[VV_MOUSE_WIN].vv_nr = 0;
10609 vimvars[VV_MOUSE_LNUM].vv_nr = 0;
10610 vimvars[VV_MOUSE_COL].vv_nr = 0;
10612 rettv->vval.v_number = n;
10613 if (IS_SPECIAL(n) || mod_mask != 0)
10615 char_u temp[10]; /* modifier: 3, mbyte-char: 6, NUL: 1 */
10616 int i = 0;
10618 /* Turn a special key into three bytes, plus modifier. */
10619 if (mod_mask != 0)
10621 temp[i++] = K_SPECIAL;
10622 temp[i++] = KS_MODIFIER;
10623 temp[i++] = mod_mask;
10625 if (IS_SPECIAL(n))
10627 temp[i++] = K_SPECIAL;
10628 temp[i++] = K_SECOND(n);
10629 temp[i++] = K_THIRD(n);
10631 #ifdef FEAT_MBYTE
10632 else if (has_mbyte)
10633 i += (*mb_char2bytes)(n, temp + i);
10634 #endif
10635 else
10636 temp[i++] = n;
10637 temp[i++] = NUL;
10638 rettv->v_type = VAR_STRING;
10639 rettv->vval.v_string = vim_strsave(temp);
10641 #ifdef FEAT_MOUSE
10642 if (n == K_LEFTMOUSE
10643 || n == K_LEFTMOUSE_NM
10644 || n == K_LEFTDRAG
10645 || n == K_LEFTRELEASE
10646 || n == K_LEFTRELEASE_NM
10647 || n == K_MIDDLEMOUSE
10648 || n == K_MIDDLEDRAG
10649 || n == K_MIDDLERELEASE
10650 || n == K_RIGHTMOUSE
10651 || n == K_RIGHTDRAG
10652 || n == K_RIGHTRELEASE
10653 || n == K_X1MOUSE
10654 || n == K_X1DRAG
10655 || n == K_X1RELEASE
10656 || n == K_X2MOUSE
10657 || n == K_X2DRAG
10658 || n == K_X2RELEASE
10659 || n == K_MOUSEDOWN
10660 || n == K_MOUSEUP)
10662 int row = mouse_row;
10663 int col = mouse_col;
10664 win_T *win;
10665 linenr_T lnum;
10666 # ifdef FEAT_WINDOWS
10667 win_T *wp;
10668 # endif
10669 int winnr = 1;
10671 if (row >= 0 && col >= 0)
10673 /* Find the window at the mouse coordinates and compute the
10674 * text position. */
10675 win = mouse_find_win(&row, &col);
10676 (void)mouse_comp_pos(win, &row, &col, &lnum);
10677 # ifdef FEAT_WINDOWS
10678 for (wp = firstwin; wp != win; wp = wp->w_next)
10679 ++winnr;
10680 # endif
10681 vimvars[VV_MOUSE_WIN].vv_nr = winnr;
10682 vimvars[VV_MOUSE_LNUM].vv_nr = lnum;
10683 vimvars[VV_MOUSE_COL].vv_nr = col + 1;
10686 #endif
10691 * "getcharmod()" function
10693 /*ARGSUSED*/
10694 static void
10695 f_getcharmod(argvars, rettv)
10696 typval_T *argvars;
10697 typval_T *rettv;
10699 rettv->vval.v_number = mod_mask;
10703 * "getcmdline()" function
10705 /*ARGSUSED*/
10706 static void
10707 f_getcmdline(argvars, rettv)
10708 typval_T *argvars;
10709 typval_T *rettv;
10711 rettv->v_type = VAR_STRING;
10712 rettv->vval.v_string = get_cmdline_str();
10716 * "getcmdpos()" function
10718 /*ARGSUSED*/
10719 static void
10720 f_getcmdpos(argvars, rettv)
10721 typval_T *argvars;
10722 typval_T *rettv;
10724 rettv->vval.v_number = get_cmdline_pos() + 1;
10728 * "getcmdtype()" function
10730 /*ARGSUSED*/
10731 static void
10732 f_getcmdtype(argvars, rettv)
10733 typval_T *argvars;
10734 typval_T *rettv;
10736 rettv->v_type = VAR_STRING;
10737 rettv->vval.v_string = alloc(2);
10738 if (rettv->vval.v_string != NULL)
10740 rettv->vval.v_string[0] = get_cmdline_type();
10741 rettv->vval.v_string[1] = NUL;
10746 * "getcwd()" function
10748 /*ARGSUSED*/
10749 static void
10750 f_getcwd(argvars, rettv)
10751 typval_T *argvars;
10752 typval_T *rettv;
10754 char_u cwd[MAXPATHL];
10756 rettv->v_type = VAR_STRING;
10757 if (mch_dirname(cwd, MAXPATHL) == FAIL)
10758 rettv->vval.v_string = NULL;
10759 else
10761 rettv->vval.v_string = vim_strsave(cwd);
10762 #ifdef BACKSLASH_IN_FILENAME
10763 if (rettv->vval.v_string != NULL)
10764 slash_adjust(rettv->vval.v_string);
10765 #endif
10770 * "getfontname()" function
10772 /*ARGSUSED*/
10773 static void
10774 f_getfontname(argvars, rettv)
10775 typval_T *argvars;
10776 typval_T *rettv;
10778 rettv->v_type = VAR_STRING;
10779 rettv->vval.v_string = NULL;
10780 #ifdef FEAT_GUI
10781 if (gui.in_use)
10783 GuiFont font;
10784 char_u *name = NULL;
10786 if (argvars[0].v_type == VAR_UNKNOWN)
10788 /* Get the "Normal" font. Either the name saved by
10789 * hl_set_font_name() or from the font ID. */
10790 font = gui.norm_font;
10791 name = hl_get_font_name();
10793 else
10795 name = get_tv_string(&argvars[0]);
10796 if (STRCMP(name, "*") == 0) /* don't use font dialog */
10797 return;
10798 font = gui_mch_get_font(name, FALSE);
10799 if (font == NOFONT)
10800 return; /* Invalid font name, return empty string. */
10802 rettv->vval.v_string = gui_mch_get_fontname(font, name);
10803 if (argvars[0].v_type != VAR_UNKNOWN)
10804 gui_mch_free_font(font);
10806 #endif
10810 * "getfperm({fname})" function
10812 static void
10813 f_getfperm(argvars, rettv)
10814 typval_T *argvars;
10815 typval_T *rettv;
10817 char_u *fname;
10818 struct stat st;
10819 char_u *perm = NULL;
10820 char_u flags[] = "rwx";
10821 int i;
10823 fname = get_tv_string(&argvars[0]);
10825 rettv->v_type = VAR_STRING;
10826 if (mch_stat((char *)fname, &st) >= 0)
10828 perm = vim_strsave((char_u *)"---------");
10829 if (perm != NULL)
10831 for (i = 0; i < 9; i++)
10833 if (st.st_mode & (1 << (8 - i)))
10834 perm[i] = flags[i % 3];
10838 rettv->vval.v_string = perm;
10842 * "getfsize({fname})" function
10844 static void
10845 f_getfsize(argvars, rettv)
10846 typval_T *argvars;
10847 typval_T *rettv;
10849 char_u *fname;
10850 struct stat st;
10852 fname = get_tv_string(&argvars[0]);
10854 rettv->v_type = VAR_NUMBER;
10856 if (mch_stat((char *)fname, &st) >= 0)
10858 if (mch_isdir(fname))
10859 rettv->vval.v_number = 0;
10860 else
10862 rettv->vval.v_number = (varnumber_T)st.st_size;
10864 /* non-perfect check for overflow */
10865 if ((off_t)rettv->vval.v_number != (off_t)st.st_size)
10866 rettv->vval.v_number = -2;
10869 else
10870 rettv->vval.v_number = -1;
10874 * "getftime({fname})" function
10876 static void
10877 f_getftime(argvars, rettv)
10878 typval_T *argvars;
10879 typval_T *rettv;
10881 char_u *fname;
10882 struct stat st;
10884 fname = get_tv_string(&argvars[0]);
10886 if (mch_stat((char *)fname, &st) >= 0)
10887 rettv->vval.v_number = (varnumber_T)st.st_mtime;
10888 else
10889 rettv->vval.v_number = -1;
10893 * "getftype({fname})" function
10895 static void
10896 f_getftype(argvars, rettv)
10897 typval_T *argvars;
10898 typval_T *rettv;
10900 char_u *fname;
10901 struct stat st;
10902 char_u *type = NULL;
10903 char *t;
10905 fname = get_tv_string(&argvars[0]);
10907 rettv->v_type = VAR_STRING;
10908 if (mch_lstat((char *)fname, &st) >= 0)
10910 #ifdef S_ISREG
10911 if (S_ISREG(st.st_mode))
10912 t = "file";
10913 else if (S_ISDIR(st.st_mode))
10914 t = "dir";
10915 # ifdef S_ISLNK
10916 else if (S_ISLNK(st.st_mode))
10917 t = "link";
10918 # endif
10919 # ifdef S_ISBLK
10920 else if (S_ISBLK(st.st_mode))
10921 t = "bdev";
10922 # endif
10923 # ifdef S_ISCHR
10924 else if (S_ISCHR(st.st_mode))
10925 t = "cdev";
10926 # endif
10927 # ifdef S_ISFIFO
10928 else if (S_ISFIFO(st.st_mode))
10929 t = "fifo";
10930 # endif
10931 # ifdef S_ISSOCK
10932 else if (S_ISSOCK(st.st_mode))
10933 t = "fifo";
10934 # endif
10935 else
10936 t = "other";
10937 #else
10938 # ifdef S_IFMT
10939 switch (st.st_mode & S_IFMT)
10941 case S_IFREG: t = "file"; break;
10942 case S_IFDIR: t = "dir"; break;
10943 # ifdef S_IFLNK
10944 case S_IFLNK: t = "link"; break;
10945 # endif
10946 # ifdef S_IFBLK
10947 case S_IFBLK: t = "bdev"; break;
10948 # endif
10949 # ifdef S_IFCHR
10950 case S_IFCHR: t = "cdev"; break;
10951 # endif
10952 # ifdef S_IFIFO
10953 case S_IFIFO: t = "fifo"; break;
10954 # endif
10955 # ifdef S_IFSOCK
10956 case S_IFSOCK: t = "socket"; break;
10957 # endif
10958 default: t = "other";
10960 # else
10961 if (mch_isdir(fname))
10962 t = "dir";
10963 else
10964 t = "file";
10965 # endif
10966 #endif
10967 type = vim_strsave((char_u *)t);
10969 rettv->vval.v_string = type;
10973 * "getline(lnum, [end])" function
10975 static void
10976 f_getline(argvars, rettv)
10977 typval_T *argvars;
10978 typval_T *rettv;
10980 linenr_T lnum;
10981 linenr_T end;
10982 int retlist;
10984 lnum = get_tv_lnum(argvars);
10985 if (argvars[1].v_type == VAR_UNKNOWN)
10987 end = 0;
10988 retlist = FALSE;
10990 else
10992 end = get_tv_lnum(&argvars[1]);
10993 retlist = TRUE;
10996 get_buffer_lines(curbuf, lnum, end, retlist, rettv);
11000 * "getmatches()" function
11002 /*ARGSUSED*/
11003 static void
11004 f_getmatches(argvars, rettv)
11005 typval_T *argvars;
11006 typval_T *rettv;
11008 #ifdef FEAT_SEARCH_EXTRA
11009 dict_T *dict;
11010 matchitem_T *cur = curwin->w_match_head;
11012 rettv->vval.v_number = 0;
11014 if (rettv_list_alloc(rettv) == OK)
11016 while (cur != NULL)
11018 dict = dict_alloc();
11019 if (dict == NULL)
11020 return;
11021 dict_add_nr_str(dict, "group", 0L, syn_id2name(cur->hlg_id));
11022 dict_add_nr_str(dict, "pattern", 0L, cur->pattern);
11023 dict_add_nr_str(dict, "priority", (long)cur->priority, NULL);
11024 dict_add_nr_str(dict, "id", (long)cur->id, NULL);
11025 list_append_dict(rettv->vval.v_list, dict);
11026 cur = cur->next;
11029 #endif
11033 * "getpid()" function
11035 /*ARGSUSED*/
11036 static void
11037 f_getpid(argvars, rettv)
11038 typval_T *argvars;
11039 typval_T *rettv;
11041 rettv->vval.v_number = mch_get_pid();
11045 * "getpos(string)" function
11047 static void
11048 f_getpos(argvars, rettv)
11049 typval_T *argvars;
11050 typval_T *rettv;
11052 pos_T *fp;
11053 list_T *l;
11054 int fnum = -1;
11056 if (rettv_list_alloc(rettv) == OK)
11058 l = rettv->vval.v_list;
11059 fp = var2fpos(&argvars[0], TRUE, &fnum);
11060 if (fnum != -1)
11061 list_append_number(l, (varnumber_T)fnum);
11062 else
11063 list_append_number(l, (varnumber_T)0);
11064 list_append_number(l, (fp != NULL) ? (varnumber_T)fp->lnum
11065 : (varnumber_T)0);
11066 list_append_number(l, (fp != NULL)
11067 ? (varnumber_T)(fp->col == MAXCOL ? MAXCOL : fp->col + 1)
11068 : (varnumber_T)0);
11069 list_append_number(l,
11070 #ifdef FEAT_VIRTUALEDIT
11071 (fp != NULL) ? (varnumber_T)fp->coladd :
11072 #endif
11073 (varnumber_T)0);
11075 else
11076 rettv->vval.v_number = FALSE;
11080 * "getqflist()" and "getloclist()" functions
11082 /*ARGSUSED*/
11083 static void
11084 f_getqflist(argvars, rettv)
11085 typval_T *argvars;
11086 typval_T *rettv;
11088 #ifdef FEAT_QUICKFIX
11089 win_T *wp;
11090 #endif
11092 rettv->vval.v_number = 0;
11093 #ifdef FEAT_QUICKFIX
11094 if (rettv_list_alloc(rettv) == OK)
11096 wp = NULL;
11097 if (argvars[0].v_type != VAR_UNKNOWN) /* getloclist() */
11099 wp = find_win_by_nr(&argvars[0], NULL);
11100 if (wp == NULL)
11101 return;
11104 (void)get_errorlist(wp, rettv->vval.v_list);
11106 #endif
11110 * "getreg()" function
11112 static void
11113 f_getreg(argvars, rettv)
11114 typval_T *argvars;
11115 typval_T *rettv;
11117 char_u *strregname;
11118 int regname;
11119 int arg2 = FALSE;
11120 int error = FALSE;
11122 if (argvars[0].v_type != VAR_UNKNOWN)
11124 strregname = get_tv_string_chk(&argvars[0]);
11125 error = strregname == NULL;
11126 if (argvars[1].v_type != VAR_UNKNOWN)
11127 arg2 = get_tv_number_chk(&argvars[1], &error);
11129 else
11130 strregname = vimvars[VV_REG].vv_str;
11131 regname = (strregname == NULL ? '"' : *strregname);
11132 if (regname == 0)
11133 regname = '"';
11135 rettv->v_type = VAR_STRING;
11136 rettv->vval.v_string = error ? NULL :
11137 get_reg_contents(regname, TRUE, arg2);
11141 * "getregtype()" function
11143 static void
11144 f_getregtype(argvars, rettv)
11145 typval_T *argvars;
11146 typval_T *rettv;
11148 char_u *strregname;
11149 int regname;
11150 char_u buf[NUMBUFLEN + 2];
11151 long reglen = 0;
11153 if (argvars[0].v_type != VAR_UNKNOWN)
11155 strregname = get_tv_string_chk(&argvars[0]);
11156 if (strregname == NULL) /* type error; errmsg already given */
11158 rettv->v_type = VAR_STRING;
11159 rettv->vval.v_string = NULL;
11160 return;
11163 else
11164 /* Default to v:register */
11165 strregname = vimvars[VV_REG].vv_str;
11167 regname = (strregname == NULL ? '"' : *strregname);
11168 if (regname == 0)
11169 regname = '"';
11171 buf[0] = NUL;
11172 buf[1] = NUL;
11173 switch (get_reg_type(regname, &reglen))
11175 case MLINE: buf[0] = 'V'; break;
11176 case MCHAR: buf[0] = 'v'; break;
11177 #ifdef FEAT_VISUAL
11178 case MBLOCK:
11179 buf[0] = Ctrl_V;
11180 sprintf((char *)buf + 1, "%ld", reglen + 1);
11181 break;
11182 #endif
11184 rettv->v_type = VAR_STRING;
11185 rettv->vval.v_string = vim_strsave(buf);
11189 * "gettabwinvar()" function
11191 static void
11192 f_gettabwinvar(argvars, rettv)
11193 typval_T *argvars;
11194 typval_T *rettv;
11196 getwinvar(argvars, rettv, 1);
11200 * "getwinposx()" function
11202 /*ARGSUSED*/
11203 static void
11204 f_getwinposx(argvars, rettv)
11205 typval_T *argvars;
11206 typval_T *rettv;
11208 rettv->vval.v_number = -1;
11209 #ifdef FEAT_GUI
11210 if (gui.in_use)
11212 int x, y;
11214 if (gui_mch_get_winpos(&x, &y) == OK)
11215 rettv->vval.v_number = x;
11217 #endif
11221 * "getwinposy()" function
11223 /*ARGSUSED*/
11224 static void
11225 f_getwinposy(argvars, rettv)
11226 typval_T *argvars;
11227 typval_T *rettv;
11229 rettv->vval.v_number = -1;
11230 #ifdef FEAT_GUI
11231 if (gui.in_use)
11233 int x, y;
11235 if (gui_mch_get_winpos(&x, &y) == OK)
11236 rettv->vval.v_number = y;
11238 #endif
11242 * Find window specified by "vp" in tabpage "tp".
11244 static win_T *
11245 find_win_by_nr(vp, tp)
11246 typval_T *vp;
11247 tabpage_T *tp; /* NULL for current tab page */
11249 #ifdef FEAT_WINDOWS
11250 win_T *wp;
11251 #endif
11252 int nr;
11254 nr = get_tv_number_chk(vp, NULL);
11256 #ifdef FEAT_WINDOWS
11257 if (nr < 0)
11258 return NULL;
11259 if (nr == 0)
11260 return curwin;
11262 for (wp = (tp == NULL || tp == curtab) ? firstwin : tp->tp_firstwin;
11263 wp != NULL; wp = wp->w_next)
11264 if (--nr <= 0)
11265 break;
11266 return wp;
11267 #else
11268 if (nr == 0 || nr == 1)
11269 return curwin;
11270 return NULL;
11271 #endif
11275 * "getwinvar()" function
11277 static void
11278 f_getwinvar(argvars, rettv)
11279 typval_T *argvars;
11280 typval_T *rettv;
11282 getwinvar(argvars, rettv, 0);
11286 * getwinvar() and gettabwinvar()
11288 static void
11289 getwinvar(argvars, rettv, off)
11290 typval_T *argvars;
11291 typval_T *rettv;
11292 int off; /* 1 for gettabwinvar() */
11294 win_T *win, *oldcurwin;
11295 char_u *varname;
11296 dictitem_T *v;
11297 tabpage_T *tp;
11299 #ifdef FEAT_WINDOWS
11300 if (off == 1)
11301 tp = find_tabpage((int)get_tv_number_chk(&argvars[0], NULL));
11302 else
11303 tp = curtab;
11304 #endif
11305 win = find_win_by_nr(&argvars[off], tp);
11306 varname = get_tv_string_chk(&argvars[off + 1]);
11307 ++emsg_off;
11309 rettv->v_type = VAR_STRING;
11310 rettv->vval.v_string = NULL;
11312 if (win != NULL && varname != NULL)
11314 /* Set curwin to be our win, temporarily. Also set curbuf, so
11315 * that we can get buffer-local options. */
11316 oldcurwin = curwin;
11317 curwin = win;
11318 curbuf = win->w_buffer;
11320 if (*varname == '&') /* window-local-option */
11321 get_option_tv(&varname, rettv, 1);
11322 else
11324 if (*varname == NUL)
11325 /* let getwinvar({nr}, "") return the "w:" dictionary. The
11326 * scope prefix before the NUL byte is required by
11327 * find_var_in_ht(). */
11328 varname = (char_u *)"w:" + 2;
11329 /* look up the variable */
11330 v = find_var_in_ht(&win->w_vars.dv_hashtab, varname, FALSE);
11331 if (v != NULL)
11332 copy_tv(&v->di_tv, rettv);
11335 /* restore previous notion of curwin */
11336 curwin = oldcurwin;
11337 curbuf = curwin->w_buffer;
11340 --emsg_off;
11344 * "glob()" function
11346 static void
11347 f_glob(argvars, rettv)
11348 typval_T *argvars;
11349 typval_T *rettv;
11351 int flags = WILD_SILENT|WILD_USE_NL;
11352 expand_T xpc;
11353 int error = FALSE;
11355 /* When the optional second argument is non-zero, don't remove matches
11356 * for 'wildignore' and don't put matches for 'suffixes' at the end. */
11357 if (argvars[1].v_type != VAR_UNKNOWN
11358 && get_tv_number_chk(&argvars[1], &error))
11359 flags |= WILD_KEEP_ALL;
11360 rettv->v_type = VAR_STRING;
11361 if (!error)
11363 ExpandInit(&xpc);
11364 xpc.xp_context = EXPAND_FILES;
11365 rettv->vval.v_string = ExpandOne(&xpc, get_tv_string(&argvars[0]),
11366 NULL, flags, WILD_ALL);
11368 else
11369 rettv->vval.v_string = NULL;
11373 * "globpath()" function
11375 static void
11376 f_globpath(argvars, rettv)
11377 typval_T *argvars;
11378 typval_T *rettv;
11380 int flags = 0;
11381 char_u buf1[NUMBUFLEN];
11382 char_u *file = get_tv_string_buf_chk(&argvars[1], buf1);
11383 int error = FALSE;
11385 /* When the optional second argument is non-zero, don't remove matches
11386 * for 'wildignore' and don't put matches for 'suffixes' at the end. */
11387 if (argvars[2].v_type != VAR_UNKNOWN
11388 && get_tv_number_chk(&argvars[2], &error))
11389 flags |= WILD_KEEP_ALL;
11390 rettv->v_type = VAR_STRING;
11391 if (file == NULL || error)
11392 rettv->vval.v_string = NULL;
11393 else
11394 rettv->vval.v_string = globpath(get_tv_string(&argvars[0]), file,
11395 flags);
11399 * "has()" function
11401 static void
11402 f_has(argvars, rettv)
11403 typval_T *argvars;
11404 typval_T *rettv;
11406 int i;
11407 char_u *name;
11408 int n = FALSE;
11409 static char *(has_list[]) =
11411 #ifdef AMIGA
11412 "amiga",
11413 # ifdef FEAT_ARP
11414 "arp",
11415 # endif
11416 #endif
11417 #ifdef __BEOS__
11418 "beos",
11419 #endif
11420 #ifdef MSDOS
11421 # ifdef DJGPP
11422 "dos32",
11423 # else
11424 "dos16",
11425 # endif
11426 #endif
11427 #ifdef MACOS
11428 "mac",
11429 #endif
11430 #if defined(MACOS_X_UNIX)
11431 "macunix",
11432 #endif
11433 #ifdef OS2
11434 "os2",
11435 #endif
11436 #ifdef __QNX__
11437 "qnx",
11438 #endif
11439 #ifdef RISCOS
11440 "riscos",
11441 #endif
11442 #ifdef UNIX
11443 "unix",
11444 #endif
11445 #ifdef VMS
11446 "vms",
11447 #endif
11448 #ifdef WIN16
11449 "win16",
11450 #endif
11451 #ifdef WIN32
11452 "win32",
11453 #endif
11454 #if defined(UNIX) && (defined(__CYGWIN32__) || defined(__CYGWIN__))
11455 "win32unix",
11456 #endif
11457 #ifdef WIN64
11458 "win64",
11459 #endif
11460 #ifdef EBCDIC
11461 "ebcdic",
11462 #endif
11463 #ifndef CASE_INSENSITIVE_FILENAME
11464 "fname_case",
11465 #endif
11466 #ifdef FEAT_ARABIC
11467 "arabic",
11468 #endif
11469 #ifdef FEAT_AUTOCMD
11470 "autocmd",
11471 #endif
11472 #ifdef FEAT_BEVAL
11473 "balloon_eval",
11474 # ifndef FEAT_GUI_W32 /* other GUIs always have multiline balloons */
11475 "balloon_multiline",
11476 # endif
11477 #endif
11478 #if defined(SOME_BUILTIN_TCAPS) || defined(ALL_BUILTIN_TCAPS)
11479 "builtin_terms",
11480 # ifdef ALL_BUILTIN_TCAPS
11481 "all_builtin_terms",
11482 # endif
11483 #endif
11484 #ifdef FEAT_BYTEOFF
11485 "byte_offset",
11486 #endif
11487 #ifdef FEAT_CINDENT
11488 "cindent",
11489 #endif
11490 #ifdef FEAT_CLIENTSERVER
11491 "clientserver",
11492 #endif
11493 #ifdef FEAT_CLIPBOARD
11494 "clipboard",
11495 #endif
11496 #ifdef FEAT_CMDL_COMPL
11497 "cmdline_compl",
11498 #endif
11499 #ifdef FEAT_CMDHIST
11500 "cmdline_hist",
11501 #endif
11502 #ifdef FEAT_COMMENTS
11503 "comments",
11504 #endif
11505 #ifdef FEAT_CRYPT
11506 "cryptv",
11507 #endif
11508 #ifdef FEAT_CSCOPE
11509 "cscope",
11510 #endif
11511 #ifdef CURSOR_SHAPE
11512 "cursorshape",
11513 #endif
11514 #ifdef DEBUG
11515 "debug",
11516 #endif
11517 #ifdef FEAT_CON_DIALOG
11518 "dialog_con",
11519 #endif
11520 #ifdef FEAT_GUI_DIALOG
11521 "dialog_gui",
11522 #endif
11523 #ifdef FEAT_DIFF
11524 "diff",
11525 #endif
11526 #ifdef FEAT_DIGRAPHS
11527 "digraphs",
11528 #endif
11529 #ifdef FEAT_DND
11530 "dnd",
11531 #endif
11532 #ifdef FEAT_EMACS_TAGS
11533 "emacs_tags",
11534 #endif
11535 "eval", /* always present, of course! */
11536 #ifdef FEAT_EX_EXTRA
11537 "ex_extra",
11538 #endif
11539 #ifdef FEAT_SEARCH_EXTRA
11540 "extra_search",
11541 #endif
11542 #ifdef FEAT_FKMAP
11543 "farsi",
11544 #endif
11545 #ifdef FEAT_SEARCHPATH
11546 "file_in_path",
11547 #endif
11548 #if defined(UNIX) && !defined(USE_SYSTEM)
11549 "filterpipe",
11550 #endif
11551 #ifdef FEAT_FIND_ID
11552 "find_in_path",
11553 #endif
11554 #ifdef FEAT_FLOAT
11555 "float",
11556 #endif
11557 #ifdef FEAT_FOLDING
11558 "folding",
11559 #endif
11560 #ifdef FEAT_FOOTER
11561 "footer",
11562 #endif
11563 #if !defined(USE_SYSTEM) && defined(UNIX)
11564 "fork",
11565 #endif
11566 #ifdef FEAT_FULLSCREEN
11567 "fullscreen",
11568 #endif
11569 #ifdef FEAT_GETTEXT
11570 "gettext",
11571 #endif
11572 #ifdef FEAT_GUI
11573 "gui",
11574 #endif
11575 #ifdef FEAT_GUI_ATHENA
11576 # ifdef FEAT_GUI_NEXTAW
11577 "gui_neXtaw",
11578 # else
11579 "gui_athena",
11580 # endif
11581 #endif
11582 #ifdef FEAT_GUI_GTK
11583 "gui_gtk",
11584 # ifdef HAVE_GTK2
11585 "gui_gtk2",
11586 # endif
11587 #endif
11588 #ifdef FEAT_GUI_GNOME
11589 "gui_gnome",
11590 #endif
11591 #ifdef FEAT_GUI_MAC
11592 "gui_mac",
11593 #endif
11594 #ifdef FEAT_GUI_MACVIM
11595 "gui_macvim",
11596 #endif
11597 #ifdef FEAT_GUI_MOTIF
11598 "gui_motif",
11599 #endif
11600 #ifdef FEAT_GUI_PHOTON
11601 "gui_photon",
11602 #endif
11603 #ifdef FEAT_GUI_W16
11604 "gui_win16",
11605 #endif
11606 #ifdef FEAT_GUI_W32
11607 "gui_win32",
11608 #endif
11609 #ifdef FEAT_HANGULIN
11610 "hangul_input",
11611 #endif
11612 #if defined(HAVE_ICONV_H) && defined(USE_ICONV)
11613 "iconv",
11614 #endif
11615 #ifdef FEAT_INS_EXPAND
11616 "insert_expand",
11617 #endif
11618 #ifdef FEAT_JUMPLIST
11619 "jumplist",
11620 #endif
11621 #ifdef FEAT_KEYMAP
11622 "keymap",
11623 #endif
11624 #ifdef FEAT_LANGMAP
11625 "langmap",
11626 #endif
11627 #ifdef FEAT_LIBCALL
11628 "libcall",
11629 #endif
11630 #ifdef FEAT_LINEBREAK
11631 "linebreak",
11632 #endif
11633 #ifdef FEAT_LISP
11634 "lispindent",
11635 #endif
11636 #ifdef FEAT_LISTCMDS
11637 "listcmds",
11638 #endif
11639 #ifdef FEAT_LOCALMAP
11640 "localmap",
11641 #endif
11642 #ifdef FEAT_MENU
11643 "menu",
11644 #endif
11645 #ifdef FEAT_SESSION
11646 "mksession",
11647 #endif
11648 #ifdef FEAT_MODIFY_FNAME
11649 "modify_fname",
11650 #endif
11651 #ifdef FEAT_MOUSE
11652 "mouse",
11653 #endif
11654 #ifdef FEAT_MOUSESHAPE
11655 "mouseshape",
11656 #endif
11657 #if defined(UNIX) || defined(VMS)
11658 # ifdef FEAT_MOUSE_DEC
11659 "mouse_dec",
11660 # endif
11661 # ifdef FEAT_MOUSE_GPM
11662 "mouse_gpm",
11663 # endif
11664 # ifdef FEAT_MOUSE_JSB
11665 "mouse_jsbterm",
11666 # endif
11667 # ifdef FEAT_MOUSE_NET
11668 "mouse_netterm",
11669 # endif
11670 # ifdef FEAT_MOUSE_PTERM
11671 "mouse_pterm",
11672 # endif
11673 # ifdef FEAT_SYSMOUSE
11674 "mouse_sysmouse",
11675 # endif
11676 # ifdef FEAT_MOUSE_XTERM
11677 "mouse_xterm",
11678 # endif
11679 #endif
11680 #ifdef FEAT_MBYTE
11681 "multi_byte",
11682 #endif
11683 #ifdef FEAT_MBYTE_IME
11684 "multi_byte_ime",
11685 #endif
11686 #ifdef FEAT_MULTI_LANG
11687 "multi_lang",
11688 #endif
11689 #ifdef FEAT_MZSCHEME
11690 #ifndef DYNAMIC_MZSCHEME
11691 "mzscheme",
11692 #endif
11693 #endif
11694 #ifdef FEAT_OLE
11695 "ole",
11696 #endif
11697 #ifdef FEAT_OSFILETYPE
11698 "osfiletype",
11699 #endif
11700 #ifdef FEAT_PATH_EXTRA
11701 "path_extra",
11702 #endif
11703 #ifdef FEAT_PERL
11704 #ifndef DYNAMIC_PERL
11705 "perl",
11706 #endif
11707 #endif
11708 #ifdef FEAT_PYTHON
11709 #ifndef DYNAMIC_PYTHON
11710 "python",
11711 #endif
11712 #endif
11713 #ifdef FEAT_POSTSCRIPT
11714 "postscript",
11715 #endif
11716 #ifdef FEAT_PRINTER
11717 "printer",
11718 #endif
11719 #ifdef FEAT_PROFILE
11720 "profile",
11721 #endif
11722 #ifdef FEAT_RELTIME
11723 "reltime",
11724 #endif
11725 #ifdef FEAT_QUICKFIX
11726 "quickfix",
11727 #endif
11728 #ifdef FEAT_RIGHTLEFT
11729 "rightleft",
11730 #endif
11731 #if defined(FEAT_RUBY) && !defined(DYNAMIC_RUBY)
11732 "ruby",
11733 #endif
11734 #ifdef FEAT_SCROLLBIND
11735 "scrollbind",
11736 #endif
11737 #ifdef FEAT_CMDL_INFO
11738 "showcmd",
11739 "cmdline_info",
11740 #endif
11741 #ifdef FEAT_SIGNS
11742 "signs",
11743 #endif
11744 #ifdef FEAT_SMARTINDENT
11745 "smartindent",
11746 #endif
11747 #ifdef FEAT_SNIFF
11748 "sniff",
11749 #endif
11750 #ifdef FEAT_STL_OPT
11751 "statusline",
11752 #endif
11753 #ifdef FEAT_SUN_WORKSHOP
11754 "sun_workshop",
11755 #endif
11756 #ifdef FEAT_NETBEANS_INTG
11757 "netbeans_intg",
11758 #endif
11759 #ifdef FEAT_ODB_EDITOR
11760 "odbeditor",
11761 #endif
11762 #ifdef FEAT_SPELL
11763 "spell",
11764 #endif
11765 #ifdef FEAT_SYN_HL
11766 "syntax",
11767 #endif
11768 #if defined(USE_SYSTEM) || !defined(UNIX)
11769 "system",
11770 #endif
11771 #ifdef FEAT_TAG_BINS
11772 "tag_binary",
11773 #endif
11774 #ifdef FEAT_TAG_OLDSTATIC
11775 "tag_old_static",
11776 #endif
11777 #ifdef FEAT_TAG_ANYWHITE
11778 "tag_any_white",
11779 #endif
11780 #ifdef FEAT_TCL
11781 # ifndef DYNAMIC_TCL
11782 "tcl",
11783 # endif
11784 #endif
11785 #ifdef TERMINFO
11786 "terminfo",
11787 #endif
11788 #ifdef FEAT_TERMRESPONSE
11789 "termresponse",
11790 #endif
11791 #ifdef FEAT_TEXTOBJ
11792 "textobjects",
11793 #endif
11794 #ifdef HAVE_TGETENT
11795 "tgetent",
11796 #endif
11797 #ifdef FEAT_TITLE
11798 "title",
11799 #endif
11800 #ifdef FEAT_TOOLBAR
11801 "toolbar",
11802 #endif
11803 #ifdef FEAT_TRANSPARENCY
11804 "transparency",
11805 #endif
11806 #ifdef FEAT_USR_CMDS
11807 "user-commands", /* was accidentally included in 5.4 */
11808 "user_commands",
11809 #endif
11810 #ifdef FEAT_VIMINFO
11811 "viminfo",
11812 #endif
11813 #ifdef FEAT_VERTSPLIT
11814 "vertsplit",
11815 #endif
11816 #ifdef FEAT_VIRTUALEDIT
11817 "virtualedit",
11818 #endif
11819 #ifdef FEAT_VISUAL
11820 "visual",
11821 #endif
11822 #ifdef FEAT_VISUALEXTRA
11823 "visualextra",
11824 #endif
11825 #ifdef FEAT_VREPLACE
11826 "vreplace",
11827 #endif
11828 #ifdef FEAT_WILDIGN
11829 "wildignore",
11830 #endif
11831 #ifdef FEAT_WILDMENU
11832 "wildmenu",
11833 #endif
11834 #ifdef FEAT_WINDOWS
11835 "windows",
11836 #endif
11837 #ifdef FEAT_WAK
11838 "winaltkeys",
11839 #endif
11840 #ifdef FEAT_WRITEBACKUP
11841 "writebackup",
11842 #endif
11843 #ifdef FEAT_XIM
11844 "xim",
11845 #endif
11846 #ifdef FEAT_XFONTSET
11847 "xfontset",
11848 #endif
11849 #ifdef USE_XSMP
11850 "xsmp",
11851 #endif
11852 #ifdef USE_XSMP_INTERACT
11853 "xsmp_interact",
11854 #endif
11855 #ifdef FEAT_XCLIPBOARD
11856 "xterm_clipboard",
11857 #endif
11858 #ifdef FEAT_XTERM_SAVE
11859 "xterm_save",
11860 #endif
11861 #if defined(UNIX) && defined(FEAT_X11)
11862 "X11",
11863 #endif
11864 NULL
11867 name = get_tv_string(&argvars[0]);
11868 for (i = 0; has_list[i] != NULL; ++i)
11869 if (STRICMP(name, has_list[i]) == 0)
11871 n = TRUE;
11872 break;
11875 if (n == FALSE)
11877 if (STRNICMP(name, "patch", 5) == 0)
11878 n = has_patch(atoi((char *)name + 5));
11879 else if (STRICMP(name, "vim_starting") == 0)
11880 n = (starting != 0);
11881 #ifdef FEAT_MBYTE
11882 else if (STRICMP(name, "multi_byte_encoding") == 0)
11883 n = has_mbyte;
11884 #endif
11885 #if defined(FEAT_BEVAL) && defined(FEAT_GUI_W32)
11886 else if (STRICMP(name, "balloon_multiline") == 0)
11887 n = multiline_balloon_available();
11888 #endif
11889 #ifdef DYNAMIC_TCL
11890 else if (STRICMP(name, "tcl") == 0)
11891 n = tcl_enabled(FALSE);
11892 #endif
11893 #if defined(USE_ICONV) && defined(DYNAMIC_ICONV)
11894 else if (STRICMP(name, "iconv") == 0)
11895 n = iconv_enabled(FALSE);
11896 #endif
11897 #ifdef DYNAMIC_MZSCHEME
11898 else if (STRICMP(name, "mzscheme") == 0)
11899 n = mzscheme_enabled(FALSE);
11900 #endif
11901 #ifdef DYNAMIC_RUBY
11902 else if (STRICMP(name, "ruby") == 0)
11903 n = ruby_enabled(FALSE);
11904 #endif
11905 #ifdef DYNAMIC_PYTHON
11906 else if (STRICMP(name, "python") == 0)
11907 n = python_enabled(FALSE);
11908 #endif
11909 #ifdef DYNAMIC_PERL
11910 else if (STRICMP(name, "perl") == 0)
11911 n = perl_enabled(FALSE);
11912 #endif
11913 #ifdef FEAT_GUI
11914 else if (STRICMP(name, "gui_running") == 0)
11915 n = (gui.in_use || gui.starting);
11916 # ifdef FEAT_GUI_W32
11917 else if (STRICMP(name, "gui_win32s") == 0)
11918 n = gui_is_win32s();
11919 # endif
11920 # ifdef FEAT_BROWSE
11921 else if (STRICMP(name, "browse") == 0)
11922 n = gui.in_use; /* gui_mch_browse() works when GUI is running */
11923 # endif
11924 #endif
11925 #ifdef FEAT_SYN_HL
11926 else if (STRICMP(name, "syntax_items") == 0)
11927 n = syntax_present(curbuf);
11928 #endif
11929 #if defined(WIN3264)
11930 else if (STRICMP(name, "win95") == 0)
11931 n = mch_windows95();
11932 #endif
11933 #ifdef FEAT_NETBEANS_INTG
11934 else if (STRICMP(name, "netbeans_enabled") == 0)
11935 n = usingNetbeans;
11936 #endif
11939 rettv->vval.v_number = n;
11943 * "has_key()" function
11945 static void
11946 f_has_key(argvars, rettv)
11947 typval_T *argvars;
11948 typval_T *rettv;
11950 rettv->vval.v_number = 0;
11951 if (argvars[0].v_type != VAR_DICT)
11953 EMSG(_(e_dictreq));
11954 return;
11956 if (argvars[0].vval.v_dict == NULL)
11957 return;
11959 rettv->vval.v_number = dict_find(argvars[0].vval.v_dict,
11960 get_tv_string(&argvars[1]), -1) != NULL;
11964 * "haslocaldir()" function
11966 /*ARGSUSED*/
11967 static void
11968 f_haslocaldir(argvars, rettv)
11969 typval_T *argvars;
11970 typval_T *rettv;
11972 rettv->vval.v_number = (curwin->w_localdir != NULL);
11976 * "hasmapto()" function
11978 static void
11979 f_hasmapto(argvars, rettv)
11980 typval_T *argvars;
11981 typval_T *rettv;
11983 char_u *name;
11984 char_u *mode;
11985 char_u buf[NUMBUFLEN];
11986 int abbr = FALSE;
11988 name = get_tv_string(&argvars[0]);
11989 if (argvars[1].v_type == VAR_UNKNOWN)
11990 mode = (char_u *)"nvo";
11991 else
11993 mode = get_tv_string_buf(&argvars[1], buf);
11994 if (argvars[2].v_type != VAR_UNKNOWN)
11995 abbr = get_tv_number(&argvars[2]);
11998 if (map_to_exists(name, mode, abbr))
11999 rettv->vval.v_number = TRUE;
12000 else
12001 rettv->vval.v_number = FALSE;
12005 * "histadd()" function
12007 /*ARGSUSED*/
12008 static void
12009 f_histadd(argvars, rettv)
12010 typval_T *argvars;
12011 typval_T *rettv;
12013 #ifdef FEAT_CMDHIST
12014 int histype;
12015 char_u *str;
12016 char_u buf[NUMBUFLEN];
12017 #endif
12019 rettv->vval.v_number = FALSE;
12020 if (check_restricted() || check_secure())
12021 return;
12022 #ifdef FEAT_CMDHIST
12023 str = get_tv_string_chk(&argvars[0]); /* NULL on type error */
12024 histype = str != NULL ? get_histtype(str) : -1;
12025 if (histype >= 0)
12027 str = get_tv_string_buf(&argvars[1], buf);
12028 if (*str != NUL)
12030 add_to_history(histype, str, FALSE, NUL);
12031 rettv->vval.v_number = TRUE;
12032 return;
12035 #endif
12039 * "histdel()" function
12041 /*ARGSUSED*/
12042 static void
12043 f_histdel(argvars, rettv)
12044 typval_T *argvars;
12045 typval_T *rettv;
12047 #ifdef FEAT_CMDHIST
12048 int n;
12049 char_u buf[NUMBUFLEN];
12050 char_u *str;
12052 str = get_tv_string_chk(&argvars[0]); /* NULL on type error */
12053 if (str == NULL)
12054 n = 0;
12055 else if (argvars[1].v_type == VAR_UNKNOWN)
12056 /* only one argument: clear entire history */
12057 n = clr_history(get_histtype(str));
12058 else if (argvars[1].v_type == VAR_NUMBER)
12059 /* index given: remove that entry */
12060 n = del_history_idx(get_histtype(str),
12061 (int)get_tv_number(&argvars[1]));
12062 else
12063 /* string given: remove all matching entries */
12064 n = del_history_entry(get_histtype(str),
12065 get_tv_string_buf(&argvars[1], buf));
12066 rettv->vval.v_number = n;
12067 #else
12068 rettv->vval.v_number = 0;
12069 #endif
12073 * "histget()" function
12075 /*ARGSUSED*/
12076 static void
12077 f_histget(argvars, rettv)
12078 typval_T *argvars;
12079 typval_T *rettv;
12081 #ifdef FEAT_CMDHIST
12082 int type;
12083 int idx;
12084 char_u *str;
12086 str = get_tv_string_chk(&argvars[0]); /* NULL on type error */
12087 if (str == NULL)
12088 rettv->vval.v_string = NULL;
12089 else
12091 type = get_histtype(str);
12092 if (argvars[1].v_type == VAR_UNKNOWN)
12093 idx = get_history_idx(type);
12094 else
12095 idx = (int)get_tv_number_chk(&argvars[1], NULL);
12096 /* -1 on type error */
12097 rettv->vval.v_string = vim_strsave(get_history_entry(type, idx));
12099 #else
12100 rettv->vval.v_string = NULL;
12101 #endif
12102 rettv->v_type = VAR_STRING;
12106 * "histnr()" function
12108 /*ARGSUSED*/
12109 static void
12110 f_histnr(argvars, rettv)
12111 typval_T *argvars;
12112 typval_T *rettv;
12114 int i;
12116 #ifdef FEAT_CMDHIST
12117 char_u *history = get_tv_string_chk(&argvars[0]);
12119 i = history == NULL ? HIST_CMD - 1 : get_histtype(history);
12120 if (i >= HIST_CMD && i < HIST_COUNT)
12121 i = get_history_idx(i);
12122 else
12123 #endif
12124 i = -1;
12125 rettv->vval.v_number = i;
12129 * "highlightID(name)" function
12131 static void
12132 f_hlID(argvars, rettv)
12133 typval_T *argvars;
12134 typval_T *rettv;
12136 rettv->vval.v_number = syn_name2id(get_tv_string(&argvars[0]));
12140 * "highlight_exists()" function
12142 static void
12143 f_hlexists(argvars, rettv)
12144 typval_T *argvars;
12145 typval_T *rettv;
12147 rettv->vval.v_number = highlight_exists(get_tv_string(&argvars[0]));
12151 * "hostname()" function
12153 /*ARGSUSED*/
12154 static void
12155 f_hostname(argvars, rettv)
12156 typval_T *argvars;
12157 typval_T *rettv;
12159 char_u hostname[256];
12161 mch_get_host_name(hostname, 256);
12162 rettv->v_type = VAR_STRING;
12163 rettv->vval.v_string = vim_strsave(hostname);
12167 * iconv() function
12169 /*ARGSUSED*/
12170 static void
12171 f_iconv(argvars, rettv)
12172 typval_T *argvars;
12173 typval_T *rettv;
12175 #ifdef FEAT_MBYTE
12176 char_u buf1[NUMBUFLEN];
12177 char_u buf2[NUMBUFLEN];
12178 char_u *from, *to, *str;
12179 vimconv_T vimconv;
12180 #endif
12182 rettv->v_type = VAR_STRING;
12183 rettv->vval.v_string = NULL;
12185 #ifdef FEAT_MBYTE
12186 str = get_tv_string(&argvars[0]);
12187 from = enc_canonize(enc_skip(get_tv_string_buf(&argvars[1], buf1)));
12188 to = enc_canonize(enc_skip(get_tv_string_buf(&argvars[2], buf2)));
12189 vimconv.vc_type = CONV_NONE;
12190 convert_setup(&vimconv, from, to);
12192 /* If the encodings are equal, no conversion needed. */
12193 if (vimconv.vc_type == CONV_NONE)
12194 rettv->vval.v_string = vim_strsave(str);
12195 else
12196 rettv->vval.v_string = string_convert(&vimconv, str, NULL);
12198 convert_setup(&vimconv, NULL, NULL);
12199 vim_free(from);
12200 vim_free(to);
12201 #endif
12205 * "indent()" function
12207 static void
12208 f_indent(argvars, rettv)
12209 typval_T *argvars;
12210 typval_T *rettv;
12212 linenr_T lnum;
12214 lnum = get_tv_lnum(argvars);
12215 if (lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count)
12216 rettv->vval.v_number = get_indent_lnum(lnum);
12217 else
12218 rettv->vval.v_number = -1;
12222 * "index()" function
12224 static void
12225 f_index(argvars, rettv)
12226 typval_T *argvars;
12227 typval_T *rettv;
12229 list_T *l;
12230 listitem_T *item;
12231 long idx = 0;
12232 int ic = FALSE;
12234 rettv->vval.v_number = -1;
12235 if (argvars[0].v_type != VAR_LIST)
12237 EMSG(_(e_listreq));
12238 return;
12240 l = argvars[0].vval.v_list;
12241 if (l != NULL)
12243 item = l->lv_first;
12244 if (argvars[2].v_type != VAR_UNKNOWN)
12246 int error = FALSE;
12248 /* Start at specified item. Use the cached index that list_find()
12249 * sets, so that a negative number also works. */
12250 item = list_find(l, get_tv_number_chk(&argvars[2], &error));
12251 idx = l->lv_idx;
12252 if (argvars[3].v_type != VAR_UNKNOWN)
12253 ic = get_tv_number_chk(&argvars[3], &error);
12254 if (error)
12255 item = NULL;
12258 for ( ; item != NULL; item = item->li_next, ++idx)
12259 if (tv_equal(&item->li_tv, &argvars[1], ic))
12261 rettv->vval.v_number = idx;
12262 break;
12267 static int inputsecret_flag = 0;
12269 static void get_user_input __ARGS((typval_T *argvars, typval_T *rettv, int inputdialog));
12272 * This function is used by f_input() and f_inputdialog() functions. The third
12273 * argument to f_input() specifies the type of completion to use at the
12274 * prompt. The third argument to f_inputdialog() specifies the value to return
12275 * when the user cancels the prompt.
12277 static void
12278 get_user_input(argvars, rettv, inputdialog)
12279 typval_T *argvars;
12280 typval_T *rettv;
12281 int inputdialog;
12283 char_u *prompt = get_tv_string_chk(&argvars[0]);
12284 char_u *p = NULL;
12285 int c;
12286 char_u buf[NUMBUFLEN];
12287 int cmd_silent_save = cmd_silent;
12288 char_u *defstr = (char_u *)"";
12289 int xp_type = EXPAND_NOTHING;
12290 char_u *xp_arg = NULL;
12292 rettv->v_type = VAR_STRING;
12293 rettv->vval.v_string = NULL;
12295 #ifdef NO_CONSOLE_INPUT
12296 /* While starting up, there is no place to enter text. */
12297 if (no_console_input())
12298 return;
12299 #endif
12301 cmd_silent = FALSE; /* Want to see the prompt. */
12302 if (prompt != NULL)
12304 /* Only the part of the message after the last NL is considered as
12305 * prompt for the command line */
12306 p = vim_strrchr(prompt, '\n');
12307 if (p == NULL)
12308 p = prompt;
12309 else
12311 ++p;
12312 c = *p;
12313 *p = NUL;
12314 msg_start();
12315 msg_clr_eos();
12316 msg_puts_attr(prompt, echo_attr);
12317 msg_didout = FALSE;
12318 msg_starthere();
12319 *p = c;
12321 cmdline_row = msg_row;
12323 if (argvars[1].v_type != VAR_UNKNOWN)
12325 defstr = get_tv_string_buf_chk(&argvars[1], buf);
12326 if (defstr != NULL)
12327 stuffReadbuffSpec(defstr);
12329 if (!inputdialog && argvars[2].v_type != VAR_UNKNOWN)
12331 char_u *xp_name;
12332 int xp_namelen;
12333 long argt;
12335 rettv->vval.v_string = NULL;
12337 xp_name = get_tv_string_buf_chk(&argvars[2], buf);
12338 if (xp_name == NULL)
12339 return;
12341 xp_namelen = (int)STRLEN(xp_name);
12343 if (parse_compl_arg(xp_name, xp_namelen, &xp_type, &argt,
12344 &xp_arg) == FAIL)
12345 return;
12349 if (defstr != NULL)
12350 rettv->vval.v_string =
12351 getcmdline_prompt(inputsecret_flag ? NUL : '@', p, echo_attr,
12352 xp_type, xp_arg);
12354 vim_free(xp_arg);
12356 /* since the user typed this, no need to wait for return */
12357 need_wait_return = FALSE;
12358 msg_didout = FALSE;
12360 cmd_silent = cmd_silent_save;
12364 * "input()" function
12365 * Also handles inputsecret() when inputsecret is set.
12367 static void
12368 f_input(argvars, rettv)
12369 typval_T *argvars;
12370 typval_T *rettv;
12372 get_user_input(argvars, rettv, FALSE);
12376 * "inputdialog()" function
12378 static void
12379 f_inputdialog(argvars, rettv)
12380 typval_T *argvars;
12381 typval_T *rettv;
12383 #if defined(FEAT_GUI_TEXTDIALOG)
12384 /* Use a GUI dialog if the GUI is running and 'c' is not in 'guioptions' */
12385 if (gui.in_use && vim_strchr(p_go, GO_CONDIALOG) == NULL)
12387 char_u *message;
12388 char_u buf[NUMBUFLEN];
12389 char_u *defstr = (char_u *)"";
12391 message = get_tv_string_chk(&argvars[0]);
12392 if (argvars[1].v_type != VAR_UNKNOWN
12393 && (defstr = get_tv_string_buf_chk(&argvars[1], buf)) != NULL)
12394 vim_strncpy(IObuff, defstr, IOSIZE - 1);
12395 else
12396 IObuff[0] = NUL;
12397 if (message != NULL && defstr != NULL
12398 && do_dialog(VIM_QUESTION, NULL, message,
12399 (char_u *)_("&OK\n&Cancel"), 1, IObuff) == 1)
12400 rettv->vval.v_string = vim_strsave(IObuff);
12401 else
12403 if (message != NULL && defstr != NULL
12404 && argvars[1].v_type != VAR_UNKNOWN
12405 && argvars[2].v_type != VAR_UNKNOWN)
12406 rettv->vval.v_string = vim_strsave(
12407 get_tv_string_buf(&argvars[2], buf));
12408 else
12409 rettv->vval.v_string = NULL;
12411 rettv->v_type = VAR_STRING;
12413 else
12414 #endif
12415 get_user_input(argvars, rettv, TRUE);
12419 * "inputlist()" function
12421 static void
12422 f_inputlist(argvars, rettv)
12423 typval_T *argvars;
12424 typval_T *rettv;
12426 listitem_T *li;
12427 int selected;
12428 int mouse_used;
12430 rettv->vval.v_number = 0;
12431 #ifdef NO_CONSOLE_INPUT
12432 /* While starting up, there is no place to enter text. */
12433 if (no_console_input())
12434 return;
12435 #endif
12436 if (argvars[0].v_type != VAR_LIST || argvars[0].vval.v_list == NULL)
12438 EMSG2(_(e_listarg), "inputlist()");
12439 return;
12442 msg_start();
12443 msg_row = Rows - 1; /* for when 'cmdheight' > 1 */
12444 lines_left = Rows; /* avoid more prompt */
12445 msg_scroll = TRUE;
12446 msg_clr_eos();
12448 for (li = argvars[0].vval.v_list->lv_first; li != NULL; li = li->li_next)
12450 msg_puts(get_tv_string(&li->li_tv));
12451 msg_putchar('\n');
12454 /* Ask for choice. */
12455 selected = prompt_for_number(&mouse_used);
12456 if (mouse_used)
12457 selected -= lines_left;
12459 rettv->vval.v_number = selected;
12463 static garray_T ga_userinput = {0, 0, sizeof(tasave_T), 4, NULL};
12466 * "inputrestore()" function
12468 /*ARGSUSED*/
12469 static void
12470 f_inputrestore(argvars, rettv)
12471 typval_T *argvars;
12472 typval_T *rettv;
12474 if (ga_userinput.ga_len > 0)
12476 --ga_userinput.ga_len;
12477 restore_typeahead((tasave_T *)(ga_userinput.ga_data)
12478 + ga_userinput.ga_len);
12479 rettv->vval.v_number = 0; /* OK */
12481 else if (p_verbose > 1)
12483 verb_msg((char_u *)_("called inputrestore() more often than inputsave()"));
12484 rettv->vval.v_number = 1; /* Failed */
12489 * "inputsave()" function
12491 /*ARGSUSED*/
12492 static void
12493 f_inputsave(argvars, rettv)
12494 typval_T *argvars;
12495 typval_T *rettv;
12497 /* Add an entry to the stack of typeahead storage. */
12498 if (ga_grow(&ga_userinput, 1) == OK)
12500 save_typeahead((tasave_T *)(ga_userinput.ga_data)
12501 + ga_userinput.ga_len);
12502 ++ga_userinput.ga_len;
12503 rettv->vval.v_number = 0; /* OK */
12505 else
12506 rettv->vval.v_number = 1; /* Failed */
12510 * "inputsecret()" function
12512 static void
12513 f_inputsecret(argvars, rettv)
12514 typval_T *argvars;
12515 typval_T *rettv;
12517 ++cmdline_star;
12518 ++inputsecret_flag;
12519 f_input(argvars, rettv);
12520 --cmdline_star;
12521 --inputsecret_flag;
12525 * "insert()" function
12527 static void
12528 f_insert(argvars, rettv)
12529 typval_T *argvars;
12530 typval_T *rettv;
12532 long before = 0;
12533 listitem_T *item;
12534 list_T *l;
12535 int error = FALSE;
12537 rettv->vval.v_number = 0;
12538 if (argvars[0].v_type != VAR_LIST)
12539 EMSG2(_(e_listarg), "insert()");
12540 else if ((l = argvars[0].vval.v_list) != NULL
12541 && !tv_check_lock(l->lv_lock, (char_u *)"insert()"))
12543 if (argvars[2].v_type != VAR_UNKNOWN)
12544 before = get_tv_number_chk(&argvars[2], &error);
12545 if (error)
12546 return; /* type error; errmsg already given */
12548 if (before == l->lv_len)
12549 item = NULL;
12550 else
12552 item = list_find(l, before);
12553 if (item == NULL)
12555 EMSGN(_(e_listidx), before);
12556 l = NULL;
12559 if (l != NULL)
12561 list_insert_tv(l, &argvars[1], item);
12562 copy_tv(&argvars[0], rettv);
12568 * "isdirectory()" function
12570 static void
12571 f_isdirectory(argvars, rettv)
12572 typval_T *argvars;
12573 typval_T *rettv;
12575 rettv->vval.v_number = mch_isdir(get_tv_string(&argvars[0]));
12579 * "islocked()" function
12581 static void
12582 f_islocked(argvars, rettv)
12583 typval_T *argvars;
12584 typval_T *rettv;
12586 lval_T lv;
12587 char_u *end;
12588 dictitem_T *di;
12590 rettv->vval.v_number = -1;
12591 end = get_lval(get_tv_string(&argvars[0]), NULL, &lv, FALSE, FALSE, FALSE,
12592 FNE_CHECK_START);
12593 if (end != NULL && lv.ll_name != NULL)
12595 if (*end != NUL)
12596 EMSG(_(e_trailing));
12597 else
12599 if (lv.ll_tv == NULL)
12601 if (check_changedtick(lv.ll_name))
12602 rettv->vval.v_number = 1; /* always locked */
12603 else
12605 di = find_var(lv.ll_name, NULL);
12606 if (di != NULL)
12608 /* Consider a variable locked when:
12609 * 1. the variable itself is locked
12610 * 2. the value of the variable is locked.
12611 * 3. the List or Dict value is locked.
12613 rettv->vval.v_number = ((di->di_flags & DI_FLAGS_LOCK)
12614 || tv_islocked(&di->di_tv));
12618 else if (lv.ll_range)
12619 EMSG(_("E786: Range not allowed"));
12620 else if (lv.ll_newkey != NULL)
12621 EMSG2(_(e_dictkey), lv.ll_newkey);
12622 else if (lv.ll_list != NULL)
12623 /* List item. */
12624 rettv->vval.v_number = tv_islocked(&lv.ll_li->li_tv);
12625 else
12626 /* Dictionary item. */
12627 rettv->vval.v_number = tv_islocked(&lv.ll_di->di_tv);
12631 clear_lval(&lv);
12634 static void dict_list __ARGS((typval_T *argvars, typval_T *rettv, int what));
12637 * Turn a dict into a list:
12638 * "what" == 0: list of keys
12639 * "what" == 1: list of values
12640 * "what" == 2: list of items
12642 static void
12643 dict_list(argvars, rettv, what)
12644 typval_T *argvars;
12645 typval_T *rettv;
12646 int what;
12648 list_T *l2;
12649 dictitem_T *di;
12650 hashitem_T *hi;
12651 listitem_T *li;
12652 listitem_T *li2;
12653 dict_T *d;
12654 int todo;
12656 rettv->vval.v_number = 0;
12657 if (argvars[0].v_type != VAR_DICT)
12659 EMSG(_(e_dictreq));
12660 return;
12662 if ((d = argvars[0].vval.v_dict) == NULL)
12663 return;
12665 if (rettv_list_alloc(rettv) == FAIL)
12666 return;
12668 todo = (int)d->dv_hashtab.ht_used;
12669 for (hi = d->dv_hashtab.ht_array; todo > 0; ++hi)
12671 if (!HASHITEM_EMPTY(hi))
12673 --todo;
12674 di = HI2DI(hi);
12676 li = listitem_alloc();
12677 if (li == NULL)
12678 break;
12679 list_append(rettv->vval.v_list, li);
12681 if (what == 0)
12683 /* keys() */
12684 li->li_tv.v_type = VAR_STRING;
12685 li->li_tv.v_lock = 0;
12686 li->li_tv.vval.v_string = vim_strsave(di->di_key);
12688 else if (what == 1)
12690 /* values() */
12691 copy_tv(&di->di_tv, &li->li_tv);
12693 else
12695 /* items() */
12696 l2 = list_alloc();
12697 li->li_tv.v_type = VAR_LIST;
12698 li->li_tv.v_lock = 0;
12699 li->li_tv.vval.v_list = l2;
12700 if (l2 == NULL)
12701 break;
12702 ++l2->lv_refcount;
12704 li2 = listitem_alloc();
12705 if (li2 == NULL)
12706 break;
12707 list_append(l2, li2);
12708 li2->li_tv.v_type = VAR_STRING;
12709 li2->li_tv.v_lock = 0;
12710 li2->li_tv.vval.v_string = vim_strsave(di->di_key);
12712 li2 = listitem_alloc();
12713 if (li2 == NULL)
12714 break;
12715 list_append(l2, li2);
12716 copy_tv(&di->di_tv, &li2->li_tv);
12723 * "items(dict)" function
12725 static void
12726 f_items(argvars, rettv)
12727 typval_T *argvars;
12728 typval_T *rettv;
12730 dict_list(argvars, rettv, 2);
12734 * "join()" function
12736 static void
12737 f_join(argvars, rettv)
12738 typval_T *argvars;
12739 typval_T *rettv;
12741 garray_T ga;
12742 char_u *sep;
12744 rettv->vval.v_number = 0;
12745 if (argvars[0].v_type != VAR_LIST)
12747 EMSG(_(e_listreq));
12748 return;
12750 if (argvars[0].vval.v_list == NULL)
12751 return;
12752 if (argvars[1].v_type == VAR_UNKNOWN)
12753 sep = (char_u *)" ";
12754 else
12755 sep = get_tv_string_chk(&argvars[1]);
12757 rettv->v_type = VAR_STRING;
12759 if (sep != NULL)
12761 ga_init2(&ga, (int)sizeof(char), 80);
12762 list_join(&ga, argvars[0].vval.v_list, sep, TRUE, 0);
12763 ga_append(&ga, NUL);
12764 rettv->vval.v_string = (char_u *)ga.ga_data;
12766 else
12767 rettv->vval.v_string = NULL;
12771 * "keys()" function
12773 static void
12774 f_keys(argvars, rettv)
12775 typval_T *argvars;
12776 typval_T *rettv;
12778 dict_list(argvars, rettv, 0);
12782 * "last_buffer_nr()" function.
12784 /*ARGSUSED*/
12785 static void
12786 f_last_buffer_nr(argvars, rettv)
12787 typval_T *argvars;
12788 typval_T *rettv;
12790 int n = 0;
12791 buf_T *buf;
12793 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
12794 if (n < buf->b_fnum)
12795 n = buf->b_fnum;
12797 rettv->vval.v_number = n;
12801 * "len()" function
12803 static void
12804 f_len(argvars, rettv)
12805 typval_T *argvars;
12806 typval_T *rettv;
12808 switch (argvars[0].v_type)
12810 case VAR_STRING:
12811 case VAR_NUMBER:
12812 rettv->vval.v_number = (varnumber_T)STRLEN(
12813 get_tv_string(&argvars[0]));
12814 break;
12815 case VAR_LIST:
12816 rettv->vval.v_number = list_len(argvars[0].vval.v_list);
12817 break;
12818 case VAR_DICT:
12819 rettv->vval.v_number = dict_len(argvars[0].vval.v_dict);
12820 break;
12821 default:
12822 EMSG(_("E701: Invalid type for len()"));
12823 break;
12827 static void libcall_common __ARGS((typval_T *argvars, typval_T *rettv, int type));
12829 static void
12830 libcall_common(argvars, rettv, type)
12831 typval_T *argvars;
12832 typval_T *rettv;
12833 int type;
12835 #ifdef FEAT_LIBCALL
12836 char_u *string_in;
12837 char_u **string_result;
12838 int nr_result;
12839 #endif
12841 rettv->v_type = type;
12842 if (type == VAR_NUMBER)
12843 rettv->vval.v_number = 0;
12844 else
12845 rettv->vval.v_string = NULL;
12847 if (check_restricted() || check_secure())
12848 return;
12850 #ifdef FEAT_LIBCALL
12851 /* The first two args must be strings, otherwise its meaningless */
12852 if (argvars[0].v_type == VAR_STRING && argvars[1].v_type == VAR_STRING)
12854 string_in = NULL;
12855 if (argvars[2].v_type == VAR_STRING)
12856 string_in = argvars[2].vval.v_string;
12857 if (type == VAR_NUMBER)
12858 string_result = NULL;
12859 else
12860 string_result = &rettv->vval.v_string;
12861 if (mch_libcall(argvars[0].vval.v_string,
12862 argvars[1].vval.v_string,
12863 string_in,
12864 argvars[2].vval.v_number,
12865 string_result,
12866 &nr_result) == OK
12867 && type == VAR_NUMBER)
12868 rettv->vval.v_number = nr_result;
12870 #endif
12874 * "libcall()" function
12876 static void
12877 f_libcall(argvars, rettv)
12878 typval_T *argvars;
12879 typval_T *rettv;
12881 libcall_common(argvars, rettv, VAR_STRING);
12885 * "libcallnr()" function
12887 static void
12888 f_libcallnr(argvars, rettv)
12889 typval_T *argvars;
12890 typval_T *rettv;
12892 libcall_common(argvars, rettv, VAR_NUMBER);
12896 * "line(string)" function
12898 static void
12899 f_line(argvars, rettv)
12900 typval_T *argvars;
12901 typval_T *rettv;
12903 linenr_T lnum = 0;
12904 pos_T *fp;
12905 int fnum;
12907 fp = var2fpos(&argvars[0], TRUE, &fnum);
12908 if (fp != NULL)
12909 lnum = fp->lnum;
12910 rettv->vval.v_number = lnum;
12914 * "line2byte(lnum)" function
12916 /*ARGSUSED*/
12917 static void
12918 f_line2byte(argvars, rettv)
12919 typval_T *argvars;
12920 typval_T *rettv;
12922 #ifndef FEAT_BYTEOFF
12923 rettv->vval.v_number = -1;
12924 #else
12925 linenr_T lnum;
12927 lnum = get_tv_lnum(argvars);
12928 if (lnum < 1 || lnum > curbuf->b_ml.ml_line_count + 1)
12929 rettv->vval.v_number = -1;
12930 else
12931 rettv->vval.v_number = ml_find_line_or_offset(curbuf, lnum, NULL);
12932 if (rettv->vval.v_number >= 0)
12933 ++rettv->vval.v_number;
12934 #endif
12938 * "lispindent(lnum)" function
12940 static void
12941 f_lispindent(argvars, rettv)
12942 typval_T *argvars;
12943 typval_T *rettv;
12945 #ifdef FEAT_LISP
12946 pos_T pos;
12947 linenr_T lnum;
12949 pos = curwin->w_cursor;
12950 lnum = get_tv_lnum(argvars);
12951 if (lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count)
12953 curwin->w_cursor.lnum = lnum;
12954 rettv->vval.v_number = get_lisp_indent();
12955 curwin->w_cursor = pos;
12957 else
12958 #endif
12959 rettv->vval.v_number = -1;
12963 * "localtime()" function
12965 /*ARGSUSED*/
12966 static void
12967 f_localtime(argvars, rettv)
12968 typval_T *argvars;
12969 typval_T *rettv;
12971 rettv->vval.v_number = (varnumber_T)time(NULL);
12974 static void get_maparg __ARGS((typval_T *argvars, typval_T *rettv, int exact));
12976 static void
12977 get_maparg(argvars, rettv, exact)
12978 typval_T *argvars;
12979 typval_T *rettv;
12980 int exact;
12982 char_u *keys;
12983 char_u *which;
12984 char_u buf[NUMBUFLEN];
12985 char_u *keys_buf = NULL;
12986 char_u *rhs;
12987 int mode;
12988 garray_T ga;
12989 int abbr = FALSE;
12991 /* return empty string for failure */
12992 rettv->v_type = VAR_STRING;
12993 rettv->vval.v_string = NULL;
12995 keys = get_tv_string(&argvars[0]);
12996 if (*keys == NUL)
12997 return;
12999 if (argvars[1].v_type != VAR_UNKNOWN)
13001 which = get_tv_string_buf_chk(&argvars[1], buf);
13002 if (argvars[2].v_type != VAR_UNKNOWN)
13003 abbr = get_tv_number(&argvars[2]);
13005 else
13006 which = (char_u *)"";
13007 if (which == NULL)
13008 return;
13010 mode = get_map_mode(&which, 0);
13012 keys = replace_termcodes(keys, &keys_buf, TRUE, TRUE, FALSE);
13013 rhs = check_map(keys, mode, exact, FALSE, abbr);
13014 vim_free(keys_buf);
13015 if (rhs != NULL)
13017 ga_init(&ga);
13018 ga.ga_itemsize = 1;
13019 ga.ga_growsize = 40;
13021 while (*rhs != NUL)
13022 ga_concat(&ga, str2special(&rhs, FALSE));
13024 ga_append(&ga, NUL);
13025 rettv->vval.v_string = (char_u *)ga.ga_data;
13029 #ifdef FEAT_FLOAT
13031 * "log10()" function
13033 static void
13034 f_log10(argvars, rettv)
13035 typval_T *argvars;
13036 typval_T *rettv;
13038 float_T f;
13040 rettv->v_type = VAR_FLOAT;
13041 if (get_float_arg(argvars, &f) == OK)
13042 rettv->vval.v_float = log10(f);
13043 else
13044 rettv->vval.v_float = 0.0;
13046 #endif
13049 * "map()" function
13051 static void
13052 f_map(argvars, rettv)
13053 typval_T *argvars;
13054 typval_T *rettv;
13056 filter_map(argvars, rettv, TRUE);
13060 * "maparg()" function
13062 static void
13063 f_maparg(argvars, rettv)
13064 typval_T *argvars;
13065 typval_T *rettv;
13067 get_maparg(argvars, rettv, TRUE);
13071 * "mapcheck()" function
13073 static void
13074 f_mapcheck(argvars, rettv)
13075 typval_T *argvars;
13076 typval_T *rettv;
13078 get_maparg(argvars, rettv, FALSE);
13081 static void find_some_match __ARGS((typval_T *argvars, typval_T *rettv, int start));
13083 static void
13084 find_some_match(argvars, rettv, type)
13085 typval_T *argvars;
13086 typval_T *rettv;
13087 int type;
13089 char_u *str = NULL;
13090 char_u *expr = NULL;
13091 char_u *pat;
13092 regmatch_T regmatch;
13093 char_u patbuf[NUMBUFLEN];
13094 char_u strbuf[NUMBUFLEN];
13095 char_u *save_cpo;
13096 long start = 0;
13097 long nth = 1;
13098 colnr_T startcol = 0;
13099 int match = 0;
13100 list_T *l = NULL;
13101 listitem_T *li = NULL;
13102 long idx = 0;
13103 char_u *tofree = NULL;
13105 /* Make 'cpoptions' empty, the 'l' flag should not be used here. */
13106 save_cpo = p_cpo;
13107 p_cpo = (char_u *)"";
13109 rettv->vval.v_number = -1;
13110 if (type == 3)
13112 /* return empty list when there are no matches */
13113 if (rettv_list_alloc(rettv) == FAIL)
13114 goto theend;
13116 else if (type == 2)
13118 rettv->v_type = VAR_STRING;
13119 rettv->vval.v_string = NULL;
13122 if (argvars[0].v_type == VAR_LIST)
13124 if ((l = argvars[0].vval.v_list) == NULL)
13125 goto theend;
13126 li = l->lv_first;
13128 else
13129 expr = str = get_tv_string(&argvars[0]);
13131 pat = get_tv_string_buf_chk(&argvars[1], patbuf);
13132 if (pat == NULL)
13133 goto theend;
13135 if (argvars[2].v_type != VAR_UNKNOWN)
13137 int error = FALSE;
13139 start = get_tv_number_chk(&argvars[2], &error);
13140 if (error)
13141 goto theend;
13142 if (l != NULL)
13144 li = list_find(l, start);
13145 if (li == NULL)
13146 goto theend;
13147 idx = l->lv_idx; /* use the cached index */
13149 else
13151 if (start < 0)
13152 start = 0;
13153 if (start > (long)STRLEN(str))
13154 goto theend;
13155 /* When "count" argument is there ignore matches before "start",
13156 * otherwise skip part of the string. Differs when pattern is "^"
13157 * or "\<". */
13158 if (argvars[3].v_type != VAR_UNKNOWN)
13159 startcol = start;
13160 else
13161 str += start;
13164 if (argvars[3].v_type != VAR_UNKNOWN)
13165 nth = get_tv_number_chk(&argvars[3], &error);
13166 if (error)
13167 goto theend;
13170 regmatch.regprog = vim_regcomp(pat, RE_MAGIC + RE_STRING);
13171 if (regmatch.regprog != NULL)
13173 regmatch.rm_ic = p_ic;
13175 for (;;)
13177 if (l != NULL)
13179 if (li == NULL)
13181 match = FALSE;
13182 break;
13184 vim_free(tofree);
13185 str = echo_string(&li->li_tv, &tofree, strbuf, 0);
13186 if (str == NULL)
13187 break;
13190 match = vim_regexec_nl(&regmatch, str, (colnr_T)startcol);
13192 if (match && --nth <= 0)
13193 break;
13194 if (l == NULL && !match)
13195 break;
13197 /* Advance to just after the match. */
13198 if (l != NULL)
13200 li = li->li_next;
13201 ++idx;
13203 else
13205 #ifdef FEAT_MBYTE
13206 startcol = (colnr_T)(regmatch.startp[0]
13207 + (*mb_ptr2len)(regmatch.startp[0]) - str);
13208 #else
13209 startcol = regmatch.startp[0] + 1 - str;
13210 #endif
13214 if (match)
13216 if (type == 3)
13218 int i;
13220 /* return list with matched string and submatches */
13221 for (i = 0; i < NSUBEXP; ++i)
13223 if (regmatch.endp[i] == NULL)
13225 if (list_append_string(rettv->vval.v_list,
13226 (char_u *)"", 0) == FAIL)
13227 break;
13229 else if (list_append_string(rettv->vval.v_list,
13230 regmatch.startp[i],
13231 (int)(regmatch.endp[i] - regmatch.startp[i]))
13232 == FAIL)
13233 break;
13236 else if (type == 2)
13238 /* return matched string */
13239 if (l != NULL)
13240 copy_tv(&li->li_tv, rettv);
13241 else
13242 rettv->vval.v_string = vim_strnsave(regmatch.startp[0],
13243 (int)(regmatch.endp[0] - regmatch.startp[0]));
13245 else if (l != NULL)
13246 rettv->vval.v_number = idx;
13247 else
13249 if (type != 0)
13250 rettv->vval.v_number =
13251 (varnumber_T)(regmatch.startp[0] - str);
13252 else
13253 rettv->vval.v_number =
13254 (varnumber_T)(regmatch.endp[0] - str);
13255 rettv->vval.v_number += (varnumber_T)(str - expr);
13258 vim_free(regmatch.regprog);
13261 theend:
13262 vim_free(tofree);
13263 p_cpo = save_cpo;
13267 * "match()" function
13269 static void
13270 f_match(argvars, rettv)
13271 typval_T *argvars;
13272 typval_T *rettv;
13274 find_some_match(argvars, rettv, 1);
13278 * "matchadd()" function
13280 static void
13281 f_matchadd(argvars, rettv)
13282 typval_T *argvars;
13283 typval_T *rettv;
13285 #ifdef FEAT_SEARCH_EXTRA
13286 char_u buf[NUMBUFLEN];
13287 char_u *grp = get_tv_string_buf_chk(&argvars[0], buf); /* group */
13288 char_u *pat = get_tv_string_buf_chk(&argvars[1], buf); /* pattern */
13289 int prio = 10; /* default priority */
13290 int id = -1;
13291 int error = FALSE;
13293 rettv->vval.v_number = -1;
13295 if (grp == NULL || pat == NULL)
13296 return;
13297 if (argvars[2].v_type != VAR_UNKNOWN)
13299 prio = get_tv_number_chk(&argvars[2], &error);
13300 if (argvars[3].v_type != VAR_UNKNOWN)
13301 id = get_tv_number_chk(&argvars[3], &error);
13303 if (error == TRUE)
13304 return;
13305 if (id >= 1 && id <= 3)
13307 EMSGN("E798: ID is reserved for \":match\": %ld", id);
13308 return;
13311 rettv->vval.v_number = match_add(curwin, grp, pat, prio, id);
13312 #endif
13316 * "matcharg()" function
13318 static void
13319 f_matcharg(argvars, rettv)
13320 typval_T *argvars;
13321 typval_T *rettv;
13323 if (rettv_list_alloc(rettv) == OK)
13325 #ifdef FEAT_SEARCH_EXTRA
13326 int id = get_tv_number(&argvars[0]);
13327 matchitem_T *m;
13329 if (id >= 1 && id <= 3)
13331 if ((m = (matchitem_T *)get_match(curwin, id)) != NULL)
13333 list_append_string(rettv->vval.v_list,
13334 syn_id2name(m->hlg_id), -1);
13335 list_append_string(rettv->vval.v_list, m->pattern, -1);
13337 else
13339 list_append_string(rettv->vval.v_list, NUL, -1);
13340 list_append_string(rettv->vval.v_list, NUL, -1);
13343 #endif
13348 * "matchdelete()" function
13350 static void
13351 f_matchdelete(argvars, rettv)
13352 typval_T *argvars;
13353 typval_T *rettv;
13355 #ifdef FEAT_SEARCH_EXTRA
13356 rettv->vval.v_number = match_delete(curwin,
13357 (int)get_tv_number(&argvars[0]), TRUE);
13358 #endif
13362 * "matchend()" function
13364 static void
13365 f_matchend(argvars, rettv)
13366 typval_T *argvars;
13367 typval_T *rettv;
13369 find_some_match(argvars, rettv, 0);
13373 * "matchlist()" function
13375 static void
13376 f_matchlist(argvars, rettv)
13377 typval_T *argvars;
13378 typval_T *rettv;
13380 find_some_match(argvars, rettv, 3);
13384 * "matchstr()" function
13386 static void
13387 f_matchstr(argvars, rettv)
13388 typval_T *argvars;
13389 typval_T *rettv;
13391 find_some_match(argvars, rettv, 2);
13394 static void max_min __ARGS((typval_T *argvars, typval_T *rettv, int domax));
13396 static void
13397 max_min(argvars, rettv, domax)
13398 typval_T *argvars;
13399 typval_T *rettv;
13400 int domax;
13402 long n = 0;
13403 long i;
13404 int error = FALSE;
13406 if (argvars[0].v_type == VAR_LIST)
13408 list_T *l;
13409 listitem_T *li;
13411 l = argvars[0].vval.v_list;
13412 if (l != NULL)
13414 li = l->lv_first;
13415 if (li != NULL)
13417 n = get_tv_number_chk(&li->li_tv, &error);
13418 for (;;)
13420 li = li->li_next;
13421 if (li == NULL)
13422 break;
13423 i = get_tv_number_chk(&li->li_tv, &error);
13424 if (domax ? i > n : i < n)
13425 n = i;
13430 else if (argvars[0].v_type == VAR_DICT)
13432 dict_T *d;
13433 int first = TRUE;
13434 hashitem_T *hi;
13435 int todo;
13437 d = argvars[0].vval.v_dict;
13438 if (d != NULL)
13440 todo = (int)d->dv_hashtab.ht_used;
13441 for (hi = d->dv_hashtab.ht_array; todo > 0; ++hi)
13443 if (!HASHITEM_EMPTY(hi))
13445 --todo;
13446 i = get_tv_number_chk(&HI2DI(hi)->di_tv, &error);
13447 if (first)
13449 n = i;
13450 first = FALSE;
13452 else if (domax ? i > n : i < n)
13453 n = i;
13458 else
13459 EMSG(_(e_listdictarg));
13460 rettv->vval.v_number = error ? 0 : n;
13464 * "max()" function
13466 static void
13467 f_max(argvars, rettv)
13468 typval_T *argvars;
13469 typval_T *rettv;
13471 max_min(argvars, rettv, TRUE);
13475 * "min()" function
13477 static void
13478 f_min(argvars, rettv)
13479 typval_T *argvars;
13480 typval_T *rettv;
13482 max_min(argvars, rettv, FALSE);
13485 static int mkdir_recurse __ARGS((char_u *dir, int prot));
13488 * Create the directory in which "dir" is located, and higher levels when
13489 * needed.
13491 static int
13492 mkdir_recurse(dir, prot)
13493 char_u *dir;
13494 int prot;
13496 char_u *p;
13497 char_u *updir;
13498 int r = FAIL;
13500 /* Get end of directory name in "dir".
13501 * We're done when it's "/" or "c:/". */
13502 p = gettail_sep(dir);
13503 if (p <= get_past_head(dir))
13504 return OK;
13506 /* If the directory exists we're done. Otherwise: create it.*/
13507 updir = vim_strnsave(dir, (int)(p - dir));
13508 if (updir == NULL)
13509 return FAIL;
13510 if (mch_isdir(updir))
13511 r = OK;
13512 else if (mkdir_recurse(updir, prot) == OK)
13513 r = vim_mkdir_emsg(updir, prot);
13514 vim_free(updir);
13515 return r;
13518 #ifdef vim_mkdir
13520 * "mkdir()" function
13522 static void
13523 f_mkdir(argvars, rettv)
13524 typval_T *argvars;
13525 typval_T *rettv;
13527 char_u *dir;
13528 char_u buf[NUMBUFLEN];
13529 int prot = 0755;
13531 rettv->vval.v_number = FAIL;
13532 if (check_restricted() || check_secure())
13533 return;
13535 dir = get_tv_string_buf(&argvars[0], buf);
13536 if (argvars[1].v_type != VAR_UNKNOWN)
13538 if (argvars[2].v_type != VAR_UNKNOWN)
13539 prot = get_tv_number_chk(&argvars[2], NULL);
13540 if (prot != -1 && STRCMP(get_tv_string(&argvars[1]), "p") == 0)
13541 mkdir_recurse(dir, prot);
13543 rettv->vval.v_number = prot != -1 ? vim_mkdir_emsg(dir, prot) : 0;
13545 #endif
13548 * "mode()" function
13550 /*ARGSUSED*/
13551 static void
13552 f_mode(argvars, rettv)
13553 typval_T *argvars;
13554 typval_T *rettv;
13556 char_u buf[3];
13558 buf[1] = NUL;
13559 buf[2] = NUL;
13561 #ifdef FEAT_VISUAL
13562 if (VIsual_active)
13564 if (VIsual_select)
13565 buf[0] = VIsual_mode + 's' - 'v';
13566 else
13567 buf[0] = VIsual_mode;
13569 else
13570 #endif
13571 if (State == HITRETURN || State == ASKMORE || State == SETWSIZE
13572 || State == CONFIRM)
13574 buf[0] = 'r';
13575 if (State == ASKMORE)
13576 buf[1] = 'm';
13577 else if (State == CONFIRM)
13578 buf[1] = '?';
13580 else if (State == EXTERNCMD)
13581 buf[0] = '!';
13582 else if (State & INSERT)
13584 #ifdef FEAT_VREPLACE
13585 if (State & VREPLACE_FLAG)
13587 buf[0] = 'R';
13588 buf[1] = 'v';
13590 else
13591 #endif
13592 if (State & REPLACE_FLAG)
13593 buf[0] = 'R';
13594 else
13595 buf[0] = 'i';
13597 else if (State & CMDLINE)
13599 buf[0] = 'c';
13600 if (exmode_active)
13601 buf[1] = 'v';
13603 else if (exmode_active)
13605 buf[0] = 'c';
13606 buf[1] = 'e';
13608 else
13610 buf[0] = 'n';
13611 if (finish_op)
13612 buf[1] = 'o';
13615 /* Clear out the minor mode when the argument is not a non-zero number or
13616 * non-empty string. */
13617 if (!non_zero_arg(&argvars[0]))
13618 buf[1] = NUL;
13620 rettv->vval.v_string = vim_strsave(buf);
13621 rettv->v_type = VAR_STRING;
13625 * "nextnonblank()" function
13627 static void
13628 f_nextnonblank(argvars, rettv)
13629 typval_T *argvars;
13630 typval_T *rettv;
13632 linenr_T lnum;
13634 for (lnum = get_tv_lnum(argvars); ; ++lnum)
13636 if (lnum < 0 || lnum > curbuf->b_ml.ml_line_count)
13638 lnum = 0;
13639 break;
13641 if (*skipwhite(ml_get(lnum)) != NUL)
13642 break;
13644 rettv->vval.v_number = lnum;
13648 * "nr2char()" function
13650 static void
13651 f_nr2char(argvars, rettv)
13652 typval_T *argvars;
13653 typval_T *rettv;
13655 char_u buf[NUMBUFLEN];
13657 #ifdef FEAT_MBYTE
13658 if (has_mbyte)
13659 buf[(*mb_char2bytes)((int)get_tv_number(&argvars[0]), buf)] = NUL;
13660 else
13661 #endif
13663 buf[0] = (char_u)get_tv_number(&argvars[0]);
13664 buf[1] = NUL;
13666 rettv->v_type = VAR_STRING;
13667 rettv->vval.v_string = vim_strsave(buf);
13671 * "pathshorten()" function
13673 static void
13674 f_pathshorten(argvars, rettv)
13675 typval_T *argvars;
13676 typval_T *rettv;
13678 char_u *p;
13680 rettv->v_type = VAR_STRING;
13681 p = get_tv_string_chk(&argvars[0]);
13682 if (p == NULL)
13683 rettv->vval.v_string = NULL;
13684 else
13686 p = vim_strsave(p);
13687 rettv->vval.v_string = p;
13688 if (p != NULL)
13689 shorten_dir(p);
13693 #ifdef FEAT_FLOAT
13695 * "pow()" function
13697 static void
13698 f_pow(argvars, rettv)
13699 typval_T *argvars;
13700 typval_T *rettv;
13702 float_T fx, fy;
13704 rettv->v_type = VAR_FLOAT;
13705 if (get_float_arg(argvars, &fx) == OK
13706 && get_float_arg(&argvars[1], &fy) == OK)
13707 rettv->vval.v_float = pow(fx, fy);
13708 else
13709 rettv->vval.v_float = 0.0;
13711 #endif
13714 * "prevnonblank()" function
13716 static void
13717 f_prevnonblank(argvars, rettv)
13718 typval_T *argvars;
13719 typval_T *rettv;
13721 linenr_T lnum;
13723 lnum = get_tv_lnum(argvars);
13724 if (lnum < 1 || lnum > curbuf->b_ml.ml_line_count)
13725 lnum = 0;
13726 else
13727 while (lnum >= 1 && *skipwhite(ml_get(lnum)) == NUL)
13728 --lnum;
13729 rettv->vval.v_number = lnum;
13732 #ifdef HAVE_STDARG_H
13733 /* This dummy va_list is here because:
13734 * - passing a NULL pointer doesn't work when va_list isn't a pointer
13735 * - locally in the function results in a "used before set" warning
13736 * - using va_start() to initialize it gives "function with fixed args" error */
13737 static va_list ap;
13738 #endif
13741 * "printf()" function
13743 static void
13744 f_printf(argvars, rettv)
13745 typval_T *argvars;
13746 typval_T *rettv;
13748 rettv->v_type = VAR_STRING;
13749 rettv->vval.v_string = NULL;
13750 #ifdef HAVE_STDARG_H /* only very old compilers can't do this */
13752 char_u buf[NUMBUFLEN];
13753 int len;
13754 char_u *s;
13755 int saved_did_emsg = did_emsg;
13756 char *fmt;
13758 /* Get the required length, allocate the buffer and do it for real. */
13759 did_emsg = FALSE;
13760 fmt = (char *)get_tv_string_buf(&argvars[0], buf);
13761 len = vim_vsnprintf(NULL, 0, fmt, ap, argvars + 1);
13762 if (!did_emsg)
13764 s = alloc(len + 1);
13765 if (s != NULL)
13767 rettv->vval.v_string = s;
13768 (void)vim_vsnprintf((char *)s, len + 1, fmt, ap, argvars + 1);
13771 did_emsg |= saved_did_emsg;
13773 #endif
13777 * "pumvisible()" function
13779 /*ARGSUSED*/
13780 static void
13781 f_pumvisible(argvars, rettv)
13782 typval_T *argvars;
13783 typval_T *rettv;
13785 rettv->vval.v_number = 0;
13786 #ifdef FEAT_INS_EXPAND
13787 if (pum_visible())
13788 rettv->vval.v_number = 1;
13789 #endif
13793 * "range()" function
13795 static void
13796 f_range(argvars, rettv)
13797 typval_T *argvars;
13798 typval_T *rettv;
13800 long start;
13801 long end;
13802 long stride = 1;
13803 long i;
13804 int error = FALSE;
13806 start = get_tv_number_chk(&argvars[0], &error);
13807 if (argvars[1].v_type == VAR_UNKNOWN)
13809 end = start - 1;
13810 start = 0;
13812 else
13814 end = get_tv_number_chk(&argvars[1], &error);
13815 if (argvars[2].v_type != VAR_UNKNOWN)
13816 stride = get_tv_number_chk(&argvars[2], &error);
13819 rettv->vval.v_number = 0;
13820 if (error)
13821 return; /* type error; errmsg already given */
13822 if (stride == 0)
13823 EMSG(_("E726: Stride is zero"));
13824 else if (stride > 0 ? end + 1 < start : end - 1 > start)
13825 EMSG(_("E727: Start past end"));
13826 else
13828 if (rettv_list_alloc(rettv) == OK)
13829 for (i = start; stride > 0 ? i <= end : i >= end; i += stride)
13830 if (list_append_number(rettv->vval.v_list,
13831 (varnumber_T)i) == FAIL)
13832 break;
13837 * "readfile()" function
13839 static void
13840 f_readfile(argvars, rettv)
13841 typval_T *argvars;
13842 typval_T *rettv;
13844 int binary = FALSE;
13845 char_u *fname;
13846 FILE *fd;
13847 listitem_T *li;
13848 #define FREAD_SIZE 200 /* optimized for text lines */
13849 char_u buf[FREAD_SIZE];
13850 int readlen; /* size of last fread() */
13851 int buflen; /* nr of valid chars in buf[] */
13852 int filtd; /* how much in buf[] was NUL -> '\n' filtered */
13853 int tolist; /* first byte in buf[] still to be put in list */
13854 int chop; /* how many CR to chop off */
13855 char_u *prev = NULL; /* previously read bytes, if any */
13856 int prevlen = 0; /* length of "prev" if not NULL */
13857 char_u *s;
13858 int len;
13859 long maxline = MAXLNUM;
13860 long cnt = 0;
13862 if (argvars[1].v_type != VAR_UNKNOWN)
13864 if (STRCMP(get_tv_string(&argvars[1]), "b") == 0)
13865 binary = TRUE;
13866 if (argvars[2].v_type != VAR_UNKNOWN)
13867 maxline = get_tv_number(&argvars[2]);
13870 if (rettv_list_alloc(rettv) == FAIL)
13871 return;
13873 /* Always open the file in binary mode, library functions have a mind of
13874 * their own about CR-LF conversion. */
13875 fname = get_tv_string(&argvars[0]);
13876 if (*fname == NUL || (fd = mch_fopen((char *)fname, READBIN)) == NULL)
13878 EMSG2(_(e_notopen), *fname == NUL ? (char_u *)_("<empty>") : fname);
13879 return;
13882 filtd = 0;
13883 while (cnt < maxline || maxline < 0)
13885 readlen = (int)fread(buf + filtd, 1, FREAD_SIZE - filtd, fd);
13886 buflen = filtd + readlen;
13887 tolist = 0;
13888 for ( ; filtd < buflen || readlen <= 0; ++filtd)
13890 if (buf[filtd] == '\n' || readlen <= 0)
13892 /* Only when in binary mode add an empty list item when the
13893 * last line ends in a '\n'. */
13894 if (!binary && readlen == 0 && filtd == 0)
13895 break;
13897 /* Found end-of-line or end-of-file: add a text line to the
13898 * list. */
13899 chop = 0;
13900 if (!binary)
13901 while (filtd - chop - 1 >= tolist
13902 && buf[filtd - chop - 1] == '\r')
13903 ++chop;
13904 len = filtd - tolist - chop;
13905 if (prev == NULL)
13906 s = vim_strnsave(buf + tolist, len);
13907 else
13909 s = alloc((unsigned)(prevlen + len + 1));
13910 if (s != NULL)
13912 mch_memmove(s, prev, prevlen);
13913 vim_free(prev);
13914 prev = NULL;
13915 mch_memmove(s + prevlen, buf + tolist, len);
13916 s[prevlen + len] = NUL;
13919 tolist = filtd + 1;
13921 li = listitem_alloc();
13922 if (li == NULL)
13924 vim_free(s);
13925 break;
13927 li->li_tv.v_type = VAR_STRING;
13928 li->li_tv.v_lock = 0;
13929 li->li_tv.vval.v_string = s;
13930 list_append(rettv->vval.v_list, li);
13932 if (++cnt >= maxline && maxline >= 0)
13933 break;
13934 if (readlen <= 0)
13935 break;
13937 else if (buf[filtd] == NUL)
13938 buf[filtd] = '\n';
13940 if (readlen <= 0)
13941 break;
13943 if (tolist == 0)
13945 /* "buf" is full, need to move text to an allocated buffer */
13946 if (prev == NULL)
13948 prev = vim_strnsave(buf, buflen);
13949 prevlen = buflen;
13951 else
13953 s = alloc((unsigned)(prevlen + buflen));
13954 if (s != NULL)
13956 mch_memmove(s, prev, prevlen);
13957 mch_memmove(s + prevlen, buf, buflen);
13958 vim_free(prev);
13959 prev = s;
13960 prevlen += buflen;
13963 filtd = 0;
13965 else
13967 mch_memmove(buf, buf + tolist, buflen - tolist);
13968 filtd -= tolist;
13973 * For a negative line count use only the lines at the end of the file,
13974 * free the rest.
13976 if (maxline < 0)
13977 while (cnt > -maxline)
13979 listitem_remove(rettv->vval.v_list, rettv->vval.v_list->lv_first);
13980 --cnt;
13983 vim_free(prev);
13984 fclose(fd);
13987 #if defined(FEAT_RELTIME)
13988 static int list2proftime __ARGS((typval_T *arg, proftime_T *tm));
13991 * Convert a List to proftime_T.
13992 * Return FAIL when there is something wrong.
13994 static int
13995 list2proftime(arg, tm)
13996 typval_T *arg;
13997 proftime_T *tm;
13999 long n1, n2;
14000 int error = FALSE;
14002 if (arg->v_type != VAR_LIST || arg->vval.v_list == NULL
14003 || arg->vval.v_list->lv_len != 2)
14004 return FAIL;
14005 n1 = list_find_nr(arg->vval.v_list, 0L, &error);
14006 n2 = list_find_nr(arg->vval.v_list, 1L, &error);
14007 # ifdef WIN3264
14008 tm->HighPart = n1;
14009 tm->LowPart = n2;
14010 # else
14011 tm->tv_sec = n1;
14012 tm->tv_usec = n2;
14013 # endif
14014 return error ? FAIL : OK;
14016 #endif /* FEAT_RELTIME */
14019 * "reltime()" function
14021 static void
14022 f_reltime(argvars, rettv)
14023 typval_T *argvars;
14024 typval_T *rettv;
14026 #ifdef FEAT_RELTIME
14027 proftime_T res;
14028 proftime_T start;
14030 if (argvars[0].v_type == VAR_UNKNOWN)
14032 /* No arguments: get current time. */
14033 profile_start(&res);
14035 else if (argvars[1].v_type == VAR_UNKNOWN)
14037 if (list2proftime(&argvars[0], &res) == FAIL)
14038 return;
14039 profile_end(&res);
14041 else
14043 /* Two arguments: compute the difference. */
14044 if (list2proftime(&argvars[0], &start) == FAIL
14045 || list2proftime(&argvars[1], &res) == FAIL)
14046 return;
14047 profile_sub(&res, &start);
14050 if (rettv_list_alloc(rettv) == OK)
14052 long n1, n2;
14054 # ifdef WIN3264
14055 n1 = res.HighPart;
14056 n2 = res.LowPart;
14057 # else
14058 n1 = res.tv_sec;
14059 n2 = res.tv_usec;
14060 # endif
14061 list_append_number(rettv->vval.v_list, (varnumber_T)n1);
14062 list_append_number(rettv->vval.v_list, (varnumber_T)n2);
14064 #endif
14068 * "reltimestr()" function
14070 static void
14071 f_reltimestr(argvars, rettv)
14072 typval_T *argvars;
14073 typval_T *rettv;
14075 #ifdef FEAT_RELTIME
14076 proftime_T tm;
14077 #endif
14079 rettv->v_type = VAR_STRING;
14080 rettv->vval.v_string = NULL;
14081 #ifdef FEAT_RELTIME
14082 if (list2proftime(&argvars[0], &tm) == OK)
14083 rettv->vval.v_string = vim_strsave((char_u *)profile_msg(&tm));
14084 #endif
14087 #if defined(FEAT_CLIENTSERVER) && defined(FEAT_X11)
14088 static void make_connection __ARGS((void));
14089 static int check_connection __ARGS((void));
14091 static void
14092 make_connection()
14094 if (X_DISPLAY == NULL
14095 # ifdef FEAT_GUI
14096 && !gui.in_use
14097 # endif
14100 x_force_connect = TRUE;
14101 setup_term_clip();
14102 x_force_connect = FALSE;
14106 static int
14107 check_connection()
14109 make_connection();
14110 if (X_DISPLAY == NULL)
14112 EMSG(_("E240: No connection to Vim server"));
14113 return FAIL;
14115 return OK;
14117 #endif
14119 #ifdef FEAT_CLIENTSERVER
14120 static void remote_common __ARGS((typval_T *argvars, typval_T *rettv, int expr));
14122 static void
14123 remote_common(argvars, rettv, expr)
14124 typval_T *argvars;
14125 typval_T *rettv;
14126 int expr;
14128 char_u *server_name;
14129 char_u *keys;
14130 char_u *r = NULL;
14131 char_u buf[NUMBUFLEN];
14132 # ifdef WIN32
14133 HWND w;
14134 # elif defined(FEAT_X11)
14135 Window w;
14136 # elif defined(MAC_CLIENTSERVER)
14137 int w; // This is the port number ('w' is a bit confusing)
14138 # endif
14140 if (check_restricted() || check_secure())
14141 return;
14143 # ifdef FEAT_X11
14144 if (check_connection() == FAIL)
14145 return;
14146 # endif
14148 server_name = get_tv_string_chk(&argvars[0]);
14149 if (server_name == NULL)
14150 return; /* type error; errmsg already given */
14151 keys = get_tv_string_buf(&argvars[1], buf);
14152 # ifdef WIN32
14153 if (serverSendToVim(server_name, keys, &r, &w, expr, TRUE) < 0)
14154 # elif defined(FEAT_X11)
14155 if (serverSendToVim(X_DISPLAY, server_name, keys, &r, &w, expr, 0, TRUE)
14156 < 0)
14157 # elif defined(MAC_CLIENTSERVER)
14158 if (serverSendToVim(server_name, keys, &r, &w, expr, TRUE) < 0)
14159 # endif
14161 if (r != NULL)
14162 EMSG(r); /* sending worked but evaluation failed */
14163 else
14164 EMSG2(_("E241: Unable to send to %s"), server_name);
14165 return;
14168 rettv->vval.v_string = r;
14170 if (argvars[2].v_type != VAR_UNKNOWN)
14172 dictitem_T v;
14173 char_u str[30];
14174 char_u *idvar;
14176 sprintf((char *)str, PRINTF_HEX_LONG_U, (long_u)w);
14177 v.di_tv.v_type = VAR_STRING;
14178 v.di_tv.vval.v_string = vim_strsave(str);
14179 idvar = get_tv_string_chk(&argvars[2]);
14180 if (idvar != NULL)
14181 set_var(idvar, &v.di_tv, FALSE);
14182 vim_free(v.di_tv.vval.v_string);
14185 #endif
14188 * "remote_expr()" function
14190 /*ARGSUSED*/
14191 static void
14192 f_remote_expr(argvars, rettv)
14193 typval_T *argvars;
14194 typval_T *rettv;
14196 rettv->v_type = VAR_STRING;
14197 rettv->vval.v_string = NULL;
14198 #ifdef FEAT_CLIENTSERVER
14199 remote_common(argvars, rettv, TRUE);
14200 #endif
14204 * "remote_foreground()" function
14206 /*ARGSUSED*/
14207 static void
14208 f_remote_foreground(argvars, rettv)
14209 typval_T *argvars;
14210 typval_T *rettv;
14212 rettv->vval.v_number = 0;
14213 #ifdef FEAT_CLIENTSERVER
14214 # ifdef WIN32
14215 /* On Win32 it's done in this application. */
14217 char_u *server_name = get_tv_string_chk(&argvars[0]);
14219 if (server_name != NULL)
14220 serverForeground(server_name);
14222 # elif defined(FEAT_X11) || defined(MAC_CLIENTSERVER)
14223 /* Send a foreground() expression to the server. */
14224 argvars[1].v_type = VAR_STRING;
14225 argvars[1].vval.v_string = vim_strsave((char_u *)"foreground()");
14226 argvars[2].v_type = VAR_UNKNOWN;
14227 remote_common(argvars, rettv, TRUE);
14228 vim_free(argvars[1].vval.v_string);
14229 # endif
14230 #endif
14233 /*ARGSUSED*/
14234 static void
14235 f_remote_peek(argvars, rettv)
14236 typval_T *argvars;
14237 typval_T *rettv;
14239 #ifdef FEAT_CLIENTSERVER
14240 dictitem_T v;
14241 char_u *s = NULL;
14242 # ifdef WIN32
14243 long_u n = 0;
14244 # endif
14245 char_u *serverid;
14247 if (check_restricted() || check_secure())
14249 rettv->vval.v_number = -1;
14250 return;
14252 serverid = get_tv_string_chk(&argvars[0]);
14253 if (serverid == NULL)
14255 rettv->vval.v_number = -1;
14256 return; /* type error; errmsg already given */
14258 # ifdef WIN32
14259 sscanf(serverid, SCANF_HEX_LONG_U, &n);
14260 if (n == 0)
14261 rettv->vval.v_number = -1;
14262 else
14264 s = serverGetReply((HWND)n, FALSE, FALSE, FALSE);
14265 rettv->vval.v_number = (s != NULL);
14267 # elif defined(FEAT_X11)
14268 rettv->vval.v_number = 0;
14269 if (check_connection() == FAIL)
14270 return;
14272 rettv->vval.v_number = serverPeekReply(X_DISPLAY,
14273 serverStrToWin(serverid), &s);
14274 # elif defined(MAC_CLIENTSERVER)
14275 rettv->vval.v_number = serverPeekReply(serverStrToPort(serverid), &s);
14276 # endif
14278 if (argvars[1].v_type != VAR_UNKNOWN && rettv->vval.v_number > 0)
14280 char_u *retvar;
14282 v.di_tv.v_type = VAR_STRING;
14283 v.di_tv.vval.v_string = vim_strsave(s);
14284 retvar = get_tv_string_chk(&argvars[1]);
14285 if (retvar != NULL)
14286 set_var(retvar, &v.di_tv, FALSE);
14287 vim_free(v.di_tv.vval.v_string);
14289 #else
14290 rettv->vval.v_number = -1;
14291 #endif
14294 /*ARGSUSED*/
14295 static void
14296 f_remote_read(argvars, rettv)
14297 typval_T *argvars;
14298 typval_T *rettv;
14300 char_u *r = NULL;
14302 #ifdef FEAT_CLIENTSERVER
14303 char_u *serverid = get_tv_string_chk(&argvars[0]);
14305 if (serverid != NULL && !check_restricted() && !check_secure())
14307 # ifdef WIN32
14308 /* The server's HWND is encoded in the 'id' parameter */
14309 long_u n = 0;
14311 sscanf(serverid, SCANF_HEX_LONG_U, &n);
14312 if (n != 0)
14313 r = serverGetReply((HWND)n, FALSE, TRUE, TRUE);
14314 if (r == NULL)
14315 # elif defined(FEAT_X11)
14316 if (check_connection() == FAIL || serverReadReply(X_DISPLAY,
14317 serverStrToWin(serverid), &r, FALSE) < 0)
14318 # elif defined(MAC_CLIENTSERVER)
14319 if (serverReadReply(serverStrToPort(serverid), &r) < 0)
14320 # endif
14321 EMSG(_("E277: Unable to read a server reply"));
14323 #endif
14324 rettv->v_type = VAR_STRING;
14325 rettv->vval.v_string = r;
14329 * "remote_send()" function
14331 /*ARGSUSED*/
14332 static void
14333 f_remote_send(argvars, rettv)
14334 typval_T *argvars;
14335 typval_T *rettv;
14337 rettv->v_type = VAR_STRING;
14338 rettv->vval.v_string = NULL;
14339 #ifdef FEAT_CLIENTSERVER
14340 remote_common(argvars, rettv, FALSE);
14341 #endif
14345 * "remove()" function
14347 static void
14348 f_remove(argvars, rettv)
14349 typval_T *argvars;
14350 typval_T *rettv;
14352 list_T *l;
14353 listitem_T *item, *item2;
14354 listitem_T *li;
14355 long idx;
14356 long end;
14357 char_u *key;
14358 dict_T *d;
14359 dictitem_T *di;
14361 rettv->vval.v_number = 0;
14362 if (argvars[0].v_type == VAR_DICT)
14364 if (argvars[2].v_type != VAR_UNKNOWN)
14365 EMSG2(_(e_toomanyarg), "remove()");
14366 else if ((d = argvars[0].vval.v_dict) != NULL
14367 && !tv_check_lock(d->dv_lock, (char_u *)"remove() argument"))
14369 key = get_tv_string_chk(&argvars[1]);
14370 if (key != NULL)
14372 di = dict_find(d, key, -1);
14373 if (di == NULL)
14374 EMSG2(_(e_dictkey), key);
14375 else
14377 *rettv = di->di_tv;
14378 init_tv(&di->di_tv);
14379 dictitem_remove(d, di);
14384 else if (argvars[0].v_type != VAR_LIST)
14385 EMSG2(_(e_listdictarg), "remove()");
14386 else if ((l = argvars[0].vval.v_list) != NULL
14387 && !tv_check_lock(l->lv_lock, (char_u *)"remove() argument"))
14389 int error = FALSE;
14391 idx = get_tv_number_chk(&argvars[1], &error);
14392 if (error)
14393 ; /* type error: do nothing, errmsg already given */
14394 else if ((item = list_find(l, idx)) == NULL)
14395 EMSGN(_(e_listidx), idx);
14396 else
14398 if (argvars[2].v_type == VAR_UNKNOWN)
14400 /* Remove one item, return its value. */
14401 list_remove(l, item, item);
14402 *rettv = item->li_tv;
14403 vim_free(item);
14405 else
14407 /* Remove range of items, return list with values. */
14408 end = get_tv_number_chk(&argvars[2], &error);
14409 if (error)
14410 ; /* type error: do nothing */
14411 else if ((item2 = list_find(l, end)) == NULL)
14412 EMSGN(_(e_listidx), end);
14413 else
14415 int cnt = 0;
14417 for (li = item; li != NULL; li = li->li_next)
14419 ++cnt;
14420 if (li == item2)
14421 break;
14423 if (li == NULL) /* didn't find "item2" after "item" */
14424 EMSG(_(e_invrange));
14425 else
14427 list_remove(l, item, item2);
14428 if (rettv_list_alloc(rettv) == OK)
14430 l = rettv->vval.v_list;
14431 l->lv_first = item;
14432 l->lv_last = item2;
14433 item->li_prev = NULL;
14434 item2->li_next = NULL;
14435 l->lv_len = cnt;
14445 * "rename({from}, {to})" function
14447 static void
14448 f_rename(argvars, rettv)
14449 typval_T *argvars;
14450 typval_T *rettv;
14452 char_u buf[NUMBUFLEN];
14454 if (check_restricted() || check_secure())
14455 rettv->vval.v_number = -1;
14456 else
14457 rettv->vval.v_number = vim_rename(get_tv_string(&argvars[0]),
14458 get_tv_string_buf(&argvars[1], buf));
14462 * "repeat()" function
14464 /*ARGSUSED*/
14465 static void
14466 f_repeat(argvars, rettv)
14467 typval_T *argvars;
14468 typval_T *rettv;
14470 char_u *p;
14471 int n;
14472 int slen;
14473 int len;
14474 char_u *r;
14475 int i;
14477 n = get_tv_number(&argvars[1]);
14478 if (argvars[0].v_type == VAR_LIST)
14480 if (rettv_list_alloc(rettv) == OK && argvars[0].vval.v_list != NULL)
14481 while (n-- > 0)
14482 if (list_extend(rettv->vval.v_list,
14483 argvars[0].vval.v_list, NULL) == FAIL)
14484 break;
14486 else
14488 p = get_tv_string(&argvars[0]);
14489 rettv->v_type = VAR_STRING;
14490 rettv->vval.v_string = NULL;
14492 slen = (int)STRLEN(p);
14493 len = slen * n;
14494 if (len <= 0)
14495 return;
14497 r = alloc(len + 1);
14498 if (r != NULL)
14500 for (i = 0; i < n; i++)
14501 mch_memmove(r + i * slen, p, (size_t)slen);
14502 r[len] = NUL;
14505 rettv->vval.v_string = r;
14510 * "resolve()" function
14512 static void
14513 f_resolve(argvars, rettv)
14514 typval_T *argvars;
14515 typval_T *rettv;
14517 char_u *p;
14519 p = get_tv_string(&argvars[0]);
14520 #ifdef FEAT_SHORTCUT
14522 char_u *v = NULL;
14524 v = mch_resolve_shortcut(p);
14525 if (v != NULL)
14526 rettv->vval.v_string = v;
14527 else
14528 rettv->vval.v_string = vim_strsave(p);
14530 #else
14531 # ifdef HAVE_READLINK
14533 char_u buf[MAXPATHL + 1];
14534 char_u *cpy;
14535 int len;
14536 char_u *remain = NULL;
14537 char_u *q;
14538 int is_relative_to_current = FALSE;
14539 int has_trailing_pathsep = FALSE;
14540 int limit = 100;
14542 p = vim_strsave(p);
14544 if (p[0] == '.' && (vim_ispathsep(p[1])
14545 || (p[1] == '.' && (vim_ispathsep(p[2])))))
14546 is_relative_to_current = TRUE;
14548 len = STRLEN(p);
14549 if (len > 0 && after_pathsep(p, p + len))
14550 has_trailing_pathsep = TRUE;
14552 q = getnextcomp(p);
14553 if (*q != NUL)
14555 /* Separate the first path component in "p", and keep the
14556 * remainder (beginning with the path separator). */
14557 remain = vim_strsave(q - 1);
14558 q[-1] = NUL;
14561 for (;;)
14563 for (;;)
14565 len = readlink((char *)p, (char *)buf, MAXPATHL);
14566 if (len <= 0)
14567 break;
14568 buf[len] = NUL;
14570 if (limit-- == 0)
14572 vim_free(p);
14573 vim_free(remain);
14574 EMSG(_("E655: Too many symbolic links (cycle?)"));
14575 rettv->vval.v_string = NULL;
14576 goto fail;
14579 /* Ensure that the result will have a trailing path separator
14580 * if the argument has one. */
14581 if (remain == NULL && has_trailing_pathsep)
14582 add_pathsep(buf);
14584 /* Separate the first path component in the link value and
14585 * concatenate the remainders. */
14586 q = getnextcomp(vim_ispathsep(*buf) ? buf + 1 : buf);
14587 if (*q != NUL)
14589 if (remain == NULL)
14590 remain = vim_strsave(q - 1);
14591 else
14593 cpy = concat_str(q - 1, remain);
14594 if (cpy != NULL)
14596 vim_free(remain);
14597 remain = cpy;
14600 q[-1] = NUL;
14603 q = gettail(p);
14604 if (q > p && *q == NUL)
14606 /* Ignore trailing path separator. */
14607 q[-1] = NUL;
14608 q = gettail(p);
14610 if (q > p && !mch_isFullName(buf))
14612 /* symlink is relative to directory of argument */
14613 cpy = alloc((unsigned)(STRLEN(p) + STRLEN(buf) + 1));
14614 if (cpy != NULL)
14616 STRCPY(cpy, p);
14617 STRCPY(gettail(cpy), buf);
14618 vim_free(p);
14619 p = cpy;
14622 else
14624 vim_free(p);
14625 p = vim_strsave(buf);
14629 if (remain == NULL)
14630 break;
14632 /* Append the first path component of "remain" to "p". */
14633 q = getnextcomp(remain + 1);
14634 len = q - remain - (*q != NUL);
14635 cpy = vim_strnsave(p, STRLEN(p) + len);
14636 if (cpy != NULL)
14638 STRNCAT(cpy, remain, len);
14639 vim_free(p);
14640 p = cpy;
14642 /* Shorten "remain". */
14643 if (*q != NUL)
14644 STRMOVE(remain, q - 1);
14645 else
14647 vim_free(remain);
14648 remain = NULL;
14652 /* If the result is a relative path name, make it explicitly relative to
14653 * the current directory if and only if the argument had this form. */
14654 if (!vim_ispathsep(*p))
14656 if (is_relative_to_current
14657 && *p != NUL
14658 && !(p[0] == '.'
14659 && (p[1] == NUL
14660 || vim_ispathsep(p[1])
14661 || (p[1] == '.'
14662 && (p[2] == NUL
14663 || vim_ispathsep(p[2]))))))
14665 /* Prepend "./". */
14666 cpy = concat_str((char_u *)"./", p);
14667 if (cpy != NULL)
14669 vim_free(p);
14670 p = cpy;
14673 else if (!is_relative_to_current)
14675 /* Strip leading "./". */
14676 q = p;
14677 while (q[0] == '.' && vim_ispathsep(q[1]))
14678 q += 2;
14679 if (q > p)
14680 STRMOVE(p, p + 2);
14684 /* Ensure that the result will have no trailing path separator
14685 * if the argument had none. But keep "/" or "//". */
14686 if (!has_trailing_pathsep)
14688 q = p + STRLEN(p);
14689 if (after_pathsep(p, q))
14690 *gettail_sep(p) = NUL;
14693 rettv->vval.v_string = p;
14695 # else
14696 rettv->vval.v_string = vim_strsave(p);
14697 # endif
14698 #endif
14700 simplify_filename(rettv->vval.v_string);
14702 #ifdef HAVE_READLINK
14703 fail:
14704 #endif
14705 rettv->v_type = VAR_STRING;
14709 * "reverse({list})" function
14711 static void
14712 f_reverse(argvars, rettv)
14713 typval_T *argvars;
14714 typval_T *rettv;
14716 list_T *l;
14717 listitem_T *li, *ni;
14719 rettv->vval.v_number = 0;
14720 if (argvars[0].v_type != VAR_LIST)
14721 EMSG2(_(e_listarg), "reverse()");
14722 else if ((l = argvars[0].vval.v_list) != NULL
14723 && !tv_check_lock(l->lv_lock, (char_u *)"reverse()"))
14725 li = l->lv_last;
14726 l->lv_first = l->lv_last = NULL;
14727 l->lv_len = 0;
14728 while (li != NULL)
14730 ni = li->li_prev;
14731 list_append(l, li);
14732 li = ni;
14734 rettv->vval.v_list = l;
14735 rettv->v_type = VAR_LIST;
14736 ++l->lv_refcount;
14737 l->lv_idx = l->lv_len - l->lv_idx - 1;
14741 #define SP_NOMOVE 0x01 /* don't move cursor */
14742 #define SP_REPEAT 0x02 /* repeat to find outer pair */
14743 #define SP_RETCOUNT 0x04 /* return matchcount */
14744 #define SP_SETPCMARK 0x08 /* set previous context mark */
14745 #define SP_START 0x10 /* accept match at start position */
14746 #define SP_SUBPAT 0x20 /* return nr of matching sub-pattern */
14747 #define SP_END 0x40 /* leave cursor at end of match */
14749 static int get_search_arg __ARGS((typval_T *varp, int *flagsp));
14752 * Get flags for a search function.
14753 * Possibly sets "p_ws".
14754 * Returns BACKWARD, FORWARD or zero (for an error).
14756 static int
14757 get_search_arg(varp, flagsp)
14758 typval_T *varp;
14759 int *flagsp;
14761 int dir = FORWARD;
14762 char_u *flags;
14763 char_u nbuf[NUMBUFLEN];
14764 int mask;
14766 if (varp->v_type != VAR_UNKNOWN)
14768 flags = get_tv_string_buf_chk(varp, nbuf);
14769 if (flags == NULL)
14770 return 0; /* type error; errmsg already given */
14771 while (*flags != NUL)
14773 switch (*flags)
14775 case 'b': dir = BACKWARD; break;
14776 case 'w': p_ws = TRUE; break;
14777 case 'W': p_ws = FALSE; break;
14778 default: mask = 0;
14779 if (flagsp != NULL)
14780 switch (*flags)
14782 case 'c': mask = SP_START; break;
14783 case 'e': mask = SP_END; break;
14784 case 'm': mask = SP_RETCOUNT; break;
14785 case 'n': mask = SP_NOMOVE; break;
14786 case 'p': mask = SP_SUBPAT; break;
14787 case 'r': mask = SP_REPEAT; break;
14788 case 's': mask = SP_SETPCMARK; break;
14790 if (mask == 0)
14792 EMSG2(_(e_invarg2), flags);
14793 dir = 0;
14795 else
14796 *flagsp |= mask;
14798 if (dir == 0)
14799 break;
14800 ++flags;
14803 return dir;
14807 * Shared by search() and searchpos() functions
14809 static int
14810 search_cmn(argvars, match_pos, flagsp)
14811 typval_T *argvars;
14812 pos_T *match_pos;
14813 int *flagsp;
14815 int flags;
14816 char_u *pat;
14817 pos_T pos;
14818 pos_T save_cursor;
14819 int save_p_ws = p_ws;
14820 int dir;
14821 int retval = 0; /* default: FAIL */
14822 long lnum_stop = 0;
14823 proftime_T tm;
14824 #ifdef FEAT_RELTIME
14825 long time_limit = 0;
14826 #endif
14827 int options = SEARCH_KEEP;
14828 int subpatnum;
14830 pat = get_tv_string(&argvars[0]);
14831 dir = get_search_arg(&argvars[1], flagsp); /* may set p_ws */
14832 if (dir == 0)
14833 goto theend;
14834 flags = *flagsp;
14835 if (flags & SP_START)
14836 options |= SEARCH_START;
14837 if (flags & SP_END)
14838 options |= SEARCH_END;
14840 /* Optional arguments: line number to stop searching and timeout. */
14841 if (argvars[1].v_type != VAR_UNKNOWN && argvars[2].v_type != VAR_UNKNOWN)
14843 lnum_stop = get_tv_number_chk(&argvars[2], NULL);
14844 if (lnum_stop < 0)
14845 goto theend;
14846 #ifdef FEAT_RELTIME
14847 if (argvars[3].v_type != VAR_UNKNOWN)
14849 time_limit = get_tv_number_chk(&argvars[3], NULL);
14850 if (time_limit < 0)
14851 goto theend;
14853 #endif
14856 #ifdef FEAT_RELTIME
14857 /* Set the time limit, if there is one. */
14858 profile_setlimit(time_limit, &tm);
14859 #endif
14862 * This function does not accept SP_REPEAT and SP_RETCOUNT flags.
14863 * Check to make sure only those flags are set.
14864 * Also, Only the SP_NOMOVE or the SP_SETPCMARK flag can be set. Both
14865 * flags cannot be set. Check for that condition also.
14867 if (((flags & (SP_REPEAT | SP_RETCOUNT)) != 0)
14868 || ((flags & SP_NOMOVE) && (flags & SP_SETPCMARK)))
14870 EMSG2(_(e_invarg2), get_tv_string(&argvars[1]));
14871 goto theend;
14874 pos = save_cursor = curwin->w_cursor;
14875 subpatnum = searchit(curwin, curbuf, &pos, dir, pat, 1L,
14876 options, RE_SEARCH, (linenr_T)lnum_stop, &tm);
14877 if (subpatnum != FAIL)
14879 if (flags & SP_SUBPAT)
14880 retval = subpatnum;
14881 else
14882 retval = pos.lnum;
14883 if (flags & SP_SETPCMARK)
14884 setpcmark();
14885 curwin->w_cursor = pos;
14886 if (match_pos != NULL)
14888 /* Store the match cursor position */
14889 match_pos->lnum = pos.lnum;
14890 match_pos->col = pos.col + 1;
14892 /* "/$" will put the cursor after the end of the line, may need to
14893 * correct that here */
14894 check_cursor();
14897 /* If 'n' flag is used: restore cursor position. */
14898 if (flags & SP_NOMOVE)
14899 curwin->w_cursor = save_cursor;
14900 else
14901 curwin->w_set_curswant = TRUE;
14902 theend:
14903 p_ws = save_p_ws;
14905 return retval;
14908 #ifdef FEAT_FLOAT
14910 * "round({float})" function
14912 static void
14913 f_round(argvars, rettv)
14914 typval_T *argvars;
14915 typval_T *rettv;
14917 float_T f;
14919 rettv->v_type = VAR_FLOAT;
14920 if (get_float_arg(argvars, &f) == OK)
14921 /* round() is not in C90, use ceil() or floor() instead. */
14922 rettv->vval.v_float = f > 0 ? floor(f + 0.5) : ceil(f - 0.5);
14923 else
14924 rettv->vval.v_float = 0.0;
14926 #endif
14929 * "search()" function
14931 static void
14932 f_search(argvars, rettv)
14933 typval_T *argvars;
14934 typval_T *rettv;
14936 int flags = 0;
14938 rettv->vval.v_number = search_cmn(argvars, NULL, &flags);
14942 * "searchdecl()" function
14944 static void
14945 f_searchdecl(argvars, rettv)
14946 typval_T *argvars;
14947 typval_T *rettv;
14949 int locally = 1;
14950 int thisblock = 0;
14951 int error = FALSE;
14952 char_u *name;
14954 rettv->vval.v_number = 1; /* default: FAIL */
14956 name = get_tv_string_chk(&argvars[0]);
14957 if (argvars[1].v_type != VAR_UNKNOWN)
14959 locally = get_tv_number_chk(&argvars[1], &error) == 0;
14960 if (!error && argvars[2].v_type != VAR_UNKNOWN)
14961 thisblock = get_tv_number_chk(&argvars[2], &error) != 0;
14963 if (!error && name != NULL)
14964 rettv->vval.v_number = find_decl(name, (int)STRLEN(name),
14965 locally, thisblock, SEARCH_KEEP) == FAIL;
14969 * Used by searchpair() and searchpairpos()
14971 static int
14972 searchpair_cmn(argvars, match_pos)
14973 typval_T *argvars;
14974 pos_T *match_pos;
14976 char_u *spat, *mpat, *epat;
14977 char_u *skip;
14978 int save_p_ws = p_ws;
14979 int dir;
14980 int flags = 0;
14981 char_u nbuf1[NUMBUFLEN];
14982 char_u nbuf2[NUMBUFLEN];
14983 char_u nbuf3[NUMBUFLEN];
14984 int retval = 0; /* default: FAIL */
14985 long lnum_stop = 0;
14986 long time_limit = 0;
14988 /* Get the three pattern arguments: start, middle, end. */
14989 spat = get_tv_string_chk(&argvars[0]);
14990 mpat = get_tv_string_buf_chk(&argvars[1], nbuf1);
14991 epat = get_tv_string_buf_chk(&argvars[2], nbuf2);
14992 if (spat == NULL || mpat == NULL || epat == NULL)
14993 goto theend; /* type error */
14995 /* Handle the optional fourth argument: flags */
14996 dir = get_search_arg(&argvars[3], &flags); /* may set p_ws */
14997 if (dir == 0)
14998 goto theend;
15000 /* Don't accept SP_END or SP_SUBPAT.
15001 * Only one of the SP_NOMOVE or SP_SETPCMARK flags can be set.
15003 if ((flags & (SP_END | SP_SUBPAT)) != 0
15004 || ((flags & SP_NOMOVE) && (flags & SP_SETPCMARK)))
15006 EMSG2(_(e_invarg2), get_tv_string(&argvars[3]));
15007 goto theend;
15010 /* Using 'r' implies 'W', otherwise it doesn't work. */
15011 if (flags & SP_REPEAT)
15012 p_ws = FALSE;
15014 /* Optional fifth argument: skip expression */
15015 if (argvars[3].v_type == VAR_UNKNOWN
15016 || argvars[4].v_type == VAR_UNKNOWN)
15017 skip = (char_u *)"";
15018 else
15020 skip = get_tv_string_buf_chk(&argvars[4], nbuf3);
15021 if (argvars[5].v_type != VAR_UNKNOWN)
15023 lnum_stop = get_tv_number_chk(&argvars[5], NULL);
15024 if (lnum_stop < 0)
15025 goto theend;
15026 #ifdef FEAT_RELTIME
15027 if (argvars[6].v_type != VAR_UNKNOWN)
15029 time_limit = get_tv_number_chk(&argvars[6], NULL);
15030 if (time_limit < 0)
15031 goto theend;
15033 #endif
15036 if (skip == NULL)
15037 goto theend; /* type error */
15039 retval = do_searchpair(spat, mpat, epat, dir, skip, flags,
15040 match_pos, lnum_stop, time_limit);
15042 theend:
15043 p_ws = save_p_ws;
15045 return retval;
15049 * "searchpair()" function
15051 static void
15052 f_searchpair(argvars, rettv)
15053 typval_T *argvars;
15054 typval_T *rettv;
15056 rettv->vval.v_number = searchpair_cmn(argvars, NULL);
15060 * "searchpairpos()" function
15062 static void
15063 f_searchpairpos(argvars, rettv)
15064 typval_T *argvars;
15065 typval_T *rettv;
15067 pos_T match_pos;
15068 int lnum = 0;
15069 int col = 0;
15071 rettv->vval.v_number = 0;
15073 if (rettv_list_alloc(rettv) == FAIL)
15074 return;
15076 if (searchpair_cmn(argvars, &match_pos) > 0)
15078 lnum = match_pos.lnum;
15079 col = match_pos.col;
15082 list_append_number(rettv->vval.v_list, (varnumber_T)lnum);
15083 list_append_number(rettv->vval.v_list, (varnumber_T)col);
15087 * Search for a start/middle/end thing.
15088 * Used by searchpair(), see its documentation for the details.
15089 * Returns 0 or -1 for no match,
15091 long
15092 do_searchpair(spat, mpat, epat, dir, skip, flags, match_pos,
15093 lnum_stop, time_limit)
15094 char_u *spat; /* start pattern */
15095 char_u *mpat; /* middle pattern */
15096 char_u *epat; /* end pattern */
15097 int dir; /* BACKWARD or FORWARD */
15098 char_u *skip; /* skip expression */
15099 int flags; /* SP_SETPCMARK and other SP_ values */
15100 pos_T *match_pos;
15101 linenr_T lnum_stop; /* stop at this line if not zero */
15102 long time_limit; /* stop after this many msec */
15104 char_u *save_cpo;
15105 char_u *pat, *pat2 = NULL, *pat3 = NULL;
15106 long retval = 0;
15107 pos_T pos;
15108 pos_T firstpos;
15109 pos_T foundpos;
15110 pos_T save_cursor;
15111 pos_T save_pos;
15112 int n;
15113 int r;
15114 int nest = 1;
15115 int err;
15116 int options = SEARCH_KEEP;
15117 proftime_T tm;
15119 /* Make 'cpoptions' empty, the 'l' flag should not be used here. */
15120 save_cpo = p_cpo;
15121 p_cpo = empty_option;
15123 #ifdef FEAT_RELTIME
15124 /* Set the time limit, if there is one. */
15125 profile_setlimit(time_limit, &tm);
15126 #endif
15128 /* Make two search patterns: start/end (pat2, for in nested pairs) and
15129 * start/middle/end (pat3, for the top pair). */
15130 pat2 = alloc((unsigned)(STRLEN(spat) + STRLEN(epat) + 15));
15131 pat3 = alloc((unsigned)(STRLEN(spat) + STRLEN(mpat) + STRLEN(epat) + 23));
15132 if (pat2 == NULL || pat3 == NULL)
15133 goto theend;
15134 sprintf((char *)pat2, "\\(%s\\m\\)\\|\\(%s\\m\\)", spat, epat);
15135 if (*mpat == NUL)
15136 STRCPY(pat3, pat2);
15137 else
15138 sprintf((char *)pat3, "\\(%s\\m\\)\\|\\(%s\\m\\)\\|\\(%s\\m\\)",
15139 spat, epat, mpat);
15140 if (flags & SP_START)
15141 options |= SEARCH_START;
15143 save_cursor = curwin->w_cursor;
15144 pos = curwin->w_cursor;
15145 clearpos(&firstpos);
15146 clearpos(&foundpos);
15147 pat = pat3;
15148 for (;;)
15150 n = searchit(curwin, curbuf, &pos, dir, pat, 1L,
15151 options, RE_SEARCH, lnum_stop, &tm);
15152 if (n == FAIL || (firstpos.lnum != 0 && equalpos(pos, firstpos)))
15153 /* didn't find it or found the first match again: FAIL */
15154 break;
15156 if (firstpos.lnum == 0)
15157 firstpos = pos;
15158 if (equalpos(pos, foundpos))
15160 /* Found the same position again. Can happen with a pattern that
15161 * has "\zs" at the end and searching backwards. Advance one
15162 * character and try again. */
15163 if (dir == BACKWARD)
15164 decl(&pos);
15165 else
15166 incl(&pos);
15168 foundpos = pos;
15170 /* clear the start flag to avoid getting stuck here */
15171 options &= ~SEARCH_START;
15173 /* If the skip pattern matches, ignore this match. */
15174 if (*skip != NUL)
15176 save_pos = curwin->w_cursor;
15177 curwin->w_cursor = pos;
15178 r = eval_to_bool(skip, &err, NULL, FALSE);
15179 curwin->w_cursor = save_pos;
15180 if (err)
15182 /* Evaluating {skip} caused an error, break here. */
15183 curwin->w_cursor = save_cursor;
15184 retval = -1;
15185 break;
15187 if (r)
15188 continue;
15191 if ((dir == BACKWARD && n == 3) || (dir == FORWARD && n == 2))
15193 /* Found end when searching backwards or start when searching
15194 * forward: nested pair. */
15195 ++nest;
15196 pat = pat2; /* nested, don't search for middle */
15198 else
15200 /* Found end when searching forward or start when searching
15201 * backward: end of (nested) pair; or found middle in outer pair. */
15202 if (--nest == 1)
15203 pat = pat3; /* outer level, search for middle */
15206 if (nest == 0)
15208 /* Found the match: return matchcount or line number. */
15209 if (flags & SP_RETCOUNT)
15210 ++retval;
15211 else
15212 retval = pos.lnum;
15213 if (flags & SP_SETPCMARK)
15214 setpcmark();
15215 curwin->w_cursor = pos;
15216 if (!(flags & SP_REPEAT))
15217 break;
15218 nest = 1; /* search for next unmatched */
15222 if (match_pos != NULL)
15224 /* Store the match cursor position */
15225 match_pos->lnum = curwin->w_cursor.lnum;
15226 match_pos->col = curwin->w_cursor.col + 1;
15229 /* If 'n' flag is used or search failed: restore cursor position. */
15230 if ((flags & SP_NOMOVE) || retval == 0)
15231 curwin->w_cursor = save_cursor;
15233 theend:
15234 vim_free(pat2);
15235 vim_free(pat3);
15236 if (p_cpo == empty_option)
15237 p_cpo = save_cpo;
15238 else
15239 /* Darn, evaluating the {skip} expression changed the value. */
15240 free_string_option(save_cpo);
15242 return retval;
15246 * "searchpos()" function
15248 static void
15249 f_searchpos(argvars, rettv)
15250 typval_T *argvars;
15251 typval_T *rettv;
15253 pos_T match_pos;
15254 int lnum = 0;
15255 int col = 0;
15256 int n;
15257 int flags = 0;
15259 rettv->vval.v_number = 0;
15261 if (rettv_list_alloc(rettv) == FAIL)
15262 return;
15264 n = search_cmn(argvars, &match_pos, &flags);
15265 if (n > 0)
15267 lnum = match_pos.lnum;
15268 col = match_pos.col;
15271 list_append_number(rettv->vval.v_list, (varnumber_T)lnum);
15272 list_append_number(rettv->vval.v_list, (varnumber_T)col);
15273 if (flags & SP_SUBPAT)
15274 list_append_number(rettv->vval.v_list, (varnumber_T)n);
15278 /*ARGSUSED*/
15279 static void
15280 f_server2client(argvars, rettv)
15281 typval_T *argvars;
15282 typval_T *rettv;
15284 #ifdef FEAT_CLIENTSERVER
15285 char_u buf[NUMBUFLEN];
15286 char_u *server = get_tv_string_chk(&argvars[0]);
15287 char_u *reply = get_tv_string_buf_chk(&argvars[1], buf);
15289 rettv->vval.v_number = -1;
15290 if (server == NULL || reply == NULL)
15291 return;
15292 if (check_restricted() || check_secure())
15293 return;
15294 # ifdef FEAT_X11
15295 if (check_connection() == FAIL)
15296 return;
15297 # endif
15299 if (serverSendReply(server, reply) < 0)
15301 EMSG(_("E258: Unable to send to client"));
15302 return;
15304 rettv->vval.v_number = 0;
15305 #else
15306 rettv->vval.v_number = -1;
15307 #endif
15310 /*ARGSUSED*/
15311 static void
15312 f_serverlist(argvars, rettv)
15313 typval_T *argvars;
15314 typval_T *rettv;
15316 char_u *r = NULL;
15318 #ifdef FEAT_CLIENTSERVER
15319 # if defined(WIN32) || defined(MAC_CLIENTSERVER)
15320 r = serverGetVimNames();
15321 # elif defined(FEAT_X11)
15322 make_connection();
15323 if (X_DISPLAY != NULL)
15324 r = serverGetVimNames(X_DISPLAY);
15325 # endif
15326 #endif
15327 rettv->v_type = VAR_STRING;
15328 rettv->vval.v_string = r;
15332 * "setbufvar()" function
15334 /*ARGSUSED*/
15335 static void
15336 f_setbufvar(argvars, rettv)
15337 typval_T *argvars;
15338 typval_T *rettv;
15340 buf_T *buf;
15341 aco_save_T aco;
15342 char_u *varname, *bufvarname;
15343 typval_T *varp;
15344 char_u nbuf[NUMBUFLEN];
15346 rettv->vval.v_number = 0;
15348 if (check_restricted() || check_secure())
15349 return;
15350 (void)get_tv_number(&argvars[0]); /* issue errmsg if type error */
15351 varname = get_tv_string_chk(&argvars[1]);
15352 buf = get_buf_tv(&argvars[0]);
15353 varp = &argvars[2];
15355 if (buf != NULL && varname != NULL && varp != NULL)
15357 /* set curbuf to be our buf, temporarily */
15358 aucmd_prepbuf(&aco, buf);
15360 if (*varname == '&')
15362 long numval;
15363 char_u *strval;
15364 int error = FALSE;
15366 ++varname;
15367 numval = get_tv_number_chk(varp, &error);
15368 strval = get_tv_string_buf_chk(varp, nbuf);
15369 if (!error && strval != NULL)
15370 set_option_value(varname, numval, strval, OPT_LOCAL);
15372 else
15374 bufvarname = alloc((unsigned)STRLEN(varname) + 3);
15375 if (bufvarname != NULL)
15377 STRCPY(bufvarname, "b:");
15378 STRCPY(bufvarname + 2, varname);
15379 set_var(bufvarname, varp, TRUE);
15380 vim_free(bufvarname);
15384 /* reset notion of buffer */
15385 aucmd_restbuf(&aco);
15390 * "setcmdpos()" function
15392 static void
15393 f_setcmdpos(argvars, rettv)
15394 typval_T *argvars;
15395 typval_T *rettv;
15397 int pos = (int)get_tv_number(&argvars[0]) - 1;
15399 if (pos >= 0)
15400 rettv->vval.v_number = set_cmdline_pos(pos);
15404 * "setline()" function
15406 static void
15407 f_setline(argvars, rettv)
15408 typval_T *argvars;
15409 typval_T *rettv;
15411 linenr_T lnum;
15412 char_u *line = NULL;
15413 list_T *l = NULL;
15414 listitem_T *li = NULL;
15415 long added = 0;
15416 linenr_T lcount = curbuf->b_ml.ml_line_count;
15418 lnum = get_tv_lnum(&argvars[0]);
15419 if (argvars[1].v_type == VAR_LIST)
15421 l = argvars[1].vval.v_list;
15422 li = l->lv_first;
15424 else
15425 line = get_tv_string_chk(&argvars[1]);
15427 rettv->vval.v_number = 0; /* OK */
15428 for (;;)
15430 if (l != NULL)
15432 /* list argument, get next string */
15433 if (li == NULL)
15434 break;
15435 line = get_tv_string_chk(&li->li_tv);
15436 li = li->li_next;
15439 rettv->vval.v_number = 1; /* FAIL */
15440 if (line == NULL || lnum < 1 || lnum > curbuf->b_ml.ml_line_count + 1)
15441 break;
15442 if (lnum <= curbuf->b_ml.ml_line_count)
15444 /* existing line, replace it */
15445 if (u_savesub(lnum) == OK && ml_replace(lnum, line, TRUE) == OK)
15447 changed_bytes(lnum, 0);
15448 if (lnum == curwin->w_cursor.lnum)
15449 check_cursor_col();
15450 rettv->vval.v_number = 0; /* OK */
15453 else if (added > 0 || u_save(lnum - 1, lnum) == OK)
15455 /* lnum is one past the last line, append the line */
15456 ++added;
15457 if (ml_append(lnum - 1, line, (colnr_T)0, FALSE) == OK)
15458 rettv->vval.v_number = 0; /* OK */
15461 if (l == NULL) /* only one string argument */
15462 break;
15463 ++lnum;
15466 if (added > 0)
15467 appended_lines_mark(lcount, added);
15470 static void set_qf_ll_list __ARGS((win_T *wp, typval_T *list_arg, typval_T *action_arg, typval_T *rettv));
15473 * Used by "setqflist()" and "setloclist()" functions
15475 /*ARGSUSED*/
15476 static void
15477 set_qf_ll_list(wp, list_arg, action_arg, rettv)
15478 win_T *wp;
15479 typval_T *list_arg;
15480 typval_T *action_arg;
15481 typval_T *rettv;
15483 #ifdef FEAT_QUICKFIX
15484 char_u *act;
15485 int action = ' ';
15486 #endif
15488 rettv->vval.v_number = -1;
15490 #ifdef FEAT_QUICKFIX
15491 if (list_arg->v_type != VAR_LIST)
15492 EMSG(_(e_listreq));
15493 else
15495 list_T *l = list_arg->vval.v_list;
15497 if (action_arg->v_type == VAR_STRING)
15499 act = get_tv_string_chk(action_arg);
15500 if (act == NULL)
15501 return; /* type error; errmsg already given */
15502 if (*act == 'a' || *act == 'r')
15503 action = *act;
15506 if (l != NULL && set_errorlist(wp, l, action) == OK)
15507 rettv->vval.v_number = 0;
15509 #endif
15513 * "setloclist()" function
15515 /*ARGSUSED*/
15516 static void
15517 f_setloclist(argvars, rettv)
15518 typval_T *argvars;
15519 typval_T *rettv;
15521 win_T *win;
15523 rettv->vval.v_number = -1;
15525 win = find_win_by_nr(&argvars[0], NULL);
15526 if (win != NULL)
15527 set_qf_ll_list(win, &argvars[1], &argvars[2], rettv);
15531 * "setmatches()" function
15533 static void
15534 f_setmatches(argvars, rettv)
15535 typval_T *argvars;
15536 typval_T *rettv;
15538 #ifdef FEAT_SEARCH_EXTRA
15539 list_T *l;
15540 listitem_T *li;
15541 dict_T *d;
15543 rettv->vval.v_number = -1;
15544 if (argvars[0].v_type != VAR_LIST)
15546 EMSG(_(e_listreq));
15547 return;
15549 if ((l = argvars[0].vval.v_list) != NULL)
15552 /* To some extent make sure that we are dealing with a list from
15553 * "getmatches()". */
15554 li = l->lv_first;
15555 while (li != NULL)
15557 if (li->li_tv.v_type != VAR_DICT
15558 || (d = li->li_tv.vval.v_dict) == NULL)
15560 EMSG(_(e_invarg));
15561 return;
15563 if (!(dict_find(d, (char_u *)"group", -1) != NULL
15564 && dict_find(d, (char_u *)"pattern", -1) != NULL
15565 && dict_find(d, (char_u *)"priority", -1) != NULL
15566 && dict_find(d, (char_u *)"id", -1) != NULL))
15568 EMSG(_(e_invarg));
15569 return;
15571 li = li->li_next;
15574 clear_matches(curwin);
15575 li = l->lv_first;
15576 while (li != NULL)
15578 d = li->li_tv.vval.v_dict;
15579 match_add(curwin, get_dict_string(d, (char_u *)"group", FALSE),
15580 get_dict_string(d, (char_u *)"pattern", FALSE),
15581 (int)get_dict_number(d, (char_u *)"priority"),
15582 (int)get_dict_number(d, (char_u *)"id"));
15583 li = li->li_next;
15585 rettv->vval.v_number = 0;
15587 #endif
15591 * "setpos()" function
15593 /*ARGSUSED*/
15594 static void
15595 f_setpos(argvars, rettv)
15596 typval_T *argvars;
15597 typval_T *rettv;
15599 pos_T pos;
15600 int fnum;
15601 char_u *name;
15603 rettv->vval.v_number = -1;
15604 name = get_tv_string_chk(argvars);
15605 if (name != NULL)
15607 if (list2fpos(&argvars[1], &pos, &fnum) == OK)
15609 --pos.col;
15610 if (name[0] == '.' && name[1] == NUL)
15612 /* set cursor */
15613 if (fnum == curbuf->b_fnum)
15615 curwin->w_cursor = pos;
15616 check_cursor();
15617 rettv->vval.v_number = 0;
15619 else
15620 EMSG(_(e_invarg));
15622 else if (name[0] == '\'' && name[1] != NUL && name[2] == NUL)
15624 /* set mark */
15625 if (setmark_pos(name[1], &pos, fnum) == OK)
15626 rettv->vval.v_number = 0;
15628 else
15629 EMSG(_(e_invarg));
15635 * "setqflist()" function
15637 /*ARGSUSED*/
15638 static void
15639 f_setqflist(argvars, rettv)
15640 typval_T *argvars;
15641 typval_T *rettv;
15643 set_qf_ll_list(NULL, &argvars[0], &argvars[1], rettv);
15647 * "setreg()" function
15649 static void
15650 f_setreg(argvars, rettv)
15651 typval_T *argvars;
15652 typval_T *rettv;
15654 int regname;
15655 char_u *strregname;
15656 char_u *stropt;
15657 char_u *strval;
15658 int append;
15659 char_u yank_type;
15660 long block_len;
15662 block_len = -1;
15663 yank_type = MAUTO;
15664 append = FALSE;
15666 strregname = get_tv_string_chk(argvars);
15667 rettv->vval.v_number = 1; /* FAIL is default */
15669 if (strregname == NULL)
15670 return; /* type error; errmsg already given */
15671 regname = *strregname;
15672 if (regname == 0 || regname == '@')
15673 regname = '"';
15674 else if (regname == '=')
15675 return;
15677 if (argvars[2].v_type != VAR_UNKNOWN)
15679 stropt = get_tv_string_chk(&argvars[2]);
15680 if (stropt == NULL)
15681 return; /* type error */
15682 for (; *stropt != NUL; ++stropt)
15683 switch (*stropt)
15685 case 'a': case 'A': /* append */
15686 append = TRUE;
15687 break;
15688 case 'v': case 'c': /* character-wise selection */
15689 yank_type = MCHAR;
15690 break;
15691 case 'V': case 'l': /* line-wise selection */
15692 yank_type = MLINE;
15693 break;
15694 #ifdef FEAT_VISUAL
15695 case 'b': case Ctrl_V: /* block-wise selection */
15696 yank_type = MBLOCK;
15697 if (VIM_ISDIGIT(stropt[1]))
15699 ++stropt;
15700 block_len = getdigits(&stropt) - 1;
15701 --stropt;
15703 break;
15704 #endif
15708 strval = get_tv_string_chk(&argvars[1]);
15709 if (strval != NULL)
15710 write_reg_contents_ex(regname, strval, -1,
15711 append, yank_type, block_len);
15712 rettv->vval.v_number = 0;
15716 * "settabwinvar()" function
15718 static void
15719 f_settabwinvar(argvars, rettv)
15720 typval_T *argvars;
15721 typval_T *rettv;
15723 setwinvar(argvars, rettv, 1);
15727 * "setwinvar()" function
15729 static void
15730 f_setwinvar(argvars, rettv)
15731 typval_T *argvars;
15732 typval_T *rettv;
15734 setwinvar(argvars, rettv, 0);
15738 * "setwinvar()" and "settabwinvar()" functions
15740 static void
15741 setwinvar(argvars, rettv, off)
15742 typval_T *argvars;
15743 typval_T *rettv;
15744 int off;
15746 win_T *win;
15747 #ifdef FEAT_WINDOWS
15748 win_T *save_curwin;
15749 tabpage_T *save_curtab;
15750 #endif
15751 char_u *varname, *winvarname;
15752 typval_T *varp;
15753 char_u nbuf[NUMBUFLEN];
15754 tabpage_T *tp;
15756 rettv->vval.v_number = 0;
15758 if (check_restricted() || check_secure())
15759 return;
15761 #ifdef FEAT_WINDOWS
15762 if (off == 1)
15763 tp = find_tabpage((int)get_tv_number_chk(&argvars[0], NULL));
15764 else
15765 tp = curtab;
15766 #endif
15767 win = find_win_by_nr(&argvars[off], tp);
15768 varname = get_tv_string_chk(&argvars[off + 1]);
15769 varp = &argvars[off + 2];
15771 if (win != NULL && varname != NULL && varp != NULL)
15773 #ifdef FEAT_WINDOWS
15774 /* set curwin to be our win, temporarily */
15775 save_curwin = curwin;
15776 save_curtab = curtab;
15777 goto_tabpage_tp(tp);
15778 if (!win_valid(win))
15779 return;
15780 curwin = win;
15781 curbuf = curwin->w_buffer;
15782 #endif
15784 if (*varname == '&')
15786 long numval;
15787 char_u *strval;
15788 int error = FALSE;
15790 ++varname;
15791 numval = get_tv_number_chk(varp, &error);
15792 strval = get_tv_string_buf_chk(varp, nbuf);
15793 if (!error && strval != NULL)
15794 set_option_value(varname, numval, strval, OPT_LOCAL);
15796 else
15798 winvarname = alloc((unsigned)STRLEN(varname) + 3);
15799 if (winvarname != NULL)
15801 STRCPY(winvarname, "w:");
15802 STRCPY(winvarname + 2, varname);
15803 set_var(winvarname, varp, TRUE);
15804 vim_free(winvarname);
15808 #ifdef FEAT_WINDOWS
15809 /* Restore current tabpage and window, if still valid (autocomands can
15810 * make them invalid). */
15811 if (valid_tabpage(save_curtab))
15812 goto_tabpage_tp(save_curtab);
15813 if (win_valid(save_curwin))
15815 curwin = save_curwin;
15816 curbuf = curwin->w_buffer;
15818 #endif
15823 * "shellescape({string})" function
15825 static void
15826 f_shellescape(argvars, rettv)
15827 typval_T *argvars;
15828 typval_T *rettv;
15830 rettv->vval.v_string = vim_strsave_shellescape(
15831 get_tv_string(&argvars[0]), non_zero_arg(&argvars[1]));
15832 rettv->v_type = VAR_STRING;
15836 * "simplify()" function
15838 static void
15839 f_simplify(argvars, rettv)
15840 typval_T *argvars;
15841 typval_T *rettv;
15843 char_u *p;
15845 p = get_tv_string(&argvars[0]);
15846 rettv->vval.v_string = vim_strsave(p);
15847 simplify_filename(rettv->vval.v_string); /* simplify in place */
15848 rettv->v_type = VAR_STRING;
15851 #ifdef FEAT_FLOAT
15853 * "sin()" function
15855 static void
15856 f_sin(argvars, rettv)
15857 typval_T *argvars;
15858 typval_T *rettv;
15860 float_T f;
15862 rettv->v_type = VAR_FLOAT;
15863 if (get_float_arg(argvars, &f) == OK)
15864 rettv->vval.v_float = sin(f);
15865 else
15866 rettv->vval.v_float = 0.0;
15868 #endif
15870 static int
15871 #ifdef __BORLANDC__
15872 _RTLENTRYF
15873 #endif
15874 item_compare __ARGS((const void *s1, const void *s2));
15875 static int
15876 #ifdef __BORLANDC__
15877 _RTLENTRYF
15878 #endif
15879 item_compare2 __ARGS((const void *s1, const void *s2));
15881 static int item_compare_ic;
15882 static char_u *item_compare_func;
15883 static int item_compare_func_err;
15884 #define ITEM_COMPARE_FAIL 999
15887 * Compare functions for f_sort() below.
15889 static int
15890 #ifdef __BORLANDC__
15891 _RTLENTRYF
15892 #endif
15893 item_compare(s1, s2)
15894 const void *s1;
15895 const void *s2;
15897 char_u *p1, *p2;
15898 char_u *tofree1, *tofree2;
15899 int res;
15900 char_u numbuf1[NUMBUFLEN];
15901 char_u numbuf2[NUMBUFLEN];
15903 p1 = tv2string(&(*(listitem_T **)s1)->li_tv, &tofree1, numbuf1, 0);
15904 p2 = tv2string(&(*(listitem_T **)s2)->li_tv, &tofree2, numbuf2, 0);
15905 if (p1 == NULL)
15906 p1 = (char_u *)"";
15907 if (p2 == NULL)
15908 p2 = (char_u *)"";
15909 if (item_compare_ic)
15910 res = STRICMP(p1, p2);
15911 else
15912 res = STRCMP(p1, p2);
15913 vim_free(tofree1);
15914 vim_free(tofree2);
15915 return res;
15918 static int
15919 #ifdef __BORLANDC__
15920 _RTLENTRYF
15921 #endif
15922 item_compare2(s1, s2)
15923 const void *s1;
15924 const void *s2;
15926 int res;
15927 typval_T rettv;
15928 typval_T argv[3];
15929 int dummy;
15931 /* shortcut after failure in previous call; compare all items equal */
15932 if (item_compare_func_err)
15933 return 0;
15935 /* copy the values. This is needed to be able to set v_lock to VAR_FIXED
15936 * in the copy without changing the original list items. */
15937 copy_tv(&(*(listitem_T **)s1)->li_tv, &argv[0]);
15938 copy_tv(&(*(listitem_T **)s2)->li_tv, &argv[1]);
15940 rettv.v_type = VAR_UNKNOWN; /* clear_tv() uses this */
15941 res = call_func(item_compare_func, (int)STRLEN(item_compare_func),
15942 &rettv, 2, argv, 0L, 0L, &dummy, TRUE, NULL);
15943 clear_tv(&argv[0]);
15944 clear_tv(&argv[1]);
15946 if (res == FAIL)
15947 res = ITEM_COMPARE_FAIL;
15948 else
15949 res = get_tv_number_chk(&rettv, &item_compare_func_err);
15950 if (item_compare_func_err)
15951 res = ITEM_COMPARE_FAIL; /* return value has wrong type */
15952 clear_tv(&rettv);
15953 return res;
15957 * "sort({list})" function
15959 static void
15960 f_sort(argvars, rettv)
15961 typval_T *argvars;
15962 typval_T *rettv;
15964 list_T *l;
15965 listitem_T *li;
15966 listitem_T **ptrs;
15967 long len;
15968 long i;
15970 rettv->vval.v_number = 0;
15971 if (argvars[0].v_type != VAR_LIST)
15972 EMSG2(_(e_listarg), "sort()");
15973 else
15975 l = argvars[0].vval.v_list;
15976 if (l == NULL || tv_check_lock(l->lv_lock, (char_u *)"sort()"))
15977 return;
15978 rettv->vval.v_list = l;
15979 rettv->v_type = VAR_LIST;
15980 ++l->lv_refcount;
15982 len = list_len(l);
15983 if (len <= 1)
15984 return; /* short list sorts pretty quickly */
15986 item_compare_ic = FALSE;
15987 item_compare_func = NULL;
15988 if (argvars[1].v_type != VAR_UNKNOWN)
15990 if (argvars[1].v_type == VAR_FUNC)
15991 item_compare_func = argvars[1].vval.v_string;
15992 else
15994 int error = FALSE;
15996 i = get_tv_number_chk(&argvars[1], &error);
15997 if (error)
15998 return; /* type error; errmsg already given */
15999 if (i == 1)
16000 item_compare_ic = TRUE;
16001 else
16002 item_compare_func = get_tv_string(&argvars[1]);
16006 /* Make an array with each entry pointing to an item in the List. */
16007 ptrs = (listitem_T **)alloc((int)(len * sizeof(listitem_T *)));
16008 if (ptrs == NULL)
16009 return;
16010 i = 0;
16011 for (li = l->lv_first; li != NULL; li = li->li_next)
16012 ptrs[i++] = li;
16014 item_compare_func_err = FALSE;
16015 /* test the compare function */
16016 if (item_compare_func != NULL
16017 && item_compare2((void *)&ptrs[0], (void *)&ptrs[1])
16018 == ITEM_COMPARE_FAIL)
16019 EMSG(_("E702: Sort compare function failed"));
16020 else
16022 /* Sort the array with item pointers. */
16023 qsort((void *)ptrs, (size_t)len, sizeof(listitem_T *),
16024 item_compare_func == NULL ? item_compare : item_compare2);
16026 if (!item_compare_func_err)
16028 /* Clear the List and append the items in the sorted order. */
16029 l->lv_first = l->lv_last = l->lv_idx_item = NULL;
16030 l->lv_len = 0;
16031 for (i = 0; i < len; ++i)
16032 list_append(l, ptrs[i]);
16036 vim_free(ptrs);
16041 * "soundfold({word})" function
16043 static void
16044 f_soundfold(argvars, rettv)
16045 typval_T *argvars;
16046 typval_T *rettv;
16048 char_u *s;
16050 rettv->v_type = VAR_STRING;
16051 s = get_tv_string(&argvars[0]);
16052 #ifdef FEAT_SPELL
16053 rettv->vval.v_string = eval_soundfold(s);
16054 #else
16055 rettv->vval.v_string = vim_strsave(s);
16056 #endif
16060 * "spellbadword()" function
16062 /* ARGSUSED */
16063 static void
16064 f_spellbadword(argvars, rettv)
16065 typval_T *argvars;
16066 typval_T *rettv;
16068 char_u *word = (char_u *)"";
16069 hlf_T attr = HLF_COUNT;
16070 int len = 0;
16072 if (rettv_list_alloc(rettv) == FAIL)
16073 return;
16075 #ifdef FEAT_SPELL
16076 if (argvars[0].v_type == VAR_UNKNOWN)
16078 /* Find the start and length of the badly spelled word. */
16079 len = spell_move_to(curwin, FORWARD, TRUE, TRUE, &attr);
16080 if (len != 0)
16081 word = ml_get_cursor();
16083 else if (curwin->w_p_spell && *curbuf->b_p_spl != NUL)
16085 char_u *str = get_tv_string_chk(&argvars[0]);
16086 int capcol = -1;
16088 if (str != NULL)
16090 /* Check the argument for spelling. */
16091 while (*str != NUL)
16093 len = spell_check(curwin, str, &attr, &capcol, FALSE);
16094 if (attr != HLF_COUNT)
16096 word = str;
16097 break;
16099 str += len;
16103 #endif
16105 list_append_string(rettv->vval.v_list, word, len);
16106 list_append_string(rettv->vval.v_list, (char_u *)(
16107 attr == HLF_SPB ? "bad" :
16108 attr == HLF_SPR ? "rare" :
16109 attr == HLF_SPL ? "local" :
16110 attr == HLF_SPC ? "caps" :
16111 ""), -1);
16115 * "spellsuggest()" function
16117 /*ARGSUSED*/
16118 static void
16119 f_spellsuggest(argvars, rettv)
16120 typval_T *argvars;
16121 typval_T *rettv;
16123 #ifdef FEAT_SPELL
16124 char_u *str;
16125 int typeerr = FALSE;
16126 int maxcount;
16127 garray_T ga;
16128 int i;
16129 listitem_T *li;
16130 int need_capital = FALSE;
16131 #endif
16133 if (rettv_list_alloc(rettv) == FAIL)
16134 return;
16136 #ifdef FEAT_SPELL
16137 if (curwin->w_p_spell && *curbuf->b_p_spl != NUL)
16139 str = get_tv_string(&argvars[0]);
16140 if (argvars[1].v_type != VAR_UNKNOWN)
16142 maxcount = get_tv_number_chk(&argvars[1], &typeerr);
16143 if (maxcount <= 0)
16144 return;
16145 if (argvars[2].v_type != VAR_UNKNOWN)
16147 need_capital = get_tv_number_chk(&argvars[2], &typeerr);
16148 if (typeerr)
16149 return;
16152 else
16153 maxcount = 25;
16155 spell_suggest_list(&ga, str, maxcount, need_capital, FALSE);
16157 for (i = 0; i < ga.ga_len; ++i)
16159 str = ((char_u **)ga.ga_data)[i];
16161 li = listitem_alloc();
16162 if (li == NULL)
16163 vim_free(str);
16164 else
16166 li->li_tv.v_type = VAR_STRING;
16167 li->li_tv.v_lock = 0;
16168 li->li_tv.vval.v_string = str;
16169 list_append(rettv->vval.v_list, li);
16172 ga_clear(&ga);
16174 #endif
16177 static void
16178 f_split(argvars, rettv)
16179 typval_T *argvars;
16180 typval_T *rettv;
16182 char_u *str;
16183 char_u *end;
16184 char_u *pat = NULL;
16185 regmatch_T regmatch;
16186 char_u patbuf[NUMBUFLEN];
16187 char_u *save_cpo;
16188 int match;
16189 colnr_T col = 0;
16190 int keepempty = FALSE;
16191 int typeerr = FALSE;
16193 /* Make 'cpoptions' empty, the 'l' flag should not be used here. */
16194 save_cpo = p_cpo;
16195 p_cpo = (char_u *)"";
16197 str = get_tv_string(&argvars[0]);
16198 if (argvars[1].v_type != VAR_UNKNOWN)
16200 pat = get_tv_string_buf_chk(&argvars[1], patbuf);
16201 if (pat == NULL)
16202 typeerr = TRUE;
16203 if (argvars[2].v_type != VAR_UNKNOWN)
16204 keepempty = get_tv_number_chk(&argvars[2], &typeerr);
16206 if (pat == NULL || *pat == NUL)
16207 pat = (char_u *)"[\\x01- ]\\+";
16209 if (rettv_list_alloc(rettv) == FAIL)
16210 return;
16211 if (typeerr)
16212 return;
16214 regmatch.regprog = vim_regcomp(pat, RE_MAGIC + RE_STRING);
16215 if (regmatch.regprog != NULL)
16217 regmatch.rm_ic = FALSE;
16218 while (*str != NUL || keepempty)
16220 if (*str == NUL)
16221 match = FALSE; /* empty item at the end */
16222 else
16223 match = vim_regexec_nl(&regmatch, str, col);
16224 if (match)
16225 end = regmatch.startp[0];
16226 else
16227 end = str + STRLEN(str);
16228 if (keepempty || end > str || (rettv->vval.v_list->lv_len > 0
16229 && *str != NUL && match && end < regmatch.endp[0]))
16231 if (list_append_string(rettv->vval.v_list, str,
16232 (int)(end - str)) == FAIL)
16233 break;
16235 if (!match)
16236 break;
16237 /* Advance to just after the match. */
16238 if (regmatch.endp[0] > str)
16239 col = 0;
16240 else
16242 /* Don't get stuck at the same match. */
16243 #ifdef FEAT_MBYTE
16244 col = (*mb_ptr2len)(regmatch.endp[0]);
16245 #else
16246 col = 1;
16247 #endif
16249 str = regmatch.endp[0];
16252 vim_free(regmatch.regprog);
16255 p_cpo = save_cpo;
16258 #ifdef FEAT_FLOAT
16260 * "sqrt()" function
16262 static void
16263 f_sqrt(argvars, rettv)
16264 typval_T *argvars;
16265 typval_T *rettv;
16267 float_T f;
16269 rettv->v_type = VAR_FLOAT;
16270 if (get_float_arg(argvars, &f) == OK)
16271 rettv->vval.v_float = sqrt(f);
16272 else
16273 rettv->vval.v_float = 0.0;
16277 * "str2float()" function
16279 static void
16280 f_str2float(argvars, rettv)
16281 typval_T *argvars;
16282 typval_T *rettv;
16284 char_u *p = skipwhite(get_tv_string(&argvars[0]));
16286 if (*p == '+')
16287 p = skipwhite(p + 1);
16288 (void)string2float(p, &rettv->vval.v_float);
16289 rettv->v_type = VAR_FLOAT;
16291 #endif
16294 * "str2nr()" function
16296 static void
16297 f_str2nr(argvars, rettv)
16298 typval_T *argvars;
16299 typval_T *rettv;
16301 int base = 10;
16302 char_u *p;
16303 long n;
16305 if (argvars[1].v_type != VAR_UNKNOWN)
16307 base = get_tv_number(&argvars[1]);
16308 if (base != 8 && base != 10 && base != 16)
16310 EMSG(_(e_invarg));
16311 return;
16315 p = skipwhite(get_tv_string(&argvars[0]));
16316 if (*p == '+')
16317 p = skipwhite(p + 1);
16318 vim_str2nr(p, NULL, NULL, base == 8 ? 2 : 0, base == 16 ? 2 : 0, &n, NULL);
16319 rettv->vval.v_number = n;
16322 #ifdef HAVE_STRFTIME
16324 * "strftime({format}[, {time}])" function
16326 static void
16327 f_strftime(argvars, rettv)
16328 typval_T *argvars;
16329 typval_T *rettv;
16331 char_u result_buf[256];
16332 struct tm *curtime;
16333 time_t seconds;
16334 char_u *p;
16336 rettv->v_type = VAR_STRING;
16338 p = get_tv_string(&argvars[0]);
16339 if (argvars[1].v_type == VAR_UNKNOWN)
16340 seconds = time(NULL);
16341 else
16342 seconds = (time_t)get_tv_number(&argvars[1]);
16343 curtime = localtime(&seconds);
16344 /* MSVC returns NULL for an invalid value of seconds. */
16345 if (curtime == NULL)
16346 rettv->vval.v_string = vim_strsave((char_u *)_("(Invalid)"));
16347 else
16349 # ifdef FEAT_MBYTE
16350 vimconv_T conv;
16351 char_u *enc;
16353 conv.vc_type = CONV_NONE;
16354 enc = enc_locale();
16355 convert_setup(&conv, p_enc, enc);
16356 if (conv.vc_type != CONV_NONE)
16357 p = string_convert(&conv, p, NULL);
16358 # endif
16359 if (p != NULL)
16360 (void)strftime((char *)result_buf, sizeof(result_buf),
16361 (char *)p, curtime);
16362 else
16363 result_buf[0] = NUL;
16365 # ifdef FEAT_MBYTE
16366 if (conv.vc_type != CONV_NONE)
16367 vim_free(p);
16368 convert_setup(&conv, enc, p_enc);
16369 if (conv.vc_type != CONV_NONE)
16370 rettv->vval.v_string = string_convert(&conv, result_buf, NULL);
16371 else
16372 # endif
16373 rettv->vval.v_string = vim_strsave(result_buf);
16375 # ifdef FEAT_MBYTE
16376 /* Release conversion descriptors */
16377 convert_setup(&conv, NULL, NULL);
16378 vim_free(enc);
16379 # endif
16382 #endif
16385 * "stridx()" function
16387 static void
16388 f_stridx(argvars, rettv)
16389 typval_T *argvars;
16390 typval_T *rettv;
16392 char_u buf[NUMBUFLEN];
16393 char_u *needle;
16394 char_u *haystack;
16395 char_u *save_haystack;
16396 char_u *pos;
16397 int start_idx;
16399 needle = get_tv_string_chk(&argvars[1]);
16400 save_haystack = haystack = get_tv_string_buf_chk(&argvars[0], buf);
16401 rettv->vval.v_number = -1;
16402 if (needle == NULL || haystack == NULL)
16403 return; /* type error; errmsg already given */
16405 if (argvars[2].v_type != VAR_UNKNOWN)
16407 int error = FALSE;
16409 start_idx = get_tv_number_chk(&argvars[2], &error);
16410 if (error || start_idx >= (int)STRLEN(haystack))
16411 return;
16412 if (start_idx >= 0)
16413 haystack += start_idx;
16416 pos = (char_u *)strstr((char *)haystack, (char *)needle);
16417 if (pos != NULL)
16418 rettv->vval.v_number = (varnumber_T)(pos - save_haystack);
16422 * "string()" function
16424 static void
16425 f_string(argvars, rettv)
16426 typval_T *argvars;
16427 typval_T *rettv;
16429 char_u *tofree;
16430 char_u numbuf[NUMBUFLEN];
16432 rettv->v_type = VAR_STRING;
16433 rettv->vval.v_string = tv2string(&argvars[0], &tofree, numbuf, 0);
16434 /* Make a copy if we have a value but it's not in allocated memory. */
16435 if (rettv->vval.v_string != NULL && tofree == NULL)
16436 rettv->vval.v_string = vim_strsave(rettv->vval.v_string);
16440 * "strlen()" function
16442 static void
16443 f_strlen(argvars, rettv)
16444 typval_T *argvars;
16445 typval_T *rettv;
16447 rettv->vval.v_number = (varnumber_T)(STRLEN(
16448 get_tv_string(&argvars[0])));
16452 * "strpart()" function
16454 static void
16455 f_strpart(argvars, rettv)
16456 typval_T *argvars;
16457 typval_T *rettv;
16459 char_u *p;
16460 int n;
16461 int len;
16462 int slen;
16463 int error = FALSE;
16465 p = get_tv_string(&argvars[0]);
16466 slen = (int)STRLEN(p);
16468 n = get_tv_number_chk(&argvars[1], &error);
16469 if (error)
16470 len = 0;
16471 else if (argvars[2].v_type != VAR_UNKNOWN)
16472 len = get_tv_number(&argvars[2]);
16473 else
16474 len = slen - n; /* default len: all bytes that are available. */
16477 * Only return the overlap between the specified part and the actual
16478 * string.
16480 if (n < 0)
16482 len += n;
16483 n = 0;
16485 else if (n > slen)
16486 n = slen;
16487 if (len < 0)
16488 len = 0;
16489 else if (n + len > slen)
16490 len = slen - n;
16492 rettv->v_type = VAR_STRING;
16493 rettv->vval.v_string = vim_strnsave(p + n, len);
16497 * "strridx()" function
16499 static void
16500 f_strridx(argvars, rettv)
16501 typval_T *argvars;
16502 typval_T *rettv;
16504 char_u buf[NUMBUFLEN];
16505 char_u *needle;
16506 char_u *haystack;
16507 char_u *rest;
16508 char_u *lastmatch = NULL;
16509 int haystack_len, end_idx;
16511 needle = get_tv_string_chk(&argvars[1]);
16512 haystack = get_tv_string_buf_chk(&argvars[0], buf);
16514 rettv->vval.v_number = -1;
16515 if (needle == NULL || haystack == NULL)
16516 return; /* type error; errmsg already given */
16518 haystack_len = (int)STRLEN(haystack);
16519 if (argvars[2].v_type != VAR_UNKNOWN)
16521 /* Third argument: upper limit for index */
16522 end_idx = get_tv_number_chk(&argvars[2], NULL);
16523 if (end_idx < 0)
16524 return; /* can never find a match */
16526 else
16527 end_idx = haystack_len;
16529 if (*needle == NUL)
16531 /* Empty string matches past the end. */
16532 lastmatch = haystack + end_idx;
16534 else
16536 for (rest = haystack; *rest != '\0'; ++rest)
16538 rest = (char_u *)strstr((char *)rest, (char *)needle);
16539 if (rest == NULL || rest > haystack + end_idx)
16540 break;
16541 lastmatch = rest;
16545 if (lastmatch == NULL)
16546 rettv->vval.v_number = -1;
16547 else
16548 rettv->vval.v_number = (varnumber_T)(lastmatch - haystack);
16552 * "strtrans()" function
16554 static void
16555 f_strtrans(argvars, rettv)
16556 typval_T *argvars;
16557 typval_T *rettv;
16559 rettv->v_type = VAR_STRING;
16560 rettv->vval.v_string = transstr(get_tv_string(&argvars[0]));
16564 * "submatch()" function
16566 static void
16567 f_submatch(argvars, rettv)
16568 typval_T *argvars;
16569 typval_T *rettv;
16571 rettv->v_type = VAR_STRING;
16572 rettv->vval.v_string =
16573 reg_submatch((int)get_tv_number_chk(&argvars[0], NULL));
16577 * "substitute()" function
16579 static void
16580 f_substitute(argvars, rettv)
16581 typval_T *argvars;
16582 typval_T *rettv;
16584 char_u patbuf[NUMBUFLEN];
16585 char_u subbuf[NUMBUFLEN];
16586 char_u flagsbuf[NUMBUFLEN];
16588 char_u *str = get_tv_string_chk(&argvars[0]);
16589 char_u *pat = get_tv_string_buf_chk(&argvars[1], patbuf);
16590 char_u *sub = get_tv_string_buf_chk(&argvars[2], subbuf);
16591 char_u *flg = get_tv_string_buf_chk(&argvars[3], flagsbuf);
16593 rettv->v_type = VAR_STRING;
16594 if (str == NULL || pat == NULL || sub == NULL || flg == NULL)
16595 rettv->vval.v_string = NULL;
16596 else
16597 rettv->vval.v_string = do_string_sub(str, pat, sub, flg);
16601 * "synID(lnum, col, trans)" function
16603 /*ARGSUSED*/
16604 static void
16605 f_synID(argvars, rettv)
16606 typval_T *argvars;
16607 typval_T *rettv;
16609 int id = 0;
16610 #ifdef FEAT_SYN_HL
16611 long lnum;
16612 long col;
16613 int trans;
16614 int transerr = FALSE;
16616 lnum = get_tv_lnum(argvars); /* -1 on type error */
16617 col = get_tv_number(&argvars[1]) - 1; /* -1 on type error */
16618 trans = get_tv_number_chk(&argvars[2], &transerr);
16620 if (!transerr && lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count
16621 && col >= 0 && col < (long)STRLEN(ml_get(lnum)))
16622 id = syn_get_id(curwin, lnum, (colnr_T)col, trans, NULL, FALSE);
16623 #endif
16625 rettv->vval.v_number = id;
16629 * "synIDattr(id, what [, mode])" function
16631 /*ARGSUSED*/
16632 static void
16633 f_synIDattr(argvars, rettv)
16634 typval_T *argvars;
16635 typval_T *rettv;
16637 char_u *p = NULL;
16638 #ifdef FEAT_SYN_HL
16639 int id;
16640 char_u *what;
16641 char_u *mode;
16642 char_u modebuf[NUMBUFLEN];
16643 int modec;
16645 id = get_tv_number(&argvars[0]);
16646 what = get_tv_string(&argvars[1]);
16647 if (argvars[2].v_type != VAR_UNKNOWN)
16649 mode = get_tv_string_buf(&argvars[2], modebuf);
16650 modec = TOLOWER_ASC(mode[0]);
16651 if (modec != 't' && modec != 'c'
16652 #ifdef FEAT_GUI
16653 && modec != 'g'
16654 #endif
16656 modec = 0; /* replace invalid with current */
16658 else
16660 #ifdef FEAT_GUI
16661 if (gui.in_use)
16662 modec = 'g';
16663 else
16664 #endif
16665 if (t_colors > 1)
16666 modec = 'c';
16667 else
16668 modec = 't';
16672 switch (TOLOWER_ASC(what[0]))
16674 case 'b':
16675 if (TOLOWER_ASC(what[1]) == 'g') /* bg[#] */
16676 p = highlight_color(id, what, modec);
16677 else /* bold */
16678 p = highlight_has_attr(id, HL_BOLD, modec);
16679 break;
16681 case 'f': /* fg[#] */
16682 p = highlight_color(id, what, modec);
16683 break;
16685 case 'i':
16686 if (TOLOWER_ASC(what[1]) == 'n') /* inverse */
16687 p = highlight_has_attr(id, HL_INVERSE, modec);
16688 else /* italic */
16689 p = highlight_has_attr(id, HL_ITALIC, modec);
16690 break;
16692 case 'n': /* name */
16693 p = get_highlight_name(NULL, id - 1);
16694 break;
16696 case 'r': /* reverse */
16697 p = highlight_has_attr(id, HL_INVERSE, modec);
16698 break;
16700 case 's':
16701 if (TOLOWER_ASC(what[1]) == 'p') /* sp[#] */
16702 p = highlight_color(id, what, modec);
16703 else /* standout */
16704 p = highlight_has_attr(id, HL_STANDOUT, modec);
16705 break;
16707 case 'u':
16708 if (STRLEN(what) <= 5 || TOLOWER_ASC(what[5]) != 'c')
16709 /* underline */
16710 p = highlight_has_attr(id, HL_UNDERLINE, modec);
16711 else
16712 /* undercurl */
16713 p = highlight_has_attr(id, HL_UNDERCURL, modec);
16714 break;
16717 if (p != NULL)
16718 p = vim_strsave(p);
16719 #endif
16720 rettv->v_type = VAR_STRING;
16721 rettv->vval.v_string = p;
16725 * "synIDtrans(id)" function
16727 /*ARGSUSED*/
16728 static void
16729 f_synIDtrans(argvars, rettv)
16730 typval_T *argvars;
16731 typval_T *rettv;
16733 int id;
16735 #ifdef FEAT_SYN_HL
16736 id = get_tv_number(&argvars[0]);
16738 if (id > 0)
16739 id = syn_get_final_id(id);
16740 else
16741 #endif
16742 id = 0;
16744 rettv->vval.v_number = id;
16748 * "synstack(lnum, col)" function
16750 /*ARGSUSED*/
16751 static void
16752 f_synstack(argvars, rettv)
16753 typval_T *argvars;
16754 typval_T *rettv;
16756 #ifdef FEAT_SYN_HL
16757 long lnum;
16758 long col;
16759 int i;
16760 int id;
16761 #endif
16763 rettv->v_type = VAR_LIST;
16764 rettv->vval.v_list = NULL;
16766 #ifdef FEAT_SYN_HL
16767 lnum = get_tv_lnum(argvars); /* -1 on type error */
16768 col = get_tv_number(&argvars[1]) - 1; /* -1 on type error */
16770 if (lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count
16771 && col >= 0 && (col == 0 || col < (long)STRLEN(ml_get(lnum)))
16772 && rettv_list_alloc(rettv) != FAIL)
16774 (void)syn_get_id(curwin, lnum, (colnr_T)col, FALSE, NULL, TRUE);
16775 for (i = 0; ; ++i)
16777 id = syn_get_stack_item(i);
16778 if (id < 0)
16779 break;
16780 if (list_append_number(rettv->vval.v_list, id) == FAIL)
16781 break;
16784 #endif
16788 * "system()" function
16790 static void
16791 f_system(argvars, rettv)
16792 typval_T *argvars;
16793 typval_T *rettv;
16795 char_u *res = NULL;
16796 char_u *p;
16797 char_u *infile = NULL;
16798 char_u buf[NUMBUFLEN];
16799 int err = FALSE;
16800 FILE *fd;
16802 if (check_restricted() || check_secure())
16803 goto done;
16805 if (argvars[1].v_type != VAR_UNKNOWN)
16808 * Write the string to a temp file, to be used for input of the shell
16809 * command.
16811 if ((infile = vim_tempname('i')) == NULL)
16813 EMSG(_(e_notmp));
16814 goto done;
16817 fd = mch_fopen((char *)infile, WRITEBIN);
16818 if (fd == NULL)
16820 EMSG2(_(e_notopen), infile);
16821 goto done;
16823 p = get_tv_string_buf_chk(&argvars[1], buf);
16824 if (p == NULL)
16826 fclose(fd);
16827 goto done; /* type error; errmsg already given */
16829 if (fwrite(p, STRLEN(p), 1, fd) != 1)
16830 err = TRUE;
16831 if (fclose(fd) != 0)
16832 err = TRUE;
16833 if (err)
16835 EMSG(_("E677: Error writing temp file"));
16836 goto done;
16840 res = get_cmd_output(get_tv_string(&argvars[0]), infile,
16841 SHELL_SILENT | SHELL_COOKED);
16843 #ifdef USE_CR
16844 /* translate <CR> into <NL> */
16845 if (res != NULL)
16847 char_u *s;
16849 for (s = res; *s; ++s)
16851 if (*s == CAR)
16852 *s = NL;
16855 #else
16856 # ifdef USE_CRNL
16857 /* translate <CR><NL> into <NL> */
16858 if (res != NULL)
16860 char_u *s, *d;
16862 d = res;
16863 for (s = res; *s; ++s)
16865 if (s[0] == CAR && s[1] == NL)
16866 ++s;
16867 *d++ = *s;
16869 *d = NUL;
16871 # endif
16872 #endif
16874 done:
16875 if (infile != NULL)
16877 mch_remove(infile);
16878 vim_free(infile);
16880 rettv->v_type = VAR_STRING;
16881 rettv->vval.v_string = res;
16885 * "tabpagebuflist()" function
16887 /* ARGSUSED */
16888 static void
16889 f_tabpagebuflist(argvars, rettv)
16890 typval_T *argvars;
16891 typval_T *rettv;
16893 #ifndef FEAT_WINDOWS
16894 rettv->vval.v_number = 0;
16895 #else
16896 tabpage_T *tp;
16897 win_T *wp = NULL;
16899 if (argvars[0].v_type == VAR_UNKNOWN)
16900 wp = firstwin;
16901 else
16903 tp = find_tabpage((int)get_tv_number(&argvars[0]));
16904 if (tp != NULL)
16905 wp = (tp == curtab) ? firstwin : tp->tp_firstwin;
16907 if (wp == NULL)
16908 rettv->vval.v_number = 0;
16909 else
16911 if (rettv_list_alloc(rettv) == FAIL)
16912 rettv->vval.v_number = 0;
16913 else
16915 for (; wp != NULL; wp = wp->w_next)
16916 if (list_append_number(rettv->vval.v_list,
16917 wp->w_buffer->b_fnum) == FAIL)
16918 break;
16921 #endif
16926 * "tabpagenr()" function
16928 /* ARGSUSED */
16929 static void
16930 f_tabpagenr(argvars, rettv)
16931 typval_T *argvars;
16932 typval_T *rettv;
16934 int nr = 1;
16935 #ifdef FEAT_WINDOWS
16936 char_u *arg;
16938 if (argvars[0].v_type != VAR_UNKNOWN)
16940 arg = get_tv_string_chk(&argvars[0]);
16941 nr = 0;
16942 if (arg != NULL)
16944 if (STRCMP(arg, "$") == 0)
16945 nr = tabpage_index(NULL) - 1;
16946 else
16947 EMSG2(_(e_invexpr2), arg);
16950 else
16951 nr = tabpage_index(curtab);
16952 #endif
16953 rettv->vval.v_number = nr;
16957 #ifdef FEAT_WINDOWS
16958 static int get_winnr __ARGS((tabpage_T *tp, typval_T *argvar));
16961 * Common code for tabpagewinnr() and winnr().
16963 static int
16964 get_winnr(tp, argvar)
16965 tabpage_T *tp;
16966 typval_T *argvar;
16968 win_T *twin;
16969 int nr = 1;
16970 win_T *wp;
16971 char_u *arg;
16973 twin = (tp == curtab) ? curwin : tp->tp_curwin;
16974 if (argvar->v_type != VAR_UNKNOWN)
16976 arg = get_tv_string_chk(argvar);
16977 if (arg == NULL)
16978 nr = 0; /* type error; errmsg already given */
16979 else if (STRCMP(arg, "$") == 0)
16980 twin = (tp == curtab) ? lastwin : tp->tp_lastwin;
16981 else if (STRCMP(arg, "#") == 0)
16983 twin = (tp == curtab) ? prevwin : tp->tp_prevwin;
16984 if (twin == NULL)
16985 nr = 0;
16987 else
16989 EMSG2(_(e_invexpr2), arg);
16990 nr = 0;
16994 if (nr > 0)
16995 for (wp = (tp == curtab) ? firstwin : tp->tp_firstwin;
16996 wp != twin; wp = wp->w_next)
16998 if (wp == NULL)
17000 /* didn't find it in this tabpage */
17001 nr = 0;
17002 break;
17004 ++nr;
17006 return nr;
17008 #endif
17011 * "tabpagewinnr()" function
17013 /* ARGSUSED */
17014 static void
17015 f_tabpagewinnr(argvars, rettv)
17016 typval_T *argvars;
17017 typval_T *rettv;
17019 int nr = 1;
17020 #ifdef FEAT_WINDOWS
17021 tabpage_T *tp;
17023 tp = find_tabpage((int)get_tv_number(&argvars[0]));
17024 if (tp == NULL)
17025 nr = 0;
17026 else
17027 nr = get_winnr(tp, &argvars[1]);
17028 #endif
17029 rettv->vval.v_number = nr;
17034 * "tagfiles()" function
17036 /*ARGSUSED*/
17037 static void
17038 f_tagfiles(argvars, rettv)
17039 typval_T *argvars;
17040 typval_T *rettv;
17042 char_u fname[MAXPATHL + 1];
17043 tagname_T tn;
17044 int first;
17046 if (rettv_list_alloc(rettv) == FAIL)
17048 rettv->vval.v_number = 0;
17049 return;
17052 for (first = TRUE; ; first = FALSE)
17053 if (get_tagfname(&tn, first, fname) == FAIL
17054 || list_append_string(rettv->vval.v_list, fname, -1) == FAIL)
17055 break;
17056 tagname_free(&tn);
17060 * "taglist()" function
17062 static void
17063 f_taglist(argvars, rettv)
17064 typval_T *argvars;
17065 typval_T *rettv;
17067 char_u *tag_pattern;
17069 tag_pattern = get_tv_string(&argvars[0]);
17071 rettv->vval.v_number = FALSE;
17072 if (*tag_pattern == NUL)
17073 return;
17075 if (rettv_list_alloc(rettv) == OK)
17076 (void)get_tags(rettv->vval.v_list, tag_pattern);
17080 * "tempname()" function
17082 /*ARGSUSED*/
17083 static void
17084 f_tempname(argvars, rettv)
17085 typval_T *argvars;
17086 typval_T *rettv;
17088 static int x = 'A';
17090 rettv->v_type = VAR_STRING;
17091 rettv->vval.v_string = vim_tempname(x);
17093 /* Advance 'x' to use A-Z and 0-9, so that there are at least 34 different
17094 * names. Skip 'I' and 'O', they are used for shell redirection. */
17097 if (x == 'Z')
17098 x = '0';
17099 else if (x == '9')
17100 x = 'A';
17101 else
17103 #ifdef EBCDIC
17104 if (x == 'I')
17105 x = 'J';
17106 else if (x == 'R')
17107 x = 'S';
17108 else
17109 #endif
17110 ++x;
17112 } while (x == 'I' || x == 'O');
17116 * "test(list)" function: Just checking the walls...
17118 /*ARGSUSED*/
17119 static void
17120 f_test(argvars, rettv)
17121 typval_T *argvars;
17122 typval_T *rettv;
17124 /* Used for unit testing. Change the code below to your liking. */
17125 #if 0
17126 listitem_T *li;
17127 list_T *l;
17128 char_u *bad, *good;
17130 if (argvars[0].v_type != VAR_LIST)
17131 return;
17132 l = argvars[0].vval.v_list;
17133 if (l == NULL)
17134 return;
17135 li = l->lv_first;
17136 if (li == NULL)
17137 return;
17138 bad = get_tv_string(&li->li_tv);
17139 li = li->li_next;
17140 if (li == NULL)
17141 return;
17142 good = get_tv_string(&li->li_tv);
17143 rettv->vval.v_number = test_edit_score(bad, good);
17144 #endif
17148 * "tolower(string)" function
17150 static void
17151 f_tolower(argvars, rettv)
17152 typval_T *argvars;
17153 typval_T *rettv;
17155 char_u *p;
17157 p = vim_strsave(get_tv_string(&argvars[0]));
17158 rettv->v_type = VAR_STRING;
17159 rettv->vval.v_string = p;
17161 if (p != NULL)
17162 while (*p != NUL)
17164 #ifdef FEAT_MBYTE
17165 int l;
17167 if (enc_utf8)
17169 int c, lc;
17171 c = utf_ptr2char(p);
17172 lc = utf_tolower(c);
17173 l = utf_ptr2len(p);
17174 /* TODO: reallocate string when byte count changes. */
17175 if (utf_char2len(lc) == l)
17176 utf_char2bytes(lc, p);
17177 p += l;
17179 else if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
17180 p += l; /* skip multi-byte character */
17181 else
17182 #endif
17184 *p = TOLOWER_LOC(*p); /* note that tolower() can be a macro */
17185 ++p;
17191 * "toupper(string)" function
17193 static void
17194 f_toupper(argvars, rettv)
17195 typval_T *argvars;
17196 typval_T *rettv;
17198 rettv->v_type = VAR_STRING;
17199 rettv->vval.v_string = strup_save(get_tv_string(&argvars[0]));
17203 * "tr(string, fromstr, tostr)" function
17205 static void
17206 f_tr(argvars, rettv)
17207 typval_T *argvars;
17208 typval_T *rettv;
17210 char_u *instr;
17211 char_u *fromstr;
17212 char_u *tostr;
17213 char_u *p;
17214 #ifdef FEAT_MBYTE
17215 int inlen;
17216 int fromlen;
17217 int tolen;
17218 int idx;
17219 char_u *cpstr;
17220 int cplen;
17221 int first = TRUE;
17222 #endif
17223 char_u buf[NUMBUFLEN];
17224 char_u buf2[NUMBUFLEN];
17225 garray_T ga;
17227 instr = get_tv_string(&argvars[0]);
17228 fromstr = get_tv_string_buf_chk(&argvars[1], buf);
17229 tostr = get_tv_string_buf_chk(&argvars[2], buf2);
17231 /* Default return value: empty string. */
17232 rettv->v_type = VAR_STRING;
17233 rettv->vval.v_string = NULL;
17234 if (fromstr == NULL || tostr == NULL)
17235 return; /* type error; errmsg already given */
17236 ga_init2(&ga, (int)sizeof(char), 80);
17238 #ifdef FEAT_MBYTE
17239 if (!has_mbyte)
17240 #endif
17241 /* not multi-byte: fromstr and tostr must be the same length */
17242 if (STRLEN(fromstr) != STRLEN(tostr))
17244 #ifdef FEAT_MBYTE
17245 error:
17246 #endif
17247 EMSG2(_(e_invarg2), fromstr);
17248 ga_clear(&ga);
17249 return;
17252 /* fromstr and tostr have to contain the same number of chars */
17253 while (*instr != NUL)
17255 #ifdef FEAT_MBYTE
17256 if (has_mbyte)
17258 inlen = (*mb_ptr2len)(instr);
17259 cpstr = instr;
17260 cplen = inlen;
17261 idx = 0;
17262 for (p = fromstr; *p != NUL; p += fromlen)
17264 fromlen = (*mb_ptr2len)(p);
17265 if (fromlen == inlen && STRNCMP(instr, p, inlen) == 0)
17267 for (p = tostr; *p != NUL; p += tolen)
17269 tolen = (*mb_ptr2len)(p);
17270 if (idx-- == 0)
17272 cplen = tolen;
17273 cpstr = p;
17274 break;
17277 if (*p == NUL) /* tostr is shorter than fromstr */
17278 goto error;
17279 break;
17281 ++idx;
17284 if (first && cpstr == instr)
17286 /* Check that fromstr and tostr have the same number of
17287 * (multi-byte) characters. Done only once when a character
17288 * of instr doesn't appear in fromstr. */
17289 first = FALSE;
17290 for (p = tostr; *p != NUL; p += tolen)
17292 tolen = (*mb_ptr2len)(p);
17293 --idx;
17295 if (idx != 0)
17296 goto error;
17299 ga_grow(&ga, cplen);
17300 mch_memmove((char *)ga.ga_data + ga.ga_len, cpstr, (size_t)cplen);
17301 ga.ga_len += cplen;
17303 instr += inlen;
17305 else
17306 #endif
17308 /* When not using multi-byte chars we can do it faster. */
17309 p = vim_strchr(fromstr, *instr);
17310 if (p != NULL)
17311 ga_append(&ga, tostr[p - fromstr]);
17312 else
17313 ga_append(&ga, *instr);
17314 ++instr;
17318 /* add a terminating NUL */
17319 ga_grow(&ga, 1);
17320 ga_append(&ga, NUL);
17322 rettv->vval.v_string = ga.ga_data;
17325 #ifdef FEAT_FLOAT
17327 * "trunc({float})" function
17329 static void
17330 f_trunc(argvars, rettv)
17331 typval_T *argvars;
17332 typval_T *rettv;
17334 float_T f;
17336 rettv->v_type = VAR_FLOAT;
17337 if (get_float_arg(argvars, &f) == OK)
17338 /* trunc() is not in C90, use floor() or ceil() instead. */
17339 rettv->vval.v_float = f > 0 ? floor(f) : ceil(f);
17340 else
17341 rettv->vval.v_float = 0.0;
17343 #endif
17346 * "type(expr)" function
17348 static void
17349 f_type(argvars, rettv)
17350 typval_T *argvars;
17351 typval_T *rettv;
17353 int n;
17355 switch (argvars[0].v_type)
17357 case VAR_NUMBER: n = 0; break;
17358 case VAR_STRING: n = 1; break;
17359 case VAR_FUNC: n = 2; break;
17360 case VAR_LIST: n = 3; break;
17361 case VAR_DICT: n = 4; break;
17362 #ifdef FEAT_FLOAT
17363 case VAR_FLOAT: n = 5; break;
17364 #endif
17365 default: EMSG2(_(e_intern2), "f_type()"); n = 0; break;
17367 rettv->vval.v_number = n;
17371 * "values(dict)" function
17373 static void
17374 f_values(argvars, rettv)
17375 typval_T *argvars;
17376 typval_T *rettv;
17378 dict_list(argvars, rettv, 1);
17382 * "virtcol(string)" function
17384 static void
17385 f_virtcol(argvars, rettv)
17386 typval_T *argvars;
17387 typval_T *rettv;
17389 colnr_T vcol = 0;
17390 pos_T *fp;
17391 int fnum = curbuf->b_fnum;
17393 fp = var2fpos(&argvars[0], FALSE, &fnum);
17394 if (fp != NULL && fp->lnum <= curbuf->b_ml.ml_line_count
17395 && fnum == curbuf->b_fnum)
17397 getvvcol(curwin, fp, NULL, NULL, &vcol);
17398 ++vcol;
17401 rettv->vval.v_number = vcol;
17405 * "visualmode()" function
17407 /*ARGSUSED*/
17408 static void
17409 f_visualmode(argvars, rettv)
17410 typval_T *argvars;
17411 typval_T *rettv;
17413 #ifdef FEAT_VISUAL
17414 char_u str[2];
17416 rettv->v_type = VAR_STRING;
17417 str[0] = curbuf->b_visual_mode_eval;
17418 str[1] = NUL;
17419 rettv->vval.v_string = vim_strsave(str);
17421 /* A non-zero number or non-empty string argument: reset mode. */
17422 if (non_zero_arg(&argvars[0]))
17423 curbuf->b_visual_mode_eval = NUL;
17424 #else
17425 rettv->vval.v_number = 0; /* return anything, it won't work anyway */
17426 #endif
17430 * "winbufnr(nr)" function
17432 static void
17433 f_winbufnr(argvars, rettv)
17434 typval_T *argvars;
17435 typval_T *rettv;
17437 win_T *wp;
17439 wp = find_win_by_nr(&argvars[0], NULL);
17440 if (wp == NULL)
17441 rettv->vval.v_number = -1;
17442 else
17443 rettv->vval.v_number = wp->w_buffer->b_fnum;
17447 * "wincol()" function
17449 /*ARGSUSED*/
17450 static void
17451 f_wincol(argvars, rettv)
17452 typval_T *argvars;
17453 typval_T *rettv;
17455 validate_cursor();
17456 rettv->vval.v_number = curwin->w_wcol + 1;
17460 * "winheight(nr)" function
17462 static void
17463 f_winheight(argvars, rettv)
17464 typval_T *argvars;
17465 typval_T *rettv;
17467 win_T *wp;
17469 wp = find_win_by_nr(&argvars[0], NULL);
17470 if (wp == NULL)
17471 rettv->vval.v_number = -1;
17472 else
17473 rettv->vval.v_number = wp->w_height;
17477 * "winline()" function
17479 /*ARGSUSED*/
17480 static void
17481 f_winline(argvars, rettv)
17482 typval_T *argvars;
17483 typval_T *rettv;
17485 validate_cursor();
17486 rettv->vval.v_number = curwin->w_wrow + 1;
17490 * "winnr()" function
17492 /* ARGSUSED */
17493 static void
17494 f_winnr(argvars, rettv)
17495 typval_T *argvars;
17496 typval_T *rettv;
17498 int nr = 1;
17500 #ifdef FEAT_WINDOWS
17501 nr = get_winnr(curtab, &argvars[0]);
17502 #endif
17503 rettv->vval.v_number = nr;
17507 * "winrestcmd()" function
17509 /* ARGSUSED */
17510 static void
17511 f_winrestcmd(argvars, rettv)
17512 typval_T *argvars;
17513 typval_T *rettv;
17515 #ifdef FEAT_WINDOWS
17516 win_T *wp;
17517 int winnr = 1;
17518 garray_T ga;
17519 char_u buf[50];
17521 ga_init2(&ga, (int)sizeof(char), 70);
17522 for (wp = firstwin; wp != NULL; wp = wp->w_next)
17524 sprintf((char *)buf, "%dresize %d|", winnr, wp->w_height);
17525 ga_concat(&ga, buf);
17526 # ifdef FEAT_VERTSPLIT
17527 sprintf((char *)buf, "vert %dresize %d|", winnr, wp->w_width);
17528 ga_concat(&ga, buf);
17529 # endif
17530 ++winnr;
17532 ga_append(&ga, NUL);
17534 rettv->vval.v_string = ga.ga_data;
17535 #else
17536 rettv->vval.v_string = NULL;
17537 #endif
17538 rettv->v_type = VAR_STRING;
17542 * "winrestview()" function
17544 /* ARGSUSED */
17545 static void
17546 f_winrestview(argvars, rettv)
17547 typval_T *argvars;
17548 typval_T *rettv;
17550 dict_T *dict;
17552 if (argvars[0].v_type != VAR_DICT
17553 || (dict = argvars[0].vval.v_dict) == NULL)
17554 EMSG(_(e_invarg));
17555 else
17557 curwin->w_cursor.lnum = get_dict_number(dict, (char_u *)"lnum");
17558 curwin->w_cursor.col = get_dict_number(dict, (char_u *)"col");
17559 #ifdef FEAT_VIRTUALEDIT
17560 curwin->w_cursor.coladd = get_dict_number(dict, (char_u *)"coladd");
17561 #endif
17562 curwin->w_curswant = get_dict_number(dict, (char_u *)"curswant");
17563 curwin->w_set_curswant = FALSE;
17565 set_topline(curwin, get_dict_number(dict, (char_u *)"topline"));
17566 #ifdef FEAT_DIFF
17567 curwin->w_topfill = get_dict_number(dict, (char_u *)"topfill");
17568 #endif
17569 curwin->w_leftcol = get_dict_number(dict, (char_u *)"leftcol");
17570 curwin->w_skipcol = get_dict_number(dict, (char_u *)"skipcol");
17572 check_cursor();
17573 changed_cline_bef_curs();
17574 invalidate_botline();
17575 redraw_later(VALID);
17577 if (curwin->w_topline == 0)
17578 curwin->w_topline = 1;
17579 if (curwin->w_topline > curbuf->b_ml.ml_line_count)
17580 curwin->w_topline = curbuf->b_ml.ml_line_count;
17581 #ifdef FEAT_DIFF
17582 check_topfill(curwin, TRUE);
17583 #endif
17588 * "winsaveview()" function
17590 /* ARGSUSED */
17591 static void
17592 f_winsaveview(argvars, rettv)
17593 typval_T *argvars;
17594 typval_T *rettv;
17596 dict_T *dict;
17598 dict = dict_alloc();
17599 if (dict == NULL)
17600 return;
17601 rettv->v_type = VAR_DICT;
17602 rettv->vval.v_dict = dict;
17603 ++dict->dv_refcount;
17605 dict_add_nr_str(dict, "lnum", (long)curwin->w_cursor.lnum, NULL);
17606 dict_add_nr_str(dict, "col", (long)curwin->w_cursor.col, NULL);
17607 #ifdef FEAT_VIRTUALEDIT
17608 dict_add_nr_str(dict, "coladd", (long)curwin->w_cursor.coladd, NULL);
17609 #endif
17610 update_curswant();
17611 dict_add_nr_str(dict, "curswant", (long)curwin->w_curswant, NULL);
17613 dict_add_nr_str(dict, "topline", (long)curwin->w_topline, NULL);
17614 #ifdef FEAT_DIFF
17615 dict_add_nr_str(dict, "topfill", (long)curwin->w_topfill, NULL);
17616 #endif
17617 dict_add_nr_str(dict, "leftcol", (long)curwin->w_leftcol, NULL);
17618 dict_add_nr_str(dict, "skipcol", (long)curwin->w_skipcol, NULL);
17622 * "winwidth(nr)" function
17624 static void
17625 f_winwidth(argvars, rettv)
17626 typval_T *argvars;
17627 typval_T *rettv;
17629 win_T *wp;
17631 wp = find_win_by_nr(&argvars[0], NULL);
17632 if (wp == NULL)
17633 rettv->vval.v_number = -1;
17634 else
17635 #ifdef FEAT_VERTSPLIT
17636 rettv->vval.v_number = wp->w_width;
17637 #else
17638 rettv->vval.v_number = Columns;
17639 #endif
17643 * "writefile()" function
17645 static void
17646 f_writefile(argvars, rettv)
17647 typval_T *argvars;
17648 typval_T *rettv;
17650 int binary = FALSE;
17651 char_u *fname;
17652 FILE *fd;
17653 listitem_T *li;
17654 char_u *s;
17655 int ret = 0;
17656 int c;
17658 if (check_restricted() || check_secure())
17659 return;
17661 if (argvars[0].v_type != VAR_LIST)
17663 EMSG2(_(e_listarg), "writefile()");
17664 return;
17666 if (argvars[0].vval.v_list == NULL)
17667 return;
17669 if (argvars[2].v_type != VAR_UNKNOWN
17670 && STRCMP(get_tv_string(&argvars[2]), "b") == 0)
17671 binary = TRUE;
17673 /* Always open the file in binary mode, library functions have a mind of
17674 * their own about CR-LF conversion. */
17675 fname = get_tv_string(&argvars[1]);
17676 if (*fname == NUL || (fd = mch_fopen((char *)fname, WRITEBIN)) == NULL)
17678 EMSG2(_(e_notcreate), *fname == NUL ? (char_u *)_("<empty>") : fname);
17679 ret = -1;
17681 else
17683 for (li = argvars[0].vval.v_list->lv_first; li != NULL;
17684 li = li->li_next)
17686 for (s = get_tv_string(&li->li_tv); *s != NUL; ++s)
17688 if (*s == '\n')
17689 c = putc(NUL, fd);
17690 else
17691 c = putc(*s, fd);
17692 if (c == EOF)
17694 ret = -1;
17695 break;
17698 if (!binary || li->li_next != NULL)
17699 if (putc('\n', fd) == EOF)
17701 ret = -1;
17702 break;
17704 if (ret < 0)
17706 EMSG(_(e_write));
17707 break;
17710 fclose(fd);
17713 rettv->vval.v_number = ret;
17717 * Translate a String variable into a position.
17718 * Returns NULL when there is an error.
17720 static pos_T *
17721 var2fpos(varp, dollar_lnum, fnum)
17722 typval_T *varp;
17723 int dollar_lnum; /* TRUE when $ is last line */
17724 int *fnum; /* set to fnum for '0, 'A, etc. */
17726 char_u *name;
17727 static pos_T pos;
17728 pos_T *pp;
17730 /* Argument can be [lnum, col, coladd]. */
17731 if (varp->v_type == VAR_LIST)
17733 list_T *l;
17734 int len;
17735 int error = FALSE;
17736 listitem_T *li;
17738 l = varp->vval.v_list;
17739 if (l == NULL)
17740 return NULL;
17742 /* Get the line number */
17743 pos.lnum = list_find_nr(l, 0L, &error);
17744 if (error || pos.lnum <= 0 || pos.lnum > curbuf->b_ml.ml_line_count)
17745 return NULL; /* invalid line number */
17747 /* Get the column number */
17748 pos.col = list_find_nr(l, 1L, &error);
17749 if (error)
17750 return NULL;
17751 len = (long)STRLEN(ml_get(pos.lnum));
17753 /* We accept "$" for the column number: last column. */
17754 li = list_find(l, 1L);
17755 if (li != NULL && li->li_tv.v_type == VAR_STRING
17756 && li->li_tv.vval.v_string != NULL
17757 && STRCMP(li->li_tv.vval.v_string, "$") == 0)
17758 pos.col = len + 1;
17760 /* Accept a position up to the NUL after the line. */
17761 if (pos.col == 0 || (int)pos.col > len + 1)
17762 return NULL; /* invalid column number */
17763 --pos.col;
17765 #ifdef FEAT_VIRTUALEDIT
17766 /* Get the virtual offset. Defaults to zero. */
17767 pos.coladd = list_find_nr(l, 2L, &error);
17768 if (error)
17769 pos.coladd = 0;
17770 #endif
17772 return &pos;
17775 name = get_tv_string_chk(varp);
17776 if (name == NULL)
17777 return NULL;
17778 if (name[0] == '.') /* cursor */
17779 return &curwin->w_cursor;
17780 #ifdef FEAT_VISUAL
17781 if (name[0] == 'v' && name[1] == NUL) /* Visual start */
17783 if (VIsual_active)
17784 return &VIsual;
17785 return &curwin->w_cursor;
17787 #endif
17788 if (name[0] == '\'') /* mark */
17790 pp = getmark_fnum(name[1], FALSE, fnum);
17791 if (pp == NULL || pp == (pos_T *)-1 || pp->lnum <= 0)
17792 return NULL;
17793 return pp;
17796 #ifdef FEAT_VIRTUALEDIT
17797 pos.coladd = 0;
17798 #endif
17800 if (name[0] == 'w' && dollar_lnum)
17802 pos.col = 0;
17803 if (name[1] == '0') /* "w0": first visible line */
17805 update_topline();
17806 pos.lnum = curwin->w_topline;
17807 return &pos;
17809 else if (name[1] == '$') /* "w$": last visible line */
17811 validate_botline();
17812 pos.lnum = curwin->w_botline - 1;
17813 return &pos;
17816 else if (name[0] == '$') /* last column or line */
17818 if (dollar_lnum)
17820 pos.lnum = curbuf->b_ml.ml_line_count;
17821 pos.col = 0;
17823 else
17825 pos.lnum = curwin->w_cursor.lnum;
17826 pos.col = (colnr_T)STRLEN(ml_get_curline());
17828 return &pos;
17830 return NULL;
17834 * Convert list in "arg" into a position and optional file number.
17835 * When "fnump" is NULL there is no file number, only 3 items.
17836 * Note that the column is passed on as-is, the caller may want to decrement
17837 * it to use 1 for the first column.
17838 * Return FAIL when conversion is not possible, doesn't check the position for
17839 * validity.
17841 static int
17842 list2fpos(arg, posp, fnump)
17843 typval_T *arg;
17844 pos_T *posp;
17845 int *fnump;
17847 list_T *l = arg->vval.v_list;
17848 long i = 0;
17849 long n;
17851 /* List must be: [fnum, lnum, col, coladd], where "fnum" is only there
17852 * when "fnump" isn't NULL and "coladd" is optional. */
17853 if (arg->v_type != VAR_LIST
17854 || l == NULL
17855 || l->lv_len < (fnump == NULL ? 2 : 3)
17856 || l->lv_len > (fnump == NULL ? 3 : 4))
17857 return FAIL;
17859 if (fnump != NULL)
17861 n = list_find_nr(l, i++, NULL); /* fnum */
17862 if (n < 0)
17863 return FAIL;
17864 if (n == 0)
17865 n = curbuf->b_fnum; /* current buffer */
17866 *fnump = n;
17869 n = list_find_nr(l, i++, NULL); /* lnum */
17870 if (n < 0)
17871 return FAIL;
17872 posp->lnum = n;
17874 n = list_find_nr(l, i++, NULL); /* col */
17875 if (n < 0)
17876 return FAIL;
17877 posp->col = n;
17879 #ifdef FEAT_VIRTUALEDIT
17880 n = list_find_nr(l, i, NULL);
17881 if (n < 0)
17882 posp->coladd = 0;
17883 else
17884 posp->coladd = n;
17885 #endif
17887 return OK;
17891 * Get the length of an environment variable name.
17892 * Advance "arg" to the first character after the name.
17893 * Return 0 for error.
17895 static int
17896 get_env_len(arg)
17897 char_u **arg;
17899 char_u *p;
17900 int len;
17902 for (p = *arg; vim_isIDc(*p); ++p)
17904 if (p == *arg) /* no name found */
17905 return 0;
17907 len = (int)(p - *arg);
17908 *arg = p;
17909 return len;
17913 * Get the length of the name of a function or internal variable.
17914 * "arg" is advanced to the first non-white character after the name.
17915 * Return 0 if something is wrong.
17917 static int
17918 get_id_len(arg)
17919 char_u **arg;
17921 char_u *p;
17922 int len;
17924 /* Find the end of the name. */
17925 for (p = *arg; eval_isnamec(*p); ++p)
17927 if (p == *arg) /* no name found */
17928 return 0;
17930 len = (int)(p - *arg);
17931 *arg = skipwhite(p);
17933 return len;
17937 * Get the length of the name of a variable or function.
17938 * Only the name is recognized, does not handle ".key" or "[idx]".
17939 * "arg" is advanced to the first non-white character after the name.
17940 * Return -1 if curly braces expansion failed.
17941 * Return 0 if something else is wrong.
17942 * If the name contains 'magic' {}'s, expand them and return the
17943 * expanded name in an allocated string via 'alias' - caller must free.
17945 static int
17946 get_name_len(arg, alias, evaluate, verbose)
17947 char_u **arg;
17948 char_u **alias;
17949 int evaluate;
17950 int verbose;
17952 int len;
17953 char_u *p;
17954 char_u *expr_start;
17955 char_u *expr_end;
17957 *alias = NULL; /* default to no alias */
17959 if ((*arg)[0] == K_SPECIAL && (*arg)[1] == KS_EXTRA
17960 && (*arg)[2] == (int)KE_SNR)
17962 /* hard coded <SNR>, already translated */
17963 *arg += 3;
17964 return get_id_len(arg) + 3;
17966 len = eval_fname_script(*arg);
17967 if (len > 0)
17969 /* literal "<SID>", "s:" or "<SNR>" */
17970 *arg += len;
17974 * Find the end of the name; check for {} construction.
17976 p = find_name_end(*arg, &expr_start, &expr_end,
17977 len > 0 ? 0 : FNE_CHECK_START);
17978 if (expr_start != NULL)
17980 char_u *temp_string;
17982 if (!evaluate)
17984 len += (int)(p - *arg);
17985 *arg = skipwhite(p);
17986 return len;
17990 * Include any <SID> etc in the expanded string:
17991 * Thus the -len here.
17993 temp_string = make_expanded_name(*arg - len, expr_start, expr_end, p);
17994 if (temp_string == NULL)
17995 return -1;
17996 *alias = temp_string;
17997 *arg = skipwhite(p);
17998 return (int)STRLEN(temp_string);
18001 len += get_id_len(arg);
18002 if (len == 0 && verbose)
18003 EMSG2(_(e_invexpr2), *arg);
18005 return len;
18009 * Find the end of a variable or function name, taking care of magic braces.
18010 * If "expr_start" is not NULL then "expr_start" and "expr_end" are set to the
18011 * start and end of the first magic braces item.
18012 * "flags" can have FNE_INCL_BR and FNE_CHECK_START.
18013 * Return a pointer to just after the name. Equal to "arg" if there is no
18014 * valid name.
18016 static char_u *
18017 find_name_end(arg, expr_start, expr_end, flags)
18018 char_u *arg;
18019 char_u **expr_start;
18020 char_u **expr_end;
18021 int flags;
18023 int mb_nest = 0;
18024 int br_nest = 0;
18025 char_u *p;
18027 if (expr_start != NULL)
18029 *expr_start = NULL;
18030 *expr_end = NULL;
18033 /* Quick check for valid starting character. */
18034 if ((flags & FNE_CHECK_START) && !eval_isnamec1(*arg) && *arg != '{')
18035 return arg;
18037 for (p = arg; *p != NUL
18038 && (eval_isnamec(*p)
18039 || *p == '{'
18040 || ((flags & FNE_INCL_BR) && (*p == '[' || *p == '.'))
18041 || mb_nest != 0
18042 || br_nest != 0); mb_ptr_adv(p))
18044 if (*p == '\'')
18046 /* skip over 'string' to avoid counting [ and ] inside it. */
18047 for (p = p + 1; *p != NUL && *p != '\''; mb_ptr_adv(p))
18049 if (*p == NUL)
18050 break;
18052 else if (*p == '"')
18054 /* skip over "str\"ing" to avoid counting [ and ] inside it. */
18055 for (p = p + 1; *p != NUL && *p != '"'; mb_ptr_adv(p))
18056 if (*p == '\\' && p[1] != NUL)
18057 ++p;
18058 if (*p == NUL)
18059 break;
18062 if (mb_nest == 0)
18064 if (*p == '[')
18065 ++br_nest;
18066 else if (*p == ']')
18067 --br_nest;
18070 if (br_nest == 0)
18072 if (*p == '{')
18074 mb_nest++;
18075 if (expr_start != NULL && *expr_start == NULL)
18076 *expr_start = p;
18078 else if (*p == '}')
18080 mb_nest--;
18081 if (expr_start != NULL && mb_nest == 0 && *expr_end == NULL)
18082 *expr_end = p;
18087 return p;
18091 * Expands out the 'magic' {}'s in a variable/function name.
18092 * Note that this can call itself recursively, to deal with
18093 * constructs like foo{bar}{baz}{bam}
18094 * The four pointer arguments point to "foo{expre}ss{ion}bar"
18095 * "in_start" ^
18096 * "expr_start" ^
18097 * "expr_end" ^
18098 * "in_end" ^
18100 * Returns a new allocated string, which the caller must free.
18101 * Returns NULL for failure.
18103 static char_u *
18104 make_expanded_name(in_start, expr_start, expr_end, in_end)
18105 char_u *in_start;
18106 char_u *expr_start;
18107 char_u *expr_end;
18108 char_u *in_end;
18110 char_u c1;
18111 char_u *retval = NULL;
18112 char_u *temp_result;
18113 char_u *nextcmd = NULL;
18115 if (expr_end == NULL || in_end == NULL)
18116 return NULL;
18117 *expr_start = NUL;
18118 *expr_end = NUL;
18119 c1 = *in_end;
18120 *in_end = NUL;
18122 temp_result = eval_to_string(expr_start + 1, &nextcmd, FALSE);
18123 if (temp_result != NULL && nextcmd == NULL)
18125 retval = alloc((unsigned)(STRLEN(temp_result) + (expr_start - in_start)
18126 + (in_end - expr_end) + 1));
18127 if (retval != NULL)
18129 STRCPY(retval, in_start);
18130 STRCAT(retval, temp_result);
18131 STRCAT(retval, expr_end + 1);
18134 vim_free(temp_result);
18136 *in_end = c1; /* put char back for error messages */
18137 *expr_start = '{';
18138 *expr_end = '}';
18140 if (retval != NULL)
18142 temp_result = find_name_end(retval, &expr_start, &expr_end, 0);
18143 if (expr_start != NULL)
18145 /* Further expansion! */
18146 temp_result = make_expanded_name(retval, expr_start,
18147 expr_end, temp_result);
18148 vim_free(retval);
18149 retval = temp_result;
18153 return retval;
18157 * Return TRUE if character "c" can be used in a variable or function name.
18158 * Does not include '{' or '}' for magic braces.
18160 static int
18161 eval_isnamec(c)
18162 int c;
18164 return (ASCII_ISALNUM(c) || c == '_' || c == ':' || c == AUTOLOAD_CHAR);
18168 * Return TRUE if character "c" can be used as the first character in a
18169 * variable or function name (excluding '{' and '}').
18171 static int
18172 eval_isnamec1(c)
18173 int c;
18175 return (ASCII_ISALPHA(c) || c == '_');
18179 * Set number v: variable to "val".
18181 void
18182 set_vim_var_nr(idx, val)
18183 int idx;
18184 long val;
18186 vimvars[idx].vv_nr = val;
18190 * Get number v: variable value.
18192 long
18193 get_vim_var_nr(idx)
18194 int idx;
18196 return vimvars[idx].vv_nr;
18200 * Get string v: variable value. Uses a static buffer, can only be used once.
18202 char_u *
18203 get_vim_var_str(idx)
18204 int idx;
18206 return get_tv_string(&vimvars[idx].vv_tv);
18210 * Get List v: variable value. Caller must take care of reference count when
18211 * needed.
18213 list_T *
18214 get_vim_var_list(idx)
18215 int idx;
18217 return vimvars[idx].vv_list;
18221 * Set v:count to "count" and v:count1 to "count1".
18222 * When "set_prevcount" is TRUE first set v:prevcount from v:count.
18224 void
18225 set_vcount(count, count1, set_prevcount)
18226 long count;
18227 long count1;
18228 int set_prevcount;
18230 if (set_prevcount)
18231 vimvars[VV_PREVCOUNT].vv_nr = vimvars[VV_COUNT].vv_nr;
18232 vimvars[VV_COUNT].vv_nr = count;
18233 vimvars[VV_COUNT1].vv_nr = count1;
18237 * Set string v: variable to a copy of "val".
18239 void
18240 set_vim_var_string(idx, val, len)
18241 int idx;
18242 char_u *val;
18243 int len; /* length of "val" to use or -1 (whole string) */
18245 /* Need to do this (at least) once, since we can't initialize a union.
18246 * Will always be invoked when "v:progname" is set. */
18247 vimvars[VV_VERSION].vv_nr = VIM_VERSION_100;
18249 vim_free(vimvars[idx].vv_str);
18250 if (val == NULL)
18251 vimvars[idx].vv_str = NULL;
18252 else if (len == -1)
18253 vimvars[idx].vv_str = vim_strsave(val);
18254 else
18255 vimvars[idx].vv_str = vim_strnsave(val, len);
18259 * Set List v: variable to "val".
18261 void
18262 set_vim_var_list(idx, val)
18263 int idx;
18264 list_T *val;
18266 list_unref(vimvars[idx].vv_list);
18267 vimvars[idx].vv_list = val;
18268 if (val != NULL)
18269 ++val->lv_refcount;
18273 * Set v:register if needed.
18275 void
18276 set_reg_var(c)
18277 int c;
18279 char_u regname;
18281 if (c == 0 || c == ' ')
18282 regname = '"';
18283 else
18284 regname = c;
18285 /* Avoid free/alloc when the value is already right. */
18286 if (vimvars[VV_REG].vv_str == NULL || vimvars[VV_REG].vv_str[0] != c)
18287 set_vim_var_string(VV_REG, &regname, 1);
18291 * Get or set v:exception. If "oldval" == NULL, return the current value.
18292 * Otherwise, restore the value to "oldval" and return NULL.
18293 * Must always be called in pairs to save and restore v:exception! Does not
18294 * take care of memory allocations.
18296 char_u *
18297 v_exception(oldval)
18298 char_u *oldval;
18300 if (oldval == NULL)
18301 return vimvars[VV_EXCEPTION].vv_str;
18303 vimvars[VV_EXCEPTION].vv_str = oldval;
18304 return NULL;
18308 * Get or set v:throwpoint. If "oldval" == NULL, return the current value.
18309 * Otherwise, restore the value to "oldval" and return NULL.
18310 * Must always be called in pairs to save and restore v:throwpoint! Does not
18311 * take care of memory allocations.
18313 char_u *
18314 v_throwpoint(oldval)
18315 char_u *oldval;
18317 if (oldval == NULL)
18318 return vimvars[VV_THROWPOINT].vv_str;
18320 vimvars[VV_THROWPOINT].vv_str = oldval;
18321 return NULL;
18324 #if defined(FEAT_AUTOCMD) || defined(PROTO)
18326 * Set v:cmdarg.
18327 * If "eap" != NULL, use "eap" to generate the value and return the old value.
18328 * If "oldarg" != NULL, restore the value to "oldarg" and return NULL.
18329 * Must always be called in pairs!
18331 char_u *
18332 set_cmdarg(eap, oldarg)
18333 exarg_T *eap;
18334 char_u *oldarg;
18336 char_u *oldval;
18337 char_u *newval;
18338 unsigned len;
18340 oldval = vimvars[VV_CMDARG].vv_str;
18341 if (eap == NULL)
18343 vim_free(oldval);
18344 vimvars[VV_CMDARG].vv_str = oldarg;
18345 return NULL;
18348 if (eap->force_bin == FORCE_BIN)
18349 len = 6;
18350 else if (eap->force_bin == FORCE_NOBIN)
18351 len = 8;
18352 else
18353 len = 0;
18355 if (eap->read_edit)
18356 len += 7;
18358 if (eap->force_ff != 0)
18359 len += (unsigned)STRLEN(eap->cmd + eap->force_ff) + 6;
18360 # ifdef FEAT_MBYTE
18361 if (eap->force_enc != 0)
18362 len += (unsigned)STRLEN(eap->cmd + eap->force_enc) + 7;
18363 if (eap->bad_char != 0)
18364 len += (unsigned)STRLEN(eap->cmd + eap->bad_char) + 7;
18365 # endif
18367 newval = alloc(len + 1);
18368 if (newval == NULL)
18369 return NULL;
18371 if (eap->force_bin == FORCE_BIN)
18372 sprintf((char *)newval, " ++bin");
18373 else if (eap->force_bin == FORCE_NOBIN)
18374 sprintf((char *)newval, " ++nobin");
18375 else
18376 *newval = NUL;
18378 if (eap->read_edit)
18379 STRCAT(newval, " ++edit");
18381 if (eap->force_ff != 0)
18382 sprintf((char *)newval + STRLEN(newval), " ++ff=%s",
18383 eap->cmd + eap->force_ff);
18384 # ifdef FEAT_MBYTE
18385 if (eap->force_enc != 0)
18386 sprintf((char *)newval + STRLEN(newval), " ++enc=%s",
18387 eap->cmd + eap->force_enc);
18388 if (eap->bad_char != 0)
18389 sprintf((char *)newval + STRLEN(newval), " ++bad=%s",
18390 eap->cmd + eap->bad_char);
18391 # endif
18392 vimvars[VV_CMDARG].vv_str = newval;
18393 return oldval;
18395 #endif
18398 * Get the value of internal variable "name".
18399 * Return OK or FAIL.
18401 static int
18402 get_var_tv(name, len, rettv, verbose)
18403 char_u *name;
18404 int len; /* length of "name" */
18405 typval_T *rettv; /* NULL when only checking existence */
18406 int verbose; /* may give error message */
18408 int ret = OK;
18409 typval_T *tv = NULL;
18410 typval_T atv;
18411 dictitem_T *v;
18412 int cc;
18414 /* truncate the name, so that we can use strcmp() */
18415 cc = name[len];
18416 name[len] = NUL;
18419 * Check for "b:changedtick".
18421 if (STRCMP(name, "b:changedtick") == 0)
18423 atv.v_type = VAR_NUMBER;
18424 atv.vval.v_number = curbuf->b_changedtick;
18425 tv = &atv;
18429 * Check for user-defined variables.
18431 else
18433 v = find_var(name, NULL);
18434 if (v != NULL)
18435 tv = &v->di_tv;
18438 if (tv == NULL)
18440 if (rettv != NULL && verbose)
18441 EMSG2(_(e_undefvar), name);
18442 ret = FAIL;
18444 else if (rettv != NULL)
18445 copy_tv(tv, rettv);
18447 name[len] = cc;
18449 return ret;
18453 * Handle expr[expr], expr[expr:expr] subscript and .name lookup.
18454 * Also handle function call with Funcref variable: func(expr)
18455 * Can all be combined: dict.func(expr)[idx]['func'](expr)
18457 static int
18458 handle_subscript(arg, rettv, evaluate, verbose)
18459 char_u **arg;
18460 typval_T *rettv;
18461 int evaluate; /* do more than finding the end */
18462 int verbose; /* give error messages */
18464 int ret = OK;
18465 dict_T *selfdict = NULL;
18466 char_u *s;
18467 int len;
18468 typval_T functv;
18470 while (ret == OK
18471 && (**arg == '['
18472 || (**arg == '.' && rettv->v_type == VAR_DICT)
18473 || (**arg == '(' && rettv->v_type == VAR_FUNC))
18474 && !vim_iswhite(*(*arg - 1)))
18476 if (**arg == '(')
18478 /* need to copy the funcref so that we can clear rettv */
18479 functv = *rettv;
18480 rettv->v_type = VAR_UNKNOWN;
18482 /* Invoke the function. Recursive! */
18483 s = functv.vval.v_string;
18484 ret = get_func_tv(s, (int)STRLEN(s), rettv, arg,
18485 curwin->w_cursor.lnum, curwin->w_cursor.lnum,
18486 &len, evaluate, selfdict);
18488 /* Clear the funcref afterwards, so that deleting it while
18489 * evaluating the arguments is possible (see test55). */
18490 clear_tv(&functv);
18492 /* Stop the expression evaluation when immediately aborting on
18493 * error, or when an interrupt occurred or an exception was thrown
18494 * but not caught. */
18495 if (aborting())
18497 if (ret == OK)
18498 clear_tv(rettv);
18499 ret = FAIL;
18501 dict_unref(selfdict);
18502 selfdict = NULL;
18504 else /* **arg == '[' || **arg == '.' */
18506 dict_unref(selfdict);
18507 if (rettv->v_type == VAR_DICT)
18509 selfdict = rettv->vval.v_dict;
18510 if (selfdict != NULL)
18511 ++selfdict->dv_refcount;
18513 else
18514 selfdict = NULL;
18515 if (eval_index(arg, rettv, evaluate, verbose) == FAIL)
18517 clear_tv(rettv);
18518 ret = FAIL;
18522 dict_unref(selfdict);
18523 return ret;
18527 * Allocate memory for a variable type-value, and make it empty (0 or NULL
18528 * value).
18530 static typval_T *
18531 alloc_tv()
18533 return (typval_T *)alloc_clear((unsigned)sizeof(typval_T));
18537 * Allocate memory for a variable type-value, and assign a string to it.
18538 * The string "s" must have been allocated, it is consumed.
18539 * Return NULL for out of memory, the variable otherwise.
18541 static typval_T *
18542 alloc_string_tv(s)
18543 char_u *s;
18545 typval_T *rettv;
18547 rettv = alloc_tv();
18548 if (rettv != NULL)
18550 rettv->v_type = VAR_STRING;
18551 rettv->vval.v_string = s;
18553 else
18554 vim_free(s);
18555 return rettv;
18559 * Free the memory for a variable type-value.
18561 void
18562 free_tv(varp)
18563 typval_T *varp;
18565 if (varp != NULL)
18567 switch (varp->v_type)
18569 case VAR_FUNC:
18570 func_unref(varp->vval.v_string);
18571 /*FALLTHROUGH*/
18572 case VAR_STRING:
18573 vim_free(varp->vval.v_string);
18574 break;
18575 case VAR_LIST:
18576 list_unref(varp->vval.v_list);
18577 break;
18578 case VAR_DICT:
18579 dict_unref(varp->vval.v_dict);
18580 break;
18581 case VAR_NUMBER:
18582 #ifdef FEAT_FLOAT
18583 case VAR_FLOAT:
18584 #endif
18585 case VAR_UNKNOWN:
18586 break;
18587 default:
18588 EMSG2(_(e_intern2), "free_tv()");
18589 break;
18591 vim_free(varp);
18596 * Free the memory for a variable value and set the value to NULL or 0.
18598 void
18599 clear_tv(varp)
18600 typval_T *varp;
18602 if (varp != NULL)
18604 switch (varp->v_type)
18606 case VAR_FUNC:
18607 func_unref(varp->vval.v_string);
18608 /*FALLTHROUGH*/
18609 case VAR_STRING:
18610 vim_free(varp->vval.v_string);
18611 varp->vval.v_string = NULL;
18612 break;
18613 case VAR_LIST:
18614 list_unref(varp->vval.v_list);
18615 varp->vval.v_list = NULL;
18616 break;
18617 case VAR_DICT:
18618 dict_unref(varp->vval.v_dict);
18619 varp->vval.v_dict = NULL;
18620 break;
18621 case VAR_NUMBER:
18622 varp->vval.v_number = 0;
18623 break;
18624 #ifdef FEAT_FLOAT
18625 case VAR_FLOAT:
18626 varp->vval.v_float = 0.0;
18627 break;
18628 #endif
18629 case VAR_UNKNOWN:
18630 break;
18631 default:
18632 EMSG2(_(e_intern2), "clear_tv()");
18634 varp->v_lock = 0;
18639 * Set the value of a variable to NULL without freeing items.
18641 static void
18642 init_tv(varp)
18643 typval_T *varp;
18645 if (varp != NULL)
18646 vim_memset(varp, 0, sizeof(typval_T));
18650 * Get the number value of a variable.
18651 * If it is a String variable, uses vim_str2nr().
18652 * For incompatible types, return 0.
18653 * get_tv_number_chk() is similar to get_tv_number(), but informs the
18654 * caller of incompatible types: it sets *denote to TRUE if "denote"
18655 * is not NULL or returns -1 otherwise.
18657 static long
18658 get_tv_number(varp)
18659 typval_T *varp;
18661 int error = FALSE;
18663 return get_tv_number_chk(varp, &error); /* return 0L on error */
18666 long
18667 get_tv_number_chk(varp, denote)
18668 typval_T *varp;
18669 int *denote;
18671 long n = 0L;
18673 switch (varp->v_type)
18675 case VAR_NUMBER:
18676 return (long)(varp->vval.v_number);
18677 #ifdef FEAT_FLOAT
18678 case VAR_FLOAT:
18679 EMSG(_("E805: Using a Float as a Number"));
18680 break;
18681 #endif
18682 case VAR_FUNC:
18683 EMSG(_("E703: Using a Funcref as a Number"));
18684 break;
18685 case VAR_STRING:
18686 if (varp->vval.v_string != NULL)
18687 vim_str2nr(varp->vval.v_string, NULL, NULL,
18688 TRUE, TRUE, &n, NULL);
18689 return n;
18690 case VAR_LIST:
18691 EMSG(_("E745: Using a List as a Number"));
18692 break;
18693 case VAR_DICT:
18694 EMSG(_("E728: Using a Dictionary as a Number"));
18695 break;
18696 default:
18697 EMSG2(_(e_intern2), "get_tv_number()");
18698 break;
18700 if (denote == NULL) /* useful for values that must be unsigned */
18701 n = -1;
18702 else
18703 *denote = TRUE;
18704 return n;
18708 * Get the lnum from the first argument.
18709 * Also accepts ".", "$", etc., but that only works for the current buffer.
18710 * Returns -1 on error.
18712 static linenr_T
18713 get_tv_lnum(argvars)
18714 typval_T *argvars;
18716 typval_T rettv;
18717 linenr_T lnum;
18719 lnum = get_tv_number_chk(&argvars[0], NULL);
18720 if (lnum == 0) /* no valid number, try using line() */
18722 rettv.v_type = VAR_NUMBER;
18723 f_line(argvars, &rettv);
18724 lnum = rettv.vval.v_number;
18725 clear_tv(&rettv);
18727 return lnum;
18731 * Get the lnum from the first argument.
18732 * Also accepts "$", then "buf" is used.
18733 * Returns 0 on error.
18735 static linenr_T
18736 get_tv_lnum_buf(argvars, buf)
18737 typval_T *argvars;
18738 buf_T *buf;
18740 if (argvars[0].v_type == VAR_STRING
18741 && argvars[0].vval.v_string != NULL
18742 && argvars[0].vval.v_string[0] == '$'
18743 && buf != NULL)
18744 return buf->b_ml.ml_line_count;
18745 return get_tv_number_chk(&argvars[0], NULL);
18749 * Get the string value of a variable.
18750 * If it is a Number variable, the number is converted into a string.
18751 * get_tv_string() uses a single, static buffer. YOU CAN ONLY USE IT ONCE!
18752 * get_tv_string_buf() uses a given buffer.
18753 * If the String variable has never been set, return an empty string.
18754 * Never returns NULL;
18755 * get_tv_string_chk() and get_tv_string_buf_chk() are similar, but return
18756 * NULL on error.
18758 static char_u *
18759 get_tv_string(varp)
18760 typval_T *varp;
18762 static char_u mybuf[NUMBUFLEN];
18764 return get_tv_string_buf(varp, mybuf);
18767 static char_u *
18768 get_tv_string_buf(varp, buf)
18769 typval_T *varp;
18770 char_u *buf;
18772 char_u *res = get_tv_string_buf_chk(varp, buf);
18774 return res != NULL ? res : (char_u *)"";
18777 char_u *
18778 get_tv_string_chk(varp)
18779 typval_T *varp;
18781 static char_u mybuf[NUMBUFLEN];
18783 return get_tv_string_buf_chk(varp, mybuf);
18786 static char_u *
18787 get_tv_string_buf_chk(varp, buf)
18788 typval_T *varp;
18789 char_u *buf;
18791 switch (varp->v_type)
18793 case VAR_NUMBER:
18794 sprintf((char *)buf, "%ld", (long)varp->vval.v_number);
18795 return buf;
18796 case VAR_FUNC:
18797 EMSG(_("E729: using Funcref as a String"));
18798 break;
18799 case VAR_LIST:
18800 EMSG(_("E730: using List as a String"));
18801 break;
18802 case VAR_DICT:
18803 EMSG(_("E731: using Dictionary as a String"));
18804 break;
18805 #ifdef FEAT_FLOAT
18806 case VAR_FLOAT:
18807 EMSG(_("E806: using Float as a String"));
18808 break;
18809 #endif
18810 case VAR_STRING:
18811 if (varp->vval.v_string != NULL)
18812 return varp->vval.v_string;
18813 return (char_u *)"";
18814 default:
18815 EMSG2(_(e_intern2), "get_tv_string_buf()");
18816 break;
18818 return NULL;
18822 * Find variable "name" in the list of variables.
18823 * Return a pointer to it if found, NULL if not found.
18824 * Careful: "a:0" variables don't have a name.
18825 * When "htp" is not NULL we are writing to the variable, set "htp" to the
18826 * hashtab_T used.
18828 static dictitem_T *
18829 find_var(name, htp)
18830 char_u *name;
18831 hashtab_T **htp;
18833 char_u *varname;
18834 hashtab_T *ht;
18836 ht = find_var_ht(name, &varname);
18837 if (htp != NULL)
18838 *htp = ht;
18839 if (ht == NULL)
18840 return NULL;
18841 return find_var_in_ht(ht, varname, htp != NULL);
18845 * Find variable "varname" in hashtab "ht".
18846 * Returns NULL if not found.
18848 static dictitem_T *
18849 find_var_in_ht(ht, varname, writing)
18850 hashtab_T *ht;
18851 char_u *varname;
18852 int writing;
18854 hashitem_T *hi;
18856 if (*varname == NUL)
18858 /* Must be something like "s:", otherwise "ht" would be NULL. */
18859 switch (varname[-2])
18861 case 's': return &SCRIPT_SV(current_SID).sv_var;
18862 case 'g': return &globvars_var;
18863 case 'v': return &vimvars_var;
18864 case 'b': return &curbuf->b_bufvar;
18865 case 'w': return &curwin->w_winvar;
18866 #ifdef FEAT_WINDOWS
18867 case 't': return &curtab->tp_winvar;
18868 #endif
18869 case 'l': return current_funccal == NULL
18870 ? NULL : &current_funccal->l_vars_var;
18871 case 'a': return current_funccal == NULL
18872 ? NULL : &current_funccal->l_avars_var;
18874 return NULL;
18877 hi = hash_find(ht, varname);
18878 if (HASHITEM_EMPTY(hi))
18880 /* For global variables we may try auto-loading the script. If it
18881 * worked find the variable again. Don't auto-load a script if it was
18882 * loaded already, otherwise it would be loaded every time when
18883 * checking if a function name is a Funcref variable. */
18884 if (ht == &globvarht && !writing
18885 && script_autoload(varname, FALSE) && !aborting())
18886 hi = hash_find(ht, varname);
18887 if (HASHITEM_EMPTY(hi))
18888 return NULL;
18890 return HI2DI(hi);
18894 * Find the hashtab used for a variable name.
18895 * Set "varname" to the start of name without ':'.
18897 static hashtab_T *
18898 find_var_ht(name, varname)
18899 char_u *name;
18900 char_u **varname;
18902 hashitem_T *hi;
18904 if (name[1] != ':')
18906 /* The name must not start with a colon or #. */
18907 if (name[0] == ':' || name[0] == AUTOLOAD_CHAR)
18908 return NULL;
18909 *varname = name;
18911 /* "version" is "v:version" in all scopes */
18912 hi = hash_find(&compat_hashtab, name);
18913 if (!HASHITEM_EMPTY(hi))
18914 return &compat_hashtab;
18916 if (current_funccal == NULL)
18917 return &globvarht; /* global variable */
18918 return &current_funccal->l_vars.dv_hashtab; /* l: variable */
18920 *varname = name + 2;
18921 if (*name == 'g') /* global variable */
18922 return &globvarht;
18923 /* There must be no ':' or '#' in the rest of the name, unless g: is used
18925 if (vim_strchr(name + 2, ':') != NULL
18926 || vim_strchr(name + 2, AUTOLOAD_CHAR) != NULL)
18927 return NULL;
18928 if (*name == 'b') /* buffer variable */
18929 return &curbuf->b_vars.dv_hashtab;
18930 if (*name == 'w') /* window variable */
18931 return &curwin->w_vars.dv_hashtab;
18932 #ifdef FEAT_WINDOWS
18933 if (*name == 't') /* tab page variable */
18934 return &curtab->tp_vars.dv_hashtab;
18935 #endif
18936 if (*name == 'v') /* v: variable */
18937 return &vimvarht;
18938 if (*name == 'a' && current_funccal != NULL) /* function argument */
18939 return &current_funccal->l_avars.dv_hashtab;
18940 if (*name == 'l' && current_funccal != NULL) /* local function variable */
18941 return &current_funccal->l_vars.dv_hashtab;
18942 if (*name == 's' /* script variable */
18943 && current_SID > 0 && current_SID <= ga_scripts.ga_len)
18944 return &SCRIPT_VARS(current_SID);
18945 return NULL;
18949 * Get the string value of a (global/local) variable.
18950 * Returns NULL when it doesn't exist.
18952 char_u *
18953 get_var_value(name)
18954 char_u *name;
18956 dictitem_T *v;
18958 v = find_var(name, NULL);
18959 if (v == NULL)
18960 return NULL;
18961 return get_tv_string(&v->di_tv);
18965 * Allocate a new hashtab for a sourced script. It will be used while
18966 * sourcing this script and when executing functions defined in the script.
18968 void
18969 new_script_vars(id)
18970 scid_T id;
18972 int i;
18973 hashtab_T *ht;
18974 scriptvar_T *sv;
18976 if (ga_grow(&ga_scripts, (int)(id - ga_scripts.ga_len)) == OK)
18978 /* Re-allocating ga_data means that an ht_array pointing to
18979 * ht_smallarray becomes invalid. We can recognize this: ht_mask is
18980 * at its init value. Also reset "v_dict", it's always the same. */
18981 for (i = 1; i <= ga_scripts.ga_len; ++i)
18983 ht = &SCRIPT_VARS(i);
18984 if (ht->ht_mask == HT_INIT_SIZE - 1)
18985 ht->ht_array = ht->ht_smallarray;
18986 sv = &SCRIPT_SV(i);
18987 sv->sv_var.di_tv.vval.v_dict = &sv->sv_dict;
18990 while (ga_scripts.ga_len < id)
18992 sv = &SCRIPT_SV(ga_scripts.ga_len + 1);
18993 init_var_dict(&sv->sv_dict, &sv->sv_var);
18994 ++ga_scripts.ga_len;
19000 * Initialize dictionary "dict" as a scope and set variable "dict_var" to
19001 * point to it.
19003 void
19004 init_var_dict(dict, dict_var)
19005 dict_T *dict;
19006 dictitem_T *dict_var;
19008 hash_init(&dict->dv_hashtab);
19009 dict->dv_refcount = DO_NOT_FREE_CNT;
19010 dict_var->di_tv.vval.v_dict = dict;
19011 dict_var->di_tv.v_type = VAR_DICT;
19012 dict_var->di_tv.v_lock = VAR_FIXED;
19013 dict_var->di_flags = DI_FLAGS_RO | DI_FLAGS_FIX;
19014 dict_var->di_key[0] = NUL;
19018 * Clean up a list of internal variables.
19019 * Frees all allocated variables and the value they contain.
19020 * Clears hashtab "ht", does not free it.
19022 void
19023 vars_clear(ht)
19024 hashtab_T *ht;
19026 vars_clear_ext(ht, TRUE);
19030 * Like vars_clear(), but only free the value if "free_val" is TRUE.
19032 static void
19033 vars_clear_ext(ht, free_val)
19034 hashtab_T *ht;
19035 int free_val;
19037 int todo;
19038 hashitem_T *hi;
19039 dictitem_T *v;
19041 hash_lock(ht);
19042 todo = (int)ht->ht_used;
19043 for (hi = ht->ht_array; todo > 0; ++hi)
19045 if (!HASHITEM_EMPTY(hi))
19047 --todo;
19049 /* Free the variable. Don't remove it from the hashtab,
19050 * ht_array might change then. hash_clear() takes care of it
19051 * later. */
19052 v = HI2DI(hi);
19053 if (free_val)
19054 clear_tv(&v->di_tv);
19055 if ((v->di_flags & DI_FLAGS_FIX) == 0)
19056 vim_free(v);
19059 hash_clear(ht);
19060 ht->ht_used = 0;
19064 * Delete a variable from hashtab "ht" at item "hi".
19065 * Clear the variable value and free the dictitem.
19067 static void
19068 delete_var(ht, hi)
19069 hashtab_T *ht;
19070 hashitem_T *hi;
19072 dictitem_T *di = HI2DI(hi);
19074 hash_remove(ht, hi);
19075 clear_tv(&di->di_tv);
19076 vim_free(di);
19080 * List the value of one internal variable.
19082 static void
19083 list_one_var(v, prefix, first)
19084 dictitem_T *v;
19085 char_u *prefix;
19086 int *first;
19088 char_u *tofree;
19089 char_u *s;
19090 char_u numbuf[NUMBUFLEN];
19092 s = echo_string(&v->di_tv, &tofree, numbuf, ++current_copyID);
19093 list_one_var_a(prefix, v->di_key, v->di_tv.v_type,
19094 s == NULL ? (char_u *)"" : s, first);
19095 vim_free(tofree);
19098 static void
19099 list_one_var_a(prefix, name, type, string, first)
19100 char_u *prefix;
19101 char_u *name;
19102 int type;
19103 char_u *string;
19104 int *first; /* when TRUE clear rest of screen and set to FALSE */
19106 /* don't use msg() or msg_attr() to avoid overwriting "v:statusmsg" */
19107 msg_start();
19108 msg_puts(prefix);
19109 if (name != NULL) /* "a:" vars don't have a name stored */
19110 msg_puts(name);
19111 msg_putchar(' ');
19112 msg_advance(22);
19113 if (type == VAR_NUMBER)
19114 msg_putchar('#');
19115 else if (type == VAR_FUNC)
19116 msg_putchar('*');
19117 else if (type == VAR_LIST)
19119 msg_putchar('[');
19120 if (*string == '[')
19121 ++string;
19123 else if (type == VAR_DICT)
19125 msg_putchar('{');
19126 if (*string == '{')
19127 ++string;
19129 else
19130 msg_putchar(' ');
19132 msg_outtrans(string);
19134 if (type == VAR_FUNC)
19135 msg_puts((char_u *)"()");
19136 if (*first)
19138 msg_clr_eos();
19139 *first = FALSE;
19144 * Set variable "name" to value in "tv".
19145 * If the variable already exists, the value is updated.
19146 * Otherwise the variable is created.
19148 static void
19149 set_var(name, tv, copy)
19150 char_u *name;
19151 typval_T *tv;
19152 int copy; /* make copy of value in "tv" */
19154 dictitem_T *v;
19155 char_u *varname;
19156 hashtab_T *ht;
19157 char_u *p;
19159 if (tv->v_type == VAR_FUNC)
19161 if (!(vim_strchr((char_u *)"wbs", name[0]) != NULL && name[1] == ':')
19162 && !ASCII_ISUPPER((name[0] != NUL && name[1] == ':')
19163 ? name[2] : name[0]))
19165 EMSG2(_("E704: Funcref variable name must start with a capital: %s"), name);
19166 return;
19168 if (function_exists(name))
19170 EMSG2(_("E705: Variable name conflicts with existing function: %s"),
19171 name);
19172 return;
19176 ht = find_var_ht(name, &varname);
19177 if (ht == NULL || *varname == NUL)
19179 EMSG2(_(e_illvar), name);
19180 return;
19183 v = find_var_in_ht(ht, varname, TRUE);
19184 if (v != NULL)
19186 /* existing variable, need to clear the value */
19187 if (var_check_ro(v->di_flags, name)
19188 || tv_check_lock(v->di_tv.v_lock, name))
19189 return;
19190 if (v->di_tv.v_type != tv->v_type
19191 && !((v->di_tv.v_type == VAR_STRING
19192 || v->di_tv.v_type == VAR_NUMBER)
19193 && (tv->v_type == VAR_STRING
19194 || tv->v_type == VAR_NUMBER))
19195 #ifdef FEAT_FLOAT
19196 && !((v->di_tv.v_type == VAR_NUMBER
19197 || v->di_tv.v_type == VAR_FLOAT)
19198 && (tv->v_type == VAR_NUMBER
19199 || tv->v_type == VAR_FLOAT))
19200 #endif
19203 EMSG2(_("E706: Variable type mismatch for: %s"), name);
19204 return;
19208 * Handle setting internal v: variables separately: we don't change
19209 * the type.
19211 if (ht == &vimvarht)
19213 if (v->di_tv.v_type == VAR_STRING)
19215 vim_free(v->di_tv.vval.v_string);
19216 if (copy || tv->v_type != VAR_STRING)
19217 v->di_tv.vval.v_string = vim_strsave(get_tv_string(tv));
19218 else
19220 /* Take over the string to avoid an extra alloc/free. */
19221 v->di_tv.vval.v_string = tv->vval.v_string;
19222 tv->vval.v_string = NULL;
19225 else if (v->di_tv.v_type != VAR_NUMBER)
19226 EMSG2(_(e_intern2), "set_var()");
19227 else
19229 v->di_tv.vval.v_number = get_tv_number(tv);
19230 if (STRCMP(varname, "searchforward") == 0)
19231 set_search_direction(v->di_tv.vval.v_number ? '/' : '?');
19233 return;
19236 clear_tv(&v->di_tv);
19238 else /* add a new variable */
19240 /* Can't add "v:" variable. */
19241 if (ht == &vimvarht)
19243 EMSG2(_(e_illvar), name);
19244 return;
19247 /* Make sure the variable name is valid. */
19248 for (p = varname; *p != NUL; ++p)
19249 if (!eval_isnamec1(*p) && (p == varname || !VIM_ISDIGIT(*p))
19250 && *p != AUTOLOAD_CHAR)
19252 EMSG2(_(e_illvar), varname);
19253 return;
19256 v = (dictitem_T *)alloc((unsigned)(sizeof(dictitem_T)
19257 + STRLEN(varname)));
19258 if (v == NULL)
19259 return;
19260 STRCPY(v->di_key, varname);
19261 if (hash_add(ht, DI2HIKEY(v)) == FAIL)
19263 vim_free(v);
19264 return;
19266 v->di_flags = 0;
19269 if (copy || tv->v_type == VAR_NUMBER || tv->v_type == VAR_FLOAT)
19270 copy_tv(tv, &v->di_tv);
19271 else
19273 v->di_tv = *tv;
19274 v->di_tv.v_lock = 0;
19275 init_tv(tv);
19280 * Return TRUE if di_flags "flags" indicates variable "name" is read-only.
19281 * Also give an error message.
19283 static int
19284 var_check_ro(flags, name)
19285 int flags;
19286 char_u *name;
19288 if (flags & DI_FLAGS_RO)
19290 EMSG2(_(e_readonlyvar), name);
19291 return TRUE;
19293 if ((flags & DI_FLAGS_RO_SBX) && sandbox)
19295 EMSG2(_(e_readonlysbx), name);
19296 return TRUE;
19298 return FALSE;
19302 * Return TRUE if di_flags "flags" indicates variable "name" is fixed.
19303 * Also give an error message.
19305 static int
19306 var_check_fixed(flags, name)
19307 int flags;
19308 char_u *name;
19310 if (flags & DI_FLAGS_FIX)
19312 EMSG2(_("E795: Cannot delete variable %s"), name);
19313 return TRUE;
19315 return FALSE;
19319 * Return TRUE if typeval "tv" is set to be locked (immutable).
19320 * Also give an error message, using "name".
19322 static int
19323 tv_check_lock(lock, name)
19324 int lock;
19325 char_u *name;
19327 if (lock & VAR_LOCKED)
19329 EMSG2(_("E741: Value is locked: %s"),
19330 name == NULL ? (char_u *)_("Unknown") : name);
19331 return TRUE;
19333 if (lock & VAR_FIXED)
19335 EMSG2(_("E742: Cannot change value of %s"),
19336 name == NULL ? (char_u *)_("Unknown") : name);
19337 return TRUE;
19339 return FALSE;
19343 * Copy the values from typval_T "from" to typval_T "to".
19344 * When needed allocates string or increases reference count.
19345 * Does not make a copy of a list or dict but copies the reference!
19346 * It is OK for "from" and "to" to point to the same item. This is used to
19347 * make a copy later.
19349 static void
19350 copy_tv(from, to)
19351 typval_T *from;
19352 typval_T *to;
19354 to->v_type = from->v_type;
19355 to->v_lock = 0;
19356 switch (from->v_type)
19358 case VAR_NUMBER:
19359 to->vval.v_number = from->vval.v_number;
19360 break;
19361 #ifdef FEAT_FLOAT
19362 case VAR_FLOAT:
19363 to->vval.v_float = from->vval.v_float;
19364 break;
19365 #endif
19366 case VAR_STRING:
19367 case VAR_FUNC:
19368 if (from->vval.v_string == NULL)
19369 to->vval.v_string = NULL;
19370 else
19372 to->vval.v_string = vim_strsave(from->vval.v_string);
19373 if (from->v_type == VAR_FUNC)
19374 func_ref(to->vval.v_string);
19376 break;
19377 case VAR_LIST:
19378 if (from->vval.v_list == NULL)
19379 to->vval.v_list = NULL;
19380 else
19382 to->vval.v_list = from->vval.v_list;
19383 ++to->vval.v_list->lv_refcount;
19385 break;
19386 case VAR_DICT:
19387 if (from->vval.v_dict == NULL)
19388 to->vval.v_dict = NULL;
19389 else
19391 to->vval.v_dict = from->vval.v_dict;
19392 ++to->vval.v_dict->dv_refcount;
19394 break;
19395 default:
19396 EMSG2(_(e_intern2), "copy_tv()");
19397 break;
19402 * Make a copy of an item.
19403 * Lists and Dictionaries are also copied. A deep copy if "deep" is set.
19404 * For deepcopy() "copyID" is zero for a full copy or the ID for when a
19405 * reference to an already copied list/dict can be used.
19406 * Returns FAIL or OK.
19408 static int
19409 item_copy(from, to, deep, copyID)
19410 typval_T *from;
19411 typval_T *to;
19412 int deep;
19413 int copyID;
19415 static int recurse = 0;
19416 int ret = OK;
19418 if (recurse >= DICT_MAXNEST)
19420 EMSG(_("E698: variable nested too deep for making a copy"));
19421 return FAIL;
19423 ++recurse;
19425 switch (from->v_type)
19427 case VAR_NUMBER:
19428 #ifdef FEAT_FLOAT
19429 case VAR_FLOAT:
19430 #endif
19431 case VAR_STRING:
19432 case VAR_FUNC:
19433 copy_tv(from, to);
19434 break;
19435 case VAR_LIST:
19436 to->v_type = VAR_LIST;
19437 to->v_lock = 0;
19438 if (from->vval.v_list == NULL)
19439 to->vval.v_list = NULL;
19440 else if (copyID != 0 && from->vval.v_list->lv_copyID == copyID)
19442 /* use the copy made earlier */
19443 to->vval.v_list = from->vval.v_list->lv_copylist;
19444 ++to->vval.v_list->lv_refcount;
19446 else
19447 to->vval.v_list = list_copy(from->vval.v_list, deep, copyID);
19448 if (to->vval.v_list == NULL)
19449 ret = FAIL;
19450 break;
19451 case VAR_DICT:
19452 to->v_type = VAR_DICT;
19453 to->v_lock = 0;
19454 if (from->vval.v_dict == NULL)
19455 to->vval.v_dict = NULL;
19456 else if (copyID != 0 && from->vval.v_dict->dv_copyID == copyID)
19458 /* use the copy made earlier */
19459 to->vval.v_dict = from->vval.v_dict->dv_copydict;
19460 ++to->vval.v_dict->dv_refcount;
19462 else
19463 to->vval.v_dict = dict_copy(from->vval.v_dict, deep, copyID);
19464 if (to->vval.v_dict == NULL)
19465 ret = FAIL;
19466 break;
19467 default:
19468 EMSG2(_(e_intern2), "item_copy()");
19469 ret = FAIL;
19471 --recurse;
19472 return ret;
19476 * ":echo expr1 ..." print each argument separated with a space, add a
19477 * newline at the end.
19478 * ":echon expr1 ..." print each argument plain.
19480 void
19481 ex_echo(eap)
19482 exarg_T *eap;
19484 char_u *arg = eap->arg;
19485 typval_T rettv;
19486 char_u *tofree;
19487 char_u *p;
19488 int needclr = TRUE;
19489 int atstart = TRUE;
19490 char_u numbuf[NUMBUFLEN];
19492 if (eap->skip)
19493 ++emsg_skip;
19494 while (*arg != NUL && *arg != '|' && *arg != '\n' && !got_int)
19496 /* If eval1() causes an error message the text from the command may
19497 * still need to be cleared. E.g., "echo 22,44". */
19498 need_clr_eos = needclr;
19500 p = arg;
19501 if (eval1(&arg, &rettv, !eap->skip) == FAIL)
19504 * Report the invalid expression unless the expression evaluation
19505 * has been cancelled due to an aborting error, an interrupt, or an
19506 * exception.
19508 if (!aborting())
19509 EMSG2(_(e_invexpr2), p);
19510 need_clr_eos = FALSE;
19511 break;
19513 need_clr_eos = FALSE;
19515 if (!eap->skip)
19517 if (atstart)
19519 atstart = FALSE;
19520 /* Call msg_start() after eval1(), evaluating the expression
19521 * may cause a message to appear. */
19522 if (eap->cmdidx == CMD_echo)
19523 msg_start();
19525 else if (eap->cmdidx == CMD_echo)
19526 msg_puts_attr((char_u *)" ", echo_attr);
19527 p = echo_string(&rettv, &tofree, numbuf, ++current_copyID);
19528 if (p != NULL)
19529 for ( ; *p != NUL && !got_int; ++p)
19531 if (*p == '\n' || *p == '\r' || *p == TAB)
19533 if (*p != TAB && needclr)
19535 /* remove any text still there from the command */
19536 msg_clr_eos();
19537 needclr = FALSE;
19539 msg_putchar_attr(*p, echo_attr);
19541 else
19543 #ifdef FEAT_MBYTE
19544 if (has_mbyte)
19546 int i = (*mb_ptr2len)(p);
19548 (void)msg_outtrans_len_attr(p, i, echo_attr);
19549 p += i - 1;
19551 else
19552 #endif
19553 (void)msg_outtrans_len_attr(p, 1, echo_attr);
19556 vim_free(tofree);
19558 clear_tv(&rettv);
19559 arg = skipwhite(arg);
19561 eap->nextcmd = check_nextcmd(arg);
19563 if (eap->skip)
19564 --emsg_skip;
19565 else
19567 /* remove text that may still be there from the command */
19568 if (needclr)
19569 msg_clr_eos();
19570 if (eap->cmdidx == CMD_echo)
19571 msg_end();
19576 * ":echohl {name}".
19578 void
19579 ex_echohl(eap)
19580 exarg_T *eap;
19582 int id;
19584 id = syn_name2id(eap->arg);
19585 if (id == 0)
19586 echo_attr = 0;
19587 else
19588 echo_attr = syn_id2attr(id);
19592 * ":execute expr1 ..." execute the result of an expression.
19593 * ":echomsg expr1 ..." Print a message
19594 * ":echoerr expr1 ..." Print an error
19595 * Each gets spaces around each argument and a newline at the end for
19596 * echo commands
19598 void
19599 ex_execute(eap)
19600 exarg_T *eap;
19602 char_u *arg = eap->arg;
19603 typval_T rettv;
19604 int ret = OK;
19605 char_u *p;
19606 garray_T ga;
19607 int len;
19608 int save_did_emsg;
19610 ga_init2(&ga, 1, 80);
19612 if (eap->skip)
19613 ++emsg_skip;
19614 while (*arg != NUL && *arg != '|' && *arg != '\n')
19616 p = arg;
19617 if (eval1(&arg, &rettv, !eap->skip) == FAIL)
19620 * Report the invalid expression unless the expression evaluation
19621 * has been cancelled due to an aborting error, an interrupt, or an
19622 * exception.
19624 if (!aborting())
19625 EMSG2(_(e_invexpr2), p);
19626 ret = FAIL;
19627 break;
19630 if (!eap->skip)
19632 p = get_tv_string(&rettv);
19633 len = (int)STRLEN(p);
19634 if (ga_grow(&ga, len + 2) == FAIL)
19636 clear_tv(&rettv);
19637 ret = FAIL;
19638 break;
19640 if (ga.ga_len)
19641 ((char_u *)(ga.ga_data))[ga.ga_len++] = ' ';
19642 STRCPY((char_u *)(ga.ga_data) + ga.ga_len, p);
19643 ga.ga_len += len;
19646 clear_tv(&rettv);
19647 arg = skipwhite(arg);
19650 if (ret != FAIL && ga.ga_data != NULL)
19652 if (eap->cmdidx == CMD_echomsg)
19654 MSG_ATTR(ga.ga_data, echo_attr);
19655 out_flush();
19657 else if (eap->cmdidx == CMD_echoerr)
19659 /* We don't want to abort following commands, restore did_emsg. */
19660 save_did_emsg = did_emsg;
19661 EMSG((char_u *)ga.ga_data);
19662 if (!force_abort)
19663 did_emsg = save_did_emsg;
19665 else if (eap->cmdidx == CMD_execute)
19666 do_cmdline((char_u *)ga.ga_data,
19667 eap->getline, eap->cookie, DOCMD_NOWAIT|DOCMD_VERBOSE);
19670 ga_clear(&ga);
19672 if (eap->skip)
19673 --emsg_skip;
19675 eap->nextcmd = check_nextcmd(arg);
19679 * Skip over the name of an option: "&option", "&g:option" or "&l:option".
19680 * "arg" points to the "&" or '+' when called, to "option" when returning.
19681 * Returns NULL when no option name found. Otherwise pointer to the char
19682 * after the option name.
19684 static char_u *
19685 find_option_end(arg, opt_flags)
19686 char_u **arg;
19687 int *opt_flags;
19689 char_u *p = *arg;
19691 ++p;
19692 if (*p == 'g' && p[1] == ':')
19694 *opt_flags = OPT_GLOBAL;
19695 p += 2;
19697 else if (*p == 'l' && p[1] == ':')
19699 *opt_flags = OPT_LOCAL;
19700 p += 2;
19702 else
19703 *opt_flags = 0;
19705 if (!ASCII_ISALPHA(*p))
19706 return NULL;
19707 *arg = p;
19709 if (p[0] == 't' && p[1] == '_' && p[2] != NUL && p[3] != NUL)
19710 p += 4; /* termcap option */
19711 else
19712 while (ASCII_ISALPHA(*p))
19713 ++p;
19714 return p;
19718 * ":function"
19720 void
19721 ex_function(eap)
19722 exarg_T *eap;
19724 char_u *theline;
19725 int j;
19726 int c;
19727 int saved_did_emsg;
19728 char_u *name = NULL;
19729 char_u *p;
19730 char_u *arg;
19731 char_u *line_arg = NULL;
19732 garray_T newargs;
19733 garray_T newlines;
19734 int varargs = FALSE;
19735 int mustend = FALSE;
19736 int flags = 0;
19737 ufunc_T *fp;
19738 int indent;
19739 int nesting;
19740 char_u *skip_until = NULL;
19741 dictitem_T *v;
19742 funcdict_T fudi;
19743 static int func_nr = 0; /* number for nameless function */
19744 int paren;
19745 hashtab_T *ht;
19746 int todo;
19747 hashitem_T *hi;
19748 int sourcing_lnum_off;
19751 * ":function" without argument: list functions.
19753 if (ends_excmd(*eap->arg))
19755 if (!eap->skip)
19757 todo = (int)func_hashtab.ht_used;
19758 for (hi = func_hashtab.ht_array; todo > 0 && !got_int; ++hi)
19760 if (!HASHITEM_EMPTY(hi))
19762 --todo;
19763 fp = HI2UF(hi);
19764 if (!isdigit(*fp->uf_name))
19765 list_func_head(fp, FALSE);
19769 eap->nextcmd = check_nextcmd(eap->arg);
19770 return;
19774 * ":function /pat": list functions matching pattern.
19776 if (*eap->arg == '/')
19778 p = skip_regexp(eap->arg + 1, '/', TRUE, NULL);
19779 if (!eap->skip)
19781 regmatch_T regmatch;
19783 c = *p;
19784 *p = NUL;
19785 regmatch.regprog = vim_regcomp(eap->arg + 1, RE_MAGIC);
19786 *p = c;
19787 if (regmatch.regprog != NULL)
19789 regmatch.rm_ic = p_ic;
19791 todo = (int)func_hashtab.ht_used;
19792 for (hi = func_hashtab.ht_array; todo > 0 && !got_int; ++hi)
19794 if (!HASHITEM_EMPTY(hi))
19796 --todo;
19797 fp = HI2UF(hi);
19798 if (!isdigit(*fp->uf_name)
19799 && vim_regexec(&regmatch, fp->uf_name, 0))
19800 list_func_head(fp, FALSE);
19805 if (*p == '/')
19806 ++p;
19807 eap->nextcmd = check_nextcmd(p);
19808 return;
19812 * Get the function name. There are these situations:
19813 * func normal function name
19814 * "name" == func, "fudi.fd_dict" == NULL
19815 * dict.func new dictionary entry
19816 * "name" == NULL, "fudi.fd_dict" set,
19817 * "fudi.fd_di" == NULL, "fudi.fd_newkey" == func
19818 * dict.func existing dict entry with a Funcref
19819 * "name" == func, "fudi.fd_dict" set,
19820 * "fudi.fd_di" set, "fudi.fd_newkey" == NULL
19821 * dict.func existing dict entry that's not a Funcref
19822 * "name" == NULL, "fudi.fd_dict" set,
19823 * "fudi.fd_di" set, "fudi.fd_newkey" == NULL
19825 p = eap->arg;
19826 name = trans_function_name(&p, eap->skip, 0, &fudi);
19827 paren = (vim_strchr(p, '(') != NULL);
19828 if (name == NULL && (fudi.fd_dict == NULL || !paren) && !eap->skip)
19831 * Return on an invalid expression in braces, unless the expression
19832 * evaluation has been cancelled due to an aborting error, an
19833 * interrupt, or an exception.
19835 if (!aborting())
19837 if (!eap->skip && fudi.fd_newkey != NULL)
19838 EMSG2(_(e_dictkey), fudi.fd_newkey);
19839 vim_free(fudi.fd_newkey);
19840 return;
19842 else
19843 eap->skip = TRUE;
19846 /* An error in a function call during evaluation of an expression in magic
19847 * braces should not cause the function not to be defined. */
19848 saved_did_emsg = did_emsg;
19849 did_emsg = FALSE;
19852 * ":function func" with only function name: list function.
19854 if (!paren)
19856 if (!ends_excmd(*skipwhite(p)))
19858 EMSG(_(e_trailing));
19859 goto ret_free;
19861 eap->nextcmd = check_nextcmd(p);
19862 if (eap->nextcmd != NULL)
19863 *p = NUL;
19864 if (!eap->skip && !got_int)
19866 fp = find_func(name);
19867 if (fp != NULL)
19869 list_func_head(fp, TRUE);
19870 for (j = 0; j < fp->uf_lines.ga_len && !got_int; ++j)
19872 if (FUNCLINE(fp, j) == NULL)
19873 continue;
19874 msg_putchar('\n');
19875 msg_outnum((long)(j + 1));
19876 if (j < 9)
19877 msg_putchar(' ');
19878 if (j < 99)
19879 msg_putchar(' ');
19880 msg_prt_line(FUNCLINE(fp, j), FALSE);
19881 out_flush(); /* show a line at a time */
19882 ui_breakcheck();
19884 if (!got_int)
19886 msg_putchar('\n');
19887 msg_puts((char_u *)" endfunction");
19890 else
19891 emsg_funcname(N_("E123: Undefined function: %s"), name);
19893 goto ret_free;
19897 * ":function name(arg1, arg2)" Define function.
19899 p = skipwhite(p);
19900 if (*p != '(')
19902 if (!eap->skip)
19904 EMSG2(_("E124: Missing '(': %s"), eap->arg);
19905 goto ret_free;
19907 /* attempt to continue by skipping some text */
19908 if (vim_strchr(p, '(') != NULL)
19909 p = vim_strchr(p, '(');
19911 p = skipwhite(p + 1);
19913 ga_init2(&newargs, (int)sizeof(char_u *), 3);
19914 ga_init2(&newlines, (int)sizeof(char_u *), 3);
19916 if (!eap->skip)
19918 /* Check the name of the function. Unless it's a dictionary function
19919 * (that we are overwriting). */
19920 if (name != NULL)
19921 arg = name;
19922 else
19923 arg = fudi.fd_newkey;
19924 if (arg != NULL && (fudi.fd_di == NULL
19925 || fudi.fd_di->di_tv.v_type != VAR_FUNC))
19927 if (*arg == K_SPECIAL)
19928 j = 3;
19929 else
19930 j = 0;
19931 while (arg[j] != NUL && (j == 0 ? eval_isnamec1(arg[j])
19932 : eval_isnamec(arg[j])))
19933 ++j;
19934 if (arg[j] != NUL)
19935 emsg_funcname((char *)e_invarg2, arg);
19940 * Isolate the arguments: "arg1, arg2, ...)"
19942 while (*p != ')')
19944 if (p[0] == '.' && p[1] == '.' && p[2] == '.')
19946 varargs = TRUE;
19947 p += 3;
19948 mustend = TRUE;
19950 else
19952 arg = p;
19953 while (ASCII_ISALNUM(*p) || *p == '_')
19954 ++p;
19955 if (arg == p || isdigit(*arg)
19956 || (p - arg == 9 && STRNCMP(arg, "firstline", 9) == 0)
19957 || (p - arg == 8 && STRNCMP(arg, "lastline", 8) == 0))
19959 if (!eap->skip)
19960 EMSG2(_("E125: Illegal argument: %s"), arg);
19961 break;
19963 if (ga_grow(&newargs, 1) == FAIL)
19964 goto erret;
19965 c = *p;
19966 *p = NUL;
19967 arg = vim_strsave(arg);
19968 if (arg == NULL)
19969 goto erret;
19970 ((char_u **)(newargs.ga_data))[newargs.ga_len] = arg;
19971 *p = c;
19972 newargs.ga_len++;
19973 if (*p == ',')
19974 ++p;
19975 else
19976 mustend = TRUE;
19978 p = skipwhite(p);
19979 if (mustend && *p != ')')
19981 if (!eap->skip)
19982 EMSG2(_(e_invarg2), eap->arg);
19983 break;
19986 ++p; /* skip the ')' */
19988 /* find extra arguments "range", "dict" and "abort" */
19989 for (;;)
19991 p = skipwhite(p);
19992 if (STRNCMP(p, "range", 5) == 0)
19994 flags |= FC_RANGE;
19995 p += 5;
19997 else if (STRNCMP(p, "dict", 4) == 0)
19999 flags |= FC_DICT;
20000 p += 4;
20002 else if (STRNCMP(p, "abort", 5) == 0)
20004 flags |= FC_ABORT;
20005 p += 5;
20007 else
20008 break;
20011 /* When there is a line break use what follows for the function body.
20012 * Makes 'exe "func Test()\n...\nendfunc"' work. */
20013 if (*p == '\n')
20014 line_arg = p + 1;
20015 else if (*p != NUL && *p != '"' && !eap->skip && !did_emsg)
20016 EMSG(_(e_trailing));
20019 * Read the body of the function, until ":endfunction" is found.
20021 if (KeyTyped)
20023 /* Check if the function already exists, don't let the user type the
20024 * whole function before telling him it doesn't work! For a script we
20025 * need to skip the body to be able to find what follows. */
20026 if (!eap->skip && !eap->forceit)
20028 if (fudi.fd_dict != NULL && fudi.fd_newkey == NULL)
20029 EMSG(_(e_funcdict));
20030 else if (name != NULL && find_func(name) != NULL)
20031 emsg_funcname(e_funcexts, name);
20034 if (!eap->skip && did_emsg)
20035 goto erret;
20037 msg_putchar('\n'); /* don't overwrite the function name */
20038 cmdline_row = msg_row;
20041 indent = 2;
20042 nesting = 0;
20043 for (;;)
20045 msg_scroll = TRUE;
20046 need_wait_return = FALSE;
20047 sourcing_lnum_off = sourcing_lnum;
20049 if (line_arg != NULL)
20051 /* Use eap->arg, split up in parts by line breaks. */
20052 theline = line_arg;
20053 p = vim_strchr(theline, '\n');
20054 if (p == NULL)
20055 line_arg += STRLEN(line_arg);
20056 else
20058 *p = NUL;
20059 line_arg = p + 1;
20062 else if (eap->getline == NULL)
20063 theline = getcmdline(':', 0L, indent);
20064 else
20065 theline = eap->getline(':', eap->cookie, indent);
20066 if (KeyTyped)
20067 lines_left = Rows - 1;
20068 if (theline == NULL)
20070 EMSG(_("E126: Missing :endfunction"));
20071 goto erret;
20074 /* Detect line continuation: sourcing_lnum increased more than one. */
20075 if (sourcing_lnum > sourcing_lnum_off + 1)
20076 sourcing_lnum_off = sourcing_lnum - sourcing_lnum_off - 1;
20077 else
20078 sourcing_lnum_off = 0;
20080 if (skip_until != NULL)
20082 /* between ":append" and "." and between ":python <<EOF" and "EOF"
20083 * don't check for ":endfunc". */
20084 if (STRCMP(theline, skip_until) == 0)
20086 vim_free(skip_until);
20087 skip_until = NULL;
20090 else
20092 /* skip ':' and blanks*/
20093 for (p = theline; vim_iswhite(*p) || *p == ':'; ++p)
20096 /* Check for "endfunction". */
20097 if (checkforcmd(&p, "endfunction", 4) && nesting-- == 0)
20099 if (line_arg == NULL)
20100 vim_free(theline);
20101 break;
20104 /* Increase indent inside "if", "while", "for" and "try", decrease
20105 * at "end". */
20106 if (indent > 2 && STRNCMP(p, "end", 3) == 0)
20107 indent -= 2;
20108 else if (STRNCMP(p, "if", 2) == 0
20109 || STRNCMP(p, "wh", 2) == 0
20110 || STRNCMP(p, "for", 3) == 0
20111 || STRNCMP(p, "try", 3) == 0)
20112 indent += 2;
20114 /* Check for defining a function inside this function. */
20115 if (checkforcmd(&p, "function", 2))
20117 if (*p == '!')
20118 p = skipwhite(p + 1);
20119 p += eval_fname_script(p);
20120 if (ASCII_ISALPHA(*p))
20122 vim_free(trans_function_name(&p, TRUE, 0, NULL));
20123 if (*skipwhite(p) == '(')
20125 ++nesting;
20126 indent += 2;
20131 /* Check for ":append" or ":insert". */
20132 p = skip_range(p, NULL);
20133 if ((p[0] == 'a' && (!ASCII_ISALPHA(p[1]) || p[1] == 'p'))
20134 || (p[0] == 'i'
20135 && (!ASCII_ISALPHA(p[1]) || (p[1] == 'n'
20136 && (!ASCII_ISALPHA(p[2]) || (p[2] == 's'))))))
20137 skip_until = vim_strsave((char_u *)".");
20139 /* Check for ":python <<EOF", ":tcl <<EOF", etc. */
20140 arg = skipwhite(skiptowhite(p));
20141 if (arg[0] == '<' && arg[1] =='<'
20142 && ((p[0] == 'p' && p[1] == 'y'
20143 && (!ASCII_ISALPHA(p[2]) || p[2] == 't'))
20144 || (p[0] == 'p' && p[1] == 'e'
20145 && (!ASCII_ISALPHA(p[2]) || p[2] == 'r'))
20146 || (p[0] == 't' && p[1] == 'c'
20147 && (!ASCII_ISALPHA(p[2]) || p[2] == 'l'))
20148 || (p[0] == 'r' && p[1] == 'u' && p[2] == 'b'
20149 && (!ASCII_ISALPHA(p[3]) || p[3] == 'y'))
20150 || (p[0] == 'm' && p[1] == 'z'
20151 && (!ASCII_ISALPHA(p[2]) || p[2] == 's'))
20154 /* ":python <<" continues until a dot, like ":append" */
20155 p = skipwhite(arg + 2);
20156 if (*p == NUL)
20157 skip_until = vim_strsave((char_u *)".");
20158 else
20159 skip_until = vim_strsave(p);
20163 /* Add the line to the function. */
20164 if (ga_grow(&newlines, 1 + sourcing_lnum_off) == FAIL)
20166 if (line_arg == NULL)
20167 vim_free(theline);
20168 goto erret;
20171 /* Copy the line to newly allocated memory. get_one_sourceline()
20172 * allocates 250 bytes per line, this saves 80% on average. The cost
20173 * is an extra alloc/free. */
20174 p = vim_strsave(theline);
20175 if (p != NULL)
20177 if (line_arg == NULL)
20178 vim_free(theline);
20179 theline = p;
20182 ((char_u **)(newlines.ga_data))[newlines.ga_len++] = theline;
20184 /* Add NULL lines for continuation lines, so that the line count is
20185 * equal to the index in the growarray. */
20186 while (sourcing_lnum_off-- > 0)
20187 ((char_u **)(newlines.ga_data))[newlines.ga_len++] = NULL;
20189 /* Check for end of eap->arg. */
20190 if (line_arg != NULL && *line_arg == NUL)
20191 line_arg = NULL;
20194 /* Don't define the function when skipping commands or when an error was
20195 * detected. */
20196 if (eap->skip || did_emsg)
20197 goto erret;
20200 * If there are no errors, add the function
20202 if (fudi.fd_dict == NULL)
20204 v = find_var(name, &ht);
20205 if (v != NULL && v->di_tv.v_type == VAR_FUNC)
20207 emsg_funcname(N_("E707: Function name conflicts with variable: %s"),
20208 name);
20209 goto erret;
20212 fp = find_func(name);
20213 if (fp != NULL)
20215 if (!eap->forceit)
20217 emsg_funcname(e_funcexts, name);
20218 goto erret;
20220 if (fp->uf_calls > 0)
20222 emsg_funcname(N_("E127: Cannot redefine function %s: It is in use"),
20223 name);
20224 goto erret;
20226 /* redefine existing function */
20227 ga_clear_strings(&(fp->uf_args));
20228 ga_clear_strings(&(fp->uf_lines));
20229 vim_free(name);
20230 name = NULL;
20233 else
20235 char numbuf[20];
20237 fp = NULL;
20238 if (fudi.fd_newkey == NULL && !eap->forceit)
20240 EMSG(_(e_funcdict));
20241 goto erret;
20243 if (fudi.fd_di == NULL)
20245 /* Can't add a function to a locked dictionary */
20246 if (tv_check_lock(fudi.fd_dict->dv_lock, eap->arg))
20247 goto erret;
20249 /* Can't change an existing function if it is locked */
20250 else if (tv_check_lock(fudi.fd_di->di_tv.v_lock, eap->arg))
20251 goto erret;
20253 /* Give the function a sequential number. Can only be used with a
20254 * Funcref! */
20255 vim_free(name);
20256 sprintf(numbuf, "%d", ++func_nr);
20257 name = vim_strsave((char_u *)numbuf);
20258 if (name == NULL)
20259 goto erret;
20262 if (fp == NULL)
20264 if (fudi.fd_dict == NULL && vim_strchr(name, AUTOLOAD_CHAR) != NULL)
20266 int slen, plen;
20267 char_u *scriptname;
20269 /* Check that the autoload name matches the script name. */
20270 j = FAIL;
20271 if (sourcing_name != NULL)
20273 scriptname = autoload_name(name);
20274 if (scriptname != NULL)
20276 p = vim_strchr(scriptname, '/');
20277 plen = (int)STRLEN(p);
20278 slen = (int)STRLEN(sourcing_name);
20279 if (slen > plen && fnamecmp(p,
20280 sourcing_name + slen - plen) == 0)
20281 j = OK;
20282 vim_free(scriptname);
20285 if (j == FAIL)
20287 EMSG2(_("E746: Function name does not match script file name: %s"), name);
20288 goto erret;
20292 fp = (ufunc_T *)alloc((unsigned)(sizeof(ufunc_T) + STRLEN(name)));
20293 if (fp == NULL)
20294 goto erret;
20296 if (fudi.fd_dict != NULL)
20298 if (fudi.fd_di == NULL)
20300 /* add new dict entry */
20301 fudi.fd_di = dictitem_alloc(fudi.fd_newkey);
20302 if (fudi.fd_di == NULL)
20304 vim_free(fp);
20305 goto erret;
20307 if (dict_add(fudi.fd_dict, fudi.fd_di) == FAIL)
20309 vim_free(fudi.fd_di);
20310 vim_free(fp);
20311 goto erret;
20314 else
20315 /* overwrite existing dict entry */
20316 clear_tv(&fudi.fd_di->di_tv);
20317 fudi.fd_di->di_tv.v_type = VAR_FUNC;
20318 fudi.fd_di->di_tv.v_lock = 0;
20319 fudi.fd_di->di_tv.vval.v_string = vim_strsave(name);
20320 fp->uf_refcount = 1;
20322 /* behave like "dict" was used */
20323 flags |= FC_DICT;
20326 /* insert the new function in the function list */
20327 STRCPY(fp->uf_name, name);
20328 hash_add(&func_hashtab, UF2HIKEY(fp));
20330 fp->uf_args = newargs;
20331 fp->uf_lines = newlines;
20332 #ifdef FEAT_PROFILE
20333 fp->uf_tml_count = NULL;
20334 fp->uf_tml_total = NULL;
20335 fp->uf_tml_self = NULL;
20336 fp->uf_profiling = FALSE;
20337 if (prof_def_func())
20338 func_do_profile(fp);
20339 #endif
20340 fp->uf_varargs = varargs;
20341 fp->uf_flags = flags;
20342 fp->uf_calls = 0;
20343 fp->uf_script_ID = current_SID;
20344 goto ret_free;
20346 erret:
20347 ga_clear_strings(&newargs);
20348 ga_clear_strings(&newlines);
20349 ret_free:
20350 vim_free(skip_until);
20351 vim_free(fudi.fd_newkey);
20352 vim_free(name);
20353 did_emsg |= saved_did_emsg;
20357 * Get a function name, translating "<SID>" and "<SNR>".
20358 * Also handles a Funcref in a List or Dictionary.
20359 * Returns the function name in allocated memory, or NULL for failure.
20360 * flags:
20361 * TFN_INT: internal function name OK
20362 * TFN_QUIET: be quiet
20363 * Advances "pp" to just after the function name (if no error).
20365 static char_u *
20366 trans_function_name(pp, skip, flags, fdp)
20367 char_u **pp;
20368 int skip; /* only find the end, don't evaluate */
20369 int flags;
20370 funcdict_T *fdp; /* return: info about dictionary used */
20372 char_u *name = NULL;
20373 char_u *start;
20374 char_u *end;
20375 int lead;
20376 char_u sid_buf[20];
20377 int len;
20378 lval_T lv;
20380 if (fdp != NULL)
20381 vim_memset(fdp, 0, sizeof(funcdict_T));
20382 start = *pp;
20384 /* Check for hard coded <SNR>: already translated function ID (from a user
20385 * command). */
20386 if ((*pp)[0] == K_SPECIAL && (*pp)[1] == KS_EXTRA
20387 && (*pp)[2] == (int)KE_SNR)
20389 *pp += 3;
20390 len = get_id_len(pp) + 3;
20391 return vim_strnsave(start, len);
20394 /* A name starting with "<SID>" or "<SNR>" is local to a script. But
20395 * don't skip over "s:", get_lval() needs it for "s:dict.func". */
20396 lead = eval_fname_script(start);
20397 if (lead > 2)
20398 start += lead;
20400 end = get_lval(start, NULL, &lv, FALSE, skip, flags & TFN_QUIET,
20401 lead > 2 ? 0 : FNE_CHECK_START);
20402 if (end == start)
20404 if (!skip)
20405 EMSG(_("E129: Function name required"));
20406 goto theend;
20408 if (end == NULL || (lv.ll_tv != NULL && (lead > 2 || lv.ll_range)))
20411 * Report an invalid expression in braces, unless the expression
20412 * evaluation has been cancelled due to an aborting error, an
20413 * interrupt, or an exception.
20415 if (!aborting())
20417 if (end != NULL)
20418 EMSG2(_(e_invarg2), start);
20420 else
20421 *pp = find_name_end(start, NULL, NULL, FNE_INCL_BR);
20422 goto theend;
20425 if (lv.ll_tv != NULL)
20427 if (fdp != NULL)
20429 fdp->fd_dict = lv.ll_dict;
20430 fdp->fd_newkey = lv.ll_newkey;
20431 lv.ll_newkey = NULL;
20432 fdp->fd_di = lv.ll_di;
20434 if (lv.ll_tv->v_type == VAR_FUNC && lv.ll_tv->vval.v_string != NULL)
20436 name = vim_strsave(lv.ll_tv->vval.v_string);
20437 *pp = end;
20439 else
20441 if (!skip && !(flags & TFN_QUIET) && (fdp == NULL
20442 || lv.ll_dict == NULL || fdp->fd_newkey == NULL))
20443 EMSG(_(e_funcref));
20444 else
20445 *pp = end;
20446 name = NULL;
20448 goto theend;
20451 if (lv.ll_name == NULL)
20453 /* Error found, but continue after the function name. */
20454 *pp = end;
20455 goto theend;
20458 /* Check if the name is a Funcref. If so, use the value. */
20459 if (lv.ll_exp_name != NULL)
20461 len = (int)STRLEN(lv.ll_exp_name);
20462 name = deref_func_name(lv.ll_exp_name, &len);
20463 if (name == lv.ll_exp_name)
20464 name = NULL;
20466 else
20468 len = (int)(end - *pp);
20469 name = deref_func_name(*pp, &len);
20470 if (name == *pp)
20471 name = NULL;
20473 if (name != NULL)
20475 name = vim_strsave(name);
20476 *pp = end;
20477 goto theend;
20480 if (lv.ll_exp_name != NULL)
20482 len = (int)STRLEN(lv.ll_exp_name);
20483 if (lead <= 2 && lv.ll_name == lv.ll_exp_name
20484 && STRNCMP(lv.ll_name, "s:", 2) == 0)
20486 /* When there was "s:" already or the name expanded to get a
20487 * leading "s:" then remove it. */
20488 lv.ll_name += 2;
20489 len -= 2;
20490 lead = 2;
20493 else
20495 if (lead == 2) /* skip over "s:" */
20496 lv.ll_name += 2;
20497 len = (int)(end - lv.ll_name);
20501 * Copy the function name to allocated memory.
20502 * Accept <SID>name() inside a script, translate into <SNR>123_name().
20503 * Accept <SNR>123_name() outside a script.
20505 if (skip)
20506 lead = 0; /* do nothing */
20507 else if (lead > 0)
20509 lead = 3;
20510 if ((lv.ll_exp_name != NULL && eval_fname_sid(lv.ll_exp_name))
20511 || eval_fname_sid(*pp))
20513 /* It's "s:" or "<SID>" */
20514 if (current_SID <= 0)
20516 EMSG(_(e_usingsid));
20517 goto theend;
20519 sprintf((char *)sid_buf, "%ld_", (long)current_SID);
20520 lead += (int)STRLEN(sid_buf);
20523 else if (!(flags & TFN_INT) && builtin_function(lv.ll_name))
20525 EMSG2(_("E128: Function name must start with a capital or contain a colon: %s"), lv.ll_name);
20526 goto theend;
20528 name = alloc((unsigned)(len + lead + 1));
20529 if (name != NULL)
20531 if (lead > 0)
20533 name[0] = K_SPECIAL;
20534 name[1] = KS_EXTRA;
20535 name[2] = (int)KE_SNR;
20536 if (lead > 3) /* If it's "<SID>" */
20537 STRCPY(name + 3, sid_buf);
20539 mch_memmove(name + lead, lv.ll_name, (size_t)len);
20540 name[len + lead] = NUL;
20542 *pp = end;
20544 theend:
20545 clear_lval(&lv);
20546 return name;
20550 * Return 5 if "p" starts with "<SID>" or "<SNR>" (ignoring case).
20551 * Return 2 if "p" starts with "s:".
20552 * Return 0 otherwise.
20554 static int
20555 eval_fname_script(p)
20556 char_u *p;
20558 if (p[0] == '<' && (STRNICMP(p + 1, "SID>", 4) == 0
20559 || STRNICMP(p + 1, "SNR>", 4) == 0))
20560 return 5;
20561 if (p[0] == 's' && p[1] == ':')
20562 return 2;
20563 return 0;
20567 * Return TRUE if "p" starts with "<SID>" or "s:".
20568 * Only works if eval_fname_script() returned non-zero for "p"!
20570 static int
20571 eval_fname_sid(p)
20572 char_u *p;
20574 return (*p == 's' || TOUPPER_ASC(p[2]) == 'I');
20578 * List the head of the function: "name(arg1, arg2)".
20580 static void
20581 list_func_head(fp, indent)
20582 ufunc_T *fp;
20583 int indent;
20585 int j;
20587 msg_start();
20588 if (indent)
20589 MSG_PUTS(" ");
20590 MSG_PUTS("function ");
20591 if (fp->uf_name[0] == K_SPECIAL)
20593 MSG_PUTS_ATTR("<SNR>", hl_attr(HLF_8));
20594 msg_puts(fp->uf_name + 3);
20596 else
20597 msg_puts(fp->uf_name);
20598 msg_putchar('(');
20599 for (j = 0; j < fp->uf_args.ga_len; ++j)
20601 if (j)
20602 MSG_PUTS(", ");
20603 msg_puts(FUNCARG(fp, j));
20605 if (fp->uf_varargs)
20607 if (j)
20608 MSG_PUTS(", ");
20609 MSG_PUTS("...");
20611 msg_putchar(')');
20612 msg_clr_eos();
20613 if (p_verbose > 0)
20614 last_set_msg(fp->uf_script_ID);
20618 * Find a function by name, return pointer to it in ufuncs.
20619 * Return NULL for unknown function.
20621 static ufunc_T *
20622 find_func(name)
20623 char_u *name;
20625 hashitem_T *hi;
20627 hi = hash_find(&func_hashtab, name);
20628 if (!HASHITEM_EMPTY(hi))
20629 return HI2UF(hi);
20630 return NULL;
20633 #if defined(EXITFREE) || defined(PROTO)
20634 void
20635 free_all_functions()
20637 hashitem_T *hi;
20639 /* Need to start all over every time, because func_free() may change the
20640 * hash table. */
20641 while (func_hashtab.ht_used > 0)
20642 for (hi = func_hashtab.ht_array; ; ++hi)
20643 if (!HASHITEM_EMPTY(hi))
20645 func_free(HI2UF(hi));
20646 break;
20649 #endif
20652 * Return TRUE if a function "name" exists.
20654 static int
20655 function_exists(name)
20656 char_u *name;
20658 char_u *nm = name;
20659 char_u *p;
20660 int n = FALSE;
20662 p = trans_function_name(&nm, FALSE, TFN_INT|TFN_QUIET, NULL);
20663 nm = skipwhite(nm);
20665 /* Only accept "funcname", "funcname ", "funcname (..." and
20666 * "funcname(...", not "funcname!...". */
20667 if (p != NULL && (*nm == NUL || *nm == '('))
20669 if (builtin_function(p))
20670 n = (find_internal_func(p) >= 0);
20671 else
20672 n = (find_func(p) != NULL);
20674 vim_free(p);
20675 return n;
20679 * Return TRUE if "name" looks like a builtin function name: starts with a
20680 * lower case letter and doesn't contain a ':' or AUTOLOAD_CHAR.
20682 static int
20683 builtin_function(name)
20684 char_u *name;
20686 return ASCII_ISLOWER(name[0]) && vim_strchr(name, ':') == NULL
20687 && vim_strchr(name, AUTOLOAD_CHAR) == NULL;
20690 #if defined(FEAT_PROFILE) || defined(PROTO)
20692 * Start profiling function "fp".
20694 static void
20695 func_do_profile(fp)
20696 ufunc_T *fp;
20698 fp->uf_tm_count = 0;
20699 profile_zero(&fp->uf_tm_self);
20700 profile_zero(&fp->uf_tm_total);
20701 if (fp->uf_tml_count == NULL)
20702 fp->uf_tml_count = (int *)alloc_clear((unsigned)
20703 (sizeof(int) * fp->uf_lines.ga_len));
20704 if (fp->uf_tml_total == NULL)
20705 fp->uf_tml_total = (proftime_T *)alloc_clear((unsigned)
20706 (sizeof(proftime_T) * fp->uf_lines.ga_len));
20707 if (fp->uf_tml_self == NULL)
20708 fp->uf_tml_self = (proftime_T *)alloc_clear((unsigned)
20709 (sizeof(proftime_T) * fp->uf_lines.ga_len));
20710 fp->uf_tml_idx = -1;
20711 if (fp->uf_tml_count == NULL || fp->uf_tml_total == NULL
20712 || fp->uf_tml_self == NULL)
20713 return; /* out of memory */
20715 fp->uf_profiling = TRUE;
20719 * Dump the profiling results for all functions in file "fd".
20721 void
20722 func_dump_profile(fd)
20723 FILE *fd;
20725 hashitem_T *hi;
20726 int todo;
20727 ufunc_T *fp;
20728 int i;
20729 ufunc_T **sorttab;
20730 int st_len = 0;
20732 todo = (int)func_hashtab.ht_used;
20733 if (todo == 0)
20734 return; /* nothing to dump */
20736 sorttab = (ufunc_T **)alloc((unsigned)(sizeof(ufunc_T) * todo));
20738 for (hi = func_hashtab.ht_array; todo > 0; ++hi)
20740 if (!HASHITEM_EMPTY(hi))
20742 --todo;
20743 fp = HI2UF(hi);
20744 if (fp->uf_profiling)
20746 if (sorttab != NULL)
20747 sorttab[st_len++] = fp;
20749 if (fp->uf_name[0] == K_SPECIAL)
20750 fprintf(fd, "FUNCTION <SNR>%s()\n", fp->uf_name + 3);
20751 else
20752 fprintf(fd, "FUNCTION %s()\n", fp->uf_name);
20753 if (fp->uf_tm_count == 1)
20754 fprintf(fd, "Called 1 time\n");
20755 else
20756 fprintf(fd, "Called %d times\n", fp->uf_tm_count);
20757 fprintf(fd, "Total time: %s\n", profile_msg(&fp->uf_tm_total));
20758 fprintf(fd, " Self time: %s\n", profile_msg(&fp->uf_tm_self));
20759 fprintf(fd, "\n");
20760 fprintf(fd, "count total (s) self (s)\n");
20762 for (i = 0; i < fp->uf_lines.ga_len; ++i)
20764 if (FUNCLINE(fp, i) == NULL)
20765 continue;
20766 prof_func_line(fd, fp->uf_tml_count[i],
20767 &fp->uf_tml_total[i], &fp->uf_tml_self[i], TRUE);
20768 fprintf(fd, "%s\n", FUNCLINE(fp, i));
20770 fprintf(fd, "\n");
20775 if (sorttab != NULL && st_len > 0)
20777 qsort((void *)sorttab, (size_t)st_len, sizeof(ufunc_T *),
20778 prof_total_cmp);
20779 prof_sort_list(fd, sorttab, st_len, "TOTAL", FALSE);
20780 qsort((void *)sorttab, (size_t)st_len, sizeof(ufunc_T *),
20781 prof_self_cmp);
20782 prof_sort_list(fd, sorttab, st_len, "SELF", TRUE);
20785 vim_free(sorttab);
20788 static void
20789 prof_sort_list(fd, sorttab, st_len, title, prefer_self)
20790 FILE *fd;
20791 ufunc_T **sorttab;
20792 int st_len;
20793 char *title;
20794 int prefer_self; /* when equal print only self time */
20796 int i;
20797 ufunc_T *fp;
20799 fprintf(fd, "FUNCTIONS SORTED ON %s TIME\n", title);
20800 fprintf(fd, "count total (s) self (s) function\n");
20801 for (i = 0; i < 20 && i < st_len; ++i)
20803 fp = sorttab[i];
20804 prof_func_line(fd, fp->uf_tm_count, &fp->uf_tm_total, &fp->uf_tm_self,
20805 prefer_self);
20806 if (fp->uf_name[0] == K_SPECIAL)
20807 fprintf(fd, " <SNR>%s()\n", fp->uf_name + 3);
20808 else
20809 fprintf(fd, " %s()\n", fp->uf_name);
20811 fprintf(fd, "\n");
20815 * Print the count and times for one function or function line.
20817 static void
20818 prof_func_line(fd, count, total, self, prefer_self)
20819 FILE *fd;
20820 int count;
20821 proftime_T *total;
20822 proftime_T *self;
20823 int prefer_self; /* when equal print only self time */
20825 if (count > 0)
20827 fprintf(fd, "%5d ", count);
20828 if (prefer_self && profile_equal(total, self))
20829 fprintf(fd, " ");
20830 else
20831 fprintf(fd, "%s ", profile_msg(total));
20832 if (!prefer_self && profile_equal(total, self))
20833 fprintf(fd, " ");
20834 else
20835 fprintf(fd, "%s ", profile_msg(self));
20837 else
20838 fprintf(fd, " ");
20842 * Compare function for total time sorting.
20844 static int
20845 #ifdef __BORLANDC__
20846 _RTLENTRYF
20847 #endif
20848 prof_total_cmp(s1, s2)
20849 const void *s1;
20850 const void *s2;
20852 ufunc_T *p1, *p2;
20854 p1 = *(ufunc_T **)s1;
20855 p2 = *(ufunc_T **)s2;
20856 return profile_cmp(&p1->uf_tm_total, &p2->uf_tm_total);
20860 * Compare function for self time sorting.
20862 static int
20863 #ifdef __BORLANDC__
20864 _RTLENTRYF
20865 #endif
20866 prof_self_cmp(s1, s2)
20867 const void *s1;
20868 const void *s2;
20870 ufunc_T *p1, *p2;
20872 p1 = *(ufunc_T **)s1;
20873 p2 = *(ufunc_T **)s2;
20874 return profile_cmp(&p1->uf_tm_self, &p2->uf_tm_self);
20877 #endif
20880 * If "name" has a package name try autoloading the script for it.
20881 * Return TRUE if a package was loaded.
20883 static int
20884 script_autoload(name, reload)
20885 char_u *name;
20886 int reload; /* load script again when already loaded */
20888 char_u *p;
20889 char_u *scriptname, *tofree;
20890 int ret = FALSE;
20891 int i;
20893 /* If there is no '#' after name[0] there is no package name. */
20894 p = vim_strchr(name, AUTOLOAD_CHAR);
20895 if (p == NULL || p == name)
20896 return FALSE;
20898 tofree = scriptname = autoload_name(name);
20900 /* Find the name in the list of previously loaded package names. Skip
20901 * "autoload/", it's always the same. */
20902 for (i = 0; i < ga_loaded.ga_len; ++i)
20903 if (STRCMP(((char_u **)ga_loaded.ga_data)[i] + 9, scriptname + 9) == 0)
20904 break;
20905 if (!reload && i < ga_loaded.ga_len)
20906 ret = FALSE; /* was loaded already */
20907 else
20909 /* Remember the name if it wasn't loaded already. */
20910 if (i == ga_loaded.ga_len && ga_grow(&ga_loaded, 1) == OK)
20912 ((char_u **)ga_loaded.ga_data)[ga_loaded.ga_len++] = scriptname;
20913 tofree = NULL;
20916 /* Try loading the package from $VIMRUNTIME/autoload/<name>.vim */
20917 if (source_runtime(scriptname, FALSE) == OK)
20918 ret = TRUE;
20921 vim_free(tofree);
20922 return ret;
20926 * Return the autoload script name for a function or variable name.
20927 * Returns NULL when out of memory.
20929 static char_u *
20930 autoload_name(name)
20931 char_u *name;
20933 char_u *p;
20934 char_u *scriptname;
20936 /* Get the script file name: replace '#' with '/', append ".vim". */
20937 scriptname = alloc((unsigned)(STRLEN(name) + 14));
20938 if (scriptname == NULL)
20939 return FALSE;
20940 STRCPY(scriptname, "autoload/");
20941 STRCAT(scriptname, name);
20942 *vim_strrchr(scriptname, AUTOLOAD_CHAR) = NUL;
20943 STRCAT(scriptname, ".vim");
20944 while ((p = vim_strchr(scriptname, AUTOLOAD_CHAR)) != NULL)
20945 *p = '/';
20946 return scriptname;
20949 #if defined(FEAT_CMDL_COMPL) || defined(PROTO)
20952 * Function given to ExpandGeneric() to obtain the list of user defined
20953 * function names.
20955 char_u *
20956 get_user_func_name(xp, idx)
20957 expand_T *xp;
20958 int idx;
20960 static long_u done;
20961 static hashitem_T *hi;
20962 ufunc_T *fp;
20964 if (idx == 0)
20966 done = 0;
20967 hi = func_hashtab.ht_array;
20969 if (done < func_hashtab.ht_used)
20971 if (done++ > 0)
20972 ++hi;
20973 while (HASHITEM_EMPTY(hi))
20974 ++hi;
20975 fp = HI2UF(hi);
20977 if (STRLEN(fp->uf_name) + 4 >= IOSIZE)
20978 return fp->uf_name; /* prevents overflow */
20980 cat_func_name(IObuff, fp);
20981 if (xp->xp_context != EXPAND_USER_FUNC)
20983 STRCAT(IObuff, "(");
20984 if (!fp->uf_varargs && fp->uf_args.ga_len == 0)
20985 STRCAT(IObuff, ")");
20987 return IObuff;
20989 return NULL;
20992 #endif /* FEAT_CMDL_COMPL */
20995 * Copy the function name of "fp" to buffer "buf".
20996 * "buf" must be able to hold the function name plus three bytes.
20997 * Takes care of script-local function names.
20999 static void
21000 cat_func_name(buf, fp)
21001 char_u *buf;
21002 ufunc_T *fp;
21004 if (fp->uf_name[0] == K_SPECIAL)
21006 STRCPY(buf, "<SNR>");
21007 STRCAT(buf, fp->uf_name + 3);
21009 else
21010 STRCPY(buf, fp->uf_name);
21014 * ":delfunction {name}"
21016 void
21017 ex_delfunction(eap)
21018 exarg_T *eap;
21020 ufunc_T *fp = NULL;
21021 char_u *p;
21022 char_u *name;
21023 funcdict_T fudi;
21025 p = eap->arg;
21026 name = trans_function_name(&p, eap->skip, 0, &fudi);
21027 vim_free(fudi.fd_newkey);
21028 if (name == NULL)
21030 if (fudi.fd_dict != NULL && !eap->skip)
21031 EMSG(_(e_funcref));
21032 return;
21034 if (!ends_excmd(*skipwhite(p)))
21036 vim_free(name);
21037 EMSG(_(e_trailing));
21038 return;
21040 eap->nextcmd = check_nextcmd(p);
21041 if (eap->nextcmd != NULL)
21042 *p = NUL;
21044 if (!eap->skip)
21045 fp = find_func(name);
21046 vim_free(name);
21048 if (!eap->skip)
21050 if (fp == NULL)
21052 EMSG2(_(e_nofunc), eap->arg);
21053 return;
21055 if (fp->uf_calls > 0)
21057 EMSG2(_("E131: Cannot delete function %s: It is in use"), eap->arg);
21058 return;
21061 if (fudi.fd_dict != NULL)
21063 /* Delete the dict item that refers to the function, it will
21064 * invoke func_unref() and possibly delete the function. */
21065 dictitem_remove(fudi.fd_dict, fudi.fd_di);
21067 else
21068 func_free(fp);
21073 * Free a function and remove it from the list of functions.
21075 static void
21076 func_free(fp)
21077 ufunc_T *fp;
21079 hashitem_T *hi;
21081 /* clear this function */
21082 ga_clear_strings(&(fp->uf_args));
21083 ga_clear_strings(&(fp->uf_lines));
21084 #ifdef FEAT_PROFILE
21085 vim_free(fp->uf_tml_count);
21086 vim_free(fp->uf_tml_total);
21087 vim_free(fp->uf_tml_self);
21088 #endif
21090 /* remove the function from the function hashtable */
21091 hi = hash_find(&func_hashtab, UF2HIKEY(fp));
21092 if (HASHITEM_EMPTY(hi))
21093 EMSG2(_(e_intern2), "func_free()");
21094 else
21095 hash_remove(&func_hashtab, hi);
21097 vim_free(fp);
21101 * Unreference a Function: decrement the reference count and free it when it
21102 * becomes zero. Only for numbered functions.
21104 static void
21105 func_unref(name)
21106 char_u *name;
21108 ufunc_T *fp;
21110 if (name != NULL && isdigit(*name))
21112 fp = find_func(name);
21113 if (fp == NULL)
21114 EMSG2(_(e_intern2), "func_unref()");
21115 else if (--fp->uf_refcount <= 0)
21117 /* Only delete it when it's not being used. Otherwise it's done
21118 * when "uf_calls" becomes zero. */
21119 if (fp->uf_calls == 0)
21120 func_free(fp);
21126 * Count a reference to a Function.
21128 static void
21129 func_ref(name)
21130 char_u *name;
21132 ufunc_T *fp;
21134 if (name != NULL && isdigit(*name))
21136 fp = find_func(name);
21137 if (fp == NULL)
21138 EMSG2(_(e_intern2), "func_ref()");
21139 else
21140 ++fp->uf_refcount;
21145 * Call a user function.
21147 static void
21148 call_user_func(fp, argcount, argvars, rettv, firstline, lastline, selfdict)
21149 ufunc_T *fp; /* pointer to function */
21150 int argcount; /* nr of args */
21151 typval_T *argvars; /* arguments */
21152 typval_T *rettv; /* return value */
21153 linenr_T firstline; /* first line of range */
21154 linenr_T lastline; /* last line of range */
21155 dict_T *selfdict; /* Dictionary for "self" */
21157 char_u *save_sourcing_name;
21158 linenr_T save_sourcing_lnum;
21159 scid_T save_current_SID;
21160 funccall_T *fc;
21161 int save_did_emsg;
21162 static int depth = 0;
21163 dictitem_T *v;
21164 int fixvar_idx = 0; /* index in fixvar[] */
21165 int i;
21166 int ai;
21167 char_u numbuf[NUMBUFLEN];
21168 char_u *name;
21169 #ifdef FEAT_PROFILE
21170 proftime_T wait_start;
21171 proftime_T call_start;
21172 #endif
21174 /* If depth of calling is getting too high, don't execute the function */
21175 if (depth >= p_mfd)
21177 EMSG(_("E132: Function call depth is higher than 'maxfuncdepth'"));
21178 rettv->v_type = VAR_NUMBER;
21179 rettv->vval.v_number = -1;
21180 return;
21182 ++depth;
21184 line_breakcheck(); /* check for CTRL-C hit */
21186 fc = (funccall_T *)alloc(sizeof(funccall_T));
21187 fc->caller = current_funccal;
21188 current_funccal = fc;
21189 fc->func = fp;
21190 fc->rettv = rettv;
21191 rettv->vval.v_number = 0;
21192 fc->linenr = 0;
21193 fc->returned = FALSE;
21194 fc->level = ex_nesting_level;
21195 /* Check if this function has a breakpoint. */
21196 fc->breakpoint = dbg_find_breakpoint(FALSE, fp->uf_name, (linenr_T)0);
21197 fc->dbg_tick = debug_tick;
21200 * Note about using fc->fixvar[]: This is an array of FIXVAR_CNT variables
21201 * with names up to VAR_SHORT_LEN long. This avoids having to alloc/free
21202 * each argument variable and saves a lot of time.
21205 * Init l: variables.
21207 init_var_dict(&fc->l_vars, &fc->l_vars_var);
21208 if (selfdict != NULL)
21210 /* Set l:self to "selfdict". Use "name" to avoid a warning from
21211 * some compiler that checks the destination size. */
21212 v = &fc->fixvar[fixvar_idx++].var;
21213 name = v->di_key;
21214 STRCPY(name, "self");
21215 v->di_flags = DI_FLAGS_RO + DI_FLAGS_FIX;
21216 hash_add(&fc->l_vars.dv_hashtab, DI2HIKEY(v));
21217 v->di_tv.v_type = VAR_DICT;
21218 v->di_tv.v_lock = 0;
21219 v->di_tv.vval.v_dict = selfdict;
21220 ++selfdict->dv_refcount;
21224 * Init a: variables.
21225 * Set a:0 to "argcount".
21226 * Set a:000 to a list with room for the "..." arguments.
21228 init_var_dict(&fc->l_avars, &fc->l_avars_var);
21229 add_nr_var(&fc->l_avars, &fc->fixvar[fixvar_idx++].var, "0",
21230 (varnumber_T)(argcount - fp->uf_args.ga_len));
21231 /* Use "name" to avoid a warning from some compiler that checks the
21232 * destination size. */
21233 v = &fc->fixvar[fixvar_idx++].var;
21234 name = v->di_key;
21235 STRCPY(name, "000");
21236 v->di_flags = DI_FLAGS_RO | DI_FLAGS_FIX;
21237 hash_add(&fc->l_avars.dv_hashtab, DI2HIKEY(v));
21238 v->di_tv.v_type = VAR_LIST;
21239 v->di_tv.v_lock = VAR_FIXED;
21240 v->di_tv.vval.v_list = &fc->l_varlist;
21241 vim_memset(&fc->l_varlist, 0, sizeof(list_T));
21242 fc->l_varlist.lv_refcount = DO_NOT_FREE_CNT;
21243 fc->l_varlist.lv_lock = VAR_FIXED;
21246 * Set a:firstline to "firstline" and a:lastline to "lastline".
21247 * Set a:name to named arguments.
21248 * Set a:N to the "..." arguments.
21250 add_nr_var(&fc->l_avars, &fc->fixvar[fixvar_idx++].var, "firstline",
21251 (varnumber_T)firstline);
21252 add_nr_var(&fc->l_avars, &fc->fixvar[fixvar_idx++].var, "lastline",
21253 (varnumber_T)lastline);
21254 for (i = 0; i < argcount; ++i)
21256 ai = i - fp->uf_args.ga_len;
21257 if (ai < 0)
21258 /* named argument a:name */
21259 name = FUNCARG(fp, i);
21260 else
21262 /* "..." argument a:1, a:2, etc. */
21263 sprintf((char *)numbuf, "%d", ai + 1);
21264 name = numbuf;
21266 if (fixvar_idx < FIXVAR_CNT && STRLEN(name) <= VAR_SHORT_LEN)
21268 v = &fc->fixvar[fixvar_idx++].var;
21269 v->di_flags = DI_FLAGS_RO | DI_FLAGS_FIX;
21271 else
21273 v = (dictitem_T *)alloc((unsigned)(sizeof(dictitem_T)
21274 + STRLEN(name)));
21275 if (v == NULL)
21276 break;
21277 v->di_flags = DI_FLAGS_RO;
21279 STRCPY(v->di_key, name);
21280 hash_add(&fc->l_avars.dv_hashtab, DI2HIKEY(v));
21282 /* Note: the values are copied directly to avoid alloc/free.
21283 * "argvars" must have VAR_FIXED for v_lock. */
21284 v->di_tv = argvars[i];
21285 v->di_tv.v_lock = VAR_FIXED;
21287 if (ai >= 0 && ai < MAX_FUNC_ARGS)
21289 list_append(&fc->l_varlist, &fc->l_listitems[ai]);
21290 fc->l_listitems[ai].li_tv = argvars[i];
21291 fc->l_listitems[ai].li_tv.v_lock = VAR_FIXED;
21295 /* Don't redraw while executing the function. */
21296 ++RedrawingDisabled;
21297 save_sourcing_name = sourcing_name;
21298 save_sourcing_lnum = sourcing_lnum;
21299 sourcing_lnum = 1;
21300 sourcing_name = alloc((unsigned)((save_sourcing_name == NULL ? 0
21301 : STRLEN(save_sourcing_name)) + STRLEN(fp->uf_name) + 13));
21302 if (sourcing_name != NULL)
21304 if (save_sourcing_name != NULL
21305 && STRNCMP(save_sourcing_name, "function ", 9) == 0)
21306 sprintf((char *)sourcing_name, "%s..", save_sourcing_name);
21307 else
21308 STRCPY(sourcing_name, "function ");
21309 cat_func_name(sourcing_name + STRLEN(sourcing_name), fp);
21311 if (p_verbose >= 12)
21313 ++no_wait_return;
21314 verbose_enter_scroll();
21316 smsg((char_u *)_("calling %s"), sourcing_name);
21317 if (p_verbose >= 14)
21319 char_u buf[MSG_BUF_LEN];
21320 char_u numbuf2[NUMBUFLEN];
21321 char_u *tofree;
21322 char_u *s;
21324 msg_puts((char_u *)"(");
21325 for (i = 0; i < argcount; ++i)
21327 if (i > 0)
21328 msg_puts((char_u *)", ");
21329 if (argvars[i].v_type == VAR_NUMBER)
21330 msg_outnum((long)argvars[i].vval.v_number);
21331 else
21333 s = tv2string(&argvars[i], &tofree, numbuf2, 0);
21334 if (s != NULL)
21336 trunc_string(s, buf, MSG_BUF_CLEN);
21337 msg_puts(buf);
21338 vim_free(tofree);
21342 msg_puts((char_u *)")");
21344 msg_puts((char_u *)"\n"); /* don't overwrite this either */
21346 verbose_leave_scroll();
21347 --no_wait_return;
21350 #ifdef FEAT_PROFILE
21351 if (do_profiling == PROF_YES)
21353 if (!fp->uf_profiling && has_profiling(FALSE, fp->uf_name, NULL))
21354 func_do_profile(fp);
21355 if (fp->uf_profiling
21356 || (fc->caller != NULL && fc->caller->func->uf_profiling))
21358 ++fp->uf_tm_count;
21359 profile_start(&call_start);
21360 profile_zero(&fp->uf_tm_children);
21362 script_prof_save(&wait_start);
21364 #endif
21366 save_current_SID = current_SID;
21367 current_SID = fp->uf_script_ID;
21368 save_did_emsg = did_emsg;
21369 did_emsg = FALSE;
21371 /* call do_cmdline() to execute the lines */
21372 do_cmdline(NULL, get_func_line, (void *)fc,
21373 DOCMD_NOWAIT|DOCMD_VERBOSE|DOCMD_REPEAT);
21375 --RedrawingDisabled;
21377 /* when the function was aborted because of an error, return -1 */
21378 if ((did_emsg && (fp->uf_flags & FC_ABORT)) || rettv->v_type == VAR_UNKNOWN)
21380 clear_tv(rettv);
21381 rettv->v_type = VAR_NUMBER;
21382 rettv->vval.v_number = -1;
21385 #ifdef FEAT_PROFILE
21386 if (do_profiling == PROF_YES && (fp->uf_profiling
21387 || (fc->caller != NULL && fc->caller->func->uf_profiling)))
21389 profile_end(&call_start);
21390 profile_sub_wait(&wait_start, &call_start);
21391 profile_add(&fp->uf_tm_total, &call_start);
21392 profile_self(&fp->uf_tm_self, &call_start, &fp->uf_tm_children);
21393 if (fc->caller != NULL && fc->caller->func->uf_profiling)
21395 profile_add(&fc->caller->func->uf_tm_children, &call_start);
21396 profile_add(&fc->caller->func->uf_tml_children, &call_start);
21399 #endif
21401 /* when being verbose, mention the return value */
21402 if (p_verbose >= 12)
21404 ++no_wait_return;
21405 verbose_enter_scroll();
21407 if (aborting())
21408 smsg((char_u *)_("%s aborted"), sourcing_name);
21409 else if (fc->rettv->v_type == VAR_NUMBER)
21410 smsg((char_u *)_("%s returning #%ld"), sourcing_name,
21411 (long)fc->rettv->vval.v_number);
21412 else
21414 char_u buf[MSG_BUF_LEN];
21415 char_u numbuf2[NUMBUFLEN];
21416 char_u *tofree;
21417 char_u *s;
21419 /* The value may be very long. Skip the middle part, so that we
21420 * have some idea how it starts and ends. smsg() would always
21421 * truncate it at the end. */
21422 s = tv2string(fc->rettv, &tofree, numbuf2, 0);
21423 if (s != NULL)
21425 trunc_string(s, buf, MSG_BUF_CLEN);
21426 smsg((char_u *)_("%s returning %s"), sourcing_name, buf);
21427 vim_free(tofree);
21430 msg_puts((char_u *)"\n"); /* don't overwrite this either */
21432 verbose_leave_scroll();
21433 --no_wait_return;
21436 vim_free(sourcing_name);
21437 sourcing_name = save_sourcing_name;
21438 sourcing_lnum = save_sourcing_lnum;
21439 current_SID = save_current_SID;
21440 #ifdef FEAT_PROFILE
21441 if (do_profiling == PROF_YES)
21442 script_prof_restore(&wait_start);
21443 #endif
21445 if (p_verbose >= 12 && sourcing_name != NULL)
21447 ++no_wait_return;
21448 verbose_enter_scroll();
21450 smsg((char_u *)_("continuing in %s"), sourcing_name);
21451 msg_puts((char_u *)"\n"); /* don't overwrite this either */
21453 verbose_leave_scroll();
21454 --no_wait_return;
21457 did_emsg |= save_did_emsg;
21458 current_funccal = fc->caller;
21459 --depth;
21461 /* if the a:000 list and the a: dict are not referenced we can free the
21462 * funccall_T and what's in it. */
21463 if (fc->l_varlist.lv_refcount == DO_NOT_FREE_CNT
21464 && fc->l_vars.dv_refcount == DO_NOT_FREE_CNT
21465 && fc->l_avars.dv_refcount == DO_NOT_FREE_CNT)
21467 free_funccal(fc, FALSE);
21469 else
21471 hashitem_T *hi;
21472 listitem_T *li;
21473 int todo;
21475 /* "fc" is still in use. This can happen when returning "a:000" or
21476 * assigning "l:" to a global variable.
21477 * Link "fc" in the list for garbage collection later. */
21478 fc->caller = previous_funccal;
21479 previous_funccal = fc;
21481 /* Make a copy of the a: variables, since we didn't do that above. */
21482 todo = (int)fc->l_avars.dv_hashtab.ht_used;
21483 for (hi = fc->l_avars.dv_hashtab.ht_array; todo > 0; ++hi)
21485 if (!HASHITEM_EMPTY(hi))
21487 --todo;
21488 v = HI2DI(hi);
21489 copy_tv(&v->di_tv, &v->di_tv);
21493 /* Make a copy of the a:000 items, since we didn't do that above. */
21494 for (li = fc->l_varlist.lv_first; li != NULL; li = li->li_next)
21495 copy_tv(&li->li_tv, &li->li_tv);
21500 * Return TRUE if items in "fc" do not have "copyID". That means they are not
21501 * referenced from anywhere.
21503 static int
21504 can_free_funccal(fc, copyID)
21505 funccall_T *fc;
21506 int copyID;
21508 return (fc->l_varlist.lv_copyID != copyID
21509 && fc->l_vars.dv_copyID != copyID
21510 && fc->l_avars.dv_copyID != copyID);
21514 * Free "fc" and what it contains.
21516 static void
21517 free_funccal(fc, free_val)
21518 funccall_T *fc;
21519 int free_val; /* a: vars were allocated */
21521 listitem_T *li;
21523 /* The a: variables typevals may not have been allocated, only free the
21524 * allocated variables. */
21525 vars_clear_ext(&fc->l_avars.dv_hashtab, free_val);
21527 /* free all l: variables */
21528 vars_clear(&fc->l_vars.dv_hashtab);
21530 /* Free the a:000 variables if they were allocated. */
21531 if (free_val)
21532 for (li = fc->l_varlist.lv_first; li != NULL; li = li->li_next)
21533 clear_tv(&li->li_tv);
21535 vim_free(fc);
21539 * Add a number variable "name" to dict "dp" with value "nr".
21541 static void
21542 add_nr_var(dp, v, name, nr)
21543 dict_T *dp;
21544 dictitem_T *v;
21545 char *name;
21546 varnumber_T nr;
21548 STRCPY(v->di_key, name);
21549 v->di_flags = DI_FLAGS_RO | DI_FLAGS_FIX;
21550 hash_add(&dp->dv_hashtab, DI2HIKEY(v));
21551 v->di_tv.v_type = VAR_NUMBER;
21552 v->di_tv.v_lock = VAR_FIXED;
21553 v->di_tv.vval.v_number = nr;
21557 * ":return [expr]"
21559 void
21560 ex_return(eap)
21561 exarg_T *eap;
21563 char_u *arg = eap->arg;
21564 typval_T rettv;
21565 int returning = FALSE;
21567 if (current_funccal == NULL)
21569 EMSG(_("E133: :return not inside a function"));
21570 return;
21573 if (eap->skip)
21574 ++emsg_skip;
21576 eap->nextcmd = NULL;
21577 if ((*arg != NUL && *arg != '|' && *arg != '\n')
21578 && eval0(arg, &rettv, &eap->nextcmd, !eap->skip) != FAIL)
21580 if (!eap->skip)
21581 returning = do_return(eap, FALSE, TRUE, &rettv);
21582 else
21583 clear_tv(&rettv);
21585 /* It's safer to return also on error. */
21586 else if (!eap->skip)
21589 * Return unless the expression evaluation has been cancelled due to an
21590 * aborting error, an interrupt, or an exception.
21592 if (!aborting())
21593 returning = do_return(eap, FALSE, TRUE, NULL);
21596 /* When skipping or the return gets pending, advance to the next command
21597 * in this line (!returning). Otherwise, ignore the rest of the line.
21598 * Following lines will be ignored by get_func_line(). */
21599 if (returning)
21600 eap->nextcmd = NULL;
21601 else if (eap->nextcmd == NULL) /* no argument */
21602 eap->nextcmd = check_nextcmd(arg);
21604 if (eap->skip)
21605 --emsg_skip;
21609 * Return from a function. Possibly makes the return pending. Also called
21610 * for a pending return at the ":endtry" or after returning from an extra
21611 * do_cmdline(). "reanimate" is used in the latter case. "is_cmd" is set
21612 * when called due to a ":return" command. "rettv" may point to a typval_T
21613 * with the return rettv. Returns TRUE when the return can be carried out,
21614 * FALSE when the return gets pending.
21617 do_return(eap, reanimate, is_cmd, rettv)
21618 exarg_T *eap;
21619 int reanimate;
21620 int is_cmd;
21621 void *rettv;
21623 int idx;
21624 struct condstack *cstack = eap->cstack;
21626 if (reanimate)
21627 /* Undo the return. */
21628 current_funccal->returned = FALSE;
21631 * Cleanup (and inactivate) conditionals, but stop when a try conditional
21632 * not in its finally clause (which then is to be executed next) is found.
21633 * In this case, make the ":return" pending for execution at the ":endtry".
21634 * Otherwise, return normally.
21636 idx = cleanup_conditionals(eap->cstack, 0, TRUE);
21637 if (idx >= 0)
21639 cstack->cs_pending[idx] = CSTP_RETURN;
21641 if (!is_cmd && !reanimate)
21642 /* A pending return again gets pending. "rettv" points to an
21643 * allocated variable with the rettv of the original ":return"'s
21644 * argument if present or is NULL else. */
21645 cstack->cs_rettv[idx] = rettv;
21646 else
21648 /* When undoing a return in order to make it pending, get the stored
21649 * return rettv. */
21650 if (reanimate)
21651 rettv = current_funccal->rettv;
21653 if (rettv != NULL)
21655 /* Store the value of the pending return. */
21656 if ((cstack->cs_rettv[idx] = alloc_tv()) != NULL)
21657 *(typval_T *)cstack->cs_rettv[idx] = *(typval_T *)rettv;
21658 else
21659 EMSG(_(e_outofmem));
21661 else
21662 cstack->cs_rettv[idx] = NULL;
21664 if (reanimate)
21666 /* The pending return value could be overwritten by a ":return"
21667 * without argument in a finally clause; reset the default
21668 * return value. */
21669 current_funccal->rettv->v_type = VAR_NUMBER;
21670 current_funccal->rettv->vval.v_number = 0;
21673 report_make_pending(CSTP_RETURN, rettv);
21675 else
21677 current_funccal->returned = TRUE;
21679 /* If the return is carried out now, store the return value. For
21680 * a return immediately after reanimation, the value is already
21681 * there. */
21682 if (!reanimate && rettv != NULL)
21684 clear_tv(current_funccal->rettv);
21685 *current_funccal->rettv = *(typval_T *)rettv;
21686 if (!is_cmd)
21687 vim_free(rettv);
21691 return idx < 0;
21695 * Free the variable with a pending return value.
21697 void
21698 discard_pending_return(rettv)
21699 void *rettv;
21701 free_tv((typval_T *)rettv);
21705 * Generate a return command for producing the value of "rettv". The result
21706 * is an allocated string. Used by report_pending() for verbose messages.
21708 char_u *
21709 get_return_cmd(rettv)
21710 void *rettv;
21712 char_u *s = NULL;
21713 char_u *tofree = NULL;
21714 char_u numbuf[NUMBUFLEN];
21716 if (rettv != NULL)
21717 s = echo_string((typval_T *)rettv, &tofree, numbuf, 0);
21718 if (s == NULL)
21719 s = (char_u *)"";
21721 STRCPY(IObuff, ":return ");
21722 STRNCPY(IObuff + 8, s, IOSIZE - 8);
21723 if (STRLEN(s) + 8 >= IOSIZE)
21724 STRCPY(IObuff + IOSIZE - 4, "...");
21725 vim_free(tofree);
21726 return vim_strsave(IObuff);
21730 * Get next function line.
21731 * Called by do_cmdline() to get the next line.
21732 * Returns allocated string, or NULL for end of function.
21734 /* ARGSUSED */
21735 char_u *
21736 get_func_line(c, cookie, indent)
21737 int c; /* not used */
21738 void *cookie;
21739 int indent; /* not used */
21741 funccall_T *fcp = (funccall_T *)cookie;
21742 ufunc_T *fp = fcp->func;
21743 char_u *retval;
21744 garray_T *gap; /* growarray with function lines */
21746 /* If breakpoints have been added/deleted need to check for it. */
21747 if (fcp->dbg_tick != debug_tick)
21749 fcp->breakpoint = dbg_find_breakpoint(FALSE, fp->uf_name,
21750 sourcing_lnum);
21751 fcp->dbg_tick = debug_tick;
21753 #ifdef FEAT_PROFILE
21754 if (do_profiling == PROF_YES)
21755 func_line_end(cookie);
21756 #endif
21758 gap = &fp->uf_lines;
21759 if (((fp->uf_flags & FC_ABORT) && did_emsg && !aborted_in_try())
21760 || fcp->returned)
21761 retval = NULL;
21762 else
21764 /* Skip NULL lines (continuation lines). */
21765 while (fcp->linenr < gap->ga_len
21766 && ((char_u **)(gap->ga_data))[fcp->linenr] == NULL)
21767 ++fcp->linenr;
21768 if (fcp->linenr >= gap->ga_len)
21769 retval = NULL;
21770 else
21772 retval = vim_strsave(((char_u **)(gap->ga_data))[fcp->linenr++]);
21773 sourcing_lnum = fcp->linenr;
21774 #ifdef FEAT_PROFILE
21775 if (do_profiling == PROF_YES)
21776 func_line_start(cookie);
21777 #endif
21781 /* Did we encounter a breakpoint? */
21782 if (fcp->breakpoint != 0 && fcp->breakpoint <= sourcing_lnum)
21784 dbg_breakpoint(fp->uf_name, sourcing_lnum);
21785 /* Find next breakpoint. */
21786 fcp->breakpoint = dbg_find_breakpoint(FALSE, fp->uf_name,
21787 sourcing_lnum);
21788 fcp->dbg_tick = debug_tick;
21791 return retval;
21794 #if defined(FEAT_PROFILE) || defined(PROTO)
21796 * Called when starting to read a function line.
21797 * "sourcing_lnum" must be correct!
21798 * When skipping lines it may not actually be executed, but we won't find out
21799 * until later and we need to store the time now.
21801 void
21802 func_line_start(cookie)
21803 void *cookie;
21805 funccall_T *fcp = (funccall_T *)cookie;
21806 ufunc_T *fp = fcp->func;
21808 if (fp->uf_profiling && sourcing_lnum >= 1
21809 && sourcing_lnum <= fp->uf_lines.ga_len)
21811 fp->uf_tml_idx = sourcing_lnum - 1;
21812 /* Skip continuation lines. */
21813 while (fp->uf_tml_idx > 0 && FUNCLINE(fp, fp->uf_tml_idx) == NULL)
21814 --fp->uf_tml_idx;
21815 fp->uf_tml_execed = FALSE;
21816 profile_start(&fp->uf_tml_start);
21817 profile_zero(&fp->uf_tml_children);
21818 profile_get_wait(&fp->uf_tml_wait);
21823 * Called when actually executing a function line.
21825 void
21826 func_line_exec(cookie)
21827 void *cookie;
21829 funccall_T *fcp = (funccall_T *)cookie;
21830 ufunc_T *fp = fcp->func;
21832 if (fp->uf_profiling && fp->uf_tml_idx >= 0)
21833 fp->uf_tml_execed = TRUE;
21837 * Called when done with a function line.
21839 void
21840 func_line_end(cookie)
21841 void *cookie;
21843 funccall_T *fcp = (funccall_T *)cookie;
21844 ufunc_T *fp = fcp->func;
21846 if (fp->uf_profiling && fp->uf_tml_idx >= 0)
21848 if (fp->uf_tml_execed)
21850 ++fp->uf_tml_count[fp->uf_tml_idx];
21851 profile_end(&fp->uf_tml_start);
21852 profile_sub_wait(&fp->uf_tml_wait, &fp->uf_tml_start);
21853 profile_add(&fp->uf_tml_total[fp->uf_tml_idx], &fp->uf_tml_start);
21854 profile_self(&fp->uf_tml_self[fp->uf_tml_idx], &fp->uf_tml_start,
21855 &fp->uf_tml_children);
21857 fp->uf_tml_idx = -1;
21860 #endif
21863 * Return TRUE if the currently active function should be ended, because a
21864 * return was encountered or an error occurred. Used inside a ":while".
21867 func_has_ended(cookie)
21868 void *cookie;
21870 funccall_T *fcp = (funccall_T *)cookie;
21872 /* Ignore the "abort" flag if the abortion behavior has been changed due to
21873 * an error inside a try conditional. */
21874 return (((fcp->func->uf_flags & FC_ABORT) && did_emsg && !aborted_in_try())
21875 || fcp->returned);
21879 * return TRUE if cookie indicates a function which "abort"s on errors.
21882 func_has_abort(cookie)
21883 void *cookie;
21885 return ((funccall_T *)cookie)->func->uf_flags & FC_ABORT;
21888 #if defined(FEAT_VIMINFO) || defined(FEAT_SESSION)
21889 typedef enum
21891 VAR_FLAVOUR_DEFAULT, /* doesn't start with uppercase */
21892 VAR_FLAVOUR_SESSION, /* starts with uppercase, some lower */
21893 VAR_FLAVOUR_VIMINFO /* all uppercase */
21894 } var_flavour_T;
21896 static var_flavour_T var_flavour __ARGS((char_u *varname));
21898 static var_flavour_T
21899 var_flavour(varname)
21900 char_u *varname;
21902 char_u *p = varname;
21904 if (ASCII_ISUPPER(*p))
21906 while (*(++p))
21907 if (ASCII_ISLOWER(*p))
21908 return VAR_FLAVOUR_SESSION;
21909 return VAR_FLAVOUR_VIMINFO;
21911 else
21912 return VAR_FLAVOUR_DEFAULT;
21914 #endif
21916 #if defined(FEAT_VIMINFO) || defined(PROTO)
21918 * Restore global vars that start with a capital from the viminfo file
21921 read_viminfo_varlist(virp, writing)
21922 vir_T *virp;
21923 int writing;
21925 char_u *tab;
21926 int type = VAR_NUMBER;
21927 typval_T tv;
21929 if (!writing && (find_viminfo_parameter('!') != NULL))
21931 tab = vim_strchr(virp->vir_line + 1, '\t');
21932 if (tab != NULL)
21934 *tab++ = '\0'; /* isolate the variable name */
21935 if (*tab == 'S') /* string var */
21936 type = VAR_STRING;
21937 #ifdef FEAT_FLOAT
21938 else if (*tab == 'F')
21939 type = VAR_FLOAT;
21940 #endif
21942 tab = vim_strchr(tab, '\t');
21943 if (tab != NULL)
21945 tv.v_type = type;
21946 if (type == VAR_STRING)
21947 tv.vval.v_string = viminfo_readstring(virp,
21948 (int)(tab - virp->vir_line + 1), TRUE);
21949 #ifdef FEAT_FLOAT
21950 else if (type == VAR_FLOAT)
21951 (void)string2float(tab + 1, &tv.vval.v_float);
21952 #endif
21953 else
21954 tv.vval.v_number = atol((char *)tab + 1);
21955 set_var(virp->vir_line + 1, &tv, FALSE);
21956 if (type == VAR_STRING)
21957 vim_free(tv.vval.v_string);
21962 return viminfo_readline(virp);
21966 * Write global vars that start with a capital to the viminfo file
21968 void
21969 write_viminfo_varlist(fp)
21970 FILE *fp;
21972 hashitem_T *hi;
21973 dictitem_T *this_var;
21974 int todo;
21975 char *s;
21976 char_u *p;
21977 char_u *tofree;
21978 char_u numbuf[NUMBUFLEN];
21980 if (find_viminfo_parameter('!') == NULL)
21981 return;
21983 fprintf(fp, _("\n# global variables:\n"));
21985 todo = (int)globvarht.ht_used;
21986 for (hi = globvarht.ht_array; todo > 0; ++hi)
21988 if (!HASHITEM_EMPTY(hi))
21990 --todo;
21991 this_var = HI2DI(hi);
21992 if (var_flavour(this_var->di_key) == VAR_FLAVOUR_VIMINFO)
21994 switch (this_var->di_tv.v_type)
21996 case VAR_STRING: s = "STR"; break;
21997 case VAR_NUMBER: s = "NUM"; break;
21998 #ifdef FEAT_FLOAT
21999 case VAR_FLOAT: s = "FLO"; break;
22000 #endif
22001 default: continue;
22003 fprintf(fp, "!%s\t%s\t", this_var->di_key, s);
22004 p = echo_string(&this_var->di_tv, &tofree, numbuf, 0);
22005 if (p != NULL)
22006 viminfo_writestring(fp, p);
22007 vim_free(tofree);
22012 #endif
22014 #if defined(FEAT_SESSION) || defined(PROTO)
22016 store_session_globals(fd)
22017 FILE *fd;
22019 hashitem_T *hi;
22020 dictitem_T *this_var;
22021 int todo;
22022 char_u *p, *t;
22024 todo = (int)globvarht.ht_used;
22025 for (hi = globvarht.ht_array; todo > 0; ++hi)
22027 if (!HASHITEM_EMPTY(hi))
22029 --todo;
22030 this_var = HI2DI(hi);
22031 if ((this_var->di_tv.v_type == VAR_NUMBER
22032 || this_var->di_tv.v_type == VAR_STRING)
22033 && var_flavour(this_var->di_key) == VAR_FLAVOUR_SESSION)
22035 /* Escape special characters with a backslash. Turn a LF and
22036 * CR into \n and \r. */
22037 p = vim_strsave_escaped(get_tv_string(&this_var->di_tv),
22038 (char_u *)"\\\"\n\r");
22039 if (p == NULL) /* out of memory */
22040 break;
22041 for (t = p; *t != NUL; ++t)
22042 if (*t == '\n')
22043 *t = 'n';
22044 else if (*t == '\r')
22045 *t = 'r';
22046 if ((fprintf(fd, "let %s = %c%s%c",
22047 this_var->di_key,
22048 (this_var->di_tv.v_type == VAR_STRING) ? '"'
22049 : ' ',
22051 (this_var->di_tv.v_type == VAR_STRING) ? '"'
22052 : ' ') < 0)
22053 || put_eol(fd) == FAIL)
22055 vim_free(p);
22056 return FAIL;
22058 vim_free(p);
22060 #ifdef FEAT_FLOAT
22061 else if (this_var->di_tv.v_type == VAR_FLOAT
22062 && var_flavour(this_var->di_key) == VAR_FLAVOUR_SESSION)
22064 float_T f = this_var->di_tv.vval.v_float;
22065 int sign = ' ';
22067 if (f < 0)
22069 f = -f;
22070 sign = '-';
22072 if ((fprintf(fd, "let %s = %c&%f",
22073 this_var->di_key, sign, f) < 0)
22074 || put_eol(fd) == FAIL)
22075 return FAIL;
22077 #endif
22080 return OK;
22082 #endif
22085 * Display script name where an item was last set.
22086 * Should only be invoked when 'verbose' is non-zero.
22088 void
22089 last_set_msg(scriptID)
22090 scid_T scriptID;
22092 char_u *p;
22094 if (scriptID != 0)
22096 p = home_replace_save(NULL, get_scriptname(scriptID));
22097 if (p != NULL)
22099 verbose_enter();
22100 MSG_PUTS(_("\n\tLast set from "));
22101 MSG_PUTS(p);
22102 vim_free(p);
22103 verbose_leave();
22109 * List v:oldfiles in a nice way.
22111 /*ARGSUSED*/
22112 void
22113 ex_oldfiles(eap)
22114 exarg_T *eap;
22116 list_T *l = vimvars[VV_OLDFILES].vv_list;
22117 listitem_T *li;
22118 int nr = 0;
22120 if (l == NULL)
22121 msg((char_u *)_("No old files"));
22122 else
22124 msg_start();
22125 msg_scroll = TRUE;
22126 for (li = l->lv_first; li != NULL && !got_int; li = li->li_next)
22128 msg_outnum((long)++nr);
22129 MSG_PUTS(": ");
22130 msg_outtrans(get_tv_string(&li->li_tv));
22131 msg_putchar('\n');
22132 out_flush(); /* output one line at a time */
22133 ui_breakcheck();
22135 /* Assume "got_int" was set to truncate the listing. */
22136 got_int = FALSE;
22138 #ifdef FEAT_BROWSE_CMD
22139 if (cmdmod.browse)
22141 quit_more = FALSE;
22142 nr = prompt_for_number(FALSE);
22143 msg_starthere();
22144 if (nr > 0)
22146 char_u *p = list_find_str(get_vim_var_list(VV_OLDFILES),
22147 (long)nr);
22149 if (p != NULL)
22151 p = expand_env_save(p);
22152 eap->arg = p;
22153 eap->cmdidx = CMD_edit;
22154 cmdmod.browse = FALSE;
22155 do_exedit(eap, NULL);
22156 vim_free(p);
22160 #endif
22164 #endif /* FEAT_EVAL */
22167 #if defined(FEAT_MODIFY_FNAME) || defined(FEAT_EVAL) || defined(PROTO)
22169 #ifdef WIN3264
22171 * Functions for ":8" filename modifier: get 8.3 version of a filename.
22173 static int get_short_pathname __ARGS((char_u **fnamep, char_u **bufp, int *fnamelen));
22174 static int shortpath_for_invalid_fname __ARGS((char_u **fname, char_u **bufp, int *fnamelen));
22175 static int shortpath_for_partial __ARGS((char_u **fnamep, char_u **bufp, int *fnamelen));
22178 * Get the short path (8.3) for the filename in "fnamep".
22179 * Only works for a valid file name.
22180 * When the path gets longer "fnamep" is changed and the allocated buffer
22181 * is put in "bufp".
22182 * *fnamelen is the length of "fnamep" and set to 0 for a nonexistent path.
22183 * Returns OK on success, FAIL on failure.
22185 static int
22186 get_short_pathname(fnamep, bufp, fnamelen)
22187 char_u **fnamep;
22188 char_u **bufp;
22189 int *fnamelen;
22191 int l, len;
22192 char_u *newbuf;
22194 len = *fnamelen;
22195 l = GetShortPathName(*fnamep, *fnamep, len);
22196 if (l > len - 1)
22198 /* If that doesn't work (not enough space), then save the string
22199 * and try again with a new buffer big enough. */
22200 newbuf = vim_strnsave(*fnamep, l);
22201 if (newbuf == NULL)
22202 return FAIL;
22204 vim_free(*bufp);
22205 *fnamep = *bufp = newbuf;
22207 /* Really should always succeed, as the buffer is big enough. */
22208 l = GetShortPathName(*fnamep, *fnamep, l+1);
22211 *fnamelen = l;
22212 return OK;
22216 * Get the short path (8.3) for the filename in "fname". The converted
22217 * path is returned in "bufp".
22219 * Some of the directories specified in "fname" may not exist. This function
22220 * will shorten the existing directories at the beginning of the path and then
22221 * append the remaining non-existing path.
22223 * fname - Pointer to the filename to shorten. On return, contains the
22224 * pointer to the shortened pathname
22225 * bufp - Pointer to an allocated buffer for the filename.
22226 * fnamelen - Length of the filename pointed to by fname
22228 * Returns OK on success (or nothing done) and FAIL on failure (out of memory).
22230 static int
22231 shortpath_for_invalid_fname(fname, bufp, fnamelen)
22232 char_u **fname;
22233 char_u **bufp;
22234 int *fnamelen;
22236 char_u *short_fname, *save_fname, *pbuf_unused;
22237 char_u *endp, *save_endp;
22238 char_u ch;
22239 int old_len, len;
22240 int new_len, sfx_len;
22241 int retval = OK;
22243 /* Make a copy */
22244 old_len = *fnamelen;
22245 save_fname = vim_strnsave(*fname, old_len);
22246 pbuf_unused = NULL;
22247 short_fname = NULL;
22249 endp = save_fname + old_len - 1; /* Find the end of the copy */
22250 save_endp = endp;
22253 * Try shortening the supplied path till it succeeds by removing one
22254 * directory at a time from the tail of the path.
22256 len = 0;
22257 for (;;)
22259 /* go back one path-separator */
22260 while (endp > save_fname && !after_pathsep(save_fname, endp + 1))
22261 --endp;
22262 if (endp <= save_fname)
22263 break; /* processed the complete path */
22266 * Replace the path separator with a NUL and try to shorten the
22267 * resulting path.
22269 ch = *endp;
22270 *endp = 0;
22271 short_fname = save_fname;
22272 len = (int)STRLEN(short_fname) + 1;
22273 if (get_short_pathname(&short_fname, &pbuf_unused, &len) == FAIL)
22275 retval = FAIL;
22276 goto theend;
22278 *endp = ch; /* preserve the string */
22280 if (len > 0)
22281 break; /* successfully shortened the path */
22283 /* failed to shorten the path. Skip the path separator */
22284 --endp;
22287 if (len > 0)
22290 * Succeeded in shortening the path. Now concatenate the shortened
22291 * path with the remaining path at the tail.
22294 /* Compute the length of the new path. */
22295 sfx_len = (int)(save_endp - endp) + 1;
22296 new_len = len + sfx_len;
22298 *fnamelen = new_len;
22299 vim_free(*bufp);
22300 if (new_len > old_len)
22302 /* There is not enough space in the currently allocated string,
22303 * copy it to a buffer big enough. */
22304 *fname = *bufp = vim_strnsave(short_fname, new_len);
22305 if (*fname == NULL)
22307 retval = FAIL;
22308 goto theend;
22311 else
22313 /* Transfer short_fname to the main buffer (it's big enough),
22314 * unless get_short_pathname() did its work in-place. */
22315 *fname = *bufp = save_fname;
22316 if (short_fname != save_fname)
22317 vim_strncpy(save_fname, short_fname, len);
22318 save_fname = NULL;
22321 /* concat the not-shortened part of the path */
22322 vim_strncpy(*fname + len, endp, sfx_len);
22323 (*fname)[new_len] = NUL;
22326 theend:
22327 vim_free(pbuf_unused);
22328 vim_free(save_fname);
22330 return retval;
22334 * Get a pathname for a partial path.
22335 * Returns OK for success, FAIL for failure.
22337 static int
22338 shortpath_for_partial(fnamep, bufp, fnamelen)
22339 char_u **fnamep;
22340 char_u **bufp;
22341 int *fnamelen;
22343 int sepcount, len, tflen;
22344 char_u *p;
22345 char_u *pbuf, *tfname;
22346 int hasTilde;
22348 /* Count up the path separators from the RHS.. so we know which part
22349 * of the path to return. */
22350 sepcount = 0;
22351 for (p = *fnamep; p < *fnamep + *fnamelen; mb_ptr_adv(p))
22352 if (vim_ispathsep(*p))
22353 ++sepcount;
22355 /* Need full path first (use expand_env() to remove a "~/") */
22356 hasTilde = (**fnamep == '~');
22357 if (hasTilde)
22358 pbuf = tfname = expand_env_save(*fnamep);
22359 else
22360 pbuf = tfname = FullName_save(*fnamep, FALSE);
22362 len = tflen = (int)STRLEN(tfname);
22364 if (get_short_pathname(&tfname, &pbuf, &len) == FAIL)
22365 return FAIL;
22367 if (len == 0)
22369 /* Don't have a valid filename, so shorten the rest of the
22370 * path if we can. This CAN give us invalid 8.3 filenames, but
22371 * there's not a lot of point in guessing what it might be.
22373 len = tflen;
22374 if (shortpath_for_invalid_fname(&tfname, &pbuf, &len) == FAIL)
22375 return FAIL;
22378 /* Count the paths backward to find the beginning of the desired string. */
22379 for (p = tfname + len - 1; p >= tfname; --p)
22381 #ifdef FEAT_MBYTE
22382 if (has_mbyte)
22383 p -= mb_head_off(tfname, p);
22384 #endif
22385 if (vim_ispathsep(*p))
22387 if (sepcount == 0 || (hasTilde && sepcount == 1))
22388 break;
22389 else
22390 sepcount --;
22393 if (hasTilde)
22395 --p;
22396 if (p >= tfname)
22397 *p = '~';
22398 else
22399 return FAIL;
22401 else
22402 ++p;
22404 /* Copy in the string - p indexes into tfname - allocated at pbuf */
22405 vim_free(*bufp);
22406 *fnamelen = (int)STRLEN(p);
22407 *bufp = pbuf;
22408 *fnamep = p;
22410 return OK;
22412 #endif /* WIN3264 */
22415 * Adjust a filename, according to a string of modifiers.
22416 * *fnamep must be NUL terminated when called. When returning, the length is
22417 * determined by *fnamelen.
22418 * Returns VALID_ flags or -1 for failure.
22419 * When there is an error, *fnamep is set to NULL.
22422 modify_fname(src, usedlen, fnamep, bufp, fnamelen)
22423 char_u *src; /* string with modifiers */
22424 int *usedlen; /* characters after src that are used */
22425 char_u **fnamep; /* file name so far */
22426 char_u **bufp; /* buffer for allocated file name or NULL */
22427 int *fnamelen; /* length of fnamep */
22429 int valid = 0;
22430 char_u *tail;
22431 char_u *s, *p, *pbuf;
22432 char_u dirname[MAXPATHL];
22433 int c;
22434 int has_fullname = 0;
22435 #ifdef WIN3264
22436 int has_shortname = 0;
22437 #endif
22439 repeat:
22440 /* ":p" - full path/file_name */
22441 if (src[*usedlen] == ':' && src[*usedlen + 1] == 'p')
22443 has_fullname = 1;
22445 valid |= VALID_PATH;
22446 *usedlen += 2;
22448 /* Expand "~/path" for all systems and "~user/path" for Unix and VMS */
22449 if ((*fnamep)[0] == '~'
22450 #if !defined(UNIX) && !(defined(VMS) && defined(USER_HOME))
22451 && ((*fnamep)[1] == '/'
22452 # ifdef BACKSLASH_IN_FILENAME
22453 || (*fnamep)[1] == '\\'
22454 # endif
22455 || (*fnamep)[1] == NUL)
22457 #endif
22460 *fnamep = expand_env_save(*fnamep);
22461 vim_free(*bufp); /* free any allocated file name */
22462 *bufp = *fnamep;
22463 if (*fnamep == NULL)
22464 return -1;
22467 /* When "/." or "/.." is used: force expansion to get rid of it. */
22468 for (p = *fnamep; *p != NUL; mb_ptr_adv(p))
22470 if (vim_ispathsep(*p)
22471 && p[1] == '.'
22472 && (p[2] == NUL
22473 || vim_ispathsep(p[2])
22474 || (p[2] == '.'
22475 && (p[3] == NUL || vim_ispathsep(p[3])))))
22476 break;
22479 /* FullName_save() is slow, don't use it when not needed. */
22480 if (*p != NUL || !vim_isAbsName(*fnamep))
22482 *fnamep = FullName_save(*fnamep, *p != NUL);
22483 vim_free(*bufp); /* free any allocated file name */
22484 *bufp = *fnamep;
22485 if (*fnamep == NULL)
22486 return -1;
22489 /* Append a path separator to a directory. */
22490 if (mch_isdir(*fnamep))
22492 /* Make room for one or two extra characters. */
22493 *fnamep = vim_strnsave(*fnamep, (int)STRLEN(*fnamep) + 2);
22494 vim_free(*bufp); /* free any allocated file name */
22495 *bufp = *fnamep;
22496 if (*fnamep == NULL)
22497 return -1;
22498 add_pathsep(*fnamep);
22502 /* ":." - path relative to the current directory */
22503 /* ":~" - path relative to the home directory */
22504 /* ":8" - shortname path - postponed till after */
22505 while (src[*usedlen] == ':'
22506 && ((c = src[*usedlen + 1]) == '.' || c == '~' || c == '8'))
22508 *usedlen += 2;
22509 if (c == '8')
22511 #ifdef WIN3264
22512 has_shortname = 1; /* Postpone this. */
22513 #endif
22514 continue;
22516 pbuf = NULL;
22517 /* Need full path first (use expand_env() to remove a "~/") */
22518 if (!has_fullname)
22520 if (c == '.' && **fnamep == '~')
22521 p = pbuf = expand_env_save(*fnamep);
22522 else
22523 p = pbuf = FullName_save(*fnamep, FALSE);
22525 else
22526 p = *fnamep;
22528 has_fullname = 0;
22530 if (p != NULL)
22532 if (c == '.')
22534 mch_dirname(dirname, MAXPATHL);
22535 s = shorten_fname(p, dirname);
22536 if (s != NULL)
22538 *fnamep = s;
22539 if (pbuf != NULL)
22541 vim_free(*bufp); /* free any allocated file name */
22542 *bufp = pbuf;
22543 pbuf = NULL;
22547 else
22549 home_replace(NULL, p, dirname, MAXPATHL, TRUE);
22550 /* Only replace it when it starts with '~' */
22551 if (*dirname == '~')
22553 s = vim_strsave(dirname);
22554 if (s != NULL)
22556 *fnamep = s;
22557 vim_free(*bufp);
22558 *bufp = s;
22562 vim_free(pbuf);
22566 tail = gettail(*fnamep);
22567 *fnamelen = (int)STRLEN(*fnamep);
22569 /* ":h" - head, remove "/file_name", can be repeated */
22570 /* Don't remove the first "/" or "c:\" */
22571 while (src[*usedlen] == ':' && src[*usedlen + 1] == 'h')
22573 valid |= VALID_HEAD;
22574 *usedlen += 2;
22575 s = get_past_head(*fnamep);
22576 while (tail > s && after_pathsep(s, tail))
22577 mb_ptr_back(*fnamep, tail);
22578 *fnamelen = (int)(tail - *fnamep);
22579 #ifdef VMS
22580 if (*fnamelen > 0)
22581 *fnamelen += 1; /* the path separator is part of the path */
22582 #endif
22583 if (*fnamelen == 0)
22585 /* Result is empty. Turn it into "." to make ":cd %:h" work. */
22586 p = vim_strsave((char_u *)".");
22587 if (p == NULL)
22588 return -1;
22589 vim_free(*bufp);
22590 *bufp = *fnamep = tail = p;
22591 *fnamelen = 1;
22593 else
22595 while (tail > s && !after_pathsep(s, tail))
22596 mb_ptr_back(*fnamep, tail);
22600 /* ":8" - shortname */
22601 if (src[*usedlen] == ':' && src[*usedlen + 1] == '8')
22603 *usedlen += 2;
22604 #ifdef WIN3264
22605 has_shortname = 1;
22606 #endif
22609 #ifdef WIN3264
22610 /* Check shortname after we have done 'heads' and before we do 'tails'
22612 if (has_shortname)
22614 pbuf = NULL;
22615 /* Copy the string if it is shortened by :h */
22616 if (*fnamelen < (int)STRLEN(*fnamep))
22618 p = vim_strnsave(*fnamep, *fnamelen);
22619 if (p == 0)
22620 return -1;
22621 vim_free(*bufp);
22622 *bufp = *fnamep = p;
22625 /* Split into two implementations - makes it easier. First is where
22626 * there isn't a full name already, second is where there is.
22628 if (!has_fullname && !vim_isAbsName(*fnamep))
22630 if (shortpath_for_partial(fnamep, bufp, fnamelen) == FAIL)
22631 return -1;
22633 else
22635 int l;
22637 /* Simple case, already have the full-name
22638 * Nearly always shorter, so try first time. */
22639 l = *fnamelen;
22640 if (get_short_pathname(fnamep, bufp, &l) == FAIL)
22641 return -1;
22643 if (l == 0)
22645 /* Couldn't find the filename.. search the paths.
22647 l = *fnamelen;
22648 if (shortpath_for_invalid_fname(fnamep, bufp, &l) == FAIL)
22649 return -1;
22651 *fnamelen = l;
22654 #endif /* WIN3264 */
22656 /* ":t" - tail, just the basename */
22657 if (src[*usedlen] == ':' && src[*usedlen + 1] == 't')
22659 *usedlen += 2;
22660 *fnamelen -= (int)(tail - *fnamep);
22661 *fnamep = tail;
22664 /* ":e" - extension, can be repeated */
22665 /* ":r" - root, without extension, can be repeated */
22666 while (src[*usedlen] == ':'
22667 && (src[*usedlen + 1] == 'e' || src[*usedlen + 1] == 'r'))
22669 /* find a '.' in the tail:
22670 * - for second :e: before the current fname
22671 * - otherwise: The last '.'
22673 if (src[*usedlen + 1] == 'e' && *fnamep > tail)
22674 s = *fnamep - 2;
22675 else
22676 s = *fnamep + *fnamelen - 1;
22677 for ( ; s > tail; --s)
22678 if (s[0] == '.')
22679 break;
22680 if (src[*usedlen + 1] == 'e') /* :e */
22682 if (s > tail)
22684 *fnamelen += (int)(*fnamep - (s + 1));
22685 *fnamep = s + 1;
22686 #ifdef VMS
22687 /* cut version from the extension */
22688 s = *fnamep + *fnamelen - 1;
22689 for ( ; s > *fnamep; --s)
22690 if (s[0] == ';')
22691 break;
22692 if (s > *fnamep)
22693 *fnamelen = s - *fnamep;
22694 #endif
22696 else if (*fnamep <= tail)
22697 *fnamelen = 0;
22699 else /* :r */
22701 if (s > tail) /* remove one extension */
22702 *fnamelen = (int)(s - *fnamep);
22704 *usedlen += 2;
22707 /* ":s?pat?foo?" - substitute */
22708 /* ":gs?pat?foo?" - global substitute */
22709 if (src[*usedlen] == ':'
22710 && (src[*usedlen + 1] == 's'
22711 || (src[*usedlen + 1] == 'g' && src[*usedlen + 2] == 's')))
22713 char_u *str;
22714 char_u *pat;
22715 char_u *sub;
22716 int sep;
22717 char_u *flags;
22718 int didit = FALSE;
22720 flags = (char_u *)"";
22721 s = src + *usedlen + 2;
22722 if (src[*usedlen + 1] == 'g')
22724 flags = (char_u *)"g";
22725 ++s;
22728 sep = *s++;
22729 if (sep)
22731 /* find end of pattern */
22732 p = vim_strchr(s, sep);
22733 if (p != NULL)
22735 pat = vim_strnsave(s, (int)(p - s));
22736 if (pat != NULL)
22738 s = p + 1;
22739 /* find end of substitution */
22740 p = vim_strchr(s, sep);
22741 if (p != NULL)
22743 sub = vim_strnsave(s, (int)(p - s));
22744 str = vim_strnsave(*fnamep, *fnamelen);
22745 if (sub != NULL && str != NULL)
22747 *usedlen = (int)(p + 1 - src);
22748 s = do_string_sub(str, pat, sub, flags);
22749 if (s != NULL)
22751 *fnamep = s;
22752 *fnamelen = (int)STRLEN(s);
22753 vim_free(*bufp);
22754 *bufp = s;
22755 didit = TRUE;
22758 vim_free(sub);
22759 vim_free(str);
22761 vim_free(pat);
22764 /* after using ":s", repeat all the modifiers */
22765 if (didit)
22766 goto repeat;
22770 return valid;
22774 * Perform a substitution on "str" with pattern "pat" and substitute "sub".
22775 * "flags" can be "g" to do a global substitute.
22776 * Returns an allocated string, NULL for error.
22778 char_u *
22779 do_string_sub(str, pat, sub, flags)
22780 char_u *str;
22781 char_u *pat;
22782 char_u *sub;
22783 char_u *flags;
22785 int sublen;
22786 regmatch_T regmatch;
22787 int i;
22788 int do_all;
22789 char_u *tail;
22790 garray_T ga;
22791 char_u *ret;
22792 char_u *save_cpo;
22794 /* Make 'cpoptions' empty, so that the 'l' flag doesn't work here */
22795 save_cpo = p_cpo;
22796 p_cpo = empty_option;
22798 ga_init2(&ga, 1, 200);
22800 do_all = (flags[0] == 'g');
22802 regmatch.rm_ic = p_ic;
22803 regmatch.regprog = vim_regcomp(pat, RE_MAGIC + RE_STRING);
22804 if (regmatch.regprog != NULL)
22806 tail = str;
22807 while (vim_regexec_nl(&regmatch, str, (colnr_T)(tail - str)))
22810 * Get some space for a temporary buffer to do the substitution
22811 * into. It will contain:
22812 * - The text up to where the match is.
22813 * - The substituted text.
22814 * - The text after the match.
22816 sublen = vim_regsub(&regmatch, sub, tail, FALSE, TRUE, FALSE);
22817 if (ga_grow(&ga, (int)(STRLEN(tail) + sublen -
22818 (regmatch.endp[0] - regmatch.startp[0]))) == FAIL)
22820 ga_clear(&ga);
22821 break;
22824 /* copy the text up to where the match is */
22825 i = (int)(regmatch.startp[0] - tail);
22826 mch_memmove((char_u *)ga.ga_data + ga.ga_len, tail, (size_t)i);
22827 /* add the substituted text */
22828 (void)vim_regsub(&regmatch, sub, (char_u *)ga.ga_data
22829 + ga.ga_len + i, TRUE, TRUE, FALSE);
22830 ga.ga_len += i + sublen - 1;
22831 /* avoid getting stuck on a match with an empty string */
22832 if (tail == regmatch.endp[0])
22834 if (*tail == NUL)
22835 break;
22836 *((char_u *)ga.ga_data + ga.ga_len) = *tail++;
22837 ++ga.ga_len;
22839 else
22841 tail = regmatch.endp[0];
22842 if (*tail == NUL)
22843 break;
22845 if (!do_all)
22846 break;
22849 if (ga.ga_data != NULL)
22850 STRCPY((char *)ga.ga_data + ga.ga_len, tail);
22852 vim_free(regmatch.regprog);
22855 ret = vim_strsave(ga.ga_data == NULL ? str : (char_u *)ga.ga_data);
22856 ga_clear(&ga);
22857 if (p_cpo == empty_option)
22858 p_cpo = save_cpo;
22859 else
22860 /* Darn, evaluating {sub} expression changed the value. */
22861 free_string_option(save_cpo);
22863 return ret;
22866 #endif /* defined(FEAT_MODIFY_FNAME) || defined(FEAT_EVAL) */