Merged from the latest developing branch.
[MacVim/KaoriYa.git] / src / eval.c
blob98979b175f6a54466b1fbfa3bbbb8f27e1ab96a5
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)
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_GETTEXT
11567 "gettext",
11568 #endif
11569 #ifdef FEAT_GUI
11570 "gui",
11571 #endif
11572 #ifdef FEAT_GUI_ATHENA
11573 # ifdef FEAT_GUI_NEXTAW
11574 "gui_neXtaw",
11575 # else
11576 "gui_athena",
11577 # endif
11578 #endif
11579 #ifdef FEAT_GUI_GTK
11580 "gui_gtk",
11581 # ifdef HAVE_GTK2
11582 "gui_gtk2",
11583 # endif
11584 #endif
11585 #ifdef FEAT_GUI_GNOME
11586 "gui_gnome",
11587 #endif
11588 #ifdef FEAT_GUI_MAC
11589 "gui_mac",
11590 #endif
11591 #ifdef FEAT_GUI_MOTIF
11592 "gui_motif",
11593 #endif
11594 #ifdef FEAT_GUI_PHOTON
11595 "gui_photon",
11596 #endif
11597 #ifdef FEAT_GUI_W16
11598 "gui_win16",
11599 #endif
11600 #ifdef FEAT_GUI_W32
11601 "gui_win32",
11602 #endif
11603 #ifdef FEAT_HANGULIN
11604 "hangul_input",
11605 #endif
11606 #if defined(HAVE_ICONV_H) && defined(USE_ICONV)
11607 "iconv",
11608 #endif
11609 #ifdef FEAT_INS_EXPAND
11610 "insert_expand",
11611 #endif
11612 #ifdef FEAT_JUMPLIST
11613 "jumplist",
11614 #endif
11615 #ifdef FEAT_KEYMAP
11616 "keymap",
11617 #endif
11618 #ifdef FEAT_LANGMAP
11619 "langmap",
11620 #endif
11621 #ifdef FEAT_LIBCALL
11622 "libcall",
11623 #endif
11624 #ifdef FEAT_LINEBREAK
11625 "linebreak",
11626 #endif
11627 #ifdef FEAT_LISP
11628 "lispindent",
11629 #endif
11630 #ifdef FEAT_LISTCMDS
11631 "listcmds",
11632 #endif
11633 #ifdef FEAT_LOCALMAP
11634 "localmap",
11635 #endif
11636 #ifdef FEAT_MENU
11637 "menu",
11638 #endif
11639 #ifdef FEAT_SESSION
11640 "mksession",
11641 #endif
11642 #ifdef FEAT_MODIFY_FNAME
11643 "modify_fname",
11644 #endif
11645 #ifdef FEAT_MOUSE
11646 "mouse",
11647 #endif
11648 #ifdef FEAT_MOUSESHAPE
11649 "mouseshape",
11650 #endif
11651 #if defined(UNIX) || defined(VMS)
11652 # ifdef FEAT_MOUSE_DEC
11653 "mouse_dec",
11654 # endif
11655 # ifdef FEAT_MOUSE_GPM
11656 "mouse_gpm",
11657 # endif
11658 # ifdef FEAT_MOUSE_JSB
11659 "mouse_jsbterm",
11660 # endif
11661 # ifdef FEAT_MOUSE_NET
11662 "mouse_netterm",
11663 # endif
11664 # ifdef FEAT_MOUSE_PTERM
11665 "mouse_pterm",
11666 # endif
11667 # ifdef FEAT_SYSMOUSE
11668 "mouse_sysmouse",
11669 # endif
11670 # ifdef FEAT_MOUSE_XTERM
11671 "mouse_xterm",
11672 # endif
11673 #endif
11674 #ifdef FEAT_MBYTE
11675 "multi_byte",
11676 #endif
11677 #ifdef FEAT_MBYTE_IME
11678 "multi_byte_ime",
11679 #endif
11680 #ifdef FEAT_MULTI_LANG
11681 "multi_lang",
11682 #endif
11683 #ifdef FEAT_MZSCHEME
11684 #ifndef DYNAMIC_MZSCHEME
11685 "mzscheme",
11686 #endif
11687 #endif
11688 #ifdef FEAT_OLE
11689 "ole",
11690 #endif
11691 #ifdef FEAT_OSFILETYPE
11692 "osfiletype",
11693 #endif
11694 #ifdef FEAT_PATH_EXTRA
11695 "path_extra",
11696 #endif
11697 #ifdef FEAT_PERL
11698 #ifndef DYNAMIC_PERL
11699 "perl",
11700 #endif
11701 #endif
11702 #ifdef FEAT_PYTHON
11703 #ifndef DYNAMIC_PYTHON
11704 "python",
11705 #endif
11706 #endif
11707 #ifdef FEAT_POSTSCRIPT
11708 "postscript",
11709 #endif
11710 #ifdef FEAT_PRINTER
11711 "printer",
11712 #endif
11713 #ifdef FEAT_PROFILE
11714 "profile",
11715 #endif
11716 #ifdef FEAT_RELTIME
11717 "reltime",
11718 #endif
11719 #ifdef FEAT_QUICKFIX
11720 "quickfix",
11721 #endif
11722 #ifdef FEAT_RIGHTLEFT
11723 "rightleft",
11724 #endif
11725 #if defined(FEAT_RUBY) && !defined(DYNAMIC_RUBY)
11726 "ruby",
11727 #endif
11728 #ifdef FEAT_SCROLLBIND
11729 "scrollbind",
11730 #endif
11731 #ifdef FEAT_CMDL_INFO
11732 "showcmd",
11733 "cmdline_info",
11734 #endif
11735 #ifdef FEAT_SIGNS
11736 "signs",
11737 #endif
11738 #ifdef FEAT_SMARTINDENT
11739 "smartindent",
11740 #endif
11741 #ifdef FEAT_SNIFF
11742 "sniff",
11743 #endif
11744 #ifdef FEAT_STL_OPT
11745 "statusline",
11746 #endif
11747 #ifdef FEAT_SUN_WORKSHOP
11748 "sun_workshop",
11749 #endif
11750 #ifdef FEAT_NETBEANS_INTG
11751 "netbeans_intg",
11752 #endif
11753 #ifdef FEAT_SPELL
11754 "spell",
11755 #endif
11756 #ifdef FEAT_SYN_HL
11757 "syntax",
11758 #endif
11759 #if defined(USE_SYSTEM) || !defined(UNIX)
11760 "system",
11761 #endif
11762 #ifdef FEAT_TAG_BINS
11763 "tag_binary",
11764 #endif
11765 #ifdef FEAT_TAG_OLDSTATIC
11766 "tag_old_static",
11767 #endif
11768 #ifdef FEAT_TAG_ANYWHITE
11769 "tag_any_white",
11770 #endif
11771 #ifdef FEAT_TCL
11772 # ifndef DYNAMIC_TCL
11773 "tcl",
11774 # endif
11775 #endif
11776 #ifdef TERMINFO
11777 "terminfo",
11778 #endif
11779 #ifdef FEAT_TERMRESPONSE
11780 "termresponse",
11781 #endif
11782 #ifdef FEAT_TEXTOBJ
11783 "textobjects",
11784 #endif
11785 #ifdef HAVE_TGETENT
11786 "tgetent",
11787 #endif
11788 #ifdef FEAT_TITLE
11789 "title",
11790 #endif
11791 #ifdef FEAT_TOOLBAR
11792 "toolbar",
11793 #endif
11794 #ifdef FEAT_USR_CMDS
11795 "user-commands", /* was accidentally included in 5.4 */
11796 "user_commands",
11797 #endif
11798 #ifdef FEAT_VIMINFO
11799 "viminfo",
11800 #endif
11801 #ifdef FEAT_VERTSPLIT
11802 "vertsplit",
11803 #endif
11804 #ifdef FEAT_VIRTUALEDIT
11805 "virtualedit",
11806 #endif
11807 #ifdef FEAT_VISUAL
11808 "visual",
11809 #endif
11810 #ifdef FEAT_VISUALEXTRA
11811 "visualextra",
11812 #endif
11813 #ifdef FEAT_VREPLACE
11814 "vreplace",
11815 #endif
11816 #ifdef FEAT_WILDIGN
11817 "wildignore",
11818 #endif
11819 #ifdef FEAT_WILDMENU
11820 "wildmenu",
11821 #endif
11822 #ifdef FEAT_WINDOWS
11823 "windows",
11824 #endif
11825 #ifdef FEAT_WAK
11826 "winaltkeys",
11827 #endif
11828 #ifdef FEAT_WRITEBACKUP
11829 "writebackup",
11830 #endif
11831 #ifdef FEAT_XIM
11832 "xim",
11833 #endif
11834 #ifdef FEAT_XFONTSET
11835 "xfontset",
11836 #endif
11837 #ifdef USE_XSMP
11838 "xsmp",
11839 #endif
11840 #ifdef USE_XSMP_INTERACT
11841 "xsmp_interact",
11842 #endif
11843 #ifdef FEAT_XCLIPBOARD
11844 "xterm_clipboard",
11845 #endif
11846 #ifdef FEAT_XTERM_SAVE
11847 "xterm_save",
11848 #endif
11849 #if defined(UNIX) && defined(FEAT_X11)
11850 "X11",
11851 #endif
11852 NULL
11855 name = get_tv_string(&argvars[0]);
11856 for (i = 0; has_list[i] != NULL; ++i)
11857 if (STRICMP(name, has_list[i]) == 0)
11859 n = TRUE;
11860 break;
11863 if (n == FALSE)
11865 if (STRNICMP(name, "patch", 5) == 0)
11866 n = has_patch(atoi((char *)name + 5));
11867 else if (STRICMP(name, "vim_starting") == 0)
11868 n = (starting != 0);
11869 #ifdef FEAT_MBYTE
11870 else if (STRICMP(name, "multi_byte_encoding") == 0)
11871 n = has_mbyte;
11872 #endif
11873 #if defined(FEAT_BEVAL) && defined(FEAT_GUI_W32)
11874 else if (STRICMP(name, "balloon_multiline") == 0)
11875 n = multiline_balloon_available();
11876 #endif
11877 #ifdef DYNAMIC_TCL
11878 else if (STRICMP(name, "tcl") == 0)
11879 n = tcl_enabled(FALSE);
11880 #endif
11881 #if defined(USE_ICONV) && defined(DYNAMIC_ICONV)
11882 else if (STRICMP(name, "iconv") == 0)
11883 n = iconv_enabled(FALSE);
11884 #endif
11885 #ifdef DYNAMIC_MZSCHEME
11886 else if (STRICMP(name, "mzscheme") == 0)
11887 n = mzscheme_enabled(FALSE);
11888 #endif
11889 #ifdef DYNAMIC_RUBY
11890 else if (STRICMP(name, "ruby") == 0)
11891 n = ruby_enabled(FALSE);
11892 #endif
11893 #ifdef DYNAMIC_PYTHON
11894 else if (STRICMP(name, "python") == 0)
11895 n = python_enabled(FALSE);
11896 #endif
11897 #ifdef DYNAMIC_PERL
11898 else if (STRICMP(name, "perl") == 0)
11899 n = perl_enabled(FALSE);
11900 #endif
11901 #ifdef FEAT_GUI
11902 else if (STRICMP(name, "gui_running") == 0)
11903 n = (gui.in_use || gui.starting);
11904 # ifdef FEAT_GUI_W32
11905 else if (STRICMP(name, "gui_win32s") == 0)
11906 n = gui_is_win32s();
11907 # endif
11908 # ifdef FEAT_BROWSE
11909 else if (STRICMP(name, "browse") == 0)
11910 n = gui.in_use; /* gui_mch_browse() works when GUI is running */
11911 # endif
11912 #endif
11913 #ifdef FEAT_SYN_HL
11914 else if (STRICMP(name, "syntax_items") == 0)
11915 n = syntax_present(curbuf);
11916 #endif
11917 #if defined(WIN3264)
11918 else if (STRICMP(name, "win95") == 0)
11919 n = mch_windows95();
11920 #endif
11921 #ifdef FEAT_NETBEANS_INTG
11922 else if (STRICMP(name, "netbeans_enabled") == 0)
11923 n = usingNetbeans;
11924 #endif
11927 rettv->vval.v_number = n;
11931 * "has_key()" function
11933 static void
11934 f_has_key(argvars, rettv)
11935 typval_T *argvars;
11936 typval_T *rettv;
11938 rettv->vval.v_number = 0;
11939 if (argvars[0].v_type != VAR_DICT)
11941 EMSG(_(e_dictreq));
11942 return;
11944 if (argvars[0].vval.v_dict == NULL)
11945 return;
11947 rettv->vval.v_number = dict_find(argvars[0].vval.v_dict,
11948 get_tv_string(&argvars[1]), -1) != NULL;
11952 * "haslocaldir()" function
11954 /*ARGSUSED*/
11955 static void
11956 f_haslocaldir(argvars, rettv)
11957 typval_T *argvars;
11958 typval_T *rettv;
11960 rettv->vval.v_number = (curwin->w_localdir != NULL);
11964 * "hasmapto()" function
11966 static void
11967 f_hasmapto(argvars, rettv)
11968 typval_T *argvars;
11969 typval_T *rettv;
11971 char_u *name;
11972 char_u *mode;
11973 char_u buf[NUMBUFLEN];
11974 int abbr = FALSE;
11976 name = get_tv_string(&argvars[0]);
11977 if (argvars[1].v_type == VAR_UNKNOWN)
11978 mode = (char_u *)"nvo";
11979 else
11981 mode = get_tv_string_buf(&argvars[1], buf);
11982 if (argvars[2].v_type != VAR_UNKNOWN)
11983 abbr = get_tv_number(&argvars[2]);
11986 if (map_to_exists(name, mode, abbr))
11987 rettv->vval.v_number = TRUE;
11988 else
11989 rettv->vval.v_number = FALSE;
11993 * "histadd()" function
11995 /*ARGSUSED*/
11996 static void
11997 f_histadd(argvars, rettv)
11998 typval_T *argvars;
11999 typval_T *rettv;
12001 #ifdef FEAT_CMDHIST
12002 int histype;
12003 char_u *str;
12004 char_u buf[NUMBUFLEN];
12005 #endif
12007 rettv->vval.v_number = FALSE;
12008 if (check_restricted() || check_secure())
12009 return;
12010 #ifdef FEAT_CMDHIST
12011 str = get_tv_string_chk(&argvars[0]); /* NULL on type error */
12012 histype = str != NULL ? get_histtype(str) : -1;
12013 if (histype >= 0)
12015 str = get_tv_string_buf(&argvars[1], buf);
12016 if (*str != NUL)
12018 add_to_history(histype, str, FALSE, NUL);
12019 rettv->vval.v_number = TRUE;
12020 return;
12023 #endif
12027 * "histdel()" function
12029 /*ARGSUSED*/
12030 static void
12031 f_histdel(argvars, rettv)
12032 typval_T *argvars;
12033 typval_T *rettv;
12035 #ifdef FEAT_CMDHIST
12036 int n;
12037 char_u buf[NUMBUFLEN];
12038 char_u *str;
12040 str = get_tv_string_chk(&argvars[0]); /* NULL on type error */
12041 if (str == NULL)
12042 n = 0;
12043 else if (argvars[1].v_type == VAR_UNKNOWN)
12044 /* only one argument: clear entire history */
12045 n = clr_history(get_histtype(str));
12046 else if (argvars[1].v_type == VAR_NUMBER)
12047 /* index given: remove that entry */
12048 n = del_history_idx(get_histtype(str),
12049 (int)get_tv_number(&argvars[1]));
12050 else
12051 /* string given: remove all matching entries */
12052 n = del_history_entry(get_histtype(str),
12053 get_tv_string_buf(&argvars[1], buf));
12054 rettv->vval.v_number = n;
12055 #else
12056 rettv->vval.v_number = 0;
12057 #endif
12061 * "histget()" function
12063 /*ARGSUSED*/
12064 static void
12065 f_histget(argvars, rettv)
12066 typval_T *argvars;
12067 typval_T *rettv;
12069 #ifdef FEAT_CMDHIST
12070 int type;
12071 int idx;
12072 char_u *str;
12074 str = get_tv_string_chk(&argvars[0]); /* NULL on type error */
12075 if (str == NULL)
12076 rettv->vval.v_string = NULL;
12077 else
12079 type = get_histtype(str);
12080 if (argvars[1].v_type == VAR_UNKNOWN)
12081 idx = get_history_idx(type);
12082 else
12083 idx = (int)get_tv_number_chk(&argvars[1], NULL);
12084 /* -1 on type error */
12085 rettv->vval.v_string = vim_strsave(get_history_entry(type, idx));
12087 #else
12088 rettv->vval.v_string = NULL;
12089 #endif
12090 rettv->v_type = VAR_STRING;
12094 * "histnr()" function
12096 /*ARGSUSED*/
12097 static void
12098 f_histnr(argvars, rettv)
12099 typval_T *argvars;
12100 typval_T *rettv;
12102 int i;
12104 #ifdef FEAT_CMDHIST
12105 char_u *history = get_tv_string_chk(&argvars[0]);
12107 i = history == NULL ? HIST_CMD - 1 : get_histtype(history);
12108 if (i >= HIST_CMD && i < HIST_COUNT)
12109 i = get_history_idx(i);
12110 else
12111 #endif
12112 i = -1;
12113 rettv->vval.v_number = i;
12117 * "highlightID(name)" function
12119 static void
12120 f_hlID(argvars, rettv)
12121 typval_T *argvars;
12122 typval_T *rettv;
12124 rettv->vval.v_number = syn_name2id(get_tv_string(&argvars[0]));
12128 * "highlight_exists()" function
12130 static void
12131 f_hlexists(argvars, rettv)
12132 typval_T *argvars;
12133 typval_T *rettv;
12135 rettv->vval.v_number = highlight_exists(get_tv_string(&argvars[0]));
12139 * "hostname()" function
12141 /*ARGSUSED*/
12142 static void
12143 f_hostname(argvars, rettv)
12144 typval_T *argvars;
12145 typval_T *rettv;
12147 char_u hostname[256];
12149 mch_get_host_name(hostname, 256);
12150 rettv->v_type = VAR_STRING;
12151 rettv->vval.v_string = vim_strsave(hostname);
12155 * iconv() function
12157 /*ARGSUSED*/
12158 static void
12159 f_iconv(argvars, rettv)
12160 typval_T *argvars;
12161 typval_T *rettv;
12163 #ifdef FEAT_MBYTE
12164 char_u buf1[NUMBUFLEN];
12165 char_u buf2[NUMBUFLEN];
12166 char_u *from, *to, *str;
12167 vimconv_T vimconv;
12168 #endif
12170 rettv->v_type = VAR_STRING;
12171 rettv->vval.v_string = NULL;
12173 #ifdef FEAT_MBYTE
12174 str = get_tv_string(&argvars[0]);
12175 from = enc_canonize(enc_skip(get_tv_string_buf(&argvars[1], buf1)));
12176 to = enc_canonize(enc_skip(get_tv_string_buf(&argvars[2], buf2)));
12177 vimconv.vc_type = CONV_NONE;
12178 convert_setup(&vimconv, from, to);
12180 /* If the encodings are equal, no conversion needed. */
12181 if (vimconv.vc_type == CONV_NONE)
12182 rettv->vval.v_string = vim_strsave(str);
12183 else
12184 rettv->vval.v_string = string_convert(&vimconv, str, NULL);
12186 convert_setup(&vimconv, NULL, NULL);
12187 vim_free(from);
12188 vim_free(to);
12189 #endif
12193 * "indent()" function
12195 static void
12196 f_indent(argvars, rettv)
12197 typval_T *argvars;
12198 typval_T *rettv;
12200 linenr_T lnum;
12202 lnum = get_tv_lnum(argvars);
12203 if (lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count)
12204 rettv->vval.v_number = get_indent_lnum(lnum);
12205 else
12206 rettv->vval.v_number = -1;
12210 * "index()" function
12212 static void
12213 f_index(argvars, rettv)
12214 typval_T *argvars;
12215 typval_T *rettv;
12217 list_T *l;
12218 listitem_T *item;
12219 long idx = 0;
12220 int ic = FALSE;
12222 rettv->vval.v_number = -1;
12223 if (argvars[0].v_type != VAR_LIST)
12225 EMSG(_(e_listreq));
12226 return;
12228 l = argvars[0].vval.v_list;
12229 if (l != NULL)
12231 item = l->lv_first;
12232 if (argvars[2].v_type != VAR_UNKNOWN)
12234 int error = FALSE;
12236 /* Start at specified item. Use the cached index that list_find()
12237 * sets, so that a negative number also works. */
12238 item = list_find(l, get_tv_number_chk(&argvars[2], &error));
12239 idx = l->lv_idx;
12240 if (argvars[3].v_type != VAR_UNKNOWN)
12241 ic = get_tv_number_chk(&argvars[3], &error);
12242 if (error)
12243 item = NULL;
12246 for ( ; item != NULL; item = item->li_next, ++idx)
12247 if (tv_equal(&item->li_tv, &argvars[1], ic))
12249 rettv->vval.v_number = idx;
12250 break;
12255 static int inputsecret_flag = 0;
12257 static void get_user_input __ARGS((typval_T *argvars, typval_T *rettv, int inputdialog));
12260 * This function is used by f_input() and f_inputdialog() functions. The third
12261 * argument to f_input() specifies the type of completion to use at the
12262 * prompt. The third argument to f_inputdialog() specifies the value to return
12263 * when the user cancels the prompt.
12265 static void
12266 get_user_input(argvars, rettv, inputdialog)
12267 typval_T *argvars;
12268 typval_T *rettv;
12269 int inputdialog;
12271 char_u *prompt = get_tv_string_chk(&argvars[0]);
12272 char_u *p = NULL;
12273 int c;
12274 char_u buf[NUMBUFLEN];
12275 int cmd_silent_save = cmd_silent;
12276 char_u *defstr = (char_u *)"";
12277 int xp_type = EXPAND_NOTHING;
12278 char_u *xp_arg = NULL;
12280 rettv->v_type = VAR_STRING;
12281 rettv->vval.v_string = NULL;
12283 #ifdef NO_CONSOLE_INPUT
12284 /* While starting up, there is no place to enter text. */
12285 if (no_console_input())
12286 return;
12287 #endif
12289 cmd_silent = FALSE; /* Want to see the prompt. */
12290 if (prompt != NULL)
12292 /* Only the part of the message after the last NL is considered as
12293 * prompt for the command line */
12294 p = vim_strrchr(prompt, '\n');
12295 if (p == NULL)
12296 p = prompt;
12297 else
12299 ++p;
12300 c = *p;
12301 *p = NUL;
12302 msg_start();
12303 msg_clr_eos();
12304 msg_puts_attr(prompt, echo_attr);
12305 msg_didout = FALSE;
12306 msg_starthere();
12307 *p = c;
12309 cmdline_row = msg_row;
12311 if (argvars[1].v_type != VAR_UNKNOWN)
12313 defstr = get_tv_string_buf_chk(&argvars[1], buf);
12314 if (defstr != NULL)
12315 stuffReadbuffSpec(defstr);
12317 if (!inputdialog && argvars[2].v_type != VAR_UNKNOWN)
12319 char_u *xp_name;
12320 int xp_namelen;
12321 long argt;
12323 rettv->vval.v_string = NULL;
12325 xp_name = get_tv_string_buf_chk(&argvars[2], buf);
12326 if (xp_name == NULL)
12327 return;
12329 xp_namelen = (int)STRLEN(xp_name);
12331 if (parse_compl_arg(xp_name, xp_namelen, &xp_type, &argt,
12332 &xp_arg) == FAIL)
12333 return;
12337 if (defstr != NULL)
12338 rettv->vval.v_string =
12339 getcmdline_prompt(inputsecret_flag ? NUL : '@', p, echo_attr,
12340 xp_type, xp_arg);
12342 vim_free(xp_arg);
12344 /* since the user typed this, no need to wait for return */
12345 need_wait_return = FALSE;
12346 msg_didout = FALSE;
12348 cmd_silent = cmd_silent_save;
12352 * "input()" function
12353 * Also handles inputsecret() when inputsecret is set.
12355 static void
12356 f_input(argvars, rettv)
12357 typval_T *argvars;
12358 typval_T *rettv;
12360 get_user_input(argvars, rettv, FALSE);
12364 * "inputdialog()" function
12366 static void
12367 f_inputdialog(argvars, rettv)
12368 typval_T *argvars;
12369 typval_T *rettv;
12371 #if defined(FEAT_GUI_TEXTDIALOG)
12372 /* Use a GUI dialog if the GUI is running and 'c' is not in 'guioptions' */
12373 if (gui.in_use && vim_strchr(p_go, GO_CONDIALOG) == NULL)
12375 char_u *message;
12376 char_u buf[NUMBUFLEN];
12377 char_u *defstr = (char_u *)"";
12379 message = get_tv_string_chk(&argvars[0]);
12380 if (argvars[1].v_type != VAR_UNKNOWN
12381 && (defstr = get_tv_string_buf_chk(&argvars[1], buf)) != NULL)
12382 vim_strncpy(IObuff, defstr, IOSIZE - 1);
12383 else
12384 IObuff[0] = NUL;
12385 if (message != NULL && defstr != NULL
12386 && do_dialog(VIM_QUESTION, NULL, message,
12387 (char_u *)_("&OK\n&Cancel"), 1, IObuff) == 1)
12388 rettv->vval.v_string = vim_strsave(IObuff);
12389 else
12391 if (message != NULL && defstr != NULL
12392 && argvars[1].v_type != VAR_UNKNOWN
12393 && argvars[2].v_type != VAR_UNKNOWN)
12394 rettv->vval.v_string = vim_strsave(
12395 get_tv_string_buf(&argvars[2], buf));
12396 else
12397 rettv->vval.v_string = NULL;
12399 rettv->v_type = VAR_STRING;
12401 else
12402 #endif
12403 get_user_input(argvars, rettv, TRUE);
12407 * "inputlist()" function
12409 static void
12410 f_inputlist(argvars, rettv)
12411 typval_T *argvars;
12412 typval_T *rettv;
12414 listitem_T *li;
12415 int selected;
12416 int mouse_used;
12418 rettv->vval.v_number = 0;
12419 #ifdef NO_CONSOLE_INPUT
12420 /* While starting up, there is no place to enter text. */
12421 if (no_console_input())
12422 return;
12423 #endif
12424 if (argvars[0].v_type != VAR_LIST || argvars[0].vval.v_list == NULL)
12426 EMSG2(_(e_listarg), "inputlist()");
12427 return;
12430 msg_start();
12431 msg_row = Rows - 1; /* for when 'cmdheight' > 1 */
12432 lines_left = Rows; /* avoid more prompt */
12433 msg_scroll = TRUE;
12434 msg_clr_eos();
12436 for (li = argvars[0].vval.v_list->lv_first; li != NULL; li = li->li_next)
12438 msg_puts(get_tv_string(&li->li_tv));
12439 msg_putchar('\n');
12442 /* Ask for choice. */
12443 selected = prompt_for_number(&mouse_used);
12444 if (mouse_used)
12445 selected -= lines_left;
12447 rettv->vval.v_number = selected;
12451 static garray_T ga_userinput = {0, 0, sizeof(tasave_T), 4, NULL};
12454 * "inputrestore()" function
12456 /*ARGSUSED*/
12457 static void
12458 f_inputrestore(argvars, rettv)
12459 typval_T *argvars;
12460 typval_T *rettv;
12462 if (ga_userinput.ga_len > 0)
12464 --ga_userinput.ga_len;
12465 restore_typeahead((tasave_T *)(ga_userinput.ga_data)
12466 + ga_userinput.ga_len);
12467 rettv->vval.v_number = 0; /* OK */
12469 else if (p_verbose > 1)
12471 verb_msg((char_u *)_("called inputrestore() more often than inputsave()"));
12472 rettv->vval.v_number = 1; /* Failed */
12477 * "inputsave()" function
12479 /*ARGSUSED*/
12480 static void
12481 f_inputsave(argvars, rettv)
12482 typval_T *argvars;
12483 typval_T *rettv;
12485 /* Add an entry to the stack of typeahead storage. */
12486 if (ga_grow(&ga_userinput, 1) == OK)
12488 save_typeahead((tasave_T *)(ga_userinput.ga_data)
12489 + ga_userinput.ga_len);
12490 ++ga_userinput.ga_len;
12491 rettv->vval.v_number = 0; /* OK */
12493 else
12494 rettv->vval.v_number = 1; /* Failed */
12498 * "inputsecret()" function
12500 static void
12501 f_inputsecret(argvars, rettv)
12502 typval_T *argvars;
12503 typval_T *rettv;
12505 ++cmdline_star;
12506 ++inputsecret_flag;
12507 f_input(argvars, rettv);
12508 --cmdline_star;
12509 --inputsecret_flag;
12513 * "insert()" function
12515 static void
12516 f_insert(argvars, rettv)
12517 typval_T *argvars;
12518 typval_T *rettv;
12520 long before = 0;
12521 listitem_T *item;
12522 list_T *l;
12523 int error = FALSE;
12525 rettv->vval.v_number = 0;
12526 if (argvars[0].v_type != VAR_LIST)
12527 EMSG2(_(e_listarg), "insert()");
12528 else if ((l = argvars[0].vval.v_list) != NULL
12529 && !tv_check_lock(l->lv_lock, (char_u *)"insert()"))
12531 if (argvars[2].v_type != VAR_UNKNOWN)
12532 before = get_tv_number_chk(&argvars[2], &error);
12533 if (error)
12534 return; /* type error; errmsg already given */
12536 if (before == l->lv_len)
12537 item = NULL;
12538 else
12540 item = list_find(l, before);
12541 if (item == NULL)
12543 EMSGN(_(e_listidx), before);
12544 l = NULL;
12547 if (l != NULL)
12549 list_insert_tv(l, &argvars[1], item);
12550 copy_tv(&argvars[0], rettv);
12556 * "isdirectory()" function
12558 static void
12559 f_isdirectory(argvars, rettv)
12560 typval_T *argvars;
12561 typval_T *rettv;
12563 rettv->vval.v_number = mch_isdir(get_tv_string(&argvars[0]));
12567 * "islocked()" function
12569 static void
12570 f_islocked(argvars, rettv)
12571 typval_T *argvars;
12572 typval_T *rettv;
12574 lval_T lv;
12575 char_u *end;
12576 dictitem_T *di;
12578 rettv->vval.v_number = -1;
12579 end = get_lval(get_tv_string(&argvars[0]), NULL, &lv, FALSE, FALSE, FALSE,
12580 FNE_CHECK_START);
12581 if (end != NULL && lv.ll_name != NULL)
12583 if (*end != NUL)
12584 EMSG(_(e_trailing));
12585 else
12587 if (lv.ll_tv == NULL)
12589 if (check_changedtick(lv.ll_name))
12590 rettv->vval.v_number = 1; /* always locked */
12591 else
12593 di = find_var(lv.ll_name, NULL);
12594 if (di != NULL)
12596 /* Consider a variable locked when:
12597 * 1. the variable itself is locked
12598 * 2. the value of the variable is locked.
12599 * 3. the List or Dict value is locked.
12601 rettv->vval.v_number = ((di->di_flags & DI_FLAGS_LOCK)
12602 || tv_islocked(&di->di_tv));
12606 else if (lv.ll_range)
12607 EMSG(_("E786: Range not allowed"));
12608 else if (lv.ll_newkey != NULL)
12609 EMSG2(_(e_dictkey), lv.ll_newkey);
12610 else if (lv.ll_list != NULL)
12611 /* List item. */
12612 rettv->vval.v_number = tv_islocked(&lv.ll_li->li_tv);
12613 else
12614 /* Dictionary item. */
12615 rettv->vval.v_number = tv_islocked(&lv.ll_di->di_tv);
12619 clear_lval(&lv);
12622 static void dict_list __ARGS((typval_T *argvars, typval_T *rettv, int what));
12625 * Turn a dict into a list:
12626 * "what" == 0: list of keys
12627 * "what" == 1: list of values
12628 * "what" == 2: list of items
12630 static void
12631 dict_list(argvars, rettv, what)
12632 typval_T *argvars;
12633 typval_T *rettv;
12634 int what;
12636 list_T *l2;
12637 dictitem_T *di;
12638 hashitem_T *hi;
12639 listitem_T *li;
12640 listitem_T *li2;
12641 dict_T *d;
12642 int todo;
12644 rettv->vval.v_number = 0;
12645 if (argvars[0].v_type != VAR_DICT)
12647 EMSG(_(e_dictreq));
12648 return;
12650 if ((d = argvars[0].vval.v_dict) == NULL)
12651 return;
12653 if (rettv_list_alloc(rettv) == FAIL)
12654 return;
12656 todo = (int)d->dv_hashtab.ht_used;
12657 for (hi = d->dv_hashtab.ht_array; todo > 0; ++hi)
12659 if (!HASHITEM_EMPTY(hi))
12661 --todo;
12662 di = HI2DI(hi);
12664 li = listitem_alloc();
12665 if (li == NULL)
12666 break;
12667 list_append(rettv->vval.v_list, li);
12669 if (what == 0)
12671 /* keys() */
12672 li->li_tv.v_type = VAR_STRING;
12673 li->li_tv.v_lock = 0;
12674 li->li_tv.vval.v_string = vim_strsave(di->di_key);
12676 else if (what == 1)
12678 /* values() */
12679 copy_tv(&di->di_tv, &li->li_tv);
12681 else
12683 /* items() */
12684 l2 = list_alloc();
12685 li->li_tv.v_type = VAR_LIST;
12686 li->li_tv.v_lock = 0;
12687 li->li_tv.vval.v_list = l2;
12688 if (l2 == NULL)
12689 break;
12690 ++l2->lv_refcount;
12692 li2 = listitem_alloc();
12693 if (li2 == NULL)
12694 break;
12695 list_append(l2, li2);
12696 li2->li_tv.v_type = VAR_STRING;
12697 li2->li_tv.v_lock = 0;
12698 li2->li_tv.vval.v_string = vim_strsave(di->di_key);
12700 li2 = listitem_alloc();
12701 if (li2 == NULL)
12702 break;
12703 list_append(l2, li2);
12704 copy_tv(&di->di_tv, &li2->li_tv);
12711 * "items(dict)" function
12713 static void
12714 f_items(argvars, rettv)
12715 typval_T *argvars;
12716 typval_T *rettv;
12718 dict_list(argvars, rettv, 2);
12722 * "join()" function
12724 static void
12725 f_join(argvars, rettv)
12726 typval_T *argvars;
12727 typval_T *rettv;
12729 garray_T ga;
12730 char_u *sep;
12732 rettv->vval.v_number = 0;
12733 if (argvars[0].v_type != VAR_LIST)
12735 EMSG(_(e_listreq));
12736 return;
12738 if (argvars[0].vval.v_list == NULL)
12739 return;
12740 if (argvars[1].v_type == VAR_UNKNOWN)
12741 sep = (char_u *)" ";
12742 else
12743 sep = get_tv_string_chk(&argvars[1]);
12745 rettv->v_type = VAR_STRING;
12747 if (sep != NULL)
12749 ga_init2(&ga, (int)sizeof(char), 80);
12750 list_join(&ga, argvars[0].vval.v_list, sep, TRUE, 0);
12751 ga_append(&ga, NUL);
12752 rettv->vval.v_string = (char_u *)ga.ga_data;
12754 else
12755 rettv->vval.v_string = NULL;
12759 * "keys()" function
12761 static void
12762 f_keys(argvars, rettv)
12763 typval_T *argvars;
12764 typval_T *rettv;
12766 dict_list(argvars, rettv, 0);
12770 * "last_buffer_nr()" function.
12772 /*ARGSUSED*/
12773 static void
12774 f_last_buffer_nr(argvars, rettv)
12775 typval_T *argvars;
12776 typval_T *rettv;
12778 int n = 0;
12779 buf_T *buf;
12781 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
12782 if (n < buf->b_fnum)
12783 n = buf->b_fnum;
12785 rettv->vval.v_number = n;
12789 * "len()" function
12791 static void
12792 f_len(argvars, rettv)
12793 typval_T *argvars;
12794 typval_T *rettv;
12796 switch (argvars[0].v_type)
12798 case VAR_STRING:
12799 case VAR_NUMBER:
12800 rettv->vval.v_number = (varnumber_T)STRLEN(
12801 get_tv_string(&argvars[0]));
12802 break;
12803 case VAR_LIST:
12804 rettv->vval.v_number = list_len(argvars[0].vval.v_list);
12805 break;
12806 case VAR_DICT:
12807 rettv->vval.v_number = dict_len(argvars[0].vval.v_dict);
12808 break;
12809 default:
12810 EMSG(_("E701: Invalid type for len()"));
12811 break;
12815 static void libcall_common __ARGS((typval_T *argvars, typval_T *rettv, int type));
12817 static void
12818 libcall_common(argvars, rettv, type)
12819 typval_T *argvars;
12820 typval_T *rettv;
12821 int type;
12823 #ifdef FEAT_LIBCALL
12824 char_u *string_in;
12825 char_u **string_result;
12826 int nr_result;
12827 #endif
12829 rettv->v_type = type;
12830 if (type == VAR_NUMBER)
12831 rettv->vval.v_number = 0;
12832 else
12833 rettv->vval.v_string = NULL;
12835 if (check_restricted() || check_secure())
12836 return;
12838 #ifdef FEAT_LIBCALL
12839 /* The first two args must be strings, otherwise its meaningless */
12840 if (argvars[0].v_type == VAR_STRING && argvars[1].v_type == VAR_STRING)
12842 string_in = NULL;
12843 if (argvars[2].v_type == VAR_STRING)
12844 string_in = argvars[2].vval.v_string;
12845 if (type == VAR_NUMBER)
12846 string_result = NULL;
12847 else
12848 string_result = &rettv->vval.v_string;
12849 if (mch_libcall(argvars[0].vval.v_string,
12850 argvars[1].vval.v_string,
12851 string_in,
12852 argvars[2].vval.v_number,
12853 string_result,
12854 &nr_result) == OK
12855 && type == VAR_NUMBER)
12856 rettv->vval.v_number = nr_result;
12858 #endif
12862 * "libcall()" function
12864 static void
12865 f_libcall(argvars, rettv)
12866 typval_T *argvars;
12867 typval_T *rettv;
12869 libcall_common(argvars, rettv, VAR_STRING);
12873 * "libcallnr()" function
12875 static void
12876 f_libcallnr(argvars, rettv)
12877 typval_T *argvars;
12878 typval_T *rettv;
12880 libcall_common(argvars, rettv, VAR_NUMBER);
12884 * "line(string)" function
12886 static void
12887 f_line(argvars, rettv)
12888 typval_T *argvars;
12889 typval_T *rettv;
12891 linenr_T lnum = 0;
12892 pos_T *fp;
12893 int fnum;
12895 fp = var2fpos(&argvars[0], TRUE, &fnum);
12896 if (fp != NULL)
12897 lnum = fp->lnum;
12898 rettv->vval.v_number = lnum;
12902 * "line2byte(lnum)" function
12904 /*ARGSUSED*/
12905 static void
12906 f_line2byte(argvars, rettv)
12907 typval_T *argvars;
12908 typval_T *rettv;
12910 #ifndef FEAT_BYTEOFF
12911 rettv->vval.v_number = -1;
12912 #else
12913 linenr_T lnum;
12915 lnum = get_tv_lnum(argvars);
12916 if (lnum < 1 || lnum > curbuf->b_ml.ml_line_count + 1)
12917 rettv->vval.v_number = -1;
12918 else
12919 rettv->vval.v_number = ml_find_line_or_offset(curbuf, lnum, NULL);
12920 if (rettv->vval.v_number >= 0)
12921 ++rettv->vval.v_number;
12922 #endif
12926 * "lispindent(lnum)" function
12928 static void
12929 f_lispindent(argvars, rettv)
12930 typval_T *argvars;
12931 typval_T *rettv;
12933 #ifdef FEAT_LISP
12934 pos_T pos;
12935 linenr_T lnum;
12937 pos = curwin->w_cursor;
12938 lnum = get_tv_lnum(argvars);
12939 if (lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count)
12941 curwin->w_cursor.lnum = lnum;
12942 rettv->vval.v_number = get_lisp_indent();
12943 curwin->w_cursor = pos;
12945 else
12946 #endif
12947 rettv->vval.v_number = -1;
12951 * "localtime()" function
12953 /*ARGSUSED*/
12954 static void
12955 f_localtime(argvars, rettv)
12956 typval_T *argvars;
12957 typval_T *rettv;
12959 rettv->vval.v_number = (varnumber_T)time(NULL);
12962 static void get_maparg __ARGS((typval_T *argvars, typval_T *rettv, int exact));
12964 static void
12965 get_maparg(argvars, rettv, exact)
12966 typval_T *argvars;
12967 typval_T *rettv;
12968 int exact;
12970 char_u *keys;
12971 char_u *which;
12972 char_u buf[NUMBUFLEN];
12973 char_u *keys_buf = NULL;
12974 char_u *rhs;
12975 int mode;
12976 garray_T ga;
12977 int abbr = FALSE;
12979 /* return empty string for failure */
12980 rettv->v_type = VAR_STRING;
12981 rettv->vval.v_string = NULL;
12983 keys = get_tv_string(&argvars[0]);
12984 if (*keys == NUL)
12985 return;
12987 if (argvars[1].v_type != VAR_UNKNOWN)
12989 which = get_tv_string_buf_chk(&argvars[1], buf);
12990 if (argvars[2].v_type != VAR_UNKNOWN)
12991 abbr = get_tv_number(&argvars[2]);
12993 else
12994 which = (char_u *)"";
12995 if (which == NULL)
12996 return;
12998 mode = get_map_mode(&which, 0);
13000 keys = replace_termcodes(keys, &keys_buf, TRUE, TRUE, FALSE);
13001 rhs = check_map(keys, mode, exact, FALSE, abbr);
13002 vim_free(keys_buf);
13003 if (rhs != NULL)
13005 ga_init(&ga);
13006 ga.ga_itemsize = 1;
13007 ga.ga_growsize = 40;
13009 while (*rhs != NUL)
13010 ga_concat(&ga, str2special(&rhs, FALSE));
13012 ga_append(&ga, NUL);
13013 rettv->vval.v_string = (char_u *)ga.ga_data;
13017 #ifdef FEAT_FLOAT
13019 * "log10()" function
13021 static void
13022 f_log10(argvars, rettv)
13023 typval_T *argvars;
13024 typval_T *rettv;
13026 float_T f;
13028 rettv->v_type = VAR_FLOAT;
13029 if (get_float_arg(argvars, &f) == OK)
13030 rettv->vval.v_float = log10(f);
13031 else
13032 rettv->vval.v_float = 0.0;
13034 #endif
13037 * "map()" function
13039 static void
13040 f_map(argvars, rettv)
13041 typval_T *argvars;
13042 typval_T *rettv;
13044 filter_map(argvars, rettv, TRUE);
13048 * "maparg()" function
13050 static void
13051 f_maparg(argvars, rettv)
13052 typval_T *argvars;
13053 typval_T *rettv;
13055 get_maparg(argvars, rettv, TRUE);
13059 * "mapcheck()" function
13061 static void
13062 f_mapcheck(argvars, rettv)
13063 typval_T *argvars;
13064 typval_T *rettv;
13066 get_maparg(argvars, rettv, FALSE);
13069 static void find_some_match __ARGS((typval_T *argvars, typval_T *rettv, int start));
13071 static void
13072 find_some_match(argvars, rettv, type)
13073 typval_T *argvars;
13074 typval_T *rettv;
13075 int type;
13077 char_u *str = NULL;
13078 char_u *expr = NULL;
13079 char_u *pat;
13080 regmatch_T regmatch;
13081 char_u patbuf[NUMBUFLEN];
13082 char_u strbuf[NUMBUFLEN];
13083 char_u *save_cpo;
13084 long start = 0;
13085 long nth = 1;
13086 colnr_T startcol = 0;
13087 int match = 0;
13088 list_T *l = NULL;
13089 listitem_T *li = NULL;
13090 long idx = 0;
13091 char_u *tofree = NULL;
13093 /* Make 'cpoptions' empty, the 'l' flag should not be used here. */
13094 save_cpo = p_cpo;
13095 p_cpo = (char_u *)"";
13097 rettv->vval.v_number = -1;
13098 if (type == 3)
13100 /* return empty list when there are no matches */
13101 if (rettv_list_alloc(rettv) == FAIL)
13102 goto theend;
13104 else if (type == 2)
13106 rettv->v_type = VAR_STRING;
13107 rettv->vval.v_string = NULL;
13110 if (argvars[0].v_type == VAR_LIST)
13112 if ((l = argvars[0].vval.v_list) == NULL)
13113 goto theend;
13114 li = l->lv_first;
13116 else
13117 expr = str = get_tv_string(&argvars[0]);
13119 pat = get_tv_string_buf_chk(&argvars[1], patbuf);
13120 if (pat == NULL)
13121 goto theend;
13123 if (argvars[2].v_type != VAR_UNKNOWN)
13125 int error = FALSE;
13127 start = get_tv_number_chk(&argvars[2], &error);
13128 if (error)
13129 goto theend;
13130 if (l != NULL)
13132 li = list_find(l, start);
13133 if (li == NULL)
13134 goto theend;
13135 idx = l->lv_idx; /* use the cached index */
13137 else
13139 if (start < 0)
13140 start = 0;
13141 if (start > (long)STRLEN(str))
13142 goto theend;
13143 /* When "count" argument is there ignore matches before "start",
13144 * otherwise skip part of the string. Differs when pattern is "^"
13145 * or "\<". */
13146 if (argvars[3].v_type != VAR_UNKNOWN)
13147 startcol = start;
13148 else
13149 str += start;
13152 if (argvars[3].v_type != VAR_UNKNOWN)
13153 nth = get_tv_number_chk(&argvars[3], &error);
13154 if (error)
13155 goto theend;
13158 regmatch.regprog = vim_regcomp(pat, RE_MAGIC + RE_STRING);
13159 if (regmatch.regprog != NULL)
13161 regmatch.rm_ic = p_ic;
13163 for (;;)
13165 if (l != NULL)
13167 if (li == NULL)
13169 match = FALSE;
13170 break;
13172 vim_free(tofree);
13173 str = echo_string(&li->li_tv, &tofree, strbuf, 0);
13174 if (str == NULL)
13175 break;
13178 match = vim_regexec_nl(&regmatch, str, (colnr_T)startcol);
13180 if (match && --nth <= 0)
13181 break;
13182 if (l == NULL && !match)
13183 break;
13185 /* Advance to just after the match. */
13186 if (l != NULL)
13188 li = li->li_next;
13189 ++idx;
13191 else
13193 #ifdef FEAT_MBYTE
13194 startcol = (colnr_T)(regmatch.startp[0]
13195 + (*mb_ptr2len)(regmatch.startp[0]) - str);
13196 #else
13197 startcol = regmatch.startp[0] + 1 - str;
13198 #endif
13202 if (match)
13204 if (type == 3)
13206 int i;
13208 /* return list with matched string and submatches */
13209 for (i = 0; i < NSUBEXP; ++i)
13211 if (regmatch.endp[i] == NULL)
13213 if (list_append_string(rettv->vval.v_list,
13214 (char_u *)"", 0) == FAIL)
13215 break;
13217 else if (list_append_string(rettv->vval.v_list,
13218 regmatch.startp[i],
13219 (int)(regmatch.endp[i] - regmatch.startp[i]))
13220 == FAIL)
13221 break;
13224 else if (type == 2)
13226 /* return matched string */
13227 if (l != NULL)
13228 copy_tv(&li->li_tv, rettv);
13229 else
13230 rettv->vval.v_string = vim_strnsave(regmatch.startp[0],
13231 (int)(regmatch.endp[0] - regmatch.startp[0]));
13233 else if (l != NULL)
13234 rettv->vval.v_number = idx;
13235 else
13237 if (type != 0)
13238 rettv->vval.v_number =
13239 (varnumber_T)(regmatch.startp[0] - str);
13240 else
13241 rettv->vval.v_number =
13242 (varnumber_T)(regmatch.endp[0] - str);
13243 rettv->vval.v_number += (varnumber_T)(str - expr);
13246 vim_free(regmatch.regprog);
13249 theend:
13250 vim_free(tofree);
13251 p_cpo = save_cpo;
13255 * "match()" function
13257 static void
13258 f_match(argvars, rettv)
13259 typval_T *argvars;
13260 typval_T *rettv;
13262 find_some_match(argvars, rettv, 1);
13266 * "matchadd()" function
13268 static void
13269 f_matchadd(argvars, rettv)
13270 typval_T *argvars;
13271 typval_T *rettv;
13273 #ifdef FEAT_SEARCH_EXTRA
13274 char_u buf[NUMBUFLEN];
13275 char_u *grp = get_tv_string_buf_chk(&argvars[0], buf); /* group */
13276 char_u *pat = get_tv_string_buf_chk(&argvars[1], buf); /* pattern */
13277 int prio = 10; /* default priority */
13278 int id = -1;
13279 int error = FALSE;
13281 rettv->vval.v_number = -1;
13283 if (grp == NULL || pat == NULL)
13284 return;
13285 if (argvars[2].v_type != VAR_UNKNOWN)
13287 prio = get_tv_number_chk(&argvars[2], &error);
13288 if (argvars[3].v_type != VAR_UNKNOWN)
13289 id = get_tv_number_chk(&argvars[3], &error);
13291 if (error == TRUE)
13292 return;
13293 if (id >= 1 && id <= 3)
13295 EMSGN("E798: ID is reserved for \":match\": %ld", id);
13296 return;
13299 rettv->vval.v_number = match_add(curwin, grp, pat, prio, id);
13300 #endif
13304 * "matcharg()" function
13306 static void
13307 f_matcharg(argvars, rettv)
13308 typval_T *argvars;
13309 typval_T *rettv;
13311 if (rettv_list_alloc(rettv) == OK)
13313 #ifdef FEAT_SEARCH_EXTRA
13314 int id = get_tv_number(&argvars[0]);
13315 matchitem_T *m;
13317 if (id >= 1 && id <= 3)
13319 if ((m = (matchitem_T *)get_match(curwin, id)) != NULL)
13321 list_append_string(rettv->vval.v_list,
13322 syn_id2name(m->hlg_id), -1);
13323 list_append_string(rettv->vval.v_list, m->pattern, -1);
13325 else
13327 list_append_string(rettv->vval.v_list, NUL, -1);
13328 list_append_string(rettv->vval.v_list, NUL, -1);
13331 #endif
13336 * "matchdelete()" function
13338 static void
13339 f_matchdelete(argvars, rettv)
13340 typval_T *argvars;
13341 typval_T *rettv;
13343 #ifdef FEAT_SEARCH_EXTRA
13344 rettv->vval.v_number = match_delete(curwin,
13345 (int)get_tv_number(&argvars[0]), TRUE);
13346 #endif
13350 * "matchend()" function
13352 static void
13353 f_matchend(argvars, rettv)
13354 typval_T *argvars;
13355 typval_T *rettv;
13357 find_some_match(argvars, rettv, 0);
13361 * "matchlist()" function
13363 static void
13364 f_matchlist(argvars, rettv)
13365 typval_T *argvars;
13366 typval_T *rettv;
13368 find_some_match(argvars, rettv, 3);
13372 * "matchstr()" function
13374 static void
13375 f_matchstr(argvars, rettv)
13376 typval_T *argvars;
13377 typval_T *rettv;
13379 find_some_match(argvars, rettv, 2);
13382 static void max_min __ARGS((typval_T *argvars, typval_T *rettv, int domax));
13384 static void
13385 max_min(argvars, rettv, domax)
13386 typval_T *argvars;
13387 typval_T *rettv;
13388 int domax;
13390 long n = 0;
13391 long i;
13392 int error = FALSE;
13394 if (argvars[0].v_type == VAR_LIST)
13396 list_T *l;
13397 listitem_T *li;
13399 l = argvars[0].vval.v_list;
13400 if (l != NULL)
13402 li = l->lv_first;
13403 if (li != NULL)
13405 n = get_tv_number_chk(&li->li_tv, &error);
13406 for (;;)
13408 li = li->li_next;
13409 if (li == NULL)
13410 break;
13411 i = get_tv_number_chk(&li->li_tv, &error);
13412 if (domax ? i > n : i < n)
13413 n = i;
13418 else if (argvars[0].v_type == VAR_DICT)
13420 dict_T *d;
13421 int first = TRUE;
13422 hashitem_T *hi;
13423 int todo;
13425 d = argvars[0].vval.v_dict;
13426 if (d != NULL)
13428 todo = (int)d->dv_hashtab.ht_used;
13429 for (hi = d->dv_hashtab.ht_array; todo > 0; ++hi)
13431 if (!HASHITEM_EMPTY(hi))
13433 --todo;
13434 i = get_tv_number_chk(&HI2DI(hi)->di_tv, &error);
13435 if (first)
13437 n = i;
13438 first = FALSE;
13440 else if (domax ? i > n : i < n)
13441 n = i;
13446 else
13447 EMSG(_(e_listdictarg));
13448 rettv->vval.v_number = error ? 0 : n;
13452 * "max()" function
13454 static void
13455 f_max(argvars, rettv)
13456 typval_T *argvars;
13457 typval_T *rettv;
13459 max_min(argvars, rettv, TRUE);
13463 * "min()" function
13465 static void
13466 f_min(argvars, rettv)
13467 typval_T *argvars;
13468 typval_T *rettv;
13470 max_min(argvars, rettv, FALSE);
13473 static int mkdir_recurse __ARGS((char_u *dir, int prot));
13476 * Create the directory in which "dir" is located, and higher levels when
13477 * needed.
13479 static int
13480 mkdir_recurse(dir, prot)
13481 char_u *dir;
13482 int prot;
13484 char_u *p;
13485 char_u *updir;
13486 int r = FAIL;
13488 /* Get end of directory name in "dir".
13489 * We're done when it's "/" or "c:/". */
13490 p = gettail_sep(dir);
13491 if (p <= get_past_head(dir))
13492 return OK;
13494 /* If the directory exists we're done. Otherwise: create it.*/
13495 updir = vim_strnsave(dir, (int)(p - dir));
13496 if (updir == NULL)
13497 return FAIL;
13498 if (mch_isdir(updir))
13499 r = OK;
13500 else if (mkdir_recurse(updir, prot) == OK)
13501 r = vim_mkdir_emsg(updir, prot);
13502 vim_free(updir);
13503 return r;
13506 #ifdef vim_mkdir
13508 * "mkdir()" function
13510 static void
13511 f_mkdir(argvars, rettv)
13512 typval_T *argvars;
13513 typval_T *rettv;
13515 char_u *dir;
13516 char_u buf[NUMBUFLEN];
13517 int prot = 0755;
13519 rettv->vval.v_number = FAIL;
13520 if (check_restricted() || check_secure())
13521 return;
13523 dir = get_tv_string_buf(&argvars[0], buf);
13524 if (argvars[1].v_type != VAR_UNKNOWN)
13526 if (argvars[2].v_type != VAR_UNKNOWN)
13527 prot = get_tv_number_chk(&argvars[2], NULL);
13528 if (prot != -1 && STRCMP(get_tv_string(&argvars[1]), "p") == 0)
13529 mkdir_recurse(dir, prot);
13531 rettv->vval.v_number = prot != -1 ? vim_mkdir_emsg(dir, prot) : 0;
13533 #endif
13536 * "mode()" function
13538 /*ARGSUSED*/
13539 static void
13540 f_mode(argvars, rettv)
13541 typval_T *argvars;
13542 typval_T *rettv;
13544 char_u buf[3];
13546 buf[1] = NUL;
13547 buf[2] = NUL;
13549 #ifdef FEAT_VISUAL
13550 if (VIsual_active)
13552 if (VIsual_select)
13553 buf[0] = VIsual_mode + 's' - 'v';
13554 else
13555 buf[0] = VIsual_mode;
13557 else
13558 #endif
13559 if (State == HITRETURN || State == ASKMORE || State == SETWSIZE
13560 || State == CONFIRM)
13562 buf[0] = 'r';
13563 if (State == ASKMORE)
13564 buf[1] = 'm';
13565 else if (State == CONFIRM)
13566 buf[1] = '?';
13568 else if (State == EXTERNCMD)
13569 buf[0] = '!';
13570 else if (State & INSERT)
13572 #ifdef FEAT_VREPLACE
13573 if (State & VREPLACE_FLAG)
13575 buf[0] = 'R';
13576 buf[1] = 'v';
13578 else
13579 #endif
13580 if (State & REPLACE_FLAG)
13581 buf[0] = 'R';
13582 else
13583 buf[0] = 'i';
13585 else if (State & CMDLINE)
13587 buf[0] = 'c';
13588 if (exmode_active)
13589 buf[1] = 'v';
13591 else if (exmode_active)
13593 buf[0] = 'c';
13594 buf[1] = 'e';
13596 else
13598 buf[0] = 'n';
13599 if (finish_op)
13600 buf[1] = 'o';
13603 /* Clear out the minor mode when the argument is not a non-zero number or
13604 * non-empty string. */
13605 if (!non_zero_arg(&argvars[0]))
13606 buf[1] = NUL;
13608 rettv->vval.v_string = vim_strsave(buf);
13609 rettv->v_type = VAR_STRING;
13613 * "nextnonblank()" function
13615 static void
13616 f_nextnonblank(argvars, rettv)
13617 typval_T *argvars;
13618 typval_T *rettv;
13620 linenr_T lnum;
13622 for (lnum = get_tv_lnum(argvars); ; ++lnum)
13624 if (lnum < 0 || lnum > curbuf->b_ml.ml_line_count)
13626 lnum = 0;
13627 break;
13629 if (*skipwhite(ml_get(lnum)) != NUL)
13630 break;
13632 rettv->vval.v_number = lnum;
13636 * "nr2char()" function
13638 static void
13639 f_nr2char(argvars, rettv)
13640 typval_T *argvars;
13641 typval_T *rettv;
13643 char_u buf[NUMBUFLEN];
13645 #ifdef FEAT_MBYTE
13646 if (has_mbyte)
13647 buf[(*mb_char2bytes)((int)get_tv_number(&argvars[0]), buf)] = NUL;
13648 else
13649 #endif
13651 buf[0] = (char_u)get_tv_number(&argvars[0]);
13652 buf[1] = NUL;
13654 rettv->v_type = VAR_STRING;
13655 rettv->vval.v_string = vim_strsave(buf);
13659 * "pathshorten()" function
13661 static void
13662 f_pathshorten(argvars, rettv)
13663 typval_T *argvars;
13664 typval_T *rettv;
13666 char_u *p;
13668 rettv->v_type = VAR_STRING;
13669 p = get_tv_string_chk(&argvars[0]);
13670 if (p == NULL)
13671 rettv->vval.v_string = NULL;
13672 else
13674 p = vim_strsave(p);
13675 rettv->vval.v_string = p;
13676 if (p != NULL)
13677 shorten_dir(p);
13681 #ifdef FEAT_FLOAT
13683 * "pow()" function
13685 static void
13686 f_pow(argvars, rettv)
13687 typval_T *argvars;
13688 typval_T *rettv;
13690 float_T fx, fy;
13692 rettv->v_type = VAR_FLOAT;
13693 if (get_float_arg(argvars, &fx) == OK
13694 && get_float_arg(&argvars[1], &fy) == OK)
13695 rettv->vval.v_float = pow(fx, fy);
13696 else
13697 rettv->vval.v_float = 0.0;
13699 #endif
13702 * "prevnonblank()" function
13704 static void
13705 f_prevnonblank(argvars, rettv)
13706 typval_T *argvars;
13707 typval_T *rettv;
13709 linenr_T lnum;
13711 lnum = get_tv_lnum(argvars);
13712 if (lnum < 1 || lnum > curbuf->b_ml.ml_line_count)
13713 lnum = 0;
13714 else
13715 while (lnum >= 1 && *skipwhite(ml_get(lnum)) == NUL)
13716 --lnum;
13717 rettv->vval.v_number = lnum;
13720 #ifdef HAVE_STDARG_H
13721 /* This dummy va_list is here because:
13722 * - passing a NULL pointer doesn't work when va_list isn't a pointer
13723 * - locally in the function results in a "used before set" warning
13724 * - using va_start() to initialize it gives "function with fixed args" error */
13725 static va_list ap;
13726 #endif
13729 * "printf()" function
13731 static void
13732 f_printf(argvars, rettv)
13733 typval_T *argvars;
13734 typval_T *rettv;
13736 rettv->v_type = VAR_STRING;
13737 rettv->vval.v_string = NULL;
13738 #ifdef HAVE_STDARG_H /* only very old compilers can't do this */
13740 char_u buf[NUMBUFLEN];
13741 int len;
13742 char_u *s;
13743 int saved_did_emsg = did_emsg;
13744 char *fmt;
13746 /* Get the required length, allocate the buffer and do it for real. */
13747 did_emsg = FALSE;
13748 fmt = (char *)get_tv_string_buf(&argvars[0], buf);
13749 len = vim_vsnprintf(NULL, 0, fmt, ap, argvars + 1);
13750 if (!did_emsg)
13752 s = alloc(len + 1);
13753 if (s != NULL)
13755 rettv->vval.v_string = s;
13756 (void)vim_vsnprintf((char *)s, len + 1, fmt, ap, argvars + 1);
13759 did_emsg |= saved_did_emsg;
13761 #endif
13765 * "pumvisible()" function
13767 /*ARGSUSED*/
13768 static void
13769 f_pumvisible(argvars, rettv)
13770 typval_T *argvars;
13771 typval_T *rettv;
13773 rettv->vval.v_number = 0;
13774 #ifdef FEAT_INS_EXPAND
13775 if (pum_visible())
13776 rettv->vval.v_number = 1;
13777 #endif
13781 * "range()" function
13783 static void
13784 f_range(argvars, rettv)
13785 typval_T *argvars;
13786 typval_T *rettv;
13788 long start;
13789 long end;
13790 long stride = 1;
13791 long i;
13792 int error = FALSE;
13794 start = get_tv_number_chk(&argvars[0], &error);
13795 if (argvars[1].v_type == VAR_UNKNOWN)
13797 end = start - 1;
13798 start = 0;
13800 else
13802 end = get_tv_number_chk(&argvars[1], &error);
13803 if (argvars[2].v_type != VAR_UNKNOWN)
13804 stride = get_tv_number_chk(&argvars[2], &error);
13807 rettv->vval.v_number = 0;
13808 if (error)
13809 return; /* type error; errmsg already given */
13810 if (stride == 0)
13811 EMSG(_("E726: Stride is zero"));
13812 else if (stride > 0 ? end + 1 < start : end - 1 > start)
13813 EMSG(_("E727: Start past end"));
13814 else
13816 if (rettv_list_alloc(rettv) == OK)
13817 for (i = start; stride > 0 ? i <= end : i >= end; i += stride)
13818 if (list_append_number(rettv->vval.v_list,
13819 (varnumber_T)i) == FAIL)
13820 break;
13825 * "readfile()" function
13827 static void
13828 f_readfile(argvars, rettv)
13829 typval_T *argvars;
13830 typval_T *rettv;
13832 int binary = FALSE;
13833 char_u *fname;
13834 FILE *fd;
13835 listitem_T *li;
13836 #define FREAD_SIZE 200 /* optimized for text lines */
13837 char_u buf[FREAD_SIZE];
13838 int readlen; /* size of last fread() */
13839 int buflen; /* nr of valid chars in buf[] */
13840 int filtd; /* how much in buf[] was NUL -> '\n' filtered */
13841 int tolist; /* first byte in buf[] still to be put in list */
13842 int chop; /* how many CR to chop off */
13843 char_u *prev = NULL; /* previously read bytes, if any */
13844 int prevlen = 0; /* length of "prev" if not NULL */
13845 char_u *s;
13846 int len;
13847 long maxline = MAXLNUM;
13848 long cnt = 0;
13850 if (argvars[1].v_type != VAR_UNKNOWN)
13852 if (STRCMP(get_tv_string(&argvars[1]), "b") == 0)
13853 binary = TRUE;
13854 if (argvars[2].v_type != VAR_UNKNOWN)
13855 maxline = get_tv_number(&argvars[2]);
13858 if (rettv_list_alloc(rettv) == FAIL)
13859 return;
13861 /* Always open the file in binary mode, library functions have a mind of
13862 * their own about CR-LF conversion. */
13863 fname = get_tv_string(&argvars[0]);
13864 if (*fname == NUL || (fd = mch_fopen((char *)fname, READBIN)) == NULL)
13866 EMSG2(_(e_notopen), *fname == NUL ? (char_u *)_("<empty>") : fname);
13867 return;
13870 filtd = 0;
13871 while (cnt < maxline || maxline < 0)
13873 readlen = (int)fread(buf + filtd, 1, FREAD_SIZE - filtd, fd);
13874 buflen = filtd + readlen;
13875 tolist = 0;
13876 for ( ; filtd < buflen || readlen <= 0; ++filtd)
13878 if (buf[filtd] == '\n' || readlen <= 0)
13880 /* Only when in binary mode add an empty list item when the
13881 * last line ends in a '\n'. */
13882 if (!binary && readlen == 0 && filtd == 0)
13883 break;
13885 /* Found end-of-line or end-of-file: add a text line to the
13886 * list. */
13887 chop = 0;
13888 if (!binary)
13889 while (filtd - chop - 1 >= tolist
13890 && buf[filtd - chop - 1] == '\r')
13891 ++chop;
13892 len = filtd - tolist - chop;
13893 if (prev == NULL)
13894 s = vim_strnsave(buf + tolist, len);
13895 else
13897 s = alloc((unsigned)(prevlen + len + 1));
13898 if (s != NULL)
13900 mch_memmove(s, prev, prevlen);
13901 vim_free(prev);
13902 prev = NULL;
13903 mch_memmove(s + prevlen, buf + tolist, len);
13904 s[prevlen + len] = NUL;
13907 tolist = filtd + 1;
13909 li = listitem_alloc();
13910 if (li == NULL)
13912 vim_free(s);
13913 break;
13915 li->li_tv.v_type = VAR_STRING;
13916 li->li_tv.v_lock = 0;
13917 li->li_tv.vval.v_string = s;
13918 list_append(rettv->vval.v_list, li);
13920 if (++cnt >= maxline && maxline >= 0)
13921 break;
13922 if (readlen <= 0)
13923 break;
13925 else if (buf[filtd] == NUL)
13926 buf[filtd] = '\n';
13928 if (readlen <= 0)
13929 break;
13931 if (tolist == 0)
13933 /* "buf" is full, need to move text to an allocated buffer */
13934 if (prev == NULL)
13936 prev = vim_strnsave(buf, buflen);
13937 prevlen = buflen;
13939 else
13941 s = alloc((unsigned)(prevlen + buflen));
13942 if (s != NULL)
13944 mch_memmove(s, prev, prevlen);
13945 mch_memmove(s + prevlen, buf, buflen);
13946 vim_free(prev);
13947 prev = s;
13948 prevlen += buflen;
13951 filtd = 0;
13953 else
13955 mch_memmove(buf, buf + tolist, buflen - tolist);
13956 filtd -= tolist;
13961 * For a negative line count use only the lines at the end of the file,
13962 * free the rest.
13964 if (maxline < 0)
13965 while (cnt > -maxline)
13967 listitem_remove(rettv->vval.v_list, rettv->vval.v_list->lv_first);
13968 --cnt;
13971 vim_free(prev);
13972 fclose(fd);
13975 #if defined(FEAT_RELTIME)
13976 static int list2proftime __ARGS((typval_T *arg, proftime_T *tm));
13979 * Convert a List to proftime_T.
13980 * Return FAIL when there is something wrong.
13982 static int
13983 list2proftime(arg, tm)
13984 typval_T *arg;
13985 proftime_T *tm;
13987 long n1, n2;
13988 int error = FALSE;
13990 if (arg->v_type != VAR_LIST || arg->vval.v_list == NULL
13991 || arg->vval.v_list->lv_len != 2)
13992 return FAIL;
13993 n1 = list_find_nr(arg->vval.v_list, 0L, &error);
13994 n2 = list_find_nr(arg->vval.v_list, 1L, &error);
13995 # ifdef WIN3264
13996 tm->HighPart = n1;
13997 tm->LowPart = n2;
13998 # else
13999 tm->tv_sec = n1;
14000 tm->tv_usec = n2;
14001 # endif
14002 return error ? FAIL : OK;
14004 #endif /* FEAT_RELTIME */
14007 * "reltime()" function
14009 static void
14010 f_reltime(argvars, rettv)
14011 typval_T *argvars;
14012 typval_T *rettv;
14014 #ifdef FEAT_RELTIME
14015 proftime_T res;
14016 proftime_T start;
14018 if (argvars[0].v_type == VAR_UNKNOWN)
14020 /* No arguments: get current time. */
14021 profile_start(&res);
14023 else if (argvars[1].v_type == VAR_UNKNOWN)
14025 if (list2proftime(&argvars[0], &res) == FAIL)
14026 return;
14027 profile_end(&res);
14029 else
14031 /* Two arguments: compute the difference. */
14032 if (list2proftime(&argvars[0], &start) == FAIL
14033 || list2proftime(&argvars[1], &res) == FAIL)
14034 return;
14035 profile_sub(&res, &start);
14038 if (rettv_list_alloc(rettv) == OK)
14040 long n1, n2;
14042 # ifdef WIN3264
14043 n1 = res.HighPart;
14044 n2 = res.LowPart;
14045 # else
14046 n1 = res.tv_sec;
14047 n2 = res.tv_usec;
14048 # endif
14049 list_append_number(rettv->vval.v_list, (varnumber_T)n1);
14050 list_append_number(rettv->vval.v_list, (varnumber_T)n2);
14052 #endif
14056 * "reltimestr()" function
14058 static void
14059 f_reltimestr(argvars, rettv)
14060 typval_T *argvars;
14061 typval_T *rettv;
14063 #ifdef FEAT_RELTIME
14064 proftime_T tm;
14065 #endif
14067 rettv->v_type = VAR_STRING;
14068 rettv->vval.v_string = NULL;
14069 #ifdef FEAT_RELTIME
14070 if (list2proftime(&argvars[0], &tm) == OK)
14071 rettv->vval.v_string = vim_strsave((char_u *)profile_msg(&tm));
14072 #endif
14075 #if defined(FEAT_CLIENTSERVER) && defined(FEAT_X11)
14076 static void make_connection __ARGS((void));
14077 static int check_connection __ARGS((void));
14079 static void
14080 make_connection()
14082 if (X_DISPLAY == NULL
14083 # ifdef FEAT_GUI
14084 && !gui.in_use
14085 # endif
14088 x_force_connect = TRUE;
14089 setup_term_clip();
14090 x_force_connect = FALSE;
14094 static int
14095 check_connection()
14097 make_connection();
14098 if (X_DISPLAY == NULL)
14100 EMSG(_("E240: No connection to Vim server"));
14101 return FAIL;
14103 return OK;
14105 #endif
14107 #ifdef FEAT_CLIENTSERVER
14108 static void remote_common __ARGS((typval_T *argvars, typval_T *rettv, int expr));
14110 static void
14111 remote_common(argvars, rettv, expr)
14112 typval_T *argvars;
14113 typval_T *rettv;
14114 int expr;
14116 char_u *server_name;
14117 char_u *keys;
14118 char_u *r = NULL;
14119 char_u buf[NUMBUFLEN];
14120 # ifdef WIN32
14121 HWND w;
14122 # else
14123 Window w;
14124 # endif
14126 if (check_restricted() || check_secure())
14127 return;
14129 # ifdef FEAT_X11
14130 if (check_connection() == FAIL)
14131 return;
14132 # endif
14134 server_name = get_tv_string_chk(&argvars[0]);
14135 if (server_name == NULL)
14136 return; /* type error; errmsg already given */
14137 keys = get_tv_string_buf(&argvars[1], buf);
14138 # ifdef WIN32
14139 if (serverSendToVim(server_name, keys, &r, &w, expr, TRUE) < 0)
14140 # else
14141 if (serverSendToVim(X_DISPLAY, server_name, keys, &r, &w, expr, 0, TRUE)
14142 < 0)
14143 # endif
14145 if (r != NULL)
14146 EMSG(r); /* sending worked but evaluation failed */
14147 else
14148 EMSG2(_("E241: Unable to send to %s"), server_name);
14149 return;
14152 rettv->vval.v_string = r;
14154 if (argvars[2].v_type != VAR_UNKNOWN)
14156 dictitem_T v;
14157 char_u str[30];
14158 char_u *idvar;
14160 sprintf((char *)str, PRINTF_HEX_LONG_U, (long_u)w);
14161 v.di_tv.v_type = VAR_STRING;
14162 v.di_tv.vval.v_string = vim_strsave(str);
14163 idvar = get_tv_string_chk(&argvars[2]);
14164 if (idvar != NULL)
14165 set_var(idvar, &v.di_tv, FALSE);
14166 vim_free(v.di_tv.vval.v_string);
14169 #endif
14172 * "remote_expr()" function
14174 /*ARGSUSED*/
14175 static void
14176 f_remote_expr(argvars, rettv)
14177 typval_T *argvars;
14178 typval_T *rettv;
14180 rettv->v_type = VAR_STRING;
14181 rettv->vval.v_string = NULL;
14182 #ifdef FEAT_CLIENTSERVER
14183 remote_common(argvars, rettv, TRUE);
14184 #endif
14188 * "remote_foreground()" function
14190 /*ARGSUSED*/
14191 static void
14192 f_remote_foreground(argvars, rettv)
14193 typval_T *argvars;
14194 typval_T *rettv;
14196 rettv->vval.v_number = 0;
14197 #ifdef FEAT_CLIENTSERVER
14198 # ifdef WIN32
14199 /* On Win32 it's done in this application. */
14201 char_u *server_name = get_tv_string_chk(&argvars[0]);
14203 if (server_name != NULL)
14204 serverForeground(server_name);
14206 # else
14207 /* Send a foreground() expression to the server. */
14208 argvars[1].v_type = VAR_STRING;
14209 argvars[1].vval.v_string = vim_strsave((char_u *)"foreground()");
14210 argvars[2].v_type = VAR_UNKNOWN;
14211 remote_common(argvars, rettv, TRUE);
14212 vim_free(argvars[1].vval.v_string);
14213 # endif
14214 #endif
14217 /*ARGSUSED*/
14218 static void
14219 f_remote_peek(argvars, rettv)
14220 typval_T *argvars;
14221 typval_T *rettv;
14223 #ifdef FEAT_CLIENTSERVER
14224 dictitem_T v;
14225 char_u *s = NULL;
14226 # ifdef WIN32
14227 long_u n = 0;
14228 # endif
14229 char_u *serverid;
14231 if (check_restricted() || check_secure())
14233 rettv->vval.v_number = -1;
14234 return;
14236 serverid = get_tv_string_chk(&argvars[0]);
14237 if (serverid == NULL)
14239 rettv->vval.v_number = -1;
14240 return; /* type error; errmsg already given */
14242 # ifdef WIN32
14243 sscanf(serverid, SCANF_HEX_LONG_U, &n);
14244 if (n == 0)
14245 rettv->vval.v_number = -1;
14246 else
14248 s = serverGetReply((HWND)n, FALSE, FALSE, FALSE);
14249 rettv->vval.v_number = (s != NULL);
14251 # else
14252 rettv->vval.v_number = 0;
14253 if (check_connection() == FAIL)
14254 return;
14256 rettv->vval.v_number = serverPeekReply(X_DISPLAY,
14257 serverStrToWin(serverid), &s);
14258 # endif
14260 if (argvars[1].v_type != VAR_UNKNOWN && rettv->vval.v_number > 0)
14262 char_u *retvar;
14264 v.di_tv.v_type = VAR_STRING;
14265 v.di_tv.vval.v_string = vim_strsave(s);
14266 retvar = get_tv_string_chk(&argvars[1]);
14267 if (retvar != NULL)
14268 set_var(retvar, &v.di_tv, FALSE);
14269 vim_free(v.di_tv.vval.v_string);
14271 #else
14272 rettv->vval.v_number = -1;
14273 #endif
14276 /*ARGSUSED*/
14277 static void
14278 f_remote_read(argvars, rettv)
14279 typval_T *argvars;
14280 typval_T *rettv;
14282 char_u *r = NULL;
14284 #ifdef FEAT_CLIENTSERVER
14285 char_u *serverid = get_tv_string_chk(&argvars[0]);
14287 if (serverid != NULL && !check_restricted() && !check_secure())
14289 # ifdef WIN32
14290 /* The server's HWND is encoded in the 'id' parameter */
14291 long_u n = 0;
14293 sscanf(serverid, SCANF_HEX_LONG_U, &n);
14294 if (n != 0)
14295 r = serverGetReply((HWND)n, FALSE, TRUE, TRUE);
14296 if (r == NULL)
14297 # else
14298 if (check_connection() == FAIL || serverReadReply(X_DISPLAY,
14299 serverStrToWin(serverid), &r, FALSE) < 0)
14300 # endif
14301 EMSG(_("E277: Unable to read a server reply"));
14303 #endif
14304 rettv->v_type = VAR_STRING;
14305 rettv->vval.v_string = r;
14309 * "remote_send()" function
14311 /*ARGSUSED*/
14312 static void
14313 f_remote_send(argvars, rettv)
14314 typval_T *argvars;
14315 typval_T *rettv;
14317 rettv->v_type = VAR_STRING;
14318 rettv->vval.v_string = NULL;
14319 #ifdef FEAT_CLIENTSERVER
14320 remote_common(argvars, rettv, FALSE);
14321 #endif
14325 * "remove()" function
14327 static void
14328 f_remove(argvars, rettv)
14329 typval_T *argvars;
14330 typval_T *rettv;
14332 list_T *l;
14333 listitem_T *item, *item2;
14334 listitem_T *li;
14335 long idx;
14336 long end;
14337 char_u *key;
14338 dict_T *d;
14339 dictitem_T *di;
14341 rettv->vval.v_number = 0;
14342 if (argvars[0].v_type == VAR_DICT)
14344 if (argvars[2].v_type != VAR_UNKNOWN)
14345 EMSG2(_(e_toomanyarg), "remove()");
14346 else if ((d = argvars[0].vval.v_dict) != NULL
14347 && !tv_check_lock(d->dv_lock, (char_u *)"remove() argument"))
14349 key = get_tv_string_chk(&argvars[1]);
14350 if (key != NULL)
14352 di = dict_find(d, key, -1);
14353 if (di == NULL)
14354 EMSG2(_(e_dictkey), key);
14355 else
14357 *rettv = di->di_tv;
14358 init_tv(&di->di_tv);
14359 dictitem_remove(d, di);
14364 else if (argvars[0].v_type != VAR_LIST)
14365 EMSG2(_(e_listdictarg), "remove()");
14366 else if ((l = argvars[0].vval.v_list) != NULL
14367 && !tv_check_lock(l->lv_lock, (char_u *)"remove() argument"))
14369 int error = FALSE;
14371 idx = get_tv_number_chk(&argvars[1], &error);
14372 if (error)
14373 ; /* type error: do nothing, errmsg already given */
14374 else if ((item = list_find(l, idx)) == NULL)
14375 EMSGN(_(e_listidx), idx);
14376 else
14378 if (argvars[2].v_type == VAR_UNKNOWN)
14380 /* Remove one item, return its value. */
14381 list_remove(l, item, item);
14382 *rettv = item->li_tv;
14383 vim_free(item);
14385 else
14387 /* Remove range of items, return list with values. */
14388 end = get_tv_number_chk(&argvars[2], &error);
14389 if (error)
14390 ; /* type error: do nothing */
14391 else if ((item2 = list_find(l, end)) == NULL)
14392 EMSGN(_(e_listidx), end);
14393 else
14395 int cnt = 0;
14397 for (li = item; li != NULL; li = li->li_next)
14399 ++cnt;
14400 if (li == item2)
14401 break;
14403 if (li == NULL) /* didn't find "item2" after "item" */
14404 EMSG(_(e_invrange));
14405 else
14407 list_remove(l, item, item2);
14408 if (rettv_list_alloc(rettv) == OK)
14410 l = rettv->vval.v_list;
14411 l->lv_first = item;
14412 l->lv_last = item2;
14413 item->li_prev = NULL;
14414 item2->li_next = NULL;
14415 l->lv_len = cnt;
14425 * "rename({from}, {to})" function
14427 static void
14428 f_rename(argvars, rettv)
14429 typval_T *argvars;
14430 typval_T *rettv;
14432 char_u buf[NUMBUFLEN];
14434 if (check_restricted() || check_secure())
14435 rettv->vval.v_number = -1;
14436 else
14437 rettv->vval.v_number = vim_rename(get_tv_string(&argvars[0]),
14438 get_tv_string_buf(&argvars[1], buf));
14442 * "repeat()" function
14444 /*ARGSUSED*/
14445 static void
14446 f_repeat(argvars, rettv)
14447 typval_T *argvars;
14448 typval_T *rettv;
14450 char_u *p;
14451 int n;
14452 int slen;
14453 int len;
14454 char_u *r;
14455 int i;
14457 n = get_tv_number(&argvars[1]);
14458 if (argvars[0].v_type == VAR_LIST)
14460 if (rettv_list_alloc(rettv) == OK && argvars[0].vval.v_list != NULL)
14461 while (n-- > 0)
14462 if (list_extend(rettv->vval.v_list,
14463 argvars[0].vval.v_list, NULL) == FAIL)
14464 break;
14466 else
14468 p = get_tv_string(&argvars[0]);
14469 rettv->v_type = VAR_STRING;
14470 rettv->vval.v_string = NULL;
14472 slen = (int)STRLEN(p);
14473 len = slen * n;
14474 if (len <= 0)
14475 return;
14477 r = alloc(len + 1);
14478 if (r != NULL)
14480 for (i = 0; i < n; i++)
14481 mch_memmove(r + i * slen, p, (size_t)slen);
14482 r[len] = NUL;
14485 rettv->vval.v_string = r;
14490 * "resolve()" function
14492 static void
14493 f_resolve(argvars, rettv)
14494 typval_T *argvars;
14495 typval_T *rettv;
14497 char_u *p;
14499 p = get_tv_string(&argvars[0]);
14500 #ifdef FEAT_SHORTCUT
14502 char_u *v = NULL;
14504 v = mch_resolve_shortcut(p);
14505 if (v != NULL)
14506 rettv->vval.v_string = v;
14507 else
14508 rettv->vval.v_string = vim_strsave(p);
14510 #else
14511 # ifdef HAVE_READLINK
14513 char_u buf[MAXPATHL + 1];
14514 char_u *cpy;
14515 int len;
14516 char_u *remain = NULL;
14517 char_u *q;
14518 int is_relative_to_current = FALSE;
14519 int has_trailing_pathsep = FALSE;
14520 int limit = 100;
14522 p = vim_strsave(p);
14524 if (p[0] == '.' && (vim_ispathsep(p[1])
14525 || (p[1] == '.' && (vim_ispathsep(p[2])))))
14526 is_relative_to_current = TRUE;
14528 len = STRLEN(p);
14529 if (len > 0 && after_pathsep(p, p + len))
14530 has_trailing_pathsep = TRUE;
14532 q = getnextcomp(p);
14533 if (*q != NUL)
14535 /* Separate the first path component in "p", and keep the
14536 * remainder (beginning with the path separator). */
14537 remain = vim_strsave(q - 1);
14538 q[-1] = NUL;
14541 for (;;)
14543 for (;;)
14545 len = readlink((char *)p, (char *)buf, MAXPATHL);
14546 if (len <= 0)
14547 break;
14548 buf[len] = NUL;
14550 if (limit-- == 0)
14552 vim_free(p);
14553 vim_free(remain);
14554 EMSG(_("E655: Too many symbolic links (cycle?)"));
14555 rettv->vval.v_string = NULL;
14556 goto fail;
14559 /* Ensure that the result will have a trailing path separator
14560 * if the argument has one. */
14561 if (remain == NULL && has_trailing_pathsep)
14562 add_pathsep(buf);
14564 /* Separate the first path component in the link value and
14565 * concatenate the remainders. */
14566 q = getnextcomp(vim_ispathsep(*buf) ? buf + 1 : buf);
14567 if (*q != NUL)
14569 if (remain == NULL)
14570 remain = vim_strsave(q - 1);
14571 else
14573 cpy = concat_str(q - 1, remain);
14574 if (cpy != NULL)
14576 vim_free(remain);
14577 remain = cpy;
14580 q[-1] = NUL;
14583 q = gettail(p);
14584 if (q > p && *q == NUL)
14586 /* Ignore trailing path separator. */
14587 q[-1] = NUL;
14588 q = gettail(p);
14590 if (q > p && !mch_isFullName(buf))
14592 /* symlink is relative to directory of argument */
14593 cpy = alloc((unsigned)(STRLEN(p) + STRLEN(buf) + 1));
14594 if (cpy != NULL)
14596 STRCPY(cpy, p);
14597 STRCPY(gettail(cpy), buf);
14598 vim_free(p);
14599 p = cpy;
14602 else
14604 vim_free(p);
14605 p = vim_strsave(buf);
14609 if (remain == NULL)
14610 break;
14612 /* Append the first path component of "remain" to "p". */
14613 q = getnextcomp(remain + 1);
14614 len = q - remain - (*q != NUL);
14615 cpy = vim_strnsave(p, STRLEN(p) + len);
14616 if (cpy != NULL)
14618 STRNCAT(cpy, remain, len);
14619 vim_free(p);
14620 p = cpy;
14622 /* Shorten "remain". */
14623 if (*q != NUL)
14624 STRMOVE(remain, q - 1);
14625 else
14627 vim_free(remain);
14628 remain = NULL;
14632 /* If the result is a relative path name, make it explicitly relative to
14633 * the current directory if and only if the argument had this form. */
14634 if (!vim_ispathsep(*p))
14636 if (is_relative_to_current
14637 && *p != NUL
14638 && !(p[0] == '.'
14639 && (p[1] == NUL
14640 || vim_ispathsep(p[1])
14641 || (p[1] == '.'
14642 && (p[2] == NUL
14643 || vim_ispathsep(p[2]))))))
14645 /* Prepend "./". */
14646 cpy = concat_str((char_u *)"./", p);
14647 if (cpy != NULL)
14649 vim_free(p);
14650 p = cpy;
14653 else if (!is_relative_to_current)
14655 /* Strip leading "./". */
14656 q = p;
14657 while (q[0] == '.' && vim_ispathsep(q[1]))
14658 q += 2;
14659 if (q > p)
14660 STRMOVE(p, p + 2);
14664 /* Ensure that the result will have no trailing path separator
14665 * if the argument had none. But keep "/" or "//". */
14666 if (!has_trailing_pathsep)
14668 q = p + STRLEN(p);
14669 if (after_pathsep(p, q))
14670 *gettail_sep(p) = NUL;
14673 rettv->vval.v_string = p;
14675 # else
14676 rettv->vval.v_string = vim_strsave(p);
14677 # endif
14678 #endif
14680 simplify_filename(rettv->vval.v_string);
14682 #ifdef HAVE_READLINK
14683 fail:
14684 #endif
14685 rettv->v_type = VAR_STRING;
14689 * "reverse({list})" function
14691 static void
14692 f_reverse(argvars, rettv)
14693 typval_T *argvars;
14694 typval_T *rettv;
14696 list_T *l;
14697 listitem_T *li, *ni;
14699 rettv->vval.v_number = 0;
14700 if (argvars[0].v_type != VAR_LIST)
14701 EMSG2(_(e_listarg), "reverse()");
14702 else if ((l = argvars[0].vval.v_list) != NULL
14703 && !tv_check_lock(l->lv_lock, (char_u *)"reverse()"))
14705 li = l->lv_last;
14706 l->lv_first = l->lv_last = NULL;
14707 l->lv_len = 0;
14708 while (li != NULL)
14710 ni = li->li_prev;
14711 list_append(l, li);
14712 li = ni;
14714 rettv->vval.v_list = l;
14715 rettv->v_type = VAR_LIST;
14716 ++l->lv_refcount;
14717 l->lv_idx = l->lv_len - l->lv_idx - 1;
14721 #define SP_NOMOVE 0x01 /* don't move cursor */
14722 #define SP_REPEAT 0x02 /* repeat to find outer pair */
14723 #define SP_RETCOUNT 0x04 /* return matchcount */
14724 #define SP_SETPCMARK 0x08 /* set previous context mark */
14725 #define SP_START 0x10 /* accept match at start position */
14726 #define SP_SUBPAT 0x20 /* return nr of matching sub-pattern */
14727 #define SP_END 0x40 /* leave cursor at end of match */
14729 static int get_search_arg __ARGS((typval_T *varp, int *flagsp));
14732 * Get flags for a search function.
14733 * Possibly sets "p_ws".
14734 * Returns BACKWARD, FORWARD or zero (for an error).
14736 static int
14737 get_search_arg(varp, flagsp)
14738 typval_T *varp;
14739 int *flagsp;
14741 int dir = FORWARD;
14742 char_u *flags;
14743 char_u nbuf[NUMBUFLEN];
14744 int mask;
14746 if (varp->v_type != VAR_UNKNOWN)
14748 flags = get_tv_string_buf_chk(varp, nbuf);
14749 if (flags == NULL)
14750 return 0; /* type error; errmsg already given */
14751 while (*flags != NUL)
14753 switch (*flags)
14755 case 'b': dir = BACKWARD; break;
14756 case 'w': p_ws = TRUE; break;
14757 case 'W': p_ws = FALSE; break;
14758 default: mask = 0;
14759 if (flagsp != NULL)
14760 switch (*flags)
14762 case 'c': mask = SP_START; break;
14763 case 'e': mask = SP_END; break;
14764 case 'm': mask = SP_RETCOUNT; break;
14765 case 'n': mask = SP_NOMOVE; break;
14766 case 'p': mask = SP_SUBPAT; break;
14767 case 'r': mask = SP_REPEAT; break;
14768 case 's': mask = SP_SETPCMARK; break;
14770 if (mask == 0)
14772 EMSG2(_(e_invarg2), flags);
14773 dir = 0;
14775 else
14776 *flagsp |= mask;
14778 if (dir == 0)
14779 break;
14780 ++flags;
14783 return dir;
14787 * Shared by search() and searchpos() functions
14789 static int
14790 search_cmn(argvars, match_pos, flagsp)
14791 typval_T *argvars;
14792 pos_T *match_pos;
14793 int *flagsp;
14795 int flags;
14796 char_u *pat;
14797 pos_T pos;
14798 pos_T save_cursor;
14799 int save_p_ws = p_ws;
14800 int dir;
14801 int retval = 0; /* default: FAIL */
14802 long lnum_stop = 0;
14803 proftime_T tm;
14804 #ifdef FEAT_RELTIME
14805 long time_limit = 0;
14806 #endif
14807 int options = SEARCH_KEEP;
14808 int subpatnum;
14810 pat = get_tv_string(&argvars[0]);
14811 dir = get_search_arg(&argvars[1], flagsp); /* may set p_ws */
14812 if (dir == 0)
14813 goto theend;
14814 flags = *flagsp;
14815 if (flags & SP_START)
14816 options |= SEARCH_START;
14817 if (flags & SP_END)
14818 options |= SEARCH_END;
14820 /* Optional arguments: line number to stop searching and timeout. */
14821 if (argvars[1].v_type != VAR_UNKNOWN && argvars[2].v_type != VAR_UNKNOWN)
14823 lnum_stop = get_tv_number_chk(&argvars[2], NULL);
14824 if (lnum_stop < 0)
14825 goto theend;
14826 #ifdef FEAT_RELTIME
14827 if (argvars[3].v_type != VAR_UNKNOWN)
14829 time_limit = get_tv_number_chk(&argvars[3], NULL);
14830 if (time_limit < 0)
14831 goto theend;
14833 #endif
14836 #ifdef FEAT_RELTIME
14837 /* Set the time limit, if there is one. */
14838 profile_setlimit(time_limit, &tm);
14839 #endif
14842 * This function does not accept SP_REPEAT and SP_RETCOUNT flags.
14843 * Check to make sure only those flags are set.
14844 * Also, Only the SP_NOMOVE or the SP_SETPCMARK flag can be set. Both
14845 * flags cannot be set. Check for that condition also.
14847 if (((flags & (SP_REPEAT | SP_RETCOUNT)) != 0)
14848 || ((flags & SP_NOMOVE) && (flags & SP_SETPCMARK)))
14850 EMSG2(_(e_invarg2), get_tv_string(&argvars[1]));
14851 goto theend;
14854 pos = save_cursor = curwin->w_cursor;
14855 subpatnum = searchit(curwin, curbuf, &pos, dir, pat, 1L,
14856 options, RE_SEARCH, (linenr_T)lnum_stop, &tm);
14857 if (subpatnum != FAIL)
14859 if (flags & SP_SUBPAT)
14860 retval = subpatnum;
14861 else
14862 retval = pos.lnum;
14863 if (flags & SP_SETPCMARK)
14864 setpcmark();
14865 curwin->w_cursor = pos;
14866 if (match_pos != NULL)
14868 /* Store the match cursor position */
14869 match_pos->lnum = pos.lnum;
14870 match_pos->col = pos.col + 1;
14872 /* "/$" will put the cursor after the end of the line, may need to
14873 * correct that here */
14874 check_cursor();
14877 /* If 'n' flag is used: restore cursor position. */
14878 if (flags & SP_NOMOVE)
14879 curwin->w_cursor = save_cursor;
14880 else
14881 curwin->w_set_curswant = TRUE;
14882 theend:
14883 p_ws = save_p_ws;
14885 return retval;
14888 #ifdef FEAT_FLOAT
14890 * "round({float})" function
14892 static void
14893 f_round(argvars, rettv)
14894 typval_T *argvars;
14895 typval_T *rettv;
14897 float_T f;
14899 rettv->v_type = VAR_FLOAT;
14900 if (get_float_arg(argvars, &f) == OK)
14901 /* round() is not in C90, use ceil() or floor() instead. */
14902 rettv->vval.v_float = f > 0 ? floor(f + 0.5) : ceil(f - 0.5);
14903 else
14904 rettv->vval.v_float = 0.0;
14906 #endif
14909 * "search()" function
14911 static void
14912 f_search(argvars, rettv)
14913 typval_T *argvars;
14914 typval_T *rettv;
14916 int flags = 0;
14918 rettv->vval.v_number = search_cmn(argvars, NULL, &flags);
14922 * "searchdecl()" function
14924 static void
14925 f_searchdecl(argvars, rettv)
14926 typval_T *argvars;
14927 typval_T *rettv;
14929 int locally = 1;
14930 int thisblock = 0;
14931 int error = FALSE;
14932 char_u *name;
14934 rettv->vval.v_number = 1; /* default: FAIL */
14936 name = get_tv_string_chk(&argvars[0]);
14937 if (argvars[1].v_type != VAR_UNKNOWN)
14939 locally = get_tv_number_chk(&argvars[1], &error) == 0;
14940 if (!error && argvars[2].v_type != VAR_UNKNOWN)
14941 thisblock = get_tv_number_chk(&argvars[2], &error) != 0;
14943 if (!error && name != NULL)
14944 rettv->vval.v_number = find_decl(name, (int)STRLEN(name),
14945 locally, thisblock, SEARCH_KEEP) == FAIL;
14949 * Used by searchpair() and searchpairpos()
14951 static int
14952 searchpair_cmn(argvars, match_pos)
14953 typval_T *argvars;
14954 pos_T *match_pos;
14956 char_u *spat, *mpat, *epat;
14957 char_u *skip;
14958 int save_p_ws = p_ws;
14959 int dir;
14960 int flags = 0;
14961 char_u nbuf1[NUMBUFLEN];
14962 char_u nbuf2[NUMBUFLEN];
14963 char_u nbuf3[NUMBUFLEN];
14964 int retval = 0; /* default: FAIL */
14965 long lnum_stop = 0;
14966 long time_limit = 0;
14968 /* Get the three pattern arguments: start, middle, end. */
14969 spat = get_tv_string_chk(&argvars[0]);
14970 mpat = get_tv_string_buf_chk(&argvars[1], nbuf1);
14971 epat = get_tv_string_buf_chk(&argvars[2], nbuf2);
14972 if (spat == NULL || mpat == NULL || epat == NULL)
14973 goto theend; /* type error */
14975 /* Handle the optional fourth argument: flags */
14976 dir = get_search_arg(&argvars[3], &flags); /* may set p_ws */
14977 if (dir == 0)
14978 goto theend;
14980 /* Don't accept SP_END or SP_SUBPAT.
14981 * Only one of the SP_NOMOVE or SP_SETPCMARK flags can be set.
14983 if ((flags & (SP_END | SP_SUBPAT)) != 0
14984 || ((flags & SP_NOMOVE) && (flags & SP_SETPCMARK)))
14986 EMSG2(_(e_invarg2), get_tv_string(&argvars[3]));
14987 goto theend;
14990 /* Using 'r' implies 'W', otherwise it doesn't work. */
14991 if (flags & SP_REPEAT)
14992 p_ws = FALSE;
14994 /* Optional fifth argument: skip expression */
14995 if (argvars[3].v_type == VAR_UNKNOWN
14996 || argvars[4].v_type == VAR_UNKNOWN)
14997 skip = (char_u *)"";
14998 else
15000 skip = get_tv_string_buf_chk(&argvars[4], nbuf3);
15001 if (argvars[5].v_type != VAR_UNKNOWN)
15003 lnum_stop = get_tv_number_chk(&argvars[5], NULL);
15004 if (lnum_stop < 0)
15005 goto theend;
15006 #ifdef FEAT_RELTIME
15007 if (argvars[6].v_type != VAR_UNKNOWN)
15009 time_limit = get_tv_number_chk(&argvars[6], NULL);
15010 if (time_limit < 0)
15011 goto theend;
15013 #endif
15016 if (skip == NULL)
15017 goto theend; /* type error */
15019 retval = do_searchpair(spat, mpat, epat, dir, skip, flags,
15020 match_pos, lnum_stop, time_limit);
15022 theend:
15023 p_ws = save_p_ws;
15025 return retval;
15029 * "searchpair()" function
15031 static void
15032 f_searchpair(argvars, rettv)
15033 typval_T *argvars;
15034 typval_T *rettv;
15036 rettv->vval.v_number = searchpair_cmn(argvars, NULL);
15040 * "searchpairpos()" function
15042 static void
15043 f_searchpairpos(argvars, rettv)
15044 typval_T *argvars;
15045 typval_T *rettv;
15047 pos_T match_pos;
15048 int lnum = 0;
15049 int col = 0;
15051 rettv->vval.v_number = 0;
15053 if (rettv_list_alloc(rettv) == FAIL)
15054 return;
15056 if (searchpair_cmn(argvars, &match_pos) > 0)
15058 lnum = match_pos.lnum;
15059 col = match_pos.col;
15062 list_append_number(rettv->vval.v_list, (varnumber_T)lnum);
15063 list_append_number(rettv->vval.v_list, (varnumber_T)col);
15067 * Search for a start/middle/end thing.
15068 * Used by searchpair(), see its documentation for the details.
15069 * Returns 0 or -1 for no match,
15071 long
15072 do_searchpair(spat, mpat, epat, dir, skip, flags, match_pos,
15073 lnum_stop, time_limit)
15074 char_u *spat; /* start pattern */
15075 char_u *mpat; /* middle pattern */
15076 char_u *epat; /* end pattern */
15077 int dir; /* BACKWARD or FORWARD */
15078 char_u *skip; /* skip expression */
15079 int flags; /* SP_SETPCMARK and other SP_ values */
15080 pos_T *match_pos;
15081 linenr_T lnum_stop; /* stop at this line if not zero */
15082 long time_limit; /* stop after this many msec */
15084 char_u *save_cpo;
15085 char_u *pat, *pat2 = NULL, *pat3 = NULL;
15086 long retval = 0;
15087 pos_T pos;
15088 pos_T firstpos;
15089 pos_T foundpos;
15090 pos_T save_cursor;
15091 pos_T save_pos;
15092 int n;
15093 int r;
15094 int nest = 1;
15095 int err;
15096 int options = SEARCH_KEEP;
15097 proftime_T tm;
15099 /* Make 'cpoptions' empty, the 'l' flag should not be used here. */
15100 save_cpo = p_cpo;
15101 p_cpo = empty_option;
15103 #ifdef FEAT_RELTIME
15104 /* Set the time limit, if there is one. */
15105 profile_setlimit(time_limit, &tm);
15106 #endif
15108 /* Make two search patterns: start/end (pat2, for in nested pairs) and
15109 * start/middle/end (pat3, for the top pair). */
15110 pat2 = alloc((unsigned)(STRLEN(spat) + STRLEN(epat) + 15));
15111 pat3 = alloc((unsigned)(STRLEN(spat) + STRLEN(mpat) + STRLEN(epat) + 23));
15112 if (pat2 == NULL || pat3 == NULL)
15113 goto theend;
15114 sprintf((char *)pat2, "\\(%s\\m\\)\\|\\(%s\\m\\)", spat, epat);
15115 if (*mpat == NUL)
15116 STRCPY(pat3, pat2);
15117 else
15118 sprintf((char *)pat3, "\\(%s\\m\\)\\|\\(%s\\m\\)\\|\\(%s\\m\\)",
15119 spat, epat, mpat);
15120 if (flags & SP_START)
15121 options |= SEARCH_START;
15123 save_cursor = curwin->w_cursor;
15124 pos = curwin->w_cursor;
15125 clearpos(&firstpos);
15126 clearpos(&foundpos);
15127 pat = pat3;
15128 for (;;)
15130 n = searchit(curwin, curbuf, &pos, dir, pat, 1L,
15131 options, RE_SEARCH, lnum_stop, &tm);
15132 if (n == FAIL || (firstpos.lnum != 0 && equalpos(pos, firstpos)))
15133 /* didn't find it or found the first match again: FAIL */
15134 break;
15136 if (firstpos.lnum == 0)
15137 firstpos = pos;
15138 if (equalpos(pos, foundpos))
15140 /* Found the same position again. Can happen with a pattern that
15141 * has "\zs" at the end and searching backwards. Advance one
15142 * character and try again. */
15143 if (dir == BACKWARD)
15144 decl(&pos);
15145 else
15146 incl(&pos);
15148 foundpos = pos;
15150 /* clear the start flag to avoid getting stuck here */
15151 options &= ~SEARCH_START;
15153 /* If the skip pattern matches, ignore this match. */
15154 if (*skip != NUL)
15156 save_pos = curwin->w_cursor;
15157 curwin->w_cursor = pos;
15158 r = eval_to_bool(skip, &err, NULL, FALSE);
15159 curwin->w_cursor = save_pos;
15160 if (err)
15162 /* Evaluating {skip} caused an error, break here. */
15163 curwin->w_cursor = save_cursor;
15164 retval = -1;
15165 break;
15167 if (r)
15168 continue;
15171 if ((dir == BACKWARD && n == 3) || (dir == FORWARD && n == 2))
15173 /* Found end when searching backwards or start when searching
15174 * forward: nested pair. */
15175 ++nest;
15176 pat = pat2; /* nested, don't search for middle */
15178 else
15180 /* Found end when searching forward or start when searching
15181 * backward: end of (nested) pair; or found middle in outer pair. */
15182 if (--nest == 1)
15183 pat = pat3; /* outer level, search for middle */
15186 if (nest == 0)
15188 /* Found the match: return matchcount or line number. */
15189 if (flags & SP_RETCOUNT)
15190 ++retval;
15191 else
15192 retval = pos.lnum;
15193 if (flags & SP_SETPCMARK)
15194 setpcmark();
15195 curwin->w_cursor = pos;
15196 if (!(flags & SP_REPEAT))
15197 break;
15198 nest = 1; /* search for next unmatched */
15202 if (match_pos != NULL)
15204 /* Store the match cursor position */
15205 match_pos->lnum = curwin->w_cursor.lnum;
15206 match_pos->col = curwin->w_cursor.col + 1;
15209 /* If 'n' flag is used or search failed: restore cursor position. */
15210 if ((flags & SP_NOMOVE) || retval == 0)
15211 curwin->w_cursor = save_cursor;
15213 theend:
15214 vim_free(pat2);
15215 vim_free(pat3);
15216 if (p_cpo == empty_option)
15217 p_cpo = save_cpo;
15218 else
15219 /* Darn, evaluating the {skip} expression changed the value. */
15220 free_string_option(save_cpo);
15222 return retval;
15226 * "searchpos()" function
15228 static void
15229 f_searchpos(argvars, rettv)
15230 typval_T *argvars;
15231 typval_T *rettv;
15233 pos_T match_pos;
15234 int lnum = 0;
15235 int col = 0;
15236 int n;
15237 int flags = 0;
15239 rettv->vval.v_number = 0;
15241 if (rettv_list_alloc(rettv) == FAIL)
15242 return;
15244 n = search_cmn(argvars, &match_pos, &flags);
15245 if (n > 0)
15247 lnum = match_pos.lnum;
15248 col = match_pos.col;
15251 list_append_number(rettv->vval.v_list, (varnumber_T)lnum);
15252 list_append_number(rettv->vval.v_list, (varnumber_T)col);
15253 if (flags & SP_SUBPAT)
15254 list_append_number(rettv->vval.v_list, (varnumber_T)n);
15258 /*ARGSUSED*/
15259 static void
15260 f_server2client(argvars, rettv)
15261 typval_T *argvars;
15262 typval_T *rettv;
15264 #ifdef FEAT_CLIENTSERVER
15265 char_u buf[NUMBUFLEN];
15266 char_u *server = get_tv_string_chk(&argvars[0]);
15267 char_u *reply = get_tv_string_buf_chk(&argvars[1], buf);
15269 rettv->vval.v_number = -1;
15270 if (server == NULL || reply == NULL)
15271 return;
15272 if (check_restricted() || check_secure())
15273 return;
15274 # ifdef FEAT_X11
15275 if (check_connection() == FAIL)
15276 return;
15277 # endif
15279 if (serverSendReply(server, reply) < 0)
15281 EMSG(_("E258: Unable to send to client"));
15282 return;
15284 rettv->vval.v_number = 0;
15285 #else
15286 rettv->vval.v_number = -1;
15287 #endif
15290 /*ARGSUSED*/
15291 static void
15292 f_serverlist(argvars, rettv)
15293 typval_T *argvars;
15294 typval_T *rettv;
15296 char_u *r = NULL;
15298 #ifdef FEAT_CLIENTSERVER
15299 # ifdef WIN32
15300 r = serverGetVimNames();
15301 # else
15302 make_connection();
15303 if (X_DISPLAY != NULL)
15304 r = serverGetVimNames(X_DISPLAY);
15305 # endif
15306 #endif
15307 rettv->v_type = VAR_STRING;
15308 rettv->vval.v_string = r;
15312 * "setbufvar()" function
15314 /*ARGSUSED*/
15315 static void
15316 f_setbufvar(argvars, rettv)
15317 typval_T *argvars;
15318 typval_T *rettv;
15320 buf_T *buf;
15321 aco_save_T aco;
15322 char_u *varname, *bufvarname;
15323 typval_T *varp;
15324 char_u nbuf[NUMBUFLEN];
15326 rettv->vval.v_number = 0;
15328 if (check_restricted() || check_secure())
15329 return;
15330 (void)get_tv_number(&argvars[0]); /* issue errmsg if type error */
15331 varname = get_tv_string_chk(&argvars[1]);
15332 buf = get_buf_tv(&argvars[0]);
15333 varp = &argvars[2];
15335 if (buf != NULL && varname != NULL && varp != NULL)
15337 /* set curbuf to be our buf, temporarily */
15338 aucmd_prepbuf(&aco, buf);
15340 if (*varname == '&')
15342 long numval;
15343 char_u *strval;
15344 int error = FALSE;
15346 ++varname;
15347 numval = get_tv_number_chk(varp, &error);
15348 strval = get_tv_string_buf_chk(varp, nbuf);
15349 if (!error && strval != NULL)
15350 set_option_value(varname, numval, strval, OPT_LOCAL);
15352 else
15354 bufvarname = alloc((unsigned)STRLEN(varname) + 3);
15355 if (bufvarname != NULL)
15357 STRCPY(bufvarname, "b:");
15358 STRCPY(bufvarname + 2, varname);
15359 set_var(bufvarname, varp, TRUE);
15360 vim_free(bufvarname);
15364 /* reset notion of buffer */
15365 aucmd_restbuf(&aco);
15370 * "setcmdpos()" function
15372 static void
15373 f_setcmdpos(argvars, rettv)
15374 typval_T *argvars;
15375 typval_T *rettv;
15377 int pos = (int)get_tv_number(&argvars[0]) - 1;
15379 if (pos >= 0)
15380 rettv->vval.v_number = set_cmdline_pos(pos);
15384 * "setline()" function
15386 static void
15387 f_setline(argvars, rettv)
15388 typval_T *argvars;
15389 typval_T *rettv;
15391 linenr_T lnum;
15392 char_u *line = NULL;
15393 list_T *l = NULL;
15394 listitem_T *li = NULL;
15395 long added = 0;
15396 linenr_T lcount = curbuf->b_ml.ml_line_count;
15398 lnum = get_tv_lnum(&argvars[0]);
15399 if (argvars[1].v_type == VAR_LIST)
15401 l = argvars[1].vval.v_list;
15402 li = l->lv_first;
15404 else
15405 line = get_tv_string_chk(&argvars[1]);
15407 rettv->vval.v_number = 0; /* OK */
15408 for (;;)
15410 if (l != NULL)
15412 /* list argument, get next string */
15413 if (li == NULL)
15414 break;
15415 line = get_tv_string_chk(&li->li_tv);
15416 li = li->li_next;
15419 rettv->vval.v_number = 1; /* FAIL */
15420 if (line == NULL || lnum < 1 || lnum > curbuf->b_ml.ml_line_count + 1)
15421 break;
15422 if (lnum <= curbuf->b_ml.ml_line_count)
15424 /* existing line, replace it */
15425 if (u_savesub(lnum) == OK && ml_replace(lnum, line, TRUE) == OK)
15427 changed_bytes(lnum, 0);
15428 if (lnum == curwin->w_cursor.lnum)
15429 check_cursor_col();
15430 rettv->vval.v_number = 0; /* OK */
15433 else if (added > 0 || u_save(lnum - 1, lnum) == OK)
15435 /* lnum is one past the last line, append the line */
15436 ++added;
15437 if (ml_append(lnum - 1, line, (colnr_T)0, FALSE) == OK)
15438 rettv->vval.v_number = 0; /* OK */
15441 if (l == NULL) /* only one string argument */
15442 break;
15443 ++lnum;
15446 if (added > 0)
15447 appended_lines_mark(lcount, added);
15450 static void set_qf_ll_list __ARGS((win_T *wp, typval_T *list_arg, typval_T *action_arg, typval_T *rettv));
15453 * Used by "setqflist()" and "setloclist()" functions
15455 /*ARGSUSED*/
15456 static void
15457 set_qf_ll_list(wp, list_arg, action_arg, rettv)
15458 win_T *wp;
15459 typval_T *list_arg;
15460 typval_T *action_arg;
15461 typval_T *rettv;
15463 #ifdef FEAT_QUICKFIX
15464 char_u *act;
15465 int action = ' ';
15466 #endif
15468 rettv->vval.v_number = -1;
15470 #ifdef FEAT_QUICKFIX
15471 if (list_arg->v_type != VAR_LIST)
15472 EMSG(_(e_listreq));
15473 else
15475 list_T *l = list_arg->vval.v_list;
15477 if (action_arg->v_type == VAR_STRING)
15479 act = get_tv_string_chk(action_arg);
15480 if (act == NULL)
15481 return; /* type error; errmsg already given */
15482 if (*act == 'a' || *act == 'r')
15483 action = *act;
15486 if (l != NULL && set_errorlist(wp, l, action) == OK)
15487 rettv->vval.v_number = 0;
15489 #endif
15493 * "setloclist()" function
15495 /*ARGSUSED*/
15496 static void
15497 f_setloclist(argvars, rettv)
15498 typval_T *argvars;
15499 typval_T *rettv;
15501 win_T *win;
15503 rettv->vval.v_number = -1;
15505 win = find_win_by_nr(&argvars[0], NULL);
15506 if (win != NULL)
15507 set_qf_ll_list(win, &argvars[1], &argvars[2], rettv);
15511 * "setmatches()" function
15513 static void
15514 f_setmatches(argvars, rettv)
15515 typval_T *argvars;
15516 typval_T *rettv;
15518 #ifdef FEAT_SEARCH_EXTRA
15519 list_T *l;
15520 listitem_T *li;
15521 dict_T *d;
15523 rettv->vval.v_number = -1;
15524 if (argvars[0].v_type != VAR_LIST)
15526 EMSG(_(e_listreq));
15527 return;
15529 if ((l = argvars[0].vval.v_list) != NULL)
15532 /* To some extent make sure that we are dealing with a list from
15533 * "getmatches()". */
15534 li = l->lv_first;
15535 while (li != NULL)
15537 if (li->li_tv.v_type != VAR_DICT
15538 || (d = li->li_tv.vval.v_dict) == NULL)
15540 EMSG(_(e_invarg));
15541 return;
15543 if (!(dict_find(d, (char_u *)"group", -1) != NULL
15544 && dict_find(d, (char_u *)"pattern", -1) != NULL
15545 && dict_find(d, (char_u *)"priority", -1) != NULL
15546 && dict_find(d, (char_u *)"id", -1) != NULL))
15548 EMSG(_(e_invarg));
15549 return;
15551 li = li->li_next;
15554 clear_matches(curwin);
15555 li = l->lv_first;
15556 while (li != NULL)
15558 d = li->li_tv.vval.v_dict;
15559 match_add(curwin, get_dict_string(d, (char_u *)"group", FALSE),
15560 get_dict_string(d, (char_u *)"pattern", FALSE),
15561 (int)get_dict_number(d, (char_u *)"priority"),
15562 (int)get_dict_number(d, (char_u *)"id"));
15563 li = li->li_next;
15565 rettv->vval.v_number = 0;
15567 #endif
15571 * "setpos()" function
15573 /*ARGSUSED*/
15574 static void
15575 f_setpos(argvars, rettv)
15576 typval_T *argvars;
15577 typval_T *rettv;
15579 pos_T pos;
15580 int fnum;
15581 char_u *name;
15583 rettv->vval.v_number = -1;
15584 name = get_tv_string_chk(argvars);
15585 if (name != NULL)
15587 if (list2fpos(&argvars[1], &pos, &fnum) == OK)
15589 --pos.col;
15590 if (name[0] == '.' && name[1] == NUL)
15592 /* set cursor */
15593 if (fnum == curbuf->b_fnum)
15595 curwin->w_cursor = pos;
15596 check_cursor();
15597 rettv->vval.v_number = 0;
15599 else
15600 EMSG(_(e_invarg));
15602 else if (name[0] == '\'' && name[1] != NUL && name[2] == NUL)
15604 /* set mark */
15605 if (setmark_pos(name[1], &pos, fnum) == OK)
15606 rettv->vval.v_number = 0;
15608 else
15609 EMSG(_(e_invarg));
15615 * "setqflist()" function
15617 /*ARGSUSED*/
15618 static void
15619 f_setqflist(argvars, rettv)
15620 typval_T *argvars;
15621 typval_T *rettv;
15623 set_qf_ll_list(NULL, &argvars[0], &argvars[1], rettv);
15627 * "setreg()" function
15629 static void
15630 f_setreg(argvars, rettv)
15631 typval_T *argvars;
15632 typval_T *rettv;
15634 int regname;
15635 char_u *strregname;
15636 char_u *stropt;
15637 char_u *strval;
15638 int append;
15639 char_u yank_type;
15640 long block_len;
15642 block_len = -1;
15643 yank_type = MAUTO;
15644 append = FALSE;
15646 strregname = get_tv_string_chk(argvars);
15647 rettv->vval.v_number = 1; /* FAIL is default */
15649 if (strregname == NULL)
15650 return; /* type error; errmsg already given */
15651 regname = *strregname;
15652 if (regname == 0 || regname == '@')
15653 regname = '"';
15654 else if (regname == '=')
15655 return;
15657 if (argvars[2].v_type != VAR_UNKNOWN)
15659 stropt = get_tv_string_chk(&argvars[2]);
15660 if (stropt == NULL)
15661 return; /* type error */
15662 for (; *stropt != NUL; ++stropt)
15663 switch (*stropt)
15665 case 'a': case 'A': /* append */
15666 append = TRUE;
15667 break;
15668 case 'v': case 'c': /* character-wise selection */
15669 yank_type = MCHAR;
15670 break;
15671 case 'V': case 'l': /* line-wise selection */
15672 yank_type = MLINE;
15673 break;
15674 #ifdef FEAT_VISUAL
15675 case 'b': case Ctrl_V: /* block-wise selection */
15676 yank_type = MBLOCK;
15677 if (VIM_ISDIGIT(stropt[1]))
15679 ++stropt;
15680 block_len = getdigits(&stropt) - 1;
15681 --stropt;
15683 break;
15684 #endif
15688 strval = get_tv_string_chk(&argvars[1]);
15689 if (strval != NULL)
15690 write_reg_contents_ex(regname, strval, -1,
15691 append, yank_type, block_len);
15692 rettv->vval.v_number = 0;
15696 * "settabwinvar()" function
15698 static void
15699 f_settabwinvar(argvars, rettv)
15700 typval_T *argvars;
15701 typval_T *rettv;
15703 setwinvar(argvars, rettv, 1);
15707 * "setwinvar()" function
15709 static void
15710 f_setwinvar(argvars, rettv)
15711 typval_T *argvars;
15712 typval_T *rettv;
15714 setwinvar(argvars, rettv, 0);
15718 * "setwinvar()" and "settabwinvar()" functions
15720 static void
15721 setwinvar(argvars, rettv, off)
15722 typval_T *argvars;
15723 typval_T *rettv;
15724 int off;
15726 win_T *win;
15727 #ifdef FEAT_WINDOWS
15728 win_T *save_curwin;
15729 tabpage_T *save_curtab;
15730 #endif
15731 char_u *varname, *winvarname;
15732 typval_T *varp;
15733 char_u nbuf[NUMBUFLEN];
15734 tabpage_T *tp;
15736 rettv->vval.v_number = 0;
15738 if (check_restricted() || check_secure())
15739 return;
15741 #ifdef FEAT_WINDOWS
15742 if (off == 1)
15743 tp = find_tabpage((int)get_tv_number_chk(&argvars[0], NULL));
15744 else
15745 tp = curtab;
15746 #endif
15747 win = find_win_by_nr(&argvars[off], tp);
15748 varname = get_tv_string_chk(&argvars[off + 1]);
15749 varp = &argvars[off + 2];
15751 if (win != NULL && varname != NULL && varp != NULL)
15753 #ifdef FEAT_WINDOWS
15754 /* set curwin to be our win, temporarily */
15755 save_curwin = curwin;
15756 save_curtab = curtab;
15757 goto_tabpage_tp(tp);
15758 if (!win_valid(win))
15759 return;
15760 curwin = win;
15761 curbuf = curwin->w_buffer;
15762 #endif
15764 if (*varname == '&')
15766 long numval;
15767 char_u *strval;
15768 int error = FALSE;
15770 ++varname;
15771 numval = get_tv_number_chk(varp, &error);
15772 strval = get_tv_string_buf_chk(varp, nbuf);
15773 if (!error && strval != NULL)
15774 set_option_value(varname, numval, strval, OPT_LOCAL);
15776 else
15778 winvarname = alloc((unsigned)STRLEN(varname) + 3);
15779 if (winvarname != NULL)
15781 STRCPY(winvarname, "w:");
15782 STRCPY(winvarname + 2, varname);
15783 set_var(winvarname, varp, TRUE);
15784 vim_free(winvarname);
15788 #ifdef FEAT_WINDOWS
15789 /* Restore current tabpage and window, if still valid (autocomands can
15790 * make them invalid). */
15791 if (valid_tabpage(save_curtab))
15792 goto_tabpage_tp(save_curtab);
15793 if (win_valid(save_curwin))
15795 curwin = save_curwin;
15796 curbuf = curwin->w_buffer;
15798 #endif
15803 * "shellescape({string})" function
15805 static void
15806 f_shellescape(argvars, rettv)
15807 typval_T *argvars;
15808 typval_T *rettv;
15810 rettv->vval.v_string = vim_strsave_shellescape(
15811 get_tv_string(&argvars[0]), non_zero_arg(&argvars[1]));
15812 rettv->v_type = VAR_STRING;
15816 * "simplify()" function
15818 static void
15819 f_simplify(argvars, rettv)
15820 typval_T *argvars;
15821 typval_T *rettv;
15823 char_u *p;
15825 p = get_tv_string(&argvars[0]);
15826 rettv->vval.v_string = vim_strsave(p);
15827 simplify_filename(rettv->vval.v_string); /* simplify in place */
15828 rettv->v_type = VAR_STRING;
15831 #ifdef FEAT_FLOAT
15833 * "sin()" function
15835 static void
15836 f_sin(argvars, rettv)
15837 typval_T *argvars;
15838 typval_T *rettv;
15840 float_T f;
15842 rettv->v_type = VAR_FLOAT;
15843 if (get_float_arg(argvars, &f) == OK)
15844 rettv->vval.v_float = sin(f);
15845 else
15846 rettv->vval.v_float = 0.0;
15848 #endif
15850 static int
15851 #ifdef __BORLANDC__
15852 _RTLENTRYF
15853 #endif
15854 item_compare __ARGS((const void *s1, const void *s2));
15855 static int
15856 #ifdef __BORLANDC__
15857 _RTLENTRYF
15858 #endif
15859 item_compare2 __ARGS((const void *s1, const void *s2));
15861 static int item_compare_ic;
15862 static char_u *item_compare_func;
15863 static int item_compare_func_err;
15864 #define ITEM_COMPARE_FAIL 999
15867 * Compare functions for f_sort() below.
15869 static int
15870 #ifdef __BORLANDC__
15871 _RTLENTRYF
15872 #endif
15873 item_compare(s1, s2)
15874 const void *s1;
15875 const void *s2;
15877 char_u *p1, *p2;
15878 char_u *tofree1, *tofree2;
15879 int res;
15880 char_u numbuf1[NUMBUFLEN];
15881 char_u numbuf2[NUMBUFLEN];
15883 p1 = tv2string(&(*(listitem_T **)s1)->li_tv, &tofree1, numbuf1, 0);
15884 p2 = tv2string(&(*(listitem_T **)s2)->li_tv, &tofree2, numbuf2, 0);
15885 if (p1 == NULL)
15886 p1 = (char_u *)"";
15887 if (p2 == NULL)
15888 p2 = (char_u *)"";
15889 if (item_compare_ic)
15890 res = STRICMP(p1, p2);
15891 else
15892 res = STRCMP(p1, p2);
15893 vim_free(tofree1);
15894 vim_free(tofree2);
15895 return res;
15898 static int
15899 #ifdef __BORLANDC__
15900 _RTLENTRYF
15901 #endif
15902 item_compare2(s1, s2)
15903 const void *s1;
15904 const void *s2;
15906 int res;
15907 typval_T rettv;
15908 typval_T argv[3];
15909 int dummy;
15911 /* shortcut after failure in previous call; compare all items equal */
15912 if (item_compare_func_err)
15913 return 0;
15915 /* copy the values. This is needed to be able to set v_lock to VAR_FIXED
15916 * in the copy without changing the original list items. */
15917 copy_tv(&(*(listitem_T **)s1)->li_tv, &argv[0]);
15918 copy_tv(&(*(listitem_T **)s2)->li_tv, &argv[1]);
15920 rettv.v_type = VAR_UNKNOWN; /* clear_tv() uses this */
15921 res = call_func(item_compare_func, (int)STRLEN(item_compare_func),
15922 &rettv, 2, argv, 0L, 0L, &dummy, TRUE, NULL);
15923 clear_tv(&argv[0]);
15924 clear_tv(&argv[1]);
15926 if (res == FAIL)
15927 res = ITEM_COMPARE_FAIL;
15928 else
15929 res = get_tv_number_chk(&rettv, &item_compare_func_err);
15930 if (item_compare_func_err)
15931 res = ITEM_COMPARE_FAIL; /* return value has wrong type */
15932 clear_tv(&rettv);
15933 return res;
15937 * "sort({list})" function
15939 static void
15940 f_sort(argvars, rettv)
15941 typval_T *argvars;
15942 typval_T *rettv;
15944 list_T *l;
15945 listitem_T *li;
15946 listitem_T **ptrs;
15947 long len;
15948 long i;
15950 rettv->vval.v_number = 0;
15951 if (argvars[0].v_type != VAR_LIST)
15952 EMSG2(_(e_listarg), "sort()");
15953 else
15955 l = argvars[0].vval.v_list;
15956 if (l == NULL || tv_check_lock(l->lv_lock, (char_u *)"sort()"))
15957 return;
15958 rettv->vval.v_list = l;
15959 rettv->v_type = VAR_LIST;
15960 ++l->lv_refcount;
15962 len = list_len(l);
15963 if (len <= 1)
15964 return; /* short list sorts pretty quickly */
15966 item_compare_ic = FALSE;
15967 item_compare_func = NULL;
15968 if (argvars[1].v_type != VAR_UNKNOWN)
15970 if (argvars[1].v_type == VAR_FUNC)
15971 item_compare_func = argvars[1].vval.v_string;
15972 else
15974 int error = FALSE;
15976 i = get_tv_number_chk(&argvars[1], &error);
15977 if (error)
15978 return; /* type error; errmsg already given */
15979 if (i == 1)
15980 item_compare_ic = TRUE;
15981 else
15982 item_compare_func = get_tv_string(&argvars[1]);
15986 /* Make an array with each entry pointing to an item in the List. */
15987 ptrs = (listitem_T **)alloc((int)(len * sizeof(listitem_T *)));
15988 if (ptrs == NULL)
15989 return;
15990 i = 0;
15991 for (li = l->lv_first; li != NULL; li = li->li_next)
15992 ptrs[i++] = li;
15994 item_compare_func_err = FALSE;
15995 /* test the compare function */
15996 if (item_compare_func != NULL
15997 && item_compare2((void *)&ptrs[0], (void *)&ptrs[1])
15998 == ITEM_COMPARE_FAIL)
15999 EMSG(_("E702: Sort compare function failed"));
16000 else
16002 /* Sort the array with item pointers. */
16003 qsort((void *)ptrs, (size_t)len, sizeof(listitem_T *),
16004 item_compare_func == NULL ? item_compare : item_compare2);
16006 if (!item_compare_func_err)
16008 /* Clear the List and append the items in the sorted order. */
16009 l->lv_first = l->lv_last = l->lv_idx_item = NULL;
16010 l->lv_len = 0;
16011 for (i = 0; i < len; ++i)
16012 list_append(l, ptrs[i]);
16016 vim_free(ptrs);
16021 * "soundfold({word})" function
16023 static void
16024 f_soundfold(argvars, rettv)
16025 typval_T *argvars;
16026 typval_T *rettv;
16028 char_u *s;
16030 rettv->v_type = VAR_STRING;
16031 s = get_tv_string(&argvars[0]);
16032 #ifdef FEAT_SPELL
16033 rettv->vval.v_string = eval_soundfold(s);
16034 #else
16035 rettv->vval.v_string = vim_strsave(s);
16036 #endif
16040 * "spellbadword()" function
16042 /* ARGSUSED */
16043 static void
16044 f_spellbadword(argvars, rettv)
16045 typval_T *argvars;
16046 typval_T *rettv;
16048 char_u *word = (char_u *)"";
16049 hlf_T attr = HLF_COUNT;
16050 int len = 0;
16052 if (rettv_list_alloc(rettv) == FAIL)
16053 return;
16055 #ifdef FEAT_SPELL
16056 if (argvars[0].v_type == VAR_UNKNOWN)
16058 /* Find the start and length of the badly spelled word. */
16059 len = spell_move_to(curwin, FORWARD, TRUE, TRUE, &attr);
16060 if (len != 0)
16061 word = ml_get_cursor();
16063 else if (curwin->w_p_spell && *curbuf->b_p_spl != NUL)
16065 char_u *str = get_tv_string_chk(&argvars[0]);
16066 int capcol = -1;
16068 if (str != NULL)
16070 /* Check the argument for spelling. */
16071 while (*str != NUL)
16073 len = spell_check(curwin, str, &attr, &capcol, FALSE);
16074 if (attr != HLF_COUNT)
16076 word = str;
16077 break;
16079 str += len;
16083 #endif
16085 list_append_string(rettv->vval.v_list, word, len);
16086 list_append_string(rettv->vval.v_list, (char_u *)(
16087 attr == HLF_SPB ? "bad" :
16088 attr == HLF_SPR ? "rare" :
16089 attr == HLF_SPL ? "local" :
16090 attr == HLF_SPC ? "caps" :
16091 ""), -1);
16095 * "spellsuggest()" function
16097 /*ARGSUSED*/
16098 static void
16099 f_spellsuggest(argvars, rettv)
16100 typval_T *argvars;
16101 typval_T *rettv;
16103 #ifdef FEAT_SPELL
16104 char_u *str;
16105 int typeerr = FALSE;
16106 int maxcount;
16107 garray_T ga;
16108 int i;
16109 listitem_T *li;
16110 int need_capital = FALSE;
16111 #endif
16113 if (rettv_list_alloc(rettv) == FAIL)
16114 return;
16116 #ifdef FEAT_SPELL
16117 if (curwin->w_p_spell && *curbuf->b_p_spl != NUL)
16119 str = get_tv_string(&argvars[0]);
16120 if (argvars[1].v_type != VAR_UNKNOWN)
16122 maxcount = get_tv_number_chk(&argvars[1], &typeerr);
16123 if (maxcount <= 0)
16124 return;
16125 if (argvars[2].v_type != VAR_UNKNOWN)
16127 need_capital = get_tv_number_chk(&argvars[2], &typeerr);
16128 if (typeerr)
16129 return;
16132 else
16133 maxcount = 25;
16135 spell_suggest_list(&ga, str, maxcount, need_capital, FALSE);
16137 for (i = 0; i < ga.ga_len; ++i)
16139 str = ((char_u **)ga.ga_data)[i];
16141 li = listitem_alloc();
16142 if (li == NULL)
16143 vim_free(str);
16144 else
16146 li->li_tv.v_type = VAR_STRING;
16147 li->li_tv.v_lock = 0;
16148 li->li_tv.vval.v_string = str;
16149 list_append(rettv->vval.v_list, li);
16152 ga_clear(&ga);
16154 #endif
16157 static void
16158 f_split(argvars, rettv)
16159 typval_T *argvars;
16160 typval_T *rettv;
16162 char_u *str;
16163 char_u *end;
16164 char_u *pat = NULL;
16165 regmatch_T regmatch;
16166 char_u patbuf[NUMBUFLEN];
16167 char_u *save_cpo;
16168 int match;
16169 colnr_T col = 0;
16170 int keepempty = FALSE;
16171 int typeerr = FALSE;
16173 /* Make 'cpoptions' empty, the 'l' flag should not be used here. */
16174 save_cpo = p_cpo;
16175 p_cpo = (char_u *)"";
16177 str = get_tv_string(&argvars[0]);
16178 if (argvars[1].v_type != VAR_UNKNOWN)
16180 pat = get_tv_string_buf_chk(&argvars[1], patbuf);
16181 if (pat == NULL)
16182 typeerr = TRUE;
16183 if (argvars[2].v_type != VAR_UNKNOWN)
16184 keepempty = get_tv_number_chk(&argvars[2], &typeerr);
16186 if (pat == NULL || *pat == NUL)
16187 pat = (char_u *)"[\\x01- ]\\+";
16189 if (rettv_list_alloc(rettv) == FAIL)
16190 return;
16191 if (typeerr)
16192 return;
16194 regmatch.regprog = vim_regcomp(pat, RE_MAGIC + RE_STRING);
16195 if (regmatch.regprog != NULL)
16197 regmatch.rm_ic = FALSE;
16198 while (*str != NUL || keepempty)
16200 if (*str == NUL)
16201 match = FALSE; /* empty item at the end */
16202 else
16203 match = vim_regexec_nl(&regmatch, str, col);
16204 if (match)
16205 end = regmatch.startp[0];
16206 else
16207 end = str + STRLEN(str);
16208 if (keepempty || end > str || (rettv->vval.v_list->lv_len > 0
16209 && *str != NUL && match && end < regmatch.endp[0]))
16211 if (list_append_string(rettv->vval.v_list, str,
16212 (int)(end - str)) == FAIL)
16213 break;
16215 if (!match)
16216 break;
16217 /* Advance to just after the match. */
16218 if (regmatch.endp[0] > str)
16219 col = 0;
16220 else
16222 /* Don't get stuck at the same match. */
16223 #ifdef FEAT_MBYTE
16224 col = (*mb_ptr2len)(regmatch.endp[0]);
16225 #else
16226 col = 1;
16227 #endif
16229 str = regmatch.endp[0];
16232 vim_free(regmatch.regprog);
16235 p_cpo = save_cpo;
16238 #ifdef FEAT_FLOAT
16240 * "sqrt()" function
16242 static void
16243 f_sqrt(argvars, rettv)
16244 typval_T *argvars;
16245 typval_T *rettv;
16247 float_T f;
16249 rettv->v_type = VAR_FLOAT;
16250 if (get_float_arg(argvars, &f) == OK)
16251 rettv->vval.v_float = sqrt(f);
16252 else
16253 rettv->vval.v_float = 0.0;
16257 * "str2float()" function
16259 static void
16260 f_str2float(argvars, rettv)
16261 typval_T *argvars;
16262 typval_T *rettv;
16264 char_u *p = skipwhite(get_tv_string(&argvars[0]));
16266 if (*p == '+')
16267 p = skipwhite(p + 1);
16268 (void)string2float(p, &rettv->vval.v_float);
16269 rettv->v_type = VAR_FLOAT;
16271 #endif
16274 * "str2nr()" function
16276 static void
16277 f_str2nr(argvars, rettv)
16278 typval_T *argvars;
16279 typval_T *rettv;
16281 int base = 10;
16282 char_u *p;
16283 long n;
16285 if (argvars[1].v_type != VAR_UNKNOWN)
16287 base = get_tv_number(&argvars[1]);
16288 if (base != 8 && base != 10 && base != 16)
16290 EMSG(_(e_invarg));
16291 return;
16295 p = skipwhite(get_tv_string(&argvars[0]));
16296 if (*p == '+')
16297 p = skipwhite(p + 1);
16298 vim_str2nr(p, NULL, NULL, base == 8 ? 2 : 0, base == 16 ? 2 : 0, &n, NULL);
16299 rettv->vval.v_number = n;
16302 #ifdef HAVE_STRFTIME
16304 * "strftime({format}[, {time}])" function
16306 static void
16307 f_strftime(argvars, rettv)
16308 typval_T *argvars;
16309 typval_T *rettv;
16311 char_u result_buf[256];
16312 struct tm *curtime;
16313 time_t seconds;
16314 char_u *p;
16316 rettv->v_type = VAR_STRING;
16318 p = get_tv_string(&argvars[0]);
16319 if (argvars[1].v_type == VAR_UNKNOWN)
16320 seconds = time(NULL);
16321 else
16322 seconds = (time_t)get_tv_number(&argvars[1]);
16323 curtime = localtime(&seconds);
16324 /* MSVC returns NULL for an invalid value of seconds. */
16325 if (curtime == NULL)
16326 rettv->vval.v_string = vim_strsave((char_u *)_("(Invalid)"));
16327 else
16329 # ifdef FEAT_MBYTE
16330 vimconv_T conv;
16331 char_u *enc;
16333 conv.vc_type = CONV_NONE;
16334 enc = enc_locale();
16335 convert_setup(&conv, p_enc, enc);
16336 if (conv.vc_type != CONV_NONE)
16337 p = string_convert(&conv, p, NULL);
16338 # endif
16339 if (p != NULL)
16340 (void)strftime((char *)result_buf, sizeof(result_buf),
16341 (char *)p, curtime);
16342 else
16343 result_buf[0] = NUL;
16345 # ifdef FEAT_MBYTE
16346 if (conv.vc_type != CONV_NONE)
16347 vim_free(p);
16348 convert_setup(&conv, enc, p_enc);
16349 if (conv.vc_type != CONV_NONE)
16350 rettv->vval.v_string = string_convert(&conv, result_buf, NULL);
16351 else
16352 # endif
16353 rettv->vval.v_string = vim_strsave(result_buf);
16355 # ifdef FEAT_MBYTE
16356 /* Release conversion descriptors */
16357 convert_setup(&conv, NULL, NULL);
16358 vim_free(enc);
16359 # endif
16362 #endif
16365 * "stridx()" function
16367 static void
16368 f_stridx(argvars, rettv)
16369 typval_T *argvars;
16370 typval_T *rettv;
16372 char_u buf[NUMBUFLEN];
16373 char_u *needle;
16374 char_u *haystack;
16375 char_u *save_haystack;
16376 char_u *pos;
16377 int start_idx;
16379 needle = get_tv_string_chk(&argvars[1]);
16380 save_haystack = haystack = get_tv_string_buf_chk(&argvars[0], buf);
16381 rettv->vval.v_number = -1;
16382 if (needle == NULL || haystack == NULL)
16383 return; /* type error; errmsg already given */
16385 if (argvars[2].v_type != VAR_UNKNOWN)
16387 int error = FALSE;
16389 start_idx = get_tv_number_chk(&argvars[2], &error);
16390 if (error || start_idx >= (int)STRLEN(haystack))
16391 return;
16392 if (start_idx >= 0)
16393 haystack += start_idx;
16396 pos = (char_u *)strstr((char *)haystack, (char *)needle);
16397 if (pos != NULL)
16398 rettv->vval.v_number = (varnumber_T)(pos - save_haystack);
16402 * "string()" function
16404 static void
16405 f_string(argvars, rettv)
16406 typval_T *argvars;
16407 typval_T *rettv;
16409 char_u *tofree;
16410 char_u numbuf[NUMBUFLEN];
16412 rettv->v_type = VAR_STRING;
16413 rettv->vval.v_string = tv2string(&argvars[0], &tofree, numbuf, 0);
16414 /* Make a copy if we have a value but it's not in allocated memory. */
16415 if (rettv->vval.v_string != NULL && tofree == NULL)
16416 rettv->vval.v_string = vim_strsave(rettv->vval.v_string);
16420 * "strlen()" function
16422 static void
16423 f_strlen(argvars, rettv)
16424 typval_T *argvars;
16425 typval_T *rettv;
16427 rettv->vval.v_number = (varnumber_T)(STRLEN(
16428 get_tv_string(&argvars[0])));
16432 * "strpart()" function
16434 static void
16435 f_strpart(argvars, rettv)
16436 typval_T *argvars;
16437 typval_T *rettv;
16439 char_u *p;
16440 int n;
16441 int len;
16442 int slen;
16443 int error = FALSE;
16445 p = get_tv_string(&argvars[0]);
16446 slen = (int)STRLEN(p);
16448 n = get_tv_number_chk(&argvars[1], &error);
16449 if (error)
16450 len = 0;
16451 else if (argvars[2].v_type != VAR_UNKNOWN)
16452 len = get_tv_number(&argvars[2]);
16453 else
16454 len = slen - n; /* default len: all bytes that are available. */
16457 * Only return the overlap between the specified part and the actual
16458 * string.
16460 if (n < 0)
16462 len += n;
16463 n = 0;
16465 else if (n > slen)
16466 n = slen;
16467 if (len < 0)
16468 len = 0;
16469 else if (n + len > slen)
16470 len = slen - n;
16472 rettv->v_type = VAR_STRING;
16473 rettv->vval.v_string = vim_strnsave(p + n, len);
16477 * "strridx()" function
16479 static void
16480 f_strridx(argvars, rettv)
16481 typval_T *argvars;
16482 typval_T *rettv;
16484 char_u buf[NUMBUFLEN];
16485 char_u *needle;
16486 char_u *haystack;
16487 char_u *rest;
16488 char_u *lastmatch = NULL;
16489 int haystack_len, end_idx;
16491 needle = get_tv_string_chk(&argvars[1]);
16492 haystack = get_tv_string_buf_chk(&argvars[0], buf);
16494 rettv->vval.v_number = -1;
16495 if (needle == NULL || haystack == NULL)
16496 return; /* type error; errmsg already given */
16498 haystack_len = (int)STRLEN(haystack);
16499 if (argvars[2].v_type != VAR_UNKNOWN)
16501 /* Third argument: upper limit for index */
16502 end_idx = get_tv_number_chk(&argvars[2], NULL);
16503 if (end_idx < 0)
16504 return; /* can never find a match */
16506 else
16507 end_idx = haystack_len;
16509 if (*needle == NUL)
16511 /* Empty string matches past the end. */
16512 lastmatch = haystack + end_idx;
16514 else
16516 for (rest = haystack; *rest != '\0'; ++rest)
16518 rest = (char_u *)strstr((char *)rest, (char *)needle);
16519 if (rest == NULL || rest > haystack + end_idx)
16520 break;
16521 lastmatch = rest;
16525 if (lastmatch == NULL)
16526 rettv->vval.v_number = -1;
16527 else
16528 rettv->vval.v_number = (varnumber_T)(lastmatch - haystack);
16532 * "strtrans()" function
16534 static void
16535 f_strtrans(argvars, rettv)
16536 typval_T *argvars;
16537 typval_T *rettv;
16539 rettv->v_type = VAR_STRING;
16540 rettv->vval.v_string = transstr(get_tv_string(&argvars[0]));
16544 * "submatch()" function
16546 static void
16547 f_submatch(argvars, rettv)
16548 typval_T *argvars;
16549 typval_T *rettv;
16551 rettv->v_type = VAR_STRING;
16552 rettv->vval.v_string =
16553 reg_submatch((int)get_tv_number_chk(&argvars[0], NULL));
16557 * "substitute()" function
16559 static void
16560 f_substitute(argvars, rettv)
16561 typval_T *argvars;
16562 typval_T *rettv;
16564 char_u patbuf[NUMBUFLEN];
16565 char_u subbuf[NUMBUFLEN];
16566 char_u flagsbuf[NUMBUFLEN];
16568 char_u *str = get_tv_string_chk(&argvars[0]);
16569 char_u *pat = get_tv_string_buf_chk(&argvars[1], patbuf);
16570 char_u *sub = get_tv_string_buf_chk(&argvars[2], subbuf);
16571 char_u *flg = get_tv_string_buf_chk(&argvars[3], flagsbuf);
16573 rettv->v_type = VAR_STRING;
16574 if (str == NULL || pat == NULL || sub == NULL || flg == NULL)
16575 rettv->vval.v_string = NULL;
16576 else
16577 rettv->vval.v_string = do_string_sub(str, pat, sub, flg);
16581 * "synID(lnum, col, trans)" function
16583 /*ARGSUSED*/
16584 static void
16585 f_synID(argvars, rettv)
16586 typval_T *argvars;
16587 typval_T *rettv;
16589 int id = 0;
16590 #ifdef FEAT_SYN_HL
16591 long lnum;
16592 long col;
16593 int trans;
16594 int transerr = FALSE;
16596 lnum = get_tv_lnum(argvars); /* -1 on type error */
16597 col = get_tv_number(&argvars[1]) - 1; /* -1 on type error */
16598 trans = get_tv_number_chk(&argvars[2], &transerr);
16600 if (!transerr && lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count
16601 && col >= 0 && col < (long)STRLEN(ml_get(lnum)))
16602 id = syn_get_id(curwin, lnum, (colnr_T)col, trans, NULL, FALSE);
16603 #endif
16605 rettv->vval.v_number = id;
16609 * "synIDattr(id, what [, mode])" function
16611 /*ARGSUSED*/
16612 static void
16613 f_synIDattr(argvars, rettv)
16614 typval_T *argvars;
16615 typval_T *rettv;
16617 char_u *p = NULL;
16618 #ifdef FEAT_SYN_HL
16619 int id;
16620 char_u *what;
16621 char_u *mode;
16622 char_u modebuf[NUMBUFLEN];
16623 int modec;
16625 id = get_tv_number(&argvars[0]);
16626 what = get_tv_string(&argvars[1]);
16627 if (argvars[2].v_type != VAR_UNKNOWN)
16629 mode = get_tv_string_buf(&argvars[2], modebuf);
16630 modec = TOLOWER_ASC(mode[0]);
16631 if (modec != 't' && modec != 'c'
16632 #ifdef FEAT_GUI
16633 && modec != 'g'
16634 #endif
16636 modec = 0; /* replace invalid with current */
16638 else
16640 #ifdef FEAT_GUI
16641 if (gui.in_use)
16642 modec = 'g';
16643 else
16644 #endif
16645 if (t_colors > 1)
16646 modec = 'c';
16647 else
16648 modec = 't';
16652 switch (TOLOWER_ASC(what[0]))
16654 case 'b':
16655 if (TOLOWER_ASC(what[1]) == 'g') /* bg[#] */
16656 p = highlight_color(id, what, modec);
16657 else /* bold */
16658 p = highlight_has_attr(id, HL_BOLD, modec);
16659 break;
16661 case 'f': /* fg[#] */
16662 p = highlight_color(id, what, modec);
16663 break;
16665 case 'i':
16666 if (TOLOWER_ASC(what[1]) == 'n') /* inverse */
16667 p = highlight_has_attr(id, HL_INVERSE, modec);
16668 else /* italic */
16669 p = highlight_has_attr(id, HL_ITALIC, modec);
16670 break;
16672 case 'n': /* name */
16673 p = get_highlight_name(NULL, id - 1);
16674 break;
16676 case 'r': /* reverse */
16677 p = highlight_has_attr(id, HL_INVERSE, modec);
16678 break;
16680 case 's':
16681 if (TOLOWER_ASC(what[1]) == 'p') /* sp[#] */
16682 p = highlight_color(id, what, modec);
16683 else /* standout */
16684 p = highlight_has_attr(id, HL_STANDOUT, modec);
16685 break;
16687 case 'u':
16688 if (STRLEN(what) <= 5 || TOLOWER_ASC(what[5]) != 'c')
16689 /* underline */
16690 p = highlight_has_attr(id, HL_UNDERLINE, modec);
16691 else
16692 /* undercurl */
16693 p = highlight_has_attr(id, HL_UNDERCURL, modec);
16694 break;
16697 if (p != NULL)
16698 p = vim_strsave(p);
16699 #endif
16700 rettv->v_type = VAR_STRING;
16701 rettv->vval.v_string = p;
16705 * "synIDtrans(id)" function
16707 /*ARGSUSED*/
16708 static void
16709 f_synIDtrans(argvars, rettv)
16710 typval_T *argvars;
16711 typval_T *rettv;
16713 int id;
16715 #ifdef FEAT_SYN_HL
16716 id = get_tv_number(&argvars[0]);
16718 if (id > 0)
16719 id = syn_get_final_id(id);
16720 else
16721 #endif
16722 id = 0;
16724 rettv->vval.v_number = id;
16728 * "synstack(lnum, col)" function
16730 /*ARGSUSED*/
16731 static void
16732 f_synstack(argvars, rettv)
16733 typval_T *argvars;
16734 typval_T *rettv;
16736 #ifdef FEAT_SYN_HL
16737 long lnum;
16738 long col;
16739 int i;
16740 int id;
16741 #endif
16743 rettv->v_type = VAR_LIST;
16744 rettv->vval.v_list = NULL;
16746 #ifdef FEAT_SYN_HL
16747 lnum = get_tv_lnum(argvars); /* -1 on type error */
16748 col = get_tv_number(&argvars[1]) - 1; /* -1 on type error */
16750 if (lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count
16751 && col >= 0 && (col == 0 || col < (long)STRLEN(ml_get(lnum)))
16752 && rettv_list_alloc(rettv) != FAIL)
16754 (void)syn_get_id(curwin, lnum, (colnr_T)col, FALSE, NULL, TRUE);
16755 for (i = 0; ; ++i)
16757 id = syn_get_stack_item(i);
16758 if (id < 0)
16759 break;
16760 if (list_append_number(rettv->vval.v_list, id) == FAIL)
16761 break;
16764 #endif
16768 * "system()" function
16770 static void
16771 f_system(argvars, rettv)
16772 typval_T *argvars;
16773 typval_T *rettv;
16775 char_u *res = NULL;
16776 char_u *p;
16777 char_u *infile = NULL;
16778 char_u buf[NUMBUFLEN];
16779 int err = FALSE;
16780 FILE *fd;
16782 if (check_restricted() || check_secure())
16783 goto done;
16785 if (argvars[1].v_type != VAR_UNKNOWN)
16788 * Write the string to a temp file, to be used for input of the shell
16789 * command.
16791 if ((infile = vim_tempname('i')) == NULL)
16793 EMSG(_(e_notmp));
16794 goto done;
16797 fd = mch_fopen((char *)infile, WRITEBIN);
16798 if (fd == NULL)
16800 EMSG2(_(e_notopen), infile);
16801 goto done;
16803 p = get_tv_string_buf_chk(&argvars[1], buf);
16804 if (p == NULL)
16806 fclose(fd);
16807 goto done; /* type error; errmsg already given */
16809 if (fwrite(p, STRLEN(p), 1, fd) != 1)
16810 err = TRUE;
16811 if (fclose(fd) != 0)
16812 err = TRUE;
16813 if (err)
16815 EMSG(_("E677: Error writing temp file"));
16816 goto done;
16820 res = get_cmd_output(get_tv_string(&argvars[0]), infile,
16821 SHELL_SILENT | SHELL_COOKED);
16823 #ifdef USE_CR
16824 /* translate <CR> into <NL> */
16825 if (res != NULL)
16827 char_u *s;
16829 for (s = res; *s; ++s)
16831 if (*s == CAR)
16832 *s = NL;
16835 #else
16836 # ifdef USE_CRNL
16837 /* translate <CR><NL> into <NL> */
16838 if (res != NULL)
16840 char_u *s, *d;
16842 d = res;
16843 for (s = res; *s; ++s)
16845 if (s[0] == CAR && s[1] == NL)
16846 ++s;
16847 *d++ = *s;
16849 *d = NUL;
16851 # endif
16852 #endif
16854 done:
16855 if (infile != NULL)
16857 mch_remove(infile);
16858 vim_free(infile);
16860 rettv->v_type = VAR_STRING;
16861 rettv->vval.v_string = res;
16865 * "tabpagebuflist()" function
16867 /* ARGSUSED */
16868 static void
16869 f_tabpagebuflist(argvars, rettv)
16870 typval_T *argvars;
16871 typval_T *rettv;
16873 #ifndef FEAT_WINDOWS
16874 rettv->vval.v_number = 0;
16875 #else
16876 tabpage_T *tp;
16877 win_T *wp = NULL;
16879 if (argvars[0].v_type == VAR_UNKNOWN)
16880 wp = firstwin;
16881 else
16883 tp = find_tabpage((int)get_tv_number(&argvars[0]));
16884 if (tp != NULL)
16885 wp = (tp == curtab) ? firstwin : tp->tp_firstwin;
16887 if (wp == NULL)
16888 rettv->vval.v_number = 0;
16889 else
16891 if (rettv_list_alloc(rettv) == FAIL)
16892 rettv->vval.v_number = 0;
16893 else
16895 for (; wp != NULL; wp = wp->w_next)
16896 if (list_append_number(rettv->vval.v_list,
16897 wp->w_buffer->b_fnum) == FAIL)
16898 break;
16901 #endif
16906 * "tabpagenr()" function
16908 /* ARGSUSED */
16909 static void
16910 f_tabpagenr(argvars, rettv)
16911 typval_T *argvars;
16912 typval_T *rettv;
16914 int nr = 1;
16915 #ifdef FEAT_WINDOWS
16916 char_u *arg;
16918 if (argvars[0].v_type != VAR_UNKNOWN)
16920 arg = get_tv_string_chk(&argvars[0]);
16921 nr = 0;
16922 if (arg != NULL)
16924 if (STRCMP(arg, "$") == 0)
16925 nr = tabpage_index(NULL) - 1;
16926 else
16927 EMSG2(_(e_invexpr2), arg);
16930 else
16931 nr = tabpage_index(curtab);
16932 #endif
16933 rettv->vval.v_number = nr;
16937 #ifdef FEAT_WINDOWS
16938 static int get_winnr __ARGS((tabpage_T *tp, typval_T *argvar));
16941 * Common code for tabpagewinnr() and winnr().
16943 static int
16944 get_winnr(tp, argvar)
16945 tabpage_T *tp;
16946 typval_T *argvar;
16948 win_T *twin;
16949 int nr = 1;
16950 win_T *wp;
16951 char_u *arg;
16953 twin = (tp == curtab) ? curwin : tp->tp_curwin;
16954 if (argvar->v_type != VAR_UNKNOWN)
16956 arg = get_tv_string_chk(argvar);
16957 if (arg == NULL)
16958 nr = 0; /* type error; errmsg already given */
16959 else if (STRCMP(arg, "$") == 0)
16960 twin = (tp == curtab) ? lastwin : tp->tp_lastwin;
16961 else if (STRCMP(arg, "#") == 0)
16963 twin = (tp == curtab) ? prevwin : tp->tp_prevwin;
16964 if (twin == NULL)
16965 nr = 0;
16967 else
16969 EMSG2(_(e_invexpr2), arg);
16970 nr = 0;
16974 if (nr > 0)
16975 for (wp = (tp == curtab) ? firstwin : tp->tp_firstwin;
16976 wp != twin; wp = wp->w_next)
16978 if (wp == NULL)
16980 /* didn't find it in this tabpage */
16981 nr = 0;
16982 break;
16984 ++nr;
16986 return nr;
16988 #endif
16991 * "tabpagewinnr()" function
16993 /* ARGSUSED */
16994 static void
16995 f_tabpagewinnr(argvars, rettv)
16996 typval_T *argvars;
16997 typval_T *rettv;
16999 int nr = 1;
17000 #ifdef FEAT_WINDOWS
17001 tabpage_T *tp;
17003 tp = find_tabpage((int)get_tv_number(&argvars[0]));
17004 if (tp == NULL)
17005 nr = 0;
17006 else
17007 nr = get_winnr(tp, &argvars[1]);
17008 #endif
17009 rettv->vval.v_number = nr;
17014 * "tagfiles()" function
17016 /*ARGSUSED*/
17017 static void
17018 f_tagfiles(argvars, rettv)
17019 typval_T *argvars;
17020 typval_T *rettv;
17022 char_u fname[MAXPATHL + 1];
17023 tagname_T tn;
17024 int first;
17026 if (rettv_list_alloc(rettv) == FAIL)
17028 rettv->vval.v_number = 0;
17029 return;
17032 for (first = TRUE; ; first = FALSE)
17033 if (get_tagfname(&tn, first, fname) == FAIL
17034 || list_append_string(rettv->vval.v_list, fname, -1) == FAIL)
17035 break;
17036 tagname_free(&tn);
17040 * "taglist()" function
17042 static void
17043 f_taglist(argvars, rettv)
17044 typval_T *argvars;
17045 typval_T *rettv;
17047 char_u *tag_pattern;
17049 tag_pattern = get_tv_string(&argvars[0]);
17051 rettv->vval.v_number = FALSE;
17052 if (*tag_pattern == NUL)
17053 return;
17055 if (rettv_list_alloc(rettv) == OK)
17056 (void)get_tags(rettv->vval.v_list, tag_pattern);
17060 * "tempname()" function
17062 /*ARGSUSED*/
17063 static void
17064 f_tempname(argvars, rettv)
17065 typval_T *argvars;
17066 typval_T *rettv;
17068 static int x = 'A';
17070 rettv->v_type = VAR_STRING;
17071 rettv->vval.v_string = vim_tempname(x);
17073 /* Advance 'x' to use A-Z and 0-9, so that there are at least 34 different
17074 * names. Skip 'I' and 'O', they are used for shell redirection. */
17077 if (x == 'Z')
17078 x = '0';
17079 else if (x == '9')
17080 x = 'A';
17081 else
17083 #ifdef EBCDIC
17084 if (x == 'I')
17085 x = 'J';
17086 else if (x == 'R')
17087 x = 'S';
17088 else
17089 #endif
17090 ++x;
17092 } while (x == 'I' || x == 'O');
17096 * "test(list)" function: Just checking the walls...
17098 /*ARGSUSED*/
17099 static void
17100 f_test(argvars, rettv)
17101 typval_T *argvars;
17102 typval_T *rettv;
17104 /* Used for unit testing. Change the code below to your liking. */
17105 #if 0
17106 listitem_T *li;
17107 list_T *l;
17108 char_u *bad, *good;
17110 if (argvars[0].v_type != VAR_LIST)
17111 return;
17112 l = argvars[0].vval.v_list;
17113 if (l == NULL)
17114 return;
17115 li = l->lv_first;
17116 if (li == NULL)
17117 return;
17118 bad = get_tv_string(&li->li_tv);
17119 li = li->li_next;
17120 if (li == NULL)
17121 return;
17122 good = get_tv_string(&li->li_tv);
17123 rettv->vval.v_number = test_edit_score(bad, good);
17124 #endif
17128 * "tolower(string)" function
17130 static void
17131 f_tolower(argvars, rettv)
17132 typval_T *argvars;
17133 typval_T *rettv;
17135 char_u *p;
17137 p = vim_strsave(get_tv_string(&argvars[0]));
17138 rettv->v_type = VAR_STRING;
17139 rettv->vval.v_string = p;
17141 if (p != NULL)
17142 while (*p != NUL)
17144 #ifdef FEAT_MBYTE
17145 int l;
17147 if (enc_utf8)
17149 int c, lc;
17151 c = utf_ptr2char(p);
17152 lc = utf_tolower(c);
17153 l = utf_ptr2len(p);
17154 /* TODO: reallocate string when byte count changes. */
17155 if (utf_char2len(lc) == l)
17156 utf_char2bytes(lc, p);
17157 p += l;
17159 else if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
17160 p += l; /* skip multi-byte character */
17161 else
17162 #endif
17164 *p = TOLOWER_LOC(*p); /* note that tolower() can be a macro */
17165 ++p;
17171 * "toupper(string)" function
17173 static void
17174 f_toupper(argvars, rettv)
17175 typval_T *argvars;
17176 typval_T *rettv;
17178 rettv->v_type = VAR_STRING;
17179 rettv->vval.v_string = strup_save(get_tv_string(&argvars[0]));
17183 * "tr(string, fromstr, tostr)" function
17185 static void
17186 f_tr(argvars, rettv)
17187 typval_T *argvars;
17188 typval_T *rettv;
17190 char_u *instr;
17191 char_u *fromstr;
17192 char_u *tostr;
17193 char_u *p;
17194 #ifdef FEAT_MBYTE
17195 int inlen;
17196 int fromlen;
17197 int tolen;
17198 int idx;
17199 char_u *cpstr;
17200 int cplen;
17201 int first = TRUE;
17202 #endif
17203 char_u buf[NUMBUFLEN];
17204 char_u buf2[NUMBUFLEN];
17205 garray_T ga;
17207 instr = get_tv_string(&argvars[0]);
17208 fromstr = get_tv_string_buf_chk(&argvars[1], buf);
17209 tostr = get_tv_string_buf_chk(&argvars[2], buf2);
17211 /* Default return value: empty string. */
17212 rettv->v_type = VAR_STRING;
17213 rettv->vval.v_string = NULL;
17214 if (fromstr == NULL || tostr == NULL)
17215 return; /* type error; errmsg already given */
17216 ga_init2(&ga, (int)sizeof(char), 80);
17218 #ifdef FEAT_MBYTE
17219 if (!has_mbyte)
17220 #endif
17221 /* not multi-byte: fromstr and tostr must be the same length */
17222 if (STRLEN(fromstr) != STRLEN(tostr))
17224 #ifdef FEAT_MBYTE
17225 error:
17226 #endif
17227 EMSG2(_(e_invarg2), fromstr);
17228 ga_clear(&ga);
17229 return;
17232 /* fromstr and tostr have to contain the same number of chars */
17233 while (*instr != NUL)
17235 #ifdef FEAT_MBYTE
17236 if (has_mbyte)
17238 inlen = (*mb_ptr2len)(instr);
17239 cpstr = instr;
17240 cplen = inlen;
17241 idx = 0;
17242 for (p = fromstr; *p != NUL; p += fromlen)
17244 fromlen = (*mb_ptr2len)(p);
17245 if (fromlen == inlen && STRNCMP(instr, p, inlen) == 0)
17247 for (p = tostr; *p != NUL; p += tolen)
17249 tolen = (*mb_ptr2len)(p);
17250 if (idx-- == 0)
17252 cplen = tolen;
17253 cpstr = p;
17254 break;
17257 if (*p == NUL) /* tostr is shorter than fromstr */
17258 goto error;
17259 break;
17261 ++idx;
17264 if (first && cpstr == instr)
17266 /* Check that fromstr and tostr have the same number of
17267 * (multi-byte) characters. Done only once when a character
17268 * of instr doesn't appear in fromstr. */
17269 first = FALSE;
17270 for (p = tostr; *p != NUL; p += tolen)
17272 tolen = (*mb_ptr2len)(p);
17273 --idx;
17275 if (idx != 0)
17276 goto error;
17279 ga_grow(&ga, cplen);
17280 mch_memmove((char *)ga.ga_data + ga.ga_len, cpstr, (size_t)cplen);
17281 ga.ga_len += cplen;
17283 instr += inlen;
17285 else
17286 #endif
17288 /* When not using multi-byte chars we can do it faster. */
17289 p = vim_strchr(fromstr, *instr);
17290 if (p != NULL)
17291 ga_append(&ga, tostr[p - fromstr]);
17292 else
17293 ga_append(&ga, *instr);
17294 ++instr;
17298 /* add a terminating NUL */
17299 ga_grow(&ga, 1);
17300 ga_append(&ga, NUL);
17302 rettv->vval.v_string = ga.ga_data;
17305 #ifdef FEAT_FLOAT
17307 * "trunc({float})" function
17309 static void
17310 f_trunc(argvars, rettv)
17311 typval_T *argvars;
17312 typval_T *rettv;
17314 float_T f;
17316 rettv->v_type = VAR_FLOAT;
17317 if (get_float_arg(argvars, &f) == OK)
17318 /* trunc() is not in C90, use floor() or ceil() instead. */
17319 rettv->vval.v_float = f > 0 ? floor(f) : ceil(f);
17320 else
17321 rettv->vval.v_float = 0.0;
17323 #endif
17326 * "type(expr)" function
17328 static void
17329 f_type(argvars, rettv)
17330 typval_T *argvars;
17331 typval_T *rettv;
17333 int n;
17335 switch (argvars[0].v_type)
17337 case VAR_NUMBER: n = 0; break;
17338 case VAR_STRING: n = 1; break;
17339 case VAR_FUNC: n = 2; break;
17340 case VAR_LIST: n = 3; break;
17341 case VAR_DICT: n = 4; break;
17342 #ifdef FEAT_FLOAT
17343 case VAR_FLOAT: n = 5; break;
17344 #endif
17345 default: EMSG2(_(e_intern2), "f_type()"); n = 0; break;
17347 rettv->vval.v_number = n;
17351 * "values(dict)" function
17353 static void
17354 f_values(argvars, rettv)
17355 typval_T *argvars;
17356 typval_T *rettv;
17358 dict_list(argvars, rettv, 1);
17362 * "virtcol(string)" function
17364 static void
17365 f_virtcol(argvars, rettv)
17366 typval_T *argvars;
17367 typval_T *rettv;
17369 colnr_T vcol = 0;
17370 pos_T *fp;
17371 int fnum = curbuf->b_fnum;
17373 fp = var2fpos(&argvars[0], FALSE, &fnum);
17374 if (fp != NULL && fp->lnum <= curbuf->b_ml.ml_line_count
17375 && fnum == curbuf->b_fnum)
17377 getvvcol(curwin, fp, NULL, NULL, &vcol);
17378 ++vcol;
17381 rettv->vval.v_number = vcol;
17385 * "visualmode()" function
17387 /*ARGSUSED*/
17388 static void
17389 f_visualmode(argvars, rettv)
17390 typval_T *argvars;
17391 typval_T *rettv;
17393 #ifdef FEAT_VISUAL
17394 char_u str[2];
17396 rettv->v_type = VAR_STRING;
17397 str[0] = curbuf->b_visual_mode_eval;
17398 str[1] = NUL;
17399 rettv->vval.v_string = vim_strsave(str);
17401 /* A non-zero number or non-empty string argument: reset mode. */
17402 if (non_zero_arg(&argvars[0]))
17403 curbuf->b_visual_mode_eval = NUL;
17404 #else
17405 rettv->vval.v_number = 0; /* return anything, it won't work anyway */
17406 #endif
17410 * "winbufnr(nr)" function
17412 static void
17413 f_winbufnr(argvars, rettv)
17414 typval_T *argvars;
17415 typval_T *rettv;
17417 win_T *wp;
17419 wp = find_win_by_nr(&argvars[0], NULL);
17420 if (wp == NULL)
17421 rettv->vval.v_number = -1;
17422 else
17423 rettv->vval.v_number = wp->w_buffer->b_fnum;
17427 * "wincol()" function
17429 /*ARGSUSED*/
17430 static void
17431 f_wincol(argvars, rettv)
17432 typval_T *argvars;
17433 typval_T *rettv;
17435 validate_cursor();
17436 rettv->vval.v_number = curwin->w_wcol + 1;
17440 * "winheight(nr)" function
17442 static void
17443 f_winheight(argvars, rettv)
17444 typval_T *argvars;
17445 typval_T *rettv;
17447 win_T *wp;
17449 wp = find_win_by_nr(&argvars[0], NULL);
17450 if (wp == NULL)
17451 rettv->vval.v_number = -1;
17452 else
17453 rettv->vval.v_number = wp->w_height;
17457 * "winline()" function
17459 /*ARGSUSED*/
17460 static void
17461 f_winline(argvars, rettv)
17462 typval_T *argvars;
17463 typval_T *rettv;
17465 validate_cursor();
17466 rettv->vval.v_number = curwin->w_wrow + 1;
17470 * "winnr()" function
17472 /* ARGSUSED */
17473 static void
17474 f_winnr(argvars, rettv)
17475 typval_T *argvars;
17476 typval_T *rettv;
17478 int nr = 1;
17480 #ifdef FEAT_WINDOWS
17481 nr = get_winnr(curtab, &argvars[0]);
17482 #endif
17483 rettv->vval.v_number = nr;
17487 * "winrestcmd()" function
17489 /* ARGSUSED */
17490 static void
17491 f_winrestcmd(argvars, rettv)
17492 typval_T *argvars;
17493 typval_T *rettv;
17495 #ifdef FEAT_WINDOWS
17496 win_T *wp;
17497 int winnr = 1;
17498 garray_T ga;
17499 char_u buf[50];
17501 ga_init2(&ga, (int)sizeof(char), 70);
17502 for (wp = firstwin; wp != NULL; wp = wp->w_next)
17504 sprintf((char *)buf, "%dresize %d|", winnr, wp->w_height);
17505 ga_concat(&ga, buf);
17506 # ifdef FEAT_VERTSPLIT
17507 sprintf((char *)buf, "vert %dresize %d|", winnr, wp->w_width);
17508 ga_concat(&ga, buf);
17509 # endif
17510 ++winnr;
17512 ga_append(&ga, NUL);
17514 rettv->vval.v_string = ga.ga_data;
17515 #else
17516 rettv->vval.v_string = NULL;
17517 #endif
17518 rettv->v_type = VAR_STRING;
17522 * "winrestview()" function
17524 /* ARGSUSED */
17525 static void
17526 f_winrestview(argvars, rettv)
17527 typval_T *argvars;
17528 typval_T *rettv;
17530 dict_T *dict;
17532 if (argvars[0].v_type != VAR_DICT
17533 || (dict = argvars[0].vval.v_dict) == NULL)
17534 EMSG(_(e_invarg));
17535 else
17537 curwin->w_cursor.lnum = get_dict_number(dict, (char_u *)"lnum");
17538 curwin->w_cursor.col = get_dict_number(dict, (char_u *)"col");
17539 #ifdef FEAT_VIRTUALEDIT
17540 curwin->w_cursor.coladd = get_dict_number(dict, (char_u *)"coladd");
17541 #endif
17542 curwin->w_curswant = get_dict_number(dict, (char_u *)"curswant");
17543 curwin->w_set_curswant = FALSE;
17545 set_topline(curwin, get_dict_number(dict, (char_u *)"topline"));
17546 #ifdef FEAT_DIFF
17547 curwin->w_topfill = get_dict_number(dict, (char_u *)"topfill");
17548 #endif
17549 curwin->w_leftcol = get_dict_number(dict, (char_u *)"leftcol");
17550 curwin->w_skipcol = get_dict_number(dict, (char_u *)"skipcol");
17552 check_cursor();
17553 changed_cline_bef_curs();
17554 invalidate_botline();
17555 redraw_later(VALID);
17557 if (curwin->w_topline == 0)
17558 curwin->w_topline = 1;
17559 if (curwin->w_topline > curbuf->b_ml.ml_line_count)
17560 curwin->w_topline = curbuf->b_ml.ml_line_count;
17561 #ifdef FEAT_DIFF
17562 check_topfill(curwin, TRUE);
17563 #endif
17568 * "winsaveview()" function
17570 /* ARGSUSED */
17571 static void
17572 f_winsaveview(argvars, rettv)
17573 typval_T *argvars;
17574 typval_T *rettv;
17576 dict_T *dict;
17578 dict = dict_alloc();
17579 if (dict == NULL)
17580 return;
17581 rettv->v_type = VAR_DICT;
17582 rettv->vval.v_dict = dict;
17583 ++dict->dv_refcount;
17585 dict_add_nr_str(dict, "lnum", (long)curwin->w_cursor.lnum, NULL);
17586 dict_add_nr_str(dict, "col", (long)curwin->w_cursor.col, NULL);
17587 #ifdef FEAT_VIRTUALEDIT
17588 dict_add_nr_str(dict, "coladd", (long)curwin->w_cursor.coladd, NULL);
17589 #endif
17590 update_curswant();
17591 dict_add_nr_str(dict, "curswant", (long)curwin->w_curswant, NULL);
17593 dict_add_nr_str(dict, "topline", (long)curwin->w_topline, NULL);
17594 #ifdef FEAT_DIFF
17595 dict_add_nr_str(dict, "topfill", (long)curwin->w_topfill, NULL);
17596 #endif
17597 dict_add_nr_str(dict, "leftcol", (long)curwin->w_leftcol, NULL);
17598 dict_add_nr_str(dict, "skipcol", (long)curwin->w_skipcol, NULL);
17602 * "winwidth(nr)" function
17604 static void
17605 f_winwidth(argvars, rettv)
17606 typval_T *argvars;
17607 typval_T *rettv;
17609 win_T *wp;
17611 wp = find_win_by_nr(&argvars[0], NULL);
17612 if (wp == NULL)
17613 rettv->vval.v_number = -1;
17614 else
17615 #ifdef FEAT_VERTSPLIT
17616 rettv->vval.v_number = wp->w_width;
17617 #else
17618 rettv->vval.v_number = Columns;
17619 #endif
17623 * "writefile()" function
17625 static void
17626 f_writefile(argvars, rettv)
17627 typval_T *argvars;
17628 typval_T *rettv;
17630 int binary = FALSE;
17631 char_u *fname;
17632 FILE *fd;
17633 listitem_T *li;
17634 char_u *s;
17635 int ret = 0;
17636 int c;
17638 if (check_restricted() || check_secure())
17639 return;
17641 if (argvars[0].v_type != VAR_LIST)
17643 EMSG2(_(e_listarg), "writefile()");
17644 return;
17646 if (argvars[0].vval.v_list == NULL)
17647 return;
17649 if (argvars[2].v_type != VAR_UNKNOWN
17650 && STRCMP(get_tv_string(&argvars[2]), "b") == 0)
17651 binary = TRUE;
17653 /* Always open the file in binary mode, library functions have a mind of
17654 * their own about CR-LF conversion. */
17655 fname = get_tv_string(&argvars[1]);
17656 if (*fname == NUL || (fd = mch_fopen((char *)fname, WRITEBIN)) == NULL)
17658 EMSG2(_(e_notcreate), *fname == NUL ? (char_u *)_("<empty>") : fname);
17659 ret = -1;
17661 else
17663 for (li = argvars[0].vval.v_list->lv_first; li != NULL;
17664 li = li->li_next)
17666 for (s = get_tv_string(&li->li_tv); *s != NUL; ++s)
17668 if (*s == '\n')
17669 c = putc(NUL, fd);
17670 else
17671 c = putc(*s, fd);
17672 if (c == EOF)
17674 ret = -1;
17675 break;
17678 if (!binary || li->li_next != NULL)
17679 if (putc('\n', fd) == EOF)
17681 ret = -1;
17682 break;
17684 if (ret < 0)
17686 EMSG(_(e_write));
17687 break;
17690 fclose(fd);
17693 rettv->vval.v_number = ret;
17697 * Translate a String variable into a position.
17698 * Returns NULL when there is an error.
17700 static pos_T *
17701 var2fpos(varp, dollar_lnum, fnum)
17702 typval_T *varp;
17703 int dollar_lnum; /* TRUE when $ is last line */
17704 int *fnum; /* set to fnum for '0, 'A, etc. */
17706 char_u *name;
17707 static pos_T pos;
17708 pos_T *pp;
17710 /* Argument can be [lnum, col, coladd]. */
17711 if (varp->v_type == VAR_LIST)
17713 list_T *l;
17714 int len;
17715 int error = FALSE;
17716 listitem_T *li;
17718 l = varp->vval.v_list;
17719 if (l == NULL)
17720 return NULL;
17722 /* Get the line number */
17723 pos.lnum = list_find_nr(l, 0L, &error);
17724 if (error || pos.lnum <= 0 || pos.lnum > curbuf->b_ml.ml_line_count)
17725 return NULL; /* invalid line number */
17727 /* Get the column number */
17728 pos.col = list_find_nr(l, 1L, &error);
17729 if (error)
17730 return NULL;
17731 len = (long)STRLEN(ml_get(pos.lnum));
17733 /* We accept "$" for the column number: last column. */
17734 li = list_find(l, 1L);
17735 if (li != NULL && li->li_tv.v_type == VAR_STRING
17736 && li->li_tv.vval.v_string != NULL
17737 && STRCMP(li->li_tv.vval.v_string, "$") == 0)
17738 pos.col = len + 1;
17740 /* Accept a position up to the NUL after the line. */
17741 if (pos.col == 0 || (int)pos.col > len + 1)
17742 return NULL; /* invalid column number */
17743 --pos.col;
17745 #ifdef FEAT_VIRTUALEDIT
17746 /* Get the virtual offset. Defaults to zero. */
17747 pos.coladd = list_find_nr(l, 2L, &error);
17748 if (error)
17749 pos.coladd = 0;
17750 #endif
17752 return &pos;
17755 name = get_tv_string_chk(varp);
17756 if (name == NULL)
17757 return NULL;
17758 if (name[0] == '.') /* cursor */
17759 return &curwin->w_cursor;
17760 #ifdef FEAT_VISUAL
17761 if (name[0] == 'v' && name[1] == NUL) /* Visual start */
17763 if (VIsual_active)
17764 return &VIsual;
17765 return &curwin->w_cursor;
17767 #endif
17768 if (name[0] == '\'') /* mark */
17770 pp = getmark_fnum(name[1], FALSE, fnum);
17771 if (pp == NULL || pp == (pos_T *)-1 || pp->lnum <= 0)
17772 return NULL;
17773 return pp;
17776 #ifdef FEAT_VIRTUALEDIT
17777 pos.coladd = 0;
17778 #endif
17780 if (name[0] == 'w' && dollar_lnum)
17782 pos.col = 0;
17783 if (name[1] == '0') /* "w0": first visible line */
17785 update_topline();
17786 pos.lnum = curwin->w_topline;
17787 return &pos;
17789 else if (name[1] == '$') /* "w$": last visible line */
17791 validate_botline();
17792 pos.lnum = curwin->w_botline - 1;
17793 return &pos;
17796 else if (name[0] == '$') /* last column or line */
17798 if (dollar_lnum)
17800 pos.lnum = curbuf->b_ml.ml_line_count;
17801 pos.col = 0;
17803 else
17805 pos.lnum = curwin->w_cursor.lnum;
17806 pos.col = (colnr_T)STRLEN(ml_get_curline());
17808 return &pos;
17810 return NULL;
17814 * Convert list in "arg" into a position and optional file number.
17815 * When "fnump" is NULL there is no file number, only 3 items.
17816 * Note that the column is passed on as-is, the caller may want to decrement
17817 * it to use 1 for the first column.
17818 * Return FAIL when conversion is not possible, doesn't check the position for
17819 * validity.
17821 static int
17822 list2fpos(arg, posp, fnump)
17823 typval_T *arg;
17824 pos_T *posp;
17825 int *fnump;
17827 list_T *l = arg->vval.v_list;
17828 long i = 0;
17829 long n;
17831 /* List must be: [fnum, lnum, col, coladd], where "fnum" is only there
17832 * when "fnump" isn't NULL and "coladd" is optional. */
17833 if (arg->v_type != VAR_LIST
17834 || l == NULL
17835 || l->lv_len < (fnump == NULL ? 2 : 3)
17836 || l->lv_len > (fnump == NULL ? 3 : 4))
17837 return FAIL;
17839 if (fnump != NULL)
17841 n = list_find_nr(l, i++, NULL); /* fnum */
17842 if (n < 0)
17843 return FAIL;
17844 if (n == 0)
17845 n = curbuf->b_fnum; /* current buffer */
17846 *fnump = n;
17849 n = list_find_nr(l, i++, NULL); /* lnum */
17850 if (n < 0)
17851 return FAIL;
17852 posp->lnum = n;
17854 n = list_find_nr(l, i++, NULL); /* col */
17855 if (n < 0)
17856 return FAIL;
17857 posp->col = n;
17859 #ifdef FEAT_VIRTUALEDIT
17860 n = list_find_nr(l, i, NULL);
17861 if (n < 0)
17862 posp->coladd = 0;
17863 else
17864 posp->coladd = n;
17865 #endif
17867 return OK;
17871 * Get the length of an environment variable name.
17872 * Advance "arg" to the first character after the name.
17873 * Return 0 for error.
17875 static int
17876 get_env_len(arg)
17877 char_u **arg;
17879 char_u *p;
17880 int len;
17882 for (p = *arg; vim_isIDc(*p); ++p)
17884 if (p == *arg) /* no name found */
17885 return 0;
17887 len = (int)(p - *arg);
17888 *arg = p;
17889 return len;
17893 * Get the length of the name of a function or internal variable.
17894 * "arg" is advanced to the first non-white character after the name.
17895 * Return 0 if something is wrong.
17897 static int
17898 get_id_len(arg)
17899 char_u **arg;
17901 char_u *p;
17902 int len;
17904 /* Find the end of the name. */
17905 for (p = *arg; eval_isnamec(*p); ++p)
17907 if (p == *arg) /* no name found */
17908 return 0;
17910 len = (int)(p - *arg);
17911 *arg = skipwhite(p);
17913 return len;
17917 * Get the length of the name of a variable or function.
17918 * Only the name is recognized, does not handle ".key" or "[idx]".
17919 * "arg" is advanced to the first non-white character after the name.
17920 * Return -1 if curly braces expansion failed.
17921 * Return 0 if something else is wrong.
17922 * If the name contains 'magic' {}'s, expand them and return the
17923 * expanded name in an allocated string via 'alias' - caller must free.
17925 static int
17926 get_name_len(arg, alias, evaluate, verbose)
17927 char_u **arg;
17928 char_u **alias;
17929 int evaluate;
17930 int verbose;
17932 int len;
17933 char_u *p;
17934 char_u *expr_start;
17935 char_u *expr_end;
17937 *alias = NULL; /* default to no alias */
17939 if ((*arg)[0] == K_SPECIAL && (*arg)[1] == KS_EXTRA
17940 && (*arg)[2] == (int)KE_SNR)
17942 /* hard coded <SNR>, already translated */
17943 *arg += 3;
17944 return get_id_len(arg) + 3;
17946 len = eval_fname_script(*arg);
17947 if (len > 0)
17949 /* literal "<SID>", "s:" or "<SNR>" */
17950 *arg += len;
17954 * Find the end of the name; check for {} construction.
17956 p = find_name_end(*arg, &expr_start, &expr_end,
17957 len > 0 ? 0 : FNE_CHECK_START);
17958 if (expr_start != NULL)
17960 char_u *temp_string;
17962 if (!evaluate)
17964 len += (int)(p - *arg);
17965 *arg = skipwhite(p);
17966 return len;
17970 * Include any <SID> etc in the expanded string:
17971 * Thus the -len here.
17973 temp_string = make_expanded_name(*arg - len, expr_start, expr_end, p);
17974 if (temp_string == NULL)
17975 return -1;
17976 *alias = temp_string;
17977 *arg = skipwhite(p);
17978 return (int)STRLEN(temp_string);
17981 len += get_id_len(arg);
17982 if (len == 0 && verbose)
17983 EMSG2(_(e_invexpr2), *arg);
17985 return len;
17989 * Find the end of a variable or function name, taking care of magic braces.
17990 * If "expr_start" is not NULL then "expr_start" and "expr_end" are set to the
17991 * start and end of the first magic braces item.
17992 * "flags" can have FNE_INCL_BR and FNE_CHECK_START.
17993 * Return a pointer to just after the name. Equal to "arg" if there is no
17994 * valid name.
17996 static char_u *
17997 find_name_end(arg, expr_start, expr_end, flags)
17998 char_u *arg;
17999 char_u **expr_start;
18000 char_u **expr_end;
18001 int flags;
18003 int mb_nest = 0;
18004 int br_nest = 0;
18005 char_u *p;
18007 if (expr_start != NULL)
18009 *expr_start = NULL;
18010 *expr_end = NULL;
18013 /* Quick check for valid starting character. */
18014 if ((flags & FNE_CHECK_START) && !eval_isnamec1(*arg) && *arg != '{')
18015 return arg;
18017 for (p = arg; *p != NUL
18018 && (eval_isnamec(*p)
18019 || *p == '{'
18020 || ((flags & FNE_INCL_BR) && (*p == '[' || *p == '.'))
18021 || mb_nest != 0
18022 || br_nest != 0); mb_ptr_adv(p))
18024 if (*p == '\'')
18026 /* skip over 'string' to avoid counting [ and ] inside it. */
18027 for (p = p + 1; *p != NUL && *p != '\''; mb_ptr_adv(p))
18029 if (*p == NUL)
18030 break;
18032 else if (*p == '"')
18034 /* skip over "str\"ing" to avoid counting [ and ] inside it. */
18035 for (p = p + 1; *p != NUL && *p != '"'; mb_ptr_adv(p))
18036 if (*p == '\\' && p[1] != NUL)
18037 ++p;
18038 if (*p == NUL)
18039 break;
18042 if (mb_nest == 0)
18044 if (*p == '[')
18045 ++br_nest;
18046 else if (*p == ']')
18047 --br_nest;
18050 if (br_nest == 0)
18052 if (*p == '{')
18054 mb_nest++;
18055 if (expr_start != NULL && *expr_start == NULL)
18056 *expr_start = p;
18058 else if (*p == '}')
18060 mb_nest--;
18061 if (expr_start != NULL && mb_nest == 0 && *expr_end == NULL)
18062 *expr_end = p;
18067 return p;
18071 * Expands out the 'magic' {}'s in a variable/function name.
18072 * Note that this can call itself recursively, to deal with
18073 * constructs like foo{bar}{baz}{bam}
18074 * The four pointer arguments point to "foo{expre}ss{ion}bar"
18075 * "in_start" ^
18076 * "expr_start" ^
18077 * "expr_end" ^
18078 * "in_end" ^
18080 * Returns a new allocated string, which the caller must free.
18081 * Returns NULL for failure.
18083 static char_u *
18084 make_expanded_name(in_start, expr_start, expr_end, in_end)
18085 char_u *in_start;
18086 char_u *expr_start;
18087 char_u *expr_end;
18088 char_u *in_end;
18090 char_u c1;
18091 char_u *retval = NULL;
18092 char_u *temp_result;
18093 char_u *nextcmd = NULL;
18095 if (expr_end == NULL || in_end == NULL)
18096 return NULL;
18097 *expr_start = NUL;
18098 *expr_end = NUL;
18099 c1 = *in_end;
18100 *in_end = NUL;
18102 temp_result = eval_to_string(expr_start + 1, &nextcmd, FALSE);
18103 if (temp_result != NULL && nextcmd == NULL)
18105 retval = alloc((unsigned)(STRLEN(temp_result) + (expr_start - in_start)
18106 + (in_end - expr_end) + 1));
18107 if (retval != NULL)
18109 STRCPY(retval, in_start);
18110 STRCAT(retval, temp_result);
18111 STRCAT(retval, expr_end + 1);
18114 vim_free(temp_result);
18116 *in_end = c1; /* put char back for error messages */
18117 *expr_start = '{';
18118 *expr_end = '}';
18120 if (retval != NULL)
18122 temp_result = find_name_end(retval, &expr_start, &expr_end, 0);
18123 if (expr_start != NULL)
18125 /* Further expansion! */
18126 temp_result = make_expanded_name(retval, expr_start,
18127 expr_end, temp_result);
18128 vim_free(retval);
18129 retval = temp_result;
18133 return retval;
18137 * Return TRUE if character "c" can be used in a variable or function name.
18138 * Does not include '{' or '}' for magic braces.
18140 static int
18141 eval_isnamec(c)
18142 int c;
18144 return (ASCII_ISALNUM(c) || c == '_' || c == ':' || c == AUTOLOAD_CHAR);
18148 * Return TRUE if character "c" can be used as the first character in a
18149 * variable or function name (excluding '{' and '}').
18151 static int
18152 eval_isnamec1(c)
18153 int c;
18155 return (ASCII_ISALPHA(c) || c == '_');
18159 * Set number v: variable to "val".
18161 void
18162 set_vim_var_nr(idx, val)
18163 int idx;
18164 long val;
18166 vimvars[idx].vv_nr = val;
18170 * Get number v: variable value.
18172 long
18173 get_vim_var_nr(idx)
18174 int idx;
18176 return vimvars[idx].vv_nr;
18180 * Get string v: variable value. Uses a static buffer, can only be used once.
18182 char_u *
18183 get_vim_var_str(idx)
18184 int idx;
18186 return get_tv_string(&vimvars[idx].vv_tv);
18190 * Get List v: variable value. Caller must take care of reference count when
18191 * needed.
18193 list_T *
18194 get_vim_var_list(idx)
18195 int idx;
18197 return vimvars[idx].vv_list;
18201 * Set v:count to "count" and v:count1 to "count1".
18202 * When "set_prevcount" is TRUE first set v:prevcount from v:count.
18204 void
18205 set_vcount(count, count1, set_prevcount)
18206 long count;
18207 long count1;
18208 int set_prevcount;
18210 if (set_prevcount)
18211 vimvars[VV_PREVCOUNT].vv_nr = vimvars[VV_COUNT].vv_nr;
18212 vimvars[VV_COUNT].vv_nr = count;
18213 vimvars[VV_COUNT1].vv_nr = count1;
18217 * Set string v: variable to a copy of "val".
18219 void
18220 set_vim_var_string(idx, val, len)
18221 int idx;
18222 char_u *val;
18223 int len; /* length of "val" to use or -1 (whole string) */
18225 /* Need to do this (at least) once, since we can't initialize a union.
18226 * Will always be invoked when "v:progname" is set. */
18227 vimvars[VV_VERSION].vv_nr = VIM_VERSION_100;
18229 vim_free(vimvars[idx].vv_str);
18230 if (val == NULL)
18231 vimvars[idx].vv_str = NULL;
18232 else if (len == -1)
18233 vimvars[idx].vv_str = vim_strsave(val);
18234 else
18235 vimvars[idx].vv_str = vim_strnsave(val, len);
18239 * Set List v: variable to "val".
18241 void
18242 set_vim_var_list(idx, val)
18243 int idx;
18244 list_T *val;
18246 list_unref(vimvars[idx].vv_list);
18247 vimvars[idx].vv_list = val;
18248 if (val != NULL)
18249 ++val->lv_refcount;
18253 * Set v:register if needed.
18255 void
18256 set_reg_var(c)
18257 int c;
18259 char_u regname;
18261 if (c == 0 || c == ' ')
18262 regname = '"';
18263 else
18264 regname = c;
18265 /* Avoid free/alloc when the value is already right. */
18266 if (vimvars[VV_REG].vv_str == NULL || vimvars[VV_REG].vv_str[0] != c)
18267 set_vim_var_string(VV_REG, &regname, 1);
18271 * Get or set v:exception. If "oldval" == NULL, return the current value.
18272 * Otherwise, restore the value to "oldval" and return NULL.
18273 * Must always be called in pairs to save and restore v:exception! Does not
18274 * take care of memory allocations.
18276 char_u *
18277 v_exception(oldval)
18278 char_u *oldval;
18280 if (oldval == NULL)
18281 return vimvars[VV_EXCEPTION].vv_str;
18283 vimvars[VV_EXCEPTION].vv_str = oldval;
18284 return NULL;
18288 * Get or set v:throwpoint. If "oldval" == NULL, return the current value.
18289 * Otherwise, restore the value to "oldval" and return NULL.
18290 * Must always be called in pairs to save and restore v:throwpoint! Does not
18291 * take care of memory allocations.
18293 char_u *
18294 v_throwpoint(oldval)
18295 char_u *oldval;
18297 if (oldval == NULL)
18298 return vimvars[VV_THROWPOINT].vv_str;
18300 vimvars[VV_THROWPOINT].vv_str = oldval;
18301 return NULL;
18304 #if defined(FEAT_AUTOCMD) || defined(PROTO)
18306 * Set v:cmdarg.
18307 * If "eap" != NULL, use "eap" to generate the value and return the old value.
18308 * If "oldarg" != NULL, restore the value to "oldarg" and return NULL.
18309 * Must always be called in pairs!
18311 char_u *
18312 set_cmdarg(eap, oldarg)
18313 exarg_T *eap;
18314 char_u *oldarg;
18316 char_u *oldval;
18317 char_u *newval;
18318 unsigned len;
18320 oldval = vimvars[VV_CMDARG].vv_str;
18321 if (eap == NULL)
18323 vim_free(oldval);
18324 vimvars[VV_CMDARG].vv_str = oldarg;
18325 return NULL;
18328 if (eap->force_bin == FORCE_BIN)
18329 len = 6;
18330 else if (eap->force_bin == FORCE_NOBIN)
18331 len = 8;
18332 else
18333 len = 0;
18335 if (eap->read_edit)
18336 len += 7;
18338 if (eap->force_ff != 0)
18339 len += (unsigned)STRLEN(eap->cmd + eap->force_ff) + 6;
18340 # ifdef FEAT_MBYTE
18341 if (eap->force_enc != 0)
18342 len += (unsigned)STRLEN(eap->cmd + eap->force_enc) + 7;
18343 if (eap->bad_char != 0)
18344 len += (unsigned)STRLEN(eap->cmd + eap->bad_char) + 7;
18345 # endif
18347 newval = alloc(len + 1);
18348 if (newval == NULL)
18349 return NULL;
18351 if (eap->force_bin == FORCE_BIN)
18352 sprintf((char *)newval, " ++bin");
18353 else if (eap->force_bin == FORCE_NOBIN)
18354 sprintf((char *)newval, " ++nobin");
18355 else
18356 *newval = NUL;
18358 if (eap->read_edit)
18359 STRCAT(newval, " ++edit");
18361 if (eap->force_ff != 0)
18362 sprintf((char *)newval + STRLEN(newval), " ++ff=%s",
18363 eap->cmd + eap->force_ff);
18364 # ifdef FEAT_MBYTE
18365 if (eap->force_enc != 0)
18366 sprintf((char *)newval + STRLEN(newval), " ++enc=%s",
18367 eap->cmd + eap->force_enc);
18368 if (eap->bad_char != 0)
18369 sprintf((char *)newval + STRLEN(newval), " ++bad=%s",
18370 eap->cmd + eap->bad_char);
18371 # endif
18372 vimvars[VV_CMDARG].vv_str = newval;
18373 return oldval;
18375 #endif
18378 * Get the value of internal variable "name".
18379 * Return OK or FAIL.
18381 static int
18382 get_var_tv(name, len, rettv, verbose)
18383 char_u *name;
18384 int len; /* length of "name" */
18385 typval_T *rettv; /* NULL when only checking existence */
18386 int verbose; /* may give error message */
18388 int ret = OK;
18389 typval_T *tv = NULL;
18390 typval_T atv;
18391 dictitem_T *v;
18392 int cc;
18394 /* truncate the name, so that we can use strcmp() */
18395 cc = name[len];
18396 name[len] = NUL;
18399 * Check for "b:changedtick".
18401 if (STRCMP(name, "b:changedtick") == 0)
18403 atv.v_type = VAR_NUMBER;
18404 atv.vval.v_number = curbuf->b_changedtick;
18405 tv = &atv;
18409 * Check for user-defined variables.
18411 else
18413 v = find_var(name, NULL);
18414 if (v != NULL)
18415 tv = &v->di_tv;
18418 if (tv == NULL)
18420 if (rettv != NULL && verbose)
18421 EMSG2(_(e_undefvar), name);
18422 ret = FAIL;
18424 else if (rettv != NULL)
18425 copy_tv(tv, rettv);
18427 name[len] = cc;
18429 return ret;
18433 * Handle expr[expr], expr[expr:expr] subscript and .name lookup.
18434 * Also handle function call with Funcref variable: func(expr)
18435 * Can all be combined: dict.func(expr)[idx]['func'](expr)
18437 static int
18438 handle_subscript(arg, rettv, evaluate, verbose)
18439 char_u **arg;
18440 typval_T *rettv;
18441 int evaluate; /* do more than finding the end */
18442 int verbose; /* give error messages */
18444 int ret = OK;
18445 dict_T *selfdict = NULL;
18446 char_u *s;
18447 int len;
18448 typval_T functv;
18450 while (ret == OK
18451 && (**arg == '['
18452 || (**arg == '.' && rettv->v_type == VAR_DICT)
18453 || (**arg == '(' && rettv->v_type == VAR_FUNC))
18454 && !vim_iswhite(*(*arg - 1)))
18456 if (**arg == '(')
18458 /* need to copy the funcref so that we can clear rettv */
18459 functv = *rettv;
18460 rettv->v_type = VAR_UNKNOWN;
18462 /* Invoke the function. Recursive! */
18463 s = functv.vval.v_string;
18464 ret = get_func_tv(s, (int)STRLEN(s), rettv, arg,
18465 curwin->w_cursor.lnum, curwin->w_cursor.lnum,
18466 &len, evaluate, selfdict);
18468 /* Clear the funcref afterwards, so that deleting it while
18469 * evaluating the arguments is possible (see test55). */
18470 clear_tv(&functv);
18472 /* Stop the expression evaluation when immediately aborting on
18473 * error, or when an interrupt occurred or an exception was thrown
18474 * but not caught. */
18475 if (aborting())
18477 if (ret == OK)
18478 clear_tv(rettv);
18479 ret = FAIL;
18481 dict_unref(selfdict);
18482 selfdict = NULL;
18484 else /* **arg == '[' || **arg == '.' */
18486 dict_unref(selfdict);
18487 if (rettv->v_type == VAR_DICT)
18489 selfdict = rettv->vval.v_dict;
18490 if (selfdict != NULL)
18491 ++selfdict->dv_refcount;
18493 else
18494 selfdict = NULL;
18495 if (eval_index(arg, rettv, evaluate, verbose) == FAIL)
18497 clear_tv(rettv);
18498 ret = FAIL;
18502 dict_unref(selfdict);
18503 return ret;
18507 * Allocate memory for a variable type-value, and make it empty (0 or NULL
18508 * value).
18510 static typval_T *
18511 alloc_tv()
18513 return (typval_T *)alloc_clear((unsigned)sizeof(typval_T));
18517 * Allocate memory for a variable type-value, and assign a string to it.
18518 * The string "s" must have been allocated, it is consumed.
18519 * Return NULL for out of memory, the variable otherwise.
18521 static typval_T *
18522 alloc_string_tv(s)
18523 char_u *s;
18525 typval_T *rettv;
18527 rettv = alloc_tv();
18528 if (rettv != NULL)
18530 rettv->v_type = VAR_STRING;
18531 rettv->vval.v_string = s;
18533 else
18534 vim_free(s);
18535 return rettv;
18539 * Free the memory for a variable type-value.
18541 void
18542 free_tv(varp)
18543 typval_T *varp;
18545 if (varp != NULL)
18547 switch (varp->v_type)
18549 case VAR_FUNC:
18550 func_unref(varp->vval.v_string);
18551 /*FALLTHROUGH*/
18552 case VAR_STRING:
18553 vim_free(varp->vval.v_string);
18554 break;
18555 case VAR_LIST:
18556 list_unref(varp->vval.v_list);
18557 break;
18558 case VAR_DICT:
18559 dict_unref(varp->vval.v_dict);
18560 break;
18561 case VAR_NUMBER:
18562 #ifdef FEAT_FLOAT
18563 case VAR_FLOAT:
18564 #endif
18565 case VAR_UNKNOWN:
18566 break;
18567 default:
18568 EMSG2(_(e_intern2), "free_tv()");
18569 break;
18571 vim_free(varp);
18576 * Free the memory for a variable value and set the value to NULL or 0.
18578 void
18579 clear_tv(varp)
18580 typval_T *varp;
18582 if (varp != NULL)
18584 switch (varp->v_type)
18586 case VAR_FUNC:
18587 func_unref(varp->vval.v_string);
18588 /*FALLTHROUGH*/
18589 case VAR_STRING:
18590 vim_free(varp->vval.v_string);
18591 varp->vval.v_string = NULL;
18592 break;
18593 case VAR_LIST:
18594 list_unref(varp->vval.v_list);
18595 varp->vval.v_list = NULL;
18596 break;
18597 case VAR_DICT:
18598 dict_unref(varp->vval.v_dict);
18599 varp->vval.v_dict = NULL;
18600 break;
18601 case VAR_NUMBER:
18602 varp->vval.v_number = 0;
18603 break;
18604 #ifdef FEAT_FLOAT
18605 case VAR_FLOAT:
18606 varp->vval.v_float = 0.0;
18607 break;
18608 #endif
18609 case VAR_UNKNOWN:
18610 break;
18611 default:
18612 EMSG2(_(e_intern2), "clear_tv()");
18614 varp->v_lock = 0;
18619 * Set the value of a variable to NULL without freeing items.
18621 static void
18622 init_tv(varp)
18623 typval_T *varp;
18625 if (varp != NULL)
18626 vim_memset(varp, 0, sizeof(typval_T));
18630 * Get the number value of a variable.
18631 * If it is a String variable, uses vim_str2nr().
18632 * For incompatible types, return 0.
18633 * get_tv_number_chk() is similar to get_tv_number(), but informs the
18634 * caller of incompatible types: it sets *denote to TRUE if "denote"
18635 * is not NULL or returns -1 otherwise.
18637 static long
18638 get_tv_number(varp)
18639 typval_T *varp;
18641 int error = FALSE;
18643 return get_tv_number_chk(varp, &error); /* return 0L on error */
18646 long
18647 get_tv_number_chk(varp, denote)
18648 typval_T *varp;
18649 int *denote;
18651 long n = 0L;
18653 switch (varp->v_type)
18655 case VAR_NUMBER:
18656 return (long)(varp->vval.v_number);
18657 #ifdef FEAT_FLOAT
18658 case VAR_FLOAT:
18659 EMSG(_("E805: Using a Float as a Number"));
18660 break;
18661 #endif
18662 case VAR_FUNC:
18663 EMSG(_("E703: Using a Funcref as a Number"));
18664 break;
18665 case VAR_STRING:
18666 if (varp->vval.v_string != NULL)
18667 vim_str2nr(varp->vval.v_string, NULL, NULL,
18668 TRUE, TRUE, &n, NULL);
18669 return n;
18670 case VAR_LIST:
18671 EMSG(_("E745: Using a List as a Number"));
18672 break;
18673 case VAR_DICT:
18674 EMSG(_("E728: Using a Dictionary as a Number"));
18675 break;
18676 default:
18677 EMSG2(_(e_intern2), "get_tv_number()");
18678 break;
18680 if (denote == NULL) /* useful for values that must be unsigned */
18681 n = -1;
18682 else
18683 *denote = TRUE;
18684 return n;
18688 * Get the lnum from the first argument.
18689 * Also accepts ".", "$", etc., but that only works for the current buffer.
18690 * Returns -1 on error.
18692 static linenr_T
18693 get_tv_lnum(argvars)
18694 typval_T *argvars;
18696 typval_T rettv;
18697 linenr_T lnum;
18699 lnum = get_tv_number_chk(&argvars[0], NULL);
18700 if (lnum == 0) /* no valid number, try using line() */
18702 rettv.v_type = VAR_NUMBER;
18703 f_line(argvars, &rettv);
18704 lnum = rettv.vval.v_number;
18705 clear_tv(&rettv);
18707 return lnum;
18711 * Get the lnum from the first argument.
18712 * Also accepts "$", then "buf" is used.
18713 * Returns 0 on error.
18715 static linenr_T
18716 get_tv_lnum_buf(argvars, buf)
18717 typval_T *argvars;
18718 buf_T *buf;
18720 if (argvars[0].v_type == VAR_STRING
18721 && argvars[0].vval.v_string != NULL
18722 && argvars[0].vval.v_string[0] == '$'
18723 && buf != NULL)
18724 return buf->b_ml.ml_line_count;
18725 return get_tv_number_chk(&argvars[0], NULL);
18729 * Get the string value of a variable.
18730 * If it is a Number variable, the number is converted into a string.
18731 * get_tv_string() uses a single, static buffer. YOU CAN ONLY USE IT ONCE!
18732 * get_tv_string_buf() uses a given buffer.
18733 * If the String variable has never been set, return an empty string.
18734 * Never returns NULL;
18735 * get_tv_string_chk() and get_tv_string_buf_chk() are similar, but return
18736 * NULL on error.
18738 static char_u *
18739 get_tv_string(varp)
18740 typval_T *varp;
18742 static char_u mybuf[NUMBUFLEN];
18744 return get_tv_string_buf(varp, mybuf);
18747 static char_u *
18748 get_tv_string_buf(varp, buf)
18749 typval_T *varp;
18750 char_u *buf;
18752 char_u *res = get_tv_string_buf_chk(varp, buf);
18754 return res != NULL ? res : (char_u *)"";
18757 char_u *
18758 get_tv_string_chk(varp)
18759 typval_T *varp;
18761 static char_u mybuf[NUMBUFLEN];
18763 return get_tv_string_buf_chk(varp, mybuf);
18766 static char_u *
18767 get_tv_string_buf_chk(varp, buf)
18768 typval_T *varp;
18769 char_u *buf;
18771 switch (varp->v_type)
18773 case VAR_NUMBER:
18774 sprintf((char *)buf, "%ld", (long)varp->vval.v_number);
18775 return buf;
18776 case VAR_FUNC:
18777 EMSG(_("E729: using Funcref as a String"));
18778 break;
18779 case VAR_LIST:
18780 EMSG(_("E730: using List as a String"));
18781 break;
18782 case VAR_DICT:
18783 EMSG(_("E731: using Dictionary as a String"));
18784 break;
18785 #ifdef FEAT_FLOAT
18786 case VAR_FLOAT:
18787 EMSG(_("E806: using Float as a String"));
18788 break;
18789 #endif
18790 case VAR_STRING:
18791 if (varp->vval.v_string != NULL)
18792 return varp->vval.v_string;
18793 return (char_u *)"";
18794 default:
18795 EMSG2(_(e_intern2), "get_tv_string_buf()");
18796 break;
18798 return NULL;
18802 * Find variable "name" in the list of variables.
18803 * Return a pointer to it if found, NULL if not found.
18804 * Careful: "a:0" variables don't have a name.
18805 * When "htp" is not NULL we are writing to the variable, set "htp" to the
18806 * hashtab_T used.
18808 static dictitem_T *
18809 find_var(name, htp)
18810 char_u *name;
18811 hashtab_T **htp;
18813 char_u *varname;
18814 hashtab_T *ht;
18816 ht = find_var_ht(name, &varname);
18817 if (htp != NULL)
18818 *htp = ht;
18819 if (ht == NULL)
18820 return NULL;
18821 return find_var_in_ht(ht, varname, htp != NULL);
18825 * Find variable "varname" in hashtab "ht".
18826 * Returns NULL if not found.
18828 static dictitem_T *
18829 find_var_in_ht(ht, varname, writing)
18830 hashtab_T *ht;
18831 char_u *varname;
18832 int writing;
18834 hashitem_T *hi;
18836 if (*varname == NUL)
18838 /* Must be something like "s:", otherwise "ht" would be NULL. */
18839 switch (varname[-2])
18841 case 's': return &SCRIPT_SV(current_SID).sv_var;
18842 case 'g': return &globvars_var;
18843 case 'v': return &vimvars_var;
18844 case 'b': return &curbuf->b_bufvar;
18845 case 'w': return &curwin->w_winvar;
18846 #ifdef FEAT_WINDOWS
18847 case 't': return &curtab->tp_winvar;
18848 #endif
18849 case 'l': return current_funccal == NULL
18850 ? NULL : &current_funccal->l_vars_var;
18851 case 'a': return current_funccal == NULL
18852 ? NULL : &current_funccal->l_avars_var;
18854 return NULL;
18857 hi = hash_find(ht, varname);
18858 if (HASHITEM_EMPTY(hi))
18860 /* For global variables we may try auto-loading the script. If it
18861 * worked find the variable again. Don't auto-load a script if it was
18862 * loaded already, otherwise it would be loaded every time when
18863 * checking if a function name is a Funcref variable. */
18864 if (ht == &globvarht && !writing
18865 && script_autoload(varname, FALSE) && !aborting())
18866 hi = hash_find(ht, varname);
18867 if (HASHITEM_EMPTY(hi))
18868 return NULL;
18870 return HI2DI(hi);
18874 * Find the hashtab used for a variable name.
18875 * Set "varname" to the start of name without ':'.
18877 static hashtab_T *
18878 find_var_ht(name, varname)
18879 char_u *name;
18880 char_u **varname;
18882 hashitem_T *hi;
18884 if (name[1] != ':')
18886 /* The name must not start with a colon or #. */
18887 if (name[0] == ':' || name[0] == AUTOLOAD_CHAR)
18888 return NULL;
18889 *varname = name;
18891 /* "version" is "v:version" in all scopes */
18892 hi = hash_find(&compat_hashtab, name);
18893 if (!HASHITEM_EMPTY(hi))
18894 return &compat_hashtab;
18896 if (current_funccal == NULL)
18897 return &globvarht; /* global variable */
18898 return &current_funccal->l_vars.dv_hashtab; /* l: variable */
18900 *varname = name + 2;
18901 if (*name == 'g') /* global variable */
18902 return &globvarht;
18903 /* There must be no ':' or '#' in the rest of the name, unless g: is used
18905 if (vim_strchr(name + 2, ':') != NULL
18906 || vim_strchr(name + 2, AUTOLOAD_CHAR) != NULL)
18907 return NULL;
18908 if (*name == 'b') /* buffer variable */
18909 return &curbuf->b_vars.dv_hashtab;
18910 if (*name == 'w') /* window variable */
18911 return &curwin->w_vars.dv_hashtab;
18912 #ifdef FEAT_WINDOWS
18913 if (*name == 't') /* tab page variable */
18914 return &curtab->tp_vars.dv_hashtab;
18915 #endif
18916 if (*name == 'v') /* v: variable */
18917 return &vimvarht;
18918 if (*name == 'a' && current_funccal != NULL) /* function argument */
18919 return &current_funccal->l_avars.dv_hashtab;
18920 if (*name == 'l' && current_funccal != NULL) /* local function variable */
18921 return &current_funccal->l_vars.dv_hashtab;
18922 if (*name == 's' /* script variable */
18923 && current_SID > 0 && current_SID <= ga_scripts.ga_len)
18924 return &SCRIPT_VARS(current_SID);
18925 return NULL;
18929 * Get the string value of a (global/local) variable.
18930 * Returns NULL when it doesn't exist.
18932 char_u *
18933 get_var_value(name)
18934 char_u *name;
18936 dictitem_T *v;
18938 v = find_var(name, NULL);
18939 if (v == NULL)
18940 return NULL;
18941 return get_tv_string(&v->di_tv);
18945 * Allocate a new hashtab for a sourced script. It will be used while
18946 * sourcing this script and when executing functions defined in the script.
18948 void
18949 new_script_vars(id)
18950 scid_T id;
18952 int i;
18953 hashtab_T *ht;
18954 scriptvar_T *sv;
18956 if (ga_grow(&ga_scripts, (int)(id - ga_scripts.ga_len)) == OK)
18958 /* Re-allocating ga_data means that an ht_array pointing to
18959 * ht_smallarray becomes invalid. We can recognize this: ht_mask is
18960 * at its init value. Also reset "v_dict", it's always the same. */
18961 for (i = 1; i <= ga_scripts.ga_len; ++i)
18963 ht = &SCRIPT_VARS(i);
18964 if (ht->ht_mask == HT_INIT_SIZE - 1)
18965 ht->ht_array = ht->ht_smallarray;
18966 sv = &SCRIPT_SV(i);
18967 sv->sv_var.di_tv.vval.v_dict = &sv->sv_dict;
18970 while (ga_scripts.ga_len < id)
18972 sv = &SCRIPT_SV(ga_scripts.ga_len + 1);
18973 init_var_dict(&sv->sv_dict, &sv->sv_var);
18974 ++ga_scripts.ga_len;
18980 * Initialize dictionary "dict" as a scope and set variable "dict_var" to
18981 * point to it.
18983 void
18984 init_var_dict(dict, dict_var)
18985 dict_T *dict;
18986 dictitem_T *dict_var;
18988 hash_init(&dict->dv_hashtab);
18989 dict->dv_refcount = DO_NOT_FREE_CNT;
18990 dict_var->di_tv.vval.v_dict = dict;
18991 dict_var->di_tv.v_type = VAR_DICT;
18992 dict_var->di_tv.v_lock = VAR_FIXED;
18993 dict_var->di_flags = DI_FLAGS_RO | DI_FLAGS_FIX;
18994 dict_var->di_key[0] = NUL;
18998 * Clean up a list of internal variables.
18999 * Frees all allocated variables and the value they contain.
19000 * Clears hashtab "ht", does not free it.
19002 void
19003 vars_clear(ht)
19004 hashtab_T *ht;
19006 vars_clear_ext(ht, TRUE);
19010 * Like vars_clear(), but only free the value if "free_val" is TRUE.
19012 static void
19013 vars_clear_ext(ht, free_val)
19014 hashtab_T *ht;
19015 int free_val;
19017 int todo;
19018 hashitem_T *hi;
19019 dictitem_T *v;
19021 hash_lock(ht);
19022 todo = (int)ht->ht_used;
19023 for (hi = ht->ht_array; todo > 0; ++hi)
19025 if (!HASHITEM_EMPTY(hi))
19027 --todo;
19029 /* Free the variable. Don't remove it from the hashtab,
19030 * ht_array might change then. hash_clear() takes care of it
19031 * later. */
19032 v = HI2DI(hi);
19033 if (free_val)
19034 clear_tv(&v->di_tv);
19035 if ((v->di_flags & DI_FLAGS_FIX) == 0)
19036 vim_free(v);
19039 hash_clear(ht);
19040 ht->ht_used = 0;
19044 * Delete a variable from hashtab "ht" at item "hi".
19045 * Clear the variable value and free the dictitem.
19047 static void
19048 delete_var(ht, hi)
19049 hashtab_T *ht;
19050 hashitem_T *hi;
19052 dictitem_T *di = HI2DI(hi);
19054 hash_remove(ht, hi);
19055 clear_tv(&di->di_tv);
19056 vim_free(di);
19060 * List the value of one internal variable.
19062 static void
19063 list_one_var(v, prefix, first)
19064 dictitem_T *v;
19065 char_u *prefix;
19066 int *first;
19068 char_u *tofree;
19069 char_u *s;
19070 char_u numbuf[NUMBUFLEN];
19072 s = echo_string(&v->di_tv, &tofree, numbuf, ++current_copyID);
19073 list_one_var_a(prefix, v->di_key, v->di_tv.v_type,
19074 s == NULL ? (char_u *)"" : s, first);
19075 vim_free(tofree);
19078 static void
19079 list_one_var_a(prefix, name, type, string, first)
19080 char_u *prefix;
19081 char_u *name;
19082 int type;
19083 char_u *string;
19084 int *first; /* when TRUE clear rest of screen and set to FALSE */
19086 /* don't use msg() or msg_attr() to avoid overwriting "v:statusmsg" */
19087 msg_start();
19088 msg_puts(prefix);
19089 if (name != NULL) /* "a:" vars don't have a name stored */
19090 msg_puts(name);
19091 msg_putchar(' ');
19092 msg_advance(22);
19093 if (type == VAR_NUMBER)
19094 msg_putchar('#');
19095 else if (type == VAR_FUNC)
19096 msg_putchar('*');
19097 else if (type == VAR_LIST)
19099 msg_putchar('[');
19100 if (*string == '[')
19101 ++string;
19103 else if (type == VAR_DICT)
19105 msg_putchar('{');
19106 if (*string == '{')
19107 ++string;
19109 else
19110 msg_putchar(' ');
19112 msg_outtrans(string);
19114 if (type == VAR_FUNC)
19115 msg_puts((char_u *)"()");
19116 if (*first)
19118 msg_clr_eos();
19119 *first = FALSE;
19124 * Set variable "name" to value in "tv".
19125 * If the variable already exists, the value is updated.
19126 * Otherwise the variable is created.
19128 static void
19129 set_var(name, tv, copy)
19130 char_u *name;
19131 typval_T *tv;
19132 int copy; /* make copy of value in "tv" */
19134 dictitem_T *v;
19135 char_u *varname;
19136 hashtab_T *ht;
19137 char_u *p;
19139 if (tv->v_type == VAR_FUNC)
19141 if (!(vim_strchr((char_u *)"wbs", name[0]) != NULL && name[1] == ':')
19142 && !ASCII_ISUPPER((name[0] != NUL && name[1] == ':')
19143 ? name[2] : name[0]))
19145 EMSG2(_("E704: Funcref variable name must start with a capital: %s"), name);
19146 return;
19148 if (function_exists(name))
19150 EMSG2(_("E705: Variable name conflicts with existing function: %s"),
19151 name);
19152 return;
19156 ht = find_var_ht(name, &varname);
19157 if (ht == NULL || *varname == NUL)
19159 EMSG2(_(e_illvar), name);
19160 return;
19163 v = find_var_in_ht(ht, varname, TRUE);
19164 if (v != NULL)
19166 /* existing variable, need to clear the value */
19167 if (var_check_ro(v->di_flags, name)
19168 || tv_check_lock(v->di_tv.v_lock, name))
19169 return;
19170 if (v->di_tv.v_type != tv->v_type
19171 && !((v->di_tv.v_type == VAR_STRING
19172 || v->di_tv.v_type == VAR_NUMBER)
19173 && (tv->v_type == VAR_STRING
19174 || tv->v_type == VAR_NUMBER))
19175 #ifdef FEAT_FLOAT
19176 && !((v->di_tv.v_type == VAR_NUMBER
19177 || v->di_tv.v_type == VAR_FLOAT)
19178 && (tv->v_type == VAR_NUMBER
19179 || tv->v_type == VAR_FLOAT))
19180 #endif
19183 EMSG2(_("E706: Variable type mismatch for: %s"), name);
19184 return;
19188 * Handle setting internal v: variables separately: we don't change
19189 * the type.
19191 if (ht == &vimvarht)
19193 if (v->di_tv.v_type == VAR_STRING)
19195 vim_free(v->di_tv.vval.v_string);
19196 if (copy || tv->v_type != VAR_STRING)
19197 v->di_tv.vval.v_string = vim_strsave(get_tv_string(tv));
19198 else
19200 /* Take over the string to avoid an extra alloc/free. */
19201 v->di_tv.vval.v_string = tv->vval.v_string;
19202 tv->vval.v_string = NULL;
19205 else if (v->di_tv.v_type != VAR_NUMBER)
19206 EMSG2(_(e_intern2), "set_var()");
19207 else
19209 v->di_tv.vval.v_number = get_tv_number(tv);
19210 if (STRCMP(varname, "searchforward") == 0)
19211 set_search_direction(v->di_tv.vval.v_number ? '/' : '?');
19213 return;
19216 clear_tv(&v->di_tv);
19218 else /* add a new variable */
19220 /* Can't add "v:" variable. */
19221 if (ht == &vimvarht)
19223 EMSG2(_(e_illvar), name);
19224 return;
19227 /* Make sure the variable name is valid. */
19228 for (p = varname; *p != NUL; ++p)
19229 if (!eval_isnamec1(*p) && (p == varname || !VIM_ISDIGIT(*p))
19230 && *p != AUTOLOAD_CHAR)
19232 EMSG2(_(e_illvar), varname);
19233 return;
19236 v = (dictitem_T *)alloc((unsigned)(sizeof(dictitem_T)
19237 + STRLEN(varname)));
19238 if (v == NULL)
19239 return;
19240 STRCPY(v->di_key, varname);
19241 if (hash_add(ht, DI2HIKEY(v)) == FAIL)
19243 vim_free(v);
19244 return;
19246 v->di_flags = 0;
19249 if (copy || tv->v_type == VAR_NUMBER || tv->v_type == VAR_FLOAT)
19250 copy_tv(tv, &v->di_tv);
19251 else
19253 v->di_tv = *tv;
19254 v->di_tv.v_lock = 0;
19255 init_tv(tv);
19260 * Return TRUE if di_flags "flags" indicates variable "name" is read-only.
19261 * Also give an error message.
19263 static int
19264 var_check_ro(flags, name)
19265 int flags;
19266 char_u *name;
19268 if (flags & DI_FLAGS_RO)
19270 EMSG2(_(e_readonlyvar), name);
19271 return TRUE;
19273 if ((flags & DI_FLAGS_RO_SBX) && sandbox)
19275 EMSG2(_(e_readonlysbx), name);
19276 return TRUE;
19278 return FALSE;
19282 * Return TRUE if di_flags "flags" indicates variable "name" is fixed.
19283 * Also give an error message.
19285 static int
19286 var_check_fixed(flags, name)
19287 int flags;
19288 char_u *name;
19290 if (flags & DI_FLAGS_FIX)
19292 EMSG2(_("E795: Cannot delete variable %s"), name);
19293 return TRUE;
19295 return FALSE;
19299 * Return TRUE if typeval "tv" is set to be locked (immutable).
19300 * Also give an error message, using "name".
19302 static int
19303 tv_check_lock(lock, name)
19304 int lock;
19305 char_u *name;
19307 if (lock & VAR_LOCKED)
19309 EMSG2(_("E741: Value is locked: %s"),
19310 name == NULL ? (char_u *)_("Unknown") : name);
19311 return TRUE;
19313 if (lock & VAR_FIXED)
19315 EMSG2(_("E742: Cannot change value of %s"),
19316 name == NULL ? (char_u *)_("Unknown") : name);
19317 return TRUE;
19319 return FALSE;
19323 * Copy the values from typval_T "from" to typval_T "to".
19324 * When needed allocates string or increases reference count.
19325 * Does not make a copy of a list or dict but copies the reference!
19326 * It is OK for "from" and "to" to point to the same item. This is used to
19327 * make a copy later.
19329 static void
19330 copy_tv(from, to)
19331 typval_T *from;
19332 typval_T *to;
19334 to->v_type = from->v_type;
19335 to->v_lock = 0;
19336 switch (from->v_type)
19338 case VAR_NUMBER:
19339 to->vval.v_number = from->vval.v_number;
19340 break;
19341 #ifdef FEAT_FLOAT
19342 case VAR_FLOAT:
19343 to->vval.v_float = from->vval.v_float;
19344 break;
19345 #endif
19346 case VAR_STRING:
19347 case VAR_FUNC:
19348 if (from->vval.v_string == NULL)
19349 to->vval.v_string = NULL;
19350 else
19352 to->vval.v_string = vim_strsave(from->vval.v_string);
19353 if (from->v_type == VAR_FUNC)
19354 func_ref(to->vval.v_string);
19356 break;
19357 case VAR_LIST:
19358 if (from->vval.v_list == NULL)
19359 to->vval.v_list = NULL;
19360 else
19362 to->vval.v_list = from->vval.v_list;
19363 ++to->vval.v_list->lv_refcount;
19365 break;
19366 case VAR_DICT:
19367 if (from->vval.v_dict == NULL)
19368 to->vval.v_dict = NULL;
19369 else
19371 to->vval.v_dict = from->vval.v_dict;
19372 ++to->vval.v_dict->dv_refcount;
19374 break;
19375 default:
19376 EMSG2(_(e_intern2), "copy_tv()");
19377 break;
19382 * Make a copy of an item.
19383 * Lists and Dictionaries are also copied. A deep copy if "deep" is set.
19384 * For deepcopy() "copyID" is zero for a full copy or the ID for when a
19385 * reference to an already copied list/dict can be used.
19386 * Returns FAIL or OK.
19388 static int
19389 item_copy(from, to, deep, copyID)
19390 typval_T *from;
19391 typval_T *to;
19392 int deep;
19393 int copyID;
19395 static int recurse = 0;
19396 int ret = OK;
19398 if (recurse >= DICT_MAXNEST)
19400 EMSG(_("E698: variable nested too deep for making a copy"));
19401 return FAIL;
19403 ++recurse;
19405 switch (from->v_type)
19407 case VAR_NUMBER:
19408 #ifdef FEAT_FLOAT
19409 case VAR_FLOAT:
19410 #endif
19411 case VAR_STRING:
19412 case VAR_FUNC:
19413 copy_tv(from, to);
19414 break;
19415 case VAR_LIST:
19416 to->v_type = VAR_LIST;
19417 to->v_lock = 0;
19418 if (from->vval.v_list == NULL)
19419 to->vval.v_list = NULL;
19420 else if (copyID != 0 && from->vval.v_list->lv_copyID == copyID)
19422 /* use the copy made earlier */
19423 to->vval.v_list = from->vval.v_list->lv_copylist;
19424 ++to->vval.v_list->lv_refcount;
19426 else
19427 to->vval.v_list = list_copy(from->vval.v_list, deep, copyID);
19428 if (to->vval.v_list == NULL)
19429 ret = FAIL;
19430 break;
19431 case VAR_DICT:
19432 to->v_type = VAR_DICT;
19433 to->v_lock = 0;
19434 if (from->vval.v_dict == NULL)
19435 to->vval.v_dict = NULL;
19436 else if (copyID != 0 && from->vval.v_dict->dv_copyID == copyID)
19438 /* use the copy made earlier */
19439 to->vval.v_dict = from->vval.v_dict->dv_copydict;
19440 ++to->vval.v_dict->dv_refcount;
19442 else
19443 to->vval.v_dict = dict_copy(from->vval.v_dict, deep, copyID);
19444 if (to->vval.v_dict == NULL)
19445 ret = FAIL;
19446 break;
19447 default:
19448 EMSG2(_(e_intern2), "item_copy()");
19449 ret = FAIL;
19451 --recurse;
19452 return ret;
19456 * ":echo expr1 ..." print each argument separated with a space, add a
19457 * newline at the end.
19458 * ":echon expr1 ..." print each argument plain.
19460 void
19461 ex_echo(eap)
19462 exarg_T *eap;
19464 char_u *arg = eap->arg;
19465 typval_T rettv;
19466 char_u *tofree;
19467 char_u *p;
19468 int needclr = TRUE;
19469 int atstart = TRUE;
19470 char_u numbuf[NUMBUFLEN];
19472 if (eap->skip)
19473 ++emsg_skip;
19474 while (*arg != NUL && *arg != '|' && *arg != '\n' && !got_int)
19476 /* If eval1() causes an error message the text from the command may
19477 * still need to be cleared. E.g., "echo 22,44". */
19478 need_clr_eos = needclr;
19480 p = arg;
19481 if (eval1(&arg, &rettv, !eap->skip) == FAIL)
19484 * Report the invalid expression unless the expression evaluation
19485 * has been cancelled due to an aborting error, an interrupt, or an
19486 * exception.
19488 if (!aborting())
19489 EMSG2(_(e_invexpr2), p);
19490 need_clr_eos = FALSE;
19491 break;
19493 need_clr_eos = FALSE;
19495 if (!eap->skip)
19497 if (atstart)
19499 atstart = FALSE;
19500 /* Call msg_start() after eval1(), evaluating the expression
19501 * may cause a message to appear. */
19502 if (eap->cmdidx == CMD_echo)
19503 msg_start();
19505 else if (eap->cmdidx == CMD_echo)
19506 msg_puts_attr((char_u *)" ", echo_attr);
19507 p = echo_string(&rettv, &tofree, numbuf, ++current_copyID);
19508 if (p != NULL)
19509 for ( ; *p != NUL && !got_int; ++p)
19511 if (*p == '\n' || *p == '\r' || *p == TAB)
19513 if (*p != TAB && needclr)
19515 /* remove any text still there from the command */
19516 msg_clr_eos();
19517 needclr = FALSE;
19519 msg_putchar_attr(*p, echo_attr);
19521 else
19523 #ifdef FEAT_MBYTE
19524 if (has_mbyte)
19526 int i = (*mb_ptr2len)(p);
19528 (void)msg_outtrans_len_attr(p, i, echo_attr);
19529 p += i - 1;
19531 else
19532 #endif
19533 (void)msg_outtrans_len_attr(p, 1, echo_attr);
19536 vim_free(tofree);
19538 clear_tv(&rettv);
19539 arg = skipwhite(arg);
19541 eap->nextcmd = check_nextcmd(arg);
19543 if (eap->skip)
19544 --emsg_skip;
19545 else
19547 /* remove text that may still be there from the command */
19548 if (needclr)
19549 msg_clr_eos();
19550 if (eap->cmdidx == CMD_echo)
19551 msg_end();
19556 * ":echohl {name}".
19558 void
19559 ex_echohl(eap)
19560 exarg_T *eap;
19562 int id;
19564 id = syn_name2id(eap->arg);
19565 if (id == 0)
19566 echo_attr = 0;
19567 else
19568 echo_attr = syn_id2attr(id);
19572 * ":execute expr1 ..." execute the result of an expression.
19573 * ":echomsg expr1 ..." Print a message
19574 * ":echoerr expr1 ..." Print an error
19575 * Each gets spaces around each argument and a newline at the end for
19576 * echo commands
19578 void
19579 ex_execute(eap)
19580 exarg_T *eap;
19582 char_u *arg = eap->arg;
19583 typval_T rettv;
19584 int ret = OK;
19585 char_u *p;
19586 garray_T ga;
19587 int len;
19588 int save_did_emsg;
19590 ga_init2(&ga, 1, 80);
19592 if (eap->skip)
19593 ++emsg_skip;
19594 while (*arg != NUL && *arg != '|' && *arg != '\n')
19596 p = arg;
19597 if (eval1(&arg, &rettv, !eap->skip) == FAIL)
19600 * Report the invalid expression unless the expression evaluation
19601 * has been cancelled due to an aborting error, an interrupt, or an
19602 * exception.
19604 if (!aborting())
19605 EMSG2(_(e_invexpr2), p);
19606 ret = FAIL;
19607 break;
19610 if (!eap->skip)
19612 p = get_tv_string(&rettv);
19613 len = (int)STRLEN(p);
19614 if (ga_grow(&ga, len + 2) == FAIL)
19616 clear_tv(&rettv);
19617 ret = FAIL;
19618 break;
19620 if (ga.ga_len)
19621 ((char_u *)(ga.ga_data))[ga.ga_len++] = ' ';
19622 STRCPY((char_u *)(ga.ga_data) + ga.ga_len, p);
19623 ga.ga_len += len;
19626 clear_tv(&rettv);
19627 arg = skipwhite(arg);
19630 if (ret != FAIL && ga.ga_data != NULL)
19632 if (eap->cmdidx == CMD_echomsg)
19634 MSG_ATTR(ga.ga_data, echo_attr);
19635 out_flush();
19637 else if (eap->cmdidx == CMD_echoerr)
19639 /* We don't want to abort following commands, restore did_emsg. */
19640 save_did_emsg = did_emsg;
19641 EMSG((char_u *)ga.ga_data);
19642 if (!force_abort)
19643 did_emsg = save_did_emsg;
19645 else if (eap->cmdidx == CMD_execute)
19646 do_cmdline((char_u *)ga.ga_data,
19647 eap->getline, eap->cookie, DOCMD_NOWAIT|DOCMD_VERBOSE);
19650 ga_clear(&ga);
19652 if (eap->skip)
19653 --emsg_skip;
19655 eap->nextcmd = check_nextcmd(arg);
19659 * Skip over the name of an option: "&option", "&g:option" or "&l:option".
19660 * "arg" points to the "&" or '+' when called, to "option" when returning.
19661 * Returns NULL when no option name found. Otherwise pointer to the char
19662 * after the option name.
19664 static char_u *
19665 find_option_end(arg, opt_flags)
19666 char_u **arg;
19667 int *opt_flags;
19669 char_u *p = *arg;
19671 ++p;
19672 if (*p == 'g' && p[1] == ':')
19674 *opt_flags = OPT_GLOBAL;
19675 p += 2;
19677 else if (*p == 'l' && p[1] == ':')
19679 *opt_flags = OPT_LOCAL;
19680 p += 2;
19682 else
19683 *opt_flags = 0;
19685 if (!ASCII_ISALPHA(*p))
19686 return NULL;
19687 *arg = p;
19689 if (p[0] == 't' && p[1] == '_' && p[2] != NUL && p[3] != NUL)
19690 p += 4; /* termcap option */
19691 else
19692 while (ASCII_ISALPHA(*p))
19693 ++p;
19694 return p;
19698 * ":function"
19700 void
19701 ex_function(eap)
19702 exarg_T *eap;
19704 char_u *theline;
19705 int j;
19706 int c;
19707 int saved_did_emsg;
19708 char_u *name = NULL;
19709 char_u *p;
19710 char_u *arg;
19711 char_u *line_arg = NULL;
19712 garray_T newargs;
19713 garray_T newlines;
19714 int varargs = FALSE;
19715 int mustend = FALSE;
19716 int flags = 0;
19717 ufunc_T *fp;
19718 int indent;
19719 int nesting;
19720 char_u *skip_until = NULL;
19721 dictitem_T *v;
19722 funcdict_T fudi;
19723 static int func_nr = 0; /* number for nameless function */
19724 int paren;
19725 hashtab_T *ht;
19726 int todo;
19727 hashitem_T *hi;
19728 int sourcing_lnum_off;
19731 * ":function" without argument: list functions.
19733 if (ends_excmd(*eap->arg))
19735 if (!eap->skip)
19737 todo = (int)func_hashtab.ht_used;
19738 for (hi = func_hashtab.ht_array; todo > 0 && !got_int; ++hi)
19740 if (!HASHITEM_EMPTY(hi))
19742 --todo;
19743 fp = HI2UF(hi);
19744 if (!isdigit(*fp->uf_name))
19745 list_func_head(fp, FALSE);
19749 eap->nextcmd = check_nextcmd(eap->arg);
19750 return;
19754 * ":function /pat": list functions matching pattern.
19756 if (*eap->arg == '/')
19758 p = skip_regexp(eap->arg + 1, '/', TRUE, NULL);
19759 if (!eap->skip)
19761 regmatch_T regmatch;
19763 c = *p;
19764 *p = NUL;
19765 regmatch.regprog = vim_regcomp(eap->arg + 1, RE_MAGIC);
19766 *p = c;
19767 if (regmatch.regprog != NULL)
19769 regmatch.rm_ic = p_ic;
19771 todo = (int)func_hashtab.ht_used;
19772 for (hi = func_hashtab.ht_array; todo > 0 && !got_int; ++hi)
19774 if (!HASHITEM_EMPTY(hi))
19776 --todo;
19777 fp = HI2UF(hi);
19778 if (!isdigit(*fp->uf_name)
19779 && vim_regexec(&regmatch, fp->uf_name, 0))
19780 list_func_head(fp, FALSE);
19785 if (*p == '/')
19786 ++p;
19787 eap->nextcmd = check_nextcmd(p);
19788 return;
19792 * Get the function name. There are these situations:
19793 * func normal function name
19794 * "name" == func, "fudi.fd_dict" == NULL
19795 * dict.func new dictionary entry
19796 * "name" == NULL, "fudi.fd_dict" set,
19797 * "fudi.fd_di" == NULL, "fudi.fd_newkey" == func
19798 * dict.func existing dict entry with a Funcref
19799 * "name" == func, "fudi.fd_dict" set,
19800 * "fudi.fd_di" set, "fudi.fd_newkey" == NULL
19801 * dict.func existing dict entry that's not a Funcref
19802 * "name" == NULL, "fudi.fd_dict" set,
19803 * "fudi.fd_di" set, "fudi.fd_newkey" == NULL
19805 p = eap->arg;
19806 name = trans_function_name(&p, eap->skip, 0, &fudi);
19807 paren = (vim_strchr(p, '(') != NULL);
19808 if (name == NULL && (fudi.fd_dict == NULL || !paren) && !eap->skip)
19811 * Return on an invalid expression in braces, unless the expression
19812 * evaluation has been cancelled due to an aborting error, an
19813 * interrupt, or an exception.
19815 if (!aborting())
19817 if (!eap->skip && fudi.fd_newkey != NULL)
19818 EMSG2(_(e_dictkey), fudi.fd_newkey);
19819 vim_free(fudi.fd_newkey);
19820 return;
19822 else
19823 eap->skip = TRUE;
19826 /* An error in a function call during evaluation of an expression in magic
19827 * braces should not cause the function not to be defined. */
19828 saved_did_emsg = did_emsg;
19829 did_emsg = FALSE;
19832 * ":function func" with only function name: list function.
19834 if (!paren)
19836 if (!ends_excmd(*skipwhite(p)))
19838 EMSG(_(e_trailing));
19839 goto ret_free;
19841 eap->nextcmd = check_nextcmd(p);
19842 if (eap->nextcmd != NULL)
19843 *p = NUL;
19844 if (!eap->skip && !got_int)
19846 fp = find_func(name);
19847 if (fp != NULL)
19849 list_func_head(fp, TRUE);
19850 for (j = 0; j < fp->uf_lines.ga_len && !got_int; ++j)
19852 if (FUNCLINE(fp, j) == NULL)
19853 continue;
19854 msg_putchar('\n');
19855 msg_outnum((long)(j + 1));
19856 if (j < 9)
19857 msg_putchar(' ');
19858 if (j < 99)
19859 msg_putchar(' ');
19860 msg_prt_line(FUNCLINE(fp, j), FALSE);
19861 out_flush(); /* show a line at a time */
19862 ui_breakcheck();
19864 if (!got_int)
19866 msg_putchar('\n');
19867 msg_puts((char_u *)" endfunction");
19870 else
19871 emsg_funcname(N_("E123: Undefined function: %s"), name);
19873 goto ret_free;
19877 * ":function name(arg1, arg2)" Define function.
19879 p = skipwhite(p);
19880 if (*p != '(')
19882 if (!eap->skip)
19884 EMSG2(_("E124: Missing '(': %s"), eap->arg);
19885 goto ret_free;
19887 /* attempt to continue by skipping some text */
19888 if (vim_strchr(p, '(') != NULL)
19889 p = vim_strchr(p, '(');
19891 p = skipwhite(p + 1);
19893 ga_init2(&newargs, (int)sizeof(char_u *), 3);
19894 ga_init2(&newlines, (int)sizeof(char_u *), 3);
19896 if (!eap->skip)
19898 /* Check the name of the function. Unless it's a dictionary function
19899 * (that we are overwriting). */
19900 if (name != NULL)
19901 arg = name;
19902 else
19903 arg = fudi.fd_newkey;
19904 if (arg != NULL && (fudi.fd_di == NULL
19905 || fudi.fd_di->di_tv.v_type != VAR_FUNC))
19907 if (*arg == K_SPECIAL)
19908 j = 3;
19909 else
19910 j = 0;
19911 while (arg[j] != NUL && (j == 0 ? eval_isnamec1(arg[j])
19912 : eval_isnamec(arg[j])))
19913 ++j;
19914 if (arg[j] != NUL)
19915 emsg_funcname((char *)e_invarg2, arg);
19920 * Isolate the arguments: "arg1, arg2, ...)"
19922 while (*p != ')')
19924 if (p[0] == '.' && p[1] == '.' && p[2] == '.')
19926 varargs = TRUE;
19927 p += 3;
19928 mustend = TRUE;
19930 else
19932 arg = p;
19933 while (ASCII_ISALNUM(*p) || *p == '_')
19934 ++p;
19935 if (arg == p || isdigit(*arg)
19936 || (p - arg == 9 && STRNCMP(arg, "firstline", 9) == 0)
19937 || (p - arg == 8 && STRNCMP(arg, "lastline", 8) == 0))
19939 if (!eap->skip)
19940 EMSG2(_("E125: Illegal argument: %s"), arg);
19941 break;
19943 if (ga_grow(&newargs, 1) == FAIL)
19944 goto erret;
19945 c = *p;
19946 *p = NUL;
19947 arg = vim_strsave(arg);
19948 if (arg == NULL)
19949 goto erret;
19950 ((char_u **)(newargs.ga_data))[newargs.ga_len] = arg;
19951 *p = c;
19952 newargs.ga_len++;
19953 if (*p == ',')
19954 ++p;
19955 else
19956 mustend = TRUE;
19958 p = skipwhite(p);
19959 if (mustend && *p != ')')
19961 if (!eap->skip)
19962 EMSG2(_(e_invarg2), eap->arg);
19963 break;
19966 ++p; /* skip the ')' */
19968 /* find extra arguments "range", "dict" and "abort" */
19969 for (;;)
19971 p = skipwhite(p);
19972 if (STRNCMP(p, "range", 5) == 0)
19974 flags |= FC_RANGE;
19975 p += 5;
19977 else if (STRNCMP(p, "dict", 4) == 0)
19979 flags |= FC_DICT;
19980 p += 4;
19982 else if (STRNCMP(p, "abort", 5) == 0)
19984 flags |= FC_ABORT;
19985 p += 5;
19987 else
19988 break;
19991 /* When there is a line break use what follows for the function body.
19992 * Makes 'exe "func Test()\n...\nendfunc"' work. */
19993 if (*p == '\n')
19994 line_arg = p + 1;
19995 else if (*p != NUL && *p != '"' && !eap->skip && !did_emsg)
19996 EMSG(_(e_trailing));
19999 * Read the body of the function, until ":endfunction" is found.
20001 if (KeyTyped)
20003 /* Check if the function already exists, don't let the user type the
20004 * whole function before telling him it doesn't work! For a script we
20005 * need to skip the body to be able to find what follows. */
20006 if (!eap->skip && !eap->forceit)
20008 if (fudi.fd_dict != NULL && fudi.fd_newkey == NULL)
20009 EMSG(_(e_funcdict));
20010 else if (name != NULL && find_func(name) != NULL)
20011 emsg_funcname(e_funcexts, name);
20014 if (!eap->skip && did_emsg)
20015 goto erret;
20017 msg_putchar('\n'); /* don't overwrite the function name */
20018 cmdline_row = msg_row;
20021 indent = 2;
20022 nesting = 0;
20023 for (;;)
20025 msg_scroll = TRUE;
20026 need_wait_return = FALSE;
20027 sourcing_lnum_off = sourcing_lnum;
20029 if (line_arg != NULL)
20031 /* Use eap->arg, split up in parts by line breaks. */
20032 theline = line_arg;
20033 p = vim_strchr(theline, '\n');
20034 if (p == NULL)
20035 line_arg += STRLEN(line_arg);
20036 else
20038 *p = NUL;
20039 line_arg = p + 1;
20042 else if (eap->getline == NULL)
20043 theline = getcmdline(':', 0L, indent);
20044 else
20045 theline = eap->getline(':', eap->cookie, indent);
20046 if (KeyTyped)
20047 lines_left = Rows - 1;
20048 if (theline == NULL)
20050 EMSG(_("E126: Missing :endfunction"));
20051 goto erret;
20054 /* Detect line continuation: sourcing_lnum increased more than one. */
20055 if (sourcing_lnum > sourcing_lnum_off + 1)
20056 sourcing_lnum_off = sourcing_lnum - sourcing_lnum_off - 1;
20057 else
20058 sourcing_lnum_off = 0;
20060 if (skip_until != NULL)
20062 /* between ":append" and "." and between ":python <<EOF" and "EOF"
20063 * don't check for ":endfunc". */
20064 if (STRCMP(theline, skip_until) == 0)
20066 vim_free(skip_until);
20067 skip_until = NULL;
20070 else
20072 /* skip ':' and blanks*/
20073 for (p = theline; vim_iswhite(*p) || *p == ':'; ++p)
20076 /* Check for "endfunction". */
20077 if (checkforcmd(&p, "endfunction", 4) && nesting-- == 0)
20079 if (line_arg == NULL)
20080 vim_free(theline);
20081 break;
20084 /* Increase indent inside "if", "while", "for" and "try", decrease
20085 * at "end". */
20086 if (indent > 2 && STRNCMP(p, "end", 3) == 0)
20087 indent -= 2;
20088 else if (STRNCMP(p, "if", 2) == 0
20089 || STRNCMP(p, "wh", 2) == 0
20090 || STRNCMP(p, "for", 3) == 0
20091 || STRNCMP(p, "try", 3) == 0)
20092 indent += 2;
20094 /* Check for defining a function inside this function. */
20095 if (checkforcmd(&p, "function", 2))
20097 if (*p == '!')
20098 p = skipwhite(p + 1);
20099 p += eval_fname_script(p);
20100 if (ASCII_ISALPHA(*p))
20102 vim_free(trans_function_name(&p, TRUE, 0, NULL));
20103 if (*skipwhite(p) == '(')
20105 ++nesting;
20106 indent += 2;
20111 /* Check for ":append" or ":insert". */
20112 p = skip_range(p, NULL);
20113 if ((p[0] == 'a' && (!ASCII_ISALPHA(p[1]) || p[1] == 'p'))
20114 || (p[0] == 'i'
20115 && (!ASCII_ISALPHA(p[1]) || (p[1] == 'n'
20116 && (!ASCII_ISALPHA(p[2]) || (p[2] == 's'))))))
20117 skip_until = vim_strsave((char_u *)".");
20119 /* Check for ":python <<EOF", ":tcl <<EOF", etc. */
20120 arg = skipwhite(skiptowhite(p));
20121 if (arg[0] == '<' && arg[1] =='<'
20122 && ((p[0] == 'p' && p[1] == 'y'
20123 && (!ASCII_ISALPHA(p[2]) || p[2] == 't'))
20124 || (p[0] == 'p' && p[1] == 'e'
20125 && (!ASCII_ISALPHA(p[2]) || p[2] == 'r'))
20126 || (p[0] == 't' && p[1] == 'c'
20127 && (!ASCII_ISALPHA(p[2]) || p[2] == 'l'))
20128 || (p[0] == 'r' && p[1] == 'u' && p[2] == 'b'
20129 && (!ASCII_ISALPHA(p[3]) || p[3] == 'y'))
20130 || (p[0] == 'm' && p[1] == 'z'
20131 && (!ASCII_ISALPHA(p[2]) || p[2] == 's'))
20134 /* ":python <<" continues until a dot, like ":append" */
20135 p = skipwhite(arg + 2);
20136 if (*p == NUL)
20137 skip_until = vim_strsave((char_u *)".");
20138 else
20139 skip_until = vim_strsave(p);
20143 /* Add the line to the function. */
20144 if (ga_grow(&newlines, 1 + sourcing_lnum_off) == FAIL)
20146 if (line_arg == NULL)
20147 vim_free(theline);
20148 goto erret;
20151 /* Copy the line to newly allocated memory. get_one_sourceline()
20152 * allocates 250 bytes per line, this saves 80% on average. The cost
20153 * is an extra alloc/free. */
20154 p = vim_strsave(theline);
20155 if (p != NULL)
20157 if (line_arg == NULL)
20158 vim_free(theline);
20159 theline = p;
20162 ((char_u **)(newlines.ga_data))[newlines.ga_len++] = theline;
20164 /* Add NULL lines for continuation lines, so that the line count is
20165 * equal to the index in the growarray. */
20166 while (sourcing_lnum_off-- > 0)
20167 ((char_u **)(newlines.ga_data))[newlines.ga_len++] = NULL;
20169 /* Check for end of eap->arg. */
20170 if (line_arg != NULL && *line_arg == NUL)
20171 line_arg = NULL;
20174 /* Don't define the function when skipping commands or when an error was
20175 * detected. */
20176 if (eap->skip || did_emsg)
20177 goto erret;
20180 * If there are no errors, add the function
20182 if (fudi.fd_dict == NULL)
20184 v = find_var(name, &ht);
20185 if (v != NULL && v->di_tv.v_type == VAR_FUNC)
20187 emsg_funcname(N_("E707: Function name conflicts with variable: %s"),
20188 name);
20189 goto erret;
20192 fp = find_func(name);
20193 if (fp != NULL)
20195 if (!eap->forceit)
20197 emsg_funcname(e_funcexts, name);
20198 goto erret;
20200 if (fp->uf_calls > 0)
20202 emsg_funcname(N_("E127: Cannot redefine function %s: It is in use"),
20203 name);
20204 goto erret;
20206 /* redefine existing function */
20207 ga_clear_strings(&(fp->uf_args));
20208 ga_clear_strings(&(fp->uf_lines));
20209 vim_free(name);
20210 name = NULL;
20213 else
20215 char numbuf[20];
20217 fp = NULL;
20218 if (fudi.fd_newkey == NULL && !eap->forceit)
20220 EMSG(_(e_funcdict));
20221 goto erret;
20223 if (fudi.fd_di == NULL)
20225 /* Can't add a function to a locked dictionary */
20226 if (tv_check_lock(fudi.fd_dict->dv_lock, eap->arg))
20227 goto erret;
20229 /* Can't change an existing function if it is locked */
20230 else if (tv_check_lock(fudi.fd_di->di_tv.v_lock, eap->arg))
20231 goto erret;
20233 /* Give the function a sequential number. Can only be used with a
20234 * Funcref! */
20235 vim_free(name);
20236 sprintf(numbuf, "%d", ++func_nr);
20237 name = vim_strsave((char_u *)numbuf);
20238 if (name == NULL)
20239 goto erret;
20242 if (fp == NULL)
20244 if (fudi.fd_dict == NULL && vim_strchr(name, AUTOLOAD_CHAR) != NULL)
20246 int slen, plen;
20247 char_u *scriptname;
20249 /* Check that the autoload name matches the script name. */
20250 j = FAIL;
20251 if (sourcing_name != NULL)
20253 scriptname = autoload_name(name);
20254 if (scriptname != NULL)
20256 p = vim_strchr(scriptname, '/');
20257 plen = (int)STRLEN(p);
20258 slen = (int)STRLEN(sourcing_name);
20259 if (slen > plen && fnamecmp(p,
20260 sourcing_name + slen - plen) == 0)
20261 j = OK;
20262 vim_free(scriptname);
20265 if (j == FAIL)
20267 EMSG2(_("E746: Function name does not match script file name: %s"), name);
20268 goto erret;
20272 fp = (ufunc_T *)alloc((unsigned)(sizeof(ufunc_T) + STRLEN(name)));
20273 if (fp == NULL)
20274 goto erret;
20276 if (fudi.fd_dict != NULL)
20278 if (fudi.fd_di == NULL)
20280 /* add new dict entry */
20281 fudi.fd_di = dictitem_alloc(fudi.fd_newkey);
20282 if (fudi.fd_di == NULL)
20284 vim_free(fp);
20285 goto erret;
20287 if (dict_add(fudi.fd_dict, fudi.fd_di) == FAIL)
20289 vim_free(fudi.fd_di);
20290 vim_free(fp);
20291 goto erret;
20294 else
20295 /* overwrite existing dict entry */
20296 clear_tv(&fudi.fd_di->di_tv);
20297 fudi.fd_di->di_tv.v_type = VAR_FUNC;
20298 fudi.fd_di->di_tv.v_lock = 0;
20299 fudi.fd_di->di_tv.vval.v_string = vim_strsave(name);
20300 fp->uf_refcount = 1;
20302 /* behave like "dict" was used */
20303 flags |= FC_DICT;
20306 /* insert the new function in the function list */
20307 STRCPY(fp->uf_name, name);
20308 hash_add(&func_hashtab, UF2HIKEY(fp));
20310 fp->uf_args = newargs;
20311 fp->uf_lines = newlines;
20312 #ifdef FEAT_PROFILE
20313 fp->uf_tml_count = NULL;
20314 fp->uf_tml_total = NULL;
20315 fp->uf_tml_self = NULL;
20316 fp->uf_profiling = FALSE;
20317 if (prof_def_func())
20318 func_do_profile(fp);
20319 #endif
20320 fp->uf_varargs = varargs;
20321 fp->uf_flags = flags;
20322 fp->uf_calls = 0;
20323 fp->uf_script_ID = current_SID;
20324 goto ret_free;
20326 erret:
20327 ga_clear_strings(&newargs);
20328 ga_clear_strings(&newlines);
20329 ret_free:
20330 vim_free(skip_until);
20331 vim_free(fudi.fd_newkey);
20332 vim_free(name);
20333 did_emsg |= saved_did_emsg;
20337 * Get a function name, translating "<SID>" and "<SNR>".
20338 * Also handles a Funcref in a List or Dictionary.
20339 * Returns the function name in allocated memory, or NULL for failure.
20340 * flags:
20341 * TFN_INT: internal function name OK
20342 * TFN_QUIET: be quiet
20343 * Advances "pp" to just after the function name (if no error).
20345 static char_u *
20346 trans_function_name(pp, skip, flags, fdp)
20347 char_u **pp;
20348 int skip; /* only find the end, don't evaluate */
20349 int flags;
20350 funcdict_T *fdp; /* return: info about dictionary used */
20352 char_u *name = NULL;
20353 char_u *start;
20354 char_u *end;
20355 int lead;
20356 char_u sid_buf[20];
20357 int len;
20358 lval_T lv;
20360 if (fdp != NULL)
20361 vim_memset(fdp, 0, sizeof(funcdict_T));
20362 start = *pp;
20364 /* Check for hard coded <SNR>: already translated function ID (from a user
20365 * command). */
20366 if ((*pp)[0] == K_SPECIAL && (*pp)[1] == KS_EXTRA
20367 && (*pp)[2] == (int)KE_SNR)
20369 *pp += 3;
20370 len = get_id_len(pp) + 3;
20371 return vim_strnsave(start, len);
20374 /* A name starting with "<SID>" or "<SNR>" is local to a script. But
20375 * don't skip over "s:", get_lval() needs it for "s:dict.func". */
20376 lead = eval_fname_script(start);
20377 if (lead > 2)
20378 start += lead;
20380 end = get_lval(start, NULL, &lv, FALSE, skip, flags & TFN_QUIET,
20381 lead > 2 ? 0 : FNE_CHECK_START);
20382 if (end == start)
20384 if (!skip)
20385 EMSG(_("E129: Function name required"));
20386 goto theend;
20388 if (end == NULL || (lv.ll_tv != NULL && (lead > 2 || lv.ll_range)))
20391 * Report an invalid expression in braces, unless the expression
20392 * evaluation has been cancelled due to an aborting error, an
20393 * interrupt, or an exception.
20395 if (!aborting())
20397 if (end != NULL)
20398 EMSG2(_(e_invarg2), start);
20400 else
20401 *pp = find_name_end(start, NULL, NULL, FNE_INCL_BR);
20402 goto theend;
20405 if (lv.ll_tv != NULL)
20407 if (fdp != NULL)
20409 fdp->fd_dict = lv.ll_dict;
20410 fdp->fd_newkey = lv.ll_newkey;
20411 lv.ll_newkey = NULL;
20412 fdp->fd_di = lv.ll_di;
20414 if (lv.ll_tv->v_type == VAR_FUNC && lv.ll_tv->vval.v_string != NULL)
20416 name = vim_strsave(lv.ll_tv->vval.v_string);
20417 *pp = end;
20419 else
20421 if (!skip && !(flags & TFN_QUIET) && (fdp == NULL
20422 || lv.ll_dict == NULL || fdp->fd_newkey == NULL))
20423 EMSG(_(e_funcref));
20424 else
20425 *pp = end;
20426 name = NULL;
20428 goto theend;
20431 if (lv.ll_name == NULL)
20433 /* Error found, but continue after the function name. */
20434 *pp = end;
20435 goto theend;
20438 /* Check if the name is a Funcref. If so, use the value. */
20439 if (lv.ll_exp_name != NULL)
20441 len = (int)STRLEN(lv.ll_exp_name);
20442 name = deref_func_name(lv.ll_exp_name, &len);
20443 if (name == lv.ll_exp_name)
20444 name = NULL;
20446 else
20448 len = (int)(end - *pp);
20449 name = deref_func_name(*pp, &len);
20450 if (name == *pp)
20451 name = NULL;
20453 if (name != NULL)
20455 name = vim_strsave(name);
20456 *pp = end;
20457 goto theend;
20460 if (lv.ll_exp_name != NULL)
20462 len = (int)STRLEN(lv.ll_exp_name);
20463 if (lead <= 2 && lv.ll_name == lv.ll_exp_name
20464 && STRNCMP(lv.ll_name, "s:", 2) == 0)
20466 /* When there was "s:" already or the name expanded to get a
20467 * leading "s:" then remove it. */
20468 lv.ll_name += 2;
20469 len -= 2;
20470 lead = 2;
20473 else
20475 if (lead == 2) /* skip over "s:" */
20476 lv.ll_name += 2;
20477 len = (int)(end - lv.ll_name);
20481 * Copy the function name to allocated memory.
20482 * Accept <SID>name() inside a script, translate into <SNR>123_name().
20483 * Accept <SNR>123_name() outside a script.
20485 if (skip)
20486 lead = 0; /* do nothing */
20487 else if (lead > 0)
20489 lead = 3;
20490 if ((lv.ll_exp_name != NULL && eval_fname_sid(lv.ll_exp_name))
20491 || eval_fname_sid(*pp))
20493 /* It's "s:" or "<SID>" */
20494 if (current_SID <= 0)
20496 EMSG(_(e_usingsid));
20497 goto theend;
20499 sprintf((char *)sid_buf, "%ld_", (long)current_SID);
20500 lead += (int)STRLEN(sid_buf);
20503 else if (!(flags & TFN_INT) && builtin_function(lv.ll_name))
20505 EMSG2(_("E128: Function name must start with a capital or contain a colon: %s"), lv.ll_name);
20506 goto theend;
20508 name = alloc((unsigned)(len + lead + 1));
20509 if (name != NULL)
20511 if (lead > 0)
20513 name[0] = K_SPECIAL;
20514 name[1] = KS_EXTRA;
20515 name[2] = (int)KE_SNR;
20516 if (lead > 3) /* If it's "<SID>" */
20517 STRCPY(name + 3, sid_buf);
20519 mch_memmove(name + lead, lv.ll_name, (size_t)len);
20520 name[len + lead] = NUL;
20522 *pp = end;
20524 theend:
20525 clear_lval(&lv);
20526 return name;
20530 * Return 5 if "p" starts with "<SID>" or "<SNR>" (ignoring case).
20531 * Return 2 if "p" starts with "s:".
20532 * Return 0 otherwise.
20534 static int
20535 eval_fname_script(p)
20536 char_u *p;
20538 if (p[0] == '<' && (STRNICMP(p + 1, "SID>", 4) == 0
20539 || STRNICMP(p + 1, "SNR>", 4) == 0))
20540 return 5;
20541 if (p[0] == 's' && p[1] == ':')
20542 return 2;
20543 return 0;
20547 * Return TRUE if "p" starts with "<SID>" or "s:".
20548 * Only works if eval_fname_script() returned non-zero for "p"!
20550 static int
20551 eval_fname_sid(p)
20552 char_u *p;
20554 return (*p == 's' || TOUPPER_ASC(p[2]) == 'I');
20558 * List the head of the function: "name(arg1, arg2)".
20560 static void
20561 list_func_head(fp, indent)
20562 ufunc_T *fp;
20563 int indent;
20565 int j;
20567 msg_start();
20568 if (indent)
20569 MSG_PUTS(" ");
20570 MSG_PUTS("function ");
20571 if (fp->uf_name[0] == K_SPECIAL)
20573 MSG_PUTS_ATTR("<SNR>", hl_attr(HLF_8));
20574 msg_puts(fp->uf_name + 3);
20576 else
20577 msg_puts(fp->uf_name);
20578 msg_putchar('(');
20579 for (j = 0; j < fp->uf_args.ga_len; ++j)
20581 if (j)
20582 MSG_PUTS(", ");
20583 msg_puts(FUNCARG(fp, j));
20585 if (fp->uf_varargs)
20587 if (j)
20588 MSG_PUTS(", ");
20589 MSG_PUTS("...");
20591 msg_putchar(')');
20592 msg_clr_eos();
20593 if (p_verbose > 0)
20594 last_set_msg(fp->uf_script_ID);
20598 * Find a function by name, return pointer to it in ufuncs.
20599 * Return NULL for unknown function.
20601 static ufunc_T *
20602 find_func(name)
20603 char_u *name;
20605 hashitem_T *hi;
20607 hi = hash_find(&func_hashtab, name);
20608 if (!HASHITEM_EMPTY(hi))
20609 return HI2UF(hi);
20610 return NULL;
20613 #if defined(EXITFREE) || defined(PROTO)
20614 void
20615 free_all_functions()
20617 hashitem_T *hi;
20619 /* Need to start all over every time, because func_free() may change the
20620 * hash table. */
20621 while (func_hashtab.ht_used > 0)
20622 for (hi = func_hashtab.ht_array; ; ++hi)
20623 if (!HASHITEM_EMPTY(hi))
20625 func_free(HI2UF(hi));
20626 break;
20629 #endif
20632 * Return TRUE if a function "name" exists.
20634 static int
20635 function_exists(name)
20636 char_u *name;
20638 char_u *nm = name;
20639 char_u *p;
20640 int n = FALSE;
20642 p = trans_function_name(&nm, FALSE, TFN_INT|TFN_QUIET, NULL);
20643 nm = skipwhite(nm);
20645 /* Only accept "funcname", "funcname ", "funcname (..." and
20646 * "funcname(...", not "funcname!...". */
20647 if (p != NULL && (*nm == NUL || *nm == '('))
20649 if (builtin_function(p))
20650 n = (find_internal_func(p) >= 0);
20651 else
20652 n = (find_func(p) != NULL);
20654 vim_free(p);
20655 return n;
20659 * Return TRUE if "name" looks like a builtin function name: starts with a
20660 * lower case letter and doesn't contain a ':' or AUTOLOAD_CHAR.
20662 static int
20663 builtin_function(name)
20664 char_u *name;
20666 return ASCII_ISLOWER(name[0]) && vim_strchr(name, ':') == NULL
20667 && vim_strchr(name, AUTOLOAD_CHAR) == NULL;
20670 #if defined(FEAT_PROFILE) || defined(PROTO)
20672 * Start profiling function "fp".
20674 static void
20675 func_do_profile(fp)
20676 ufunc_T *fp;
20678 fp->uf_tm_count = 0;
20679 profile_zero(&fp->uf_tm_self);
20680 profile_zero(&fp->uf_tm_total);
20681 if (fp->uf_tml_count == NULL)
20682 fp->uf_tml_count = (int *)alloc_clear((unsigned)
20683 (sizeof(int) * fp->uf_lines.ga_len));
20684 if (fp->uf_tml_total == NULL)
20685 fp->uf_tml_total = (proftime_T *)alloc_clear((unsigned)
20686 (sizeof(proftime_T) * fp->uf_lines.ga_len));
20687 if (fp->uf_tml_self == NULL)
20688 fp->uf_tml_self = (proftime_T *)alloc_clear((unsigned)
20689 (sizeof(proftime_T) * fp->uf_lines.ga_len));
20690 fp->uf_tml_idx = -1;
20691 if (fp->uf_tml_count == NULL || fp->uf_tml_total == NULL
20692 || fp->uf_tml_self == NULL)
20693 return; /* out of memory */
20695 fp->uf_profiling = TRUE;
20699 * Dump the profiling results for all functions in file "fd".
20701 void
20702 func_dump_profile(fd)
20703 FILE *fd;
20705 hashitem_T *hi;
20706 int todo;
20707 ufunc_T *fp;
20708 int i;
20709 ufunc_T **sorttab;
20710 int st_len = 0;
20712 todo = (int)func_hashtab.ht_used;
20713 if (todo == 0)
20714 return; /* nothing to dump */
20716 sorttab = (ufunc_T **)alloc((unsigned)(sizeof(ufunc_T) * todo));
20718 for (hi = func_hashtab.ht_array; todo > 0; ++hi)
20720 if (!HASHITEM_EMPTY(hi))
20722 --todo;
20723 fp = HI2UF(hi);
20724 if (fp->uf_profiling)
20726 if (sorttab != NULL)
20727 sorttab[st_len++] = fp;
20729 if (fp->uf_name[0] == K_SPECIAL)
20730 fprintf(fd, "FUNCTION <SNR>%s()\n", fp->uf_name + 3);
20731 else
20732 fprintf(fd, "FUNCTION %s()\n", fp->uf_name);
20733 if (fp->uf_tm_count == 1)
20734 fprintf(fd, "Called 1 time\n");
20735 else
20736 fprintf(fd, "Called %d times\n", fp->uf_tm_count);
20737 fprintf(fd, "Total time: %s\n", profile_msg(&fp->uf_tm_total));
20738 fprintf(fd, " Self time: %s\n", profile_msg(&fp->uf_tm_self));
20739 fprintf(fd, "\n");
20740 fprintf(fd, "count total (s) self (s)\n");
20742 for (i = 0; i < fp->uf_lines.ga_len; ++i)
20744 if (FUNCLINE(fp, i) == NULL)
20745 continue;
20746 prof_func_line(fd, fp->uf_tml_count[i],
20747 &fp->uf_tml_total[i], &fp->uf_tml_self[i], TRUE);
20748 fprintf(fd, "%s\n", FUNCLINE(fp, i));
20750 fprintf(fd, "\n");
20755 if (sorttab != NULL && st_len > 0)
20757 qsort((void *)sorttab, (size_t)st_len, sizeof(ufunc_T *),
20758 prof_total_cmp);
20759 prof_sort_list(fd, sorttab, st_len, "TOTAL", FALSE);
20760 qsort((void *)sorttab, (size_t)st_len, sizeof(ufunc_T *),
20761 prof_self_cmp);
20762 prof_sort_list(fd, sorttab, st_len, "SELF", TRUE);
20765 vim_free(sorttab);
20768 static void
20769 prof_sort_list(fd, sorttab, st_len, title, prefer_self)
20770 FILE *fd;
20771 ufunc_T **sorttab;
20772 int st_len;
20773 char *title;
20774 int prefer_self; /* when equal print only self time */
20776 int i;
20777 ufunc_T *fp;
20779 fprintf(fd, "FUNCTIONS SORTED ON %s TIME\n", title);
20780 fprintf(fd, "count total (s) self (s) function\n");
20781 for (i = 0; i < 20 && i < st_len; ++i)
20783 fp = sorttab[i];
20784 prof_func_line(fd, fp->uf_tm_count, &fp->uf_tm_total, &fp->uf_tm_self,
20785 prefer_self);
20786 if (fp->uf_name[0] == K_SPECIAL)
20787 fprintf(fd, " <SNR>%s()\n", fp->uf_name + 3);
20788 else
20789 fprintf(fd, " %s()\n", fp->uf_name);
20791 fprintf(fd, "\n");
20795 * Print the count and times for one function or function line.
20797 static void
20798 prof_func_line(fd, count, total, self, prefer_self)
20799 FILE *fd;
20800 int count;
20801 proftime_T *total;
20802 proftime_T *self;
20803 int prefer_self; /* when equal print only self time */
20805 if (count > 0)
20807 fprintf(fd, "%5d ", count);
20808 if (prefer_self && profile_equal(total, self))
20809 fprintf(fd, " ");
20810 else
20811 fprintf(fd, "%s ", profile_msg(total));
20812 if (!prefer_self && profile_equal(total, self))
20813 fprintf(fd, " ");
20814 else
20815 fprintf(fd, "%s ", profile_msg(self));
20817 else
20818 fprintf(fd, " ");
20822 * Compare function for total time sorting.
20824 static int
20825 #ifdef __BORLANDC__
20826 _RTLENTRYF
20827 #endif
20828 prof_total_cmp(s1, s2)
20829 const void *s1;
20830 const void *s2;
20832 ufunc_T *p1, *p2;
20834 p1 = *(ufunc_T **)s1;
20835 p2 = *(ufunc_T **)s2;
20836 return profile_cmp(&p1->uf_tm_total, &p2->uf_tm_total);
20840 * Compare function for self time sorting.
20842 static int
20843 #ifdef __BORLANDC__
20844 _RTLENTRYF
20845 #endif
20846 prof_self_cmp(s1, s2)
20847 const void *s1;
20848 const void *s2;
20850 ufunc_T *p1, *p2;
20852 p1 = *(ufunc_T **)s1;
20853 p2 = *(ufunc_T **)s2;
20854 return profile_cmp(&p1->uf_tm_self, &p2->uf_tm_self);
20857 #endif
20860 * If "name" has a package name try autoloading the script for it.
20861 * Return TRUE if a package was loaded.
20863 static int
20864 script_autoload(name, reload)
20865 char_u *name;
20866 int reload; /* load script again when already loaded */
20868 char_u *p;
20869 char_u *scriptname, *tofree;
20870 int ret = FALSE;
20871 int i;
20873 /* If there is no '#' after name[0] there is no package name. */
20874 p = vim_strchr(name, AUTOLOAD_CHAR);
20875 if (p == NULL || p == name)
20876 return FALSE;
20878 tofree = scriptname = autoload_name(name);
20880 /* Find the name in the list of previously loaded package names. Skip
20881 * "autoload/", it's always the same. */
20882 for (i = 0; i < ga_loaded.ga_len; ++i)
20883 if (STRCMP(((char_u **)ga_loaded.ga_data)[i] + 9, scriptname + 9) == 0)
20884 break;
20885 if (!reload && i < ga_loaded.ga_len)
20886 ret = FALSE; /* was loaded already */
20887 else
20889 /* Remember the name if it wasn't loaded already. */
20890 if (i == ga_loaded.ga_len && ga_grow(&ga_loaded, 1) == OK)
20892 ((char_u **)ga_loaded.ga_data)[ga_loaded.ga_len++] = scriptname;
20893 tofree = NULL;
20896 /* Try loading the package from $VIMRUNTIME/autoload/<name>.vim */
20897 if (source_runtime(scriptname, FALSE) == OK)
20898 ret = TRUE;
20901 vim_free(tofree);
20902 return ret;
20906 * Return the autoload script name for a function or variable name.
20907 * Returns NULL when out of memory.
20909 static char_u *
20910 autoload_name(name)
20911 char_u *name;
20913 char_u *p;
20914 char_u *scriptname;
20916 /* Get the script file name: replace '#' with '/', append ".vim". */
20917 scriptname = alloc((unsigned)(STRLEN(name) + 14));
20918 if (scriptname == NULL)
20919 return FALSE;
20920 STRCPY(scriptname, "autoload/");
20921 STRCAT(scriptname, name);
20922 *vim_strrchr(scriptname, AUTOLOAD_CHAR) = NUL;
20923 STRCAT(scriptname, ".vim");
20924 while ((p = vim_strchr(scriptname, AUTOLOAD_CHAR)) != NULL)
20925 *p = '/';
20926 return scriptname;
20929 #if defined(FEAT_CMDL_COMPL) || defined(PROTO)
20932 * Function given to ExpandGeneric() to obtain the list of user defined
20933 * function names.
20935 char_u *
20936 get_user_func_name(xp, idx)
20937 expand_T *xp;
20938 int idx;
20940 static long_u done;
20941 static hashitem_T *hi;
20942 ufunc_T *fp;
20944 if (idx == 0)
20946 done = 0;
20947 hi = func_hashtab.ht_array;
20949 if (done < func_hashtab.ht_used)
20951 if (done++ > 0)
20952 ++hi;
20953 while (HASHITEM_EMPTY(hi))
20954 ++hi;
20955 fp = HI2UF(hi);
20957 if (STRLEN(fp->uf_name) + 4 >= IOSIZE)
20958 return fp->uf_name; /* prevents overflow */
20960 cat_func_name(IObuff, fp);
20961 if (xp->xp_context != EXPAND_USER_FUNC)
20963 STRCAT(IObuff, "(");
20964 if (!fp->uf_varargs && fp->uf_args.ga_len == 0)
20965 STRCAT(IObuff, ")");
20967 return IObuff;
20969 return NULL;
20972 #endif /* FEAT_CMDL_COMPL */
20975 * Copy the function name of "fp" to buffer "buf".
20976 * "buf" must be able to hold the function name plus three bytes.
20977 * Takes care of script-local function names.
20979 static void
20980 cat_func_name(buf, fp)
20981 char_u *buf;
20982 ufunc_T *fp;
20984 if (fp->uf_name[0] == K_SPECIAL)
20986 STRCPY(buf, "<SNR>");
20987 STRCAT(buf, fp->uf_name + 3);
20989 else
20990 STRCPY(buf, fp->uf_name);
20994 * ":delfunction {name}"
20996 void
20997 ex_delfunction(eap)
20998 exarg_T *eap;
21000 ufunc_T *fp = NULL;
21001 char_u *p;
21002 char_u *name;
21003 funcdict_T fudi;
21005 p = eap->arg;
21006 name = trans_function_name(&p, eap->skip, 0, &fudi);
21007 vim_free(fudi.fd_newkey);
21008 if (name == NULL)
21010 if (fudi.fd_dict != NULL && !eap->skip)
21011 EMSG(_(e_funcref));
21012 return;
21014 if (!ends_excmd(*skipwhite(p)))
21016 vim_free(name);
21017 EMSG(_(e_trailing));
21018 return;
21020 eap->nextcmd = check_nextcmd(p);
21021 if (eap->nextcmd != NULL)
21022 *p = NUL;
21024 if (!eap->skip)
21025 fp = find_func(name);
21026 vim_free(name);
21028 if (!eap->skip)
21030 if (fp == NULL)
21032 EMSG2(_(e_nofunc), eap->arg);
21033 return;
21035 if (fp->uf_calls > 0)
21037 EMSG2(_("E131: Cannot delete function %s: It is in use"), eap->arg);
21038 return;
21041 if (fudi.fd_dict != NULL)
21043 /* Delete the dict item that refers to the function, it will
21044 * invoke func_unref() and possibly delete the function. */
21045 dictitem_remove(fudi.fd_dict, fudi.fd_di);
21047 else
21048 func_free(fp);
21053 * Free a function and remove it from the list of functions.
21055 static void
21056 func_free(fp)
21057 ufunc_T *fp;
21059 hashitem_T *hi;
21061 /* clear this function */
21062 ga_clear_strings(&(fp->uf_args));
21063 ga_clear_strings(&(fp->uf_lines));
21064 #ifdef FEAT_PROFILE
21065 vim_free(fp->uf_tml_count);
21066 vim_free(fp->uf_tml_total);
21067 vim_free(fp->uf_tml_self);
21068 #endif
21070 /* remove the function from the function hashtable */
21071 hi = hash_find(&func_hashtab, UF2HIKEY(fp));
21072 if (HASHITEM_EMPTY(hi))
21073 EMSG2(_(e_intern2), "func_free()");
21074 else
21075 hash_remove(&func_hashtab, hi);
21077 vim_free(fp);
21081 * Unreference a Function: decrement the reference count and free it when it
21082 * becomes zero. Only for numbered functions.
21084 static void
21085 func_unref(name)
21086 char_u *name;
21088 ufunc_T *fp;
21090 if (name != NULL && isdigit(*name))
21092 fp = find_func(name);
21093 if (fp == NULL)
21094 EMSG2(_(e_intern2), "func_unref()");
21095 else if (--fp->uf_refcount <= 0)
21097 /* Only delete it when it's not being used. Otherwise it's done
21098 * when "uf_calls" becomes zero. */
21099 if (fp->uf_calls == 0)
21100 func_free(fp);
21106 * Count a reference to a Function.
21108 static void
21109 func_ref(name)
21110 char_u *name;
21112 ufunc_T *fp;
21114 if (name != NULL && isdigit(*name))
21116 fp = find_func(name);
21117 if (fp == NULL)
21118 EMSG2(_(e_intern2), "func_ref()");
21119 else
21120 ++fp->uf_refcount;
21125 * Call a user function.
21127 static void
21128 call_user_func(fp, argcount, argvars, rettv, firstline, lastline, selfdict)
21129 ufunc_T *fp; /* pointer to function */
21130 int argcount; /* nr of args */
21131 typval_T *argvars; /* arguments */
21132 typval_T *rettv; /* return value */
21133 linenr_T firstline; /* first line of range */
21134 linenr_T lastline; /* last line of range */
21135 dict_T *selfdict; /* Dictionary for "self" */
21137 char_u *save_sourcing_name;
21138 linenr_T save_sourcing_lnum;
21139 scid_T save_current_SID;
21140 funccall_T *fc;
21141 int save_did_emsg;
21142 static int depth = 0;
21143 dictitem_T *v;
21144 int fixvar_idx = 0; /* index in fixvar[] */
21145 int i;
21146 int ai;
21147 char_u numbuf[NUMBUFLEN];
21148 char_u *name;
21149 #ifdef FEAT_PROFILE
21150 proftime_T wait_start;
21151 proftime_T call_start;
21152 #endif
21154 /* If depth of calling is getting too high, don't execute the function */
21155 if (depth >= p_mfd)
21157 EMSG(_("E132: Function call depth is higher than 'maxfuncdepth'"));
21158 rettv->v_type = VAR_NUMBER;
21159 rettv->vval.v_number = -1;
21160 return;
21162 ++depth;
21164 line_breakcheck(); /* check for CTRL-C hit */
21166 fc = (funccall_T *)alloc(sizeof(funccall_T));
21167 fc->caller = current_funccal;
21168 current_funccal = fc;
21169 fc->func = fp;
21170 fc->rettv = rettv;
21171 rettv->vval.v_number = 0;
21172 fc->linenr = 0;
21173 fc->returned = FALSE;
21174 fc->level = ex_nesting_level;
21175 /* Check if this function has a breakpoint. */
21176 fc->breakpoint = dbg_find_breakpoint(FALSE, fp->uf_name, (linenr_T)0);
21177 fc->dbg_tick = debug_tick;
21180 * Note about using fc->fixvar[]: This is an array of FIXVAR_CNT variables
21181 * with names up to VAR_SHORT_LEN long. This avoids having to alloc/free
21182 * each argument variable and saves a lot of time.
21185 * Init l: variables.
21187 init_var_dict(&fc->l_vars, &fc->l_vars_var);
21188 if (selfdict != NULL)
21190 /* Set l:self to "selfdict". Use "name" to avoid a warning from
21191 * some compiler that checks the destination size. */
21192 v = &fc->fixvar[fixvar_idx++].var;
21193 name = v->di_key;
21194 STRCPY(name, "self");
21195 v->di_flags = DI_FLAGS_RO + DI_FLAGS_FIX;
21196 hash_add(&fc->l_vars.dv_hashtab, DI2HIKEY(v));
21197 v->di_tv.v_type = VAR_DICT;
21198 v->di_tv.v_lock = 0;
21199 v->di_tv.vval.v_dict = selfdict;
21200 ++selfdict->dv_refcount;
21204 * Init a: variables.
21205 * Set a:0 to "argcount".
21206 * Set a:000 to a list with room for the "..." arguments.
21208 init_var_dict(&fc->l_avars, &fc->l_avars_var);
21209 add_nr_var(&fc->l_avars, &fc->fixvar[fixvar_idx++].var, "0",
21210 (varnumber_T)(argcount - fp->uf_args.ga_len));
21211 /* Use "name" to avoid a warning from some compiler that checks the
21212 * destination size. */
21213 v = &fc->fixvar[fixvar_idx++].var;
21214 name = v->di_key;
21215 STRCPY(name, "000");
21216 v->di_flags = DI_FLAGS_RO | DI_FLAGS_FIX;
21217 hash_add(&fc->l_avars.dv_hashtab, DI2HIKEY(v));
21218 v->di_tv.v_type = VAR_LIST;
21219 v->di_tv.v_lock = VAR_FIXED;
21220 v->di_tv.vval.v_list = &fc->l_varlist;
21221 vim_memset(&fc->l_varlist, 0, sizeof(list_T));
21222 fc->l_varlist.lv_refcount = DO_NOT_FREE_CNT;
21223 fc->l_varlist.lv_lock = VAR_FIXED;
21226 * Set a:firstline to "firstline" and a:lastline to "lastline".
21227 * Set a:name to named arguments.
21228 * Set a:N to the "..." arguments.
21230 add_nr_var(&fc->l_avars, &fc->fixvar[fixvar_idx++].var, "firstline",
21231 (varnumber_T)firstline);
21232 add_nr_var(&fc->l_avars, &fc->fixvar[fixvar_idx++].var, "lastline",
21233 (varnumber_T)lastline);
21234 for (i = 0; i < argcount; ++i)
21236 ai = i - fp->uf_args.ga_len;
21237 if (ai < 0)
21238 /* named argument a:name */
21239 name = FUNCARG(fp, i);
21240 else
21242 /* "..." argument a:1, a:2, etc. */
21243 sprintf((char *)numbuf, "%d", ai + 1);
21244 name = numbuf;
21246 if (fixvar_idx < FIXVAR_CNT && STRLEN(name) <= VAR_SHORT_LEN)
21248 v = &fc->fixvar[fixvar_idx++].var;
21249 v->di_flags = DI_FLAGS_RO | DI_FLAGS_FIX;
21251 else
21253 v = (dictitem_T *)alloc((unsigned)(sizeof(dictitem_T)
21254 + STRLEN(name)));
21255 if (v == NULL)
21256 break;
21257 v->di_flags = DI_FLAGS_RO;
21259 STRCPY(v->di_key, name);
21260 hash_add(&fc->l_avars.dv_hashtab, DI2HIKEY(v));
21262 /* Note: the values are copied directly to avoid alloc/free.
21263 * "argvars" must have VAR_FIXED for v_lock. */
21264 v->di_tv = argvars[i];
21265 v->di_tv.v_lock = VAR_FIXED;
21267 if (ai >= 0 && ai < MAX_FUNC_ARGS)
21269 list_append(&fc->l_varlist, &fc->l_listitems[ai]);
21270 fc->l_listitems[ai].li_tv = argvars[i];
21271 fc->l_listitems[ai].li_tv.v_lock = VAR_FIXED;
21275 /* Don't redraw while executing the function. */
21276 ++RedrawingDisabled;
21277 save_sourcing_name = sourcing_name;
21278 save_sourcing_lnum = sourcing_lnum;
21279 sourcing_lnum = 1;
21280 sourcing_name = alloc((unsigned)((save_sourcing_name == NULL ? 0
21281 : STRLEN(save_sourcing_name)) + STRLEN(fp->uf_name) + 13));
21282 if (sourcing_name != NULL)
21284 if (save_sourcing_name != NULL
21285 && STRNCMP(save_sourcing_name, "function ", 9) == 0)
21286 sprintf((char *)sourcing_name, "%s..", save_sourcing_name);
21287 else
21288 STRCPY(sourcing_name, "function ");
21289 cat_func_name(sourcing_name + STRLEN(sourcing_name), fp);
21291 if (p_verbose >= 12)
21293 ++no_wait_return;
21294 verbose_enter_scroll();
21296 smsg((char_u *)_("calling %s"), sourcing_name);
21297 if (p_verbose >= 14)
21299 char_u buf[MSG_BUF_LEN];
21300 char_u numbuf2[NUMBUFLEN];
21301 char_u *tofree;
21302 char_u *s;
21304 msg_puts((char_u *)"(");
21305 for (i = 0; i < argcount; ++i)
21307 if (i > 0)
21308 msg_puts((char_u *)", ");
21309 if (argvars[i].v_type == VAR_NUMBER)
21310 msg_outnum((long)argvars[i].vval.v_number);
21311 else
21313 s = tv2string(&argvars[i], &tofree, numbuf2, 0);
21314 if (s != NULL)
21316 trunc_string(s, buf, MSG_BUF_CLEN);
21317 msg_puts(buf);
21318 vim_free(tofree);
21322 msg_puts((char_u *)")");
21324 msg_puts((char_u *)"\n"); /* don't overwrite this either */
21326 verbose_leave_scroll();
21327 --no_wait_return;
21330 #ifdef FEAT_PROFILE
21331 if (do_profiling == PROF_YES)
21333 if (!fp->uf_profiling && has_profiling(FALSE, fp->uf_name, NULL))
21334 func_do_profile(fp);
21335 if (fp->uf_profiling
21336 || (fc->caller != NULL && fc->caller->func->uf_profiling))
21338 ++fp->uf_tm_count;
21339 profile_start(&call_start);
21340 profile_zero(&fp->uf_tm_children);
21342 script_prof_save(&wait_start);
21344 #endif
21346 save_current_SID = current_SID;
21347 current_SID = fp->uf_script_ID;
21348 save_did_emsg = did_emsg;
21349 did_emsg = FALSE;
21351 /* call do_cmdline() to execute the lines */
21352 do_cmdline(NULL, get_func_line, (void *)fc,
21353 DOCMD_NOWAIT|DOCMD_VERBOSE|DOCMD_REPEAT);
21355 --RedrawingDisabled;
21357 /* when the function was aborted because of an error, return -1 */
21358 if ((did_emsg && (fp->uf_flags & FC_ABORT)) || rettv->v_type == VAR_UNKNOWN)
21360 clear_tv(rettv);
21361 rettv->v_type = VAR_NUMBER;
21362 rettv->vval.v_number = -1;
21365 #ifdef FEAT_PROFILE
21366 if (do_profiling == PROF_YES && (fp->uf_profiling
21367 || (fc->caller != NULL && fc->caller->func->uf_profiling)))
21369 profile_end(&call_start);
21370 profile_sub_wait(&wait_start, &call_start);
21371 profile_add(&fp->uf_tm_total, &call_start);
21372 profile_self(&fp->uf_tm_self, &call_start, &fp->uf_tm_children);
21373 if (fc->caller != NULL && fc->caller->func->uf_profiling)
21375 profile_add(&fc->caller->func->uf_tm_children, &call_start);
21376 profile_add(&fc->caller->func->uf_tml_children, &call_start);
21379 #endif
21381 /* when being verbose, mention the return value */
21382 if (p_verbose >= 12)
21384 ++no_wait_return;
21385 verbose_enter_scroll();
21387 if (aborting())
21388 smsg((char_u *)_("%s aborted"), sourcing_name);
21389 else if (fc->rettv->v_type == VAR_NUMBER)
21390 smsg((char_u *)_("%s returning #%ld"), sourcing_name,
21391 (long)fc->rettv->vval.v_number);
21392 else
21394 char_u buf[MSG_BUF_LEN];
21395 char_u numbuf2[NUMBUFLEN];
21396 char_u *tofree;
21397 char_u *s;
21399 /* The value may be very long. Skip the middle part, so that we
21400 * have some idea how it starts and ends. smsg() would always
21401 * truncate it at the end. */
21402 s = tv2string(fc->rettv, &tofree, numbuf2, 0);
21403 if (s != NULL)
21405 trunc_string(s, buf, MSG_BUF_CLEN);
21406 smsg((char_u *)_("%s returning %s"), sourcing_name, buf);
21407 vim_free(tofree);
21410 msg_puts((char_u *)"\n"); /* don't overwrite this either */
21412 verbose_leave_scroll();
21413 --no_wait_return;
21416 vim_free(sourcing_name);
21417 sourcing_name = save_sourcing_name;
21418 sourcing_lnum = save_sourcing_lnum;
21419 current_SID = save_current_SID;
21420 #ifdef FEAT_PROFILE
21421 if (do_profiling == PROF_YES)
21422 script_prof_restore(&wait_start);
21423 #endif
21425 if (p_verbose >= 12 && sourcing_name != NULL)
21427 ++no_wait_return;
21428 verbose_enter_scroll();
21430 smsg((char_u *)_("continuing in %s"), sourcing_name);
21431 msg_puts((char_u *)"\n"); /* don't overwrite this either */
21433 verbose_leave_scroll();
21434 --no_wait_return;
21437 did_emsg |= save_did_emsg;
21438 current_funccal = fc->caller;
21439 --depth;
21441 /* if the a:000 list and the a: dict are not referenced we can free the
21442 * funccall_T and what's in it. */
21443 if (fc->l_varlist.lv_refcount == DO_NOT_FREE_CNT
21444 && fc->l_vars.dv_refcount == DO_NOT_FREE_CNT
21445 && fc->l_avars.dv_refcount == DO_NOT_FREE_CNT)
21447 free_funccal(fc, FALSE);
21449 else
21451 hashitem_T *hi;
21452 listitem_T *li;
21453 int todo;
21455 /* "fc" is still in use. This can happen when returning "a:000" or
21456 * assigning "l:" to a global variable.
21457 * Link "fc" in the list for garbage collection later. */
21458 fc->caller = previous_funccal;
21459 previous_funccal = fc;
21461 /* Make a copy of the a: variables, since we didn't do that above. */
21462 todo = (int)fc->l_avars.dv_hashtab.ht_used;
21463 for (hi = fc->l_avars.dv_hashtab.ht_array; todo > 0; ++hi)
21465 if (!HASHITEM_EMPTY(hi))
21467 --todo;
21468 v = HI2DI(hi);
21469 copy_tv(&v->di_tv, &v->di_tv);
21473 /* Make a copy of the a:000 items, since we didn't do that above. */
21474 for (li = fc->l_varlist.lv_first; li != NULL; li = li->li_next)
21475 copy_tv(&li->li_tv, &li->li_tv);
21480 * Return TRUE if items in "fc" do not have "copyID". That means they are not
21481 * referenced from anywhere.
21483 static int
21484 can_free_funccal(fc, copyID)
21485 funccall_T *fc;
21486 int copyID;
21488 return (fc->l_varlist.lv_copyID != copyID
21489 && fc->l_vars.dv_copyID != copyID
21490 && fc->l_avars.dv_copyID != copyID);
21494 * Free "fc" and what it contains.
21496 static void
21497 free_funccal(fc, free_val)
21498 funccall_T *fc;
21499 int free_val; /* a: vars were allocated */
21501 listitem_T *li;
21503 /* The a: variables typevals may not have been allocated, only free the
21504 * allocated variables. */
21505 vars_clear_ext(&fc->l_avars.dv_hashtab, free_val);
21507 /* free all l: variables */
21508 vars_clear(&fc->l_vars.dv_hashtab);
21510 /* Free the a:000 variables if they were allocated. */
21511 if (free_val)
21512 for (li = fc->l_varlist.lv_first; li != NULL; li = li->li_next)
21513 clear_tv(&li->li_tv);
21515 vim_free(fc);
21519 * Add a number variable "name" to dict "dp" with value "nr".
21521 static void
21522 add_nr_var(dp, v, name, nr)
21523 dict_T *dp;
21524 dictitem_T *v;
21525 char *name;
21526 varnumber_T nr;
21528 STRCPY(v->di_key, name);
21529 v->di_flags = DI_FLAGS_RO | DI_FLAGS_FIX;
21530 hash_add(&dp->dv_hashtab, DI2HIKEY(v));
21531 v->di_tv.v_type = VAR_NUMBER;
21532 v->di_tv.v_lock = VAR_FIXED;
21533 v->di_tv.vval.v_number = nr;
21537 * ":return [expr]"
21539 void
21540 ex_return(eap)
21541 exarg_T *eap;
21543 char_u *arg = eap->arg;
21544 typval_T rettv;
21545 int returning = FALSE;
21547 if (current_funccal == NULL)
21549 EMSG(_("E133: :return not inside a function"));
21550 return;
21553 if (eap->skip)
21554 ++emsg_skip;
21556 eap->nextcmd = NULL;
21557 if ((*arg != NUL && *arg != '|' && *arg != '\n')
21558 && eval0(arg, &rettv, &eap->nextcmd, !eap->skip) != FAIL)
21560 if (!eap->skip)
21561 returning = do_return(eap, FALSE, TRUE, &rettv);
21562 else
21563 clear_tv(&rettv);
21565 /* It's safer to return also on error. */
21566 else if (!eap->skip)
21569 * Return unless the expression evaluation has been cancelled due to an
21570 * aborting error, an interrupt, or an exception.
21572 if (!aborting())
21573 returning = do_return(eap, FALSE, TRUE, NULL);
21576 /* When skipping or the return gets pending, advance to the next command
21577 * in this line (!returning). Otherwise, ignore the rest of the line.
21578 * Following lines will be ignored by get_func_line(). */
21579 if (returning)
21580 eap->nextcmd = NULL;
21581 else if (eap->nextcmd == NULL) /* no argument */
21582 eap->nextcmd = check_nextcmd(arg);
21584 if (eap->skip)
21585 --emsg_skip;
21589 * Return from a function. Possibly makes the return pending. Also called
21590 * for a pending return at the ":endtry" or after returning from an extra
21591 * do_cmdline(). "reanimate" is used in the latter case. "is_cmd" is set
21592 * when called due to a ":return" command. "rettv" may point to a typval_T
21593 * with the return rettv. Returns TRUE when the return can be carried out,
21594 * FALSE when the return gets pending.
21597 do_return(eap, reanimate, is_cmd, rettv)
21598 exarg_T *eap;
21599 int reanimate;
21600 int is_cmd;
21601 void *rettv;
21603 int idx;
21604 struct condstack *cstack = eap->cstack;
21606 if (reanimate)
21607 /* Undo the return. */
21608 current_funccal->returned = FALSE;
21611 * Cleanup (and inactivate) conditionals, but stop when a try conditional
21612 * not in its finally clause (which then is to be executed next) is found.
21613 * In this case, make the ":return" pending for execution at the ":endtry".
21614 * Otherwise, return normally.
21616 idx = cleanup_conditionals(eap->cstack, 0, TRUE);
21617 if (idx >= 0)
21619 cstack->cs_pending[idx] = CSTP_RETURN;
21621 if (!is_cmd && !reanimate)
21622 /* A pending return again gets pending. "rettv" points to an
21623 * allocated variable with the rettv of the original ":return"'s
21624 * argument if present or is NULL else. */
21625 cstack->cs_rettv[idx] = rettv;
21626 else
21628 /* When undoing a return in order to make it pending, get the stored
21629 * return rettv. */
21630 if (reanimate)
21631 rettv = current_funccal->rettv;
21633 if (rettv != NULL)
21635 /* Store the value of the pending return. */
21636 if ((cstack->cs_rettv[idx] = alloc_tv()) != NULL)
21637 *(typval_T *)cstack->cs_rettv[idx] = *(typval_T *)rettv;
21638 else
21639 EMSG(_(e_outofmem));
21641 else
21642 cstack->cs_rettv[idx] = NULL;
21644 if (reanimate)
21646 /* The pending return value could be overwritten by a ":return"
21647 * without argument in a finally clause; reset the default
21648 * return value. */
21649 current_funccal->rettv->v_type = VAR_NUMBER;
21650 current_funccal->rettv->vval.v_number = 0;
21653 report_make_pending(CSTP_RETURN, rettv);
21655 else
21657 current_funccal->returned = TRUE;
21659 /* If the return is carried out now, store the return value. For
21660 * a return immediately after reanimation, the value is already
21661 * there. */
21662 if (!reanimate && rettv != NULL)
21664 clear_tv(current_funccal->rettv);
21665 *current_funccal->rettv = *(typval_T *)rettv;
21666 if (!is_cmd)
21667 vim_free(rettv);
21671 return idx < 0;
21675 * Free the variable with a pending return value.
21677 void
21678 discard_pending_return(rettv)
21679 void *rettv;
21681 free_tv((typval_T *)rettv);
21685 * Generate a return command for producing the value of "rettv". The result
21686 * is an allocated string. Used by report_pending() for verbose messages.
21688 char_u *
21689 get_return_cmd(rettv)
21690 void *rettv;
21692 char_u *s = NULL;
21693 char_u *tofree = NULL;
21694 char_u numbuf[NUMBUFLEN];
21696 if (rettv != NULL)
21697 s = echo_string((typval_T *)rettv, &tofree, numbuf, 0);
21698 if (s == NULL)
21699 s = (char_u *)"";
21701 STRCPY(IObuff, ":return ");
21702 STRNCPY(IObuff + 8, s, IOSIZE - 8);
21703 if (STRLEN(s) + 8 >= IOSIZE)
21704 STRCPY(IObuff + IOSIZE - 4, "...");
21705 vim_free(tofree);
21706 return vim_strsave(IObuff);
21710 * Get next function line.
21711 * Called by do_cmdline() to get the next line.
21712 * Returns allocated string, or NULL for end of function.
21714 /* ARGSUSED */
21715 char_u *
21716 get_func_line(c, cookie, indent)
21717 int c; /* not used */
21718 void *cookie;
21719 int indent; /* not used */
21721 funccall_T *fcp = (funccall_T *)cookie;
21722 ufunc_T *fp = fcp->func;
21723 char_u *retval;
21724 garray_T *gap; /* growarray with function lines */
21726 /* If breakpoints have been added/deleted need to check for it. */
21727 if (fcp->dbg_tick != debug_tick)
21729 fcp->breakpoint = dbg_find_breakpoint(FALSE, fp->uf_name,
21730 sourcing_lnum);
21731 fcp->dbg_tick = debug_tick;
21733 #ifdef FEAT_PROFILE
21734 if (do_profiling == PROF_YES)
21735 func_line_end(cookie);
21736 #endif
21738 gap = &fp->uf_lines;
21739 if (((fp->uf_flags & FC_ABORT) && did_emsg && !aborted_in_try())
21740 || fcp->returned)
21741 retval = NULL;
21742 else
21744 /* Skip NULL lines (continuation lines). */
21745 while (fcp->linenr < gap->ga_len
21746 && ((char_u **)(gap->ga_data))[fcp->linenr] == NULL)
21747 ++fcp->linenr;
21748 if (fcp->linenr >= gap->ga_len)
21749 retval = NULL;
21750 else
21752 retval = vim_strsave(((char_u **)(gap->ga_data))[fcp->linenr++]);
21753 sourcing_lnum = fcp->linenr;
21754 #ifdef FEAT_PROFILE
21755 if (do_profiling == PROF_YES)
21756 func_line_start(cookie);
21757 #endif
21761 /* Did we encounter a breakpoint? */
21762 if (fcp->breakpoint != 0 && fcp->breakpoint <= sourcing_lnum)
21764 dbg_breakpoint(fp->uf_name, sourcing_lnum);
21765 /* Find next breakpoint. */
21766 fcp->breakpoint = dbg_find_breakpoint(FALSE, fp->uf_name,
21767 sourcing_lnum);
21768 fcp->dbg_tick = debug_tick;
21771 return retval;
21774 #if defined(FEAT_PROFILE) || defined(PROTO)
21776 * Called when starting to read a function line.
21777 * "sourcing_lnum" must be correct!
21778 * When skipping lines it may not actually be executed, but we won't find out
21779 * until later and we need to store the time now.
21781 void
21782 func_line_start(cookie)
21783 void *cookie;
21785 funccall_T *fcp = (funccall_T *)cookie;
21786 ufunc_T *fp = fcp->func;
21788 if (fp->uf_profiling && sourcing_lnum >= 1
21789 && sourcing_lnum <= fp->uf_lines.ga_len)
21791 fp->uf_tml_idx = sourcing_lnum - 1;
21792 /* Skip continuation lines. */
21793 while (fp->uf_tml_idx > 0 && FUNCLINE(fp, fp->uf_tml_idx) == NULL)
21794 --fp->uf_tml_idx;
21795 fp->uf_tml_execed = FALSE;
21796 profile_start(&fp->uf_tml_start);
21797 profile_zero(&fp->uf_tml_children);
21798 profile_get_wait(&fp->uf_tml_wait);
21803 * Called when actually executing a function line.
21805 void
21806 func_line_exec(cookie)
21807 void *cookie;
21809 funccall_T *fcp = (funccall_T *)cookie;
21810 ufunc_T *fp = fcp->func;
21812 if (fp->uf_profiling && fp->uf_tml_idx >= 0)
21813 fp->uf_tml_execed = TRUE;
21817 * Called when done with a function line.
21819 void
21820 func_line_end(cookie)
21821 void *cookie;
21823 funccall_T *fcp = (funccall_T *)cookie;
21824 ufunc_T *fp = fcp->func;
21826 if (fp->uf_profiling && fp->uf_tml_idx >= 0)
21828 if (fp->uf_tml_execed)
21830 ++fp->uf_tml_count[fp->uf_tml_idx];
21831 profile_end(&fp->uf_tml_start);
21832 profile_sub_wait(&fp->uf_tml_wait, &fp->uf_tml_start);
21833 profile_add(&fp->uf_tml_total[fp->uf_tml_idx], &fp->uf_tml_start);
21834 profile_self(&fp->uf_tml_self[fp->uf_tml_idx], &fp->uf_tml_start,
21835 &fp->uf_tml_children);
21837 fp->uf_tml_idx = -1;
21840 #endif
21843 * Return TRUE if the currently active function should be ended, because a
21844 * return was encountered or an error occurred. Used inside a ":while".
21847 func_has_ended(cookie)
21848 void *cookie;
21850 funccall_T *fcp = (funccall_T *)cookie;
21852 /* Ignore the "abort" flag if the abortion behavior has been changed due to
21853 * an error inside a try conditional. */
21854 return (((fcp->func->uf_flags & FC_ABORT) && did_emsg && !aborted_in_try())
21855 || fcp->returned);
21859 * return TRUE if cookie indicates a function which "abort"s on errors.
21862 func_has_abort(cookie)
21863 void *cookie;
21865 return ((funccall_T *)cookie)->func->uf_flags & FC_ABORT;
21868 #if defined(FEAT_VIMINFO) || defined(FEAT_SESSION)
21869 typedef enum
21871 VAR_FLAVOUR_DEFAULT, /* doesn't start with uppercase */
21872 VAR_FLAVOUR_SESSION, /* starts with uppercase, some lower */
21873 VAR_FLAVOUR_VIMINFO /* all uppercase */
21874 } var_flavour_T;
21876 static var_flavour_T var_flavour __ARGS((char_u *varname));
21878 static var_flavour_T
21879 var_flavour(varname)
21880 char_u *varname;
21882 char_u *p = varname;
21884 if (ASCII_ISUPPER(*p))
21886 while (*(++p))
21887 if (ASCII_ISLOWER(*p))
21888 return VAR_FLAVOUR_SESSION;
21889 return VAR_FLAVOUR_VIMINFO;
21891 else
21892 return VAR_FLAVOUR_DEFAULT;
21894 #endif
21896 #if defined(FEAT_VIMINFO) || defined(PROTO)
21898 * Restore global vars that start with a capital from the viminfo file
21901 read_viminfo_varlist(virp, writing)
21902 vir_T *virp;
21903 int writing;
21905 char_u *tab;
21906 int type = VAR_NUMBER;
21907 typval_T tv;
21909 if (!writing && (find_viminfo_parameter('!') != NULL))
21911 tab = vim_strchr(virp->vir_line + 1, '\t');
21912 if (tab != NULL)
21914 *tab++ = '\0'; /* isolate the variable name */
21915 if (*tab == 'S') /* string var */
21916 type = VAR_STRING;
21917 #ifdef FEAT_FLOAT
21918 else if (*tab == 'F')
21919 type = VAR_FLOAT;
21920 #endif
21922 tab = vim_strchr(tab, '\t');
21923 if (tab != NULL)
21925 tv.v_type = type;
21926 if (type == VAR_STRING)
21927 tv.vval.v_string = viminfo_readstring(virp,
21928 (int)(tab - virp->vir_line + 1), TRUE);
21929 #ifdef FEAT_FLOAT
21930 else if (type == VAR_FLOAT)
21931 (void)string2float(tab + 1, &tv.vval.v_float);
21932 #endif
21933 else
21934 tv.vval.v_number = atol((char *)tab + 1);
21935 set_var(virp->vir_line + 1, &tv, FALSE);
21936 if (type == VAR_STRING)
21937 vim_free(tv.vval.v_string);
21942 return viminfo_readline(virp);
21946 * Write global vars that start with a capital to the viminfo file
21948 void
21949 write_viminfo_varlist(fp)
21950 FILE *fp;
21952 hashitem_T *hi;
21953 dictitem_T *this_var;
21954 int todo;
21955 char *s;
21956 char_u *p;
21957 char_u *tofree;
21958 char_u numbuf[NUMBUFLEN];
21960 if (find_viminfo_parameter('!') == NULL)
21961 return;
21963 fprintf(fp, _("\n# global variables:\n"));
21965 todo = (int)globvarht.ht_used;
21966 for (hi = globvarht.ht_array; todo > 0; ++hi)
21968 if (!HASHITEM_EMPTY(hi))
21970 --todo;
21971 this_var = HI2DI(hi);
21972 if (var_flavour(this_var->di_key) == VAR_FLAVOUR_VIMINFO)
21974 switch (this_var->di_tv.v_type)
21976 case VAR_STRING: s = "STR"; break;
21977 case VAR_NUMBER: s = "NUM"; break;
21978 #ifdef FEAT_FLOAT
21979 case VAR_FLOAT: s = "FLO"; break;
21980 #endif
21981 default: continue;
21983 fprintf(fp, "!%s\t%s\t", this_var->di_key, s);
21984 p = echo_string(&this_var->di_tv, &tofree, numbuf, 0);
21985 if (p != NULL)
21986 viminfo_writestring(fp, p);
21987 vim_free(tofree);
21992 #endif
21994 #if defined(FEAT_SESSION) || defined(PROTO)
21996 store_session_globals(fd)
21997 FILE *fd;
21999 hashitem_T *hi;
22000 dictitem_T *this_var;
22001 int todo;
22002 char_u *p, *t;
22004 todo = (int)globvarht.ht_used;
22005 for (hi = globvarht.ht_array; todo > 0; ++hi)
22007 if (!HASHITEM_EMPTY(hi))
22009 --todo;
22010 this_var = HI2DI(hi);
22011 if ((this_var->di_tv.v_type == VAR_NUMBER
22012 || this_var->di_tv.v_type == VAR_STRING)
22013 && var_flavour(this_var->di_key) == VAR_FLAVOUR_SESSION)
22015 /* Escape special characters with a backslash. Turn a LF and
22016 * CR into \n and \r. */
22017 p = vim_strsave_escaped(get_tv_string(&this_var->di_tv),
22018 (char_u *)"\\\"\n\r");
22019 if (p == NULL) /* out of memory */
22020 break;
22021 for (t = p; *t != NUL; ++t)
22022 if (*t == '\n')
22023 *t = 'n';
22024 else if (*t == '\r')
22025 *t = 'r';
22026 if ((fprintf(fd, "let %s = %c%s%c",
22027 this_var->di_key,
22028 (this_var->di_tv.v_type == VAR_STRING) ? '"'
22029 : ' ',
22031 (this_var->di_tv.v_type == VAR_STRING) ? '"'
22032 : ' ') < 0)
22033 || put_eol(fd) == FAIL)
22035 vim_free(p);
22036 return FAIL;
22038 vim_free(p);
22040 #ifdef FEAT_FLOAT
22041 else if (this_var->di_tv.v_type == VAR_FLOAT
22042 && var_flavour(this_var->di_key) == VAR_FLAVOUR_SESSION)
22044 float_T f = this_var->di_tv.vval.v_float;
22045 int sign = ' ';
22047 if (f < 0)
22049 f = -f;
22050 sign = '-';
22052 if ((fprintf(fd, "let %s = %c&%f",
22053 this_var->di_key, sign, f) < 0)
22054 || put_eol(fd) == FAIL)
22055 return FAIL;
22057 #endif
22060 return OK;
22062 #endif
22065 * Display script name where an item was last set.
22066 * Should only be invoked when 'verbose' is non-zero.
22068 void
22069 last_set_msg(scriptID)
22070 scid_T scriptID;
22072 char_u *p;
22074 if (scriptID != 0)
22076 p = home_replace_save(NULL, get_scriptname(scriptID));
22077 if (p != NULL)
22079 verbose_enter();
22080 MSG_PUTS(_("\n\tLast set from "));
22081 MSG_PUTS(p);
22082 vim_free(p);
22083 verbose_leave();
22089 * List v:oldfiles in a nice way.
22091 /*ARGSUSED*/
22092 void
22093 ex_oldfiles(eap)
22094 exarg_T *eap;
22096 list_T *l = vimvars[VV_OLDFILES].vv_list;
22097 listitem_T *li;
22098 int nr = 0;
22100 if (l == NULL)
22101 msg((char_u *)_("No old files"));
22102 else
22104 msg_start();
22105 msg_scroll = TRUE;
22106 for (li = l->lv_first; li != NULL && !got_int; li = li->li_next)
22108 msg_outnum((long)++nr);
22109 MSG_PUTS(": ");
22110 msg_outtrans(get_tv_string(&li->li_tv));
22111 msg_putchar('\n');
22112 out_flush(); /* output one line at a time */
22113 ui_breakcheck();
22115 /* Assume "got_int" was set to truncate the listing. */
22116 got_int = FALSE;
22118 #ifdef FEAT_BROWSE_CMD
22119 if (cmdmod.browse)
22121 quit_more = FALSE;
22122 nr = prompt_for_number(FALSE);
22123 msg_starthere();
22124 if (nr > 0)
22126 char_u *p = list_find_str(get_vim_var_list(VV_OLDFILES),
22127 (long)nr);
22129 if (p != NULL)
22131 p = expand_env_save(p);
22132 eap->arg = p;
22133 eap->cmdidx = CMD_edit;
22134 cmdmod.browse = FALSE;
22135 do_exedit(eap, NULL);
22136 vim_free(p);
22140 #endif
22144 #endif /* FEAT_EVAL */
22147 #if defined(FEAT_MODIFY_FNAME) || defined(FEAT_EVAL) || defined(PROTO)
22149 #ifdef WIN3264
22151 * Functions for ":8" filename modifier: get 8.3 version of a filename.
22153 static int get_short_pathname __ARGS((char_u **fnamep, char_u **bufp, int *fnamelen));
22154 static int shortpath_for_invalid_fname __ARGS((char_u **fname, char_u **bufp, int *fnamelen));
22155 static int shortpath_for_partial __ARGS((char_u **fnamep, char_u **bufp, int *fnamelen));
22158 * Get the short path (8.3) for the filename in "fnamep".
22159 * Only works for a valid file name.
22160 * When the path gets longer "fnamep" is changed and the allocated buffer
22161 * is put in "bufp".
22162 * *fnamelen is the length of "fnamep" and set to 0 for a nonexistent path.
22163 * Returns OK on success, FAIL on failure.
22165 static int
22166 get_short_pathname(fnamep, bufp, fnamelen)
22167 char_u **fnamep;
22168 char_u **bufp;
22169 int *fnamelen;
22171 int l, len;
22172 char_u *newbuf;
22174 len = *fnamelen;
22175 l = GetShortPathName(*fnamep, *fnamep, len);
22176 if (l > len - 1)
22178 /* If that doesn't work (not enough space), then save the string
22179 * and try again with a new buffer big enough. */
22180 newbuf = vim_strnsave(*fnamep, l);
22181 if (newbuf == NULL)
22182 return FAIL;
22184 vim_free(*bufp);
22185 *fnamep = *bufp = newbuf;
22187 /* Really should always succeed, as the buffer is big enough. */
22188 l = GetShortPathName(*fnamep, *fnamep, l+1);
22191 *fnamelen = l;
22192 return OK;
22196 * Get the short path (8.3) for the filename in "fname". The converted
22197 * path is returned in "bufp".
22199 * Some of the directories specified in "fname" may not exist. This function
22200 * will shorten the existing directories at the beginning of the path and then
22201 * append the remaining non-existing path.
22203 * fname - Pointer to the filename to shorten. On return, contains the
22204 * pointer to the shortened pathname
22205 * bufp - Pointer to an allocated buffer for the filename.
22206 * fnamelen - Length of the filename pointed to by fname
22208 * Returns OK on success (or nothing done) and FAIL on failure (out of memory).
22210 static int
22211 shortpath_for_invalid_fname(fname, bufp, fnamelen)
22212 char_u **fname;
22213 char_u **bufp;
22214 int *fnamelen;
22216 char_u *short_fname, *save_fname, *pbuf_unused;
22217 char_u *endp, *save_endp;
22218 char_u ch;
22219 int old_len, len;
22220 int new_len, sfx_len;
22221 int retval = OK;
22223 /* Make a copy */
22224 old_len = *fnamelen;
22225 save_fname = vim_strnsave(*fname, old_len);
22226 pbuf_unused = NULL;
22227 short_fname = NULL;
22229 endp = save_fname + old_len - 1; /* Find the end of the copy */
22230 save_endp = endp;
22233 * Try shortening the supplied path till it succeeds by removing one
22234 * directory at a time from the tail of the path.
22236 len = 0;
22237 for (;;)
22239 /* go back one path-separator */
22240 while (endp > save_fname && !after_pathsep(save_fname, endp + 1))
22241 --endp;
22242 if (endp <= save_fname)
22243 break; /* processed the complete path */
22246 * Replace the path separator with a NUL and try to shorten the
22247 * resulting path.
22249 ch = *endp;
22250 *endp = 0;
22251 short_fname = save_fname;
22252 len = (int)STRLEN(short_fname) + 1;
22253 if (get_short_pathname(&short_fname, &pbuf_unused, &len) == FAIL)
22255 retval = FAIL;
22256 goto theend;
22258 *endp = ch; /* preserve the string */
22260 if (len > 0)
22261 break; /* successfully shortened the path */
22263 /* failed to shorten the path. Skip the path separator */
22264 --endp;
22267 if (len > 0)
22270 * Succeeded in shortening the path. Now concatenate the shortened
22271 * path with the remaining path at the tail.
22274 /* Compute the length of the new path. */
22275 sfx_len = (int)(save_endp - endp) + 1;
22276 new_len = len + sfx_len;
22278 *fnamelen = new_len;
22279 vim_free(*bufp);
22280 if (new_len > old_len)
22282 /* There is not enough space in the currently allocated string,
22283 * copy it to a buffer big enough. */
22284 *fname = *bufp = vim_strnsave(short_fname, new_len);
22285 if (*fname == NULL)
22287 retval = FAIL;
22288 goto theend;
22291 else
22293 /* Transfer short_fname to the main buffer (it's big enough),
22294 * unless get_short_pathname() did its work in-place. */
22295 *fname = *bufp = save_fname;
22296 if (short_fname != save_fname)
22297 vim_strncpy(save_fname, short_fname, len);
22298 save_fname = NULL;
22301 /* concat the not-shortened part of the path */
22302 vim_strncpy(*fname + len, endp, sfx_len);
22303 (*fname)[new_len] = NUL;
22306 theend:
22307 vim_free(pbuf_unused);
22308 vim_free(save_fname);
22310 return retval;
22314 * Get a pathname for a partial path.
22315 * Returns OK for success, FAIL for failure.
22317 static int
22318 shortpath_for_partial(fnamep, bufp, fnamelen)
22319 char_u **fnamep;
22320 char_u **bufp;
22321 int *fnamelen;
22323 int sepcount, len, tflen;
22324 char_u *p;
22325 char_u *pbuf, *tfname;
22326 int hasTilde;
22328 /* Count up the path separators from the RHS.. so we know which part
22329 * of the path to return. */
22330 sepcount = 0;
22331 for (p = *fnamep; p < *fnamep + *fnamelen; mb_ptr_adv(p))
22332 if (vim_ispathsep(*p))
22333 ++sepcount;
22335 /* Need full path first (use expand_env() to remove a "~/") */
22336 hasTilde = (**fnamep == '~');
22337 if (hasTilde)
22338 pbuf = tfname = expand_env_save(*fnamep);
22339 else
22340 pbuf = tfname = FullName_save(*fnamep, FALSE);
22342 len = tflen = (int)STRLEN(tfname);
22344 if (get_short_pathname(&tfname, &pbuf, &len) == FAIL)
22345 return FAIL;
22347 if (len == 0)
22349 /* Don't have a valid filename, so shorten the rest of the
22350 * path if we can. This CAN give us invalid 8.3 filenames, but
22351 * there's not a lot of point in guessing what it might be.
22353 len = tflen;
22354 if (shortpath_for_invalid_fname(&tfname, &pbuf, &len) == FAIL)
22355 return FAIL;
22358 /* Count the paths backward to find the beginning of the desired string. */
22359 for (p = tfname + len - 1; p >= tfname; --p)
22361 #ifdef FEAT_MBYTE
22362 if (has_mbyte)
22363 p -= mb_head_off(tfname, p);
22364 #endif
22365 if (vim_ispathsep(*p))
22367 if (sepcount == 0 || (hasTilde && sepcount == 1))
22368 break;
22369 else
22370 sepcount --;
22373 if (hasTilde)
22375 --p;
22376 if (p >= tfname)
22377 *p = '~';
22378 else
22379 return FAIL;
22381 else
22382 ++p;
22384 /* Copy in the string - p indexes into tfname - allocated at pbuf */
22385 vim_free(*bufp);
22386 *fnamelen = (int)STRLEN(p);
22387 *bufp = pbuf;
22388 *fnamep = p;
22390 return OK;
22392 #endif /* WIN3264 */
22395 * Adjust a filename, according to a string of modifiers.
22396 * *fnamep must be NUL terminated when called. When returning, the length is
22397 * determined by *fnamelen.
22398 * Returns VALID_ flags or -1 for failure.
22399 * When there is an error, *fnamep is set to NULL.
22402 modify_fname(src, usedlen, fnamep, bufp, fnamelen)
22403 char_u *src; /* string with modifiers */
22404 int *usedlen; /* characters after src that are used */
22405 char_u **fnamep; /* file name so far */
22406 char_u **bufp; /* buffer for allocated file name or NULL */
22407 int *fnamelen; /* length of fnamep */
22409 int valid = 0;
22410 char_u *tail;
22411 char_u *s, *p, *pbuf;
22412 char_u dirname[MAXPATHL];
22413 int c;
22414 int has_fullname = 0;
22415 #ifdef WIN3264
22416 int has_shortname = 0;
22417 #endif
22419 repeat:
22420 /* ":p" - full path/file_name */
22421 if (src[*usedlen] == ':' && src[*usedlen + 1] == 'p')
22423 has_fullname = 1;
22425 valid |= VALID_PATH;
22426 *usedlen += 2;
22428 /* Expand "~/path" for all systems and "~user/path" for Unix and VMS */
22429 if ((*fnamep)[0] == '~'
22430 #if !defined(UNIX) && !(defined(VMS) && defined(USER_HOME))
22431 && ((*fnamep)[1] == '/'
22432 # ifdef BACKSLASH_IN_FILENAME
22433 || (*fnamep)[1] == '\\'
22434 # endif
22435 || (*fnamep)[1] == NUL)
22437 #endif
22440 *fnamep = expand_env_save(*fnamep);
22441 vim_free(*bufp); /* free any allocated file name */
22442 *bufp = *fnamep;
22443 if (*fnamep == NULL)
22444 return -1;
22447 /* When "/." or "/.." is used: force expansion to get rid of it. */
22448 for (p = *fnamep; *p != NUL; mb_ptr_adv(p))
22450 if (vim_ispathsep(*p)
22451 && p[1] == '.'
22452 && (p[2] == NUL
22453 || vim_ispathsep(p[2])
22454 || (p[2] == '.'
22455 && (p[3] == NUL || vim_ispathsep(p[3])))))
22456 break;
22459 /* FullName_save() is slow, don't use it when not needed. */
22460 if (*p != NUL || !vim_isAbsName(*fnamep))
22462 *fnamep = FullName_save(*fnamep, *p != NUL);
22463 vim_free(*bufp); /* free any allocated file name */
22464 *bufp = *fnamep;
22465 if (*fnamep == NULL)
22466 return -1;
22469 /* Append a path separator to a directory. */
22470 if (mch_isdir(*fnamep))
22472 /* Make room for one or two extra characters. */
22473 *fnamep = vim_strnsave(*fnamep, (int)STRLEN(*fnamep) + 2);
22474 vim_free(*bufp); /* free any allocated file name */
22475 *bufp = *fnamep;
22476 if (*fnamep == NULL)
22477 return -1;
22478 add_pathsep(*fnamep);
22482 /* ":." - path relative to the current directory */
22483 /* ":~" - path relative to the home directory */
22484 /* ":8" - shortname path - postponed till after */
22485 while (src[*usedlen] == ':'
22486 && ((c = src[*usedlen + 1]) == '.' || c == '~' || c == '8'))
22488 *usedlen += 2;
22489 if (c == '8')
22491 #ifdef WIN3264
22492 has_shortname = 1; /* Postpone this. */
22493 #endif
22494 continue;
22496 pbuf = NULL;
22497 /* Need full path first (use expand_env() to remove a "~/") */
22498 if (!has_fullname)
22500 if (c == '.' && **fnamep == '~')
22501 p = pbuf = expand_env_save(*fnamep);
22502 else
22503 p = pbuf = FullName_save(*fnamep, FALSE);
22505 else
22506 p = *fnamep;
22508 has_fullname = 0;
22510 if (p != NULL)
22512 if (c == '.')
22514 mch_dirname(dirname, MAXPATHL);
22515 s = shorten_fname(p, dirname);
22516 if (s != NULL)
22518 *fnamep = s;
22519 if (pbuf != NULL)
22521 vim_free(*bufp); /* free any allocated file name */
22522 *bufp = pbuf;
22523 pbuf = NULL;
22527 else
22529 home_replace(NULL, p, dirname, MAXPATHL, TRUE);
22530 /* Only replace it when it starts with '~' */
22531 if (*dirname == '~')
22533 s = vim_strsave(dirname);
22534 if (s != NULL)
22536 *fnamep = s;
22537 vim_free(*bufp);
22538 *bufp = s;
22542 vim_free(pbuf);
22546 tail = gettail(*fnamep);
22547 *fnamelen = (int)STRLEN(*fnamep);
22549 /* ":h" - head, remove "/file_name", can be repeated */
22550 /* Don't remove the first "/" or "c:\" */
22551 while (src[*usedlen] == ':' && src[*usedlen + 1] == 'h')
22553 valid |= VALID_HEAD;
22554 *usedlen += 2;
22555 s = get_past_head(*fnamep);
22556 while (tail > s && after_pathsep(s, tail))
22557 mb_ptr_back(*fnamep, tail);
22558 *fnamelen = (int)(tail - *fnamep);
22559 #ifdef VMS
22560 if (*fnamelen > 0)
22561 *fnamelen += 1; /* the path separator is part of the path */
22562 #endif
22563 if (*fnamelen == 0)
22565 /* Result is empty. Turn it into "." to make ":cd %:h" work. */
22566 p = vim_strsave((char_u *)".");
22567 if (p == NULL)
22568 return -1;
22569 vim_free(*bufp);
22570 *bufp = *fnamep = tail = p;
22571 *fnamelen = 1;
22573 else
22575 while (tail > s && !after_pathsep(s, tail))
22576 mb_ptr_back(*fnamep, tail);
22580 /* ":8" - shortname */
22581 if (src[*usedlen] == ':' && src[*usedlen + 1] == '8')
22583 *usedlen += 2;
22584 #ifdef WIN3264
22585 has_shortname = 1;
22586 #endif
22589 #ifdef WIN3264
22590 /* Check shortname after we have done 'heads' and before we do 'tails'
22592 if (has_shortname)
22594 pbuf = NULL;
22595 /* Copy the string if it is shortened by :h */
22596 if (*fnamelen < (int)STRLEN(*fnamep))
22598 p = vim_strnsave(*fnamep, *fnamelen);
22599 if (p == 0)
22600 return -1;
22601 vim_free(*bufp);
22602 *bufp = *fnamep = p;
22605 /* Split into two implementations - makes it easier. First is where
22606 * there isn't a full name already, second is where there is.
22608 if (!has_fullname && !vim_isAbsName(*fnamep))
22610 if (shortpath_for_partial(fnamep, bufp, fnamelen) == FAIL)
22611 return -1;
22613 else
22615 int l;
22617 /* Simple case, already have the full-name
22618 * Nearly always shorter, so try first time. */
22619 l = *fnamelen;
22620 if (get_short_pathname(fnamep, bufp, &l) == FAIL)
22621 return -1;
22623 if (l == 0)
22625 /* Couldn't find the filename.. search the paths.
22627 l = *fnamelen;
22628 if (shortpath_for_invalid_fname(fnamep, bufp, &l) == FAIL)
22629 return -1;
22631 *fnamelen = l;
22634 #endif /* WIN3264 */
22636 /* ":t" - tail, just the basename */
22637 if (src[*usedlen] == ':' && src[*usedlen + 1] == 't')
22639 *usedlen += 2;
22640 *fnamelen -= (int)(tail - *fnamep);
22641 *fnamep = tail;
22644 /* ":e" - extension, can be repeated */
22645 /* ":r" - root, without extension, can be repeated */
22646 while (src[*usedlen] == ':'
22647 && (src[*usedlen + 1] == 'e' || src[*usedlen + 1] == 'r'))
22649 /* find a '.' in the tail:
22650 * - for second :e: before the current fname
22651 * - otherwise: The last '.'
22653 if (src[*usedlen + 1] == 'e' && *fnamep > tail)
22654 s = *fnamep - 2;
22655 else
22656 s = *fnamep + *fnamelen - 1;
22657 for ( ; s > tail; --s)
22658 if (s[0] == '.')
22659 break;
22660 if (src[*usedlen + 1] == 'e') /* :e */
22662 if (s > tail)
22664 *fnamelen += (int)(*fnamep - (s + 1));
22665 *fnamep = s + 1;
22666 #ifdef VMS
22667 /* cut version from the extension */
22668 s = *fnamep + *fnamelen - 1;
22669 for ( ; s > *fnamep; --s)
22670 if (s[0] == ';')
22671 break;
22672 if (s > *fnamep)
22673 *fnamelen = s - *fnamep;
22674 #endif
22676 else if (*fnamep <= tail)
22677 *fnamelen = 0;
22679 else /* :r */
22681 if (s > tail) /* remove one extension */
22682 *fnamelen = (int)(s - *fnamep);
22684 *usedlen += 2;
22687 /* ":s?pat?foo?" - substitute */
22688 /* ":gs?pat?foo?" - global substitute */
22689 if (src[*usedlen] == ':'
22690 && (src[*usedlen + 1] == 's'
22691 || (src[*usedlen + 1] == 'g' && src[*usedlen + 2] == 's')))
22693 char_u *str;
22694 char_u *pat;
22695 char_u *sub;
22696 int sep;
22697 char_u *flags;
22698 int didit = FALSE;
22700 flags = (char_u *)"";
22701 s = src + *usedlen + 2;
22702 if (src[*usedlen + 1] == 'g')
22704 flags = (char_u *)"g";
22705 ++s;
22708 sep = *s++;
22709 if (sep)
22711 /* find end of pattern */
22712 p = vim_strchr(s, sep);
22713 if (p != NULL)
22715 pat = vim_strnsave(s, (int)(p - s));
22716 if (pat != NULL)
22718 s = p + 1;
22719 /* find end of substitution */
22720 p = vim_strchr(s, sep);
22721 if (p != NULL)
22723 sub = vim_strnsave(s, (int)(p - s));
22724 str = vim_strnsave(*fnamep, *fnamelen);
22725 if (sub != NULL && str != NULL)
22727 *usedlen = (int)(p + 1 - src);
22728 s = do_string_sub(str, pat, sub, flags);
22729 if (s != NULL)
22731 *fnamep = s;
22732 *fnamelen = (int)STRLEN(s);
22733 vim_free(*bufp);
22734 *bufp = s;
22735 didit = TRUE;
22738 vim_free(sub);
22739 vim_free(str);
22741 vim_free(pat);
22744 /* after using ":s", repeat all the modifiers */
22745 if (didit)
22746 goto repeat;
22750 return valid;
22754 * Perform a substitution on "str" with pattern "pat" and substitute "sub".
22755 * "flags" can be "g" to do a global substitute.
22756 * Returns an allocated string, NULL for error.
22758 char_u *
22759 do_string_sub(str, pat, sub, flags)
22760 char_u *str;
22761 char_u *pat;
22762 char_u *sub;
22763 char_u *flags;
22765 int sublen;
22766 regmatch_T regmatch;
22767 int i;
22768 int do_all;
22769 char_u *tail;
22770 garray_T ga;
22771 char_u *ret;
22772 char_u *save_cpo;
22774 /* Make 'cpoptions' empty, so that the 'l' flag doesn't work here */
22775 save_cpo = p_cpo;
22776 p_cpo = empty_option;
22778 ga_init2(&ga, 1, 200);
22780 do_all = (flags[0] == 'g');
22782 regmatch.rm_ic = p_ic;
22783 regmatch.regprog = vim_regcomp(pat, RE_MAGIC + RE_STRING);
22784 if (regmatch.regprog != NULL)
22786 tail = str;
22787 while (vim_regexec_nl(&regmatch, str, (colnr_T)(tail - str)))
22790 * Get some space for a temporary buffer to do the substitution
22791 * into. It will contain:
22792 * - The text up to where the match is.
22793 * - The substituted text.
22794 * - The text after the match.
22796 sublen = vim_regsub(&regmatch, sub, tail, FALSE, TRUE, FALSE);
22797 if (ga_grow(&ga, (int)(STRLEN(tail) + sublen -
22798 (regmatch.endp[0] - regmatch.startp[0]))) == FAIL)
22800 ga_clear(&ga);
22801 break;
22804 /* copy the text up to where the match is */
22805 i = (int)(regmatch.startp[0] - tail);
22806 mch_memmove((char_u *)ga.ga_data + ga.ga_len, tail, (size_t)i);
22807 /* add the substituted text */
22808 (void)vim_regsub(&regmatch, sub, (char_u *)ga.ga_data
22809 + ga.ga_len + i, TRUE, TRUE, FALSE);
22810 ga.ga_len += i + sublen - 1;
22811 /* avoid getting stuck on a match with an empty string */
22812 if (tail == regmatch.endp[0])
22814 if (*tail == NUL)
22815 break;
22816 *((char_u *)ga.ga_data + ga.ga_len) = *tail++;
22817 ++ga.ga_len;
22819 else
22821 tail = regmatch.endp[0];
22822 if (*tail == NUL)
22823 break;
22825 if (!do_all)
22826 break;
22829 if (ga.ga_data != NULL)
22830 STRCPY((char *)ga.ga_data + ga.ga_len, tail);
22832 vim_free(regmatch.regprog);
22835 ret = vim_strsave(ga.ga_data == NULL ? str : (char_u *)ga.ga_data);
22836 ga_clear(&ga);
22837 if (p_cpo == empty_option)
22838 p_cpo = save_cpo;
22839 else
22840 /* Darn, evaluating {sub} expression changed the value. */
22841 free_string_option(save_cpo);
22843 return ret;
22846 #endif /* defined(FEAT_MODIFY_FNAME) || defined(FEAT_EVAL) */