blob: a41411a259de35092a97893d18b7c1436ef4c27f [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001/* vi:set ts=8 sts=4 sw=4:
2 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
9
10/*
11 * eval.c: Expression evaluation.
12 */
13#if defined(MSDOS) || defined(MSWIN)
Bram Moolenaar362e1a32006-03-06 23:29:24 +000014# include "vimio.h" /* for mch_open(), must be before vim.h */
Bram Moolenaar071d4272004-06-13 20:20:40 +000015#endif
16
17#include "vim.h"
18
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019#if defined(FEAT_EVAL) || defined(PROTO)
20
Bram Moolenaar071d4272004-06-13 20:20:40 +000021#ifdef AMIGA
22# include <time.h> /* for strftime() */
23#endif
24
25#ifdef MACOS
26# include <time.h> /* for time_t */
27#endif
28
Bram Moolenaar8c8de832008-06-24 22:58:06 +000029#if defined(FEAT_FLOAT) && defined(HAVE_MATH_H)
30# include <math.h>
Bram Moolenaar071d4272004-06-13 20:20:40 +000031#endif
32
Bram Moolenaar33570922005-01-25 22:26:29 +000033#define DICT_MAXNEST 100 /* maximum nesting of lists and dicts */
Bram Moolenaar071d4272004-06-13 20:20:40 +000034
35/*
Bram Moolenaar33570922005-01-25 22:26:29 +000036 * In a hashtab item "hi_key" points to "di_key" in a dictitem.
37 * This avoids adding a pointer to the hashtab item.
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000038 * DI2HIKEY() converts a dictitem pointer to a hashitem key pointer.
39 * HIKEY2DI() converts a hashitem key pointer to a dictitem pointer.
40 * HI2DI() converts a hashitem pointer to a dictitem pointer.
41 */
Bram Moolenaar33570922005-01-25 22:26:29 +000042static dictitem_T dumdi;
Bram Moolenaara7043832005-01-21 11:56:39 +000043#define DI2HIKEY(di) ((di)->di_key)
Bram Moolenaar33570922005-01-25 22:26:29 +000044#define HIKEY2DI(p) ((dictitem_T *)(p - (dumdi.di_key - (char_u *)&dumdi)))
Bram Moolenaara7043832005-01-21 11:56:39 +000045#define HI2DI(hi) HIKEY2DI((hi)->hi_key)
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000046
47/*
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000048 * Structure returned by get_lval() and used by set_var_lval().
49 * For a plain name:
50 * "name" points to the variable name.
51 * "exp_name" is NULL.
52 * "tv" is NULL
53 * For a magic braces name:
54 * "name" points to the expanded variable name.
55 * "exp_name" is non-NULL, to be freed later.
56 * "tv" is NULL
57 * For an index in a list:
58 * "name" points to the (expanded) variable name.
59 * "exp_name" NULL or non-NULL, to be freed later.
60 * "tv" points to the (first) list item value
61 * "li" points to the (first) list item
62 * "range", "n1", "n2" and "empty2" indicate what items are used.
63 * For an existing Dict item:
64 * "name" points to the (expanded) variable name.
65 * "exp_name" NULL or non-NULL, to be freed later.
66 * "tv" points to the dict item value
67 * "newkey" is NULL
68 * For a non-existing Dict item:
69 * "name" points to the (expanded) variable name.
70 * "exp_name" NULL or non-NULL, to be freed later.
Bram Moolenaar33570922005-01-25 22:26:29 +000071 * "tv" points to the Dictionary typval_T
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000072 * "newkey" is the key for the new item.
73 */
74typedef struct lval_S
75{
76 char_u *ll_name; /* start of variable name (can be NULL) */
77 char_u *ll_exp_name; /* NULL or expanded name in allocated memory. */
Bram Moolenaar33570922005-01-25 22:26:29 +000078 typval_T *ll_tv; /* Typeval of item being used. If "newkey"
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000079 isn't NULL it's the Dict to which to add
80 the item. */
Bram Moolenaar33570922005-01-25 22:26:29 +000081 listitem_T *ll_li; /* The list item or NULL. */
82 list_T *ll_list; /* The list or NULL. */
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000083 int ll_range; /* TRUE when a [i:j] range was used */
84 long ll_n1; /* First index for list */
85 long ll_n2; /* Second index for list range */
86 int ll_empty2; /* Second index is empty: [i:] */
Bram Moolenaar33570922005-01-25 22:26:29 +000087 dict_T *ll_dict; /* The Dictionary or NULL */
88 dictitem_T *ll_di; /* The dictitem or NULL */
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000089 char_u *ll_newkey; /* New key for Dict in alloc. mem or NULL. */
Bram Moolenaar33570922005-01-25 22:26:29 +000090} lval_T;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000091
Bram Moolenaar8c711452005-01-14 21:53:12 +000092
Bram Moolenaarc70646c2005-01-04 21:52:38 +000093static char *e_letunexp = N_("E18: Unexpected characters in :let");
Bram Moolenaare49b69a2005-01-08 16:11:57 +000094static char *e_listidx = N_("E684: list index out of range: %ld");
Bram Moolenaarc70646c2005-01-04 21:52:38 +000095static char *e_undefvar = N_("E121: Undefined variable: %s");
96static char *e_missbrac = N_("E111: Missing ']'");
Bram Moolenaar8c711452005-01-14 21:53:12 +000097static char *e_listarg = N_("E686: Argument of %s must be a List");
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +000098static char *e_listdictarg = N_("E712: Argument of %s must be a List or Dictionary");
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000099static char *e_emptykey = N_("E713: Cannot use empty key for Dictionary");
Bram Moolenaar9ef486d2005-01-17 22:23:00 +0000100static char *e_listreq = N_("E714: List required");
101static char *e_dictreq = N_("E715: Dictionary required");
Bram Moolenaar8c711452005-01-14 21:53:12 +0000102static char *e_toomanyarg = N_("E118: Too many arguments for function: %s");
Bram Moolenaar9ef486d2005-01-17 22:23:00 +0000103static char *e_dictkey = N_("E716: Key not present in Dictionary: %s");
104static char *e_funcexts = N_("E122: Function %s already exists, add ! to replace it");
105static char *e_funcdict = N_("E717: Dictionary entry already exists");
106static char *e_funcref = N_("E718: Funcref required");
107static char *e_dictrange = N_("E719: Cannot use [:] with a Dictionary");
108static char *e_letwrong = N_("E734: Wrong variable type for %s=");
Bram Moolenaar05159a02005-02-26 23:04:13 +0000109static char *e_nofunc = N_("E130: Unknown function: %s");
Bram Moolenaar92124a32005-06-17 22:03:40 +0000110static char *e_illvar = N_("E461: Illegal variable name: %s");
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000111
Bram Moolenaar49cd9572005-01-03 21:06:01 +0000112/*
Bram Moolenaar33570922005-01-25 22:26:29 +0000113 * All user-defined global variables are stored in dictionary "globvardict".
114 * "globvars_var" is the variable that is used for "g:".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000115 */
Bram Moolenaar33570922005-01-25 22:26:29 +0000116static dict_T globvardict;
117static dictitem_T globvars_var;
118#define globvarht globvardict.dv_hashtab
Bram Moolenaar071d4272004-06-13 20:20:40 +0000119
120/*
Bram Moolenaar532c7802005-01-27 14:44:31 +0000121 * Old Vim variables such as "v:version" are also available without the "v:".
122 * Also in functions. We need a special hashtable for them.
123 */
Bram Moolenaar4debb442005-06-01 21:57:40 +0000124static hashtab_T compat_hashtab;
Bram Moolenaar532c7802005-01-27 14:44:31 +0000125
126/*
Bram Moolenaard9fba312005-06-26 22:34:35 +0000127 * When recursively copying lists and dicts we need to remember which ones we
128 * have done to avoid endless recursiveness. This unique ID is used for that.
129 */
130static int current_copyID = 0;
131
132/*
Bram Moolenaar33570922005-01-25 22:26:29 +0000133 * Array to hold the hashtab with variables local to each sourced script.
134 * Each item holds a variable (nameless) that points to the dict_T.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000135 */
Bram Moolenaar33570922005-01-25 22:26:29 +0000136typedef struct
137{
138 dictitem_T sv_var;
139 dict_T sv_dict;
140} scriptvar_T;
141
142static garray_T ga_scripts = {0, 0, sizeof(scriptvar_T), 4, NULL};
143#define SCRIPT_SV(id) (((scriptvar_T *)ga_scripts.ga_data)[(id) - 1])
144#define SCRIPT_VARS(id) (SCRIPT_SV(id).sv_dict.dv_hashtab)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000145
146static int echo_attr = 0; /* attributes used for ":echo" */
147
Bram Moolenaar9ef486d2005-01-17 22:23:00 +0000148/* Values for trans_function_name() argument: */
149#define TFN_INT 1 /* internal function name OK */
150#define TFN_QUIET 2 /* no error messages */
151
Bram Moolenaar071d4272004-06-13 20:20:40 +0000152/*
153 * Structure to hold info for a user function.
154 */
155typedef struct ufunc ufunc_T;
156
157struct ufunc
158{
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000159 int uf_varargs; /* variable nr of arguments */
160 int uf_flags;
161 int uf_calls; /* nr of active calls */
162 garray_T uf_args; /* arguments */
163 garray_T uf_lines; /* function lines */
Bram Moolenaar05159a02005-02-26 23:04:13 +0000164#ifdef FEAT_PROFILE
165 int uf_profiling; /* TRUE when func is being profiled */
166 /* profiling the function as a whole */
167 int uf_tm_count; /* nr of calls */
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000168 proftime_T uf_tm_total; /* time spent in function + children */
169 proftime_T uf_tm_self; /* time spent in function itself */
Bram Moolenaar05159a02005-02-26 23:04:13 +0000170 proftime_T uf_tm_children; /* time spent in children this call */
171 /* profiling the function per line */
172 int *uf_tml_count; /* nr of times line was executed */
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000173 proftime_T *uf_tml_total; /* time spent in a line + children */
174 proftime_T *uf_tml_self; /* time spent in a line itself */
Bram Moolenaar05159a02005-02-26 23:04:13 +0000175 proftime_T uf_tml_start; /* start time for current line */
176 proftime_T uf_tml_children; /* time spent in children for this line */
177 proftime_T uf_tml_wait; /* start wait time for current line */
178 int uf_tml_idx; /* index of line being timed; -1 if none */
179 int uf_tml_execed; /* line being timed was executed */
180#endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000181 scid_T uf_script_ID; /* ID of script where function was defined,
Bram Moolenaar071d4272004-06-13 20:20:40 +0000182 used for s: variables */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000183 int uf_refcount; /* for numbered function: reference count */
184 char_u uf_name[1]; /* name of function (actually longer); can
185 start with <SNR>123_ (<SNR> is K_SPECIAL
186 KS_EXTRA KE_SNR) */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000187};
188
189/* function flags */
190#define FC_ABORT 1 /* abort function on error */
191#define FC_RANGE 2 /* function accepts range */
Bram Moolenaare9a41262005-01-15 22:18:47 +0000192#define FC_DICT 4 /* Dict function, uses "self" */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000193
194/*
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +0000195 * All user-defined functions are found in this hashtable.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000196 */
Bram Moolenaar4debb442005-06-01 21:57:40 +0000197static hashtab_T func_hashtab;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000198
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000199/* The names of packages that once were loaded are remembered. */
Bram Moolenaaraa35dd12006-04-29 22:03:41 +0000200static garray_T ga_loaded = {0, 0, sizeof(char_u *), 4, NULL};
201
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +0000202/* list heads for garbage collection */
203static dict_T *first_dict = NULL; /* list of all dicts */
204static list_T *first_list = NULL; /* list of all lists */
205
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000206/* From user function to hashitem and back. */
207static ufunc_T dumuf;
208#define UF2HIKEY(fp) ((fp)->uf_name)
209#define HIKEY2UF(p) ((ufunc_T *)(p - (dumuf.uf_name - (char_u *)&dumuf)))
210#define HI2UF(hi) HIKEY2UF((hi)->hi_key)
211
212#define FUNCARG(fp, j) ((char_u **)(fp->uf_args.ga_data))[j]
213#define FUNCLINE(fp, j) ((char_u **)(fp->uf_lines.ga_data))[j]
Bram Moolenaar071d4272004-06-13 20:20:40 +0000214
Bram Moolenaar33570922005-01-25 22:26:29 +0000215#define MAX_FUNC_ARGS 20 /* maximum number of function arguments */
216#define VAR_SHORT_LEN 20 /* short variable name length */
217#define FIXVAR_CNT 12 /* number of fixed variables */
218
Bram Moolenaar071d4272004-06-13 20:20:40 +0000219/* structure to hold info for a function that is currently being executed. */
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +0000220typedef struct funccall_S funccall_T;
221
222struct funccall_S
Bram Moolenaar071d4272004-06-13 20:20:40 +0000223{
224 ufunc_T *func; /* function being called */
225 int linenr; /* next line to be executed */
226 int returned; /* ":return" used */
Bram Moolenaar33570922005-01-25 22:26:29 +0000227 struct /* fixed variables for arguments */
228 {
229 dictitem_T var; /* variable (without room for name) */
230 char_u room[VAR_SHORT_LEN]; /* room for the name */
231 } fixvar[FIXVAR_CNT];
232 dict_T l_vars; /* l: local function variables */
233 dictitem_T l_vars_var; /* variable for l: scope */
234 dict_T l_avars; /* a: argument variables */
235 dictitem_T l_avars_var; /* variable for a: scope */
236 list_T l_varlist; /* list for a:000 */
237 listitem_T l_listitems[MAX_FUNC_ARGS]; /* listitems for a:000 */
238 typval_T *rettv; /* return value */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000239 linenr_T breakpoint; /* next line with breakpoint or zero */
240 int dbg_tick; /* debug_tick when breakpoint was set */
241 int level; /* top nesting level of executed function */
Bram Moolenaar05159a02005-02-26 23:04:13 +0000242#ifdef FEAT_PROFILE
243 proftime_T prof_child; /* time spent in a child */
244#endif
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +0000245 funccall_T *caller; /* calling function or NULL */
246};
Bram Moolenaar071d4272004-06-13 20:20:40 +0000247
248/*
Bram Moolenaar3d60ec22005-01-05 22:19:46 +0000249 * Info used by a ":for" loop.
250 */
Bram Moolenaar33570922005-01-25 22:26:29 +0000251typedef struct
Bram Moolenaar3d60ec22005-01-05 22:19:46 +0000252{
253 int fi_semicolon; /* TRUE if ending in '; var]' */
254 int fi_varcount; /* nr of variables in the list */
Bram Moolenaar33570922005-01-25 22:26:29 +0000255 listwatch_T fi_lw; /* keep an eye on the item used. */
256 list_T *fi_list; /* list being used */
257} forinfo_T;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +0000258
Bram Moolenaar3d60ec22005-01-05 22:19:46 +0000259/*
Bram Moolenaar9ef486d2005-01-17 22:23:00 +0000260 * Struct used by trans_function_name()
261 */
262typedef struct
263{
Bram Moolenaar33570922005-01-25 22:26:29 +0000264 dict_T *fd_dict; /* Dictionary used */
Bram Moolenaar532c7802005-01-27 14:44:31 +0000265 char_u *fd_newkey; /* new key in "dict" in allocated memory */
Bram Moolenaar33570922005-01-25 22:26:29 +0000266 dictitem_T *fd_di; /* Dictionary item used */
267} funcdict_T;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +0000268
Bram Moolenaara7043832005-01-21 11:56:39 +0000269
270/*
Bram Moolenaar33570922005-01-25 22:26:29 +0000271 * Array to hold the value of v: variables.
272 * The value is in a dictitem, so that it can also be used in the v: scope.
273 * The reason to use this table anyway is for very quick access to the
274 * variables with the VV_ defines.
275 */
276#include "version.h"
277
278/* values for vv_flags: */
279#define VV_COMPAT 1 /* compatible, also used without "v:" */
280#define VV_RO 2 /* read-only */
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +0000281#define VV_RO_SBX 4 /* read-only in the sandbox */
Bram Moolenaar33570922005-01-25 22:26:29 +0000282
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000283#define VV_NAME(s, t) s, {{t}}, {0}
Bram Moolenaar33570922005-01-25 22:26:29 +0000284
285static struct vimvar
286{
287 char *vv_name; /* name of variable, without v: */
Bram Moolenaar33570922005-01-25 22:26:29 +0000288 dictitem_T vv_di; /* value and name for key */
289 char vv_filler[16]; /* space for LONGEST name below!!! */
290 char vv_flags; /* VV_COMPAT, VV_RO, VV_RO_SBX */
291} vimvars[VV_LEN] =
292{
293 /*
294 * The order here must match the VV_ defines in vim.h!
295 * Initializing a union does not work, leave tv.vval empty to get zero's.
296 */
297 {VV_NAME("count", VAR_NUMBER), VV_COMPAT+VV_RO},
298 {VV_NAME("count1", VAR_NUMBER), VV_RO},
299 {VV_NAME("prevcount", VAR_NUMBER), VV_RO},
300 {VV_NAME("errmsg", VAR_STRING), VV_COMPAT},
301 {VV_NAME("warningmsg", VAR_STRING), 0},
302 {VV_NAME("statusmsg", VAR_STRING), 0},
303 {VV_NAME("shell_error", VAR_NUMBER), VV_COMPAT+VV_RO},
304 {VV_NAME("this_session", VAR_STRING), VV_COMPAT},
305 {VV_NAME("version", VAR_NUMBER), VV_COMPAT+VV_RO},
306 {VV_NAME("lnum", VAR_NUMBER), VV_RO_SBX},
307 {VV_NAME("termresponse", VAR_STRING), VV_RO},
308 {VV_NAME("fname", VAR_STRING), VV_RO},
309 {VV_NAME("lang", VAR_STRING), VV_RO},
310 {VV_NAME("lc_time", VAR_STRING), VV_RO},
311 {VV_NAME("ctype", VAR_STRING), VV_RO},
312 {VV_NAME("charconvert_from", VAR_STRING), VV_RO},
313 {VV_NAME("charconvert_to", VAR_STRING), VV_RO},
314 {VV_NAME("fname_in", VAR_STRING), VV_RO},
315 {VV_NAME("fname_out", VAR_STRING), VV_RO},
316 {VV_NAME("fname_new", VAR_STRING), VV_RO},
317 {VV_NAME("fname_diff", VAR_STRING), VV_RO},
318 {VV_NAME("cmdarg", VAR_STRING), VV_RO},
319 {VV_NAME("foldstart", VAR_NUMBER), VV_RO_SBX},
320 {VV_NAME("foldend", VAR_NUMBER), VV_RO_SBX},
321 {VV_NAME("folddashes", VAR_STRING), VV_RO_SBX},
322 {VV_NAME("foldlevel", VAR_NUMBER), VV_RO_SBX},
323 {VV_NAME("progname", VAR_STRING), VV_RO},
324 {VV_NAME("servername", VAR_STRING), VV_RO},
325 {VV_NAME("dying", VAR_NUMBER), VV_RO},
326 {VV_NAME("exception", VAR_STRING), VV_RO},
327 {VV_NAME("throwpoint", VAR_STRING), VV_RO},
328 {VV_NAME("register", VAR_STRING), VV_RO},
329 {VV_NAME("cmdbang", VAR_NUMBER), VV_RO},
330 {VV_NAME("insertmode", VAR_STRING), VV_RO},
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +0000331 {VV_NAME("val", VAR_UNKNOWN), VV_RO},
332 {VV_NAME("key", VAR_UNKNOWN), VV_RO},
Bram Moolenaar05159a02005-02-26 23:04:13 +0000333 {VV_NAME("profiling", VAR_NUMBER), VV_RO},
Bram Moolenaar19a09a12005-03-04 23:39:37 +0000334 {VV_NAME("fcs_reason", VAR_STRING), VV_RO},
335 {VV_NAME("fcs_choice", VAR_STRING), 0},
Bram Moolenaare2ac10d2005-03-07 23:26:06 +0000336 {VV_NAME("beval_bufnr", VAR_NUMBER), VV_RO},
337 {VV_NAME("beval_winnr", VAR_NUMBER), VV_RO},
338 {VV_NAME("beval_lnum", VAR_NUMBER), VV_RO},
339 {VV_NAME("beval_col", VAR_NUMBER), VV_RO},
340 {VV_NAME("beval_text", VAR_STRING), VV_RO},
Bram Moolenaar761b1132005-10-03 22:05:45 +0000341 {VV_NAME("scrollstart", VAR_STRING), 0},
Bram Moolenaard5bc83f2005-12-07 21:07:59 +0000342 {VV_NAME("swapname", VAR_STRING), VV_RO},
343 {VV_NAME("swapchoice", VAR_STRING), 0},
Bram Moolenaar63a121b2005-12-11 21:36:39 +0000344 {VV_NAME("swapcommand", VAR_STRING), VV_RO},
Bram Moolenaarf193fff2006-04-27 00:02:13 +0000345 {VV_NAME("char", VAR_STRING), VV_RO},
Bram Moolenaar219b8702006-11-01 14:32:36 +0000346 {VV_NAME("mouse_win", VAR_NUMBER), 0},
347 {VV_NAME("mouse_lnum", VAR_NUMBER), 0},
348 {VV_NAME("mouse_col", VAR_NUMBER), 0},
Bram Moolenaar8af1fbf2008-01-05 12:35:21 +0000349 {VV_NAME("operator", VAR_STRING), VV_RO},
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000350 {VV_NAME("searchforward", VAR_NUMBER), 0},
Bram Moolenaar33570922005-01-25 22:26:29 +0000351};
352
353/* shorthand */
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000354#define vv_type vv_di.di_tv.v_type
355#define vv_nr vv_di.di_tv.vval.v_number
356#define vv_float vv_di.di_tv.vval.v_float
357#define vv_str vv_di.di_tv.vval.v_string
358#define vv_tv vv_di.di_tv
Bram Moolenaar33570922005-01-25 22:26:29 +0000359
360/*
361 * The v: variables are stored in dictionary "vimvardict".
362 * "vimvars_var" is the variable that is used for the "l:" scope.
363 */
364static dict_T vimvardict;
365static dictitem_T vimvars_var;
366#define vimvarht vimvardict.dv_hashtab
367
Bram Moolenaara40058a2005-07-11 22:42:07 +0000368static void prepare_vimvar __ARGS((int idx, typval_T *save_tv));
369static void restore_vimvar __ARGS((int idx, typval_T *save_tv));
370#if defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL)
371static int call_vim_function __ARGS((char_u *func, int argc, char_u **argv, int safe, typval_T *rettv));
372#endif
373static int ex_let_vars __ARGS((char_u *arg, typval_T *tv, int copy, int semicolon, int var_count, char_u *nextchars));
374static char_u *skip_var_list __ARGS((char_u *arg, int *var_count, int *semicolon));
375static char_u *skip_var_one __ARGS((char_u *arg));
Bram Moolenaar7d61a922007-08-30 09:12:23 +0000376static void list_hashtable_vars __ARGS((hashtab_T *ht, char_u *prefix, int empty, int *first));
377static void list_glob_vars __ARGS((int *first));
378static void list_buf_vars __ARGS((int *first));
379static void list_win_vars __ARGS((int *first));
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000380#ifdef FEAT_WINDOWS
Bram Moolenaar7d61a922007-08-30 09:12:23 +0000381static void list_tab_vars __ARGS((int *first));
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000382#endif
Bram Moolenaar7d61a922007-08-30 09:12:23 +0000383static void list_vim_vars __ARGS((int *first));
384static void list_script_vars __ARGS((int *first));
385static void list_func_vars __ARGS((int *first));
386static char_u *list_arg_vars __ARGS((exarg_T *eap, char_u *arg, int *first));
Bram Moolenaara40058a2005-07-11 22:42:07 +0000387static char_u *ex_let_one __ARGS((char_u *arg, typval_T *tv, int copy, char_u *endchars, char_u *op));
388static int check_changedtick __ARGS((char_u *arg));
389static char_u *get_lval __ARGS((char_u *name, typval_T *rettv, lval_T *lp, int unlet, int skip, int quiet, int fne_flags));
390static void clear_lval __ARGS((lval_T *lp));
391static void set_var_lval __ARGS((lval_T *lp, char_u *endp, typval_T *rettv, int copy, char_u *op));
392static int tv_op __ARGS((typval_T *tv1, typval_T *tv2, char_u *op));
393static void list_add_watch __ARGS((list_T *l, listwatch_T *lw));
394static void list_rem_watch __ARGS((list_T *l, listwatch_T *lwrem));
395static void list_fix_watch __ARGS((list_T *l, listitem_T *item));
396static void ex_unletlock __ARGS((exarg_T *eap, char_u *argstart, int deep));
397static int do_unlet_var __ARGS((lval_T *lp, char_u *name_end, int forceit));
398static int do_lock_var __ARGS((lval_T *lp, char_u *name_end, int deep, int lock));
399static void item_lock __ARGS((typval_T *tv, int deep, int lock));
400static int tv_islocked __ARGS((typval_T *tv));
401
Bram Moolenaar33570922005-01-25 22:26:29 +0000402static int eval0 __ARGS((char_u *arg, typval_T *rettv, char_u **nextcmd, int evaluate));
403static int eval1 __ARGS((char_u **arg, typval_T *rettv, int evaluate));
404static int eval2 __ARGS((char_u **arg, typval_T *rettv, int evaluate));
405static int eval3 __ARGS((char_u **arg, typval_T *rettv, int evaluate));
406static int eval4 __ARGS((char_u **arg, typval_T *rettv, int evaluate));
407static int eval5 __ARGS((char_u **arg, typval_T *rettv, int evaluate));
Bram Moolenaar8d00f9c2008-06-28 13:09:56 +0000408static int eval6 __ARGS((char_u **arg, typval_T *rettv, int evaluate, int want_string));
409static int eval7 __ARGS((char_u **arg, typval_T *rettv, int evaluate, int want_string));
Bram Moolenaara40058a2005-07-11 22:42:07 +0000410
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +0000411static int eval_index __ARGS((char_u **arg, typval_T *rettv, int evaluate, int verbose));
Bram Moolenaar33570922005-01-25 22:26:29 +0000412static int get_option_tv __ARGS((char_u **arg, typval_T *rettv, int evaluate));
413static int get_string_tv __ARGS((char_u **arg, typval_T *rettv, int evaluate));
414static int get_lit_string_tv __ARGS((char_u **arg, typval_T *rettv, int evaluate));
415static int get_list_tv __ARGS((char_u **arg, typval_T *rettv, int evaluate));
Bram Moolenaareddf53b2006-02-27 00:11:10 +0000416static int rettv_list_alloc __ARGS((typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000417static listitem_T *listitem_alloc __ARGS((void));
418static void listitem_free __ARGS((listitem_T *item));
419static void listitem_remove __ARGS((list_T *l, listitem_T *item));
420static long list_len __ARGS((list_T *l));
421static int list_equal __ARGS((list_T *l1, list_T *l2, int ic));
422static int dict_equal __ARGS((dict_T *d1, dict_T *d2, int ic));
423static int tv_equal __ARGS((typval_T *tv1, typval_T *tv2, int ic));
Bram Moolenaar33570922005-01-25 22:26:29 +0000424static listitem_T *list_find __ARGS((list_T *l, long n));
Bram Moolenaara5525202006-03-02 22:52:09 +0000425static long list_find_nr __ARGS((list_T *l, long idx, int *errorp));
Bram Moolenaar33570922005-01-25 22:26:29 +0000426static long list_idx_of_item __ARGS((list_T *l, listitem_T *item));
Bram Moolenaar33570922005-01-25 22:26:29 +0000427static void list_append __ARGS((list_T *l, listitem_T *item));
428static int list_append_tv __ARGS((list_T *l, typval_T *tv));
Bram Moolenaar4463f292005-09-25 22:20:24 +0000429static int list_append_string __ARGS((list_T *l, char_u *str, int len));
430static int list_append_number __ARGS((list_T *l, varnumber_T n));
Bram Moolenaar33570922005-01-25 22:26:29 +0000431static int list_insert_tv __ARGS((list_T *l, typval_T *tv, listitem_T *item));
432static int list_extend __ARGS((list_T *l1, list_T *l2, listitem_T *bef));
433static int list_concat __ARGS((list_T *l1, list_T *l2, typval_T *tv));
Bram Moolenaar81bf7082005-02-12 14:31:42 +0000434static list_T *list_copy __ARGS((list_T *orig, int deep, int copyID));
Bram Moolenaar33570922005-01-25 22:26:29 +0000435static void list_remove __ARGS((list_T *l, listitem_T *item, listitem_T *item2));
Bram Moolenaarb71eaae2006-01-20 23:10:18 +0000436static char_u *list2string __ARGS((typval_T *tv, int copyID));
437static int list_join __ARGS((garray_T *gap, list_T *l, char_u *sep, int echo, int copyID));
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +0000438static void set_ref_in_ht __ARGS((hashtab_T *ht, int copyID));
439static void set_ref_in_list __ARGS((list_T *l, int copyID));
440static void set_ref_in_item __ARGS((typval_T *tv, int copyID));
Bram Moolenaar33570922005-01-25 22:26:29 +0000441static void dict_unref __ARGS((dict_T *d));
Bram Moolenaar685295c2006-10-15 20:37:38 +0000442static void dict_free __ARGS((dict_T *d, int recurse));
Bram Moolenaar33570922005-01-25 22:26:29 +0000443static dictitem_T *dictitem_alloc __ARGS((char_u *key));
444static dictitem_T *dictitem_copy __ARGS((dictitem_T *org));
445static void dictitem_remove __ARGS((dict_T *dict, dictitem_T *item));
446static void dictitem_free __ARGS((dictitem_T *item));
Bram Moolenaar81bf7082005-02-12 14:31:42 +0000447static dict_T *dict_copy __ARGS((dict_T *orig, int deep, int copyID));
Bram Moolenaar33570922005-01-25 22:26:29 +0000448static int dict_add __ARGS((dict_T *d, dictitem_T *item));
449static long dict_len __ARGS((dict_T *d));
450static dictitem_T *dict_find __ARGS((dict_T *d, char_u *key, int len));
Bram Moolenaarb71eaae2006-01-20 23:10:18 +0000451static char_u *dict2string __ARGS((typval_T *tv, int copyID));
Bram Moolenaar33570922005-01-25 22:26:29 +0000452static int get_dict_tv __ARGS((char_u **arg, typval_T *rettv, int evaluate));
Bram Moolenaarb71eaae2006-01-20 23:10:18 +0000453static char_u *echo_string __ARGS((typval_T *tv, char_u **tofree, char_u *numbuf, int copyID));
454static char_u *tv2string __ARGS((typval_T *tv, char_u **tofree, char_u *numbuf, int copyID));
Bram Moolenaar33570922005-01-25 22:26:29 +0000455static char_u *string_quote __ARGS((char_u *str, int function));
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000456#ifdef FEAT_FLOAT
457static int string2float __ARGS((char_u *text, float_T *value));
458#endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000459static int get_env_tv __ARGS((char_u **arg, typval_T *rettv, int evaluate));
460static int find_internal_func __ARGS((char_u *name));
461static char_u *deref_func_name __ARGS((char_u *name, int *lenp));
462static 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));
463static 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));
Bram Moolenaar89d40322006-08-29 15:30:07 +0000464static void emsg_funcname __ARGS((char *ermsg, char_u *name));
Bram Moolenaar05bb9532008-07-04 09:44:11 +0000465static int non_zero_arg __ARGS((typval_T *argvars));
Bram Moolenaar33570922005-01-25 22:26:29 +0000466
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000467#ifdef FEAT_FLOAT
468static void f_abs __ARGS((typval_T *argvars, typval_T *rettv));
469#endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000470static void f_add __ARGS((typval_T *argvars, typval_T *rettv));
471static void f_append __ARGS((typval_T *argvars, typval_T *rettv));
472static void f_argc __ARGS((typval_T *argvars, typval_T *rettv));
473static void f_argidx __ARGS((typval_T *argvars, typval_T *rettv));
474static void f_argv __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000475#ifdef FEAT_FLOAT
476static void f_atan __ARGS((typval_T *argvars, typval_T *rettv));
477#endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000478static void f_browse __ARGS((typval_T *argvars, typval_T *rettv));
479static void f_browsedir __ARGS((typval_T *argvars, typval_T *rettv));
480static void f_bufexists __ARGS((typval_T *argvars, typval_T *rettv));
481static void f_buflisted __ARGS((typval_T *argvars, typval_T *rettv));
482static void f_bufloaded __ARGS((typval_T *argvars, typval_T *rettv));
483static void f_bufname __ARGS((typval_T *argvars, typval_T *rettv));
484static void f_bufnr __ARGS((typval_T *argvars, typval_T *rettv));
485static void f_bufwinnr __ARGS((typval_T *argvars, typval_T *rettv));
486static void f_byte2line __ARGS((typval_T *argvars, typval_T *rettv));
487static void f_byteidx __ARGS((typval_T *argvars, typval_T *rettv));
488static void f_call __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000489#ifdef FEAT_FLOAT
490static void f_ceil __ARGS((typval_T *argvars, typval_T *rettv));
491#endif
Bram Moolenaarf0acfce2006-03-17 23:21:19 +0000492static void f_changenr __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000493static void f_char2nr __ARGS((typval_T *argvars, typval_T *rettv));
494static void f_cindent __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar6ee10162007-07-26 20:58:42 +0000495static void f_clearmatches __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000496static void f_col __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar572cb562005-08-05 21:35:02 +0000497#if defined(FEAT_INS_EXPAND)
Bram Moolenaarade00832006-03-10 21:46:58 +0000498static void f_complete __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar572cb562005-08-05 21:35:02 +0000499static void f_complete_add __ARGS((typval_T *argvars, typval_T *rettv));
500static void f_complete_check __ARGS((typval_T *argvars, typval_T *rettv));
501#endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000502static void f_confirm __ARGS((typval_T *argvars, typval_T *rettv));
503static void f_copy __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000504#ifdef FEAT_FLOAT
505static void f_cos __ARGS((typval_T *argvars, typval_T *rettv));
506#endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000507static void f_count __ARGS((typval_T *argvars, typval_T *rettv));
508static void f_cscope_connection __ARGS((typval_T *argvars, typval_T *rettv));
509static void f_cursor __ARGS((typval_T *argsvars, typval_T *rettv));
510static void f_deepcopy __ARGS((typval_T *argvars, typval_T *rettv));
511static void f_delete __ARGS((typval_T *argvars, typval_T *rettv));
512static void f_did_filetype __ARGS((typval_T *argvars, typval_T *rettv));
513static void f_diff_filler __ARGS((typval_T *argvars, typval_T *rettv));
514static void f_diff_hlID __ARGS((typval_T *argvars, typval_T *rettv));
515static void f_empty __ARGS((typval_T *argvars, typval_T *rettv));
516static void f_escape __ARGS((typval_T *argvars, typval_T *rettv));
517static void f_eval __ARGS((typval_T *argvars, typval_T *rettv));
518static void f_eventhandler __ARGS((typval_T *argvars, typval_T *rettv));
519static void f_executable __ARGS((typval_T *argvars, typval_T *rettv));
520static void f_exists __ARGS((typval_T *argvars, typval_T *rettv));
521static void f_expand __ARGS((typval_T *argvars, typval_T *rettv));
522static void f_extend __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaarf9393ef2006-04-24 19:47:27 +0000523static void f_feedkeys __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000524static void f_filereadable __ARGS((typval_T *argvars, typval_T *rettv));
525static void f_filewritable __ARGS((typval_T *argvars, typval_T *rettv));
526static void f_filter __ARGS((typval_T *argvars, typval_T *rettv));
527static void f_finddir __ARGS((typval_T *argvars, typval_T *rettv));
528static void f_findfile __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000529#ifdef FEAT_FLOAT
530static void f_float2nr __ARGS((typval_T *argvars, typval_T *rettv));
531static void f_floor __ARGS((typval_T *argvars, typval_T *rettv));
532#endif
Bram Moolenaaraebaf892008-05-28 14:49:58 +0000533static void f_fnameescape __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000534static void f_fnamemodify __ARGS((typval_T *argvars, typval_T *rettv));
535static void f_foldclosed __ARGS((typval_T *argvars, typval_T *rettv));
536static void f_foldclosedend __ARGS((typval_T *argvars, typval_T *rettv));
537static void f_foldlevel __ARGS((typval_T *argvars, typval_T *rettv));
538static void f_foldtext __ARGS((typval_T *argvars, typval_T *rettv));
539static void f_foldtextresult __ARGS((typval_T *argvars, typval_T *rettv));
540static void f_foreground __ARGS((typval_T *argvars, typval_T *rettv));
541static void f_function __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +0000542static void f_garbagecollect __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000543static void f_get __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar80fc0432005-07-20 22:06:07 +0000544static void f_getbufline __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000545static void f_getbufvar __ARGS((typval_T *argvars, typval_T *rettv));
546static void f_getchar __ARGS((typval_T *argvars, typval_T *rettv));
547static void f_getcharmod __ARGS((typval_T *argvars, typval_T *rettv));
548static void f_getcmdline __ARGS((typval_T *argvars, typval_T *rettv));
549static void f_getcmdpos __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +0000550static void f_getcmdtype __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000551static void f_getcwd __ARGS((typval_T *argvars, typval_T *rettv));
552static void f_getfontname __ARGS((typval_T *argvars, typval_T *rettv));
553static void f_getfperm __ARGS((typval_T *argvars, typval_T *rettv));
554static void f_getfsize __ARGS((typval_T *argvars, typval_T *rettv));
555static void f_getftime __ARGS((typval_T *argvars, typval_T *rettv));
556static void f_getftype __ARGS((typval_T *argvars, typval_T *rettv));
557static void f_getline __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar6ee10162007-07-26 20:58:42 +0000558static void f_getmatches __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar18081e32008-02-20 19:11:07 +0000559static void f_getpid __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaara5525202006-03-02 22:52:09 +0000560static void f_getpos __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar2641f772005-03-25 21:58:17 +0000561static void f_getqflist __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000562static void f_getreg __ARGS((typval_T *argvars, typval_T *rettv));
563static void f_getregtype __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar99ebf042006-04-15 20:28:54 +0000564static void f_gettabwinvar __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000565static void f_getwinposx __ARGS((typval_T *argvars, typval_T *rettv));
566static void f_getwinposy __ARGS((typval_T *argvars, typval_T *rettv));
567static void f_getwinvar __ARGS((typval_T *argvars, typval_T *rettv));
568static void f_glob __ARGS((typval_T *argvars, typval_T *rettv));
569static void f_globpath __ARGS((typval_T *argvars, typval_T *rettv));
570static void f_has __ARGS((typval_T *argvars, typval_T *rettv));
571static void f_has_key __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaard267b9c2007-04-26 15:06:45 +0000572static void f_haslocaldir __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000573static void f_hasmapto __ARGS((typval_T *argvars, typval_T *rettv));
574static void f_histadd __ARGS((typval_T *argvars, typval_T *rettv));
575static void f_histdel __ARGS((typval_T *argvars, typval_T *rettv));
576static void f_histget __ARGS((typval_T *argvars, typval_T *rettv));
577static void f_histnr __ARGS((typval_T *argvars, typval_T *rettv));
578static void f_hlID __ARGS((typval_T *argvars, typval_T *rettv));
579static void f_hlexists __ARGS((typval_T *argvars, typval_T *rettv));
580static void f_hostname __ARGS((typval_T *argvars, typval_T *rettv));
581static void f_iconv __ARGS((typval_T *argvars, typval_T *rettv));
582static void f_indent __ARGS((typval_T *argvars, typval_T *rettv));
583static void f_index __ARGS((typval_T *argvars, typval_T *rettv));
584static void f_input __ARGS((typval_T *argvars, typval_T *rettv));
585static void f_inputdialog __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar6efa2b32005-09-10 19:26:26 +0000586static void f_inputlist __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000587static void f_inputrestore __ARGS((typval_T *argvars, typval_T *rettv));
588static void f_inputsave __ARGS((typval_T *argvars, typval_T *rettv));
589static void f_inputsecret __ARGS((typval_T *argvars, typval_T *rettv));
590static void f_insert __ARGS((typval_T *argvars, typval_T *rettv));
591static void f_isdirectory __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar2e6aff32005-01-31 19:25:36 +0000592static void f_islocked __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000593static void f_items __ARGS((typval_T *argvars, typval_T *rettv));
594static void f_join __ARGS((typval_T *argvars, typval_T *rettv));
595static void f_keys __ARGS((typval_T *argvars, typval_T *rettv));
596static void f_last_buffer_nr __ARGS((typval_T *argvars, typval_T *rettv));
597static void f_len __ARGS((typval_T *argvars, typval_T *rettv));
598static void f_libcall __ARGS((typval_T *argvars, typval_T *rettv));
599static void f_libcallnr __ARGS((typval_T *argvars, typval_T *rettv));
600static void f_line __ARGS((typval_T *argvars, typval_T *rettv));
601static void f_line2byte __ARGS((typval_T *argvars, typval_T *rettv));
602static void f_lispindent __ARGS((typval_T *argvars, typval_T *rettv));
603static void f_localtime __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000604#ifdef FEAT_FLOAT
605static void f_log10 __ARGS((typval_T *argvars, typval_T *rettv));
606#endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000607static void f_map __ARGS((typval_T *argvars, typval_T *rettv));
608static void f_maparg __ARGS((typval_T *argvars, typval_T *rettv));
609static void f_mapcheck __ARGS((typval_T *argvars, typval_T *rettv));
610static void f_match __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar6ee10162007-07-26 20:58:42 +0000611static void f_matchadd __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000612static void f_matcharg __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar6ee10162007-07-26 20:58:42 +0000613static void f_matchdelete __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000614static void f_matchend __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +0000615static void f_matchlist __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000616static void f_matchstr __ARGS((typval_T *argvars, typval_T *rettv));
617static void f_max __ARGS((typval_T *argvars, typval_T *rettv));
618static void f_min __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000619#ifdef vim_mkdir
620static void f_mkdir __ARGS((typval_T *argvars, typval_T *rettv));
621#endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000622static void f_mode __ARGS((typval_T *argvars, typval_T *rettv));
623static void f_nextnonblank __ARGS((typval_T *argvars, typval_T *rettv));
624static void f_nr2char __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000625static void f_pathshorten __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000626#ifdef FEAT_FLOAT
627static void f_pow __ARGS((typval_T *argvars, typval_T *rettv));
628#endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000629static void f_prevnonblank __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar4be06f92005-07-29 22:36:03 +0000630static void f_printf __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +0000631static void f_pumvisible __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000632static void f_range __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +0000633static void f_readfile __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaare580b0c2006-03-21 21:33:03 +0000634static void f_reltime __ARGS((typval_T *argvars, typval_T *rettv));
635static void f_reltimestr __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000636static void f_remote_expr __ARGS((typval_T *argvars, typval_T *rettv));
637static void f_remote_foreground __ARGS((typval_T *argvars, typval_T *rettv));
638static void f_remote_peek __ARGS((typval_T *argvars, typval_T *rettv));
639static void f_remote_read __ARGS((typval_T *argvars, typval_T *rettv));
640static void f_remote_send __ARGS((typval_T *argvars, typval_T *rettv));
641static void f_remove __ARGS((typval_T *argvars, typval_T *rettv));
642static void f_rename __ARGS((typval_T *argvars, typval_T *rettv));
643static void f_repeat __ARGS((typval_T *argvars, typval_T *rettv));
644static void f_resolve __ARGS((typval_T *argvars, typval_T *rettv));
645static void f_reverse __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000646#ifdef FEAT_FLOAT
647static void f_round __ARGS((typval_T *argvars, typval_T *rettv));
648#endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000649static void f_search __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaardd2436f2005-09-05 22:14:46 +0000650static void f_searchdecl __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000651static void f_searchpair __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +0000652static void f_searchpairpos __ARGS((typval_T *argvars, typval_T *rettv));
653static void f_searchpos __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000654static void f_server2client __ARGS((typval_T *argvars, typval_T *rettv));
655static void f_serverlist __ARGS((typval_T *argvars, typval_T *rettv));
656static void f_setbufvar __ARGS((typval_T *argvars, typval_T *rettv));
657static void f_setcmdpos __ARGS((typval_T *argvars, typval_T *rettv));
658static void f_setline __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar17c7c012006-01-26 22:25:15 +0000659static void f_setloclist __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar6ee10162007-07-26 20:58:42 +0000660static void f_setmatches __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar0e34f622006-03-03 23:00:03 +0000661static void f_setpos __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar2641f772005-03-25 21:58:17 +0000662static void f_setqflist __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000663static void f_setreg __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar99ebf042006-04-15 20:28:54 +0000664static void f_settabwinvar __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000665static void f_setwinvar __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar60a495f2006-10-03 12:44:42 +0000666static void f_shellescape __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000667static void f_simplify __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000668#ifdef FEAT_FLOAT
669static void f_sin __ARGS((typval_T *argvars, typval_T *rettv));
670#endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000671static void f_sort __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +0000672static void f_soundfold __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000673static void f_spellbadword __ARGS((typval_T *argvars, typval_T *rettv));
674static void f_spellsuggest __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000675static void f_split __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000676#ifdef FEAT_FLOAT
677static void f_sqrt __ARGS((typval_T *argvars, typval_T *rettv));
678static void f_str2float __ARGS((typval_T *argvars, typval_T *rettv));
679#endif
Bram Moolenaar2c932302006-03-18 21:42:09 +0000680static void f_str2nr __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000681#ifdef HAVE_STRFTIME
682static void f_strftime __ARGS((typval_T *argvars, typval_T *rettv));
683#endif
684static void f_stridx __ARGS((typval_T *argvars, typval_T *rettv));
685static void f_string __ARGS((typval_T *argvars, typval_T *rettv));
686static void f_strlen __ARGS((typval_T *argvars, typval_T *rettv));
687static void f_strpart __ARGS((typval_T *argvars, typval_T *rettv));
688static void f_strridx __ARGS((typval_T *argvars, typval_T *rettv));
689static void f_strtrans __ARGS((typval_T *argvars, typval_T *rettv));
690static void f_submatch __ARGS((typval_T *argvars, typval_T *rettv));
691static void f_substitute __ARGS((typval_T *argvars, typval_T *rettv));
692static void f_synID __ARGS((typval_T *argvars, typval_T *rettv));
693static void f_synIDattr __ARGS((typval_T *argvars, typval_T *rettv));
694static void f_synIDtrans __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar9d188ab2008-01-10 21:24:39 +0000695static void f_synstack __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000696static void f_system __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaarfaa959a2006-02-20 21:37:40 +0000697static void f_tabpagebuflist __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar7e8fd632006-02-18 22:14:51 +0000698static void f_tabpagenr __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaarfaa959a2006-02-20 21:37:40 +0000699static void f_tabpagewinnr __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar19a09a12005-03-04 23:39:37 +0000700static void f_taglist __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaard43b6cf2005-09-09 19:53:42 +0000701static void f_tagfiles __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000702static void f_tempname __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaard52d9742005-08-21 22:20:28 +0000703static void f_test __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000704static void f_tolower __ARGS((typval_T *argvars, typval_T *rettv));
705static void f_toupper __ARGS((typval_T *argvars, typval_T *rettv));
706static void f_tr __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000707#ifdef FEAT_FLOAT
708static void f_trunc __ARGS((typval_T *argvars, typval_T *rettv));
709#endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000710static void f_type __ARGS((typval_T *argvars, typval_T *rettv));
711static void f_values __ARGS((typval_T *argvars, typval_T *rettv));
712static void f_virtcol __ARGS((typval_T *argvars, typval_T *rettv));
713static void f_visualmode __ARGS((typval_T *argvars, typval_T *rettv));
714static void f_winbufnr __ARGS((typval_T *argvars, typval_T *rettv));
715static void f_wincol __ARGS((typval_T *argvars, typval_T *rettv));
716static void f_winheight __ARGS((typval_T *argvars, typval_T *rettv));
717static void f_winline __ARGS((typval_T *argvars, typval_T *rettv));
718static void f_winnr __ARGS((typval_T *argvars, typval_T *rettv));
719static void f_winrestcmd __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar768b8c42006-03-04 21:58:33 +0000720static void f_winrestview __ARGS((typval_T *argvars, typval_T *rettv));
721static void f_winsaveview __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000722static void f_winwidth __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +0000723static void f_writefile __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000724
Bram Moolenaar0e34f622006-03-03 23:00:03 +0000725static int list2fpos __ARGS((typval_T *arg, pos_T *posp, int *fnump));
Bram Moolenaar477933c2007-07-17 14:32:23 +0000726static pos_T *var2fpos __ARGS((typval_T *varp, int dollar_lnum, int *fnum));
Bram Moolenaar33570922005-01-25 22:26:29 +0000727static int get_env_len __ARGS((char_u **arg));
728static int get_id_len __ARGS((char_u **arg));
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +0000729static int get_name_len __ARGS((char_u **arg, char_u **alias, int evaluate, int verbose));
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +0000730static char_u *find_name_end __ARGS((char_u *arg, char_u **expr_start, char_u **expr_end, int flags));
731#define FNE_INCL_BR 1 /* find_name_end(): include [] in name */
732#define FNE_CHECK_START 2 /* find_name_end(): check name starts with
733 valid character */
Bram Moolenaara40058a2005-07-11 22:42:07 +0000734static char_u * make_expanded_name __ARGS((char_u *in_start, char_u *expr_start, char_u *expr_end, char_u *in_end));
Bram Moolenaar33570922005-01-25 22:26:29 +0000735static int eval_isnamec __ARGS((int c));
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +0000736static int eval_isnamec1 __ARGS((int c));
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +0000737static int get_var_tv __ARGS((char_u *name, int len, typval_T *rettv, int verbose));
738static int handle_subscript __ARGS((char_u **arg, typval_T *rettv, int evaluate, int verbose));
Bram Moolenaar33570922005-01-25 22:26:29 +0000739static typval_T *alloc_tv __ARGS((void));
740static typval_T *alloc_string_tv __ARGS((char_u *string));
Bram Moolenaar33570922005-01-25 22:26:29 +0000741static void init_tv __ARGS((typval_T *varp));
742static long get_tv_number __ARGS((typval_T *varp));
743static linenr_T get_tv_lnum __ARGS((typval_T *argvars));
Bram Moolenaar661b1822005-07-28 22:36:45 +0000744static linenr_T get_tv_lnum_buf __ARGS((typval_T *argvars, buf_T *buf));
Bram Moolenaar33570922005-01-25 22:26:29 +0000745static char_u *get_tv_string __ARGS((typval_T *varp));
746static char_u *get_tv_string_buf __ARGS((typval_T *varp, char_u *buf));
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000747static char_u *get_tv_string_buf_chk __ARGS((typval_T *varp, char_u *buf));
Bram Moolenaar33570922005-01-25 22:26:29 +0000748static dictitem_T *find_var __ARGS((char_u *name, hashtab_T **htp));
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000749static dictitem_T *find_var_in_ht __ARGS((hashtab_T *ht, char_u *varname, int writing));
Bram Moolenaar33570922005-01-25 22:26:29 +0000750static hashtab_T *find_var_ht __ARGS((char_u *name, char_u **varname));
751static void vars_clear_ext __ARGS((hashtab_T *ht, int free_val));
752static void delete_var __ARGS((hashtab_T *ht, hashitem_T *hi));
Bram Moolenaar7d61a922007-08-30 09:12:23 +0000753static void list_one_var __ARGS((dictitem_T *v, char_u *prefix, int *first));
754static void list_one_var_a __ARGS((char_u *prefix, char_u *name, int type, char_u *string, int *first));
Bram Moolenaar33570922005-01-25 22:26:29 +0000755static void set_var __ARGS((char_u *name, typval_T *varp, int copy));
756static int var_check_ro __ARGS((int flags, char_u *name));
Bram Moolenaar4e957af2006-09-02 11:41:07 +0000757static int var_check_fixed __ARGS((int flags, char_u *name));
Bram Moolenaar2e6aff32005-01-31 19:25:36 +0000758static int tv_check_lock __ARGS((int lock, char_u *name));
Bram Moolenaar33570922005-01-25 22:26:29 +0000759static void copy_tv __ARGS((typval_T *from, typval_T *to));
Bram Moolenaar81bf7082005-02-12 14:31:42 +0000760static int item_copy __ARGS((typval_T *from, typval_T *to, int deep, int copyID));
Bram Moolenaar33570922005-01-25 22:26:29 +0000761static char_u *find_option_end __ARGS((char_u **arg, int *opt_flags));
762static char_u *trans_function_name __ARGS((char_u **pp, int skip, int flags, funcdict_T *fd));
763static int eval_fname_script __ARGS((char_u *p));
764static int eval_fname_sid __ARGS((char_u *p));
765static void list_func_head __ARGS((ufunc_T *fp, int indent));
Bram Moolenaar33570922005-01-25 22:26:29 +0000766static ufunc_T *find_func __ARGS((char_u *name));
767static int function_exists __ARGS((char_u *name));
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +0000768static int builtin_function __ARGS((char_u *name));
Bram Moolenaar05159a02005-02-26 23:04:13 +0000769#ifdef FEAT_PROFILE
770static void func_do_profile __ARGS((ufunc_T *fp));
Bram Moolenaar73830342005-02-28 22:48:19 +0000771static void prof_sort_list __ARGS((FILE *fd, ufunc_T **sorttab, int st_len, char *title, int prefer_self));
772static void prof_func_line __ARGS((FILE *fd, int count, proftime_T *total, proftime_T *self, int prefer_self));
773static int
774# ifdef __BORLANDC__
775 _RTLENTRYF
776# endif
777 prof_total_cmp __ARGS((const void *s1, const void *s2));
778static int
779# ifdef __BORLANDC__
780 _RTLENTRYF
781# endif
782 prof_self_cmp __ARGS((const void *s1, const void *s2));
Bram Moolenaar05159a02005-02-26 23:04:13 +0000783#endif
Bram Moolenaar87e25fd2005-07-27 21:13:01 +0000784static int script_autoload __ARGS((char_u *name, int reload));
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000785static char_u *autoload_name __ARGS((char_u *name));
Bram Moolenaara40058a2005-07-11 22:42:07 +0000786static void cat_func_name __ARGS((char_u *buf, ufunc_T *fp));
Bram Moolenaar33570922005-01-25 22:26:29 +0000787static void func_free __ARGS((ufunc_T *fp));
788static void func_unref __ARGS((char_u *name));
789static void func_ref __ARGS((char_u *name));
790static 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));
791static void add_nr_var __ARGS((dict_T *dp, dictitem_T *v, char *name, varnumber_T nr));
Bram Moolenaar99ebf042006-04-15 20:28:54 +0000792static win_T *find_win_by_nr __ARGS((typval_T *vp, tabpage_T *tp));
793static void getwinvar __ARGS((typval_T *argvars, typval_T *rettv, int off));
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +0000794static int searchpair_cmn __ARGS((typval_T *argvars, pos_T *match_pos));
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000795static int search_cmn __ARGS((typval_T *argvars, pos_T *match_pos, int *flagsp));
Bram Moolenaar99ebf042006-04-15 20:28:54 +0000796static void setwinvar __ARGS((typval_T *argvars, typval_T *rettv, int off));
Bram Moolenaar33570922005-01-25 22:26:29 +0000797
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +0000798/* Character used as separated in autoload function/variable names. */
799#define AUTOLOAD_CHAR '#'
800
Bram Moolenaar33570922005-01-25 22:26:29 +0000801/*
802 * Initialize the global and v: variables.
Bram Moolenaara7043832005-01-21 11:56:39 +0000803 */
804 void
805eval_init()
806{
Bram Moolenaar33570922005-01-25 22:26:29 +0000807 int i;
808 struct vimvar *p;
809
810 init_var_dict(&globvardict, &globvars_var);
811 init_var_dict(&vimvardict, &vimvars_var);
Bram Moolenaar532c7802005-01-27 14:44:31 +0000812 hash_init(&compat_hashtab);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000813 hash_init(&func_hashtab);
Bram Moolenaar33570922005-01-25 22:26:29 +0000814
815 for (i = 0; i < VV_LEN; ++i)
816 {
817 p = &vimvars[i];
818 STRCPY(p->vv_di.di_key, p->vv_name);
819 if (p->vv_flags & VV_RO)
820 p->vv_di.di_flags = DI_FLAGS_RO | DI_FLAGS_FIX;
821 else if (p->vv_flags & VV_RO_SBX)
822 p->vv_di.di_flags = DI_FLAGS_RO_SBX | DI_FLAGS_FIX;
823 else
824 p->vv_di.di_flags = DI_FLAGS_FIX;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +0000825
826 /* add to v: scope dict, unless the value is not always available */
827 if (p->vv_type != VAR_UNKNOWN)
828 hash_add(&vimvarht, p->vv_di.di_key);
Bram Moolenaar33570922005-01-25 22:26:29 +0000829 if (p->vv_flags & VV_COMPAT)
Bram Moolenaar532c7802005-01-27 14:44:31 +0000830 /* add to compat scope dict */
831 hash_add(&compat_hashtab, p->vv_di.di_key);
Bram Moolenaar33570922005-01-25 22:26:29 +0000832 }
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000833 set_vim_var_nr(VV_SEARCHFORWARD, 1L);
Bram Moolenaara7043832005-01-21 11:56:39 +0000834}
835
Bram Moolenaar29a1c1d2005-06-24 23:11:15 +0000836#if defined(EXITFREE) || defined(PROTO)
837 void
838eval_clear()
839{
840 int i;
841 struct vimvar *p;
842
843 for (i = 0; i < VV_LEN; ++i)
844 {
845 p = &vimvars[i];
846 if (p->vv_di.di_tv.v_type == VAR_STRING)
Bram Moolenaard9fba312005-06-26 22:34:35 +0000847 {
Bram Moolenaar29a1c1d2005-06-24 23:11:15 +0000848 vim_free(p->vv_di.di_tv.vval.v_string);
Bram Moolenaard9fba312005-06-26 22:34:35 +0000849 p->vv_di.di_tv.vval.v_string = NULL;
850 }
Bram Moolenaar29a1c1d2005-06-24 23:11:15 +0000851 }
852 hash_clear(&vimvarht);
853 hash_clear(&compat_hashtab);
854
855 /* script-local variables */
856 for (i = 1; i <= ga_scripts.ga_len; ++i)
857 vars_clear(&SCRIPT_VARS(i));
858 ga_clear(&ga_scripts);
Bram Moolenaard9fba312005-06-26 22:34:35 +0000859 free_scriptnames();
Bram Moolenaar29a1c1d2005-06-24 23:11:15 +0000860
861 /* global variables */
862 vars_clear(&globvarht);
Bram Moolenaard9fba312005-06-26 22:34:35 +0000863
Bram Moolenaaraa35dd12006-04-29 22:03:41 +0000864 /* autoloaded script names */
865 ga_clear_strings(&ga_loaded);
866
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +0000867 /* unreferenced lists and dicts */
868 (void)garbage_collect();
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000869
870 /* functions */
871 free_all_functions();
872 hash_clear(&func_hashtab);
Bram Moolenaar29a1c1d2005-06-24 23:11:15 +0000873}
874#endif
875
Bram Moolenaar9ef486d2005-01-17 22:23:00 +0000876/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000877 * Return the name of the executed function.
878 */
879 char_u *
880func_name(cookie)
881 void *cookie;
882{
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000883 return ((funccall_T *)cookie)->func->uf_name;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000884}
885
886/*
887 * Return the address holding the next breakpoint line for a funccall cookie.
888 */
889 linenr_T *
890func_breakpoint(cookie)
891 void *cookie;
892{
Bram Moolenaar33570922005-01-25 22:26:29 +0000893 return &((funccall_T *)cookie)->breakpoint;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000894}
895
896/*
897 * Return the address holding the debug tick for a funccall cookie.
898 */
899 int *
900func_dbg_tick(cookie)
901 void *cookie;
902{
Bram Moolenaar33570922005-01-25 22:26:29 +0000903 return &((funccall_T *)cookie)->dbg_tick;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000904}
905
906/*
907 * Return the nesting level for a funccall cookie.
908 */
909 int
910func_level(cookie)
911 void *cookie;
912{
Bram Moolenaar33570922005-01-25 22:26:29 +0000913 return ((funccall_T *)cookie)->level;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000914}
915
916/* pointer to funccal for currently active function */
Bram Moolenaar33570922005-01-25 22:26:29 +0000917funccall_T *current_funccal = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000918
919/*
920 * Return TRUE when a function was ended by a ":return" command.
921 */
922 int
923current_func_returned()
924{
925 return current_funccal->returned;
926}
927
928
929/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000930 * Set an internal variable to a string value. Creates the variable if it does
931 * not already exist.
932 */
933 void
934set_internal_string_var(name, value)
935 char_u *name;
936 char_u *value;
937{
Bram Moolenaar49cd9572005-01-03 21:06:01 +0000938 char_u *val;
Bram Moolenaar33570922005-01-25 22:26:29 +0000939 typval_T *tvp;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000940
941 val = vim_strsave(value);
942 if (val != NULL)
943 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +0000944 tvp = alloc_string_tv(val);
Bram Moolenaar49cd9572005-01-03 21:06:01 +0000945 if (tvp != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000946 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +0000947 set_var(name, tvp, FALSE);
Bram Moolenaarc70646c2005-01-04 21:52:38 +0000948 free_tv(tvp);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000949 }
950 }
951}
952
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000953static lval_T *redir_lval = NULL;
Bram Moolenaar863b53b2007-01-14 14:28:34 +0000954static garray_T redir_ga; /* only valid when redir_lval is not NULL */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000955static char_u *redir_endp = NULL;
956static char_u *redir_varname = NULL;
957
958/*
959 * Start recording command output to a variable
960 * Returns OK if successfully completed the setup. FAIL otherwise.
961 */
962 int
963var_redir_start(name, append)
964 char_u *name;
965 int append; /* append to an existing variable */
966{
967 int save_emsg;
968 int err;
969 typval_T tv;
970
971 /* Make sure a valid variable name is specified */
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +0000972 if (!eval_isnamec1(*name))
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000973 {
974 EMSG(_(e_invarg));
975 return FAIL;
976 }
977
978 redir_varname = vim_strsave(name);
979 if (redir_varname == NULL)
980 return FAIL;
981
982 redir_lval = (lval_T *)alloc_clear((unsigned)sizeof(lval_T));
983 if (redir_lval == NULL)
984 {
985 var_redir_stop();
986 return FAIL;
987 }
988
Bram Moolenaar863b53b2007-01-14 14:28:34 +0000989 /* The output is stored in growarray "redir_ga" until redirection ends. */
990 ga_init2(&redir_ga, (int)sizeof(char), 500);
991
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000992 /* Parse the variable name (can be a dict or list entry). */
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +0000993 redir_endp = get_lval(redir_varname, NULL, redir_lval, FALSE, FALSE, FALSE,
994 FNE_CHECK_START);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000995 if (redir_endp == NULL || redir_lval->ll_name == NULL || *redir_endp != NUL)
996 {
997 if (redir_endp != NULL && *redir_endp != NUL)
998 /* Trailing characters are present after the variable name */
999 EMSG(_(e_trailing));
1000 else
1001 EMSG(_(e_invarg));
1002 var_redir_stop();
1003 return FAIL;
1004 }
1005
1006 /* check if we can write to the variable: set it to or append an empty
1007 * string */
1008 save_emsg = did_emsg;
1009 did_emsg = FALSE;
1010 tv.v_type = VAR_STRING;
1011 tv.vval.v_string = (char_u *)"";
1012 if (append)
1013 set_var_lval(redir_lval, redir_endp, &tv, TRUE, (char_u *)".");
1014 else
1015 set_var_lval(redir_lval, redir_endp, &tv, TRUE, (char_u *)"=");
1016 err = did_emsg;
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00001017 did_emsg |= save_emsg;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001018 if (err)
1019 {
1020 var_redir_stop();
1021 return FAIL;
1022 }
1023 if (redir_lval->ll_newkey != NULL)
1024 {
1025 /* Dictionary item was created, don't do it again. */
1026 vim_free(redir_lval->ll_newkey);
1027 redir_lval->ll_newkey = NULL;
1028 }
1029
1030 return OK;
1031}
1032
1033/*
Bram Moolenaar863b53b2007-01-14 14:28:34 +00001034 * Append "value[value_len]" to the variable set by var_redir_start().
1035 * The actual appending is postponed until redirection ends, because the value
1036 * appended may in fact be the string we write to, changing it may cause freed
1037 * memory to be used:
1038 * :redir => foo
1039 * :let foo
1040 * :redir END
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001041 */
1042 void
Bram Moolenaar863b53b2007-01-14 14:28:34 +00001043var_redir_str(value, value_len)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001044 char_u *value;
Bram Moolenaar863b53b2007-01-14 14:28:34 +00001045 int value_len;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001046{
Bram Moolenaar5fdec472007-07-24 08:45:13 +00001047 int len;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001048
1049 if (redir_lval == NULL)
1050 return;
1051
Bram Moolenaar863b53b2007-01-14 14:28:34 +00001052 if (value_len == -1)
Bram Moolenaar5fdec472007-07-24 08:45:13 +00001053 len = (int)STRLEN(value); /* Append the entire string */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001054 else
Bram Moolenaar5fdec472007-07-24 08:45:13 +00001055 len = value_len; /* Append only "value_len" characters */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001056
Bram Moolenaar5fdec472007-07-24 08:45:13 +00001057 if (ga_grow(&redir_ga, len) == OK)
Bram Moolenaar863b53b2007-01-14 14:28:34 +00001058 {
1059 mch_memmove((char *)redir_ga.ga_data + redir_ga.ga_len, value, len);
Bram Moolenaar5fdec472007-07-24 08:45:13 +00001060 redir_ga.ga_len += len;
Bram Moolenaar863b53b2007-01-14 14:28:34 +00001061 }
1062 else
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001063 var_redir_stop();
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001064}
1065
1066/*
1067 * Stop redirecting command output to a variable.
1068 */
1069 void
1070var_redir_stop()
1071{
Bram Moolenaar863b53b2007-01-14 14:28:34 +00001072 typval_T tv;
1073
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001074 if (redir_lval != NULL)
1075 {
Bram Moolenaar863b53b2007-01-14 14:28:34 +00001076 /* Append the trailing NUL. */
1077 ga_append(&redir_ga, NUL);
1078
1079 /* Assign the text to the variable. */
1080 tv.v_type = VAR_STRING;
1081 tv.vval.v_string = redir_ga.ga_data;
1082 set_var_lval(redir_lval, redir_endp, &tv, FALSE, (char_u *)".");
1083 vim_free(tv.vval.v_string);
1084
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001085 clear_lval(redir_lval);
1086 vim_free(redir_lval);
1087 redir_lval = NULL;
1088 }
1089 vim_free(redir_varname);
1090 redir_varname = NULL;
1091}
1092
Bram Moolenaar071d4272004-06-13 20:20:40 +00001093# if defined(FEAT_MBYTE) || defined(PROTO)
1094 int
1095eval_charconvert(enc_from, enc_to, fname_from, fname_to)
1096 char_u *enc_from;
1097 char_u *enc_to;
1098 char_u *fname_from;
1099 char_u *fname_to;
1100{
1101 int err = FALSE;
1102
1103 set_vim_var_string(VV_CC_FROM, enc_from, -1);
1104 set_vim_var_string(VV_CC_TO, enc_to, -1);
1105 set_vim_var_string(VV_FNAME_IN, fname_from, -1);
1106 set_vim_var_string(VV_FNAME_OUT, fname_to, -1);
1107 if (eval_to_bool(p_ccv, &err, NULL, FALSE))
1108 err = TRUE;
1109 set_vim_var_string(VV_CC_FROM, NULL, -1);
1110 set_vim_var_string(VV_CC_TO, NULL, -1);
1111 set_vim_var_string(VV_FNAME_IN, NULL, -1);
1112 set_vim_var_string(VV_FNAME_OUT, NULL, -1);
1113
1114 if (err)
1115 return FAIL;
1116 return OK;
1117}
1118# endif
1119
1120# if defined(FEAT_POSTSCRIPT) || defined(PROTO)
1121 int
1122eval_printexpr(fname, args)
1123 char_u *fname;
1124 char_u *args;
1125{
1126 int err = FALSE;
1127
1128 set_vim_var_string(VV_FNAME_IN, fname, -1);
1129 set_vim_var_string(VV_CMDARG, args, -1);
1130 if (eval_to_bool(p_pexpr, &err, NULL, FALSE))
1131 err = TRUE;
1132 set_vim_var_string(VV_FNAME_IN, NULL, -1);
1133 set_vim_var_string(VV_CMDARG, NULL, -1);
1134
1135 if (err)
1136 {
1137 mch_remove(fname);
1138 return FAIL;
1139 }
1140 return OK;
1141}
1142# endif
1143
1144# if defined(FEAT_DIFF) || defined(PROTO)
1145 void
1146eval_diff(origfile, newfile, outfile)
1147 char_u *origfile;
1148 char_u *newfile;
1149 char_u *outfile;
1150{
1151 int err = FALSE;
1152
1153 set_vim_var_string(VV_FNAME_IN, origfile, -1);
1154 set_vim_var_string(VV_FNAME_NEW, newfile, -1);
1155 set_vim_var_string(VV_FNAME_OUT, outfile, -1);
1156 (void)eval_to_bool(p_dex, &err, NULL, FALSE);
1157 set_vim_var_string(VV_FNAME_IN, NULL, -1);
1158 set_vim_var_string(VV_FNAME_NEW, NULL, -1);
1159 set_vim_var_string(VV_FNAME_OUT, NULL, -1);
1160}
1161
1162 void
1163eval_patch(origfile, difffile, outfile)
1164 char_u *origfile;
1165 char_u *difffile;
1166 char_u *outfile;
1167{
1168 int err;
1169
1170 set_vim_var_string(VV_FNAME_IN, origfile, -1);
1171 set_vim_var_string(VV_FNAME_DIFF, difffile, -1);
1172 set_vim_var_string(VV_FNAME_OUT, outfile, -1);
1173 (void)eval_to_bool(p_pex, &err, NULL, FALSE);
1174 set_vim_var_string(VV_FNAME_IN, NULL, -1);
1175 set_vim_var_string(VV_FNAME_DIFF, NULL, -1);
1176 set_vim_var_string(VV_FNAME_OUT, NULL, -1);
1177}
1178# endif
1179
1180/*
1181 * Top level evaluation function, returning a boolean.
1182 * Sets "error" to TRUE if there was an error.
1183 * Return TRUE or FALSE.
1184 */
1185 int
1186eval_to_bool(arg, error, nextcmd, skip)
1187 char_u *arg;
1188 int *error;
1189 char_u **nextcmd;
1190 int skip; /* only parse, don't execute */
1191{
Bram Moolenaar33570922005-01-25 22:26:29 +00001192 typval_T tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001193 int retval = FALSE;
1194
1195 if (skip)
1196 ++emsg_skip;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001197 if (eval0(arg, &tv, nextcmd, !skip) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001198 *error = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001199 else
1200 {
1201 *error = FALSE;
1202 if (!skip)
1203 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001204 retval = (get_tv_number_chk(&tv, error) != 0);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001205 clear_tv(&tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001206 }
1207 }
1208 if (skip)
1209 --emsg_skip;
1210
1211 return retval;
1212}
1213
1214/*
1215 * Top level evaluation function, returning a string. If "skip" is TRUE,
1216 * only parsing to "nextcmd" is done, without reporting errors. Return
1217 * pointer to allocated memory, or NULL for failure or when "skip" is TRUE.
1218 */
1219 char_u *
1220eval_to_string_skip(arg, nextcmd, skip)
1221 char_u *arg;
1222 char_u **nextcmd;
1223 int skip; /* only parse, don't execute */
1224{
Bram Moolenaar33570922005-01-25 22:26:29 +00001225 typval_T tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001226 char_u *retval;
1227
1228 if (skip)
1229 ++emsg_skip;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001230 if (eval0(arg, &tv, nextcmd, !skip) == FAIL || skip)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001231 retval = NULL;
1232 else
1233 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001234 retval = vim_strsave(get_tv_string(&tv));
1235 clear_tv(&tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001236 }
1237 if (skip)
1238 --emsg_skip;
1239
1240 return retval;
1241}
1242
1243/*
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001244 * Skip over an expression at "*pp".
1245 * Return FAIL for an error, OK otherwise.
1246 */
1247 int
1248skip_expr(pp)
1249 char_u **pp;
1250{
Bram Moolenaar33570922005-01-25 22:26:29 +00001251 typval_T rettv;
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001252
1253 *pp = skipwhite(*pp);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001254 return eval1(pp, &rettv, FALSE);
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001255}
1256
1257/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001258 * Top level evaluation function, returning a string.
1259 * Return pointer to allocated memory, or NULL for failure.
1260 */
1261 char_u *
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001262eval_to_string(arg, nextcmd, dolist)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001263 char_u *arg;
1264 char_u **nextcmd;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001265 int dolist; /* turn List into sequence of lines */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001266{
Bram Moolenaar33570922005-01-25 22:26:29 +00001267 typval_T tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001268 char_u *retval;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001269 garray_T ga;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001270
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001271 if (eval0(arg, &tv, nextcmd, TRUE) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001272 retval = NULL;
1273 else
1274 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001275 if (dolist && tv.v_type == VAR_LIST)
1276 {
1277 ga_init2(&ga, (int)sizeof(char), 80);
1278 list_join(&ga, tv.vval.v_list, (char_u *)"\n", TRUE, 0);
1279 ga_append(&ga, NUL);
1280 retval = (char_u *)ga.ga_data;
1281 }
1282 else
1283 retval = vim_strsave(get_tv_string(&tv));
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001284 clear_tv(&tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001285 }
1286
1287 return retval;
1288}
1289
1290/*
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00001291 * Call eval_to_string() without using current local variables and using
1292 * textlock. When "use_sandbox" is TRUE use the sandbox.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001293 */
1294 char_u *
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00001295eval_to_string_safe(arg, nextcmd, use_sandbox)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001296 char_u *arg;
1297 char_u **nextcmd;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00001298 int use_sandbox;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001299{
1300 char_u *retval;
1301 void *save_funccalp;
1302
1303 save_funccalp = save_funccal();
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00001304 if (use_sandbox)
1305 ++sandbox;
1306 ++textlock;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001307 retval = eval_to_string(arg, nextcmd, FALSE);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00001308 if (use_sandbox)
1309 --sandbox;
1310 --textlock;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001311 restore_funccal(save_funccalp);
1312 return retval;
1313}
1314
Bram Moolenaar071d4272004-06-13 20:20:40 +00001315/*
1316 * Top level evaluation function, returning a number.
1317 * Evaluates "expr" silently.
1318 * Returns -1 for an error.
1319 */
1320 int
1321eval_to_number(expr)
1322 char_u *expr;
1323{
Bram Moolenaar33570922005-01-25 22:26:29 +00001324 typval_T rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001325 int retval;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00001326 char_u *p = skipwhite(expr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001327
1328 ++emsg_off;
1329
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001330 if (eval1(&p, &rettv, TRUE) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001331 retval = -1;
1332 else
1333 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001334 retval = get_tv_number_chk(&rettv, NULL);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001335 clear_tv(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001336 }
1337 --emsg_off;
1338
1339 return retval;
1340}
1341
Bram Moolenaara40058a2005-07-11 22:42:07 +00001342/*
1343 * Prepare v: variable "idx" to be used.
1344 * Save the current typeval in "save_tv".
1345 * When not used yet add the variable to the v: hashtable.
1346 */
1347 static void
1348prepare_vimvar(idx, save_tv)
1349 int idx;
1350 typval_T *save_tv;
1351{
1352 *save_tv = vimvars[idx].vv_tv;
1353 if (vimvars[idx].vv_type == VAR_UNKNOWN)
1354 hash_add(&vimvarht, vimvars[idx].vv_di.di_key);
1355}
1356
1357/*
1358 * Restore v: variable "idx" to typeval "save_tv".
1359 * When no longer defined, remove the variable from the v: hashtable.
1360 */
1361 static void
1362restore_vimvar(idx, save_tv)
1363 int idx;
1364 typval_T *save_tv;
1365{
1366 hashitem_T *hi;
1367
Bram Moolenaara40058a2005-07-11 22:42:07 +00001368 vimvars[idx].vv_tv = *save_tv;
1369 if (vimvars[idx].vv_type == VAR_UNKNOWN)
1370 {
1371 hi = hash_find(&vimvarht, vimvars[idx].vv_di.di_key);
1372 if (HASHITEM_EMPTY(hi))
1373 EMSG2(_(e_intern2), "restore_vimvar()");
1374 else
1375 hash_remove(&vimvarht, hi);
1376 }
1377}
1378
Bram Moolenaar3c56a962006-03-12 22:19:04 +00001379#if defined(FEAT_SPELL) || defined(PROTO)
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00001380/*
1381 * Evaluate an expression to a list with suggestions.
1382 * For the "expr:" part of 'spellsuggest'.
1383 */
1384 list_T *
1385eval_spell_expr(badword, expr)
1386 char_u *badword;
1387 char_u *expr;
1388{
1389 typval_T save_val;
1390 typval_T rettv;
1391 list_T *list = NULL;
1392 char_u *p = skipwhite(expr);
1393
1394 /* Set "v:val" to the bad word. */
1395 prepare_vimvar(VV_VAL, &save_val);
1396 vimvars[VV_VAL].vv_type = VAR_STRING;
1397 vimvars[VV_VAL].vv_str = badword;
1398 if (p_verbose == 0)
1399 ++emsg_off;
1400
1401 if (eval1(&p, &rettv, TRUE) == OK)
1402 {
1403 if (rettv.v_type != VAR_LIST)
1404 clear_tv(&rettv);
1405 else
1406 list = rettv.vval.v_list;
1407 }
1408
1409 if (p_verbose == 0)
1410 --emsg_off;
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00001411 restore_vimvar(VV_VAL, &save_val);
1412
1413 return list;
1414}
1415
1416/*
1417 * "list" is supposed to contain two items: a word and a number. Return the
1418 * word in "pp" and the number as the return value.
1419 * Return -1 if anything isn't right.
1420 * Used to get the good word and score from the eval_spell_expr() result.
1421 */
1422 int
1423get_spellword(list, pp)
1424 list_T *list;
1425 char_u **pp;
1426{
1427 listitem_T *li;
1428
1429 li = list->lv_first;
1430 if (li == NULL)
1431 return -1;
1432 *pp = get_tv_string(&li->li_tv);
1433
1434 li = li->li_next;
1435 if (li == NULL)
1436 return -1;
1437 return get_tv_number(&li->li_tv);
1438}
1439#endif
1440
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001441/*
Bram Moolenaar4770d092006-01-12 23:22:24 +00001442 * Top level evaluation function.
1443 * Returns an allocated typval_T with the result.
1444 * Returns NULL when there is an error.
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001445 */
1446 typval_T *
1447eval_expr(arg, nextcmd)
1448 char_u *arg;
1449 char_u **nextcmd;
1450{
1451 typval_T *tv;
1452
1453 tv = (typval_T *)alloc(sizeof(typval_T));
Bram Moolenaar4770d092006-01-12 23:22:24 +00001454 if (tv != NULL && eval0(arg, tv, nextcmd, TRUE) == FAIL)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001455 {
1456 vim_free(tv);
Bram Moolenaar4770d092006-01-12 23:22:24 +00001457 tv = NULL;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001458 }
1459
1460 return tv;
1461}
1462
1463
Bram Moolenaar4f688582007-07-24 12:34:30 +00001464#if (defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL)) \
1465 || defined(FEAT_COMPL_FUNC) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001466/*
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001467 * Call some vimL function and return the result in "*rettv".
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001468 * Uses argv[argc] for the function arguments. Only Number and String
1469 * arguments are currently supported.
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001470 * Returns OK or FAIL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001471 */
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001472 static int
1473call_vim_function(func, argc, argv, safe, rettv)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001474 char_u *func;
1475 int argc;
1476 char_u **argv;
1477 int safe; /* use the sandbox */
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001478 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001479{
Bram Moolenaar33570922005-01-25 22:26:29 +00001480 typval_T *argvars;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001481 long n;
1482 int len;
1483 int i;
1484 int doesrange;
1485 void *save_funccalp = NULL;
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001486 int ret;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001487
Bram Moolenaareb3593b2006-04-22 22:33:57 +00001488 argvars = (typval_T *)alloc((unsigned)((argc + 1) * sizeof(typval_T)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001489 if (argvars == NULL)
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001490 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001491
1492 for (i = 0; i < argc; i++)
1493 {
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00001494 /* Pass a NULL or empty argument as an empty string */
1495 if (argv[i] == NULL || *argv[i] == NUL)
1496 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +00001497 argvars[i].v_type = VAR_STRING;
1498 argvars[i].vval.v_string = (char_u *)"";
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00001499 continue;
1500 }
1501
Bram Moolenaar071d4272004-06-13 20:20:40 +00001502 /* Recognize a number argument, the others must be strings. */
1503 vim_str2nr(argv[i], NULL, &len, TRUE, TRUE, &n, NULL);
1504 if (len != 0 && len == (int)STRLEN(argv[i]))
1505 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +00001506 argvars[i].v_type = VAR_NUMBER;
1507 argvars[i].vval.v_number = n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001508 }
1509 else
1510 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +00001511 argvars[i].v_type = VAR_STRING;
1512 argvars[i].vval.v_string = argv[i];
Bram Moolenaar071d4272004-06-13 20:20:40 +00001513 }
1514 }
1515
1516 if (safe)
1517 {
1518 save_funccalp = save_funccal();
1519 ++sandbox;
1520 }
1521
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001522 rettv->v_type = VAR_UNKNOWN; /* clear_tv() uses this */
1523 ret = call_func(func, (int)STRLEN(func), rettv, argc, argvars,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001524 curwin->w_cursor.lnum, curwin->w_cursor.lnum,
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001525 &doesrange, TRUE, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001526 if (safe)
1527 {
1528 --sandbox;
1529 restore_funccal(save_funccalp);
1530 }
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001531 vim_free(argvars);
1532
1533 if (ret == FAIL)
1534 clear_tv(rettv);
1535
1536 return ret;
1537}
1538
Bram Moolenaar4f688582007-07-24 12:34:30 +00001539# if (defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL)) || defined(PROTO)
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001540/*
Bram Moolenaar25ceb222005-07-30 22:45:36 +00001541 * Call vimL function "func" and return the result as a string.
1542 * Returns NULL when calling the function fails.
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001543 * Uses argv[argc] for the function arguments.
1544 */
1545 void *
1546call_func_retstr(func, argc, argv, safe)
1547 char_u *func;
1548 int argc;
1549 char_u **argv;
1550 int safe; /* use the sandbox */
1551{
1552 typval_T rettv;
Bram Moolenaar25ceb222005-07-30 22:45:36 +00001553 char_u *retval;
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001554
1555 if (call_vim_function(func, argc, argv, safe, &rettv) == FAIL)
1556 return NULL;
1557
1558 retval = vim_strsave(get_tv_string(&rettv));
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001559 clear_tv(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001560 return retval;
1561}
Bram Moolenaar4f688582007-07-24 12:34:30 +00001562# endif
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001563
Bram Moolenaar4f688582007-07-24 12:34:30 +00001564# if defined(FEAT_COMPL_FUNC) || defined(PROTO)
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001565/*
Bram Moolenaar25ceb222005-07-30 22:45:36 +00001566 * Call vimL function "func" and return the result as a number.
1567 * Returns -1 when calling the function fails.
1568 * Uses argv[argc] for the function arguments.
1569 */
1570 long
1571call_func_retnr(func, argc, argv, safe)
1572 char_u *func;
1573 int argc;
1574 char_u **argv;
1575 int safe; /* use the sandbox */
1576{
1577 typval_T rettv;
1578 long retval;
1579
1580 if (call_vim_function(func, argc, argv, safe, &rettv) == FAIL)
1581 return -1;
1582
1583 retval = get_tv_number_chk(&rettv, NULL);
1584 clear_tv(&rettv);
1585 return retval;
1586}
Bram Moolenaar4f688582007-07-24 12:34:30 +00001587# endif
Bram Moolenaar25ceb222005-07-30 22:45:36 +00001588
1589/*
1590 * Call vimL function "func" and return the result as a list
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001591 * Uses argv[argc] for the function arguments.
1592 */
1593 void *
1594call_func_retlist(func, argc, argv, safe)
1595 char_u *func;
1596 int argc;
1597 char_u **argv;
1598 int safe; /* use the sandbox */
1599{
1600 typval_T rettv;
1601
1602 if (call_vim_function(func, argc, argv, safe, &rettv) == FAIL)
1603 return NULL;
1604
1605 if (rettv.v_type != VAR_LIST)
1606 {
1607 clear_tv(&rettv);
1608 return NULL;
1609 }
1610
1611 return rettv.vval.v_list;
1612}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001613#endif
1614
Bram Moolenaar4f688582007-07-24 12:34:30 +00001615
Bram Moolenaar071d4272004-06-13 20:20:40 +00001616/*
1617 * Save the current function call pointer, and set it to NULL.
1618 * Used when executing autocommands and for ":source".
1619 */
1620 void *
1621save_funccal()
1622{
Bram Moolenaar05159a02005-02-26 23:04:13 +00001623 funccall_T *fc = current_funccal;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001624
Bram Moolenaar071d4272004-06-13 20:20:40 +00001625 current_funccal = NULL;
1626 return (void *)fc;
1627}
1628
1629 void
Bram Moolenaar05159a02005-02-26 23:04:13 +00001630restore_funccal(vfc)
1631 void *vfc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001632{
Bram Moolenaar05159a02005-02-26 23:04:13 +00001633 funccall_T *fc = (funccall_T *)vfc;
1634
1635 current_funccal = fc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001636}
1637
Bram Moolenaar05159a02005-02-26 23:04:13 +00001638#if defined(FEAT_PROFILE) || defined(PROTO)
1639/*
1640 * Prepare profiling for entering a child or something else that is not
1641 * counted for the script/function itself.
1642 * Should always be called in pair with prof_child_exit().
1643 */
1644 void
1645prof_child_enter(tm)
1646 proftime_T *tm; /* place to store waittime */
1647{
1648 funccall_T *fc = current_funccal;
1649
1650 if (fc != NULL && fc->func->uf_profiling)
1651 profile_start(&fc->prof_child);
1652 script_prof_save(tm);
1653}
1654
1655/*
1656 * Take care of time spent in a child.
1657 * Should always be called after prof_child_enter().
1658 */
1659 void
1660prof_child_exit(tm)
1661 proftime_T *tm; /* where waittime was stored */
1662{
1663 funccall_T *fc = current_funccal;
1664
1665 if (fc != NULL && fc->func->uf_profiling)
1666 {
1667 profile_end(&fc->prof_child);
1668 profile_sub_wait(tm, &fc->prof_child); /* don't count waiting time */
1669 profile_add(&fc->func->uf_tm_children, &fc->prof_child);
1670 profile_add(&fc->func->uf_tml_children, &fc->prof_child);
1671 }
1672 script_prof_restore(tm);
1673}
1674#endif
1675
1676
Bram Moolenaar071d4272004-06-13 20:20:40 +00001677#ifdef FEAT_FOLDING
1678/*
1679 * Evaluate 'foldexpr'. Returns the foldlevel, and any character preceding
1680 * it in "*cp". Doesn't give error messages.
1681 */
1682 int
1683eval_foldexpr(arg, cp)
1684 char_u *arg;
1685 int *cp;
1686{
Bram Moolenaar33570922005-01-25 22:26:29 +00001687 typval_T tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001688 int retval;
1689 char_u *s;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00001690 int use_sandbox = was_set_insecurely((char_u *)"foldexpr",
1691 OPT_LOCAL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001692
1693 ++emsg_off;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00001694 if (use_sandbox)
1695 ++sandbox;
1696 ++textlock;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001697 *cp = NUL;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001698 if (eval0(arg, &tv, NULL, TRUE) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001699 retval = 0;
1700 else
1701 {
1702 /* If the result is a number, just return the number. */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001703 if (tv.v_type == VAR_NUMBER)
1704 retval = tv.vval.v_number;
Bram Moolenaar758711c2005-02-02 23:11:38 +00001705 else if (tv.v_type != VAR_STRING || tv.vval.v_string == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001706 retval = 0;
1707 else
1708 {
1709 /* If the result is a string, check if there is a non-digit before
1710 * the number. */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001711 s = tv.vval.v_string;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001712 if (!VIM_ISDIGIT(*s) && *s != '-')
1713 *cp = *s++;
1714 retval = atol((char *)s);
1715 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001716 clear_tv(&tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001717 }
1718 --emsg_off;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00001719 if (use_sandbox)
1720 --sandbox;
1721 --textlock;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001722
1723 return retval;
1724}
1725#endif
1726
Bram Moolenaar071d4272004-06-13 20:20:40 +00001727/*
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001728 * ":let" list all variable values
1729 * ":let var1 var2" list variable values
1730 * ":let var = expr" assignment command.
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00001731 * ":let var += expr" assignment command.
1732 * ":let var -= expr" assignment command.
1733 * ":let var .= expr" assignment command.
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001734 * ":let [var1, var2] = expr" unpack list.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001735 */
1736 void
1737ex_let(eap)
1738 exarg_T *eap;
1739{
1740 char_u *arg = eap->arg;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001741 char_u *expr = NULL;
Bram Moolenaar33570922005-01-25 22:26:29 +00001742 typval_T rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001743 int i;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001744 int var_count = 0;
1745 int semicolon = 0;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00001746 char_u op[2];
Bram Moolenaardb552d602006-03-23 22:59:57 +00001747 char_u *argend;
Bram Moolenaar7d61a922007-08-30 09:12:23 +00001748 int first = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001749
Bram Moolenaardb552d602006-03-23 22:59:57 +00001750 argend = skip_var_list(arg, &var_count, &semicolon);
1751 if (argend == NULL)
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001752 return;
Bram Moolenaar76b92b22006-03-24 22:46:53 +00001753 if (argend > arg && argend[-1] == '.') /* for var.='str' */
1754 --argend;
Bram Moolenaardb552d602006-03-23 22:59:57 +00001755 expr = vim_strchr(argend, '=');
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001756 if (expr == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001757 {
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00001758 /*
1759 * ":let" without "=": list variables
1760 */
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001761 if (*arg == '[')
1762 EMSG(_(e_invarg));
1763 else if (!ends_excmd(*arg))
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001764 /* ":let var1 var2" */
Bram Moolenaar7d61a922007-08-30 09:12:23 +00001765 arg = list_arg_vars(eap, arg, &first);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001766 else if (!eap->skip)
Bram Moolenaara7043832005-01-21 11:56:39 +00001767 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001768 /* ":let" */
Bram Moolenaar7d61a922007-08-30 09:12:23 +00001769 list_glob_vars(&first);
1770 list_buf_vars(&first);
1771 list_win_vars(&first);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001772#ifdef FEAT_WINDOWS
Bram Moolenaar7d61a922007-08-30 09:12:23 +00001773 list_tab_vars(&first);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001774#endif
Bram Moolenaar7d61a922007-08-30 09:12:23 +00001775 list_script_vars(&first);
1776 list_func_vars(&first);
1777 list_vim_vars(&first);
Bram Moolenaara7043832005-01-21 11:56:39 +00001778 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001779 eap->nextcmd = check_nextcmd(arg);
1780 }
1781 else
1782 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00001783 op[0] = '=';
1784 op[1] = NUL;
Bram Moolenaardb552d602006-03-23 22:59:57 +00001785 if (expr > argend)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00001786 {
1787 if (vim_strchr((char_u *)"+-.", expr[-1]) != NULL)
1788 op[0] = expr[-1]; /* +=, -= or .= */
1789 }
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001790 expr = skipwhite(expr + 1);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001791
Bram Moolenaar071d4272004-06-13 20:20:40 +00001792 if (eap->skip)
1793 ++emsg_skip;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001794 i = eval0(expr, &rettv, &eap->nextcmd, !eap->skip);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001795 if (eap->skip)
1796 {
1797 if (i != FAIL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001798 clear_tv(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001799 --emsg_skip;
1800 }
1801 else if (i != FAIL)
1802 {
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001803 (void)ex_let_vars(eap->arg, &rettv, FALSE, semicolon, var_count,
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00001804 op);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001805 clear_tv(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001806 }
1807 }
1808}
1809
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001810/*
1811 * Assign the typevalue "tv" to the variable or variables at "arg_start".
1812 * Handles both "var" with any type and "[var, var; var]" with a list type.
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00001813 * When "nextchars" is not NULL it points to a string with characters that
1814 * must appear after the variable(s). Use "+", "-" or "." for add, subtract
1815 * or concatenate.
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001816 * Returns OK or FAIL;
1817 */
1818 static int
1819ex_let_vars(arg_start, tv, copy, semicolon, var_count, nextchars)
1820 char_u *arg_start;
Bram Moolenaar33570922005-01-25 22:26:29 +00001821 typval_T *tv;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001822 int copy; /* copy values from "tv", don't move */
1823 int semicolon; /* from skip_var_list() */
1824 int var_count; /* from skip_var_list() */
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00001825 char_u *nextchars;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001826{
1827 char_u *arg = arg_start;
Bram Moolenaar33570922005-01-25 22:26:29 +00001828 list_T *l;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001829 int i;
Bram Moolenaar33570922005-01-25 22:26:29 +00001830 listitem_T *item;
1831 typval_T ltv;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001832
1833 if (*arg != '[')
1834 {
1835 /*
1836 * ":let var = expr" or ":for var in list"
1837 */
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00001838 if (ex_let_one(arg, tv, copy, nextchars, nextchars) == NULL)
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001839 return FAIL;
1840 return OK;
1841 }
1842
1843 /*
1844 * ":let [v1, v2] = list" or ":for [v1, v2] in listlist"
1845 */
Bram Moolenaar758711c2005-02-02 23:11:38 +00001846 if (tv->v_type != VAR_LIST || (l = tv->vval.v_list) == NULL)
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001847 {
1848 EMSG(_(e_listreq));
1849 return FAIL;
1850 }
1851
1852 i = list_len(l);
1853 if (semicolon == 0 && var_count < i)
1854 {
Bram Moolenaare49b69a2005-01-08 16:11:57 +00001855 EMSG(_("E687: Less targets than List items"));
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001856 return FAIL;
1857 }
1858 if (var_count - semicolon > i)
1859 {
Bram Moolenaare49b69a2005-01-08 16:11:57 +00001860 EMSG(_("E688: More targets than List items"));
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001861 return FAIL;
1862 }
1863
1864 item = l->lv_first;
1865 while (*arg != ']')
1866 {
1867 arg = skipwhite(arg + 1);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00001868 arg = ex_let_one(arg, &item->li_tv, TRUE, (char_u *)",;]", nextchars);
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001869 item = item->li_next;
1870 if (arg == NULL)
1871 return FAIL;
1872
1873 arg = skipwhite(arg);
1874 if (*arg == ';')
1875 {
1876 /* Put the rest of the list (may be empty) in the var after ';'.
1877 * Create a new list for this. */
1878 l = list_alloc();
1879 if (l == NULL)
1880 return FAIL;
1881 while (item != NULL)
1882 {
1883 list_append_tv(l, &item->li_tv);
1884 item = item->li_next;
1885 }
1886
1887 ltv.v_type = VAR_LIST;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00001888 ltv.v_lock = 0;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001889 ltv.vval.v_list = l;
1890 l->lv_refcount = 1;
1891
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00001892 arg = ex_let_one(skipwhite(arg + 1), &ltv, FALSE,
1893 (char_u *)"]", nextchars);
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001894 clear_tv(&ltv);
1895 if (arg == NULL)
1896 return FAIL;
1897 break;
1898 }
1899 else if (*arg != ',' && *arg != ']')
1900 {
1901 EMSG2(_(e_intern2), "ex_let_vars()");
1902 return FAIL;
1903 }
1904 }
1905
1906 return OK;
1907}
1908
1909/*
1910 * Skip over assignable variable "var" or list of variables "[var, var]".
1911 * Used for ":let varvar = expr" and ":for varvar in expr".
1912 * For "[var, var]" increment "*var_count" for each variable.
1913 * for "[var, var; var]" set "semicolon".
1914 * Return NULL for an error.
1915 */
1916 static char_u *
1917skip_var_list(arg, var_count, semicolon)
1918 char_u *arg;
1919 int *var_count;
1920 int *semicolon;
1921{
1922 char_u *p, *s;
1923
1924 if (*arg == '[')
1925 {
1926 /* "[var, var]": find the matching ']'. */
1927 p = arg;
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001928 for (;;)
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001929 {
1930 p = skipwhite(p + 1); /* skip whites after '[', ';' or ',' */
1931 s = skip_var_one(p);
1932 if (s == p)
1933 {
1934 EMSG2(_(e_invarg2), p);
1935 return NULL;
1936 }
1937 ++*var_count;
1938
1939 p = skipwhite(s);
1940 if (*p == ']')
1941 break;
1942 else if (*p == ';')
1943 {
1944 if (*semicolon == 1)
1945 {
1946 EMSG(_("Double ; in list of variables"));
1947 return NULL;
1948 }
1949 *semicolon = 1;
1950 }
1951 else if (*p != ',')
1952 {
1953 EMSG2(_(e_invarg2), p);
1954 return NULL;
1955 }
1956 }
1957 return p + 1;
1958 }
1959 else
1960 return skip_var_one(arg);
1961}
1962
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00001963/*
Bram Moolenaarbae0c162007-05-10 19:30:25 +00001964 * Skip one (assignable) variable name, including @r, $VAR, &option, d.key,
Bram Moolenaar92124a32005-06-17 22:03:40 +00001965 * l[idx].
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00001966 */
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001967 static char_u *
1968skip_var_one(arg)
1969 char_u *arg;
1970{
Bram Moolenaar92124a32005-06-17 22:03:40 +00001971 if (*arg == '@' && arg[1] != NUL)
1972 return arg + 2;
1973 return find_name_end(*arg == '$' || *arg == '&' ? arg + 1 : arg,
1974 NULL, NULL, FNE_INCL_BR | FNE_CHECK_START);
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001975}
1976
Bram Moolenaara7043832005-01-21 11:56:39 +00001977/*
Bram Moolenaar33570922005-01-25 22:26:29 +00001978 * List variables for hashtab "ht" with prefix "prefix".
1979 * If "empty" is TRUE also list NULL strings as empty strings.
Bram Moolenaara7043832005-01-21 11:56:39 +00001980 */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001981 static void
Bram Moolenaar7d61a922007-08-30 09:12:23 +00001982list_hashtable_vars(ht, prefix, empty, first)
Bram Moolenaar33570922005-01-25 22:26:29 +00001983 hashtab_T *ht;
Bram Moolenaara7043832005-01-21 11:56:39 +00001984 char_u *prefix;
Bram Moolenaar33570922005-01-25 22:26:29 +00001985 int empty;
Bram Moolenaar7d61a922007-08-30 09:12:23 +00001986 int *first;
Bram Moolenaara7043832005-01-21 11:56:39 +00001987{
Bram Moolenaar33570922005-01-25 22:26:29 +00001988 hashitem_T *hi;
1989 dictitem_T *di;
Bram Moolenaara7043832005-01-21 11:56:39 +00001990 int todo;
1991
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001992 todo = (int)ht->ht_used;
Bram Moolenaara7043832005-01-21 11:56:39 +00001993 for (hi = ht->ht_array; todo > 0 && !got_int; ++hi)
1994 {
1995 if (!HASHITEM_EMPTY(hi))
1996 {
1997 --todo;
Bram Moolenaar33570922005-01-25 22:26:29 +00001998 di = HI2DI(hi);
1999 if (empty || di->di_tv.v_type != VAR_STRING
2000 || di->di_tv.vval.v_string != NULL)
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002001 list_one_var(di, prefix, first);
Bram Moolenaara7043832005-01-21 11:56:39 +00002002 }
2003 }
2004}
2005
2006/*
2007 * List global variables.
2008 */
2009 static void
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002010list_glob_vars(first)
2011 int *first;
Bram Moolenaara7043832005-01-21 11:56:39 +00002012{
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002013 list_hashtable_vars(&globvarht, (char_u *)"", TRUE, first);
Bram Moolenaara7043832005-01-21 11:56:39 +00002014}
2015
2016/*
2017 * List buffer variables.
2018 */
2019 static void
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002020list_buf_vars(first)
2021 int *first;
Bram Moolenaara7043832005-01-21 11:56:39 +00002022{
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002023 char_u numbuf[NUMBUFLEN];
2024
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002025 list_hashtable_vars(&curbuf->b_vars.dv_hashtab, (char_u *)"b:",
2026 TRUE, first);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002027
2028 sprintf((char *)numbuf, "%ld", (long)curbuf->b_changedtick);
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002029 list_one_var_a((char_u *)"b:", (char_u *)"changedtick", VAR_NUMBER,
2030 numbuf, first);
Bram Moolenaara7043832005-01-21 11:56:39 +00002031}
2032
2033/*
2034 * List window variables.
2035 */
2036 static void
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002037list_win_vars(first)
2038 int *first;
Bram Moolenaara7043832005-01-21 11:56:39 +00002039{
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002040 list_hashtable_vars(&curwin->w_vars.dv_hashtab,
2041 (char_u *)"w:", TRUE, first);
Bram Moolenaara7043832005-01-21 11:56:39 +00002042}
2043
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002044#ifdef FEAT_WINDOWS
2045/*
2046 * List tab page variables.
2047 */
2048 static void
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002049list_tab_vars(first)
2050 int *first;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002051{
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002052 list_hashtable_vars(&curtab->tp_vars.dv_hashtab,
2053 (char_u *)"t:", TRUE, first);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002054}
2055#endif
2056
Bram Moolenaara7043832005-01-21 11:56:39 +00002057/*
2058 * List Vim variables.
2059 */
2060 static void
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002061list_vim_vars(first)
2062 int *first;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002063{
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002064 list_hashtable_vars(&vimvarht, (char_u *)"v:", FALSE, first);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002065}
2066
2067/*
Bram Moolenaarf0acfce2006-03-17 23:21:19 +00002068 * List script-local variables, if there is a script.
2069 */
2070 static void
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002071list_script_vars(first)
2072 int *first;
Bram Moolenaarf0acfce2006-03-17 23:21:19 +00002073{
2074 if (current_SID > 0 && current_SID <= ga_scripts.ga_len)
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002075 list_hashtable_vars(&SCRIPT_VARS(current_SID),
2076 (char_u *)"s:", FALSE, first);
Bram Moolenaarf0acfce2006-03-17 23:21:19 +00002077}
2078
2079/*
2080 * List function variables, if there is a function.
2081 */
2082 static void
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002083list_func_vars(first)
2084 int *first;
Bram Moolenaarf0acfce2006-03-17 23:21:19 +00002085{
2086 if (current_funccal != NULL)
2087 list_hashtable_vars(&current_funccal->l_vars.dv_hashtab,
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002088 (char_u *)"l:", FALSE, first);
Bram Moolenaarf0acfce2006-03-17 23:21:19 +00002089}
2090
2091/*
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002092 * List variables in "arg".
2093 */
2094 static char_u *
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002095list_arg_vars(eap, arg, first)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002096 exarg_T *eap;
2097 char_u *arg;
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002098 int *first;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002099{
2100 int error = FALSE;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002101 int len;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002102 char_u *name;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002103 char_u *name_start;
2104 char_u *arg_subsc;
2105 char_u *tofree;
2106 typval_T tv;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002107
2108 while (!ends_excmd(*arg) && !got_int)
2109 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002110 if (error || eap->skip)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002111 {
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +00002112 arg = find_name_end(arg, NULL, NULL, FNE_INCL_BR | FNE_CHECK_START);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002113 if (!vim_iswhite(*arg) && !ends_excmd(*arg))
2114 {
2115 emsg_severe = TRUE;
2116 EMSG(_(e_trailing));
2117 break;
2118 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002119 }
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002120 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002121 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002122 /* get_name_len() takes care of expanding curly braces */
2123 name_start = name = arg;
2124 len = get_name_len(&arg, &tofree, TRUE, TRUE);
2125 if (len <= 0)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002126 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002127 /* This is mainly to keep test 49 working: when expanding
2128 * curly braces fails overrule the exception error message. */
2129 if (len < 0 && !aborting())
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002130 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002131 emsg_severe = TRUE;
2132 EMSG2(_(e_invarg2), arg);
2133 break;
2134 }
2135 error = TRUE;
2136 }
2137 else
2138 {
2139 if (tofree != NULL)
2140 name = tofree;
2141 if (get_var_tv(name, len, &tv, TRUE) == FAIL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002142 error = TRUE;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002143 else
2144 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002145 /* handle d.key, l[idx], f(expr) */
2146 arg_subsc = arg;
2147 if (handle_subscript(&arg, &tv, TRUE, TRUE) == FAIL)
Bram Moolenaara7043832005-01-21 11:56:39 +00002148 error = TRUE;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002149 else
Bram Moolenaara7043832005-01-21 11:56:39 +00002150 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002151 if (arg == arg_subsc && len == 2 && name[1] == ':')
Bram Moolenaara7043832005-01-21 11:56:39 +00002152 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002153 switch (*name)
Bram Moolenaara7043832005-01-21 11:56:39 +00002154 {
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002155 case 'g': list_glob_vars(first); break;
2156 case 'b': list_buf_vars(first); break;
2157 case 'w': list_win_vars(first); break;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002158#ifdef FEAT_WINDOWS
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002159 case 't': list_tab_vars(first); break;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002160#endif
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002161 case 'v': list_vim_vars(first); break;
2162 case 's': list_script_vars(first); break;
2163 case 'l': list_func_vars(first); break;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002164 default:
2165 EMSG2(_("E738: Can't list variables for %s"), name);
Bram Moolenaara7043832005-01-21 11:56:39 +00002166 }
Bram Moolenaara7043832005-01-21 11:56:39 +00002167 }
2168 else
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002169 {
2170 char_u numbuf[NUMBUFLEN];
2171 char_u *tf;
2172 int c;
2173 char_u *s;
2174
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00002175 s = echo_string(&tv, &tf, numbuf, 0);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002176 c = *arg;
2177 *arg = NUL;
2178 list_one_var_a((char_u *)"",
2179 arg == arg_subsc ? name : name_start,
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002180 tv.v_type,
2181 s == NULL ? (char_u *)"" : s,
2182 first);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002183 *arg = c;
2184 vim_free(tf);
2185 }
2186 clear_tv(&tv);
Bram Moolenaara7043832005-01-21 11:56:39 +00002187 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002188 }
2189 }
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002190
2191 vim_free(tofree);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002192 }
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002193
2194 arg = skipwhite(arg);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002195 }
2196
2197 return arg;
2198}
2199
2200/*
2201 * Set one item of ":let var = expr" or ":let [v1, v2] = list" to its value.
2202 * Returns a pointer to the char just after the var name.
2203 * Returns NULL if there is an error.
2204 */
2205 static char_u *
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002206ex_let_one(arg, tv, copy, endchars, op)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002207 char_u *arg; /* points to variable name */
Bram Moolenaar33570922005-01-25 22:26:29 +00002208 typval_T *tv; /* value to assign to variable */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002209 int copy; /* copy value from "tv" */
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00002210 char_u *endchars; /* valid chars after variable name or NULL */
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002211 char_u *op; /* "+", "-", "." or NULL*/
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002212{
2213 int c1;
2214 char_u *name;
2215 char_u *p;
2216 char_u *arg_end = NULL;
2217 int len;
2218 int opt_flags;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002219 char_u *tofree = NULL;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002220
2221 /*
2222 * ":let $VAR = expr": Set environment variable.
2223 */
2224 if (*arg == '$')
2225 {
2226 /* Find the end of the name. */
2227 ++arg;
2228 name = arg;
2229 len = get_env_len(&arg);
2230 if (len == 0)
2231 EMSG2(_(e_invarg2), name - 1);
2232 else
2233 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002234 if (op != NULL && (*op == '+' || *op == '-'))
2235 EMSG2(_(e_letwrong), op);
2236 else if (endchars != NULL
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00002237 && vim_strchr(endchars, *skipwhite(arg)) == NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002238 EMSG(_(e_letunexp));
2239 else
2240 {
2241 c1 = name[len];
2242 name[len] = NUL;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002243 p = get_tv_string_chk(tv);
2244 if (p != NULL && op != NULL && *op == '.')
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002245 {
2246 int mustfree = FALSE;
2247 char_u *s = vim_getenv(name, &mustfree);
2248
2249 if (s != NULL)
2250 {
2251 p = tofree = concat_str(s, p);
2252 if (mustfree)
2253 vim_free(s);
2254 }
2255 }
2256 if (p != NULL)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002257 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002258 vim_setenv(name, p);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002259 if (STRICMP(name, "HOME") == 0)
2260 init_homedir();
2261 else if (didset_vim && STRICMP(name, "VIM") == 0)
2262 didset_vim = FALSE;
2263 else if (didset_vimruntime
2264 && STRICMP(name, "VIMRUNTIME") == 0)
2265 didset_vimruntime = FALSE;
2266 arg_end = arg;
2267 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002268 name[len] = c1;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002269 vim_free(tofree);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002270 }
2271 }
2272 }
2273
2274 /*
2275 * ":let &option = expr": Set option value.
2276 * ":let &l:option = expr": Set local option value.
2277 * ":let &g:option = expr": Set global option value.
2278 */
2279 else if (*arg == '&')
2280 {
2281 /* Find the end of the name. */
2282 p = find_option_end(&arg, &opt_flags);
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00002283 if (p == NULL || (endchars != NULL
2284 && vim_strchr(endchars, *skipwhite(p)) == NULL))
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002285 EMSG(_(e_letunexp));
2286 else
2287 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002288 long n;
2289 int opt_type;
2290 long numval;
2291 char_u *stringval = NULL;
2292 char_u *s;
2293
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002294 c1 = *p;
2295 *p = NUL;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002296
2297 n = get_tv_number(tv);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002298 s = get_tv_string_chk(tv); /* != NULL if number or string */
2299 if (s != NULL && op != NULL && *op != '=')
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002300 {
2301 opt_type = get_option_value(arg, &numval,
2302 &stringval, opt_flags);
2303 if ((opt_type == 1 && *op == '.')
2304 || (opt_type == 0 && *op != '.'))
2305 EMSG2(_(e_letwrong), op);
2306 else
2307 {
2308 if (opt_type == 1) /* number */
2309 {
2310 if (*op == '+')
2311 n = numval + n;
2312 else
2313 n = numval - n;
2314 }
2315 else if (opt_type == 0 && stringval != NULL) /* string */
2316 {
2317 s = concat_str(stringval, s);
2318 vim_free(stringval);
2319 stringval = s;
2320 }
2321 }
2322 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002323 if (s != NULL)
2324 {
2325 set_option_value(arg, n, s, opt_flags);
2326 arg_end = p;
2327 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002328 *p = c1;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002329 vim_free(stringval);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002330 }
2331 }
2332
2333 /*
2334 * ":let @r = expr": Set register contents.
2335 */
2336 else if (*arg == '@')
2337 {
2338 ++arg;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002339 if (op != NULL && (*op == '+' || *op == '-'))
2340 EMSG2(_(e_letwrong), op);
2341 else if (endchars != NULL
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00002342 && vim_strchr(endchars, *skipwhite(arg + 1)) == NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002343 EMSG(_(e_letunexp));
2344 else
2345 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00002346 char_u *ptofree = NULL;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002347 char_u *s;
2348
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002349 p = get_tv_string_chk(tv);
2350 if (p != NULL && op != NULL && *op == '.')
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002351 {
Bram Moolenaar92124a32005-06-17 22:03:40 +00002352 s = get_reg_contents(*arg == '@' ? '"' : *arg, TRUE, TRUE);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002353 if (s != NULL)
2354 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00002355 p = ptofree = concat_str(s, p);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002356 vim_free(s);
2357 }
2358 }
2359 if (p != NULL)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002360 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002361 write_reg_contents(*arg == '@' ? '"' : *arg, p, -1, FALSE);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002362 arg_end = arg + 1;
2363 }
Bram Moolenaar89d40322006-08-29 15:30:07 +00002364 vim_free(ptofree);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002365 }
2366 }
2367
2368 /*
2369 * ":let var = expr": Set internal variable.
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002370 * ":let {expr} = expr": Idem, name made with curly braces
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002371 */
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +00002372 else if (eval_isnamec1(*arg) || *arg == '{')
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002373 {
Bram Moolenaar33570922005-01-25 22:26:29 +00002374 lval_T lv;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002375
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +00002376 p = get_lval(arg, tv, &lv, FALSE, FALSE, FALSE, FNE_CHECK_START);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002377 if (p != NULL && lv.ll_name != NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002378 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002379 if (endchars != NULL && vim_strchr(endchars, *skipwhite(p)) == NULL)
2380 EMSG(_(e_letunexp));
2381 else
2382 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002383 set_var_lval(&lv, p, tv, copy, op);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002384 arg_end = p;
2385 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002386 }
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002387 clear_lval(&lv);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002388 }
2389
2390 else
2391 EMSG2(_(e_invarg2), arg);
2392
2393 return arg_end;
2394}
2395
2396/*
Bram Moolenaar8c711452005-01-14 21:53:12 +00002397 * If "arg" is equal to "b:changedtick" give an error and return TRUE.
2398 */
2399 static int
2400check_changedtick(arg)
2401 char_u *arg;
2402{
2403 if (STRNCMP(arg, "b:changedtick", 13) == 0 && !eval_isnamec(arg[13]))
2404 {
2405 EMSG2(_(e_readonlyvar), arg);
2406 return TRUE;
2407 }
2408 return FALSE;
2409}
2410
2411/*
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002412 * Get an lval: variable, Dict item or List item that can be assigned a value
2413 * to: "name", "na{me}", "name[expr]", "name[expr:expr]", "name[expr][expr]",
2414 * "name.key", "name.key[expr]" etc.
2415 * Indexing only works if "name" is an existing List or Dictionary.
2416 * "name" points to the start of the name.
2417 * If "rettv" is not NULL it points to the value to be assigned.
2418 * "unlet" is TRUE for ":unlet": slightly different behavior when something is
2419 * wrong; must end in space or cmd separator.
2420 *
2421 * Returns a pointer to just after the name, including indexes.
Bram Moolenaara7043832005-01-21 11:56:39 +00002422 * When an evaluation error occurs "lp->ll_name" is NULL;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002423 * Returns NULL for a parsing error. Still need to free items in "lp"!
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002424 */
2425 static char_u *
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +00002426get_lval(name, rettv, lp, unlet, skip, quiet, fne_flags)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002427 char_u *name;
Bram Moolenaar33570922005-01-25 22:26:29 +00002428 typval_T *rettv;
2429 lval_T *lp;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002430 int unlet;
2431 int skip;
2432 int quiet; /* don't give error messages */
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +00002433 int fne_flags; /* flags for find_name_end() */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002434{
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002435 char_u *p;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002436 char_u *expr_start, *expr_end;
2437 int cc;
Bram Moolenaar33570922005-01-25 22:26:29 +00002438 dictitem_T *v;
2439 typval_T var1;
2440 typval_T var2;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002441 int empty1 = FALSE;
Bram Moolenaar33570922005-01-25 22:26:29 +00002442 listitem_T *ni;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002443 char_u *key = NULL;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002444 int len;
Bram Moolenaar33570922005-01-25 22:26:29 +00002445 hashtab_T *ht;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002446
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002447 /* Clear everything in "lp". */
Bram Moolenaar33570922005-01-25 22:26:29 +00002448 vim_memset(lp, 0, sizeof(lval_T));
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002449
2450 if (skip)
2451 {
2452 /* When skipping just find the end of the name. */
2453 lp->ll_name = name;
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +00002454 return find_name_end(name, NULL, NULL, FNE_INCL_BR | fne_flags);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002455 }
2456
2457 /* Find the end of the name. */
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +00002458 p = find_name_end(name, &expr_start, &expr_end, fne_flags);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002459 if (expr_start != NULL)
2460 {
2461 /* Don't expand the name when we already know there is an error. */
2462 if (unlet && !vim_iswhite(*p) && !ends_excmd(*p)
2463 && *p != '[' && *p != '.')
2464 {
2465 EMSG(_(e_trailing));
2466 return NULL;
2467 }
2468
2469 lp->ll_exp_name = make_expanded_name(name, expr_start, expr_end, p);
2470 if (lp->ll_exp_name == NULL)
2471 {
2472 /* Report an invalid expression in braces, unless the
2473 * expression evaluation has been cancelled due to an
2474 * aborting error, an interrupt, or an exception. */
2475 if (!aborting() && !quiet)
2476 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00002477 emsg_severe = TRUE;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002478 EMSG2(_(e_invarg2), name);
2479 return NULL;
2480 }
2481 }
2482 lp->ll_name = lp->ll_exp_name;
2483 }
2484 else
2485 lp->ll_name = name;
2486
2487 /* Without [idx] or .key we are done. */
2488 if ((*p != '[' && *p != '.') || lp->ll_name == NULL)
2489 return p;
2490
2491 cc = *p;
2492 *p = NUL;
Bram Moolenaara7043832005-01-21 11:56:39 +00002493 v = find_var(lp->ll_name, &ht);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002494 if (v == NULL && !quiet)
2495 EMSG2(_(e_undefvar), lp->ll_name);
2496 *p = cc;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002497 if (v == NULL)
2498 return NULL;
2499
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002500 /*
2501 * Loop until no more [idx] or .key is following.
2502 */
Bram Moolenaar33570922005-01-25 22:26:29 +00002503 lp->ll_tv = &v->di_tv;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002504 while (*p == '[' || (*p == '.' && lp->ll_tv->v_type == VAR_DICT))
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002505 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002506 if (!(lp->ll_tv->v_type == VAR_LIST && lp->ll_tv->vval.v_list != NULL)
2507 && !(lp->ll_tv->v_type == VAR_DICT
2508 && lp->ll_tv->vval.v_dict != NULL))
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002509 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002510 if (!quiet)
2511 EMSG(_("E689: Can only index a List or Dictionary"));
2512 return NULL;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002513 }
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002514 if (lp->ll_range)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002515 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002516 if (!quiet)
2517 EMSG(_("E708: [:] must come last"));
2518 return NULL;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002519 }
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002520
Bram Moolenaar8c711452005-01-14 21:53:12 +00002521 len = -1;
2522 if (*p == '.')
2523 {
2524 key = p + 1;
2525 for (len = 0; ASCII_ISALNUM(key[len]) || key[len] == '_'; ++len)
2526 ;
2527 if (len == 0)
2528 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002529 if (!quiet)
2530 EMSG(_(e_emptykey));
2531 return NULL;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002532 }
2533 p = key + len;
2534 }
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002535 else
2536 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00002537 /* Get the index [expr] or the first index [expr: ]. */
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002538 p = skipwhite(p + 1);
Bram Moolenaar8c711452005-01-14 21:53:12 +00002539 if (*p == ':')
2540 empty1 = TRUE;
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002541 else
2542 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00002543 empty1 = FALSE;
2544 if (eval1(&p, &var1, TRUE) == FAIL) /* recursive! */
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002545 return NULL;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002546 if (get_tv_string_chk(&var1) == NULL)
2547 {
2548 /* not a number or string */
2549 clear_tv(&var1);
2550 return NULL;
2551 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00002552 }
2553
2554 /* Optionally get the second index [ :expr]. */
2555 if (*p == ':')
2556 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002557 if (lp->ll_tv->v_type == VAR_DICT)
Bram Moolenaar8c711452005-01-14 21:53:12 +00002558 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002559 if (!quiet)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002560 EMSG(_(e_dictrange));
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002561 if (!empty1)
2562 clear_tv(&var1);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002563 return NULL;
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002564 }
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002565 if (rettv != NULL && (rettv->v_type != VAR_LIST
2566 || rettv->vval.v_list == NULL))
Bram Moolenaar8c711452005-01-14 21:53:12 +00002567 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002568 if (!quiet)
2569 EMSG(_("E709: [:] requires a List value"));
Bram Moolenaar8c711452005-01-14 21:53:12 +00002570 if (!empty1)
2571 clear_tv(&var1);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002572 return NULL;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002573 }
2574 p = skipwhite(p + 1);
2575 if (*p == ']')
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002576 lp->ll_empty2 = TRUE;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002577 else
2578 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002579 lp->ll_empty2 = FALSE;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002580 if (eval1(&p, &var2, TRUE) == FAIL) /* recursive! */
2581 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00002582 if (!empty1)
2583 clear_tv(&var1);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002584 return NULL;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002585 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002586 if (get_tv_string_chk(&var2) == NULL)
2587 {
2588 /* not a number or string */
2589 if (!empty1)
2590 clear_tv(&var1);
2591 clear_tv(&var2);
2592 return NULL;
2593 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00002594 }
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002595 lp->ll_range = TRUE;
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002596 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00002597 else
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002598 lp->ll_range = FALSE;
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002599
Bram Moolenaar8c711452005-01-14 21:53:12 +00002600 if (*p != ']')
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002601 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002602 if (!quiet)
2603 EMSG(_(e_missbrac));
Bram Moolenaar8c711452005-01-14 21:53:12 +00002604 if (!empty1)
2605 clear_tv(&var1);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002606 if (lp->ll_range && !lp->ll_empty2)
Bram Moolenaar8c711452005-01-14 21:53:12 +00002607 clear_tv(&var2);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002608 return NULL;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002609 }
2610
2611 /* Skip to past ']'. */
2612 ++p;
2613 }
2614
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002615 if (lp->ll_tv->v_type == VAR_DICT)
Bram Moolenaar8c711452005-01-14 21:53:12 +00002616 {
2617 if (len == -1)
2618 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002619 /* "[key]": get key from "var1" */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002620 key = get_tv_string(&var1); /* is number or string */
Bram Moolenaar8c711452005-01-14 21:53:12 +00002621 if (*key == NUL)
2622 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002623 if (!quiet)
2624 EMSG(_(e_emptykey));
Bram Moolenaar8c711452005-01-14 21:53:12 +00002625 clear_tv(&var1);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002626 return NULL;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002627 }
2628 }
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002629 lp->ll_list = NULL;
2630 lp->ll_dict = lp->ll_tv->vval.v_dict;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00002631 lp->ll_di = dict_find(lp->ll_dict, key, len);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002632 if (lp->ll_di == NULL)
Bram Moolenaar8c711452005-01-14 21:53:12 +00002633 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00002634 /* Key does not exist in dict: may need to add it. */
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002635 if (*p == '[' || *p == '.' || unlet)
Bram Moolenaar8c711452005-01-14 21:53:12 +00002636 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002637 if (!quiet)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002638 EMSG2(_(e_dictkey), key);
Bram Moolenaar8c711452005-01-14 21:53:12 +00002639 if (len == -1)
2640 clear_tv(&var1);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002641 return NULL;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002642 }
2643 if (len == -1)
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002644 lp->ll_newkey = vim_strsave(key);
Bram Moolenaar8c711452005-01-14 21:53:12 +00002645 else
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002646 lp->ll_newkey = vim_strnsave(key, len);
Bram Moolenaar8c711452005-01-14 21:53:12 +00002647 if (len == -1)
2648 clear_tv(&var1);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002649 if (lp->ll_newkey == NULL)
Bram Moolenaar8c711452005-01-14 21:53:12 +00002650 p = NULL;
2651 break;
2652 }
2653 if (len == -1)
2654 clear_tv(&var1);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002655 lp->ll_tv = &lp->ll_di->di_tv;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002656 }
2657 else
2658 {
2659 /*
2660 * Get the number and item for the only or first index of the List.
2661 */
2662 if (empty1)
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002663 lp->ll_n1 = 0;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002664 else
2665 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002666 lp->ll_n1 = get_tv_number(&var1); /* is number or string */
Bram Moolenaar8c711452005-01-14 21:53:12 +00002667 clear_tv(&var1);
2668 }
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002669 lp->ll_dict = NULL;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002670 lp->ll_list = lp->ll_tv->vval.v_list;
2671 lp->ll_li = list_find(lp->ll_list, lp->ll_n1);
2672 if (lp->ll_li == NULL)
Bram Moolenaar8c711452005-01-14 21:53:12 +00002673 {
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00002674 if (lp->ll_n1 < 0)
2675 {
2676 lp->ll_n1 = 0;
2677 lp->ll_li = list_find(lp->ll_list, lp->ll_n1);
2678 }
2679 }
2680 if (lp->ll_li == NULL)
2681 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002682 if (lp->ll_range && !lp->ll_empty2)
Bram Moolenaar8c711452005-01-14 21:53:12 +00002683 clear_tv(&var2);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002684 return NULL;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002685 }
2686
2687 /*
2688 * May need to find the item or absolute index for the second
2689 * index of a range.
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002690 * When no index given: "lp->ll_empty2" is TRUE.
2691 * Otherwise "lp->ll_n2" is set to the second index.
Bram Moolenaar8c711452005-01-14 21:53:12 +00002692 */
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002693 if (lp->ll_range && !lp->ll_empty2)
Bram Moolenaar8c711452005-01-14 21:53:12 +00002694 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002695 lp->ll_n2 = get_tv_number(&var2); /* is number or string */
Bram Moolenaar8c711452005-01-14 21:53:12 +00002696 clear_tv(&var2);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002697 if (lp->ll_n2 < 0)
Bram Moolenaar8c711452005-01-14 21:53:12 +00002698 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002699 ni = list_find(lp->ll_list, lp->ll_n2);
Bram Moolenaar8c711452005-01-14 21:53:12 +00002700 if (ni == NULL)
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002701 return NULL;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002702 lp->ll_n2 = list_idx_of_item(lp->ll_list, ni);
Bram Moolenaar8c711452005-01-14 21:53:12 +00002703 }
2704
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002705 /* Check that lp->ll_n2 isn't before lp->ll_n1. */
2706 if (lp->ll_n1 < 0)
2707 lp->ll_n1 = list_idx_of_item(lp->ll_list, lp->ll_li);
2708 if (lp->ll_n2 < lp->ll_n1)
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002709 return NULL;
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002710 }
2711
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002712 lp->ll_tv = &lp->ll_li->li_tv;
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002713 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002714 }
2715
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002716 return p;
2717}
2718
2719/*
Bram Moolenaar33570922005-01-25 22:26:29 +00002720 * Clear lval "lp" that was filled by get_lval().
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002721 */
2722 static void
2723clear_lval(lp)
Bram Moolenaar33570922005-01-25 22:26:29 +00002724 lval_T *lp;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002725{
2726 vim_free(lp->ll_exp_name);
2727 vim_free(lp->ll_newkey);
2728}
2729
2730/*
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00002731 * Set a variable that was parsed by get_lval() to "rettv".
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002732 * "endp" points to just after the parsed name.
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002733 * "op" is NULL, "+" for "+=", "-" for "-=", "." for ".=" or "=" for "=".
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002734 */
2735 static void
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002736set_var_lval(lp, endp, rettv, copy, op)
Bram Moolenaar33570922005-01-25 22:26:29 +00002737 lval_T *lp;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002738 char_u *endp;
Bram Moolenaar33570922005-01-25 22:26:29 +00002739 typval_T *rettv;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002740 int copy;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002741 char_u *op;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002742{
2743 int cc;
Bram Moolenaar33570922005-01-25 22:26:29 +00002744 listitem_T *ri;
2745 dictitem_T *di;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002746
2747 if (lp->ll_tv == NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002748 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002749 if (!check_changedtick(lp->ll_name))
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002750 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002751 cc = *endp;
2752 *endp = NUL;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002753 if (op != NULL && *op != '=')
2754 {
Bram Moolenaar33570922005-01-25 22:26:29 +00002755 typval_T tv;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002756
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00002757 /* handle +=, -= and .= */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002758 if (get_var_tv(lp->ll_name, (int)STRLEN(lp->ll_name),
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002759 &tv, TRUE) == OK)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002760 {
2761 if (tv_op(&tv, rettv, op) == OK)
2762 set_var(lp->ll_name, &tv, FALSE);
2763 clear_tv(&tv);
2764 }
2765 }
2766 else
2767 set_var(lp->ll_name, rettv, copy);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002768 *endp = cc;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002769 }
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002770 }
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00002771 else if (tv_check_lock(lp->ll_newkey == NULL
2772 ? lp->ll_tv->v_lock
2773 : lp->ll_tv->vval.v_dict->dv_lock, lp->ll_name))
2774 ;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002775 else if (lp->ll_range)
2776 {
2777 /*
2778 * Assign the List values to the list items.
2779 */
2780 for (ri = rettv->vval.v_list->lv_first; ri != NULL; )
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002781 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002782 if (op != NULL && *op != '=')
2783 tv_op(&lp->ll_li->li_tv, &ri->li_tv, op);
2784 else
2785 {
2786 clear_tv(&lp->ll_li->li_tv);
2787 copy_tv(&ri->li_tv, &lp->ll_li->li_tv);
2788 }
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002789 ri = ri->li_next;
2790 if (ri == NULL || (!lp->ll_empty2 && lp->ll_n2 == lp->ll_n1))
2791 break;
2792 if (lp->ll_li->li_next == NULL)
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002793 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002794 /* Need to add an empty item. */
Bram Moolenaar4463f292005-09-25 22:20:24 +00002795 if (list_append_number(lp->ll_list, 0) == FAIL)
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002796 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002797 ri = NULL;
2798 break;
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002799 }
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002800 }
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002801 lp->ll_li = lp->ll_li->li_next;
2802 ++lp->ll_n1;
2803 }
2804 if (ri != NULL)
2805 EMSG(_("E710: List value has more items than target"));
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002806 else if (lp->ll_empty2
2807 ? (lp->ll_li != NULL && lp->ll_li->li_next != NULL)
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002808 : lp->ll_n1 != lp->ll_n2)
2809 EMSG(_("E711: List value has not enough items"));
2810 }
2811 else
2812 {
2813 /*
2814 * Assign to a List or Dictionary item.
2815 */
2816 if (lp->ll_newkey != NULL)
2817 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002818 if (op != NULL && *op != '=')
2819 {
2820 EMSG2(_(e_letwrong), op);
2821 return;
2822 }
2823
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002824 /* Need to add an item to the Dictionary. */
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00002825 di = dictitem_alloc(lp->ll_newkey);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002826 if (di == NULL)
2827 return;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00002828 if (dict_add(lp->ll_tv->vval.v_dict, di) == FAIL)
2829 {
2830 vim_free(di);
2831 return;
2832 }
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002833 lp->ll_tv = &di->di_tv;
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002834 }
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002835 else if (op != NULL && *op != '=')
2836 {
2837 tv_op(lp->ll_tv, rettv, op);
2838 return;
2839 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002840 else
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002841 clear_tv(lp->ll_tv);
Bram Moolenaar8c711452005-01-14 21:53:12 +00002842
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002843 /*
2844 * Assign the value to the variable or list item.
2845 */
2846 if (copy)
2847 copy_tv(rettv, lp->ll_tv);
2848 else
2849 {
2850 *lp->ll_tv = *rettv;
Bram Moolenaar758711c2005-02-02 23:11:38 +00002851 lp->ll_tv->v_lock = 0;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002852 init_tv(rettv);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002853 }
2854 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002855}
2856
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00002857/*
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002858 * Handle "tv1 += tv2", "tv1 -= tv2" and "tv1 .= tv2"
2859 * Returns OK or FAIL.
2860 */
2861 static int
2862tv_op(tv1, tv2, op)
Bram Moolenaar33570922005-01-25 22:26:29 +00002863 typval_T *tv1;
2864 typval_T *tv2;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002865 char_u *op;
2866{
2867 long n;
2868 char_u numbuf[NUMBUFLEN];
2869 char_u *s;
2870
2871 /* Can't do anything with a Funcref or a Dict on the right. */
2872 if (tv2->v_type != VAR_FUNC && tv2->v_type != VAR_DICT)
2873 {
2874 switch (tv1->v_type)
2875 {
2876 case VAR_DICT:
2877 case VAR_FUNC:
2878 break;
2879
2880 case VAR_LIST:
2881 if (*op != '+' || tv2->v_type != VAR_LIST)
2882 break;
2883 /* List += List */
2884 if (tv1->vval.v_list != NULL && tv2->vval.v_list != NULL)
2885 list_extend(tv1->vval.v_list, tv2->vval.v_list, NULL);
2886 return OK;
2887
2888 case VAR_NUMBER:
2889 case VAR_STRING:
2890 if (tv2->v_type == VAR_LIST)
2891 break;
2892 if (*op == '+' || *op == '-')
2893 {
2894 /* nr += nr or nr -= nr*/
2895 n = get_tv_number(tv1);
Bram Moolenaar8c8de832008-06-24 22:58:06 +00002896#ifdef FEAT_FLOAT
2897 if (tv2->v_type == VAR_FLOAT)
2898 {
2899 float_T f = n;
2900
2901 if (*op == '+')
2902 f += tv2->vval.v_float;
2903 else
2904 f -= tv2->vval.v_float;
2905 clear_tv(tv1);
2906 tv1->v_type = VAR_FLOAT;
2907 tv1->vval.v_float = f;
2908 }
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002909 else
Bram Moolenaar8c8de832008-06-24 22:58:06 +00002910#endif
2911 {
2912 if (*op == '+')
2913 n += get_tv_number(tv2);
2914 else
2915 n -= get_tv_number(tv2);
2916 clear_tv(tv1);
2917 tv1->v_type = VAR_NUMBER;
2918 tv1->vval.v_number = n;
2919 }
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002920 }
2921 else
2922 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00002923 if (tv2->v_type == VAR_FLOAT)
2924 break;
2925
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002926 /* str .= str */
2927 s = get_tv_string(tv1);
2928 s = concat_str(s, get_tv_string_buf(tv2, numbuf));
2929 clear_tv(tv1);
2930 tv1->v_type = VAR_STRING;
2931 tv1->vval.v_string = s;
2932 }
2933 return OK;
Bram Moolenaar8c8de832008-06-24 22:58:06 +00002934
2935#ifdef FEAT_FLOAT
2936 case VAR_FLOAT:
2937 {
2938 float_T f;
2939
2940 if (*op == '.' || (tv2->v_type != VAR_FLOAT
2941 && tv2->v_type != VAR_NUMBER
2942 && tv2->v_type != VAR_STRING))
2943 break;
2944 if (tv2->v_type == VAR_FLOAT)
2945 f = tv2->vval.v_float;
2946 else
2947 f = get_tv_number(tv2);
2948 if (*op == '+')
2949 tv1->vval.v_float += f;
2950 else
2951 tv1->vval.v_float -= f;
2952 }
2953 return OK;
2954#endif
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002955 }
2956 }
2957
2958 EMSG2(_(e_letwrong), op);
2959 return FAIL;
2960}
2961
2962/*
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00002963 * Add a watcher to a list.
2964 */
2965 static void
2966list_add_watch(l, lw)
Bram Moolenaar33570922005-01-25 22:26:29 +00002967 list_T *l;
2968 listwatch_T *lw;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00002969{
2970 lw->lw_next = l->lv_watch;
2971 l->lv_watch = lw;
2972}
2973
2974/*
Bram Moolenaar758711c2005-02-02 23:11:38 +00002975 * Remove a watcher from a list.
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00002976 * No warning when it isn't found...
2977 */
2978 static void
2979list_rem_watch(l, lwrem)
Bram Moolenaar33570922005-01-25 22:26:29 +00002980 list_T *l;
2981 listwatch_T *lwrem;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00002982{
Bram Moolenaar33570922005-01-25 22:26:29 +00002983 listwatch_T *lw, **lwp;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00002984
2985 lwp = &l->lv_watch;
2986 for (lw = l->lv_watch; lw != NULL; lw = lw->lw_next)
2987 {
2988 if (lw == lwrem)
2989 {
2990 *lwp = lw->lw_next;
2991 break;
2992 }
2993 lwp = &lw->lw_next;
2994 }
2995}
2996
2997/*
2998 * Just before removing an item from a list: advance watchers to the next
2999 * item.
3000 */
3001 static void
3002list_fix_watch(l, item)
Bram Moolenaar33570922005-01-25 22:26:29 +00003003 list_T *l;
3004 listitem_T *item;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003005{
Bram Moolenaar33570922005-01-25 22:26:29 +00003006 listwatch_T *lw;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003007
3008 for (lw = l->lv_watch; lw != NULL; lw = lw->lw_next)
3009 if (lw->lw_item == item)
3010 lw->lw_item = item->li_next;
3011}
3012
3013/*
3014 * Evaluate the expression used in a ":for var in expr" command.
3015 * "arg" points to "var".
3016 * Set "*errp" to TRUE for an error, FALSE otherwise;
3017 * Return a pointer that holds the info. Null when there is an error.
3018 */
3019 void *
3020eval_for_line(arg, errp, nextcmdp, skip)
3021 char_u *arg;
3022 int *errp;
3023 char_u **nextcmdp;
3024 int skip;
3025{
Bram Moolenaar33570922005-01-25 22:26:29 +00003026 forinfo_T *fi;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003027 char_u *expr;
Bram Moolenaar33570922005-01-25 22:26:29 +00003028 typval_T tv;
3029 list_T *l;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003030
3031 *errp = TRUE; /* default: there is an error */
3032
Bram Moolenaar33570922005-01-25 22:26:29 +00003033 fi = (forinfo_T *)alloc_clear(sizeof(forinfo_T));
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003034 if (fi == NULL)
3035 return NULL;
3036
3037 expr = skip_var_list(arg, &fi->fi_varcount, &fi->fi_semicolon);
3038 if (expr == NULL)
3039 return fi;
3040
3041 expr = skipwhite(expr);
3042 if (expr[0] != 'i' || expr[1] != 'n' || !vim_iswhite(expr[2]))
3043 {
Bram Moolenaare49b69a2005-01-08 16:11:57 +00003044 EMSG(_("E690: Missing \"in\" after :for"));
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003045 return fi;
3046 }
3047
3048 if (skip)
3049 ++emsg_skip;
3050 if (eval0(skipwhite(expr + 2), &tv, nextcmdp, !skip) == OK)
3051 {
3052 *errp = FALSE;
3053 if (!skip)
3054 {
3055 l = tv.vval.v_list;
3056 if (tv.v_type != VAR_LIST || l == NULL)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003057 {
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003058 EMSG(_(e_listreq));
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003059 clear_tv(&tv);
3060 }
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003061 else
3062 {
Bram Moolenaar7bb4c6e2005-09-07 21:22:27 +00003063 /* No need to increment the refcount, it's already set for the
3064 * list being used in "tv". */
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003065 fi->fi_list = l;
3066 list_add_watch(l, &fi->fi_lw);
3067 fi->fi_lw.lw_item = l->lv_first;
3068 }
3069 }
3070 }
3071 if (skip)
3072 --emsg_skip;
3073
3074 return fi;
3075}
3076
3077/*
3078 * Use the first item in a ":for" list. Advance to the next.
3079 * Assign the values to the variable (list). "arg" points to the first one.
3080 * Return TRUE when a valid item was found, FALSE when at end of list or
3081 * something wrong.
3082 */
3083 int
3084next_for_item(fi_void, arg)
3085 void *fi_void;
3086 char_u *arg;
3087{
Bram Moolenaar33570922005-01-25 22:26:29 +00003088 forinfo_T *fi = (forinfo_T *)fi_void;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003089 int result;
Bram Moolenaar33570922005-01-25 22:26:29 +00003090 listitem_T *item;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003091
3092 item = fi->fi_lw.lw_item;
3093 if (item == NULL)
3094 result = FALSE;
3095 else
3096 {
3097 fi->fi_lw.lw_item = item->li_next;
3098 result = (ex_let_vars(arg, &item->li_tv, TRUE,
3099 fi->fi_semicolon, fi->fi_varcount, NULL) == OK);
3100 }
3101 return result;
3102}
3103
3104/*
3105 * Free the structure used to store info used by ":for".
3106 */
3107 void
3108free_for_info(fi_void)
3109 void *fi_void;
3110{
Bram Moolenaar33570922005-01-25 22:26:29 +00003111 forinfo_T *fi = (forinfo_T *)fi_void;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003112
Bram Moolenaarab7013c2005-01-09 21:23:56 +00003113 if (fi != NULL && fi->fi_list != NULL)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003114 {
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003115 list_rem_watch(fi->fi_list, &fi->fi_lw);
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003116 list_unref(fi->fi_list);
3117 }
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003118 vim_free(fi);
3119}
3120
Bram Moolenaar071d4272004-06-13 20:20:40 +00003121#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
3122
3123 void
3124set_context_for_expression(xp, arg, cmdidx)
3125 expand_T *xp;
3126 char_u *arg;
3127 cmdidx_T cmdidx;
3128{
3129 int got_eq = FALSE;
3130 int c;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003131 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003132
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003133 if (cmdidx == CMD_let)
3134 {
3135 xp->xp_context = EXPAND_USER_VARS;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00003136 if (vim_strpbrk(arg, (char_u *)"\"'+-*/%.=!?~|&$([<>,#") == NULL)
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003137 {
3138 /* ":let var1 var2 ...": find last space. */
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00003139 for (p = arg + STRLEN(arg); p >= arg; )
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003140 {
3141 xp->xp_pattern = p;
Bram Moolenaar33570922005-01-25 22:26:29 +00003142 mb_ptr_back(arg, p);
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003143 if (vim_iswhite(*p))
3144 break;
3145 }
3146 return;
3147 }
3148 }
3149 else
3150 xp->xp_context = cmdidx == CMD_call ? EXPAND_FUNCTIONS
3151 : EXPAND_EXPRESSION;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003152 while ((xp->xp_pattern = vim_strpbrk(arg,
3153 (char_u *)"\"'+-*/%.=!?~|&$([<>,#")) != NULL)
3154 {
3155 c = *xp->xp_pattern;
3156 if (c == '&')
3157 {
3158 c = xp->xp_pattern[1];
3159 if (c == '&')
3160 {
3161 ++xp->xp_pattern;
3162 xp->xp_context = cmdidx != CMD_let || got_eq
3163 ? EXPAND_EXPRESSION : EXPAND_NOTHING;
3164 }
3165 else if (c != ' ')
Bram Moolenaar11cbeb12005-03-11 22:51:16 +00003166 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003167 xp->xp_context = EXPAND_SETTINGS;
Bram Moolenaar11cbeb12005-03-11 22:51:16 +00003168 if ((c == 'l' || c == 'g') && xp->xp_pattern[2] == ':')
3169 xp->xp_pattern += 2;
3170
3171 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003172 }
3173 else if (c == '$')
3174 {
3175 /* environment variable */
3176 xp->xp_context = EXPAND_ENV_VARS;
3177 }
3178 else if (c == '=')
3179 {
3180 got_eq = TRUE;
3181 xp->xp_context = EXPAND_EXPRESSION;
3182 }
3183 else if (c == '<'
3184 && xp->xp_context == EXPAND_FUNCTIONS
3185 && vim_strchr(xp->xp_pattern, '(') == NULL)
3186 {
3187 /* Function name can start with "<SNR>" */
3188 break;
3189 }
3190 else if (cmdidx != CMD_let || got_eq)
3191 {
3192 if (c == '"') /* string */
3193 {
3194 while ((c = *++xp->xp_pattern) != NUL && c != '"')
3195 if (c == '\\' && xp->xp_pattern[1] != NUL)
3196 ++xp->xp_pattern;
3197 xp->xp_context = EXPAND_NOTHING;
3198 }
3199 else if (c == '\'') /* literal string */
3200 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00003201 /* Trick: '' is like stopping and starting a literal string. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003202 while ((c = *++xp->xp_pattern) != NUL && c != '\'')
3203 /* skip */ ;
3204 xp->xp_context = EXPAND_NOTHING;
3205 }
3206 else if (c == '|')
3207 {
3208 if (xp->xp_pattern[1] == '|')
3209 {
3210 ++xp->xp_pattern;
3211 xp->xp_context = EXPAND_EXPRESSION;
3212 }
3213 else
3214 xp->xp_context = EXPAND_COMMANDS;
3215 }
3216 else
3217 xp->xp_context = EXPAND_EXPRESSION;
3218 }
3219 else
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003220 /* Doesn't look like something valid, expand as an expression
3221 * anyway. */
3222 xp->xp_context = EXPAND_EXPRESSION;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003223 arg = xp->xp_pattern;
3224 if (*arg != NUL)
3225 while ((c = *++arg) != NUL && (c == ' ' || c == '\t'))
3226 /* skip */ ;
3227 }
3228 xp->xp_pattern = arg;
3229}
3230
3231#endif /* FEAT_CMDL_COMPL */
3232
3233/*
3234 * ":1,25call func(arg1, arg2)" function call.
3235 */
3236 void
3237ex_call(eap)
3238 exarg_T *eap;
3239{
3240 char_u *arg = eap->arg;
3241 char_u *startarg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003242 char_u *name;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00003243 char_u *tofree;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003244 int len;
Bram Moolenaar33570922005-01-25 22:26:29 +00003245 typval_T rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003246 linenr_T lnum;
3247 int doesrange;
3248 int failed = FALSE;
Bram Moolenaar33570922005-01-25 22:26:29 +00003249 funcdict_T fudi;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003250
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00003251 tofree = trans_function_name(&arg, eap->skip, TFN_INT, &fudi);
Bram Moolenaara2a31752006-10-24 11:49:25 +00003252 if (fudi.fd_newkey != NULL)
3253 {
3254 /* Still need to give an error message for missing key. */
3255 EMSG2(_(e_dictkey), fudi.fd_newkey);
3256 vim_free(fudi.fd_newkey);
3257 }
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00003258 if (tofree == NULL)
3259 return;
3260
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00003261 /* Increase refcount on dictionary, it could get deleted when evaluating
3262 * the arguments. */
3263 if (fudi.fd_dict != NULL)
3264 ++fudi.fd_dict->dv_refcount;
3265
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00003266 /* If it is the name of a variable of type VAR_FUNC use its contents. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003267 len = (int)STRLEN(tofree);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00003268 name = deref_func_name(tofree, &len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003269
Bram Moolenaar532c7802005-01-27 14:44:31 +00003270 /* Skip white space to allow ":call func ()". Not good, but required for
3271 * backward compatibility. */
3272 startarg = skipwhite(arg);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003273 rettv.v_type = VAR_UNKNOWN; /* clear_tv() uses this */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003274
3275 if (*startarg != '(')
3276 {
Bram Moolenaar81bf7082005-02-12 14:31:42 +00003277 EMSG2(_("E107: Missing braces: %s"), eap->arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003278 goto end;
3279 }
3280
3281 /*
3282 * When skipping, evaluate the function once, to find the end of the
3283 * arguments.
3284 * When the function takes a range, this is discovered after the first
3285 * call, and the loop is broken.
3286 */
3287 if (eap->skip)
3288 {
3289 ++emsg_skip;
3290 lnum = eap->line2; /* do it once, also with an invalid range */
3291 }
3292 else
3293 lnum = eap->line1;
3294 for ( ; lnum <= eap->line2; ++lnum)
3295 {
3296 if (!eap->skip && eap->addr_count > 0)
3297 {
3298 curwin->w_cursor.lnum = lnum;
3299 curwin->w_cursor.col = 0;
3300 }
3301 arg = startarg;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003302 if (get_func_tv(name, (int)STRLEN(name), &rettv, &arg,
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00003303 eap->line1, eap->line2, &doesrange,
3304 !eap->skip, fudi.fd_dict) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003305 {
3306 failed = TRUE;
3307 break;
3308 }
Bram Moolenaarf2789872006-11-28 19:54:04 +00003309
3310 /* Handle a function returning a Funcref, Dictionary or List. */
3311 if (handle_subscript(&arg, &rettv, !eap->skip, TRUE) == FAIL)
3312 {
3313 failed = TRUE;
3314 break;
3315 }
3316
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003317 clear_tv(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003318 if (doesrange || eap->skip)
3319 break;
Bram Moolenaarf2789872006-11-28 19:54:04 +00003320
Bram Moolenaar071d4272004-06-13 20:20:40 +00003321 /* Stop when immediately aborting on error, or when an interrupt
Bram Moolenaar49cd9572005-01-03 21:06:01 +00003322 * occurred or an exception was thrown but not caught.
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003323 * get_func_tv() returned OK, so that the check for trailing
Bram Moolenaar49cd9572005-01-03 21:06:01 +00003324 * characters below is executed. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003325 if (aborting())
3326 break;
3327 }
3328 if (eap->skip)
3329 --emsg_skip;
3330
3331 if (!failed)
3332 {
3333 /* Check for trailing illegal characters and a following command. */
3334 if (!ends_excmd(*arg))
3335 {
3336 emsg_severe = TRUE;
3337 EMSG(_(e_trailing));
3338 }
3339 else
3340 eap->nextcmd = check_nextcmd(arg);
3341 }
3342
3343end:
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00003344 dict_unref(fudi.fd_dict);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00003345 vim_free(tofree);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003346}
3347
3348/*
3349 * ":unlet[!] var1 ... " command.
3350 */
3351 void
3352ex_unlet(eap)
3353 exarg_T *eap;
3354{
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003355 ex_unletlock(eap, eap->arg, 0);
3356}
3357
3358/*
3359 * ":lockvar" and ":unlockvar" commands
3360 */
3361 void
3362ex_lockvar(eap)
3363 exarg_T *eap;
3364{
Bram Moolenaar071d4272004-06-13 20:20:40 +00003365 char_u *arg = eap->arg;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003366 int deep = 2;
3367
3368 if (eap->forceit)
3369 deep = -1;
3370 else if (vim_isdigit(*arg))
3371 {
3372 deep = getdigits(&arg);
3373 arg = skipwhite(arg);
3374 }
3375
3376 ex_unletlock(eap, arg, deep);
3377}
3378
3379/*
3380 * ":unlet", ":lockvar" and ":unlockvar" are quite similar.
3381 */
3382 static void
3383ex_unletlock(eap, argstart, deep)
3384 exarg_T *eap;
3385 char_u *argstart;
3386 int deep;
3387{
3388 char_u *arg = argstart;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003389 char_u *name_end;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003390 int error = FALSE;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003391 lval_T lv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003392
3393 do
3394 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003395 /* Parse the name and find the end. */
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +00003396 name_end = get_lval(arg, NULL, &lv, TRUE, eap->skip || error, FALSE,
3397 FNE_CHECK_START);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003398 if (lv.ll_name == NULL)
3399 error = TRUE; /* error but continue parsing */
3400 if (name_end == NULL || (!vim_iswhite(*name_end)
3401 && !ends_excmd(*name_end)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003402 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003403 if (name_end != NULL)
3404 {
3405 emsg_severe = TRUE;
3406 EMSG(_(e_trailing));
3407 }
3408 if (!(eap->skip || error))
3409 clear_lval(&lv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003410 break;
3411 }
3412
3413 if (!error && !eap->skip)
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003414 {
3415 if (eap->cmdidx == CMD_unlet)
3416 {
3417 if (do_unlet_var(&lv, name_end, eap->forceit) == FAIL)
3418 error = TRUE;
3419 }
3420 else
3421 {
3422 if (do_lock_var(&lv, name_end, deep,
3423 eap->cmdidx == CMD_lockvar) == FAIL)
3424 error = TRUE;
3425 }
3426 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003427
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003428 if (!eap->skip)
3429 clear_lval(&lv);
3430
Bram Moolenaar071d4272004-06-13 20:20:40 +00003431 arg = skipwhite(name_end);
3432 } while (!ends_excmd(*arg));
3433
3434 eap->nextcmd = check_nextcmd(arg);
3435}
3436
Bram Moolenaar8c711452005-01-14 21:53:12 +00003437 static int
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003438do_unlet_var(lp, name_end, forceit)
Bram Moolenaar33570922005-01-25 22:26:29 +00003439 lval_T *lp;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003440 char_u *name_end;
Bram Moolenaar8c711452005-01-14 21:53:12 +00003441 int forceit;
3442{
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003443 int ret = OK;
3444 int cc;
3445
3446 if (lp->ll_tv == NULL)
Bram Moolenaar8c711452005-01-14 21:53:12 +00003447 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003448 cc = *name_end;
3449 *name_end = NUL;
3450
3451 /* Normal name or expanded name. */
3452 if (check_changedtick(lp->ll_name))
3453 ret = FAIL;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003454 else if (do_unlet(lp->ll_name, forceit) == FAIL)
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003455 ret = FAIL;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003456 *name_end = cc;
Bram Moolenaar8c711452005-01-14 21:53:12 +00003457 }
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003458 else if (tv_check_lock(lp->ll_tv->v_lock, lp->ll_name))
3459 return FAIL;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003460 else if (lp->ll_range)
3461 {
Bram Moolenaar33570922005-01-25 22:26:29 +00003462 listitem_T *li;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003463
3464 /* Delete a range of List items. */
3465 while (lp->ll_li != NULL && (lp->ll_empty2 || lp->ll_n2 >= lp->ll_n1))
3466 {
3467 li = lp->ll_li->li_next;
3468 listitem_remove(lp->ll_list, lp->ll_li);
3469 lp->ll_li = li;
3470 ++lp->ll_n1;
3471 }
3472 }
3473 else
3474 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003475 if (lp->ll_list != NULL)
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003476 /* unlet a List item. */
3477 listitem_remove(lp->ll_list, lp->ll_li);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003478 else
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003479 /* unlet a Dictionary item. */
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00003480 dictitem_remove(lp->ll_dict, lp->ll_di);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003481 }
3482
3483 return ret;
Bram Moolenaar8c711452005-01-14 21:53:12 +00003484}
3485
Bram Moolenaar071d4272004-06-13 20:20:40 +00003486/*
3487 * "unlet" a variable. Return OK if it existed, FAIL if not.
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003488 * When "forceit" is TRUE don't complain if the variable doesn't exist.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003489 */
3490 int
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003491do_unlet(name, forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003492 char_u *name;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003493 int forceit;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003494{
Bram Moolenaar33570922005-01-25 22:26:29 +00003495 hashtab_T *ht;
3496 hashitem_T *hi;
Bram Moolenaara7043832005-01-21 11:56:39 +00003497 char_u *varname;
Bram Moolenaarafbdeb82008-01-05 21:16:31 +00003498 dictitem_T *di;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003499
Bram Moolenaar33570922005-01-25 22:26:29 +00003500 ht = find_var_ht(name, &varname);
3501 if (ht != NULL && *varname != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003502 {
Bram Moolenaar33570922005-01-25 22:26:29 +00003503 hi = hash_find(ht, varname);
3504 if (!HASHITEM_EMPTY(hi))
Bram Moolenaara7043832005-01-21 11:56:39 +00003505 {
Bram Moolenaarafbdeb82008-01-05 21:16:31 +00003506 di = HI2DI(hi);
3507 if (var_check_fixed(di->di_flags, name)
3508 || var_check_ro(di->di_flags, name))
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003509 return FAIL;
3510 delete_var(ht, hi);
3511 return OK;
Bram Moolenaara7043832005-01-21 11:56:39 +00003512 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003513 }
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003514 if (forceit)
3515 return OK;
3516 EMSG2(_("E108: No such variable: \"%s\""), name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003517 return FAIL;
3518}
3519
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003520/*
3521 * Lock or unlock variable indicated by "lp".
3522 * "deep" is the levels to go (-1 for unlimited);
3523 * "lock" is TRUE for ":lockvar", FALSE for ":unlockvar".
3524 */
3525 static int
3526do_lock_var(lp, name_end, deep, lock)
3527 lval_T *lp;
3528 char_u *name_end;
3529 int deep;
3530 int lock;
3531{
3532 int ret = OK;
3533 int cc;
3534 dictitem_T *di;
3535
3536 if (deep == 0) /* nothing to do */
3537 return OK;
3538
3539 if (lp->ll_tv == NULL)
3540 {
3541 cc = *name_end;
3542 *name_end = NUL;
3543
3544 /* Normal name or expanded name. */
3545 if (check_changedtick(lp->ll_name))
3546 ret = FAIL;
3547 else
3548 {
3549 di = find_var(lp->ll_name, NULL);
3550 if (di == NULL)
3551 ret = FAIL;
3552 else
3553 {
3554 if (lock)
3555 di->di_flags |= DI_FLAGS_LOCK;
3556 else
3557 di->di_flags &= ~DI_FLAGS_LOCK;
3558 item_lock(&di->di_tv, deep, lock);
3559 }
3560 }
3561 *name_end = cc;
3562 }
3563 else if (lp->ll_range)
3564 {
3565 listitem_T *li = lp->ll_li;
3566
3567 /* (un)lock a range of List items. */
3568 while (li != NULL && (lp->ll_empty2 || lp->ll_n2 >= lp->ll_n1))
3569 {
3570 item_lock(&li->li_tv, deep, lock);
3571 li = li->li_next;
3572 ++lp->ll_n1;
3573 }
3574 }
3575 else if (lp->ll_list != NULL)
3576 /* (un)lock a List item. */
3577 item_lock(&lp->ll_li->li_tv, deep, lock);
3578 else
3579 /* un(lock) a Dictionary item. */
3580 item_lock(&lp->ll_di->di_tv, deep, lock);
3581
3582 return ret;
3583}
3584
3585/*
3586 * Lock or unlock an item. "deep" is nr of levels to go.
3587 */
3588 static void
3589item_lock(tv, deep, lock)
3590 typval_T *tv;
3591 int deep;
3592 int lock;
3593{
3594 static int recurse = 0;
3595 list_T *l;
3596 listitem_T *li;
3597 dict_T *d;
3598 hashitem_T *hi;
3599 int todo;
3600
3601 if (recurse >= DICT_MAXNEST)
3602 {
3603 EMSG(_("E743: variable nested too deep for (un)lock"));
3604 return;
3605 }
3606 if (deep == 0)
3607 return;
3608 ++recurse;
3609
3610 /* lock/unlock the item itself */
3611 if (lock)
3612 tv->v_lock |= VAR_LOCKED;
3613 else
3614 tv->v_lock &= ~VAR_LOCKED;
3615
3616 switch (tv->v_type)
3617 {
3618 case VAR_LIST:
3619 if ((l = tv->vval.v_list) != NULL)
3620 {
3621 if (lock)
3622 l->lv_lock |= VAR_LOCKED;
3623 else
3624 l->lv_lock &= ~VAR_LOCKED;
3625 if (deep < 0 || deep > 1)
3626 /* recursive: lock/unlock the items the List contains */
3627 for (li = l->lv_first; li != NULL; li = li->li_next)
3628 item_lock(&li->li_tv, deep - 1, lock);
3629 }
3630 break;
3631 case VAR_DICT:
3632 if ((d = tv->vval.v_dict) != NULL)
3633 {
3634 if (lock)
3635 d->dv_lock |= VAR_LOCKED;
3636 else
3637 d->dv_lock &= ~VAR_LOCKED;
3638 if (deep < 0 || deep > 1)
3639 {
3640 /* recursive: lock/unlock the items the List contains */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003641 todo = (int)d->dv_hashtab.ht_used;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003642 for (hi = d->dv_hashtab.ht_array; todo > 0; ++hi)
3643 {
3644 if (!HASHITEM_EMPTY(hi))
3645 {
3646 --todo;
3647 item_lock(&HI2DI(hi)->di_tv, deep - 1, lock);
3648 }
3649 }
3650 }
3651 }
3652 }
3653 --recurse;
3654}
3655
Bram Moolenaara40058a2005-07-11 22:42:07 +00003656/*
3657 * Return TRUE if typeval "tv" is locked: Either tha value is locked itself or
3658 * it refers to a List or Dictionary that is locked.
3659 */
3660 static int
3661tv_islocked(tv)
3662 typval_T *tv;
3663{
3664 return (tv->v_lock & VAR_LOCKED)
3665 || (tv->v_type == VAR_LIST
3666 && tv->vval.v_list != NULL
3667 && (tv->vval.v_list->lv_lock & VAR_LOCKED))
3668 || (tv->v_type == VAR_DICT
3669 && tv->vval.v_dict != NULL
3670 && (tv->vval.v_dict->dv_lock & VAR_LOCKED));
3671}
3672
Bram Moolenaar071d4272004-06-13 20:20:40 +00003673#if (defined(FEAT_MENU) && defined(FEAT_MULTI_LANG)) || defined(PROTO)
3674/*
3675 * Delete all "menutrans_" variables.
3676 */
3677 void
3678del_menutrans_vars()
3679{
Bram Moolenaar33570922005-01-25 22:26:29 +00003680 hashitem_T *hi;
Bram Moolenaara7043832005-01-21 11:56:39 +00003681 int todo;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003682
Bram Moolenaar33570922005-01-25 22:26:29 +00003683 hash_lock(&globvarht);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003684 todo = (int)globvarht.ht_used;
Bram Moolenaar33570922005-01-25 22:26:29 +00003685 for (hi = globvarht.ht_array; todo > 0 && !got_int; ++hi)
Bram Moolenaara7043832005-01-21 11:56:39 +00003686 {
3687 if (!HASHITEM_EMPTY(hi))
3688 {
3689 --todo;
Bram Moolenaar33570922005-01-25 22:26:29 +00003690 if (STRNCMP(HI2DI(hi)->di_key, "menutrans_", 10) == 0)
3691 delete_var(&globvarht, hi);
Bram Moolenaara7043832005-01-21 11:56:39 +00003692 }
3693 }
Bram Moolenaar33570922005-01-25 22:26:29 +00003694 hash_unlock(&globvarht);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003695}
3696#endif
3697
3698#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
3699
3700/*
3701 * Local string buffer for the next two functions to store a variable name
3702 * with its prefix. Allocated in cat_prefix_varname(), freed later in
3703 * get_user_var_name().
3704 */
3705
3706static char_u *cat_prefix_varname __ARGS((int prefix, char_u *name));
3707
3708static char_u *varnamebuf = NULL;
3709static int varnamebuflen = 0;
3710
3711/*
3712 * Function to concatenate a prefix and a variable name.
3713 */
3714 static char_u *
3715cat_prefix_varname(prefix, name)
3716 int prefix;
3717 char_u *name;
3718{
3719 int len;
3720
3721 len = (int)STRLEN(name) + 3;
3722 if (len > varnamebuflen)
3723 {
3724 vim_free(varnamebuf);
3725 len += 10; /* some additional space */
3726 varnamebuf = alloc(len);
3727 if (varnamebuf == NULL)
3728 {
3729 varnamebuflen = 0;
3730 return NULL;
3731 }
3732 varnamebuflen = len;
3733 }
3734 *varnamebuf = prefix;
3735 varnamebuf[1] = ':';
3736 STRCPY(varnamebuf + 2, name);
3737 return varnamebuf;
3738}
3739
3740/*
3741 * Function given to ExpandGeneric() to obtain the list of user defined
3742 * (global/buffer/window/built-in) variable names.
3743 */
3744/*ARGSUSED*/
3745 char_u *
3746get_user_var_name(xp, idx)
3747 expand_T *xp;
3748 int idx;
3749{
Bram Moolenaar532c7802005-01-27 14:44:31 +00003750 static long_u gdone;
3751 static long_u bdone;
3752 static long_u wdone;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003753#ifdef FEAT_WINDOWS
3754 static long_u tdone;
3755#endif
Bram Moolenaar532c7802005-01-27 14:44:31 +00003756 static int vidx;
3757 static hashitem_T *hi;
3758 hashtab_T *ht;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003759
3760 if (idx == 0)
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003761 {
Bram Moolenaara7043832005-01-21 11:56:39 +00003762 gdone = bdone = wdone = vidx = 0;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003763#ifdef FEAT_WINDOWS
3764 tdone = 0;
3765#endif
3766 }
Bram Moolenaar33570922005-01-25 22:26:29 +00003767
3768 /* Global variables */
3769 if (gdone < globvarht.ht_used)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003770 {
Bram Moolenaara7043832005-01-21 11:56:39 +00003771 if (gdone++ == 0)
Bram Moolenaar33570922005-01-25 22:26:29 +00003772 hi = globvarht.ht_array;
Bram Moolenaar532c7802005-01-27 14:44:31 +00003773 else
3774 ++hi;
Bram Moolenaara7043832005-01-21 11:56:39 +00003775 while (HASHITEM_EMPTY(hi))
3776 ++hi;
3777 if (STRNCMP("g:", xp->xp_pattern, 2) == 0)
3778 return cat_prefix_varname('g', hi->hi_key);
3779 return hi->hi_key;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003780 }
Bram Moolenaar33570922005-01-25 22:26:29 +00003781
3782 /* b: variables */
3783 ht = &curbuf->b_vars.dv_hashtab;
3784 if (bdone < ht->ht_used)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003785 {
Bram Moolenaara7043832005-01-21 11:56:39 +00003786 if (bdone++ == 0)
Bram Moolenaar33570922005-01-25 22:26:29 +00003787 hi = ht->ht_array;
Bram Moolenaar532c7802005-01-27 14:44:31 +00003788 else
3789 ++hi;
Bram Moolenaara7043832005-01-21 11:56:39 +00003790 while (HASHITEM_EMPTY(hi))
3791 ++hi;
3792 return cat_prefix_varname('b', hi->hi_key);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003793 }
Bram Moolenaar33570922005-01-25 22:26:29 +00003794 if (bdone == ht->ht_used)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003795 {
Bram Moolenaara7043832005-01-21 11:56:39 +00003796 ++bdone;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003797 return (char_u *)"b:changedtick";
3798 }
Bram Moolenaar33570922005-01-25 22:26:29 +00003799
3800 /* w: variables */
3801 ht = &curwin->w_vars.dv_hashtab;
3802 if (wdone < ht->ht_used)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003803 {
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +00003804 if (wdone++ == 0)
Bram Moolenaar33570922005-01-25 22:26:29 +00003805 hi = ht->ht_array;
Bram Moolenaar532c7802005-01-27 14:44:31 +00003806 else
3807 ++hi;
Bram Moolenaara7043832005-01-21 11:56:39 +00003808 while (HASHITEM_EMPTY(hi))
3809 ++hi;
3810 return cat_prefix_varname('w', hi->hi_key);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003811 }
Bram Moolenaar33570922005-01-25 22:26:29 +00003812
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003813#ifdef FEAT_WINDOWS
3814 /* t: variables */
3815 ht = &curtab->tp_vars.dv_hashtab;
3816 if (tdone < ht->ht_used)
3817 {
3818 if (tdone++ == 0)
3819 hi = ht->ht_array;
3820 else
3821 ++hi;
3822 while (HASHITEM_EMPTY(hi))
3823 ++hi;
3824 return cat_prefix_varname('t', hi->hi_key);
3825 }
3826#endif
3827
Bram Moolenaar33570922005-01-25 22:26:29 +00003828 /* v: variables */
3829 if (vidx < VV_LEN)
3830 return cat_prefix_varname('v', (char_u *)vimvars[vidx++].vv_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003831
3832 vim_free(varnamebuf);
3833 varnamebuf = NULL;
3834 varnamebuflen = 0;
3835 return NULL;
3836}
3837
3838#endif /* FEAT_CMDL_COMPL */
3839
3840/*
3841 * types for expressions.
3842 */
3843typedef enum
3844{
3845 TYPE_UNKNOWN = 0
3846 , TYPE_EQUAL /* == */
3847 , TYPE_NEQUAL /* != */
3848 , TYPE_GREATER /* > */
3849 , TYPE_GEQUAL /* >= */
3850 , TYPE_SMALLER /* < */
3851 , TYPE_SEQUAL /* <= */
3852 , TYPE_MATCH /* =~ */
3853 , TYPE_NOMATCH /* !~ */
3854} exptype_T;
3855
3856/*
3857 * The "evaluate" argument: When FALSE, the argument is only parsed but not
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003858 * executed. The function may return OK, but the rettv will be of type
Bram Moolenaar071d4272004-06-13 20:20:40 +00003859 * VAR_UNKNOWN. The function still returns FAIL for a syntax error.
3860 */
3861
3862/*
3863 * Handle zero level expression.
3864 * This calls eval1() and handles error message and nextcmd.
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003865 * Put the result in "rettv" when returning OK and "evaluate" is TRUE.
Bram Moolenaar4463f292005-09-25 22:20:24 +00003866 * Note: "rettv.v_lock" is not set.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003867 * Return OK or FAIL.
3868 */
3869 static int
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003870eval0(arg, rettv, nextcmd, evaluate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003871 char_u *arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00003872 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003873 char_u **nextcmd;
3874 int evaluate;
3875{
3876 int ret;
3877 char_u *p;
3878
3879 p = skipwhite(arg);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003880 ret = eval1(&p, rettv, evaluate);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003881 if (ret == FAIL || !ends_excmd(*p))
3882 {
3883 if (ret != FAIL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003884 clear_tv(rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003885 /*
3886 * Report the invalid expression unless the expression evaluation has
3887 * been cancelled due to an aborting error, an interrupt, or an
3888 * exception.
3889 */
3890 if (!aborting())
3891 EMSG2(_(e_invexpr2), arg);
3892 ret = FAIL;
3893 }
3894 if (nextcmd != NULL)
3895 *nextcmd = check_nextcmd(p);
3896
3897 return ret;
3898}
3899
3900/*
3901 * Handle top level expression:
3902 * expr1 ? expr0 : expr0
3903 *
3904 * "arg" must point to the first non-white of the expression.
3905 * "arg" is advanced to the next non-white after the recognized expression.
3906 *
Bram Moolenaar4463f292005-09-25 22:20:24 +00003907 * Note: "rettv.v_lock" is not set.
3908 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00003909 * Return OK or FAIL.
3910 */
3911 static int
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003912eval1(arg, rettv, evaluate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003913 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00003914 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003915 int evaluate;
3916{
3917 int result;
Bram Moolenaar33570922005-01-25 22:26:29 +00003918 typval_T var2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003919
3920 /*
3921 * Get the first variable.
3922 */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003923 if (eval2(arg, rettv, evaluate) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003924 return FAIL;
3925
3926 if ((*arg)[0] == '?')
3927 {
3928 result = FALSE;
3929 if (evaluate)
3930 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003931 int error = FALSE;
3932
3933 if (get_tv_number_chk(rettv, &error) != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003934 result = TRUE;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003935 clear_tv(rettv);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003936 if (error)
3937 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003938 }
3939
3940 /*
3941 * Get the second variable.
3942 */
3943 *arg = skipwhite(*arg + 1);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003944 if (eval1(arg, rettv, evaluate && result) == FAIL) /* recursive! */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003945 return FAIL;
3946
3947 /*
3948 * Check for the ":".
3949 */
3950 if ((*arg)[0] != ':')
3951 {
3952 EMSG(_("E109: Missing ':' after '?'"));
3953 if (evaluate && result)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003954 clear_tv(rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003955 return FAIL;
3956 }
3957
3958 /*
3959 * Get the third variable.
3960 */
3961 *arg = skipwhite(*arg + 1);
3962 if (eval1(arg, &var2, evaluate && !result) == FAIL) /* recursive! */
3963 {
3964 if (evaluate && result)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003965 clear_tv(rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003966 return FAIL;
3967 }
3968 if (evaluate && !result)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003969 *rettv = var2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003970 }
3971
3972 return OK;
3973}
3974
3975/*
3976 * Handle first level expression:
3977 * expr2 || expr2 || expr2 logical OR
3978 *
3979 * "arg" must point to the first non-white of the expression.
3980 * "arg" is advanced to the next non-white after the recognized expression.
3981 *
3982 * Return OK or FAIL.
3983 */
3984 static int
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003985eval2(arg, rettv, evaluate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003986 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00003987 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003988 int evaluate;
3989{
Bram Moolenaar33570922005-01-25 22:26:29 +00003990 typval_T var2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003991 long result;
3992 int first;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003993 int error = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003994
3995 /*
3996 * Get the first variable.
3997 */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003998 if (eval3(arg, rettv, evaluate) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003999 return FAIL;
4000
4001 /*
4002 * Repeat until there is no following "||".
4003 */
4004 first = TRUE;
4005 result = FALSE;
4006 while ((*arg)[0] == '|' && (*arg)[1] == '|')
4007 {
4008 if (evaluate && first)
4009 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004010 if (get_tv_number_chk(rettv, &error) != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004011 result = TRUE;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004012 clear_tv(rettv);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004013 if (error)
4014 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004015 first = FALSE;
4016 }
4017
4018 /*
4019 * Get the second variable.
4020 */
4021 *arg = skipwhite(*arg + 2);
4022 if (eval3(arg, &var2, evaluate && !result) == FAIL)
4023 return FAIL;
4024
4025 /*
4026 * Compute the result.
4027 */
4028 if (evaluate && !result)
4029 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004030 if (get_tv_number_chk(&var2, &error) != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004031 result = TRUE;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004032 clear_tv(&var2);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004033 if (error)
4034 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004035 }
4036 if (evaluate)
4037 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004038 rettv->v_type = VAR_NUMBER;
4039 rettv->vval.v_number = result;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004040 }
4041 }
4042
4043 return OK;
4044}
4045
4046/*
4047 * Handle second level expression:
4048 * expr3 && expr3 && expr3 logical AND
4049 *
4050 * "arg" must point to the first non-white of the expression.
4051 * "arg" is advanced to the next non-white after the recognized expression.
4052 *
4053 * Return OK or FAIL.
4054 */
4055 static int
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004056eval3(arg, rettv, evaluate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004057 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00004058 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004059 int evaluate;
4060{
Bram Moolenaar33570922005-01-25 22:26:29 +00004061 typval_T var2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004062 long result;
4063 int first;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004064 int error = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004065
4066 /*
4067 * Get the first variable.
4068 */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004069 if (eval4(arg, rettv, evaluate) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004070 return FAIL;
4071
4072 /*
4073 * Repeat until there is no following "&&".
4074 */
4075 first = TRUE;
4076 result = TRUE;
4077 while ((*arg)[0] == '&' && (*arg)[1] == '&')
4078 {
4079 if (evaluate && first)
4080 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004081 if (get_tv_number_chk(rettv, &error) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004082 result = FALSE;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004083 clear_tv(rettv);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004084 if (error)
4085 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004086 first = FALSE;
4087 }
4088
4089 /*
4090 * Get the second variable.
4091 */
4092 *arg = skipwhite(*arg + 2);
4093 if (eval4(arg, &var2, evaluate && result) == FAIL)
4094 return FAIL;
4095
4096 /*
4097 * Compute the result.
4098 */
4099 if (evaluate && result)
4100 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004101 if (get_tv_number_chk(&var2, &error) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004102 result = FALSE;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004103 clear_tv(&var2);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004104 if (error)
4105 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004106 }
4107 if (evaluate)
4108 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004109 rettv->v_type = VAR_NUMBER;
4110 rettv->vval.v_number = result;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004111 }
4112 }
4113
4114 return OK;
4115}
4116
4117/*
4118 * Handle third level expression:
4119 * var1 == var2
4120 * var1 =~ var2
4121 * var1 != var2
4122 * var1 !~ var2
4123 * var1 > var2
4124 * var1 >= var2
4125 * var1 < var2
4126 * var1 <= var2
Bram Moolenaar8a283e52005-01-06 23:28:25 +00004127 * var1 is var2
4128 * var1 isnot var2
Bram Moolenaar071d4272004-06-13 20:20:40 +00004129 *
4130 * "arg" must point to the first non-white of the expression.
4131 * "arg" is advanced to the next non-white after the recognized expression.
4132 *
4133 * Return OK or FAIL.
4134 */
4135 static int
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004136eval4(arg, rettv, evaluate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004137 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00004138 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004139 int evaluate;
4140{
Bram Moolenaar33570922005-01-25 22:26:29 +00004141 typval_T var2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004142 char_u *p;
4143 int i;
4144 exptype_T type = TYPE_UNKNOWN;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00004145 int type_is = FALSE; /* TRUE for "is" and "isnot" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004146 int len = 2;
4147 long n1, n2;
4148 char_u *s1, *s2;
4149 char_u buf1[NUMBUFLEN], buf2[NUMBUFLEN];
4150 regmatch_T regmatch;
4151 int ic;
4152 char_u *save_cpo;
4153
4154 /*
4155 * Get the first variable.
4156 */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004157 if (eval5(arg, rettv, evaluate) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004158 return FAIL;
4159
4160 p = *arg;
4161 switch (p[0])
4162 {
4163 case '=': if (p[1] == '=')
4164 type = TYPE_EQUAL;
4165 else if (p[1] == '~')
4166 type = TYPE_MATCH;
4167 break;
4168 case '!': if (p[1] == '=')
4169 type = TYPE_NEQUAL;
4170 else if (p[1] == '~')
4171 type = TYPE_NOMATCH;
4172 break;
4173 case '>': if (p[1] != '=')
4174 {
4175 type = TYPE_GREATER;
4176 len = 1;
4177 }
4178 else
4179 type = TYPE_GEQUAL;
4180 break;
4181 case '<': if (p[1] != '=')
4182 {
4183 type = TYPE_SMALLER;
4184 len = 1;
4185 }
4186 else
4187 type = TYPE_SEQUAL;
4188 break;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00004189 case 'i': if (p[1] == 's')
4190 {
4191 if (p[2] == 'n' && p[3] == 'o' && p[4] == 't')
4192 len = 5;
4193 if (!vim_isIDc(p[len]))
4194 {
4195 type = len == 2 ? TYPE_EQUAL : TYPE_NEQUAL;
4196 type_is = TRUE;
4197 }
4198 }
4199 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004200 }
4201
4202 /*
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004203 * If there is a comparative operator, use it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004204 */
4205 if (type != TYPE_UNKNOWN)
4206 {
4207 /* extra question mark appended: ignore case */
4208 if (p[len] == '?')
4209 {
4210 ic = TRUE;
4211 ++len;
4212 }
4213 /* extra '#' appended: match case */
4214 else if (p[len] == '#')
4215 {
4216 ic = FALSE;
4217 ++len;
4218 }
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004219 /* nothing appended: use 'ignorecase' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004220 else
4221 ic = p_ic;
4222
4223 /*
4224 * Get the second variable.
4225 */
4226 *arg = skipwhite(p + len);
4227 if (eval5(arg, &var2, evaluate) == FAIL)
4228 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004229 clear_tv(rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004230 return FAIL;
4231 }
4232
4233 if (evaluate)
4234 {
Bram Moolenaar8a283e52005-01-06 23:28:25 +00004235 if (type_is && rettv->v_type != var2.v_type)
4236 {
4237 /* For "is" a different type always means FALSE, for "notis"
4238 * it means TRUE. */
4239 n1 = (type == TYPE_NEQUAL);
4240 }
4241 else if (rettv->v_type == VAR_LIST || var2.v_type == VAR_LIST)
4242 {
4243 if (type_is)
4244 {
4245 n1 = (rettv->v_type == var2.v_type
4246 && rettv->vval.v_list == var2.vval.v_list);
4247 if (type == TYPE_NEQUAL)
4248 n1 = !n1;
4249 }
4250 else if (rettv->v_type != var2.v_type
4251 || (type != TYPE_EQUAL && type != TYPE_NEQUAL))
4252 {
4253 if (rettv->v_type != var2.v_type)
Bram Moolenaare49b69a2005-01-08 16:11:57 +00004254 EMSG(_("E691: Can only compare List with List"));
Bram Moolenaar8a283e52005-01-06 23:28:25 +00004255 else
Bram Moolenaare49b69a2005-01-08 16:11:57 +00004256 EMSG(_("E692: Invalid operation for Lists"));
Bram Moolenaar8a283e52005-01-06 23:28:25 +00004257 clear_tv(rettv);
4258 clear_tv(&var2);
4259 return FAIL;
4260 }
4261 else
4262 {
4263 /* Compare two Lists for being equal or unequal. */
4264 n1 = list_equal(rettv->vval.v_list, var2.vval.v_list, ic);
4265 if (type == TYPE_NEQUAL)
4266 n1 = !n1;
4267 }
4268 }
4269
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00004270 else if (rettv->v_type == VAR_DICT || var2.v_type == VAR_DICT)
4271 {
4272 if (type_is)
4273 {
4274 n1 = (rettv->v_type == var2.v_type
4275 && rettv->vval.v_dict == var2.vval.v_dict);
4276 if (type == TYPE_NEQUAL)
4277 n1 = !n1;
4278 }
4279 else if (rettv->v_type != var2.v_type
4280 || (type != TYPE_EQUAL && type != TYPE_NEQUAL))
4281 {
4282 if (rettv->v_type != var2.v_type)
4283 EMSG(_("E735: Can only compare Dictionary with Dictionary"));
4284 else
4285 EMSG(_("E736: Invalid operation for Dictionary"));
4286 clear_tv(rettv);
4287 clear_tv(&var2);
4288 return FAIL;
4289 }
4290 else
4291 {
4292 /* Compare two Dictionaries for being equal or unequal. */
4293 n1 = dict_equal(rettv->vval.v_dict, var2.vval.v_dict, ic);
4294 if (type == TYPE_NEQUAL)
4295 n1 = !n1;
4296 }
4297 }
4298
Bram Moolenaar8a283e52005-01-06 23:28:25 +00004299 else if (rettv->v_type == VAR_FUNC || var2.v_type == VAR_FUNC)
4300 {
4301 if (rettv->v_type != var2.v_type
4302 || (type != TYPE_EQUAL && type != TYPE_NEQUAL))
4303 {
4304 if (rettv->v_type != var2.v_type)
Bram Moolenaare49b69a2005-01-08 16:11:57 +00004305 EMSG(_("E693: Can only compare Funcref with Funcref"));
Bram Moolenaar8a283e52005-01-06 23:28:25 +00004306 else
Bram Moolenaare49b69a2005-01-08 16:11:57 +00004307 EMSG(_("E694: Invalid operation for Funcrefs"));
Bram Moolenaar8a283e52005-01-06 23:28:25 +00004308 clear_tv(rettv);
4309 clear_tv(&var2);
4310 return FAIL;
4311 }
4312 else
4313 {
4314 /* Compare two Funcrefs for being equal or unequal. */
4315 if (rettv->vval.v_string == NULL
4316 || var2.vval.v_string == NULL)
4317 n1 = FALSE;
4318 else
4319 n1 = STRCMP(rettv->vval.v_string,
4320 var2.vval.v_string) == 0;
4321 if (type == TYPE_NEQUAL)
4322 n1 = !n1;
4323 }
4324 }
4325
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004326#ifdef FEAT_FLOAT
4327 /*
4328 * If one of the two variables is a float, compare as a float.
4329 * When using "=~" or "!~", always compare as string.
4330 */
4331 else if ((rettv->v_type == VAR_FLOAT || var2.v_type == VAR_FLOAT)
4332 && type != TYPE_MATCH && type != TYPE_NOMATCH)
4333 {
4334 float_T f1, f2;
4335
4336 if (rettv->v_type == VAR_FLOAT)
4337 f1 = rettv->vval.v_float;
4338 else
4339 f1 = get_tv_number(rettv);
4340 if (var2.v_type == VAR_FLOAT)
4341 f2 = var2.vval.v_float;
4342 else
4343 f2 = get_tv_number(&var2);
4344 n1 = FALSE;
4345 switch (type)
4346 {
4347 case TYPE_EQUAL: n1 = (f1 == f2); break;
4348 case TYPE_NEQUAL: n1 = (f1 != f2); break;
4349 case TYPE_GREATER: n1 = (f1 > f2); break;
4350 case TYPE_GEQUAL: n1 = (f1 >= f2); break;
4351 case TYPE_SMALLER: n1 = (f1 < f2); break;
4352 case TYPE_SEQUAL: n1 = (f1 <= f2); break;
4353 case TYPE_UNKNOWN:
4354 case TYPE_MATCH:
4355 case TYPE_NOMATCH: break; /* avoid gcc warning */
4356 }
4357 }
4358#endif
4359
Bram Moolenaar071d4272004-06-13 20:20:40 +00004360 /*
4361 * If one of the two variables is a number, compare as a number.
4362 * When using "=~" or "!~", always compare as string.
4363 */
Bram Moolenaar8a283e52005-01-06 23:28:25 +00004364 else if ((rettv->v_type == VAR_NUMBER || var2.v_type == VAR_NUMBER)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004365 && type != TYPE_MATCH && type != TYPE_NOMATCH)
4366 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004367 n1 = get_tv_number(rettv);
4368 n2 = get_tv_number(&var2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004369 switch (type)
4370 {
4371 case TYPE_EQUAL: n1 = (n1 == n2); break;
4372 case TYPE_NEQUAL: n1 = (n1 != n2); break;
4373 case TYPE_GREATER: n1 = (n1 > n2); break;
4374 case TYPE_GEQUAL: n1 = (n1 >= n2); break;
4375 case TYPE_SMALLER: n1 = (n1 < n2); break;
4376 case TYPE_SEQUAL: n1 = (n1 <= n2); break;
4377 case TYPE_UNKNOWN:
4378 case TYPE_MATCH:
4379 case TYPE_NOMATCH: break; /* avoid gcc warning */
4380 }
4381 }
4382 else
4383 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004384 s1 = get_tv_string_buf(rettv, buf1);
4385 s2 = get_tv_string_buf(&var2, buf2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004386 if (type != TYPE_MATCH && type != TYPE_NOMATCH)
4387 i = ic ? MB_STRICMP(s1, s2) : STRCMP(s1, s2);
4388 else
4389 i = 0;
4390 n1 = FALSE;
4391 switch (type)
4392 {
4393 case TYPE_EQUAL: n1 = (i == 0); break;
4394 case TYPE_NEQUAL: n1 = (i != 0); break;
4395 case TYPE_GREATER: n1 = (i > 0); break;
4396 case TYPE_GEQUAL: n1 = (i >= 0); break;
4397 case TYPE_SMALLER: n1 = (i < 0); break;
4398 case TYPE_SEQUAL: n1 = (i <= 0); break;
4399
4400 case TYPE_MATCH:
4401 case TYPE_NOMATCH:
4402 /* avoid 'l' flag in 'cpoptions' */
4403 save_cpo = p_cpo;
4404 p_cpo = (char_u *)"";
4405 regmatch.regprog = vim_regcomp(s2,
4406 RE_MAGIC + RE_STRING);
4407 regmatch.rm_ic = ic;
4408 if (regmatch.regprog != NULL)
4409 {
4410 n1 = vim_regexec_nl(&regmatch, s1, (colnr_T)0);
4411 vim_free(regmatch.regprog);
4412 if (type == TYPE_NOMATCH)
4413 n1 = !n1;
4414 }
4415 p_cpo = save_cpo;
4416 break;
4417
4418 case TYPE_UNKNOWN: break; /* avoid gcc warning */
4419 }
4420 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004421 clear_tv(rettv);
4422 clear_tv(&var2);
4423 rettv->v_type = VAR_NUMBER;
4424 rettv->vval.v_number = n1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004425 }
4426 }
4427
4428 return OK;
4429}
4430
4431/*
4432 * Handle fourth level expression:
4433 * + number addition
4434 * - number subtraction
4435 * . string concatenation
4436 *
4437 * "arg" must point to the first non-white of the expression.
4438 * "arg" is advanced to the next non-white after the recognized expression.
4439 *
4440 * Return OK or FAIL.
4441 */
4442 static int
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004443eval5(arg, rettv, evaluate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004444 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00004445 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004446 int evaluate;
4447{
Bram Moolenaar33570922005-01-25 22:26:29 +00004448 typval_T var2;
4449 typval_T var3;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004450 int op;
4451 long n1, n2;
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004452#ifdef FEAT_FLOAT
4453 float_T f1 = 0, f2 = 0;
4454#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004455 char_u *s1, *s2;
4456 char_u buf1[NUMBUFLEN], buf2[NUMBUFLEN];
4457 char_u *p;
4458
4459 /*
4460 * Get the first variable.
4461 */
Bram Moolenaar8d00f9c2008-06-28 13:09:56 +00004462 if (eval6(arg, rettv, evaluate, FALSE) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004463 return FAIL;
4464
4465 /*
4466 * Repeat computing, until no '+', '-' or '.' is following.
4467 */
4468 for (;;)
4469 {
4470 op = **arg;
4471 if (op != '+' && op != '-' && op != '.')
4472 break;
4473
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004474 if ((op != '+' || rettv->v_type != VAR_LIST)
4475#ifdef FEAT_FLOAT
4476 && (op == '.' || rettv->v_type != VAR_FLOAT)
4477#endif
4478 )
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004479 {
4480 /* For "list + ...", an illegal use of the first operand as
4481 * a number cannot be determined before evaluating the 2nd
4482 * operand: if this is also a list, all is ok.
4483 * For "something . ...", "something - ..." or "non-list + ...",
4484 * we know that the first operand needs to be a string or number
4485 * without evaluating the 2nd operand. So check before to avoid
4486 * side effects after an error. */
4487 if (evaluate && get_tv_string_chk(rettv) == NULL)
4488 {
4489 clear_tv(rettv);
4490 return FAIL;
4491 }
4492 }
4493
Bram Moolenaar071d4272004-06-13 20:20:40 +00004494 /*
4495 * Get the second variable.
4496 */
4497 *arg = skipwhite(*arg + 1);
Bram Moolenaar8d00f9c2008-06-28 13:09:56 +00004498 if (eval6(arg, &var2, evaluate, op == '.') == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004499 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004500 clear_tv(rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004501 return FAIL;
4502 }
4503
4504 if (evaluate)
4505 {
4506 /*
4507 * Compute the result.
4508 */
4509 if (op == '.')
4510 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004511 s1 = get_tv_string_buf(rettv, buf1); /* already checked */
4512 s2 = get_tv_string_buf_chk(&var2, buf2);
4513 if (s2 == NULL) /* type error ? */
4514 {
4515 clear_tv(rettv);
4516 clear_tv(&var2);
4517 return FAIL;
4518 }
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00004519 p = concat_str(s1, s2);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004520 clear_tv(rettv);
4521 rettv->v_type = VAR_STRING;
4522 rettv->vval.v_string = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004523 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00004524 else if (op == '+' && rettv->v_type == VAR_LIST
4525 && var2.v_type == VAR_LIST)
Bram Moolenaar8a283e52005-01-06 23:28:25 +00004526 {
4527 /* concatenate Lists */
4528 if (list_concat(rettv->vval.v_list, var2.vval.v_list,
4529 &var3) == FAIL)
4530 {
4531 clear_tv(rettv);
4532 clear_tv(&var2);
4533 return FAIL;
4534 }
4535 clear_tv(rettv);
4536 *rettv = var3;
4537 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004538 else
4539 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004540 int error = FALSE;
4541
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004542#ifdef FEAT_FLOAT
4543 if (rettv->v_type == VAR_FLOAT)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004544 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004545 f1 = rettv->vval.v_float;
4546 n1 = 0;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004547 }
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004548 else
4549#endif
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004550 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004551 n1 = get_tv_number_chk(rettv, &error);
4552 if (error)
4553 {
4554 /* This can only happen for "list + non-list". For
4555 * "non-list + ..." or "something - ...", we returned
4556 * before evaluating the 2nd operand. */
4557 clear_tv(rettv);
4558 return FAIL;
4559 }
4560#ifdef FEAT_FLOAT
4561 if (var2.v_type == VAR_FLOAT)
4562 f1 = n1;
4563#endif
4564 }
4565#ifdef FEAT_FLOAT
4566 if (var2.v_type == VAR_FLOAT)
4567 {
4568 f2 = var2.vval.v_float;
4569 n2 = 0;
4570 }
4571 else
4572#endif
4573 {
4574 n2 = get_tv_number_chk(&var2, &error);
4575 if (error)
4576 {
4577 clear_tv(rettv);
4578 clear_tv(&var2);
4579 return FAIL;
4580 }
4581#ifdef FEAT_FLOAT
4582 if (rettv->v_type == VAR_FLOAT)
4583 f2 = n2;
4584#endif
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004585 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004586 clear_tv(rettv);
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004587
4588#ifdef FEAT_FLOAT
4589 /* If there is a float on either side the result is a float. */
4590 if (rettv->v_type == VAR_FLOAT || var2.v_type == VAR_FLOAT)
4591 {
4592 if (op == '+')
4593 f1 = f1 + f2;
4594 else
4595 f1 = f1 - f2;
4596 rettv->v_type = VAR_FLOAT;
4597 rettv->vval.v_float = f1;
4598 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004599 else
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004600#endif
4601 {
4602 if (op == '+')
4603 n1 = n1 + n2;
4604 else
4605 n1 = n1 - n2;
4606 rettv->v_type = VAR_NUMBER;
4607 rettv->vval.v_number = n1;
4608 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004609 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004610 clear_tv(&var2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004611 }
4612 }
4613 return OK;
4614}
4615
4616/*
4617 * Handle fifth level expression:
4618 * * number multiplication
4619 * / number division
4620 * % number modulo
4621 *
4622 * "arg" must point to the first non-white of the expression.
4623 * "arg" is advanced to the next non-white after the recognized expression.
4624 *
4625 * Return OK or FAIL.
4626 */
4627 static int
Bram Moolenaar8d00f9c2008-06-28 13:09:56 +00004628eval6(arg, rettv, evaluate, want_string)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004629 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00004630 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004631 int evaluate;
Bram Moolenaar8d00f9c2008-06-28 13:09:56 +00004632 int want_string; /* after "." operator */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004633{
Bram Moolenaar33570922005-01-25 22:26:29 +00004634 typval_T var2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004635 int op;
4636 long n1, n2;
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004637#ifdef FEAT_FLOAT
4638 int use_float = FALSE;
4639 float_T f1 = 0, f2;
4640#endif
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004641 int error = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004642
4643 /*
4644 * Get the first variable.
4645 */
Bram Moolenaar8d00f9c2008-06-28 13:09:56 +00004646 if (eval7(arg, rettv, evaluate, want_string) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004647 return FAIL;
4648
4649 /*
4650 * Repeat computing, until no '*', '/' or '%' is following.
4651 */
4652 for (;;)
4653 {
4654 op = **arg;
4655 if (op != '*' && op != '/' && op != '%')
4656 break;
4657
4658 if (evaluate)
4659 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004660#ifdef FEAT_FLOAT
4661 if (rettv->v_type == VAR_FLOAT)
4662 {
4663 f1 = rettv->vval.v_float;
4664 use_float = TRUE;
4665 n1 = 0;
4666 }
4667 else
4668#endif
4669 n1 = get_tv_number_chk(rettv, &error);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004670 clear_tv(rettv);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004671 if (error)
4672 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004673 }
4674 else
4675 n1 = 0;
4676
4677 /*
4678 * Get the second variable.
4679 */
4680 *arg = skipwhite(*arg + 1);
Bram Moolenaar8d00f9c2008-06-28 13:09:56 +00004681 if (eval7(arg, &var2, evaluate, FALSE) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004682 return FAIL;
4683
4684 if (evaluate)
4685 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004686#ifdef FEAT_FLOAT
4687 if (var2.v_type == VAR_FLOAT)
4688 {
4689 if (!use_float)
4690 {
4691 f1 = n1;
4692 use_float = TRUE;
4693 }
4694 f2 = var2.vval.v_float;
4695 n2 = 0;
4696 }
4697 else
4698#endif
4699 {
4700 n2 = get_tv_number_chk(&var2, &error);
4701 clear_tv(&var2);
4702 if (error)
4703 return FAIL;
4704#ifdef FEAT_FLOAT
4705 if (use_float)
4706 f2 = n2;
4707#endif
4708 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004709
4710 /*
4711 * Compute the result.
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004712 * When either side is a float the result is a float.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004713 */
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004714#ifdef FEAT_FLOAT
4715 if (use_float)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004716 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004717 if (op == '*')
4718 f1 = f1 * f2;
4719 else if (op == '/')
4720 {
4721 /* We rely on the floating point library to handle divide
4722 * by zero to result in "inf" and not a crash. */
4723 f1 = f1 / f2;
4724 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004725 else
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004726 {
4727 EMSG(_("E804: Cannot use % with float"));
4728 return FAIL;
4729 }
4730 rettv->v_type = VAR_FLOAT;
4731 rettv->vval.v_float = f1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004732 }
4733 else
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004734#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004735 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004736 if (op == '*')
4737 n1 = n1 * n2;
4738 else if (op == '/')
4739 {
4740 if (n2 == 0) /* give an error message? */
4741 {
4742 if (n1 == 0)
4743 n1 = -0x7fffffffL - 1L; /* similar to NaN */
4744 else if (n1 < 0)
4745 n1 = -0x7fffffffL;
4746 else
4747 n1 = 0x7fffffffL;
4748 }
4749 else
4750 n1 = n1 / n2;
4751 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004752 else
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004753 {
4754 if (n2 == 0) /* give an error message? */
4755 n1 = 0;
4756 else
4757 n1 = n1 % n2;
4758 }
4759 rettv->v_type = VAR_NUMBER;
4760 rettv->vval.v_number = n1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004761 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004762 }
4763 }
4764
4765 return OK;
4766}
4767
4768/*
4769 * Handle sixth level expression:
4770 * number number constant
Bram Moolenaarbae0c162007-05-10 19:30:25 +00004771 * "string" string constant
4772 * 'string' literal string constant
Bram Moolenaar071d4272004-06-13 20:20:40 +00004773 * &option-name option value
4774 * @r register contents
4775 * identifier variable value
4776 * function() function call
4777 * $VAR environment variable
4778 * (expression) nested expression
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00004779 * [expr, expr] List
4780 * {key: val, key: val} Dictionary
Bram Moolenaar071d4272004-06-13 20:20:40 +00004781 *
4782 * Also handle:
4783 * ! in front logical NOT
4784 * - in front unary minus
4785 * + in front unary plus (ignored)
Bram Moolenaar8c711452005-01-14 21:53:12 +00004786 * trailing [] subscript in String or List
4787 * trailing .name entry in Dictionary
Bram Moolenaar071d4272004-06-13 20:20:40 +00004788 *
4789 * "arg" must point to the first non-white of the expression.
4790 * "arg" is advanced to the next non-white after the recognized expression.
4791 *
4792 * Return OK or FAIL.
4793 */
4794 static int
Bram Moolenaar8d00f9c2008-06-28 13:09:56 +00004795eval7(arg, rettv, evaluate, want_string)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004796 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00004797 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004798 int evaluate;
Bram Moolenaar8d00f9c2008-06-28 13:09:56 +00004799 int want_string; /* after "." operator */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004800{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004801 long n;
4802 int len;
4803 char_u *s;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004804 char_u *start_leader, *end_leader;
4805 int ret = OK;
4806 char_u *alias;
4807
4808 /*
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004809 * Initialise variable so that clear_tv() can't mistake this for a
Bram Moolenaar49cd9572005-01-03 21:06:01 +00004810 * string and free a string that isn't there.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004811 */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004812 rettv->v_type = VAR_UNKNOWN;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004813
4814 /*
4815 * Skip '!' and '-' characters. They are handled later.
4816 */
4817 start_leader = *arg;
4818 while (**arg == '!' || **arg == '-' || **arg == '+')
4819 *arg = skipwhite(*arg + 1);
4820 end_leader = *arg;
4821
4822 switch (**arg)
4823 {
4824 /*
4825 * Number constant.
4826 */
4827 case '0':
4828 case '1':
4829 case '2':
4830 case '3':
4831 case '4':
4832 case '5':
4833 case '6':
4834 case '7':
4835 case '8':
4836 case '9':
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004837 {
4838#ifdef FEAT_FLOAT
4839 char_u *p = skipdigits(*arg + 1);
4840 int get_float = FALSE;
4841
4842 /* We accept a float when the format matches
4843 * "[0-9]\+\.[0-9]\+\([eE][+-]\?[0-9]\+\)\?". This is very
Bram Moolenaar8d00f9c2008-06-28 13:09:56 +00004844 * strict to avoid backwards compatibility problems.
4845 * Don't look for a float after the "." operator, so that
4846 * ":let vers = 1.2.3" doesn't fail. */
4847 if (!want_string && p[0] == '.' && vim_isdigit(p[1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004848 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004849 get_float = TRUE;
4850 p = skipdigits(p + 2);
4851 if (*p == 'e' || *p == 'E')
4852 {
4853 ++p;
4854 if (*p == '-' || *p == '+')
4855 ++p;
4856 if (!vim_isdigit(*p))
4857 get_float = FALSE;
4858 else
4859 p = skipdigits(p + 1);
4860 }
4861 if (ASCII_ISALPHA(*p) || *p == '.')
4862 get_float = FALSE;
4863 }
4864 if (get_float)
4865 {
4866 float_T f;
4867
4868 *arg += string2float(*arg, &f);
4869 if (evaluate)
4870 {
4871 rettv->v_type = VAR_FLOAT;
4872 rettv->vval.v_float = f;
4873 }
4874 }
4875 else
4876#endif
4877 {
4878 vim_str2nr(*arg, NULL, &len, TRUE, TRUE, &n, NULL);
4879 *arg += len;
4880 if (evaluate)
4881 {
4882 rettv->v_type = VAR_NUMBER;
4883 rettv->vval.v_number = n;
4884 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004885 }
4886 break;
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004887 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004888
4889 /*
4890 * String constant: "string".
4891 */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004892 case '"': ret = get_string_tv(arg, rettv, evaluate);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004893 break;
4894
4895 /*
Bram Moolenaar8c711452005-01-14 21:53:12 +00004896 * Literal string constant: 'str''ing'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004897 */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004898 case '\'': ret = get_lit_string_tv(arg, rettv, evaluate);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00004899 break;
4900
4901 /*
4902 * List: [expr, expr]
4903 */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004904 case '[': ret = get_list_tv(arg, rettv, evaluate);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004905 break;
4906
4907 /*
Bram Moolenaar8c711452005-01-14 21:53:12 +00004908 * Dictionary: {key: val, key: val}
4909 */
4910 case '{': ret = get_dict_tv(arg, rettv, evaluate);
4911 break;
4912
4913 /*
Bram Moolenaare9a41262005-01-15 22:18:47 +00004914 * Option value: &name
Bram Moolenaar071d4272004-06-13 20:20:40 +00004915 */
Bram Moolenaare9a41262005-01-15 22:18:47 +00004916 case '&': ret = get_option_tv(arg, rettv, evaluate);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004917 break;
4918
4919 /*
4920 * Environment variable: $VAR.
4921 */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004922 case '$': ret = get_env_tv(arg, rettv, evaluate);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004923 break;
4924
4925 /*
4926 * Register contents: @r.
4927 */
4928 case '@': ++*arg;
4929 if (evaluate)
4930 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004931 rettv->v_type = VAR_STRING;
Bram Moolenaar92124a32005-06-17 22:03:40 +00004932 rettv->vval.v_string = get_reg_contents(**arg, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004933 }
4934 if (**arg != NUL)
4935 ++*arg;
4936 break;
4937
4938 /*
4939 * nested expression: (expression).
4940 */
4941 case '(': *arg = skipwhite(*arg + 1);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004942 ret = eval1(arg, rettv, evaluate); /* recursive! */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004943 if (**arg == ')')
4944 ++*arg;
4945 else if (ret == OK)
4946 {
4947 EMSG(_("E110: Missing ')'"));
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004948 clear_tv(rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004949 ret = FAIL;
4950 }
4951 break;
4952
Bram Moolenaar8c711452005-01-14 21:53:12 +00004953 default: ret = NOTDONE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004954 break;
4955 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00004956
4957 if (ret == NOTDONE)
4958 {
4959 /*
4960 * Must be a variable or function name.
4961 * Can also be a curly-braces kind of name: {expr}.
4962 */
4963 s = *arg;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00004964 len = get_name_len(arg, &alias, evaluate, TRUE);
Bram Moolenaar8c711452005-01-14 21:53:12 +00004965 if (alias != NULL)
4966 s = alias;
4967
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00004968 if (len <= 0)
Bram Moolenaar8c711452005-01-14 21:53:12 +00004969 ret = FAIL;
4970 else
4971 {
4972 if (**arg == '(') /* recursive! */
4973 {
4974 /* If "s" is the name of a variable of type VAR_FUNC
4975 * use its contents. */
4976 s = deref_func_name(s, &len);
4977
4978 /* Invoke the function. */
4979 ret = get_func_tv(s, len, rettv, arg,
4980 curwin->w_cursor.lnum, curwin->w_cursor.lnum,
Bram Moolenaare9a41262005-01-15 22:18:47 +00004981 &len, evaluate, NULL);
Bram Moolenaar8c711452005-01-14 21:53:12 +00004982 /* Stop the expression evaluation when immediately
4983 * aborting on error, or when an interrupt occurred or
4984 * an exception was thrown but not caught. */
4985 if (aborting())
4986 {
4987 if (ret == OK)
4988 clear_tv(rettv);
4989 ret = FAIL;
4990 }
4991 }
4992 else if (evaluate)
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00004993 ret = get_var_tv(s, len, rettv, TRUE);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00004994 else
4995 ret = OK;
Bram Moolenaar8c711452005-01-14 21:53:12 +00004996 }
4997
4998 if (alias != NULL)
4999 vim_free(alias);
5000 }
5001
Bram Moolenaar071d4272004-06-13 20:20:40 +00005002 *arg = skipwhite(*arg);
5003
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00005004 /* Handle following '[', '(' and '.' for expr[expr], expr.name,
5005 * expr(expr). */
5006 if (ret == OK)
5007 ret = handle_subscript(arg, rettv, evaluate, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005008
5009 /*
5010 * Apply logical NOT and unary '-', from right to left, ignore '+'.
5011 */
5012 if (ret == OK && evaluate && end_leader > start_leader)
5013 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005014 int error = FALSE;
Bram Moolenaar8c8de832008-06-24 22:58:06 +00005015 int val = 0;
5016#ifdef FEAT_FLOAT
5017 float_T f = 0.0;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005018
Bram Moolenaar8c8de832008-06-24 22:58:06 +00005019 if (rettv->v_type == VAR_FLOAT)
5020 f = rettv->vval.v_float;
5021 else
5022#endif
5023 val = get_tv_number_chk(rettv, &error);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005024 if (error)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005025 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005026 clear_tv(rettv);
5027 ret = FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005028 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005029 else
5030 {
5031 while (end_leader > start_leader)
5032 {
5033 --end_leader;
5034 if (*end_leader == '!')
Bram Moolenaar8c8de832008-06-24 22:58:06 +00005035 {
5036#ifdef FEAT_FLOAT
5037 if (rettv->v_type == VAR_FLOAT)
5038 f = !f;
5039 else
5040#endif
5041 val = !val;
5042 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005043 else if (*end_leader == '-')
Bram Moolenaar8c8de832008-06-24 22:58:06 +00005044 {
5045#ifdef FEAT_FLOAT
5046 if (rettv->v_type == VAR_FLOAT)
5047 f = -f;
5048 else
5049#endif
5050 val = -val;
5051 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005052 }
Bram Moolenaar8c8de832008-06-24 22:58:06 +00005053#ifdef FEAT_FLOAT
5054 if (rettv->v_type == VAR_FLOAT)
5055 {
5056 clear_tv(rettv);
5057 rettv->vval.v_float = f;
5058 }
5059 else
5060#endif
5061 {
5062 clear_tv(rettv);
5063 rettv->v_type = VAR_NUMBER;
5064 rettv->vval.v_number = val;
5065 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005066 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005067 }
5068
5069 return ret;
5070}
5071
5072/*
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00005073 * Evaluate an "[expr]" or "[expr:expr]" index. Also "dict.key".
5074 * "*arg" points to the '[' or '.'.
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005075 * Returns FAIL or OK. "*arg" is advanced to after the ']'.
5076 */
5077 static int
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00005078eval_index(arg, rettv, evaluate, verbose)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005079 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00005080 typval_T *rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005081 int evaluate;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00005082 int verbose; /* give error messages */
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005083{
5084 int empty1 = FALSE, empty2 = FALSE;
Bram Moolenaar33570922005-01-25 22:26:29 +00005085 typval_T var1, var2;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005086 long n1, n2 = 0;
Bram Moolenaar8c711452005-01-14 21:53:12 +00005087 long len = -1;
5088 int range = FALSE;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005089 char_u *s;
Bram Moolenaar8c711452005-01-14 21:53:12 +00005090 char_u *key = NULL;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005091
Bram Moolenaar8c8de832008-06-24 22:58:06 +00005092 if (rettv->v_type == VAR_FUNC
5093#ifdef FEAT_FLOAT
5094 || rettv->v_type == VAR_FLOAT
5095#endif
5096 )
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005097 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00005098 if (verbose)
5099 EMSG(_("E695: Cannot index a Funcref"));
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005100 return FAIL;
5101 }
5102
Bram Moolenaar8c711452005-01-14 21:53:12 +00005103 if (**arg == '.')
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005104 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005105 /*
5106 * dict.name
5107 */
5108 key = *arg + 1;
5109 for (len = 0; ASCII_ISALNUM(key[len]) || key[len] == '_'; ++len)
5110 ;
5111 if (len == 0)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005112 return FAIL;
Bram Moolenaar8c711452005-01-14 21:53:12 +00005113 *arg = skipwhite(key + len);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005114 }
5115 else
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005116 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005117 /*
5118 * something[idx]
5119 *
5120 * Get the (first) variable from inside the [].
5121 */
5122 *arg = skipwhite(*arg + 1);
5123 if (**arg == ':')
5124 empty1 = TRUE;
5125 else if (eval1(arg, &var1, evaluate) == FAIL) /* recursive! */
5126 return FAIL;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005127 else if (evaluate && get_tv_string_chk(&var1) == NULL)
5128 {
5129 /* not a number or string */
5130 clear_tv(&var1);
5131 return FAIL;
5132 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00005133
5134 /*
5135 * Get the second variable from inside the [:].
5136 */
5137 if (**arg == ':')
5138 {
5139 range = TRUE;
5140 *arg = skipwhite(*arg + 1);
5141 if (**arg == ']')
5142 empty2 = TRUE;
5143 else if (eval1(arg, &var2, evaluate) == FAIL) /* recursive! */
5144 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005145 if (!empty1)
5146 clear_tv(&var1);
5147 return FAIL;
5148 }
5149 else if (evaluate && get_tv_string_chk(&var2) == NULL)
5150 {
5151 /* not a number or string */
5152 if (!empty1)
5153 clear_tv(&var1);
5154 clear_tv(&var2);
Bram Moolenaar8c711452005-01-14 21:53:12 +00005155 return FAIL;
5156 }
5157 }
5158
5159 /* Check for the ']'. */
5160 if (**arg != ']')
5161 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00005162 if (verbose)
5163 EMSG(_(e_missbrac));
Bram Moolenaar8c711452005-01-14 21:53:12 +00005164 clear_tv(&var1);
5165 if (range)
5166 clear_tv(&var2);
5167 return FAIL;
5168 }
5169 *arg = skipwhite(*arg + 1); /* skip the ']' */
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005170 }
5171
5172 if (evaluate)
5173 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005174 n1 = 0;
5175 if (!empty1 && rettv->v_type != VAR_DICT)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005176 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005177 n1 = get_tv_number(&var1);
5178 clear_tv(&var1);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005179 }
5180 if (range)
5181 {
5182 if (empty2)
5183 n2 = -1;
5184 else
5185 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005186 n2 = get_tv_number(&var2);
5187 clear_tv(&var2);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005188 }
5189 }
5190
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005191 switch (rettv->v_type)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005192 {
5193 case VAR_NUMBER:
5194 case VAR_STRING:
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005195 s = get_tv_string(rettv);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005196 len = (long)STRLEN(s);
5197 if (range)
5198 {
5199 /* The resulting variable is a substring. If the indexes
5200 * are out of range the result is empty. */
5201 if (n1 < 0)
5202 {
5203 n1 = len + n1;
5204 if (n1 < 0)
5205 n1 = 0;
5206 }
5207 if (n2 < 0)
5208 n2 = len + n2;
5209 else if (n2 >= len)
5210 n2 = len;
5211 if (n1 >= len || n2 < 0 || n1 > n2)
5212 s = NULL;
5213 else
5214 s = vim_strnsave(s + n1, (int)(n2 - n1 + 1));
5215 }
5216 else
5217 {
5218 /* The resulting variable is a string of a single
5219 * character. If the index is too big or negative the
5220 * result is empty. */
5221 if (n1 >= len || n1 < 0)
5222 s = NULL;
5223 else
5224 s = vim_strnsave(s + n1, 1);
5225 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005226 clear_tv(rettv);
5227 rettv->v_type = VAR_STRING;
5228 rettv->vval.v_string = s;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005229 break;
5230
5231 case VAR_LIST:
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005232 len = list_len(rettv->vval.v_list);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005233 if (n1 < 0)
5234 n1 = len + n1;
5235 if (!empty1 && (n1 < 0 || n1 >= len))
5236 {
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00005237 /* For a range we allow invalid values and return an empty
5238 * list. A list index out of range is an error. */
5239 if (!range)
5240 {
5241 if (verbose)
5242 EMSGN(_(e_listidx), n1);
5243 return FAIL;
5244 }
5245 n1 = len;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005246 }
5247 if (range)
5248 {
Bram Moolenaar33570922005-01-25 22:26:29 +00005249 list_T *l;
5250 listitem_T *item;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005251
5252 if (n2 < 0)
5253 n2 = len + n2;
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00005254 else if (n2 >= len)
5255 n2 = len - 1;
5256 if (!empty2 && (n2 < 0 || n2 + 1 < n1))
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00005257 n2 = -1;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005258 l = list_alloc();
5259 if (l == NULL)
5260 return FAIL;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005261 for (item = list_find(rettv->vval.v_list, n1);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005262 n1 <= n2; ++n1)
5263 {
5264 if (list_append_tv(l, &item->li_tv) == FAIL)
5265 {
Bram Moolenaar685295c2006-10-15 20:37:38 +00005266 list_free(l, TRUE);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005267 return FAIL;
5268 }
5269 item = item->li_next;
5270 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005271 clear_tv(rettv);
5272 rettv->v_type = VAR_LIST;
5273 rettv->vval.v_list = l;
Bram Moolenaar0d660222005-01-07 21:51:51 +00005274 ++l->lv_refcount;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005275 }
5276 else
5277 {
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00005278 copy_tv(&list_find(rettv->vval.v_list, n1)->li_tv, &var1);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005279 clear_tv(rettv);
5280 *rettv = var1;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005281 }
5282 break;
Bram Moolenaar8c711452005-01-14 21:53:12 +00005283
5284 case VAR_DICT:
5285 if (range)
5286 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00005287 if (verbose)
5288 EMSG(_(e_dictrange));
Bram Moolenaar8c711452005-01-14 21:53:12 +00005289 if (len == -1)
5290 clear_tv(&var1);
5291 return FAIL;
5292 }
5293 {
Bram Moolenaar33570922005-01-25 22:26:29 +00005294 dictitem_T *item;
Bram Moolenaar8c711452005-01-14 21:53:12 +00005295
5296 if (len == -1)
5297 {
5298 key = get_tv_string(&var1);
5299 if (*key == NUL)
5300 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00005301 if (verbose)
5302 EMSG(_(e_emptykey));
Bram Moolenaar8c711452005-01-14 21:53:12 +00005303 clear_tv(&var1);
5304 return FAIL;
5305 }
5306 }
5307
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00005308 item = dict_find(rettv->vval.v_dict, key, (int)len);
Bram Moolenaar8c711452005-01-14 21:53:12 +00005309
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00005310 if (item == NULL && verbose)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00005311 EMSG2(_(e_dictkey), key);
Bram Moolenaar8c711452005-01-14 21:53:12 +00005312 if (len == -1)
5313 clear_tv(&var1);
5314 if (item == NULL)
5315 return FAIL;
5316
5317 copy_tv(&item->di_tv, &var1);
5318 clear_tv(rettv);
5319 *rettv = var1;
5320 }
5321 break;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005322 }
5323 }
5324
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005325 return OK;
5326}
5327
5328/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00005329 * Get an option value.
5330 * "arg" points to the '&' or '+' before the option name.
5331 * "arg" is advanced to character after the option name.
5332 * Return OK or FAIL.
5333 */
5334 static int
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005335get_option_tv(arg, rettv, evaluate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005336 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00005337 typval_T *rettv; /* when NULL, only check if option exists */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005338 int evaluate;
5339{
5340 char_u *option_end;
5341 long numval;
5342 char_u *stringval;
5343 int opt_type;
5344 int c;
5345 int working = (**arg == '+'); /* has("+option") */
5346 int ret = OK;
5347 int opt_flags;
5348
5349 /*
5350 * Isolate the option name and find its value.
5351 */
5352 option_end = find_option_end(arg, &opt_flags);
5353 if (option_end == NULL)
5354 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005355 if (rettv != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005356 EMSG2(_("E112: Option name missing: %s"), *arg);
5357 return FAIL;
5358 }
5359
5360 if (!evaluate)
5361 {
5362 *arg = option_end;
5363 return OK;
5364 }
5365
5366 c = *option_end;
5367 *option_end = NUL;
5368 opt_type = get_option_value(*arg, &numval,
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005369 rettv == NULL ? NULL : &stringval, opt_flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005370
5371 if (opt_type == -3) /* invalid name */
5372 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005373 if (rettv != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005374 EMSG2(_("E113: Unknown option: %s"), *arg);
5375 ret = FAIL;
5376 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005377 else if (rettv != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005378 {
5379 if (opt_type == -2) /* hidden string option */
5380 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005381 rettv->v_type = VAR_STRING;
5382 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005383 }
5384 else if (opt_type == -1) /* hidden number option */
5385 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005386 rettv->v_type = VAR_NUMBER;
5387 rettv->vval.v_number = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005388 }
5389 else if (opt_type == 1) /* number option */
5390 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005391 rettv->v_type = VAR_NUMBER;
5392 rettv->vval.v_number = numval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005393 }
5394 else /* string option */
5395 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005396 rettv->v_type = VAR_STRING;
5397 rettv->vval.v_string = stringval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005398 }
5399 }
5400 else if (working && (opt_type == -2 || opt_type == -1))
5401 ret = FAIL;
5402
5403 *option_end = c; /* put back for error messages */
5404 *arg = option_end;
5405
5406 return ret;
5407}
5408
5409/*
5410 * Allocate a variable for a string constant.
5411 * Return OK or FAIL.
5412 */
5413 static int
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005414get_string_tv(arg, rettv, evaluate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005415 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00005416 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005417 int evaluate;
5418{
5419 char_u *p;
5420 char_u *name;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005421 int extra = 0;
5422
5423 /*
5424 * Find the end of the string, skipping backslashed characters.
5425 */
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005426 for (p = *arg + 1; *p != NUL && *p != '"'; mb_ptr_adv(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005427 {
5428 if (*p == '\\' && p[1] != NUL)
5429 {
5430 ++p;
5431 /* A "\<x>" form occupies at least 4 characters, and produces up
5432 * to 6 characters: reserve space for 2 extra */
5433 if (*p == '<')
5434 extra += 2;
5435 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005436 }
5437
5438 if (*p != '"')
5439 {
5440 EMSG2(_("E114: Missing quote: %s"), *arg);
5441 return FAIL;
5442 }
5443
5444 /* If only parsing, set *arg and return here */
5445 if (!evaluate)
5446 {
5447 *arg = p + 1;
5448 return OK;
5449 }
5450
5451 /*
5452 * Copy the string into allocated memory, handling backslashed
5453 * characters.
5454 */
5455 name = alloc((unsigned)(p - *arg + extra));
5456 if (name == NULL)
5457 return FAIL;
Bram Moolenaar8c711452005-01-14 21:53:12 +00005458 rettv->v_type = VAR_STRING;
5459 rettv->vval.v_string = name;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005460
Bram Moolenaar8c711452005-01-14 21:53:12 +00005461 for (p = *arg + 1; *p != NUL && *p != '"'; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00005462 {
5463 if (*p == '\\')
5464 {
5465 switch (*++p)
5466 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005467 case 'b': *name++ = BS; ++p; break;
5468 case 'e': *name++ = ESC; ++p; break;
5469 case 'f': *name++ = FF; ++p; break;
5470 case 'n': *name++ = NL; ++p; break;
5471 case 'r': *name++ = CAR; ++p; break;
5472 case 't': *name++ = TAB; ++p; break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005473
5474 case 'X': /* hex: "\x1", "\x12" */
5475 case 'x':
5476 case 'u': /* Unicode: "\u0023" */
5477 case 'U':
5478 if (vim_isxdigit(p[1]))
5479 {
5480 int n, nr;
5481 int c = toupper(*p);
5482
5483 if (c == 'X')
5484 n = 2;
5485 else
5486 n = 4;
5487 nr = 0;
5488 while (--n >= 0 && vim_isxdigit(p[1]))
5489 {
5490 ++p;
5491 nr = (nr << 4) + hex2nr(*p);
5492 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00005493 ++p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005494#ifdef FEAT_MBYTE
5495 /* For "\u" store the number according to
5496 * 'encoding'. */
5497 if (c != 'X')
Bram Moolenaar8c711452005-01-14 21:53:12 +00005498 name += (*mb_char2bytes)(nr, name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005499 else
5500#endif
Bram Moolenaar8c711452005-01-14 21:53:12 +00005501 *name++ = nr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005502 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005503 break;
5504
5505 /* octal: "\1", "\12", "\123" */
5506 case '0':
5507 case '1':
5508 case '2':
5509 case '3':
5510 case '4':
5511 case '5':
5512 case '6':
Bram Moolenaar8c711452005-01-14 21:53:12 +00005513 case '7': *name = *p++ - '0';
5514 if (*p >= '0' && *p <= '7')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005515 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005516 *name = (*name << 3) + *p++ - '0';
5517 if (*p >= '0' && *p <= '7')
5518 *name = (*name << 3) + *p++ - '0';
Bram Moolenaar071d4272004-06-13 20:20:40 +00005519 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00005520 ++name;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005521 break;
5522
5523 /* Special key, e.g.: "\<C-W>" */
Bram Moolenaar8c711452005-01-14 21:53:12 +00005524 case '<': extra = trans_special(&p, name, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005525 if (extra != 0)
5526 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005527 name += extra;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005528 break;
5529 }
5530 /* FALLTHROUGH */
5531
Bram Moolenaar8c711452005-01-14 21:53:12 +00005532 default: MB_COPY_CHAR(p, name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005533 break;
5534 }
5535 }
5536 else
Bram Moolenaar8c711452005-01-14 21:53:12 +00005537 MB_COPY_CHAR(p, name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005538
Bram Moolenaar071d4272004-06-13 20:20:40 +00005539 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00005540 *name = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005541 *arg = p + 1;
5542
Bram Moolenaar071d4272004-06-13 20:20:40 +00005543 return OK;
5544}
5545
5546/*
Bram Moolenaar8c711452005-01-14 21:53:12 +00005547 * Allocate a variable for a 'str''ing' constant.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005548 * Return OK or FAIL.
5549 */
5550 static int
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005551get_lit_string_tv(arg, rettv, evaluate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005552 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00005553 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005554 int evaluate;
5555{
5556 char_u *p;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005557 char_u *str;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005558 int reduce = 0;
5559
5560 /*
Bram Moolenaar8c711452005-01-14 21:53:12 +00005561 * Find the end of the string, skipping ''.
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005562 */
5563 for (p = *arg + 1; *p != NUL; mb_ptr_adv(p))
5564 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005565 if (*p == '\'')
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005566 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005567 if (p[1] != '\'')
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005568 break;
5569 ++reduce;
5570 ++p;
5571 }
5572 }
5573
Bram Moolenaar8c711452005-01-14 21:53:12 +00005574 if (*p != '\'')
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005575 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005576 EMSG2(_("E115: Missing quote: %s"), *arg);
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005577 return FAIL;
5578 }
5579
Bram Moolenaar8c711452005-01-14 21:53:12 +00005580 /* If only parsing return after setting "*arg" */
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005581 if (!evaluate)
5582 {
5583 *arg = p + 1;
5584 return OK;
5585 }
5586
5587 /*
Bram Moolenaar8c711452005-01-14 21:53:12 +00005588 * Copy the string into allocated memory, handling '' to ' reduction.
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005589 */
5590 str = alloc((unsigned)((p - *arg) - reduce));
5591 if (str == NULL)
5592 return FAIL;
Bram Moolenaar8c711452005-01-14 21:53:12 +00005593 rettv->v_type = VAR_STRING;
5594 rettv->vval.v_string = str;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005595
Bram Moolenaar8c711452005-01-14 21:53:12 +00005596 for (p = *arg + 1; *p != NUL; )
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005597 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005598 if (*p == '\'')
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005599 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005600 if (p[1] != '\'')
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005601 break;
5602 ++p;
5603 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00005604 MB_COPY_CHAR(p, str);
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005605 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00005606 *str = NUL;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005607 *arg = p + 1;
5608
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005609 return OK;
5610}
5611
5612/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005613 * Allocate a variable for a List and fill it from "*arg".
5614 * Return OK or FAIL.
5615 */
5616 static int
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005617get_list_tv(arg, rettv, evaluate)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005618 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00005619 typval_T *rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005620 int evaluate;
5621{
Bram Moolenaar33570922005-01-25 22:26:29 +00005622 list_T *l = NULL;
5623 typval_T tv;
5624 listitem_T *item;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005625
5626 if (evaluate)
5627 {
5628 l = list_alloc();
5629 if (l == NULL)
5630 return FAIL;
5631 }
5632
5633 *arg = skipwhite(*arg + 1);
5634 while (**arg != ']' && **arg != NUL)
5635 {
5636 if (eval1(arg, &tv, evaluate) == FAIL) /* recursive! */
5637 goto failret;
5638 if (evaluate)
5639 {
5640 item = listitem_alloc();
5641 if (item != NULL)
5642 {
5643 item->li_tv = tv;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00005644 item->li_tv.v_lock = 0;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005645 list_append(l, item);
5646 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00005647 else
5648 clear_tv(&tv);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005649 }
5650
5651 if (**arg == ']')
5652 break;
5653 if (**arg != ',')
5654 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005655 EMSG2(_("E696: Missing comma in List: %s"), *arg);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005656 goto failret;
5657 }
5658 *arg = skipwhite(*arg + 1);
5659 }
5660
5661 if (**arg != ']')
5662 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005663 EMSG2(_("E697: Missing end of List ']': %s"), *arg);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005664failret:
5665 if (evaluate)
Bram Moolenaar685295c2006-10-15 20:37:38 +00005666 list_free(l, TRUE);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005667 return FAIL;
5668 }
5669
5670 *arg = skipwhite(*arg + 1);
5671 if (evaluate)
5672 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005673 rettv->v_type = VAR_LIST;
5674 rettv->vval.v_list = l;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005675 ++l->lv_refcount;
5676 }
5677
5678 return OK;
5679}
5680
5681/*
5682 * Allocate an empty header for a list.
Bram Moolenaard43b6cf2005-09-09 19:53:42 +00005683 * Caller should take care of the reference count.
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005684 */
Bram Moolenaar1ef15e32006-02-01 21:56:25 +00005685 list_T *
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005686list_alloc()
5687{
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00005688 list_T *l;
5689
5690 l = (list_T *)alloc_clear(sizeof(list_T));
5691 if (l != NULL)
5692 {
5693 /* Prepend the list to the list of lists for garbage collection. */
5694 if (first_list != NULL)
5695 first_list->lv_used_prev = l;
5696 l->lv_used_prev = NULL;
5697 l->lv_used_next = first_list;
5698 first_list = l;
5699 }
5700 return l;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005701}
5702
5703/*
Bram Moolenaareddf53b2006-02-27 00:11:10 +00005704 * Allocate an empty list for a return value.
5705 * Returns OK or FAIL.
5706 */
5707 static int
5708rettv_list_alloc(rettv)
5709 typval_T *rettv;
5710{
5711 list_T *l = list_alloc();
5712
5713 if (l == NULL)
5714 return FAIL;
5715
5716 rettv->vval.v_list = l;
5717 rettv->v_type = VAR_LIST;
5718 ++l->lv_refcount;
5719 return OK;
5720}
5721
5722/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005723 * Unreference a list: decrement the reference count and free it when it
5724 * becomes zero.
5725 */
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00005726 void
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005727list_unref(l)
Bram Moolenaar33570922005-01-25 22:26:29 +00005728 list_T *l;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005729{
Bram Moolenaar685295c2006-10-15 20:37:38 +00005730 if (l != NULL && --l->lv_refcount <= 0)
5731 list_free(l, TRUE);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005732}
5733
5734/*
5735 * Free a list, including all items it points to.
5736 * Ignores the reference count.
5737 */
Bram Moolenaar1ef15e32006-02-01 21:56:25 +00005738 void
Bram Moolenaar685295c2006-10-15 20:37:38 +00005739list_free(l, recurse)
5740 list_T *l;
5741 int recurse; /* Free Lists and Dictionaries recursively. */
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005742{
Bram Moolenaar33570922005-01-25 22:26:29 +00005743 listitem_T *item;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005744
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00005745 /* Remove the list from the list of lists for garbage collection. */
5746 if (l->lv_used_prev == NULL)
5747 first_list = l->lv_used_next;
5748 else
5749 l->lv_used_prev->lv_used_next = l->lv_used_next;
5750 if (l->lv_used_next != NULL)
5751 l->lv_used_next->lv_used_prev = l->lv_used_prev;
5752
Bram Moolenaard9fba312005-06-26 22:34:35 +00005753 for (item = l->lv_first; item != NULL; item = l->lv_first)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005754 {
Bram Moolenaard9fba312005-06-26 22:34:35 +00005755 /* Remove the item before deleting it. */
5756 l->lv_first = item->li_next;
Bram Moolenaar685295c2006-10-15 20:37:38 +00005757 if (recurse || (item->li_tv.v_type != VAR_LIST
5758 && item->li_tv.v_type != VAR_DICT))
5759 clear_tv(&item->li_tv);
5760 vim_free(item);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005761 }
5762 vim_free(l);
5763}
5764
5765/*
5766 * Allocate a list item.
5767 */
Bram Moolenaar33570922005-01-25 22:26:29 +00005768 static listitem_T *
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005769listitem_alloc()
5770{
Bram Moolenaar33570922005-01-25 22:26:29 +00005771 return (listitem_T *)alloc(sizeof(listitem_T));
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005772}
5773
5774/*
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00005775 * Free a list item. Also clears the value. Does not notify watchers.
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005776 */
5777 static void
5778listitem_free(item)
Bram Moolenaar33570922005-01-25 22:26:29 +00005779 listitem_T *item;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005780{
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005781 clear_tv(&item->li_tv);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005782 vim_free(item);
5783}
5784
5785/*
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00005786 * Remove a list item from a List and free it. Also clears the value.
5787 */
5788 static void
5789listitem_remove(l, item)
Bram Moolenaar33570922005-01-25 22:26:29 +00005790 list_T *l;
5791 listitem_T *item;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00005792{
5793 list_remove(l, item, item);
5794 listitem_free(item);
5795}
5796
5797/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005798 * Get the number of items in a list.
5799 */
5800 static long
5801list_len(l)
Bram Moolenaar33570922005-01-25 22:26:29 +00005802 list_T *l;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005803{
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005804 if (l == NULL)
5805 return 0L;
Bram Moolenaar758711c2005-02-02 23:11:38 +00005806 return l->lv_len;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005807}
5808
5809/*
Bram Moolenaar8a283e52005-01-06 23:28:25 +00005810 * Return TRUE when two lists have exactly the same values.
5811 */
5812 static int
5813list_equal(l1, l2, ic)
Bram Moolenaar33570922005-01-25 22:26:29 +00005814 list_T *l1;
5815 list_T *l2;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00005816 int ic; /* ignore case for strings */
5817{
Bram Moolenaar33570922005-01-25 22:26:29 +00005818 listitem_T *item1, *item2;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00005819
Bram Moolenaar8b402a02006-10-17 13:16:39 +00005820 if (l1 == l2)
5821 return TRUE;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00005822 if (list_len(l1) != list_len(l2))
5823 return FALSE;
5824
Bram Moolenaar8a283e52005-01-06 23:28:25 +00005825 for (item1 = l1->lv_first, item2 = l2->lv_first;
5826 item1 != NULL && item2 != NULL;
5827 item1 = item1->li_next, item2 = item2->li_next)
5828 if (!tv_equal(&item1->li_tv, &item2->li_tv, ic))
5829 return FALSE;
5830 return item1 == NULL && item2 == NULL;
5831}
5832
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00005833#if defined(FEAT_PYTHON) || defined(PROTO)
5834/*
5835 * Return the dictitem that an entry in a hashtable points to.
5836 */
5837 dictitem_T *
5838dict_lookup(hi)
5839 hashitem_T *hi;
5840{
5841 return HI2DI(hi);
5842}
5843#endif
5844
Bram Moolenaar8a283e52005-01-06 23:28:25 +00005845/*
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00005846 * Return TRUE when two dictionaries have exactly the same key/values.
5847 */
5848 static int
5849dict_equal(d1, d2, ic)
Bram Moolenaar33570922005-01-25 22:26:29 +00005850 dict_T *d1;
5851 dict_T *d2;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00005852 int ic; /* ignore case for strings */
5853{
Bram Moolenaar33570922005-01-25 22:26:29 +00005854 hashitem_T *hi;
5855 dictitem_T *item2;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00005856 int todo;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00005857
Bram Moolenaar8b402a02006-10-17 13:16:39 +00005858 if (d1 == d2)
5859 return TRUE;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00005860 if (dict_len(d1) != dict_len(d2))
5861 return FALSE;
5862
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005863 todo = (int)d1->dv_hashtab.ht_used;
Bram Moolenaar33570922005-01-25 22:26:29 +00005864 for (hi = d1->dv_hashtab.ht_array; todo > 0; ++hi)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00005865 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00005866 if (!HASHITEM_EMPTY(hi))
5867 {
5868 item2 = dict_find(d2, hi->hi_key, -1);
5869 if (item2 == NULL)
5870 return FALSE;
5871 if (!tv_equal(&HI2DI(hi)->di_tv, &item2->di_tv, ic))
5872 return FALSE;
5873 --todo;
5874 }
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00005875 }
5876 return TRUE;
5877}
5878
5879/*
Bram Moolenaar8a283e52005-01-06 23:28:25 +00005880 * Return TRUE if "tv1" and "tv2" have the same value.
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +00005881 * Compares the items just like "==" would compare them, but strings and
Bram Moolenaar8c8de832008-06-24 22:58:06 +00005882 * numbers are different. Floats and numbers are also different.
Bram Moolenaar8a283e52005-01-06 23:28:25 +00005883 */
5884 static int
5885tv_equal(tv1, tv2, ic)
Bram Moolenaar33570922005-01-25 22:26:29 +00005886 typval_T *tv1;
5887 typval_T *tv2;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00005888 int ic; /* ignore case */
5889{
5890 char_u buf1[NUMBUFLEN], buf2[NUMBUFLEN];
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005891 char_u *s1, *s2;
Bram Moolenaarb47a2402006-10-15 13:09:12 +00005892 static int recursive = 0; /* cach recursive loops */
5893 int r;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00005894
Bram Moolenaar8b402a02006-10-17 13:16:39 +00005895 if (tv1->v_type != tv2->v_type)
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +00005896 return FALSE;
Bram Moolenaar8b402a02006-10-17 13:16:39 +00005897 /* Catch lists and dicts that have an endless loop by limiting
5898 * recursiveness to 1000. We guess they are equal then. */
5899 if (recursive >= 1000)
5900 return TRUE;
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +00005901
5902 switch (tv1->v_type)
Bram Moolenaar8a283e52005-01-06 23:28:25 +00005903 {
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +00005904 case VAR_LIST:
Bram Moolenaarb47a2402006-10-15 13:09:12 +00005905 ++recursive;
5906 r = list_equal(tv1->vval.v_list, tv2->vval.v_list, ic);
5907 --recursive;
5908 return r;
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +00005909
5910 case VAR_DICT:
Bram Moolenaarb47a2402006-10-15 13:09:12 +00005911 ++recursive;
5912 r = dict_equal(tv1->vval.v_dict, tv2->vval.v_dict, ic);
5913 --recursive;
5914 return r;
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +00005915
5916 case VAR_FUNC:
5917 return (tv1->vval.v_string != NULL
5918 && tv2->vval.v_string != NULL
5919 && STRCMP(tv1->vval.v_string, tv2->vval.v_string) == 0);
5920
5921 case VAR_NUMBER:
5922 return tv1->vval.v_number == tv2->vval.v_number;
5923
Bram Moolenaar8c8de832008-06-24 22:58:06 +00005924#ifdef FEAT_FLOAT
5925 case VAR_FLOAT:
5926 return tv1->vval.v_float == tv2->vval.v_float;
5927#endif
5928
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +00005929 case VAR_STRING:
5930 s1 = get_tv_string_buf(tv1, buf1);
5931 s2 = get_tv_string_buf(tv2, buf2);
5932 return ((ic ? MB_STRICMP(s1, s2) : STRCMP(s1, s2)) == 0);
Bram Moolenaar8a283e52005-01-06 23:28:25 +00005933 }
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +00005934
5935 EMSG2(_(e_intern2), "tv_equal()");
Bram Moolenaar8a283e52005-01-06 23:28:25 +00005936 return TRUE;
5937}
5938
5939/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005940 * Locate item with index "n" in list "l" and return it.
5941 * A negative index is counted from the end; -1 is the last item.
5942 * Returns NULL when "n" is out of range.
5943 */
Bram Moolenaar33570922005-01-25 22:26:29 +00005944 static listitem_T *
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005945list_find(l, n)
Bram Moolenaar33570922005-01-25 22:26:29 +00005946 list_T *l;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005947 long n;
5948{
Bram Moolenaar33570922005-01-25 22:26:29 +00005949 listitem_T *item;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005950 long idx;
5951
5952 if (l == NULL)
5953 return NULL;
Bram Moolenaar758711c2005-02-02 23:11:38 +00005954
5955 /* Negative index is relative to the end. */
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005956 if (n < 0)
Bram Moolenaar758711c2005-02-02 23:11:38 +00005957 n = l->lv_len + n;
5958
5959 /* Check for index out of range. */
5960 if (n < 0 || n >= l->lv_len)
5961 return NULL;
5962
5963 /* When there is a cached index may start search from there. */
5964 if (l->lv_idx_item != NULL)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005965 {
Bram Moolenaar758711c2005-02-02 23:11:38 +00005966 if (n < l->lv_idx / 2)
5967 {
5968 /* closest to the start of the list */
5969 item = l->lv_first;
5970 idx = 0;
5971 }
5972 else if (n > (l->lv_idx + l->lv_len) / 2)
5973 {
5974 /* closest to the end of the list */
5975 item = l->lv_last;
5976 idx = l->lv_len - 1;
5977 }
5978 else
5979 {
5980 /* closest to the cached index */
5981 item = l->lv_idx_item;
5982 idx = l->lv_idx;
5983 }
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005984 }
5985 else
5986 {
Bram Moolenaar758711c2005-02-02 23:11:38 +00005987 if (n < l->lv_len / 2)
5988 {
5989 /* closest to the start of the list */
5990 item = l->lv_first;
5991 idx = 0;
5992 }
5993 else
5994 {
5995 /* closest to the end of the list */
5996 item = l->lv_last;
5997 idx = l->lv_len - 1;
5998 }
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005999 }
Bram Moolenaar758711c2005-02-02 23:11:38 +00006000
6001 while (n > idx)
6002 {
6003 /* search forward */
6004 item = item->li_next;
6005 ++idx;
6006 }
6007 while (n < idx)
6008 {
6009 /* search backward */
6010 item = item->li_prev;
6011 --idx;
6012 }
6013
6014 /* cache the used index */
6015 l->lv_idx = idx;
6016 l->lv_idx_item = item;
6017
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006018 return item;
6019}
6020
6021/*
Bram Moolenaara5525202006-03-02 22:52:09 +00006022 * Get list item "l[idx]" as a number.
6023 */
6024 static long
6025list_find_nr(l, idx, errorp)
6026 list_T *l;
6027 long idx;
6028 int *errorp; /* set to TRUE when something wrong */
6029{
6030 listitem_T *li;
6031
6032 li = list_find(l, idx);
6033 if (li == NULL)
6034 {
6035 if (errorp != NULL)
6036 *errorp = TRUE;
6037 return -1L;
6038 }
6039 return get_tv_number_chk(&li->li_tv, errorp);
6040}
6041
6042/*
Bram Moolenaar6cc16192005-01-08 21:49:45 +00006043 * Locate "item" list "l" and return its index.
6044 * Returns -1 when "item" is not in the list.
6045 */
6046 static long
6047list_idx_of_item(l, item)
Bram Moolenaar33570922005-01-25 22:26:29 +00006048 list_T *l;
6049 listitem_T *item;
Bram Moolenaar6cc16192005-01-08 21:49:45 +00006050{
6051 long idx = 0;
Bram Moolenaar33570922005-01-25 22:26:29 +00006052 listitem_T *li;
Bram Moolenaar6cc16192005-01-08 21:49:45 +00006053
6054 if (l == NULL)
6055 return -1;
6056 idx = 0;
6057 for (li = l->lv_first; li != NULL && li != item; li = li->li_next)
6058 ++idx;
6059 if (li == NULL)
6060 return -1;
Bram Moolenaar75c50c42005-06-04 22:06:24 +00006061 return idx;
Bram Moolenaar6cc16192005-01-08 21:49:45 +00006062}
6063
6064/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006065 * Append item "item" to the end of list "l".
6066 */
6067 static void
6068list_append(l, item)
Bram Moolenaar33570922005-01-25 22:26:29 +00006069 list_T *l;
6070 listitem_T *item;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006071{
6072 if (l->lv_last == NULL)
6073 {
6074 /* empty list */
6075 l->lv_first = item;
6076 l->lv_last = item;
6077 item->li_prev = NULL;
6078 }
6079 else
6080 {
6081 l->lv_last->li_next = item;
6082 item->li_prev = l->lv_last;
6083 l->lv_last = item;
6084 }
Bram Moolenaar758711c2005-02-02 23:11:38 +00006085 ++l->lv_len;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006086 item->li_next = NULL;
6087}
6088
6089/*
Bram Moolenaar33570922005-01-25 22:26:29 +00006090 * Append typval_T "tv" to the end of list "l".
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006091 * Return FAIL when out of memory.
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006092 */
6093 static int
6094list_append_tv(l, tv)
Bram Moolenaar33570922005-01-25 22:26:29 +00006095 list_T *l;
6096 typval_T *tv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006097{
Bram Moolenaar05159a02005-02-26 23:04:13 +00006098 listitem_T *li = listitem_alloc();
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006099
Bram Moolenaar05159a02005-02-26 23:04:13 +00006100 if (li == NULL)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006101 return FAIL;
Bram Moolenaar05159a02005-02-26 23:04:13 +00006102 copy_tv(tv, &li->li_tv);
6103 list_append(l, li);
6104 return OK;
6105}
6106
6107/*
Bram Moolenaar2641f772005-03-25 21:58:17 +00006108 * Add a dictionary to a list. Used by getqflist().
Bram Moolenaar05159a02005-02-26 23:04:13 +00006109 * Return FAIL when out of memory.
6110 */
6111 int
6112list_append_dict(list, dict)
6113 list_T *list;
6114 dict_T *dict;
6115{
6116 listitem_T *li = listitem_alloc();
6117
6118 if (li == NULL)
6119 return FAIL;
6120 li->li_tv.v_type = VAR_DICT;
6121 li->li_tv.v_lock = 0;
6122 li->li_tv.vval.v_dict = dict;
6123 list_append(list, li);
6124 ++dict->dv_refcount;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006125 return OK;
6126}
6127
6128/*
Bram Moolenaard43b6cf2005-09-09 19:53:42 +00006129 * Make a copy of "str" and append it as an item to list "l".
Bram Moolenaar4463f292005-09-25 22:20:24 +00006130 * When "len" >= 0 use "str[len]".
Bram Moolenaard43b6cf2005-09-09 19:53:42 +00006131 * Returns FAIL when out of memory.
6132 */
6133 static int
Bram Moolenaar4463f292005-09-25 22:20:24 +00006134list_append_string(l, str, len)
Bram Moolenaard43b6cf2005-09-09 19:53:42 +00006135 list_T *l;
6136 char_u *str;
Bram Moolenaar4463f292005-09-25 22:20:24 +00006137 int len;
Bram Moolenaard43b6cf2005-09-09 19:53:42 +00006138{
6139 listitem_T *li = listitem_alloc();
6140
6141 if (li == NULL)
6142 return FAIL;
6143 list_append(l, li);
6144 li->li_tv.v_type = VAR_STRING;
6145 li->li_tv.v_lock = 0;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006146 if (str == NULL)
6147 li->li_tv.vval.v_string = NULL;
6148 else if ((li->li_tv.vval.v_string = (len >= 0 ? vim_strnsave(str, len)
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00006149 : vim_strsave(str))) == NULL)
Bram Moolenaard43b6cf2005-09-09 19:53:42 +00006150 return FAIL;
6151 return OK;
6152}
6153
6154/*
Bram Moolenaar4463f292005-09-25 22:20:24 +00006155 * Append "n" to list "l".
6156 * Returns FAIL when out of memory.
6157 */
6158 static int
6159list_append_number(l, n)
6160 list_T *l;
6161 varnumber_T n;
6162{
6163 listitem_T *li;
6164
6165 li = listitem_alloc();
6166 if (li == NULL)
6167 return FAIL;
6168 li->li_tv.v_type = VAR_NUMBER;
6169 li->li_tv.v_lock = 0;
6170 li->li_tv.vval.v_number = n;
6171 list_append(l, li);
6172 return OK;
6173}
6174
6175/*
Bram Moolenaar33570922005-01-25 22:26:29 +00006176 * Insert typval_T "tv" in list "l" before "item".
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006177 * If "item" is NULL append at the end.
6178 * Return FAIL when out of memory.
6179 */
6180 static int
6181list_insert_tv(l, tv, item)
Bram Moolenaar33570922005-01-25 22:26:29 +00006182 list_T *l;
6183 typval_T *tv;
6184 listitem_T *item;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006185{
Bram Moolenaar33570922005-01-25 22:26:29 +00006186 listitem_T *ni = listitem_alloc();
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006187
6188 if (ni == NULL)
6189 return FAIL;
6190 copy_tv(tv, &ni->li_tv);
6191 if (item == NULL)
6192 /* Append new item at end of list. */
6193 list_append(l, ni);
6194 else
6195 {
6196 /* Insert new item before existing item. */
6197 ni->li_prev = item->li_prev;
6198 ni->li_next = item;
6199 if (item->li_prev == NULL)
Bram Moolenaar758711c2005-02-02 23:11:38 +00006200 {
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006201 l->lv_first = ni;
Bram Moolenaar758711c2005-02-02 23:11:38 +00006202 ++l->lv_idx;
6203 }
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006204 else
Bram Moolenaar758711c2005-02-02 23:11:38 +00006205 {
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006206 item->li_prev->li_next = ni;
Bram Moolenaar758711c2005-02-02 23:11:38 +00006207 l->lv_idx_item = NULL;
6208 }
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006209 item->li_prev = ni;
Bram Moolenaar758711c2005-02-02 23:11:38 +00006210 ++l->lv_len;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006211 }
6212 return OK;
6213}
6214
6215/*
6216 * Extend "l1" with "l2".
6217 * If "bef" is NULL append at the end, otherwise insert before this item.
6218 * Returns FAIL when out of memory.
6219 */
6220 static int
6221list_extend(l1, l2, bef)
Bram Moolenaar33570922005-01-25 22:26:29 +00006222 list_T *l1;
6223 list_T *l2;
6224 listitem_T *bef;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006225{
Bram Moolenaar33570922005-01-25 22:26:29 +00006226 listitem_T *item;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006227
6228 for (item = l2->lv_first; item != NULL; item = item->li_next)
6229 if (list_insert_tv(l1, &item->li_tv, bef) == FAIL)
6230 return FAIL;
6231 return OK;
6232}
6233
6234/*
6235 * Concatenate lists "l1" and "l2" into a new list, stored in "tv".
6236 * Return FAIL when out of memory.
6237 */
6238 static int
6239list_concat(l1, l2, tv)
Bram Moolenaar33570922005-01-25 22:26:29 +00006240 list_T *l1;
6241 list_T *l2;
6242 typval_T *tv;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006243{
Bram Moolenaar33570922005-01-25 22:26:29 +00006244 list_T *l;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006245
6246 /* make a copy of the first list. */
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006247 l = list_copy(l1, FALSE, 0);
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006248 if (l == NULL)
6249 return FAIL;
6250 tv->v_type = VAR_LIST;
6251 tv->vval.v_list = l;
6252
6253 /* append all items from the second list */
6254 return list_extend(l, l2, NULL);
6255}
6256
6257/*
Bram Moolenaare9a41262005-01-15 22:18:47 +00006258 * Make a copy of list "orig". Shallow if "deep" is FALSE.
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006259 * The refcount of the new list is set to 1.
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006260 * See item_copy() for "copyID".
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006261 * Returns NULL when out of memory.
6262 */
Bram Moolenaar33570922005-01-25 22:26:29 +00006263 static list_T *
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006264list_copy(orig, deep, copyID)
Bram Moolenaar33570922005-01-25 22:26:29 +00006265 list_T *orig;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006266 int deep;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006267 int copyID;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006268{
Bram Moolenaar33570922005-01-25 22:26:29 +00006269 list_T *copy;
6270 listitem_T *item;
6271 listitem_T *ni;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006272
6273 if (orig == NULL)
6274 return NULL;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006275
6276 copy = list_alloc();
6277 if (copy != NULL)
6278 {
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006279 if (copyID != 0)
6280 {
6281 /* Do this before adding the items, because one of the items may
6282 * refer back to this list. */
6283 orig->lv_copyID = copyID;
6284 orig->lv_copylist = copy;
6285 }
6286 for (item = orig->lv_first; item != NULL && !got_int;
6287 item = item->li_next)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006288 {
6289 ni = listitem_alloc();
6290 if (ni == NULL)
6291 break;
Bram Moolenaare9a41262005-01-15 22:18:47 +00006292 if (deep)
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006293 {
6294 if (item_copy(&item->li_tv, &ni->li_tv, deep, copyID) == FAIL)
6295 {
6296 vim_free(ni);
6297 break;
6298 }
6299 }
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006300 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +00006301 copy_tv(&item->li_tv, &ni->li_tv);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006302 list_append(copy, ni);
6303 }
6304 ++copy->lv_refcount;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006305 if (item != NULL)
6306 {
6307 list_unref(copy);
6308 copy = NULL;
6309 }
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006310 }
6311
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006312 return copy;
6313}
6314
6315/*
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006316 * Remove items "item" to "item2" from list "l".
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00006317 * Does not free the listitem or the value!
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006318 */
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006319 static void
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00006320list_remove(l, item, item2)
Bram Moolenaar33570922005-01-25 22:26:29 +00006321 list_T *l;
6322 listitem_T *item;
6323 listitem_T *item2;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006324{
Bram Moolenaar33570922005-01-25 22:26:29 +00006325 listitem_T *ip;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006326
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006327 /* notify watchers */
6328 for (ip = item; ip != NULL; ip = ip->li_next)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006329 {
Bram Moolenaar758711c2005-02-02 23:11:38 +00006330 --l->lv_len;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006331 list_fix_watch(l, ip);
6332 if (ip == item2)
6333 break;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006334 }
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006335
6336 if (item2->li_next == NULL)
6337 l->lv_last = item->li_prev;
6338 else
6339 item2->li_next->li_prev = item->li_prev;
6340 if (item->li_prev == NULL)
6341 l->lv_first = item2->li_next;
6342 else
6343 item->li_prev->li_next = item2->li_next;
Bram Moolenaar758711c2005-02-02 23:11:38 +00006344 l->lv_idx_item = NULL;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006345}
6346
6347/*
6348 * Return an allocated string with the string representation of a list.
6349 * May return NULL.
6350 */
6351 static char_u *
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00006352list2string(tv, copyID)
Bram Moolenaar33570922005-01-25 22:26:29 +00006353 typval_T *tv;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00006354 int copyID;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006355{
6356 garray_T ga;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006357
6358 if (tv->vval.v_list == NULL)
6359 return NULL;
6360 ga_init2(&ga, (int)sizeof(char), 80);
6361 ga_append(&ga, '[');
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00006362 if (list_join(&ga, tv->vval.v_list, (char_u *)", ", FALSE, copyID) == FAIL)
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006363 {
6364 vim_free(ga.ga_data);
6365 return NULL;
6366 }
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006367 ga_append(&ga, ']');
6368 ga_append(&ga, NUL);
6369 return (char_u *)ga.ga_data;
6370}
6371
6372/*
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00006373 * Join list "l" into a string in "*gap", using separator "sep".
6374 * When "echo" is TRUE use String as echoed, otherwise as inside a List.
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006375 * Return FAIL or OK.
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00006376 */
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006377 static int
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00006378list_join(gap, l, sep, echo, copyID)
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00006379 garray_T *gap;
Bram Moolenaar33570922005-01-25 22:26:29 +00006380 list_T *l;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00006381 char_u *sep;
6382 int echo;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00006383 int copyID;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00006384{
6385 int first = TRUE;
6386 char_u *tofree;
6387 char_u numbuf[NUMBUFLEN];
Bram Moolenaar33570922005-01-25 22:26:29 +00006388 listitem_T *item;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00006389 char_u *s;
6390
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006391 for (item = l->lv_first; item != NULL && !got_int; item = item->li_next)
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00006392 {
6393 if (first)
6394 first = FALSE;
6395 else
6396 ga_concat(gap, sep);
6397
6398 if (echo)
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00006399 s = echo_string(&item->li_tv, &tofree, numbuf, copyID);
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00006400 else
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00006401 s = tv2string(&item->li_tv, &tofree, numbuf, copyID);
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00006402 if (s != NULL)
6403 ga_concat(gap, s);
6404 vim_free(tofree);
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006405 if (s == NULL)
6406 return FAIL;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00006407 }
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006408 return OK;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00006409}
6410
6411/*
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006412 * Garbage collection for lists and dictionaries.
6413 *
6414 * We use reference counts to be able to free most items right away when they
6415 * are no longer used. But for composite items it's possible that it becomes
6416 * unused while the reference count is > 0: When there is a recursive
6417 * reference. Example:
6418 * :let l = [1, 2, 3]
6419 * :let d = {9: l}
6420 * :let l[1] = d
6421 *
6422 * Since this is quite unusual we handle this with garbage collection: every
6423 * once in a while find out which lists and dicts are not referenced from any
6424 * variable.
6425 *
6426 * Here is a good reference text about garbage collection (refers to Python
6427 * but it applies to all reference-counting mechanisms):
6428 * http://python.ca/nas/python/gc/
Bram Moolenaard9fba312005-06-26 22:34:35 +00006429 */
Bram Moolenaard9fba312005-06-26 22:34:35 +00006430
6431/*
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006432 * Do garbage collection for lists and dicts.
6433 * Return TRUE if some memory was freed.
Bram Moolenaard9fba312005-06-26 22:34:35 +00006434 */
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006435 int
6436garbage_collect()
Bram Moolenaard9fba312005-06-26 22:34:35 +00006437{
6438 dict_T *dd;
6439 list_T *ll;
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006440 int copyID = ++current_copyID;
6441 buf_T *buf;
6442 win_T *wp;
6443 int i;
6444 funccall_T *fc;
6445 int did_free = FALSE;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006446#ifdef FEAT_WINDOWS
6447 tabpage_T *tp;
6448#endif
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006449
Bram Moolenaar9fecb462006-09-05 10:59:47 +00006450 /* Only do this once. */
6451 want_garbage_collect = FALSE;
6452 may_garbage_collect = FALSE;
Bram Moolenaar9d2c8c12007-09-25 16:00:00 +00006453 garbage_collect_at_exit = FALSE;
Bram Moolenaar9fecb462006-09-05 10:59:47 +00006454
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006455 /*
6456 * 1. Go through all accessible variables and mark all lists and dicts
6457 * with copyID.
6458 */
6459 /* script-local variables */
6460 for (i = 1; i <= ga_scripts.ga_len; ++i)
6461 set_ref_in_ht(&SCRIPT_VARS(i), copyID);
6462
6463 /* buffer-local variables */
6464 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
6465 set_ref_in_ht(&buf->b_vars.dv_hashtab, copyID);
6466
6467 /* window-local variables */
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006468 FOR_ALL_TAB_WINDOWS(tp, wp)
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006469 set_ref_in_ht(&wp->w_vars.dv_hashtab, copyID);
6470
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006471#ifdef FEAT_WINDOWS
6472 /* tabpage-local variables */
6473 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next)
6474 set_ref_in_ht(&tp->tp_vars.dv_hashtab, copyID);
6475#endif
6476
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006477 /* global variables */
6478 set_ref_in_ht(&globvarht, copyID);
6479
6480 /* function-local variables */
6481 for (fc = current_funccal; fc != NULL; fc = fc->caller)
6482 {
6483 set_ref_in_ht(&fc->l_vars.dv_hashtab, copyID);
6484 set_ref_in_ht(&fc->l_avars.dv_hashtab, copyID);
6485 }
6486
6487 /*
6488 * 2. Go through the list of dicts and free items without the copyID.
6489 */
6490 for (dd = first_dict; dd != NULL; )
6491 if (dd->dv_copyID != copyID)
6492 {
Bram Moolenaar685295c2006-10-15 20:37:38 +00006493 /* Free the Dictionary and ordinary items it contains, but don't
6494 * recurse into Lists and Dictionaries, they will be in the list
6495 * of dicts or list of lists. */
6496 dict_free(dd, FALSE);
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006497 did_free = TRUE;
6498
6499 /* restart, next dict may also have been freed */
6500 dd = first_dict;
6501 }
6502 else
6503 dd = dd->dv_used_next;
6504
6505 /*
6506 * 3. Go through the list of lists and free items without the copyID.
Bram Moolenaar7bb4c6e2005-09-07 21:22:27 +00006507 * But don't free a list that has a watcher (used in a for loop), these
6508 * are not referenced anywhere.
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006509 */
6510 for (ll = first_list; ll != NULL; )
Bram Moolenaar7bb4c6e2005-09-07 21:22:27 +00006511 if (ll->lv_copyID != copyID && ll->lv_watch == NULL)
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006512 {
Bram Moolenaar685295c2006-10-15 20:37:38 +00006513 /* Free the List and ordinary items it contains, but don't recurse
6514 * into Lists and Dictionaries, they will be in the list of dicts
6515 * or list of lists. */
6516 list_free(ll, FALSE);
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006517 did_free = TRUE;
6518
Bram Moolenaar7bb4c6e2005-09-07 21:22:27 +00006519 /* restart, next list may also have been freed */
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006520 ll = first_list;
6521 }
6522 else
6523 ll = ll->lv_used_next;
6524
6525 return did_free;
6526}
6527
6528/*
6529 * Mark all lists and dicts referenced through hashtab "ht" with "copyID".
6530 */
6531 static void
6532set_ref_in_ht(ht, copyID)
6533 hashtab_T *ht;
6534 int copyID;
6535{
6536 int todo;
6537 hashitem_T *hi;
6538
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006539 todo = (int)ht->ht_used;
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006540 for (hi = ht->ht_array; todo > 0; ++hi)
6541 if (!HASHITEM_EMPTY(hi))
6542 {
6543 --todo;
6544 set_ref_in_item(&HI2DI(hi)->di_tv, copyID);
6545 }
6546}
6547
6548/*
6549 * Mark all lists and dicts referenced through list "l" with "copyID".
6550 */
6551 static void
6552set_ref_in_list(l, copyID)
6553 list_T *l;
6554 int copyID;
6555{
6556 listitem_T *li;
6557
6558 for (li = l->lv_first; li != NULL; li = li->li_next)
6559 set_ref_in_item(&li->li_tv, copyID);
6560}
6561
6562/*
6563 * Mark all lists and dicts referenced through typval "tv" with "copyID".
6564 */
6565 static void
6566set_ref_in_item(tv, copyID)
6567 typval_T *tv;
6568 int copyID;
6569{
6570 dict_T *dd;
6571 list_T *ll;
Bram Moolenaard9fba312005-06-26 22:34:35 +00006572
6573 switch (tv->v_type)
6574 {
6575 case VAR_DICT:
6576 dd = tv->vval.v_dict;
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006577 if (dd->dv_copyID != copyID)
Bram Moolenaard9fba312005-06-26 22:34:35 +00006578 {
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006579 /* Didn't see this dict yet. */
6580 dd->dv_copyID = copyID;
6581 set_ref_in_ht(&dd->dv_hashtab, copyID);
Bram Moolenaard9fba312005-06-26 22:34:35 +00006582 }
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006583 break;
Bram Moolenaard9fba312005-06-26 22:34:35 +00006584
6585 case VAR_LIST:
6586 ll = tv->vval.v_list;
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006587 if (ll->lv_copyID != copyID)
Bram Moolenaard9fba312005-06-26 22:34:35 +00006588 {
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006589 /* Didn't see this list yet. */
6590 ll->lv_copyID = copyID;
6591 set_ref_in_list(ll, copyID);
Bram Moolenaard9fba312005-06-26 22:34:35 +00006592 }
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006593 break;
Bram Moolenaard9fba312005-06-26 22:34:35 +00006594 }
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006595 return;
Bram Moolenaard9fba312005-06-26 22:34:35 +00006596}
6597
6598/*
Bram Moolenaar8c711452005-01-14 21:53:12 +00006599 * Allocate an empty header for a dictionary.
6600 */
Bram Moolenaar05159a02005-02-26 23:04:13 +00006601 dict_T *
Bram Moolenaar8c711452005-01-14 21:53:12 +00006602dict_alloc()
6603{
Bram Moolenaar33570922005-01-25 22:26:29 +00006604 dict_T *d;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006605
Bram Moolenaar33570922005-01-25 22:26:29 +00006606 d = (dict_T *)alloc(sizeof(dict_T));
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006607 if (d != NULL)
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00006608 {
Bram Moolenaar685295c2006-10-15 20:37:38 +00006609 /* Add the list to the list of dicts for garbage collection. */
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006610 if (first_dict != NULL)
6611 first_dict->dv_used_prev = d;
6612 d->dv_used_next = first_dict;
6613 d->dv_used_prev = NULL;
Bram Moolenaar685295c2006-10-15 20:37:38 +00006614 first_dict = d;
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006615
Bram Moolenaar33570922005-01-25 22:26:29 +00006616 hash_init(&d->dv_hashtab);
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00006617 d->dv_lock = 0;
6618 d->dv_refcount = 0;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006619 d->dv_copyID = 0;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00006620 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006621 return d;
Bram Moolenaar8c711452005-01-14 21:53:12 +00006622}
6623
6624/*
6625 * Unreference a Dictionary: decrement the reference count and free it when it
6626 * becomes zero.
6627 */
6628 static void
6629dict_unref(d)
Bram Moolenaar33570922005-01-25 22:26:29 +00006630 dict_T *d;
Bram Moolenaar8c711452005-01-14 21:53:12 +00006631{
Bram Moolenaar685295c2006-10-15 20:37:38 +00006632 if (d != NULL && --d->dv_refcount <= 0)
6633 dict_free(d, TRUE);
Bram Moolenaar8c711452005-01-14 21:53:12 +00006634}
6635
6636/*
6637 * Free a Dictionary, including all items it contains.
6638 * Ignores the reference count.
6639 */
6640 static void
Bram Moolenaar685295c2006-10-15 20:37:38 +00006641dict_free(d, recurse)
6642 dict_T *d;
6643 int recurse; /* Free Lists and Dictionaries recursively. */
Bram Moolenaar8c711452005-01-14 21:53:12 +00006644{
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006645 int todo;
Bram Moolenaar33570922005-01-25 22:26:29 +00006646 hashitem_T *hi;
Bram Moolenaard9fba312005-06-26 22:34:35 +00006647 dictitem_T *di;
Bram Moolenaar8c711452005-01-14 21:53:12 +00006648
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006649 /* Remove the dict from the list of dicts for garbage collection. */
6650 if (d->dv_used_prev == NULL)
6651 first_dict = d->dv_used_next;
6652 else
6653 d->dv_used_prev->dv_used_next = d->dv_used_next;
6654 if (d->dv_used_next != NULL)
6655 d->dv_used_next->dv_used_prev = d->dv_used_prev;
6656
6657 /* Lock the hashtab, we don't want it to resize while freeing items. */
Bram Moolenaard9fba312005-06-26 22:34:35 +00006658 hash_lock(&d->dv_hashtab);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006659 todo = (int)d->dv_hashtab.ht_used;
Bram Moolenaar33570922005-01-25 22:26:29 +00006660 for (hi = d->dv_hashtab.ht_array; todo > 0; ++hi)
Bram Moolenaar8c711452005-01-14 21:53:12 +00006661 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006662 if (!HASHITEM_EMPTY(hi))
6663 {
Bram Moolenaard9fba312005-06-26 22:34:35 +00006664 /* Remove the item before deleting it, just in case there is
6665 * something recursive causing trouble. */
6666 di = HI2DI(hi);
6667 hash_remove(&d->dv_hashtab, hi);
Bram Moolenaar685295c2006-10-15 20:37:38 +00006668 if (recurse || (di->di_tv.v_type != VAR_LIST
6669 && di->di_tv.v_type != VAR_DICT))
6670 clear_tv(&di->di_tv);
6671 vim_free(di);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006672 --todo;
6673 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00006674 }
Bram Moolenaar33570922005-01-25 22:26:29 +00006675 hash_clear(&d->dv_hashtab);
Bram Moolenaar8c711452005-01-14 21:53:12 +00006676 vim_free(d);
6677}
6678
6679/*
6680 * Allocate a Dictionary item.
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006681 * The "key" is copied to the new item.
6682 * Note that the value of the item "di_tv" still needs to be initialized!
6683 * Returns NULL when out of memory.
Bram Moolenaar8c711452005-01-14 21:53:12 +00006684 */
Bram Moolenaar33570922005-01-25 22:26:29 +00006685 static dictitem_T *
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006686dictitem_alloc(key)
6687 char_u *key;
Bram Moolenaar8c711452005-01-14 21:53:12 +00006688{
Bram Moolenaar33570922005-01-25 22:26:29 +00006689 dictitem_T *di;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006690
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006691 di = (dictitem_T *)alloc((unsigned)(sizeof(dictitem_T) + STRLEN(key)));
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006692 if (di != NULL)
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00006693 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006694 STRCPY(di->di_key, key);
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00006695 di->di_flags = 0;
6696 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006697 return di;
Bram Moolenaar8c711452005-01-14 21:53:12 +00006698}
6699
6700/*
Bram Moolenaare9a41262005-01-15 22:18:47 +00006701 * Make a copy of a Dictionary item.
6702 */
Bram Moolenaar33570922005-01-25 22:26:29 +00006703 static dictitem_T *
Bram Moolenaare9a41262005-01-15 22:18:47 +00006704dictitem_copy(org)
Bram Moolenaar33570922005-01-25 22:26:29 +00006705 dictitem_T *org;
Bram Moolenaare9a41262005-01-15 22:18:47 +00006706{
Bram Moolenaar33570922005-01-25 22:26:29 +00006707 dictitem_T *di;
Bram Moolenaare9a41262005-01-15 22:18:47 +00006708
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006709 di = (dictitem_T *)alloc((unsigned)(sizeof(dictitem_T)
6710 + STRLEN(org->di_key)));
Bram Moolenaare9a41262005-01-15 22:18:47 +00006711 if (di != NULL)
6712 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006713 STRCPY(di->di_key, org->di_key);
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00006714 di->di_flags = 0;
Bram Moolenaare9a41262005-01-15 22:18:47 +00006715 copy_tv(&org->di_tv, &di->di_tv);
6716 }
6717 return di;
6718}
6719
6720/*
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006721 * Remove item "item" from Dictionary "dict" and free it.
6722 */
6723 static void
6724dictitem_remove(dict, item)
Bram Moolenaar33570922005-01-25 22:26:29 +00006725 dict_T *dict;
6726 dictitem_T *item;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006727{
Bram Moolenaar33570922005-01-25 22:26:29 +00006728 hashitem_T *hi;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006729
Bram Moolenaar33570922005-01-25 22:26:29 +00006730 hi = hash_find(&dict->dv_hashtab, item->di_key);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006731 if (HASHITEM_EMPTY(hi))
6732 EMSG2(_(e_intern2), "dictitem_remove()");
6733 else
Bram Moolenaar33570922005-01-25 22:26:29 +00006734 hash_remove(&dict->dv_hashtab, hi);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006735 dictitem_free(item);
6736}
6737
6738/*
Bram Moolenaar8c711452005-01-14 21:53:12 +00006739 * Free a dict item. Also clears the value.
6740 */
6741 static void
6742dictitem_free(item)
Bram Moolenaar33570922005-01-25 22:26:29 +00006743 dictitem_T *item;
Bram Moolenaar8c711452005-01-14 21:53:12 +00006744{
Bram Moolenaar8c711452005-01-14 21:53:12 +00006745 clear_tv(&item->di_tv);
6746 vim_free(item);
6747}
6748
6749/*
Bram Moolenaare9a41262005-01-15 22:18:47 +00006750 * Make a copy of dict "d". Shallow if "deep" is FALSE.
6751 * The refcount of the new dict is set to 1.
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006752 * See item_copy() for "copyID".
Bram Moolenaare9a41262005-01-15 22:18:47 +00006753 * Returns NULL when out of memory.
6754 */
Bram Moolenaar33570922005-01-25 22:26:29 +00006755 static dict_T *
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006756dict_copy(orig, deep, copyID)
Bram Moolenaar33570922005-01-25 22:26:29 +00006757 dict_T *orig;
Bram Moolenaare9a41262005-01-15 22:18:47 +00006758 int deep;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006759 int copyID;
Bram Moolenaare9a41262005-01-15 22:18:47 +00006760{
Bram Moolenaar33570922005-01-25 22:26:29 +00006761 dict_T *copy;
6762 dictitem_T *di;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006763 int todo;
Bram Moolenaar33570922005-01-25 22:26:29 +00006764 hashitem_T *hi;
Bram Moolenaare9a41262005-01-15 22:18:47 +00006765
6766 if (orig == NULL)
6767 return NULL;
6768
6769 copy = dict_alloc();
6770 if (copy != NULL)
6771 {
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006772 if (copyID != 0)
6773 {
6774 orig->dv_copyID = copyID;
6775 orig->dv_copydict = copy;
6776 }
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006777 todo = (int)orig->dv_hashtab.ht_used;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006778 for (hi = orig->dv_hashtab.ht_array; todo > 0 && !got_int; ++hi)
Bram Moolenaare9a41262005-01-15 22:18:47 +00006779 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006780 if (!HASHITEM_EMPTY(hi))
Bram Moolenaare9a41262005-01-15 22:18:47 +00006781 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006782 --todo;
6783
6784 di = dictitem_alloc(hi->hi_key);
6785 if (di == NULL)
6786 break;
6787 if (deep)
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006788 {
6789 if (item_copy(&HI2DI(hi)->di_tv, &di->di_tv, deep,
6790 copyID) == FAIL)
6791 {
6792 vim_free(di);
6793 break;
6794 }
6795 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006796 else
6797 copy_tv(&HI2DI(hi)->di_tv, &di->di_tv);
6798 if (dict_add(copy, di) == FAIL)
6799 {
6800 dictitem_free(di);
6801 break;
6802 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00006803 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00006804 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006805
Bram Moolenaare9a41262005-01-15 22:18:47 +00006806 ++copy->dv_refcount;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006807 if (todo > 0)
6808 {
6809 dict_unref(copy);
6810 copy = NULL;
6811 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00006812 }
6813
6814 return copy;
6815}
6816
6817/*
Bram Moolenaar8c711452005-01-14 21:53:12 +00006818 * Add item "item" to Dictionary "d".
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006819 * Returns FAIL when out of memory and when key already existed.
Bram Moolenaar8c711452005-01-14 21:53:12 +00006820 */
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006821 static int
Bram Moolenaar8c711452005-01-14 21:53:12 +00006822dict_add(d, item)
Bram Moolenaar33570922005-01-25 22:26:29 +00006823 dict_T *d;
6824 dictitem_T *item;
Bram Moolenaar8c711452005-01-14 21:53:12 +00006825{
Bram Moolenaar33570922005-01-25 22:26:29 +00006826 return hash_add(&d->dv_hashtab, item->di_key);
Bram Moolenaar8c711452005-01-14 21:53:12 +00006827}
6828
Bram Moolenaar8c711452005-01-14 21:53:12 +00006829/*
Bram Moolenaar05159a02005-02-26 23:04:13 +00006830 * Add a number or string entry to dictionary "d".
6831 * When "str" is NULL use number "nr", otherwise use "str".
6832 * Returns FAIL when out of memory and when key already exists.
6833 */
6834 int
6835dict_add_nr_str(d, key, nr, str)
6836 dict_T *d;
6837 char *key;
6838 long nr;
6839 char_u *str;
6840{
6841 dictitem_T *item;
6842
6843 item = dictitem_alloc((char_u *)key);
6844 if (item == NULL)
6845 return FAIL;
6846 item->di_tv.v_lock = 0;
6847 if (str == NULL)
6848 {
6849 item->di_tv.v_type = VAR_NUMBER;
6850 item->di_tv.vval.v_number = nr;
6851 }
6852 else
6853 {
6854 item->di_tv.v_type = VAR_STRING;
6855 item->di_tv.vval.v_string = vim_strsave(str);
6856 }
6857 if (dict_add(d, item) == FAIL)
6858 {
6859 dictitem_free(item);
6860 return FAIL;
6861 }
6862 return OK;
6863}
6864
6865/*
Bram Moolenaare9a41262005-01-15 22:18:47 +00006866 * Get the number of items in a Dictionary.
6867 */
6868 static long
6869dict_len(d)
Bram Moolenaar33570922005-01-25 22:26:29 +00006870 dict_T *d;
Bram Moolenaare9a41262005-01-15 22:18:47 +00006871{
Bram Moolenaare9a41262005-01-15 22:18:47 +00006872 if (d == NULL)
6873 return 0L;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006874 return (long)d->dv_hashtab.ht_used;
Bram Moolenaare9a41262005-01-15 22:18:47 +00006875}
6876
6877/*
Bram Moolenaar8c711452005-01-14 21:53:12 +00006878 * Find item "key[len]" in Dictionary "d".
6879 * If "len" is negative use strlen(key).
6880 * Returns NULL when not found.
6881 */
Bram Moolenaar33570922005-01-25 22:26:29 +00006882 static dictitem_T *
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006883dict_find(d, key, len)
Bram Moolenaar33570922005-01-25 22:26:29 +00006884 dict_T *d;
Bram Moolenaar8c711452005-01-14 21:53:12 +00006885 char_u *key;
6886 int len;
6887{
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006888#define AKEYLEN 200
6889 char_u buf[AKEYLEN];
6890 char_u *akey;
6891 char_u *tofree = NULL;
Bram Moolenaar33570922005-01-25 22:26:29 +00006892 hashitem_T *hi;
Bram Moolenaar8c711452005-01-14 21:53:12 +00006893
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006894 if (len < 0)
6895 akey = key;
6896 else if (len >= AKEYLEN)
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00006897 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006898 tofree = akey = vim_strnsave(key, len);
6899 if (akey == NULL)
6900 return NULL;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00006901 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006902 else
6903 {
6904 /* Avoid a malloc/free by using buf[]. */
Bram Moolenaarce0842a2005-07-18 21:58:11 +00006905 vim_strncpy(buf, key, len);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006906 akey = buf;
6907 }
6908
Bram Moolenaar33570922005-01-25 22:26:29 +00006909 hi = hash_find(&d->dv_hashtab, akey);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006910 vim_free(tofree);
6911 if (HASHITEM_EMPTY(hi))
6912 return NULL;
6913 return HI2DI(hi);
Bram Moolenaar8c711452005-01-14 21:53:12 +00006914}
6915
6916/*
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00006917 * Get a string item from a dictionary.
6918 * When "save" is TRUE allocate memory for it.
Bram Moolenaar2641f772005-03-25 21:58:17 +00006919 * Returns NULL if the entry doesn't exist or out of memory.
6920 */
6921 char_u *
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00006922get_dict_string(d, key, save)
Bram Moolenaar2641f772005-03-25 21:58:17 +00006923 dict_T *d;
6924 char_u *key;
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00006925 int save;
Bram Moolenaar2641f772005-03-25 21:58:17 +00006926{
6927 dictitem_T *di;
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00006928 char_u *s;
Bram Moolenaar2641f772005-03-25 21:58:17 +00006929
6930 di = dict_find(d, key, -1);
6931 if (di == NULL)
6932 return NULL;
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00006933 s = get_tv_string(&di->di_tv);
6934 if (save && s != NULL)
6935 s = vim_strsave(s);
6936 return s;
Bram Moolenaar2641f772005-03-25 21:58:17 +00006937}
6938
6939/*
6940 * Get a number item from a dictionary.
6941 * Returns 0 if the entry doesn't exist or out of memory.
6942 */
6943 long
6944get_dict_number(d, key)
6945 dict_T *d;
6946 char_u *key;
6947{
6948 dictitem_T *di;
6949
6950 di = dict_find(d, key, -1);
6951 if (di == NULL)
6952 return 0;
6953 return get_tv_number(&di->di_tv);
6954}
6955
6956/*
Bram Moolenaar8c711452005-01-14 21:53:12 +00006957 * Return an allocated string with the string representation of a Dictionary.
6958 * May return NULL.
6959 */
6960 static char_u *
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00006961dict2string(tv, copyID)
Bram Moolenaar33570922005-01-25 22:26:29 +00006962 typval_T *tv;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00006963 int copyID;
Bram Moolenaar8c711452005-01-14 21:53:12 +00006964{
6965 garray_T ga;
6966 int first = TRUE;
6967 char_u *tofree;
6968 char_u numbuf[NUMBUFLEN];
Bram Moolenaar33570922005-01-25 22:26:29 +00006969 hashitem_T *hi;
Bram Moolenaar8c711452005-01-14 21:53:12 +00006970 char_u *s;
Bram Moolenaar33570922005-01-25 22:26:29 +00006971 dict_T *d;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006972 int todo;
Bram Moolenaar8c711452005-01-14 21:53:12 +00006973
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006974 if ((d = tv->vval.v_dict) == NULL)
Bram Moolenaar8c711452005-01-14 21:53:12 +00006975 return NULL;
6976 ga_init2(&ga, (int)sizeof(char), 80);
6977 ga_append(&ga, '{');
6978
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006979 todo = (int)d->dv_hashtab.ht_used;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006980 for (hi = d->dv_hashtab.ht_array; todo > 0 && !got_int; ++hi)
Bram Moolenaar8c711452005-01-14 21:53:12 +00006981 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006982 if (!HASHITEM_EMPTY(hi))
Bram Moolenaar8c711452005-01-14 21:53:12 +00006983 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006984 --todo;
6985
6986 if (first)
6987 first = FALSE;
6988 else
6989 ga_concat(&ga, (char_u *)", ");
6990
6991 tofree = string_quote(hi->hi_key, FALSE);
6992 if (tofree != NULL)
6993 {
6994 ga_concat(&ga, tofree);
6995 vim_free(tofree);
6996 }
6997 ga_concat(&ga, (char_u *)": ");
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00006998 s = tv2string(&HI2DI(hi)->di_tv, &tofree, numbuf, copyID);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006999 if (s != NULL)
7000 ga_concat(&ga, s);
Bram Moolenaar8c711452005-01-14 21:53:12 +00007001 vim_free(tofree);
Bram Moolenaar81bf7082005-02-12 14:31:42 +00007002 if (s == NULL)
7003 break;
Bram Moolenaar8c711452005-01-14 21:53:12 +00007004 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00007005 }
Bram Moolenaar81bf7082005-02-12 14:31:42 +00007006 if (todo > 0)
7007 {
7008 vim_free(ga.ga_data);
7009 return NULL;
7010 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00007011
7012 ga_append(&ga, '}');
7013 ga_append(&ga, NUL);
7014 return (char_u *)ga.ga_data;
7015}
7016
7017/*
7018 * Allocate a variable for a Dictionary and fill it from "*arg".
7019 * Return OK or FAIL. Returns NOTDONE for {expr}.
7020 */
7021 static int
7022get_dict_tv(arg, rettv, evaluate)
7023 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00007024 typval_T *rettv;
Bram Moolenaar8c711452005-01-14 21:53:12 +00007025 int evaluate;
7026{
Bram Moolenaar33570922005-01-25 22:26:29 +00007027 dict_T *d = NULL;
7028 typval_T tvkey;
7029 typval_T tv;
Bram Moolenaarad6c2272007-09-17 20:21:33 +00007030 char_u *key = NULL;
Bram Moolenaar33570922005-01-25 22:26:29 +00007031 dictitem_T *item;
Bram Moolenaar8c711452005-01-14 21:53:12 +00007032 char_u *start = skipwhite(*arg + 1);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007033 char_u buf[NUMBUFLEN];
Bram Moolenaar8c711452005-01-14 21:53:12 +00007034
7035 /*
7036 * First check if it's not a curly-braces thing: {expr}.
7037 * Must do this without evaluating, otherwise a function may be called
7038 * twice. Unfortunately this means we need to call eval1() twice for the
7039 * first item.
Bram Moolenaare9a41262005-01-15 22:18:47 +00007040 * But {} is an empty Dictionary.
Bram Moolenaar8c711452005-01-14 21:53:12 +00007041 */
Bram Moolenaare9a41262005-01-15 22:18:47 +00007042 if (*start != '}')
7043 {
7044 if (eval1(&start, &tv, FALSE) == FAIL) /* recursive! */
7045 return FAIL;
7046 if (*start == '}')
7047 return NOTDONE;
7048 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00007049
7050 if (evaluate)
7051 {
7052 d = dict_alloc();
7053 if (d == NULL)
7054 return FAIL;
7055 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007056 tvkey.v_type = VAR_UNKNOWN;
7057 tv.v_type = VAR_UNKNOWN;
Bram Moolenaar8c711452005-01-14 21:53:12 +00007058
7059 *arg = skipwhite(*arg + 1);
7060 while (**arg != '}' && **arg != NUL)
7061 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007062 if (eval1(arg, &tvkey, evaluate) == FAIL) /* recursive! */
Bram Moolenaar8c711452005-01-14 21:53:12 +00007063 goto failret;
7064 if (**arg != ':')
7065 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00007066 EMSG2(_("E720: Missing colon in Dictionary: %s"), *arg);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007067 clear_tv(&tvkey);
Bram Moolenaar8c711452005-01-14 21:53:12 +00007068 goto failret;
7069 }
Bram Moolenaar037cc642007-09-13 18:40:54 +00007070 if (evaluate)
Bram Moolenaar8c711452005-01-14 21:53:12 +00007071 {
Bram Moolenaar037cc642007-09-13 18:40:54 +00007072 key = get_tv_string_buf_chk(&tvkey, buf);
7073 if (key == NULL || *key == NUL)
7074 {
7075 /* "key" is NULL when get_tv_string_buf_chk() gave an errmsg */
7076 if (key != NULL)
7077 EMSG(_(e_emptykey));
7078 clear_tv(&tvkey);
7079 goto failret;
7080 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00007081 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00007082
7083 *arg = skipwhite(*arg + 1);
7084 if (eval1(arg, &tv, evaluate) == FAIL) /* recursive! */
7085 {
Bram Moolenaar037cc642007-09-13 18:40:54 +00007086 if (evaluate)
7087 clear_tv(&tvkey);
Bram Moolenaar8c711452005-01-14 21:53:12 +00007088 goto failret;
7089 }
7090 if (evaluate)
7091 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007092 item = dict_find(d, key, -1);
Bram Moolenaar8c711452005-01-14 21:53:12 +00007093 if (item != NULL)
7094 {
Bram Moolenaarb982ca52005-03-28 21:02:15 +00007095 EMSG2(_("E721: Duplicate key in Dictionary: \"%s\""), key);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007096 clear_tv(&tvkey);
Bram Moolenaar8c711452005-01-14 21:53:12 +00007097 clear_tv(&tv);
7098 goto failret;
7099 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007100 item = dictitem_alloc(key);
7101 clear_tv(&tvkey);
7102 if (item != NULL)
Bram Moolenaar8c711452005-01-14 21:53:12 +00007103 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00007104 item->di_tv = tv;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00007105 item->di_tv.v_lock = 0;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007106 if (dict_add(d, item) == FAIL)
7107 dictitem_free(item);
Bram Moolenaar8c711452005-01-14 21:53:12 +00007108 }
7109 }
7110
7111 if (**arg == '}')
7112 break;
7113 if (**arg != ',')
7114 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00007115 EMSG2(_("E722: Missing comma in Dictionary: %s"), *arg);
Bram Moolenaar8c711452005-01-14 21:53:12 +00007116 goto failret;
7117 }
7118 *arg = skipwhite(*arg + 1);
7119 }
7120
7121 if (**arg != '}')
7122 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00007123 EMSG2(_("E723: Missing end of Dictionary '}': %s"), *arg);
Bram Moolenaar8c711452005-01-14 21:53:12 +00007124failret:
7125 if (evaluate)
Bram Moolenaar685295c2006-10-15 20:37:38 +00007126 dict_free(d, TRUE);
Bram Moolenaar8c711452005-01-14 21:53:12 +00007127 return FAIL;
7128 }
7129
7130 *arg = skipwhite(*arg + 1);
7131 if (evaluate)
7132 {
7133 rettv->v_type = VAR_DICT;
7134 rettv->vval.v_dict = d;
7135 ++d->dv_refcount;
7136 }
7137
7138 return OK;
7139}
7140
Bram Moolenaar8c711452005-01-14 21:53:12 +00007141/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007142 * Return a string with the string representation of a variable.
7143 * If the memory is allocated "tofree" is set to it, otherwise NULL.
Bram Moolenaar8a283e52005-01-06 23:28:25 +00007144 * "numbuf" is used for a number.
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007145 * Does not put quotes around strings, as ":echo" displays values.
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007146 * When "copyID" is not NULL replace recursive lists and dicts with "...".
Bram Moolenaar92c5aba2007-08-14 20:29:31 +00007147 * May return NULL.
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007148 */
7149 static char_u *
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007150echo_string(tv, tofree, numbuf, copyID)
Bram Moolenaar33570922005-01-25 22:26:29 +00007151 typval_T *tv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007152 char_u **tofree;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00007153 char_u *numbuf;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007154 int copyID;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007155{
Bram Moolenaare9a41262005-01-15 22:18:47 +00007156 static int recurse = 0;
7157 char_u *r = NULL;
7158
Bram Moolenaar33570922005-01-25 22:26:29 +00007159 if (recurse >= DICT_MAXNEST)
Bram Moolenaare9a41262005-01-15 22:18:47 +00007160 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00007161 EMSG(_("E724: variable nested too deep for displaying"));
Bram Moolenaare9a41262005-01-15 22:18:47 +00007162 *tofree = NULL;
7163 return NULL;
7164 }
7165 ++recurse;
7166
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007167 switch (tv->v_type)
7168 {
7169 case VAR_FUNC:
7170 *tofree = NULL;
Bram Moolenaare9a41262005-01-15 22:18:47 +00007171 r = tv->vval.v_string;
7172 break;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007173
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007174 case VAR_LIST:
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007175 if (tv->vval.v_list == NULL)
7176 {
7177 *tofree = NULL;
7178 r = NULL;
7179 }
7180 else if (copyID != 0 && tv->vval.v_list->lv_copyID == copyID)
7181 {
7182 *tofree = NULL;
7183 r = (char_u *)"[...]";
7184 }
7185 else
7186 {
7187 tv->vval.v_list->lv_copyID = copyID;
7188 *tofree = list2string(tv, copyID);
7189 r = *tofree;
7190 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00007191 break;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007192
Bram Moolenaar8c711452005-01-14 21:53:12 +00007193 case VAR_DICT:
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007194 if (tv->vval.v_dict == NULL)
7195 {
7196 *tofree = NULL;
7197 r = NULL;
7198 }
7199 else if (copyID != 0 && tv->vval.v_dict->dv_copyID == copyID)
7200 {
7201 *tofree = NULL;
7202 r = (char_u *)"{...}";
7203 }
7204 else
7205 {
7206 tv->vval.v_dict->dv_copyID = copyID;
7207 *tofree = dict2string(tv, copyID);
7208 r = *tofree;
7209 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00007210 break;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007211
Bram Moolenaarc70646c2005-01-04 21:52:38 +00007212 case VAR_STRING:
7213 case VAR_NUMBER:
Bram Moolenaare9a41262005-01-15 22:18:47 +00007214 *tofree = NULL;
7215 r = get_tv_string_buf(tv, numbuf);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007216 break;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007217
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007218#ifdef FEAT_FLOAT
7219 case VAR_FLOAT:
7220 *tofree = NULL;
7221 vim_snprintf((char *)numbuf, NUMBUFLEN, "%g", tv->vval.v_float);
7222 r = numbuf;
7223 break;
7224#endif
7225
Bram Moolenaarc70646c2005-01-04 21:52:38 +00007226 default:
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007227 EMSG2(_(e_intern2), "echo_string()");
Bram Moolenaare9a41262005-01-15 22:18:47 +00007228 *tofree = NULL;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007229 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00007230
7231 --recurse;
7232 return r;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007233}
7234
7235/*
7236 * Return a string with the string representation of a variable.
7237 * If the memory is allocated "tofree" is set to it, otherwise NULL.
7238 * "numbuf" is used for a number.
7239 * Puts quotes around strings, so that they can be parsed back by eval().
Bram Moolenaar92c5aba2007-08-14 20:29:31 +00007240 * May return NULL.
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007241 */
7242 static char_u *
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007243tv2string(tv, tofree, numbuf, copyID)
Bram Moolenaar33570922005-01-25 22:26:29 +00007244 typval_T *tv;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007245 char_u **tofree;
7246 char_u *numbuf;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007247 int copyID;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007248{
7249 switch (tv->v_type)
7250 {
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007251 case VAR_FUNC:
7252 *tofree = string_quote(tv->vval.v_string, TRUE);
7253 return *tofree;
7254 case VAR_STRING:
7255 *tofree = string_quote(tv->vval.v_string, FALSE);
7256 return *tofree;
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007257#ifdef FEAT_FLOAT
7258 case VAR_FLOAT:
7259 *tofree = NULL;
7260 vim_snprintf((char *)numbuf, NUMBUFLEN - 1, "%g", tv->vval.v_float);
7261 return numbuf;
7262#endif
Bram Moolenaare9a41262005-01-15 22:18:47 +00007263 case VAR_NUMBER:
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007264 case VAR_LIST:
Bram Moolenaar8c711452005-01-14 21:53:12 +00007265 case VAR_DICT:
Bram Moolenaare9a41262005-01-15 22:18:47 +00007266 break;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007267 default:
Bram Moolenaarc70646c2005-01-04 21:52:38 +00007268 EMSG2(_(e_intern2), "tv2string()");
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007269 }
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007270 return echo_string(tv, tofree, numbuf, copyID);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007271}
7272
7273/*
Bram Moolenaar33570922005-01-25 22:26:29 +00007274 * Return string "str" in ' quotes, doubling ' characters.
7275 * If "str" is NULL an empty string is assumed.
Bram Moolenaar8c711452005-01-14 21:53:12 +00007276 * If "function" is TRUE make it function('string').
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007277 */
7278 static char_u *
7279string_quote(str, function)
7280 char_u *str;
7281 int function;
7282{
Bram Moolenaar33570922005-01-25 22:26:29 +00007283 unsigned len;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007284 char_u *p, *r, *s;
7285
Bram Moolenaar33570922005-01-25 22:26:29 +00007286 len = (function ? 13 : 3);
7287 if (str != NULL)
7288 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007289 len += (unsigned)STRLEN(str);
Bram Moolenaar33570922005-01-25 22:26:29 +00007290 for (p = str; *p != NUL; mb_ptr_adv(p))
7291 if (*p == '\'')
7292 ++len;
7293 }
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007294 s = r = alloc(len);
7295 if (r != NULL)
7296 {
7297 if (function)
7298 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00007299 STRCPY(r, "function('");
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007300 r += 10;
7301 }
7302 else
Bram Moolenaar8c711452005-01-14 21:53:12 +00007303 *r++ = '\'';
Bram Moolenaar33570922005-01-25 22:26:29 +00007304 if (str != NULL)
7305 for (p = str; *p != NUL; )
7306 {
7307 if (*p == '\'')
7308 *r++ = '\'';
7309 MB_COPY_CHAR(p, r);
7310 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00007311 *r++ = '\'';
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007312 if (function)
7313 *r++ = ')';
7314 *r++ = NUL;
7315 }
7316 return s;
7317}
7318
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007319#ifdef FEAT_FLOAT
7320/*
7321 * Convert the string "text" to a floating point number.
7322 * This uses strtod(). setlocale(LC_NUMERIC, "C") has been used to make sure
7323 * this always uses a decimal point.
7324 * Returns the length of the text that was consumed.
7325 */
7326 static int
7327string2float(text, value)
7328 char_u *text;
7329 float_T *value; /* result stored here */
7330{
7331 char *s = (char *)text;
7332 float_T f;
7333
7334 f = strtod(s, &s);
7335 *value = f;
7336 return (int)((char_u *)s - text);
7337}
7338#endif
7339
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007340/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00007341 * Get the value of an environment variable.
7342 * "arg" is pointing to the '$'. It is advanced to after the name.
7343 * If the environment variable was not set, silently assume it is empty.
7344 * Always return OK.
7345 */
7346 static int
Bram Moolenaarc70646c2005-01-04 21:52:38 +00007347get_env_tv(arg, rettv, evaluate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007348 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00007349 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007350 int evaluate;
7351{
7352 char_u *string = NULL;
7353 int len;
7354 int cc;
7355 char_u *name;
Bram Moolenaar05159a02005-02-26 23:04:13 +00007356 int mustfree = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007357
7358 ++*arg;
7359 name = *arg;
7360 len = get_env_len(arg);
7361 if (evaluate)
7362 {
7363 if (len != 0)
7364 {
7365 cc = name[len];
7366 name[len] = NUL;
Bram Moolenaar05159a02005-02-26 23:04:13 +00007367 /* first try vim_getenv(), fast for normal environment vars */
7368 string = vim_getenv(name, &mustfree);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007369 if (string != NULL && *string != NUL)
Bram Moolenaar05159a02005-02-26 23:04:13 +00007370 {
7371 if (!mustfree)
7372 string = vim_strsave(string);
7373 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007374 else
7375 {
Bram Moolenaar05159a02005-02-26 23:04:13 +00007376 if (mustfree)
7377 vim_free(string);
7378
Bram Moolenaar071d4272004-06-13 20:20:40 +00007379 /* next try expanding things like $VIM and ${HOME} */
7380 string = expand_env_save(name - 1);
7381 if (string != NULL && *string == '$')
7382 {
7383 vim_free(string);
7384 string = NULL;
7385 }
7386 }
7387 name[len] = cc;
7388 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00007389 rettv->v_type = VAR_STRING;
7390 rettv->vval.v_string = string;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007391 }
7392
7393 return OK;
7394}
7395
7396/*
7397 * Array with names and number of arguments of all internal functions
7398 * MUST BE KEPT SORTED IN strcmp() ORDER FOR BINARY SEARCH!
7399 */
7400static struct fst
7401{
7402 char *f_name; /* function name */
7403 char f_min_argc; /* minimal number of arguments */
7404 char f_max_argc; /* maximal number of arguments */
Bram Moolenaar33570922005-01-25 22:26:29 +00007405 void (*f_func) __ARGS((typval_T *args, typval_T *rvar));
Bram Moolenaarbae0c162007-05-10 19:30:25 +00007406 /* implementation of function */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007407} functions[] =
7408{
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007409#ifdef FEAT_FLOAT
7410 {"abs", 1, 1, f_abs},
7411#endif
Bram Moolenaar0d660222005-01-07 21:51:51 +00007412 {"add", 2, 2, f_add},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007413 {"append", 2, 2, f_append},
7414 {"argc", 0, 0, f_argc},
7415 {"argidx", 0, 0, f_argidx},
Bram Moolenaare2f98b92006-03-29 21:18:24 +00007416 {"argv", 0, 1, f_argv},
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007417#ifdef FEAT_FLOAT
7418 {"atan", 1, 1, f_atan},
7419#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007420 {"browse", 4, 4, f_browse},
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00007421 {"browsedir", 2, 2, f_browsedir},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007422 {"bufexists", 1, 1, f_bufexists},
7423 {"buffer_exists", 1, 1, f_bufexists}, /* obsolete */
7424 {"buffer_name", 1, 1, f_bufname}, /* obsolete */
7425 {"buffer_number", 1, 1, f_bufnr}, /* obsolete */
7426 {"buflisted", 1, 1, f_buflisted},
7427 {"bufloaded", 1, 1, f_bufloaded},
7428 {"bufname", 1, 1, f_bufname},
Bram Moolenaar0e34f622006-03-03 23:00:03 +00007429 {"bufnr", 1, 2, f_bufnr},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007430 {"bufwinnr", 1, 1, f_bufwinnr},
7431 {"byte2line", 1, 1, f_byte2line},
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00007432 {"byteidx", 2, 2, f_byteidx},
Bram Moolenaare9a41262005-01-15 22:18:47 +00007433 {"call", 2, 3, f_call},
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007434#ifdef FEAT_FLOAT
7435 {"ceil", 1, 1, f_ceil},
7436#endif
Bram Moolenaarf0acfce2006-03-17 23:21:19 +00007437 {"changenr", 0, 0, f_changenr},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007438 {"char2nr", 1, 1, f_char2nr},
7439 {"cindent", 1, 1, f_cindent},
Bram Moolenaar6ee10162007-07-26 20:58:42 +00007440 {"clearmatches", 0, 0, f_clearmatches},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007441 {"col", 1, 1, f_col},
Bram Moolenaar572cb562005-08-05 21:35:02 +00007442#if defined(FEAT_INS_EXPAND)
Bram Moolenaarade00832006-03-10 21:46:58 +00007443 {"complete", 2, 2, f_complete},
Bram Moolenaar572cb562005-08-05 21:35:02 +00007444 {"complete_add", 1, 1, f_complete_add},
7445 {"complete_check", 0, 0, f_complete_check},
7446#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007447 {"confirm", 1, 4, f_confirm},
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007448 {"copy", 1, 1, f_copy},
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007449#ifdef FEAT_FLOAT
7450 {"cos", 1, 1, f_cos},
7451#endif
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007452 {"count", 2, 4, f_count},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007453 {"cscope_connection",0,3, f_cscope_connection},
Bram Moolenaara5525202006-03-02 22:52:09 +00007454 {"cursor", 1, 3, f_cursor},
Bram Moolenaar81bf7082005-02-12 14:31:42 +00007455 {"deepcopy", 1, 2, f_deepcopy},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007456 {"delete", 1, 1, f_delete},
7457 {"did_filetype", 0, 0, f_did_filetype},
Bram Moolenaar47136d72004-10-12 20:02:24 +00007458 {"diff_filler", 1, 1, f_diff_filler},
7459 {"diff_hlID", 2, 2, f_diff_hlID},
Bram Moolenaare49b69a2005-01-08 16:11:57 +00007460 {"empty", 1, 1, f_empty},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007461 {"escape", 2, 2, f_escape},
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007462 {"eval", 1, 1, f_eval},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007463 {"eventhandler", 0, 0, f_eventhandler},
7464 {"executable", 1, 1, f_executable},
7465 {"exists", 1, 1, f_exists},
7466 {"expand", 1, 2, f_expand},
Bram Moolenaar8a283e52005-01-06 23:28:25 +00007467 {"extend", 2, 3, f_extend},
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00007468 {"feedkeys", 1, 2, f_feedkeys},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007469 {"file_readable", 1, 1, f_filereadable}, /* obsolete */
7470 {"filereadable", 1, 1, f_filereadable},
7471 {"filewritable", 1, 1, f_filewritable},
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007472 {"filter", 2, 2, f_filter},
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00007473 {"finddir", 1, 3, f_finddir},
7474 {"findfile", 1, 3, f_findfile},
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007475#ifdef FEAT_FLOAT
7476 {"float2nr", 1, 1, f_float2nr},
7477 {"floor", 1, 1, f_floor},
7478#endif
Bram Moolenaaraebaf892008-05-28 14:49:58 +00007479 {"fnameescape", 1, 1, f_fnameescape},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007480 {"fnamemodify", 2, 2, f_fnamemodify},
7481 {"foldclosed", 1, 1, f_foldclosed},
7482 {"foldclosedend", 1, 1, f_foldclosedend},
7483 {"foldlevel", 1, 1, f_foldlevel},
7484 {"foldtext", 0, 0, f_foldtext},
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00007485 {"foldtextresult", 1, 1, f_foldtextresult},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007486 {"foreground", 0, 0, f_foreground},
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007487 {"function", 1, 1, f_function},
Bram Moolenaar9d2c8c12007-09-25 16:00:00 +00007488 {"garbagecollect", 0, 1, f_garbagecollect},
Bram Moolenaar0d660222005-01-07 21:51:51 +00007489 {"get", 2, 3, f_get},
Bram Moolenaar80fc0432005-07-20 22:06:07 +00007490 {"getbufline", 2, 3, f_getbufline},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007491 {"getbufvar", 2, 2, f_getbufvar},
7492 {"getchar", 0, 1, f_getchar},
7493 {"getcharmod", 0, 0, f_getcharmod},
7494 {"getcmdline", 0, 0, f_getcmdline},
7495 {"getcmdpos", 0, 0, f_getcmdpos},
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00007496 {"getcmdtype", 0, 0, f_getcmdtype},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007497 {"getcwd", 0, 0, f_getcwd},
Bram Moolenaar46c9c732004-12-12 11:37:09 +00007498 {"getfontname", 0, 1, f_getfontname},
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00007499 {"getfperm", 1, 1, f_getfperm},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007500 {"getfsize", 1, 1, f_getfsize},
7501 {"getftime", 1, 1, f_getftime},
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00007502 {"getftype", 1, 1, f_getftype},
Bram Moolenaar0d660222005-01-07 21:51:51 +00007503 {"getline", 1, 2, f_getline},
Bram Moolenaar280f1262006-01-30 00:14:18 +00007504 {"getloclist", 1, 1, f_getqflist},
Bram Moolenaar2240aeb2007-07-27 19:33:14 +00007505 {"getmatches", 0, 0, f_getmatches},
Bram Moolenaar18081e32008-02-20 19:11:07 +00007506 {"getpid", 0, 0, f_getpid},
Bram Moolenaara5525202006-03-02 22:52:09 +00007507 {"getpos", 1, 1, f_getpos},
Bram Moolenaar2641f772005-03-25 21:58:17 +00007508 {"getqflist", 0, 0, f_getqflist},
Bram Moolenaar67fe1a12005-05-22 22:12:58 +00007509 {"getreg", 0, 2, f_getreg},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007510 {"getregtype", 0, 1, f_getregtype},
Bram Moolenaar99ebf042006-04-15 20:28:54 +00007511 {"gettabwinvar", 3, 3, f_gettabwinvar},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007512 {"getwinposx", 0, 0, f_getwinposx},
7513 {"getwinposy", 0, 0, f_getwinposy},
7514 {"getwinvar", 2, 2, f_getwinvar},
7515 {"glob", 1, 1, f_glob},
7516 {"globpath", 2, 2, f_globpath},
7517 {"has", 1, 1, f_has},
Bram Moolenaare9a41262005-01-15 22:18:47 +00007518 {"has_key", 2, 2, f_has_key},
Bram Moolenaard267b9c2007-04-26 15:06:45 +00007519 {"haslocaldir", 0, 0, f_haslocaldir},
Bram Moolenaar2c932302006-03-18 21:42:09 +00007520 {"hasmapto", 1, 3, f_hasmapto},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007521 {"highlightID", 1, 1, f_hlID}, /* obsolete */
7522 {"highlight_exists",1, 1, f_hlexists}, /* obsolete */
7523 {"histadd", 2, 2, f_histadd},
7524 {"histdel", 1, 2, f_histdel},
7525 {"histget", 1, 2, f_histget},
7526 {"histnr", 1, 1, f_histnr},
7527 {"hlID", 1, 1, f_hlID},
7528 {"hlexists", 1, 1, f_hlexists},
7529 {"hostname", 0, 0, f_hostname},
7530 {"iconv", 3, 3, f_iconv},
7531 {"indent", 1, 1, f_indent},
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007532 {"index", 2, 4, f_index},
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00007533 {"input", 1, 3, f_input},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007534 {"inputdialog", 1, 3, f_inputdialog},
Bram Moolenaar6efa2b32005-09-10 19:26:26 +00007535 {"inputlist", 1, 1, f_inputlist},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007536 {"inputrestore", 0, 0, f_inputrestore},
7537 {"inputsave", 0, 0, f_inputsave},
7538 {"inputsecret", 1, 2, f_inputsecret},
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007539 {"insert", 2, 3, f_insert},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007540 {"isdirectory", 1, 1, f_isdirectory},
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00007541 {"islocked", 1, 1, f_islocked},
Bram Moolenaar8c711452005-01-14 21:53:12 +00007542 {"items", 1, 1, f_items},
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007543 {"join", 1, 2, f_join},
Bram Moolenaar8c711452005-01-14 21:53:12 +00007544 {"keys", 1, 1, f_keys},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007545 {"last_buffer_nr", 0, 0, f_last_buffer_nr},/* obsolete */
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007546 {"len", 1, 1, f_len},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007547 {"libcall", 3, 3, f_libcall},
7548 {"libcallnr", 3, 3, f_libcallnr},
7549 {"line", 1, 1, f_line},
7550 {"line2byte", 1, 1, f_line2byte},
7551 {"lispindent", 1, 1, f_lispindent},
7552 {"localtime", 0, 0, f_localtime},
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007553#ifdef FEAT_FLOAT
7554 {"log10", 1, 1, f_log10},
7555#endif
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007556 {"map", 2, 2, f_map},
Bram Moolenaar2c932302006-03-18 21:42:09 +00007557 {"maparg", 1, 3, f_maparg},
7558 {"mapcheck", 1, 3, f_mapcheck},
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00007559 {"match", 2, 4, f_match},
Bram Moolenaar6ee10162007-07-26 20:58:42 +00007560 {"matchadd", 2, 4, f_matchadd},
Bram Moolenaar910f66f2006-04-05 20:41:53 +00007561 {"matcharg", 1, 1, f_matcharg},
Bram Moolenaar6ee10162007-07-26 20:58:42 +00007562 {"matchdelete", 1, 1, f_matchdelete},
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00007563 {"matchend", 2, 4, f_matchend},
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00007564 {"matchlist", 2, 4, f_matchlist},
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00007565 {"matchstr", 2, 4, f_matchstr},
Bram Moolenaar6cc16192005-01-08 21:49:45 +00007566 {"max", 1, 1, f_max},
7567 {"min", 1, 1, f_min},
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00007568#ifdef vim_mkdir
7569 {"mkdir", 1, 3, f_mkdir},
7570#endif
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007571 {"mode", 0, 1, f_mode},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007572 {"nextnonblank", 1, 1, f_nextnonblank},
7573 {"nr2char", 1, 1, f_nr2char},
Bram Moolenaar910f66f2006-04-05 20:41:53 +00007574 {"pathshorten", 1, 1, f_pathshorten},
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007575#ifdef FEAT_FLOAT
7576 {"pow", 2, 2, f_pow},
7577#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007578 {"prevnonblank", 1, 1, f_prevnonblank},
Bram Moolenaar4be06f92005-07-29 22:36:03 +00007579 {"printf", 2, 19, f_printf},
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007580 {"pumvisible", 0, 0, f_pumvisible},
Bram Moolenaar8c711452005-01-14 21:53:12 +00007581 {"range", 1, 3, f_range},
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00007582 {"readfile", 1, 3, f_readfile},
Bram Moolenaare580b0c2006-03-21 21:33:03 +00007583 {"reltime", 0, 2, f_reltime},
7584 {"reltimestr", 1, 1, f_reltimestr},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007585 {"remote_expr", 2, 3, f_remote_expr},
7586 {"remote_foreground", 1, 1, f_remote_foreground},
7587 {"remote_peek", 1, 2, f_remote_peek},
7588 {"remote_read", 1, 1, f_remote_read},
7589 {"remote_send", 2, 3, f_remote_send},
Bram Moolenaar8a283e52005-01-06 23:28:25 +00007590 {"remove", 2, 3, f_remove},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007591 {"rename", 2, 2, f_rename},
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00007592 {"repeat", 2, 2, f_repeat},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007593 {"resolve", 1, 1, f_resolve},
Bram Moolenaar0d660222005-01-07 21:51:51 +00007594 {"reverse", 1, 1, f_reverse},
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007595#ifdef FEAT_FLOAT
7596 {"round", 1, 1, f_round},
7597#endif
Bram Moolenaar76929292008-01-06 19:07:36 +00007598 {"search", 1, 4, f_search},
Bram Moolenaare6facf92005-09-13 21:22:27 +00007599 {"searchdecl", 1, 3, f_searchdecl},
Bram Moolenaar76929292008-01-06 19:07:36 +00007600 {"searchpair", 3, 7, f_searchpair},
7601 {"searchpairpos", 3, 7, f_searchpairpos},
7602 {"searchpos", 1, 4, f_searchpos},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007603 {"server2client", 2, 2, f_server2client},
7604 {"serverlist", 0, 0, f_serverlist},
7605 {"setbufvar", 3, 3, f_setbufvar},
7606 {"setcmdpos", 1, 1, f_setcmdpos},
7607 {"setline", 2, 2, f_setline},
Bram Moolenaar17c7c012006-01-26 22:25:15 +00007608 {"setloclist", 2, 3, f_setloclist},
Bram Moolenaar6ee10162007-07-26 20:58:42 +00007609 {"setmatches", 1, 1, f_setmatches},
Bram Moolenaar0e34f622006-03-03 23:00:03 +00007610 {"setpos", 2, 2, f_setpos},
Bram Moolenaarf4630b62005-05-20 21:31:17 +00007611 {"setqflist", 1, 2, f_setqflist},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007612 {"setreg", 2, 3, f_setreg},
Bram Moolenaar99ebf042006-04-15 20:28:54 +00007613 {"settabwinvar", 4, 4, f_settabwinvar},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007614 {"setwinvar", 3, 3, f_setwinvar},
Bram Moolenaar05bb9532008-07-04 09:44:11 +00007615 {"shellescape", 1, 2, f_shellescape},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007616 {"simplify", 1, 1, f_simplify},
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007617#ifdef FEAT_FLOAT
7618 {"sin", 1, 1, f_sin},
7619#endif
Bram Moolenaar0d660222005-01-07 21:51:51 +00007620 {"sort", 1, 2, f_sort},
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00007621 {"soundfold", 1, 1, f_soundfold},
Bram Moolenaar4463f292005-09-25 22:20:24 +00007622 {"spellbadword", 0, 1, f_spellbadword},
Bram Moolenaar69e0ff92005-09-30 21:23:56 +00007623 {"spellsuggest", 1, 3, f_spellsuggest},
Bram Moolenaar67fe1a12005-05-22 22:12:58 +00007624 {"split", 1, 3, f_split},
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007625#ifdef FEAT_FLOAT
7626 {"sqrt", 1, 1, f_sqrt},
7627 {"str2float", 1, 1, f_str2float},
7628#endif
Bram Moolenaar2c932302006-03-18 21:42:09 +00007629 {"str2nr", 1, 2, f_str2nr},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007630#ifdef HAVE_STRFTIME
7631 {"strftime", 1, 2, f_strftime},
7632#endif
Bram Moolenaar33570922005-01-25 22:26:29 +00007633 {"stridx", 2, 3, f_stridx},
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007634 {"string", 1, 1, f_string},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007635 {"strlen", 1, 1, f_strlen},
7636 {"strpart", 2, 3, f_strpart},
Bram Moolenaar532c7802005-01-27 14:44:31 +00007637 {"strridx", 2, 3, f_strridx},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007638 {"strtrans", 1, 1, f_strtrans},
7639 {"submatch", 1, 1, f_submatch},
7640 {"substitute", 4, 4, f_substitute},
7641 {"synID", 3, 3, f_synID},
7642 {"synIDattr", 2, 3, f_synIDattr},
7643 {"synIDtrans", 1, 1, f_synIDtrans},
Bram Moolenaar9d188ab2008-01-10 21:24:39 +00007644 {"synstack", 2, 2, f_synstack},
Bram Moolenaarc0197e22004-09-13 20:26:32 +00007645 {"system", 1, 2, f_system},
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00007646 {"tabpagebuflist", 0, 1, f_tabpagebuflist},
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00007647 {"tabpagenr", 0, 1, f_tabpagenr},
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00007648 {"tabpagewinnr", 1, 2, f_tabpagewinnr},
Bram Moolenaard43b6cf2005-09-09 19:53:42 +00007649 {"tagfiles", 0, 0, f_tagfiles},
Bram Moolenaar19a09a12005-03-04 23:39:37 +00007650 {"taglist", 1, 1, f_taglist},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007651 {"tempname", 0, 0, f_tempname},
Bram Moolenaard52d9742005-08-21 22:20:28 +00007652 {"test", 1, 1, f_test},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007653 {"tolower", 1, 1, f_tolower},
7654 {"toupper", 1, 1, f_toupper},
Bram Moolenaar8299df92004-07-10 09:47:34 +00007655 {"tr", 3, 3, f_tr},
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007656#ifdef FEAT_FLOAT
7657 {"trunc", 1, 1, f_trunc},
7658#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007659 {"type", 1, 1, f_type},
Bram Moolenaar8c711452005-01-14 21:53:12 +00007660 {"values", 1, 1, f_values},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007661 {"virtcol", 1, 1, f_virtcol},
7662 {"visualmode", 0, 1, f_visualmode},
7663 {"winbufnr", 1, 1, f_winbufnr},
7664 {"wincol", 0, 0, f_wincol},
7665 {"winheight", 1, 1, f_winheight},
7666 {"winline", 0, 0, f_winline},
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00007667 {"winnr", 0, 1, f_winnr},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007668 {"winrestcmd", 0, 0, f_winrestcmd},
Bram Moolenaar768b8c42006-03-04 21:58:33 +00007669 {"winrestview", 1, 1, f_winrestview},
7670 {"winsaveview", 0, 0, f_winsaveview},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007671 {"winwidth", 1, 1, f_winwidth},
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00007672 {"writefile", 2, 3, f_writefile},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007673};
7674
7675#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
7676
7677/*
7678 * Function given to ExpandGeneric() to obtain the list of internal
7679 * or user defined function names.
7680 */
7681 char_u *
7682get_function_name(xp, idx)
7683 expand_T *xp;
7684 int idx;
7685{
7686 static int intidx = -1;
7687 char_u *name;
7688
7689 if (idx == 0)
7690 intidx = -1;
7691 if (intidx < 0)
7692 {
7693 name = get_user_func_name(xp, idx);
7694 if (name != NULL)
7695 return name;
7696 }
7697 if (++intidx < (int)(sizeof(functions) / sizeof(struct fst)))
7698 {
7699 STRCPY(IObuff, functions[intidx].f_name);
7700 STRCAT(IObuff, "(");
7701 if (functions[intidx].f_max_argc == 0)
7702 STRCAT(IObuff, ")");
7703 return IObuff;
7704 }
7705
7706 return NULL;
7707}
7708
7709/*
7710 * Function given to ExpandGeneric() to obtain the list of internal or
7711 * user defined variable or function names.
7712 */
7713/*ARGSUSED*/
7714 char_u *
7715get_expr_name(xp, idx)
7716 expand_T *xp;
7717 int idx;
7718{
7719 static int intidx = -1;
7720 char_u *name;
7721
7722 if (idx == 0)
7723 intidx = -1;
7724 if (intidx < 0)
7725 {
7726 name = get_function_name(xp, idx);
7727 if (name != NULL)
7728 return name;
7729 }
7730 return get_user_var_name(xp, ++intidx);
7731}
7732
7733#endif /* FEAT_CMDL_COMPL */
7734
7735/*
7736 * Find internal function in table above.
7737 * Return index, or -1 if not found
7738 */
7739 static int
7740find_internal_func(name)
7741 char_u *name; /* name of the function */
7742{
7743 int first = 0;
7744 int last = (int)(sizeof(functions) / sizeof(struct fst)) - 1;
7745 int cmp;
7746 int x;
7747
7748 /*
7749 * Find the function name in the table. Binary search.
7750 */
7751 while (first <= last)
7752 {
7753 x = first + ((unsigned)(last - first) >> 1);
7754 cmp = STRCMP(name, functions[x].f_name);
7755 if (cmp < 0)
7756 last = x - 1;
7757 else if (cmp > 0)
7758 first = x + 1;
7759 else
7760 return x;
7761 }
7762 return -1;
7763}
7764
7765/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007766 * Check if "name" is a variable of type VAR_FUNC. If so, return the function
7767 * name it contains, otherwise return "name".
7768 */
7769 static char_u *
7770deref_func_name(name, lenp)
7771 char_u *name;
7772 int *lenp;
7773{
Bram Moolenaar33570922005-01-25 22:26:29 +00007774 dictitem_T *v;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007775 int cc;
7776
7777 cc = name[*lenp];
7778 name[*lenp] = NUL;
Bram Moolenaara7043832005-01-21 11:56:39 +00007779 v = find_var(name, NULL);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007780 name[*lenp] = cc;
Bram Moolenaar33570922005-01-25 22:26:29 +00007781 if (v != NULL && v->di_tv.v_type == VAR_FUNC)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007782 {
Bram Moolenaar33570922005-01-25 22:26:29 +00007783 if (v->di_tv.vval.v_string == NULL)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007784 {
7785 *lenp = 0;
7786 return (char_u *)""; /* just in case */
7787 }
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007788 *lenp = (int)STRLEN(v->di_tv.vval.v_string);
Bram Moolenaar33570922005-01-25 22:26:29 +00007789 return v->di_tv.vval.v_string;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007790 }
7791
7792 return name;
7793}
7794
7795/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00007796 * Allocate a variable for the result of a function.
7797 * Return OK or FAIL.
7798 */
7799 static int
Bram Moolenaare9a41262005-01-15 22:18:47 +00007800get_func_tv(name, len, rettv, arg, firstline, lastline, doesrange,
7801 evaluate, selfdict)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007802 char_u *name; /* name of the function */
7803 int len; /* length of "name" */
Bram Moolenaar33570922005-01-25 22:26:29 +00007804 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007805 char_u **arg; /* argument, pointing to the '(' */
7806 linenr_T firstline; /* first line of range */
7807 linenr_T lastline; /* last line of range */
7808 int *doesrange; /* return: function handled range */
7809 int evaluate;
Bram Moolenaar33570922005-01-25 22:26:29 +00007810 dict_T *selfdict; /* Dictionary for "self" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007811{
7812 char_u *argp;
7813 int ret = OK;
Bram Moolenaareb3593b2006-04-22 22:33:57 +00007814 typval_T argvars[MAX_FUNC_ARGS + 1]; /* vars for arguments */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007815 int argcount = 0; /* number of arguments found */
7816
7817 /*
7818 * Get the arguments.
7819 */
7820 argp = *arg;
7821 while (argcount < MAX_FUNC_ARGS)
7822 {
7823 argp = skipwhite(argp + 1); /* skip the '(' or ',' */
7824 if (*argp == ')' || *argp == ',' || *argp == NUL)
7825 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007826 if (eval1(&argp, &argvars[argcount], evaluate) == FAIL)
7827 {
7828 ret = FAIL;
7829 break;
7830 }
7831 ++argcount;
7832 if (*argp != ',')
7833 break;
7834 }
7835 if (*argp == ')')
7836 ++argp;
7837 else
7838 ret = FAIL;
7839
7840 if (ret == OK)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00007841 ret = call_func(name, len, rettv, argcount, argvars,
Bram Moolenaare9a41262005-01-15 22:18:47 +00007842 firstline, lastline, doesrange, evaluate, selfdict);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007843 else if (!aborting())
Bram Moolenaar33570922005-01-25 22:26:29 +00007844 {
7845 if (argcount == MAX_FUNC_ARGS)
Bram Moolenaar81bf7082005-02-12 14:31:42 +00007846 emsg_funcname("E740: Too many arguments for function %s", name);
Bram Moolenaar33570922005-01-25 22:26:29 +00007847 else
Bram Moolenaar81bf7082005-02-12 14:31:42 +00007848 emsg_funcname("E116: Invalid arguments for function %s", name);
Bram Moolenaar33570922005-01-25 22:26:29 +00007849 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007850
7851 while (--argcount >= 0)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00007852 clear_tv(&argvars[argcount]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007853
7854 *arg = skipwhite(argp);
7855 return ret;
7856}
7857
7858
7859/*
7860 * Call a function with its resolved parameters
Bram Moolenaar280f1262006-01-30 00:14:18 +00007861 * Return OK when the function can't be called, FAIL otherwise.
7862 * Also returns OK when an error was encountered while executing the function.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007863 */
7864 static int
Bram Moolenaarc70646c2005-01-04 21:52:38 +00007865call_func(name, len, rettv, argcount, argvars, firstline, lastline,
Bram Moolenaare9a41262005-01-15 22:18:47 +00007866 doesrange, evaluate, selfdict)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007867 char_u *name; /* name of the function */
7868 int len; /* length of "name" */
Bram Moolenaar33570922005-01-25 22:26:29 +00007869 typval_T *rettv; /* return value goes here */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007870 int argcount; /* number of "argvars" */
Bram Moolenaareb3593b2006-04-22 22:33:57 +00007871 typval_T *argvars; /* vars for arguments, must have "argcount"
7872 PLUS ONE elements! */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007873 linenr_T firstline; /* first line of range */
7874 linenr_T lastline; /* last line of range */
7875 int *doesrange; /* return: function handled range */
7876 int evaluate;
Bram Moolenaar33570922005-01-25 22:26:29 +00007877 dict_T *selfdict; /* Dictionary for "self" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007878{
7879 int ret = FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007880#define ERROR_UNKNOWN 0
7881#define ERROR_TOOMANY 1
7882#define ERROR_TOOFEW 2
7883#define ERROR_SCRIPT 3
Bram Moolenaare9a41262005-01-15 22:18:47 +00007884#define ERROR_DICT 4
7885#define ERROR_NONE 5
7886#define ERROR_OTHER 6
Bram Moolenaar071d4272004-06-13 20:20:40 +00007887 int error = ERROR_NONE;
7888 int i;
7889 int llen;
7890 ufunc_T *fp;
7891 int cc;
7892#define FLEN_FIXED 40
7893 char_u fname_buf[FLEN_FIXED + 1];
7894 char_u *fname;
7895
7896 /*
7897 * In a script change <SID>name() and s:name() to K_SNR 123_name().
7898 * Change <SNR>123_name() to K_SNR 123_name().
7899 * Use fname_buf[] when it fits, otherwise allocate memory (slow).
7900 */
7901 cc = name[len];
7902 name[len] = NUL;
7903 llen = eval_fname_script(name);
7904 if (llen > 0)
7905 {
7906 fname_buf[0] = K_SPECIAL;
7907 fname_buf[1] = KS_EXTRA;
7908 fname_buf[2] = (int)KE_SNR;
7909 i = 3;
7910 if (eval_fname_sid(name)) /* "<SID>" or "s:" */
7911 {
7912 if (current_SID <= 0)
7913 error = ERROR_SCRIPT;
7914 else
7915 {
7916 sprintf((char *)fname_buf + 3, "%ld_", (long)current_SID);
7917 i = (int)STRLEN(fname_buf);
7918 }
7919 }
7920 if (i + STRLEN(name + llen) < FLEN_FIXED)
7921 {
7922 STRCPY(fname_buf + i, name + llen);
7923 fname = fname_buf;
7924 }
7925 else
7926 {
7927 fname = alloc((unsigned)(i + STRLEN(name + llen) + 1));
7928 if (fname == NULL)
7929 error = ERROR_OTHER;
7930 else
7931 {
7932 mch_memmove(fname, fname_buf, (size_t)i);
7933 STRCPY(fname + i, name + llen);
7934 }
7935 }
7936 }
7937 else
7938 fname = name;
7939
7940 *doesrange = FALSE;
7941
7942
7943 /* execute the function if no errors detected and executing */
7944 if (evaluate && error == ERROR_NONE)
7945 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00007946 rettv->v_type = VAR_NUMBER; /* default is number rettv */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007947 error = ERROR_UNKNOWN;
7948
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +00007949 if (!builtin_function(fname))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007950 {
7951 /*
7952 * User defined function.
7953 */
7954 fp = find_func(fname);
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +00007955
Bram Moolenaar071d4272004-06-13 20:20:40 +00007956#ifdef FEAT_AUTOCMD
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +00007957 /* Trigger FuncUndefined event, may load the function. */
7958 if (fp == NULL
7959 && apply_autocmds(EVENT_FUNCUNDEFINED,
7960 fname, fname, TRUE, NULL)
7961 && !aborting())
Bram Moolenaar071d4272004-06-13 20:20:40 +00007962 {
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +00007963 /* executed an autocommand, search for the function again */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007964 fp = find_func(fname);
7965 }
7966#endif
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +00007967 /* Try loading a package. */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00007968 if (fp == NULL && script_autoload(fname, TRUE) && !aborting())
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +00007969 {
7970 /* loaded a package, search for the function again */
7971 fp = find_func(fname);
7972 }
7973
Bram Moolenaar071d4272004-06-13 20:20:40 +00007974 if (fp != NULL)
7975 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00007976 if (fp->uf_flags & FC_RANGE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007977 *doesrange = TRUE;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00007978 if (argcount < fp->uf_args.ga_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007979 error = ERROR_TOOFEW;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00007980 else if (!fp->uf_varargs && argcount > fp->uf_args.ga_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007981 error = ERROR_TOOMANY;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00007982 else if ((fp->uf_flags & FC_DICT) && selfdict == NULL)
Bram Moolenaare9a41262005-01-15 22:18:47 +00007983 error = ERROR_DICT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007984 else
7985 {
7986 /*
7987 * Call the user function.
7988 * Save and restore search patterns, script variables and
7989 * redo buffer.
7990 */
7991 save_search_patterns();
7992 saveRedobuff();
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00007993 ++fp->uf_calls;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00007994 call_user_func(fp, argcount, argvars, rettv,
Bram Moolenaare9a41262005-01-15 22:18:47 +00007995 firstline, lastline,
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00007996 (fp->uf_flags & FC_DICT) ? selfdict : NULL);
7997 if (--fp->uf_calls <= 0 && isdigit(*fp->uf_name)
7998 && fp->uf_refcount <= 0)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00007999 /* Function was unreferenced while being used, free it
8000 * now. */
8001 func_free(fp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008002 restoreRedobuff();
8003 restore_search_patterns();
8004 error = ERROR_NONE;
8005 }
8006 }
8007 }
8008 else
8009 {
8010 /*
8011 * Find the function name in the table, call its implementation.
8012 */
8013 i = find_internal_func(fname);
8014 if (i >= 0)
8015 {
8016 if (argcount < functions[i].f_min_argc)
8017 error = ERROR_TOOFEW;
8018 else if (argcount > functions[i].f_max_argc)
8019 error = ERROR_TOOMANY;
8020 else
8021 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +00008022 argvars[argcount].v_type = VAR_UNKNOWN;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008023 functions[i].f_func(argvars, rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008024 error = ERROR_NONE;
8025 }
8026 }
8027 }
8028 /*
8029 * The function call (or "FuncUndefined" autocommand sequence) might
8030 * have been aborted by an error, an interrupt, or an explicitly thrown
8031 * exception that has not been caught so far. This situation can be
8032 * tested for by calling aborting(). For an error in an internal
8033 * function or for the "E132" error in call_user_func(), however, the
8034 * throw point at which the "force_abort" flag (temporarily reset by
8035 * emsg()) is normally updated has not been reached yet. We need to
8036 * update that flag first to make aborting() reliable.
8037 */
8038 update_force_abort();
8039 }
8040 if (error == ERROR_NONE)
8041 ret = OK;
8042
8043 /*
8044 * Report an error unless the argument evaluation or function call has been
8045 * cancelled due to an aborting error, an interrupt, or an exception.
8046 */
Bram Moolenaar8c711452005-01-14 21:53:12 +00008047 if (!aborting())
8048 {
8049 switch (error)
8050 {
8051 case ERROR_UNKNOWN:
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00008052 emsg_funcname(N_("E117: Unknown function: %s"), name);
Bram Moolenaar8c711452005-01-14 21:53:12 +00008053 break;
8054 case ERROR_TOOMANY:
Bram Moolenaar81bf7082005-02-12 14:31:42 +00008055 emsg_funcname(e_toomanyarg, name);
Bram Moolenaar8c711452005-01-14 21:53:12 +00008056 break;
8057 case ERROR_TOOFEW:
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00008058 emsg_funcname(N_("E119: Not enough arguments for function: %s"),
Bram Moolenaar8c711452005-01-14 21:53:12 +00008059 name);
8060 break;
8061 case ERROR_SCRIPT:
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00008062 emsg_funcname(N_("E120: Using <SID> not in a script context: %s"),
Bram Moolenaar8c711452005-01-14 21:53:12 +00008063 name);
8064 break;
Bram Moolenaare9a41262005-01-15 22:18:47 +00008065 case ERROR_DICT:
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00008066 emsg_funcname(N_("E725: Calling dict function without Dictionary: %s"),
Bram Moolenaare9a41262005-01-15 22:18:47 +00008067 name);
8068 break;
Bram Moolenaar8c711452005-01-14 21:53:12 +00008069 }
8070 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008071
8072 name[len] = cc;
8073 if (fname != name && fname != fname_buf)
8074 vim_free(fname);
8075
8076 return ret;
8077}
8078
Bram Moolenaar81bf7082005-02-12 14:31:42 +00008079/*
8080 * Give an error message with a function name. Handle <SNR> things.
8081 */
8082 static void
Bram Moolenaar89d40322006-08-29 15:30:07 +00008083emsg_funcname(ermsg, name)
8084 char *ermsg;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00008085 char_u *name;
8086{
8087 char_u *p;
8088
8089 if (*name == K_SPECIAL)
8090 p = concat_str((char_u *)"<SNR>", name + 3);
8091 else
8092 p = name;
Bram Moolenaar89d40322006-08-29 15:30:07 +00008093 EMSG2(_(ermsg), p);
Bram Moolenaar81bf7082005-02-12 14:31:42 +00008094 if (p != name)
8095 vim_free(p);
8096}
8097
Bram Moolenaar05bb9532008-07-04 09:44:11 +00008098/*
8099 * Return TRUE for a non-zero Number and a non-empty String.
8100 */
8101 static int
8102non_zero_arg(argvars)
8103 typval_T *argvars;
8104{
8105 return ((argvars[0].v_type == VAR_NUMBER
8106 && argvars[0].vval.v_number != 0)
8107 || (argvars[0].v_type == VAR_STRING
8108 && argvars[0].vval.v_string != NULL
8109 && *argvars[0].vval.v_string != NUL));
8110}
8111
Bram Moolenaar071d4272004-06-13 20:20:40 +00008112/*********************************************
8113 * Implementation of the built-in functions
8114 */
8115
Bram Moolenaar8c8de832008-06-24 22:58:06 +00008116#ifdef FEAT_FLOAT
8117/*
8118 * "abs(expr)" function
8119 */
8120 static void
8121f_abs(argvars, rettv)
8122 typval_T *argvars;
8123 typval_T *rettv;
8124{
8125 if (argvars[0].v_type == VAR_FLOAT)
8126 {
8127 rettv->v_type = VAR_FLOAT;
8128 rettv->vval.v_float = fabs(argvars[0].vval.v_float);
8129 }
8130 else
8131 {
8132 varnumber_T n;
8133 int error = FALSE;
8134
8135 n = get_tv_number_chk(&argvars[0], &error);
8136 if (error)
8137 rettv->vval.v_number = -1;
8138 else if (n > 0)
8139 rettv->vval.v_number = n;
8140 else
8141 rettv->vval.v_number = -n;
8142 }
8143}
8144#endif
8145
Bram Moolenaar071d4272004-06-13 20:20:40 +00008146/*
Bram Moolenaar0d660222005-01-07 21:51:51 +00008147 * "add(list, item)" function
Bram Moolenaar071d4272004-06-13 20:20:40 +00008148 */
8149 static void
Bram Moolenaar0d660222005-01-07 21:51:51 +00008150f_add(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008151 typval_T *argvars;
8152 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008153{
Bram Moolenaar33570922005-01-25 22:26:29 +00008154 list_T *l;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008155
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008156 rettv->vval.v_number = 1; /* Default: Failed */
Bram Moolenaar49cd9572005-01-03 21:06:01 +00008157 if (argvars[0].v_type == VAR_LIST)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008158 {
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00008159 if ((l = argvars[0].vval.v_list) != NULL
8160 && !tv_check_lock(l->lv_lock, (char_u *)"add()")
8161 && list_append_tv(l, &argvars[1]) == OK)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008162 copy_tv(&argvars[0], rettv);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00008163 }
8164 else
Bram Moolenaar0d660222005-01-07 21:51:51 +00008165 EMSG(_(e_listreq));
8166}
8167
8168/*
8169 * "append(lnum, string/list)" function
8170 */
8171 static void
8172f_append(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008173 typval_T *argvars;
8174 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +00008175{
8176 long lnum;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008177 char_u *line;
Bram Moolenaar33570922005-01-25 22:26:29 +00008178 list_T *l = NULL;
8179 listitem_T *li = NULL;
8180 typval_T *tv;
Bram Moolenaar0d660222005-01-07 21:51:51 +00008181 long added = 0;
8182
Bram Moolenaar0d660222005-01-07 21:51:51 +00008183 lnum = get_tv_lnum(argvars);
8184 if (lnum >= 0
8185 && lnum <= curbuf->b_ml.ml_line_count
8186 && u_save(lnum, lnum + 1) == OK)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00008187 {
Bram Moolenaar0d660222005-01-07 21:51:51 +00008188 if (argvars[1].v_type == VAR_LIST)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00008189 {
Bram Moolenaar0d660222005-01-07 21:51:51 +00008190 l = argvars[1].vval.v_list;
8191 if (l == NULL)
8192 return;
8193 li = l->lv_first;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00008194 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008195 rettv->vval.v_number = 0; /* Default: Success */
Bram Moolenaar0d660222005-01-07 21:51:51 +00008196 for (;;)
8197 {
8198 if (l == NULL)
8199 tv = &argvars[1]; /* append a string */
8200 else if (li == NULL)
8201 break; /* end of list */
8202 else
8203 tv = &li->li_tv; /* append item from list */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008204 line = get_tv_string_chk(tv);
8205 if (line == NULL) /* type error */
8206 {
8207 rettv->vval.v_number = 1; /* Failed */
8208 break;
8209 }
8210 ml_append(lnum + added, line, (colnr_T)0, FALSE);
Bram Moolenaar0d660222005-01-07 21:51:51 +00008211 ++added;
8212 if (l == NULL)
8213 break;
8214 li = li->li_next;
8215 }
8216
8217 appended_lines_mark(lnum, added);
8218 if (curwin->w_cursor.lnum > lnum)
8219 curwin->w_cursor.lnum += added;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008220 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008221 else
8222 rettv->vval.v_number = 1; /* Failed */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008223}
8224
8225/*
8226 * "argc()" function
8227 */
8228/* ARGSUSED */
8229 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008230f_argc(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008231 typval_T *argvars;
8232 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008233{
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008234 rettv->vval.v_number = ARGCOUNT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008235}
8236
8237/*
8238 * "argidx()" function
8239 */
8240/* ARGSUSED */
8241 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008242f_argidx(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008243 typval_T *argvars;
8244 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008245{
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008246 rettv->vval.v_number = curwin->w_arg_idx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008247}
8248
8249/*
8250 * "argv(nr)" function
8251 */
8252 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008253f_argv(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008254 typval_T *argvars;
8255 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008256{
8257 int idx;
8258
Bram Moolenaare2f98b92006-03-29 21:18:24 +00008259 if (argvars[0].v_type != VAR_UNKNOWN)
8260 {
8261 idx = get_tv_number_chk(&argvars[0], NULL);
8262 if (idx >= 0 && idx < ARGCOUNT)
8263 rettv->vval.v_string = vim_strsave(alist_name(&ARGLIST[idx]));
8264 else
8265 rettv->vval.v_string = NULL;
8266 rettv->v_type = VAR_STRING;
8267 }
8268 else if (rettv_list_alloc(rettv) == OK)
8269 for (idx = 0; idx < ARGCOUNT; ++idx)
8270 list_append_string(rettv->vval.v_list,
8271 alist_name(&ARGLIST[idx]), -1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008272}
8273
Bram Moolenaar8c8de832008-06-24 22:58:06 +00008274#ifdef FEAT_FLOAT
8275static int get_float_arg __ARGS((typval_T *argvars, float_T *f));
8276
8277/*
8278 * Get the float value of "argvars[0]" into "f".
8279 * Returns FAIL when the argument is not a Number or Float.
8280 */
8281 static int
8282get_float_arg(argvars, f)
8283 typval_T *argvars;
8284 float_T *f;
8285{
8286 if (argvars[0].v_type == VAR_FLOAT)
8287 {
8288 *f = argvars[0].vval.v_float;
8289 return OK;
8290 }
8291 if (argvars[0].v_type == VAR_NUMBER)
8292 {
8293 *f = (float_T)argvars[0].vval.v_number;
8294 return OK;
8295 }
8296 EMSG(_("E808: Number or Float required"));
8297 return FAIL;
8298}
8299
8300/*
8301 * "atan()" function
8302 */
8303 static void
8304f_atan(argvars, rettv)
8305 typval_T *argvars;
8306 typval_T *rettv;
8307{
8308 float_T f;
8309
8310 rettv->v_type = VAR_FLOAT;
8311 if (get_float_arg(argvars, &f) == OK)
8312 rettv->vval.v_float = atan(f);
8313 else
8314 rettv->vval.v_float = 0.0;
8315}
8316#endif
8317
Bram Moolenaar071d4272004-06-13 20:20:40 +00008318/*
8319 * "browse(save, title, initdir, default)" function
8320 */
8321/* ARGSUSED */
8322 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008323f_browse(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008324 typval_T *argvars;
8325 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008326{
8327#ifdef FEAT_BROWSE
8328 int save;
8329 char_u *title;
8330 char_u *initdir;
8331 char_u *defname;
8332 char_u buf[NUMBUFLEN];
8333 char_u buf2[NUMBUFLEN];
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008334 int error = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008335
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008336 save = get_tv_number_chk(&argvars[0], &error);
8337 title = get_tv_string_chk(&argvars[1]);
8338 initdir = get_tv_string_buf_chk(&argvars[2], buf);
8339 defname = get_tv_string_buf_chk(&argvars[3], buf2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008340
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008341 if (error || title == NULL || initdir == NULL || defname == NULL)
8342 rettv->vval.v_string = NULL;
8343 else
8344 rettv->vval.v_string =
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00008345 do_browse(save ? BROWSE_SAVE : 0,
8346 title, defname, NULL, initdir, NULL, curbuf);
8347#else
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008348 rettv->vval.v_string = NULL;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00008349#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008350 rettv->v_type = VAR_STRING;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00008351}
8352
8353/*
8354 * "browsedir(title, initdir)" function
8355 */
8356/* ARGSUSED */
8357 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008358f_browsedir(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008359 typval_T *argvars;
8360 typval_T *rettv;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00008361{
8362#ifdef FEAT_BROWSE
8363 char_u *title;
8364 char_u *initdir;
8365 char_u buf[NUMBUFLEN];
8366
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008367 title = get_tv_string_chk(&argvars[0]);
8368 initdir = get_tv_string_buf_chk(&argvars[1], buf);
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00008369
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008370 if (title == NULL || initdir == NULL)
8371 rettv->vval.v_string = NULL;
8372 else
8373 rettv->vval.v_string = do_browse(BROWSE_DIR,
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00008374 title, NULL, NULL, initdir, NULL, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008375#else
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008376 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008377#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008378 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008379}
8380
Bram Moolenaar33570922005-01-25 22:26:29 +00008381static buf_T *find_buffer __ARGS((typval_T *avar));
Bram Moolenaar0d660222005-01-07 21:51:51 +00008382
Bram Moolenaar071d4272004-06-13 20:20:40 +00008383/*
8384 * Find a buffer by number or exact name.
8385 */
8386 static buf_T *
8387find_buffer(avar)
Bram Moolenaar33570922005-01-25 22:26:29 +00008388 typval_T *avar;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008389{
8390 buf_T *buf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008391
Bram Moolenaar49cd9572005-01-03 21:06:01 +00008392 if (avar->v_type == VAR_NUMBER)
8393 buf = buflist_findnr((int)avar->vval.v_number);
Bram Moolenaar758711c2005-02-02 23:11:38 +00008394 else if (avar->v_type == VAR_STRING && avar->vval.v_string != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008395 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +00008396 buf = buflist_findname_exp(avar->vval.v_string);
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00008397 if (buf == NULL)
8398 {
8399 /* No full path name match, try a match with a URL or a "nofile"
8400 * buffer, these don't use the full path. */
8401 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
8402 if (buf->b_fname != NULL
8403 && (path_with_url(buf->b_fname)
8404#ifdef FEAT_QUICKFIX
8405 || bt_nofile(buf)
8406#endif
8407 )
Bram Moolenaar49cd9572005-01-03 21:06:01 +00008408 && STRCMP(buf->b_fname, avar->vval.v_string) == 0)
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00008409 break;
8410 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008411 }
8412 return buf;
8413}
8414
8415/*
8416 * "bufexists(expr)" function
8417 */
8418 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008419f_bufexists(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008420 typval_T *argvars;
8421 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008422{
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008423 rettv->vval.v_number = (find_buffer(&argvars[0]) != NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008424}
8425
8426/*
8427 * "buflisted(expr)" function
8428 */
8429 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008430f_buflisted(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008431 typval_T *argvars;
8432 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008433{
8434 buf_T *buf;
8435
8436 buf = find_buffer(&argvars[0]);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008437 rettv->vval.v_number = (buf != NULL && buf->b_p_bl);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008438}
8439
8440/*
8441 * "bufloaded(expr)" function
8442 */
8443 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008444f_bufloaded(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008445 typval_T *argvars;
8446 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008447{
8448 buf_T *buf;
8449
8450 buf = find_buffer(&argvars[0]);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008451 rettv->vval.v_number = (buf != NULL && buf->b_ml.ml_mfp != NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008452}
8453
Bram Moolenaar33570922005-01-25 22:26:29 +00008454static buf_T *get_buf_tv __ARGS((typval_T *tv));
Bram Moolenaar0d660222005-01-07 21:51:51 +00008455
Bram Moolenaar071d4272004-06-13 20:20:40 +00008456/*
8457 * Get buffer by number or pattern.
8458 */
8459 static buf_T *
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008460get_buf_tv(tv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008461 typval_T *tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008462{
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008463 char_u *name = tv->vval.v_string;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008464 int save_magic;
8465 char_u *save_cpo;
8466 buf_T *buf;
8467
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008468 if (tv->v_type == VAR_NUMBER)
8469 return buflist_findnr((int)tv->vval.v_number);
Bram Moolenaar758711c2005-02-02 23:11:38 +00008470 if (tv->v_type != VAR_STRING)
8471 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008472 if (name == NULL || *name == NUL)
8473 return curbuf;
8474 if (name[0] == '$' && name[1] == NUL)
8475 return lastbuf;
8476
8477 /* Ignore 'magic' and 'cpoptions' here to make scripts portable */
8478 save_magic = p_magic;
8479 p_magic = TRUE;
8480 save_cpo = p_cpo;
8481 p_cpo = (char_u *)"";
8482
8483 buf = buflist_findnr(buflist_findpat(name, name + STRLEN(name),
8484 TRUE, FALSE));
8485
8486 p_magic = save_magic;
8487 p_cpo = save_cpo;
8488
8489 /* If not found, try expanding the name, like done for bufexists(). */
8490 if (buf == NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008491 buf = find_buffer(tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008492
8493 return buf;
8494}
8495
8496/*
8497 * "bufname(expr)" function
8498 */
8499 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008500f_bufname(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008501 typval_T *argvars;
8502 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008503{
8504 buf_T *buf;
8505
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008506 (void)get_tv_number(&argvars[0]); /* issue errmsg if type error */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008507 ++emsg_off;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008508 buf = get_buf_tv(&argvars[0]);
8509 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008510 if (buf != NULL && buf->b_fname != NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008511 rettv->vval.v_string = vim_strsave(buf->b_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008512 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008513 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008514 --emsg_off;
8515}
8516
8517/*
8518 * "bufnr(expr)" function
8519 */
8520 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008521f_bufnr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008522 typval_T *argvars;
8523 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008524{
8525 buf_T *buf;
Bram Moolenaar0e34f622006-03-03 23:00:03 +00008526 int error = FALSE;
8527 char_u *name;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008528
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008529 (void)get_tv_number(&argvars[0]); /* issue errmsg if type error */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008530 ++emsg_off;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008531 buf = get_buf_tv(&argvars[0]);
Bram Moolenaar0e34f622006-03-03 23:00:03 +00008532 --emsg_off;
8533
8534 /* If the buffer isn't found and the second argument is not zero create a
8535 * new buffer. */
8536 if (buf == NULL
8537 && argvars[1].v_type != VAR_UNKNOWN
8538 && get_tv_number_chk(&argvars[1], &error) != 0
8539 && !error
8540 && (name = get_tv_string_chk(&argvars[0])) != NULL
8541 && !error)
8542 buf = buflist_new(name, NULL, (linenr_T)1, 0);
8543
Bram Moolenaar071d4272004-06-13 20:20:40 +00008544 if (buf != NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008545 rettv->vval.v_number = buf->b_fnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008546 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008547 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008548}
8549
8550/*
8551 * "bufwinnr(nr)" function
8552 */
8553 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008554f_bufwinnr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008555 typval_T *argvars;
8556 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008557{
8558#ifdef FEAT_WINDOWS
8559 win_T *wp;
8560 int winnr = 0;
8561#endif
8562 buf_T *buf;
8563
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008564 (void)get_tv_number(&argvars[0]); /* issue errmsg if type error */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008565 ++emsg_off;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008566 buf = get_buf_tv(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008567#ifdef FEAT_WINDOWS
8568 for (wp = firstwin; wp; wp = wp->w_next)
8569 {
8570 ++winnr;
8571 if (wp->w_buffer == buf)
8572 break;
8573 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008574 rettv->vval.v_number = (wp != NULL ? winnr : -1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008575#else
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008576 rettv->vval.v_number = (curwin->w_buffer == buf ? 1 : -1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008577#endif
8578 --emsg_off;
8579}
8580
8581/*
8582 * "byte2line(byte)" function
8583 */
8584/*ARGSUSED*/
8585 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008586f_byte2line(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008587 typval_T *argvars;
8588 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008589{
8590#ifndef FEAT_BYTEOFF
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008591 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008592#else
8593 long boff = 0;
8594
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008595 boff = get_tv_number(&argvars[0]) - 1; /* boff gets -1 on type error */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008596 if (boff < 0)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008597 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008598 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008599 rettv->vval.v_number = ml_find_line_or_offset(curbuf,
Bram Moolenaar071d4272004-06-13 20:20:40 +00008600 (linenr_T)0, &boff);
8601#endif
8602}
8603
8604/*
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00008605 * "byteidx()" function
8606 */
8607/*ARGSUSED*/
8608 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008609f_byteidx(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008610 typval_T *argvars;
8611 typval_T *rettv;
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00008612{
8613#ifdef FEAT_MBYTE
8614 char_u *t;
8615#endif
8616 char_u *str;
8617 long idx;
8618
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008619 str = get_tv_string_chk(&argvars[0]);
8620 idx = get_tv_number_chk(&argvars[1], NULL);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008621 rettv->vval.v_number = -1;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008622 if (str == NULL || idx < 0)
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00008623 return;
8624
8625#ifdef FEAT_MBYTE
8626 t = str;
8627 for ( ; idx > 0; idx--)
8628 {
8629 if (*t == NUL) /* EOL reached */
8630 return;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00008631 t += (*mb_ptr2len)(t);
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00008632 }
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00008633 rettv->vval.v_number = (varnumber_T)(t - str);
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00008634#else
Bram Moolenaar8c8de832008-06-24 22:58:06 +00008635 if ((size_t)idx <= STRLEN(str))
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008636 rettv->vval.v_number = idx;
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00008637#endif
8638}
8639
8640/*
Bram Moolenaar8a283e52005-01-06 23:28:25 +00008641 * "call(func, arglist)" function
8642 */
8643 static void
8644f_call(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008645 typval_T *argvars;
8646 typval_T *rettv;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00008647{
8648 char_u *func;
Bram Moolenaareb3593b2006-04-22 22:33:57 +00008649 typval_T argv[MAX_FUNC_ARGS + 1];
Bram Moolenaar8a283e52005-01-06 23:28:25 +00008650 int argc = 0;
Bram Moolenaar33570922005-01-25 22:26:29 +00008651 listitem_T *item;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00008652 int dummy;
Bram Moolenaar33570922005-01-25 22:26:29 +00008653 dict_T *selfdict = NULL;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00008654
8655 rettv->vval.v_number = 0;
8656 if (argvars[1].v_type != VAR_LIST)
8657 {
8658 EMSG(_(e_listreq));
8659 return;
8660 }
8661 if (argvars[1].vval.v_list == NULL)
8662 return;
8663
8664 if (argvars[0].v_type == VAR_FUNC)
8665 func = argvars[0].vval.v_string;
8666 else
8667 func = get_tv_string(&argvars[0]);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008668 if (*func == NUL)
8669 return; /* type error or empty name */
Bram Moolenaar8a283e52005-01-06 23:28:25 +00008670
Bram Moolenaare9a41262005-01-15 22:18:47 +00008671 if (argvars[2].v_type != VAR_UNKNOWN)
8672 {
8673 if (argvars[2].v_type != VAR_DICT)
8674 {
8675 EMSG(_(e_dictreq));
8676 return;
8677 }
8678 selfdict = argvars[2].vval.v_dict;
8679 }
8680
Bram Moolenaar8a283e52005-01-06 23:28:25 +00008681 for (item = argvars[1].vval.v_list->lv_first; item != NULL;
8682 item = item->li_next)
8683 {
8684 if (argc == MAX_FUNC_ARGS)
8685 {
Bram Moolenaare49b69a2005-01-08 16:11:57 +00008686 EMSG(_("E699: Too many arguments"));
Bram Moolenaar8a283e52005-01-06 23:28:25 +00008687 break;
8688 }
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00008689 /* Make a copy of each argument. This is needed to be able to set
8690 * v_lock to VAR_FIXED in the copy without changing the original list.
8691 */
Bram Moolenaar8a283e52005-01-06 23:28:25 +00008692 copy_tv(&item->li_tv, &argv[argc++]);
8693 }
8694
8695 if (item == NULL)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00008696 (void)call_func(func, (int)STRLEN(func), rettv, argc, argv,
Bram Moolenaare9a41262005-01-15 22:18:47 +00008697 curwin->w_cursor.lnum, curwin->w_cursor.lnum,
8698 &dummy, TRUE, selfdict);
Bram Moolenaar8a283e52005-01-06 23:28:25 +00008699
8700 /* Free the arguments. */
8701 while (argc > 0)
8702 clear_tv(&argv[--argc]);
8703}
8704
Bram Moolenaar8c8de832008-06-24 22:58:06 +00008705#ifdef FEAT_FLOAT
8706/*
8707 * "ceil({float})" function
8708 */
8709 static void
8710f_ceil(argvars, rettv)
8711 typval_T *argvars;
8712 typval_T *rettv;
8713{
8714 float_T f;
8715
8716 rettv->v_type = VAR_FLOAT;
8717 if (get_float_arg(argvars, &f) == OK)
8718 rettv->vval.v_float = ceil(f);
8719 else
8720 rettv->vval.v_float = 0.0;
8721}
8722#endif
8723
Bram Moolenaar8a283e52005-01-06 23:28:25 +00008724/*
Bram Moolenaarf0acfce2006-03-17 23:21:19 +00008725 * "changenr()" function
8726 */
8727/*ARGSUSED*/
8728 static void
8729f_changenr(argvars, rettv)
8730 typval_T *argvars;
8731 typval_T *rettv;
8732{
8733 rettv->vval.v_number = curbuf->b_u_seq_cur;
8734}
8735
8736/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00008737 * "char2nr(string)" function
8738 */
8739 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008740f_char2nr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008741 typval_T *argvars;
8742 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008743{
8744#ifdef FEAT_MBYTE
8745 if (has_mbyte)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008746 rettv->vval.v_number = (*mb_ptr2char)(get_tv_string(&argvars[0]));
Bram Moolenaar071d4272004-06-13 20:20:40 +00008747 else
8748#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008749 rettv->vval.v_number = get_tv_string(&argvars[0])[0];
Bram Moolenaar071d4272004-06-13 20:20:40 +00008750}
8751
8752/*
8753 * "cindent(lnum)" function
8754 */
8755 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008756f_cindent(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008757 typval_T *argvars;
8758 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008759{
8760#ifdef FEAT_CINDENT
8761 pos_T pos;
8762 linenr_T lnum;
8763
8764 pos = curwin->w_cursor;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008765 lnum = get_tv_lnum(argvars);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008766 if (lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count)
8767 {
8768 curwin->w_cursor.lnum = lnum;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008769 rettv->vval.v_number = get_c_indent();
Bram Moolenaar071d4272004-06-13 20:20:40 +00008770 curwin->w_cursor = pos;
8771 }
8772 else
8773#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008774 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008775}
8776
8777/*
Bram Moolenaar6ee10162007-07-26 20:58:42 +00008778 * "clearmatches()" function
8779 */
8780/*ARGSUSED*/
8781 static void
8782f_clearmatches(argvars, rettv)
8783 typval_T *argvars;
8784 typval_T *rettv;
8785{
8786#ifdef FEAT_SEARCH_EXTRA
8787 clear_matches(curwin);
8788#endif
8789}
8790
8791/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00008792 * "col(string)" function
8793 */
8794 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008795f_col(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008796 typval_T *argvars;
8797 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008798{
8799 colnr_T col = 0;
8800 pos_T *fp;
Bram Moolenaar0e34f622006-03-03 23:00:03 +00008801 int fnum = curbuf->b_fnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008802
Bram Moolenaar0e34f622006-03-03 23:00:03 +00008803 fp = var2fpos(&argvars[0], FALSE, &fnum);
8804 if (fp != NULL && fnum == curbuf->b_fnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008805 {
8806 if (fp->col == MAXCOL)
8807 {
8808 /* '> can be MAXCOL, get the length of the line then */
8809 if (fp->lnum <= curbuf->b_ml.ml_line_count)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00008810 col = (colnr_T)STRLEN(ml_get(fp->lnum)) + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008811 else
8812 col = MAXCOL;
8813 }
8814 else
8815 {
8816 col = fp->col + 1;
8817#ifdef FEAT_VIRTUALEDIT
8818 /* col(".") when the cursor is on the NUL at the end of the line
8819 * because of "coladd" can be seen as an extra column. */
8820 if (virtual_active() && fp == &curwin->w_cursor)
8821 {
8822 char_u *p = ml_get_cursor();
8823
8824 if (curwin->w_cursor.coladd >= (colnr_T)chartabsize(p,
8825 curwin->w_virtcol - curwin->w_cursor.coladd))
8826 {
8827# ifdef FEAT_MBYTE
8828 int l;
8829
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00008830 if (*p != NUL && p[(l = (*mb_ptr2len)(p))] == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008831 col += l;
8832# else
8833 if (*p != NUL && p[1] == NUL)
8834 ++col;
8835# endif
8836 }
8837 }
8838#endif
8839 }
8840 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008841 rettv->vval.v_number = col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008842}
8843
Bram Moolenaar572cb562005-08-05 21:35:02 +00008844#if defined(FEAT_INS_EXPAND)
8845/*
Bram Moolenaarade00832006-03-10 21:46:58 +00008846 * "complete()" function
8847 */
8848/*ARGSUSED*/
8849 static void
8850f_complete(argvars, rettv)
8851 typval_T *argvars;
8852 typval_T *rettv;
8853{
8854 int startcol;
8855
8856 if ((State & INSERT) == 0)
8857 {
8858 EMSG(_("E785: complete() can only be used in Insert mode"));
8859 return;
8860 }
Bram Moolenaarce6ef252006-07-12 19:49:41 +00008861
8862 /* Check for undo allowed here, because if something was already inserted
8863 * the line was already saved for undo and this check isn't done. */
8864 if (!undo_allowed())
8865 return;
8866
Bram Moolenaarade00832006-03-10 21:46:58 +00008867 if (argvars[1].v_type != VAR_LIST || argvars[1].vval.v_list == NULL)
8868 {
8869 EMSG(_(e_invarg));
8870 return;
8871 }
8872
8873 startcol = get_tv_number_chk(&argvars[0], NULL);
8874 if (startcol <= 0)
8875 return;
8876
8877 set_completion(startcol - 1, argvars[1].vval.v_list);
8878}
8879
8880/*
Bram Moolenaar572cb562005-08-05 21:35:02 +00008881 * "complete_add()" function
8882 */
8883/*ARGSUSED*/
8884 static void
8885f_complete_add(argvars, rettv)
8886 typval_T *argvars;
8887 typval_T *rettv;
8888{
Bram Moolenaarceaf7b82006-03-19 22:18:55 +00008889 rettv->vval.v_number = ins_compl_add_tv(&argvars[0], 0);
Bram Moolenaar572cb562005-08-05 21:35:02 +00008890}
8891
8892/*
8893 * "complete_check()" function
8894 */
8895/*ARGSUSED*/
8896 static void
8897f_complete_check(argvars, rettv)
8898 typval_T *argvars;
8899 typval_T *rettv;
8900{
8901 int saved = RedrawingDisabled;
8902
8903 RedrawingDisabled = 0;
8904 ins_compl_check_keys(0);
8905 rettv->vval.v_number = compl_interrupted;
8906 RedrawingDisabled = saved;
8907}
8908#endif
8909
Bram Moolenaar071d4272004-06-13 20:20:40 +00008910/*
8911 * "confirm(message, buttons[, default [, type]])" function
8912 */
8913/*ARGSUSED*/
8914 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008915f_confirm(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008916 typval_T *argvars;
8917 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008918{
8919#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
8920 char_u *message;
8921 char_u *buttons = NULL;
8922 char_u buf[NUMBUFLEN];
8923 char_u buf2[NUMBUFLEN];
8924 int def = 1;
8925 int type = VIM_GENERIC;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008926 char_u *typestr;
8927 int error = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008928
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008929 message = get_tv_string_chk(&argvars[0]);
8930 if (message == NULL)
8931 error = TRUE;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00008932 if (argvars[1].v_type != VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008933 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008934 buttons = get_tv_string_buf_chk(&argvars[1], buf);
8935 if (buttons == NULL)
8936 error = TRUE;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00008937 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008938 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008939 def = get_tv_number_chk(&argvars[2], &error);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00008940 if (argvars[3].v_type != VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008941 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008942 typestr = get_tv_string_buf_chk(&argvars[3], buf2);
8943 if (typestr == NULL)
8944 error = TRUE;
8945 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00008946 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008947 switch (TOUPPER_ASC(*typestr))
8948 {
8949 case 'E': type = VIM_ERROR; break;
8950 case 'Q': type = VIM_QUESTION; break;
8951 case 'I': type = VIM_INFO; break;
8952 case 'W': type = VIM_WARNING; break;
8953 case 'G': type = VIM_GENERIC; break;
8954 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008955 }
8956 }
8957 }
8958 }
8959
8960 if (buttons == NULL || *buttons == NUL)
8961 buttons = (char_u *)_("&Ok");
8962
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008963 if (error)
8964 rettv->vval.v_number = 0;
8965 else
8966 rettv->vval.v_number = do_dialog(type, NULL, message, buttons,
Bram Moolenaar071d4272004-06-13 20:20:40 +00008967 def, NULL);
8968#else
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008969 rettv->vval.v_number = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008970#endif
8971}
8972
Bram Moolenaar49cd9572005-01-03 21:06:01 +00008973/*
8974 * "copy()" function
8975 */
8976 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008977f_copy(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008978 typval_T *argvars;
8979 typval_T *rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00008980{
Bram Moolenaar81bf7082005-02-12 14:31:42 +00008981 item_copy(&argvars[0], rettv, FALSE, 0);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00008982}
Bram Moolenaar071d4272004-06-13 20:20:40 +00008983
Bram Moolenaar8c8de832008-06-24 22:58:06 +00008984#ifdef FEAT_FLOAT
8985/*
8986 * "cos()" function
8987 */
8988 static void
8989f_cos(argvars, rettv)
8990 typval_T *argvars;
8991 typval_T *rettv;
8992{
8993 float_T f;
8994
8995 rettv->v_type = VAR_FLOAT;
8996 if (get_float_arg(argvars, &f) == OK)
8997 rettv->vval.v_float = cos(f);
8998 else
8999 rettv->vval.v_float = 0.0;
9000}
9001#endif
9002
Bram Moolenaar071d4272004-06-13 20:20:40 +00009003/*
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009004 * "count()" function
9005 */
9006 static void
9007f_count(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009008 typval_T *argvars;
9009 typval_T *rettv;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009010{
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009011 long n = 0;
9012 int ic = FALSE;
9013
Bram Moolenaare9a41262005-01-15 22:18:47 +00009014 if (argvars[0].v_type == VAR_LIST)
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009015 {
Bram Moolenaar33570922005-01-25 22:26:29 +00009016 listitem_T *li;
9017 list_T *l;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009018 long idx;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009019
Bram Moolenaare9a41262005-01-15 22:18:47 +00009020 if ((l = argvars[0].vval.v_list) != NULL)
9021 {
9022 li = l->lv_first;
9023 if (argvars[2].v_type != VAR_UNKNOWN)
9024 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009025 int error = FALSE;
9026
9027 ic = get_tv_number_chk(&argvars[2], &error);
Bram Moolenaare9a41262005-01-15 22:18:47 +00009028 if (argvars[3].v_type != VAR_UNKNOWN)
9029 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009030 idx = get_tv_number_chk(&argvars[3], &error);
9031 if (!error)
9032 {
9033 li = list_find(l, idx);
9034 if (li == NULL)
9035 EMSGN(_(e_listidx), idx);
9036 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00009037 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009038 if (error)
9039 li = NULL;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009040 }
9041
9042 for ( ; li != NULL; li = li->li_next)
9043 if (tv_equal(&li->li_tv, &argvars[1], ic))
9044 ++n;
9045 }
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009046 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00009047 else if (argvars[0].v_type == VAR_DICT)
9048 {
Bram Moolenaar33570922005-01-25 22:26:29 +00009049 int todo;
9050 dict_T *d;
9051 hashitem_T *hi;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009052
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00009053 if ((d = argvars[0].vval.v_dict) != NULL)
9054 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009055 int error = FALSE;
9056
Bram Moolenaare9a41262005-01-15 22:18:47 +00009057 if (argvars[2].v_type != VAR_UNKNOWN)
9058 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009059 ic = get_tv_number_chk(&argvars[2], &error);
Bram Moolenaare9a41262005-01-15 22:18:47 +00009060 if (argvars[3].v_type != VAR_UNKNOWN)
9061 EMSG(_(e_invarg));
9062 }
9063
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00009064 todo = error ? 0 : (int)d->dv_hashtab.ht_used;
Bram Moolenaar33570922005-01-25 22:26:29 +00009065 for (hi = d->dv_hashtab.ht_array; todo > 0; ++hi)
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00009066 {
9067 if (!HASHITEM_EMPTY(hi))
9068 {
9069 --todo;
9070 if (tv_equal(&HI2DI(hi)->di_tv, &argvars[1], ic))
9071 ++n;
9072 }
9073 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00009074 }
9075 }
9076 else
9077 EMSG2(_(e_listdictarg), "count()");
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009078 rettv->vval.v_number = n;
9079}
9080
9081/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00009082 * "cscope_connection([{num} , {dbpath} [, {prepend}]])" function
9083 *
9084 * Checks the existence of a cscope connection.
9085 */
9086/*ARGSUSED*/
9087 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009088f_cscope_connection(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009089 typval_T *argvars;
9090 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009091{
9092#ifdef FEAT_CSCOPE
9093 int num = 0;
9094 char_u *dbpath = NULL;
9095 char_u *prepend = NULL;
9096 char_u buf[NUMBUFLEN];
9097
Bram Moolenaar49cd9572005-01-03 21:06:01 +00009098 if (argvars[0].v_type != VAR_UNKNOWN
9099 && argvars[1].v_type != VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009100 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009101 num = (int)get_tv_number(&argvars[0]);
9102 dbpath = get_tv_string(&argvars[1]);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00009103 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009104 prepend = get_tv_string_buf(&argvars[2], buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009105 }
9106
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009107 rettv->vval.v_number = cs_connection(num, dbpath, prepend);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009108#else
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009109 rettv->vval.v_number = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009110#endif
9111}
9112
9113/*
9114 * "cursor(lnum, col)" function
9115 *
9116 * Moves the cursor to the specified line and column
9117 */
9118/*ARGSUSED*/
9119 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009120f_cursor(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009121 typval_T *argvars;
9122 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009123{
9124 long line, col;
Bram Moolenaara5525202006-03-02 22:52:09 +00009125#ifdef FEAT_VIRTUALEDIT
9126 long coladd = 0;
9127#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00009128
Bram Moolenaara5525202006-03-02 22:52:09 +00009129 if (argvars[1].v_type == VAR_UNKNOWN)
9130 {
Bram Moolenaar0e34f622006-03-03 23:00:03 +00009131 pos_T pos;
Bram Moolenaara5525202006-03-02 22:52:09 +00009132
Bram Moolenaar0e34f622006-03-03 23:00:03 +00009133 if (list2fpos(argvars, &pos, NULL) == FAIL)
Bram Moolenaara5525202006-03-02 22:52:09 +00009134 return;
Bram Moolenaar0e34f622006-03-03 23:00:03 +00009135 line = pos.lnum;
9136 col = pos.col;
Bram Moolenaara5525202006-03-02 22:52:09 +00009137#ifdef FEAT_VIRTUALEDIT
Bram Moolenaar0e34f622006-03-03 23:00:03 +00009138 coladd = pos.coladd;
Bram Moolenaara5525202006-03-02 22:52:09 +00009139#endif
9140 }
9141 else
9142 {
9143 line = get_tv_lnum(argvars);
9144 col = get_tv_number_chk(&argvars[1], NULL);
9145#ifdef FEAT_VIRTUALEDIT
9146 if (argvars[2].v_type != VAR_UNKNOWN)
9147 coladd = get_tv_number_chk(&argvars[2], NULL);
9148#endif
9149 }
9150 if (line < 0 || col < 0
9151#ifdef FEAT_VIRTUALEDIT
9152 || coladd < 0
9153#endif
9154 )
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009155 return; /* type error; errmsg already given */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009156 if (line > 0)
9157 curwin->w_cursor.lnum = line;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009158 if (col > 0)
9159 curwin->w_cursor.col = col - 1;
9160#ifdef FEAT_VIRTUALEDIT
Bram Moolenaara5525202006-03-02 22:52:09 +00009161 curwin->w_cursor.coladd = coladd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009162#endif
9163
9164 /* Make sure the cursor is in a valid position. */
9165 check_cursor();
9166#ifdef FEAT_MBYTE
9167 /* Correct cursor for multi-byte character. */
9168 if (has_mbyte)
9169 mb_adjust_cursor();
9170#endif
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00009171
9172 curwin->w_set_curswant = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009173}
9174
9175/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +00009176 * "deepcopy()" function
Bram Moolenaar071d4272004-06-13 20:20:40 +00009177 */
9178 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009179f_deepcopy(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009180 typval_T *argvars;
9181 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009182{
Bram Moolenaar81bf7082005-02-12 14:31:42 +00009183 int noref = 0;
9184
9185 if (argvars[1].v_type != VAR_UNKNOWN)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009186 noref = get_tv_number_chk(&argvars[1], NULL);
Bram Moolenaar81bf7082005-02-12 14:31:42 +00009187 if (noref < 0 || noref > 1)
9188 EMSG(_(e_invarg));
9189 else
Bram Moolenaard9fba312005-06-26 22:34:35 +00009190 item_copy(&argvars[0], rettv, TRUE, noref == 0 ? ++current_copyID : 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009191}
9192
9193/*
9194 * "delete()" function
9195 */
9196 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009197f_delete(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009198 typval_T *argvars;
9199 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009200{
9201 if (check_restricted() || check_secure())
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009202 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009203 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009204 rettv->vval.v_number = mch_remove(get_tv_string(&argvars[0]));
Bram Moolenaar071d4272004-06-13 20:20:40 +00009205}
9206
9207/*
9208 * "did_filetype()" function
9209 */
9210/*ARGSUSED*/
9211 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009212f_did_filetype(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009213 typval_T *argvars;
9214 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009215{
9216#ifdef FEAT_AUTOCMD
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009217 rettv->vval.v_number = did_filetype;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009218#else
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009219 rettv->vval.v_number = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009220#endif
9221}
9222
9223/*
Bram Moolenaar47136d72004-10-12 20:02:24 +00009224 * "diff_filler()" function
9225 */
9226/*ARGSUSED*/
9227 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009228f_diff_filler(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009229 typval_T *argvars;
9230 typval_T *rettv;
Bram Moolenaar47136d72004-10-12 20:02:24 +00009231{
9232#ifdef FEAT_DIFF
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009233 rettv->vval.v_number = diff_check_fill(curwin, get_tv_lnum(argvars));
Bram Moolenaar47136d72004-10-12 20:02:24 +00009234#endif
9235}
9236
9237/*
9238 * "diff_hlID()" function
9239 */
9240/*ARGSUSED*/
9241 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009242f_diff_hlID(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009243 typval_T *argvars;
9244 typval_T *rettv;
Bram Moolenaar47136d72004-10-12 20:02:24 +00009245{
9246#ifdef FEAT_DIFF
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009247 linenr_T lnum = get_tv_lnum(argvars);
Bram Moolenaar47136d72004-10-12 20:02:24 +00009248 static linenr_T prev_lnum = 0;
9249 static int changedtick = 0;
9250 static int fnum = 0;
9251 static int change_start = 0;
9252 static int change_end = 0;
Bram Moolenaar6f192452007-11-08 19:49:02 +00009253 static hlf_T hlID = (hlf_T)0;
Bram Moolenaar47136d72004-10-12 20:02:24 +00009254 int filler_lines;
9255 int col;
9256
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009257 if (lnum < 0) /* ignore type error in {lnum} arg */
9258 lnum = 0;
Bram Moolenaar47136d72004-10-12 20:02:24 +00009259 if (lnum != prev_lnum
9260 || changedtick != curbuf->b_changedtick
9261 || fnum != curbuf->b_fnum)
9262 {
9263 /* New line, buffer, change: need to get the values. */
9264 filler_lines = diff_check(curwin, lnum);
9265 if (filler_lines < 0)
9266 {
9267 if (filler_lines == -1)
9268 {
9269 change_start = MAXCOL;
9270 change_end = -1;
9271 if (diff_find_change(curwin, lnum, &change_start, &change_end))
9272 hlID = HLF_ADD; /* added line */
9273 else
9274 hlID = HLF_CHD; /* changed line */
9275 }
9276 else
9277 hlID = HLF_ADD; /* added line */
9278 }
9279 else
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00009280 hlID = (hlf_T)0;
Bram Moolenaar47136d72004-10-12 20:02:24 +00009281 prev_lnum = lnum;
9282 changedtick = curbuf->b_changedtick;
9283 fnum = curbuf->b_fnum;
9284 }
9285
9286 if (hlID == HLF_CHD || hlID == HLF_TXD)
9287 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009288 col = get_tv_number(&argvars[1]) - 1; /* ignore type error in {col} */
Bram Moolenaar47136d72004-10-12 20:02:24 +00009289 if (col >= change_start && col <= change_end)
9290 hlID = HLF_TXD; /* changed text */
9291 else
9292 hlID = HLF_CHD; /* changed line */
9293 }
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00009294 rettv->vval.v_number = hlID == (hlf_T)0 ? 0 : (int)hlID;
Bram Moolenaar47136d72004-10-12 20:02:24 +00009295#endif
9296}
9297
9298/*
Bram Moolenaare49b69a2005-01-08 16:11:57 +00009299 * "empty({expr})" function
9300 */
9301 static void
9302f_empty(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009303 typval_T *argvars;
9304 typval_T *rettv;
Bram Moolenaare49b69a2005-01-08 16:11:57 +00009305{
9306 int n;
9307
9308 switch (argvars[0].v_type)
9309 {
9310 case VAR_STRING:
9311 case VAR_FUNC:
9312 n = argvars[0].vval.v_string == NULL
9313 || *argvars[0].vval.v_string == NUL;
9314 break;
9315 case VAR_NUMBER:
9316 n = argvars[0].vval.v_number == 0;
9317 break;
Bram Moolenaar8c8de832008-06-24 22:58:06 +00009318#ifdef FEAT_FLOAT
9319 case VAR_FLOAT:
9320 n = argvars[0].vval.v_float == 0.0;
9321 break;
9322#endif
Bram Moolenaare49b69a2005-01-08 16:11:57 +00009323 case VAR_LIST:
9324 n = argvars[0].vval.v_list == NULL
9325 || argvars[0].vval.v_list->lv_first == NULL;
9326 break;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009327 case VAR_DICT:
9328 n = argvars[0].vval.v_dict == NULL
Bram Moolenaar33570922005-01-25 22:26:29 +00009329 || argvars[0].vval.v_dict->dv_hashtab.ht_used == 0;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009330 break;
Bram Moolenaare49b69a2005-01-08 16:11:57 +00009331 default:
9332 EMSG2(_(e_intern2), "f_empty()");
9333 n = 0;
9334 }
9335
9336 rettv->vval.v_number = n;
9337}
9338
9339/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00009340 * "escape({string}, {chars})" function
9341 */
9342 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009343f_escape(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009344 typval_T *argvars;
9345 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009346{
9347 char_u buf[NUMBUFLEN];
9348
Bram Moolenaar758711c2005-02-02 23:11:38 +00009349 rettv->vval.v_string = vim_strsave_escaped(get_tv_string(&argvars[0]),
9350 get_tv_string_buf(&argvars[1], buf));
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009351 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009352}
9353
9354/*
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009355 * "eval()" function
9356 */
9357/*ARGSUSED*/
9358 static void
9359f_eval(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009360 typval_T *argvars;
9361 typval_T *rettv;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009362{
9363 char_u *s;
9364
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009365 s = get_tv_string_chk(&argvars[0]);
9366 if (s != NULL)
9367 s = skipwhite(s);
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009368
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009369 if (s == NULL || eval1(&s, rettv, TRUE) == FAIL)
9370 {
9371 rettv->v_type = VAR_NUMBER;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009372 rettv->vval.v_number = 0;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009373 }
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009374 else if (*s != NUL)
9375 EMSG(_(e_trailing));
9376}
9377
9378/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00009379 * "eventhandler()" function
9380 */
9381/*ARGSUSED*/
9382 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009383f_eventhandler(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009384 typval_T *argvars;
9385 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009386{
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009387 rettv->vval.v_number = vgetc_busy;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009388}
9389
9390/*
9391 * "executable()" function
9392 */
9393 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009394f_executable(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009395 typval_T *argvars;
9396 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009397{
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009398 rettv->vval.v_number = mch_can_exe(get_tv_string(&argvars[0]));
Bram Moolenaar071d4272004-06-13 20:20:40 +00009399}
9400
9401/*
9402 * "exists()" function
9403 */
9404 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009405f_exists(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009406 typval_T *argvars;
9407 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009408{
9409 char_u *p;
9410 char_u *name;
9411 int n = FALSE;
9412 int len = 0;
9413
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009414 p = get_tv_string(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009415 if (*p == '$') /* environment variable */
9416 {
9417 /* first try "normal" environment variables (fast) */
9418 if (mch_getenv(p + 1) != NULL)
9419 n = TRUE;
9420 else
9421 {
9422 /* try expanding things like $VIM and ${HOME} */
9423 p = expand_env_save(p);
9424 if (p != NULL && *p != '$')
9425 n = TRUE;
9426 vim_free(p);
9427 }
9428 }
9429 else if (*p == '&' || *p == '+') /* option */
Bram Moolenaar79783442006-05-05 21:18:03 +00009430 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009431 n = (get_option_tv(&p, NULL, TRUE) == OK);
Bram Moolenaar79783442006-05-05 21:18:03 +00009432 if (*skipwhite(p) != NUL)
9433 n = FALSE; /* trailing garbage */
9434 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009435 else if (*p == '*') /* internal or user defined function */
9436 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +00009437 n = function_exists(p + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009438 }
9439 else if (*p == ':')
9440 {
9441 n = cmd_exists(p + 1);
9442 }
9443 else if (*p == '#')
9444 {
9445#ifdef FEAT_AUTOCMD
Bram Moolenaarf4cd3e82005-12-22 22:47:02 +00009446 if (p[1] == '#')
9447 n = autocmd_supported(p + 2);
9448 else
9449 n = au_exists(p + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009450#endif
9451 }
9452 else /* internal variable */
9453 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00009454 char_u *tofree;
9455 typval_T tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009456
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00009457 /* get_name_len() takes care of expanding curly braces */
9458 name = p;
9459 len = get_name_len(&p, &tofree, TRUE, FALSE);
9460 if (len > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009461 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00009462 if (tofree != NULL)
9463 name = tofree;
9464 n = (get_var_tv(name, len, &tv, FALSE) == OK);
9465 if (n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009466 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00009467 /* handle d.key, l[idx], f(expr) */
9468 n = (handle_subscript(&p, &tv, TRUE, FALSE) == OK);
9469 if (n)
9470 clear_tv(&tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009471 }
9472 }
Bram Moolenaar79783442006-05-05 21:18:03 +00009473 if (*p != NUL)
9474 n = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009475
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00009476 vim_free(tofree);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009477 }
9478
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009479 rettv->vval.v_number = n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009480}
9481
9482/*
9483 * "expand()" function
9484 */
9485 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009486f_expand(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009487 typval_T *argvars;
9488 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009489{
9490 char_u *s;
9491 int len;
9492 char_u *errormsg;
9493 int flags = WILD_SILENT|WILD_USE_NL|WILD_LIST_NOTFOUND;
9494 expand_T xpc;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009495 int error = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009496
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009497 rettv->v_type = VAR_STRING;
9498 s = get_tv_string(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009499 if (*s == '%' || *s == '#' || *s == '<')
9500 {
9501 ++emsg_off;
Bram Moolenaar63b92542007-03-27 14:57:09 +00009502 rettv->vval.v_string = eval_vars(s, s, &len, NULL, &errormsg, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009503 --emsg_off;
9504 }
9505 else
9506 {
9507 /* When the optional second argument is non-zero, don't remove matches
9508 * for 'suffixes' and 'wildignore' */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009509 if (argvars[1].v_type != VAR_UNKNOWN
9510 && get_tv_number_chk(&argvars[1], &error))
Bram Moolenaar071d4272004-06-13 20:20:40 +00009511 flags |= WILD_KEEP_ALL;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009512 if (!error)
9513 {
9514 ExpandInit(&xpc);
9515 xpc.xp_context = EXPAND_FILES;
9516 rettv->vval.v_string = ExpandOne(&xpc, s, NULL, flags, WILD_ALL);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009517 }
9518 else
9519 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009520 }
9521}
9522
9523/*
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009524 * "extend(list, list [, idx])" function
Bram Moolenaare9a41262005-01-15 22:18:47 +00009525 * "extend(dict, dict [, action])" function
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009526 */
9527 static void
9528f_extend(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009529 typval_T *argvars;
9530 typval_T *rettv;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009531{
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009532 rettv->vval.v_number = 0;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009533 if (argvars[0].v_type == VAR_LIST && argvars[1].v_type == VAR_LIST)
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009534 {
Bram Moolenaar33570922005-01-25 22:26:29 +00009535 list_T *l1, *l2;
9536 listitem_T *item;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009537 long before;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009538 int error = FALSE;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009539
Bram Moolenaare9a41262005-01-15 22:18:47 +00009540 l1 = argvars[0].vval.v_list;
9541 l2 = argvars[1].vval.v_list;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00009542 if (l1 != NULL && !tv_check_lock(l1->lv_lock, (char_u *)"extend()")
9543 && l2 != NULL)
Bram Moolenaare9a41262005-01-15 22:18:47 +00009544 {
9545 if (argvars[2].v_type != VAR_UNKNOWN)
9546 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009547 before = get_tv_number_chk(&argvars[2], &error);
9548 if (error)
9549 return; /* type error; errmsg already given */
9550
Bram Moolenaar758711c2005-02-02 23:11:38 +00009551 if (before == l1->lv_len)
9552 item = NULL;
9553 else
Bram Moolenaare9a41262005-01-15 22:18:47 +00009554 {
Bram Moolenaar758711c2005-02-02 23:11:38 +00009555 item = list_find(l1, before);
9556 if (item == NULL)
9557 {
9558 EMSGN(_(e_listidx), before);
9559 return;
9560 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00009561 }
9562 }
9563 else
9564 item = NULL;
9565 list_extend(l1, l2, item);
9566
Bram Moolenaare9a41262005-01-15 22:18:47 +00009567 copy_tv(&argvars[0], rettv);
9568 }
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009569 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00009570 else if (argvars[0].v_type == VAR_DICT && argvars[1].v_type == VAR_DICT)
9571 {
Bram Moolenaar33570922005-01-25 22:26:29 +00009572 dict_T *d1, *d2;
9573 dictitem_T *di1;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009574 char_u *action;
9575 int i;
Bram Moolenaar33570922005-01-25 22:26:29 +00009576 hashitem_T *hi2;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00009577 int todo;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009578
9579 d1 = argvars[0].vval.v_dict;
9580 d2 = argvars[1].vval.v_dict;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00009581 if (d1 != NULL && !tv_check_lock(d1->dv_lock, (char_u *)"extend()")
9582 && d2 != NULL)
Bram Moolenaare9a41262005-01-15 22:18:47 +00009583 {
9584 /* Check the third argument. */
9585 if (argvars[2].v_type != VAR_UNKNOWN)
9586 {
9587 static char *(av[]) = {"keep", "force", "error"};
9588
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009589 action = get_tv_string_chk(&argvars[2]);
9590 if (action == NULL)
9591 return; /* type error; errmsg already given */
Bram Moolenaare9a41262005-01-15 22:18:47 +00009592 for (i = 0; i < 3; ++i)
9593 if (STRCMP(action, av[i]) == 0)
9594 break;
9595 if (i == 3)
9596 {
Bram Moolenaareb3593b2006-04-22 22:33:57 +00009597 EMSG2(_(e_invarg2), action);
Bram Moolenaare9a41262005-01-15 22:18:47 +00009598 return;
9599 }
9600 }
9601 else
9602 action = (char_u *)"force";
9603
9604 /* Go over all entries in the second dict and add them to the
9605 * first dict. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00009606 todo = (int)d2->dv_hashtab.ht_used;
Bram Moolenaar33570922005-01-25 22:26:29 +00009607 for (hi2 = d2->dv_hashtab.ht_array; todo > 0; ++hi2)
Bram Moolenaare9a41262005-01-15 22:18:47 +00009608 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00009609 if (!HASHITEM_EMPTY(hi2))
Bram Moolenaare9a41262005-01-15 22:18:47 +00009610 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00009611 --todo;
9612 di1 = dict_find(d1, hi2->hi_key, -1);
9613 if (di1 == NULL)
9614 {
9615 di1 = dictitem_copy(HI2DI(hi2));
9616 if (di1 != NULL && dict_add(d1, di1) == FAIL)
9617 dictitem_free(di1);
9618 }
9619 else if (*action == 'e')
9620 {
9621 EMSG2(_("E737: Key already exists: %s"), hi2->hi_key);
9622 break;
9623 }
9624 else if (*action == 'f')
9625 {
9626 clear_tv(&di1->di_tv);
9627 copy_tv(&HI2DI(hi2)->di_tv, &di1->di_tv);
9628 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00009629 }
9630 }
9631
Bram Moolenaare9a41262005-01-15 22:18:47 +00009632 copy_tv(&argvars[0], rettv);
9633 }
9634 }
9635 else
9636 EMSG2(_(e_listdictarg), "extend()");
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009637}
9638
9639/*
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00009640 * "feedkeys()" function
9641 */
9642/*ARGSUSED*/
9643 static void
9644f_feedkeys(argvars, rettv)
9645 typval_T *argvars;
9646 typval_T *rettv;
9647{
9648 int remap = TRUE;
9649 char_u *keys, *flags;
9650 char_u nbuf[NUMBUFLEN];
9651 int typed = FALSE;
Bram Moolenaarf193fff2006-04-27 00:02:13 +00009652 char_u *keys_esc;
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00009653
Bram Moolenaar3d43a662007-04-27 20:15:55 +00009654 /* This is not allowed in the sandbox. If the commands would still be
9655 * executed in the sandbox it would be OK, but it probably happens later,
9656 * when "sandbox" is no longer set. */
9657 if (check_secure())
9658 return;
9659
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00009660 rettv->vval.v_number = 0;
9661 keys = get_tv_string(&argvars[0]);
9662 if (*keys != NUL)
9663 {
9664 if (argvars[1].v_type != VAR_UNKNOWN)
9665 {
9666 flags = get_tv_string_buf(&argvars[1], nbuf);
9667 for ( ; *flags != NUL; ++flags)
9668 {
9669 switch (*flags)
9670 {
9671 case 'n': remap = FALSE; break;
9672 case 'm': remap = TRUE; break;
9673 case 't': typed = TRUE; break;
9674 }
9675 }
9676 }
9677
Bram Moolenaarf193fff2006-04-27 00:02:13 +00009678 /* Need to escape K_SPECIAL and CSI before putting the string in the
9679 * typeahead buffer. */
9680 keys_esc = vim_strsave_escape_csi(keys);
9681 if (keys_esc != NULL)
9682 {
9683 ins_typebuf(keys_esc, (remap ? REMAP_YES : REMAP_NONE),
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00009684 typebuf.tb_len, !typed, FALSE);
Bram Moolenaarf193fff2006-04-27 00:02:13 +00009685 vim_free(keys_esc);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00009686 if (vgetc_busy)
9687 typebuf_was_filled = TRUE;
Bram Moolenaarf193fff2006-04-27 00:02:13 +00009688 }
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00009689 }
9690}
9691
9692/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00009693 * "filereadable()" function
9694 */
9695 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009696f_filereadable(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009697 typval_T *argvars;
9698 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009699{
9700 FILE *fd;
9701 char_u *p;
9702 int n;
9703
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009704 p = get_tv_string(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009705 if (*p && !mch_isdir(p) && (fd = mch_fopen((char *)p, "r")) != NULL)
9706 {
9707 n = TRUE;
9708 fclose(fd);
9709 }
9710 else
9711 n = FALSE;
9712
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009713 rettv->vval.v_number = n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009714}
9715
9716/*
Bram Moolenaar0e4d8772005-06-07 21:12:49 +00009717 * Return 0 for not writable, 1 for writable file, 2 for a dir which we have
Bram Moolenaar071d4272004-06-13 20:20:40 +00009718 * rights to write into.
9719 */
9720 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009721f_filewritable(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009722 typval_T *argvars;
9723 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009724{
Bram Moolenaar0e4d8772005-06-07 21:12:49 +00009725 rettv->vval.v_number = filewritable(get_tv_string(&argvars[0]));
Bram Moolenaar071d4272004-06-13 20:20:40 +00009726}
9727
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00009728static void findfilendir __ARGS((typval_T *argvars, typval_T *rettv, int find_what));
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00009729
9730 static void
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00009731findfilendir(argvars, rettv, find_what)
Bram Moolenaar33570922005-01-25 22:26:29 +00009732 typval_T *argvars;
9733 typval_T *rettv;
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00009734 int find_what;
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00009735{
9736#ifdef FEAT_SEARCHPATH
9737 char_u *fname;
9738 char_u *fresult = NULL;
9739 char_u *path = *curbuf->b_p_path == NUL ? p_path : curbuf->b_p_path;
9740 char_u *p;
9741 char_u pathbuf[NUMBUFLEN];
9742 int count = 1;
9743 int first = TRUE;
Bram Moolenaar899dddf2006-03-26 21:06:50 +00009744 int error = FALSE;
9745#endif
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00009746
Bram Moolenaar899dddf2006-03-26 21:06:50 +00009747 rettv->vval.v_string = NULL;
9748 rettv->v_type = VAR_STRING;
9749
9750#ifdef FEAT_SEARCHPATH
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009751 fname = get_tv_string(&argvars[0]);
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00009752
Bram Moolenaar49cd9572005-01-03 21:06:01 +00009753 if (argvars[1].v_type != VAR_UNKNOWN)
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00009754 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009755 p = get_tv_string_buf_chk(&argvars[1], pathbuf);
9756 if (p == NULL)
Bram Moolenaar899dddf2006-03-26 21:06:50 +00009757 error = TRUE;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009758 else
9759 {
9760 if (*p != NUL)
9761 path = p;
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00009762
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009763 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar899dddf2006-03-26 21:06:50 +00009764 count = get_tv_number_chk(&argvars[2], &error);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009765 }
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00009766 }
9767
Bram Moolenaar899dddf2006-03-26 21:06:50 +00009768 if (count < 0 && rettv_list_alloc(rettv) == FAIL)
9769 error = TRUE;
9770
9771 if (*fname != NUL && !error)
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00009772 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009773 do
9774 {
Bram Moolenaar899dddf2006-03-26 21:06:50 +00009775 if (rettv->v_type == VAR_STRING)
9776 vim_free(fresult);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009777 fresult = find_file_in_path_option(first ? fname : NULL,
9778 first ? (int)STRLEN(fname) : 0,
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00009779 0, first, path,
9780 find_what,
9781 curbuf->b_ffname,
9782 find_what == FINDFILE_DIR
9783 ? (char_u *)"" : curbuf->b_p_sua);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009784 first = FALSE;
Bram Moolenaar899dddf2006-03-26 21:06:50 +00009785
9786 if (fresult != NULL && rettv->v_type == VAR_LIST)
9787 list_append_string(rettv->vval.v_list, fresult, -1);
9788
9789 } while ((rettv->v_type == VAR_LIST || --count > 0) && fresult != NULL);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009790 }
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00009791
Bram Moolenaar899dddf2006-03-26 21:06:50 +00009792 if (rettv->v_type == VAR_STRING)
9793 rettv->vval.v_string = fresult;
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00009794#endif
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00009795}
9796
Bram Moolenaar33570922005-01-25 22:26:29 +00009797static void filter_map __ARGS((typval_T *argvars, typval_T *rettv, int map));
9798static int filter_map_one __ARGS((typval_T *tv, char_u *expr, int map, int *remp));
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009799
9800/*
9801 * Implementation of map() and filter().
9802 */
9803 static void
9804filter_map(argvars, rettv, map)
Bram Moolenaar33570922005-01-25 22:26:29 +00009805 typval_T *argvars;
9806 typval_T *rettv;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009807 int map;
9808{
9809 char_u buf[NUMBUFLEN];
Bram Moolenaare9a41262005-01-15 22:18:47 +00009810 char_u *expr;
Bram Moolenaar33570922005-01-25 22:26:29 +00009811 listitem_T *li, *nli;
9812 list_T *l = NULL;
9813 dictitem_T *di;
9814 hashtab_T *ht;
9815 hashitem_T *hi;
9816 dict_T *d = NULL;
9817 typval_T save_val;
9818 typval_T save_key;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009819 int rem;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00009820 int todo;
Bram Moolenaar89d40322006-08-29 15:30:07 +00009821 char_u *ermsg = map ? (char_u *)"map()" : (char_u *)"filter()";
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00009822 int save_did_emsg;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009823
9824 rettv->vval.v_number = 0;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009825 if (argvars[0].v_type == VAR_LIST)
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009826 {
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00009827 if ((l = argvars[0].vval.v_list) == NULL
Bram Moolenaar89d40322006-08-29 15:30:07 +00009828 || (map && tv_check_lock(l->lv_lock, ermsg)))
Bram Moolenaare9a41262005-01-15 22:18:47 +00009829 return;
9830 }
9831 else if (argvars[0].v_type == VAR_DICT)
9832 {
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00009833 if ((d = argvars[0].vval.v_dict) == NULL
Bram Moolenaar89d40322006-08-29 15:30:07 +00009834 || (map && tv_check_lock(d->dv_lock, ermsg)))
Bram Moolenaare9a41262005-01-15 22:18:47 +00009835 return;
9836 }
9837 else
9838 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00009839 EMSG2(_(e_listdictarg), ermsg);
Bram Moolenaare9a41262005-01-15 22:18:47 +00009840 return;
9841 }
9842
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009843 expr = get_tv_string_buf_chk(&argvars[1], buf);
9844 /* On type errors, the preceding call has already displayed an error
9845 * message. Avoid a misleading error message for an empty string that
9846 * was not passed as argument. */
9847 if (expr != NULL)
Bram Moolenaare9a41262005-01-15 22:18:47 +00009848 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009849 prepare_vimvar(VV_VAL, &save_val);
9850 expr = skipwhite(expr);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00009851
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00009852 /* We reset "did_emsg" to be able to detect whether an error
9853 * occurred during evaluation of the expression. */
9854 save_did_emsg = did_emsg;
9855 did_emsg = FALSE;
Bram Moolenaar280f1262006-01-30 00:14:18 +00009856
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009857 if (argvars[0].v_type == VAR_DICT)
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009858 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009859 prepare_vimvar(VV_KEY, &save_key);
9860 vimvars[VV_KEY].vv_type = VAR_STRING;
9861
9862 ht = &d->dv_hashtab;
9863 hash_lock(ht);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00009864 todo = (int)ht->ht_used;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009865 for (hi = ht->ht_array; todo > 0; ++hi)
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009866 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009867 if (!HASHITEM_EMPTY(hi))
9868 {
9869 --todo;
9870 di = HI2DI(hi);
Bram Moolenaar89d40322006-08-29 15:30:07 +00009871 if (tv_check_lock(di->di_tv.v_lock, ermsg))
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009872 break;
9873 vimvars[VV_KEY].vv_str = vim_strsave(di->di_key);
Bram Moolenaar280f1262006-01-30 00:14:18 +00009874 if (filter_map_one(&di->di_tv, expr, map, &rem) == FAIL
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00009875 || did_emsg)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009876 break;
9877 if (!map && rem)
9878 dictitem_remove(d, di);
9879 clear_tv(&vimvars[VV_KEY].vv_tv);
9880 }
9881 }
9882 hash_unlock(ht);
9883
9884 restore_vimvar(VV_KEY, &save_key);
9885 }
9886 else
9887 {
9888 for (li = l->lv_first; li != NULL; li = nli)
9889 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00009890 if (tv_check_lock(li->li_tv.v_lock, ermsg))
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00009891 break;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009892 nli = li->li_next;
Bram Moolenaar280f1262006-01-30 00:14:18 +00009893 if (filter_map_one(&li->li_tv, expr, map, &rem) == FAIL
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00009894 || did_emsg)
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00009895 break;
9896 if (!map && rem)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009897 listitem_remove(l, li);
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009898 }
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009899 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00009900
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009901 restore_vimvar(VV_VAL, &save_val);
Bram Moolenaar280f1262006-01-30 00:14:18 +00009902
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00009903 did_emsg |= save_did_emsg;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009904 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00009905
9906 copy_tv(&argvars[0], rettv);
9907}
9908
9909 static int
9910filter_map_one(tv, expr, map, remp)
Bram Moolenaar33570922005-01-25 22:26:29 +00009911 typval_T *tv;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009912 char_u *expr;
9913 int map;
9914 int *remp;
9915{
Bram Moolenaar33570922005-01-25 22:26:29 +00009916 typval_T rettv;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009917 char_u *s;
Bram Moolenaarb4066a12007-09-17 19:38:08 +00009918 int retval = FAIL;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009919
Bram Moolenaar33570922005-01-25 22:26:29 +00009920 copy_tv(tv, &vimvars[VV_VAL].vv_tv);
Bram Moolenaare9a41262005-01-15 22:18:47 +00009921 s = expr;
9922 if (eval1(&s, &rettv, TRUE) == FAIL)
Bram Moolenaarb4066a12007-09-17 19:38:08 +00009923 goto theend;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009924 if (*s != NUL) /* check for trailing chars after expr */
9925 {
9926 EMSG2(_(e_invexpr2), s);
Bram Moolenaarb4066a12007-09-17 19:38:08 +00009927 goto theend;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009928 }
9929 if (map)
9930 {
9931 /* map(): replace the list item value */
9932 clear_tv(tv);
Bram Moolenaar4463f292005-09-25 22:20:24 +00009933 rettv.v_lock = 0;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009934 *tv = rettv;
9935 }
9936 else
9937 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009938 int error = FALSE;
9939
Bram Moolenaare9a41262005-01-15 22:18:47 +00009940 /* filter(): when expr is zero remove the item */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009941 *remp = (get_tv_number_chk(&rettv, &error) == 0);
Bram Moolenaare9a41262005-01-15 22:18:47 +00009942 clear_tv(&rettv);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009943 /* On type error, nothing has been removed; return FAIL to stop the
9944 * loop. The error message was given by get_tv_number_chk(). */
9945 if (error)
Bram Moolenaarb4066a12007-09-17 19:38:08 +00009946 goto theend;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009947 }
Bram Moolenaarb4066a12007-09-17 19:38:08 +00009948 retval = OK;
9949theend:
Bram Moolenaar33570922005-01-25 22:26:29 +00009950 clear_tv(&vimvars[VV_VAL].vv_tv);
Bram Moolenaarb4066a12007-09-17 19:38:08 +00009951 return retval;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009952}
9953
9954/*
9955 * "filter()" function
9956 */
9957 static void
9958f_filter(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009959 typval_T *argvars;
9960 typval_T *rettv;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009961{
9962 filter_map(argvars, rettv, FALSE);
9963}
9964
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00009965/*
Bram Moolenaar0d660222005-01-07 21:51:51 +00009966 * "finddir({fname}[, {path}[, {count}]])" function
9967 */
9968 static void
9969f_finddir(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009970 typval_T *argvars;
9971 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +00009972{
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00009973 findfilendir(argvars, rettv, FINDFILE_DIR);
Bram Moolenaar0d660222005-01-07 21:51:51 +00009974}
9975
9976/*
9977 * "findfile({fname}[, {path}[, {count}]])" function
9978 */
9979 static void
9980f_findfile(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009981 typval_T *argvars;
9982 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +00009983{
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00009984 findfilendir(argvars, rettv, FINDFILE_FILE);
Bram Moolenaar0d660222005-01-07 21:51:51 +00009985}
9986
Bram Moolenaar8c8de832008-06-24 22:58:06 +00009987#ifdef FEAT_FLOAT
9988/*
9989 * "float2nr({float})" function
9990 */
9991 static void
9992f_float2nr(argvars, rettv)
9993 typval_T *argvars;
9994 typval_T *rettv;
9995{
9996 float_T f;
9997
9998 if (get_float_arg(argvars, &f) == OK)
9999 {
10000 if (f < -0x7fffffff)
10001 rettv->vval.v_number = -0x7fffffff;
10002 else if (f > 0x7fffffff)
10003 rettv->vval.v_number = 0x7fffffff;
10004 else
10005 rettv->vval.v_number = (varnumber_T)f;
10006 }
10007 else
10008 rettv->vval.v_number = 0;
10009}
10010
10011/*
10012 * "floor({float})" function
10013 */
10014 static void
10015f_floor(argvars, rettv)
10016 typval_T *argvars;
10017 typval_T *rettv;
10018{
10019 float_T f;
10020
10021 rettv->v_type = VAR_FLOAT;
10022 if (get_float_arg(argvars, &f) == OK)
10023 rettv->vval.v_float = floor(f);
10024 else
10025 rettv->vval.v_float = 0.0;
10026}
10027#endif
10028
Bram Moolenaar0d660222005-01-07 21:51:51 +000010029/*
Bram Moolenaaraebaf892008-05-28 14:49:58 +000010030 * "fnameescape({string})" function
10031 */
10032 static void
10033f_fnameescape(argvars, rettv)
10034 typval_T *argvars;
10035 typval_T *rettv;
10036{
10037 rettv->vval.v_string = vim_strsave_fnameescape(
10038 get_tv_string(&argvars[0]), FALSE);
10039 rettv->v_type = VAR_STRING;
10040}
10041
10042/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000010043 * "fnamemodify({fname}, {mods})" function
10044 */
10045 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010046f_fnamemodify(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010047 typval_T *argvars;
10048 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010049{
10050 char_u *fname;
10051 char_u *mods;
10052 int usedlen = 0;
10053 int len;
10054 char_u *fbuf = NULL;
10055 char_u buf[NUMBUFLEN];
10056
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000010057 fname = get_tv_string_chk(&argvars[0]);
10058 mods = get_tv_string_buf_chk(&argvars[1], buf);
10059 if (fname == NULL || mods == NULL)
10060 fname = NULL;
10061 else
10062 {
10063 len = (int)STRLEN(fname);
10064 (void)modify_fname(mods, &usedlen, &fname, &fbuf, &len);
10065 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000010066
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010067 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010068 if (fname == NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010069 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010070 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010071 rettv->vval.v_string = vim_strnsave(fname, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010072 vim_free(fbuf);
10073}
10074
Bram Moolenaar33570922005-01-25 22:26:29 +000010075static void foldclosed_both __ARGS((typval_T *argvars, typval_T *rettv, int end));
Bram Moolenaar071d4272004-06-13 20:20:40 +000010076
10077/*
10078 * "foldclosed()" function
10079 */
10080 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010081foldclosed_both(argvars, rettv, end)
Bram Moolenaar33570922005-01-25 22:26:29 +000010082 typval_T *argvars;
10083 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010084 int end;
10085{
10086#ifdef FEAT_FOLDING
10087 linenr_T lnum;
10088 linenr_T first, last;
10089
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010090 lnum = get_tv_lnum(argvars);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010091 if (lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count)
10092 {
10093 if (hasFoldingWin(curwin, lnum, &first, &last, FALSE, NULL))
10094 {
10095 if (end)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010096 rettv->vval.v_number = (varnumber_T)last;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010097 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010098 rettv->vval.v_number = (varnumber_T)first;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010099 return;
10100 }
10101 }
10102#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010103 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010104}
10105
10106/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000010107 * "foldclosed()" function
10108 */
10109 static void
10110f_foldclosed(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010111 typval_T *argvars;
10112 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010113{
10114 foldclosed_both(argvars, rettv, FALSE);
10115}
10116
10117/*
10118 * "foldclosedend()" function
10119 */
10120 static void
10121f_foldclosedend(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010122 typval_T *argvars;
10123 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010124{
10125 foldclosed_both(argvars, rettv, TRUE);
10126}
10127
10128/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000010129 * "foldlevel()" function
10130 */
10131 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010132f_foldlevel(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010133 typval_T *argvars;
10134 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010135{
10136#ifdef FEAT_FOLDING
10137 linenr_T lnum;
10138
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010139 lnum = get_tv_lnum(argvars);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010140 if (lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010141 rettv->vval.v_number = foldLevel(lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010142 else
10143#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010144 rettv->vval.v_number = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010145}
10146
10147/*
10148 * "foldtext()" function
10149 */
10150/*ARGSUSED*/
10151 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010152f_foldtext(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010153 typval_T *argvars;
10154 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010155{
10156#ifdef FEAT_FOLDING
10157 linenr_T lnum;
10158 char_u *s;
10159 char_u *r;
10160 int len;
10161 char *txt;
10162#endif
10163
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010164 rettv->v_type = VAR_STRING;
10165 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010166#ifdef FEAT_FOLDING
Bram Moolenaare9a41262005-01-15 22:18:47 +000010167 if ((linenr_T)vimvars[VV_FOLDSTART].vv_nr > 0
10168 && (linenr_T)vimvars[VV_FOLDEND].vv_nr
10169 <= curbuf->b_ml.ml_line_count
10170 && vimvars[VV_FOLDDASHES].vv_str != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010171 {
10172 /* Find first non-empty line in the fold. */
Bram Moolenaare9a41262005-01-15 22:18:47 +000010173 lnum = (linenr_T)vimvars[VV_FOLDSTART].vv_nr;
10174 while (lnum < (linenr_T)vimvars[VV_FOLDEND].vv_nr)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010175 {
10176 if (!linewhite(lnum))
10177 break;
10178 ++lnum;
10179 }
10180
10181 /* Find interesting text in this line. */
10182 s = skipwhite(ml_get(lnum));
10183 /* skip C comment-start */
10184 if (s[0] == '/' && (s[1] == '*' || s[1] == '/'))
Bram Moolenaar293ee4d2004-12-09 21:34:53 +000010185 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000010186 s = skipwhite(s + 2);
Bram Moolenaar293ee4d2004-12-09 21:34:53 +000010187 if (*skipwhite(s) == NUL
Bram Moolenaare9a41262005-01-15 22:18:47 +000010188 && lnum + 1 < (linenr_T)vimvars[VV_FOLDEND].vv_nr)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +000010189 {
10190 s = skipwhite(ml_get(lnum + 1));
10191 if (*s == '*')
10192 s = skipwhite(s + 1);
10193 }
10194 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000010195 txt = _("+-%s%3ld lines: ");
10196 r = alloc((unsigned)(STRLEN(txt)
Bram Moolenaare9a41262005-01-15 22:18:47 +000010197 + STRLEN(vimvars[VV_FOLDDASHES].vv_str) /* for %s */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010198 + 20 /* for %3ld */
10199 + STRLEN(s))); /* concatenated */
10200 if (r != NULL)
10201 {
Bram Moolenaare9a41262005-01-15 22:18:47 +000010202 sprintf((char *)r, txt, vimvars[VV_FOLDDASHES].vv_str,
10203 (long)((linenr_T)vimvars[VV_FOLDEND].vv_nr
10204 - (linenr_T)vimvars[VV_FOLDSTART].vv_nr + 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +000010205 len = (int)STRLEN(r);
10206 STRCAT(r, s);
10207 /* remove 'foldmarker' and 'commentstring' */
10208 foldtext_cleanup(r + len);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010209 rettv->vval.v_string = r;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010210 }
10211 }
10212#endif
10213}
10214
10215/*
Bram Moolenaar7b0294c2004-10-11 10:16:09 +000010216 * "foldtextresult(lnum)" function
10217 */
10218/*ARGSUSED*/
10219 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010220f_foldtextresult(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010221 typval_T *argvars;
10222 typval_T *rettv;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +000010223{
10224#ifdef FEAT_FOLDING
10225 linenr_T lnum;
10226 char_u *text;
10227 char_u buf[51];
10228 foldinfo_T foldinfo;
10229 int fold_count;
10230#endif
10231
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010232 rettv->v_type = VAR_STRING;
10233 rettv->vval.v_string = NULL;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +000010234#ifdef FEAT_FOLDING
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010235 lnum = get_tv_lnum(argvars);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000010236 /* treat illegal types and illegal string values for {lnum} the same */
10237 if (lnum < 0)
10238 lnum = 0;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +000010239 fold_count = foldedCount(curwin, lnum, &foldinfo);
10240 if (fold_count > 0)
10241 {
10242 text = get_foldtext(curwin, lnum, lnum + fold_count - 1,
10243 &foldinfo, buf);
10244 if (text == buf)
10245 text = vim_strsave(text);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010246 rettv->vval.v_string = text;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +000010247 }
10248#endif
10249}
10250
10251/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000010252 * "foreground()" function
10253 */
10254/*ARGSUSED*/
10255 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010256f_foreground(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010257 typval_T *argvars;
10258 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010259{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010260 rettv->vval.v_number = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010261#ifdef FEAT_GUI
10262 if (gui.in_use)
10263 gui_mch_set_foreground();
10264#else
10265# ifdef WIN32
10266 win32_set_foreground();
10267# endif
10268#endif
10269}
10270
10271/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +000010272 * "function()" function
10273 */
10274/*ARGSUSED*/
10275 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010276f_function(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010277 typval_T *argvars;
10278 typval_T *rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000010279{
10280 char_u *s;
10281
Bram Moolenaara7043832005-01-21 11:56:39 +000010282 rettv->vval.v_number = 0;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010283 s = get_tv_string(&argvars[0]);
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000010284 if (s == NULL || *s == NUL || VIM_ISDIGIT(*s))
Bram Moolenaar49cd9572005-01-03 21:06:01 +000010285 EMSG2(_(e_invarg2), s);
10286 else if (!function_exists(s))
Bram Moolenaare49b69a2005-01-08 16:11:57 +000010287 EMSG2(_("E700: Unknown function: %s"), s);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000010288 else
10289 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010290 rettv->vval.v_string = vim_strsave(s);
10291 rettv->v_type = VAR_FUNC;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000010292 }
10293}
10294
10295/*
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +000010296 * "garbagecollect()" function
10297 */
10298/*ARGSUSED*/
10299 static void
10300f_garbagecollect(argvars, rettv)
10301 typval_T *argvars;
10302 typval_T *rettv;
10303{
Bram Moolenaar9fecb462006-09-05 10:59:47 +000010304 /* This is postponed until we are back at the toplevel, because we may be
10305 * using Lists and Dicts internally. E.g.: ":echo [garbagecollect()]". */
10306 want_garbage_collect = TRUE;
Bram Moolenaar9d2c8c12007-09-25 16:00:00 +000010307
10308 if (argvars[0].v_type != VAR_UNKNOWN && get_tv_number(&argvars[0]) == 1)
10309 garbage_collect_at_exit = TRUE;
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +000010310}
10311
10312/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000010313 * "get()" function
10314 */
10315 static void
10316f_get(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010317 typval_T *argvars;
10318 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010319{
Bram Moolenaar33570922005-01-25 22:26:29 +000010320 listitem_T *li;
10321 list_T *l;
10322 dictitem_T *di;
10323 dict_T *d;
10324 typval_T *tv = NULL;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010325
Bram Moolenaare9a41262005-01-15 22:18:47 +000010326 if (argvars[0].v_type == VAR_LIST)
Bram Moolenaar0d660222005-01-07 21:51:51 +000010327 {
Bram Moolenaare9a41262005-01-15 22:18:47 +000010328 if ((l = argvars[0].vval.v_list) != NULL)
Bram Moolenaar0d660222005-01-07 21:51:51 +000010329 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000010330 int error = FALSE;
10331
10332 li = list_find(l, get_tv_number_chk(&argvars[1], &error));
10333 if (!error && li != NULL)
Bram Moolenaare9a41262005-01-15 22:18:47 +000010334 tv = &li->li_tv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010335 }
Bram Moolenaar0d660222005-01-07 21:51:51 +000010336 }
Bram Moolenaare9a41262005-01-15 22:18:47 +000010337 else if (argvars[0].v_type == VAR_DICT)
10338 {
10339 if ((d = argvars[0].vval.v_dict) != NULL)
10340 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000010341 di = dict_find(d, get_tv_string(&argvars[1]), -1);
Bram Moolenaare9a41262005-01-15 22:18:47 +000010342 if (di != NULL)
10343 tv = &di->di_tv;
10344 }
10345 }
10346 else
10347 EMSG2(_(e_listdictarg), "get()");
10348
10349 if (tv == NULL)
10350 {
10351 if (argvars[2].v_type == VAR_UNKNOWN)
10352 rettv->vval.v_number = 0;
10353 else
10354 copy_tv(&argvars[2], rettv);
10355 }
10356 else
10357 copy_tv(tv, rettv);
Bram Moolenaar0d660222005-01-07 21:51:51 +000010358}
10359
Bram Moolenaar342337a2005-07-21 21:11:17 +000010360static void get_buffer_lines __ARGS((buf_T *buf, linenr_T start, linenr_T end, int retlist, typval_T *rettv));
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010361
10362/*
10363 * Get line or list of lines from buffer "buf" into "rettv".
Bram Moolenaar342337a2005-07-21 21:11:17 +000010364 * Return a range (from start to end) of lines in rettv from the specified
10365 * buffer.
10366 * If 'retlist' is TRUE, then the lines are returned as a Vim List.
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010367 */
10368 static void
Bram Moolenaar342337a2005-07-21 21:11:17 +000010369get_buffer_lines(buf, start, end, retlist, rettv)
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010370 buf_T *buf;
10371 linenr_T start;
10372 linenr_T end;
Bram Moolenaar342337a2005-07-21 21:11:17 +000010373 int retlist;
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010374 typval_T *rettv;
10375{
10376 char_u *p;
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010377
Bram Moolenaar342337a2005-07-21 21:11:17 +000010378 if (retlist)
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010379 {
Bram Moolenaareddf53b2006-02-27 00:11:10 +000010380 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaar342337a2005-07-21 21:11:17 +000010381 return;
Bram Moolenaar342337a2005-07-21 21:11:17 +000010382 }
10383 else
10384 rettv->vval.v_number = 0;
10385
10386 if (buf == NULL || buf->b_ml.ml_mfp == NULL || start < 0)
10387 return;
10388
10389 if (!retlist)
10390 {
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010391 if (start >= 1 && start <= buf->b_ml.ml_line_count)
10392 p = ml_get_buf(buf, start, FALSE);
10393 else
10394 p = (char_u *)"";
10395
10396 rettv->v_type = VAR_STRING;
10397 rettv->vval.v_string = vim_strsave(p);
10398 }
10399 else
10400 {
10401 if (end < start)
Bram Moolenaar342337a2005-07-21 21:11:17 +000010402 return;
10403
10404 if (start < 1)
10405 start = 1;
10406 if (end > buf->b_ml.ml_line_count)
10407 end = buf->b_ml.ml_line_count;
10408 while (start <= end)
Bram Moolenaareddf53b2006-02-27 00:11:10 +000010409 if (list_append_string(rettv->vval.v_list,
10410 ml_get_buf(buf, start++, FALSE), -1) == FAIL)
Bram Moolenaar342337a2005-07-21 21:11:17 +000010411 break;
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010412 }
10413}
10414
10415/*
10416 * "getbufline()" function
10417 */
10418 static void
10419f_getbufline(argvars, rettv)
10420 typval_T *argvars;
10421 typval_T *rettv;
10422{
10423 linenr_T lnum;
10424 linenr_T end;
10425 buf_T *buf;
10426
10427 (void)get_tv_number(&argvars[0]); /* issue errmsg if type error */
10428 ++emsg_off;
10429 buf = get_buf_tv(&argvars[0]);
10430 --emsg_off;
10431
Bram Moolenaar661b1822005-07-28 22:36:45 +000010432 lnum = get_tv_lnum_buf(&argvars[1], buf);
Bram Moolenaar342337a2005-07-21 21:11:17 +000010433 if (argvars[2].v_type == VAR_UNKNOWN)
10434 end = lnum;
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010435 else
Bram Moolenaar661b1822005-07-28 22:36:45 +000010436 end = get_tv_lnum_buf(&argvars[2], buf);
10437
Bram Moolenaar342337a2005-07-21 21:11:17 +000010438 get_buffer_lines(buf, lnum, end, TRUE, rettv);
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010439}
10440
Bram Moolenaar0d660222005-01-07 21:51:51 +000010441/*
10442 * "getbufvar()" function
10443 */
10444 static void
10445f_getbufvar(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010446 typval_T *argvars;
10447 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010448{
10449 buf_T *buf;
10450 buf_T *save_curbuf;
10451 char_u *varname;
Bram Moolenaar33570922005-01-25 22:26:29 +000010452 dictitem_T *v;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010453
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000010454 (void)get_tv_number(&argvars[0]); /* issue errmsg if type error */
10455 varname = get_tv_string_chk(&argvars[1]);
Bram Moolenaar0d660222005-01-07 21:51:51 +000010456 ++emsg_off;
10457 buf = get_buf_tv(&argvars[0]);
Bram Moolenaar0d660222005-01-07 21:51:51 +000010458
10459 rettv->v_type = VAR_STRING;
10460 rettv->vval.v_string = NULL;
10461
10462 if (buf != NULL && varname != NULL)
10463 {
Bram Moolenaar632deed2008-06-27 18:26:11 +000010464 /* set curbuf to be our buf, temporarily */
10465 save_curbuf = curbuf;
10466 curbuf = buf;
10467
Bram Moolenaar0d660222005-01-07 21:51:51 +000010468 if (*varname == '&') /* buffer-local-option */
Bram Moolenaar0d660222005-01-07 21:51:51 +000010469 get_option_tv(&varname, rettv, TRUE);
Bram Moolenaar0d660222005-01-07 21:51:51 +000010470 else
10471 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000010472 if (*varname == NUL)
10473 /* let getbufvar({nr}, "") return the "b:" dictionary. The
10474 * scope prefix before the NUL byte is required by
10475 * find_var_in_ht(). */
10476 varname = (char_u *)"b:" + 2;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010477 /* look up the variable */
Bram Moolenaar632deed2008-06-27 18:26:11 +000010478 v = find_var_in_ht(&curbuf->b_vars.dv_hashtab, varname, FALSE);
Bram Moolenaar0d660222005-01-07 21:51:51 +000010479 if (v != NULL)
Bram Moolenaar33570922005-01-25 22:26:29 +000010480 copy_tv(&v->di_tv, rettv);
Bram Moolenaar0d660222005-01-07 21:51:51 +000010481 }
Bram Moolenaar632deed2008-06-27 18:26:11 +000010482
10483 /* restore previous notion of curbuf */
10484 curbuf = save_curbuf;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010485 }
10486
10487 --emsg_off;
10488}
10489
10490/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000010491 * "getchar()" function
10492 */
10493 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010494f_getchar(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010495 typval_T *argvars;
10496 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010497{
10498 varnumber_T n;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000010499 int error = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010500
Bram Moolenaar4015b2c2006-06-22 19:01:34 +000010501 /* Position the cursor. Needed after a message that ends in a space. */
10502 windgoto(msg_row, msg_col);
10503
Bram Moolenaar071d4272004-06-13 20:20:40 +000010504 ++no_mapping;
10505 ++allow_keys;
Bram Moolenaar9c8791f2007-09-05 19:47:23 +000010506 for (;;)
10507 {
10508 if (argvars[0].v_type == VAR_UNKNOWN)
10509 /* getchar(): blocking wait. */
10510 n = safe_vgetc();
10511 else if (get_tv_number_chk(&argvars[0], &error) == 1)
10512 /* getchar(1): only check if char avail */
10513 n = vpeekc();
10514 else if (error || vpeekc() == NUL)
10515 /* illegal argument or getchar(0) and no char avail: return zero */
10516 n = 0;
10517 else
10518 /* getchar(0) and char avail: return char */
10519 n = safe_vgetc();
10520 if (n == K_IGNORE)
10521 continue;
10522 break;
10523 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000010524 --no_mapping;
10525 --allow_keys;
10526
Bram Moolenaar219b8702006-11-01 14:32:36 +000010527 vimvars[VV_MOUSE_WIN].vv_nr = 0;
10528 vimvars[VV_MOUSE_LNUM].vv_nr = 0;
10529 vimvars[VV_MOUSE_COL].vv_nr = 0;
10530
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010531 rettv->vval.v_number = n;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010532 if (IS_SPECIAL(n) || mod_mask != 0)
10533 {
10534 char_u temp[10]; /* modifier: 3, mbyte-char: 6, NUL: 1 */
10535 int i = 0;
10536
10537 /* Turn a special key into three bytes, plus modifier. */
10538 if (mod_mask != 0)
10539 {
10540 temp[i++] = K_SPECIAL;
10541 temp[i++] = KS_MODIFIER;
10542 temp[i++] = mod_mask;
10543 }
10544 if (IS_SPECIAL(n))
10545 {
10546 temp[i++] = K_SPECIAL;
10547 temp[i++] = K_SECOND(n);
10548 temp[i++] = K_THIRD(n);
10549 }
10550#ifdef FEAT_MBYTE
10551 else if (has_mbyte)
10552 i += (*mb_char2bytes)(n, temp + i);
10553#endif
10554 else
10555 temp[i++] = n;
10556 temp[i++] = NUL;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010557 rettv->v_type = VAR_STRING;
10558 rettv->vval.v_string = vim_strsave(temp);
Bram Moolenaar219b8702006-11-01 14:32:36 +000010559
10560#ifdef FEAT_MOUSE
10561 if (n == K_LEFTMOUSE
10562 || n == K_LEFTMOUSE_NM
10563 || n == K_LEFTDRAG
10564 || n == K_LEFTRELEASE
10565 || n == K_LEFTRELEASE_NM
10566 || n == K_MIDDLEMOUSE
10567 || n == K_MIDDLEDRAG
10568 || n == K_MIDDLERELEASE
10569 || n == K_RIGHTMOUSE
10570 || n == K_RIGHTDRAG
10571 || n == K_RIGHTRELEASE
10572 || n == K_X1MOUSE
10573 || n == K_X1DRAG
10574 || n == K_X1RELEASE
10575 || n == K_X2MOUSE
10576 || n == K_X2DRAG
10577 || n == K_X2RELEASE
10578 || n == K_MOUSEDOWN
10579 || n == K_MOUSEUP)
10580 {
10581 int row = mouse_row;
10582 int col = mouse_col;
10583 win_T *win;
10584 linenr_T lnum;
10585# ifdef FEAT_WINDOWS
10586 win_T *wp;
10587# endif
10588 int n = 1;
10589
10590 if (row >= 0 && col >= 0)
10591 {
10592 /* Find the window at the mouse coordinates and compute the
10593 * text position. */
10594 win = mouse_find_win(&row, &col);
10595 (void)mouse_comp_pos(win, &row, &col, &lnum);
10596# ifdef FEAT_WINDOWS
10597 for (wp = firstwin; wp != win; wp = wp->w_next)
10598 ++n;
10599# endif
10600 vimvars[VV_MOUSE_WIN].vv_nr = n;
10601 vimvars[VV_MOUSE_LNUM].vv_nr = lnum;
10602 vimvars[VV_MOUSE_COL].vv_nr = col + 1;
10603 }
10604 }
10605#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000010606 }
10607}
10608
10609/*
10610 * "getcharmod()" function
10611 */
10612/*ARGSUSED*/
10613 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010614f_getcharmod(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010615 typval_T *argvars;
10616 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010617{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010618 rettv->vval.v_number = mod_mask;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010619}
10620
10621/*
10622 * "getcmdline()" function
10623 */
10624/*ARGSUSED*/
10625 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010626f_getcmdline(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010627 typval_T *argvars;
10628 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010629{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010630 rettv->v_type = VAR_STRING;
10631 rettv->vval.v_string = get_cmdline_str();
Bram Moolenaar071d4272004-06-13 20:20:40 +000010632}
10633
10634/*
10635 * "getcmdpos()" function
10636 */
10637/*ARGSUSED*/
10638 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010639f_getcmdpos(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010640 typval_T *argvars;
10641 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010642{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010643 rettv->vval.v_number = get_cmdline_pos() + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010644}
10645
10646/*
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000010647 * "getcmdtype()" function
10648 */
10649/*ARGSUSED*/
10650 static void
10651f_getcmdtype(argvars, rettv)
10652 typval_T *argvars;
10653 typval_T *rettv;
10654{
10655 rettv->v_type = VAR_STRING;
10656 rettv->vval.v_string = alloc(2);
10657 if (rettv->vval.v_string != NULL)
10658 {
10659 rettv->vval.v_string[0] = get_cmdline_type();
10660 rettv->vval.v_string[1] = NUL;
10661 }
10662}
10663
10664/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000010665 * "getcwd()" function
10666 */
10667/*ARGSUSED*/
10668 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010669f_getcwd(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010670 typval_T *argvars;
10671 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010672{
10673 char_u cwd[MAXPATHL];
10674
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010675 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010676 if (mch_dirname(cwd, MAXPATHL) == FAIL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010677 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010678 else
10679 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010680 rettv->vval.v_string = vim_strsave(cwd);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010681#ifdef BACKSLASH_IN_FILENAME
Bram Moolenaar342337a2005-07-21 21:11:17 +000010682 if (rettv->vval.v_string != NULL)
10683 slash_adjust(rettv->vval.v_string);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010684#endif
10685 }
10686}
10687
10688/*
Bram Moolenaar46c9c732004-12-12 11:37:09 +000010689 * "getfontname()" function
10690 */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +000010691/*ARGSUSED*/
Bram Moolenaar46c9c732004-12-12 11:37:09 +000010692 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010693f_getfontname(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010694 typval_T *argvars;
10695 typval_T *rettv;
Bram Moolenaar46c9c732004-12-12 11:37:09 +000010696{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010697 rettv->v_type = VAR_STRING;
10698 rettv->vval.v_string = NULL;
Bram Moolenaar46c9c732004-12-12 11:37:09 +000010699#ifdef FEAT_GUI
10700 if (gui.in_use)
10701 {
10702 GuiFont font;
10703 char_u *name = NULL;
10704
Bram Moolenaar49cd9572005-01-03 21:06:01 +000010705 if (argvars[0].v_type == VAR_UNKNOWN)
Bram Moolenaar46c9c732004-12-12 11:37:09 +000010706 {
10707 /* Get the "Normal" font. Either the name saved by
10708 * hl_set_font_name() or from the font ID. */
10709 font = gui.norm_font;
10710 name = hl_get_font_name();
10711 }
10712 else
10713 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010714 name = get_tv_string(&argvars[0]);
Bram Moolenaar46c9c732004-12-12 11:37:09 +000010715 if (STRCMP(name, "*") == 0) /* don't use font dialog */
10716 return;
10717 font = gui_mch_get_font(name, FALSE);
10718 if (font == NOFONT)
10719 return; /* Invalid font name, return empty string. */
10720 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010721 rettv->vval.v_string = gui_mch_get_fontname(font, name);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000010722 if (argvars[0].v_type != VAR_UNKNOWN)
Bram Moolenaar46c9c732004-12-12 11:37:09 +000010723 gui_mch_free_font(font);
10724 }
10725#endif
10726}
10727
10728/*
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000010729 * "getfperm({fname})" function
10730 */
10731 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010732f_getfperm(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010733 typval_T *argvars;
10734 typval_T *rettv;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000010735{
10736 char_u *fname;
10737 struct stat st;
10738 char_u *perm = NULL;
10739 char_u flags[] = "rwx";
10740 int i;
10741
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010742 fname = get_tv_string(&argvars[0]);
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000010743
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010744 rettv->v_type = VAR_STRING;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000010745 if (mch_stat((char *)fname, &st) >= 0)
10746 {
10747 perm = vim_strsave((char_u *)"---------");
10748 if (perm != NULL)
10749 {
10750 for (i = 0; i < 9; i++)
10751 {
10752 if (st.st_mode & (1 << (8 - i)))
10753 perm[i] = flags[i % 3];
10754 }
10755 }
10756 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010757 rettv->vval.v_string = perm;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000010758}
10759
10760/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000010761 * "getfsize({fname})" function
10762 */
10763 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010764f_getfsize(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010765 typval_T *argvars;
10766 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010767{
10768 char_u *fname;
10769 struct stat st;
10770
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010771 fname = get_tv_string(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010772
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010773 rettv->v_type = VAR_NUMBER;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010774
10775 if (mch_stat((char *)fname, &st) >= 0)
10776 {
10777 if (mch_isdir(fname))
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010778 rettv->vval.v_number = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010779 else
Bram Moolenaard827ada2007-06-19 15:19:55 +000010780 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010781 rettv->vval.v_number = (varnumber_T)st.st_size;
Bram Moolenaard827ada2007-06-19 15:19:55 +000010782
10783 /* non-perfect check for overflow */
10784 if ((off_t)rettv->vval.v_number != (off_t)st.st_size)
10785 rettv->vval.v_number = -2;
10786 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000010787 }
10788 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010789 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010790}
10791
10792/*
10793 * "getftime({fname})" function
10794 */
10795 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010796f_getftime(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010797 typval_T *argvars;
10798 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010799{
10800 char_u *fname;
10801 struct stat st;
10802
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010803 fname = get_tv_string(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010804
10805 if (mch_stat((char *)fname, &st) >= 0)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010806 rettv->vval.v_number = (varnumber_T)st.st_mtime;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010807 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010808 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010809}
10810
10811/*
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000010812 * "getftype({fname})" function
10813 */
10814 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010815f_getftype(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010816 typval_T *argvars;
10817 typval_T *rettv;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000010818{
10819 char_u *fname;
10820 struct stat st;
10821 char_u *type = NULL;
10822 char *t;
10823
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010824 fname = get_tv_string(&argvars[0]);
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000010825
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010826 rettv->v_type = VAR_STRING;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000010827 if (mch_lstat((char *)fname, &st) >= 0)
10828 {
10829#ifdef S_ISREG
10830 if (S_ISREG(st.st_mode))
10831 t = "file";
10832 else if (S_ISDIR(st.st_mode))
10833 t = "dir";
10834# ifdef S_ISLNK
10835 else if (S_ISLNK(st.st_mode))
10836 t = "link";
10837# endif
10838# ifdef S_ISBLK
10839 else if (S_ISBLK(st.st_mode))
10840 t = "bdev";
10841# endif
10842# ifdef S_ISCHR
10843 else if (S_ISCHR(st.st_mode))
10844 t = "cdev";
10845# endif
10846# ifdef S_ISFIFO
10847 else if (S_ISFIFO(st.st_mode))
10848 t = "fifo";
10849# endif
10850# ifdef S_ISSOCK
10851 else if (S_ISSOCK(st.st_mode))
10852 t = "fifo";
10853# endif
10854 else
10855 t = "other";
10856#else
10857# ifdef S_IFMT
10858 switch (st.st_mode & S_IFMT)
10859 {
10860 case S_IFREG: t = "file"; break;
10861 case S_IFDIR: t = "dir"; break;
10862# ifdef S_IFLNK
10863 case S_IFLNK: t = "link"; break;
10864# endif
10865# ifdef S_IFBLK
10866 case S_IFBLK: t = "bdev"; break;
10867# endif
10868# ifdef S_IFCHR
10869 case S_IFCHR: t = "cdev"; break;
10870# endif
10871# ifdef S_IFIFO
10872 case S_IFIFO: t = "fifo"; break;
10873# endif
10874# ifdef S_IFSOCK
10875 case S_IFSOCK: t = "socket"; break;
10876# endif
10877 default: t = "other";
10878 }
10879# else
10880 if (mch_isdir(fname))
10881 t = "dir";
10882 else
10883 t = "file";
10884# endif
10885#endif
10886 type = vim_strsave((char_u *)t);
10887 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010888 rettv->vval.v_string = type;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000010889}
10890
10891/*
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010892 * "getline(lnum, [end])" function
Bram Moolenaar0d660222005-01-07 21:51:51 +000010893 */
10894 static void
10895f_getline(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010896 typval_T *argvars;
10897 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010898{
10899 linenr_T lnum;
10900 linenr_T end;
Bram Moolenaar342337a2005-07-21 21:11:17 +000010901 int retlist;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010902
10903 lnum = get_tv_lnum(argvars);
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010904 if (argvars[1].v_type == VAR_UNKNOWN)
Bram Moolenaar342337a2005-07-21 21:11:17 +000010905 {
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010906 end = 0;
Bram Moolenaar342337a2005-07-21 21:11:17 +000010907 retlist = FALSE;
10908 }
Bram Moolenaar0d660222005-01-07 21:51:51 +000010909 else
Bram Moolenaar342337a2005-07-21 21:11:17 +000010910 {
Bram Moolenaar0d660222005-01-07 21:51:51 +000010911 end = get_tv_lnum(&argvars[1]);
Bram Moolenaar342337a2005-07-21 21:11:17 +000010912 retlist = TRUE;
10913 }
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010914
Bram Moolenaar342337a2005-07-21 21:11:17 +000010915 get_buffer_lines(curbuf, lnum, end, retlist, rettv);
Bram Moolenaar0d660222005-01-07 21:51:51 +000010916}
10917
10918/*
Bram Moolenaar6ee10162007-07-26 20:58:42 +000010919 * "getmatches()" function
10920 */
10921/*ARGSUSED*/
10922 static void
10923f_getmatches(argvars, rettv)
10924 typval_T *argvars;
10925 typval_T *rettv;
10926{
10927#ifdef FEAT_SEARCH_EXTRA
10928 dict_T *dict;
10929 matchitem_T *cur = curwin->w_match_head;
10930
10931 rettv->vval.v_number = 0;
10932
10933 if (rettv_list_alloc(rettv) == OK)
10934 {
10935 while (cur != NULL)
10936 {
10937 dict = dict_alloc();
10938 if (dict == NULL)
10939 return;
Bram Moolenaar6ee10162007-07-26 20:58:42 +000010940 dict_add_nr_str(dict, "group", 0L, syn_id2name(cur->hlg_id));
10941 dict_add_nr_str(dict, "pattern", 0L, cur->pattern);
10942 dict_add_nr_str(dict, "priority", (long)cur->priority, NULL);
10943 dict_add_nr_str(dict, "id", (long)cur->id, NULL);
10944 list_append_dict(rettv->vval.v_list, dict);
10945 cur = cur->next;
10946 }
10947 }
10948#endif
10949}
10950
10951/*
Bram Moolenaar18081e32008-02-20 19:11:07 +000010952 * "getpid()" function
10953 */
10954/*ARGSUSED*/
10955 static void
10956f_getpid(argvars, rettv)
10957 typval_T *argvars;
10958 typval_T *rettv;
10959{
10960 rettv->vval.v_number = mch_get_pid();
10961}
10962
10963/*
Bram Moolenaara5525202006-03-02 22:52:09 +000010964 * "getpos(string)" function
10965 */
10966 static void
10967f_getpos(argvars, rettv)
10968 typval_T *argvars;
10969 typval_T *rettv;
10970{
10971 pos_T *fp;
10972 list_T *l;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000010973 int fnum = -1;
Bram Moolenaara5525202006-03-02 22:52:09 +000010974
10975 if (rettv_list_alloc(rettv) == OK)
10976 {
10977 l = rettv->vval.v_list;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000010978 fp = var2fpos(&argvars[0], TRUE, &fnum);
10979 if (fnum != -1)
10980 list_append_number(l, (varnumber_T)fnum);
10981 else
10982 list_append_number(l, (varnumber_T)0);
Bram Moolenaara5525202006-03-02 22:52:09 +000010983 list_append_number(l, (fp != NULL) ? (varnumber_T)fp->lnum
10984 : (varnumber_T)0);
Bram Moolenaare65f7322007-10-02 20:08:54 +000010985 list_append_number(l, (fp != NULL)
10986 ? (varnumber_T)(fp->col == MAXCOL ? MAXCOL : fp->col + 1)
Bram Moolenaara5525202006-03-02 22:52:09 +000010987 : (varnumber_T)0);
10988 list_append_number(l,
10989#ifdef FEAT_VIRTUALEDIT
10990 (fp != NULL) ? (varnumber_T)fp->coladd :
10991#endif
10992 (varnumber_T)0);
10993 }
10994 else
10995 rettv->vval.v_number = FALSE;
10996}
10997
10998/*
Bram Moolenaar280f1262006-01-30 00:14:18 +000010999 * "getqflist()" and "getloclist()" functions
Bram Moolenaar2641f772005-03-25 21:58:17 +000011000 */
Bram Moolenaar280f1262006-01-30 00:14:18 +000011001/*ARGSUSED*/
Bram Moolenaar2641f772005-03-25 21:58:17 +000011002 static void
Bram Moolenaar280f1262006-01-30 00:14:18 +000011003f_getqflist(argvars, rettv)
11004 typval_T *argvars;
Bram Moolenaar2641f772005-03-25 21:58:17 +000011005 typval_T *rettv;
11006{
11007#ifdef FEAT_QUICKFIX
Bram Moolenaar280f1262006-01-30 00:14:18 +000011008 win_T *wp;
Bram Moolenaar2641f772005-03-25 21:58:17 +000011009#endif
11010
Bram Moolenaar77f66d62007-02-20 02:16:18 +000011011 rettv->vval.v_number = 0;
Bram Moolenaar2641f772005-03-25 21:58:17 +000011012#ifdef FEAT_QUICKFIX
Bram Moolenaareddf53b2006-02-27 00:11:10 +000011013 if (rettv_list_alloc(rettv) == OK)
Bram Moolenaar2641f772005-03-25 21:58:17 +000011014 {
Bram Moolenaar280f1262006-01-30 00:14:18 +000011015 wp = NULL;
11016 if (argvars[0].v_type != VAR_UNKNOWN) /* getloclist() */
11017 {
Bram Moolenaar99ebf042006-04-15 20:28:54 +000011018 wp = find_win_by_nr(&argvars[0], NULL);
Bram Moolenaar280f1262006-01-30 00:14:18 +000011019 if (wp == NULL)
11020 return;
11021 }
11022
Bram Moolenaareddf53b2006-02-27 00:11:10 +000011023 (void)get_errorlist(wp, rettv->vval.v_list);
Bram Moolenaar2641f772005-03-25 21:58:17 +000011024 }
11025#endif
11026}
11027
11028/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000011029 * "getreg()" function
11030 */
11031 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011032f_getreg(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000011033 typval_T *argvars;
11034 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011035{
11036 char_u *strregname;
11037 int regname;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000011038 int arg2 = FALSE;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011039 int error = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011040
Bram Moolenaar49cd9572005-01-03 21:06:01 +000011041 if (argvars[0].v_type != VAR_UNKNOWN)
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000011042 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011043 strregname = get_tv_string_chk(&argvars[0]);
11044 error = strregname == NULL;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000011045 if (argvars[1].v_type != VAR_UNKNOWN)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011046 arg2 = get_tv_number_chk(&argvars[1], &error);
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000011047 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000011048 else
Bram Moolenaare9a41262005-01-15 22:18:47 +000011049 strregname = vimvars[VV_REG].vv_str;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011050 regname = (strregname == NULL ? '"' : *strregname);
11051 if (regname == 0)
11052 regname = '"';
11053
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011054 rettv->v_type = VAR_STRING;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011055 rettv->vval.v_string = error ? NULL :
11056 get_reg_contents(regname, TRUE, arg2);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011057}
11058
11059/*
11060 * "getregtype()" function
11061 */
11062 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011063f_getregtype(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000011064 typval_T *argvars;
11065 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011066{
11067 char_u *strregname;
11068 int regname;
11069 char_u buf[NUMBUFLEN + 2];
11070 long reglen = 0;
11071
Bram Moolenaar49cd9572005-01-03 21:06:01 +000011072 if (argvars[0].v_type != VAR_UNKNOWN)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011073 {
11074 strregname = get_tv_string_chk(&argvars[0]);
11075 if (strregname == NULL) /* type error; errmsg already given */
11076 {
11077 rettv->v_type = VAR_STRING;
11078 rettv->vval.v_string = NULL;
11079 return;
11080 }
11081 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000011082 else
11083 /* Default to v:register */
Bram Moolenaare9a41262005-01-15 22:18:47 +000011084 strregname = vimvars[VV_REG].vv_str;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011085
11086 regname = (strregname == NULL ? '"' : *strregname);
11087 if (regname == 0)
11088 regname = '"';
11089
11090 buf[0] = NUL;
11091 buf[1] = NUL;
11092 switch (get_reg_type(regname, &reglen))
11093 {
11094 case MLINE: buf[0] = 'V'; break;
11095 case MCHAR: buf[0] = 'v'; break;
11096#ifdef FEAT_VISUAL
11097 case MBLOCK:
11098 buf[0] = Ctrl_V;
11099 sprintf((char *)buf + 1, "%ld", reglen + 1);
11100 break;
11101#endif
11102 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011103 rettv->v_type = VAR_STRING;
11104 rettv->vval.v_string = vim_strsave(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011105}
11106
11107/*
Bram Moolenaar99ebf042006-04-15 20:28:54 +000011108 * "gettabwinvar()" function
11109 */
11110 static void
11111f_gettabwinvar(argvars, rettv)
11112 typval_T *argvars;
11113 typval_T *rettv;
11114{
11115 getwinvar(argvars, rettv, 1);
11116}
11117
11118/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000011119 * "getwinposx()" function
11120 */
11121/*ARGSUSED*/
11122 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011123f_getwinposx(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000011124 typval_T *argvars;
11125 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011126{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011127 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011128#ifdef FEAT_GUI
11129 if (gui.in_use)
11130 {
11131 int x, y;
11132
11133 if (gui_mch_get_winpos(&x, &y) == OK)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011134 rettv->vval.v_number = x;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011135 }
11136#endif
11137}
11138
11139/*
11140 * "getwinposy()" function
11141 */
11142/*ARGSUSED*/
11143 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011144f_getwinposy(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000011145 typval_T *argvars;
11146 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011147{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011148 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011149#ifdef FEAT_GUI
11150 if (gui.in_use)
11151 {
11152 int x, y;
11153
11154 if (gui_mch_get_winpos(&x, &y) == OK)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011155 rettv->vval.v_number = y;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011156 }
11157#endif
11158}
11159
Bram Moolenaar99ebf042006-04-15 20:28:54 +000011160/*
Bram Moolenaar8c8de832008-06-24 22:58:06 +000011161 * Find window specified by "vp" in tabpage "tp".
Bram Moolenaar99ebf042006-04-15 20:28:54 +000011162 */
Bram Moolenaara40058a2005-07-11 22:42:07 +000011163 static win_T *
Bram Moolenaar99ebf042006-04-15 20:28:54 +000011164find_win_by_nr(vp, tp)
Bram Moolenaara40058a2005-07-11 22:42:07 +000011165 typval_T *vp;
Bram Moolenaar99ebf042006-04-15 20:28:54 +000011166 tabpage_T *tp; /* NULL for current tab page */
Bram Moolenaara40058a2005-07-11 22:42:07 +000011167{
11168#ifdef FEAT_WINDOWS
11169 win_T *wp;
11170#endif
11171 int nr;
11172
11173 nr = get_tv_number_chk(vp, NULL);
11174
11175#ifdef FEAT_WINDOWS
11176 if (nr < 0)
11177 return NULL;
11178 if (nr == 0)
11179 return curwin;
11180
Bram Moolenaar99ebf042006-04-15 20:28:54 +000011181 for (wp = (tp == NULL || tp == curtab) ? firstwin : tp->tp_firstwin;
11182 wp != NULL; wp = wp->w_next)
Bram Moolenaara40058a2005-07-11 22:42:07 +000011183 if (--nr <= 0)
11184 break;
11185 return wp;
11186#else
11187 if (nr == 0 || nr == 1)
11188 return curwin;
11189 return NULL;
11190#endif
11191}
11192
Bram Moolenaar071d4272004-06-13 20:20:40 +000011193/*
11194 * "getwinvar()" function
11195 */
11196 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011197f_getwinvar(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000011198 typval_T *argvars;
11199 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011200{
Bram Moolenaar99ebf042006-04-15 20:28:54 +000011201 getwinvar(argvars, rettv, 0);
11202}
11203
11204/*
11205 * getwinvar() and gettabwinvar()
11206 */
11207 static void
11208getwinvar(argvars, rettv, off)
11209 typval_T *argvars;
11210 typval_T *rettv;
11211 int off; /* 1 for gettabwinvar() */
11212{
Bram Moolenaar071d4272004-06-13 20:20:40 +000011213 win_T *win, *oldcurwin;
11214 char_u *varname;
Bram Moolenaar33570922005-01-25 22:26:29 +000011215 dictitem_T *v;
Bram Moolenaar99ebf042006-04-15 20:28:54 +000011216 tabpage_T *tp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011217
Bram Moolenaar99ebf042006-04-15 20:28:54 +000011218#ifdef FEAT_WINDOWS
11219 if (off == 1)
11220 tp = find_tabpage((int)get_tv_number_chk(&argvars[0], NULL));
11221 else
11222 tp = curtab;
11223#endif
11224 win = find_win_by_nr(&argvars[off], tp);
11225 varname = get_tv_string_chk(&argvars[off + 1]);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011226 ++emsg_off;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011227
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011228 rettv->v_type = VAR_STRING;
11229 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011230
11231 if (win != NULL && varname != NULL)
11232 {
Bram Moolenaar69a7e432006-10-10 10:55:47 +000011233 /* Set curwin to be our win, temporarily. Also set curbuf, so
11234 * that we can get buffer-local options. */
11235 oldcurwin = curwin;
11236 curwin = win;
11237 curbuf = win->w_buffer;
11238
Bram Moolenaar071d4272004-06-13 20:20:40 +000011239 if (*varname == '&') /* window-local-option */
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011240 get_option_tv(&varname, rettv, 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011241 else
11242 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011243 if (*varname == NUL)
11244 /* let getwinvar({nr}, "") return the "w:" dictionary. The
11245 * scope prefix before the NUL byte is required by
11246 * find_var_in_ht(). */
11247 varname = (char_u *)"w:" + 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011248 /* look up the variable */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000011249 v = find_var_in_ht(&win->w_vars.dv_hashtab, varname, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011250 if (v != NULL)
Bram Moolenaar33570922005-01-25 22:26:29 +000011251 copy_tv(&v->di_tv, rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011252 }
Bram Moolenaar69a7e432006-10-10 10:55:47 +000011253
11254 /* restore previous notion of curwin */
11255 curwin = oldcurwin;
11256 curbuf = curwin->w_buffer;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011257 }
11258
11259 --emsg_off;
11260}
11261
11262/*
11263 * "glob()" function
11264 */
11265 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011266f_glob(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000011267 typval_T *argvars;
11268 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011269{
11270 expand_T xpc;
11271
11272 ExpandInit(&xpc);
11273 xpc.xp_context = EXPAND_FILES;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011274 rettv->v_type = VAR_STRING;
11275 rettv->vval.v_string = ExpandOne(&xpc, get_tv_string(&argvars[0]),
Bram Moolenaar071d4272004-06-13 20:20:40 +000011276 NULL, WILD_USE_NL|WILD_SILENT, WILD_ALL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011277}
11278
11279/*
11280 * "globpath()" function
11281 */
11282 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011283f_globpath(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000011284 typval_T *argvars;
11285 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011286{
11287 char_u buf1[NUMBUFLEN];
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011288 char_u *file = get_tv_string_buf_chk(&argvars[1], buf1);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011289
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011290 rettv->v_type = VAR_STRING;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011291 if (file == NULL)
11292 rettv->vval.v_string = NULL;
11293 else
11294 rettv->vval.v_string = globpath(get_tv_string(&argvars[0]), file);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011295}
11296
11297/*
11298 * "has()" function
11299 */
11300 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011301f_has(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000011302 typval_T *argvars;
11303 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011304{
11305 int i;
11306 char_u *name;
11307 int n = FALSE;
11308 static char *(has_list[]) =
11309 {
11310#ifdef AMIGA
11311 "amiga",
11312# ifdef FEAT_ARP
11313 "arp",
11314# endif
11315#endif
11316#ifdef __BEOS__
11317 "beos",
11318#endif
11319#ifdef MSDOS
11320# ifdef DJGPP
11321 "dos32",
11322# else
11323 "dos16",
11324# endif
11325#endif
Bram Moolenaar241a8aa2005-12-06 20:04:44 +000011326#ifdef MACOS
Bram Moolenaar071d4272004-06-13 20:20:40 +000011327 "mac",
11328#endif
11329#if defined(MACOS_X_UNIX)
11330 "macunix",
11331#endif
11332#ifdef OS2
11333 "os2",
11334#endif
11335#ifdef __QNX__
11336 "qnx",
11337#endif
11338#ifdef RISCOS
11339 "riscos",
11340#endif
11341#ifdef UNIX
11342 "unix",
11343#endif
11344#ifdef VMS
11345 "vms",
11346#endif
11347#ifdef WIN16
11348 "win16",
11349#endif
11350#ifdef WIN32
11351 "win32",
11352#endif
11353#if defined(UNIX) && (defined(__CYGWIN32__) || defined(__CYGWIN__))
11354 "win32unix",
11355#endif
11356#ifdef WIN64
11357 "win64",
11358#endif
11359#ifdef EBCDIC
11360 "ebcdic",
11361#endif
11362#ifndef CASE_INSENSITIVE_FILENAME
11363 "fname_case",
11364#endif
11365#ifdef FEAT_ARABIC
11366 "arabic",
11367#endif
11368#ifdef FEAT_AUTOCMD
11369 "autocmd",
11370#endif
11371#ifdef FEAT_BEVAL
11372 "balloon_eval",
Bram Moolenaar342337a2005-07-21 21:11:17 +000011373# ifndef FEAT_GUI_W32 /* other GUIs always have multiline balloons */
11374 "balloon_multiline",
11375# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011376#endif
11377#if defined(SOME_BUILTIN_TCAPS) || defined(ALL_BUILTIN_TCAPS)
11378 "builtin_terms",
11379# ifdef ALL_BUILTIN_TCAPS
11380 "all_builtin_terms",
11381# endif
11382#endif
11383#ifdef FEAT_BYTEOFF
11384 "byte_offset",
11385#endif
11386#ifdef FEAT_CINDENT
11387 "cindent",
11388#endif
11389#ifdef FEAT_CLIENTSERVER
11390 "clientserver",
11391#endif
11392#ifdef FEAT_CLIPBOARD
11393 "clipboard",
11394#endif
11395#ifdef FEAT_CMDL_COMPL
11396 "cmdline_compl",
11397#endif
11398#ifdef FEAT_CMDHIST
11399 "cmdline_hist",
11400#endif
11401#ifdef FEAT_COMMENTS
11402 "comments",
11403#endif
11404#ifdef FEAT_CRYPT
11405 "cryptv",
11406#endif
11407#ifdef FEAT_CSCOPE
11408 "cscope",
11409#endif
Bram Moolenaarac6e65f2005-08-29 22:25:38 +000011410#ifdef CURSOR_SHAPE
11411 "cursorshape",
11412#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011413#ifdef DEBUG
11414 "debug",
11415#endif
11416#ifdef FEAT_CON_DIALOG
11417 "dialog_con",
11418#endif
11419#ifdef FEAT_GUI_DIALOG
11420 "dialog_gui",
11421#endif
11422#ifdef FEAT_DIFF
11423 "diff",
11424#endif
11425#ifdef FEAT_DIGRAPHS
11426 "digraphs",
11427#endif
11428#ifdef FEAT_DND
11429 "dnd",
11430#endif
11431#ifdef FEAT_EMACS_TAGS
11432 "emacs_tags",
11433#endif
11434 "eval", /* always present, of course! */
11435#ifdef FEAT_EX_EXTRA
11436 "ex_extra",
11437#endif
11438#ifdef FEAT_SEARCH_EXTRA
11439 "extra_search",
11440#endif
11441#ifdef FEAT_FKMAP
11442 "farsi",
11443#endif
11444#ifdef FEAT_SEARCHPATH
11445 "file_in_path",
11446#endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000011447#if defined(UNIX) && !defined(USE_SYSTEM)
11448 "filterpipe",
11449#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011450#ifdef FEAT_FIND_ID
11451 "find_in_path",
11452#endif
Bram Moolenaar8c8de832008-06-24 22:58:06 +000011453#ifdef FEAT_FLOAT
11454 "float",
11455#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011456#ifdef FEAT_FOLDING
11457 "folding",
11458#endif
11459#ifdef FEAT_FOOTER
11460 "footer",
11461#endif
11462#if !defined(USE_SYSTEM) && defined(UNIX)
11463 "fork",
11464#endif
11465#ifdef FEAT_GETTEXT
11466 "gettext",
11467#endif
11468#ifdef FEAT_GUI
11469 "gui",
11470#endif
11471#ifdef FEAT_GUI_ATHENA
11472# ifdef FEAT_GUI_NEXTAW
11473 "gui_neXtaw",
11474# else
11475 "gui_athena",
11476# endif
11477#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011478#ifdef FEAT_GUI_GTK
11479 "gui_gtk",
11480# ifdef HAVE_GTK2
11481 "gui_gtk2",
11482# endif
11483#endif
Bram Moolenaar7b188622007-09-25 10:51:12 +000011484#ifdef FEAT_GUI_GNOME
11485 "gui_gnome",
11486#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011487#ifdef FEAT_GUI_MAC
11488 "gui_mac",
11489#endif
11490#ifdef FEAT_GUI_MOTIF
11491 "gui_motif",
11492#endif
11493#ifdef FEAT_GUI_PHOTON
11494 "gui_photon",
11495#endif
11496#ifdef FEAT_GUI_W16
11497 "gui_win16",
11498#endif
11499#ifdef FEAT_GUI_W32
11500 "gui_win32",
11501#endif
11502#ifdef FEAT_HANGULIN
11503 "hangul_input",
11504#endif
11505#if defined(HAVE_ICONV_H) && defined(USE_ICONV)
11506 "iconv",
11507#endif
11508#ifdef FEAT_INS_EXPAND
11509 "insert_expand",
11510#endif
11511#ifdef FEAT_JUMPLIST
11512 "jumplist",
11513#endif
11514#ifdef FEAT_KEYMAP
11515 "keymap",
11516#endif
11517#ifdef FEAT_LANGMAP
11518 "langmap",
11519#endif
11520#ifdef FEAT_LIBCALL
11521 "libcall",
11522#endif
11523#ifdef FEAT_LINEBREAK
11524 "linebreak",
11525#endif
11526#ifdef FEAT_LISP
11527 "lispindent",
11528#endif
11529#ifdef FEAT_LISTCMDS
11530 "listcmds",
11531#endif
11532#ifdef FEAT_LOCALMAP
11533 "localmap",
11534#endif
11535#ifdef FEAT_MENU
11536 "menu",
11537#endif
11538#ifdef FEAT_SESSION
11539 "mksession",
11540#endif
11541#ifdef FEAT_MODIFY_FNAME
11542 "modify_fname",
11543#endif
11544#ifdef FEAT_MOUSE
11545 "mouse",
11546#endif
11547#ifdef FEAT_MOUSESHAPE
11548 "mouseshape",
11549#endif
11550#if defined(UNIX) || defined(VMS)
11551# ifdef FEAT_MOUSE_DEC
11552 "mouse_dec",
11553# endif
11554# ifdef FEAT_MOUSE_GPM
11555 "mouse_gpm",
11556# endif
11557# ifdef FEAT_MOUSE_JSB
11558 "mouse_jsbterm",
11559# endif
11560# ifdef FEAT_MOUSE_NET
11561 "mouse_netterm",
11562# endif
11563# ifdef FEAT_MOUSE_PTERM
11564 "mouse_pterm",
11565# endif
Bram Moolenaar8c8de832008-06-24 22:58:06 +000011566# ifdef FEAT_SYSMOUSE
11567 "mouse_sysmouse",
11568# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011569# ifdef FEAT_MOUSE_XTERM
11570 "mouse_xterm",
11571# endif
11572#endif
11573#ifdef FEAT_MBYTE
11574 "multi_byte",
11575#endif
11576#ifdef FEAT_MBYTE_IME
11577 "multi_byte_ime",
11578#endif
11579#ifdef FEAT_MULTI_LANG
11580 "multi_lang",
11581#endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +000011582#ifdef FEAT_MZSCHEME
Bram Moolenaar33570922005-01-25 22:26:29 +000011583#ifndef DYNAMIC_MZSCHEME
Bram Moolenaar325b7a22004-07-05 15:58:32 +000011584 "mzscheme",
11585#endif
Bram Moolenaar33570922005-01-25 22:26:29 +000011586#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011587#ifdef FEAT_OLE
11588 "ole",
11589#endif
11590#ifdef FEAT_OSFILETYPE
11591 "osfiletype",
11592#endif
11593#ifdef FEAT_PATH_EXTRA
11594 "path_extra",
11595#endif
11596#ifdef FEAT_PERL
11597#ifndef DYNAMIC_PERL
11598 "perl",
11599#endif
11600#endif
11601#ifdef FEAT_PYTHON
11602#ifndef DYNAMIC_PYTHON
11603 "python",
11604#endif
11605#endif
11606#ifdef FEAT_POSTSCRIPT
11607 "postscript",
11608#endif
11609#ifdef FEAT_PRINTER
11610 "printer",
11611#endif
Bram Moolenaar05159a02005-02-26 23:04:13 +000011612#ifdef FEAT_PROFILE
11613 "profile",
11614#endif
Bram Moolenaare580b0c2006-03-21 21:33:03 +000011615#ifdef FEAT_RELTIME
11616 "reltime",
11617#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011618#ifdef FEAT_QUICKFIX
11619 "quickfix",
11620#endif
11621#ifdef FEAT_RIGHTLEFT
11622 "rightleft",
11623#endif
11624#if defined(FEAT_RUBY) && !defined(DYNAMIC_RUBY)
11625 "ruby",
11626#endif
11627#ifdef FEAT_SCROLLBIND
11628 "scrollbind",
11629#endif
11630#ifdef FEAT_CMDL_INFO
11631 "showcmd",
11632 "cmdline_info",
11633#endif
11634#ifdef FEAT_SIGNS
11635 "signs",
11636#endif
11637#ifdef FEAT_SMARTINDENT
11638 "smartindent",
11639#endif
11640#ifdef FEAT_SNIFF
11641 "sniff",
11642#endif
11643#ifdef FEAT_STL_OPT
11644 "statusline",
11645#endif
11646#ifdef FEAT_SUN_WORKSHOP
11647 "sun_workshop",
11648#endif
11649#ifdef FEAT_NETBEANS_INTG
11650 "netbeans_intg",
11651#endif
Bram Moolenaar3c56a962006-03-12 22:19:04 +000011652#ifdef FEAT_SPELL
Bram Moolenaar0e4d8772005-06-07 21:12:49 +000011653 "spell",
11654#endif
11655#ifdef FEAT_SYN_HL
Bram Moolenaar071d4272004-06-13 20:20:40 +000011656 "syntax",
11657#endif
11658#if defined(USE_SYSTEM) || !defined(UNIX)
11659 "system",
11660#endif
11661#ifdef FEAT_TAG_BINS
11662 "tag_binary",
11663#endif
11664#ifdef FEAT_TAG_OLDSTATIC
11665 "tag_old_static",
11666#endif
11667#ifdef FEAT_TAG_ANYWHITE
11668 "tag_any_white",
11669#endif
11670#ifdef FEAT_TCL
11671# ifndef DYNAMIC_TCL
11672 "tcl",
11673# endif
11674#endif
11675#ifdef TERMINFO
11676 "terminfo",
11677#endif
11678#ifdef FEAT_TERMRESPONSE
11679 "termresponse",
11680#endif
11681#ifdef FEAT_TEXTOBJ
11682 "textobjects",
11683#endif
11684#ifdef HAVE_TGETENT
11685 "tgetent",
11686#endif
11687#ifdef FEAT_TITLE
11688 "title",
11689#endif
11690#ifdef FEAT_TOOLBAR
11691 "toolbar",
11692#endif
11693#ifdef FEAT_USR_CMDS
11694 "user-commands", /* was accidentally included in 5.4 */
11695 "user_commands",
11696#endif
11697#ifdef FEAT_VIMINFO
11698 "viminfo",
11699#endif
11700#ifdef FEAT_VERTSPLIT
11701 "vertsplit",
11702#endif
11703#ifdef FEAT_VIRTUALEDIT
11704 "virtualedit",
11705#endif
11706#ifdef FEAT_VISUAL
11707 "visual",
11708#endif
11709#ifdef FEAT_VISUALEXTRA
11710 "visualextra",
11711#endif
11712#ifdef FEAT_VREPLACE
11713 "vreplace",
11714#endif
11715#ifdef FEAT_WILDIGN
11716 "wildignore",
11717#endif
11718#ifdef FEAT_WILDMENU
11719 "wildmenu",
11720#endif
11721#ifdef FEAT_WINDOWS
11722 "windows",
11723#endif
11724#ifdef FEAT_WAK
11725 "winaltkeys",
11726#endif
11727#ifdef FEAT_WRITEBACKUP
11728 "writebackup",
11729#endif
11730#ifdef FEAT_XIM
11731 "xim",
11732#endif
11733#ifdef FEAT_XFONTSET
11734 "xfontset",
11735#endif
11736#ifdef USE_XSMP
11737 "xsmp",
11738#endif
11739#ifdef USE_XSMP_INTERACT
11740 "xsmp_interact",
11741#endif
11742#ifdef FEAT_XCLIPBOARD
11743 "xterm_clipboard",
11744#endif
11745#ifdef FEAT_XTERM_SAVE
11746 "xterm_save",
11747#endif
11748#if defined(UNIX) && defined(FEAT_X11)
11749 "X11",
11750#endif
11751 NULL
11752 };
11753
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011754 name = get_tv_string(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011755 for (i = 0; has_list[i] != NULL; ++i)
11756 if (STRICMP(name, has_list[i]) == 0)
11757 {
11758 n = TRUE;
11759 break;
11760 }
11761
11762 if (n == FALSE)
11763 {
11764 if (STRNICMP(name, "patch", 5) == 0)
11765 n = has_patch(atoi((char *)name + 5));
11766 else if (STRICMP(name, "vim_starting") == 0)
11767 n = (starting != 0);
Bram Moolenaar342337a2005-07-21 21:11:17 +000011768#if defined(FEAT_BEVAL) && defined(FEAT_GUI_W32)
11769 else if (STRICMP(name, "balloon_multiline") == 0)
11770 n = multiline_balloon_available();
11771#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011772#ifdef DYNAMIC_TCL
11773 else if (STRICMP(name, "tcl") == 0)
11774 n = tcl_enabled(FALSE);
11775#endif
11776#if defined(USE_ICONV) && defined(DYNAMIC_ICONV)
11777 else if (STRICMP(name, "iconv") == 0)
11778 n = iconv_enabled(FALSE);
11779#endif
Bram Moolenaar33570922005-01-25 22:26:29 +000011780#ifdef DYNAMIC_MZSCHEME
11781 else if (STRICMP(name, "mzscheme") == 0)
11782 n = mzscheme_enabled(FALSE);
11783#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011784#ifdef DYNAMIC_RUBY
11785 else if (STRICMP(name, "ruby") == 0)
11786 n = ruby_enabled(FALSE);
11787#endif
11788#ifdef DYNAMIC_PYTHON
11789 else if (STRICMP(name, "python") == 0)
11790 n = python_enabled(FALSE);
11791#endif
11792#ifdef DYNAMIC_PERL
11793 else if (STRICMP(name, "perl") == 0)
11794 n = perl_enabled(FALSE);
11795#endif
11796#ifdef FEAT_GUI
11797 else if (STRICMP(name, "gui_running") == 0)
11798 n = (gui.in_use || gui.starting);
11799# ifdef FEAT_GUI_W32
11800 else if (STRICMP(name, "gui_win32s") == 0)
11801 n = gui_is_win32s();
11802# endif
11803# ifdef FEAT_BROWSE
11804 else if (STRICMP(name, "browse") == 0)
11805 n = gui.in_use; /* gui_mch_browse() works when GUI is running */
11806# endif
11807#endif
11808#ifdef FEAT_SYN_HL
11809 else if (STRICMP(name, "syntax_items") == 0)
11810 n = syntax_present(curbuf);
11811#endif
11812#if defined(WIN3264)
11813 else if (STRICMP(name, "win95") == 0)
11814 n = mch_windows95();
11815#endif
Bram Moolenaar35a9aaa2004-10-24 19:23:07 +000011816#ifdef FEAT_NETBEANS_INTG
11817 else if (STRICMP(name, "netbeans_enabled") == 0)
11818 n = usingNetbeans;
11819#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011820 }
11821
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011822 rettv->vval.v_number = n;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011823}
11824
11825/*
Bram Moolenaare9a41262005-01-15 22:18:47 +000011826 * "has_key()" function
11827 */
11828 static void
11829f_has_key(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000011830 typval_T *argvars;
11831 typval_T *rettv;
Bram Moolenaare9a41262005-01-15 22:18:47 +000011832{
11833 rettv->vval.v_number = 0;
11834 if (argvars[0].v_type != VAR_DICT)
11835 {
11836 EMSG(_(e_dictreq));
11837 return;
11838 }
11839 if (argvars[0].vval.v_dict == NULL)
11840 return;
11841
11842 rettv->vval.v_number = dict_find(argvars[0].vval.v_dict,
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000011843 get_tv_string(&argvars[1]), -1) != NULL;
Bram Moolenaare9a41262005-01-15 22:18:47 +000011844}
11845
11846/*
Bram Moolenaard267b9c2007-04-26 15:06:45 +000011847 * "haslocaldir()" function
11848 */
11849/*ARGSUSED*/
11850 static void
11851f_haslocaldir(argvars, rettv)
11852 typval_T *argvars;
11853 typval_T *rettv;
11854{
11855 rettv->vval.v_number = (curwin->w_localdir != NULL);
11856}
11857
11858/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000011859 * "hasmapto()" function
11860 */
11861 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011862f_hasmapto(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000011863 typval_T *argvars;
11864 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011865{
11866 char_u *name;
11867 char_u *mode;
11868 char_u buf[NUMBUFLEN];
Bram Moolenaar2c932302006-03-18 21:42:09 +000011869 int abbr = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011870
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011871 name = get_tv_string(&argvars[0]);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000011872 if (argvars[1].v_type == VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000011873 mode = (char_u *)"nvo";
11874 else
Bram Moolenaar2c932302006-03-18 21:42:09 +000011875 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011876 mode = get_tv_string_buf(&argvars[1], buf);
Bram Moolenaar2c932302006-03-18 21:42:09 +000011877 if (argvars[2].v_type != VAR_UNKNOWN)
11878 abbr = get_tv_number(&argvars[2]);
11879 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000011880
Bram Moolenaar2c932302006-03-18 21:42:09 +000011881 if (map_to_exists(name, mode, abbr))
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011882 rettv->vval.v_number = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011883 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011884 rettv->vval.v_number = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011885}
11886
11887/*
11888 * "histadd()" function
11889 */
11890/*ARGSUSED*/
11891 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011892f_histadd(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000011893 typval_T *argvars;
11894 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011895{
11896#ifdef FEAT_CMDHIST
11897 int histype;
11898 char_u *str;
11899 char_u buf[NUMBUFLEN];
11900#endif
11901
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011902 rettv->vval.v_number = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011903 if (check_restricted() || check_secure())
11904 return;
11905#ifdef FEAT_CMDHIST
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011906 str = get_tv_string_chk(&argvars[0]); /* NULL on type error */
11907 histype = str != NULL ? get_histtype(str) : -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011908 if (histype >= 0)
11909 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011910 str = get_tv_string_buf(&argvars[1], buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011911 if (*str != NUL)
11912 {
11913 add_to_history(histype, str, FALSE, NUL);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011914 rettv->vval.v_number = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011915 return;
11916 }
11917 }
11918#endif
11919}
11920
11921/*
11922 * "histdel()" function
11923 */
11924/*ARGSUSED*/
11925 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011926f_histdel(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000011927 typval_T *argvars;
11928 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011929{
11930#ifdef FEAT_CMDHIST
11931 int n;
11932 char_u buf[NUMBUFLEN];
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011933 char_u *str;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011934
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011935 str = get_tv_string_chk(&argvars[0]); /* NULL on type error */
11936 if (str == NULL)
11937 n = 0;
11938 else if (argvars[1].v_type == VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000011939 /* only one argument: clear entire history */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011940 n = clr_history(get_histtype(str));
Bram Moolenaar49cd9572005-01-03 21:06:01 +000011941 else if (argvars[1].v_type == VAR_NUMBER)
Bram Moolenaar071d4272004-06-13 20:20:40 +000011942 /* index given: remove that entry */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011943 n = del_history_idx(get_histtype(str),
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011944 (int)get_tv_number(&argvars[1]));
Bram Moolenaar071d4272004-06-13 20:20:40 +000011945 else
11946 /* string given: remove all matching entries */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011947 n = del_history_entry(get_histtype(str),
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011948 get_tv_string_buf(&argvars[1], buf));
11949 rettv->vval.v_number = n;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011950#else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011951 rettv->vval.v_number = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011952#endif
11953}
11954
11955/*
11956 * "histget()" function
11957 */
11958/*ARGSUSED*/
11959 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011960f_histget(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000011961 typval_T *argvars;
11962 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011963{
11964#ifdef FEAT_CMDHIST
11965 int type;
11966 int idx;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011967 char_u *str;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011968
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011969 str = get_tv_string_chk(&argvars[0]); /* NULL on type error */
11970 if (str == NULL)
11971 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011972 else
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011973 {
11974 type = get_histtype(str);
11975 if (argvars[1].v_type == VAR_UNKNOWN)
11976 idx = get_history_idx(type);
11977 else
11978 idx = (int)get_tv_number_chk(&argvars[1], NULL);
11979 /* -1 on type error */
11980 rettv->vval.v_string = vim_strsave(get_history_entry(type, idx));
11981 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000011982#else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011983 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011984#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011985 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011986}
11987
11988/*
11989 * "histnr()" function
11990 */
11991/*ARGSUSED*/
11992 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011993f_histnr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000011994 typval_T *argvars;
11995 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011996{
11997 int i;
11998
11999#ifdef FEAT_CMDHIST
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012000 char_u *history = get_tv_string_chk(&argvars[0]);
12001
12002 i = history == NULL ? HIST_CMD - 1 : get_histtype(history);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012003 if (i >= HIST_CMD && i < HIST_COUNT)
12004 i = get_history_idx(i);
12005 else
12006#endif
12007 i = -1;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012008 rettv->vval.v_number = i;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012009}
12010
12011/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000012012 * "highlightID(name)" function
12013 */
12014 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012015f_hlID(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012016 typval_T *argvars;
12017 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012018{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012019 rettv->vval.v_number = syn_name2id(get_tv_string(&argvars[0]));
Bram Moolenaar071d4272004-06-13 20:20:40 +000012020}
12021
12022/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000012023 * "highlight_exists()" function
12024 */
12025 static void
12026f_hlexists(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012027 typval_T *argvars;
12028 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000012029{
12030 rettv->vval.v_number = highlight_exists(get_tv_string(&argvars[0]));
12031}
12032
12033/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000012034 * "hostname()" function
12035 */
12036/*ARGSUSED*/
12037 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012038f_hostname(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012039 typval_T *argvars;
12040 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012041{
12042 char_u hostname[256];
12043
12044 mch_get_host_name(hostname, 256);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012045 rettv->v_type = VAR_STRING;
12046 rettv->vval.v_string = vim_strsave(hostname);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012047}
12048
12049/*
12050 * iconv() function
12051 */
12052/*ARGSUSED*/
12053 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012054f_iconv(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012055 typval_T *argvars;
12056 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012057{
12058#ifdef FEAT_MBYTE
12059 char_u buf1[NUMBUFLEN];
12060 char_u buf2[NUMBUFLEN];
12061 char_u *from, *to, *str;
12062 vimconv_T vimconv;
12063#endif
12064
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012065 rettv->v_type = VAR_STRING;
12066 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012067
12068#ifdef FEAT_MBYTE
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012069 str = get_tv_string(&argvars[0]);
12070 from = enc_canonize(enc_skip(get_tv_string_buf(&argvars[1], buf1)));
12071 to = enc_canonize(enc_skip(get_tv_string_buf(&argvars[2], buf2)));
Bram Moolenaar071d4272004-06-13 20:20:40 +000012072 vimconv.vc_type = CONV_NONE;
12073 convert_setup(&vimconv, from, to);
12074
12075 /* If the encodings are equal, no conversion needed. */
12076 if (vimconv.vc_type == CONV_NONE)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012077 rettv->vval.v_string = vim_strsave(str);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012078 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012079 rettv->vval.v_string = string_convert(&vimconv, str, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012080
12081 convert_setup(&vimconv, NULL, NULL);
12082 vim_free(from);
12083 vim_free(to);
12084#endif
12085}
12086
12087/*
12088 * "indent()" function
12089 */
12090 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012091f_indent(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012092 typval_T *argvars;
12093 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012094{
12095 linenr_T lnum;
12096
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012097 lnum = get_tv_lnum(argvars);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012098 if (lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012099 rettv->vval.v_number = get_indent_lnum(lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012100 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012101 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012102}
12103
Bram Moolenaar8a283e52005-01-06 23:28:25 +000012104/*
12105 * "index()" function
12106 */
12107 static void
12108f_index(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012109 typval_T *argvars;
12110 typval_T *rettv;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000012111{
Bram Moolenaar33570922005-01-25 22:26:29 +000012112 list_T *l;
12113 listitem_T *item;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000012114 long idx = 0;
12115 int ic = FALSE;
12116
12117 rettv->vval.v_number = -1;
12118 if (argvars[0].v_type != VAR_LIST)
12119 {
12120 EMSG(_(e_listreq));
12121 return;
12122 }
12123 l = argvars[0].vval.v_list;
12124 if (l != NULL)
12125 {
Bram Moolenaar758711c2005-02-02 23:11:38 +000012126 item = l->lv_first;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000012127 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000012128 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012129 int error = FALSE;
12130
Bram Moolenaar758711c2005-02-02 23:11:38 +000012131 /* Start at specified item. Use the cached index that list_find()
12132 * sets, so that a negative number also works. */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012133 item = list_find(l, get_tv_number_chk(&argvars[2], &error));
Bram Moolenaar758711c2005-02-02 23:11:38 +000012134 idx = l->lv_idx;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000012135 if (argvars[3].v_type != VAR_UNKNOWN)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012136 ic = get_tv_number_chk(&argvars[3], &error);
12137 if (error)
12138 item = NULL;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000012139 }
Bram Moolenaar8a283e52005-01-06 23:28:25 +000012140
Bram Moolenaar758711c2005-02-02 23:11:38 +000012141 for ( ; item != NULL; item = item->li_next, ++idx)
12142 if (tv_equal(&item->li_tv, &argvars[1], ic))
Bram Moolenaar8a283e52005-01-06 23:28:25 +000012143 {
12144 rettv->vval.v_number = idx;
12145 break;
12146 }
12147 }
12148}
12149
Bram Moolenaar071d4272004-06-13 20:20:40 +000012150static int inputsecret_flag = 0;
12151
Bram Moolenaarecbaf552006-07-13 06:31:00 +000012152static void get_user_input __ARGS((typval_T *argvars, typval_T *rettv, int inputdialog));
12153
Bram Moolenaar071d4272004-06-13 20:20:40 +000012154/*
Bram Moolenaarecbaf552006-07-13 06:31:00 +000012155 * This function is used by f_input() and f_inputdialog() functions. The third
12156 * argument to f_input() specifies the type of completion to use at the
12157 * prompt. The third argument to f_inputdialog() specifies the value to return
12158 * when the user cancels the prompt.
Bram Moolenaar071d4272004-06-13 20:20:40 +000012159 */
12160 static void
Bram Moolenaarecbaf552006-07-13 06:31:00 +000012161get_user_input(argvars, rettv, inputdialog)
Bram Moolenaar33570922005-01-25 22:26:29 +000012162 typval_T *argvars;
12163 typval_T *rettv;
Bram Moolenaarecbaf552006-07-13 06:31:00 +000012164 int inputdialog;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012165{
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012166 char_u *prompt = get_tv_string_chk(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012167 char_u *p = NULL;
12168 int c;
12169 char_u buf[NUMBUFLEN];
12170 int cmd_silent_save = cmd_silent;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012171 char_u *defstr = (char_u *)"";
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000012172 int xp_type = EXPAND_NOTHING;
12173 char_u *xp_arg = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012174
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012175 rettv->v_type = VAR_STRING;
Bram Moolenaarce85c562007-09-16 12:21:16 +000012176 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012177
12178#ifdef NO_CONSOLE_INPUT
12179 /* While starting up, there is no place to enter text. */
12180 if (no_console_input())
Bram Moolenaar071d4272004-06-13 20:20:40 +000012181 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012182#endif
12183
12184 cmd_silent = FALSE; /* Want to see the prompt. */
12185 if (prompt != NULL)
12186 {
12187 /* Only the part of the message after the last NL is considered as
12188 * prompt for the command line */
12189 p = vim_strrchr(prompt, '\n');
12190 if (p == NULL)
12191 p = prompt;
12192 else
12193 {
12194 ++p;
12195 c = *p;
12196 *p = NUL;
12197 msg_start();
12198 msg_clr_eos();
12199 msg_puts_attr(prompt, echo_attr);
12200 msg_didout = FALSE;
12201 msg_starthere();
12202 *p = c;
12203 }
12204 cmdline_row = msg_row;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012205
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012206 if (argvars[1].v_type != VAR_UNKNOWN)
12207 {
12208 defstr = get_tv_string_buf_chk(&argvars[1], buf);
12209 if (defstr != NULL)
12210 stuffReadbuffSpec(defstr);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012211
Bram Moolenaarecbaf552006-07-13 06:31:00 +000012212 if (!inputdialog && argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar4463f292005-09-25 22:20:24 +000012213 {
12214 char_u *xp_name;
Bram Moolenaar86c9ee22006-05-13 11:33:27 +000012215 int xp_namelen;
Bram Moolenaar4463f292005-09-25 22:20:24 +000012216 long argt;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000012217
Bram Moolenaar4463f292005-09-25 22:20:24 +000012218 rettv->vval.v_string = NULL;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000012219
Bram Moolenaar4463f292005-09-25 22:20:24 +000012220 xp_name = get_tv_string_buf_chk(&argvars[2], buf);
12221 if (xp_name == NULL)
12222 return;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000012223
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000012224 xp_namelen = (int)STRLEN(xp_name);
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000012225
Bram Moolenaar4463f292005-09-25 22:20:24 +000012226 if (parse_compl_arg(xp_name, xp_namelen, &xp_type, &argt,
12227 &xp_arg) == FAIL)
12228 return;
12229 }
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000012230 }
12231
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012232 if (defstr != NULL)
12233 rettv->vval.v_string =
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000012234 getcmdline_prompt(inputsecret_flag ? NUL : '@', p, echo_attr,
12235 xp_type, xp_arg);
12236
12237 vim_free(xp_arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012238
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012239 /* since the user typed this, no need to wait for return */
12240 need_wait_return = FALSE;
12241 msg_didout = FALSE;
12242 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000012243 cmd_silent = cmd_silent_save;
12244}
12245
12246/*
Bram Moolenaarecbaf552006-07-13 06:31:00 +000012247 * "input()" function
12248 * Also handles inputsecret() when inputsecret is set.
12249 */
12250 static void
12251f_input(argvars, rettv)
12252 typval_T *argvars;
12253 typval_T *rettv;
12254{
12255 get_user_input(argvars, rettv, FALSE);
12256}
12257
12258/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000012259 * "inputdialog()" function
12260 */
12261 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012262f_inputdialog(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012263 typval_T *argvars;
12264 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012265{
12266#if defined(FEAT_GUI_TEXTDIALOG)
12267 /* Use a GUI dialog if the GUI is running and 'c' is not in 'guioptions' */
12268 if (gui.in_use && vim_strchr(p_go, GO_CONDIALOG) == NULL)
12269 {
12270 char_u *message;
12271 char_u buf[NUMBUFLEN];
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012272 char_u *defstr = (char_u *)"";
Bram Moolenaar071d4272004-06-13 20:20:40 +000012273
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012274 message = get_tv_string_chk(&argvars[0]);
12275 if (argvars[1].v_type != VAR_UNKNOWN
Bram Moolenaarc05f93f2006-05-02 22:09:31 +000012276 && (defstr = get_tv_string_buf_chk(&argvars[1], buf)) != NULL)
Bram Moolenaarce0842a2005-07-18 21:58:11 +000012277 vim_strncpy(IObuff, defstr, IOSIZE - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012278 else
12279 IObuff[0] = NUL;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012280 if (message != NULL && defstr != NULL
12281 && do_dialog(VIM_QUESTION, NULL, message,
12282 (char_u *)_("&OK\n&Cancel"), 1, IObuff) == 1)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012283 rettv->vval.v_string = vim_strsave(IObuff);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012284 else
12285 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012286 if (message != NULL && defstr != NULL
12287 && argvars[1].v_type != VAR_UNKNOWN
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012288 && argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012289 rettv->vval.v_string = vim_strsave(
12290 get_tv_string_buf(&argvars[2], buf));
Bram Moolenaar071d4272004-06-13 20:20:40 +000012291 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012292 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012293 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012294 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012295 }
12296 else
12297#endif
Bram Moolenaarecbaf552006-07-13 06:31:00 +000012298 get_user_input(argvars, rettv, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012299}
12300
Bram Moolenaar6efa2b32005-09-10 19:26:26 +000012301/*
12302 * "inputlist()" function
12303 */
12304 static void
12305f_inputlist(argvars, rettv)
12306 typval_T *argvars;
12307 typval_T *rettv;
12308{
12309 listitem_T *li;
12310 int selected;
12311 int mouse_used;
12312
12313 rettv->vval.v_number = 0;
12314#ifdef NO_CONSOLE_INPUT
12315 /* While starting up, there is no place to enter text. */
12316 if (no_console_input())
12317 return;
12318#endif
12319 if (argvars[0].v_type != VAR_LIST || argvars[0].vval.v_list == NULL)
12320 {
12321 EMSG2(_(e_listarg), "inputlist()");
12322 return;
12323 }
12324
12325 msg_start();
Bram Moolenaar412f7442006-07-23 19:51:57 +000012326 msg_row = Rows - 1; /* for when 'cmdheight' > 1 */
Bram Moolenaar6efa2b32005-09-10 19:26:26 +000012327 lines_left = Rows; /* avoid more prompt */
12328 msg_scroll = TRUE;
12329 msg_clr_eos();
12330
12331 for (li = argvars[0].vval.v_list->lv_first; li != NULL; li = li->li_next)
12332 {
12333 msg_puts(get_tv_string(&li->li_tv));
12334 msg_putchar('\n');
12335 }
12336
12337 /* Ask for choice. */
12338 selected = prompt_for_number(&mouse_used);
12339 if (mouse_used)
12340 selected -= lines_left;
12341
12342 rettv->vval.v_number = selected;
12343}
12344
12345
Bram Moolenaar071d4272004-06-13 20:20:40 +000012346static garray_T ga_userinput = {0, 0, sizeof(tasave_T), 4, NULL};
12347
12348/*
12349 * "inputrestore()" function
12350 */
12351/*ARGSUSED*/
12352 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012353f_inputrestore(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012354 typval_T *argvars;
12355 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012356{
12357 if (ga_userinput.ga_len > 0)
12358 {
12359 --ga_userinput.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012360 restore_typeahead((tasave_T *)(ga_userinput.ga_data)
12361 + ga_userinput.ga_len);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012362 rettv->vval.v_number = 0; /* OK */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012363 }
12364 else if (p_verbose > 1)
12365 {
Bram Moolenaar54ee7752005-05-31 22:22:17 +000012366 verb_msg((char_u *)_("called inputrestore() more often than inputsave()"));
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012367 rettv->vval.v_number = 1; /* Failed */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012368 }
12369}
12370
12371/*
12372 * "inputsave()" function
12373 */
12374/*ARGSUSED*/
12375 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012376f_inputsave(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012377 typval_T *argvars;
12378 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012379{
Bram Moolenaar8c8de832008-06-24 22:58:06 +000012380 /* Add an entry to the stack of typeahead storage. */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012381 if (ga_grow(&ga_userinput, 1) == OK)
12382 {
12383 save_typeahead((tasave_T *)(ga_userinput.ga_data)
12384 + ga_userinput.ga_len);
12385 ++ga_userinput.ga_len;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012386 rettv->vval.v_number = 0; /* OK */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012387 }
12388 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012389 rettv->vval.v_number = 1; /* Failed */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012390}
12391
12392/*
12393 * "inputsecret()" function
12394 */
12395 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012396f_inputsecret(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012397 typval_T *argvars;
12398 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012399{
12400 ++cmdline_star;
12401 ++inputsecret_flag;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012402 f_input(argvars, rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012403 --cmdline_star;
12404 --inputsecret_flag;
12405}
12406
12407/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012408 * "insert()" function
12409 */
12410 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012411f_insert(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012412 typval_T *argvars;
12413 typval_T *rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012414{
12415 long before = 0;
Bram Moolenaar33570922005-01-25 22:26:29 +000012416 listitem_T *item;
12417 list_T *l;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012418 int error = FALSE;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012419
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012420 rettv->vval.v_number = 0;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012421 if (argvars[0].v_type != VAR_LIST)
Bram Moolenaar0d660222005-01-07 21:51:51 +000012422 EMSG2(_(e_listarg), "insert()");
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012423 else if ((l = argvars[0].vval.v_list) != NULL
12424 && !tv_check_lock(l->lv_lock, (char_u *)"insert()"))
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012425 {
12426 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012427 before = get_tv_number_chk(&argvars[2], &error);
12428 if (error)
12429 return; /* type error; errmsg already given */
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012430
Bram Moolenaar758711c2005-02-02 23:11:38 +000012431 if (before == l->lv_len)
12432 item = NULL;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012433 else
12434 {
Bram Moolenaar758711c2005-02-02 23:11:38 +000012435 item = list_find(l, before);
12436 if (item == NULL)
12437 {
12438 EMSGN(_(e_listidx), before);
12439 l = NULL;
12440 }
12441 }
12442 if (l != NULL)
12443 {
Bram Moolenaar8a283e52005-01-06 23:28:25 +000012444 list_insert_tv(l, &argvars[1], item);
Bram Moolenaar8a283e52005-01-06 23:28:25 +000012445 copy_tv(&argvars[0], rettv);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012446 }
12447 }
12448}
12449
12450/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000012451 * "isdirectory()" function
12452 */
12453 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012454f_isdirectory(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012455 typval_T *argvars;
12456 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012457{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012458 rettv->vval.v_number = mch_isdir(get_tv_string(&argvars[0]));
Bram Moolenaar071d4272004-06-13 20:20:40 +000012459}
12460
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012461/*
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012462 * "islocked()" function
12463 */
12464 static void
12465f_islocked(argvars, rettv)
12466 typval_T *argvars;
12467 typval_T *rettv;
12468{
12469 lval_T lv;
12470 char_u *end;
12471 dictitem_T *di;
12472
12473 rettv->vval.v_number = -1;
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000012474 end = get_lval(get_tv_string(&argvars[0]), NULL, &lv, FALSE, FALSE, FALSE,
12475 FNE_CHECK_START);
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012476 if (end != NULL && lv.ll_name != NULL)
12477 {
12478 if (*end != NUL)
12479 EMSG(_(e_trailing));
12480 else
12481 {
12482 if (lv.ll_tv == NULL)
12483 {
12484 if (check_changedtick(lv.ll_name))
12485 rettv->vval.v_number = 1; /* always locked */
12486 else
12487 {
12488 di = find_var(lv.ll_name, NULL);
12489 if (di != NULL)
12490 {
12491 /* Consider a variable locked when:
12492 * 1. the variable itself is locked
12493 * 2. the value of the variable is locked.
12494 * 3. the List or Dict value is locked.
12495 */
12496 rettv->vval.v_number = ((di->di_flags & DI_FLAGS_LOCK)
12497 || tv_islocked(&di->di_tv));
12498 }
12499 }
12500 }
12501 else if (lv.ll_range)
Bram Moolenaar910f66f2006-04-05 20:41:53 +000012502 EMSG(_("E786: Range not allowed"));
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012503 else if (lv.ll_newkey != NULL)
12504 EMSG2(_(e_dictkey), lv.ll_newkey);
12505 else if (lv.ll_list != NULL)
12506 /* List item. */
12507 rettv->vval.v_number = tv_islocked(&lv.ll_li->li_tv);
12508 else
12509 /* Dictionary item. */
12510 rettv->vval.v_number = tv_islocked(&lv.ll_di->di_tv);
12511 }
12512 }
12513
12514 clear_lval(&lv);
12515}
12516
Bram Moolenaar33570922005-01-25 22:26:29 +000012517static void dict_list __ARGS((typval_T *argvars, typval_T *rettv, int what));
Bram Moolenaar8c711452005-01-14 21:53:12 +000012518
12519/*
12520 * Turn a dict into a list:
12521 * "what" == 0: list of keys
12522 * "what" == 1: list of values
12523 * "what" == 2: list of items
12524 */
12525 static void
12526dict_list(argvars, rettv, what)
Bram Moolenaar33570922005-01-25 22:26:29 +000012527 typval_T *argvars;
12528 typval_T *rettv;
Bram Moolenaar8c711452005-01-14 21:53:12 +000012529 int what;
12530{
Bram Moolenaar33570922005-01-25 22:26:29 +000012531 list_T *l2;
12532 dictitem_T *di;
12533 hashitem_T *hi;
12534 listitem_T *li;
12535 listitem_T *li2;
12536 dict_T *d;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012537 int todo;
Bram Moolenaar8c711452005-01-14 21:53:12 +000012538
12539 rettv->vval.v_number = 0;
12540 if (argvars[0].v_type != VAR_DICT)
12541 {
12542 EMSG(_(e_dictreq));
12543 return;
12544 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012545 if ((d = argvars[0].vval.v_dict) == NULL)
Bram Moolenaar8c711452005-01-14 21:53:12 +000012546 return;
12547
Bram Moolenaareddf53b2006-02-27 00:11:10 +000012548 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaar8c711452005-01-14 21:53:12 +000012549 return;
Bram Moolenaar8c711452005-01-14 21:53:12 +000012550
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000012551 todo = (int)d->dv_hashtab.ht_used;
Bram Moolenaar33570922005-01-25 22:26:29 +000012552 for (hi = d->dv_hashtab.ht_array; todo > 0; ++hi)
Bram Moolenaar8c711452005-01-14 21:53:12 +000012553 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012554 if (!HASHITEM_EMPTY(hi))
Bram Moolenaar8c711452005-01-14 21:53:12 +000012555 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012556 --todo;
12557 di = HI2DI(hi);
Bram Moolenaar8c711452005-01-14 21:53:12 +000012558
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012559 li = listitem_alloc();
12560 if (li == NULL)
Bram Moolenaar8c711452005-01-14 21:53:12 +000012561 break;
Bram Moolenaareddf53b2006-02-27 00:11:10 +000012562 list_append(rettv->vval.v_list, li);
Bram Moolenaar8c711452005-01-14 21:53:12 +000012563
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012564 if (what == 0)
12565 {
12566 /* keys() */
12567 li->li_tv.v_type = VAR_STRING;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012568 li->li_tv.v_lock = 0;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012569 li->li_tv.vval.v_string = vim_strsave(di->di_key);
12570 }
12571 else if (what == 1)
12572 {
12573 /* values() */
12574 copy_tv(&di->di_tv, &li->li_tv);
12575 }
12576 else
12577 {
12578 /* items() */
12579 l2 = list_alloc();
12580 li->li_tv.v_type = VAR_LIST;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012581 li->li_tv.v_lock = 0;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012582 li->li_tv.vval.v_list = l2;
12583 if (l2 == NULL)
12584 break;
12585 ++l2->lv_refcount;
12586
12587 li2 = listitem_alloc();
12588 if (li2 == NULL)
12589 break;
12590 list_append(l2, li2);
12591 li2->li_tv.v_type = VAR_STRING;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012592 li2->li_tv.v_lock = 0;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012593 li2->li_tv.vval.v_string = vim_strsave(di->di_key);
12594
12595 li2 = listitem_alloc();
12596 if (li2 == NULL)
12597 break;
12598 list_append(l2, li2);
12599 copy_tv(&di->di_tv, &li2->li_tv);
12600 }
Bram Moolenaar8c711452005-01-14 21:53:12 +000012601 }
12602 }
12603}
12604
12605/*
12606 * "items(dict)" function
12607 */
12608 static void
12609f_items(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012610 typval_T *argvars;
12611 typval_T *rettv;
Bram Moolenaar8c711452005-01-14 21:53:12 +000012612{
12613 dict_list(argvars, rettv, 2);
12614}
12615
Bram Moolenaar071d4272004-06-13 20:20:40 +000012616/*
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000012617 * "join()" function
12618 */
12619 static void
12620f_join(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012621 typval_T *argvars;
12622 typval_T *rettv;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000012623{
12624 garray_T ga;
12625 char_u *sep;
12626
12627 rettv->vval.v_number = 0;
12628 if (argvars[0].v_type != VAR_LIST)
12629 {
12630 EMSG(_(e_listreq));
12631 return;
12632 }
12633 if (argvars[0].vval.v_list == NULL)
12634 return;
12635 if (argvars[1].v_type == VAR_UNKNOWN)
12636 sep = (char_u *)" ";
12637 else
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012638 sep = get_tv_string_chk(&argvars[1]);
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000012639
12640 rettv->v_type = VAR_STRING;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012641
12642 if (sep != NULL)
12643 {
12644 ga_init2(&ga, (int)sizeof(char), 80);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +000012645 list_join(&ga, argvars[0].vval.v_list, sep, TRUE, 0);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012646 ga_append(&ga, NUL);
12647 rettv->vval.v_string = (char_u *)ga.ga_data;
12648 }
12649 else
12650 rettv->vval.v_string = NULL;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000012651}
12652
12653/*
Bram Moolenaar8c711452005-01-14 21:53:12 +000012654 * "keys()" function
12655 */
12656 static void
12657f_keys(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012658 typval_T *argvars;
12659 typval_T *rettv;
Bram Moolenaar8c711452005-01-14 21:53:12 +000012660{
12661 dict_list(argvars, rettv, 0);
12662}
12663
12664/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000012665 * "last_buffer_nr()" function.
12666 */
12667/*ARGSUSED*/
12668 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012669f_last_buffer_nr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012670 typval_T *argvars;
12671 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012672{
12673 int n = 0;
12674 buf_T *buf;
12675
12676 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
12677 if (n < buf->b_fnum)
12678 n = buf->b_fnum;
12679
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012680 rettv->vval.v_number = n;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012681}
12682
12683/*
12684 * "len()" function
12685 */
12686 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012687f_len(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012688 typval_T *argvars;
12689 typval_T *rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012690{
12691 switch (argvars[0].v_type)
12692 {
12693 case VAR_STRING:
12694 case VAR_NUMBER:
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012695 rettv->vval.v_number = (varnumber_T)STRLEN(
12696 get_tv_string(&argvars[0]));
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012697 break;
12698 case VAR_LIST:
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012699 rettv->vval.v_number = list_len(argvars[0].vval.v_list);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012700 break;
Bram Moolenaare9a41262005-01-15 22:18:47 +000012701 case VAR_DICT:
12702 rettv->vval.v_number = dict_len(argvars[0].vval.v_dict);
12703 break;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012704 default:
Bram Moolenaare49b69a2005-01-08 16:11:57 +000012705 EMSG(_("E701: Invalid type for len()"));
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012706 break;
12707 }
12708}
12709
Bram Moolenaar33570922005-01-25 22:26:29 +000012710static void libcall_common __ARGS((typval_T *argvars, typval_T *rettv, int type));
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012711
12712 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012713libcall_common(argvars, rettv, type)
Bram Moolenaar33570922005-01-25 22:26:29 +000012714 typval_T *argvars;
12715 typval_T *rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012716 int type;
12717{
12718#ifdef FEAT_LIBCALL
12719 char_u *string_in;
12720 char_u **string_result;
12721 int nr_result;
12722#endif
12723
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012724 rettv->v_type = type;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012725 if (type == VAR_NUMBER)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012726 rettv->vval.v_number = 0;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012727 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012728 rettv->vval.v_string = NULL;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012729
12730 if (check_restricted() || check_secure())
12731 return;
12732
12733#ifdef FEAT_LIBCALL
12734 /* The first two args must be strings, otherwise its meaningless */
12735 if (argvars[0].v_type == VAR_STRING && argvars[1].v_type == VAR_STRING)
12736 {
Bram Moolenaar758711c2005-02-02 23:11:38 +000012737 string_in = NULL;
12738 if (argvars[2].v_type == VAR_STRING)
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012739 string_in = argvars[2].vval.v_string;
12740 if (type == VAR_NUMBER)
12741 string_result = NULL;
12742 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012743 string_result = &rettv->vval.v_string;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012744 if (mch_libcall(argvars[0].vval.v_string,
12745 argvars[1].vval.v_string,
12746 string_in,
12747 argvars[2].vval.v_number,
12748 string_result,
12749 &nr_result) == OK
12750 && type == VAR_NUMBER)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012751 rettv->vval.v_number = nr_result;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012752 }
12753#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000012754}
12755
12756/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000012757 * "libcall()" function
12758 */
12759 static void
12760f_libcall(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012761 typval_T *argvars;
12762 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000012763{
12764 libcall_common(argvars, rettv, VAR_STRING);
12765}
12766
12767/*
12768 * "libcallnr()" function
12769 */
12770 static void
12771f_libcallnr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012772 typval_T *argvars;
12773 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000012774{
12775 libcall_common(argvars, rettv, VAR_NUMBER);
12776}
12777
12778/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000012779 * "line(string)" function
12780 */
12781 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012782f_line(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012783 typval_T *argvars;
12784 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012785{
12786 linenr_T lnum = 0;
12787 pos_T *fp;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000012788 int fnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012789
Bram Moolenaar0e34f622006-03-03 23:00:03 +000012790 fp = var2fpos(&argvars[0], TRUE, &fnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012791 if (fp != NULL)
12792 lnum = fp->lnum;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012793 rettv->vval.v_number = lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012794}
12795
12796/*
12797 * "line2byte(lnum)" function
12798 */
12799/*ARGSUSED*/
12800 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012801f_line2byte(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012802 typval_T *argvars;
12803 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012804{
12805#ifndef FEAT_BYTEOFF
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012806 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012807#else
12808 linenr_T lnum;
12809
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012810 lnum = get_tv_lnum(argvars);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012811 if (lnum < 1 || lnum > curbuf->b_ml.ml_line_count + 1)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012812 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012813 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012814 rettv->vval.v_number = ml_find_line_or_offset(curbuf, lnum, NULL);
12815 if (rettv->vval.v_number >= 0)
12816 ++rettv->vval.v_number;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012817#endif
12818}
12819
12820/*
12821 * "lispindent(lnum)" function
12822 */
12823 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012824f_lispindent(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012825 typval_T *argvars;
12826 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012827{
12828#ifdef FEAT_LISP
12829 pos_T pos;
12830 linenr_T lnum;
12831
12832 pos = curwin->w_cursor;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012833 lnum = get_tv_lnum(argvars);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012834 if (lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count)
12835 {
12836 curwin->w_cursor.lnum = lnum;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012837 rettv->vval.v_number = get_lisp_indent();
Bram Moolenaar071d4272004-06-13 20:20:40 +000012838 curwin->w_cursor = pos;
12839 }
12840 else
12841#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012842 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012843}
12844
12845/*
12846 * "localtime()" function
12847 */
12848/*ARGSUSED*/
12849 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012850f_localtime(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012851 typval_T *argvars;
12852 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012853{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012854 rettv->vval.v_number = (varnumber_T)time(NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012855}
12856
Bram Moolenaar33570922005-01-25 22:26:29 +000012857static void get_maparg __ARGS((typval_T *argvars, typval_T *rettv, int exact));
Bram Moolenaar071d4272004-06-13 20:20:40 +000012858
12859 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012860get_maparg(argvars, rettv, exact)
Bram Moolenaar33570922005-01-25 22:26:29 +000012861 typval_T *argvars;
12862 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012863 int exact;
12864{
12865 char_u *keys;
12866 char_u *which;
12867 char_u buf[NUMBUFLEN];
12868 char_u *keys_buf = NULL;
12869 char_u *rhs;
12870 int mode;
12871 garray_T ga;
Bram Moolenaar2c932302006-03-18 21:42:09 +000012872 int abbr = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012873
12874 /* return empty string for failure */
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012875 rettv->v_type = VAR_STRING;
12876 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012877
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012878 keys = get_tv_string(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012879 if (*keys == NUL)
12880 return;
12881
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012882 if (argvars[1].v_type != VAR_UNKNOWN)
Bram Moolenaar2c932302006-03-18 21:42:09 +000012883 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012884 which = get_tv_string_buf_chk(&argvars[1], buf);
Bram Moolenaar2c932302006-03-18 21:42:09 +000012885 if (argvars[2].v_type != VAR_UNKNOWN)
12886 abbr = get_tv_number(&argvars[2]);
12887 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000012888 else
12889 which = (char_u *)"";
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012890 if (which == NULL)
12891 return;
12892
Bram Moolenaar071d4272004-06-13 20:20:40 +000012893 mode = get_map_mode(&which, 0);
12894
Bram Moolenaar3fb9eda2006-05-03 21:29:58 +000012895 keys = replace_termcodes(keys, &keys_buf, TRUE, TRUE, FALSE);
Bram Moolenaar2c932302006-03-18 21:42:09 +000012896 rhs = check_map(keys, mode, exact, FALSE, abbr);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012897 vim_free(keys_buf);
12898 if (rhs != NULL)
12899 {
12900 ga_init(&ga);
12901 ga.ga_itemsize = 1;
12902 ga.ga_growsize = 40;
12903
12904 while (*rhs != NUL)
12905 ga_concat(&ga, str2special(&rhs, FALSE));
12906
12907 ga_append(&ga, NUL);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012908 rettv->vval.v_string = (char_u *)ga.ga_data;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012909 }
12910}
12911
Bram Moolenaar8c8de832008-06-24 22:58:06 +000012912#ifdef FEAT_FLOAT
12913/*
12914 * "log10()" function
12915 */
12916 static void
12917f_log10(argvars, rettv)
12918 typval_T *argvars;
12919 typval_T *rettv;
12920{
12921 float_T f;
12922
12923 rettv->v_type = VAR_FLOAT;
12924 if (get_float_arg(argvars, &f) == OK)
12925 rettv->vval.v_float = log10(f);
12926 else
12927 rettv->vval.v_float = 0.0;
12928}
12929#endif
12930
Bram Moolenaar071d4272004-06-13 20:20:40 +000012931/*
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000012932 * "map()" function
12933 */
12934 static void
12935f_map(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012936 typval_T *argvars;
12937 typval_T *rettv;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000012938{
12939 filter_map(argvars, rettv, TRUE);
12940}
12941
12942/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000012943 * "maparg()" function
Bram Moolenaar071d4272004-06-13 20:20:40 +000012944 */
12945 static void
Bram Moolenaar0d660222005-01-07 21:51:51 +000012946f_maparg(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012947 typval_T *argvars;
12948 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012949{
Bram Moolenaar0d660222005-01-07 21:51:51 +000012950 get_maparg(argvars, rettv, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012951}
12952
12953/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000012954 * "mapcheck()" function
Bram Moolenaar071d4272004-06-13 20:20:40 +000012955 */
12956 static void
Bram Moolenaar0d660222005-01-07 21:51:51 +000012957f_mapcheck(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012958 typval_T *argvars;
12959 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012960{
Bram Moolenaar0d660222005-01-07 21:51:51 +000012961 get_maparg(argvars, rettv, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012962}
12963
Bram Moolenaar33570922005-01-25 22:26:29 +000012964static void find_some_match __ARGS((typval_T *argvars, typval_T *rettv, int start));
Bram Moolenaar071d4272004-06-13 20:20:40 +000012965
12966 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012967find_some_match(argvars, rettv, type)
Bram Moolenaar33570922005-01-25 22:26:29 +000012968 typval_T *argvars;
12969 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012970 int type;
12971{
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000012972 char_u *str = NULL;
12973 char_u *expr = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012974 char_u *pat;
12975 regmatch_T regmatch;
12976 char_u patbuf[NUMBUFLEN];
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000012977 char_u strbuf[NUMBUFLEN];
Bram Moolenaar071d4272004-06-13 20:20:40 +000012978 char_u *save_cpo;
12979 long start = 0;
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000012980 long nth = 1;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000012981 colnr_T startcol = 0;
Bram Moolenaar81bf7082005-02-12 14:31:42 +000012982 int match = 0;
Bram Moolenaar33570922005-01-25 22:26:29 +000012983 list_T *l = NULL;
12984 listitem_T *li = NULL;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000012985 long idx = 0;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000012986 char_u *tofree = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012987
12988 /* Make 'cpoptions' empty, the 'l' flag should not be used here. */
12989 save_cpo = p_cpo;
12990 p_cpo = (char_u *)"";
12991
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000012992 rettv->vval.v_number = -1;
12993 if (type == 3)
12994 {
12995 /* return empty list when there are no matches */
Bram Moolenaareddf53b2006-02-27 00:11:10 +000012996 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000012997 goto theend;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000012998 }
12999 else if (type == 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +000013000 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013001 rettv->v_type = VAR_STRING;
13002 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013003 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000013004
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013005 if (argvars[0].v_type == VAR_LIST)
13006 {
13007 if ((l = argvars[0].vval.v_list) == NULL)
13008 goto theend;
13009 li = l->lv_first;
13010 }
13011 else
13012 expr = str = get_tv_string(&argvars[0]);
13013
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013014 pat = get_tv_string_buf_chk(&argvars[1], patbuf);
13015 if (pat == NULL)
13016 goto theend;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013017
Bram Moolenaar49cd9572005-01-03 21:06:01 +000013018 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000013019 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013020 int error = FALSE;
13021
13022 start = get_tv_number_chk(&argvars[2], &error);
13023 if (error)
13024 goto theend;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013025 if (l != NULL)
13026 {
13027 li = list_find(l, start);
13028 if (li == NULL)
13029 goto theend;
Bram Moolenaar758711c2005-02-02 23:11:38 +000013030 idx = l->lv_idx; /* use the cached index */
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013031 }
13032 else
13033 {
13034 if (start < 0)
13035 start = 0;
13036 if (start > (long)STRLEN(str))
13037 goto theend;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000013038 /* When "count" argument is there ignore matches before "start",
13039 * otherwise skip part of the string. Differs when pattern is "^"
13040 * or "\<". */
13041 if (argvars[3].v_type != VAR_UNKNOWN)
13042 startcol = start;
13043 else
13044 str += start;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013045 }
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013046
Bram Moolenaar49cd9572005-01-03 21:06:01 +000013047 if (argvars[3].v_type != VAR_UNKNOWN)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013048 nth = get_tv_number_chk(&argvars[3], &error);
13049 if (error)
13050 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013051 }
13052
13053 regmatch.regprog = vim_regcomp(pat, RE_MAGIC + RE_STRING);
13054 if (regmatch.regprog != NULL)
13055 {
13056 regmatch.rm_ic = p_ic;
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013057
Bram Moolenaard8e9bb22005-07-09 21:14:46 +000013058 for (;;)
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013059 {
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013060 if (l != NULL)
13061 {
13062 if (li == NULL)
13063 {
13064 match = FALSE;
13065 break;
13066 }
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013067 vim_free(tofree);
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000013068 str = echo_string(&li->li_tv, &tofree, strbuf, 0);
Bram Moolenaar81bf7082005-02-12 14:31:42 +000013069 if (str == NULL)
13070 break;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013071 }
13072
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000013073 match = vim_regexec_nl(&regmatch, str, (colnr_T)startcol);
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013074
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013075 if (match && --nth <= 0)
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013076 break;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013077 if (l == NULL && !match)
13078 break;
13079
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013080 /* Advance to just after the match. */
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013081 if (l != NULL)
13082 {
13083 li = li->li_next;
13084 ++idx;
13085 }
13086 else
13087 {
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013088#ifdef FEAT_MBYTE
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000013089 startcol = (colnr_T)(regmatch.startp[0]
13090 + (*mb_ptr2len)(regmatch.startp[0]) - str);
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013091#else
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000013092 startcol = regmatch.startp[0] + 1 - str;
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013093#endif
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013094 }
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013095 }
13096
13097 if (match)
Bram Moolenaar071d4272004-06-13 20:20:40 +000013098 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013099 if (type == 3)
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013100 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013101 int i;
13102
13103 /* return list with matched string and submatches */
13104 for (i = 0; i < NSUBEXP; ++i)
13105 {
13106 if (regmatch.endp[i] == NULL)
Bram Moolenaarf9393ef2006-04-24 19:47:27 +000013107 {
13108 if (list_append_string(rettv->vval.v_list,
13109 (char_u *)"", 0) == FAIL)
13110 break;
13111 }
13112 else if (list_append_string(rettv->vval.v_list,
Bram Moolenaar4463f292005-09-25 22:20:24 +000013113 regmatch.startp[i],
13114 (int)(regmatch.endp[i] - regmatch.startp[i]))
13115 == FAIL)
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013116 break;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013117 }
13118 }
13119 else if (type == 2)
13120 {
13121 /* return matched string */
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013122 if (l != NULL)
13123 copy_tv(&li->li_tv, rettv);
13124 else
13125 rettv->vval.v_string = vim_strnsave(regmatch.startp[0],
Bram Moolenaar071d4272004-06-13 20:20:40 +000013126 (int)(regmatch.endp[0] - regmatch.startp[0]));
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013127 }
13128 else if (l != NULL)
13129 rettv->vval.v_number = idx;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013130 else
13131 {
13132 if (type != 0)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013133 rettv->vval.v_number =
Bram Moolenaar071d4272004-06-13 20:20:40 +000013134 (varnumber_T)(regmatch.startp[0] - str);
13135 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013136 rettv->vval.v_number =
Bram Moolenaar071d4272004-06-13 20:20:40 +000013137 (varnumber_T)(regmatch.endp[0] - str);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000013138 rettv->vval.v_number += (varnumber_T)(str - expr);
Bram Moolenaar071d4272004-06-13 20:20:40 +000013139 }
13140 }
13141 vim_free(regmatch.regprog);
13142 }
13143
13144theend:
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013145 vim_free(tofree);
Bram Moolenaar071d4272004-06-13 20:20:40 +000013146 p_cpo = save_cpo;
13147}
13148
13149/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000013150 * "match()" function
13151 */
13152 static void
13153f_match(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013154 typval_T *argvars;
13155 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000013156{
13157 find_some_match(argvars, rettv, 1);
13158}
13159
13160/*
Bram Moolenaar6ee10162007-07-26 20:58:42 +000013161 * "matchadd()" function
13162 */
13163 static void
13164f_matchadd(argvars, rettv)
13165 typval_T *argvars;
13166 typval_T *rettv;
13167{
13168#ifdef FEAT_SEARCH_EXTRA
13169 char_u buf[NUMBUFLEN];
13170 char_u *grp = get_tv_string_buf_chk(&argvars[0], buf); /* group */
13171 char_u *pat = get_tv_string_buf_chk(&argvars[1], buf); /* pattern */
13172 int prio = 10; /* default priority */
13173 int id = -1;
13174 int error = FALSE;
13175
13176 rettv->vval.v_number = -1;
13177
13178 if (grp == NULL || pat == NULL)
13179 return;
13180 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar2240aeb2007-07-27 19:33:14 +000013181 {
Bram Moolenaar6ee10162007-07-26 20:58:42 +000013182 prio = get_tv_number_chk(&argvars[2], &error);
Bram Moolenaar2240aeb2007-07-27 19:33:14 +000013183 if (argvars[3].v_type != VAR_UNKNOWN)
13184 id = get_tv_number_chk(&argvars[3], &error);
13185 }
Bram Moolenaar6ee10162007-07-26 20:58:42 +000013186 if (error == TRUE)
13187 return;
13188 if (id >= 1 && id <= 3)
13189 {
13190 EMSGN("E798: ID is reserved for \":match\": %ld", id);
13191 return;
13192 }
13193
13194 rettv->vval.v_number = match_add(curwin, grp, pat, prio, id);
13195#endif
13196}
13197
13198/*
Bram Moolenaar910f66f2006-04-05 20:41:53 +000013199 * "matcharg()" function
13200 */
13201 static void
13202f_matcharg(argvars, rettv)
13203 typval_T *argvars;
13204 typval_T *rettv;
13205{
13206 if (rettv_list_alloc(rettv) == OK)
13207 {
13208#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar6ee10162007-07-26 20:58:42 +000013209 int id = get_tv_number(&argvars[0]);
13210 matchitem_T *m;
Bram Moolenaar910f66f2006-04-05 20:41:53 +000013211
Bram Moolenaar6ee10162007-07-26 20:58:42 +000013212 if (id >= 1 && id <= 3)
Bram Moolenaar910f66f2006-04-05 20:41:53 +000013213 {
Bram Moolenaar6ee10162007-07-26 20:58:42 +000013214 if ((m = (matchitem_T *)get_match(curwin, id)) != NULL)
13215 {
13216 list_append_string(rettv->vval.v_list,
13217 syn_id2name(m->hlg_id), -1);
13218 list_append_string(rettv->vval.v_list, m->pattern, -1);
13219 }
13220 else
13221 {
13222 list_append_string(rettv->vval.v_list, NUL, -1);
13223 list_append_string(rettv->vval.v_list, NUL, -1);
13224 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +000013225 }
13226#endif
13227 }
13228}
13229
13230/*
Bram Moolenaar6ee10162007-07-26 20:58:42 +000013231 * "matchdelete()" function
13232 */
13233 static void
13234f_matchdelete(argvars, rettv)
13235 typval_T *argvars;
13236 typval_T *rettv;
13237{
13238#ifdef FEAT_SEARCH_EXTRA
13239 rettv->vval.v_number = match_delete(curwin,
13240 (int)get_tv_number(&argvars[0]), TRUE);
13241#endif
13242}
13243
13244/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000013245 * "matchend()" function
13246 */
13247 static void
13248f_matchend(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013249 typval_T *argvars;
13250 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000013251{
13252 find_some_match(argvars, rettv, 0);
13253}
13254
13255/*
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013256 * "matchlist()" function
13257 */
13258 static void
13259f_matchlist(argvars, rettv)
13260 typval_T *argvars;
13261 typval_T *rettv;
13262{
13263 find_some_match(argvars, rettv, 3);
13264}
13265
13266/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000013267 * "matchstr()" function
13268 */
13269 static void
13270f_matchstr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013271 typval_T *argvars;
13272 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000013273{
13274 find_some_match(argvars, rettv, 2);
13275}
13276
Bram Moolenaar33570922005-01-25 22:26:29 +000013277static void max_min __ARGS((typval_T *argvars, typval_T *rettv, int domax));
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013278
13279 static void
13280max_min(argvars, rettv, domax)
Bram Moolenaar33570922005-01-25 22:26:29 +000013281 typval_T *argvars;
13282 typval_T *rettv;
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013283 int domax;
13284{
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013285 long n = 0;
13286 long i;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013287 int error = FALSE;
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013288
13289 if (argvars[0].v_type == VAR_LIST)
13290 {
Bram Moolenaar33570922005-01-25 22:26:29 +000013291 list_T *l;
13292 listitem_T *li;
Bram Moolenaare9a41262005-01-15 22:18:47 +000013293
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013294 l = argvars[0].vval.v_list;
13295 if (l != NULL)
13296 {
13297 li = l->lv_first;
13298 if (li != NULL)
13299 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013300 n = get_tv_number_chk(&li->li_tv, &error);
Bram Moolenaard8e9bb22005-07-09 21:14:46 +000013301 for (;;)
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013302 {
13303 li = li->li_next;
13304 if (li == NULL)
13305 break;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013306 i = get_tv_number_chk(&li->li_tv, &error);
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013307 if (domax ? i > n : i < n)
13308 n = i;
13309 }
13310 }
13311 }
13312 }
Bram Moolenaare9a41262005-01-15 22:18:47 +000013313 else if (argvars[0].v_type == VAR_DICT)
13314 {
Bram Moolenaar33570922005-01-25 22:26:29 +000013315 dict_T *d;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000013316 int first = TRUE;
Bram Moolenaar33570922005-01-25 22:26:29 +000013317 hashitem_T *hi;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000013318 int todo;
Bram Moolenaare9a41262005-01-15 22:18:47 +000013319
13320 d = argvars[0].vval.v_dict;
13321 if (d != NULL)
13322 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000013323 todo = (int)d->dv_hashtab.ht_used;
Bram Moolenaar33570922005-01-25 22:26:29 +000013324 for (hi = d->dv_hashtab.ht_array; todo > 0; ++hi)
Bram Moolenaare9a41262005-01-15 22:18:47 +000013325 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000013326 if (!HASHITEM_EMPTY(hi))
Bram Moolenaare9a41262005-01-15 22:18:47 +000013327 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000013328 --todo;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013329 i = get_tv_number_chk(&HI2DI(hi)->di_tv, &error);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000013330 if (first)
13331 {
13332 n = i;
13333 first = FALSE;
13334 }
13335 else if (domax ? i > n : i < n)
Bram Moolenaare9a41262005-01-15 22:18:47 +000013336 n = i;
13337 }
13338 }
13339 }
13340 }
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013341 else
Bram Moolenaar758711c2005-02-02 23:11:38 +000013342 EMSG(_(e_listdictarg));
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013343 rettv->vval.v_number = error ? 0 : n;
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013344}
13345
13346/*
13347 * "max()" function
13348 */
13349 static void
13350f_max(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013351 typval_T *argvars;
13352 typval_T *rettv;
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013353{
13354 max_min(argvars, rettv, TRUE);
13355}
13356
13357/*
13358 * "min()" function
13359 */
13360 static void
13361f_min(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013362 typval_T *argvars;
13363 typval_T *rettv;
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013364{
13365 max_min(argvars, rettv, FALSE);
13366}
13367
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000013368static int mkdir_recurse __ARGS((char_u *dir, int prot));
13369
13370/*
13371 * Create the directory in which "dir" is located, and higher levels when
13372 * needed.
13373 */
13374 static int
13375mkdir_recurse(dir, prot)
13376 char_u *dir;
13377 int prot;
13378{
13379 char_u *p;
13380 char_u *updir;
13381 int r = FAIL;
13382
13383 /* Get end of directory name in "dir".
13384 * We're done when it's "/" or "c:/". */
13385 p = gettail_sep(dir);
13386 if (p <= get_past_head(dir))
13387 return OK;
13388
13389 /* If the directory exists we're done. Otherwise: create it.*/
13390 updir = vim_strnsave(dir, (int)(p - dir));
13391 if (updir == NULL)
13392 return FAIL;
13393 if (mch_isdir(updir))
13394 r = OK;
13395 else if (mkdir_recurse(updir, prot) == OK)
13396 r = vim_mkdir_emsg(updir, prot);
13397 vim_free(updir);
13398 return r;
13399}
13400
13401#ifdef vim_mkdir
13402/*
13403 * "mkdir()" function
13404 */
13405 static void
13406f_mkdir(argvars, rettv)
13407 typval_T *argvars;
13408 typval_T *rettv;
13409{
13410 char_u *dir;
13411 char_u buf[NUMBUFLEN];
13412 int prot = 0755;
13413
13414 rettv->vval.v_number = FAIL;
13415 if (check_restricted() || check_secure())
13416 return;
13417
13418 dir = get_tv_string_buf(&argvars[0], buf);
13419 if (argvars[1].v_type != VAR_UNKNOWN)
13420 {
13421 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013422 prot = get_tv_number_chk(&argvars[2], NULL);
13423 if (prot != -1 && STRCMP(get_tv_string(&argvars[1]), "p") == 0)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000013424 mkdir_recurse(dir, prot);
13425 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013426 rettv->vval.v_number = prot != -1 ? vim_mkdir_emsg(dir, prot) : 0;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000013427}
13428#endif
13429
Bram Moolenaar0d660222005-01-07 21:51:51 +000013430/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000013431 * "mode()" function
13432 */
13433/*ARGSUSED*/
13434 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013435f_mode(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013436 typval_T *argvars;
13437 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013438{
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013439 char_u buf[3];
13440
13441 buf[1] = NUL;
13442 buf[2] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013443
13444#ifdef FEAT_VISUAL
13445 if (VIsual_active)
13446 {
13447 if (VIsual_select)
13448 buf[0] = VIsual_mode + 's' - 'v';
13449 else
13450 buf[0] = VIsual_mode;
13451 }
13452 else
13453#endif
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013454 if (State == HITRETURN || State == ASKMORE || State == SETWSIZE
13455 || State == CONFIRM)
13456 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000013457 buf[0] = 'r';
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013458 if (State == ASKMORE)
13459 buf[1] = 'm';
13460 else if (State == CONFIRM)
13461 buf[1] = '?';
13462 }
13463 else if (State == EXTERNCMD)
13464 buf[0] = '!';
Bram Moolenaar071d4272004-06-13 20:20:40 +000013465 else if (State & INSERT)
13466 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013467#ifdef FEAT_VREPLACE
13468 if (State & VREPLACE_FLAG)
13469 {
13470 buf[0] = 'R';
13471 buf[1] = 'v';
13472 }
13473 else
13474#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000013475 if (State & REPLACE_FLAG)
13476 buf[0] = 'R';
13477 else
13478 buf[0] = 'i';
13479 }
13480 else if (State & CMDLINE)
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013481 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000013482 buf[0] = 'c';
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013483 if (exmode_active)
13484 buf[1] = 'v';
13485 }
13486 else if (exmode_active)
13487 {
13488 buf[0] = 'c';
13489 buf[1] = 'e';
13490 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000013491 else
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013492 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000013493 buf[0] = 'n';
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013494 if (finish_op)
13495 buf[1] = 'o';
13496 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000013497
Bram Moolenaar05bb9532008-07-04 09:44:11 +000013498 /* Clear out the minor mode when the argument is not a non-zero number or
13499 * non-empty string. */
13500 if (!non_zero_arg(&argvars[0]))
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013501 buf[1] = NUL;
13502
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013503 rettv->vval.v_string = vim_strsave(buf);
13504 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013505}
13506
13507/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000013508 * "nextnonblank()" function
13509 */
13510 static void
13511f_nextnonblank(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013512 typval_T *argvars;
13513 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000013514{
13515 linenr_T lnum;
13516
13517 for (lnum = get_tv_lnum(argvars); ; ++lnum)
13518 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013519 if (lnum < 0 || lnum > curbuf->b_ml.ml_line_count)
Bram Moolenaar0d660222005-01-07 21:51:51 +000013520 {
13521 lnum = 0;
13522 break;
13523 }
13524 if (*skipwhite(ml_get(lnum)) != NUL)
13525 break;
13526 }
13527 rettv->vval.v_number = lnum;
13528}
13529
13530/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000013531 * "nr2char()" function
13532 */
13533 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013534f_nr2char(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013535 typval_T *argvars;
13536 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013537{
13538 char_u buf[NUMBUFLEN];
13539
13540#ifdef FEAT_MBYTE
13541 if (has_mbyte)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013542 buf[(*mb_char2bytes)((int)get_tv_number(&argvars[0]), buf)] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013543 else
13544#endif
13545 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013546 buf[0] = (char_u)get_tv_number(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000013547 buf[1] = NUL;
13548 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013549 rettv->v_type = VAR_STRING;
13550 rettv->vval.v_string = vim_strsave(buf);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000013551}
13552
13553/*
Bram Moolenaar910f66f2006-04-05 20:41:53 +000013554 * "pathshorten()" function
13555 */
13556 static void
13557f_pathshorten(argvars, rettv)
13558 typval_T *argvars;
13559 typval_T *rettv;
13560{
13561 char_u *p;
13562
13563 rettv->v_type = VAR_STRING;
13564 p = get_tv_string_chk(&argvars[0]);
13565 if (p == NULL)
13566 rettv->vval.v_string = NULL;
13567 else
13568 {
13569 p = vim_strsave(p);
13570 rettv->vval.v_string = p;
13571 if (p != NULL)
13572 shorten_dir(p);
13573 }
13574}
13575
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013576#ifdef FEAT_FLOAT
13577/*
13578 * "pow()" function
13579 */
13580 static void
13581f_pow(argvars, rettv)
13582 typval_T *argvars;
13583 typval_T *rettv;
13584{
13585 float_T fx, fy;
13586
13587 rettv->v_type = VAR_FLOAT;
13588 if (get_float_arg(argvars, &fx) == OK
13589 && get_float_arg(&argvars[1], &fy) == OK)
13590 rettv->vval.v_float = pow(fx, fy);
13591 else
13592 rettv->vval.v_float = 0.0;
13593}
13594#endif
13595
Bram Moolenaar910f66f2006-04-05 20:41:53 +000013596/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000013597 * "prevnonblank()" function
13598 */
13599 static void
13600f_prevnonblank(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013601 typval_T *argvars;
13602 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000013603{
13604 linenr_T lnum;
13605
13606 lnum = get_tv_lnum(argvars);
13607 if (lnum < 1 || lnum > curbuf->b_ml.ml_line_count)
13608 lnum = 0;
13609 else
13610 while (lnum >= 1 && *skipwhite(ml_get(lnum)) == NUL)
13611 --lnum;
13612 rettv->vval.v_number = lnum;
13613}
13614
Bram Moolenaara6c840d2005-08-22 22:59:46 +000013615#ifdef HAVE_STDARG_H
13616/* This dummy va_list is here because:
13617 * - passing a NULL pointer doesn't work when va_list isn't a pointer
13618 * - locally in the function results in a "used before set" warning
13619 * - using va_start() to initialize it gives "function with fixed args" error */
13620static va_list ap;
13621#endif
13622
Bram Moolenaar8c711452005-01-14 21:53:12 +000013623/*
Bram Moolenaar4be06f92005-07-29 22:36:03 +000013624 * "printf()" function
13625 */
13626 static void
13627f_printf(argvars, rettv)
13628 typval_T *argvars;
13629 typval_T *rettv;
13630{
13631 rettv->v_type = VAR_STRING;
13632 rettv->vval.v_string = NULL;
Bram Moolenaard52d9742005-08-21 22:20:28 +000013633#ifdef HAVE_STDARG_H /* only very old compilers can't do this */
Bram Moolenaar4be06f92005-07-29 22:36:03 +000013634 {
13635 char_u buf[NUMBUFLEN];
13636 int len;
13637 char_u *s;
13638 int saved_did_emsg = did_emsg;
13639 char *fmt;
13640
13641 /* Get the required length, allocate the buffer and do it for real. */
13642 did_emsg = FALSE;
13643 fmt = (char *)get_tv_string_buf(&argvars[0], buf);
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +000013644 len = vim_vsnprintf(NULL, 0, fmt, ap, argvars + 1);
Bram Moolenaar4be06f92005-07-29 22:36:03 +000013645 if (!did_emsg)
13646 {
13647 s = alloc(len + 1);
13648 if (s != NULL)
13649 {
13650 rettv->vval.v_string = s;
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +000013651 (void)vim_vsnprintf((char *)s, len + 1, fmt, ap, argvars + 1);
Bram Moolenaar4be06f92005-07-29 22:36:03 +000013652 }
13653 }
13654 did_emsg |= saved_did_emsg;
13655 }
13656#endif
13657}
13658
13659/*
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000013660 * "pumvisible()" function
13661 */
13662/*ARGSUSED*/
13663 static void
13664f_pumvisible(argvars, rettv)
13665 typval_T *argvars;
13666 typval_T *rettv;
13667{
13668 rettv->vval.v_number = 0;
13669#ifdef FEAT_INS_EXPAND
13670 if (pum_visible())
13671 rettv->vval.v_number = 1;
13672#endif
13673}
13674
13675/*
Bram Moolenaar8c711452005-01-14 21:53:12 +000013676 * "range()" function
13677 */
13678 static void
13679f_range(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013680 typval_T *argvars;
13681 typval_T *rettv;
Bram Moolenaar8c711452005-01-14 21:53:12 +000013682{
13683 long start;
13684 long end;
13685 long stride = 1;
13686 long i;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013687 int error = FALSE;
Bram Moolenaar8c711452005-01-14 21:53:12 +000013688
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013689 start = get_tv_number_chk(&argvars[0], &error);
Bram Moolenaar8c711452005-01-14 21:53:12 +000013690 if (argvars[1].v_type == VAR_UNKNOWN)
13691 {
13692 end = start - 1;
13693 start = 0;
13694 }
13695 else
13696 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013697 end = get_tv_number_chk(&argvars[1], &error);
Bram Moolenaar8c711452005-01-14 21:53:12 +000013698 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013699 stride = get_tv_number_chk(&argvars[2], &error);
Bram Moolenaar8c711452005-01-14 21:53:12 +000013700 }
13701
13702 rettv->vval.v_number = 0;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013703 if (error)
13704 return; /* type error; errmsg already given */
Bram Moolenaar8c711452005-01-14 21:53:12 +000013705 if (stride == 0)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000013706 EMSG(_("E726: Stride is zero"));
Bram Moolenaar92124a32005-06-17 22:03:40 +000013707 else if (stride > 0 ? end + 1 < start : end - 1 > start)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000013708 EMSG(_("E727: Start past end"));
Bram Moolenaar8c711452005-01-14 21:53:12 +000013709 else
13710 {
Bram Moolenaareddf53b2006-02-27 00:11:10 +000013711 if (rettv_list_alloc(rettv) == OK)
Bram Moolenaar8c711452005-01-14 21:53:12 +000013712 for (i = start; stride > 0 ? i <= end : i >= end; i += stride)
Bram Moolenaareddf53b2006-02-27 00:11:10 +000013713 if (list_append_number(rettv->vval.v_list,
13714 (varnumber_T)i) == FAIL)
Bram Moolenaar8c711452005-01-14 21:53:12 +000013715 break;
Bram Moolenaar8c711452005-01-14 21:53:12 +000013716 }
13717}
13718
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013719/*
13720 * "readfile()" function
13721 */
13722 static void
13723f_readfile(argvars, rettv)
13724 typval_T *argvars;
13725 typval_T *rettv;
13726{
13727 int binary = FALSE;
13728 char_u *fname;
13729 FILE *fd;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013730 listitem_T *li;
13731#define FREAD_SIZE 200 /* optimized for text lines */
13732 char_u buf[FREAD_SIZE];
13733 int readlen; /* size of last fread() */
13734 int buflen; /* nr of valid chars in buf[] */
13735 int filtd; /* how much in buf[] was NUL -> '\n' filtered */
13736 int tolist; /* first byte in buf[] still to be put in list */
13737 int chop; /* how many CR to chop off */
13738 char_u *prev = NULL; /* previously read bytes, if any */
13739 int prevlen = 0; /* length of "prev" if not NULL */
13740 char_u *s;
13741 int len;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000013742 long maxline = MAXLNUM;
13743 long cnt = 0;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013744
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000013745 if (argvars[1].v_type != VAR_UNKNOWN)
13746 {
13747 if (STRCMP(get_tv_string(&argvars[1]), "b") == 0)
13748 binary = TRUE;
13749 if (argvars[2].v_type != VAR_UNKNOWN)
13750 maxline = get_tv_number(&argvars[2]);
13751 }
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013752
Bram Moolenaareddf53b2006-02-27 00:11:10 +000013753 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013754 return;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013755
13756 /* Always open the file in binary mode, library functions have a mind of
13757 * their own about CR-LF conversion. */
13758 fname = get_tv_string(&argvars[0]);
13759 if (*fname == NUL || (fd = mch_fopen((char *)fname, READBIN)) == NULL)
13760 {
13761 EMSG2(_(e_notopen), *fname == NUL ? (char_u *)_("<empty>") : fname);
13762 return;
13763 }
13764
13765 filtd = 0;
Bram Moolenaarb982ca52005-03-28 21:02:15 +000013766 while (cnt < maxline || maxline < 0)
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013767 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000013768 readlen = (int)fread(buf + filtd, 1, FREAD_SIZE - filtd, fd);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013769 buflen = filtd + readlen;
13770 tolist = 0;
13771 for ( ; filtd < buflen || readlen <= 0; ++filtd)
13772 {
13773 if (buf[filtd] == '\n' || readlen <= 0)
13774 {
13775 /* Only when in binary mode add an empty list item when the
13776 * last line ends in a '\n'. */
13777 if (!binary && readlen == 0 && filtd == 0)
13778 break;
13779
13780 /* Found end-of-line or end-of-file: add a text line to the
13781 * list. */
13782 chop = 0;
13783 if (!binary)
13784 while (filtd - chop - 1 >= tolist
13785 && buf[filtd - chop - 1] == '\r')
13786 ++chop;
13787 len = filtd - tolist - chop;
13788 if (prev == NULL)
13789 s = vim_strnsave(buf + tolist, len);
13790 else
13791 {
13792 s = alloc((unsigned)(prevlen + len + 1));
13793 if (s != NULL)
13794 {
13795 mch_memmove(s, prev, prevlen);
13796 vim_free(prev);
13797 prev = NULL;
13798 mch_memmove(s + prevlen, buf + tolist, len);
13799 s[prevlen + len] = NUL;
13800 }
13801 }
13802 tolist = filtd + 1;
13803
13804 li = listitem_alloc();
13805 if (li == NULL)
13806 {
13807 vim_free(s);
13808 break;
13809 }
13810 li->li_tv.v_type = VAR_STRING;
13811 li->li_tv.v_lock = 0;
13812 li->li_tv.vval.v_string = s;
Bram Moolenaareddf53b2006-02-27 00:11:10 +000013813 list_append(rettv->vval.v_list, li);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013814
Bram Moolenaarb982ca52005-03-28 21:02:15 +000013815 if (++cnt >= maxline && maxline >= 0)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000013816 break;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013817 if (readlen <= 0)
13818 break;
13819 }
13820 else if (buf[filtd] == NUL)
13821 buf[filtd] = '\n';
13822 }
13823 if (readlen <= 0)
13824 break;
13825
13826 if (tolist == 0)
13827 {
13828 /* "buf" is full, need to move text to an allocated buffer */
13829 if (prev == NULL)
13830 {
13831 prev = vim_strnsave(buf, buflen);
13832 prevlen = buflen;
13833 }
13834 else
13835 {
13836 s = alloc((unsigned)(prevlen + buflen));
13837 if (s != NULL)
13838 {
13839 mch_memmove(s, prev, prevlen);
13840 mch_memmove(s + prevlen, buf, buflen);
13841 vim_free(prev);
13842 prev = s;
13843 prevlen += buflen;
13844 }
13845 }
13846 filtd = 0;
13847 }
13848 else
13849 {
13850 mch_memmove(buf, buf + tolist, buflen - tolist);
13851 filtd -= tolist;
13852 }
13853 }
13854
Bram Moolenaarb982ca52005-03-28 21:02:15 +000013855 /*
13856 * For a negative line count use only the lines at the end of the file,
13857 * free the rest.
13858 */
13859 if (maxline < 0)
13860 while (cnt > -maxline)
13861 {
Bram Moolenaareddf53b2006-02-27 00:11:10 +000013862 listitem_remove(rettv->vval.v_list, rettv->vval.v_list->lv_first);
Bram Moolenaarb982ca52005-03-28 21:02:15 +000013863 --cnt;
13864 }
13865
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000013866 vim_free(prev);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013867 fclose(fd);
13868}
13869
Bram Moolenaare580b0c2006-03-21 21:33:03 +000013870#if defined(FEAT_RELTIME)
13871static int list2proftime __ARGS((typval_T *arg, proftime_T *tm));
13872
13873/*
13874 * Convert a List to proftime_T.
13875 * Return FAIL when there is something wrong.
13876 */
13877 static int
13878list2proftime(arg, tm)
13879 typval_T *arg;
13880 proftime_T *tm;
13881{
13882 long n1, n2;
13883 int error = FALSE;
13884
13885 if (arg->v_type != VAR_LIST || arg->vval.v_list == NULL
13886 || arg->vval.v_list->lv_len != 2)
13887 return FAIL;
13888 n1 = list_find_nr(arg->vval.v_list, 0L, &error);
13889 n2 = list_find_nr(arg->vval.v_list, 1L, &error);
13890# ifdef WIN3264
Bram Moolenaardb552d602006-03-23 22:59:57 +000013891 tm->HighPart = n1;
13892 tm->LowPart = n2;
Bram Moolenaare580b0c2006-03-21 21:33:03 +000013893# else
13894 tm->tv_sec = n1;
13895 tm->tv_usec = n2;
13896# endif
13897 return error ? FAIL : OK;
13898}
13899#endif /* FEAT_RELTIME */
13900
13901/*
13902 * "reltime()" function
13903 */
13904 static void
13905f_reltime(argvars, rettv)
13906 typval_T *argvars;
13907 typval_T *rettv;
13908{
13909#ifdef FEAT_RELTIME
13910 proftime_T res;
13911 proftime_T start;
13912
13913 if (argvars[0].v_type == VAR_UNKNOWN)
13914 {
13915 /* No arguments: get current time. */
13916 profile_start(&res);
13917 }
13918 else if (argvars[1].v_type == VAR_UNKNOWN)
13919 {
13920 if (list2proftime(&argvars[0], &res) == FAIL)
13921 return;
13922 profile_end(&res);
13923 }
13924 else
13925 {
13926 /* Two arguments: compute the difference. */
13927 if (list2proftime(&argvars[0], &start) == FAIL
13928 || list2proftime(&argvars[1], &res) == FAIL)
13929 return;
13930 profile_sub(&res, &start);
13931 }
13932
13933 if (rettv_list_alloc(rettv) == OK)
13934 {
13935 long n1, n2;
13936
13937# ifdef WIN3264
Bram Moolenaardb552d602006-03-23 22:59:57 +000013938 n1 = res.HighPart;
13939 n2 = res.LowPart;
Bram Moolenaare580b0c2006-03-21 21:33:03 +000013940# else
13941 n1 = res.tv_sec;
13942 n2 = res.tv_usec;
13943# endif
13944 list_append_number(rettv->vval.v_list, (varnumber_T)n1);
13945 list_append_number(rettv->vval.v_list, (varnumber_T)n2);
13946 }
13947#endif
13948}
13949
13950/*
13951 * "reltimestr()" function
13952 */
13953 static void
13954f_reltimestr(argvars, rettv)
13955 typval_T *argvars;
13956 typval_T *rettv;
13957{
13958#ifdef FEAT_RELTIME
13959 proftime_T tm;
13960#endif
13961
13962 rettv->v_type = VAR_STRING;
13963 rettv->vval.v_string = NULL;
13964#ifdef FEAT_RELTIME
13965 if (list2proftime(&argvars[0], &tm) == OK)
13966 rettv->vval.v_string = vim_strsave((char_u *)profile_msg(&tm));
13967#endif
13968}
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013969
Bram Moolenaar0d660222005-01-07 21:51:51 +000013970#if defined(FEAT_CLIENTSERVER) && defined(FEAT_X11)
13971static void make_connection __ARGS((void));
13972static int check_connection __ARGS((void));
13973
13974 static void
13975make_connection()
13976{
13977 if (X_DISPLAY == NULL
13978# ifdef FEAT_GUI
13979 && !gui.in_use
13980# endif
13981 )
13982 {
13983 x_force_connect = TRUE;
13984 setup_term_clip();
13985 x_force_connect = FALSE;
13986 }
13987}
13988
13989 static int
13990check_connection()
13991{
13992 make_connection();
13993 if (X_DISPLAY == NULL)
13994 {
13995 EMSG(_("E240: No connection to Vim server"));
13996 return FAIL;
13997 }
13998 return OK;
13999}
14000#endif
14001
14002#ifdef FEAT_CLIENTSERVER
Bram Moolenaar33570922005-01-25 22:26:29 +000014003static void remote_common __ARGS((typval_T *argvars, typval_T *rettv, int expr));
Bram Moolenaar0d660222005-01-07 21:51:51 +000014004
14005 static void
14006remote_common(argvars, rettv, expr)
Bram Moolenaar33570922005-01-25 22:26:29 +000014007 typval_T *argvars;
14008 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014009 int expr;
14010{
14011 char_u *server_name;
14012 char_u *keys;
14013 char_u *r = NULL;
14014 char_u buf[NUMBUFLEN];
14015# ifdef WIN32
14016 HWND w;
14017# else
14018 Window w;
14019# endif
14020
14021 if (check_restricted() || check_secure())
14022 return;
14023
14024# ifdef FEAT_X11
14025 if (check_connection() == FAIL)
14026 return;
14027# endif
14028
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014029 server_name = get_tv_string_chk(&argvars[0]);
14030 if (server_name == NULL)
14031 return; /* type error; errmsg already given */
Bram Moolenaar0d660222005-01-07 21:51:51 +000014032 keys = get_tv_string_buf(&argvars[1], buf);
14033# ifdef WIN32
14034 if (serverSendToVim(server_name, keys, &r, &w, expr, TRUE) < 0)
14035# else
14036 if (serverSendToVim(X_DISPLAY, server_name, keys, &r, &w, expr, 0, TRUE)
14037 < 0)
14038# endif
14039 {
14040 if (r != NULL)
14041 EMSG(r); /* sending worked but evaluation failed */
14042 else
14043 EMSG2(_("E241: Unable to send to %s"), server_name);
14044 return;
14045 }
14046
14047 rettv->vval.v_string = r;
14048
14049 if (argvars[2].v_type != VAR_UNKNOWN)
14050 {
Bram Moolenaar33570922005-01-25 22:26:29 +000014051 dictitem_T v;
Bram Moolenaar555b2802005-05-19 21:08:39 +000014052 char_u str[30];
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014053 char_u *idvar;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014054
Bram Moolenaareb3593b2006-04-22 22:33:57 +000014055 sprintf((char *)str, PRINTF_HEX_LONG_U, (long_u)w);
Bram Moolenaar33570922005-01-25 22:26:29 +000014056 v.di_tv.v_type = VAR_STRING;
14057 v.di_tv.vval.v_string = vim_strsave(str);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014058 idvar = get_tv_string_chk(&argvars[2]);
14059 if (idvar != NULL)
14060 set_var(idvar, &v.di_tv, FALSE);
Bram Moolenaar33570922005-01-25 22:26:29 +000014061 vim_free(v.di_tv.vval.v_string);
Bram Moolenaar0d660222005-01-07 21:51:51 +000014062 }
14063}
14064#endif
14065
14066/*
14067 * "remote_expr()" function
14068 */
14069/*ARGSUSED*/
14070 static void
14071f_remote_expr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000014072 typval_T *argvars;
14073 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014074{
14075 rettv->v_type = VAR_STRING;
14076 rettv->vval.v_string = NULL;
14077#ifdef FEAT_CLIENTSERVER
14078 remote_common(argvars, rettv, TRUE);
14079#endif
14080}
14081
14082/*
14083 * "remote_foreground()" function
14084 */
14085/*ARGSUSED*/
14086 static void
14087f_remote_foreground(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000014088 typval_T *argvars;
14089 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014090{
14091 rettv->vval.v_number = 0;
14092#ifdef FEAT_CLIENTSERVER
14093# ifdef WIN32
14094 /* On Win32 it's done in this application. */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014095 {
14096 char_u *server_name = get_tv_string_chk(&argvars[0]);
14097
14098 if (server_name != NULL)
14099 serverForeground(server_name);
14100 }
Bram Moolenaar0d660222005-01-07 21:51:51 +000014101# else
14102 /* Send a foreground() expression to the server. */
14103 argvars[1].v_type = VAR_STRING;
14104 argvars[1].vval.v_string = vim_strsave((char_u *)"foreground()");
14105 argvars[2].v_type = VAR_UNKNOWN;
14106 remote_common(argvars, rettv, TRUE);
14107 vim_free(argvars[1].vval.v_string);
14108# endif
14109#endif
14110}
14111
14112/*ARGSUSED*/
14113 static void
14114f_remote_peek(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000014115 typval_T *argvars;
14116 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014117{
14118#ifdef FEAT_CLIENTSERVER
Bram Moolenaar33570922005-01-25 22:26:29 +000014119 dictitem_T v;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014120 char_u *s = NULL;
14121# ifdef WIN32
Bram Moolenaareb3593b2006-04-22 22:33:57 +000014122 long_u n = 0;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014123# endif
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014124 char_u *serverid;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014125
14126 if (check_restricted() || check_secure())
14127 {
14128 rettv->vval.v_number = -1;
14129 return;
14130 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014131 serverid = get_tv_string_chk(&argvars[0]);
14132 if (serverid == NULL)
14133 {
14134 rettv->vval.v_number = -1;
14135 return; /* type error; errmsg already given */
14136 }
Bram Moolenaar0d660222005-01-07 21:51:51 +000014137# ifdef WIN32
Bram Moolenaareb3593b2006-04-22 22:33:57 +000014138 sscanf(serverid, SCANF_HEX_LONG_U, &n);
Bram Moolenaar0d660222005-01-07 21:51:51 +000014139 if (n == 0)
14140 rettv->vval.v_number = -1;
14141 else
14142 {
14143 s = serverGetReply((HWND)n, FALSE, FALSE, FALSE);
14144 rettv->vval.v_number = (s != NULL);
14145 }
14146# else
14147 rettv->vval.v_number = 0;
14148 if (check_connection() == FAIL)
14149 return;
14150
14151 rettv->vval.v_number = serverPeekReply(X_DISPLAY,
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014152 serverStrToWin(serverid), &s);
Bram Moolenaar0d660222005-01-07 21:51:51 +000014153# endif
14154
14155 if (argvars[1].v_type != VAR_UNKNOWN && rettv->vval.v_number > 0)
14156 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014157 char_u *retvar;
14158
Bram Moolenaar33570922005-01-25 22:26:29 +000014159 v.di_tv.v_type = VAR_STRING;
14160 v.di_tv.vval.v_string = vim_strsave(s);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014161 retvar = get_tv_string_chk(&argvars[1]);
14162 if (retvar != NULL)
14163 set_var(retvar, &v.di_tv, FALSE);
Bram Moolenaar33570922005-01-25 22:26:29 +000014164 vim_free(v.di_tv.vval.v_string);
Bram Moolenaar0d660222005-01-07 21:51:51 +000014165 }
14166#else
14167 rettv->vval.v_number = -1;
14168#endif
14169}
14170
14171/*ARGSUSED*/
14172 static void
14173f_remote_read(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000014174 typval_T *argvars;
14175 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014176{
14177 char_u *r = NULL;
14178
14179#ifdef FEAT_CLIENTSERVER
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014180 char_u *serverid = get_tv_string_chk(&argvars[0]);
14181
14182 if (serverid != NULL && !check_restricted() && !check_secure())
Bram Moolenaar0d660222005-01-07 21:51:51 +000014183 {
14184# ifdef WIN32
14185 /* The server's HWND is encoded in the 'id' parameter */
Bram Moolenaareb3593b2006-04-22 22:33:57 +000014186 long_u n = 0;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014187
Bram Moolenaareb3593b2006-04-22 22:33:57 +000014188 sscanf(serverid, SCANF_HEX_LONG_U, &n);
Bram Moolenaar0d660222005-01-07 21:51:51 +000014189 if (n != 0)
14190 r = serverGetReply((HWND)n, FALSE, TRUE, TRUE);
14191 if (r == NULL)
14192# else
14193 if (check_connection() == FAIL || serverReadReply(X_DISPLAY,
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014194 serverStrToWin(serverid), &r, FALSE) < 0)
Bram Moolenaar0d660222005-01-07 21:51:51 +000014195# endif
14196 EMSG(_("E277: Unable to read a server reply"));
14197 }
14198#endif
14199 rettv->v_type = VAR_STRING;
14200 rettv->vval.v_string = r;
14201}
14202
14203/*
14204 * "remote_send()" function
14205 */
14206/*ARGSUSED*/
14207 static void
14208f_remote_send(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000014209 typval_T *argvars;
14210 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014211{
14212 rettv->v_type = VAR_STRING;
14213 rettv->vval.v_string = NULL;
14214#ifdef FEAT_CLIENTSERVER
14215 remote_common(argvars, rettv, FALSE);
14216#endif
14217}
14218
14219/*
Bram Moolenaar8c711452005-01-14 21:53:12 +000014220 * "remove()" function
Bram Moolenaar49cd9572005-01-03 21:06:01 +000014221 */
14222 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014223f_remove(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000014224 typval_T *argvars;
14225 typval_T *rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000014226{
Bram Moolenaar33570922005-01-25 22:26:29 +000014227 list_T *l;
14228 listitem_T *item, *item2;
14229 listitem_T *li;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000014230 long idx;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014231 long end;
Bram Moolenaar8c711452005-01-14 21:53:12 +000014232 char_u *key;
Bram Moolenaar33570922005-01-25 22:26:29 +000014233 dict_T *d;
14234 dictitem_T *di;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000014235
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014236 rettv->vval.v_number = 0;
Bram Moolenaar8c711452005-01-14 21:53:12 +000014237 if (argvars[0].v_type == VAR_DICT)
14238 {
14239 if (argvars[2].v_type != VAR_UNKNOWN)
14240 EMSG2(_(e_toomanyarg), "remove()");
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000014241 else if ((d = argvars[0].vval.v_dict) != NULL
Bram Moolenaar9dfb0f82006-06-22 16:03:05 +000014242 && !tv_check_lock(d->dv_lock, (char_u *)"remove() argument"))
Bram Moolenaar8c711452005-01-14 21:53:12 +000014243 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014244 key = get_tv_string_chk(&argvars[1]);
14245 if (key != NULL)
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000014246 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014247 di = dict_find(d, key, -1);
14248 if (di == NULL)
14249 EMSG2(_(e_dictkey), key);
14250 else
14251 {
14252 *rettv = di->di_tv;
14253 init_tv(&di->di_tv);
14254 dictitem_remove(d, di);
14255 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000014256 }
Bram Moolenaar8c711452005-01-14 21:53:12 +000014257 }
14258 }
14259 else if (argvars[0].v_type != VAR_LIST)
14260 EMSG2(_(e_listdictarg), "remove()");
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000014261 else if ((l = argvars[0].vval.v_list) != NULL
Bram Moolenaar9dfb0f82006-06-22 16:03:05 +000014262 && !tv_check_lock(l->lv_lock, (char_u *)"remove() argument"))
Bram Moolenaar49cd9572005-01-03 21:06:01 +000014263 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014264 int error = FALSE;
14265
14266 idx = get_tv_number_chk(&argvars[1], &error);
14267 if (error)
14268 ; /* type error: do nothing, errmsg already given */
14269 else if ((item = list_find(l, idx)) == NULL)
Bram Moolenaar49cd9572005-01-03 21:06:01 +000014270 EMSGN(_(e_listidx), idx);
14271 else
14272 {
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014273 if (argvars[2].v_type == VAR_UNKNOWN)
14274 {
14275 /* Remove one item, return its value. */
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000014276 list_remove(l, item, item);
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014277 *rettv = item->li_tv;
14278 vim_free(item);
14279 }
14280 else
14281 {
14282 /* Remove range of items, return list with values. */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014283 end = get_tv_number_chk(&argvars[2], &error);
14284 if (error)
14285 ; /* type error: do nothing */
14286 else if ((item2 = list_find(l, end)) == NULL)
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014287 EMSGN(_(e_listidx), end);
14288 else
14289 {
Bram Moolenaar758711c2005-02-02 23:11:38 +000014290 int cnt = 0;
14291
14292 for (li = item; li != NULL; li = li->li_next)
14293 {
14294 ++cnt;
14295 if (li == item2)
14296 break;
14297 }
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014298 if (li == NULL) /* didn't find "item2" after "item" */
14299 EMSG(_(e_invrange));
14300 else
14301 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000014302 list_remove(l, item, item2);
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014303 if (rettv_list_alloc(rettv) == OK)
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014304 {
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014305 l = rettv->vval.v_list;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014306 l->lv_first = item;
14307 l->lv_last = item2;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014308 item->li_prev = NULL;
14309 item2->li_next = NULL;
Bram Moolenaar758711c2005-02-02 23:11:38 +000014310 l->lv_len = cnt;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014311 }
14312 }
14313 }
14314 }
Bram Moolenaar49cd9572005-01-03 21:06:01 +000014315 }
14316 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000014317}
14318
14319/*
14320 * "rename({from}, {to})" function
14321 */
14322 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014323f_rename(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000014324 typval_T *argvars;
14325 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014326{
14327 char_u buf[NUMBUFLEN];
14328
14329 if (check_restricted() || check_secure())
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014330 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014331 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014332 rettv->vval.v_number = vim_rename(get_tv_string(&argvars[0]),
14333 get_tv_string_buf(&argvars[1], buf));
Bram Moolenaar071d4272004-06-13 20:20:40 +000014334}
14335
14336/*
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014337 * "repeat()" function
14338 */
14339/*ARGSUSED*/
14340 static void
14341f_repeat(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000014342 typval_T *argvars;
14343 typval_T *rettv;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014344{
14345 char_u *p;
14346 int n;
14347 int slen;
14348 int len;
14349 char_u *r;
14350 int i;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014351
14352 n = get_tv_number(&argvars[1]);
14353 if (argvars[0].v_type == VAR_LIST)
14354 {
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014355 if (rettv_list_alloc(rettv) == OK && argvars[0].vval.v_list != NULL)
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014356 while (n-- > 0)
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014357 if (list_extend(rettv->vval.v_list,
14358 argvars[0].vval.v_list, NULL) == FAIL)
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014359 break;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014360 }
14361 else
14362 {
14363 p = get_tv_string(&argvars[0]);
14364 rettv->v_type = VAR_STRING;
14365 rettv->vval.v_string = NULL;
14366
14367 slen = (int)STRLEN(p);
14368 len = slen * n;
14369 if (len <= 0)
14370 return;
14371
14372 r = alloc(len + 1);
14373 if (r != NULL)
14374 {
14375 for (i = 0; i < n; i++)
14376 mch_memmove(r + i * slen, p, (size_t)slen);
14377 r[len] = NUL;
14378 }
14379
14380 rettv->vval.v_string = r;
14381 }
14382}
14383
14384/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000014385 * "resolve()" function
14386 */
14387 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014388f_resolve(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000014389 typval_T *argvars;
14390 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014391{
14392 char_u *p;
14393
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014394 p = get_tv_string(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014395#ifdef FEAT_SHORTCUT
14396 {
14397 char_u *v = NULL;
14398
14399 v = mch_resolve_shortcut(p);
14400 if (v != NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014401 rettv->vval.v_string = v;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014402 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014403 rettv->vval.v_string = vim_strsave(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014404 }
14405#else
14406# ifdef HAVE_READLINK
14407 {
14408 char_u buf[MAXPATHL + 1];
14409 char_u *cpy;
14410 int len;
14411 char_u *remain = NULL;
14412 char_u *q;
14413 int is_relative_to_current = FALSE;
14414 int has_trailing_pathsep = FALSE;
14415 int limit = 100;
14416
14417 p = vim_strsave(p);
14418
14419 if (p[0] == '.' && (vim_ispathsep(p[1])
14420 || (p[1] == '.' && (vim_ispathsep(p[2])))))
14421 is_relative_to_current = TRUE;
14422
14423 len = STRLEN(p);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +000014424 if (len > 0 && after_pathsep(p, p + len))
Bram Moolenaar071d4272004-06-13 20:20:40 +000014425 has_trailing_pathsep = TRUE;
14426
14427 q = getnextcomp(p);
14428 if (*q != NUL)
14429 {
14430 /* Separate the first path component in "p", and keep the
14431 * remainder (beginning with the path separator). */
14432 remain = vim_strsave(q - 1);
14433 q[-1] = NUL;
14434 }
14435
14436 for (;;)
14437 {
14438 for (;;)
14439 {
14440 len = readlink((char *)p, (char *)buf, MAXPATHL);
14441 if (len <= 0)
14442 break;
14443 buf[len] = NUL;
14444
14445 if (limit-- == 0)
14446 {
14447 vim_free(p);
14448 vim_free(remain);
14449 EMSG(_("E655: Too many symbolic links (cycle?)"));
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014450 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014451 goto fail;
14452 }
14453
14454 /* Ensure that the result will have a trailing path separator
14455 * if the argument has one. */
14456 if (remain == NULL && has_trailing_pathsep)
14457 add_pathsep(buf);
14458
14459 /* Separate the first path component in the link value and
14460 * concatenate the remainders. */
14461 q = getnextcomp(vim_ispathsep(*buf) ? buf + 1 : buf);
14462 if (*q != NUL)
14463 {
14464 if (remain == NULL)
14465 remain = vim_strsave(q - 1);
14466 else
14467 {
Bram Moolenaar900b4d72005-12-12 22:05:50 +000014468 cpy = concat_str(q - 1, remain);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014469 if (cpy != NULL)
14470 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000014471 vim_free(remain);
14472 remain = cpy;
14473 }
14474 }
14475 q[-1] = NUL;
14476 }
14477
14478 q = gettail(p);
14479 if (q > p && *q == NUL)
14480 {
14481 /* Ignore trailing path separator. */
14482 q[-1] = NUL;
14483 q = gettail(p);
14484 }
14485 if (q > p && !mch_isFullName(buf))
14486 {
14487 /* symlink is relative to directory of argument */
14488 cpy = alloc((unsigned)(STRLEN(p) + STRLEN(buf) + 1));
14489 if (cpy != NULL)
14490 {
14491 STRCPY(cpy, p);
14492 STRCPY(gettail(cpy), buf);
14493 vim_free(p);
14494 p = cpy;
14495 }
14496 }
14497 else
14498 {
14499 vim_free(p);
14500 p = vim_strsave(buf);
14501 }
14502 }
14503
14504 if (remain == NULL)
14505 break;
14506
14507 /* Append the first path component of "remain" to "p". */
14508 q = getnextcomp(remain + 1);
14509 len = q - remain - (*q != NUL);
14510 cpy = vim_strnsave(p, STRLEN(p) + len);
14511 if (cpy != NULL)
14512 {
14513 STRNCAT(cpy, remain, len);
14514 vim_free(p);
14515 p = cpy;
14516 }
14517 /* Shorten "remain". */
14518 if (*q != NUL)
Bram Moolenaar8c8de832008-06-24 22:58:06 +000014519 STRMOVE(remain, q - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014520 else
14521 {
14522 vim_free(remain);
14523 remain = NULL;
14524 }
14525 }
14526
14527 /* If the result is a relative path name, make it explicitly relative to
14528 * the current directory if and only if the argument had this form. */
14529 if (!vim_ispathsep(*p))
14530 {
14531 if (is_relative_to_current
14532 && *p != NUL
14533 && !(p[0] == '.'
14534 && (p[1] == NUL
14535 || vim_ispathsep(p[1])
14536 || (p[1] == '.'
14537 && (p[2] == NUL
14538 || vim_ispathsep(p[2]))))))
14539 {
14540 /* Prepend "./". */
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000014541 cpy = concat_str((char_u *)"./", p);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014542 if (cpy != NULL)
14543 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000014544 vim_free(p);
14545 p = cpy;
14546 }
14547 }
14548 else if (!is_relative_to_current)
14549 {
14550 /* Strip leading "./". */
14551 q = p;
14552 while (q[0] == '.' && vim_ispathsep(q[1]))
14553 q += 2;
14554 if (q > p)
Bram Moolenaar8c8de832008-06-24 22:58:06 +000014555 STRMOVE(p, p + 2);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014556 }
14557 }
14558
14559 /* Ensure that the result will have no trailing path separator
14560 * if the argument had none. But keep "/" or "//". */
14561 if (!has_trailing_pathsep)
14562 {
14563 q = p + STRLEN(p);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +000014564 if (after_pathsep(p, q))
14565 *gettail_sep(p) = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014566 }
14567
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014568 rettv->vval.v_string = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014569 }
14570# else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014571 rettv->vval.v_string = vim_strsave(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014572# endif
14573#endif
14574
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014575 simplify_filename(rettv->vval.v_string);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014576
14577#ifdef HAVE_READLINK
14578fail:
14579#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014580 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014581}
14582
14583/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000014584 * "reverse({list})" function
Bram Moolenaar071d4272004-06-13 20:20:40 +000014585 */
14586 static void
Bram Moolenaar0d660222005-01-07 21:51:51 +000014587f_reverse(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000014588 typval_T *argvars;
14589 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014590{
Bram Moolenaar33570922005-01-25 22:26:29 +000014591 list_T *l;
14592 listitem_T *li, *ni;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014593
Bram Moolenaar0d660222005-01-07 21:51:51 +000014594 rettv->vval.v_number = 0;
14595 if (argvars[0].v_type != VAR_LIST)
14596 EMSG2(_(e_listarg), "reverse()");
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000014597 else if ((l = argvars[0].vval.v_list) != NULL
14598 && !tv_check_lock(l->lv_lock, (char_u *)"reverse()"))
Bram Moolenaar0d660222005-01-07 21:51:51 +000014599 {
14600 li = l->lv_last;
Bram Moolenaar81bf7082005-02-12 14:31:42 +000014601 l->lv_first = l->lv_last = NULL;
Bram Moolenaar758711c2005-02-02 23:11:38 +000014602 l->lv_len = 0;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014603 while (li != NULL)
14604 {
14605 ni = li->li_prev;
14606 list_append(l, li);
14607 li = ni;
14608 }
14609 rettv->vval.v_list = l;
14610 rettv->v_type = VAR_LIST;
14611 ++l->lv_refcount;
Bram Moolenaar52514562008-04-01 11:12:09 +000014612 l->lv_idx = l->lv_len - l->lv_idx - 1;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014613 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000014614}
14615
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014616#define SP_NOMOVE 0x01 /* don't move cursor */
14617#define SP_REPEAT 0x02 /* repeat to find outer pair */
14618#define SP_RETCOUNT 0x04 /* return matchcount */
14619#define SP_SETPCMARK 0x08 /* set previous context mark */
14620#define SP_START 0x10 /* accept match at start position */
14621#define SP_SUBPAT 0x20 /* return nr of matching sub-pattern */
14622#define SP_END 0x40 /* leave cursor at end of match */
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014623
Bram Moolenaar33570922005-01-25 22:26:29 +000014624static int get_search_arg __ARGS((typval_T *varp, int *flagsp));
Bram Moolenaar0d660222005-01-07 21:51:51 +000014625
14626/*
14627 * Get flags for a search function.
14628 * Possibly sets "p_ws".
14629 * Returns BACKWARD, FORWARD or zero (for an error).
14630 */
14631 static int
14632get_search_arg(varp, flagsp)
Bram Moolenaar33570922005-01-25 22:26:29 +000014633 typval_T *varp;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014634 int *flagsp;
14635{
14636 int dir = FORWARD;
14637 char_u *flags;
14638 char_u nbuf[NUMBUFLEN];
14639 int mask;
14640
14641 if (varp->v_type != VAR_UNKNOWN)
14642 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014643 flags = get_tv_string_buf_chk(varp, nbuf);
14644 if (flags == NULL)
14645 return 0; /* type error; errmsg already given */
Bram Moolenaar0d660222005-01-07 21:51:51 +000014646 while (*flags != NUL)
14647 {
14648 switch (*flags)
14649 {
14650 case 'b': dir = BACKWARD; break;
14651 case 'w': p_ws = TRUE; break;
14652 case 'W': p_ws = FALSE; break;
14653 default: mask = 0;
14654 if (flagsp != NULL)
14655 switch (*flags)
14656 {
Bram Moolenaar0e34f622006-03-03 23:00:03 +000014657 case 'c': mask = SP_START; break;
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014658 case 'e': mask = SP_END; break;
14659 case 'm': mask = SP_RETCOUNT; break;
14660 case 'n': mask = SP_NOMOVE; break;
14661 case 'p': mask = SP_SUBPAT; break;
14662 case 'r': mask = SP_REPEAT; break;
14663 case 's': mask = SP_SETPCMARK; break;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014664 }
14665 if (mask == 0)
14666 {
14667 EMSG2(_(e_invarg2), flags);
14668 dir = 0;
14669 }
14670 else
14671 *flagsp |= mask;
14672 }
14673 if (dir == 0)
14674 break;
14675 ++flags;
14676 }
14677 }
14678 return dir;
14679}
14680
Bram Moolenaar071d4272004-06-13 20:20:40 +000014681/*
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014682 * Shared by search() and searchpos() functions
Bram Moolenaar071d4272004-06-13 20:20:40 +000014683 */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014684 static int
Bram Moolenaar362e1a32006-03-06 23:29:24 +000014685search_cmn(argvars, match_pos, flagsp)
Bram Moolenaar33570922005-01-25 22:26:29 +000014686 typval_T *argvars;
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014687 pos_T *match_pos;
Bram Moolenaar362e1a32006-03-06 23:29:24 +000014688 int *flagsp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014689{
Bram Moolenaar362e1a32006-03-06 23:29:24 +000014690 int flags;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014691 char_u *pat;
14692 pos_T pos;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014693 pos_T save_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014694 int save_p_ws = p_ws;
14695 int dir;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014696 int retval = 0; /* default: FAIL */
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014697 long lnum_stop = 0;
Bram Moolenaar76929292008-01-06 19:07:36 +000014698 proftime_T tm;
14699#ifdef FEAT_RELTIME
14700 long time_limit = 0;
14701#endif
Bram Moolenaar0e34f622006-03-03 23:00:03 +000014702 int options = SEARCH_KEEP;
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014703 int subpatnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014704
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014705 pat = get_tv_string(&argvars[0]);
Bram Moolenaar362e1a32006-03-06 23:29:24 +000014706 dir = get_search_arg(&argvars[1], flagsp); /* may set p_ws */
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014707 if (dir == 0)
14708 goto theend;
Bram Moolenaar362e1a32006-03-06 23:29:24 +000014709 flags = *flagsp;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000014710 if (flags & SP_START)
14711 options |= SEARCH_START;
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014712 if (flags & SP_END)
14713 options |= SEARCH_END;
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014714
Bram Moolenaar76929292008-01-06 19:07:36 +000014715 /* Optional arguments: line number to stop searching and timeout. */
14716 if (argvars[1].v_type != VAR_UNKNOWN && argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014717 {
14718 lnum_stop = get_tv_number_chk(&argvars[2], NULL);
14719 if (lnum_stop < 0)
14720 goto theend;
Bram Moolenaar76929292008-01-06 19:07:36 +000014721#ifdef FEAT_RELTIME
14722 if (argvars[3].v_type != VAR_UNKNOWN)
14723 {
14724 time_limit = get_tv_number_chk(&argvars[3], NULL);
14725 if (time_limit < 0)
14726 goto theend;
14727 }
14728#endif
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014729 }
14730
Bram Moolenaar76929292008-01-06 19:07:36 +000014731#ifdef FEAT_RELTIME
14732 /* Set the time limit, if there is one. */
14733 profile_setlimit(time_limit, &tm);
14734#endif
14735
Bram Moolenaar231334e2005-07-25 20:46:57 +000014736 /*
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014737 * This function does not accept SP_REPEAT and SP_RETCOUNT flags.
Bram Moolenaar231334e2005-07-25 20:46:57 +000014738 * Check to make sure only those flags are set.
14739 * Also, Only the SP_NOMOVE or the SP_SETPCMARK flag can be set. Both
14740 * flags cannot be set. Check for that condition also.
14741 */
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014742 if (((flags & (SP_REPEAT | SP_RETCOUNT)) != 0)
Bram Moolenaar0e34f622006-03-03 23:00:03 +000014743 || ((flags & SP_NOMOVE) && (flags & SP_SETPCMARK)))
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014744 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014745 EMSG2(_(e_invarg2), get_tv_string(&argvars[1]));
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014746 goto theend;
14747 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000014748
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014749 pos = save_cursor = curwin->w_cursor;
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014750 subpatnum = searchit(curwin, curbuf, &pos, dir, pat, 1L,
Bram Moolenaar76929292008-01-06 19:07:36 +000014751 options, RE_SEARCH, (linenr_T)lnum_stop, &tm);
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014752 if (subpatnum != FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000014753 {
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014754 if (flags & SP_SUBPAT)
14755 retval = subpatnum;
14756 else
14757 retval = pos.lnum;
Bram Moolenaar231334e2005-07-25 20:46:57 +000014758 if (flags & SP_SETPCMARK)
14759 setpcmark();
Bram Moolenaar071d4272004-06-13 20:20:40 +000014760 curwin->w_cursor = pos;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014761 if (match_pos != NULL)
14762 {
14763 /* Store the match cursor position */
14764 match_pos->lnum = pos.lnum;
14765 match_pos->col = pos.col + 1;
14766 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000014767 /* "/$" will put the cursor after the end of the line, may need to
14768 * correct that here */
14769 check_cursor();
14770 }
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014771
14772 /* If 'n' flag is used: restore cursor position. */
14773 if (flags & SP_NOMOVE)
14774 curwin->w_cursor = save_cursor;
Bram Moolenaar7a42fa32007-07-10 11:28:55 +000014775 else
14776 curwin->w_set_curswant = TRUE;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014777theend:
Bram Moolenaar071d4272004-06-13 20:20:40 +000014778 p_ws = save_p_ws;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014779
14780 return retval;
14781}
14782
Bram Moolenaar8c8de832008-06-24 22:58:06 +000014783#ifdef FEAT_FLOAT
14784/*
14785 * "round({float})" function
14786 */
14787 static void
14788f_round(argvars, rettv)
14789 typval_T *argvars;
14790 typval_T *rettv;
14791{
14792 float_T f;
14793
14794 rettv->v_type = VAR_FLOAT;
14795 if (get_float_arg(argvars, &f) == OK)
14796 /* round() is not in C90, use ceil() or floor() instead. */
14797 rettv->vval.v_float = f > 0 ? floor(f + 0.5) : ceil(f - 0.5);
14798 else
14799 rettv->vval.v_float = 0.0;
14800}
14801#endif
14802
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014803/*
14804 * "search()" function
14805 */
14806 static void
14807f_search(argvars, rettv)
14808 typval_T *argvars;
14809 typval_T *rettv;
14810{
Bram Moolenaar362e1a32006-03-06 23:29:24 +000014811 int flags = 0;
14812
14813 rettv->vval.v_number = search_cmn(argvars, NULL, &flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014814}
14815
Bram Moolenaar071d4272004-06-13 20:20:40 +000014816/*
Bram Moolenaardd2436f2005-09-05 22:14:46 +000014817 * "searchdecl()" function
14818 */
14819 static void
14820f_searchdecl(argvars, rettv)
14821 typval_T *argvars;
14822 typval_T *rettv;
14823{
14824 int locally = 1;
Bram Moolenaare6facf92005-09-13 21:22:27 +000014825 int thisblock = 0;
Bram Moolenaardd2436f2005-09-05 22:14:46 +000014826 int error = FALSE;
14827 char_u *name;
14828
14829 rettv->vval.v_number = 1; /* default: FAIL */
14830
14831 name = get_tv_string_chk(&argvars[0]);
14832 if (argvars[1].v_type != VAR_UNKNOWN)
Bram Moolenaare6facf92005-09-13 21:22:27 +000014833 {
Bram Moolenaardd2436f2005-09-05 22:14:46 +000014834 locally = get_tv_number_chk(&argvars[1], &error) == 0;
Bram Moolenaare6facf92005-09-13 21:22:27 +000014835 if (!error && argvars[2].v_type != VAR_UNKNOWN)
14836 thisblock = get_tv_number_chk(&argvars[2], &error) != 0;
14837 }
Bram Moolenaardd2436f2005-09-05 22:14:46 +000014838 if (!error && name != NULL)
14839 rettv->vval.v_number = find_decl(name, (int)STRLEN(name),
Bram Moolenaare6facf92005-09-13 21:22:27 +000014840 locally, thisblock, SEARCH_KEEP) == FAIL;
Bram Moolenaardd2436f2005-09-05 22:14:46 +000014841}
14842
14843/*
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014844 * Used by searchpair() and searchpairpos()
Bram Moolenaar071d4272004-06-13 20:20:40 +000014845 */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014846 static int
14847searchpair_cmn(argvars, match_pos)
Bram Moolenaar33570922005-01-25 22:26:29 +000014848 typval_T *argvars;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014849 pos_T *match_pos;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014850{
14851 char_u *spat, *mpat, *epat;
14852 char_u *skip;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014853 int save_p_ws = p_ws;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014854 int dir;
14855 int flags = 0;
14856 char_u nbuf1[NUMBUFLEN];
14857 char_u nbuf2[NUMBUFLEN];
14858 char_u nbuf3[NUMBUFLEN];
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014859 int retval = 0; /* default: FAIL */
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014860 long lnum_stop = 0;
Bram Moolenaar76929292008-01-06 19:07:36 +000014861 long time_limit = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014862
Bram Moolenaar071d4272004-06-13 20:20:40 +000014863 /* Get the three pattern arguments: start, middle, end. */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014864 spat = get_tv_string_chk(&argvars[0]);
14865 mpat = get_tv_string_buf_chk(&argvars[1], nbuf1);
14866 epat = get_tv_string_buf_chk(&argvars[2], nbuf2);
14867 if (spat == NULL || mpat == NULL || epat == NULL)
14868 goto theend; /* type error */
Bram Moolenaar071d4272004-06-13 20:20:40 +000014869
Bram Moolenaar071d4272004-06-13 20:20:40 +000014870 /* Handle the optional fourth argument: flags */
14871 dir = get_search_arg(&argvars[3], &flags); /* may set p_ws */
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014872 if (dir == 0)
14873 goto theend;
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014874
14875 /* Don't accept SP_END or SP_SUBPAT.
Bram Moolenaar231334e2005-07-25 20:46:57 +000014876 * Only one of the SP_NOMOVE or SP_SETPCMARK flags can be set.
14877 */
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014878 if ((flags & (SP_END | SP_SUBPAT)) != 0
14879 || ((flags & SP_NOMOVE) && (flags & SP_SETPCMARK)))
Bram Moolenaar231334e2005-07-25 20:46:57 +000014880 {
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014881 EMSG2(_(e_invarg2), get_tv_string(&argvars[3]));
Bram Moolenaar231334e2005-07-25 20:46:57 +000014882 goto theend;
14883 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000014884
Bram Moolenaar92de73d2008-01-22 10:59:38 +000014885 /* Using 'r' implies 'W', otherwise it doesn't work. */
14886 if (flags & SP_REPEAT)
14887 p_ws = FALSE;
14888
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014889 /* Optional fifth argument: skip expression */
Bram Moolenaar49cd9572005-01-03 21:06:01 +000014890 if (argvars[3].v_type == VAR_UNKNOWN
14891 || argvars[4].v_type == VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000014892 skip = (char_u *)"";
14893 else
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014894 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014895 skip = get_tv_string_buf_chk(&argvars[4], nbuf3);
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014896 if (argvars[5].v_type != VAR_UNKNOWN)
14897 {
14898 lnum_stop = get_tv_number_chk(&argvars[5], NULL);
14899 if (lnum_stop < 0)
14900 goto theend;
Bram Moolenaar76929292008-01-06 19:07:36 +000014901#ifdef FEAT_RELTIME
14902 if (argvars[6].v_type != VAR_UNKNOWN)
14903 {
14904 time_limit = get_tv_number_chk(&argvars[6], NULL);
14905 if (time_limit < 0)
14906 goto theend;
14907 }
14908#endif
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014909 }
14910 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014911 if (skip == NULL)
14912 goto theend; /* type error */
Bram Moolenaar071d4272004-06-13 20:20:40 +000014913
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014914 retval = do_searchpair(spat, mpat, epat, dir, skip, flags,
Bram Moolenaar76929292008-01-06 19:07:36 +000014915 match_pos, lnum_stop, time_limit);
Bram Moolenaar9fad3082005-07-19 22:22:13 +000014916
14917theend:
14918 p_ws = save_p_ws;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014919
14920 return retval;
14921}
14922
14923/*
14924 * "searchpair()" function
14925 */
14926 static void
14927f_searchpair(argvars, rettv)
14928 typval_T *argvars;
14929 typval_T *rettv;
14930{
14931 rettv->vval.v_number = searchpair_cmn(argvars, NULL);
14932}
14933
14934/*
14935 * "searchpairpos()" function
14936 */
14937 static void
14938f_searchpairpos(argvars, rettv)
14939 typval_T *argvars;
14940 typval_T *rettv;
14941{
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014942 pos_T match_pos;
14943 int lnum = 0;
14944 int col = 0;
14945
14946 rettv->vval.v_number = 0;
14947
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014948 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014949 return;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014950
14951 if (searchpair_cmn(argvars, &match_pos) > 0)
14952 {
14953 lnum = match_pos.lnum;
14954 col = match_pos.col;
14955 }
14956
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014957 list_append_number(rettv->vval.v_list, (varnumber_T)lnum);
14958 list_append_number(rettv->vval.v_list, (varnumber_T)col);
Bram Moolenaar9fad3082005-07-19 22:22:13 +000014959}
14960
14961/*
14962 * Search for a start/middle/end thing.
14963 * Used by searchpair(), see its documentation for the details.
14964 * Returns 0 or -1 for no match,
14965 */
14966 long
Bram Moolenaar76929292008-01-06 19:07:36 +000014967do_searchpair(spat, mpat, epat, dir, skip, flags, match_pos,
14968 lnum_stop, time_limit)
Bram Moolenaar9fad3082005-07-19 22:22:13 +000014969 char_u *spat; /* start pattern */
14970 char_u *mpat; /* middle pattern */
14971 char_u *epat; /* end pattern */
14972 int dir; /* BACKWARD or FORWARD */
14973 char_u *skip; /* skip expression */
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014974 int flags; /* SP_SETPCMARK and other SP_ values */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014975 pos_T *match_pos;
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014976 linenr_T lnum_stop; /* stop at this line if not zero */
Bram Moolenaar76929292008-01-06 19:07:36 +000014977 long time_limit; /* stop after this many msec */
Bram Moolenaar9fad3082005-07-19 22:22:13 +000014978{
14979 char_u *save_cpo;
14980 char_u *pat, *pat2 = NULL, *pat3 = NULL;
14981 long retval = 0;
14982 pos_T pos;
14983 pos_T firstpos;
14984 pos_T foundpos;
14985 pos_T save_cursor;
14986 pos_T save_pos;
14987 int n;
14988 int r;
14989 int nest = 1;
14990 int err;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000014991 int options = SEARCH_KEEP;
Bram Moolenaar76929292008-01-06 19:07:36 +000014992 proftime_T tm;
Bram Moolenaar9fad3082005-07-19 22:22:13 +000014993
14994 /* Make 'cpoptions' empty, the 'l' flag should not be used here. */
14995 save_cpo = p_cpo;
14996 p_cpo = (char_u *)"";
14997
Bram Moolenaar76929292008-01-06 19:07:36 +000014998#ifdef FEAT_RELTIME
14999 /* Set the time limit, if there is one. */
15000 profile_setlimit(time_limit, &tm);
15001#endif
15002
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015003 /* Make two search patterns: start/end (pat2, for in nested pairs) and
15004 * start/middle/end (pat3, for the top pair). */
15005 pat2 = alloc((unsigned)(STRLEN(spat) + STRLEN(epat) + 15));
15006 pat3 = alloc((unsigned)(STRLEN(spat) + STRLEN(mpat) + STRLEN(epat) + 23));
15007 if (pat2 == NULL || pat3 == NULL)
15008 goto theend;
15009 sprintf((char *)pat2, "\\(%s\\m\\)\\|\\(%s\\m\\)", spat, epat);
15010 if (*mpat == NUL)
15011 STRCPY(pat3, pat2);
15012 else
15013 sprintf((char *)pat3, "\\(%s\\m\\)\\|\\(%s\\m\\)\\|\\(%s\\m\\)",
15014 spat, epat, mpat);
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015015 if (flags & SP_START)
15016 options |= SEARCH_START;
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015017
Bram Moolenaar071d4272004-06-13 20:20:40 +000015018 save_cursor = curwin->w_cursor;
15019 pos = curwin->w_cursor;
Bram Moolenaar261bfea2006-03-01 22:12:31 +000015020 clearpos(&firstpos);
15021 clearpos(&foundpos);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015022 pat = pat3;
15023 for (;;)
15024 {
15025 n = searchit(curwin, curbuf, &pos, dir, pat, 1L,
Bram Moolenaar76929292008-01-06 19:07:36 +000015026 options, RE_SEARCH, lnum_stop, &tm);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015027 if (n == FAIL || (firstpos.lnum != 0 && equalpos(pos, firstpos)))
15028 /* didn't find it or found the first match again: FAIL */
15029 break;
15030
15031 if (firstpos.lnum == 0)
15032 firstpos = pos;
Bram Moolenaarc9a2d2e2005-04-24 22:09:56 +000015033 if (equalpos(pos, foundpos))
15034 {
15035 /* Found the same position again. Can happen with a pattern that
15036 * has "\zs" at the end and searching backwards. Advance one
15037 * character and try again. */
15038 if (dir == BACKWARD)
15039 decl(&pos);
15040 else
15041 incl(&pos);
15042 }
15043 foundpos = pos;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015044
Bram Moolenaar92de73d2008-01-22 10:59:38 +000015045 /* clear the start flag to avoid getting stuck here */
15046 options &= ~SEARCH_START;
15047
Bram Moolenaar071d4272004-06-13 20:20:40 +000015048 /* If the skip pattern matches, ignore this match. */
15049 if (*skip != NUL)
15050 {
15051 save_pos = curwin->w_cursor;
15052 curwin->w_cursor = pos;
15053 r = eval_to_bool(skip, &err, NULL, FALSE);
15054 curwin->w_cursor = save_pos;
15055 if (err)
15056 {
15057 /* Evaluating {skip} caused an error, break here. */
15058 curwin->w_cursor = save_cursor;
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015059 retval = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015060 break;
15061 }
15062 if (r)
15063 continue;
15064 }
15065
15066 if ((dir == BACKWARD && n == 3) || (dir == FORWARD && n == 2))
15067 {
15068 /* Found end when searching backwards or start when searching
15069 * forward: nested pair. */
15070 ++nest;
15071 pat = pat2; /* nested, don't search for middle */
15072 }
15073 else
15074 {
15075 /* Found end when searching forward or start when searching
15076 * backward: end of (nested) pair; or found middle in outer pair. */
15077 if (--nest == 1)
15078 pat = pat3; /* outer level, search for middle */
15079 }
15080
15081 if (nest == 0)
15082 {
15083 /* Found the match: return matchcount or line number. */
15084 if (flags & SP_RETCOUNT)
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015085 ++retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015086 else
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015087 retval = pos.lnum;
Bram Moolenaar231334e2005-07-25 20:46:57 +000015088 if (flags & SP_SETPCMARK)
15089 setpcmark();
Bram Moolenaar071d4272004-06-13 20:20:40 +000015090 curwin->w_cursor = pos;
15091 if (!(flags & SP_REPEAT))
15092 break;
15093 nest = 1; /* search for next unmatched */
15094 }
15095 }
15096
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015097 if (match_pos != NULL)
15098 {
15099 /* Store the match cursor position */
15100 match_pos->lnum = curwin->w_cursor.lnum;
15101 match_pos->col = curwin->w_cursor.col + 1;
15102 }
15103
Bram Moolenaar071d4272004-06-13 20:20:40 +000015104 /* If 'n' flag is used or search failed: restore cursor position. */
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015105 if ((flags & SP_NOMOVE) || retval == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000015106 curwin->w_cursor = save_cursor;
15107
15108theend:
15109 vim_free(pat2);
15110 vim_free(pat3);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015111 p_cpo = save_cpo;
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015112
15113 return retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015114}
15115
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015116/*
15117 * "searchpos()" function
15118 */
15119 static void
15120f_searchpos(argvars, rettv)
15121 typval_T *argvars;
15122 typval_T *rettv;
15123{
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015124 pos_T match_pos;
15125 int lnum = 0;
15126 int col = 0;
Bram Moolenaar362e1a32006-03-06 23:29:24 +000015127 int n;
15128 int flags = 0;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015129
15130 rettv->vval.v_number = 0;
15131
Bram Moolenaareddf53b2006-02-27 00:11:10 +000015132 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015133 return;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015134
Bram Moolenaar362e1a32006-03-06 23:29:24 +000015135 n = search_cmn(argvars, &match_pos, &flags);
15136 if (n > 0)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015137 {
15138 lnum = match_pos.lnum;
15139 col = match_pos.col;
15140 }
15141
Bram Moolenaareddf53b2006-02-27 00:11:10 +000015142 list_append_number(rettv->vval.v_list, (varnumber_T)lnum);
15143 list_append_number(rettv->vval.v_list, (varnumber_T)col);
Bram Moolenaar362e1a32006-03-06 23:29:24 +000015144 if (flags & SP_SUBPAT)
15145 list_append_number(rettv->vval.v_list, (varnumber_T)n);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015146}
15147
15148
Bram Moolenaar0d660222005-01-07 21:51:51 +000015149/*ARGSUSED*/
15150 static void
15151f_server2client(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000015152 typval_T *argvars;
15153 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015154{
Bram Moolenaar0d660222005-01-07 21:51:51 +000015155#ifdef FEAT_CLIENTSERVER
15156 char_u buf[NUMBUFLEN];
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015157 char_u *server = get_tv_string_chk(&argvars[0]);
15158 char_u *reply = get_tv_string_buf_chk(&argvars[1], buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015159
Bram Moolenaar0d660222005-01-07 21:51:51 +000015160 rettv->vval.v_number = -1;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015161 if (server == NULL || reply == NULL)
15162 return;
Bram Moolenaar0d660222005-01-07 21:51:51 +000015163 if (check_restricted() || check_secure())
15164 return;
15165# ifdef FEAT_X11
15166 if (check_connection() == FAIL)
15167 return;
15168# endif
15169
15170 if (serverSendReply(server, reply) < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000015171 {
Bram Moolenaar0d660222005-01-07 21:51:51 +000015172 EMSG(_("E258: Unable to send to client"));
15173 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015174 }
Bram Moolenaar0d660222005-01-07 21:51:51 +000015175 rettv->vval.v_number = 0;
15176#else
15177 rettv->vval.v_number = -1;
15178#endif
15179}
15180
15181/*ARGSUSED*/
15182 static void
15183f_serverlist(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000015184 typval_T *argvars;
15185 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000015186{
15187 char_u *r = NULL;
15188
15189#ifdef FEAT_CLIENTSERVER
15190# ifdef WIN32
15191 r = serverGetVimNames();
15192# else
15193 make_connection();
15194 if (X_DISPLAY != NULL)
15195 r = serverGetVimNames(X_DISPLAY);
15196# endif
15197#endif
15198 rettv->v_type = VAR_STRING;
15199 rettv->vval.v_string = r;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015200}
15201
15202/*
15203 * "setbufvar()" function
15204 */
15205/*ARGSUSED*/
15206 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000015207f_setbufvar(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000015208 typval_T *argvars;
15209 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015210{
15211 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015212 aco_save_T aco;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015213 char_u *varname, *bufvarname;
Bram Moolenaar33570922005-01-25 22:26:29 +000015214 typval_T *varp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015215 char_u nbuf[NUMBUFLEN];
15216
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015217 rettv->vval.v_number = 0;
15218
Bram Moolenaar071d4272004-06-13 20:20:40 +000015219 if (check_restricted() || check_secure())
15220 return;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015221 (void)get_tv_number(&argvars[0]); /* issue errmsg if type error */
15222 varname = get_tv_string_chk(&argvars[1]);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000015223 buf = get_buf_tv(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015224 varp = &argvars[2];
15225
15226 if (buf != NULL && varname != NULL && varp != NULL)
15227 {
15228 /* set curbuf to be our buf, temporarily */
Bram Moolenaar071d4272004-06-13 20:20:40 +000015229 aucmd_prepbuf(&aco, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015230
15231 if (*varname == '&')
15232 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015233 long numval;
15234 char_u *strval;
15235 int error = FALSE;
15236
Bram Moolenaar071d4272004-06-13 20:20:40 +000015237 ++varname;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015238 numval = get_tv_number_chk(varp, &error);
15239 strval = get_tv_string_buf_chk(varp, nbuf);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015240 if (!error && strval != NULL)
15241 set_option_value(varname, numval, strval, OPT_LOCAL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015242 }
15243 else
15244 {
15245 bufvarname = alloc((unsigned)STRLEN(varname) + 3);
15246 if (bufvarname != NULL)
15247 {
15248 STRCPY(bufvarname, "b:");
15249 STRCPY(bufvarname + 2, varname);
Bram Moolenaar1c2fda22005-01-02 11:43:19 +000015250 set_var(bufvarname, varp, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015251 vim_free(bufvarname);
15252 }
15253 }
15254
15255 /* reset notion of buffer */
Bram Moolenaar071d4272004-06-13 20:20:40 +000015256 aucmd_restbuf(&aco);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015257 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000015258}
15259
15260/*
15261 * "setcmdpos()" function
15262 */
15263 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000015264f_setcmdpos(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000015265 typval_T *argvars;
15266 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015267{
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015268 int pos = (int)get_tv_number(&argvars[0]) - 1;
15269
15270 if (pos >= 0)
15271 rettv->vval.v_number = set_cmdline_pos(pos);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015272}
15273
15274/*
15275 * "setline()" function
15276 */
15277 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000015278f_setline(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000015279 typval_T *argvars;
15280 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015281{
15282 linenr_T lnum;
Bram Moolenaar0e6830e2005-05-27 20:23:44 +000015283 char_u *line = NULL;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015284 list_T *l = NULL;
15285 listitem_T *li = NULL;
15286 long added = 0;
15287 linenr_T lcount = curbuf->b_ml.ml_line_count;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015288
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015289 lnum = get_tv_lnum(&argvars[0]);
15290 if (argvars[1].v_type == VAR_LIST)
Bram Moolenaar071d4272004-06-13 20:20:40 +000015291 {
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015292 l = argvars[1].vval.v_list;
15293 li = l->lv_first;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015294 }
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015295 else
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015296 line = get_tv_string_chk(&argvars[1]);
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015297
15298 rettv->vval.v_number = 0; /* OK */
15299 for (;;)
15300 {
15301 if (l != NULL)
15302 {
15303 /* list argument, get next string */
15304 if (li == NULL)
15305 break;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015306 line = get_tv_string_chk(&li->li_tv);
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015307 li = li->li_next;
15308 }
15309
15310 rettv->vval.v_number = 1; /* FAIL */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015311 if (line == NULL || lnum < 1 || lnum > curbuf->b_ml.ml_line_count + 1)
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015312 break;
15313 if (lnum <= curbuf->b_ml.ml_line_count)
15314 {
15315 /* existing line, replace it */
15316 if (u_savesub(lnum) == OK && ml_replace(lnum, line, TRUE) == OK)
15317 {
15318 changed_bytes(lnum, 0);
Bram Moolenaar87c19962007-04-26 08:54:21 +000015319 if (lnum == curwin->w_cursor.lnum)
15320 check_cursor_col();
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015321 rettv->vval.v_number = 0; /* OK */
15322 }
15323 }
15324 else if (added > 0 || u_save(lnum - 1, lnum) == OK)
15325 {
15326 /* lnum is one past the last line, append the line */
15327 ++added;
15328 if (ml_append(lnum - 1, line, (colnr_T)0, FALSE) == OK)
15329 rettv->vval.v_number = 0; /* OK */
15330 }
15331
15332 if (l == NULL) /* only one string argument */
15333 break;
15334 ++lnum;
15335 }
15336
15337 if (added > 0)
15338 appended_lines_mark(lcount, added);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015339}
15340
Bram Moolenaard9ff7d52008-03-20 12:23:49 +000015341static void set_qf_ll_list __ARGS((win_T *wp, typval_T *list_arg, typval_T *action_arg, typval_T *rettv));
15342
Bram Moolenaar071d4272004-06-13 20:20:40 +000015343/*
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015344 * Used by "setqflist()" and "setloclist()" functions
Bram Moolenaar2641f772005-03-25 21:58:17 +000015345 */
15346/*ARGSUSED*/
15347 static void
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015348set_qf_ll_list(wp, list_arg, action_arg, rettv)
15349 win_T *wp;
15350 typval_T *list_arg;
15351 typval_T *action_arg;
Bram Moolenaar2641f772005-03-25 21:58:17 +000015352 typval_T *rettv;
15353{
Bram Moolenaar0ac93792006-01-21 22:16:51 +000015354#ifdef FEAT_QUICKFIX
Bram Moolenaarf4630b62005-05-20 21:31:17 +000015355 char_u *act;
15356 int action = ' ';
Bram Moolenaar0ac93792006-01-21 22:16:51 +000015357#endif
Bram Moolenaarf4630b62005-05-20 21:31:17 +000015358
Bram Moolenaar2641f772005-03-25 21:58:17 +000015359 rettv->vval.v_number = -1;
15360
15361#ifdef FEAT_QUICKFIX
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015362 if (list_arg->v_type != VAR_LIST)
Bram Moolenaar2641f772005-03-25 21:58:17 +000015363 EMSG(_(e_listreq));
15364 else
15365 {
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015366 list_T *l = list_arg->vval.v_list;
Bram Moolenaar2641f772005-03-25 21:58:17 +000015367
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015368 if (action_arg->v_type == VAR_STRING)
Bram Moolenaarf4630b62005-05-20 21:31:17 +000015369 {
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015370 act = get_tv_string_chk(action_arg);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015371 if (act == NULL)
15372 return; /* type error; errmsg already given */
Bram Moolenaarf4630b62005-05-20 21:31:17 +000015373 if (*act == 'a' || *act == 'r')
15374 action = *act;
15375 }
15376
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015377 if (l != NULL && set_errorlist(wp, l, action) == OK)
Bram Moolenaar2641f772005-03-25 21:58:17 +000015378 rettv->vval.v_number = 0;
15379 }
15380#endif
15381}
15382
15383/*
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015384 * "setloclist()" function
15385 */
15386/*ARGSUSED*/
15387 static void
15388f_setloclist(argvars, rettv)
15389 typval_T *argvars;
15390 typval_T *rettv;
15391{
15392 win_T *win;
15393
15394 rettv->vval.v_number = -1;
15395
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015396 win = find_win_by_nr(&argvars[0], NULL);
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015397 if (win != NULL)
15398 set_qf_ll_list(win, &argvars[1], &argvars[2], rettv);
15399}
15400
15401/*
Bram Moolenaar6ee10162007-07-26 20:58:42 +000015402 * "setmatches()" function
15403 */
15404 static void
15405f_setmatches(argvars, rettv)
15406 typval_T *argvars;
15407 typval_T *rettv;
15408{
15409#ifdef FEAT_SEARCH_EXTRA
15410 list_T *l;
15411 listitem_T *li;
15412 dict_T *d;
15413
15414 rettv->vval.v_number = -1;
15415 if (argvars[0].v_type != VAR_LIST)
15416 {
15417 EMSG(_(e_listreq));
15418 return;
15419 }
15420 if ((l = argvars[0].vval.v_list) != NULL)
15421 {
15422
15423 /* To some extent make sure that we are dealing with a list from
15424 * "getmatches()". */
15425 li = l->lv_first;
15426 while (li != NULL)
15427 {
15428 if (li->li_tv.v_type != VAR_DICT
15429 || (d = li->li_tv.vval.v_dict) == NULL)
15430 {
15431 EMSG(_(e_invarg));
15432 return;
15433 }
15434 if (!(dict_find(d, (char_u *)"group", -1) != NULL
15435 && dict_find(d, (char_u *)"pattern", -1) != NULL
15436 && dict_find(d, (char_u *)"priority", -1) != NULL
15437 && dict_find(d, (char_u *)"id", -1) != NULL))
15438 {
15439 EMSG(_(e_invarg));
15440 return;
15441 }
15442 li = li->li_next;
15443 }
15444
15445 clear_matches(curwin);
15446 li = l->lv_first;
15447 while (li != NULL)
15448 {
15449 d = li->li_tv.vval.v_dict;
15450 match_add(curwin, get_dict_string(d, (char_u *)"group", FALSE),
15451 get_dict_string(d, (char_u *)"pattern", FALSE),
15452 (int)get_dict_number(d, (char_u *)"priority"),
15453 (int)get_dict_number(d, (char_u *)"id"));
15454 li = li->li_next;
15455 }
15456 rettv->vval.v_number = 0;
15457 }
15458#endif
15459}
15460
15461/*
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015462 * "setpos()" function
15463 */
15464/*ARGSUSED*/
15465 static void
15466f_setpos(argvars, rettv)
15467 typval_T *argvars;
15468 typval_T *rettv;
15469{
15470 pos_T pos;
15471 int fnum;
15472 char_u *name;
15473
Bram Moolenaar08250432008-02-13 11:42:46 +000015474 rettv->vval.v_number = -1;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015475 name = get_tv_string_chk(argvars);
15476 if (name != NULL)
15477 {
15478 if (list2fpos(&argvars[1], &pos, &fnum) == OK)
15479 {
15480 --pos.col;
Bram Moolenaar08250432008-02-13 11:42:46 +000015481 if (name[0] == '.' && name[1] == NUL)
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015482 {
Bram Moolenaar08250432008-02-13 11:42:46 +000015483 /* set cursor */
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015484 if (fnum == curbuf->b_fnum)
15485 {
15486 curwin->w_cursor = pos;
15487 check_cursor();
Bram Moolenaar08250432008-02-13 11:42:46 +000015488 rettv->vval.v_number = 0;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015489 }
15490 else
15491 EMSG(_(e_invarg));
15492 }
Bram Moolenaar08250432008-02-13 11:42:46 +000015493 else if (name[0] == '\'' && name[1] != NUL && name[2] == NUL)
15494 {
15495 /* set mark */
15496 if (setmark_pos(name[1], &pos, fnum) == OK)
15497 rettv->vval.v_number = 0;
15498 }
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015499 else
15500 EMSG(_(e_invarg));
15501 }
15502 }
15503}
15504
15505/*
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015506 * "setqflist()" function
15507 */
15508/*ARGSUSED*/
15509 static void
15510f_setqflist(argvars, rettv)
15511 typval_T *argvars;
15512 typval_T *rettv;
15513{
15514 set_qf_ll_list(NULL, &argvars[0], &argvars[1], rettv);
15515}
15516
15517/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000015518 * "setreg()" function
15519 */
15520 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000015521f_setreg(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000015522 typval_T *argvars;
15523 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015524{
15525 int regname;
15526 char_u *strregname;
15527 char_u *stropt;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015528 char_u *strval;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015529 int append;
15530 char_u yank_type;
15531 long block_len;
15532
15533 block_len = -1;
15534 yank_type = MAUTO;
15535 append = FALSE;
15536
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015537 strregname = get_tv_string_chk(argvars);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000015538 rettv->vval.v_number = 1; /* FAIL is default */
Bram Moolenaar071d4272004-06-13 20:20:40 +000015539
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015540 if (strregname == NULL)
15541 return; /* type error; errmsg already given */
15542 regname = *strregname;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015543 if (regname == 0 || regname == '@')
15544 regname = '"';
15545 else if (regname == '=')
15546 return;
15547
Bram Moolenaar49cd9572005-01-03 21:06:01 +000015548 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000015549 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015550 stropt = get_tv_string_chk(&argvars[2]);
15551 if (stropt == NULL)
15552 return; /* type error */
15553 for (; *stropt != NUL; ++stropt)
Bram Moolenaar071d4272004-06-13 20:20:40 +000015554 switch (*stropt)
15555 {
15556 case 'a': case 'A': /* append */
15557 append = TRUE;
15558 break;
15559 case 'v': case 'c': /* character-wise selection */
15560 yank_type = MCHAR;
15561 break;
15562 case 'V': case 'l': /* line-wise selection */
15563 yank_type = MLINE;
15564 break;
15565#ifdef FEAT_VISUAL
15566 case 'b': case Ctrl_V: /* block-wise selection */
15567 yank_type = MBLOCK;
15568 if (VIM_ISDIGIT(stropt[1]))
15569 {
15570 ++stropt;
15571 block_len = getdigits(&stropt) - 1;
15572 --stropt;
15573 }
15574 break;
15575#endif
15576 }
15577 }
15578
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015579 strval = get_tv_string_chk(&argvars[1]);
15580 if (strval != NULL)
15581 write_reg_contents_ex(regname, strval, -1,
Bram Moolenaar071d4272004-06-13 20:20:40 +000015582 append, yank_type, block_len);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000015583 rettv->vval.v_number = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015584}
15585
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015586/*
15587 * "settabwinvar()" function
15588 */
15589 static void
15590f_settabwinvar(argvars, rettv)
15591 typval_T *argvars;
15592 typval_T *rettv;
15593{
15594 setwinvar(argvars, rettv, 1);
15595}
Bram Moolenaar071d4272004-06-13 20:20:40 +000015596
15597/*
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015598 * "setwinvar()" function
Bram Moolenaar071d4272004-06-13 20:20:40 +000015599 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000015600 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000015601f_setwinvar(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000015602 typval_T *argvars;
15603 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015604{
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015605 setwinvar(argvars, rettv, 0);
15606}
15607
15608/*
15609 * "setwinvar()" and "settabwinvar()" functions
15610 */
15611 static void
15612setwinvar(argvars, rettv, off)
15613 typval_T *argvars;
15614 typval_T *rettv;
15615 int off;
15616{
Bram Moolenaar071d4272004-06-13 20:20:40 +000015617 win_T *win;
15618#ifdef FEAT_WINDOWS
15619 win_T *save_curwin;
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015620 tabpage_T *save_curtab;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015621#endif
15622 char_u *varname, *winvarname;
Bram Moolenaar33570922005-01-25 22:26:29 +000015623 typval_T *varp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015624 char_u nbuf[NUMBUFLEN];
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015625 tabpage_T *tp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015626
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015627 rettv->vval.v_number = 0;
15628
Bram Moolenaar071d4272004-06-13 20:20:40 +000015629 if (check_restricted() || check_secure())
15630 return;
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015631
15632#ifdef FEAT_WINDOWS
15633 if (off == 1)
15634 tp = find_tabpage((int)get_tv_number_chk(&argvars[0], NULL));
15635 else
15636 tp = curtab;
15637#endif
15638 win = find_win_by_nr(&argvars[off], tp);
15639 varname = get_tv_string_chk(&argvars[off + 1]);
15640 varp = &argvars[off + 2];
Bram Moolenaar071d4272004-06-13 20:20:40 +000015641
15642 if (win != NULL && varname != NULL && varp != NULL)
15643 {
15644#ifdef FEAT_WINDOWS
15645 /* set curwin to be our win, temporarily */
15646 save_curwin = curwin;
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015647 save_curtab = curtab;
15648 goto_tabpage_tp(tp);
15649 if (!win_valid(win))
15650 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015651 curwin = win;
15652 curbuf = curwin->w_buffer;
15653#endif
15654
15655 if (*varname == '&')
15656 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015657 long numval;
15658 char_u *strval;
15659 int error = FALSE;
15660
Bram Moolenaar071d4272004-06-13 20:20:40 +000015661 ++varname;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015662 numval = get_tv_number_chk(varp, &error);
15663 strval = get_tv_string_buf_chk(varp, nbuf);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015664 if (!error && strval != NULL)
15665 set_option_value(varname, numval, strval, OPT_LOCAL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015666 }
15667 else
15668 {
15669 winvarname = alloc((unsigned)STRLEN(varname) + 3);
15670 if (winvarname != NULL)
15671 {
15672 STRCPY(winvarname, "w:");
15673 STRCPY(winvarname + 2, varname);
Bram Moolenaar1c2fda22005-01-02 11:43:19 +000015674 set_var(winvarname, varp, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015675 vim_free(winvarname);
15676 }
15677 }
15678
15679#ifdef FEAT_WINDOWS
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015680 /* Restore current tabpage and window, if still valid (autocomands can
15681 * make them invalid). */
15682 if (valid_tabpage(save_curtab))
15683 goto_tabpage_tp(save_curtab);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015684 if (win_valid(save_curwin))
15685 {
15686 curwin = save_curwin;
15687 curbuf = curwin->w_buffer;
15688 }
15689#endif
15690 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000015691}
15692
15693/*
Bram Moolenaar60a495f2006-10-03 12:44:42 +000015694 * "shellescape({string})" function
15695 */
15696 static void
15697f_shellescape(argvars, rettv)
15698 typval_T *argvars;
15699 typval_T *rettv;
15700{
Bram Moolenaar05bb9532008-07-04 09:44:11 +000015701 rettv->vval.v_string = vim_strsave_shellescape(
15702 get_tv_string(&argvars[0]), non_zero_arg(&argvars[1]));
Bram Moolenaar60a495f2006-10-03 12:44:42 +000015703 rettv->v_type = VAR_STRING;
15704}
15705
15706/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000015707 * "simplify()" function
Bram Moolenaar071d4272004-06-13 20:20:40 +000015708 */
15709 static void
Bram Moolenaar0d660222005-01-07 21:51:51 +000015710f_simplify(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000015711 typval_T *argvars;
15712 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015713{
Bram Moolenaar0d660222005-01-07 21:51:51 +000015714 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015715
Bram Moolenaar0d660222005-01-07 21:51:51 +000015716 p = get_tv_string(&argvars[0]);
15717 rettv->vval.v_string = vim_strsave(p);
15718 simplify_filename(rettv->vval.v_string); /* simplify in place */
15719 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015720}
15721
Bram Moolenaar8c8de832008-06-24 22:58:06 +000015722#ifdef FEAT_FLOAT
15723/*
15724 * "sin()" function
15725 */
15726 static void
15727f_sin(argvars, rettv)
15728 typval_T *argvars;
15729 typval_T *rettv;
15730{
15731 float_T f;
15732
15733 rettv->v_type = VAR_FLOAT;
15734 if (get_float_arg(argvars, &f) == OK)
15735 rettv->vval.v_float = sin(f);
15736 else
15737 rettv->vval.v_float = 0.0;
15738}
15739#endif
15740
Bram Moolenaar0d660222005-01-07 21:51:51 +000015741static int
15742#ifdef __BORLANDC__
15743 _RTLENTRYF
15744#endif
15745 item_compare __ARGS((const void *s1, const void *s2));
15746static int
15747#ifdef __BORLANDC__
15748 _RTLENTRYF
15749#endif
15750 item_compare2 __ARGS((const void *s1, const void *s2));
15751
15752static int item_compare_ic;
15753static char_u *item_compare_func;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015754static int item_compare_func_err;
Bram Moolenaar0d660222005-01-07 21:51:51 +000015755#define ITEM_COMPARE_FAIL 999
15756
Bram Moolenaar071d4272004-06-13 20:20:40 +000015757/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000015758 * Compare functions for f_sort() below.
Bram Moolenaar071d4272004-06-13 20:20:40 +000015759 */
Bram Moolenaar0d660222005-01-07 21:51:51 +000015760 static int
15761#ifdef __BORLANDC__
15762_RTLENTRYF
15763#endif
15764item_compare(s1, s2)
15765 const void *s1;
15766 const void *s2;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015767{
Bram Moolenaar0d660222005-01-07 21:51:51 +000015768 char_u *p1, *p2;
15769 char_u *tofree1, *tofree2;
15770 int res;
15771 char_u numbuf1[NUMBUFLEN];
15772 char_u numbuf2[NUMBUFLEN];
Bram Moolenaar071d4272004-06-13 20:20:40 +000015773
Bram Moolenaarb71eaae2006-01-20 23:10:18 +000015774 p1 = tv2string(&(*(listitem_T **)s1)->li_tv, &tofree1, numbuf1, 0);
15775 p2 = tv2string(&(*(listitem_T **)s2)->li_tv, &tofree2, numbuf2, 0);
Bram Moolenaar92c5aba2007-08-14 20:29:31 +000015776 if (p1 == NULL)
15777 p1 = (char_u *)"";
15778 if (p2 == NULL)
15779 p2 = (char_u *)"";
Bram Moolenaar0d660222005-01-07 21:51:51 +000015780 if (item_compare_ic)
15781 res = STRICMP(p1, p2);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015782 else
Bram Moolenaar0d660222005-01-07 21:51:51 +000015783 res = STRCMP(p1, p2);
15784 vim_free(tofree1);
15785 vim_free(tofree2);
15786 return res;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015787}
15788
15789 static int
Bram Moolenaar0d660222005-01-07 21:51:51 +000015790#ifdef __BORLANDC__
15791_RTLENTRYF
Bram Moolenaar071d4272004-06-13 20:20:40 +000015792#endif
Bram Moolenaar0d660222005-01-07 21:51:51 +000015793item_compare2(s1, s2)
15794 const void *s1;
15795 const void *s2;
15796{
15797 int res;
Bram Moolenaar33570922005-01-25 22:26:29 +000015798 typval_T rettv;
Bram Moolenaareb3593b2006-04-22 22:33:57 +000015799 typval_T argv[3];
Bram Moolenaar0d660222005-01-07 21:51:51 +000015800 int dummy;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015801
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015802 /* shortcut after failure in previous call; compare all items equal */
15803 if (item_compare_func_err)
15804 return 0;
15805
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000015806 /* copy the values. This is needed to be able to set v_lock to VAR_FIXED
15807 * in the copy without changing the original list items. */
Bram Moolenaar33570922005-01-25 22:26:29 +000015808 copy_tv(&(*(listitem_T **)s1)->li_tv, &argv[0]);
15809 copy_tv(&(*(listitem_T **)s2)->li_tv, &argv[1]);
Bram Moolenaar0d660222005-01-07 21:51:51 +000015810
15811 rettv.v_type = VAR_UNKNOWN; /* clear_tv() uses this */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000015812 res = call_func(item_compare_func, (int)STRLEN(item_compare_func),
Bram Moolenaare9a41262005-01-15 22:18:47 +000015813 &rettv, 2, argv, 0L, 0L, &dummy, TRUE, NULL);
Bram Moolenaar0d660222005-01-07 21:51:51 +000015814 clear_tv(&argv[0]);
15815 clear_tv(&argv[1]);
15816
15817 if (res == FAIL)
15818 res = ITEM_COMPARE_FAIL;
15819 else
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015820 /* return value has wrong type */
15821 res = get_tv_number_chk(&rettv, &item_compare_func_err);
15822 if (item_compare_func_err)
15823 res = ITEM_COMPARE_FAIL;
Bram Moolenaar0d660222005-01-07 21:51:51 +000015824 clear_tv(&rettv);
15825 return res;
15826}
15827
15828/*
15829 * "sort({list})" function
15830 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000015831 static void
Bram Moolenaar0d660222005-01-07 21:51:51 +000015832f_sort(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000015833 typval_T *argvars;
15834 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015835{
Bram Moolenaar33570922005-01-25 22:26:29 +000015836 list_T *l;
15837 listitem_T *li;
15838 listitem_T **ptrs;
Bram Moolenaar0d660222005-01-07 21:51:51 +000015839 long len;
15840 long i;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015841
Bram Moolenaar0d660222005-01-07 21:51:51 +000015842 rettv->vval.v_number = 0;
15843 if (argvars[0].v_type != VAR_LIST)
15844 EMSG2(_(e_listarg), "sort()");
Bram Moolenaar071d4272004-06-13 20:20:40 +000015845 else
15846 {
Bram Moolenaar0d660222005-01-07 21:51:51 +000015847 l = argvars[0].vval.v_list;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000015848 if (l == NULL || tv_check_lock(l->lv_lock, (char_u *)"sort()"))
Bram Moolenaar0d660222005-01-07 21:51:51 +000015849 return;
15850 rettv->vval.v_list = l;
15851 rettv->v_type = VAR_LIST;
15852 ++l->lv_refcount;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015853
Bram Moolenaar0d660222005-01-07 21:51:51 +000015854 len = list_len(l);
15855 if (len <= 1)
15856 return; /* short list sorts pretty quickly */
Bram Moolenaar071d4272004-06-13 20:20:40 +000015857
Bram Moolenaar0d660222005-01-07 21:51:51 +000015858 item_compare_ic = FALSE;
15859 item_compare_func = NULL;
15860 if (argvars[1].v_type != VAR_UNKNOWN)
15861 {
15862 if (argvars[1].v_type == VAR_FUNC)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015863 item_compare_func = argvars[1].vval.v_string;
Bram Moolenaar0d660222005-01-07 21:51:51 +000015864 else
15865 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015866 int error = FALSE;
15867
15868 i = get_tv_number_chk(&argvars[1], &error);
15869 if (error)
15870 return; /* type error; errmsg already given */
Bram Moolenaar0d660222005-01-07 21:51:51 +000015871 if (i == 1)
15872 item_compare_ic = TRUE;
15873 else
15874 item_compare_func = get_tv_string(&argvars[1]);
15875 }
15876 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000015877
Bram Moolenaar0d660222005-01-07 21:51:51 +000015878 /* Make an array with each entry pointing to an item in the List. */
Bram Moolenaar33570922005-01-25 22:26:29 +000015879 ptrs = (listitem_T **)alloc((int)(len * sizeof(listitem_T *)));
Bram Moolenaar0d660222005-01-07 21:51:51 +000015880 if (ptrs == NULL)
15881 return;
15882 i = 0;
15883 for (li = l->lv_first; li != NULL; li = li->li_next)
15884 ptrs[i++] = li;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015885
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015886 item_compare_func_err = FALSE;
Bram Moolenaar0d660222005-01-07 21:51:51 +000015887 /* test the compare function */
15888 if (item_compare_func != NULL
15889 && item_compare2((void *)&ptrs[0], (void *)&ptrs[1])
15890 == ITEM_COMPARE_FAIL)
Bram Moolenaare49b69a2005-01-08 16:11:57 +000015891 EMSG(_("E702: Sort compare function failed"));
Bram Moolenaar071d4272004-06-13 20:20:40 +000015892 else
Bram Moolenaar0d660222005-01-07 21:51:51 +000015893 {
15894 /* Sort the array with item pointers. */
Bram Moolenaar33570922005-01-25 22:26:29 +000015895 qsort((void *)ptrs, (size_t)len, sizeof(listitem_T *),
Bram Moolenaar0d660222005-01-07 21:51:51 +000015896 item_compare_func == NULL ? item_compare : item_compare2);
15897
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015898 if (!item_compare_func_err)
15899 {
15900 /* Clear the List and append the items in the sorted order. */
Bram Moolenaar52514562008-04-01 11:12:09 +000015901 l->lv_first = l->lv_last = l->lv_idx_item = NULL;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015902 l->lv_len = 0;
15903 for (i = 0; i < len; ++i)
15904 list_append(l, ptrs[i]);
15905 }
Bram Moolenaar0d660222005-01-07 21:51:51 +000015906 }
15907
15908 vim_free(ptrs);
15909 }
15910}
15911
Bram Moolenaard857f0e2005-06-21 22:37:39 +000015912/*
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +000015913 * "soundfold({word})" function
15914 */
15915 static void
15916f_soundfold(argvars, rettv)
15917 typval_T *argvars;
15918 typval_T *rettv;
15919{
15920 char_u *s;
15921
15922 rettv->v_type = VAR_STRING;
15923 s = get_tv_string(&argvars[0]);
Bram Moolenaar3c56a962006-03-12 22:19:04 +000015924#ifdef FEAT_SPELL
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +000015925 rettv->vval.v_string = eval_soundfold(s);
15926#else
15927 rettv->vval.v_string = vim_strsave(s);
15928#endif
15929}
15930
15931/*
Bram Moolenaard857f0e2005-06-21 22:37:39 +000015932 * "spellbadword()" function
15933 */
15934/* ARGSUSED */
15935 static void
15936f_spellbadword(argvars, rettv)
15937 typval_T *argvars;
15938 typval_T *rettv;
15939{
Bram Moolenaar4463f292005-09-25 22:20:24 +000015940 char_u *word = (char_u *)"";
Bram Moolenaar482aaeb2005-09-29 18:26:07 +000015941 hlf_T attr = HLF_COUNT;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015942 int len = 0;
Bram Moolenaard857f0e2005-06-21 22:37:39 +000015943
Bram Moolenaareddf53b2006-02-27 00:11:10 +000015944 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaar4463f292005-09-25 22:20:24 +000015945 return;
Bram Moolenaard857f0e2005-06-21 22:37:39 +000015946
Bram Moolenaar3c56a962006-03-12 22:19:04 +000015947#ifdef FEAT_SPELL
Bram Moolenaar4463f292005-09-25 22:20:24 +000015948 if (argvars[0].v_type == VAR_UNKNOWN)
15949 {
15950 /* Find the start and length of the badly spelled word. */
15951 len = spell_move_to(curwin, FORWARD, TRUE, TRUE, &attr);
15952 if (len != 0)
15953 word = ml_get_cursor();
15954 }
15955 else if (curwin->w_p_spell && *curbuf->b_p_spl != NUL)
15956 {
15957 char_u *str = get_tv_string_chk(&argvars[0]);
15958 int capcol = -1;
15959
15960 if (str != NULL)
15961 {
15962 /* Check the argument for spelling. */
15963 while (*str != NUL)
15964 {
Bram Moolenaar4770d092006-01-12 23:22:24 +000015965 len = spell_check(curwin, str, &attr, &capcol, FALSE);
Bram Moolenaar482aaeb2005-09-29 18:26:07 +000015966 if (attr != HLF_COUNT)
Bram Moolenaar4463f292005-09-25 22:20:24 +000015967 {
15968 word = str;
15969 break;
15970 }
15971 str += len;
15972 }
15973 }
15974 }
Bram Moolenaard857f0e2005-06-21 22:37:39 +000015975#endif
Bram Moolenaar4463f292005-09-25 22:20:24 +000015976
Bram Moolenaareddf53b2006-02-27 00:11:10 +000015977 list_append_string(rettv->vval.v_list, word, len);
15978 list_append_string(rettv->vval.v_list, (char_u *)(
Bram Moolenaar482aaeb2005-09-29 18:26:07 +000015979 attr == HLF_SPB ? "bad" :
15980 attr == HLF_SPR ? "rare" :
15981 attr == HLF_SPL ? "local" :
15982 attr == HLF_SPC ? "caps" :
15983 ""), -1);
Bram Moolenaard857f0e2005-06-21 22:37:39 +000015984}
15985
15986/*
15987 * "spellsuggest()" function
15988 */
Bram Moolenaar3c56a962006-03-12 22:19:04 +000015989/*ARGSUSED*/
Bram Moolenaard857f0e2005-06-21 22:37:39 +000015990 static void
15991f_spellsuggest(argvars, rettv)
15992 typval_T *argvars;
15993 typval_T *rettv;
15994{
Bram Moolenaar3c56a962006-03-12 22:19:04 +000015995#ifdef FEAT_SPELL
Bram Moolenaard857f0e2005-06-21 22:37:39 +000015996 char_u *str;
Bram Moolenaar69e0ff92005-09-30 21:23:56 +000015997 int typeerr = FALSE;
Bram Moolenaard857f0e2005-06-21 22:37:39 +000015998 int maxcount;
15999 garray_T ga;
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016000 int i;
Bram Moolenaar69e0ff92005-09-30 21:23:56 +000016001 listitem_T *li;
16002 int need_capital = FALSE;
16003#endif
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016004
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016005 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016006 return;
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016007
Bram Moolenaar3c56a962006-03-12 22:19:04 +000016008#ifdef FEAT_SPELL
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016009 if (curwin->w_p_spell && *curbuf->b_p_spl != NUL)
16010 {
16011 str = get_tv_string(&argvars[0]);
16012 if (argvars[1].v_type != VAR_UNKNOWN)
16013 {
Bram Moolenaar69e0ff92005-09-30 21:23:56 +000016014 maxcount = get_tv_number_chk(&argvars[1], &typeerr);
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016015 if (maxcount <= 0)
16016 return;
Bram Moolenaar69e0ff92005-09-30 21:23:56 +000016017 if (argvars[2].v_type != VAR_UNKNOWN)
16018 {
16019 need_capital = get_tv_number_chk(&argvars[2], &typeerr);
16020 if (typeerr)
16021 return;
16022 }
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016023 }
16024 else
16025 maxcount = 25;
16026
Bram Moolenaar4770d092006-01-12 23:22:24 +000016027 spell_suggest_list(&ga, str, maxcount, need_capital, FALSE);
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016028
16029 for (i = 0; i < ga.ga_len; ++i)
16030 {
16031 str = ((char_u **)ga.ga_data)[i];
16032
16033 li = listitem_alloc();
16034 if (li == NULL)
16035 vim_free(str);
16036 else
16037 {
16038 li->li_tv.v_type = VAR_STRING;
16039 li->li_tv.v_lock = 0;
16040 li->li_tv.vval.v_string = str;
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016041 list_append(rettv->vval.v_list, li);
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016042 }
16043 }
16044 ga_clear(&ga);
16045 }
16046#endif
16047}
16048
Bram Moolenaar0d660222005-01-07 21:51:51 +000016049 static void
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000016050f_split(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016051 typval_T *argvars;
16052 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000016053{
16054 char_u *str;
16055 char_u *end;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000016056 char_u *pat = NULL;
Bram Moolenaar0d660222005-01-07 21:51:51 +000016057 regmatch_T regmatch;
16058 char_u patbuf[NUMBUFLEN];
16059 char_u *save_cpo;
16060 int match;
Bram Moolenaar0d660222005-01-07 21:51:51 +000016061 colnr_T col = 0;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000016062 int keepempty = FALSE;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016063 int typeerr = FALSE;
Bram Moolenaar0d660222005-01-07 21:51:51 +000016064
16065 /* Make 'cpoptions' empty, the 'l' flag should not be used here. */
16066 save_cpo = p_cpo;
16067 p_cpo = (char_u *)"";
16068
16069 str = get_tv_string(&argvars[0]);
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000016070 if (argvars[1].v_type != VAR_UNKNOWN)
16071 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016072 pat = get_tv_string_buf_chk(&argvars[1], patbuf);
16073 if (pat == NULL)
16074 typeerr = TRUE;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000016075 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016076 keepempty = get_tv_number_chk(&argvars[2], &typeerr);
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000016077 }
16078 if (pat == NULL || *pat == NUL)
16079 pat = (char_u *)"[\\x01- ]\\+";
Bram Moolenaar0d660222005-01-07 21:51:51 +000016080
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016081 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000016082 return;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016083 if (typeerr)
16084 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016085
Bram Moolenaar0d660222005-01-07 21:51:51 +000016086 regmatch.regprog = vim_regcomp(pat, RE_MAGIC + RE_STRING);
16087 if (regmatch.regprog != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000016088 {
Bram Moolenaar0d660222005-01-07 21:51:51 +000016089 regmatch.rm_ic = FALSE;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000016090 while (*str != NUL || keepempty)
Bram Moolenaar0d660222005-01-07 21:51:51 +000016091 {
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000016092 if (*str == NUL)
16093 match = FALSE; /* empty item at the end */
16094 else
16095 match = vim_regexec_nl(&regmatch, str, col);
Bram Moolenaar0d660222005-01-07 21:51:51 +000016096 if (match)
16097 end = regmatch.startp[0];
16098 else
16099 end = str + STRLEN(str);
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016100 if (keepempty || end > str || (rettv->vval.v_list->lv_len > 0
16101 && *str != NUL && match && end < regmatch.endp[0]))
Bram Moolenaar0d660222005-01-07 21:51:51 +000016102 {
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016103 if (list_append_string(rettv->vval.v_list, str,
16104 (int)(end - str)) == FAIL)
Bram Moolenaar0d660222005-01-07 21:51:51 +000016105 break;
Bram Moolenaar0d660222005-01-07 21:51:51 +000016106 }
16107 if (!match)
16108 break;
16109 /* Advance to just after the match. */
16110 if (regmatch.endp[0] > str)
16111 col = 0;
16112 else
16113 {
16114 /* Don't get stuck at the same match. */
16115#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000016116 col = (*mb_ptr2len)(regmatch.endp[0]);
Bram Moolenaar0d660222005-01-07 21:51:51 +000016117#else
16118 col = 1;
16119#endif
16120 }
16121 str = regmatch.endp[0];
16122 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000016123
Bram Moolenaar0d660222005-01-07 21:51:51 +000016124 vim_free(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016125 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000016126
Bram Moolenaar0d660222005-01-07 21:51:51 +000016127 p_cpo = save_cpo;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016128}
16129
Bram Moolenaar8c8de832008-06-24 22:58:06 +000016130#ifdef FEAT_FLOAT
16131/*
16132 * "sqrt()" function
16133 */
16134 static void
16135f_sqrt(argvars, rettv)
16136 typval_T *argvars;
16137 typval_T *rettv;
16138{
16139 float_T f;
16140
16141 rettv->v_type = VAR_FLOAT;
16142 if (get_float_arg(argvars, &f) == OK)
16143 rettv->vval.v_float = sqrt(f);
16144 else
16145 rettv->vval.v_float = 0.0;
16146}
16147
16148/*
16149 * "str2float()" function
16150 */
16151 static void
16152f_str2float(argvars, rettv)
16153 typval_T *argvars;
16154 typval_T *rettv;
16155{
16156 char_u *p = skipwhite(get_tv_string(&argvars[0]));
16157
16158 if (*p == '+')
16159 p = skipwhite(p + 1);
16160 (void)string2float(p, &rettv->vval.v_float);
16161 rettv->v_type = VAR_FLOAT;
16162}
16163#endif
16164
Bram Moolenaar2c932302006-03-18 21:42:09 +000016165/*
16166 * "str2nr()" function
16167 */
16168 static void
16169f_str2nr(argvars, rettv)
16170 typval_T *argvars;
16171 typval_T *rettv;
16172{
16173 int base = 10;
16174 char_u *p;
16175 long n;
16176
16177 if (argvars[1].v_type != VAR_UNKNOWN)
16178 {
16179 base = get_tv_number(&argvars[1]);
16180 if (base != 8 && base != 10 && base != 16)
16181 {
16182 EMSG(_(e_invarg));
16183 return;
16184 }
16185 }
16186
16187 p = skipwhite(get_tv_string(&argvars[0]));
Bram Moolenaar8c8de832008-06-24 22:58:06 +000016188 if (*p == '+')
16189 p = skipwhite(p + 1);
Bram Moolenaar2c932302006-03-18 21:42:09 +000016190 vim_str2nr(p, NULL, NULL, base == 8 ? 2 : 0, base == 16 ? 2 : 0, &n, NULL);
16191 rettv->vval.v_number = n;
16192}
16193
Bram Moolenaar071d4272004-06-13 20:20:40 +000016194#ifdef HAVE_STRFTIME
16195/*
16196 * "strftime({format}[, {time}])" function
16197 */
16198 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016199f_strftime(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016200 typval_T *argvars;
16201 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016202{
16203 char_u result_buf[256];
16204 struct tm *curtime;
16205 time_t seconds;
16206 char_u *p;
16207
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016208 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016209
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016210 p = get_tv_string(&argvars[0]);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000016211 if (argvars[1].v_type == VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000016212 seconds = time(NULL);
16213 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016214 seconds = (time_t)get_tv_number(&argvars[1]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016215 curtime = localtime(&seconds);
16216 /* MSVC returns NULL for an invalid value of seconds. */
16217 if (curtime == NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016218 rettv->vval.v_string = vim_strsave((char_u *)_("(Invalid)"));
Bram Moolenaar071d4272004-06-13 20:20:40 +000016219 else
16220 {
16221# ifdef FEAT_MBYTE
16222 vimconv_T conv;
16223 char_u *enc;
16224
16225 conv.vc_type = CONV_NONE;
16226 enc = enc_locale();
16227 convert_setup(&conv, p_enc, enc);
16228 if (conv.vc_type != CONV_NONE)
16229 p = string_convert(&conv, p, NULL);
16230# endif
16231 if (p != NULL)
16232 (void)strftime((char *)result_buf, sizeof(result_buf),
16233 (char *)p, curtime);
16234 else
16235 result_buf[0] = NUL;
16236
16237# ifdef FEAT_MBYTE
16238 if (conv.vc_type != CONV_NONE)
16239 vim_free(p);
16240 convert_setup(&conv, enc, p_enc);
16241 if (conv.vc_type != CONV_NONE)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016242 rettv->vval.v_string = string_convert(&conv, result_buf, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016243 else
16244# endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016245 rettv->vval.v_string = vim_strsave(result_buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016246
16247# ifdef FEAT_MBYTE
16248 /* Release conversion descriptors */
16249 convert_setup(&conv, NULL, NULL);
16250 vim_free(enc);
16251# endif
16252 }
16253}
16254#endif
16255
16256/*
16257 * "stridx()" function
16258 */
16259 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016260f_stridx(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016261 typval_T *argvars;
16262 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016263{
16264 char_u buf[NUMBUFLEN];
16265 char_u *needle;
16266 char_u *haystack;
Bram Moolenaar33570922005-01-25 22:26:29 +000016267 char_u *save_haystack;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016268 char_u *pos;
Bram Moolenaar33570922005-01-25 22:26:29 +000016269 int start_idx;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016270
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016271 needle = get_tv_string_chk(&argvars[1]);
16272 save_haystack = haystack = get_tv_string_buf_chk(&argvars[0], buf);
Bram Moolenaar33570922005-01-25 22:26:29 +000016273 rettv->vval.v_number = -1;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016274 if (needle == NULL || haystack == NULL)
16275 return; /* type error; errmsg already given */
Bram Moolenaar071d4272004-06-13 20:20:40 +000016276
Bram Moolenaar33570922005-01-25 22:26:29 +000016277 if (argvars[2].v_type != VAR_UNKNOWN)
16278 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016279 int error = FALSE;
16280
16281 start_idx = get_tv_number_chk(&argvars[2], &error);
16282 if (error || start_idx >= (int)STRLEN(haystack))
Bram Moolenaar33570922005-01-25 22:26:29 +000016283 return;
Bram Moolenaar532c7802005-01-27 14:44:31 +000016284 if (start_idx >= 0)
16285 haystack += start_idx;
Bram Moolenaar33570922005-01-25 22:26:29 +000016286 }
16287
16288 pos = (char_u *)strstr((char *)haystack, (char *)needle);
16289 if (pos != NULL)
16290 rettv->vval.v_number = (varnumber_T)(pos - save_haystack);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016291}
16292
16293/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +000016294 * "string()" function
16295 */
16296 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016297f_string(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016298 typval_T *argvars;
16299 typval_T *rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000016300{
16301 char_u *tofree;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000016302 char_u numbuf[NUMBUFLEN];
Bram Moolenaar49cd9572005-01-03 21:06:01 +000016303
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016304 rettv->v_type = VAR_STRING;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +000016305 rettv->vval.v_string = tv2string(&argvars[0], &tofree, numbuf, 0);
Bram Moolenaar8c8de832008-06-24 22:58:06 +000016306 /* Make a copy if we have a value but it's not in allocated memory. */
Bram Moolenaar92c5aba2007-08-14 20:29:31 +000016307 if (rettv->vval.v_string != NULL && tofree == NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016308 rettv->vval.v_string = vim_strsave(rettv->vval.v_string);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016309}
16310
16311/*
16312 * "strlen()" function
16313 */
16314 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016315f_strlen(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016316 typval_T *argvars;
16317 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016318{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016319 rettv->vval.v_number = (varnumber_T)(STRLEN(
16320 get_tv_string(&argvars[0])));
Bram Moolenaar071d4272004-06-13 20:20:40 +000016321}
16322
16323/*
16324 * "strpart()" function
16325 */
16326 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016327f_strpart(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016328 typval_T *argvars;
16329 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016330{
16331 char_u *p;
16332 int n;
16333 int len;
16334 int slen;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016335 int error = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016336
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016337 p = get_tv_string(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016338 slen = (int)STRLEN(p);
16339
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016340 n = get_tv_number_chk(&argvars[1], &error);
16341 if (error)
16342 len = 0;
16343 else if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016344 len = get_tv_number(&argvars[2]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016345 else
16346 len = slen - n; /* default len: all bytes that are available. */
16347
16348 /*
16349 * Only return the overlap between the specified part and the actual
16350 * string.
16351 */
16352 if (n < 0)
16353 {
16354 len += n;
16355 n = 0;
16356 }
16357 else if (n > slen)
16358 n = slen;
16359 if (len < 0)
16360 len = 0;
16361 else if (n + len > slen)
16362 len = slen - n;
16363
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016364 rettv->v_type = VAR_STRING;
16365 rettv->vval.v_string = vim_strnsave(p + n, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016366}
16367
16368/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000016369 * "strridx()" function
16370 */
16371 static void
16372f_strridx(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016373 typval_T *argvars;
16374 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000016375{
16376 char_u buf[NUMBUFLEN];
16377 char_u *needle;
16378 char_u *haystack;
16379 char_u *rest;
16380 char_u *lastmatch = NULL;
Bram Moolenaar532c7802005-01-27 14:44:31 +000016381 int haystack_len, end_idx;
Bram Moolenaar0d660222005-01-07 21:51:51 +000016382
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016383 needle = get_tv_string_chk(&argvars[1]);
16384 haystack = get_tv_string_buf_chk(&argvars[0], buf);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016385
16386 rettv->vval.v_number = -1;
16387 if (needle == NULL || haystack == NULL)
16388 return; /* type error; errmsg already given */
Bram Moolenaareb3593b2006-04-22 22:33:57 +000016389
16390 haystack_len = (int)STRLEN(haystack);
Bram Moolenaar05159a02005-02-26 23:04:13 +000016391 if (argvars[2].v_type != VAR_UNKNOWN)
16392 {
16393 /* Third argument: upper limit for index */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016394 end_idx = get_tv_number_chk(&argvars[2], NULL);
Bram Moolenaar05159a02005-02-26 23:04:13 +000016395 if (end_idx < 0)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016396 return; /* can never find a match */
Bram Moolenaar05159a02005-02-26 23:04:13 +000016397 }
16398 else
16399 end_idx = haystack_len;
16400
Bram Moolenaar0d660222005-01-07 21:51:51 +000016401 if (*needle == NUL)
Bram Moolenaar05159a02005-02-26 23:04:13 +000016402 {
Bram Moolenaar0d660222005-01-07 21:51:51 +000016403 /* Empty string matches past the end. */
Bram Moolenaar05159a02005-02-26 23:04:13 +000016404 lastmatch = haystack + end_idx;
16405 }
Bram Moolenaar0d660222005-01-07 21:51:51 +000016406 else
Bram Moolenaar532c7802005-01-27 14:44:31 +000016407 {
Bram Moolenaar0d660222005-01-07 21:51:51 +000016408 for (rest = haystack; *rest != '\0'; ++rest)
16409 {
16410 rest = (char_u *)strstr((char *)rest, (char *)needle);
Bram Moolenaar532c7802005-01-27 14:44:31 +000016411 if (rest == NULL || rest > haystack + end_idx)
Bram Moolenaar0d660222005-01-07 21:51:51 +000016412 break;
16413 lastmatch = rest;
16414 }
Bram Moolenaar532c7802005-01-27 14:44:31 +000016415 }
Bram Moolenaar0d660222005-01-07 21:51:51 +000016416
16417 if (lastmatch == NULL)
16418 rettv->vval.v_number = -1;
16419 else
16420 rettv->vval.v_number = (varnumber_T)(lastmatch - haystack);
16421}
16422
16423/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000016424 * "strtrans()" function
16425 */
16426 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016427f_strtrans(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016428 typval_T *argvars;
16429 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016430{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016431 rettv->v_type = VAR_STRING;
16432 rettv->vval.v_string = transstr(get_tv_string(&argvars[0]));
Bram Moolenaar071d4272004-06-13 20:20:40 +000016433}
16434
16435/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000016436 * "submatch()" function
16437 */
16438 static void
16439f_submatch(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016440 typval_T *argvars;
16441 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000016442{
16443 rettv->v_type = VAR_STRING;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016444 rettv->vval.v_string =
16445 reg_submatch((int)get_tv_number_chk(&argvars[0], NULL));
Bram Moolenaar0d660222005-01-07 21:51:51 +000016446}
16447
16448/*
16449 * "substitute()" function
16450 */
16451 static void
16452f_substitute(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016453 typval_T *argvars;
16454 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000016455{
16456 char_u patbuf[NUMBUFLEN];
16457 char_u subbuf[NUMBUFLEN];
16458 char_u flagsbuf[NUMBUFLEN];
16459
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016460 char_u *str = get_tv_string_chk(&argvars[0]);
16461 char_u *pat = get_tv_string_buf_chk(&argvars[1], patbuf);
16462 char_u *sub = get_tv_string_buf_chk(&argvars[2], subbuf);
16463 char_u *flg = get_tv_string_buf_chk(&argvars[3], flagsbuf);
16464
Bram Moolenaar0d660222005-01-07 21:51:51 +000016465 rettv->v_type = VAR_STRING;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016466 if (str == NULL || pat == NULL || sub == NULL || flg == NULL)
16467 rettv->vval.v_string = NULL;
16468 else
16469 rettv->vval.v_string = do_string_sub(str, pat, sub, flg);
Bram Moolenaar0d660222005-01-07 21:51:51 +000016470}
16471
16472/*
Bram Moolenaar54ff3412005-04-20 19:48:33 +000016473 * "synID(lnum, col, trans)" function
Bram Moolenaar071d4272004-06-13 20:20:40 +000016474 */
16475/*ARGSUSED*/
16476 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016477f_synID(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016478 typval_T *argvars;
16479 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016480{
16481 int id = 0;
16482#ifdef FEAT_SYN_HL
Bram Moolenaar54ff3412005-04-20 19:48:33 +000016483 long lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016484 long col;
16485 int trans;
Bram Moolenaar92124a32005-06-17 22:03:40 +000016486 int transerr = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016487
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016488 lnum = get_tv_lnum(argvars); /* -1 on type error */
16489 col = get_tv_number(&argvars[1]) - 1; /* -1 on type error */
16490 trans = get_tv_number_chk(&argvars[2], &transerr);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016491
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016492 if (!transerr && lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count
Bram Moolenaar54ff3412005-04-20 19:48:33 +000016493 && col >= 0 && col < (long)STRLEN(ml_get(lnum)))
Bram Moolenaar56cefaf2008-01-12 15:47:10 +000016494 id = syn_get_id(curwin, lnum, (colnr_T)col, trans, NULL, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016495#endif
16496
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016497 rettv->vval.v_number = id;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016498}
16499
16500/*
16501 * "synIDattr(id, what [, mode])" function
16502 */
16503/*ARGSUSED*/
16504 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016505f_synIDattr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016506 typval_T *argvars;
16507 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016508{
16509 char_u *p = NULL;
16510#ifdef FEAT_SYN_HL
16511 int id;
16512 char_u *what;
16513 char_u *mode;
16514 char_u modebuf[NUMBUFLEN];
16515 int modec;
16516
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016517 id = get_tv_number(&argvars[0]);
16518 what = get_tv_string(&argvars[1]);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000016519 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000016520 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016521 mode = get_tv_string_buf(&argvars[2], modebuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016522 modec = TOLOWER_ASC(mode[0]);
16523 if (modec != 't' && modec != 'c'
16524#ifdef FEAT_GUI
16525 && modec != 'g'
16526#endif
16527 )
16528 modec = 0; /* replace invalid with current */
16529 }
16530 else
16531 {
16532#ifdef FEAT_GUI
16533 if (gui.in_use)
16534 modec = 'g';
16535 else
16536#endif
16537 if (t_colors > 1)
16538 modec = 'c';
16539 else
16540 modec = 't';
16541 }
16542
16543
16544 switch (TOLOWER_ASC(what[0]))
16545 {
16546 case 'b':
16547 if (TOLOWER_ASC(what[1]) == 'g') /* bg[#] */
16548 p = highlight_color(id, what, modec);
16549 else /* bold */
16550 p = highlight_has_attr(id, HL_BOLD, modec);
16551 break;
16552
16553 case 'f': /* fg[#] */
16554 p = highlight_color(id, what, modec);
16555 break;
16556
16557 case 'i':
16558 if (TOLOWER_ASC(what[1]) == 'n') /* inverse */
16559 p = highlight_has_attr(id, HL_INVERSE, modec);
16560 else /* italic */
16561 p = highlight_has_attr(id, HL_ITALIC, modec);
16562 break;
16563
16564 case 'n': /* name */
16565 p = get_highlight_name(NULL, id - 1);
16566 break;
16567
16568 case 'r': /* reverse */
16569 p = highlight_has_attr(id, HL_INVERSE, modec);
16570 break;
16571
16572 case 's': /* standout */
16573 p = highlight_has_attr(id, HL_STANDOUT, modec);
16574 break;
16575
Bram Moolenaar5b743bf2005-03-15 22:50:43 +000016576 case 'u':
16577 if (STRLEN(what) <= 5 || TOLOWER_ASC(what[5]) != 'c')
16578 /* underline */
16579 p = highlight_has_attr(id, HL_UNDERLINE, modec);
16580 else
16581 /* undercurl */
16582 p = highlight_has_attr(id, HL_UNDERCURL, modec);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016583 break;
16584 }
16585
16586 if (p != NULL)
16587 p = vim_strsave(p);
16588#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016589 rettv->v_type = VAR_STRING;
16590 rettv->vval.v_string = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016591}
16592
16593/*
16594 * "synIDtrans(id)" function
16595 */
16596/*ARGSUSED*/
16597 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016598f_synIDtrans(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016599 typval_T *argvars;
16600 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016601{
16602 int id;
16603
16604#ifdef FEAT_SYN_HL
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016605 id = get_tv_number(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016606
16607 if (id > 0)
16608 id = syn_get_final_id(id);
16609 else
16610#endif
16611 id = 0;
16612
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016613 rettv->vval.v_number = id;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016614}
16615
16616/*
Bram Moolenaar9d188ab2008-01-10 21:24:39 +000016617 * "synstack(lnum, col)" function
16618 */
16619/*ARGSUSED*/
16620 static void
16621f_synstack(argvars, rettv)
16622 typval_T *argvars;
16623 typval_T *rettv;
16624{
16625#ifdef FEAT_SYN_HL
16626 long lnum;
16627 long col;
16628 int i;
16629 int id;
16630#endif
16631
16632 rettv->v_type = VAR_LIST;
16633 rettv->vval.v_list = NULL;
16634
16635#ifdef FEAT_SYN_HL
16636 lnum = get_tv_lnum(argvars); /* -1 on type error */
16637 col = get_tv_number(&argvars[1]) - 1; /* -1 on type error */
16638
16639 if (lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count
16640 && col >= 0 && col < (long)STRLEN(ml_get(lnum))
16641 && rettv_list_alloc(rettv) != FAIL)
16642 {
Bram Moolenaar56cefaf2008-01-12 15:47:10 +000016643 (void)syn_get_id(curwin, lnum, (colnr_T)col, FALSE, NULL, TRUE);
Bram Moolenaar9d188ab2008-01-10 21:24:39 +000016644 for (i = 0; ; ++i)
16645 {
16646 id = syn_get_stack_item(i);
16647 if (id < 0)
16648 break;
16649 if (list_append_number(rettv->vval.v_list, id) == FAIL)
16650 break;
16651 }
16652 }
16653#endif
16654}
16655
16656/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000016657 * "system()" function
16658 */
16659 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016660f_system(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016661 typval_T *argvars;
16662 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016663{
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016664 char_u *res = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016665 char_u *p;
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016666 char_u *infile = NULL;
16667 char_u buf[NUMBUFLEN];
16668 int err = FALSE;
16669 FILE *fd;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016670
Bram Moolenaard9fe7c42007-04-29 11:53:56 +000016671 if (check_restricted() || check_secure())
Bram Moolenaare6f565a2007-12-07 16:09:32 +000016672 goto done;
Bram Moolenaard9fe7c42007-04-29 11:53:56 +000016673
Bram Moolenaar49cd9572005-01-03 21:06:01 +000016674 if (argvars[1].v_type != VAR_UNKNOWN)
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016675 {
16676 /*
16677 * Write the string to a temp file, to be used for input of the shell
16678 * command.
16679 */
16680 if ((infile = vim_tempname('i')) == NULL)
16681 {
16682 EMSG(_(e_notmp));
Bram Moolenaare6f565a2007-12-07 16:09:32 +000016683 goto done;
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016684 }
16685
16686 fd = mch_fopen((char *)infile, WRITEBIN);
16687 if (fd == NULL)
16688 {
16689 EMSG2(_(e_notopen), infile);
16690 goto done;
16691 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016692 p = get_tv_string_buf_chk(&argvars[1], buf);
16693 if (p == NULL)
Bram Moolenaareb3593b2006-04-22 22:33:57 +000016694 {
16695 fclose(fd);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016696 goto done; /* type error; errmsg already given */
Bram Moolenaareb3593b2006-04-22 22:33:57 +000016697 }
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016698 if (fwrite(p, STRLEN(p), 1, fd) != 1)
16699 err = TRUE;
16700 if (fclose(fd) != 0)
16701 err = TRUE;
16702 if (err)
16703 {
16704 EMSG(_("E677: Error writing temp file"));
16705 goto done;
16706 }
16707 }
16708
Bram Moolenaare580b0c2006-03-21 21:33:03 +000016709 res = get_cmd_output(get_tv_string(&argvars[0]), infile,
16710 SHELL_SILENT | SHELL_COOKED);
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016711
Bram Moolenaar071d4272004-06-13 20:20:40 +000016712#ifdef USE_CR
16713 /* translate <CR> into <NL> */
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016714 if (res != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000016715 {
16716 char_u *s;
16717
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016718 for (s = res; *s; ++s)
Bram Moolenaar071d4272004-06-13 20:20:40 +000016719 {
16720 if (*s == CAR)
16721 *s = NL;
16722 }
16723 }
16724#else
16725# ifdef USE_CRNL
16726 /* translate <CR><NL> into <NL> */
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016727 if (res != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000016728 {
16729 char_u *s, *d;
16730
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016731 d = res;
16732 for (s = res; *s; ++s)
Bram Moolenaar071d4272004-06-13 20:20:40 +000016733 {
16734 if (s[0] == CAR && s[1] == NL)
16735 ++s;
16736 *d++ = *s;
16737 }
16738 *d = NUL;
16739 }
16740# endif
16741#endif
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016742
16743done:
16744 if (infile != NULL)
16745 {
16746 mch_remove(infile);
16747 vim_free(infile);
16748 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016749 rettv->v_type = VAR_STRING;
16750 rettv->vval.v_string = res;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016751}
16752
16753/*
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016754 * "tabpagebuflist()" function
16755 */
16756/* ARGSUSED */
16757 static void
16758f_tabpagebuflist(argvars, rettv)
16759 typval_T *argvars;
16760 typval_T *rettv;
16761{
16762#ifndef FEAT_WINDOWS
16763 rettv->vval.v_number = 0;
16764#else
16765 tabpage_T *tp;
16766 win_T *wp = NULL;
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016767
16768 if (argvars[0].v_type == VAR_UNKNOWN)
16769 wp = firstwin;
16770 else
16771 {
16772 tp = find_tabpage((int)get_tv_number(&argvars[0]));
16773 if (tp != NULL)
Bram Moolenaar238a5642006-02-21 22:12:05 +000016774 wp = (tp == curtab) ? firstwin : tp->tp_firstwin;
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016775 }
16776 if (wp == NULL)
16777 rettv->vval.v_number = 0;
16778 else
16779 {
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016780 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016781 rettv->vval.v_number = 0;
16782 else
16783 {
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016784 for (; wp != NULL; wp = wp->w_next)
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016785 if (list_append_number(rettv->vval.v_list,
16786 wp->w_buffer->b_fnum) == FAIL)
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016787 break;
16788 }
16789 }
16790#endif
16791}
16792
16793
16794/*
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000016795 * "tabpagenr()" function
16796 */
16797/* ARGSUSED */
16798 static void
16799f_tabpagenr(argvars, rettv)
16800 typval_T *argvars;
16801 typval_T *rettv;
16802{
16803 int nr = 1;
16804#ifdef FEAT_WINDOWS
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000016805 char_u *arg;
16806
16807 if (argvars[0].v_type != VAR_UNKNOWN)
16808 {
16809 arg = get_tv_string_chk(&argvars[0]);
16810 nr = 0;
16811 if (arg != NULL)
16812 {
16813 if (STRCMP(arg, "$") == 0)
Bram Moolenaara5621492006-02-25 21:55:24 +000016814 nr = tabpage_index(NULL) - 1;
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000016815 else
16816 EMSG2(_(e_invexpr2), arg);
16817 }
16818 }
16819 else
Bram Moolenaar32466aa2006-02-24 23:53:04 +000016820 nr = tabpage_index(curtab);
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000016821#endif
16822 rettv->vval.v_number = nr;
16823}
16824
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016825
16826#ifdef FEAT_WINDOWS
16827static int get_winnr __ARGS((tabpage_T *tp, typval_T *argvar));
16828
16829/*
16830 * Common code for tabpagewinnr() and winnr().
16831 */
16832 static int
16833get_winnr(tp, argvar)
16834 tabpage_T *tp;
16835 typval_T *argvar;
16836{
16837 win_T *twin;
16838 int nr = 1;
16839 win_T *wp;
16840 char_u *arg;
16841
16842 twin = (tp == curtab) ? curwin : tp->tp_curwin;
16843 if (argvar->v_type != VAR_UNKNOWN)
16844 {
16845 arg = get_tv_string_chk(argvar);
16846 if (arg == NULL)
16847 nr = 0; /* type error; errmsg already given */
16848 else if (STRCMP(arg, "$") == 0)
16849 twin = (tp == curtab) ? lastwin : tp->tp_lastwin;
16850 else if (STRCMP(arg, "#") == 0)
16851 {
16852 twin = (tp == curtab) ? prevwin : tp->tp_prevwin;
16853 if (twin == NULL)
16854 nr = 0;
16855 }
16856 else
16857 {
16858 EMSG2(_(e_invexpr2), arg);
16859 nr = 0;
16860 }
16861 }
16862
16863 if (nr > 0)
16864 for (wp = (tp == curtab) ? firstwin : tp->tp_firstwin;
16865 wp != twin; wp = wp->w_next)
Bram Moolenaar4940e3f2007-03-25 15:49:08 +000016866 {
16867 if (wp == NULL)
16868 {
16869 /* didn't find it in this tabpage */
16870 nr = 0;
16871 break;
16872 }
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016873 ++nr;
Bram Moolenaar4940e3f2007-03-25 15:49:08 +000016874 }
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016875 return nr;
16876}
16877#endif
16878
16879/*
16880 * "tabpagewinnr()" function
16881 */
16882/* ARGSUSED */
16883 static void
16884f_tabpagewinnr(argvars, rettv)
16885 typval_T *argvars;
16886 typval_T *rettv;
16887{
16888 int nr = 1;
16889#ifdef FEAT_WINDOWS
16890 tabpage_T *tp;
16891
16892 tp = find_tabpage((int)get_tv_number(&argvars[0]));
16893 if (tp == NULL)
16894 nr = 0;
16895 else
16896 nr = get_winnr(tp, &argvars[1]);
16897#endif
16898 rettv->vval.v_number = nr;
16899}
16900
16901
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000016902/*
Bram Moolenaard43b6cf2005-09-09 19:53:42 +000016903 * "tagfiles()" function
16904 */
16905/*ARGSUSED*/
16906 static void
16907f_tagfiles(argvars, rettv)
16908 typval_T *argvars;
16909 typval_T *rettv;
16910{
16911 char_u fname[MAXPATHL + 1];
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016912 tagname_T tn;
16913 int first;
Bram Moolenaard43b6cf2005-09-09 19:53:42 +000016914
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016915 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaard43b6cf2005-09-09 19:53:42 +000016916 {
16917 rettv->vval.v_number = 0;
16918 return;
16919 }
Bram Moolenaard43b6cf2005-09-09 19:53:42 +000016920
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016921 for (first = TRUE; ; first = FALSE)
16922 if (get_tagfname(&tn, first, fname) == FAIL
16923 || list_append_string(rettv->vval.v_list, fname, -1) == FAIL)
Bram Moolenaard43b6cf2005-09-09 19:53:42 +000016924 break;
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016925 tagname_free(&tn);
Bram Moolenaard43b6cf2005-09-09 19:53:42 +000016926}
16927
16928/*
Bram Moolenaare2ac10d2005-03-07 23:26:06 +000016929 * "taglist()" function
Bram Moolenaar19a09a12005-03-04 23:39:37 +000016930 */
16931 static void
16932f_taglist(argvars, rettv)
16933 typval_T *argvars;
16934 typval_T *rettv;
16935{
16936 char_u *tag_pattern;
Bram Moolenaar19a09a12005-03-04 23:39:37 +000016937
16938 tag_pattern = get_tv_string(&argvars[0]);
16939
16940 rettv->vval.v_number = FALSE;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016941 if (*tag_pattern == NUL)
16942 return;
Bram Moolenaar19a09a12005-03-04 23:39:37 +000016943
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016944 if (rettv_list_alloc(rettv) == OK)
16945 (void)get_tags(rettv->vval.v_list, tag_pattern);
Bram Moolenaar19a09a12005-03-04 23:39:37 +000016946}
16947
16948/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000016949 * "tempname()" function
16950 */
16951/*ARGSUSED*/
16952 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016953f_tempname(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016954 typval_T *argvars;
16955 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016956{
16957 static int x = 'A';
16958
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016959 rettv->v_type = VAR_STRING;
16960 rettv->vval.v_string = vim_tempname(x);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016961
16962 /* Advance 'x' to use A-Z and 0-9, so that there are at least 34 different
16963 * names. Skip 'I' and 'O', they are used for shell redirection. */
16964 do
16965 {
16966 if (x == 'Z')
16967 x = '0';
16968 else if (x == '9')
16969 x = 'A';
16970 else
16971 {
16972#ifdef EBCDIC
16973 if (x == 'I')
16974 x = 'J';
16975 else if (x == 'R')
16976 x = 'S';
16977 else
16978#endif
16979 ++x;
16980 }
16981 } while (x == 'I' || x == 'O');
16982}
16983
16984/*
Bram Moolenaard52d9742005-08-21 22:20:28 +000016985 * "test(list)" function: Just checking the walls...
16986 */
16987/*ARGSUSED*/
16988 static void
16989f_test(argvars, rettv)
16990 typval_T *argvars;
16991 typval_T *rettv;
16992{
16993 /* Used for unit testing. Change the code below to your liking. */
16994#if 0
16995 listitem_T *li;
16996 list_T *l;
16997 char_u *bad, *good;
16998
16999 if (argvars[0].v_type != VAR_LIST)
17000 return;
17001 l = argvars[0].vval.v_list;
17002 if (l == NULL)
17003 return;
17004 li = l->lv_first;
17005 if (li == NULL)
17006 return;
17007 bad = get_tv_string(&li->li_tv);
17008 li = li->li_next;
17009 if (li == NULL)
17010 return;
17011 good = get_tv_string(&li->li_tv);
17012 rettv->vval.v_number = test_edit_score(bad, good);
17013#endif
17014}
17015
17016/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000017017 * "tolower(string)" function
17018 */
17019 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017020f_tolower(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017021 typval_T *argvars;
17022 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017023{
17024 char_u *p;
17025
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017026 p = vim_strsave(get_tv_string(&argvars[0]));
17027 rettv->v_type = VAR_STRING;
17028 rettv->vval.v_string = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017029
17030 if (p != NULL)
17031 while (*p != NUL)
17032 {
17033#ifdef FEAT_MBYTE
17034 int l;
17035
17036 if (enc_utf8)
17037 {
17038 int c, lc;
17039
17040 c = utf_ptr2char(p);
17041 lc = utf_tolower(c);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000017042 l = utf_ptr2len(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017043 /* TODO: reallocate string when byte count changes. */
17044 if (utf_char2len(lc) == l)
17045 utf_char2bytes(lc, p);
17046 p += l;
17047 }
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000017048 else if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017049 p += l; /* skip multi-byte character */
17050 else
17051#endif
17052 {
17053 *p = TOLOWER_LOC(*p); /* note that tolower() can be a macro */
17054 ++p;
17055 }
17056 }
17057}
17058
17059/*
17060 * "toupper(string)" function
17061 */
17062 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017063f_toupper(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017064 typval_T *argvars;
17065 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017066{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017067 rettv->v_type = VAR_STRING;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000017068 rettv->vval.v_string = strup_save(get_tv_string(&argvars[0]));
Bram Moolenaar071d4272004-06-13 20:20:40 +000017069}
17070
17071/*
Bram Moolenaar8299df92004-07-10 09:47:34 +000017072 * "tr(string, fromstr, tostr)" function
17073 */
17074 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017075f_tr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017076 typval_T *argvars;
17077 typval_T *rettv;
Bram Moolenaar8299df92004-07-10 09:47:34 +000017078{
17079 char_u *instr;
17080 char_u *fromstr;
17081 char_u *tostr;
17082 char_u *p;
17083#ifdef FEAT_MBYTE
Bram Moolenaar342337a2005-07-21 21:11:17 +000017084 int inlen;
17085 int fromlen;
17086 int tolen;
Bram Moolenaar8299df92004-07-10 09:47:34 +000017087 int idx;
17088 char_u *cpstr;
17089 int cplen;
17090 int first = TRUE;
17091#endif
17092 char_u buf[NUMBUFLEN];
17093 char_u buf2[NUMBUFLEN];
17094 garray_T ga;
17095
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017096 instr = get_tv_string(&argvars[0]);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000017097 fromstr = get_tv_string_buf_chk(&argvars[1], buf);
17098 tostr = get_tv_string_buf_chk(&argvars[2], buf2);
Bram Moolenaar8299df92004-07-10 09:47:34 +000017099
17100 /* Default return value: empty string. */
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017101 rettv->v_type = VAR_STRING;
17102 rettv->vval.v_string = NULL;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000017103 if (fromstr == NULL || tostr == NULL)
17104 return; /* type error; errmsg already given */
Bram Moolenaar8299df92004-07-10 09:47:34 +000017105 ga_init2(&ga, (int)sizeof(char), 80);
17106
17107#ifdef FEAT_MBYTE
17108 if (!has_mbyte)
17109#endif
17110 /* not multi-byte: fromstr and tostr must be the same length */
17111 if (STRLEN(fromstr) != STRLEN(tostr))
17112 {
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000017113#ifdef FEAT_MBYTE
Bram Moolenaar8299df92004-07-10 09:47:34 +000017114error:
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000017115#endif
Bram Moolenaar8299df92004-07-10 09:47:34 +000017116 EMSG2(_(e_invarg2), fromstr);
17117 ga_clear(&ga);
17118 return;
17119 }
17120
17121 /* fromstr and tostr have to contain the same number of chars */
17122 while (*instr != NUL)
17123 {
17124#ifdef FEAT_MBYTE
17125 if (has_mbyte)
17126 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000017127 inlen = (*mb_ptr2len)(instr);
Bram Moolenaar8299df92004-07-10 09:47:34 +000017128 cpstr = instr;
17129 cplen = inlen;
17130 idx = 0;
17131 for (p = fromstr; *p != NUL; p += fromlen)
17132 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000017133 fromlen = (*mb_ptr2len)(p);
Bram Moolenaar8299df92004-07-10 09:47:34 +000017134 if (fromlen == inlen && STRNCMP(instr, p, inlen) == 0)
17135 {
17136 for (p = tostr; *p != NUL; p += tolen)
17137 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000017138 tolen = (*mb_ptr2len)(p);
Bram Moolenaar8299df92004-07-10 09:47:34 +000017139 if (idx-- == 0)
17140 {
17141 cplen = tolen;
17142 cpstr = p;
17143 break;
17144 }
17145 }
17146 if (*p == NUL) /* tostr is shorter than fromstr */
17147 goto error;
17148 break;
17149 }
17150 ++idx;
17151 }
17152
17153 if (first && cpstr == instr)
17154 {
17155 /* Check that fromstr and tostr have the same number of
17156 * (multi-byte) characters. Done only once when a character
17157 * of instr doesn't appear in fromstr. */
17158 first = FALSE;
17159 for (p = tostr; *p != NUL; p += tolen)
17160 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000017161 tolen = (*mb_ptr2len)(p);
Bram Moolenaar8299df92004-07-10 09:47:34 +000017162 --idx;
17163 }
17164 if (idx != 0)
17165 goto error;
17166 }
17167
17168 ga_grow(&ga, cplen);
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +000017169 mch_memmove((char *)ga.ga_data + ga.ga_len, cpstr, (size_t)cplen);
Bram Moolenaar8299df92004-07-10 09:47:34 +000017170 ga.ga_len += cplen;
Bram Moolenaar8299df92004-07-10 09:47:34 +000017171
17172 instr += inlen;
17173 }
17174 else
17175#endif
17176 {
17177 /* When not using multi-byte chars we can do it faster. */
17178 p = vim_strchr(fromstr, *instr);
17179 if (p != NULL)
17180 ga_append(&ga, tostr[p - fromstr]);
17181 else
17182 ga_append(&ga, *instr);
17183 ++instr;
17184 }
17185 }
17186
Bram Moolenaar61b974b2006-12-05 09:32:29 +000017187 /* add a terminating NUL */
17188 ga_grow(&ga, 1);
17189 ga_append(&ga, NUL);
17190
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017191 rettv->vval.v_string = ga.ga_data;
Bram Moolenaar8299df92004-07-10 09:47:34 +000017192}
17193
Bram Moolenaar8c8de832008-06-24 22:58:06 +000017194#ifdef FEAT_FLOAT
17195/*
17196 * "trunc({float})" function
17197 */
17198 static void
17199f_trunc(argvars, rettv)
17200 typval_T *argvars;
17201 typval_T *rettv;
17202{
17203 float_T f;
17204
17205 rettv->v_type = VAR_FLOAT;
17206 if (get_float_arg(argvars, &f) == OK)
17207 /* trunc() is not in C90, use floor() or ceil() instead. */
17208 rettv->vval.v_float = f > 0 ? floor(f) : ceil(f);
17209 else
17210 rettv->vval.v_float = 0.0;
17211}
17212#endif
17213
Bram Moolenaar8299df92004-07-10 09:47:34 +000017214/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000017215 * "type(expr)" function
17216 */
17217 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017218f_type(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017219 typval_T *argvars;
17220 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017221{
Bram Moolenaar6cc16192005-01-08 21:49:45 +000017222 int n;
17223
17224 switch (argvars[0].v_type)
17225 {
17226 case VAR_NUMBER: n = 0; break;
17227 case VAR_STRING: n = 1; break;
17228 case VAR_FUNC: n = 2; break;
17229 case VAR_LIST: n = 3; break;
Bram Moolenaar758711c2005-02-02 23:11:38 +000017230 case VAR_DICT: n = 4; break;
Bram Moolenaar8c8de832008-06-24 22:58:06 +000017231#ifdef FEAT_FLOAT
17232 case VAR_FLOAT: n = 5; break;
17233#endif
Bram Moolenaar6cc16192005-01-08 21:49:45 +000017234 default: EMSG2(_(e_intern2), "f_type()"); n = 0; break;
17235 }
17236 rettv->vval.v_number = n;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017237}
17238
17239/*
Bram Moolenaar8c711452005-01-14 21:53:12 +000017240 * "values(dict)" function
17241 */
17242 static void
17243f_values(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017244 typval_T *argvars;
17245 typval_T *rettv;
Bram Moolenaar8c711452005-01-14 21:53:12 +000017246{
17247 dict_list(argvars, rettv, 1);
17248}
17249
17250/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000017251 * "virtcol(string)" function
17252 */
17253 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017254f_virtcol(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017255 typval_T *argvars;
17256 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017257{
17258 colnr_T vcol = 0;
17259 pos_T *fp;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000017260 int fnum = curbuf->b_fnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017261
Bram Moolenaar0e34f622006-03-03 23:00:03 +000017262 fp = var2fpos(&argvars[0], FALSE, &fnum);
17263 if (fp != NULL && fp->lnum <= curbuf->b_ml.ml_line_count
17264 && fnum == curbuf->b_fnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017265 {
17266 getvvcol(curwin, fp, NULL, NULL, &vcol);
17267 ++vcol;
17268 }
17269
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017270 rettv->vval.v_number = vcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017271}
17272
17273/*
17274 * "visualmode()" function
17275 */
17276/*ARGSUSED*/
17277 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017278f_visualmode(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017279 typval_T *argvars;
17280 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017281{
17282#ifdef FEAT_VISUAL
17283 char_u str[2];
17284
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017285 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017286 str[0] = curbuf->b_visual_mode_eval;
17287 str[1] = NUL;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017288 rettv->vval.v_string = vim_strsave(str);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017289
17290 /* A non-zero number or non-empty string argument: reset mode. */
Bram Moolenaar05bb9532008-07-04 09:44:11 +000017291 if (non_zero_arg(&argvars[0]))
Bram Moolenaar071d4272004-06-13 20:20:40 +000017292 curbuf->b_visual_mode_eval = NUL;
17293#else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017294 rettv->vval.v_number = 0; /* return anything, it won't work anyway */
Bram Moolenaar071d4272004-06-13 20:20:40 +000017295#endif
17296}
17297
17298/*
17299 * "winbufnr(nr)" function
17300 */
17301 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017302f_winbufnr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017303 typval_T *argvars;
17304 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017305{
17306 win_T *wp;
17307
Bram Moolenaar99ebf042006-04-15 20:28:54 +000017308 wp = find_win_by_nr(&argvars[0], NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017309 if (wp == NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017310 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017311 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017312 rettv->vval.v_number = wp->w_buffer->b_fnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017313}
17314
17315/*
17316 * "wincol()" function
17317 */
17318/*ARGSUSED*/
17319 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017320f_wincol(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017321 typval_T *argvars;
17322 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017323{
17324 validate_cursor();
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017325 rettv->vval.v_number = curwin->w_wcol + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017326}
17327
17328/*
17329 * "winheight(nr)" function
17330 */
17331 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017332f_winheight(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017333 typval_T *argvars;
17334 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017335{
17336 win_T *wp;
17337
Bram Moolenaar99ebf042006-04-15 20:28:54 +000017338 wp = find_win_by_nr(&argvars[0], NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017339 if (wp == NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017340 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017341 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017342 rettv->vval.v_number = wp->w_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017343}
17344
17345/*
17346 * "winline()" function
17347 */
17348/*ARGSUSED*/
17349 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017350f_winline(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017351 typval_T *argvars;
17352 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017353{
17354 validate_cursor();
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017355 rettv->vval.v_number = curwin->w_wrow + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017356}
17357
17358/*
17359 * "winnr()" function
17360 */
17361/* ARGSUSED */
17362 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017363f_winnr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017364 typval_T *argvars;
17365 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017366{
17367 int nr = 1;
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000017368
Bram Moolenaar071d4272004-06-13 20:20:40 +000017369#ifdef FEAT_WINDOWS
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000017370 nr = get_winnr(curtab, &argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017371#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017372 rettv->vval.v_number = nr;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017373}
17374
17375/*
17376 * "winrestcmd()" function
17377 */
17378/* ARGSUSED */
17379 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017380f_winrestcmd(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017381 typval_T *argvars;
17382 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017383{
17384#ifdef FEAT_WINDOWS
17385 win_T *wp;
17386 int winnr = 1;
17387 garray_T ga;
17388 char_u buf[50];
17389
17390 ga_init2(&ga, (int)sizeof(char), 70);
17391 for (wp = firstwin; wp != NULL; wp = wp->w_next)
17392 {
17393 sprintf((char *)buf, "%dresize %d|", winnr, wp->w_height);
17394 ga_concat(&ga, buf);
17395# ifdef FEAT_VERTSPLIT
17396 sprintf((char *)buf, "vert %dresize %d|", winnr, wp->w_width);
17397 ga_concat(&ga, buf);
17398# endif
17399 ++winnr;
17400 }
Bram Moolenaar269ec652004-07-29 08:43:53 +000017401 ga_append(&ga, NUL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017402
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017403 rettv->vval.v_string = ga.ga_data;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017404#else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017405 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017406#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017407 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017408}
17409
17410/*
Bram Moolenaar768b8c42006-03-04 21:58:33 +000017411 * "winrestview()" function
17412 */
17413/* ARGSUSED */
17414 static void
17415f_winrestview(argvars, rettv)
17416 typval_T *argvars;
17417 typval_T *rettv;
17418{
17419 dict_T *dict;
17420
17421 if (argvars[0].v_type != VAR_DICT
17422 || (dict = argvars[0].vval.v_dict) == NULL)
17423 EMSG(_(e_invarg));
17424 else
17425 {
17426 curwin->w_cursor.lnum = get_dict_number(dict, (char_u *)"lnum");
17427 curwin->w_cursor.col = get_dict_number(dict, (char_u *)"col");
17428#ifdef FEAT_VIRTUALEDIT
17429 curwin->w_cursor.coladd = get_dict_number(dict, (char_u *)"coladd");
17430#endif
17431 curwin->w_curswant = get_dict_number(dict, (char_u *)"curswant");
Bram Moolenaar362e1a32006-03-06 23:29:24 +000017432 curwin->w_set_curswant = FALSE;
Bram Moolenaar768b8c42006-03-04 21:58:33 +000017433
Bram Moolenaar6f11a412006-09-06 20:16:42 +000017434 set_topline(curwin, get_dict_number(dict, (char_u *)"topline"));
Bram Moolenaar768b8c42006-03-04 21:58:33 +000017435#ifdef FEAT_DIFF
17436 curwin->w_topfill = get_dict_number(dict, (char_u *)"topfill");
17437#endif
17438 curwin->w_leftcol = get_dict_number(dict, (char_u *)"leftcol");
17439 curwin->w_skipcol = get_dict_number(dict, (char_u *)"skipcol");
17440
17441 check_cursor();
17442 changed_cline_bef_curs();
17443 invalidate_botline();
17444 redraw_later(VALID);
17445
17446 if (curwin->w_topline == 0)
17447 curwin->w_topline = 1;
17448 if (curwin->w_topline > curbuf->b_ml.ml_line_count)
17449 curwin->w_topline = curbuf->b_ml.ml_line_count;
17450#ifdef FEAT_DIFF
17451 check_topfill(curwin, TRUE);
17452#endif
17453 }
17454}
17455
17456/*
17457 * "winsaveview()" function
17458 */
17459/* ARGSUSED */
17460 static void
17461f_winsaveview(argvars, rettv)
17462 typval_T *argvars;
17463 typval_T *rettv;
17464{
17465 dict_T *dict;
17466
17467 dict = dict_alloc();
17468 if (dict == NULL)
17469 return;
17470 rettv->v_type = VAR_DICT;
17471 rettv->vval.v_dict = dict;
17472 ++dict->dv_refcount;
17473
17474 dict_add_nr_str(dict, "lnum", (long)curwin->w_cursor.lnum, NULL);
17475 dict_add_nr_str(dict, "col", (long)curwin->w_cursor.col, NULL);
17476#ifdef FEAT_VIRTUALEDIT
17477 dict_add_nr_str(dict, "coladd", (long)curwin->w_cursor.coladd, NULL);
17478#endif
Bram Moolenaar9af1ba92006-08-29 19:55:53 +000017479 update_curswant();
Bram Moolenaar768b8c42006-03-04 21:58:33 +000017480 dict_add_nr_str(dict, "curswant", (long)curwin->w_curswant, NULL);
17481
17482 dict_add_nr_str(dict, "topline", (long)curwin->w_topline, NULL);
17483#ifdef FEAT_DIFF
17484 dict_add_nr_str(dict, "topfill", (long)curwin->w_topfill, NULL);
17485#endif
17486 dict_add_nr_str(dict, "leftcol", (long)curwin->w_leftcol, NULL);
17487 dict_add_nr_str(dict, "skipcol", (long)curwin->w_skipcol, NULL);
17488}
17489
17490/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000017491 * "winwidth(nr)" function
17492 */
17493 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017494f_winwidth(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017495 typval_T *argvars;
17496 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017497{
17498 win_T *wp;
17499
Bram Moolenaar99ebf042006-04-15 20:28:54 +000017500 wp = find_win_by_nr(&argvars[0], NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017501 if (wp == NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017502 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017503 else
17504#ifdef FEAT_VERTSPLIT
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017505 rettv->vval.v_number = wp->w_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017506#else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017507 rettv->vval.v_number = Columns;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017508#endif
17509}
17510
Bram Moolenaar071d4272004-06-13 20:20:40 +000017511/*
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000017512 * "writefile()" function
17513 */
17514 static void
17515f_writefile(argvars, rettv)
17516 typval_T *argvars;
17517 typval_T *rettv;
17518{
17519 int binary = FALSE;
17520 char_u *fname;
17521 FILE *fd;
17522 listitem_T *li;
17523 char_u *s;
17524 int ret = 0;
17525 int c;
17526
Bram Moolenaard9fe7c42007-04-29 11:53:56 +000017527 if (check_restricted() || check_secure())
17528 return;
17529
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000017530 if (argvars[0].v_type != VAR_LIST)
17531 {
17532 EMSG2(_(e_listarg), "writefile()");
17533 return;
17534 }
17535 if (argvars[0].vval.v_list == NULL)
17536 return;
17537
17538 if (argvars[2].v_type != VAR_UNKNOWN
17539 && STRCMP(get_tv_string(&argvars[2]), "b") == 0)
17540 binary = TRUE;
17541
17542 /* Always open the file in binary mode, library functions have a mind of
17543 * their own about CR-LF conversion. */
17544 fname = get_tv_string(&argvars[1]);
17545 if (*fname == NUL || (fd = mch_fopen((char *)fname, WRITEBIN)) == NULL)
17546 {
17547 EMSG2(_(e_notcreate), *fname == NUL ? (char_u *)_("<empty>") : fname);
17548 ret = -1;
17549 }
17550 else
17551 {
17552 for (li = argvars[0].vval.v_list->lv_first; li != NULL;
17553 li = li->li_next)
17554 {
17555 for (s = get_tv_string(&li->li_tv); *s != NUL; ++s)
17556 {
17557 if (*s == '\n')
17558 c = putc(NUL, fd);
17559 else
17560 c = putc(*s, fd);
17561 if (c == EOF)
17562 {
17563 ret = -1;
17564 break;
17565 }
17566 }
17567 if (!binary || li->li_next != NULL)
17568 if (putc('\n', fd) == EOF)
17569 {
17570 ret = -1;
17571 break;
17572 }
17573 if (ret < 0)
17574 {
17575 EMSG(_(e_write));
17576 break;
17577 }
17578 }
17579 fclose(fd);
17580 }
17581
17582 rettv->vval.v_number = ret;
17583}
17584
17585/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000017586 * Translate a String variable into a position.
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017587 * Returns NULL when there is an error.
Bram Moolenaar071d4272004-06-13 20:20:40 +000017588 */
17589 static pos_T *
Bram Moolenaar477933c2007-07-17 14:32:23 +000017590var2fpos(varp, dollar_lnum, fnum)
Bram Moolenaar33570922005-01-25 22:26:29 +000017591 typval_T *varp;
Bram Moolenaar477933c2007-07-17 14:32:23 +000017592 int dollar_lnum; /* TRUE when $ is last line */
Bram Moolenaar0e34f622006-03-03 23:00:03 +000017593 int *fnum; /* set to fnum for '0, 'A, etc. */
Bram Moolenaar071d4272004-06-13 20:20:40 +000017594{
Bram Moolenaar261bfea2006-03-01 22:12:31 +000017595 char_u *name;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017596 static pos_T pos;
Bram Moolenaar261bfea2006-03-01 22:12:31 +000017597 pos_T *pp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017598
Bram Moolenaara5525202006-03-02 22:52:09 +000017599 /* Argument can be [lnum, col, coladd]. */
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017600 if (varp->v_type == VAR_LIST)
17601 {
17602 list_T *l;
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017603 int len;
Bram Moolenaara5525202006-03-02 22:52:09 +000017604 int error = FALSE;
Bram Moolenaar477933c2007-07-17 14:32:23 +000017605 listitem_T *li;
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017606
17607 l = varp->vval.v_list;
17608 if (l == NULL)
17609 return NULL;
17610
17611 /* Get the line number */
Bram Moolenaara5525202006-03-02 22:52:09 +000017612 pos.lnum = list_find_nr(l, 0L, &error);
17613 if (error || pos.lnum <= 0 || pos.lnum > curbuf->b_ml.ml_line_count)
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017614 return NULL; /* invalid line number */
17615
17616 /* Get the column number */
Bram Moolenaara5525202006-03-02 22:52:09 +000017617 pos.col = list_find_nr(l, 1L, &error);
17618 if (error)
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017619 return NULL;
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017620 len = (long)STRLEN(ml_get(pos.lnum));
Bram Moolenaar477933c2007-07-17 14:32:23 +000017621
17622 /* We accept "$" for the column number: last column. */
17623 li = list_find(l, 1L);
17624 if (li != NULL && li->li_tv.v_type == VAR_STRING
17625 && li->li_tv.vval.v_string != NULL
17626 && STRCMP(li->li_tv.vval.v_string, "$") == 0)
17627 pos.col = len + 1;
17628
Bram Moolenaara5525202006-03-02 22:52:09 +000017629 /* Accept a position up to the NUL after the line. */
Bram Moolenaar4c3f5362006-04-11 21:38:50 +000017630 if (pos.col == 0 || (int)pos.col > len + 1)
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017631 return NULL; /* invalid column number */
Bram Moolenaara5525202006-03-02 22:52:09 +000017632 --pos.col;
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017633
Bram Moolenaara5525202006-03-02 22:52:09 +000017634#ifdef FEAT_VIRTUALEDIT
17635 /* Get the virtual offset. Defaults to zero. */
17636 pos.coladd = list_find_nr(l, 2L, &error);
17637 if (error)
17638 pos.coladd = 0;
17639#endif
17640
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017641 return &pos;
17642 }
17643
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000017644 name = get_tv_string_chk(varp);
17645 if (name == NULL)
17646 return NULL;
Bram Moolenaar9ecd0232008-06-20 15:31:51 +000017647 if (name[0] == '.') /* cursor */
Bram Moolenaar071d4272004-06-13 20:20:40 +000017648 return &curwin->w_cursor;
Bram Moolenaar9ecd0232008-06-20 15:31:51 +000017649#ifdef FEAT_VISUAL
17650 if (name[0] == 'v' && name[1] == NUL) /* Visual start */
17651 {
17652 if (VIsual_active)
17653 return &VIsual;
17654 return &curwin->w_cursor;
17655 }
17656#endif
17657 if (name[0] == '\'') /* mark */
Bram Moolenaar071d4272004-06-13 20:20:40 +000017658 {
Bram Moolenaar0e34f622006-03-03 23:00:03 +000017659 pp = getmark_fnum(name[1], FALSE, fnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017660 if (pp == NULL || pp == (pos_T *)-1 || pp->lnum <= 0)
17661 return NULL;
17662 return pp;
17663 }
Bram Moolenaara5525202006-03-02 22:52:09 +000017664
17665#ifdef FEAT_VIRTUALEDIT
17666 pos.coladd = 0;
17667#endif
17668
Bram Moolenaar477933c2007-07-17 14:32:23 +000017669 if (name[0] == 'w' && dollar_lnum)
Bram Moolenaarf52c7252006-02-10 23:23:57 +000017670 {
17671 pos.col = 0;
17672 if (name[1] == '0') /* "w0": first visible line */
17673 {
Bram Moolenaarf740b292006-02-16 22:11:02 +000017674 update_topline();
Bram Moolenaarf52c7252006-02-10 23:23:57 +000017675 pos.lnum = curwin->w_topline;
17676 return &pos;
17677 }
17678 else if (name[1] == '$') /* "w$": last visible line */
17679 {
Bram Moolenaarf740b292006-02-16 22:11:02 +000017680 validate_botline();
Bram Moolenaarf52c7252006-02-10 23:23:57 +000017681 pos.lnum = curwin->w_botline - 1;
17682 return &pos;
17683 }
17684 }
17685 else if (name[0] == '$') /* last column or line */
Bram Moolenaar071d4272004-06-13 20:20:40 +000017686 {
Bram Moolenaar477933c2007-07-17 14:32:23 +000017687 if (dollar_lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017688 {
17689 pos.lnum = curbuf->b_ml.ml_line_count;
17690 pos.col = 0;
17691 }
17692 else
17693 {
17694 pos.lnum = curwin->w_cursor.lnum;
17695 pos.col = (colnr_T)STRLEN(ml_get_curline());
17696 }
17697 return &pos;
17698 }
17699 return NULL;
17700}
17701
17702/*
Bram Moolenaar0e34f622006-03-03 23:00:03 +000017703 * Convert list in "arg" into a position and optional file number.
17704 * When "fnump" is NULL there is no file number, only 3 items.
17705 * Note that the column is passed on as-is, the caller may want to decrement
17706 * it to use 1 for the first column.
17707 * Return FAIL when conversion is not possible, doesn't check the position for
17708 * validity.
17709 */
17710 static int
17711list2fpos(arg, posp, fnump)
17712 typval_T *arg;
17713 pos_T *posp;
17714 int *fnump;
17715{
17716 list_T *l = arg->vval.v_list;
17717 long i = 0;
17718 long n;
17719
Bram Moolenaarbde35262006-07-23 20:12:24 +000017720 /* List must be: [fnum, lnum, col, coladd], where "fnum" is only there
17721 * when "fnump" isn't NULL and "coladd" is optional. */
17722 if (arg->v_type != VAR_LIST
17723 || l == NULL
17724 || l->lv_len < (fnump == NULL ? 2 : 3)
17725 || l->lv_len > (fnump == NULL ? 3 : 4))
Bram Moolenaar0e34f622006-03-03 23:00:03 +000017726 return FAIL;
17727
17728 if (fnump != NULL)
17729 {
17730 n = list_find_nr(l, i++, NULL); /* fnum */
17731 if (n < 0)
17732 return FAIL;
17733 if (n == 0)
17734 n = curbuf->b_fnum; /* current buffer */
17735 *fnump = n;
17736 }
17737
17738 n = list_find_nr(l, i++, NULL); /* lnum */
17739 if (n < 0)
17740 return FAIL;
17741 posp->lnum = n;
17742
17743 n = list_find_nr(l, i++, NULL); /* col */
17744 if (n < 0)
17745 return FAIL;
17746 posp->col = n;
17747
17748#ifdef FEAT_VIRTUALEDIT
17749 n = list_find_nr(l, i, NULL);
17750 if (n < 0)
Bram Moolenaarbde35262006-07-23 20:12:24 +000017751 posp->coladd = 0;
17752 else
17753 posp->coladd = n;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000017754#endif
17755
17756 return OK;
17757}
17758
17759/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000017760 * Get the length of an environment variable name.
17761 * Advance "arg" to the first character after the name.
17762 * Return 0 for error.
17763 */
17764 static int
17765get_env_len(arg)
17766 char_u **arg;
17767{
17768 char_u *p;
17769 int len;
17770
17771 for (p = *arg; vim_isIDc(*p); ++p)
17772 ;
17773 if (p == *arg) /* no name found */
17774 return 0;
17775
17776 len = (int)(p - *arg);
17777 *arg = p;
17778 return len;
17779}
17780
17781/*
17782 * Get the length of the name of a function or internal variable.
17783 * "arg" is advanced to the first non-white character after the name.
17784 * Return 0 if something is wrong.
17785 */
17786 static int
17787get_id_len(arg)
17788 char_u **arg;
17789{
17790 char_u *p;
17791 int len;
17792
17793 /* Find the end of the name. */
17794 for (p = *arg; eval_isnamec(*p); ++p)
17795 ;
17796 if (p == *arg) /* no name found */
17797 return 0;
17798
17799 len = (int)(p - *arg);
17800 *arg = skipwhite(p);
17801
17802 return len;
17803}
17804
17805/*
Bram Moolenaara7043832005-01-21 11:56:39 +000017806 * Get the length of the name of a variable or function.
17807 * Only the name is recognized, does not handle ".key" or "[idx]".
Bram Moolenaar071d4272004-06-13 20:20:40 +000017808 * "arg" is advanced to the first non-white character after the name.
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000017809 * Return -1 if curly braces expansion failed.
17810 * Return 0 if something else is wrong.
Bram Moolenaar071d4272004-06-13 20:20:40 +000017811 * If the name contains 'magic' {}'s, expand them and return the
17812 * expanded name in an allocated string via 'alias' - caller must free.
17813 */
17814 static int
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000017815get_name_len(arg, alias, evaluate, verbose)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017816 char_u **arg;
17817 char_u **alias;
17818 int evaluate;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000017819 int verbose;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017820{
17821 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017822 char_u *p;
17823 char_u *expr_start;
17824 char_u *expr_end;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017825
17826 *alias = NULL; /* default to no alias */
17827
17828 if ((*arg)[0] == K_SPECIAL && (*arg)[1] == KS_EXTRA
17829 && (*arg)[2] == (int)KE_SNR)
17830 {
17831 /* hard coded <SNR>, already translated */
17832 *arg += 3;
17833 return get_id_len(arg) + 3;
17834 }
17835 len = eval_fname_script(*arg);
17836 if (len > 0)
17837 {
17838 /* literal "<SID>", "s:" or "<SNR>" */
17839 *arg += len;
17840 }
17841
Bram Moolenaar071d4272004-06-13 20:20:40 +000017842 /*
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017843 * Find the end of the name; check for {} construction.
Bram Moolenaar071d4272004-06-13 20:20:40 +000017844 */
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000017845 p = find_name_end(*arg, &expr_start, &expr_end,
17846 len > 0 ? 0 : FNE_CHECK_START);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017847 if (expr_start != NULL)
17848 {
17849 char_u *temp_string;
17850
17851 if (!evaluate)
17852 {
17853 len += (int)(p - *arg);
17854 *arg = skipwhite(p);
17855 return len;
17856 }
17857
17858 /*
17859 * Include any <SID> etc in the expanded string:
17860 * Thus the -len here.
17861 */
17862 temp_string = make_expanded_name(*arg - len, expr_start, expr_end, p);
17863 if (temp_string == NULL)
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000017864 return -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017865 *alias = temp_string;
17866 *arg = skipwhite(p);
17867 return (int)STRLEN(temp_string);
17868 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000017869
17870 len += get_id_len(arg);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000017871 if (len == 0 && verbose)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017872 EMSG2(_(e_invexpr2), *arg);
17873
17874 return len;
17875}
17876
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017877/*
17878 * Find the end of a variable or function name, taking care of magic braces.
17879 * If "expr_start" is not NULL then "expr_start" and "expr_end" are set to the
17880 * start and end of the first magic braces item.
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000017881 * "flags" can have FNE_INCL_BR and FNE_CHECK_START.
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017882 * Return a pointer to just after the name. Equal to "arg" if there is no
17883 * valid name.
17884 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000017885 static char_u *
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000017886find_name_end(arg, expr_start, expr_end, flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017887 char_u *arg;
17888 char_u **expr_start;
17889 char_u **expr_end;
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000017890 int flags;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017891{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017892 int mb_nest = 0;
17893 int br_nest = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017894 char_u *p;
17895
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017896 if (expr_start != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017897 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017898 *expr_start = NULL;
17899 *expr_end = NULL;
17900 }
17901
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000017902 /* Quick check for valid starting character. */
17903 if ((flags & FNE_CHECK_START) && !eval_isnamec1(*arg) && *arg != '{')
17904 return arg;
17905
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017906 for (p = arg; *p != NUL
17907 && (eval_isnamec(*p)
Bram Moolenaare9a41262005-01-15 22:18:47 +000017908 || *p == '{'
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000017909 || ((flags & FNE_INCL_BR) && (*p == '[' || *p == '.'))
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017910 || mb_nest != 0
Bram Moolenaar8af24422005-08-08 22:06:28 +000017911 || br_nest != 0); mb_ptr_adv(p))
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017912 {
Bram Moolenaar8af24422005-08-08 22:06:28 +000017913 if (*p == '\'')
17914 {
17915 /* skip over 'string' to avoid counting [ and ] inside it. */
17916 for (p = p + 1; *p != NUL && *p != '\''; mb_ptr_adv(p))
17917 ;
17918 if (*p == NUL)
17919 break;
17920 }
17921 else if (*p == '"')
17922 {
17923 /* skip over "str\"ing" to avoid counting [ and ] inside it. */
17924 for (p = p + 1; *p != NUL && *p != '"'; mb_ptr_adv(p))
17925 if (*p == '\\' && p[1] != NUL)
17926 ++p;
17927 if (*p == NUL)
17928 break;
17929 }
17930
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017931 if (mb_nest == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017932 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017933 if (*p == '[')
17934 ++br_nest;
17935 else if (*p == ']')
17936 --br_nest;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017937 }
Bram Moolenaar8af24422005-08-08 22:06:28 +000017938
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017939 if (br_nest == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017940 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017941 if (*p == '{')
17942 {
17943 mb_nest++;
17944 if (expr_start != NULL && *expr_start == NULL)
17945 *expr_start = p;
17946 }
17947 else if (*p == '}')
17948 {
17949 mb_nest--;
17950 if (expr_start != NULL && mb_nest == 0 && *expr_end == NULL)
17951 *expr_end = p;
17952 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000017953 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000017954 }
17955
17956 return p;
17957}
17958
17959/*
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000017960 * Expands out the 'magic' {}'s in a variable/function name.
17961 * Note that this can call itself recursively, to deal with
17962 * constructs like foo{bar}{baz}{bam}
17963 * The four pointer arguments point to "foo{expre}ss{ion}bar"
17964 * "in_start" ^
17965 * "expr_start" ^
17966 * "expr_end" ^
17967 * "in_end" ^
17968 *
17969 * Returns a new allocated string, which the caller must free.
17970 * Returns NULL for failure.
17971 */
17972 static char_u *
17973make_expanded_name(in_start, expr_start, expr_end, in_end)
17974 char_u *in_start;
17975 char_u *expr_start;
17976 char_u *expr_end;
17977 char_u *in_end;
17978{
17979 char_u c1;
17980 char_u *retval = NULL;
17981 char_u *temp_result;
17982 char_u *nextcmd = NULL;
17983
17984 if (expr_end == NULL || in_end == NULL)
17985 return NULL;
17986 *expr_start = NUL;
17987 *expr_end = NUL;
17988 c1 = *in_end;
17989 *in_end = NUL;
17990
Bram Moolenaar362e1a32006-03-06 23:29:24 +000017991 temp_result = eval_to_string(expr_start + 1, &nextcmd, FALSE);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000017992 if (temp_result != NULL && nextcmd == NULL)
17993 {
17994 retval = alloc((unsigned)(STRLEN(temp_result) + (expr_start - in_start)
17995 + (in_end - expr_end) + 1));
17996 if (retval != NULL)
17997 {
17998 STRCPY(retval, in_start);
17999 STRCAT(retval, temp_result);
18000 STRCAT(retval, expr_end + 1);
18001 }
18002 }
18003 vim_free(temp_result);
18004
18005 *in_end = c1; /* put char back for error messages */
18006 *expr_start = '{';
18007 *expr_end = '}';
18008
18009 if (retval != NULL)
18010 {
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000018011 temp_result = find_name_end(retval, &expr_start, &expr_end, 0);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000018012 if (expr_start != NULL)
18013 {
18014 /* Further expansion! */
18015 temp_result = make_expanded_name(retval, expr_start,
18016 expr_end, temp_result);
18017 vim_free(retval);
18018 retval = temp_result;
18019 }
18020 }
18021
18022 return retval;
18023}
18024
18025/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000018026 * Return TRUE if character "c" can be used in a variable or function name.
Bram Moolenaare9a41262005-01-15 22:18:47 +000018027 * Does not include '{' or '}' for magic braces.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018028 */
18029 static int
18030eval_isnamec(c)
18031 int c;
18032{
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000018033 return (ASCII_ISALNUM(c) || c == '_' || c == ':' || c == AUTOLOAD_CHAR);
18034}
18035
18036/*
18037 * Return TRUE if character "c" can be used as the first character in a
18038 * variable or function name (excluding '{' and '}').
18039 */
18040 static int
18041eval_isnamec1(c)
18042 int c;
18043{
18044 return (ASCII_ISALPHA(c) || c == '_');
Bram Moolenaar071d4272004-06-13 20:20:40 +000018045}
18046
18047/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000018048 * Set number v: variable to "val".
18049 */
18050 void
18051set_vim_var_nr(idx, val)
18052 int idx;
18053 long val;
18054{
Bram Moolenaare9a41262005-01-15 22:18:47 +000018055 vimvars[idx].vv_nr = val;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018056}
18057
18058/*
Bram Moolenaar19a09a12005-03-04 23:39:37 +000018059 * Get number v: variable value.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018060 */
18061 long
18062get_vim_var_nr(idx)
18063 int idx;
18064{
Bram Moolenaare9a41262005-01-15 22:18:47 +000018065 return vimvars[idx].vv_nr;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018066}
18067
Bram Moolenaar19a09a12005-03-04 23:39:37 +000018068#if defined(FEAT_AUTOCMD) || defined(PROTO)
18069/*
18070 * Get string v: variable value. Uses a static buffer, can only be used once.
18071 */
18072 char_u *
18073get_vim_var_str(idx)
18074 int idx;
18075{
18076 return get_tv_string(&vimvars[idx].vv_tv);
18077}
18078#endif
18079
Bram Moolenaar071d4272004-06-13 20:20:40 +000018080/*
18081 * Set v:count, v:count1 and v:prevcount.
18082 */
18083 void
18084set_vcount(count, count1)
18085 long count;
18086 long count1;
18087{
Bram Moolenaare9a41262005-01-15 22:18:47 +000018088 vimvars[VV_PREVCOUNT].vv_nr = vimvars[VV_COUNT].vv_nr;
18089 vimvars[VV_COUNT].vv_nr = count;
18090 vimvars[VV_COUNT1].vv_nr = count1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018091}
18092
18093/*
18094 * Set string v: variable to a copy of "val".
18095 */
18096 void
18097set_vim_var_string(idx, val, len)
18098 int idx;
18099 char_u *val;
18100 int len; /* length of "val" to use or -1 (whole string) */
18101{
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018102 /* Need to do this (at least) once, since we can't initialize a union.
18103 * Will always be invoked when "v:progname" is set. */
18104 vimvars[VV_VERSION].vv_nr = VIM_VERSION_100;
18105
Bram Moolenaare9a41262005-01-15 22:18:47 +000018106 vim_free(vimvars[idx].vv_str);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018107 if (val == NULL)
Bram Moolenaare9a41262005-01-15 22:18:47 +000018108 vimvars[idx].vv_str = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018109 else if (len == -1)
Bram Moolenaare9a41262005-01-15 22:18:47 +000018110 vimvars[idx].vv_str = vim_strsave(val);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018111 else
Bram Moolenaare9a41262005-01-15 22:18:47 +000018112 vimvars[idx].vv_str = vim_strnsave(val, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018113}
18114
18115/*
18116 * Set v:register if needed.
18117 */
18118 void
18119set_reg_var(c)
18120 int c;
18121{
18122 char_u regname;
18123
18124 if (c == 0 || c == ' ')
18125 regname = '"';
18126 else
18127 regname = c;
18128 /* Avoid free/alloc when the value is already right. */
Bram Moolenaare9a41262005-01-15 22:18:47 +000018129 if (vimvars[VV_REG].vv_str == NULL || vimvars[VV_REG].vv_str[0] != c)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018130 set_vim_var_string(VV_REG, &regname, 1);
18131}
18132
18133/*
18134 * Get or set v:exception. If "oldval" == NULL, return the current value.
18135 * Otherwise, restore the value to "oldval" and return NULL.
18136 * Must always be called in pairs to save and restore v:exception! Does not
18137 * take care of memory allocations.
18138 */
18139 char_u *
18140v_exception(oldval)
18141 char_u *oldval;
18142{
18143 if (oldval == NULL)
Bram Moolenaare9a41262005-01-15 22:18:47 +000018144 return vimvars[VV_EXCEPTION].vv_str;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018145
Bram Moolenaare9a41262005-01-15 22:18:47 +000018146 vimvars[VV_EXCEPTION].vv_str = oldval;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018147 return NULL;
18148}
18149
18150/*
18151 * Get or set v:throwpoint. If "oldval" == NULL, return the current value.
18152 * Otherwise, restore the value to "oldval" and return NULL.
18153 * Must always be called in pairs to save and restore v:throwpoint! Does not
18154 * take care of memory allocations.
18155 */
18156 char_u *
18157v_throwpoint(oldval)
18158 char_u *oldval;
18159{
18160 if (oldval == NULL)
Bram Moolenaare9a41262005-01-15 22:18:47 +000018161 return vimvars[VV_THROWPOINT].vv_str;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018162
Bram Moolenaare9a41262005-01-15 22:18:47 +000018163 vimvars[VV_THROWPOINT].vv_str = oldval;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018164 return NULL;
18165}
18166
18167#if defined(FEAT_AUTOCMD) || defined(PROTO)
18168/*
18169 * Set v:cmdarg.
18170 * If "eap" != NULL, use "eap" to generate the value and return the old value.
18171 * If "oldarg" != NULL, restore the value to "oldarg" and return NULL.
18172 * Must always be called in pairs!
18173 */
18174 char_u *
18175set_cmdarg(eap, oldarg)
18176 exarg_T *eap;
18177 char_u *oldarg;
18178{
18179 char_u *oldval;
18180 char_u *newval;
18181 unsigned len;
18182
Bram Moolenaare9a41262005-01-15 22:18:47 +000018183 oldval = vimvars[VV_CMDARG].vv_str;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000018184 if (eap == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018185 {
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000018186 vim_free(oldval);
Bram Moolenaare9a41262005-01-15 22:18:47 +000018187 vimvars[VV_CMDARG].vv_str = oldarg;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000018188 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018189 }
18190
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000018191 if (eap->force_bin == FORCE_BIN)
18192 len = 6;
18193 else if (eap->force_bin == FORCE_NOBIN)
18194 len = 8;
18195 else
18196 len = 0;
Bram Moolenaar910f66f2006-04-05 20:41:53 +000018197
18198 if (eap->read_edit)
18199 len += 7;
18200
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000018201 if (eap->force_ff != 0)
18202 len += (unsigned)STRLEN(eap->cmd + eap->force_ff) + 6;
18203# ifdef FEAT_MBYTE
18204 if (eap->force_enc != 0)
18205 len += (unsigned)STRLEN(eap->cmd + eap->force_enc) + 7;
Bram Moolenaarb2c2efa2005-12-13 20:09:08 +000018206 if (eap->bad_char != 0)
18207 len += (unsigned)STRLEN(eap->cmd + eap->bad_char) + 7;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000018208# endif
18209
18210 newval = alloc(len + 1);
18211 if (newval == NULL)
18212 return NULL;
18213
18214 if (eap->force_bin == FORCE_BIN)
18215 sprintf((char *)newval, " ++bin");
18216 else if (eap->force_bin == FORCE_NOBIN)
18217 sprintf((char *)newval, " ++nobin");
18218 else
18219 *newval = NUL;
Bram Moolenaar910f66f2006-04-05 20:41:53 +000018220
18221 if (eap->read_edit)
18222 STRCAT(newval, " ++edit");
18223
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000018224 if (eap->force_ff != 0)
18225 sprintf((char *)newval + STRLEN(newval), " ++ff=%s",
18226 eap->cmd + eap->force_ff);
18227# ifdef FEAT_MBYTE
18228 if (eap->force_enc != 0)
18229 sprintf((char *)newval + STRLEN(newval), " ++enc=%s",
18230 eap->cmd + eap->force_enc);
Bram Moolenaarb2c2efa2005-12-13 20:09:08 +000018231 if (eap->bad_char != 0)
18232 sprintf((char *)newval + STRLEN(newval), " ++bad=%s",
18233 eap->cmd + eap->bad_char);
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000018234# endif
Bram Moolenaare9a41262005-01-15 22:18:47 +000018235 vimvars[VV_CMDARG].vv_str = newval;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000018236 return oldval;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018237}
18238#endif
18239
18240/*
18241 * Get the value of internal variable "name".
18242 * Return OK or FAIL.
18243 */
18244 static int
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000018245get_var_tv(name, len, rettv, verbose)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018246 char_u *name;
18247 int len; /* length of "name" */
Bram Moolenaar33570922005-01-25 22:26:29 +000018248 typval_T *rettv; /* NULL when only checking existence */
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000018249 int verbose; /* may give error message */
Bram Moolenaar071d4272004-06-13 20:20:40 +000018250{
18251 int ret = OK;
Bram Moolenaar33570922005-01-25 22:26:29 +000018252 typval_T *tv = NULL;
18253 typval_T atv;
18254 dictitem_T *v;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018255 int cc;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018256
18257 /* truncate the name, so that we can use strcmp() */
18258 cc = name[len];
18259 name[len] = NUL;
18260
18261 /*
18262 * Check for "b:changedtick".
18263 */
18264 if (STRCMP(name, "b:changedtick") == 0)
18265 {
Bram Moolenaare9a41262005-01-15 22:18:47 +000018266 atv.v_type = VAR_NUMBER;
18267 atv.vval.v_number = curbuf->b_changedtick;
18268 tv = &atv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018269 }
18270
18271 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +000018272 * Check for user-defined variables.
18273 */
18274 else
18275 {
Bram Moolenaara7043832005-01-21 11:56:39 +000018276 v = find_var(name, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018277 if (v != NULL)
Bram Moolenaar33570922005-01-25 22:26:29 +000018278 tv = &v->di_tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018279 }
18280
Bram Moolenaare9a41262005-01-15 22:18:47 +000018281 if (tv == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018282 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000018283 if (rettv != NULL && verbose)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018284 EMSG2(_(e_undefvar), name);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018285 ret = FAIL;
18286 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018287 else if (rettv != NULL)
Bram Moolenaare9a41262005-01-15 22:18:47 +000018288 copy_tv(tv, rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018289
18290 name[len] = cc;
18291
18292 return ret;
18293}
18294
18295/*
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000018296 * Handle expr[expr], expr[expr:expr] subscript and .name lookup.
18297 * Also handle function call with Funcref variable: func(expr)
18298 * Can all be combined: dict.func(expr)[idx]['func'](expr)
18299 */
18300 static int
18301handle_subscript(arg, rettv, evaluate, verbose)
18302 char_u **arg;
18303 typval_T *rettv;
18304 int evaluate; /* do more than finding the end */
18305 int verbose; /* give error messages */
18306{
18307 int ret = OK;
18308 dict_T *selfdict = NULL;
18309 char_u *s;
18310 int len;
Bram Moolenaard9fba312005-06-26 22:34:35 +000018311 typval_T functv;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000018312
18313 while (ret == OK
18314 && (**arg == '['
18315 || (**arg == '.' && rettv->v_type == VAR_DICT)
18316 || (**arg == '(' && rettv->v_type == VAR_FUNC))
18317 && !vim_iswhite(*(*arg - 1)))
18318 {
18319 if (**arg == '(')
18320 {
Bram Moolenaard9fba312005-06-26 22:34:35 +000018321 /* need to copy the funcref so that we can clear rettv */
18322 functv = *rettv;
18323 rettv->v_type = VAR_UNKNOWN;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000018324
18325 /* Invoke the function. Recursive! */
Bram Moolenaard9fba312005-06-26 22:34:35 +000018326 s = functv.vval.v_string;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000018327 ret = get_func_tv(s, (int)STRLEN(s), rettv, arg,
Bram Moolenaard9fba312005-06-26 22:34:35 +000018328 curwin->w_cursor.lnum, curwin->w_cursor.lnum,
18329 &len, evaluate, selfdict);
18330
18331 /* Clear the funcref afterwards, so that deleting it while
18332 * evaluating the arguments is possible (see test55). */
18333 clear_tv(&functv);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000018334
18335 /* Stop the expression evaluation when immediately aborting on
18336 * error, or when an interrupt occurred or an exception was thrown
18337 * but not caught. */
18338 if (aborting())
18339 {
18340 if (ret == OK)
18341 clear_tv(rettv);
18342 ret = FAIL;
18343 }
18344 dict_unref(selfdict);
18345 selfdict = NULL;
18346 }
18347 else /* **arg == '[' || **arg == '.' */
18348 {
18349 dict_unref(selfdict);
18350 if (rettv->v_type == VAR_DICT)
18351 {
18352 selfdict = rettv->vval.v_dict;
18353 if (selfdict != NULL)
18354 ++selfdict->dv_refcount;
18355 }
18356 else
18357 selfdict = NULL;
18358 if (eval_index(arg, rettv, evaluate, verbose) == FAIL)
18359 {
18360 clear_tv(rettv);
18361 ret = FAIL;
18362 }
18363 }
18364 }
18365 dict_unref(selfdict);
18366 return ret;
18367}
18368
18369/*
Bram Moolenaar8c8de832008-06-24 22:58:06 +000018370 * Allocate memory for a variable type-value, and make it empty (0 or NULL
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018371 * value).
18372 */
Bram Moolenaar33570922005-01-25 22:26:29 +000018373 static typval_T *
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018374alloc_tv()
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018375{
Bram Moolenaar33570922005-01-25 22:26:29 +000018376 return (typval_T *)alloc_clear((unsigned)sizeof(typval_T));
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018377}
18378
18379/*
18380 * Allocate memory for a variable type-value, and assign a string to it.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018381 * The string "s" must have been allocated, it is consumed.
18382 * Return NULL for out of memory, the variable otherwise.
18383 */
Bram Moolenaar33570922005-01-25 22:26:29 +000018384 static typval_T *
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018385alloc_string_tv(s)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018386 char_u *s;
18387{
Bram Moolenaar33570922005-01-25 22:26:29 +000018388 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018389
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018390 rettv = alloc_tv();
18391 if (rettv != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018392 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018393 rettv->v_type = VAR_STRING;
18394 rettv->vval.v_string = s;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018395 }
18396 else
18397 vim_free(s);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018398 return rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018399}
18400
18401/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018402 * Free the memory for a variable type-value.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018403 */
Bram Moolenaar4770d092006-01-12 23:22:24 +000018404 void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018405free_tv(varp)
Bram Moolenaar33570922005-01-25 22:26:29 +000018406 typval_T *varp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018407{
18408 if (varp != NULL)
18409 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018410 switch (varp->v_type)
18411 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018412 case VAR_FUNC:
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018413 func_unref(varp->vval.v_string);
18414 /*FALLTHROUGH*/
18415 case VAR_STRING:
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018416 vim_free(varp->vval.v_string);
18417 break;
18418 case VAR_LIST:
18419 list_unref(varp->vval.v_list);
18420 break;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018421 case VAR_DICT:
18422 dict_unref(varp->vval.v_dict);
18423 break;
Bram Moolenaar758711c2005-02-02 23:11:38 +000018424 case VAR_NUMBER:
Bram Moolenaar8c8de832008-06-24 22:58:06 +000018425#ifdef FEAT_FLOAT
18426 case VAR_FLOAT:
18427#endif
Bram Moolenaar758711c2005-02-02 23:11:38 +000018428 case VAR_UNKNOWN:
18429 break;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018430 default:
Bram Moolenaar758711c2005-02-02 23:11:38 +000018431 EMSG2(_(e_intern2), "free_tv()");
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018432 break;
18433 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000018434 vim_free(varp);
18435 }
18436}
18437
18438/*
18439 * Free the memory for a variable value and set the value to NULL or 0.
18440 */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000018441 void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018442clear_tv(varp)
Bram Moolenaar33570922005-01-25 22:26:29 +000018443 typval_T *varp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018444{
18445 if (varp != NULL)
18446 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018447 switch (varp->v_type)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018448 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018449 case VAR_FUNC:
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018450 func_unref(varp->vval.v_string);
18451 /*FALLTHROUGH*/
18452 case VAR_STRING:
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018453 vim_free(varp->vval.v_string);
18454 varp->vval.v_string = NULL;
18455 break;
18456 case VAR_LIST:
18457 list_unref(varp->vval.v_list);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000018458 varp->vval.v_list = NULL;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018459 break;
Bram Moolenaar8c711452005-01-14 21:53:12 +000018460 case VAR_DICT:
18461 dict_unref(varp->vval.v_dict);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000018462 varp->vval.v_dict = NULL;
Bram Moolenaar8c711452005-01-14 21:53:12 +000018463 break;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018464 case VAR_NUMBER:
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018465 varp->vval.v_number = 0;
18466 break;
Bram Moolenaar8c8de832008-06-24 22:58:06 +000018467#ifdef FEAT_FLOAT
18468 case VAR_FLOAT:
18469 varp->vval.v_float = 0.0;
18470 break;
18471#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018472 case VAR_UNKNOWN:
18473 break;
18474 default:
18475 EMSG2(_(e_intern2), "clear_tv()");
Bram Moolenaar071d4272004-06-13 20:20:40 +000018476 }
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000018477 varp->v_lock = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018478 }
18479}
18480
18481/*
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018482 * Set the value of a variable to NULL without freeing items.
18483 */
18484 static void
18485init_tv(varp)
Bram Moolenaar33570922005-01-25 22:26:29 +000018486 typval_T *varp;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018487{
18488 if (varp != NULL)
Bram Moolenaar33570922005-01-25 22:26:29 +000018489 vim_memset(varp, 0, sizeof(typval_T));
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018490}
18491
18492/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000018493 * Get the number value of a variable.
18494 * If it is a String variable, uses vim_str2nr().
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018495 * For incompatible types, return 0.
18496 * get_tv_number_chk() is similar to get_tv_number(), but informs the
18497 * caller of incompatible types: it sets *denote to TRUE if "denote"
18498 * is not NULL or returns -1 otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018499 */
18500 static long
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018501get_tv_number(varp)
Bram Moolenaar33570922005-01-25 22:26:29 +000018502 typval_T *varp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018503{
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018504 int error = FALSE;
18505
18506 return get_tv_number_chk(varp, &error); /* return 0L on error */
18507}
18508
Bram Moolenaar4be06f92005-07-29 22:36:03 +000018509 long
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018510get_tv_number_chk(varp, denote)
18511 typval_T *varp;
18512 int *denote;
18513{
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018514 long n = 0L;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018515
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018516 switch (varp->v_type)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018517 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018518 case VAR_NUMBER:
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018519 return (long)(varp->vval.v_number);
Bram Moolenaar8c8de832008-06-24 22:58:06 +000018520#ifdef FEAT_FLOAT
18521 case VAR_FLOAT:
Bram Moolenaared0e7452008-06-27 19:17:34 +000018522 EMSG(_("E805: Using a Float as a Number"));
Bram Moolenaar8c8de832008-06-24 22:58:06 +000018523 break;
18524#endif
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018525 case VAR_FUNC:
Bram Moolenaared0e7452008-06-27 19:17:34 +000018526 EMSG(_("E703: Using a Funcref as a Number"));
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018527 break;
18528 case VAR_STRING:
18529 if (varp->vval.v_string != NULL)
18530 vim_str2nr(varp->vval.v_string, NULL, NULL,
18531 TRUE, TRUE, &n, NULL);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018532 return n;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000018533 case VAR_LIST:
Bram Moolenaared0e7452008-06-27 19:17:34 +000018534 EMSG(_("E745: Using a List as a Number"));
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000018535 break;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018536 case VAR_DICT:
Bram Moolenaared0e7452008-06-27 19:17:34 +000018537 EMSG(_("E728: Using a Dictionary as a Number"));
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018538 break;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018539 default:
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018540 EMSG2(_(e_intern2), "get_tv_number()");
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018541 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018542 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018543 if (denote == NULL) /* useful for values that must be unsigned */
18544 n = -1;
18545 else
18546 *denote = TRUE;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018547 return n;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018548}
18549
18550/*
Bram Moolenaar661b1822005-07-28 22:36:45 +000018551 * Get the lnum from the first argument.
18552 * Also accepts ".", "$", etc., but that only works for the current buffer.
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018553 * Returns -1 on error.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018554 */
18555 static linenr_T
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018556get_tv_lnum(argvars)
Bram Moolenaar33570922005-01-25 22:26:29 +000018557 typval_T *argvars;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018558{
Bram Moolenaar33570922005-01-25 22:26:29 +000018559 typval_T rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018560 linenr_T lnum;
18561
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018562 lnum = get_tv_number_chk(&argvars[0], NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018563 if (lnum == 0) /* no valid number, try using line() */
18564 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018565 rettv.v_type = VAR_NUMBER;
18566 f_line(argvars, &rettv);
18567 lnum = rettv.vval.v_number;
18568 clear_tv(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018569 }
18570 return lnum;
18571}
18572
18573/*
Bram Moolenaar661b1822005-07-28 22:36:45 +000018574 * Get the lnum from the first argument.
18575 * Also accepts "$", then "buf" is used.
18576 * Returns 0 on error.
18577 */
18578 static linenr_T
18579get_tv_lnum_buf(argvars, buf)
18580 typval_T *argvars;
18581 buf_T *buf;
18582{
18583 if (argvars[0].v_type == VAR_STRING
18584 && argvars[0].vval.v_string != NULL
18585 && argvars[0].vval.v_string[0] == '$'
18586 && buf != NULL)
18587 return buf->b_ml.ml_line_count;
18588 return get_tv_number_chk(&argvars[0], NULL);
18589}
18590
18591/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000018592 * Get the string value of a variable.
18593 * If it is a Number variable, the number is converted into a string.
Bram Moolenaara7043832005-01-21 11:56:39 +000018594 * get_tv_string() uses a single, static buffer. YOU CAN ONLY USE IT ONCE!
18595 * get_tv_string_buf() uses a given buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018596 * If the String variable has never been set, return an empty string.
18597 * Never returns NULL;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018598 * get_tv_string_chk() and get_tv_string_buf_chk() are similar, but return
18599 * NULL on error.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018600 */
18601 static char_u *
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018602get_tv_string(varp)
Bram Moolenaar33570922005-01-25 22:26:29 +000018603 typval_T *varp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018604{
18605 static char_u mybuf[NUMBUFLEN];
18606
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018607 return get_tv_string_buf(varp, mybuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018608}
18609
18610 static char_u *
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018611get_tv_string_buf(varp, buf)
Bram Moolenaar33570922005-01-25 22:26:29 +000018612 typval_T *varp;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018613 char_u *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018614{
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018615 char_u *res = get_tv_string_buf_chk(varp, buf);
18616
18617 return res != NULL ? res : (char_u *)"";
18618}
18619
Bram Moolenaar4be06f92005-07-29 22:36:03 +000018620 char_u *
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018621get_tv_string_chk(varp)
18622 typval_T *varp;
18623{
18624 static char_u mybuf[NUMBUFLEN];
18625
18626 return get_tv_string_buf_chk(varp, mybuf);
18627}
18628
18629 static char_u *
18630get_tv_string_buf_chk(varp, buf)
18631 typval_T *varp;
18632 char_u *buf;
18633{
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018634 switch (varp->v_type)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018635 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018636 case VAR_NUMBER:
18637 sprintf((char *)buf, "%ld", (long)varp->vval.v_number);
18638 return buf;
18639 case VAR_FUNC:
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018640 EMSG(_("E729: using Funcref as a String"));
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018641 break;
18642 case VAR_LIST:
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018643 EMSG(_("E730: using List as a String"));
Bram Moolenaar8c711452005-01-14 21:53:12 +000018644 break;
18645 case VAR_DICT:
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018646 EMSG(_("E731: using Dictionary as a String"));
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018647 break;
Bram Moolenaar8c8de832008-06-24 22:58:06 +000018648#ifdef FEAT_FLOAT
18649 case VAR_FLOAT:
18650 EMSG(_("E806: using Float as a String"));
18651 break;
18652#endif
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018653 case VAR_STRING:
18654 if (varp->vval.v_string != NULL)
18655 return varp->vval.v_string;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018656 return (char_u *)"";
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018657 default:
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018658 EMSG2(_(e_intern2), "get_tv_string_buf()");
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018659 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018660 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018661 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018662}
18663
18664/*
18665 * Find variable "name" in the list of variables.
18666 * Return a pointer to it if found, NULL if not found.
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018667 * Careful: "a:0" variables don't have a name.
Bram Moolenaara7043832005-01-21 11:56:39 +000018668 * When "htp" is not NULL we are writing to the variable, set "htp" to the
Bram Moolenaar33570922005-01-25 22:26:29 +000018669 * hashtab_T used.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018670 */
Bram Moolenaar33570922005-01-25 22:26:29 +000018671 static dictitem_T *
Bram Moolenaara7043832005-01-21 11:56:39 +000018672find_var(name, htp)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018673 char_u *name;
Bram Moolenaar33570922005-01-25 22:26:29 +000018674 hashtab_T **htp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018675{
Bram Moolenaar071d4272004-06-13 20:20:40 +000018676 char_u *varname;
Bram Moolenaar33570922005-01-25 22:26:29 +000018677 hashtab_T *ht;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018678
Bram Moolenaara7043832005-01-21 11:56:39 +000018679 ht = find_var_ht(name, &varname);
18680 if (htp != NULL)
18681 *htp = ht;
18682 if (ht == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018683 return NULL;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000018684 return find_var_in_ht(ht, varname, htp != NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018685}
18686
18687/*
Bram Moolenaar33570922005-01-25 22:26:29 +000018688 * Find variable "varname" in hashtab "ht".
Bram Moolenaara7043832005-01-21 11:56:39 +000018689 * Returns NULL if not found.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018690 */
Bram Moolenaar33570922005-01-25 22:26:29 +000018691 static dictitem_T *
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000018692find_var_in_ht(ht, varname, writing)
Bram Moolenaar33570922005-01-25 22:26:29 +000018693 hashtab_T *ht;
Bram Moolenaara7043832005-01-21 11:56:39 +000018694 char_u *varname;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000018695 int writing;
Bram Moolenaara7043832005-01-21 11:56:39 +000018696{
Bram Moolenaar33570922005-01-25 22:26:29 +000018697 hashitem_T *hi;
18698
18699 if (*varname == NUL)
18700 {
18701 /* Must be something like "s:", otherwise "ht" would be NULL. */
18702 switch (varname[-2])
18703 {
18704 case 's': return &SCRIPT_SV(current_SID).sv_var;
18705 case 'g': return &globvars_var;
18706 case 'v': return &vimvars_var;
18707 case 'b': return &curbuf->b_bufvar;
18708 case 'w': return &curwin->w_winvar;
Bram Moolenaar910f66f2006-04-05 20:41:53 +000018709#ifdef FEAT_WINDOWS
18710 case 't': return &curtab->tp_winvar;
18711#endif
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +000018712 case 'l': return current_funccal == NULL
18713 ? NULL : &current_funccal->l_vars_var;
18714 case 'a': return current_funccal == NULL
18715 ? NULL : &current_funccal->l_avars_var;
Bram Moolenaar33570922005-01-25 22:26:29 +000018716 }
18717 return NULL;
18718 }
Bram Moolenaara7043832005-01-21 11:56:39 +000018719
18720 hi = hash_find(ht, varname);
18721 if (HASHITEM_EMPTY(hi))
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000018722 {
18723 /* For global variables we may try auto-loading the script. If it
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000018724 * worked find the variable again. Don't auto-load a script if it was
18725 * loaded already, otherwise it would be loaded every time when
18726 * checking if a function name is a Funcref variable. */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000018727 if (ht == &globvarht && !writing
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000018728 && script_autoload(varname, FALSE) && !aborting())
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000018729 hi = hash_find(ht, varname);
18730 if (HASHITEM_EMPTY(hi))
18731 return NULL;
18732 }
Bram Moolenaar33570922005-01-25 22:26:29 +000018733 return HI2DI(hi);
Bram Moolenaara7043832005-01-21 11:56:39 +000018734}
18735
18736/*
Bram Moolenaar33570922005-01-25 22:26:29 +000018737 * Find the hashtab used for a variable name.
Bram Moolenaara7043832005-01-21 11:56:39 +000018738 * Set "varname" to the start of name without ':'.
18739 */
Bram Moolenaar33570922005-01-25 22:26:29 +000018740 static hashtab_T *
Bram Moolenaara7043832005-01-21 11:56:39 +000018741find_var_ht(name, varname)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018742 char_u *name;
18743 char_u **varname;
18744{
Bram Moolenaar75c50c42005-06-04 22:06:24 +000018745 hashitem_T *hi;
18746
Bram Moolenaar071d4272004-06-13 20:20:40 +000018747 if (name[1] != ':')
18748 {
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000018749 /* The name must not start with a colon or #. */
18750 if (name[0] == ':' || name[0] == AUTOLOAD_CHAR)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018751 return NULL;
18752 *varname = name;
Bram Moolenaar532c7802005-01-27 14:44:31 +000018753
18754 /* "version" is "v:version" in all scopes */
Bram Moolenaar75c50c42005-06-04 22:06:24 +000018755 hi = hash_find(&compat_hashtab, name);
18756 if (!HASHITEM_EMPTY(hi))
Bram Moolenaar532c7802005-01-27 14:44:31 +000018757 return &compat_hashtab;
18758
Bram Moolenaar071d4272004-06-13 20:20:40 +000018759 if (current_funccal == NULL)
Bram Moolenaar33570922005-01-25 22:26:29 +000018760 return &globvarht; /* global variable */
18761 return &current_funccal->l_vars.dv_hashtab; /* l: variable */
Bram Moolenaar071d4272004-06-13 20:20:40 +000018762 }
18763 *varname = name + 2;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000018764 if (*name == 'g') /* global variable */
18765 return &globvarht;
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000018766 /* There must be no ':' or '#' in the rest of the name, unless g: is used
18767 */
18768 if (vim_strchr(name + 2, ':') != NULL
18769 || vim_strchr(name + 2, AUTOLOAD_CHAR) != NULL)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000018770 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018771 if (*name == 'b') /* buffer variable */
Bram Moolenaar33570922005-01-25 22:26:29 +000018772 return &curbuf->b_vars.dv_hashtab;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018773 if (*name == 'w') /* window variable */
Bram Moolenaar33570922005-01-25 22:26:29 +000018774 return &curwin->w_vars.dv_hashtab;
Bram Moolenaar910f66f2006-04-05 20:41:53 +000018775#ifdef FEAT_WINDOWS
18776 if (*name == 't') /* tab page variable */
18777 return &curtab->tp_vars.dv_hashtab;
18778#endif
Bram Moolenaar33570922005-01-25 22:26:29 +000018779 if (*name == 'v') /* v: variable */
18780 return &vimvarht;
18781 if (*name == 'a' && current_funccal != NULL) /* function argument */
18782 return &current_funccal->l_avars.dv_hashtab;
18783 if (*name == 'l' && current_funccal != NULL) /* local function variable */
18784 return &current_funccal->l_vars.dv_hashtab;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018785 if (*name == 's' /* script variable */
18786 && current_SID > 0 && current_SID <= ga_scripts.ga_len)
18787 return &SCRIPT_VARS(current_SID);
18788 return NULL;
18789}
18790
18791/*
18792 * Get the string value of a (global/local) variable.
18793 * Returns NULL when it doesn't exist.
18794 */
18795 char_u *
18796get_var_value(name)
18797 char_u *name;
18798{
Bram Moolenaar33570922005-01-25 22:26:29 +000018799 dictitem_T *v;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018800
Bram Moolenaara7043832005-01-21 11:56:39 +000018801 v = find_var(name, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018802 if (v == NULL)
18803 return NULL;
Bram Moolenaar33570922005-01-25 22:26:29 +000018804 return get_tv_string(&v->di_tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018805}
18806
18807/*
Bram Moolenaar33570922005-01-25 22:26:29 +000018808 * Allocate a new hashtab for a sourced script. It will be used while
Bram Moolenaar071d4272004-06-13 20:20:40 +000018809 * sourcing this script and when executing functions defined in the script.
18810 */
18811 void
18812new_script_vars(id)
18813 scid_T id;
18814{
Bram Moolenaara7043832005-01-21 11:56:39 +000018815 int i;
Bram Moolenaar33570922005-01-25 22:26:29 +000018816 hashtab_T *ht;
18817 scriptvar_T *sv;
Bram Moolenaara7043832005-01-21 11:56:39 +000018818
Bram Moolenaar071d4272004-06-13 20:20:40 +000018819 if (ga_grow(&ga_scripts, (int)(id - ga_scripts.ga_len)) == OK)
18820 {
Bram Moolenaara7043832005-01-21 11:56:39 +000018821 /* Re-allocating ga_data means that an ht_array pointing to
18822 * ht_smallarray becomes invalid. We can recognize this: ht_mask is
Bram Moolenaar33570922005-01-25 22:26:29 +000018823 * at its init value. Also reset "v_dict", it's always the same. */
Bram Moolenaara7043832005-01-21 11:56:39 +000018824 for (i = 1; i <= ga_scripts.ga_len; ++i)
18825 {
18826 ht = &SCRIPT_VARS(i);
18827 if (ht->ht_mask == HT_INIT_SIZE - 1)
18828 ht->ht_array = ht->ht_smallarray;
Bram Moolenaar33570922005-01-25 22:26:29 +000018829 sv = &SCRIPT_SV(i);
18830 sv->sv_var.di_tv.vval.v_dict = &sv->sv_dict;
Bram Moolenaara7043832005-01-21 11:56:39 +000018831 }
18832
Bram Moolenaar071d4272004-06-13 20:20:40 +000018833 while (ga_scripts.ga_len < id)
18834 {
Bram Moolenaar33570922005-01-25 22:26:29 +000018835 sv = &SCRIPT_SV(ga_scripts.ga_len + 1);
18836 init_var_dict(&sv->sv_dict, &sv->sv_var);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018837 ++ga_scripts.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018838 }
18839 }
18840}
18841
18842/*
Bram Moolenaar33570922005-01-25 22:26:29 +000018843 * Initialize dictionary "dict" as a scope and set variable "dict_var" to
18844 * point to it.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018845 */
18846 void
Bram Moolenaar33570922005-01-25 22:26:29 +000018847init_var_dict(dict, dict_var)
18848 dict_T *dict;
18849 dictitem_T *dict_var;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018850{
Bram Moolenaar33570922005-01-25 22:26:29 +000018851 hash_init(&dict->dv_hashtab);
18852 dict->dv_refcount = 99999;
18853 dict_var->di_tv.vval.v_dict = dict;
18854 dict_var->di_tv.v_type = VAR_DICT;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000018855 dict_var->di_tv.v_lock = VAR_FIXED;
Bram Moolenaar33570922005-01-25 22:26:29 +000018856 dict_var->di_flags = DI_FLAGS_RO | DI_FLAGS_FIX;
18857 dict_var->di_key[0] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018858}
18859
18860/*
18861 * Clean up a list of internal variables.
Bram Moolenaar33570922005-01-25 22:26:29 +000018862 * Frees all allocated variables and the value they contain.
18863 * Clears hashtab "ht", does not free it.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018864 */
18865 void
Bram Moolenaara7043832005-01-21 11:56:39 +000018866vars_clear(ht)
Bram Moolenaar33570922005-01-25 22:26:29 +000018867 hashtab_T *ht;
18868{
18869 vars_clear_ext(ht, TRUE);
18870}
18871
18872/*
18873 * Like vars_clear(), but only free the value if "free_val" is TRUE.
18874 */
18875 static void
18876vars_clear_ext(ht, free_val)
18877 hashtab_T *ht;
18878 int free_val;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018879{
Bram Moolenaara7043832005-01-21 11:56:39 +000018880 int todo;
Bram Moolenaar33570922005-01-25 22:26:29 +000018881 hashitem_T *hi;
18882 dictitem_T *v;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018883
Bram Moolenaar33570922005-01-25 22:26:29 +000018884 hash_lock(ht);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000018885 todo = (int)ht->ht_used;
Bram Moolenaara7043832005-01-21 11:56:39 +000018886 for (hi = ht->ht_array; todo > 0; ++hi)
18887 {
18888 if (!HASHITEM_EMPTY(hi))
18889 {
18890 --todo;
18891
Bram Moolenaar33570922005-01-25 22:26:29 +000018892 /* Free the variable. Don't remove it from the hashtab,
Bram Moolenaara7043832005-01-21 11:56:39 +000018893 * ht_array might change then. hash_clear() takes care of it
18894 * later. */
Bram Moolenaar33570922005-01-25 22:26:29 +000018895 v = HI2DI(hi);
18896 if (free_val)
18897 clear_tv(&v->di_tv);
18898 if ((v->di_flags & DI_FLAGS_FIX) == 0)
18899 vim_free(v);
Bram Moolenaara7043832005-01-21 11:56:39 +000018900 }
18901 }
18902 hash_clear(ht);
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +000018903 ht->ht_used = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018904}
18905
Bram Moolenaara7043832005-01-21 11:56:39 +000018906/*
Bram Moolenaar33570922005-01-25 22:26:29 +000018907 * Delete a variable from hashtab "ht" at item "hi".
18908 * Clear the variable value and free the dictitem.
Bram Moolenaara7043832005-01-21 11:56:39 +000018909 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000018910 static void
Bram Moolenaara7043832005-01-21 11:56:39 +000018911delete_var(ht, hi)
Bram Moolenaar33570922005-01-25 22:26:29 +000018912 hashtab_T *ht;
18913 hashitem_T *hi;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018914{
Bram Moolenaar33570922005-01-25 22:26:29 +000018915 dictitem_T *di = HI2DI(hi);
Bram Moolenaara7043832005-01-21 11:56:39 +000018916
18917 hash_remove(ht, hi);
Bram Moolenaar33570922005-01-25 22:26:29 +000018918 clear_tv(&di->di_tv);
18919 vim_free(di);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018920}
18921
18922/*
18923 * List the value of one internal variable.
18924 */
18925 static void
Bram Moolenaar7d61a922007-08-30 09:12:23 +000018926list_one_var(v, prefix, first)
Bram Moolenaar33570922005-01-25 22:26:29 +000018927 dictitem_T *v;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018928 char_u *prefix;
Bram Moolenaar7d61a922007-08-30 09:12:23 +000018929 int *first;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018930{
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018931 char_u *tofree;
18932 char_u *s;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000018933 char_u numbuf[NUMBUFLEN];
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018934
Bram Moolenaarb71eaae2006-01-20 23:10:18 +000018935 s = echo_string(&v->di_tv, &tofree, numbuf, ++current_copyID);
Bram Moolenaar33570922005-01-25 22:26:29 +000018936 list_one_var_a(prefix, v->di_key, v->di_tv.v_type,
Bram Moolenaar7d61a922007-08-30 09:12:23 +000018937 s == NULL ? (char_u *)"" : s, first);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018938 vim_free(tofree);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018939}
18940
Bram Moolenaar071d4272004-06-13 20:20:40 +000018941 static void
Bram Moolenaar7d61a922007-08-30 09:12:23 +000018942list_one_var_a(prefix, name, type, string, first)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018943 char_u *prefix;
18944 char_u *name;
18945 int type;
18946 char_u *string;
Bram Moolenaar7d61a922007-08-30 09:12:23 +000018947 int *first; /* when TRUE clear rest of screen and set to FALSE */
Bram Moolenaar071d4272004-06-13 20:20:40 +000018948{
Bram Moolenaar31859182007-08-14 20:41:13 +000018949 /* don't use msg() or msg_attr() to avoid overwriting "v:statusmsg" */
18950 msg_start();
18951 msg_puts(prefix);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018952 if (name != NULL) /* "a:" vars don't have a name stored */
18953 msg_puts(name);
18954 msg_putchar(' ');
18955 msg_advance(22);
18956 if (type == VAR_NUMBER)
18957 msg_putchar('#');
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018958 else if (type == VAR_FUNC)
18959 msg_putchar('*');
18960 else if (type == VAR_LIST)
18961 {
18962 msg_putchar('[');
18963 if (*string == '[')
18964 ++string;
18965 }
Bram Moolenaar8c711452005-01-14 21:53:12 +000018966 else if (type == VAR_DICT)
18967 {
18968 msg_putchar('{');
18969 if (*string == '{')
18970 ++string;
18971 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000018972 else
18973 msg_putchar(' ');
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018974
Bram Moolenaar071d4272004-06-13 20:20:40 +000018975 msg_outtrans(string);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018976
18977 if (type == VAR_FUNC)
18978 msg_puts((char_u *)"()");
Bram Moolenaar7d61a922007-08-30 09:12:23 +000018979 if (*first)
18980 {
18981 msg_clr_eos();
18982 *first = FALSE;
18983 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000018984}
18985
18986/*
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018987 * Set variable "name" to value in "tv".
Bram Moolenaar071d4272004-06-13 20:20:40 +000018988 * If the variable already exists, the value is updated.
18989 * Otherwise the variable is created.
18990 */
18991 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018992set_var(name, tv, copy)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018993 char_u *name;
Bram Moolenaar33570922005-01-25 22:26:29 +000018994 typval_T *tv;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018995 int copy; /* make copy of value in "tv" */
Bram Moolenaar071d4272004-06-13 20:20:40 +000018996{
Bram Moolenaar33570922005-01-25 22:26:29 +000018997 dictitem_T *v;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018998 char_u *varname;
Bram Moolenaar33570922005-01-25 22:26:29 +000018999 hashtab_T *ht;
Bram Moolenaar92124a32005-06-17 22:03:40 +000019000 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019001
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019002 if (tv->v_type == VAR_FUNC)
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019003 {
19004 if (!(vim_strchr((char_u *)"wbs", name[0]) != NULL && name[1] == ':')
19005 && !ASCII_ISUPPER((name[0] != NUL && name[1] == ':')
19006 ? name[2] : name[0]))
19007 {
Bram Moolenaare49b69a2005-01-08 16:11:57 +000019008 EMSG2(_("E704: Funcref variable name must start with a capital: %s"), name);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019009 return;
19010 }
19011 if (function_exists(name))
19012 {
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +000019013 EMSG2(_("E705: Variable name conflicts with existing function: %s"),
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019014 name);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019015 return;
19016 }
19017 }
19018
Bram Moolenaara7043832005-01-21 11:56:39 +000019019 ht = find_var_ht(name, &varname);
Bram Moolenaar33570922005-01-25 22:26:29 +000019020 if (ht == NULL || *varname == NUL)
Bram Moolenaara7043832005-01-21 11:56:39 +000019021 {
Bram Moolenaar92124a32005-06-17 22:03:40 +000019022 EMSG2(_(e_illvar), name);
Bram Moolenaara7043832005-01-21 11:56:39 +000019023 return;
19024 }
19025
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000019026 v = find_var_in_ht(ht, varname, TRUE);
Bram Moolenaar33570922005-01-25 22:26:29 +000019027 if (v != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019028 {
Bram Moolenaar33570922005-01-25 22:26:29 +000019029 /* existing variable, need to clear the value */
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000019030 if (var_check_ro(v->di_flags, name)
19031 || tv_check_lock(v->di_tv.v_lock, name))
Bram Moolenaar33570922005-01-25 22:26:29 +000019032 return;
19033 if (v->di_tv.v_type != tv->v_type
19034 && !((v->di_tv.v_type == VAR_STRING
19035 || v->di_tv.v_type == VAR_NUMBER)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019036 && (tv->v_type == VAR_STRING
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019037 || tv->v_type == VAR_NUMBER))
19038#ifdef FEAT_FLOAT
19039 && !((v->di_tv.v_type == VAR_NUMBER
19040 || v->di_tv.v_type == VAR_FLOAT)
19041 && (tv->v_type == VAR_NUMBER
19042 || tv->v_type == VAR_FLOAT))
19043#endif
19044 )
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019045 {
Bram Moolenaare49b69a2005-01-08 16:11:57 +000019046 EMSG2(_("E706: Variable type mismatch for: %s"), name);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019047 return;
19048 }
Bram Moolenaar33570922005-01-25 22:26:29 +000019049
19050 /*
Bram Moolenaar758711c2005-02-02 23:11:38 +000019051 * Handle setting internal v: variables separately: we don't change
19052 * the type.
Bram Moolenaar33570922005-01-25 22:26:29 +000019053 */
19054 if (ht == &vimvarht)
19055 {
19056 if (v->di_tv.v_type == VAR_STRING)
19057 {
19058 vim_free(v->di_tv.vval.v_string);
19059 if (copy || tv->v_type != VAR_STRING)
19060 v->di_tv.vval.v_string = vim_strsave(get_tv_string(tv));
19061 else
19062 {
19063 /* Take over the string to avoid an extra alloc/free. */
19064 v->di_tv.vval.v_string = tv->vval.v_string;
19065 tv->vval.v_string = NULL;
19066 }
19067 }
19068 else if (v->di_tv.v_type != VAR_NUMBER)
19069 EMSG2(_(e_intern2), "set_var()");
19070 else
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019071 {
Bram Moolenaar33570922005-01-25 22:26:29 +000019072 v->di_tv.vval.v_number = get_tv_number(tv);
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019073 if (STRCMP(varname, "searchforward") == 0)
19074 set_search_direction(v->di_tv.vval.v_number ? '/' : '?');
19075 }
Bram Moolenaar33570922005-01-25 22:26:29 +000019076 return;
19077 }
19078
19079 clear_tv(&v->di_tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019080 }
19081 else /* add a new variable */
19082 {
Bram Moolenaar5fcc3fe2006-06-22 15:35:14 +000019083 /* Can't add "v:" variable. */
19084 if (ht == &vimvarht)
19085 {
19086 EMSG2(_(e_illvar), name);
19087 return;
19088 }
19089
Bram Moolenaar92124a32005-06-17 22:03:40 +000019090 /* Make sure the variable name is valid. */
19091 for (p = varname; *p != NUL; ++p)
Bram Moolenaara5792f52005-11-23 21:25:05 +000019092 if (!eval_isnamec1(*p) && (p == varname || !VIM_ISDIGIT(*p))
19093 && *p != AUTOLOAD_CHAR)
Bram Moolenaar92124a32005-06-17 22:03:40 +000019094 {
19095 EMSG2(_(e_illvar), varname);
19096 return;
19097 }
19098
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000019099 v = (dictitem_T *)alloc((unsigned)(sizeof(dictitem_T)
19100 + STRLEN(varname)));
Bram Moolenaara7043832005-01-21 11:56:39 +000019101 if (v == NULL)
19102 return;
Bram Moolenaar33570922005-01-25 22:26:29 +000019103 STRCPY(v->di_key, varname);
Bram Moolenaar33570922005-01-25 22:26:29 +000019104 if (hash_add(ht, DI2HIKEY(v)) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019105 {
Bram Moolenaara7043832005-01-21 11:56:39 +000019106 vim_free(v);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019107 return;
19108 }
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000019109 v->di_flags = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019110 }
Bram Moolenaara7043832005-01-21 11:56:39 +000019111
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019112 if (copy || tv->v_type == VAR_NUMBER || tv->v_type == VAR_FLOAT)
Bram Moolenaar33570922005-01-25 22:26:29 +000019113 copy_tv(tv, &v->di_tv);
Bram Moolenaar1c2fda22005-01-02 11:43:19 +000019114 else
19115 {
Bram Moolenaar33570922005-01-25 22:26:29 +000019116 v->di_tv = *tv;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000019117 v->di_tv.v_lock = 0;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019118 init_tv(tv);
Bram Moolenaar1c2fda22005-01-02 11:43:19 +000019119 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019120}
19121
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019122/*
Bram Moolenaar4e957af2006-09-02 11:41:07 +000019123 * Return TRUE if di_flags "flags" indicates variable "name" is read-only.
Bram Moolenaar33570922005-01-25 22:26:29 +000019124 * Also give an error message.
19125 */
19126 static int
19127var_check_ro(flags, name)
19128 int flags;
19129 char_u *name;
19130{
19131 if (flags & DI_FLAGS_RO)
19132 {
19133 EMSG2(_(e_readonlyvar), name);
19134 return TRUE;
19135 }
19136 if ((flags & DI_FLAGS_RO_SBX) && sandbox)
19137 {
19138 EMSG2(_(e_readonlysbx), name);
19139 return TRUE;
19140 }
19141 return FALSE;
19142}
19143
19144/*
Bram Moolenaar4e957af2006-09-02 11:41:07 +000019145 * Return TRUE if di_flags "flags" indicates variable "name" is fixed.
19146 * Also give an error message.
19147 */
19148 static int
19149var_check_fixed(flags, name)
19150 int flags;
19151 char_u *name;
19152{
19153 if (flags & DI_FLAGS_FIX)
19154 {
19155 EMSG2(_("E795: Cannot delete variable %s"), name);
19156 return TRUE;
19157 }
19158 return FALSE;
19159}
19160
19161/*
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000019162 * Return TRUE if typeval "tv" is set to be locked (immutable).
19163 * Also give an error message, using "name".
19164 */
19165 static int
19166tv_check_lock(lock, name)
19167 int lock;
19168 char_u *name;
19169{
19170 if (lock & VAR_LOCKED)
19171 {
19172 EMSG2(_("E741: Value is locked: %s"),
19173 name == NULL ? (char_u *)_("Unknown") : name);
19174 return TRUE;
19175 }
19176 if (lock & VAR_FIXED)
19177 {
19178 EMSG2(_("E742: Cannot change value of %s"),
19179 name == NULL ? (char_u *)_("Unknown") : name);
19180 return TRUE;
19181 }
19182 return FALSE;
19183}
19184
19185/*
Bram Moolenaar33570922005-01-25 22:26:29 +000019186 * Copy the values from typval_T "from" to typval_T "to".
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019187 * When needed allocates string or increases reference count.
Bram Moolenaare9a41262005-01-15 22:18:47 +000019188 * Does not make a copy of a list or dict but copies the reference!
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019189 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000019190 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019191copy_tv(from, to)
Bram Moolenaar33570922005-01-25 22:26:29 +000019192 typval_T *from;
19193 typval_T *to;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019194{
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019195 to->v_type = from->v_type;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000019196 to->v_lock = 0;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019197 switch (from->v_type)
19198 {
19199 case VAR_NUMBER:
19200 to->vval.v_number = from->vval.v_number;
19201 break;
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019202#ifdef FEAT_FLOAT
19203 case VAR_FLOAT:
19204 to->vval.v_float = from->vval.v_float;
19205 break;
19206#endif
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019207 case VAR_STRING:
19208 case VAR_FUNC:
19209 if (from->vval.v_string == NULL)
19210 to->vval.v_string = NULL;
19211 else
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019212 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019213 to->vval.v_string = vim_strsave(from->vval.v_string);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019214 if (from->v_type == VAR_FUNC)
19215 func_ref(to->vval.v_string);
19216 }
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019217 break;
19218 case VAR_LIST:
19219 if (from->vval.v_list == NULL)
19220 to->vval.v_list = NULL;
19221 else
19222 {
19223 to->vval.v_list = from->vval.v_list;
19224 ++to->vval.v_list->lv_refcount;
19225 }
19226 break;
Bram Moolenaar8c711452005-01-14 21:53:12 +000019227 case VAR_DICT:
19228 if (from->vval.v_dict == NULL)
19229 to->vval.v_dict = NULL;
19230 else
19231 {
19232 to->vval.v_dict = from->vval.v_dict;
19233 ++to->vval.v_dict->dv_refcount;
19234 }
19235 break;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019236 default:
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019237 EMSG2(_(e_intern2), "copy_tv()");
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019238 break;
19239 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019240}
19241
19242/*
Bram Moolenaare9a41262005-01-15 22:18:47 +000019243 * Make a copy of an item.
19244 * Lists and Dictionaries are also copied. A deep copy if "deep" is set.
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019245 * For deepcopy() "copyID" is zero for a full copy or the ID for when a
19246 * reference to an already copied list/dict can be used.
19247 * Returns FAIL or OK.
Bram Moolenaare9a41262005-01-15 22:18:47 +000019248 */
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019249 static int
19250item_copy(from, to, deep, copyID)
Bram Moolenaar33570922005-01-25 22:26:29 +000019251 typval_T *from;
19252 typval_T *to;
Bram Moolenaare9a41262005-01-15 22:18:47 +000019253 int deep;
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019254 int copyID;
Bram Moolenaare9a41262005-01-15 22:18:47 +000019255{
19256 static int recurse = 0;
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019257 int ret = OK;
Bram Moolenaare9a41262005-01-15 22:18:47 +000019258
Bram Moolenaar33570922005-01-25 22:26:29 +000019259 if (recurse >= DICT_MAXNEST)
Bram Moolenaare9a41262005-01-15 22:18:47 +000019260 {
19261 EMSG(_("E698: variable nested too deep for making a copy"));
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019262 return FAIL;
Bram Moolenaare9a41262005-01-15 22:18:47 +000019263 }
19264 ++recurse;
19265
19266 switch (from->v_type)
19267 {
19268 case VAR_NUMBER:
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019269#ifdef FEAT_FLOAT
19270 case VAR_FLOAT:
19271#endif
Bram Moolenaare9a41262005-01-15 22:18:47 +000019272 case VAR_STRING:
19273 case VAR_FUNC:
19274 copy_tv(from, to);
19275 break;
19276 case VAR_LIST:
19277 to->v_type = VAR_LIST;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000019278 to->v_lock = 0;
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019279 if (from->vval.v_list == NULL)
19280 to->vval.v_list = NULL;
19281 else if (copyID != 0 && from->vval.v_list->lv_copyID == copyID)
19282 {
19283 /* use the copy made earlier */
19284 to->vval.v_list = from->vval.v_list->lv_copylist;
19285 ++to->vval.v_list->lv_refcount;
19286 }
19287 else
19288 to->vval.v_list = list_copy(from->vval.v_list, deep, copyID);
19289 if (to->vval.v_list == NULL)
19290 ret = FAIL;
Bram Moolenaare9a41262005-01-15 22:18:47 +000019291 break;
19292 case VAR_DICT:
19293 to->v_type = VAR_DICT;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000019294 to->v_lock = 0;
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019295 if (from->vval.v_dict == NULL)
19296 to->vval.v_dict = NULL;
19297 else if (copyID != 0 && from->vval.v_dict->dv_copyID == copyID)
19298 {
19299 /* use the copy made earlier */
19300 to->vval.v_dict = from->vval.v_dict->dv_copydict;
19301 ++to->vval.v_dict->dv_refcount;
19302 }
19303 else
19304 to->vval.v_dict = dict_copy(from->vval.v_dict, deep, copyID);
19305 if (to->vval.v_dict == NULL)
19306 ret = FAIL;
Bram Moolenaare9a41262005-01-15 22:18:47 +000019307 break;
19308 default:
19309 EMSG2(_(e_intern2), "item_copy()");
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019310 ret = FAIL;
Bram Moolenaare9a41262005-01-15 22:18:47 +000019311 }
19312 --recurse;
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019313 return ret;
Bram Moolenaare9a41262005-01-15 22:18:47 +000019314}
19315
19316/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000019317 * ":echo expr1 ..." print each argument separated with a space, add a
19318 * newline at the end.
19319 * ":echon expr1 ..." print each argument plain.
19320 */
19321 void
19322ex_echo(eap)
19323 exarg_T *eap;
19324{
19325 char_u *arg = eap->arg;
Bram Moolenaar33570922005-01-25 22:26:29 +000019326 typval_T rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019327 char_u *tofree;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019328 char_u *p;
19329 int needclr = TRUE;
19330 int atstart = TRUE;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000019331 char_u numbuf[NUMBUFLEN];
Bram Moolenaar071d4272004-06-13 20:20:40 +000019332
19333 if (eap->skip)
19334 ++emsg_skip;
19335 while (*arg != NUL && *arg != '|' && *arg != '\n' && !got_int)
19336 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019337 /* If eval1() causes an error message the text from the command may
19338 * still need to be cleared. E.g., "echo 22,44". */
19339 need_clr_eos = needclr;
19340
Bram Moolenaar071d4272004-06-13 20:20:40 +000019341 p = arg;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019342 if (eval1(&arg, &rettv, !eap->skip) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019343 {
19344 /*
19345 * Report the invalid expression unless the expression evaluation
19346 * has been cancelled due to an aborting error, an interrupt, or an
19347 * exception.
19348 */
19349 if (!aborting())
19350 EMSG2(_(e_invexpr2), p);
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019351 need_clr_eos = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019352 break;
19353 }
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019354 need_clr_eos = FALSE;
19355
Bram Moolenaar071d4272004-06-13 20:20:40 +000019356 if (!eap->skip)
19357 {
19358 if (atstart)
19359 {
19360 atstart = FALSE;
19361 /* Call msg_start() after eval1(), evaluating the expression
19362 * may cause a message to appear. */
19363 if (eap->cmdidx == CMD_echo)
19364 msg_start();
19365 }
19366 else if (eap->cmdidx == CMD_echo)
19367 msg_puts_attr((char_u *)" ", echo_attr);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +000019368 p = echo_string(&rettv, &tofree, numbuf, ++current_copyID);
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019369 if (p != NULL)
19370 for ( ; *p != NUL && !got_int; ++p)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019371 {
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019372 if (*p == '\n' || *p == '\r' || *p == TAB)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019373 {
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019374 if (*p != TAB && needclr)
19375 {
19376 /* remove any text still there from the command */
19377 msg_clr_eos();
19378 needclr = FALSE;
19379 }
19380 msg_putchar_attr(*p, echo_attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019381 }
19382 else
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019383 {
19384#ifdef FEAT_MBYTE
19385 if (has_mbyte)
19386 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000019387 int i = (*mb_ptr2len)(p);
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019388
19389 (void)msg_outtrans_len_attr(p, i, echo_attr);
19390 p += i - 1;
19391 }
19392 else
Bram Moolenaar071d4272004-06-13 20:20:40 +000019393#endif
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019394 (void)msg_outtrans_len_attr(p, 1, echo_attr);
19395 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019396 }
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019397 vim_free(tofree);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019398 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019399 clear_tv(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019400 arg = skipwhite(arg);
19401 }
19402 eap->nextcmd = check_nextcmd(arg);
19403
19404 if (eap->skip)
19405 --emsg_skip;
19406 else
19407 {
19408 /* remove text that may still be there from the command */
19409 if (needclr)
19410 msg_clr_eos();
19411 if (eap->cmdidx == CMD_echo)
19412 msg_end();
19413 }
19414}
19415
19416/*
19417 * ":echohl {name}".
19418 */
19419 void
19420ex_echohl(eap)
19421 exarg_T *eap;
19422{
19423 int id;
19424
19425 id = syn_name2id(eap->arg);
19426 if (id == 0)
19427 echo_attr = 0;
19428 else
19429 echo_attr = syn_id2attr(id);
19430}
19431
19432/*
19433 * ":execute expr1 ..." execute the result of an expression.
19434 * ":echomsg expr1 ..." Print a message
19435 * ":echoerr expr1 ..." Print an error
19436 * Each gets spaces around each argument and a newline at the end for
19437 * echo commands
19438 */
19439 void
19440ex_execute(eap)
19441 exarg_T *eap;
19442{
19443 char_u *arg = eap->arg;
Bram Moolenaar33570922005-01-25 22:26:29 +000019444 typval_T rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019445 int ret = OK;
19446 char_u *p;
19447 garray_T ga;
19448 int len;
19449 int save_did_emsg;
19450
19451 ga_init2(&ga, 1, 80);
19452
19453 if (eap->skip)
19454 ++emsg_skip;
19455 while (*arg != NUL && *arg != '|' && *arg != '\n')
19456 {
19457 p = arg;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019458 if (eval1(&arg, &rettv, !eap->skip) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019459 {
19460 /*
19461 * Report the invalid expression unless the expression evaluation
19462 * has been cancelled due to an aborting error, an interrupt, or an
19463 * exception.
19464 */
19465 if (!aborting())
19466 EMSG2(_(e_invexpr2), p);
19467 ret = FAIL;
19468 break;
19469 }
19470
19471 if (!eap->skip)
19472 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019473 p = get_tv_string(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019474 len = (int)STRLEN(p);
19475 if (ga_grow(&ga, len + 2) == FAIL)
19476 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019477 clear_tv(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019478 ret = FAIL;
19479 break;
19480 }
19481 if (ga.ga_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019482 ((char_u *)(ga.ga_data))[ga.ga_len++] = ' ';
Bram Moolenaar071d4272004-06-13 20:20:40 +000019483 STRCPY((char_u *)(ga.ga_data) + ga.ga_len, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019484 ga.ga_len += len;
19485 }
19486
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019487 clear_tv(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019488 arg = skipwhite(arg);
19489 }
19490
19491 if (ret != FAIL && ga.ga_data != NULL)
19492 {
19493 if (eap->cmdidx == CMD_echomsg)
Bram Moolenaar4770d092006-01-12 23:22:24 +000019494 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000019495 MSG_ATTR(ga.ga_data, echo_attr);
Bram Moolenaar4770d092006-01-12 23:22:24 +000019496 out_flush();
19497 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019498 else if (eap->cmdidx == CMD_echoerr)
19499 {
19500 /* We don't want to abort following commands, restore did_emsg. */
19501 save_did_emsg = did_emsg;
19502 EMSG((char_u *)ga.ga_data);
19503 if (!force_abort)
19504 did_emsg = save_did_emsg;
19505 }
19506 else if (eap->cmdidx == CMD_execute)
19507 do_cmdline((char_u *)ga.ga_data,
19508 eap->getline, eap->cookie, DOCMD_NOWAIT|DOCMD_VERBOSE);
19509 }
19510
19511 ga_clear(&ga);
19512
19513 if (eap->skip)
19514 --emsg_skip;
19515
19516 eap->nextcmd = check_nextcmd(arg);
19517}
19518
19519/*
19520 * Skip over the name of an option: "&option", "&g:option" or "&l:option".
19521 * "arg" points to the "&" or '+' when called, to "option" when returning.
19522 * Returns NULL when no option name found. Otherwise pointer to the char
19523 * after the option name.
19524 */
19525 static char_u *
19526find_option_end(arg, opt_flags)
19527 char_u **arg;
19528 int *opt_flags;
19529{
19530 char_u *p = *arg;
19531
19532 ++p;
19533 if (*p == 'g' && p[1] == ':')
19534 {
19535 *opt_flags = OPT_GLOBAL;
19536 p += 2;
19537 }
19538 else if (*p == 'l' && p[1] == ':')
19539 {
19540 *opt_flags = OPT_LOCAL;
19541 p += 2;
19542 }
19543 else
19544 *opt_flags = 0;
19545
19546 if (!ASCII_ISALPHA(*p))
19547 return NULL;
19548 *arg = p;
19549
19550 if (p[0] == 't' && p[1] == '_' && p[2] != NUL && p[3] != NUL)
19551 p += 4; /* termcap option */
19552 else
19553 while (ASCII_ISALPHA(*p))
19554 ++p;
19555 return p;
19556}
19557
19558/*
19559 * ":function"
19560 */
19561 void
19562ex_function(eap)
19563 exarg_T *eap;
19564{
19565 char_u *theline;
19566 int j;
19567 int c;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019568 int saved_did_emsg;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019569 char_u *name = NULL;
19570 char_u *p;
19571 char_u *arg;
Bram Moolenaar997fb4b2006-02-17 21:53:23 +000019572 char_u *line_arg = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019573 garray_T newargs;
19574 garray_T newlines;
19575 int varargs = FALSE;
19576 int mustend = FALSE;
19577 int flags = 0;
19578 ufunc_T *fp;
19579 int indent;
19580 int nesting;
19581 char_u *skip_until = NULL;
Bram Moolenaar33570922005-01-25 22:26:29 +000019582 dictitem_T *v;
19583 funcdict_T fudi;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019584 static int func_nr = 0; /* number for nameless function */
19585 int paren;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000019586 hashtab_T *ht;
19587 int todo;
19588 hashitem_T *hi;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000019589 int sourcing_lnum_off;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019590
19591 /*
19592 * ":function" without argument: list functions.
19593 */
19594 if (ends_excmd(*eap->arg))
19595 {
19596 if (!eap->skip)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000019597 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000019598 todo = (int)func_hashtab.ht_used;
Bram Moolenaar038eb0e2005-02-27 22:43:26 +000019599 for (hi = func_hashtab.ht_array; todo > 0 && !got_int; ++hi)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000019600 {
19601 if (!HASHITEM_EMPTY(hi))
19602 {
19603 --todo;
19604 fp = HI2UF(hi);
19605 if (!isdigit(*fp->uf_name))
19606 list_func_head(fp, FALSE);
19607 }
19608 }
19609 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019610 eap->nextcmd = check_nextcmd(eap->arg);
19611 return;
19612 }
19613
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019614 /*
Bram Moolenaardd2436f2005-09-05 22:14:46 +000019615 * ":function /pat": list functions matching pattern.
19616 */
19617 if (*eap->arg == '/')
19618 {
19619 p = skip_regexp(eap->arg + 1, '/', TRUE, NULL);
19620 if (!eap->skip)
19621 {
19622 regmatch_T regmatch;
19623
19624 c = *p;
19625 *p = NUL;
19626 regmatch.regprog = vim_regcomp(eap->arg + 1, RE_MAGIC);
19627 *p = c;
19628 if (regmatch.regprog != NULL)
19629 {
19630 regmatch.rm_ic = p_ic;
19631
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000019632 todo = (int)func_hashtab.ht_used;
Bram Moolenaardd2436f2005-09-05 22:14:46 +000019633 for (hi = func_hashtab.ht_array; todo > 0 && !got_int; ++hi)
19634 {
19635 if (!HASHITEM_EMPTY(hi))
19636 {
19637 --todo;
19638 fp = HI2UF(hi);
19639 if (!isdigit(*fp->uf_name)
19640 && vim_regexec(&regmatch, fp->uf_name, 0))
19641 list_func_head(fp, FALSE);
19642 }
19643 }
19644 }
19645 }
19646 if (*p == '/')
19647 ++p;
19648 eap->nextcmd = check_nextcmd(p);
19649 return;
19650 }
19651
19652 /*
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019653 * Get the function name. There are these situations:
19654 * func normal function name
19655 * "name" == func, "fudi.fd_dict" == NULL
19656 * dict.func new dictionary entry
19657 * "name" == NULL, "fudi.fd_dict" set,
19658 * "fudi.fd_di" == NULL, "fudi.fd_newkey" == func
19659 * dict.func existing dict entry with a Funcref
Bram Moolenaard857f0e2005-06-21 22:37:39 +000019660 * "name" == func, "fudi.fd_dict" set,
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019661 * "fudi.fd_di" set, "fudi.fd_newkey" == NULL
19662 * dict.func existing dict entry that's not a Funcref
19663 * "name" == NULL, "fudi.fd_dict" set,
19664 * "fudi.fd_di" set, "fudi.fd_newkey" == NULL
19665 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000019666 p = eap->arg;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019667 name = trans_function_name(&p, eap->skip, 0, &fudi);
19668 paren = (vim_strchr(p, '(') != NULL);
19669 if (name == NULL && (fudi.fd_dict == NULL || !paren) && !eap->skip)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019670 {
19671 /*
19672 * Return on an invalid expression in braces, unless the expression
19673 * evaluation has been cancelled due to an aborting error, an
19674 * interrupt, or an exception.
19675 */
19676 if (!aborting())
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019677 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000019678 if (!eap->skip && fudi.fd_newkey != NULL)
19679 EMSG2(_(e_dictkey), fudi.fd_newkey);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019680 vim_free(fudi.fd_newkey);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019681 return;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019682 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019683 else
19684 eap->skip = TRUE;
19685 }
Bram Moolenaar1f35bf92006-03-07 22:38:47 +000019686
Bram Moolenaar071d4272004-06-13 20:20:40 +000019687 /* An error in a function call during evaluation of an expression in magic
19688 * braces should not cause the function not to be defined. */
19689 saved_did_emsg = did_emsg;
19690 did_emsg = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019691
19692 /*
19693 * ":function func" with only function name: list function.
19694 */
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019695 if (!paren)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019696 {
19697 if (!ends_excmd(*skipwhite(p)))
19698 {
19699 EMSG(_(e_trailing));
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019700 goto ret_free;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019701 }
19702 eap->nextcmd = check_nextcmd(p);
19703 if (eap->nextcmd != NULL)
19704 *p = NUL;
19705 if (!eap->skip && !got_int)
19706 {
19707 fp = find_func(name);
19708 if (fp != NULL)
19709 {
19710 list_func_head(fp, TRUE);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000019711 for (j = 0; j < fp->uf_lines.ga_len && !got_int; ++j)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019712 {
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000019713 if (FUNCLINE(fp, j) == NULL)
19714 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019715 msg_putchar('\n');
19716 msg_outnum((long)(j + 1));
19717 if (j < 9)
19718 msg_putchar(' ');
19719 if (j < 99)
19720 msg_putchar(' ');
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000019721 msg_prt_line(FUNCLINE(fp, j), FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019722 out_flush(); /* show a line at a time */
19723 ui_breakcheck();
19724 }
19725 if (!got_int)
19726 {
19727 msg_putchar('\n');
19728 msg_puts((char_u *)" endfunction");
19729 }
19730 }
19731 else
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019732 emsg_funcname("E123: Undefined function: %s", name);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019733 }
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019734 goto ret_free;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019735 }
19736
19737 /*
19738 * ":function name(arg1, arg2)" Define function.
19739 */
19740 p = skipwhite(p);
19741 if (*p != '(')
19742 {
19743 if (!eap->skip)
19744 {
19745 EMSG2(_("E124: Missing '(': %s"), eap->arg);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019746 goto ret_free;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019747 }
19748 /* attempt to continue by skipping some text */
19749 if (vim_strchr(p, '(') != NULL)
19750 p = vim_strchr(p, '(');
19751 }
19752 p = skipwhite(p + 1);
19753
19754 ga_init2(&newargs, (int)sizeof(char_u *), 3);
19755 ga_init2(&newlines, (int)sizeof(char_u *), 3);
19756
Bram Moolenaard857f0e2005-06-21 22:37:39 +000019757 if (!eap->skip)
19758 {
Bram Moolenaarb42dc232006-11-21 18:36:05 +000019759 /* Check the name of the function. Unless it's a dictionary function
19760 * (that we are overwriting). */
Bram Moolenaard857f0e2005-06-21 22:37:39 +000019761 if (name != NULL)
19762 arg = name;
19763 else
19764 arg = fudi.fd_newkey;
Bram Moolenaarb42dc232006-11-21 18:36:05 +000019765 if (arg != NULL && (fudi.fd_di == NULL
19766 || fudi.fd_di->di_tv.v_type != VAR_FUNC))
Bram Moolenaard857f0e2005-06-21 22:37:39 +000019767 {
19768 if (*arg == K_SPECIAL)
19769 j = 3;
19770 else
19771 j = 0;
19772 while (arg[j] != NUL && (j == 0 ? eval_isnamec1(arg[j])
19773 : eval_isnamec(arg[j])))
19774 ++j;
19775 if (arg[j] != NUL)
19776 emsg_funcname(_(e_invarg2), arg);
19777 }
19778 }
19779
Bram Moolenaar071d4272004-06-13 20:20:40 +000019780 /*
19781 * Isolate the arguments: "arg1, arg2, ...)"
19782 */
19783 while (*p != ')')
19784 {
19785 if (p[0] == '.' && p[1] == '.' && p[2] == '.')
19786 {
19787 varargs = TRUE;
19788 p += 3;
19789 mustend = TRUE;
19790 }
19791 else
19792 {
19793 arg = p;
19794 while (ASCII_ISALNUM(*p) || *p == '_')
19795 ++p;
19796 if (arg == p || isdigit(*arg)
19797 || (p - arg == 9 && STRNCMP(arg, "firstline", 9) == 0)
19798 || (p - arg == 8 && STRNCMP(arg, "lastline", 8) == 0))
19799 {
19800 if (!eap->skip)
19801 EMSG2(_("E125: Illegal argument: %s"), arg);
19802 break;
19803 }
19804 if (ga_grow(&newargs, 1) == FAIL)
19805 goto erret;
19806 c = *p;
19807 *p = NUL;
19808 arg = vim_strsave(arg);
19809 if (arg == NULL)
19810 goto erret;
19811 ((char_u **)(newargs.ga_data))[newargs.ga_len] = arg;
19812 *p = c;
19813 newargs.ga_len++;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019814 if (*p == ',')
19815 ++p;
19816 else
19817 mustend = TRUE;
19818 }
19819 p = skipwhite(p);
19820 if (mustend && *p != ')')
19821 {
19822 if (!eap->skip)
19823 EMSG2(_(e_invarg2), eap->arg);
19824 break;
19825 }
19826 }
19827 ++p; /* skip the ')' */
19828
Bram Moolenaare9a41262005-01-15 22:18:47 +000019829 /* find extra arguments "range", "dict" and "abort" */
Bram Moolenaar071d4272004-06-13 20:20:40 +000019830 for (;;)
19831 {
19832 p = skipwhite(p);
19833 if (STRNCMP(p, "range", 5) == 0)
19834 {
19835 flags |= FC_RANGE;
19836 p += 5;
19837 }
Bram Moolenaare9a41262005-01-15 22:18:47 +000019838 else if (STRNCMP(p, "dict", 4) == 0)
19839 {
19840 flags |= FC_DICT;
19841 p += 4;
19842 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019843 else if (STRNCMP(p, "abort", 5) == 0)
19844 {
19845 flags |= FC_ABORT;
19846 p += 5;
19847 }
19848 else
19849 break;
19850 }
19851
Bram Moolenaar997fb4b2006-02-17 21:53:23 +000019852 /* When there is a line break use what follows for the function body.
19853 * Makes 'exe "func Test()\n...\nendfunc"' work. */
19854 if (*p == '\n')
19855 line_arg = p + 1;
19856 else if (*p != NUL && *p != '"' && !eap->skip && !did_emsg)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019857 EMSG(_(e_trailing));
19858
19859 /*
19860 * Read the body of the function, until ":endfunction" is found.
19861 */
19862 if (KeyTyped)
19863 {
19864 /* Check if the function already exists, don't let the user type the
19865 * whole function before telling him it doesn't work! For a script we
19866 * need to skip the body to be able to find what follows. */
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019867 if (!eap->skip && !eap->forceit)
19868 {
19869 if (fudi.fd_dict != NULL && fudi.fd_newkey == NULL)
19870 EMSG(_(e_funcdict));
19871 else if (name != NULL && find_func(name) != NULL)
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019872 emsg_funcname(e_funcexts, name);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019873 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019874
Bram Moolenaard857f0e2005-06-21 22:37:39 +000019875 if (!eap->skip && did_emsg)
19876 goto erret;
19877
Bram Moolenaar071d4272004-06-13 20:20:40 +000019878 msg_putchar('\n'); /* don't overwrite the function name */
19879 cmdline_row = msg_row;
19880 }
19881
19882 indent = 2;
19883 nesting = 0;
19884 for (;;)
19885 {
19886 msg_scroll = TRUE;
19887 need_wait_return = FALSE;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000019888 sourcing_lnum_off = sourcing_lnum;
19889
Bram Moolenaar997fb4b2006-02-17 21:53:23 +000019890 if (line_arg != NULL)
19891 {
19892 /* Use eap->arg, split up in parts by line breaks. */
19893 theline = line_arg;
19894 p = vim_strchr(theline, '\n');
19895 if (p == NULL)
19896 line_arg += STRLEN(line_arg);
19897 else
19898 {
19899 *p = NUL;
19900 line_arg = p + 1;
19901 }
19902 }
19903 else if (eap->getline == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019904 theline = getcmdline(':', 0L, indent);
19905 else
19906 theline = eap->getline(':', eap->cookie, indent);
19907 if (KeyTyped)
19908 lines_left = Rows - 1;
19909 if (theline == NULL)
19910 {
19911 EMSG(_("E126: Missing :endfunction"));
19912 goto erret;
19913 }
19914
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000019915 /* Detect line continuation: sourcing_lnum increased more than one. */
19916 if (sourcing_lnum > sourcing_lnum_off + 1)
19917 sourcing_lnum_off = sourcing_lnum - sourcing_lnum_off - 1;
19918 else
19919 sourcing_lnum_off = 0;
19920
Bram Moolenaar071d4272004-06-13 20:20:40 +000019921 if (skip_until != NULL)
19922 {
19923 /* between ":append" and "." and between ":python <<EOF" and "EOF"
19924 * don't check for ":endfunc". */
19925 if (STRCMP(theline, skip_until) == 0)
19926 {
19927 vim_free(skip_until);
19928 skip_until = NULL;
19929 }
19930 }
19931 else
19932 {
19933 /* skip ':' and blanks*/
19934 for (p = theline; vim_iswhite(*p) || *p == ':'; ++p)
19935 ;
19936
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000019937 /* Check for "endfunction". */
19938 if (checkforcmd(&p, "endfunction", 4) && nesting-- == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019939 {
Bram Moolenaar997fb4b2006-02-17 21:53:23 +000019940 if (line_arg == NULL)
19941 vim_free(theline);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019942 break;
19943 }
19944
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000019945 /* Increase indent inside "if", "while", "for" and "try", decrease
Bram Moolenaar071d4272004-06-13 20:20:40 +000019946 * at "end". */
19947 if (indent > 2 && STRNCMP(p, "end", 3) == 0)
19948 indent -= 2;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000019949 else if (STRNCMP(p, "if", 2) == 0
19950 || STRNCMP(p, "wh", 2) == 0
19951 || STRNCMP(p, "for", 3) == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +000019952 || STRNCMP(p, "try", 3) == 0)
19953 indent += 2;
19954
19955 /* Check for defining a function inside this function. */
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000019956 if (checkforcmd(&p, "function", 2))
Bram Moolenaar071d4272004-06-13 20:20:40 +000019957 {
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000019958 if (*p == '!')
19959 p = skipwhite(p + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019960 p += eval_fname_script(p);
19961 if (ASCII_ISALPHA(*p))
19962 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019963 vim_free(trans_function_name(&p, TRUE, 0, NULL));
Bram Moolenaar071d4272004-06-13 20:20:40 +000019964 if (*skipwhite(p) == '(')
19965 {
19966 ++nesting;
19967 indent += 2;
19968 }
19969 }
19970 }
19971
19972 /* Check for ":append" or ":insert". */
19973 p = skip_range(p, NULL);
19974 if ((p[0] == 'a' && (!ASCII_ISALPHA(p[1]) || p[1] == 'p'))
19975 || (p[0] == 'i'
19976 && (!ASCII_ISALPHA(p[1]) || (p[1] == 'n'
19977 && (!ASCII_ISALPHA(p[2]) || (p[2] == 's'))))))
19978 skip_until = vim_strsave((char_u *)".");
19979
19980 /* Check for ":python <<EOF", ":tcl <<EOF", etc. */
19981 arg = skipwhite(skiptowhite(p));
19982 if (arg[0] == '<' && arg[1] =='<'
19983 && ((p[0] == 'p' && p[1] == 'y'
19984 && (!ASCII_ISALPHA(p[2]) || p[2] == 't'))
19985 || (p[0] == 'p' && p[1] == 'e'
19986 && (!ASCII_ISALPHA(p[2]) || p[2] == 'r'))
19987 || (p[0] == 't' && p[1] == 'c'
19988 && (!ASCII_ISALPHA(p[2]) || p[2] == 'l'))
19989 || (p[0] == 'r' && p[1] == 'u' && p[2] == 'b'
19990 && (!ASCII_ISALPHA(p[3]) || p[3] == 'y'))
Bram Moolenaar325b7a22004-07-05 15:58:32 +000019991 || (p[0] == 'm' && p[1] == 'z'
19992 && (!ASCII_ISALPHA(p[2]) || p[2] == 's'))
Bram Moolenaar071d4272004-06-13 20:20:40 +000019993 ))
19994 {
19995 /* ":python <<" continues until a dot, like ":append" */
19996 p = skipwhite(arg + 2);
19997 if (*p == NUL)
19998 skip_until = vim_strsave((char_u *)".");
19999 else
20000 skip_until = vim_strsave(p);
20001 }
20002 }
20003
20004 /* Add the line to the function. */
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000020005 if (ga_grow(&newlines, 1 + sourcing_lnum_off) == FAIL)
Bram Moolenaar29a1c1d2005-06-24 23:11:15 +000020006 {
Bram Moolenaar997fb4b2006-02-17 21:53:23 +000020007 if (line_arg == NULL)
20008 vim_free(theline);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020009 goto erret;
Bram Moolenaar29a1c1d2005-06-24 23:11:15 +000020010 }
20011
20012 /* Copy the line to newly allocated memory. get_one_sourceline()
20013 * allocates 250 bytes per line, this saves 80% on average. The cost
20014 * is an extra alloc/free. */
20015 p = vim_strsave(theline);
20016 if (p != NULL)
20017 {
Bram Moolenaar997fb4b2006-02-17 21:53:23 +000020018 if (line_arg == NULL)
20019 vim_free(theline);
Bram Moolenaar29a1c1d2005-06-24 23:11:15 +000020020 theline = p;
20021 }
20022
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000020023 ((char_u **)(newlines.ga_data))[newlines.ga_len++] = theline;
20024
20025 /* Add NULL lines for continuation lines, so that the line count is
20026 * equal to the index in the growarray. */
20027 while (sourcing_lnum_off-- > 0)
20028 ((char_u **)(newlines.ga_data))[newlines.ga_len++] = NULL;
Bram Moolenaar997fb4b2006-02-17 21:53:23 +000020029
20030 /* Check for end of eap->arg. */
20031 if (line_arg != NULL && *line_arg == NUL)
20032 line_arg = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020033 }
20034
20035 /* Don't define the function when skipping commands or when an error was
20036 * detected. */
20037 if (eap->skip || did_emsg)
20038 goto erret;
20039
20040 /*
20041 * If there are no errors, add the function
20042 */
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020043 if (fudi.fd_dict == NULL)
Bram Moolenaar49cd9572005-01-03 21:06:01 +000020044 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020045 v = find_var(name, &ht);
Bram Moolenaar33570922005-01-25 22:26:29 +000020046 if (v != NULL && v->di_tv.v_type == VAR_FUNC)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020047 {
Bram Moolenaar81bf7082005-02-12 14:31:42 +000020048 emsg_funcname("E707: Function name conflicts with variable: %s",
20049 name);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020050 goto erret;
20051 }
Bram Moolenaar49cd9572005-01-03 21:06:01 +000020052
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020053 fp = find_func(name);
20054 if (fp != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020055 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020056 if (!eap->forceit)
20057 {
Bram Moolenaar81bf7082005-02-12 14:31:42 +000020058 emsg_funcname(e_funcexts, name);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020059 goto erret;
20060 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020061 if (fp->uf_calls > 0)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020062 {
Bram Moolenaar81bf7082005-02-12 14:31:42 +000020063 emsg_funcname("E127: Cannot redefine function %s: It is in use",
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020064 name);
20065 goto erret;
20066 }
20067 /* redefine existing function */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020068 ga_clear_strings(&(fp->uf_args));
20069 ga_clear_strings(&(fp->uf_lines));
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020070 vim_free(name);
20071 name = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020072 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000020073 }
20074 else
20075 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020076 char numbuf[20];
20077
20078 fp = NULL;
20079 if (fudi.fd_newkey == NULL && !eap->forceit)
20080 {
20081 EMSG(_(e_funcdict));
20082 goto erret;
20083 }
Bram Moolenaar758711c2005-02-02 23:11:38 +000020084 if (fudi.fd_di == NULL)
20085 {
20086 /* Can't add a function to a locked dictionary */
20087 if (tv_check_lock(fudi.fd_dict->dv_lock, eap->arg))
20088 goto erret;
20089 }
20090 /* Can't change an existing function if it is locked */
20091 else if (tv_check_lock(fudi.fd_di->di_tv.v_lock, eap->arg))
20092 goto erret;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020093
20094 /* Give the function a sequential number. Can only be used with a
20095 * Funcref! */
20096 vim_free(name);
20097 sprintf(numbuf, "%d", ++func_nr);
20098 name = vim_strsave((char_u *)numbuf);
20099 if (name == NULL)
20100 goto erret;
20101 }
20102
20103 if (fp == NULL)
20104 {
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020105 if (fudi.fd_dict == NULL && vim_strchr(name, AUTOLOAD_CHAR) != NULL)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020106 {
20107 int slen, plen;
20108 char_u *scriptname;
20109
20110 /* Check that the autoload name matches the script name. */
20111 j = FAIL;
20112 if (sourcing_name != NULL)
20113 {
20114 scriptname = autoload_name(name);
20115 if (scriptname != NULL)
20116 {
20117 p = vim_strchr(scriptname, '/');
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000020118 plen = (int)STRLEN(p);
20119 slen = (int)STRLEN(sourcing_name);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020120 if (slen > plen && fnamecmp(p,
20121 sourcing_name + slen - plen) == 0)
20122 j = OK;
20123 vim_free(scriptname);
20124 }
20125 }
20126 if (j == FAIL)
20127 {
20128 EMSG2(_("E746: Function name does not match script file name: %s"), name);
20129 goto erret;
20130 }
20131 }
20132
20133 fp = (ufunc_T *)alloc((unsigned)(sizeof(ufunc_T) + STRLEN(name)));
Bram Moolenaar071d4272004-06-13 20:20:40 +000020134 if (fp == NULL)
20135 goto erret;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020136
20137 if (fudi.fd_dict != NULL)
20138 {
20139 if (fudi.fd_di == NULL)
20140 {
20141 /* add new dict entry */
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000020142 fudi.fd_di = dictitem_alloc(fudi.fd_newkey);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020143 if (fudi.fd_di == NULL)
20144 {
20145 vim_free(fp);
20146 goto erret;
20147 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000020148 if (dict_add(fudi.fd_dict, fudi.fd_di) == FAIL)
20149 {
20150 vim_free(fudi.fd_di);
Bram Moolenaar0a5fd8b2006-08-16 20:02:22 +000020151 vim_free(fp);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000020152 goto erret;
20153 }
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020154 }
20155 else
20156 /* overwrite existing dict entry */
20157 clear_tv(&fudi.fd_di->di_tv);
20158 fudi.fd_di->di_tv.v_type = VAR_FUNC;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000020159 fudi.fd_di->di_tv.v_lock = 0;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020160 fudi.fd_di->di_tv.vval.v_string = vim_strsave(name);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020161 fp->uf_refcount = 1;
Bram Moolenaar910f66f2006-04-05 20:41:53 +000020162
20163 /* behave like "dict" was used */
20164 flags |= FC_DICT;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020165 }
20166
Bram Moolenaar071d4272004-06-13 20:20:40 +000020167 /* insert the new function in the function list */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020168 STRCPY(fp->uf_name, name);
20169 hash_add(&func_hashtab, UF2HIKEY(fp));
Bram Moolenaar071d4272004-06-13 20:20:40 +000020170 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020171 fp->uf_args = newargs;
20172 fp->uf_lines = newlines;
Bram Moolenaar05159a02005-02-26 23:04:13 +000020173#ifdef FEAT_PROFILE
20174 fp->uf_tml_count = NULL;
20175 fp->uf_tml_total = NULL;
20176 fp->uf_tml_self = NULL;
20177 fp->uf_profiling = FALSE;
20178 if (prof_def_func())
20179 func_do_profile(fp);
20180#endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020181 fp->uf_varargs = varargs;
20182 fp->uf_flags = flags;
20183 fp->uf_calls = 0;
20184 fp->uf_script_ID = current_SID;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020185 goto ret_free;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020186
20187erret:
Bram Moolenaar071d4272004-06-13 20:20:40 +000020188 ga_clear_strings(&newargs);
20189 ga_clear_strings(&newlines);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020190ret_free:
20191 vim_free(skip_until);
20192 vim_free(fudi.fd_newkey);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020193 vim_free(name);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020194 did_emsg |= saved_did_emsg;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020195}
20196
20197/*
20198 * Get a function name, translating "<SID>" and "<SNR>".
Bram Moolenaara7043832005-01-21 11:56:39 +000020199 * Also handles a Funcref in a List or Dictionary.
Bram Moolenaar071d4272004-06-13 20:20:40 +000020200 * Returns the function name in allocated memory, or NULL for failure.
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020201 * flags:
20202 * TFN_INT: internal function name OK
20203 * TFN_QUIET: be quiet
Bram Moolenaar071d4272004-06-13 20:20:40 +000020204 * Advances "pp" to just after the function name (if no error).
20205 */
20206 static char_u *
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020207trans_function_name(pp, skip, flags, fdp)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020208 char_u **pp;
20209 int skip; /* only find the end, don't evaluate */
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020210 int flags;
Bram Moolenaar33570922005-01-25 22:26:29 +000020211 funcdict_T *fdp; /* return: info about dictionary used */
Bram Moolenaar071d4272004-06-13 20:20:40 +000020212{
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020213 char_u *name = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020214 char_u *start;
20215 char_u *end;
20216 int lead;
20217 char_u sid_buf[20];
Bram Moolenaar071d4272004-06-13 20:20:40 +000020218 int len;
Bram Moolenaar33570922005-01-25 22:26:29 +000020219 lval_T lv;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020220
20221 if (fdp != NULL)
Bram Moolenaar33570922005-01-25 22:26:29 +000020222 vim_memset(fdp, 0, sizeof(funcdict_T));
Bram Moolenaar071d4272004-06-13 20:20:40 +000020223 start = *pp;
Bram Moolenaara7043832005-01-21 11:56:39 +000020224
20225 /* Check for hard coded <SNR>: already translated function ID (from a user
20226 * command). */
20227 if ((*pp)[0] == K_SPECIAL && (*pp)[1] == KS_EXTRA
20228 && (*pp)[2] == (int)KE_SNR)
20229 {
20230 *pp += 3;
20231 len = get_id_len(pp) + 3;
20232 return vim_strnsave(start, len);
20233 }
20234
20235 /* A name starting with "<SID>" or "<SNR>" is local to a script. But
20236 * don't skip over "s:", get_lval() needs it for "s:dict.func". */
Bram Moolenaar071d4272004-06-13 20:20:40 +000020237 lead = eval_fname_script(start);
Bram Moolenaara7043832005-01-21 11:56:39 +000020238 if (lead > 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020239 start += lead;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020240
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020241 end = get_lval(start, NULL, &lv, FALSE, skip, flags & TFN_QUIET,
20242 lead > 2 ? 0 : FNE_CHECK_START);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020243 if (end == start)
20244 {
20245 if (!skip)
20246 EMSG(_("E129: Function name required"));
20247 goto theend;
20248 }
Bram Moolenaara7043832005-01-21 11:56:39 +000020249 if (end == NULL || (lv.ll_tv != NULL && (lead > 2 || lv.ll_range)))
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020250 {
20251 /*
20252 * Report an invalid expression in braces, unless the expression
20253 * evaluation has been cancelled due to an aborting error, an
20254 * interrupt, or an exception.
20255 */
20256 if (!aborting())
20257 {
20258 if (end != NULL)
20259 EMSG2(_(e_invarg2), start);
20260 }
20261 else
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020262 *pp = find_name_end(start, NULL, NULL, FNE_INCL_BR);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020263 goto theend;
20264 }
20265
20266 if (lv.ll_tv != NULL)
20267 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020268 if (fdp != NULL)
20269 {
20270 fdp->fd_dict = lv.ll_dict;
20271 fdp->fd_newkey = lv.ll_newkey;
20272 lv.ll_newkey = NULL;
20273 fdp->fd_di = lv.ll_di;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020274 }
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020275 if (lv.ll_tv->v_type == VAR_FUNC && lv.ll_tv->vval.v_string != NULL)
20276 {
20277 name = vim_strsave(lv.ll_tv->vval.v_string);
20278 *pp = end;
20279 }
20280 else
20281 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000020282 if (!skip && !(flags & TFN_QUIET) && (fdp == NULL
20283 || lv.ll_dict == NULL || fdp->fd_newkey == NULL))
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020284 EMSG(_(e_funcref));
20285 else
20286 *pp = end;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020287 name = NULL;
20288 }
20289 goto theend;
20290 }
20291
20292 if (lv.ll_name == NULL)
20293 {
20294 /* Error found, but continue after the function name. */
20295 *pp = end;
20296 goto theend;
20297 }
20298
Bram Moolenaar33e1a802007-09-06 12:26:44 +000020299 /* Check if the name is a Funcref. If so, use the value. */
20300 if (lv.ll_exp_name != NULL)
20301 {
20302 len = (int)STRLEN(lv.ll_exp_name);
20303 name = deref_func_name(lv.ll_exp_name, &len);
20304 if (name == lv.ll_exp_name)
20305 name = NULL;
20306 }
20307 else
20308 {
20309 len = (int)(end - *pp);
20310 name = deref_func_name(*pp, &len);
20311 if (name == *pp)
20312 name = NULL;
20313 }
20314 if (name != NULL)
20315 {
20316 name = vim_strsave(name);
20317 *pp = end;
20318 goto theend;
20319 }
20320
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020321 if (lv.ll_exp_name != NULL)
Bram Moolenaarc32840f2006-01-14 21:23:38 +000020322 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000020323 len = (int)STRLEN(lv.ll_exp_name);
Bram Moolenaarc32840f2006-01-14 21:23:38 +000020324 if (lead <= 2 && lv.ll_name == lv.ll_exp_name
20325 && STRNCMP(lv.ll_name, "s:", 2) == 0)
20326 {
20327 /* When there was "s:" already or the name expanded to get a
20328 * leading "s:" then remove it. */
20329 lv.ll_name += 2;
20330 len -= 2;
20331 lead = 2;
20332 }
20333 }
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020334 else
Bram Moolenaara7043832005-01-21 11:56:39 +000020335 {
20336 if (lead == 2) /* skip over "s:" */
20337 lv.ll_name += 2;
20338 len = (int)(end - lv.ll_name);
20339 }
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020340
20341 /*
20342 * Copy the function name to allocated memory.
20343 * Accept <SID>name() inside a script, translate into <SNR>123_name().
20344 * Accept <SNR>123_name() outside a script.
20345 */
20346 if (skip)
20347 lead = 0; /* do nothing */
20348 else if (lead > 0)
20349 {
20350 lead = 3;
Bram Moolenaar86c9ee22006-05-13 11:33:27 +000020351 if ((lv.ll_exp_name != NULL && eval_fname_sid(lv.ll_exp_name))
20352 || eval_fname_sid(*pp))
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020353 {
Bram Moolenaar899dddf2006-03-26 21:06:50 +000020354 /* It's "s:" or "<SID>" */
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020355 if (current_SID <= 0)
20356 {
20357 EMSG(_(e_usingsid));
20358 goto theend;
20359 }
20360 sprintf((char *)sid_buf, "%ld_", (long)current_SID);
20361 lead += (int)STRLEN(sid_buf);
20362 }
20363 }
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020364 else if (!(flags & TFN_INT) && builtin_function(lv.ll_name))
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020365 {
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020366 EMSG2(_("E128: Function name must start with a capital or contain a colon: %s"), lv.ll_name);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020367 goto theend;
20368 }
20369 name = alloc((unsigned)(len + lead + 1));
20370 if (name != NULL)
20371 {
20372 if (lead > 0)
20373 {
20374 name[0] = K_SPECIAL;
20375 name[1] = KS_EXTRA;
20376 name[2] = (int)KE_SNR;
Bram Moolenaara7043832005-01-21 11:56:39 +000020377 if (lead > 3) /* If it's "<SID>" */
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020378 STRCPY(name + 3, sid_buf);
20379 }
20380 mch_memmove(name + lead, lv.ll_name, (size_t)len);
20381 name[len + lead] = NUL;
20382 }
20383 *pp = end;
20384
20385theend:
20386 clear_lval(&lv);
20387 return name;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020388}
20389
20390/*
20391 * Return 5 if "p" starts with "<SID>" or "<SNR>" (ignoring case).
20392 * Return 2 if "p" starts with "s:".
20393 * Return 0 otherwise.
20394 */
20395 static int
20396eval_fname_script(p)
20397 char_u *p;
20398{
20399 if (p[0] == '<' && (STRNICMP(p + 1, "SID>", 4) == 0
20400 || STRNICMP(p + 1, "SNR>", 4) == 0))
20401 return 5;
20402 if (p[0] == 's' && p[1] == ':')
20403 return 2;
20404 return 0;
20405}
20406
20407/*
20408 * Return TRUE if "p" starts with "<SID>" or "s:".
20409 * Only works if eval_fname_script() returned non-zero for "p"!
20410 */
20411 static int
20412eval_fname_sid(p)
20413 char_u *p;
20414{
20415 return (*p == 's' || TOUPPER_ASC(p[2]) == 'I');
20416}
20417
20418/*
20419 * List the head of the function: "name(arg1, arg2)".
20420 */
20421 static void
20422list_func_head(fp, indent)
20423 ufunc_T *fp;
20424 int indent;
20425{
20426 int j;
20427
20428 msg_start();
20429 if (indent)
20430 MSG_PUTS(" ");
20431 MSG_PUTS("function ");
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020432 if (fp->uf_name[0] == K_SPECIAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020433 {
20434 MSG_PUTS_ATTR("<SNR>", hl_attr(HLF_8));
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020435 msg_puts(fp->uf_name + 3);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020436 }
20437 else
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020438 msg_puts(fp->uf_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020439 msg_putchar('(');
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020440 for (j = 0; j < fp->uf_args.ga_len; ++j)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020441 {
20442 if (j)
20443 MSG_PUTS(", ");
20444 msg_puts(FUNCARG(fp, j));
20445 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020446 if (fp->uf_varargs)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020447 {
20448 if (j)
20449 MSG_PUTS(", ");
20450 MSG_PUTS("...");
20451 }
20452 msg_putchar(')');
Bram Moolenaarcafda4f2005-09-06 19:25:11 +000020453 msg_clr_eos();
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +000020454 if (p_verbose > 0)
20455 last_set_msg(fp->uf_script_ID);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020456}
20457
20458/*
20459 * Find a function by name, return pointer to it in ufuncs.
20460 * Return NULL for unknown function.
20461 */
20462 static ufunc_T *
20463find_func(name)
20464 char_u *name;
20465{
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020466 hashitem_T *hi;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020467
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020468 hi = hash_find(&func_hashtab, name);
20469 if (!HASHITEM_EMPTY(hi))
20470 return HI2UF(hi);
20471 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020472}
20473
Bram Moolenaar29a1c1d2005-06-24 23:11:15 +000020474#if defined(EXITFREE) || defined(PROTO)
20475 void
20476free_all_functions()
20477{
20478 hashitem_T *hi;
20479
20480 /* Need to start all over every time, because func_free() may change the
20481 * hash table. */
20482 while (func_hashtab.ht_used > 0)
20483 for (hi = func_hashtab.ht_array; ; ++hi)
20484 if (!HASHITEM_EMPTY(hi))
20485 {
20486 func_free(HI2UF(hi));
20487 break;
20488 }
20489}
20490#endif
20491
Bram Moolenaar49cd9572005-01-03 21:06:01 +000020492/*
20493 * Return TRUE if a function "name" exists.
20494 */
20495 static int
20496function_exists(name)
20497 char_u *name;
20498{
Bram Moolenaaraa35dd12006-04-29 22:03:41 +000020499 char_u *nm = name;
20500 char_u *p;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000020501 int n = FALSE;
20502
Bram Moolenaaraa35dd12006-04-29 22:03:41 +000020503 p = trans_function_name(&nm, FALSE, TFN_INT|TFN_QUIET, NULL);
Bram Moolenaar79783442006-05-05 21:18:03 +000020504 nm = skipwhite(nm);
20505
20506 /* Only accept "funcname", "funcname ", "funcname (..." and
20507 * "funcname(...", not "funcname!...". */
20508 if (p != NULL && (*nm == NUL || *nm == '('))
Bram Moolenaar49cd9572005-01-03 21:06:01 +000020509 {
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020510 if (builtin_function(p))
Bram Moolenaar49cd9572005-01-03 21:06:01 +000020511 n = (find_internal_func(p) >= 0);
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020512 else
20513 n = (find_func(p) != NULL);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000020514 }
Bram Moolenaar79783442006-05-05 21:18:03 +000020515 vim_free(p);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000020516 return n;
20517}
20518
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020519/*
20520 * Return TRUE if "name" looks like a builtin function name: starts with a
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020521 * lower case letter and doesn't contain a ':' or AUTOLOAD_CHAR.
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020522 */
20523 static int
20524builtin_function(name)
20525 char_u *name;
20526{
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020527 return ASCII_ISLOWER(name[0]) && vim_strchr(name, ':') == NULL
20528 && vim_strchr(name, AUTOLOAD_CHAR) == NULL;
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020529}
20530
Bram Moolenaar05159a02005-02-26 23:04:13 +000020531#if defined(FEAT_PROFILE) || defined(PROTO)
20532/*
20533 * Start profiling function "fp".
20534 */
20535 static void
20536func_do_profile(fp)
20537 ufunc_T *fp;
20538{
20539 fp->uf_tm_count = 0;
20540 profile_zero(&fp->uf_tm_self);
20541 profile_zero(&fp->uf_tm_total);
20542 if (fp->uf_tml_count == NULL)
20543 fp->uf_tml_count = (int *)alloc_clear((unsigned)
20544 (sizeof(int) * fp->uf_lines.ga_len));
20545 if (fp->uf_tml_total == NULL)
20546 fp->uf_tml_total = (proftime_T *)alloc_clear((unsigned)
20547 (sizeof(proftime_T) * fp->uf_lines.ga_len));
20548 if (fp->uf_tml_self == NULL)
20549 fp->uf_tml_self = (proftime_T *)alloc_clear((unsigned)
20550 (sizeof(proftime_T) * fp->uf_lines.ga_len));
20551 fp->uf_tml_idx = -1;
20552 if (fp->uf_tml_count == NULL || fp->uf_tml_total == NULL
20553 || fp->uf_tml_self == NULL)
20554 return; /* out of memory */
20555
20556 fp->uf_profiling = TRUE;
20557}
20558
20559/*
20560 * Dump the profiling results for all functions in file "fd".
20561 */
20562 void
20563func_dump_profile(fd)
20564 FILE *fd;
20565{
20566 hashitem_T *hi;
20567 int todo;
20568 ufunc_T *fp;
20569 int i;
Bram Moolenaar73830342005-02-28 22:48:19 +000020570 ufunc_T **sorttab;
20571 int st_len = 0;
Bram Moolenaar05159a02005-02-26 23:04:13 +000020572
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000020573 todo = (int)func_hashtab.ht_used;
Bram Moolenaar73830342005-02-28 22:48:19 +000020574 sorttab = (ufunc_T **)alloc((unsigned)(sizeof(ufunc_T) * todo));
20575
Bram Moolenaar05159a02005-02-26 23:04:13 +000020576 for (hi = func_hashtab.ht_array; todo > 0; ++hi)
20577 {
20578 if (!HASHITEM_EMPTY(hi))
20579 {
20580 --todo;
20581 fp = HI2UF(hi);
20582 if (fp->uf_profiling)
20583 {
Bram Moolenaar73830342005-02-28 22:48:19 +000020584 if (sorttab != NULL)
20585 sorttab[st_len++] = fp;
20586
Bram Moolenaar05159a02005-02-26 23:04:13 +000020587 if (fp->uf_name[0] == K_SPECIAL)
20588 fprintf(fd, "FUNCTION <SNR>%s()\n", fp->uf_name + 3);
20589 else
20590 fprintf(fd, "FUNCTION %s()\n", fp->uf_name);
20591 if (fp->uf_tm_count == 1)
20592 fprintf(fd, "Called 1 time\n");
20593 else
20594 fprintf(fd, "Called %d times\n", fp->uf_tm_count);
20595 fprintf(fd, "Total time: %s\n", profile_msg(&fp->uf_tm_total));
20596 fprintf(fd, " Self time: %s\n", profile_msg(&fp->uf_tm_self));
20597 fprintf(fd, "\n");
20598 fprintf(fd, "count total (s) self (s)\n");
20599
20600 for (i = 0; i < fp->uf_lines.ga_len; ++i)
20601 {
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000020602 if (FUNCLINE(fp, i) == NULL)
20603 continue;
Bram Moolenaar73830342005-02-28 22:48:19 +000020604 prof_func_line(fd, fp->uf_tml_count[i],
20605 &fp->uf_tml_total[i], &fp->uf_tml_self[i], TRUE);
Bram Moolenaar05159a02005-02-26 23:04:13 +000020606 fprintf(fd, "%s\n", FUNCLINE(fp, i));
20607 }
20608 fprintf(fd, "\n");
20609 }
20610 }
20611 }
Bram Moolenaar73830342005-02-28 22:48:19 +000020612
20613 if (sorttab != NULL && st_len > 0)
20614 {
20615 qsort((void *)sorttab, (size_t)st_len, sizeof(ufunc_T *),
20616 prof_total_cmp);
20617 prof_sort_list(fd, sorttab, st_len, "TOTAL", FALSE);
20618 qsort((void *)sorttab, (size_t)st_len, sizeof(ufunc_T *),
20619 prof_self_cmp);
20620 prof_sort_list(fd, sorttab, st_len, "SELF", TRUE);
20621 }
Bram Moolenaar05159a02005-02-26 23:04:13 +000020622}
Bram Moolenaar73830342005-02-28 22:48:19 +000020623
20624 static void
20625prof_sort_list(fd, sorttab, st_len, title, prefer_self)
20626 FILE *fd;
20627 ufunc_T **sorttab;
20628 int st_len;
20629 char *title;
20630 int prefer_self; /* when equal print only self time */
20631{
20632 int i;
20633 ufunc_T *fp;
20634
20635 fprintf(fd, "FUNCTIONS SORTED ON %s TIME\n", title);
20636 fprintf(fd, "count total (s) self (s) function\n");
20637 for (i = 0; i < 20 && i < st_len; ++i)
20638 {
20639 fp = sorttab[i];
20640 prof_func_line(fd, fp->uf_tm_count, &fp->uf_tm_total, &fp->uf_tm_self,
20641 prefer_self);
20642 if (fp->uf_name[0] == K_SPECIAL)
20643 fprintf(fd, " <SNR>%s()\n", fp->uf_name + 3);
20644 else
20645 fprintf(fd, " %s()\n", fp->uf_name);
20646 }
20647 fprintf(fd, "\n");
20648}
20649
20650/*
20651 * Print the count and times for one function or function line.
20652 */
20653 static void
20654prof_func_line(fd, count, total, self, prefer_self)
20655 FILE *fd;
20656 int count;
20657 proftime_T *total;
20658 proftime_T *self;
20659 int prefer_self; /* when equal print only self time */
20660{
20661 if (count > 0)
20662 {
20663 fprintf(fd, "%5d ", count);
20664 if (prefer_self && profile_equal(total, self))
20665 fprintf(fd, " ");
20666 else
20667 fprintf(fd, "%s ", profile_msg(total));
20668 if (!prefer_self && profile_equal(total, self))
20669 fprintf(fd, " ");
20670 else
20671 fprintf(fd, "%s ", profile_msg(self));
20672 }
20673 else
20674 fprintf(fd, " ");
20675}
20676
20677/*
20678 * Compare function for total time sorting.
20679 */
20680 static int
20681#ifdef __BORLANDC__
20682_RTLENTRYF
20683#endif
20684prof_total_cmp(s1, s2)
20685 const void *s1;
20686 const void *s2;
20687{
20688 ufunc_T *p1, *p2;
20689
20690 p1 = *(ufunc_T **)s1;
20691 p2 = *(ufunc_T **)s2;
20692 return profile_cmp(&p1->uf_tm_total, &p2->uf_tm_total);
20693}
20694
20695/*
20696 * Compare function for self time sorting.
20697 */
20698 static int
20699#ifdef __BORLANDC__
20700_RTLENTRYF
20701#endif
20702prof_self_cmp(s1, s2)
20703 const void *s1;
20704 const void *s2;
20705{
20706 ufunc_T *p1, *p2;
20707
20708 p1 = *(ufunc_T **)s1;
20709 p2 = *(ufunc_T **)s2;
20710 return profile_cmp(&p1->uf_tm_self, &p2->uf_tm_self);
20711}
20712
Bram Moolenaar05159a02005-02-26 23:04:13 +000020713#endif
20714
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020715/*
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020716 * If "name" has a package name try autoloading the script for it.
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020717 * Return TRUE if a package was loaded.
20718 */
20719 static int
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000020720script_autoload(name, reload)
20721 char_u *name;
20722 int reload; /* load script again when already loaded */
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020723{
20724 char_u *p;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000020725 char_u *scriptname, *tofree;
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020726 int ret = FALSE;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000020727 int i;
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020728
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000020729 /* If there is no '#' after name[0] there is no package name. */
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020730 p = vim_strchr(name, AUTOLOAD_CHAR);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000020731 if (p == NULL || p == name)
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020732 return FALSE;
20733
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000020734 tofree = scriptname = autoload_name(name);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020735
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000020736 /* Find the name in the list of previously loaded package names. Skip
20737 * "autoload/", it's always the same. */
20738 for (i = 0; i < ga_loaded.ga_len; ++i)
20739 if (STRCMP(((char_u **)ga_loaded.ga_data)[i] + 9, scriptname + 9) == 0)
20740 break;
20741 if (!reload && i < ga_loaded.ga_len)
20742 ret = FALSE; /* was loaded already */
20743 else
20744 {
20745 /* Remember the name if it wasn't loaded already. */
20746 if (i == ga_loaded.ga_len && ga_grow(&ga_loaded, 1) == OK)
20747 {
20748 ((char_u **)ga_loaded.ga_data)[ga_loaded.ga_len++] = scriptname;
20749 tofree = NULL;
20750 }
20751
20752 /* Try loading the package from $VIMRUNTIME/autoload/<name>.vim */
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +000020753 if (source_runtime(scriptname, FALSE) == OK)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000020754 ret = TRUE;
20755 }
20756
20757 vim_free(tofree);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020758 return ret;
20759}
20760
20761/*
20762 * Return the autoload script name for a function or variable name.
20763 * Returns NULL when out of memory.
20764 */
20765 static char_u *
20766autoload_name(name)
20767 char_u *name;
20768{
20769 char_u *p;
20770 char_u *scriptname;
20771
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020772 /* Get the script file name: replace '#' with '/', append ".vim". */
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020773 scriptname = alloc((unsigned)(STRLEN(name) + 14));
20774 if (scriptname == NULL)
20775 return FALSE;
20776 STRCPY(scriptname, "autoload/");
20777 STRCAT(scriptname, name);
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020778 *vim_strrchr(scriptname, AUTOLOAD_CHAR) = NUL;
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020779 STRCAT(scriptname, ".vim");
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020780 while ((p = vim_strchr(scriptname, AUTOLOAD_CHAR)) != NULL)
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020781 *p = '/';
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020782 return scriptname;
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020783}
20784
Bram Moolenaar071d4272004-06-13 20:20:40 +000020785#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
20786
20787/*
20788 * Function given to ExpandGeneric() to obtain the list of user defined
20789 * function names.
20790 */
20791 char_u *
20792get_user_func_name(xp, idx)
20793 expand_T *xp;
20794 int idx;
20795{
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020796 static long_u done;
20797 static hashitem_T *hi;
20798 ufunc_T *fp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020799
20800 if (idx == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020801 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020802 done = 0;
20803 hi = func_hashtab.ht_array;
20804 }
20805 if (done < func_hashtab.ht_used)
20806 {
20807 if (done++ > 0)
20808 ++hi;
20809 while (HASHITEM_EMPTY(hi))
20810 ++hi;
20811 fp = HI2UF(hi);
20812
20813 if (STRLEN(fp->uf_name) + 4 >= IOSIZE)
20814 return fp->uf_name; /* prevents overflow */
Bram Moolenaar071d4272004-06-13 20:20:40 +000020815
20816 cat_func_name(IObuff, fp);
20817 if (xp->xp_context != EXPAND_USER_FUNC)
20818 {
20819 STRCAT(IObuff, "(");
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020820 if (!fp->uf_varargs && fp->uf_args.ga_len == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020821 STRCAT(IObuff, ")");
20822 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000020823 return IObuff;
20824 }
20825 return NULL;
20826}
20827
20828#endif /* FEAT_CMDL_COMPL */
20829
20830/*
20831 * Copy the function name of "fp" to buffer "buf".
20832 * "buf" must be able to hold the function name plus three bytes.
20833 * Takes care of script-local function names.
20834 */
20835 static void
20836cat_func_name(buf, fp)
20837 char_u *buf;
20838 ufunc_T *fp;
20839{
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020840 if (fp->uf_name[0] == K_SPECIAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020841 {
20842 STRCPY(buf, "<SNR>");
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020843 STRCAT(buf, fp->uf_name + 3);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020844 }
20845 else
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020846 STRCPY(buf, fp->uf_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020847}
20848
20849/*
20850 * ":delfunction {name}"
20851 */
20852 void
20853ex_delfunction(eap)
20854 exarg_T *eap;
20855{
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020856 ufunc_T *fp = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020857 char_u *p;
20858 char_u *name;
Bram Moolenaar33570922005-01-25 22:26:29 +000020859 funcdict_T fudi;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020860
20861 p = eap->arg;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020862 name = trans_function_name(&p, eap->skip, 0, &fudi);
20863 vim_free(fudi.fd_newkey);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020864 if (name == NULL)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020865 {
20866 if (fudi.fd_dict != NULL && !eap->skip)
20867 EMSG(_(e_funcref));
Bram Moolenaar071d4272004-06-13 20:20:40 +000020868 return;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020869 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000020870 if (!ends_excmd(*skipwhite(p)))
20871 {
20872 vim_free(name);
20873 EMSG(_(e_trailing));
20874 return;
20875 }
20876 eap->nextcmd = check_nextcmd(p);
20877 if (eap->nextcmd != NULL)
20878 *p = NUL;
20879
20880 if (!eap->skip)
20881 fp = find_func(name);
20882 vim_free(name);
20883
20884 if (!eap->skip)
20885 {
20886 if (fp == NULL)
20887 {
Bram Moolenaar05159a02005-02-26 23:04:13 +000020888 EMSG2(_(e_nofunc), eap->arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020889 return;
20890 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020891 if (fp->uf_calls > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020892 {
20893 EMSG2(_("E131: Cannot delete function %s: It is in use"), eap->arg);
20894 return;
20895 }
20896
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020897 if (fudi.fd_dict != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020898 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020899 /* Delete the dict item that refers to the function, it will
20900 * invoke func_unref() and possibly delete the function. */
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000020901 dictitem_remove(fudi.fd_dict, fudi.fd_di);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020902 }
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020903 else
20904 func_free(fp);
20905 }
20906}
20907
20908/*
20909 * Free a function and remove it from the list of functions.
20910 */
20911 static void
20912func_free(fp)
20913 ufunc_T *fp;
20914{
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020915 hashitem_T *hi;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020916
20917 /* clear this function */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020918 ga_clear_strings(&(fp->uf_args));
20919 ga_clear_strings(&(fp->uf_lines));
Bram Moolenaar05159a02005-02-26 23:04:13 +000020920#ifdef FEAT_PROFILE
20921 vim_free(fp->uf_tml_count);
20922 vim_free(fp->uf_tml_total);
20923 vim_free(fp->uf_tml_self);
20924#endif
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020925
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020926 /* remove the function from the function hashtable */
20927 hi = hash_find(&func_hashtab, UF2HIKEY(fp));
20928 if (HASHITEM_EMPTY(hi))
20929 EMSG2(_(e_intern2), "func_free()");
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020930 else
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020931 hash_remove(&func_hashtab, hi);
20932
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020933 vim_free(fp);
20934}
20935
20936/*
20937 * Unreference a Function: decrement the reference count and free it when it
20938 * becomes zero. Only for numbered functions.
20939 */
20940 static void
20941func_unref(name)
20942 char_u *name;
20943{
20944 ufunc_T *fp;
20945
20946 if (name != NULL && isdigit(*name))
20947 {
20948 fp = find_func(name);
20949 if (fp == NULL)
20950 EMSG2(_(e_intern2), "func_unref()");
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020951 else if (--fp->uf_refcount <= 0)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020952 {
20953 /* Only delete it when it's not being used. Otherwise it's done
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020954 * when "uf_calls" becomes zero. */
20955 if (fp->uf_calls == 0)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020956 func_free(fp);
20957 }
20958 }
20959}
20960
20961/*
20962 * Count a reference to a Function.
20963 */
20964 static void
20965func_ref(name)
20966 char_u *name;
20967{
20968 ufunc_T *fp;
20969
20970 if (name != NULL && isdigit(*name))
20971 {
20972 fp = find_func(name);
20973 if (fp == NULL)
20974 EMSG2(_(e_intern2), "func_ref()");
20975 else
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020976 ++fp->uf_refcount;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020977 }
20978}
20979
20980/*
20981 * Call a user function.
20982 */
20983 static void
Bram Moolenaare9a41262005-01-15 22:18:47 +000020984call_user_func(fp, argcount, argvars, rettv, firstline, lastline, selfdict)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020985 ufunc_T *fp; /* pointer to function */
20986 int argcount; /* nr of args */
Bram Moolenaar33570922005-01-25 22:26:29 +000020987 typval_T *argvars; /* arguments */
20988 typval_T *rettv; /* return value */
Bram Moolenaar071d4272004-06-13 20:20:40 +000020989 linenr_T firstline; /* first line of range */
20990 linenr_T lastline; /* last line of range */
Bram Moolenaar33570922005-01-25 22:26:29 +000020991 dict_T *selfdict; /* Dictionary for "self" */
Bram Moolenaar071d4272004-06-13 20:20:40 +000020992{
Bram Moolenaar33570922005-01-25 22:26:29 +000020993 char_u *save_sourcing_name;
20994 linenr_T save_sourcing_lnum;
20995 scid_T save_current_SID;
20996 funccall_T fc;
Bram Moolenaar33570922005-01-25 22:26:29 +000020997 int save_did_emsg;
20998 static int depth = 0;
20999 dictitem_T *v;
21000 int fixvar_idx = 0; /* index in fixvar[] */
21001 int i;
21002 int ai;
21003 char_u numbuf[NUMBUFLEN];
21004 char_u *name;
Bram Moolenaar05159a02005-02-26 23:04:13 +000021005#ifdef FEAT_PROFILE
21006 proftime_T wait_start;
Bram Moolenaare9da72e2006-11-01 17:34:40 +000021007 proftime_T call_start;
Bram Moolenaar05159a02005-02-26 23:04:13 +000021008#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000021009
21010 /* If depth of calling is getting too high, don't execute the function */
21011 if (depth >= p_mfd)
21012 {
21013 EMSG(_("E132: Function call depth is higher than 'maxfuncdepth'"));
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021014 rettv->v_type = VAR_NUMBER;
21015 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021016 return;
21017 }
21018 ++depth;
21019
21020 line_breakcheck(); /* check for CTRL-C hit */
21021
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +000021022 fc.caller = current_funccal;
Bram Moolenaar33570922005-01-25 22:26:29 +000021023 current_funccal = &fc;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021024 fc.func = fp;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021025 fc.rettv = rettv;
21026 rettv->vval.v_number = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021027 fc.linenr = 0;
21028 fc.returned = FALSE;
21029 fc.level = ex_nesting_level;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021030 /* Check if this function has a breakpoint. */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021031 fc.breakpoint = dbg_find_breakpoint(FALSE, fp->uf_name, (linenr_T)0);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021032 fc.dbg_tick = debug_tick;
21033
Bram Moolenaar33570922005-01-25 22:26:29 +000021034 /*
21035 * Note about using fc.fixvar[]: This is an array of FIXVAR_CNT variables
21036 * with names up to VAR_SHORT_LEN long. This avoids having to alloc/free
21037 * each argument variable and saves a lot of time.
21038 */
21039 /*
21040 * Init l: variables.
21041 */
21042 init_var_dict(&fc.l_vars, &fc.l_vars_var);
Bram Moolenaara7043832005-01-21 11:56:39 +000021043 if (selfdict != NULL)
Bram Moolenaare9a41262005-01-15 22:18:47 +000021044 {
Bram Moolenaar76b92b22006-03-24 22:46:53 +000021045 /* Set l:self to "selfdict". Use "name" to avoid a warning from
21046 * some compiler that checks the destination size. */
Bram Moolenaar33570922005-01-25 22:26:29 +000021047 v = &fc.fixvar[fixvar_idx++].var;
Bram Moolenaar76b92b22006-03-24 22:46:53 +000021048 name = v->di_key;
21049 STRCPY(name, "self");
Bram Moolenaar33570922005-01-25 22:26:29 +000021050 v->di_flags = DI_FLAGS_RO + DI_FLAGS_FIX;
21051 hash_add(&fc.l_vars.dv_hashtab, DI2HIKEY(v));
21052 v->di_tv.v_type = VAR_DICT;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000021053 v->di_tv.v_lock = 0;
Bram Moolenaar33570922005-01-25 22:26:29 +000021054 v->di_tv.vval.v_dict = selfdict;
21055 ++selfdict->dv_refcount;
21056 }
Bram Moolenaare9a41262005-01-15 22:18:47 +000021057
Bram Moolenaar33570922005-01-25 22:26:29 +000021058 /*
21059 * Init a: variables.
21060 * Set a:0 to "argcount".
21061 * Set a:000 to a list with room for the "..." arguments.
21062 */
21063 init_var_dict(&fc.l_avars, &fc.l_avars_var);
21064 add_nr_var(&fc.l_avars, &fc.fixvar[fixvar_idx++].var, "0",
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021065 (varnumber_T)(argcount - fp->uf_args.ga_len));
Bram Moolenaar33570922005-01-25 22:26:29 +000021066 v = &fc.fixvar[fixvar_idx++].var;
21067 STRCPY(v->di_key, "000");
21068 v->di_flags = DI_FLAGS_RO | DI_FLAGS_FIX;
21069 hash_add(&fc.l_avars.dv_hashtab, DI2HIKEY(v));
21070 v->di_tv.v_type = VAR_LIST;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000021071 v->di_tv.v_lock = VAR_FIXED;
Bram Moolenaar33570922005-01-25 22:26:29 +000021072 v->di_tv.vval.v_list = &fc.l_varlist;
21073 vim_memset(&fc.l_varlist, 0, sizeof(list_T));
21074 fc.l_varlist.lv_refcount = 99999;
Bram Moolenaar9dfb0f82006-06-22 16:03:05 +000021075 fc.l_varlist.lv_lock = VAR_FIXED;
Bram Moolenaar33570922005-01-25 22:26:29 +000021076
21077 /*
21078 * Set a:firstline to "firstline" and a:lastline to "lastline".
21079 * Set a:name to named arguments.
21080 * Set a:N to the "..." arguments.
21081 */
21082 add_nr_var(&fc.l_avars, &fc.fixvar[fixvar_idx++].var, "firstline",
21083 (varnumber_T)firstline);
21084 add_nr_var(&fc.l_avars, &fc.fixvar[fixvar_idx++].var, "lastline",
21085 (varnumber_T)lastline);
21086 for (i = 0; i < argcount; ++i)
21087 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021088 ai = i - fp->uf_args.ga_len;
Bram Moolenaar33570922005-01-25 22:26:29 +000021089 if (ai < 0)
21090 /* named argument a:name */
21091 name = FUNCARG(fp, i);
21092 else
Bram Moolenaare9a41262005-01-15 22:18:47 +000021093 {
Bram Moolenaar33570922005-01-25 22:26:29 +000021094 /* "..." argument a:1, a:2, etc. */
21095 sprintf((char *)numbuf, "%d", ai + 1);
21096 name = numbuf;
21097 }
21098 if (fixvar_idx < FIXVAR_CNT && STRLEN(name) <= VAR_SHORT_LEN)
21099 {
21100 v = &fc.fixvar[fixvar_idx++].var;
21101 v->di_flags = DI_FLAGS_RO | DI_FLAGS_FIX;
21102 }
21103 else
21104 {
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000021105 v = (dictitem_T *)alloc((unsigned)(sizeof(dictitem_T)
21106 + STRLEN(name)));
Bram Moolenaar33570922005-01-25 22:26:29 +000021107 if (v == NULL)
21108 break;
21109 v->di_flags = DI_FLAGS_RO;
21110 }
21111 STRCPY(v->di_key, name);
21112 hash_add(&fc.l_avars.dv_hashtab, DI2HIKEY(v));
21113
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000021114 /* Note: the values are copied directly to avoid alloc/free.
21115 * "argvars" must have VAR_FIXED for v_lock. */
Bram Moolenaar33570922005-01-25 22:26:29 +000021116 v->di_tv = argvars[i];
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000021117 v->di_tv.v_lock = VAR_FIXED;
Bram Moolenaar33570922005-01-25 22:26:29 +000021118
21119 if (ai >= 0 && ai < MAX_FUNC_ARGS)
21120 {
21121 list_append(&fc.l_varlist, &fc.l_listitems[ai]);
21122 fc.l_listitems[ai].li_tv = argvars[i];
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000021123 fc.l_listitems[ai].li_tv.v_lock = VAR_FIXED;
Bram Moolenaare9a41262005-01-15 22:18:47 +000021124 }
21125 }
21126
Bram Moolenaar071d4272004-06-13 20:20:40 +000021127 /* Don't redraw while executing the function. */
21128 ++RedrawingDisabled;
21129 save_sourcing_name = sourcing_name;
21130 save_sourcing_lnum = sourcing_lnum;
21131 sourcing_lnum = 1;
21132 sourcing_name = alloc((unsigned)((save_sourcing_name == NULL ? 0
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021133 : STRLEN(save_sourcing_name)) + STRLEN(fp->uf_name) + 13));
Bram Moolenaar071d4272004-06-13 20:20:40 +000021134 if (sourcing_name != NULL)
21135 {
21136 if (save_sourcing_name != NULL
21137 && STRNCMP(save_sourcing_name, "function ", 9) == 0)
21138 sprintf((char *)sourcing_name, "%s..", save_sourcing_name);
21139 else
21140 STRCPY(sourcing_name, "function ");
21141 cat_func_name(sourcing_name + STRLEN(sourcing_name), fp);
21142
21143 if (p_verbose >= 12)
21144 {
21145 ++no_wait_return;
Bram Moolenaar54ee7752005-05-31 22:22:17 +000021146 verbose_enter_scroll();
21147
Bram Moolenaar555b2802005-05-19 21:08:39 +000021148 smsg((char_u *)_("calling %s"), sourcing_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021149 if (p_verbose >= 14)
21150 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000021151 char_u buf[MSG_BUF_LEN];
Bram Moolenaar89d40322006-08-29 15:30:07 +000021152 char_u numbuf2[NUMBUFLEN];
Bram Moolenaar758711c2005-02-02 23:11:38 +000021153 char_u *tofree;
Bram Moolenaar92c5aba2007-08-14 20:29:31 +000021154 char_u *s;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021155
21156 msg_puts((char_u *)"(");
21157 for (i = 0; i < argcount; ++i)
21158 {
21159 if (i > 0)
21160 msg_puts((char_u *)", ");
Bram Moolenaar49cd9572005-01-03 21:06:01 +000021161 if (argvars[i].v_type == VAR_NUMBER)
21162 msg_outnum((long)argvars[i].vval.v_number);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021163 else
21164 {
Bram Moolenaar92c5aba2007-08-14 20:29:31 +000021165 s = tv2string(&argvars[i], &tofree, numbuf2, 0);
21166 if (s != NULL)
21167 {
21168 trunc_string(s, buf, MSG_BUF_CLEN);
21169 msg_puts(buf);
21170 vim_free(tofree);
21171 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000021172 }
21173 }
21174 msg_puts((char_u *)")");
21175 }
21176 msg_puts((char_u *)"\n"); /* don't overwrite this either */
Bram Moolenaar54ee7752005-05-31 22:22:17 +000021177
21178 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +000021179 --no_wait_return;
21180 }
21181 }
Bram Moolenaar05159a02005-02-26 23:04:13 +000021182#ifdef FEAT_PROFILE
Bram Moolenaarb3656ed2006-03-20 21:59:49 +000021183 if (do_profiling == PROF_YES)
Bram Moolenaar05159a02005-02-26 23:04:13 +000021184 {
21185 if (!fp->uf_profiling && has_profiling(FALSE, fp->uf_name, NULL))
21186 func_do_profile(fp);
21187 if (fp->uf_profiling
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +000021188 || (fc.caller != NULL && &fc.caller->func->uf_profiling))
Bram Moolenaar05159a02005-02-26 23:04:13 +000021189 {
21190 ++fp->uf_tm_count;
Bram Moolenaare9da72e2006-11-01 17:34:40 +000021191 profile_start(&call_start);
Bram Moolenaar05159a02005-02-26 23:04:13 +000021192 profile_zero(&fp->uf_tm_children);
21193 }
21194 script_prof_save(&wait_start);
21195 }
21196#endif
21197
Bram Moolenaar071d4272004-06-13 20:20:40 +000021198 save_current_SID = current_SID;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021199 current_SID = fp->uf_script_ID;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021200 save_did_emsg = did_emsg;
21201 did_emsg = FALSE;
21202
21203 /* call do_cmdline() to execute the lines */
21204 do_cmdline(NULL, get_func_line, (void *)&fc,
21205 DOCMD_NOWAIT|DOCMD_VERBOSE|DOCMD_REPEAT);
21206
21207 --RedrawingDisabled;
21208
21209 /* when the function was aborted because of an error, return -1 */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021210 if ((did_emsg && (fp->uf_flags & FC_ABORT)) || rettv->v_type == VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021211 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021212 clear_tv(rettv);
21213 rettv->v_type = VAR_NUMBER;
21214 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021215 }
21216
Bram Moolenaar05159a02005-02-26 23:04:13 +000021217#ifdef FEAT_PROFILE
Bram Moolenaarb3656ed2006-03-20 21:59:49 +000021218 if (do_profiling == PROF_YES && (fp->uf_profiling
21219 || (fc.caller != NULL && &fc.caller->func->uf_profiling)))
Bram Moolenaar05159a02005-02-26 23:04:13 +000021220 {
Bram Moolenaare9da72e2006-11-01 17:34:40 +000021221 profile_end(&call_start);
21222 profile_sub_wait(&wait_start, &call_start);
21223 profile_add(&fp->uf_tm_total, &call_start);
21224 profile_self(&fp->uf_tm_self, &call_start, &fp->uf_tm_children);
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +000021225 if (fc.caller != NULL && &fc.caller->func->uf_profiling)
Bram Moolenaar05159a02005-02-26 23:04:13 +000021226 {
Bram Moolenaare9da72e2006-11-01 17:34:40 +000021227 profile_add(&fc.caller->func->uf_tm_children, &call_start);
21228 profile_add(&fc.caller->func->uf_tml_children, &call_start);
Bram Moolenaar05159a02005-02-26 23:04:13 +000021229 }
21230 }
21231#endif
21232
Bram Moolenaar071d4272004-06-13 20:20:40 +000021233 /* when being verbose, mention the return value */
21234 if (p_verbose >= 12)
21235 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000021236 ++no_wait_return;
Bram Moolenaar54ee7752005-05-31 22:22:17 +000021237 verbose_enter_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +000021238
Bram Moolenaar071d4272004-06-13 20:20:40 +000021239 if (aborting())
Bram Moolenaar555b2802005-05-19 21:08:39 +000021240 smsg((char_u *)_("%s aborted"), sourcing_name);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021241 else if (fc.rettv->v_type == VAR_NUMBER)
Bram Moolenaar555b2802005-05-19 21:08:39 +000021242 smsg((char_u *)_("%s returning #%ld"), sourcing_name,
21243 (long)fc.rettv->vval.v_number);
Bram Moolenaar758711c2005-02-02 23:11:38 +000021244 else
Bram Moolenaar071d4272004-06-13 20:20:40 +000021245 {
Bram Moolenaar758711c2005-02-02 23:11:38 +000021246 char_u buf[MSG_BUF_LEN];
Bram Moolenaar89d40322006-08-29 15:30:07 +000021247 char_u numbuf2[NUMBUFLEN];
Bram Moolenaar758711c2005-02-02 23:11:38 +000021248 char_u *tofree;
Bram Moolenaar92c5aba2007-08-14 20:29:31 +000021249 char_u *s;
Bram Moolenaar758711c2005-02-02 23:11:38 +000021250
Bram Moolenaar555b2802005-05-19 21:08:39 +000021251 /* The value may be very long. Skip the middle part, so that we
21252 * have some idea how it starts and ends. smsg() would always
21253 * truncate it at the end. */
Bram Moolenaar92c5aba2007-08-14 20:29:31 +000021254 s = tv2string(fc.rettv, &tofree, numbuf2, 0);
21255 if (s != NULL)
21256 {
21257 trunc_string(s, buf, MSG_BUF_CLEN);
21258 smsg((char_u *)_("%s returning %s"), sourcing_name, buf);
21259 vim_free(tofree);
21260 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000021261 }
21262 msg_puts((char_u *)"\n"); /* don't overwrite this either */
Bram Moolenaar54ee7752005-05-31 22:22:17 +000021263
21264 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +000021265 --no_wait_return;
21266 }
21267
21268 vim_free(sourcing_name);
21269 sourcing_name = save_sourcing_name;
21270 sourcing_lnum = save_sourcing_lnum;
21271 current_SID = save_current_SID;
Bram Moolenaar05159a02005-02-26 23:04:13 +000021272#ifdef FEAT_PROFILE
Bram Moolenaarb3656ed2006-03-20 21:59:49 +000021273 if (do_profiling == PROF_YES)
Bram Moolenaar05159a02005-02-26 23:04:13 +000021274 script_prof_restore(&wait_start);
21275#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000021276
21277 if (p_verbose >= 12 && sourcing_name != NULL)
21278 {
21279 ++no_wait_return;
Bram Moolenaar54ee7752005-05-31 22:22:17 +000021280 verbose_enter_scroll();
21281
Bram Moolenaar555b2802005-05-19 21:08:39 +000021282 smsg((char_u *)_("continuing in %s"), sourcing_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021283 msg_puts((char_u *)"\n"); /* don't overwrite this either */
Bram Moolenaar54ee7752005-05-31 22:22:17 +000021284
21285 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +000021286 --no_wait_return;
21287 }
21288
21289 did_emsg |= save_did_emsg;
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +000021290 current_funccal = fc.caller;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021291
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021292 /* The a: variables typevals were not allocated, only free the allocated
Bram Moolenaar33570922005-01-25 22:26:29 +000021293 * variables. */
21294 vars_clear_ext(&fc.l_avars.dv_hashtab, FALSE);
21295
21296 vars_clear(&fc.l_vars.dv_hashtab); /* free all l: variables */
Bram Moolenaar071d4272004-06-13 20:20:40 +000021297 --depth;
21298}
21299
21300/*
Bram Moolenaar33570922005-01-25 22:26:29 +000021301 * Add a number variable "name" to dict "dp" with value "nr".
21302 */
21303 static void
21304add_nr_var(dp, v, name, nr)
21305 dict_T *dp;
21306 dictitem_T *v;
21307 char *name;
21308 varnumber_T nr;
21309{
21310 STRCPY(v->di_key, name);
21311 v->di_flags = DI_FLAGS_RO | DI_FLAGS_FIX;
21312 hash_add(&dp->dv_hashtab, DI2HIKEY(v));
21313 v->di_tv.v_type = VAR_NUMBER;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000021314 v->di_tv.v_lock = VAR_FIXED;
Bram Moolenaar33570922005-01-25 22:26:29 +000021315 v->di_tv.vval.v_number = nr;
21316}
21317
21318/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000021319 * ":return [expr]"
21320 */
21321 void
21322ex_return(eap)
21323 exarg_T *eap;
21324{
21325 char_u *arg = eap->arg;
Bram Moolenaar33570922005-01-25 22:26:29 +000021326 typval_T rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021327 int returning = FALSE;
21328
21329 if (current_funccal == NULL)
21330 {
21331 EMSG(_("E133: :return not inside a function"));
21332 return;
21333 }
21334
21335 if (eap->skip)
21336 ++emsg_skip;
21337
21338 eap->nextcmd = NULL;
21339 if ((*arg != NUL && *arg != '|' && *arg != '\n')
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021340 && eval0(arg, &rettv, &eap->nextcmd, !eap->skip) != FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021341 {
21342 if (!eap->skip)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021343 returning = do_return(eap, FALSE, TRUE, &rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021344 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021345 clear_tv(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021346 }
21347 /* It's safer to return also on error. */
21348 else if (!eap->skip)
21349 {
21350 /*
21351 * Return unless the expression evaluation has been cancelled due to an
21352 * aborting error, an interrupt, or an exception.
21353 */
21354 if (!aborting())
21355 returning = do_return(eap, FALSE, TRUE, NULL);
21356 }
21357
21358 /* When skipping or the return gets pending, advance to the next command
21359 * in this line (!returning). Otherwise, ignore the rest of the line.
21360 * Following lines will be ignored by get_func_line(). */
21361 if (returning)
21362 eap->nextcmd = NULL;
21363 else if (eap->nextcmd == NULL) /* no argument */
21364 eap->nextcmd = check_nextcmd(arg);
21365
21366 if (eap->skip)
21367 --emsg_skip;
21368}
21369
21370/*
21371 * Return from a function. Possibly makes the return pending. Also called
21372 * for a pending return at the ":endtry" or after returning from an extra
21373 * do_cmdline(). "reanimate" is used in the latter case. "is_cmd" is set
Bram Moolenaar33570922005-01-25 22:26:29 +000021374 * when called due to a ":return" command. "rettv" may point to a typval_T
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021375 * with the return rettv. Returns TRUE when the return can be carried out,
Bram Moolenaar071d4272004-06-13 20:20:40 +000021376 * FALSE when the return gets pending.
21377 */
21378 int
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021379do_return(eap, reanimate, is_cmd, rettv)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021380 exarg_T *eap;
21381 int reanimate;
21382 int is_cmd;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021383 void *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021384{
21385 int idx;
21386 struct condstack *cstack = eap->cstack;
21387
21388 if (reanimate)
21389 /* Undo the return. */
21390 current_funccal->returned = FALSE;
21391
21392 /*
21393 * Cleanup (and inactivate) conditionals, but stop when a try conditional
21394 * not in its finally clause (which then is to be executed next) is found.
21395 * In this case, make the ":return" pending for execution at the ":endtry".
21396 * Otherwise, return normally.
21397 */
21398 idx = cleanup_conditionals(eap->cstack, 0, TRUE);
21399 if (idx >= 0)
21400 {
21401 cstack->cs_pending[idx] = CSTP_RETURN;
21402
21403 if (!is_cmd && !reanimate)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021404 /* A pending return again gets pending. "rettv" points to an
21405 * allocated variable with the rettv of the original ":return"'s
Bram Moolenaar071d4272004-06-13 20:20:40 +000021406 * argument if present or is NULL else. */
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021407 cstack->cs_rettv[idx] = rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021408 else
21409 {
21410 /* When undoing a return in order to make it pending, get the stored
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021411 * return rettv. */
Bram Moolenaar071d4272004-06-13 20:20:40 +000021412 if (reanimate)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021413 rettv = current_funccal->rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021414
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021415 if (rettv != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021416 {
21417 /* Store the value of the pending return. */
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021418 if ((cstack->cs_rettv[idx] = alloc_tv()) != NULL)
Bram Moolenaar33570922005-01-25 22:26:29 +000021419 *(typval_T *)cstack->cs_rettv[idx] = *(typval_T *)rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021420 else
21421 EMSG(_(e_outofmem));
21422 }
21423 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021424 cstack->cs_rettv[idx] = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021425
21426 if (reanimate)
21427 {
21428 /* The pending return value could be overwritten by a ":return"
21429 * without argument in a finally clause; reset the default
21430 * return value. */
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021431 current_funccal->rettv->v_type = VAR_NUMBER;
21432 current_funccal->rettv->vval.v_number = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021433 }
21434 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021435 report_make_pending(CSTP_RETURN, rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021436 }
21437 else
21438 {
21439 current_funccal->returned = TRUE;
21440
21441 /* If the return is carried out now, store the return value. For
21442 * a return immediately after reanimation, the value is already
21443 * there. */
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021444 if (!reanimate && rettv != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021445 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021446 clear_tv(current_funccal->rettv);
Bram Moolenaar33570922005-01-25 22:26:29 +000021447 *current_funccal->rettv = *(typval_T *)rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021448 if (!is_cmd)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021449 vim_free(rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021450 }
21451 }
21452
21453 return idx < 0;
21454}
21455
21456/*
21457 * Free the variable with a pending return value.
21458 */
21459 void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021460discard_pending_return(rettv)
21461 void *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021462{
Bram Moolenaar33570922005-01-25 22:26:29 +000021463 free_tv((typval_T *)rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021464}
21465
21466/*
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021467 * Generate a return command for producing the value of "rettv". The result
Bram Moolenaar071d4272004-06-13 20:20:40 +000021468 * is an allocated string. Used by report_pending() for verbose messages.
21469 */
21470 char_u *
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021471get_return_cmd(rettv)
21472 void *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021473{
Bram Moolenaar81bf7082005-02-12 14:31:42 +000021474 char_u *s = NULL;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021475 char_u *tofree = NULL;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000021476 char_u numbuf[NUMBUFLEN];
Bram Moolenaar071d4272004-06-13 20:20:40 +000021477
Bram Moolenaar81bf7082005-02-12 14:31:42 +000021478 if (rettv != NULL)
Bram Moolenaarb71eaae2006-01-20 23:10:18 +000021479 s = echo_string((typval_T *)rettv, &tofree, numbuf, 0);
Bram Moolenaar81bf7082005-02-12 14:31:42 +000021480 if (s == NULL)
21481 s = (char_u *)"";
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021482
21483 STRCPY(IObuff, ":return ");
21484 STRNCPY(IObuff + 8, s, IOSIZE - 8);
21485 if (STRLEN(s) + 8 >= IOSIZE)
21486 STRCPY(IObuff + IOSIZE - 4, "...");
21487 vim_free(tofree);
21488 return vim_strsave(IObuff);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021489}
21490
21491/*
21492 * Get next function line.
21493 * Called by do_cmdline() to get the next line.
21494 * Returns allocated string, or NULL for end of function.
21495 */
21496/* ARGSUSED */
21497 char_u *
21498get_func_line(c, cookie, indent)
21499 int c; /* not used */
21500 void *cookie;
21501 int indent; /* not used */
21502{
Bram Moolenaar33570922005-01-25 22:26:29 +000021503 funccall_T *fcp = (funccall_T *)cookie;
Bram Moolenaar05159a02005-02-26 23:04:13 +000021504 ufunc_T *fp = fcp->func;
21505 char_u *retval;
21506 garray_T *gap; /* growarray with function lines */
Bram Moolenaar071d4272004-06-13 20:20:40 +000021507
21508 /* If breakpoints have been added/deleted need to check for it. */
21509 if (fcp->dbg_tick != debug_tick)
21510 {
Bram Moolenaar05159a02005-02-26 23:04:13 +000021511 fcp->breakpoint = dbg_find_breakpoint(FALSE, fp->uf_name,
Bram Moolenaar071d4272004-06-13 20:20:40 +000021512 sourcing_lnum);
21513 fcp->dbg_tick = debug_tick;
21514 }
Bram Moolenaar05159a02005-02-26 23:04:13 +000021515#ifdef FEAT_PROFILE
Bram Moolenaarb3656ed2006-03-20 21:59:49 +000021516 if (do_profiling == PROF_YES)
Bram Moolenaar05159a02005-02-26 23:04:13 +000021517 func_line_end(cookie);
21518#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000021519
Bram Moolenaar05159a02005-02-26 23:04:13 +000021520 gap = &fp->uf_lines;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000021521 if (((fp->uf_flags & FC_ABORT) && did_emsg && !aborted_in_try())
21522 || fcp->returned)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021523 retval = NULL;
21524 else
21525 {
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000021526 /* Skip NULL lines (continuation lines). */
21527 while (fcp->linenr < gap->ga_len
21528 && ((char_u **)(gap->ga_data))[fcp->linenr] == NULL)
21529 ++fcp->linenr;
21530 if (fcp->linenr >= gap->ga_len)
21531 retval = NULL;
21532 else
21533 {
21534 retval = vim_strsave(((char_u **)(gap->ga_data))[fcp->linenr++]);
21535 sourcing_lnum = fcp->linenr;
Bram Moolenaar05159a02005-02-26 23:04:13 +000021536#ifdef FEAT_PROFILE
Bram Moolenaarb3656ed2006-03-20 21:59:49 +000021537 if (do_profiling == PROF_YES)
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000021538 func_line_start(cookie);
Bram Moolenaar05159a02005-02-26 23:04:13 +000021539#endif
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000021540 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000021541 }
21542
21543 /* Did we encounter a breakpoint? */
21544 if (fcp->breakpoint != 0 && fcp->breakpoint <= sourcing_lnum)
21545 {
Bram Moolenaar05159a02005-02-26 23:04:13 +000021546 dbg_breakpoint(fp->uf_name, sourcing_lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021547 /* Find next breakpoint. */
Bram Moolenaar05159a02005-02-26 23:04:13 +000021548 fcp->breakpoint = dbg_find_breakpoint(FALSE, fp->uf_name,
Bram Moolenaar071d4272004-06-13 20:20:40 +000021549 sourcing_lnum);
21550 fcp->dbg_tick = debug_tick;
21551 }
21552
21553 return retval;
21554}
21555
Bram Moolenaar05159a02005-02-26 23:04:13 +000021556#if defined(FEAT_PROFILE) || defined(PROTO)
21557/*
21558 * Called when starting to read a function line.
21559 * "sourcing_lnum" must be correct!
21560 * When skipping lines it may not actually be executed, but we won't find out
21561 * until later and we need to store the time now.
21562 */
21563 void
21564func_line_start(cookie)
21565 void *cookie;
21566{
21567 funccall_T *fcp = (funccall_T *)cookie;
21568 ufunc_T *fp = fcp->func;
21569
21570 if (fp->uf_profiling && sourcing_lnum >= 1
21571 && sourcing_lnum <= fp->uf_lines.ga_len)
21572 {
21573 fp->uf_tml_idx = sourcing_lnum - 1;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000021574 /* Skip continuation lines. */
21575 while (fp->uf_tml_idx > 0 && FUNCLINE(fp, fp->uf_tml_idx) == NULL)
21576 --fp->uf_tml_idx;
Bram Moolenaar05159a02005-02-26 23:04:13 +000021577 fp->uf_tml_execed = FALSE;
21578 profile_start(&fp->uf_tml_start);
21579 profile_zero(&fp->uf_tml_children);
21580 profile_get_wait(&fp->uf_tml_wait);
21581 }
21582}
21583
21584/*
21585 * Called when actually executing a function line.
21586 */
21587 void
21588func_line_exec(cookie)
21589 void *cookie;
21590{
21591 funccall_T *fcp = (funccall_T *)cookie;
21592 ufunc_T *fp = fcp->func;
21593
21594 if (fp->uf_profiling && fp->uf_tml_idx >= 0)
21595 fp->uf_tml_execed = TRUE;
21596}
21597
21598/*
21599 * Called when done with a function line.
21600 */
21601 void
21602func_line_end(cookie)
21603 void *cookie;
21604{
21605 funccall_T *fcp = (funccall_T *)cookie;
21606 ufunc_T *fp = fcp->func;
21607
21608 if (fp->uf_profiling && fp->uf_tml_idx >= 0)
21609 {
21610 if (fp->uf_tml_execed)
21611 {
21612 ++fp->uf_tml_count[fp->uf_tml_idx];
21613 profile_end(&fp->uf_tml_start);
21614 profile_sub_wait(&fp->uf_tml_wait, &fp->uf_tml_start);
Bram Moolenaar05159a02005-02-26 23:04:13 +000021615 profile_add(&fp->uf_tml_total[fp->uf_tml_idx], &fp->uf_tml_start);
Bram Moolenaar1056d982006-03-09 22:37:52 +000021616 profile_self(&fp->uf_tml_self[fp->uf_tml_idx], &fp->uf_tml_start,
21617 &fp->uf_tml_children);
Bram Moolenaar05159a02005-02-26 23:04:13 +000021618 }
21619 fp->uf_tml_idx = -1;
21620 }
21621}
21622#endif
21623
Bram Moolenaar071d4272004-06-13 20:20:40 +000021624/*
21625 * Return TRUE if the currently active function should be ended, because a
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021626 * return was encountered or an error occurred. Used inside a ":while".
Bram Moolenaar071d4272004-06-13 20:20:40 +000021627 */
21628 int
21629func_has_ended(cookie)
21630 void *cookie;
21631{
Bram Moolenaar33570922005-01-25 22:26:29 +000021632 funccall_T *fcp = (funccall_T *)cookie;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021633
21634 /* Ignore the "abort" flag if the abortion behavior has been changed due to
21635 * an error inside a try conditional. */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021636 return (((fcp->func->uf_flags & FC_ABORT) && did_emsg && !aborted_in_try())
Bram Moolenaar071d4272004-06-13 20:20:40 +000021637 || fcp->returned);
21638}
21639
21640/*
21641 * return TRUE if cookie indicates a function which "abort"s on errors.
21642 */
21643 int
21644func_has_abort(cookie)
21645 void *cookie;
21646{
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021647 return ((funccall_T *)cookie)->func->uf_flags & FC_ABORT;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021648}
21649
21650#if defined(FEAT_VIMINFO) || defined(FEAT_SESSION)
21651typedef enum
21652{
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021653 VAR_FLAVOUR_DEFAULT, /* doesn't start with uppercase */
21654 VAR_FLAVOUR_SESSION, /* starts with uppercase, some lower */
21655 VAR_FLAVOUR_VIMINFO /* all uppercase */
Bram Moolenaar071d4272004-06-13 20:20:40 +000021656} var_flavour_T;
21657
21658static var_flavour_T var_flavour __ARGS((char_u *varname));
21659
21660 static var_flavour_T
21661var_flavour(varname)
21662 char_u *varname;
21663{
21664 char_u *p = varname;
21665
21666 if (ASCII_ISUPPER(*p))
21667 {
21668 while (*(++p))
21669 if (ASCII_ISLOWER(*p))
21670 return VAR_FLAVOUR_SESSION;
21671 return VAR_FLAVOUR_VIMINFO;
21672 }
21673 else
21674 return VAR_FLAVOUR_DEFAULT;
21675}
21676#endif
21677
21678#if defined(FEAT_VIMINFO) || defined(PROTO)
21679/*
21680 * Restore global vars that start with a capital from the viminfo file
21681 */
21682 int
21683read_viminfo_varlist(virp, writing)
21684 vir_T *virp;
21685 int writing;
21686{
21687 char_u *tab;
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021688 int type = VAR_NUMBER;
Bram Moolenaar33570922005-01-25 22:26:29 +000021689 typval_T tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021690
21691 if (!writing && (find_viminfo_parameter('!') != NULL))
21692 {
21693 tab = vim_strchr(virp->vir_line + 1, '\t');
21694 if (tab != NULL)
21695 {
21696 *tab++ = '\0'; /* isolate the variable name */
21697 if (*tab == 'S') /* string var */
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021698 type = VAR_STRING;
21699#ifdef FEAT_FLOAT
21700 else if (*tab == 'F')
21701 type = VAR_FLOAT;
21702#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000021703
21704 tab = vim_strchr(tab, '\t');
21705 if (tab != NULL)
21706 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021707 tv.v_type = type;
21708 if (type == VAR_STRING)
Bram Moolenaar3d60ec22005-01-05 22:19:46 +000021709 tv.vval.v_string = viminfo_readstring(virp,
Bram Moolenaar071d4272004-06-13 20:20:40 +000021710 (int)(tab - virp->vir_line + 1), TRUE);
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021711#ifdef FEAT_FLOAT
21712 else if (type == VAR_FLOAT)
21713 (void)string2float(tab + 1, &tv.vval.v_float);
21714#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000021715 else
Bram Moolenaar3d60ec22005-01-05 22:19:46 +000021716 tv.vval.v_number = atol((char *)tab + 1);
Bram Moolenaar3d60ec22005-01-05 22:19:46 +000021717 set_var(virp->vir_line + 1, &tv, FALSE);
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021718 if (type == VAR_STRING)
Bram Moolenaar3d60ec22005-01-05 22:19:46 +000021719 vim_free(tv.vval.v_string);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021720 }
21721 }
21722 }
21723
21724 return viminfo_readline(virp);
21725}
21726
21727/*
21728 * Write global vars that start with a capital to the viminfo file
21729 */
21730 void
21731write_viminfo_varlist(fp)
21732 FILE *fp;
21733{
Bram Moolenaar33570922005-01-25 22:26:29 +000021734 hashitem_T *hi;
21735 dictitem_T *this_var;
Bram Moolenaara7043832005-01-21 11:56:39 +000021736 int todo;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021737 char *s;
Bram Moolenaar81bf7082005-02-12 14:31:42 +000021738 char_u *p;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021739 char_u *tofree;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000021740 char_u numbuf[NUMBUFLEN];
Bram Moolenaar071d4272004-06-13 20:20:40 +000021741
21742 if (find_viminfo_parameter('!') == NULL)
21743 return;
21744
21745 fprintf(fp, _("\n# global variables:\n"));
Bram Moolenaara7043832005-01-21 11:56:39 +000021746
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000021747 todo = (int)globvarht.ht_used;
Bram Moolenaar33570922005-01-25 22:26:29 +000021748 for (hi = globvarht.ht_array; todo > 0; ++hi)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021749 {
Bram Moolenaara7043832005-01-21 11:56:39 +000021750 if (!HASHITEM_EMPTY(hi))
Bram Moolenaar071d4272004-06-13 20:20:40 +000021751 {
Bram Moolenaara7043832005-01-21 11:56:39 +000021752 --todo;
Bram Moolenaar33570922005-01-25 22:26:29 +000021753 this_var = HI2DI(hi);
21754 if (var_flavour(this_var->di_key) == VAR_FLAVOUR_VIMINFO)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021755 {
Bram Moolenaar33570922005-01-25 22:26:29 +000021756 switch (this_var->di_tv.v_type)
Bram Moolenaara7043832005-01-21 11:56:39 +000021757 {
21758 case VAR_STRING: s = "STR"; break;
21759 case VAR_NUMBER: s = "NUM"; break;
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021760#ifdef FEAT_FLOAT
21761 case VAR_FLOAT: s = "FLO"; break;
21762#endif
Bram Moolenaara7043832005-01-21 11:56:39 +000021763 default: continue;
21764 }
Bram Moolenaar33570922005-01-25 22:26:29 +000021765 fprintf(fp, "!%s\t%s\t", this_var->di_key, s);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +000021766 p = echo_string(&this_var->di_tv, &tofree, numbuf, 0);
Bram Moolenaar81bf7082005-02-12 14:31:42 +000021767 if (p != NULL)
21768 viminfo_writestring(fp, p);
Bram Moolenaara7043832005-01-21 11:56:39 +000021769 vim_free(tofree);
21770 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000021771 }
21772 }
21773}
21774#endif
21775
21776#if defined(FEAT_SESSION) || defined(PROTO)
21777 int
21778store_session_globals(fd)
21779 FILE *fd;
21780{
Bram Moolenaar33570922005-01-25 22:26:29 +000021781 hashitem_T *hi;
21782 dictitem_T *this_var;
Bram Moolenaara7043832005-01-21 11:56:39 +000021783 int todo;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021784 char_u *p, *t;
21785
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000021786 todo = (int)globvarht.ht_used;
Bram Moolenaar33570922005-01-25 22:26:29 +000021787 for (hi = globvarht.ht_array; todo > 0; ++hi)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021788 {
Bram Moolenaara7043832005-01-21 11:56:39 +000021789 if (!HASHITEM_EMPTY(hi))
Bram Moolenaar071d4272004-06-13 20:20:40 +000021790 {
Bram Moolenaara7043832005-01-21 11:56:39 +000021791 --todo;
Bram Moolenaar33570922005-01-25 22:26:29 +000021792 this_var = HI2DI(hi);
21793 if ((this_var->di_tv.v_type == VAR_NUMBER
21794 || this_var->di_tv.v_type == VAR_STRING)
21795 && var_flavour(this_var->di_key) == VAR_FLAVOUR_SESSION)
Bram Moolenaar3d60ec22005-01-05 22:19:46 +000021796 {
Bram Moolenaara7043832005-01-21 11:56:39 +000021797 /* Escape special characters with a backslash. Turn a LF and
21798 * CR into \n and \r. */
Bram Moolenaar33570922005-01-25 22:26:29 +000021799 p = vim_strsave_escaped(get_tv_string(&this_var->di_tv),
Bram Moolenaara7043832005-01-21 11:56:39 +000021800 (char_u *)"\\\"\n\r");
21801 if (p == NULL) /* out of memory */
21802 break;
21803 for (t = p; *t != NUL; ++t)
21804 if (*t == '\n')
21805 *t = 'n';
21806 else if (*t == '\r')
21807 *t = 'r';
21808 if ((fprintf(fd, "let %s = %c%s%c",
Bram Moolenaar33570922005-01-25 22:26:29 +000021809 this_var->di_key,
21810 (this_var->di_tv.v_type == VAR_STRING) ? '"'
21811 : ' ',
21812 p,
21813 (this_var->di_tv.v_type == VAR_STRING) ? '"'
21814 : ' ') < 0)
Bram Moolenaara7043832005-01-21 11:56:39 +000021815 || put_eol(fd) == FAIL)
21816 {
21817 vim_free(p);
21818 return FAIL;
21819 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000021820 vim_free(p);
21821 }
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021822#ifdef FEAT_FLOAT
21823 else if (this_var->di_tv.v_type == VAR_FLOAT
21824 && var_flavour(this_var->di_key) == VAR_FLAVOUR_SESSION)
21825 {
21826 float_T f = this_var->di_tv.vval.v_float;
21827 int sign = ' ';
21828
21829 if (f < 0)
21830 {
21831 f = -f;
21832 sign = '-';
21833 }
21834 if ((fprintf(fd, "let %s = %c&%f",
21835 this_var->di_key, sign, f) < 0)
21836 || put_eol(fd) == FAIL)
21837 return FAIL;
21838 }
21839#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000021840 }
21841 }
21842 return OK;
21843}
21844#endif
21845
Bram Moolenaar661b1822005-07-28 22:36:45 +000021846/*
21847 * Display script name where an item was last set.
21848 * Should only be invoked when 'verbose' is non-zero.
21849 */
21850 void
21851last_set_msg(scriptID)
21852 scid_T scriptID;
21853{
Bram Moolenaarcafda4f2005-09-06 19:25:11 +000021854 char_u *p;
21855
Bram Moolenaar661b1822005-07-28 22:36:45 +000021856 if (scriptID != 0)
21857 {
Bram Moolenaarcafda4f2005-09-06 19:25:11 +000021858 p = home_replace_save(NULL, get_scriptname(scriptID));
21859 if (p != NULL)
21860 {
21861 verbose_enter();
21862 MSG_PUTS(_("\n\tLast set from "));
21863 MSG_PUTS(p);
21864 vim_free(p);
21865 verbose_leave();
21866 }
Bram Moolenaar661b1822005-07-28 22:36:45 +000021867 }
21868}
21869
Bram Moolenaar071d4272004-06-13 20:20:40 +000021870#endif /* FEAT_EVAL */
21871
Bram Moolenaar071d4272004-06-13 20:20:40 +000021872
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021873#if defined(FEAT_MODIFY_FNAME) || defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021874
21875#ifdef WIN3264
21876/*
21877 * Functions for ":8" filename modifier: get 8.3 version of a filename.
21878 */
21879static int get_short_pathname __ARGS((char_u **fnamep, char_u **bufp, int *fnamelen));
21880static int shortpath_for_invalid_fname __ARGS((char_u **fname, char_u **bufp, int *fnamelen));
21881static int shortpath_for_partial __ARGS((char_u **fnamep, char_u **bufp, int *fnamelen));
21882
21883/*
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000021884 * Get the short path (8.3) for the filename in "fnamep".
21885 * Only works for a valid file name.
21886 * When the path gets longer "fnamep" is changed and the allocated buffer
21887 * is put in "bufp".
21888 * *fnamelen is the length of "fnamep" and set to 0 for a nonexistent path.
21889 * Returns OK on success, FAIL on failure.
Bram Moolenaar071d4272004-06-13 20:20:40 +000021890 */
21891 static int
21892get_short_pathname(fnamep, bufp, fnamelen)
21893 char_u **fnamep;
21894 char_u **bufp;
21895 int *fnamelen;
21896{
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000021897 int l, len;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021898 char_u *newbuf;
21899
21900 len = *fnamelen;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021901 l = GetShortPathName(*fnamep, *fnamep, len);
21902 if (l > len - 1)
21903 {
21904 /* If that doesn't work (not enough space), then save the string
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000021905 * and try again with a new buffer big enough. */
Bram Moolenaar071d4272004-06-13 20:20:40 +000021906 newbuf = vim_strnsave(*fnamep, l);
21907 if (newbuf == NULL)
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000021908 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021909
21910 vim_free(*bufp);
21911 *fnamep = *bufp = newbuf;
21912
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000021913 /* Really should always succeed, as the buffer is big enough. */
21914 l = GetShortPathName(*fnamep, *fnamep, l+1);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021915 }
21916
21917 *fnamelen = l;
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000021918 return OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021919}
21920
21921/*
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000021922 * Get the short path (8.3) for the filename in "fname". The converted
21923 * path is returned in "bufp".
21924 *
21925 * Some of the directories specified in "fname" may not exist. This function
21926 * will shorten the existing directories at the beginning of the path and then
21927 * append the remaining non-existing path.
21928 *
21929 * fname - Pointer to the filename to shorten. On return, contains the
21930 * pointer to the shortened pathname
21931 * bufp - Pointer to an allocated buffer for the filename.
21932 * fnamelen - Length of the filename pointed to by fname
21933 *
21934 * Returns OK on success (or nothing done) and FAIL on failure (out of memory).
Bram Moolenaar071d4272004-06-13 20:20:40 +000021935 */
21936 static int
21937shortpath_for_invalid_fname(fname, bufp, fnamelen)
21938 char_u **fname;
21939 char_u **bufp;
21940 int *fnamelen;
21941{
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000021942 char_u *short_fname, *save_fname, *pbuf_unused;
21943 char_u *endp, *save_endp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021944 char_u ch;
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000021945 int old_len, len;
21946 int new_len, sfx_len;
21947 int retval = OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021948
21949 /* Make a copy */
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000021950 old_len = *fnamelen;
21951 save_fname = vim_strnsave(*fname, old_len);
21952 pbuf_unused = NULL;
21953 short_fname = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021954
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000021955 endp = save_fname + old_len - 1; /* Find the end of the copy */
21956 save_endp = endp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021957
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000021958 /*
21959 * Try shortening the supplied path till it succeeds by removing one
21960 * directory at a time from the tail of the path.
21961 */
21962 len = 0;
21963 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021964 {
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000021965 /* go back one path-separator */
21966 while (endp > save_fname && !after_pathsep(save_fname, endp + 1))
21967 --endp;
21968 if (endp <= save_fname)
21969 break; /* processed the complete path */
21970
21971 /*
21972 * Replace the path separator with a NUL and try to shorten the
21973 * resulting path.
21974 */
21975 ch = *endp;
21976 *endp = 0;
21977 short_fname = save_fname;
21978 len = STRLEN(short_fname) + 1;
21979 if (get_short_pathname(&short_fname, &pbuf_unused, &len) == FAIL)
21980 {
21981 retval = FAIL;
21982 goto theend;
21983 }
21984 *endp = ch; /* preserve the string */
21985
21986 if (len > 0)
21987 break; /* successfully shortened the path */
21988
21989 /* failed to shorten the path. Skip the path separator */
21990 --endp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021991 }
21992
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000021993 if (len > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021994 {
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000021995 /*
21996 * Succeeded in shortening the path. Now concatenate the shortened
21997 * path with the remaining path at the tail.
21998 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000021999
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022000 /* Compute the length of the new path. */
22001 sfx_len = (int)(save_endp - endp) + 1;
22002 new_len = len + sfx_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022003
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022004 *fnamelen = new_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022005 vim_free(*bufp);
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022006 if (new_len > old_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +000022007 {
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022008 /* There is not enough space in the currently allocated string,
22009 * copy it to a buffer big enough. */
22010 *fname = *bufp = vim_strnsave(short_fname, new_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +000022011 if (*fname == NULL)
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022012 {
22013 retval = FAIL;
22014 goto theend;
22015 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000022016 }
22017 else
22018 {
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022019 /* Transfer short_fname to the main buffer (it's big enough),
22020 * unless get_short_pathname() did its work in-place. */
22021 *fname = *bufp = save_fname;
22022 if (short_fname != save_fname)
22023 vim_strncpy(save_fname, short_fname, len);
22024 save_fname = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022025 }
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022026
22027 /* concat the not-shortened part of the path */
22028 vim_strncpy(*fname + len, endp, sfx_len);
22029 (*fname)[new_len] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022030 }
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022031
22032theend:
22033 vim_free(pbuf_unused);
22034 vim_free(save_fname);
22035
22036 return retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022037}
22038
22039/*
22040 * Get a pathname for a partial path.
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022041 * Returns OK for success, FAIL for failure.
Bram Moolenaar071d4272004-06-13 20:20:40 +000022042 */
22043 static int
22044shortpath_for_partial(fnamep, bufp, fnamelen)
22045 char_u **fnamep;
22046 char_u **bufp;
22047 int *fnamelen;
22048{
22049 int sepcount, len, tflen;
22050 char_u *p;
22051 char_u *pbuf, *tfname;
22052 int hasTilde;
22053
Bram Moolenaar8c8de832008-06-24 22:58:06 +000022054 /* Count up the path separators from the RHS.. so we know which part
22055 * of the path to return. */
Bram Moolenaar071d4272004-06-13 20:20:40 +000022056 sepcount = 0;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +000022057 for (p = *fnamep; p < *fnamep + *fnamelen; mb_ptr_adv(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +000022058 if (vim_ispathsep(*p))
22059 ++sepcount;
22060
22061 /* Need full path first (use expand_env() to remove a "~/") */
22062 hasTilde = (**fnamep == '~');
22063 if (hasTilde)
22064 pbuf = tfname = expand_env_save(*fnamep);
22065 else
22066 pbuf = tfname = FullName_save(*fnamep, FALSE);
22067
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000022068 len = tflen = (int)STRLEN(tfname);
Bram Moolenaar071d4272004-06-13 20:20:40 +000022069
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022070 if (get_short_pathname(&tfname, &pbuf, &len) == FAIL)
22071 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022072
22073 if (len == 0)
22074 {
22075 /* Don't have a valid filename, so shorten the rest of the
22076 * path if we can. This CAN give us invalid 8.3 filenames, but
22077 * there's not a lot of point in guessing what it might be.
22078 */
22079 len = tflen;
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022080 if (shortpath_for_invalid_fname(&tfname, &pbuf, &len) == FAIL)
22081 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022082 }
22083
22084 /* Count the paths backward to find the beginning of the desired string. */
22085 for (p = tfname + len - 1; p >= tfname; --p)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +000022086 {
22087#ifdef FEAT_MBYTE
22088 if (has_mbyte)
22089 p -= mb_head_off(tfname, p);
22090#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000022091 if (vim_ispathsep(*p))
22092 {
22093 if (sepcount == 0 || (hasTilde && sepcount == 1))
22094 break;
22095 else
22096 sepcount --;
22097 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +000022098 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000022099 if (hasTilde)
22100 {
22101 --p;
22102 if (p >= tfname)
22103 *p = '~';
22104 else
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022105 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022106 }
22107 else
22108 ++p;
22109
22110 /* Copy in the string - p indexes into tfname - allocated at pbuf */
22111 vim_free(*bufp);
22112 *fnamelen = (int)STRLEN(p);
22113 *bufp = pbuf;
22114 *fnamep = p;
22115
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022116 return OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022117}
22118#endif /* WIN3264 */
22119
22120/*
22121 * Adjust a filename, according to a string of modifiers.
22122 * *fnamep must be NUL terminated when called. When returning, the length is
22123 * determined by *fnamelen.
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022124 * Returns VALID_ flags or -1 for failure.
Bram Moolenaar071d4272004-06-13 20:20:40 +000022125 * When there is an error, *fnamep is set to NULL.
22126 */
22127 int
22128modify_fname(src, usedlen, fnamep, bufp, fnamelen)
22129 char_u *src; /* string with modifiers */
22130 int *usedlen; /* characters after src that are used */
22131 char_u **fnamep; /* file name so far */
22132 char_u **bufp; /* buffer for allocated file name or NULL */
22133 int *fnamelen; /* length of fnamep */
22134{
22135 int valid = 0;
22136 char_u *tail;
22137 char_u *s, *p, *pbuf;
22138 char_u dirname[MAXPATHL];
22139 int c;
22140 int has_fullname = 0;
22141#ifdef WIN3264
22142 int has_shortname = 0;
22143#endif
22144
22145repeat:
22146 /* ":p" - full path/file_name */
22147 if (src[*usedlen] == ':' && src[*usedlen + 1] == 'p')
22148 {
22149 has_fullname = 1;
22150
22151 valid |= VALID_PATH;
22152 *usedlen += 2;
22153
22154 /* Expand "~/path" for all systems and "~user/path" for Unix and VMS */
22155 if ((*fnamep)[0] == '~'
22156#if !defined(UNIX) && !(defined(VMS) && defined(USER_HOME))
22157 && ((*fnamep)[1] == '/'
22158# ifdef BACKSLASH_IN_FILENAME
22159 || (*fnamep)[1] == '\\'
22160# endif
22161 || (*fnamep)[1] == NUL)
22162
22163#endif
22164 )
22165 {
22166 *fnamep = expand_env_save(*fnamep);
22167 vim_free(*bufp); /* free any allocated file name */
22168 *bufp = *fnamep;
22169 if (*fnamep == NULL)
22170 return -1;
22171 }
22172
22173 /* When "/." or "/.." is used: force expansion to get rid of it. */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +000022174 for (p = *fnamep; *p != NUL; mb_ptr_adv(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +000022175 {
22176 if (vim_ispathsep(*p)
22177 && p[1] == '.'
22178 && (p[2] == NUL
22179 || vim_ispathsep(p[2])
22180 || (p[2] == '.'
22181 && (p[3] == NUL || vim_ispathsep(p[3])))))
22182 break;
22183 }
22184
22185 /* FullName_save() is slow, don't use it when not needed. */
22186 if (*p != NUL || !vim_isAbsName(*fnamep))
22187 {
22188 *fnamep = FullName_save(*fnamep, *p != NUL);
22189 vim_free(*bufp); /* free any allocated file name */
22190 *bufp = *fnamep;
22191 if (*fnamep == NULL)
22192 return -1;
22193 }
22194
22195 /* Append a path separator to a directory. */
22196 if (mch_isdir(*fnamep))
22197 {
22198 /* Make room for one or two extra characters. */
22199 *fnamep = vim_strnsave(*fnamep, (int)STRLEN(*fnamep) + 2);
22200 vim_free(*bufp); /* free any allocated file name */
22201 *bufp = *fnamep;
22202 if (*fnamep == NULL)
22203 return -1;
22204 add_pathsep(*fnamep);
22205 }
22206 }
22207
22208 /* ":." - path relative to the current directory */
22209 /* ":~" - path relative to the home directory */
22210 /* ":8" - shortname path - postponed till after */
22211 while (src[*usedlen] == ':'
22212 && ((c = src[*usedlen + 1]) == '.' || c == '~' || c == '8'))
22213 {
22214 *usedlen += 2;
22215 if (c == '8')
22216 {
22217#ifdef WIN3264
22218 has_shortname = 1; /* Postpone this. */
22219#endif
22220 continue;
22221 }
22222 pbuf = NULL;
22223 /* Need full path first (use expand_env() to remove a "~/") */
22224 if (!has_fullname)
22225 {
22226 if (c == '.' && **fnamep == '~')
22227 p = pbuf = expand_env_save(*fnamep);
22228 else
22229 p = pbuf = FullName_save(*fnamep, FALSE);
22230 }
22231 else
22232 p = *fnamep;
22233
22234 has_fullname = 0;
22235
22236 if (p != NULL)
22237 {
22238 if (c == '.')
22239 {
22240 mch_dirname(dirname, MAXPATHL);
22241 s = shorten_fname(p, dirname);
22242 if (s != NULL)
22243 {
22244 *fnamep = s;
22245 if (pbuf != NULL)
22246 {
22247 vim_free(*bufp); /* free any allocated file name */
22248 *bufp = pbuf;
22249 pbuf = NULL;
22250 }
22251 }
22252 }
22253 else
22254 {
22255 home_replace(NULL, p, dirname, MAXPATHL, TRUE);
22256 /* Only replace it when it starts with '~' */
22257 if (*dirname == '~')
22258 {
22259 s = vim_strsave(dirname);
22260 if (s != NULL)
22261 {
22262 *fnamep = s;
22263 vim_free(*bufp);
22264 *bufp = s;
22265 }
22266 }
22267 }
22268 vim_free(pbuf);
22269 }
22270 }
22271
22272 tail = gettail(*fnamep);
22273 *fnamelen = (int)STRLEN(*fnamep);
22274
22275 /* ":h" - head, remove "/file_name", can be repeated */
22276 /* Don't remove the first "/" or "c:\" */
22277 while (src[*usedlen] == ':' && src[*usedlen + 1] == 'h')
22278 {
22279 valid |= VALID_HEAD;
22280 *usedlen += 2;
22281 s = get_past_head(*fnamep);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +000022282 while (tail > s && after_pathsep(s, tail))
Bram Moolenaar5461cfe2007-09-25 18:40:14 +000022283 mb_ptr_back(*fnamep, tail);
Bram Moolenaar071d4272004-06-13 20:20:40 +000022284 *fnamelen = (int)(tail - *fnamep);
22285#ifdef VMS
22286 if (*fnamelen > 0)
22287 *fnamelen += 1; /* the path separator is part of the path */
22288#endif
Bram Moolenaar5461cfe2007-09-25 18:40:14 +000022289 if (*fnamelen == 0)
22290 {
22291 /* Result is empty. Turn it into "." to make ":cd %:h" work. */
22292 p = vim_strsave((char_u *)".");
22293 if (p == NULL)
22294 return -1;
22295 vim_free(*bufp);
22296 *bufp = *fnamep = tail = p;
22297 *fnamelen = 1;
22298 }
22299 else
22300 {
22301 while (tail > s && !after_pathsep(s, tail))
22302 mb_ptr_back(*fnamep, tail);
22303 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000022304 }
22305
22306 /* ":8" - shortname */
22307 if (src[*usedlen] == ':' && src[*usedlen + 1] == '8')
22308 {
22309 *usedlen += 2;
22310#ifdef WIN3264
22311 has_shortname = 1;
22312#endif
22313 }
22314
22315#ifdef WIN3264
22316 /* Check shortname after we have done 'heads' and before we do 'tails'
22317 */
22318 if (has_shortname)
22319 {
22320 pbuf = NULL;
22321 /* Copy the string if it is shortened by :h */
22322 if (*fnamelen < (int)STRLEN(*fnamep))
22323 {
22324 p = vim_strnsave(*fnamep, *fnamelen);
22325 if (p == 0)
22326 return -1;
22327 vim_free(*bufp);
22328 *bufp = *fnamep = p;
22329 }
22330
22331 /* Split into two implementations - makes it easier. First is where
22332 * there isn't a full name already, second is where there is.
22333 */
22334 if (!has_fullname && !vim_isAbsName(*fnamep))
22335 {
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022336 if (shortpath_for_partial(fnamep, bufp, fnamelen) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000022337 return -1;
22338 }
22339 else
22340 {
22341 int l;
22342
22343 /* Simple case, already have the full-name
22344 * Nearly always shorter, so try first time. */
22345 l = *fnamelen;
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022346 if (get_short_pathname(fnamep, bufp, &l) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000022347 return -1;
22348
22349 if (l == 0)
22350 {
22351 /* Couldn't find the filename.. search the paths.
22352 */
22353 l = *fnamelen;
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022354 if (shortpath_for_invalid_fname(fnamep, bufp, &l) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000022355 return -1;
22356 }
22357 *fnamelen = l;
22358 }
22359 }
22360#endif /* WIN3264 */
22361
22362 /* ":t" - tail, just the basename */
22363 if (src[*usedlen] == ':' && src[*usedlen + 1] == 't')
22364 {
22365 *usedlen += 2;
22366 *fnamelen -= (int)(tail - *fnamep);
22367 *fnamep = tail;
22368 }
22369
22370 /* ":e" - extension, can be repeated */
22371 /* ":r" - root, without extension, can be repeated */
22372 while (src[*usedlen] == ':'
22373 && (src[*usedlen + 1] == 'e' || src[*usedlen + 1] == 'r'))
22374 {
22375 /* find a '.' in the tail:
22376 * - for second :e: before the current fname
22377 * - otherwise: The last '.'
22378 */
22379 if (src[*usedlen + 1] == 'e' && *fnamep > tail)
22380 s = *fnamep - 2;
22381 else
22382 s = *fnamep + *fnamelen - 1;
22383 for ( ; s > tail; --s)
22384 if (s[0] == '.')
22385 break;
22386 if (src[*usedlen + 1] == 'e') /* :e */
22387 {
22388 if (s > tail)
22389 {
22390 *fnamelen += (int)(*fnamep - (s + 1));
22391 *fnamep = s + 1;
22392#ifdef VMS
22393 /* cut version from the extension */
22394 s = *fnamep + *fnamelen - 1;
22395 for ( ; s > *fnamep; --s)
22396 if (s[0] == ';')
22397 break;
22398 if (s > *fnamep)
22399 *fnamelen = s - *fnamep;
22400#endif
22401 }
22402 else if (*fnamep <= tail)
22403 *fnamelen = 0;
22404 }
22405 else /* :r */
22406 {
22407 if (s > tail) /* remove one extension */
22408 *fnamelen = (int)(s - *fnamep);
22409 }
22410 *usedlen += 2;
22411 }
22412
22413 /* ":s?pat?foo?" - substitute */
22414 /* ":gs?pat?foo?" - global substitute */
22415 if (src[*usedlen] == ':'
22416 && (src[*usedlen + 1] == 's'
22417 || (src[*usedlen + 1] == 'g' && src[*usedlen + 2] == 's')))
22418 {
22419 char_u *str;
22420 char_u *pat;
22421 char_u *sub;
22422 int sep;
22423 char_u *flags;
22424 int didit = FALSE;
22425
22426 flags = (char_u *)"";
22427 s = src + *usedlen + 2;
22428 if (src[*usedlen + 1] == 'g')
22429 {
22430 flags = (char_u *)"g";
22431 ++s;
22432 }
22433
22434 sep = *s++;
22435 if (sep)
22436 {
22437 /* find end of pattern */
22438 p = vim_strchr(s, sep);
22439 if (p != NULL)
22440 {
22441 pat = vim_strnsave(s, (int)(p - s));
22442 if (pat != NULL)
22443 {
22444 s = p + 1;
22445 /* find end of substitution */
22446 p = vim_strchr(s, sep);
22447 if (p != NULL)
22448 {
22449 sub = vim_strnsave(s, (int)(p - s));
22450 str = vim_strnsave(*fnamep, *fnamelen);
22451 if (sub != NULL && str != NULL)
22452 {
22453 *usedlen = (int)(p + 1 - src);
22454 s = do_string_sub(str, pat, sub, flags);
22455 if (s != NULL)
22456 {
22457 *fnamep = s;
22458 *fnamelen = (int)STRLEN(s);
22459 vim_free(*bufp);
22460 *bufp = s;
22461 didit = TRUE;
22462 }
22463 }
22464 vim_free(sub);
22465 vim_free(str);
22466 }
22467 vim_free(pat);
22468 }
22469 }
22470 /* after using ":s", repeat all the modifiers */
22471 if (didit)
22472 goto repeat;
22473 }
22474 }
22475
22476 return valid;
22477}
22478
22479/*
22480 * Perform a substitution on "str" with pattern "pat" and substitute "sub".
22481 * "flags" can be "g" to do a global substitute.
22482 * Returns an allocated string, NULL for error.
22483 */
22484 char_u *
22485do_string_sub(str, pat, sub, flags)
22486 char_u *str;
22487 char_u *pat;
22488 char_u *sub;
22489 char_u *flags;
22490{
22491 int sublen;
22492 regmatch_T regmatch;
22493 int i;
22494 int do_all;
22495 char_u *tail;
22496 garray_T ga;
22497 char_u *ret;
22498 char_u *save_cpo;
22499
22500 /* Make 'cpoptions' empty, so that the 'l' flag doesn't work here */
22501 save_cpo = p_cpo;
22502 p_cpo = (char_u *)"";
22503
22504 ga_init2(&ga, 1, 200);
22505
22506 do_all = (flags[0] == 'g');
22507
22508 regmatch.rm_ic = p_ic;
22509 regmatch.regprog = vim_regcomp(pat, RE_MAGIC + RE_STRING);
22510 if (regmatch.regprog != NULL)
22511 {
22512 tail = str;
22513 while (vim_regexec_nl(&regmatch, str, (colnr_T)(tail - str)))
22514 {
22515 /*
22516 * Get some space for a temporary buffer to do the substitution
22517 * into. It will contain:
22518 * - The text up to where the match is.
22519 * - The substituted text.
22520 * - The text after the match.
22521 */
22522 sublen = vim_regsub(&regmatch, sub, tail, FALSE, TRUE, FALSE);
22523 if (ga_grow(&ga, (int)(STRLEN(tail) + sublen -
22524 (regmatch.endp[0] - regmatch.startp[0]))) == FAIL)
22525 {
22526 ga_clear(&ga);
22527 break;
22528 }
22529
22530 /* copy the text up to where the match is */
22531 i = (int)(regmatch.startp[0] - tail);
22532 mch_memmove((char_u *)ga.ga_data + ga.ga_len, tail, (size_t)i);
22533 /* add the substituted text */
22534 (void)vim_regsub(&regmatch, sub, (char_u *)ga.ga_data
22535 + ga.ga_len + i, TRUE, TRUE, FALSE);
22536 ga.ga_len += i + sublen - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022537 /* avoid getting stuck on a match with an empty string */
22538 if (tail == regmatch.endp[0])
22539 {
22540 if (*tail == NUL)
22541 break;
22542 *((char_u *)ga.ga_data + ga.ga_len) = *tail++;
22543 ++ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022544 }
22545 else
22546 {
22547 tail = regmatch.endp[0];
22548 if (*tail == NUL)
22549 break;
22550 }
22551 if (!do_all)
22552 break;
22553 }
22554
22555 if (ga.ga_data != NULL)
22556 STRCPY((char *)ga.ga_data + ga.ga_len, tail);
22557
22558 vim_free(regmatch.regprog);
22559 }
22560
22561 ret = vim_strsave(ga.ga_data == NULL ? str : (char_u *)ga.ga_data);
22562 ga_clear(&ga);
22563 p_cpo = save_cpo;
22564
22565 return ret;
22566}
22567
22568#endif /* defined(FEAT_MODIFY_FNAME) || defined(FEAT_EVAL) */