blob: a242ebf584f98ba9514177d3b96cbe4c93809178 [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 */
Bram Moolenaarc236c162008-07-13 17:41:49 +000013#if defined(MSDOS) || defined(WIN16) || defined(WIN32) || defined(_WIN64)
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 Moolenaard812df62008-11-09 12:46:09 +0000351 {VV_NAME("oldfiles", VAR_LIST), 0},
Bram Moolenaar33570922005-01-25 22:26:29 +0000352};
353
354/* shorthand */
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000355#define vv_type vv_di.di_tv.v_type
356#define vv_nr vv_di.di_tv.vval.v_number
357#define vv_float vv_di.di_tv.vval.v_float
358#define vv_str vv_di.di_tv.vval.v_string
Bram Moolenaard812df62008-11-09 12:46:09 +0000359#define vv_list vv_di.di_tv.vval.v_list
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000360#define vv_tv vv_di.di_tv
Bram Moolenaar33570922005-01-25 22:26:29 +0000361
362/*
363 * The v: variables are stored in dictionary "vimvardict".
364 * "vimvars_var" is the variable that is used for the "l:" scope.
365 */
366static dict_T vimvardict;
367static dictitem_T vimvars_var;
368#define vimvarht vimvardict.dv_hashtab
369
Bram Moolenaara40058a2005-07-11 22:42:07 +0000370static void prepare_vimvar __ARGS((int idx, typval_T *save_tv));
371static void restore_vimvar __ARGS((int idx, typval_T *save_tv));
372#if defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL)
373static int call_vim_function __ARGS((char_u *func, int argc, char_u **argv, int safe, typval_T *rettv));
374#endif
375static int ex_let_vars __ARGS((char_u *arg, typval_T *tv, int copy, int semicolon, int var_count, char_u *nextchars));
376static char_u *skip_var_list __ARGS((char_u *arg, int *var_count, int *semicolon));
377static char_u *skip_var_one __ARGS((char_u *arg));
Bram Moolenaar7d61a922007-08-30 09:12:23 +0000378static void list_hashtable_vars __ARGS((hashtab_T *ht, char_u *prefix, int empty, int *first));
379static void list_glob_vars __ARGS((int *first));
380static void list_buf_vars __ARGS((int *first));
381static void list_win_vars __ARGS((int *first));
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000382#ifdef FEAT_WINDOWS
Bram Moolenaar7d61a922007-08-30 09:12:23 +0000383static void list_tab_vars __ARGS((int *first));
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000384#endif
Bram Moolenaar7d61a922007-08-30 09:12:23 +0000385static void list_vim_vars __ARGS((int *first));
386static void list_script_vars __ARGS((int *first));
387static void list_func_vars __ARGS((int *first));
388static char_u *list_arg_vars __ARGS((exarg_T *eap, char_u *arg, int *first));
Bram Moolenaara40058a2005-07-11 22:42:07 +0000389static char_u *ex_let_one __ARGS((char_u *arg, typval_T *tv, int copy, char_u *endchars, char_u *op));
390static int check_changedtick __ARGS((char_u *arg));
391static char_u *get_lval __ARGS((char_u *name, typval_T *rettv, lval_T *lp, int unlet, int skip, int quiet, int fne_flags));
392static void clear_lval __ARGS((lval_T *lp));
393static void set_var_lval __ARGS((lval_T *lp, char_u *endp, typval_T *rettv, int copy, char_u *op));
394static int tv_op __ARGS((typval_T *tv1, typval_T *tv2, char_u *op));
395static void list_add_watch __ARGS((list_T *l, listwatch_T *lw));
396static void list_rem_watch __ARGS((list_T *l, listwatch_T *lwrem));
397static void list_fix_watch __ARGS((list_T *l, listitem_T *item));
398static void ex_unletlock __ARGS((exarg_T *eap, char_u *argstart, int deep));
399static int do_unlet_var __ARGS((lval_T *lp, char_u *name_end, int forceit));
400static int do_lock_var __ARGS((lval_T *lp, char_u *name_end, int deep, int lock));
401static void item_lock __ARGS((typval_T *tv, int deep, int lock));
402static int tv_islocked __ARGS((typval_T *tv));
403
Bram Moolenaar33570922005-01-25 22:26:29 +0000404static int eval0 __ARGS((char_u *arg, typval_T *rettv, char_u **nextcmd, int evaluate));
405static int eval1 __ARGS((char_u **arg, typval_T *rettv, int evaluate));
406static int eval2 __ARGS((char_u **arg, typval_T *rettv, int evaluate));
407static int eval3 __ARGS((char_u **arg, typval_T *rettv, int evaluate));
408static int eval4 __ARGS((char_u **arg, typval_T *rettv, int evaluate));
409static int eval5 __ARGS((char_u **arg, typval_T *rettv, int evaluate));
Bram Moolenaar8d00f9c2008-06-28 13:09:56 +0000410static int eval6 __ARGS((char_u **arg, typval_T *rettv, int evaluate, int want_string));
411static int eval7 __ARGS((char_u **arg, typval_T *rettv, int evaluate, int want_string));
Bram Moolenaara40058a2005-07-11 22:42:07 +0000412
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +0000413static int eval_index __ARGS((char_u **arg, typval_T *rettv, int evaluate, int verbose));
Bram Moolenaar33570922005-01-25 22:26:29 +0000414static int get_option_tv __ARGS((char_u **arg, typval_T *rettv, int evaluate));
415static int get_string_tv __ARGS((char_u **arg, typval_T *rettv, int evaluate));
416static int get_lit_string_tv __ARGS((char_u **arg, typval_T *rettv, int evaluate));
417static int get_list_tv __ARGS((char_u **arg, typval_T *rettv, int evaluate));
Bram Moolenaareddf53b2006-02-27 00:11:10 +0000418static int rettv_list_alloc __ARGS((typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000419static listitem_T *listitem_alloc __ARGS((void));
420static void listitem_free __ARGS((listitem_T *item));
421static void listitem_remove __ARGS((list_T *l, listitem_T *item));
422static long list_len __ARGS((list_T *l));
423static int list_equal __ARGS((list_T *l1, list_T *l2, int ic));
424static int dict_equal __ARGS((dict_T *d1, dict_T *d2, int ic));
425static int tv_equal __ARGS((typval_T *tv1, typval_T *tv2, int ic));
Bram Moolenaar33570922005-01-25 22:26:29 +0000426static listitem_T *list_find __ARGS((list_T *l, long n));
Bram Moolenaara5525202006-03-02 22:52:09 +0000427static long list_find_nr __ARGS((list_T *l, long idx, int *errorp));
Bram Moolenaar33570922005-01-25 22:26:29 +0000428static long list_idx_of_item __ARGS((list_T *l, listitem_T *item));
Bram Moolenaar33570922005-01-25 22:26:29 +0000429static void list_append __ARGS((list_T *l, listitem_T *item));
430static int list_append_tv __ARGS((list_T *l, typval_T *tv));
Bram Moolenaar4463f292005-09-25 22:20:24 +0000431static int list_append_number __ARGS((list_T *l, varnumber_T n));
Bram Moolenaar33570922005-01-25 22:26:29 +0000432static int list_insert_tv __ARGS((list_T *l, typval_T *tv, listitem_T *item));
433static int list_extend __ARGS((list_T *l1, list_T *l2, listitem_T *bef));
434static int list_concat __ARGS((list_T *l1, list_T *l2, typval_T *tv));
Bram Moolenaar81bf7082005-02-12 14:31:42 +0000435static list_T *list_copy __ARGS((list_T *orig, int deep, int copyID));
Bram Moolenaar33570922005-01-25 22:26:29 +0000436static void list_remove __ARGS((list_T *l, listitem_T *item, listitem_T *item2));
Bram Moolenaarb71eaae2006-01-20 23:10:18 +0000437static char_u *list2string __ARGS((typval_T *tv, int copyID));
438static int list_join __ARGS((garray_T *gap, list_T *l, char_u *sep, int echo, int copyID));
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +0000439static void set_ref_in_ht __ARGS((hashtab_T *ht, int copyID));
440static void set_ref_in_list __ARGS((list_T *l, int copyID));
441static void set_ref_in_item __ARGS((typval_T *tv, int copyID));
Bram Moolenaar33570922005-01-25 22:26:29 +0000442static void dict_unref __ARGS((dict_T *d));
Bram Moolenaar685295c2006-10-15 20:37:38 +0000443static void dict_free __ARGS((dict_T *d, int recurse));
Bram Moolenaar33570922005-01-25 22:26:29 +0000444static dictitem_T *dictitem_alloc __ARGS((char_u *key));
445static dictitem_T *dictitem_copy __ARGS((dictitem_T *org));
446static void dictitem_remove __ARGS((dict_T *dict, dictitem_T *item));
447static void dictitem_free __ARGS((dictitem_T *item));
Bram Moolenaar81bf7082005-02-12 14:31:42 +0000448static dict_T *dict_copy __ARGS((dict_T *orig, int deep, int copyID));
Bram Moolenaar33570922005-01-25 22:26:29 +0000449static int dict_add __ARGS((dict_T *d, dictitem_T *item));
450static long dict_len __ARGS((dict_T *d));
451static dictitem_T *dict_find __ARGS((dict_T *d, char_u *key, int len));
Bram Moolenaarb71eaae2006-01-20 23:10:18 +0000452static char_u *dict2string __ARGS((typval_T *tv, int copyID));
Bram Moolenaar33570922005-01-25 22:26:29 +0000453static int get_dict_tv __ARGS((char_u **arg, typval_T *rettv, int evaluate));
Bram Moolenaarb71eaae2006-01-20 23:10:18 +0000454static char_u *echo_string __ARGS((typval_T *tv, char_u **tofree, char_u *numbuf, int copyID));
455static char_u *tv2string __ARGS((typval_T *tv, char_u **tofree, char_u *numbuf, int copyID));
Bram Moolenaar33570922005-01-25 22:26:29 +0000456static char_u *string_quote __ARGS((char_u *str, int function));
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000457#ifdef FEAT_FLOAT
458static int string2float __ARGS((char_u *text, float_T *value));
459#endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000460static int get_env_tv __ARGS((char_u **arg, typval_T *rettv, int evaluate));
461static int find_internal_func __ARGS((char_u *name));
462static char_u *deref_func_name __ARGS((char_u *name, int *lenp));
463static 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));
464static 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 +0000465static void emsg_funcname __ARGS((char *ermsg, char_u *name));
Bram Moolenaar05bb9532008-07-04 09:44:11 +0000466static int non_zero_arg __ARGS((typval_T *argvars));
Bram Moolenaar33570922005-01-25 22:26:29 +0000467
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000468#ifdef FEAT_FLOAT
469static void f_abs __ARGS((typval_T *argvars, typval_T *rettv));
470#endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000471static void f_add __ARGS((typval_T *argvars, typval_T *rettv));
472static void f_append __ARGS((typval_T *argvars, typval_T *rettv));
473static void f_argc __ARGS((typval_T *argvars, typval_T *rettv));
474static void f_argidx __ARGS((typval_T *argvars, typval_T *rettv));
475static void f_argv __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000476#ifdef FEAT_FLOAT
477static void f_atan __ARGS((typval_T *argvars, typval_T *rettv));
478#endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000479static void f_browse __ARGS((typval_T *argvars, typval_T *rettv));
480static void f_browsedir __ARGS((typval_T *argvars, typval_T *rettv));
481static void f_bufexists __ARGS((typval_T *argvars, typval_T *rettv));
482static void f_buflisted __ARGS((typval_T *argvars, typval_T *rettv));
483static void f_bufloaded __ARGS((typval_T *argvars, typval_T *rettv));
484static void f_bufname __ARGS((typval_T *argvars, typval_T *rettv));
485static void f_bufnr __ARGS((typval_T *argvars, typval_T *rettv));
486static void f_bufwinnr __ARGS((typval_T *argvars, typval_T *rettv));
487static void f_byte2line __ARGS((typval_T *argvars, typval_T *rettv));
488static void f_byteidx __ARGS((typval_T *argvars, typval_T *rettv));
489static void f_call __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000490#ifdef FEAT_FLOAT
491static void f_ceil __ARGS((typval_T *argvars, typval_T *rettv));
492#endif
Bram Moolenaarf0acfce2006-03-17 23:21:19 +0000493static void f_changenr __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000494static void f_char2nr __ARGS((typval_T *argvars, typval_T *rettv));
495static void f_cindent __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar6ee10162007-07-26 20:58:42 +0000496static void f_clearmatches __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000497static void f_col __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar572cb562005-08-05 21:35:02 +0000498#if defined(FEAT_INS_EXPAND)
Bram Moolenaarade00832006-03-10 21:46:58 +0000499static void f_complete __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar572cb562005-08-05 21:35:02 +0000500static void f_complete_add __ARGS((typval_T *argvars, typval_T *rettv));
501static void f_complete_check __ARGS((typval_T *argvars, typval_T *rettv));
502#endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000503static void f_confirm __ARGS((typval_T *argvars, typval_T *rettv));
504static void f_copy __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000505#ifdef FEAT_FLOAT
506static void f_cos __ARGS((typval_T *argvars, typval_T *rettv));
507#endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000508static void f_count __ARGS((typval_T *argvars, typval_T *rettv));
509static void f_cscope_connection __ARGS((typval_T *argvars, typval_T *rettv));
510static void f_cursor __ARGS((typval_T *argsvars, typval_T *rettv));
511static void f_deepcopy __ARGS((typval_T *argvars, typval_T *rettv));
512static void f_delete __ARGS((typval_T *argvars, typval_T *rettv));
513static void f_did_filetype __ARGS((typval_T *argvars, typval_T *rettv));
514static void f_diff_filler __ARGS((typval_T *argvars, typval_T *rettv));
515static void f_diff_hlID __ARGS((typval_T *argvars, typval_T *rettv));
516static void f_empty __ARGS((typval_T *argvars, typval_T *rettv));
517static void f_escape __ARGS((typval_T *argvars, typval_T *rettv));
518static void f_eval __ARGS((typval_T *argvars, typval_T *rettv));
519static void f_eventhandler __ARGS((typval_T *argvars, typval_T *rettv));
520static void f_executable __ARGS((typval_T *argvars, typval_T *rettv));
521static void f_exists __ARGS((typval_T *argvars, typval_T *rettv));
522static void f_expand __ARGS((typval_T *argvars, typval_T *rettv));
523static void f_extend __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaarf9393ef2006-04-24 19:47:27 +0000524static void f_feedkeys __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000525static void f_filereadable __ARGS((typval_T *argvars, typval_T *rettv));
526static void f_filewritable __ARGS((typval_T *argvars, typval_T *rettv));
527static void f_filter __ARGS((typval_T *argvars, typval_T *rettv));
528static void f_finddir __ARGS((typval_T *argvars, typval_T *rettv));
529static void f_findfile __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000530#ifdef FEAT_FLOAT
531static void f_float2nr __ARGS((typval_T *argvars, typval_T *rettv));
532static void f_floor __ARGS((typval_T *argvars, typval_T *rettv));
533#endif
Bram Moolenaaraebaf892008-05-28 14:49:58 +0000534static void f_fnameescape __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000535static void f_fnamemodify __ARGS((typval_T *argvars, typval_T *rettv));
536static void f_foldclosed __ARGS((typval_T *argvars, typval_T *rettv));
537static void f_foldclosedend __ARGS((typval_T *argvars, typval_T *rettv));
538static void f_foldlevel __ARGS((typval_T *argvars, typval_T *rettv));
539static void f_foldtext __ARGS((typval_T *argvars, typval_T *rettv));
540static void f_foldtextresult __ARGS((typval_T *argvars, typval_T *rettv));
541static void f_foreground __ARGS((typval_T *argvars, typval_T *rettv));
542static void f_function __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +0000543static void f_garbagecollect __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000544static void f_get __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar80fc0432005-07-20 22:06:07 +0000545static void f_getbufline __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000546static void f_getbufvar __ARGS((typval_T *argvars, typval_T *rettv));
547static void f_getchar __ARGS((typval_T *argvars, typval_T *rettv));
548static void f_getcharmod __ARGS((typval_T *argvars, typval_T *rettv));
549static void f_getcmdline __ARGS((typval_T *argvars, typval_T *rettv));
550static void f_getcmdpos __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +0000551static void f_getcmdtype __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000552static void f_getcwd __ARGS((typval_T *argvars, typval_T *rettv));
553static void f_getfontname __ARGS((typval_T *argvars, typval_T *rettv));
554static void f_getfperm __ARGS((typval_T *argvars, typval_T *rettv));
555static void f_getfsize __ARGS((typval_T *argvars, typval_T *rettv));
556static void f_getftime __ARGS((typval_T *argvars, typval_T *rettv));
557static void f_getftype __ARGS((typval_T *argvars, typval_T *rettv));
558static void f_getline __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar6ee10162007-07-26 20:58:42 +0000559static void f_getmatches __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar18081e32008-02-20 19:11:07 +0000560static void f_getpid __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaara5525202006-03-02 22:52:09 +0000561static void f_getpos __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar2641f772005-03-25 21:58:17 +0000562static void f_getqflist __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000563static void f_getreg __ARGS((typval_T *argvars, typval_T *rettv));
564static void f_getregtype __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar99ebf042006-04-15 20:28:54 +0000565static void f_gettabwinvar __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000566static void f_getwinposx __ARGS((typval_T *argvars, typval_T *rettv));
567static void f_getwinposy __ARGS((typval_T *argvars, typval_T *rettv));
568static void f_getwinvar __ARGS((typval_T *argvars, typval_T *rettv));
569static void f_glob __ARGS((typval_T *argvars, typval_T *rettv));
570static void f_globpath __ARGS((typval_T *argvars, typval_T *rettv));
571static void f_has __ARGS((typval_T *argvars, typval_T *rettv));
572static void f_has_key __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaard267b9c2007-04-26 15:06:45 +0000573static void f_haslocaldir __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000574static void f_hasmapto __ARGS((typval_T *argvars, typval_T *rettv));
575static void f_histadd __ARGS((typval_T *argvars, typval_T *rettv));
576static void f_histdel __ARGS((typval_T *argvars, typval_T *rettv));
577static void f_histget __ARGS((typval_T *argvars, typval_T *rettv));
578static void f_histnr __ARGS((typval_T *argvars, typval_T *rettv));
579static void f_hlID __ARGS((typval_T *argvars, typval_T *rettv));
580static void f_hlexists __ARGS((typval_T *argvars, typval_T *rettv));
581static void f_hostname __ARGS((typval_T *argvars, typval_T *rettv));
582static void f_iconv __ARGS((typval_T *argvars, typval_T *rettv));
583static void f_indent __ARGS((typval_T *argvars, typval_T *rettv));
584static void f_index __ARGS((typval_T *argvars, typval_T *rettv));
585static void f_input __ARGS((typval_T *argvars, typval_T *rettv));
586static void f_inputdialog __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar6efa2b32005-09-10 19:26:26 +0000587static void f_inputlist __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000588static void f_inputrestore __ARGS((typval_T *argvars, typval_T *rettv));
589static void f_inputsave __ARGS((typval_T *argvars, typval_T *rettv));
590static void f_inputsecret __ARGS((typval_T *argvars, typval_T *rettv));
591static void f_insert __ARGS((typval_T *argvars, typval_T *rettv));
592static void f_isdirectory __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar2e6aff32005-01-31 19:25:36 +0000593static void f_islocked __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000594static void f_items __ARGS((typval_T *argvars, typval_T *rettv));
595static void f_join __ARGS((typval_T *argvars, typval_T *rettv));
596static void f_keys __ARGS((typval_T *argvars, typval_T *rettv));
597static void f_last_buffer_nr __ARGS((typval_T *argvars, typval_T *rettv));
598static void f_len __ARGS((typval_T *argvars, typval_T *rettv));
599static void f_libcall __ARGS((typval_T *argvars, typval_T *rettv));
600static void f_libcallnr __ARGS((typval_T *argvars, typval_T *rettv));
601static void f_line __ARGS((typval_T *argvars, typval_T *rettv));
602static void f_line2byte __ARGS((typval_T *argvars, typval_T *rettv));
603static void f_lispindent __ARGS((typval_T *argvars, typval_T *rettv));
604static void f_localtime __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000605#ifdef FEAT_FLOAT
606static void f_log10 __ARGS((typval_T *argvars, typval_T *rettv));
607#endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000608static void f_map __ARGS((typval_T *argvars, typval_T *rettv));
609static void f_maparg __ARGS((typval_T *argvars, typval_T *rettv));
610static void f_mapcheck __ARGS((typval_T *argvars, typval_T *rettv));
611static void f_match __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar6ee10162007-07-26 20:58:42 +0000612static void f_matchadd __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000613static void f_matcharg __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar6ee10162007-07-26 20:58:42 +0000614static void f_matchdelete __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000615static void f_matchend __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +0000616static void f_matchlist __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000617static void f_matchstr __ARGS((typval_T *argvars, typval_T *rettv));
618static void f_max __ARGS((typval_T *argvars, typval_T *rettv));
619static void f_min __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000620#ifdef vim_mkdir
621static void f_mkdir __ARGS((typval_T *argvars, typval_T *rettv));
622#endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000623static void f_mode __ARGS((typval_T *argvars, typval_T *rettv));
624static void f_nextnonblank __ARGS((typval_T *argvars, typval_T *rettv));
625static void f_nr2char __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000626static void f_pathshorten __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000627#ifdef FEAT_FLOAT
628static void f_pow __ARGS((typval_T *argvars, typval_T *rettv));
629#endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000630static void f_prevnonblank __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar4be06f92005-07-29 22:36:03 +0000631static void f_printf __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +0000632static void f_pumvisible __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000633static void f_range __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +0000634static void f_readfile __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaare580b0c2006-03-21 21:33:03 +0000635static void f_reltime __ARGS((typval_T *argvars, typval_T *rettv));
636static void f_reltimestr __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000637static void f_remote_expr __ARGS((typval_T *argvars, typval_T *rettv));
638static void f_remote_foreground __ARGS((typval_T *argvars, typval_T *rettv));
639static void f_remote_peek __ARGS((typval_T *argvars, typval_T *rettv));
640static void f_remote_read __ARGS((typval_T *argvars, typval_T *rettv));
641static void f_remote_send __ARGS((typval_T *argvars, typval_T *rettv));
642static void f_remove __ARGS((typval_T *argvars, typval_T *rettv));
643static void f_rename __ARGS((typval_T *argvars, typval_T *rettv));
644static void f_repeat __ARGS((typval_T *argvars, typval_T *rettv));
645static void f_resolve __ARGS((typval_T *argvars, typval_T *rettv));
646static void f_reverse __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000647#ifdef FEAT_FLOAT
648static void f_round __ARGS((typval_T *argvars, typval_T *rettv));
649#endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000650static void f_search __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaardd2436f2005-09-05 22:14:46 +0000651static void f_searchdecl __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000652static void f_searchpair __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +0000653static void f_searchpairpos __ARGS((typval_T *argvars, typval_T *rettv));
654static void f_searchpos __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000655static void f_server2client __ARGS((typval_T *argvars, typval_T *rettv));
656static void f_serverlist __ARGS((typval_T *argvars, typval_T *rettv));
657static void f_setbufvar __ARGS((typval_T *argvars, typval_T *rettv));
658static void f_setcmdpos __ARGS((typval_T *argvars, typval_T *rettv));
659static void f_setline __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar17c7c012006-01-26 22:25:15 +0000660static void f_setloclist __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar6ee10162007-07-26 20:58:42 +0000661static void f_setmatches __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar0e34f622006-03-03 23:00:03 +0000662static void f_setpos __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar2641f772005-03-25 21:58:17 +0000663static void f_setqflist __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000664static void f_setreg __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar99ebf042006-04-15 20:28:54 +0000665static void f_settabwinvar __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000666static void f_setwinvar __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar60a495f2006-10-03 12:44:42 +0000667static void f_shellescape __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000668static void f_simplify __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000669#ifdef FEAT_FLOAT
670static void f_sin __ARGS((typval_T *argvars, typval_T *rettv));
671#endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000672static void f_sort __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +0000673static void f_soundfold __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000674static void f_spellbadword __ARGS((typval_T *argvars, typval_T *rettv));
675static void f_spellsuggest __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000676static void f_split __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000677#ifdef FEAT_FLOAT
678static void f_sqrt __ARGS((typval_T *argvars, typval_T *rettv));
679static void f_str2float __ARGS((typval_T *argvars, typval_T *rettv));
680#endif
Bram Moolenaar2c932302006-03-18 21:42:09 +0000681static void f_str2nr __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000682#ifdef HAVE_STRFTIME
683static void f_strftime __ARGS((typval_T *argvars, typval_T *rettv));
684#endif
685static void f_stridx __ARGS((typval_T *argvars, typval_T *rettv));
686static void f_string __ARGS((typval_T *argvars, typval_T *rettv));
687static void f_strlen __ARGS((typval_T *argvars, typval_T *rettv));
688static void f_strpart __ARGS((typval_T *argvars, typval_T *rettv));
689static void f_strridx __ARGS((typval_T *argvars, typval_T *rettv));
690static void f_strtrans __ARGS((typval_T *argvars, typval_T *rettv));
691static void f_submatch __ARGS((typval_T *argvars, typval_T *rettv));
692static void f_substitute __ARGS((typval_T *argvars, typval_T *rettv));
693static void f_synID __ARGS((typval_T *argvars, typval_T *rettv));
694static void f_synIDattr __ARGS((typval_T *argvars, typval_T *rettv));
695static void f_synIDtrans __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar9d188ab2008-01-10 21:24:39 +0000696static void f_synstack __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000697static void f_system __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaarfaa959a2006-02-20 21:37:40 +0000698static void f_tabpagebuflist __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar7e8fd632006-02-18 22:14:51 +0000699static void f_tabpagenr __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaarfaa959a2006-02-20 21:37:40 +0000700static void f_tabpagewinnr __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar19a09a12005-03-04 23:39:37 +0000701static void f_taglist __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaard43b6cf2005-09-09 19:53:42 +0000702static void f_tagfiles __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000703static void f_tempname __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaard52d9742005-08-21 22:20:28 +0000704static void f_test __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000705static void f_tolower __ARGS((typval_T *argvars, typval_T *rettv));
706static void f_toupper __ARGS((typval_T *argvars, typval_T *rettv));
707static void f_tr __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000708#ifdef FEAT_FLOAT
709static void f_trunc __ARGS((typval_T *argvars, typval_T *rettv));
710#endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000711static void f_type __ARGS((typval_T *argvars, typval_T *rettv));
712static void f_values __ARGS((typval_T *argvars, typval_T *rettv));
713static void f_virtcol __ARGS((typval_T *argvars, typval_T *rettv));
714static void f_visualmode __ARGS((typval_T *argvars, typval_T *rettv));
715static void f_winbufnr __ARGS((typval_T *argvars, typval_T *rettv));
716static void f_wincol __ARGS((typval_T *argvars, typval_T *rettv));
717static void f_winheight __ARGS((typval_T *argvars, typval_T *rettv));
718static void f_winline __ARGS((typval_T *argvars, typval_T *rettv));
719static void f_winnr __ARGS((typval_T *argvars, typval_T *rettv));
720static void f_winrestcmd __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar768b8c42006-03-04 21:58:33 +0000721static void f_winrestview __ARGS((typval_T *argvars, typval_T *rettv));
722static void f_winsaveview __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000723static void f_winwidth __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +0000724static void f_writefile __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000725
Bram Moolenaar0e34f622006-03-03 23:00:03 +0000726static int list2fpos __ARGS((typval_T *arg, pos_T *posp, int *fnump));
Bram Moolenaar477933c2007-07-17 14:32:23 +0000727static pos_T *var2fpos __ARGS((typval_T *varp, int dollar_lnum, int *fnum));
Bram Moolenaar33570922005-01-25 22:26:29 +0000728static int get_env_len __ARGS((char_u **arg));
729static int get_id_len __ARGS((char_u **arg));
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +0000730static int get_name_len __ARGS((char_u **arg, char_u **alias, int evaluate, int verbose));
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +0000731static char_u *find_name_end __ARGS((char_u *arg, char_u **expr_start, char_u **expr_end, int flags));
732#define FNE_INCL_BR 1 /* find_name_end(): include [] in name */
733#define FNE_CHECK_START 2 /* find_name_end(): check name starts with
734 valid character */
Bram Moolenaara40058a2005-07-11 22:42:07 +0000735static 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 +0000736static int eval_isnamec __ARGS((int c));
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +0000737static int eval_isnamec1 __ARGS((int c));
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +0000738static int get_var_tv __ARGS((char_u *name, int len, typval_T *rettv, int verbose));
739static int handle_subscript __ARGS((char_u **arg, typval_T *rettv, int evaluate, int verbose));
Bram Moolenaar33570922005-01-25 22:26:29 +0000740static typval_T *alloc_tv __ARGS((void));
741static typval_T *alloc_string_tv __ARGS((char_u *string));
Bram Moolenaar33570922005-01-25 22:26:29 +0000742static void init_tv __ARGS((typval_T *varp));
743static long get_tv_number __ARGS((typval_T *varp));
744static linenr_T get_tv_lnum __ARGS((typval_T *argvars));
Bram Moolenaar661b1822005-07-28 22:36:45 +0000745static linenr_T get_tv_lnum_buf __ARGS((typval_T *argvars, buf_T *buf));
Bram Moolenaar33570922005-01-25 22:26:29 +0000746static char_u *get_tv_string __ARGS((typval_T *varp));
747static char_u *get_tv_string_buf __ARGS((typval_T *varp, char_u *buf));
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000748static char_u *get_tv_string_buf_chk __ARGS((typval_T *varp, char_u *buf));
Bram Moolenaar33570922005-01-25 22:26:29 +0000749static dictitem_T *find_var __ARGS((char_u *name, hashtab_T **htp));
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000750static dictitem_T *find_var_in_ht __ARGS((hashtab_T *ht, char_u *varname, int writing));
Bram Moolenaar33570922005-01-25 22:26:29 +0000751static hashtab_T *find_var_ht __ARGS((char_u *name, char_u **varname));
752static void vars_clear_ext __ARGS((hashtab_T *ht, int free_val));
753static void delete_var __ARGS((hashtab_T *ht, hashitem_T *hi));
Bram Moolenaar7d61a922007-08-30 09:12:23 +0000754static void list_one_var __ARGS((dictitem_T *v, char_u *prefix, int *first));
755static 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 +0000756static void set_var __ARGS((char_u *name, typval_T *varp, int copy));
757static int var_check_ro __ARGS((int flags, char_u *name));
Bram Moolenaar4e957af2006-09-02 11:41:07 +0000758static int var_check_fixed __ARGS((int flags, char_u *name));
Bram Moolenaar2e6aff32005-01-31 19:25:36 +0000759static int tv_check_lock __ARGS((int lock, char_u *name));
Bram Moolenaar33570922005-01-25 22:26:29 +0000760static void copy_tv __ARGS((typval_T *from, typval_T *to));
Bram Moolenaar81bf7082005-02-12 14:31:42 +0000761static int item_copy __ARGS((typval_T *from, typval_T *to, int deep, int copyID));
Bram Moolenaar33570922005-01-25 22:26:29 +0000762static char_u *find_option_end __ARGS((char_u **arg, int *opt_flags));
763static char_u *trans_function_name __ARGS((char_u **pp, int skip, int flags, funcdict_T *fd));
764static int eval_fname_script __ARGS((char_u *p));
765static int eval_fname_sid __ARGS((char_u *p));
766static void list_func_head __ARGS((ufunc_T *fp, int indent));
Bram Moolenaar33570922005-01-25 22:26:29 +0000767static ufunc_T *find_func __ARGS((char_u *name));
768static int function_exists __ARGS((char_u *name));
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +0000769static int builtin_function __ARGS((char_u *name));
Bram Moolenaar05159a02005-02-26 23:04:13 +0000770#ifdef FEAT_PROFILE
771static void func_do_profile __ARGS((ufunc_T *fp));
Bram Moolenaar73830342005-02-28 22:48:19 +0000772static void prof_sort_list __ARGS((FILE *fd, ufunc_T **sorttab, int st_len, char *title, int prefer_self));
773static void prof_func_line __ARGS((FILE *fd, int count, proftime_T *total, proftime_T *self, int prefer_self));
774static int
775# ifdef __BORLANDC__
776 _RTLENTRYF
777# endif
778 prof_total_cmp __ARGS((const void *s1, const void *s2));
779static int
780# ifdef __BORLANDC__
781 _RTLENTRYF
782# endif
783 prof_self_cmp __ARGS((const void *s1, const void *s2));
Bram Moolenaar05159a02005-02-26 23:04:13 +0000784#endif
Bram Moolenaar87e25fd2005-07-27 21:13:01 +0000785static int script_autoload __ARGS((char_u *name, int reload));
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000786static char_u *autoload_name __ARGS((char_u *name));
Bram Moolenaara40058a2005-07-11 22:42:07 +0000787static void cat_func_name __ARGS((char_u *buf, ufunc_T *fp));
Bram Moolenaar33570922005-01-25 22:26:29 +0000788static void func_free __ARGS((ufunc_T *fp));
789static void func_unref __ARGS((char_u *name));
790static void func_ref __ARGS((char_u *name));
791static 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));
792static void add_nr_var __ARGS((dict_T *dp, dictitem_T *v, char *name, varnumber_T nr));
Bram Moolenaar99ebf042006-04-15 20:28:54 +0000793static win_T *find_win_by_nr __ARGS((typval_T *vp, tabpage_T *tp));
794static void getwinvar __ARGS((typval_T *argvars, typval_T *rettv, int off));
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +0000795static int searchpair_cmn __ARGS((typval_T *argvars, pos_T *match_pos));
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000796static int search_cmn __ARGS((typval_T *argvars, pos_T *match_pos, int *flagsp));
Bram Moolenaar99ebf042006-04-15 20:28:54 +0000797static void setwinvar __ARGS((typval_T *argvars, typval_T *rettv, int off));
Bram Moolenaar33570922005-01-25 22:26:29 +0000798
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +0000799/* Character used as separated in autoload function/variable names. */
800#define AUTOLOAD_CHAR '#'
801
Bram Moolenaar33570922005-01-25 22:26:29 +0000802/*
803 * Initialize the global and v: variables.
Bram Moolenaara7043832005-01-21 11:56:39 +0000804 */
805 void
806eval_init()
807{
Bram Moolenaar33570922005-01-25 22:26:29 +0000808 int i;
809 struct vimvar *p;
810
811 init_var_dict(&globvardict, &globvars_var);
812 init_var_dict(&vimvardict, &vimvars_var);
Bram Moolenaar532c7802005-01-27 14:44:31 +0000813 hash_init(&compat_hashtab);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000814 hash_init(&func_hashtab);
Bram Moolenaar33570922005-01-25 22:26:29 +0000815
816 for (i = 0; i < VV_LEN; ++i)
817 {
818 p = &vimvars[i];
819 STRCPY(p->vv_di.di_key, p->vv_name);
820 if (p->vv_flags & VV_RO)
821 p->vv_di.di_flags = DI_FLAGS_RO | DI_FLAGS_FIX;
822 else if (p->vv_flags & VV_RO_SBX)
823 p->vv_di.di_flags = DI_FLAGS_RO_SBX | DI_FLAGS_FIX;
824 else
825 p->vv_di.di_flags = DI_FLAGS_FIX;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +0000826
827 /* add to v: scope dict, unless the value is not always available */
828 if (p->vv_type != VAR_UNKNOWN)
829 hash_add(&vimvarht, p->vv_di.di_key);
Bram Moolenaar33570922005-01-25 22:26:29 +0000830 if (p->vv_flags & VV_COMPAT)
Bram Moolenaar532c7802005-01-27 14:44:31 +0000831 /* add to compat scope dict */
832 hash_add(&compat_hashtab, p->vv_di.di_key);
Bram Moolenaar33570922005-01-25 22:26:29 +0000833 }
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000834 set_vim_var_nr(VV_SEARCHFORWARD, 1L);
Bram Moolenaara7043832005-01-21 11:56:39 +0000835}
836
Bram Moolenaar29a1c1d2005-06-24 23:11:15 +0000837#if defined(EXITFREE) || defined(PROTO)
838 void
839eval_clear()
840{
841 int i;
842 struct vimvar *p;
843
844 for (i = 0; i < VV_LEN; ++i)
845 {
846 p = &vimvars[i];
847 if (p->vv_di.di_tv.v_type == VAR_STRING)
Bram Moolenaard9fba312005-06-26 22:34:35 +0000848 {
Bram Moolenaar12193212008-11-09 16:22:01 +0000849 vim_free(p->vv_str);
850 p->vv_str = NULL;
Bram Moolenaard812df62008-11-09 12:46:09 +0000851 }
852 else if (p->vv_di.di_tv.v_type == VAR_LIST)
853 {
854 list_unref(p->vv_list);
855 p->vv_list = NULL;
Bram Moolenaard9fba312005-06-26 22:34:35 +0000856 }
Bram Moolenaar29a1c1d2005-06-24 23:11:15 +0000857 }
858 hash_clear(&vimvarht);
Bram Moolenaar0f71c6d2008-11-12 14:29:28 +0000859 hash_init(&vimvarht); /* garbage_collect() will access it */
Bram Moolenaar29a1c1d2005-06-24 23:11:15 +0000860 hash_clear(&compat_hashtab);
861
862 /* script-local variables */
863 for (i = 1; i <= ga_scripts.ga_len; ++i)
864 vars_clear(&SCRIPT_VARS(i));
865 ga_clear(&ga_scripts);
Bram Moolenaard9fba312005-06-26 22:34:35 +0000866 free_scriptnames();
Bram Moolenaar29a1c1d2005-06-24 23:11:15 +0000867
868 /* global variables */
869 vars_clear(&globvarht);
Bram Moolenaard9fba312005-06-26 22:34:35 +0000870
Bram Moolenaaraa35dd12006-04-29 22:03:41 +0000871 /* autoloaded script names */
872 ga_clear_strings(&ga_loaded);
873
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +0000874 /* unreferenced lists and dicts */
875 (void)garbage_collect();
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000876
877 /* functions */
878 free_all_functions();
879 hash_clear(&func_hashtab);
Bram Moolenaar29a1c1d2005-06-24 23:11:15 +0000880}
881#endif
882
Bram Moolenaar9ef486d2005-01-17 22:23:00 +0000883/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000884 * Return the name of the executed function.
885 */
886 char_u *
887func_name(cookie)
888 void *cookie;
889{
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000890 return ((funccall_T *)cookie)->func->uf_name;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000891}
892
893/*
894 * Return the address holding the next breakpoint line for a funccall cookie.
895 */
896 linenr_T *
897func_breakpoint(cookie)
898 void *cookie;
899{
Bram Moolenaar33570922005-01-25 22:26:29 +0000900 return &((funccall_T *)cookie)->breakpoint;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000901}
902
903/*
904 * Return the address holding the debug tick for a funccall cookie.
905 */
906 int *
907func_dbg_tick(cookie)
908 void *cookie;
909{
Bram Moolenaar33570922005-01-25 22:26:29 +0000910 return &((funccall_T *)cookie)->dbg_tick;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000911}
912
913/*
914 * Return the nesting level for a funccall cookie.
915 */
916 int
917func_level(cookie)
918 void *cookie;
919{
Bram Moolenaar33570922005-01-25 22:26:29 +0000920 return ((funccall_T *)cookie)->level;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000921}
922
923/* pointer to funccal for currently active function */
Bram Moolenaar33570922005-01-25 22:26:29 +0000924funccall_T *current_funccal = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000925
926/*
927 * Return TRUE when a function was ended by a ":return" command.
928 */
929 int
930current_func_returned()
931{
932 return current_funccal->returned;
933}
934
935
936/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000937 * Set an internal variable to a string value. Creates the variable if it does
938 * not already exist.
939 */
940 void
941set_internal_string_var(name, value)
942 char_u *name;
943 char_u *value;
944{
Bram Moolenaar49cd9572005-01-03 21:06:01 +0000945 char_u *val;
Bram Moolenaar33570922005-01-25 22:26:29 +0000946 typval_T *tvp;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000947
948 val = vim_strsave(value);
949 if (val != NULL)
950 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +0000951 tvp = alloc_string_tv(val);
Bram Moolenaar49cd9572005-01-03 21:06:01 +0000952 if (tvp != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000953 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +0000954 set_var(name, tvp, FALSE);
Bram Moolenaarc70646c2005-01-04 21:52:38 +0000955 free_tv(tvp);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000956 }
957 }
958}
959
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000960static lval_T *redir_lval = NULL;
Bram Moolenaar863b53b2007-01-14 14:28:34 +0000961static garray_T redir_ga; /* only valid when redir_lval is not NULL */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000962static char_u *redir_endp = NULL;
963static char_u *redir_varname = NULL;
964
965/*
966 * Start recording command output to a variable
967 * Returns OK if successfully completed the setup. FAIL otherwise.
968 */
969 int
970var_redir_start(name, append)
971 char_u *name;
972 int append; /* append to an existing variable */
973{
974 int save_emsg;
975 int err;
976 typval_T tv;
977
978 /* Make sure a valid variable name is specified */
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +0000979 if (!eval_isnamec1(*name))
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000980 {
981 EMSG(_(e_invarg));
982 return FAIL;
983 }
984
985 redir_varname = vim_strsave(name);
986 if (redir_varname == NULL)
987 return FAIL;
988
989 redir_lval = (lval_T *)alloc_clear((unsigned)sizeof(lval_T));
990 if (redir_lval == NULL)
991 {
992 var_redir_stop();
993 return FAIL;
994 }
995
Bram Moolenaar863b53b2007-01-14 14:28:34 +0000996 /* The output is stored in growarray "redir_ga" until redirection ends. */
997 ga_init2(&redir_ga, (int)sizeof(char), 500);
998
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000999 /* Parse the variable name (can be a dict or list entry). */
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +00001000 redir_endp = get_lval(redir_varname, NULL, redir_lval, FALSE, FALSE, FALSE,
1001 FNE_CHECK_START);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001002 if (redir_endp == NULL || redir_lval->ll_name == NULL || *redir_endp != NUL)
1003 {
1004 if (redir_endp != NULL && *redir_endp != NUL)
1005 /* Trailing characters are present after the variable name */
1006 EMSG(_(e_trailing));
1007 else
1008 EMSG(_(e_invarg));
1009 var_redir_stop();
1010 return FAIL;
1011 }
1012
1013 /* check if we can write to the variable: set it to or append an empty
1014 * string */
1015 save_emsg = did_emsg;
1016 did_emsg = FALSE;
1017 tv.v_type = VAR_STRING;
1018 tv.vval.v_string = (char_u *)"";
1019 if (append)
1020 set_var_lval(redir_lval, redir_endp, &tv, TRUE, (char_u *)".");
1021 else
1022 set_var_lval(redir_lval, redir_endp, &tv, TRUE, (char_u *)"=");
1023 err = did_emsg;
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00001024 did_emsg |= save_emsg;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001025 if (err)
1026 {
1027 var_redir_stop();
1028 return FAIL;
1029 }
1030 if (redir_lval->ll_newkey != NULL)
1031 {
1032 /* Dictionary item was created, don't do it again. */
1033 vim_free(redir_lval->ll_newkey);
1034 redir_lval->ll_newkey = NULL;
1035 }
1036
1037 return OK;
1038}
1039
1040/*
Bram Moolenaar863b53b2007-01-14 14:28:34 +00001041 * Append "value[value_len]" to the variable set by var_redir_start().
1042 * The actual appending is postponed until redirection ends, because the value
1043 * appended may in fact be the string we write to, changing it may cause freed
1044 * memory to be used:
1045 * :redir => foo
1046 * :let foo
1047 * :redir END
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001048 */
1049 void
Bram Moolenaar863b53b2007-01-14 14:28:34 +00001050var_redir_str(value, value_len)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001051 char_u *value;
Bram Moolenaar863b53b2007-01-14 14:28:34 +00001052 int value_len;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001053{
Bram Moolenaar5fdec472007-07-24 08:45:13 +00001054 int len;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001055
1056 if (redir_lval == NULL)
1057 return;
1058
Bram Moolenaar863b53b2007-01-14 14:28:34 +00001059 if (value_len == -1)
Bram Moolenaar5fdec472007-07-24 08:45:13 +00001060 len = (int)STRLEN(value); /* Append the entire string */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001061 else
Bram Moolenaar5fdec472007-07-24 08:45:13 +00001062 len = value_len; /* Append only "value_len" characters */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001063
Bram Moolenaar5fdec472007-07-24 08:45:13 +00001064 if (ga_grow(&redir_ga, len) == OK)
Bram Moolenaar863b53b2007-01-14 14:28:34 +00001065 {
1066 mch_memmove((char *)redir_ga.ga_data + redir_ga.ga_len, value, len);
Bram Moolenaar5fdec472007-07-24 08:45:13 +00001067 redir_ga.ga_len += len;
Bram Moolenaar863b53b2007-01-14 14:28:34 +00001068 }
1069 else
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001070 var_redir_stop();
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001071}
1072
1073/*
1074 * Stop redirecting command output to a variable.
1075 */
1076 void
1077var_redir_stop()
1078{
Bram Moolenaar863b53b2007-01-14 14:28:34 +00001079 typval_T tv;
1080
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001081 if (redir_lval != NULL)
1082 {
Bram Moolenaar863b53b2007-01-14 14:28:34 +00001083 /* Append the trailing NUL. */
1084 ga_append(&redir_ga, NUL);
1085
1086 /* Assign the text to the variable. */
1087 tv.v_type = VAR_STRING;
1088 tv.vval.v_string = redir_ga.ga_data;
1089 set_var_lval(redir_lval, redir_endp, &tv, FALSE, (char_u *)".");
1090 vim_free(tv.vval.v_string);
1091
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001092 clear_lval(redir_lval);
1093 vim_free(redir_lval);
1094 redir_lval = NULL;
1095 }
1096 vim_free(redir_varname);
1097 redir_varname = NULL;
1098}
1099
Bram Moolenaar071d4272004-06-13 20:20:40 +00001100# if defined(FEAT_MBYTE) || defined(PROTO)
1101 int
1102eval_charconvert(enc_from, enc_to, fname_from, fname_to)
1103 char_u *enc_from;
1104 char_u *enc_to;
1105 char_u *fname_from;
1106 char_u *fname_to;
1107{
1108 int err = FALSE;
1109
1110 set_vim_var_string(VV_CC_FROM, enc_from, -1);
1111 set_vim_var_string(VV_CC_TO, enc_to, -1);
1112 set_vim_var_string(VV_FNAME_IN, fname_from, -1);
1113 set_vim_var_string(VV_FNAME_OUT, fname_to, -1);
1114 if (eval_to_bool(p_ccv, &err, NULL, FALSE))
1115 err = TRUE;
1116 set_vim_var_string(VV_CC_FROM, NULL, -1);
1117 set_vim_var_string(VV_CC_TO, NULL, -1);
1118 set_vim_var_string(VV_FNAME_IN, NULL, -1);
1119 set_vim_var_string(VV_FNAME_OUT, NULL, -1);
1120
1121 if (err)
1122 return FAIL;
1123 return OK;
1124}
1125# endif
1126
1127# if defined(FEAT_POSTSCRIPT) || defined(PROTO)
1128 int
1129eval_printexpr(fname, args)
1130 char_u *fname;
1131 char_u *args;
1132{
1133 int err = FALSE;
1134
1135 set_vim_var_string(VV_FNAME_IN, fname, -1);
1136 set_vim_var_string(VV_CMDARG, args, -1);
1137 if (eval_to_bool(p_pexpr, &err, NULL, FALSE))
1138 err = TRUE;
1139 set_vim_var_string(VV_FNAME_IN, NULL, -1);
1140 set_vim_var_string(VV_CMDARG, NULL, -1);
1141
1142 if (err)
1143 {
1144 mch_remove(fname);
1145 return FAIL;
1146 }
1147 return OK;
1148}
1149# endif
1150
1151# if defined(FEAT_DIFF) || defined(PROTO)
1152 void
1153eval_diff(origfile, newfile, outfile)
1154 char_u *origfile;
1155 char_u *newfile;
1156 char_u *outfile;
1157{
1158 int err = FALSE;
1159
1160 set_vim_var_string(VV_FNAME_IN, origfile, -1);
1161 set_vim_var_string(VV_FNAME_NEW, newfile, -1);
1162 set_vim_var_string(VV_FNAME_OUT, outfile, -1);
1163 (void)eval_to_bool(p_dex, &err, NULL, FALSE);
1164 set_vim_var_string(VV_FNAME_IN, NULL, -1);
1165 set_vim_var_string(VV_FNAME_NEW, NULL, -1);
1166 set_vim_var_string(VV_FNAME_OUT, NULL, -1);
1167}
1168
1169 void
1170eval_patch(origfile, difffile, outfile)
1171 char_u *origfile;
1172 char_u *difffile;
1173 char_u *outfile;
1174{
1175 int err;
1176
1177 set_vim_var_string(VV_FNAME_IN, origfile, -1);
1178 set_vim_var_string(VV_FNAME_DIFF, difffile, -1);
1179 set_vim_var_string(VV_FNAME_OUT, outfile, -1);
1180 (void)eval_to_bool(p_pex, &err, NULL, FALSE);
1181 set_vim_var_string(VV_FNAME_IN, NULL, -1);
1182 set_vim_var_string(VV_FNAME_DIFF, NULL, -1);
1183 set_vim_var_string(VV_FNAME_OUT, NULL, -1);
1184}
1185# endif
1186
1187/*
1188 * Top level evaluation function, returning a boolean.
1189 * Sets "error" to TRUE if there was an error.
1190 * Return TRUE or FALSE.
1191 */
1192 int
1193eval_to_bool(arg, error, nextcmd, skip)
1194 char_u *arg;
1195 int *error;
1196 char_u **nextcmd;
1197 int skip; /* only parse, don't execute */
1198{
Bram Moolenaar33570922005-01-25 22:26:29 +00001199 typval_T tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001200 int retval = FALSE;
1201
1202 if (skip)
1203 ++emsg_skip;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001204 if (eval0(arg, &tv, nextcmd, !skip) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001205 *error = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001206 else
1207 {
1208 *error = FALSE;
1209 if (!skip)
1210 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001211 retval = (get_tv_number_chk(&tv, error) != 0);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001212 clear_tv(&tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001213 }
1214 }
1215 if (skip)
1216 --emsg_skip;
1217
1218 return retval;
1219}
1220
1221/*
1222 * Top level evaluation function, returning a string. If "skip" is TRUE,
1223 * only parsing to "nextcmd" is done, without reporting errors. Return
1224 * pointer to allocated memory, or NULL for failure or when "skip" is TRUE.
1225 */
1226 char_u *
1227eval_to_string_skip(arg, nextcmd, skip)
1228 char_u *arg;
1229 char_u **nextcmd;
1230 int skip; /* only parse, don't execute */
1231{
Bram Moolenaar33570922005-01-25 22:26:29 +00001232 typval_T tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001233 char_u *retval;
1234
1235 if (skip)
1236 ++emsg_skip;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001237 if (eval0(arg, &tv, nextcmd, !skip) == FAIL || skip)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001238 retval = NULL;
1239 else
1240 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001241 retval = vim_strsave(get_tv_string(&tv));
1242 clear_tv(&tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001243 }
1244 if (skip)
1245 --emsg_skip;
1246
1247 return retval;
1248}
1249
1250/*
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001251 * Skip over an expression at "*pp".
1252 * Return FAIL for an error, OK otherwise.
1253 */
1254 int
1255skip_expr(pp)
1256 char_u **pp;
1257{
Bram Moolenaar33570922005-01-25 22:26:29 +00001258 typval_T rettv;
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001259
1260 *pp = skipwhite(*pp);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001261 return eval1(pp, &rettv, FALSE);
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001262}
1263
1264/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001265 * Top level evaluation function, returning a string.
Bram Moolenaara85fb752008-09-07 11:55:43 +00001266 * When "convert" is TRUE convert a List into a sequence of lines and convert
1267 * a Float to a String.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001268 * Return pointer to allocated memory, or NULL for failure.
1269 */
1270 char_u *
Bram Moolenaara85fb752008-09-07 11:55:43 +00001271eval_to_string(arg, nextcmd, convert)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001272 char_u *arg;
1273 char_u **nextcmd;
Bram Moolenaara85fb752008-09-07 11:55:43 +00001274 int convert;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001275{
Bram Moolenaar33570922005-01-25 22:26:29 +00001276 typval_T tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001277 char_u *retval;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001278 garray_T ga;
Bram Moolenaara85fb752008-09-07 11:55:43 +00001279 char_u numbuf[NUMBUFLEN];
Bram Moolenaar071d4272004-06-13 20:20:40 +00001280
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001281 if (eval0(arg, &tv, nextcmd, TRUE) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001282 retval = NULL;
1283 else
1284 {
Bram Moolenaara85fb752008-09-07 11:55:43 +00001285 if (convert && tv.v_type == VAR_LIST)
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001286 {
1287 ga_init2(&ga, (int)sizeof(char), 80);
Bram Moolenaar9bf749b2008-07-27 13:57:29 +00001288 if (tv.vval.v_list != NULL)
1289 list_join(&ga, tv.vval.v_list, (char_u *)"\n", TRUE, 0);
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001290 ga_append(&ga, NUL);
1291 retval = (char_u *)ga.ga_data;
1292 }
Bram Moolenaara85fb752008-09-07 11:55:43 +00001293#ifdef FEAT_FLOAT
1294 else if (convert && tv.v_type == VAR_FLOAT)
1295 {
1296 vim_snprintf((char *)numbuf, NUMBUFLEN, "%g", tv.vval.v_float);
1297 retval = vim_strsave(numbuf);
1298 }
1299#endif
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001300 else
1301 retval = vim_strsave(get_tv_string(&tv));
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001302 clear_tv(&tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001303 }
1304
1305 return retval;
1306}
1307
1308/*
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00001309 * Call eval_to_string() without using current local variables and using
1310 * textlock. When "use_sandbox" is TRUE use the sandbox.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001311 */
1312 char_u *
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00001313eval_to_string_safe(arg, nextcmd, use_sandbox)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001314 char_u *arg;
1315 char_u **nextcmd;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00001316 int use_sandbox;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001317{
1318 char_u *retval;
1319 void *save_funccalp;
1320
1321 save_funccalp = save_funccal();
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00001322 if (use_sandbox)
1323 ++sandbox;
1324 ++textlock;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001325 retval = eval_to_string(arg, nextcmd, FALSE);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00001326 if (use_sandbox)
1327 --sandbox;
1328 --textlock;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001329 restore_funccal(save_funccalp);
1330 return retval;
1331}
1332
Bram Moolenaar071d4272004-06-13 20:20:40 +00001333/*
1334 * Top level evaluation function, returning a number.
1335 * Evaluates "expr" silently.
1336 * Returns -1 for an error.
1337 */
1338 int
1339eval_to_number(expr)
1340 char_u *expr;
1341{
Bram Moolenaar33570922005-01-25 22:26:29 +00001342 typval_T rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001343 int retval;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00001344 char_u *p = skipwhite(expr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001345
1346 ++emsg_off;
1347
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001348 if (eval1(&p, &rettv, TRUE) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001349 retval = -1;
1350 else
1351 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001352 retval = get_tv_number_chk(&rettv, NULL);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001353 clear_tv(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001354 }
1355 --emsg_off;
1356
1357 return retval;
1358}
1359
Bram Moolenaara40058a2005-07-11 22:42:07 +00001360/*
1361 * Prepare v: variable "idx" to be used.
1362 * Save the current typeval in "save_tv".
1363 * When not used yet add the variable to the v: hashtable.
1364 */
1365 static void
1366prepare_vimvar(idx, save_tv)
1367 int idx;
1368 typval_T *save_tv;
1369{
1370 *save_tv = vimvars[idx].vv_tv;
1371 if (vimvars[idx].vv_type == VAR_UNKNOWN)
1372 hash_add(&vimvarht, vimvars[idx].vv_di.di_key);
1373}
1374
1375/*
1376 * Restore v: variable "idx" to typeval "save_tv".
1377 * When no longer defined, remove the variable from the v: hashtable.
1378 */
1379 static void
1380restore_vimvar(idx, save_tv)
1381 int idx;
1382 typval_T *save_tv;
1383{
1384 hashitem_T *hi;
1385
Bram Moolenaara40058a2005-07-11 22:42:07 +00001386 vimvars[idx].vv_tv = *save_tv;
1387 if (vimvars[idx].vv_type == VAR_UNKNOWN)
1388 {
1389 hi = hash_find(&vimvarht, vimvars[idx].vv_di.di_key);
1390 if (HASHITEM_EMPTY(hi))
1391 EMSG2(_(e_intern2), "restore_vimvar()");
1392 else
1393 hash_remove(&vimvarht, hi);
1394 }
1395}
1396
Bram Moolenaar3c56a962006-03-12 22:19:04 +00001397#if defined(FEAT_SPELL) || defined(PROTO)
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00001398/*
1399 * Evaluate an expression to a list with suggestions.
1400 * For the "expr:" part of 'spellsuggest'.
Bram Moolenaar9bf749b2008-07-27 13:57:29 +00001401 * Returns NULL when there is an error.
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00001402 */
1403 list_T *
1404eval_spell_expr(badword, expr)
1405 char_u *badword;
1406 char_u *expr;
1407{
1408 typval_T save_val;
1409 typval_T rettv;
1410 list_T *list = NULL;
1411 char_u *p = skipwhite(expr);
1412
1413 /* Set "v:val" to the bad word. */
1414 prepare_vimvar(VV_VAL, &save_val);
1415 vimvars[VV_VAL].vv_type = VAR_STRING;
1416 vimvars[VV_VAL].vv_str = badword;
1417 if (p_verbose == 0)
1418 ++emsg_off;
1419
1420 if (eval1(&p, &rettv, TRUE) == OK)
1421 {
1422 if (rettv.v_type != VAR_LIST)
1423 clear_tv(&rettv);
1424 else
1425 list = rettv.vval.v_list;
1426 }
1427
1428 if (p_verbose == 0)
1429 --emsg_off;
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00001430 restore_vimvar(VV_VAL, &save_val);
1431
1432 return list;
1433}
1434
1435/*
1436 * "list" is supposed to contain two items: a word and a number. Return the
1437 * word in "pp" and the number as the return value.
1438 * Return -1 if anything isn't right.
1439 * Used to get the good word and score from the eval_spell_expr() result.
1440 */
1441 int
1442get_spellword(list, pp)
1443 list_T *list;
1444 char_u **pp;
1445{
1446 listitem_T *li;
1447
1448 li = list->lv_first;
1449 if (li == NULL)
1450 return -1;
1451 *pp = get_tv_string(&li->li_tv);
1452
1453 li = li->li_next;
1454 if (li == NULL)
1455 return -1;
1456 return get_tv_number(&li->li_tv);
1457}
1458#endif
1459
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001460/*
Bram Moolenaar4770d092006-01-12 23:22:24 +00001461 * Top level evaluation function.
1462 * Returns an allocated typval_T with the result.
1463 * Returns NULL when there is an error.
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001464 */
1465 typval_T *
1466eval_expr(arg, nextcmd)
1467 char_u *arg;
1468 char_u **nextcmd;
1469{
1470 typval_T *tv;
1471
1472 tv = (typval_T *)alloc(sizeof(typval_T));
Bram Moolenaar4770d092006-01-12 23:22:24 +00001473 if (tv != NULL && eval0(arg, tv, nextcmd, TRUE) == FAIL)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001474 {
1475 vim_free(tv);
Bram Moolenaar4770d092006-01-12 23:22:24 +00001476 tv = NULL;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001477 }
1478
1479 return tv;
1480}
1481
1482
Bram Moolenaar4f688582007-07-24 12:34:30 +00001483#if (defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL)) \
1484 || defined(FEAT_COMPL_FUNC) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001485/*
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001486 * Call some vimL function and return the result in "*rettv".
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001487 * Uses argv[argc] for the function arguments. Only Number and String
1488 * arguments are currently supported.
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001489 * Returns OK or FAIL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001490 */
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001491 static int
1492call_vim_function(func, argc, argv, safe, rettv)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001493 char_u *func;
1494 int argc;
1495 char_u **argv;
1496 int safe; /* use the sandbox */
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001497 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001498{
Bram Moolenaar33570922005-01-25 22:26:29 +00001499 typval_T *argvars;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001500 long n;
1501 int len;
1502 int i;
1503 int doesrange;
1504 void *save_funccalp = NULL;
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001505 int ret;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001506
Bram Moolenaareb3593b2006-04-22 22:33:57 +00001507 argvars = (typval_T *)alloc((unsigned)((argc + 1) * sizeof(typval_T)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001508 if (argvars == NULL)
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001509 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001510
1511 for (i = 0; i < argc; i++)
1512 {
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00001513 /* Pass a NULL or empty argument as an empty string */
1514 if (argv[i] == NULL || *argv[i] == NUL)
1515 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +00001516 argvars[i].v_type = VAR_STRING;
1517 argvars[i].vval.v_string = (char_u *)"";
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00001518 continue;
1519 }
1520
Bram Moolenaar071d4272004-06-13 20:20:40 +00001521 /* Recognize a number argument, the others must be strings. */
1522 vim_str2nr(argv[i], NULL, &len, TRUE, TRUE, &n, NULL);
1523 if (len != 0 && len == (int)STRLEN(argv[i]))
1524 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +00001525 argvars[i].v_type = VAR_NUMBER;
1526 argvars[i].vval.v_number = n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001527 }
1528 else
1529 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +00001530 argvars[i].v_type = VAR_STRING;
1531 argvars[i].vval.v_string = argv[i];
Bram Moolenaar071d4272004-06-13 20:20:40 +00001532 }
1533 }
1534
1535 if (safe)
1536 {
1537 save_funccalp = save_funccal();
1538 ++sandbox;
1539 }
1540
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001541 rettv->v_type = VAR_UNKNOWN; /* clear_tv() uses this */
1542 ret = call_func(func, (int)STRLEN(func), rettv, argc, argvars,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001543 curwin->w_cursor.lnum, curwin->w_cursor.lnum,
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001544 &doesrange, TRUE, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001545 if (safe)
1546 {
1547 --sandbox;
1548 restore_funccal(save_funccalp);
1549 }
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001550 vim_free(argvars);
1551
1552 if (ret == FAIL)
1553 clear_tv(rettv);
1554
1555 return ret;
1556}
1557
Bram Moolenaar4f688582007-07-24 12:34:30 +00001558# if (defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL)) || defined(PROTO)
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001559/*
Bram Moolenaar25ceb222005-07-30 22:45:36 +00001560 * Call vimL function "func" and return the result as a string.
1561 * Returns NULL when calling the function fails.
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001562 * Uses argv[argc] for the function arguments.
1563 */
1564 void *
1565call_func_retstr(func, argc, argv, safe)
1566 char_u *func;
1567 int argc;
1568 char_u **argv;
1569 int safe; /* use the sandbox */
1570{
1571 typval_T rettv;
Bram Moolenaar25ceb222005-07-30 22:45:36 +00001572 char_u *retval;
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001573
1574 if (call_vim_function(func, argc, argv, safe, &rettv) == FAIL)
1575 return NULL;
1576
1577 retval = vim_strsave(get_tv_string(&rettv));
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001578 clear_tv(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001579 return retval;
1580}
Bram Moolenaar4f688582007-07-24 12:34:30 +00001581# endif
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001582
Bram Moolenaar4f688582007-07-24 12:34:30 +00001583# if defined(FEAT_COMPL_FUNC) || defined(PROTO)
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001584/*
Bram Moolenaar25ceb222005-07-30 22:45:36 +00001585 * Call vimL function "func" and return the result as a number.
1586 * Returns -1 when calling the function fails.
1587 * Uses argv[argc] for the function arguments.
1588 */
1589 long
1590call_func_retnr(func, argc, argv, safe)
1591 char_u *func;
1592 int argc;
1593 char_u **argv;
1594 int safe; /* use the sandbox */
1595{
1596 typval_T rettv;
1597 long retval;
1598
1599 if (call_vim_function(func, argc, argv, safe, &rettv) == FAIL)
1600 return -1;
1601
1602 retval = get_tv_number_chk(&rettv, NULL);
1603 clear_tv(&rettv);
1604 return retval;
1605}
Bram Moolenaar4f688582007-07-24 12:34:30 +00001606# endif
Bram Moolenaar25ceb222005-07-30 22:45:36 +00001607
1608/*
Bram Moolenaar9bf749b2008-07-27 13:57:29 +00001609 * Call vimL function "func" and return the result as a List.
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001610 * Uses argv[argc] for the function arguments.
Bram Moolenaar9bf749b2008-07-27 13:57:29 +00001611 * Returns NULL when there is something wrong.
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001612 */
1613 void *
1614call_func_retlist(func, argc, argv, safe)
1615 char_u *func;
1616 int argc;
1617 char_u **argv;
1618 int safe; /* use the sandbox */
1619{
1620 typval_T rettv;
1621
1622 if (call_vim_function(func, argc, argv, safe, &rettv) == FAIL)
1623 return NULL;
1624
1625 if (rettv.v_type != VAR_LIST)
1626 {
1627 clear_tv(&rettv);
1628 return NULL;
1629 }
1630
1631 return rettv.vval.v_list;
1632}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001633#endif
1634
Bram Moolenaar4f688582007-07-24 12:34:30 +00001635
Bram Moolenaar071d4272004-06-13 20:20:40 +00001636/*
1637 * Save the current function call pointer, and set it to NULL.
1638 * Used when executing autocommands and for ":source".
1639 */
1640 void *
1641save_funccal()
1642{
Bram Moolenaar05159a02005-02-26 23:04:13 +00001643 funccall_T *fc = current_funccal;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001644
Bram Moolenaar071d4272004-06-13 20:20:40 +00001645 current_funccal = NULL;
1646 return (void *)fc;
1647}
1648
1649 void
Bram Moolenaar05159a02005-02-26 23:04:13 +00001650restore_funccal(vfc)
1651 void *vfc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001652{
Bram Moolenaar05159a02005-02-26 23:04:13 +00001653 funccall_T *fc = (funccall_T *)vfc;
1654
1655 current_funccal = fc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001656}
1657
Bram Moolenaar05159a02005-02-26 23:04:13 +00001658#if defined(FEAT_PROFILE) || defined(PROTO)
1659/*
1660 * Prepare profiling for entering a child or something else that is not
1661 * counted for the script/function itself.
1662 * Should always be called in pair with prof_child_exit().
1663 */
1664 void
1665prof_child_enter(tm)
1666 proftime_T *tm; /* place to store waittime */
1667{
1668 funccall_T *fc = current_funccal;
1669
1670 if (fc != NULL && fc->func->uf_profiling)
1671 profile_start(&fc->prof_child);
1672 script_prof_save(tm);
1673}
1674
1675/*
1676 * Take care of time spent in a child.
1677 * Should always be called after prof_child_enter().
1678 */
1679 void
1680prof_child_exit(tm)
1681 proftime_T *tm; /* where waittime was stored */
1682{
1683 funccall_T *fc = current_funccal;
1684
1685 if (fc != NULL && fc->func->uf_profiling)
1686 {
1687 profile_end(&fc->prof_child);
1688 profile_sub_wait(tm, &fc->prof_child); /* don't count waiting time */
1689 profile_add(&fc->func->uf_tm_children, &fc->prof_child);
1690 profile_add(&fc->func->uf_tml_children, &fc->prof_child);
1691 }
1692 script_prof_restore(tm);
1693}
1694#endif
1695
1696
Bram Moolenaar071d4272004-06-13 20:20:40 +00001697#ifdef FEAT_FOLDING
1698/*
1699 * Evaluate 'foldexpr'. Returns the foldlevel, and any character preceding
1700 * it in "*cp". Doesn't give error messages.
1701 */
1702 int
1703eval_foldexpr(arg, cp)
1704 char_u *arg;
1705 int *cp;
1706{
Bram Moolenaar33570922005-01-25 22:26:29 +00001707 typval_T tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001708 int retval;
1709 char_u *s;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00001710 int use_sandbox = was_set_insecurely((char_u *)"foldexpr",
1711 OPT_LOCAL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001712
1713 ++emsg_off;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00001714 if (use_sandbox)
1715 ++sandbox;
1716 ++textlock;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001717 *cp = NUL;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001718 if (eval0(arg, &tv, NULL, TRUE) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001719 retval = 0;
1720 else
1721 {
1722 /* If the result is a number, just return the number. */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001723 if (tv.v_type == VAR_NUMBER)
1724 retval = tv.vval.v_number;
Bram Moolenaar758711c2005-02-02 23:11:38 +00001725 else if (tv.v_type != VAR_STRING || tv.vval.v_string == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001726 retval = 0;
1727 else
1728 {
1729 /* If the result is a string, check if there is a non-digit before
1730 * the number. */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001731 s = tv.vval.v_string;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001732 if (!VIM_ISDIGIT(*s) && *s != '-')
1733 *cp = *s++;
1734 retval = atol((char *)s);
1735 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001736 clear_tv(&tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001737 }
1738 --emsg_off;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00001739 if (use_sandbox)
1740 --sandbox;
1741 --textlock;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001742
1743 return retval;
1744}
1745#endif
1746
Bram Moolenaar071d4272004-06-13 20:20:40 +00001747/*
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001748 * ":let" list all variable values
1749 * ":let var1 var2" list variable values
1750 * ":let var = expr" assignment command.
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00001751 * ":let var += expr" assignment command.
1752 * ":let var -= expr" assignment command.
1753 * ":let var .= expr" assignment command.
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001754 * ":let [var1, var2] = expr" unpack list.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001755 */
1756 void
1757ex_let(eap)
1758 exarg_T *eap;
1759{
1760 char_u *arg = eap->arg;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001761 char_u *expr = NULL;
Bram Moolenaar33570922005-01-25 22:26:29 +00001762 typval_T rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001763 int i;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001764 int var_count = 0;
1765 int semicolon = 0;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00001766 char_u op[2];
Bram Moolenaardb552d602006-03-23 22:59:57 +00001767 char_u *argend;
Bram Moolenaar7d61a922007-08-30 09:12:23 +00001768 int first = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001769
Bram Moolenaardb552d602006-03-23 22:59:57 +00001770 argend = skip_var_list(arg, &var_count, &semicolon);
1771 if (argend == NULL)
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001772 return;
Bram Moolenaar76b92b22006-03-24 22:46:53 +00001773 if (argend > arg && argend[-1] == '.') /* for var.='str' */
1774 --argend;
Bram Moolenaardb552d602006-03-23 22:59:57 +00001775 expr = vim_strchr(argend, '=');
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001776 if (expr == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001777 {
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00001778 /*
1779 * ":let" without "=": list variables
1780 */
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001781 if (*arg == '[')
1782 EMSG(_(e_invarg));
1783 else if (!ends_excmd(*arg))
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001784 /* ":let var1 var2" */
Bram Moolenaar7d61a922007-08-30 09:12:23 +00001785 arg = list_arg_vars(eap, arg, &first);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001786 else if (!eap->skip)
Bram Moolenaara7043832005-01-21 11:56:39 +00001787 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001788 /* ":let" */
Bram Moolenaar7d61a922007-08-30 09:12:23 +00001789 list_glob_vars(&first);
1790 list_buf_vars(&first);
1791 list_win_vars(&first);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001792#ifdef FEAT_WINDOWS
Bram Moolenaar7d61a922007-08-30 09:12:23 +00001793 list_tab_vars(&first);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001794#endif
Bram Moolenaar7d61a922007-08-30 09:12:23 +00001795 list_script_vars(&first);
1796 list_func_vars(&first);
1797 list_vim_vars(&first);
Bram Moolenaara7043832005-01-21 11:56:39 +00001798 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001799 eap->nextcmd = check_nextcmd(arg);
1800 }
1801 else
1802 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00001803 op[0] = '=';
1804 op[1] = NUL;
Bram Moolenaardb552d602006-03-23 22:59:57 +00001805 if (expr > argend)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00001806 {
1807 if (vim_strchr((char_u *)"+-.", expr[-1]) != NULL)
1808 op[0] = expr[-1]; /* +=, -= or .= */
1809 }
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001810 expr = skipwhite(expr + 1);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001811
Bram Moolenaar071d4272004-06-13 20:20:40 +00001812 if (eap->skip)
1813 ++emsg_skip;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001814 i = eval0(expr, &rettv, &eap->nextcmd, !eap->skip);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001815 if (eap->skip)
1816 {
1817 if (i != FAIL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001818 clear_tv(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001819 --emsg_skip;
1820 }
1821 else if (i != FAIL)
1822 {
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001823 (void)ex_let_vars(eap->arg, &rettv, FALSE, semicolon, var_count,
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00001824 op);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001825 clear_tv(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001826 }
1827 }
1828}
1829
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001830/*
1831 * Assign the typevalue "tv" to the variable or variables at "arg_start".
1832 * Handles both "var" with any type and "[var, var; var]" with a list type.
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00001833 * When "nextchars" is not NULL it points to a string with characters that
1834 * must appear after the variable(s). Use "+", "-" or "." for add, subtract
1835 * or concatenate.
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001836 * Returns OK or FAIL;
1837 */
1838 static int
1839ex_let_vars(arg_start, tv, copy, semicolon, var_count, nextchars)
1840 char_u *arg_start;
Bram Moolenaar33570922005-01-25 22:26:29 +00001841 typval_T *tv;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001842 int copy; /* copy values from "tv", don't move */
1843 int semicolon; /* from skip_var_list() */
1844 int var_count; /* from skip_var_list() */
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00001845 char_u *nextchars;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001846{
1847 char_u *arg = arg_start;
Bram Moolenaar33570922005-01-25 22:26:29 +00001848 list_T *l;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001849 int i;
Bram Moolenaar33570922005-01-25 22:26:29 +00001850 listitem_T *item;
1851 typval_T ltv;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001852
1853 if (*arg != '[')
1854 {
1855 /*
1856 * ":let var = expr" or ":for var in list"
1857 */
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00001858 if (ex_let_one(arg, tv, copy, nextchars, nextchars) == NULL)
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001859 return FAIL;
1860 return OK;
1861 }
1862
1863 /*
1864 * ":let [v1, v2] = list" or ":for [v1, v2] in listlist"
1865 */
Bram Moolenaar758711c2005-02-02 23:11:38 +00001866 if (tv->v_type != VAR_LIST || (l = tv->vval.v_list) == NULL)
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001867 {
1868 EMSG(_(e_listreq));
1869 return FAIL;
1870 }
1871
1872 i = list_len(l);
1873 if (semicolon == 0 && var_count < i)
1874 {
Bram Moolenaare49b69a2005-01-08 16:11:57 +00001875 EMSG(_("E687: Less targets than List items"));
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001876 return FAIL;
1877 }
1878 if (var_count - semicolon > i)
1879 {
Bram Moolenaare49b69a2005-01-08 16:11:57 +00001880 EMSG(_("E688: More targets than List items"));
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001881 return FAIL;
1882 }
1883
1884 item = l->lv_first;
1885 while (*arg != ']')
1886 {
1887 arg = skipwhite(arg + 1);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00001888 arg = ex_let_one(arg, &item->li_tv, TRUE, (char_u *)",;]", nextchars);
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001889 item = item->li_next;
1890 if (arg == NULL)
1891 return FAIL;
1892
1893 arg = skipwhite(arg);
1894 if (*arg == ';')
1895 {
1896 /* Put the rest of the list (may be empty) in the var after ';'.
1897 * Create a new list for this. */
1898 l = list_alloc();
1899 if (l == NULL)
1900 return FAIL;
1901 while (item != NULL)
1902 {
1903 list_append_tv(l, &item->li_tv);
1904 item = item->li_next;
1905 }
1906
1907 ltv.v_type = VAR_LIST;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00001908 ltv.v_lock = 0;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001909 ltv.vval.v_list = l;
1910 l->lv_refcount = 1;
1911
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00001912 arg = ex_let_one(skipwhite(arg + 1), &ltv, FALSE,
1913 (char_u *)"]", nextchars);
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001914 clear_tv(&ltv);
1915 if (arg == NULL)
1916 return FAIL;
1917 break;
1918 }
1919 else if (*arg != ',' && *arg != ']')
1920 {
1921 EMSG2(_(e_intern2), "ex_let_vars()");
1922 return FAIL;
1923 }
1924 }
1925
1926 return OK;
1927}
1928
1929/*
1930 * Skip over assignable variable "var" or list of variables "[var, var]".
1931 * Used for ":let varvar = expr" and ":for varvar in expr".
1932 * For "[var, var]" increment "*var_count" for each variable.
1933 * for "[var, var; var]" set "semicolon".
1934 * Return NULL for an error.
1935 */
1936 static char_u *
1937skip_var_list(arg, var_count, semicolon)
1938 char_u *arg;
1939 int *var_count;
1940 int *semicolon;
1941{
1942 char_u *p, *s;
1943
1944 if (*arg == '[')
1945 {
1946 /* "[var, var]": find the matching ']'. */
1947 p = arg;
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001948 for (;;)
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001949 {
1950 p = skipwhite(p + 1); /* skip whites after '[', ';' or ',' */
1951 s = skip_var_one(p);
1952 if (s == p)
1953 {
1954 EMSG2(_(e_invarg2), p);
1955 return NULL;
1956 }
1957 ++*var_count;
1958
1959 p = skipwhite(s);
1960 if (*p == ']')
1961 break;
1962 else if (*p == ';')
1963 {
1964 if (*semicolon == 1)
1965 {
1966 EMSG(_("Double ; in list of variables"));
1967 return NULL;
1968 }
1969 *semicolon = 1;
1970 }
1971 else if (*p != ',')
1972 {
1973 EMSG2(_(e_invarg2), p);
1974 return NULL;
1975 }
1976 }
1977 return p + 1;
1978 }
1979 else
1980 return skip_var_one(arg);
1981}
1982
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00001983/*
Bram Moolenaarbae0c162007-05-10 19:30:25 +00001984 * Skip one (assignable) variable name, including @r, $VAR, &option, d.key,
Bram Moolenaar92124a32005-06-17 22:03:40 +00001985 * l[idx].
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00001986 */
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001987 static char_u *
1988skip_var_one(arg)
1989 char_u *arg;
1990{
Bram Moolenaar92124a32005-06-17 22:03:40 +00001991 if (*arg == '@' && arg[1] != NUL)
1992 return arg + 2;
1993 return find_name_end(*arg == '$' || *arg == '&' ? arg + 1 : arg,
1994 NULL, NULL, FNE_INCL_BR | FNE_CHECK_START);
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001995}
1996
Bram Moolenaara7043832005-01-21 11:56:39 +00001997/*
Bram Moolenaar33570922005-01-25 22:26:29 +00001998 * List variables for hashtab "ht" with prefix "prefix".
1999 * If "empty" is TRUE also list NULL strings as empty strings.
Bram Moolenaara7043832005-01-21 11:56:39 +00002000 */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002001 static void
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002002list_hashtable_vars(ht, prefix, empty, first)
Bram Moolenaar33570922005-01-25 22:26:29 +00002003 hashtab_T *ht;
Bram Moolenaara7043832005-01-21 11:56:39 +00002004 char_u *prefix;
Bram Moolenaar33570922005-01-25 22:26:29 +00002005 int empty;
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002006 int *first;
Bram Moolenaara7043832005-01-21 11:56:39 +00002007{
Bram Moolenaar33570922005-01-25 22:26:29 +00002008 hashitem_T *hi;
2009 dictitem_T *di;
Bram Moolenaara7043832005-01-21 11:56:39 +00002010 int todo;
2011
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002012 todo = (int)ht->ht_used;
Bram Moolenaara7043832005-01-21 11:56:39 +00002013 for (hi = ht->ht_array; todo > 0 && !got_int; ++hi)
2014 {
2015 if (!HASHITEM_EMPTY(hi))
2016 {
2017 --todo;
Bram Moolenaar33570922005-01-25 22:26:29 +00002018 di = HI2DI(hi);
2019 if (empty || di->di_tv.v_type != VAR_STRING
2020 || di->di_tv.vval.v_string != NULL)
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002021 list_one_var(di, prefix, first);
Bram Moolenaara7043832005-01-21 11:56:39 +00002022 }
2023 }
2024}
2025
2026/*
2027 * List global variables.
2028 */
2029 static void
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002030list_glob_vars(first)
2031 int *first;
Bram Moolenaara7043832005-01-21 11:56:39 +00002032{
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002033 list_hashtable_vars(&globvarht, (char_u *)"", TRUE, first);
Bram Moolenaara7043832005-01-21 11:56:39 +00002034}
2035
2036/*
2037 * List buffer variables.
2038 */
2039 static void
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002040list_buf_vars(first)
2041 int *first;
Bram Moolenaara7043832005-01-21 11:56:39 +00002042{
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002043 char_u numbuf[NUMBUFLEN];
2044
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002045 list_hashtable_vars(&curbuf->b_vars.dv_hashtab, (char_u *)"b:",
2046 TRUE, first);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002047
2048 sprintf((char *)numbuf, "%ld", (long)curbuf->b_changedtick);
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002049 list_one_var_a((char_u *)"b:", (char_u *)"changedtick", VAR_NUMBER,
2050 numbuf, first);
Bram Moolenaara7043832005-01-21 11:56:39 +00002051}
2052
2053/*
2054 * List window variables.
2055 */
2056 static void
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002057list_win_vars(first)
2058 int *first;
Bram Moolenaara7043832005-01-21 11:56:39 +00002059{
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002060 list_hashtable_vars(&curwin->w_vars.dv_hashtab,
2061 (char_u *)"w:", TRUE, first);
Bram Moolenaara7043832005-01-21 11:56:39 +00002062}
2063
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002064#ifdef FEAT_WINDOWS
2065/*
2066 * List tab page variables.
2067 */
2068 static void
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002069list_tab_vars(first)
2070 int *first;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002071{
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002072 list_hashtable_vars(&curtab->tp_vars.dv_hashtab,
2073 (char_u *)"t:", TRUE, first);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002074}
2075#endif
2076
Bram Moolenaara7043832005-01-21 11:56:39 +00002077/*
2078 * List Vim variables.
2079 */
2080 static void
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002081list_vim_vars(first)
2082 int *first;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002083{
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002084 list_hashtable_vars(&vimvarht, (char_u *)"v:", FALSE, first);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002085}
2086
2087/*
Bram Moolenaarf0acfce2006-03-17 23:21:19 +00002088 * List script-local variables, if there is a script.
2089 */
2090 static void
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002091list_script_vars(first)
2092 int *first;
Bram Moolenaarf0acfce2006-03-17 23:21:19 +00002093{
2094 if (current_SID > 0 && current_SID <= ga_scripts.ga_len)
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002095 list_hashtable_vars(&SCRIPT_VARS(current_SID),
2096 (char_u *)"s:", FALSE, first);
Bram Moolenaarf0acfce2006-03-17 23:21:19 +00002097}
2098
2099/*
2100 * List function variables, if there is a function.
2101 */
2102 static void
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002103list_func_vars(first)
2104 int *first;
Bram Moolenaarf0acfce2006-03-17 23:21:19 +00002105{
2106 if (current_funccal != NULL)
2107 list_hashtable_vars(&current_funccal->l_vars.dv_hashtab,
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002108 (char_u *)"l:", FALSE, first);
Bram Moolenaarf0acfce2006-03-17 23:21:19 +00002109}
2110
2111/*
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002112 * List variables in "arg".
2113 */
2114 static char_u *
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002115list_arg_vars(eap, arg, first)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002116 exarg_T *eap;
2117 char_u *arg;
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002118 int *first;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002119{
2120 int error = FALSE;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002121 int len;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002122 char_u *name;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002123 char_u *name_start;
2124 char_u *arg_subsc;
2125 char_u *tofree;
2126 typval_T tv;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002127
2128 while (!ends_excmd(*arg) && !got_int)
2129 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002130 if (error || eap->skip)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002131 {
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +00002132 arg = find_name_end(arg, NULL, NULL, FNE_INCL_BR | FNE_CHECK_START);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002133 if (!vim_iswhite(*arg) && !ends_excmd(*arg))
2134 {
2135 emsg_severe = TRUE;
2136 EMSG(_(e_trailing));
2137 break;
2138 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002139 }
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002140 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002141 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002142 /* get_name_len() takes care of expanding curly braces */
2143 name_start = name = arg;
2144 len = get_name_len(&arg, &tofree, TRUE, TRUE);
2145 if (len <= 0)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002146 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002147 /* This is mainly to keep test 49 working: when expanding
2148 * curly braces fails overrule the exception error message. */
2149 if (len < 0 && !aborting())
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002150 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002151 emsg_severe = TRUE;
2152 EMSG2(_(e_invarg2), arg);
2153 break;
2154 }
2155 error = TRUE;
2156 }
2157 else
2158 {
2159 if (tofree != NULL)
2160 name = tofree;
2161 if (get_var_tv(name, len, &tv, TRUE) == FAIL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002162 error = TRUE;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002163 else
2164 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002165 /* handle d.key, l[idx], f(expr) */
2166 arg_subsc = arg;
2167 if (handle_subscript(&arg, &tv, TRUE, TRUE) == FAIL)
Bram Moolenaara7043832005-01-21 11:56:39 +00002168 error = TRUE;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002169 else
Bram Moolenaara7043832005-01-21 11:56:39 +00002170 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002171 if (arg == arg_subsc && len == 2 && name[1] == ':')
Bram Moolenaara7043832005-01-21 11:56:39 +00002172 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002173 switch (*name)
Bram Moolenaara7043832005-01-21 11:56:39 +00002174 {
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002175 case 'g': list_glob_vars(first); break;
2176 case 'b': list_buf_vars(first); break;
2177 case 'w': list_win_vars(first); break;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002178#ifdef FEAT_WINDOWS
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002179 case 't': list_tab_vars(first); break;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002180#endif
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002181 case 'v': list_vim_vars(first); break;
2182 case 's': list_script_vars(first); break;
2183 case 'l': list_func_vars(first); break;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002184 default:
2185 EMSG2(_("E738: Can't list variables for %s"), name);
Bram Moolenaara7043832005-01-21 11:56:39 +00002186 }
Bram Moolenaara7043832005-01-21 11:56:39 +00002187 }
2188 else
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002189 {
2190 char_u numbuf[NUMBUFLEN];
2191 char_u *tf;
2192 int c;
2193 char_u *s;
2194
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00002195 s = echo_string(&tv, &tf, numbuf, 0);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002196 c = *arg;
2197 *arg = NUL;
2198 list_one_var_a((char_u *)"",
2199 arg == arg_subsc ? name : name_start,
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002200 tv.v_type,
2201 s == NULL ? (char_u *)"" : s,
2202 first);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002203 *arg = c;
2204 vim_free(tf);
2205 }
2206 clear_tv(&tv);
Bram Moolenaara7043832005-01-21 11:56:39 +00002207 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002208 }
2209 }
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002210
2211 vim_free(tofree);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002212 }
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002213
2214 arg = skipwhite(arg);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002215 }
2216
2217 return arg;
2218}
2219
2220/*
2221 * Set one item of ":let var = expr" or ":let [v1, v2] = list" to its value.
2222 * Returns a pointer to the char just after the var name.
2223 * Returns NULL if there is an error.
2224 */
2225 static char_u *
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002226ex_let_one(arg, tv, copy, endchars, op)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002227 char_u *arg; /* points to variable name */
Bram Moolenaar33570922005-01-25 22:26:29 +00002228 typval_T *tv; /* value to assign to variable */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002229 int copy; /* copy value from "tv" */
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00002230 char_u *endchars; /* valid chars after variable name or NULL */
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002231 char_u *op; /* "+", "-", "." or NULL*/
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002232{
2233 int c1;
2234 char_u *name;
2235 char_u *p;
2236 char_u *arg_end = NULL;
2237 int len;
2238 int opt_flags;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002239 char_u *tofree = NULL;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002240
2241 /*
2242 * ":let $VAR = expr": Set environment variable.
2243 */
2244 if (*arg == '$')
2245 {
2246 /* Find the end of the name. */
2247 ++arg;
2248 name = arg;
2249 len = get_env_len(&arg);
2250 if (len == 0)
2251 EMSG2(_(e_invarg2), name - 1);
2252 else
2253 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002254 if (op != NULL && (*op == '+' || *op == '-'))
2255 EMSG2(_(e_letwrong), op);
2256 else if (endchars != NULL
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00002257 && vim_strchr(endchars, *skipwhite(arg)) == NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002258 EMSG(_(e_letunexp));
2259 else
2260 {
2261 c1 = name[len];
2262 name[len] = NUL;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002263 p = get_tv_string_chk(tv);
2264 if (p != NULL && op != NULL && *op == '.')
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002265 {
2266 int mustfree = FALSE;
2267 char_u *s = vim_getenv(name, &mustfree);
2268
2269 if (s != NULL)
2270 {
2271 p = tofree = concat_str(s, p);
2272 if (mustfree)
2273 vim_free(s);
2274 }
2275 }
2276 if (p != NULL)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002277 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002278 vim_setenv(name, p);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002279 if (STRICMP(name, "HOME") == 0)
2280 init_homedir();
2281 else if (didset_vim && STRICMP(name, "VIM") == 0)
2282 didset_vim = FALSE;
2283 else if (didset_vimruntime
2284 && STRICMP(name, "VIMRUNTIME") == 0)
2285 didset_vimruntime = FALSE;
2286 arg_end = arg;
2287 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002288 name[len] = c1;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002289 vim_free(tofree);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002290 }
2291 }
2292 }
2293
2294 /*
2295 * ":let &option = expr": Set option value.
2296 * ":let &l:option = expr": Set local option value.
2297 * ":let &g:option = expr": Set global option value.
2298 */
2299 else if (*arg == '&')
2300 {
2301 /* Find the end of the name. */
2302 p = find_option_end(&arg, &opt_flags);
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00002303 if (p == NULL || (endchars != NULL
2304 && vim_strchr(endchars, *skipwhite(p)) == NULL))
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002305 EMSG(_(e_letunexp));
2306 else
2307 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002308 long n;
2309 int opt_type;
2310 long numval;
2311 char_u *stringval = NULL;
2312 char_u *s;
2313
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002314 c1 = *p;
2315 *p = NUL;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002316
2317 n = get_tv_number(tv);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002318 s = get_tv_string_chk(tv); /* != NULL if number or string */
2319 if (s != NULL && op != NULL && *op != '=')
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002320 {
2321 opt_type = get_option_value(arg, &numval,
2322 &stringval, opt_flags);
2323 if ((opt_type == 1 && *op == '.')
2324 || (opt_type == 0 && *op != '.'))
2325 EMSG2(_(e_letwrong), op);
2326 else
2327 {
2328 if (opt_type == 1) /* number */
2329 {
2330 if (*op == '+')
2331 n = numval + n;
2332 else
2333 n = numval - n;
2334 }
2335 else if (opt_type == 0 && stringval != NULL) /* string */
2336 {
2337 s = concat_str(stringval, s);
2338 vim_free(stringval);
2339 stringval = s;
2340 }
2341 }
2342 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002343 if (s != NULL)
2344 {
2345 set_option_value(arg, n, s, opt_flags);
2346 arg_end = p;
2347 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002348 *p = c1;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002349 vim_free(stringval);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002350 }
2351 }
2352
2353 /*
2354 * ":let @r = expr": Set register contents.
2355 */
2356 else if (*arg == '@')
2357 {
2358 ++arg;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002359 if (op != NULL && (*op == '+' || *op == '-'))
2360 EMSG2(_(e_letwrong), op);
2361 else if (endchars != NULL
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00002362 && vim_strchr(endchars, *skipwhite(arg + 1)) == NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002363 EMSG(_(e_letunexp));
2364 else
2365 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00002366 char_u *ptofree = NULL;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002367 char_u *s;
2368
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002369 p = get_tv_string_chk(tv);
2370 if (p != NULL && op != NULL && *op == '.')
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002371 {
Bram Moolenaar92124a32005-06-17 22:03:40 +00002372 s = get_reg_contents(*arg == '@' ? '"' : *arg, TRUE, TRUE);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002373 if (s != NULL)
2374 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00002375 p = ptofree = concat_str(s, p);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002376 vim_free(s);
2377 }
2378 }
2379 if (p != NULL)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002380 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002381 write_reg_contents(*arg == '@' ? '"' : *arg, p, -1, FALSE);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002382 arg_end = arg + 1;
2383 }
Bram Moolenaar89d40322006-08-29 15:30:07 +00002384 vim_free(ptofree);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002385 }
2386 }
2387
2388 /*
2389 * ":let var = expr": Set internal variable.
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002390 * ":let {expr} = expr": Idem, name made with curly braces
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002391 */
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +00002392 else if (eval_isnamec1(*arg) || *arg == '{')
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002393 {
Bram Moolenaar33570922005-01-25 22:26:29 +00002394 lval_T lv;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002395
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +00002396 p = get_lval(arg, tv, &lv, FALSE, FALSE, FALSE, FNE_CHECK_START);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002397 if (p != NULL && lv.ll_name != NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002398 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002399 if (endchars != NULL && vim_strchr(endchars, *skipwhite(p)) == NULL)
2400 EMSG(_(e_letunexp));
2401 else
2402 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002403 set_var_lval(&lv, p, tv, copy, op);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002404 arg_end = p;
2405 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002406 }
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002407 clear_lval(&lv);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002408 }
2409
2410 else
2411 EMSG2(_(e_invarg2), arg);
2412
2413 return arg_end;
2414}
2415
2416/*
Bram Moolenaar8c711452005-01-14 21:53:12 +00002417 * If "arg" is equal to "b:changedtick" give an error and return TRUE.
2418 */
2419 static int
2420check_changedtick(arg)
2421 char_u *arg;
2422{
2423 if (STRNCMP(arg, "b:changedtick", 13) == 0 && !eval_isnamec(arg[13]))
2424 {
2425 EMSG2(_(e_readonlyvar), arg);
2426 return TRUE;
2427 }
2428 return FALSE;
2429}
2430
2431/*
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002432 * Get an lval: variable, Dict item or List item that can be assigned a value
2433 * to: "name", "na{me}", "name[expr]", "name[expr:expr]", "name[expr][expr]",
2434 * "name.key", "name.key[expr]" etc.
2435 * Indexing only works if "name" is an existing List or Dictionary.
2436 * "name" points to the start of the name.
2437 * If "rettv" is not NULL it points to the value to be assigned.
2438 * "unlet" is TRUE for ":unlet": slightly different behavior when something is
2439 * wrong; must end in space or cmd separator.
2440 *
2441 * Returns a pointer to just after the name, including indexes.
Bram Moolenaara7043832005-01-21 11:56:39 +00002442 * When an evaluation error occurs "lp->ll_name" is NULL;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002443 * Returns NULL for a parsing error. Still need to free items in "lp"!
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002444 */
2445 static char_u *
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +00002446get_lval(name, rettv, lp, unlet, skip, quiet, fne_flags)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002447 char_u *name;
Bram Moolenaar33570922005-01-25 22:26:29 +00002448 typval_T *rettv;
2449 lval_T *lp;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002450 int unlet;
2451 int skip;
2452 int quiet; /* don't give error messages */
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +00002453 int fne_flags; /* flags for find_name_end() */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002454{
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002455 char_u *p;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002456 char_u *expr_start, *expr_end;
2457 int cc;
Bram Moolenaar33570922005-01-25 22:26:29 +00002458 dictitem_T *v;
2459 typval_T var1;
2460 typval_T var2;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002461 int empty1 = FALSE;
Bram Moolenaar33570922005-01-25 22:26:29 +00002462 listitem_T *ni;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002463 char_u *key = NULL;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002464 int len;
Bram Moolenaar33570922005-01-25 22:26:29 +00002465 hashtab_T *ht;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002466
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002467 /* Clear everything in "lp". */
Bram Moolenaar33570922005-01-25 22:26:29 +00002468 vim_memset(lp, 0, sizeof(lval_T));
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002469
2470 if (skip)
2471 {
2472 /* When skipping just find the end of the name. */
2473 lp->ll_name = name;
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +00002474 return find_name_end(name, NULL, NULL, FNE_INCL_BR | fne_flags);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002475 }
2476
2477 /* Find the end of the name. */
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +00002478 p = find_name_end(name, &expr_start, &expr_end, fne_flags);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002479 if (expr_start != NULL)
2480 {
2481 /* Don't expand the name when we already know there is an error. */
2482 if (unlet && !vim_iswhite(*p) && !ends_excmd(*p)
2483 && *p != '[' && *p != '.')
2484 {
2485 EMSG(_(e_trailing));
2486 return NULL;
2487 }
2488
2489 lp->ll_exp_name = make_expanded_name(name, expr_start, expr_end, p);
2490 if (lp->ll_exp_name == NULL)
2491 {
2492 /* Report an invalid expression in braces, unless the
2493 * expression evaluation has been cancelled due to an
2494 * aborting error, an interrupt, or an exception. */
2495 if (!aborting() && !quiet)
2496 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00002497 emsg_severe = TRUE;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002498 EMSG2(_(e_invarg2), name);
2499 return NULL;
2500 }
2501 }
2502 lp->ll_name = lp->ll_exp_name;
2503 }
2504 else
2505 lp->ll_name = name;
2506
2507 /* Without [idx] or .key we are done. */
2508 if ((*p != '[' && *p != '.') || lp->ll_name == NULL)
2509 return p;
2510
2511 cc = *p;
2512 *p = NUL;
Bram Moolenaara7043832005-01-21 11:56:39 +00002513 v = find_var(lp->ll_name, &ht);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002514 if (v == NULL && !quiet)
2515 EMSG2(_(e_undefvar), lp->ll_name);
2516 *p = cc;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002517 if (v == NULL)
2518 return NULL;
2519
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002520 /*
2521 * Loop until no more [idx] or .key is following.
2522 */
Bram Moolenaar33570922005-01-25 22:26:29 +00002523 lp->ll_tv = &v->di_tv;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002524 while (*p == '[' || (*p == '.' && lp->ll_tv->v_type == VAR_DICT))
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002525 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002526 if (!(lp->ll_tv->v_type == VAR_LIST && lp->ll_tv->vval.v_list != NULL)
2527 && !(lp->ll_tv->v_type == VAR_DICT
2528 && lp->ll_tv->vval.v_dict != NULL))
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002529 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002530 if (!quiet)
2531 EMSG(_("E689: Can only index a List or Dictionary"));
2532 return NULL;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002533 }
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002534 if (lp->ll_range)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002535 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002536 if (!quiet)
2537 EMSG(_("E708: [:] must come last"));
2538 return NULL;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002539 }
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002540
Bram Moolenaar8c711452005-01-14 21:53:12 +00002541 len = -1;
2542 if (*p == '.')
2543 {
2544 key = p + 1;
2545 for (len = 0; ASCII_ISALNUM(key[len]) || key[len] == '_'; ++len)
2546 ;
2547 if (len == 0)
2548 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002549 if (!quiet)
2550 EMSG(_(e_emptykey));
2551 return NULL;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002552 }
2553 p = key + len;
2554 }
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002555 else
2556 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00002557 /* Get the index [expr] or the first index [expr: ]. */
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002558 p = skipwhite(p + 1);
Bram Moolenaar8c711452005-01-14 21:53:12 +00002559 if (*p == ':')
2560 empty1 = TRUE;
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002561 else
2562 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00002563 empty1 = FALSE;
2564 if (eval1(&p, &var1, TRUE) == FAIL) /* recursive! */
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002565 return NULL;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002566 if (get_tv_string_chk(&var1) == NULL)
2567 {
2568 /* not a number or string */
2569 clear_tv(&var1);
2570 return NULL;
2571 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00002572 }
2573
2574 /* Optionally get the second index [ :expr]. */
2575 if (*p == ':')
2576 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002577 if (lp->ll_tv->v_type == VAR_DICT)
Bram Moolenaar8c711452005-01-14 21:53:12 +00002578 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002579 if (!quiet)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002580 EMSG(_(e_dictrange));
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002581 if (!empty1)
2582 clear_tv(&var1);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002583 return NULL;
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002584 }
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002585 if (rettv != NULL && (rettv->v_type != VAR_LIST
2586 || rettv->vval.v_list == NULL))
Bram Moolenaar8c711452005-01-14 21:53:12 +00002587 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002588 if (!quiet)
2589 EMSG(_("E709: [:] requires a List value"));
Bram Moolenaar8c711452005-01-14 21:53:12 +00002590 if (!empty1)
2591 clear_tv(&var1);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002592 return NULL;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002593 }
2594 p = skipwhite(p + 1);
2595 if (*p == ']')
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002596 lp->ll_empty2 = TRUE;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002597 else
2598 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002599 lp->ll_empty2 = FALSE;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002600 if (eval1(&p, &var2, TRUE) == FAIL) /* recursive! */
2601 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00002602 if (!empty1)
2603 clear_tv(&var1);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002604 return NULL;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002605 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002606 if (get_tv_string_chk(&var2) == NULL)
2607 {
2608 /* not a number or string */
2609 if (!empty1)
2610 clear_tv(&var1);
2611 clear_tv(&var2);
2612 return NULL;
2613 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00002614 }
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002615 lp->ll_range = TRUE;
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002616 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00002617 else
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002618 lp->ll_range = FALSE;
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002619
Bram Moolenaar8c711452005-01-14 21:53:12 +00002620 if (*p != ']')
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002621 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002622 if (!quiet)
2623 EMSG(_(e_missbrac));
Bram Moolenaar8c711452005-01-14 21:53:12 +00002624 if (!empty1)
2625 clear_tv(&var1);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002626 if (lp->ll_range && !lp->ll_empty2)
Bram Moolenaar8c711452005-01-14 21:53:12 +00002627 clear_tv(&var2);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002628 return NULL;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002629 }
2630
2631 /* Skip to past ']'. */
2632 ++p;
2633 }
2634
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002635 if (lp->ll_tv->v_type == VAR_DICT)
Bram Moolenaar8c711452005-01-14 21:53:12 +00002636 {
2637 if (len == -1)
2638 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002639 /* "[key]": get key from "var1" */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002640 key = get_tv_string(&var1); /* is number or string */
Bram Moolenaar8c711452005-01-14 21:53:12 +00002641 if (*key == NUL)
2642 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002643 if (!quiet)
2644 EMSG(_(e_emptykey));
Bram Moolenaar8c711452005-01-14 21:53:12 +00002645 clear_tv(&var1);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002646 return NULL;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002647 }
2648 }
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002649 lp->ll_list = NULL;
2650 lp->ll_dict = lp->ll_tv->vval.v_dict;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00002651 lp->ll_di = dict_find(lp->ll_dict, key, len);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002652 if (lp->ll_di == NULL)
Bram Moolenaar8c711452005-01-14 21:53:12 +00002653 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00002654 /* Key does not exist in dict: may need to add it. */
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002655 if (*p == '[' || *p == '.' || unlet)
Bram Moolenaar8c711452005-01-14 21:53:12 +00002656 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002657 if (!quiet)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002658 EMSG2(_(e_dictkey), key);
Bram Moolenaar8c711452005-01-14 21:53:12 +00002659 if (len == -1)
2660 clear_tv(&var1);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002661 return NULL;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002662 }
2663 if (len == -1)
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002664 lp->ll_newkey = vim_strsave(key);
Bram Moolenaar8c711452005-01-14 21:53:12 +00002665 else
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002666 lp->ll_newkey = vim_strnsave(key, len);
Bram Moolenaar8c711452005-01-14 21:53:12 +00002667 if (len == -1)
2668 clear_tv(&var1);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002669 if (lp->ll_newkey == NULL)
Bram Moolenaar8c711452005-01-14 21:53:12 +00002670 p = NULL;
2671 break;
2672 }
2673 if (len == -1)
2674 clear_tv(&var1);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002675 lp->ll_tv = &lp->ll_di->di_tv;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002676 }
2677 else
2678 {
2679 /*
2680 * Get the number and item for the only or first index of the List.
2681 */
2682 if (empty1)
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002683 lp->ll_n1 = 0;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002684 else
2685 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002686 lp->ll_n1 = get_tv_number(&var1); /* is number or string */
Bram Moolenaar8c711452005-01-14 21:53:12 +00002687 clear_tv(&var1);
2688 }
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002689 lp->ll_dict = NULL;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002690 lp->ll_list = lp->ll_tv->vval.v_list;
2691 lp->ll_li = list_find(lp->ll_list, lp->ll_n1);
2692 if (lp->ll_li == NULL)
Bram Moolenaar8c711452005-01-14 21:53:12 +00002693 {
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00002694 if (lp->ll_n1 < 0)
2695 {
2696 lp->ll_n1 = 0;
2697 lp->ll_li = list_find(lp->ll_list, lp->ll_n1);
2698 }
2699 }
2700 if (lp->ll_li == NULL)
2701 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002702 if (lp->ll_range && !lp->ll_empty2)
Bram Moolenaar8c711452005-01-14 21:53:12 +00002703 clear_tv(&var2);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002704 return NULL;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002705 }
2706
2707 /*
2708 * May need to find the item or absolute index for the second
2709 * index of a range.
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002710 * When no index given: "lp->ll_empty2" is TRUE.
2711 * Otherwise "lp->ll_n2" is set to the second index.
Bram Moolenaar8c711452005-01-14 21:53:12 +00002712 */
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002713 if (lp->ll_range && !lp->ll_empty2)
Bram Moolenaar8c711452005-01-14 21:53:12 +00002714 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002715 lp->ll_n2 = get_tv_number(&var2); /* is number or string */
Bram Moolenaar8c711452005-01-14 21:53:12 +00002716 clear_tv(&var2);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002717 if (lp->ll_n2 < 0)
Bram Moolenaar8c711452005-01-14 21:53:12 +00002718 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002719 ni = list_find(lp->ll_list, lp->ll_n2);
Bram Moolenaar8c711452005-01-14 21:53:12 +00002720 if (ni == NULL)
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002721 return NULL;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002722 lp->ll_n2 = list_idx_of_item(lp->ll_list, ni);
Bram Moolenaar8c711452005-01-14 21:53:12 +00002723 }
2724
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002725 /* Check that lp->ll_n2 isn't before lp->ll_n1. */
2726 if (lp->ll_n1 < 0)
2727 lp->ll_n1 = list_idx_of_item(lp->ll_list, lp->ll_li);
2728 if (lp->ll_n2 < lp->ll_n1)
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002729 return NULL;
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002730 }
2731
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002732 lp->ll_tv = &lp->ll_li->li_tv;
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002733 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002734 }
2735
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002736 return p;
2737}
2738
2739/*
Bram Moolenaar33570922005-01-25 22:26:29 +00002740 * Clear lval "lp" that was filled by get_lval().
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002741 */
2742 static void
2743clear_lval(lp)
Bram Moolenaar33570922005-01-25 22:26:29 +00002744 lval_T *lp;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002745{
2746 vim_free(lp->ll_exp_name);
2747 vim_free(lp->ll_newkey);
2748}
2749
2750/*
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00002751 * Set a variable that was parsed by get_lval() to "rettv".
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002752 * "endp" points to just after the parsed name.
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002753 * "op" is NULL, "+" for "+=", "-" for "-=", "." for ".=" or "=" for "=".
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002754 */
2755 static void
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002756set_var_lval(lp, endp, rettv, copy, op)
Bram Moolenaar33570922005-01-25 22:26:29 +00002757 lval_T *lp;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002758 char_u *endp;
Bram Moolenaar33570922005-01-25 22:26:29 +00002759 typval_T *rettv;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002760 int copy;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002761 char_u *op;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002762{
2763 int cc;
Bram Moolenaar33570922005-01-25 22:26:29 +00002764 listitem_T *ri;
2765 dictitem_T *di;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002766
2767 if (lp->ll_tv == NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002768 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002769 if (!check_changedtick(lp->ll_name))
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002770 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002771 cc = *endp;
2772 *endp = NUL;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002773 if (op != NULL && *op != '=')
2774 {
Bram Moolenaar33570922005-01-25 22:26:29 +00002775 typval_T tv;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002776
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00002777 /* handle +=, -= and .= */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002778 if (get_var_tv(lp->ll_name, (int)STRLEN(lp->ll_name),
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002779 &tv, TRUE) == OK)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002780 {
2781 if (tv_op(&tv, rettv, op) == OK)
2782 set_var(lp->ll_name, &tv, FALSE);
2783 clear_tv(&tv);
2784 }
2785 }
2786 else
2787 set_var(lp->ll_name, rettv, copy);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002788 *endp = cc;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002789 }
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002790 }
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00002791 else if (tv_check_lock(lp->ll_newkey == NULL
2792 ? lp->ll_tv->v_lock
2793 : lp->ll_tv->vval.v_dict->dv_lock, lp->ll_name))
2794 ;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002795 else if (lp->ll_range)
2796 {
2797 /*
2798 * Assign the List values to the list items.
2799 */
2800 for (ri = rettv->vval.v_list->lv_first; ri != NULL; )
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002801 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002802 if (op != NULL && *op != '=')
2803 tv_op(&lp->ll_li->li_tv, &ri->li_tv, op);
2804 else
2805 {
2806 clear_tv(&lp->ll_li->li_tv);
2807 copy_tv(&ri->li_tv, &lp->ll_li->li_tv);
2808 }
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002809 ri = ri->li_next;
2810 if (ri == NULL || (!lp->ll_empty2 && lp->ll_n2 == lp->ll_n1))
2811 break;
2812 if (lp->ll_li->li_next == NULL)
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002813 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002814 /* Need to add an empty item. */
Bram Moolenaar4463f292005-09-25 22:20:24 +00002815 if (list_append_number(lp->ll_list, 0) == FAIL)
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002816 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002817 ri = NULL;
2818 break;
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002819 }
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002820 }
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002821 lp->ll_li = lp->ll_li->li_next;
2822 ++lp->ll_n1;
2823 }
2824 if (ri != NULL)
2825 EMSG(_("E710: List value has more items than target"));
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002826 else if (lp->ll_empty2
2827 ? (lp->ll_li != NULL && lp->ll_li->li_next != NULL)
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002828 : lp->ll_n1 != lp->ll_n2)
2829 EMSG(_("E711: List value has not enough items"));
2830 }
2831 else
2832 {
2833 /*
2834 * Assign to a List or Dictionary item.
2835 */
2836 if (lp->ll_newkey != NULL)
2837 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002838 if (op != NULL && *op != '=')
2839 {
2840 EMSG2(_(e_letwrong), op);
2841 return;
2842 }
2843
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002844 /* Need to add an item to the Dictionary. */
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00002845 di = dictitem_alloc(lp->ll_newkey);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002846 if (di == NULL)
2847 return;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00002848 if (dict_add(lp->ll_tv->vval.v_dict, di) == FAIL)
2849 {
2850 vim_free(di);
2851 return;
2852 }
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002853 lp->ll_tv = &di->di_tv;
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002854 }
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002855 else if (op != NULL && *op != '=')
2856 {
2857 tv_op(lp->ll_tv, rettv, op);
2858 return;
2859 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002860 else
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002861 clear_tv(lp->ll_tv);
Bram Moolenaar8c711452005-01-14 21:53:12 +00002862
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002863 /*
2864 * Assign the value to the variable or list item.
2865 */
2866 if (copy)
2867 copy_tv(rettv, lp->ll_tv);
2868 else
2869 {
2870 *lp->ll_tv = *rettv;
Bram Moolenaar758711c2005-02-02 23:11:38 +00002871 lp->ll_tv->v_lock = 0;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002872 init_tv(rettv);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002873 }
2874 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002875}
2876
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00002877/*
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002878 * Handle "tv1 += tv2", "tv1 -= tv2" and "tv1 .= tv2"
2879 * Returns OK or FAIL.
2880 */
2881 static int
2882tv_op(tv1, tv2, op)
Bram Moolenaar33570922005-01-25 22:26:29 +00002883 typval_T *tv1;
2884 typval_T *tv2;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002885 char_u *op;
2886{
2887 long n;
2888 char_u numbuf[NUMBUFLEN];
2889 char_u *s;
2890
2891 /* Can't do anything with a Funcref or a Dict on the right. */
2892 if (tv2->v_type != VAR_FUNC && tv2->v_type != VAR_DICT)
2893 {
2894 switch (tv1->v_type)
2895 {
2896 case VAR_DICT:
2897 case VAR_FUNC:
2898 break;
2899
2900 case VAR_LIST:
2901 if (*op != '+' || tv2->v_type != VAR_LIST)
2902 break;
2903 /* List += List */
2904 if (tv1->vval.v_list != NULL && tv2->vval.v_list != NULL)
2905 list_extend(tv1->vval.v_list, tv2->vval.v_list, NULL);
2906 return OK;
2907
2908 case VAR_NUMBER:
2909 case VAR_STRING:
2910 if (tv2->v_type == VAR_LIST)
2911 break;
2912 if (*op == '+' || *op == '-')
2913 {
2914 /* nr += nr or nr -= nr*/
2915 n = get_tv_number(tv1);
Bram Moolenaar8c8de832008-06-24 22:58:06 +00002916#ifdef FEAT_FLOAT
2917 if (tv2->v_type == VAR_FLOAT)
2918 {
2919 float_T f = n;
2920
2921 if (*op == '+')
2922 f += tv2->vval.v_float;
2923 else
2924 f -= tv2->vval.v_float;
2925 clear_tv(tv1);
2926 tv1->v_type = VAR_FLOAT;
2927 tv1->vval.v_float = f;
2928 }
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002929 else
Bram Moolenaar8c8de832008-06-24 22:58:06 +00002930#endif
2931 {
2932 if (*op == '+')
2933 n += get_tv_number(tv2);
2934 else
2935 n -= get_tv_number(tv2);
2936 clear_tv(tv1);
2937 tv1->v_type = VAR_NUMBER;
2938 tv1->vval.v_number = n;
2939 }
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002940 }
2941 else
2942 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00002943 if (tv2->v_type == VAR_FLOAT)
2944 break;
2945
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002946 /* str .= str */
2947 s = get_tv_string(tv1);
2948 s = concat_str(s, get_tv_string_buf(tv2, numbuf));
2949 clear_tv(tv1);
2950 tv1->v_type = VAR_STRING;
2951 tv1->vval.v_string = s;
2952 }
2953 return OK;
Bram Moolenaar8c8de832008-06-24 22:58:06 +00002954
2955#ifdef FEAT_FLOAT
2956 case VAR_FLOAT:
2957 {
2958 float_T f;
2959
2960 if (*op == '.' || (tv2->v_type != VAR_FLOAT
2961 && tv2->v_type != VAR_NUMBER
2962 && tv2->v_type != VAR_STRING))
2963 break;
2964 if (tv2->v_type == VAR_FLOAT)
2965 f = tv2->vval.v_float;
2966 else
2967 f = get_tv_number(tv2);
2968 if (*op == '+')
2969 tv1->vval.v_float += f;
2970 else
2971 tv1->vval.v_float -= f;
2972 }
2973 return OK;
2974#endif
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002975 }
2976 }
2977
2978 EMSG2(_(e_letwrong), op);
2979 return FAIL;
2980}
2981
2982/*
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00002983 * Add a watcher to a list.
2984 */
2985 static void
2986list_add_watch(l, lw)
Bram Moolenaar33570922005-01-25 22:26:29 +00002987 list_T *l;
2988 listwatch_T *lw;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00002989{
2990 lw->lw_next = l->lv_watch;
2991 l->lv_watch = lw;
2992}
2993
2994/*
Bram Moolenaar758711c2005-02-02 23:11:38 +00002995 * Remove a watcher from a list.
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00002996 * No warning when it isn't found...
2997 */
2998 static void
2999list_rem_watch(l, lwrem)
Bram Moolenaar33570922005-01-25 22:26:29 +00003000 list_T *l;
3001 listwatch_T *lwrem;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003002{
Bram Moolenaar33570922005-01-25 22:26:29 +00003003 listwatch_T *lw, **lwp;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003004
3005 lwp = &l->lv_watch;
3006 for (lw = l->lv_watch; lw != NULL; lw = lw->lw_next)
3007 {
3008 if (lw == lwrem)
3009 {
3010 *lwp = lw->lw_next;
3011 break;
3012 }
3013 lwp = &lw->lw_next;
3014 }
3015}
3016
3017/*
3018 * Just before removing an item from a list: advance watchers to the next
3019 * item.
3020 */
3021 static void
3022list_fix_watch(l, item)
Bram Moolenaar33570922005-01-25 22:26:29 +00003023 list_T *l;
3024 listitem_T *item;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003025{
Bram Moolenaar33570922005-01-25 22:26:29 +00003026 listwatch_T *lw;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003027
3028 for (lw = l->lv_watch; lw != NULL; lw = lw->lw_next)
3029 if (lw->lw_item == item)
3030 lw->lw_item = item->li_next;
3031}
3032
3033/*
3034 * Evaluate the expression used in a ":for var in expr" command.
3035 * "arg" points to "var".
3036 * Set "*errp" to TRUE for an error, FALSE otherwise;
3037 * Return a pointer that holds the info. Null when there is an error.
3038 */
3039 void *
3040eval_for_line(arg, errp, nextcmdp, skip)
3041 char_u *arg;
3042 int *errp;
3043 char_u **nextcmdp;
3044 int skip;
3045{
Bram Moolenaar33570922005-01-25 22:26:29 +00003046 forinfo_T *fi;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003047 char_u *expr;
Bram Moolenaar33570922005-01-25 22:26:29 +00003048 typval_T tv;
3049 list_T *l;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003050
3051 *errp = TRUE; /* default: there is an error */
3052
Bram Moolenaar33570922005-01-25 22:26:29 +00003053 fi = (forinfo_T *)alloc_clear(sizeof(forinfo_T));
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003054 if (fi == NULL)
3055 return NULL;
3056
3057 expr = skip_var_list(arg, &fi->fi_varcount, &fi->fi_semicolon);
3058 if (expr == NULL)
3059 return fi;
3060
3061 expr = skipwhite(expr);
3062 if (expr[0] != 'i' || expr[1] != 'n' || !vim_iswhite(expr[2]))
3063 {
Bram Moolenaare49b69a2005-01-08 16:11:57 +00003064 EMSG(_("E690: Missing \"in\" after :for"));
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003065 return fi;
3066 }
3067
3068 if (skip)
3069 ++emsg_skip;
3070 if (eval0(skipwhite(expr + 2), &tv, nextcmdp, !skip) == OK)
3071 {
3072 *errp = FALSE;
3073 if (!skip)
3074 {
3075 l = tv.vval.v_list;
3076 if (tv.v_type != VAR_LIST || l == NULL)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003077 {
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003078 EMSG(_(e_listreq));
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003079 clear_tv(&tv);
3080 }
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003081 else
3082 {
Bram Moolenaar7bb4c6e2005-09-07 21:22:27 +00003083 /* No need to increment the refcount, it's already set for the
3084 * list being used in "tv". */
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003085 fi->fi_list = l;
3086 list_add_watch(l, &fi->fi_lw);
3087 fi->fi_lw.lw_item = l->lv_first;
3088 }
3089 }
3090 }
3091 if (skip)
3092 --emsg_skip;
3093
3094 return fi;
3095}
3096
3097/*
3098 * Use the first item in a ":for" list. Advance to the next.
3099 * Assign the values to the variable (list). "arg" points to the first one.
3100 * Return TRUE when a valid item was found, FALSE when at end of list or
3101 * something wrong.
3102 */
3103 int
3104next_for_item(fi_void, arg)
3105 void *fi_void;
3106 char_u *arg;
3107{
Bram Moolenaar33570922005-01-25 22:26:29 +00003108 forinfo_T *fi = (forinfo_T *)fi_void;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003109 int result;
Bram Moolenaar33570922005-01-25 22:26:29 +00003110 listitem_T *item;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003111
3112 item = fi->fi_lw.lw_item;
3113 if (item == NULL)
3114 result = FALSE;
3115 else
3116 {
3117 fi->fi_lw.lw_item = item->li_next;
3118 result = (ex_let_vars(arg, &item->li_tv, TRUE,
3119 fi->fi_semicolon, fi->fi_varcount, NULL) == OK);
3120 }
3121 return result;
3122}
3123
3124/*
3125 * Free the structure used to store info used by ":for".
3126 */
3127 void
3128free_for_info(fi_void)
3129 void *fi_void;
3130{
Bram Moolenaar33570922005-01-25 22:26:29 +00003131 forinfo_T *fi = (forinfo_T *)fi_void;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003132
Bram Moolenaarab7013c2005-01-09 21:23:56 +00003133 if (fi != NULL && fi->fi_list != NULL)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003134 {
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003135 list_rem_watch(fi->fi_list, &fi->fi_lw);
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003136 list_unref(fi->fi_list);
3137 }
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003138 vim_free(fi);
3139}
3140
Bram Moolenaar071d4272004-06-13 20:20:40 +00003141#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
3142
3143 void
3144set_context_for_expression(xp, arg, cmdidx)
3145 expand_T *xp;
3146 char_u *arg;
3147 cmdidx_T cmdidx;
3148{
3149 int got_eq = FALSE;
3150 int c;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003151 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003152
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003153 if (cmdidx == CMD_let)
3154 {
3155 xp->xp_context = EXPAND_USER_VARS;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00003156 if (vim_strpbrk(arg, (char_u *)"\"'+-*/%.=!?~|&$([<>,#") == NULL)
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003157 {
3158 /* ":let var1 var2 ...": find last space. */
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00003159 for (p = arg + STRLEN(arg); p >= arg; )
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003160 {
3161 xp->xp_pattern = p;
Bram Moolenaar33570922005-01-25 22:26:29 +00003162 mb_ptr_back(arg, p);
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003163 if (vim_iswhite(*p))
3164 break;
3165 }
3166 return;
3167 }
3168 }
3169 else
3170 xp->xp_context = cmdidx == CMD_call ? EXPAND_FUNCTIONS
3171 : EXPAND_EXPRESSION;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003172 while ((xp->xp_pattern = vim_strpbrk(arg,
3173 (char_u *)"\"'+-*/%.=!?~|&$([<>,#")) != NULL)
3174 {
3175 c = *xp->xp_pattern;
3176 if (c == '&')
3177 {
3178 c = xp->xp_pattern[1];
3179 if (c == '&')
3180 {
3181 ++xp->xp_pattern;
3182 xp->xp_context = cmdidx != CMD_let || got_eq
3183 ? EXPAND_EXPRESSION : EXPAND_NOTHING;
3184 }
3185 else if (c != ' ')
Bram Moolenaar11cbeb12005-03-11 22:51:16 +00003186 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003187 xp->xp_context = EXPAND_SETTINGS;
Bram Moolenaar11cbeb12005-03-11 22:51:16 +00003188 if ((c == 'l' || c == 'g') && xp->xp_pattern[2] == ':')
3189 xp->xp_pattern += 2;
3190
3191 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003192 }
3193 else if (c == '$')
3194 {
3195 /* environment variable */
3196 xp->xp_context = EXPAND_ENV_VARS;
3197 }
3198 else if (c == '=')
3199 {
3200 got_eq = TRUE;
3201 xp->xp_context = EXPAND_EXPRESSION;
3202 }
3203 else if (c == '<'
3204 && xp->xp_context == EXPAND_FUNCTIONS
3205 && vim_strchr(xp->xp_pattern, '(') == NULL)
3206 {
3207 /* Function name can start with "<SNR>" */
3208 break;
3209 }
3210 else if (cmdidx != CMD_let || got_eq)
3211 {
3212 if (c == '"') /* string */
3213 {
3214 while ((c = *++xp->xp_pattern) != NUL && c != '"')
3215 if (c == '\\' && xp->xp_pattern[1] != NUL)
3216 ++xp->xp_pattern;
3217 xp->xp_context = EXPAND_NOTHING;
3218 }
3219 else if (c == '\'') /* literal string */
3220 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00003221 /* Trick: '' is like stopping and starting a literal string. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003222 while ((c = *++xp->xp_pattern) != NUL && c != '\'')
3223 /* skip */ ;
3224 xp->xp_context = EXPAND_NOTHING;
3225 }
3226 else if (c == '|')
3227 {
3228 if (xp->xp_pattern[1] == '|')
3229 {
3230 ++xp->xp_pattern;
3231 xp->xp_context = EXPAND_EXPRESSION;
3232 }
3233 else
3234 xp->xp_context = EXPAND_COMMANDS;
3235 }
3236 else
3237 xp->xp_context = EXPAND_EXPRESSION;
3238 }
3239 else
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003240 /* Doesn't look like something valid, expand as an expression
3241 * anyway. */
3242 xp->xp_context = EXPAND_EXPRESSION;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003243 arg = xp->xp_pattern;
3244 if (*arg != NUL)
3245 while ((c = *++arg) != NUL && (c == ' ' || c == '\t'))
3246 /* skip */ ;
3247 }
3248 xp->xp_pattern = arg;
3249}
3250
3251#endif /* FEAT_CMDL_COMPL */
3252
3253/*
3254 * ":1,25call func(arg1, arg2)" function call.
3255 */
3256 void
3257ex_call(eap)
3258 exarg_T *eap;
3259{
3260 char_u *arg = eap->arg;
3261 char_u *startarg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003262 char_u *name;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00003263 char_u *tofree;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003264 int len;
Bram Moolenaar33570922005-01-25 22:26:29 +00003265 typval_T rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003266 linenr_T lnum;
3267 int doesrange;
3268 int failed = FALSE;
Bram Moolenaar33570922005-01-25 22:26:29 +00003269 funcdict_T fudi;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003270
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00003271 tofree = trans_function_name(&arg, eap->skip, TFN_INT, &fudi);
Bram Moolenaara2a31752006-10-24 11:49:25 +00003272 if (fudi.fd_newkey != NULL)
3273 {
3274 /* Still need to give an error message for missing key. */
3275 EMSG2(_(e_dictkey), fudi.fd_newkey);
3276 vim_free(fudi.fd_newkey);
3277 }
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00003278 if (tofree == NULL)
3279 return;
3280
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00003281 /* Increase refcount on dictionary, it could get deleted when evaluating
3282 * the arguments. */
3283 if (fudi.fd_dict != NULL)
3284 ++fudi.fd_dict->dv_refcount;
3285
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00003286 /* If it is the name of a variable of type VAR_FUNC use its contents. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003287 len = (int)STRLEN(tofree);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00003288 name = deref_func_name(tofree, &len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003289
Bram Moolenaar532c7802005-01-27 14:44:31 +00003290 /* Skip white space to allow ":call func ()". Not good, but required for
3291 * backward compatibility. */
3292 startarg = skipwhite(arg);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003293 rettv.v_type = VAR_UNKNOWN; /* clear_tv() uses this */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003294
3295 if (*startarg != '(')
3296 {
Bram Moolenaar8dd9ac52008-11-06 10:05:42 +00003297 EMSG2(_("E107: Missing parentheses: %s"), eap->arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003298 goto end;
3299 }
3300
3301 /*
3302 * When skipping, evaluate the function once, to find the end of the
3303 * arguments.
3304 * When the function takes a range, this is discovered after the first
3305 * call, and the loop is broken.
3306 */
3307 if (eap->skip)
3308 {
3309 ++emsg_skip;
3310 lnum = eap->line2; /* do it once, also with an invalid range */
3311 }
3312 else
3313 lnum = eap->line1;
3314 for ( ; lnum <= eap->line2; ++lnum)
3315 {
3316 if (!eap->skip && eap->addr_count > 0)
3317 {
3318 curwin->w_cursor.lnum = lnum;
3319 curwin->w_cursor.col = 0;
3320 }
3321 arg = startarg;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003322 if (get_func_tv(name, (int)STRLEN(name), &rettv, &arg,
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00003323 eap->line1, eap->line2, &doesrange,
3324 !eap->skip, fudi.fd_dict) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003325 {
3326 failed = TRUE;
3327 break;
3328 }
Bram Moolenaarf2789872006-11-28 19:54:04 +00003329
3330 /* Handle a function returning a Funcref, Dictionary or List. */
3331 if (handle_subscript(&arg, &rettv, !eap->skip, TRUE) == FAIL)
3332 {
3333 failed = TRUE;
3334 break;
3335 }
3336
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003337 clear_tv(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003338 if (doesrange || eap->skip)
3339 break;
Bram Moolenaarf2789872006-11-28 19:54:04 +00003340
Bram Moolenaar071d4272004-06-13 20:20:40 +00003341 /* Stop when immediately aborting on error, or when an interrupt
Bram Moolenaar49cd9572005-01-03 21:06:01 +00003342 * occurred or an exception was thrown but not caught.
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003343 * get_func_tv() returned OK, so that the check for trailing
Bram Moolenaar49cd9572005-01-03 21:06:01 +00003344 * characters below is executed. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003345 if (aborting())
3346 break;
3347 }
3348 if (eap->skip)
3349 --emsg_skip;
3350
3351 if (!failed)
3352 {
3353 /* Check for trailing illegal characters and a following command. */
3354 if (!ends_excmd(*arg))
3355 {
3356 emsg_severe = TRUE;
3357 EMSG(_(e_trailing));
3358 }
3359 else
3360 eap->nextcmd = check_nextcmd(arg);
3361 }
3362
3363end:
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00003364 dict_unref(fudi.fd_dict);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00003365 vim_free(tofree);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003366}
3367
3368/*
3369 * ":unlet[!] var1 ... " command.
3370 */
3371 void
3372ex_unlet(eap)
3373 exarg_T *eap;
3374{
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003375 ex_unletlock(eap, eap->arg, 0);
3376}
3377
3378/*
3379 * ":lockvar" and ":unlockvar" commands
3380 */
3381 void
3382ex_lockvar(eap)
3383 exarg_T *eap;
3384{
Bram Moolenaar071d4272004-06-13 20:20:40 +00003385 char_u *arg = eap->arg;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003386 int deep = 2;
3387
3388 if (eap->forceit)
3389 deep = -1;
3390 else if (vim_isdigit(*arg))
3391 {
3392 deep = getdigits(&arg);
3393 arg = skipwhite(arg);
3394 }
3395
3396 ex_unletlock(eap, arg, deep);
3397}
3398
3399/*
3400 * ":unlet", ":lockvar" and ":unlockvar" are quite similar.
3401 */
3402 static void
3403ex_unletlock(eap, argstart, deep)
3404 exarg_T *eap;
3405 char_u *argstart;
3406 int deep;
3407{
3408 char_u *arg = argstart;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003409 char_u *name_end;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003410 int error = FALSE;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003411 lval_T lv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003412
3413 do
3414 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003415 /* Parse the name and find the end. */
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +00003416 name_end = get_lval(arg, NULL, &lv, TRUE, eap->skip || error, FALSE,
3417 FNE_CHECK_START);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003418 if (lv.ll_name == NULL)
3419 error = TRUE; /* error but continue parsing */
3420 if (name_end == NULL || (!vim_iswhite(*name_end)
3421 && !ends_excmd(*name_end)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003422 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003423 if (name_end != NULL)
3424 {
3425 emsg_severe = TRUE;
3426 EMSG(_(e_trailing));
3427 }
3428 if (!(eap->skip || error))
3429 clear_lval(&lv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003430 break;
3431 }
3432
3433 if (!error && !eap->skip)
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003434 {
3435 if (eap->cmdidx == CMD_unlet)
3436 {
3437 if (do_unlet_var(&lv, name_end, eap->forceit) == FAIL)
3438 error = TRUE;
3439 }
3440 else
3441 {
3442 if (do_lock_var(&lv, name_end, deep,
3443 eap->cmdidx == CMD_lockvar) == FAIL)
3444 error = TRUE;
3445 }
3446 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003447
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003448 if (!eap->skip)
3449 clear_lval(&lv);
3450
Bram Moolenaar071d4272004-06-13 20:20:40 +00003451 arg = skipwhite(name_end);
3452 } while (!ends_excmd(*arg));
3453
3454 eap->nextcmd = check_nextcmd(arg);
3455}
3456
Bram Moolenaar8c711452005-01-14 21:53:12 +00003457 static int
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003458do_unlet_var(lp, name_end, forceit)
Bram Moolenaar33570922005-01-25 22:26:29 +00003459 lval_T *lp;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003460 char_u *name_end;
Bram Moolenaar8c711452005-01-14 21:53:12 +00003461 int forceit;
3462{
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003463 int ret = OK;
3464 int cc;
3465
3466 if (lp->ll_tv == NULL)
Bram Moolenaar8c711452005-01-14 21:53:12 +00003467 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003468 cc = *name_end;
3469 *name_end = NUL;
3470
3471 /* Normal name or expanded name. */
3472 if (check_changedtick(lp->ll_name))
3473 ret = FAIL;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003474 else if (do_unlet(lp->ll_name, forceit) == FAIL)
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003475 ret = FAIL;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003476 *name_end = cc;
Bram Moolenaar8c711452005-01-14 21:53:12 +00003477 }
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003478 else if (tv_check_lock(lp->ll_tv->v_lock, lp->ll_name))
3479 return FAIL;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003480 else if (lp->ll_range)
3481 {
Bram Moolenaar33570922005-01-25 22:26:29 +00003482 listitem_T *li;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003483
3484 /* Delete a range of List items. */
3485 while (lp->ll_li != NULL && (lp->ll_empty2 || lp->ll_n2 >= lp->ll_n1))
3486 {
3487 li = lp->ll_li->li_next;
3488 listitem_remove(lp->ll_list, lp->ll_li);
3489 lp->ll_li = li;
3490 ++lp->ll_n1;
3491 }
3492 }
3493 else
3494 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003495 if (lp->ll_list != NULL)
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003496 /* unlet a List item. */
3497 listitem_remove(lp->ll_list, lp->ll_li);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003498 else
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003499 /* unlet a Dictionary item. */
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00003500 dictitem_remove(lp->ll_dict, lp->ll_di);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003501 }
3502
3503 return ret;
Bram Moolenaar8c711452005-01-14 21:53:12 +00003504}
3505
Bram Moolenaar071d4272004-06-13 20:20:40 +00003506/*
3507 * "unlet" a variable. Return OK if it existed, FAIL if not.
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003508 * When "forceit" is TRUE don't complain if the variable doesn't exist.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003509 */
3510 int
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003511do_unlet(name, forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003512 char_u *name;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003513 int forceit;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003514{
Bram Moolenaar33570922005-01-25 22:26:29 +00003515 hashtab_T *ht;
3516 hashitem_T *hi;
Bram Moolenaara7043832005-01-21 11:56:39 +00003517 char_u *varname;
Bram Moolenaarafbdeb82008-01-05 21:16:31 +00003518 dictitem_T *di;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003519
Bram Moolenaar33570922005-01-25 22:26:29 +00003520 ht = find_var_ht(name, &varname);
3521 if (ht != NULL && *varname != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003522 {
Bram Moolenaar33570922005-01-25 22:26:29 +00003523 hi = hash_find(ht, varname);
3524 if (!HASHITEM_EMPTY(hi))
Bram Moolenaara7043832005-01-21 11:56:39 +00003525 {
Bram Moolenaarafbdeb82008-01-05 21:16:31 +00003526 di = HI2DI(hi);
3527 if (var_check_fixed(di->di_flags, name)
3528 || var_check_ro(di->di_flags, name))
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003529 return FAIL;
3530 delete_var(ht, hi);
3531 return OK;
Bram Moolenaara7043832005-01-21 11:56:39 +00003532 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003533 }
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003534 if (forceit)
3535 return OK;
3536 EMSG2(_("E108: No such variable: \"%s\""), name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003537 return FAIL;
3538}
3539
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003540/*
3541 * Lock or unlock variable indicated by "lp".
3542 * "deep" is the levels to go (-1 for unlimited);
3543 * "lock" is TRUE for ":lockvar", FALSE for ":unlockvar".
3544 */
3545 static int
3546do_lock_var(lp, name_end, deep, lock)
3547 lval_T *lp;
3548 char_u *name_end;
3549 int deep;
3550 int lock;
3551{
3552 int ret = OK;
3553 int cc;
3554 dictitem_T *di;
3555
3556 if (deep == 0) /* nothing to do */
3557 return OK;
3558
3559 if (lp->ll_tv == NULL)
3560 {
3561 cc = *name_end;
3562 *name_end = NUL;
3563
3564 /* Normal name or expanded name. */
3565 if (check_changedtick(lp->ll_name))
3566 ret = FAIL;
3567 else
3568 {
3569 di = find_var(lp->ll_name, NULL);
3570 if (di == NULL)
3571 ret = FAIL;
3572 else
3573 {
3574 if (lock)
3575 di->di_flags |= DI_FLAGS_LOCK;
3576 else
3577 di->di_flags &= ~DI_FLAGS_LOCK;
3578 item_lock(&di->di_tv, deep, lock);
3579 }
3580 }
3581 *name_end = cc;
3582 }
3583 else if (lp->ll_range)
3584 {
3585 listitem_T *li = lp->ll_li;
3586
3587 /* (un)lock a range of List items. */
3588 while (li != NULL && (lp->ll_empty2 || lp->ll_n2 >= lp->ll_n1))
3589 {
3590 item_lock(&li->li_tv, deep, lock);
3591 li = li->li_next;
3592 ++lp->ll_n1;
3593 }
3594 }
3595 else if (lp->ll_list != NULL)
3596 /* (un)lock a List item. */
3597 item_lock(&lp->ll_li->li_tv, deep, lock);
3598 else
3599 /* un(lock) a Dictionary item. */
3600 item_lock(&lp->ll_di->di_tv, deep, lock);
3601
3602 return ret;
3603}
3604
3605/*
3606 * Lock or unlock an item. "deep" is nr of levels to go.
3607 */
3608 static void
3609item_lock(tv, deep, lock)
3610 typval_T *tv;
3611 int deep;
3612 int lock;
3613{
3614 static int recurse = 0;
3615 list_T *l;
3616 listitem_T *li;
3617 dict_T *d;
3618 hashitem_T *hi;
3619 int todo;
3620
3621 if (recurse >= DICT_MAXNEST)
3622 {
3623 EMSG(_("E743: variable nested too deep for (un)lock"));
3624 return;
3625 }
3626 if (deep == 0)
3627 return;
3628 ++recurse;
3629
3630 /* lock/unlock the item itself */
3631 if (lock)
3632 tv->v_lock |= VAR_LOCKED;
3633 else
3634 tv->v_lock &= ~VAR_LOCKED;
3635
3636 switch (tv->v_type)
3637 {
3638 case VAR_LIST:
3639 if ((l = tv->vval.v_list) != NULL)
3640 {
3641 if (lock)
3642 l->lv_lock |= VAR_LOCKED;
3643 else
3644 l->lv_lock &= ~VAR_LOCKED;
3645 if (deep < 0 || deep > 1)
3646 /* recursive: lock/unlock the items the List contains */
3647 for (li = l->lv_first; li != NULL; li = li->li_next)
3648 item_lock(&li->li_tv, deep - 1, lock);
3649 }
3650 break;
3651 case VAR_DICT:
3652 if ((d = tv->vval.v_dict) != NULL)
3653 {
3654 if (lock)
3655 d->dv_lock |= VAR_LOCKED;
3656 else
3657 d->dv_lock &= ~VAR_LOCKED;
3658 if (deep < 0 || deep > 1)
3659 {
3660 /* recursive: lock/unlock the items the List contains */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003661 todo = (int)d->dv_hashtab.ht_used;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003662 for (hi = d->dv_hashtab.ht_array; todo > 0; ++hi)
3663 {
3664 if (!HASHITEM_EMPTY(hi))
3665 {
3666 --todo;
3667 item_lock(&HI2DI(hi)->di_tv, deep - 1, lock);
3668 }
3669 }
3670 }
3671 }
3672 }
3673 --recurse;
3674}
3675
Bram Moolenaara40058a2005-07-11 22:42:07 +00003676/*
Bram Moolenaar61c4e2c2008-08-25 02:49:18 +00003677 * Return TRUE if typeval "tv" is locked: Either that value is locked itself
3678 * or it refers to a List or Dictionary that is locked.
Bram Moolenaara40058a2005-07-11 22:42:07 +00003679 */
3680 static int
3681tv_islocked(tv)
3682 typval_T *tv;
3683{
3684 return (tv->v_lock & VAR_LOCKED)
3685 || (tv->v_type == VAR_LIST
3686 && tv->vval.v_list != NULL
3687 && (tv->vval.v_list->lv_lock & VAR_LOCKED))
3688 || (tv->v_type == VAR_DICT
3689 && tv->vval.v_dict != NULL
3690 && (tv->vval.v_dict->dv_lock & VAR_LOCKED));
3691}
3692
Bram Moolenaar071d4272004-06-13 20:20:40 +00003693#if (defined(FEAT_MENU) && defined(FEAT_MULTI_LANG)) || defined(PROTO)
3694/*
3695 * Delete all "menutrans_" variables.
3696 */
3697 void
3698del_menutrans_vars()
3699{
Bram Moolenaar33570922005-01-25 22:26:29 +00003700 hashitem_T *hi;
Bram Moolenaara7043832005-01-21 11:56:39 +00003701 int todo;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003702
Bram Moolenaar33570922005-01-25 22:26:29 +00003703 hash_lock(&globvarht);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003704 todo = (int)globvarht.ht_used;
Bram Moolenaar33570922005-01-25 22:26:29 +00003705 for (hi = globvarht.ht_array; todo > 0 && !got_int; ++hi)
Bram Moolenaara7043832005-01-21 11:56:39 +00003706 {
3707 if (!HASHITEM_EMPTY(hi))
3708 {
3709 --todo;
Bram Moolenaar33570922005-01-25 22:26:29 +00003710 if (STRNCMP(HI2DI(hi)->di_key, "menutrans_", 10) == 0)
3711 delete_var(&globvarht, hi);
Bram Moolenaara7043832005-01-21 11:56:39 +00003712 }
3713 }
Bram Moolenaar33570922005-01-25 22:26:29 +00003714 hash_unlock(&globvarht);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003715}
3716#endif
3717
3718#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
3719
3720/*
3721 * Local string buffer for the next two functions to store a variable name
3722 * with its prefix. Allocated in cat_prefix_varname(), freed later in
3723 * get_user_var_name().
3724 */
3725
3726static char_u *cat_prefix_varname __ARGS((int prefix, char_u *name));
3727
3728static char_u *varnamebuf = NULL;
3729static int varnamebuflen = 0;
3730
3731/*
3732 * Function to concatenate a prefix and a variable name.
3733 */
3734 static char_u *
3735cat_prefix_varname(prefix, name)
3736 int prefix;
3737 char_u *name;
3738{
3739 int len;
3740
3741 len = (int)STRLEN(name) + 3;
3742 if (len > varnamebuflen)
3743 {
3744 vim_free(varnamebuf);
3745 len += 10; /* some additional space */
3746 varnamebuf = alloc(len);
3747 if (varnamebuf == NULL)
3748 {
3749 varnamebuflen = 0;
3750 return NULL;
3751 }
3752 varnamebuflen = len;
3753 }
3754 *varnamebuf = prefix;
3755 varnamebuf[1] = ':';
3756 STRCPY(varnamebuf + 2, name);
3757 return varnamebuf;
3758}
3759
3760/*
3761 * Function given to ExpandGeneric() to obtain the list of user defined
3762 * (global/buffer/window/built-in) variable names.
3763 */
3764/*ARGSUSED*/
3765 char_u *
3766get_user_var_name(xp, idx)
3767 expand_T *xp;
3768 int idx;
3769{
Bram Moolenaar532c7802005-01-27 14:44:31 +00003770 static long_u gdone;
3771 static long_u bdone;
3772 static long_u wdone;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003773#ifdef FEAT_WINDOWS
3774 static long_u tdone;
3775#endif
Bram Moolenaar532c7802005-01-27 14:44:31 +00003776 static int vidx;
3777 static hashitem_T *hi;
3778 hashtab_T *ht;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003779
3780 if (idx == 0)
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003781 {
Bram Moolenaara7043832005-01-21 11:56:39 +00003782 gdone = bdone = wdone = vidx = 0;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003783#ifdef FEAT_WINDOWS
3784 tdone = 0;
3785#endif
3786 }
Bram Moolenaar33570922005-01-25 22:26:29 +00003787
3788 /* Global variables */
3789 if (gdone < globvarht.ht_used)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003790 {
Bram Moolenaara7043832005-01-21 11:56:39 +00003791 if (gdone++ == 0)
Bram Moolenaar33570922005-01-25 22:26:29 +00003792 hi = globvarht.ht_array;
Bram Moolenaar532c7802005-01-27 14:44:31 +00003793 else
3794 ++hi;
Bram Moolenaara7043832005-01-21 11:56:39 +00003795 while (HASHITEM_EMPTY(hi))
3796 ++hi;
3797 if (STRNCMP("g:", xp->xp_pattern, 2) == 0)
3798 return cat_prefix_varname('g', hi->hi_key);
3799 return hi->hi_key;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003800 }
Bram Moolenaar33570922005-01-25 22:26:29 +00003801
3802 /* b: variables */
3803 ht = &curbuf->b_vars.dv_hashtab;
3804 if (bdone < ht->ht_used)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003805 {
Bram Moolenaara7043832005-01-21 11:56:39 +00003806 if (bdone++ == 0)
Bram Moolenaar33570922005-01-25 22:26:29 +00003807 hi = ht->ht_array;
Bram Moolenaar532c7802005-01-27 14:44:31 +00003808 else
3809 ++hi;
Bram Moolenaara7043832005-01-21 11:56:39 +00003810 while (HASHITEM_EMPTY(hi))
3811 ++hi;
3812 return cat_prefix_varname('b', hi->hi_key);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003813 }
Bram Moolenaar33570922005-01-25 22:26:29 +00003814 if (bdone == ht->ht_used)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003815 {
Bram Moolenaara7043832005-01-21 11:56:39 +00003816 ++bdone;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003817 return (char_u *)"b:changedtick";
3818 }
Bram Moolenaar33570922005-01-25 22:26:29 +00003819
3820 /* w: variables */
3821 ht = &curwin->w_vars.dv_hashtab;
3822 if (wdone < ht->ht_used)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003823 {
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +00003824 if (wdone++ == 0)
Bram Moolenaar33570922005-01-25 22:26:29 +00003825 hi = ht->ht_array;
Bram Moolenaar532c7802005-01-27 14:44:31 +00003826 else
3827 ++hi;
Bram Moolenaara7043832005-01-21 11:56:39 +00003828 while (HASHITEM_EMPTY(hi))
3829 ++hi;
3830 return cat_prefix_varname('w', hi->hi_key);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003831 }
Bram Moolenaar33570922005-01-25 22:26:29 +00003832
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003833#ifdef FEAT_WINDOWS
3834 /* t: variables */
3835 ht = &curtab->tp_vars.dv_hashtab;
3836 if (tdone < ht->ht_used)
3837 {
3838 if (tdone++ == 0)
3839 hi = ht->ht_array;
3840 else
3841 ++hi;
3842 while (HASHITEM_EMPTY(hi))
3843 ++hi;
3844 return cat_prefix_varname('t', hi->hi_key);
3845 }
3846#endif
3847
Bram Moolenaar33570922005-01-25 22:26:29 +00003848 /* v: variables */
3849 if (vidx < VV_LEN)
3850 return cat_prefix_varname('v', (char_u *)vimvars[vidx++].vv_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003851
3852 vim_free(varnamebuf);
3853 varnamebuf = NULL;
3854 varnamebuflen = 0;
3855 return NULL;
3856}
3857
3858#endif /* FEAT_CMDL_COMPL */
3859
3860/*
3861 * types for expressions.
3862 */
3863typedef enum
3864{
3865 TYPE_UNKNOWN = 0
3866 , TYPE_EQUAL /* == */
3867 , TYPE_NEQUAL /* != */
3868 , TYPE_GREATER /* > */
3869 , TYPE_GEQUAL /* >= */
3870 , TYPE_SMALLER /* < */
3871 , TYPE_SEQUAL /* <= */
3872 , TYPE_MATCH /* =~ */
3873 , TYPE_NOMATCH /* !~ */
3874} exptype_T;
3875
3876/*
3877 * The "evaluate" argument: When FALSE, the argument is only parsed but not
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003878 * executed. The function may return OK, but the rettv will be of type
Bram Moolenaar071d4272004-06-13 20:20:40 +00003879 * VAR_UNKNOWN. The function still returns FAIL for a syntax error.
3880 */
3881
3882/*
3883 * Handle zero level expression.
3884 * This calls eval1() and handles error message and nextcmd.
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003885 * Put the result in "rettv" when returning OK and "evaluate" is TRUE.
Bram Moolenaar4463f292005-09-25 22:20:24 +00003886 * Note: "rettv.v_lock" is not set.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003887 * Return OK or FAIL.
3888 */
3889 static int
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003890eval0(arg, rettv, nextcmd, evaluate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003891 char_u *arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00003892 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003893 char_u **nextcmd;
3894 int evaluate;
3895{
3896 int ret;
3897 char_u *p;
3898
3899 p = skipwhite(arg);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003900 ret = eval1(&p, rettv, evaluate);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003901 if (ret == FAIL || !ends_excmd(*p))
3902 {
3903 if (ret != FAIL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003904 clear_tv(rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003905 /*
3906 * Report the invalid expression unless the expression evaluation has
3907 * been cancelled due to an aborting error, an interrupt, or an
3908 * exception.
3909 */
3910 if (!aborting())
3911 EMSG2(_(e_invexpr2), arg);
3912 ret = FAIL;
3913 }
3914 if (nextcmd != NULL)
3915 *nextcmd = check_nextcmd(p);
3916
3917 return ret;
3918}
3919
3920/*
3921 * Handle top level expression:
3922 * expr1 ? expr0 : expr0
3923 *
3924 * "arg" must point to the first non-white of the expression.
3925 * "arg" is advanced to the next non-white after the recognized expression.
3926 *
Bram Moolenaar4463f292005-09-25 22:20:24 +00003927 * Note: "rettv.v_lock" is not set.
3928 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00003929 * Return OK or FAIL.
3930 */
3931 static int
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003932eval1(arg, rettv, evaluate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003933 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00003934 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003935 int evaluate;
3936{
3937 int result;
Bram Moolenaar33570922005-01-25 22:26:29 +00003938 typval_T var2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003939
3940 /*
3941 * Get the first variable.
3942 */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003943 if (eval2(arg, rettv, evaluate) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003944 return FAIL;
3945
3946 if ((*arg)[0] == '?')
3947 {
3948 result = FALSE;
3949 if (evaluate)
3950 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003951 int error = FALSE;
3952
3953 if (get_tv_number_chk(rettv, &error) != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003954 result = TRUE;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003955 clear_tv(rettv);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003956 if (error)
3957 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003958 }
3959
3960 /*
3961 * Get the second variable.
3962 */
3963 *arg = skipwhite(*arg + 1);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003964 if (eval1(arg, rettv, evaluate && result) == FAIL) /* recursive! */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003965 return FAIL;
3966
3967 /*
3968 * Check for the ":".
3969 */
3970 if ((*arg)[0] != ':')
3971 {
3972 EMSG(_("E109: Missing ':' after '?'"));
3973 if (evaluate && result)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003974 clear_tv(rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003975 return FAIL;
3976 }
3977
3978 /*
3979 * Get the third variable.
3980 */
3981 *arg = skipwhite(*arg + 1);
3982 if (eval1(arg, &var2, evaluate && !result) == FAIL) /* recursive! */
3983 {
3984 if (evaluate && result)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003985 clear_tv(rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003986 return FAIL;
3987 }
3988 if (evaluate && !result)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003989 *rettv = var2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003990 }
3991
3992 return OK;
3993}
3994
3995/*
3996 * Handle first level expression:
3997 * expr2 || expr2 || expr2 logical OR
3998 *
3999 * "arg" must point to the first non-white of the expression.
4000 * "arg" is advanced to the next non-white after the recognized expression.
4001 *
4002 * Return OK or FAIL.
4003 */
4004 static int
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004005eval2(arg, rettv, evaluate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004006 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00004007 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004008 int evaluate;
4009{
Bram Moolenaar33570922005-01-25 22:26:29 +00004010 typval_T var2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004011 long result;
4012 int first;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004013 int error = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004014
4015 /*
4016 * Get the first variable.
4017 */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004018 if (eval3(arg, rettv, evaluate) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004019 return FAIL;
4020
4021 /*
4022 * Repeat until there is no following "||".
4023 */
4024 first = TRUE;
4025 result = FALSE;
4026 while ((*arg)[0] == '|' && (*arg)[1] == '|')
4027 {
4028 if (evaluate && first)
4029 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004030 if (get_tv_number_chk(rettv, &error) != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004031 result = TRUE;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004032 clear_tv(rettv);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004033 if (error)
4034 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004035 first = FALSE;
4036 }
4037
4038 /*
4039 * Get the second variable.
4040 */
4041 *arg = skipwhite(*arg + 2);
4042 if (eval3(arg, &var2, evaluate && !result) == FAIL)
4043 return FAIL;
4044
4045 /*
4046 * Compute the result.
4047 */
4048 if (evaluate && !result)
4049 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004050 if (get_tv_number_chk(&var2, &error) != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004051 result = TRUE;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004052 clear_tv(&var2);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004053 if (error)
4054 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004055 }
4056 if (evaluate)
4057 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004058 rettv->v_type = VAR_NUMBER;
4059 rettv->vval.v_number = result;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004060 }
4061 }
4062
4063 return OK;
4064}
4065
4066/*
4067 * Handle second level expression:
4068 * expr3 && expr3 && expr3 logical AND
4069 *
4070 * "arg" must point to the first non-white of the expression.
4071 * "arg" is advanced to the next non-white after the recognized expression.
4072 *
4073 * Return OK or FAIL.
4074 */
4075 static int
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004076eval3(arg, rettv, evaluate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004077 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00004078 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004079 int evaluate;
4080{
Bram Moolenaar33570922005-01-25 22:26:29 +00004081 typval_T var2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004082 long result;
4083 int first;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004084 int error = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004085
4086 /*
4087 * Get the first variable.
4088 */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004089 if (eval4(arg, rettv, evaluate) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004090 return FAIL;
4091
4092 /*
4093 * Repeat until there is no following "&&".
4094 */
4095 first = TRUE;
4096 result = TRUE;
4097 while ((*arg)[0] == '&' && (*arg)[1] == '&')
4098 {
4099 if (evaluate && first)
4100 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004101 if (get_tv_number_chk(rettv, &error) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004102 result = FALSE;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004103 clear_tv(rettv);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004104 if (error)
4105 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004106 first = FALSE;
4107 }
4108
4109 /*
4110 * Get the second variable.
4111 */
4112 *arg = skipwhite(*arg + 2);
4113 if (eval4(arg, &var2, evaluate && result) == FAIL)
4114 return FAIL;
4115
4116 /*
4117 * Compute the result.
4118 */
4119 if (evaluate && result)
4120 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004121 if (get_tv_number_chk(&var2, &error) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004122 result = FALSE;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004123 clear_tv(&var2);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004124 if (error)
4125 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004126 }
4127 if (evaluate)
4128 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004129 rettv->v_type = VAR_NUMBER;
4130 rettv->vval.v_number = result;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004131 }
4132 }
4133
4134 return OK;
4135}
4136
4137/*
4138 * Handle third level expression:
4139 * var1 == var2
4140 * var1 =~ var2
4141 * var1 != var2
4142 * var1 !~ var2
4143 * var1 > var2
4144 * var1 >= var2
4145 * var1 < var2
4146 * var1 <= var2
Bram Moolenaar8a283e52005-01-06 23:28:25 +00004147 * var1 is var2
4148 * var1 isnot var2
Bram Moolenaar071d4272004-06-13 20:20:40 +00004149 *
4150 * "arg" must point to the first non-white of the expression.
4151 * "arg" is advanced to the next non-white after the recognized expression.
4152 *
4153 * Return OK or FAIL.
4154 */
4155 static int
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004156eval4(arg, rettv, evaluate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004157 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00004158 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004159 int evaluate;
4160{
Bram Moolenaar33570922005-01-25 22:26:29 +00004161 typval_T var2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004162 char_u *p;
4163 int i;
4164 exptype_T type = TYPE_UNKNOWN;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00004165 int type_is = FALSE; /* TRUE for "is" and "isnot" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004166 int len = 2;
4167 long n1, n2;
4168 char_u *s1, *s2;
4169 char_u buf1[NUMBUFLEN], buf2[NUMBUFLEN];
4170 regmatch_T regmatch;
4171 int ic;
4172 char_u *save_cpo;
4173
4174 /*
4175 * Get the first variable.
4176 */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004177 if (eval5(arg, rettv, evaluate) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004178 return FAIL;
4179
4180 p = *arg;
4181 switch (p[0])
4182 {
4183 case '=': if (p[1] == '=')
4184 type = TYPE_EQUAL;
4185 else if (p[1] == '~')
4186 type = TYPE_MATCH;
4187 break;
4188 case '!': if (p[1] == '=')
4189 type = TYPE_NEQUAL;
4190 else if (p[1] == '~')
4191 type = TYPE_NOMATCH;
4192 break;
4193 case '>': if (p[1] != '=')
4194 {
4195 type = TYPE_GREATER;
4196 len = 1;
4197 }
4198 else
4199 type = TYPE_GEQUAL;
4200 break;
4201 case '<': if (p[1] != '=')
4202 {
4203 type = TYPE_SMALLER;
4204 len = 1;
4205 }
4206 else
4207 type = TYPE_SEQUAL;
4208 break;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00004209 case 'i': if (p[1] == 's')
4210 {
4211 if (p[2] == 'n' && p[3] == 'o' && p[4] == 't')
4212 len = 5;
4213 if (!vim_isIDc(p[len]))
4214 {
4215 type = len == 2 ? TYPE_EQUAL : TYPE_NEQUAL;
4216 type_is = TRUE;
4217 }
4218 }
4219 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004220 }
4221
4222 /*
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004223 * If there is a comparative operator, use it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004224 */
4225 if (type != TYPE_UNKNOWN)
4226 {
4227 /* extra question mark appended: ignore case */
4228 if (p[len] == '?')
4229 {
4230 ic = TRUE;
4231 ++len;
4232 }
4233 /* extra '#' appended: match case */
4234 else if (p[len] == '#')
4235 {
4236 ic = FALSE;
4237 ++len;
4238 }
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004239 /* nothing appended: use 'ignorecase' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004240 else
4241 ic = p_ic;
4242
4243 /*
4244 * Get the second variable.
4245 */
4246 *arg = skipwhite(p + len);
4247 if (eval5(arg, &var2, evaluate) == FAIL)
4248 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004249 clear_tv(rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004250 return FAIL;
4251 }
4252
4253 if (evaluate)
4254 {
Bram Moolenaar8a283e52005-01-06 23:28:25 +00004255 if (type_is && rettv->v_type != var2.v_type)
4256 {
4257 /* For "is" a different type always means FALSE, for "notis"
4258 * it means TRUE. */
4259 n1 = (type == TYPE_NEQUAL);
4260 }
4261 else if (rettv->v_type == VAR_LIST || var2.v_type == VAR_LIST)
4262 {
4263 if (type_is)
4264 {
4265 n1 = (rettv->v_type == var2.v_type
4266 && rettv->vval.v_list == var2.vval.v_list);
4267 if (type == TYPE_NEQUAL)
4268 n1 = !n1;
4269 }
4270 else if (rettv->v_type != var2.v_type
4271 || (type != TYPE_EQUAL && type != TYPE_NEQUAL))
4272 {
4273 if (rettv->v_type != var2.v_type)
Bram Moolenaare49b69a2005-01-08 16:11:57 +00004274 EMSG(_("E691: Can only compare List with List"));
Bram Moolenaar8a283e52005-01-06 23:28:25 +00004275 else
Bram Moolenaare49b69a2005-01-08 16:11:57 +00004276 EMSG(_("E692: Invalid operation for Lists"));
Bram Moolenaar8a283e52005-01-06 23:28:25 +00004277 clear_tv(rettv);
4278 clear_tv(&var2);
4279 return FAIL;
4280 }
4281 else
4282 {
4283 /* Compare two Lists for being equal or unequal. */
4284 n1 = list_equal(rettv->vval.v_list, var2.vval.v_list, ic);
4285 if (type == TYPE_NEQUAL)
4286 n1 = !n1;
4287 }
4288 }
4289
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00004290 else if (rettv->v_type == VAR_DICT || var2.v_type == VAR_DICT)
4291 {
4292 if (type_is)
4293 {
4294 n1 = (rettv->v_type == var2.v_type
4295 && rettv->vval.v_dict == var2.vval.v_dict);
4296 if (type == TYPE_NEQUAL)
4297 n1 = !n1;
4298 }
4299 else if (rettv->v_type != var2.v_type
4300 || (type != TYPE_EQUAL && type != TYPE_NEQUAL))
4301 {
4302 if (rettv->v_type != var2.v_type)
4303 EMSG(_("E735: Can only compare Dictionary with Dictionary"));
4304 else
4305 EMSG(_("E736: Invalid operation for Dictionary"));
4306 clear_tv(rettv);
4307 clear_tv(&var2);
4308 return FAIL;
4309 }
4310 else
4311 {
4312 /* Compare two Dictionaries for being equal or unequal. */
4313 n1 = dict_equal(rettv->vval.v_dict, var2.vval.v_dict, ic);
4314 if (type == TYPE_NEQUAL)
4315 n1 = !n1;
4316 }
4317 }
4318
Bram Moolenaar8a283e52005-01-06 23:28:25 +00004319 else if (rettv->v_type == VAR_FUNC || var2.v_type == VAR_FUNC)
4320 {
4321 if (rettv->v_type != var2.v_type
4322 || (type != TYPE_EQUAL && type != TYPE_NEQUAL))
4323 {
4324 if (rettv->v_type != var2.v_type)
Bram Moolenaare49b69a2005-01-08 16:11:57 +00004325 EMSG(_("E693: Can only compare Funcref with Funcref"));
Bram Moolenaar8a283e52005-01-06 23:28:25 +00004326 else
Bram Moolenaare49b69a2005-01-08 16:11:57 +00004327 EMSG(_("E694: Invalid operation for Funcrefs"));
Bram Moolenaar8a283e52005-01-06 23:28:25 +00004328 clear_tv(rettv);
4329 clear_tv(&var2);
4330 return FAIL;
4331 }
4332 else
4333 {
4334 /* Compare two Funcrefs for being equal or unequal. */
4335 if (rettv->vval.v_string == NULL
4336 || var2.vval.v_string == NULL)
4337 n1 = FALSE;
4338 else
4339 n1 = STRCMP(rettv->vval.v_string,
4340 var2.vval.v_string) == 0;
4341 if (type == TYPE_NEQUAL)
4342 n1 = !n1;
4343 }
4344 }
4345
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004346#ifdef FEAT_FLOAT
4347 /*
4348 * If one of the two variables is a float, compare as a float.
4349 * When using "=~" or "!~", always compare as string.
4350 */
4351 else if ((rettv->v_type == VAR_FLOAT || var2.v_type == VAR_FLOAT)
4352 && type != TYPE_MATCH && type != TYPE_NOMATCH)
4353 {
4354 float_T f1, f2;
4355
4356 if (rettv->v_type == VAR_FLOAT)
4357 f1 = rettv->vval.v_float;
4358 else
4359 f1 = get_tv_number(rettv);
4360 if (var2.v_type == VAR_FLOAT)
4361 f2 = var2.vval.v_float;
4362 else
4363 f2 = get_tv_number(&var2);
4364 n1 = FALSE;
4365 switch (type)
4366 {
4367 case TYPE_EQUAL: n1 = (f1 == f2); break;
4368 case TYPE_NEQUAL: n1 = (f1 != f2); break;
4369 case TYPE_GREATER: n1 = (f1 > f2); break;
4370 case TYPE_GEQUAL: n1 = (f1 >= f2); break;
4371 case TYPE_SMALLER: n1 = (f1 < f2); break;
4372 case TYPE_SEQUAL: n1 = (f1 <= f2); break;
4373 case TYPE_UNKNOWN:
4374 case TYPE_MATCH:
4375 case TYPE_NOMATCH: break; /* avoid gcc warning */
4376 }
4377 }
4378#endif
4379
Bram Moolenaar071d4272004-06-13 20:20:40 +00004380 /*
4381 * If one of the two variables is a number, compare as a number.
4382 * When using "=~" or "!~", always compare as string.
4383 */
Bram Moolenaar8a283e52005-01-06 23:28:25 +00004384 else if ((rettv->v_type == VAR_NUMBER || var2.v_type == VAR_NUMBER)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004385 && type != TYPE_MATCH && type != TYPE_NOMATCH)
4386 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004387 n1 = get_tv_number(rettv);
4388 n2 = get_tv_number(&var2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004389 switch (type)
4390 {
4391 case TYPE_EQUAL: n1 = (n1 == n2); break;
4392 case TYPE_NEQUAL: n1 = (n1 != n2); break;
4393 case TYPE_GREATER: n1 = (n1 > n2); break;
4394 case TYPE_GEQUAL: n1 = (n1 >= n2); break;
4395 case TYPE_SMALLER: n1 = (n1 < n2); break;
4396 case TYPE_SEQUAL: n1 = (n1 <= n2); break;
4397 case TYPE_UNKNOWN:
4398 case TYPE_MATCH:
4399 case TYPE_NOMATCH: break; /* avoid gcc warning */
4400 }
4401 }
4402 else
4403 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004404 s1 = get_tv_string_buf(rettv, buf1);
4405 s2 = get_tv_string_buf(&var2, buf2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004406 if (type != TYPE_MATCH && type != TYPE_NOMATCH)
4407 i = ic ? MB_STRICMP(s1, s2) : STRCMP(s1, s2);
4408 else
4409 i = 0;
4410 n1 = FALSE;
4411 switch (type)
4412 {
4413 case TYPE_EQUAL: n1 = (i == 0); break;
4414 case TYPE_NEQUAL: n1 = (i != 0); break;
4415 case TYPE_GREATER: n1 = (i > 0); break;
4416 case TYPE_GEQUAL: n1 = (i >= 0); break;
4417 case TYPE_SMALLER: n1 = (i < 0); break;
4418 case TYPE_SEQUAL: n1 = (i <= 0); break;
4419
4420 case TYPE_MATCH:
4421 case TYPE_NOMATCH:
4422 /* avoid 'l' flag in 'cpoptions' */
4423 save_cpo = p_cpo;
4424 p_cpo = (char_u *)"";
4425 regmatch.regprog = vim_regcomp(s2,
4426 RE_MAGIC + RE_STRING);
4427 regmatch.rm_ic = ic;
4428 if (regmatch.regprog != NULL)
4429 {
4430 n1 = vim_regexec_nl(&regmatch, s1, (colnr_T)0);
4431 vim_free(regmatch.regprog);
4432 if (type == TYPE_NOMATCH)
4433 n1 = !n1;
4434 }
4435 p_cpo = save_cpo;
4436 break;
4437
4438 case TYPE_UNKNOWN: break; /* avoid gcc warning */
4439 }
4440 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004441 clear_tv(rettv);
4442 clear_tv(&var2);
4443 rettv->v_type = VAR_NUMBER;
4444 rettv->vval.v_number = n1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004445 }
4446 }
4447
4448 return OK;
4449}
4450
4451/*
4452 * Handle fourth level expression:
4453 * + number addition
4454 * - number subtraction
4455 * . string concatenation
4456 *
4457 * "arg" must point to the first non-white of the expression.
4458 * "arg" is advanced to the next non-white after the recognized expression.
4459 *
4460 * Return OK or FAIL.
4461 */
4462 static int
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004463eval5(arg, rettv, evaluate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004464 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00004465 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004466 int evaluate;
4467{
Bram Moolenaar33570922005-01-25 22:26:29 +00004468 typval_T var2;
4469 typval_T var3;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004470 int op;
4471 long n1, n2;
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004472#ifdef FEAT_FLOAT
4473 float_T f1 = 0, f2 = 0;
4474#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004475 char_u *s1, *s2;
4476 char_u buf1[NUMBUFLEN], buf2[NUMBUFLEN];
4477 char_u *p;
4478
4479 /*
4480 * Get the first variable.
4481 */
Bram Moolenaar8d00f9c2008-06-28 13:09:56 +00004482 if (eval6(arg, rettv, evaluate, FALSE) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004483 return FAIL;
4484
4485 /*
4486 * Repeat computing, until no '+', '-' or '.' is following.
4487 */
4488 for (;;)
4489 {
4490 op = **arg;
4491 if (op != '+' && op != '-' && op != '.')
4492 break;
4493
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004494 if ((op != '+' || rettv->v_type != VAR_LIST)
4495#ifdef FEAT_FLOAT
4496 && (op == '.' || rettv->v_type != VAR_FLOAT)
4497#endif
4498 )
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004499 {
4500 /* For "list + ...", an illegal use of the first operand as
4501 * a number cannot be determined before evaluating the 2nd
4502 * operand: if this is also a list, all is ok.
4503 * For "something . ...", "something - ..." or "non-list + ...",
4504 * we know that the first operand needs to be a string or number
4505 * without evaluating the 2nd operand. So check before to avoid
4506 * side effects after an error. */
4507 if (evaluate && get_tv_string_chk(rettv) == NULL)
4508 {
4509 clear_tv(rettv);
4510 return FAIL;
4511 }
4512 }
4513
Bram Moolenaar071d4272004-06-13 20:20:40 +00004514 /*
4515 * Get the second variable.
4516 */
4517 *arg = skipwhite(*arg + 1);
Bram Moolenaar8d00f9c2008-06-28 13:09:56 +00004518 if (eval6(arg, &var2, evaluate, op == '.') == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004519 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004520 clear_tv(rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004521 return FAIL;
4522 }
4523
4524 if (evaluate)
4525 {
4526 /*
4527 * Compute the result.
4528 */
4529 if (op == '.')
4530 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004531 s1 = get_tv_string_buf(rettv, buf1); /* already checked */
4532 s2 = get_tv_string_buf_chk(&var2, buf2);
4533 if (s2 == NULL) /* type error ? */
4534 {
4535 clear_tv(rettv);
4536 clear_tv(&var2);
4537 return FAIL;
4538 }
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00004539 p = concat_str(s1, s2);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004540 clear_tv(rettv);
4541 rettv->v_type = VAR_STRING;
4542 rettv->vval.v_string = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004543 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00004544 else if (op == '+' && rettv->v_type == VAR_LIST
4545 && var2.v_type == VAR_LIST)
Bram Moolenaar8a283e52005-01-06 23:28:25 +00004546 {
4547 /* concatenate Lists */
4548 if (list_concat(rettv->vval.v_list, var2.vval.v_list,
4549 &var3) == FAIL)
4550 {
4551 clear_tv(rettv);
4552 clear_tv(&var2);
4553 return FAIL;
4554 }
4555 clear_tv(rettv);
4556 *rettv = var3;
4557 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004558 else
4559 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004560 int error = FALSE;
4561
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004562#ifdef FEAT_FLOAT
4563 if (rettv->v_type == VAR_FLOAT)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004564 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004565 f1 = rettv->vval.v_float;
4566 n1 = 0;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004567 }
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004568 else
4569#endif
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004570 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004571 n1 = get_tv_number_chk(rettv, &error);
4572 if (error)
4573 {
4574 /* This can only happen for "list + non-list". For
4575 * "non-list + ..." or "something - ...", we returned
4576 * before evaluating the 2nd operand. */
4577 clear_tv(rettv);
4578 return FAIL;
4579 }
4580#ifdef FEAT_FLOAT
4581 if (var2.v_type == VAR_FLOAT)
4582 f1 = n1;
4583#endif
4584 }
4585#ifdef FEAT_FLOAT
4586 if (var2.v_type == VAR_FLOAT)
4587 {
4588 f2 = var2.vval.v_float;
4589 n2 = 0;
4590 }
4591 else
4592#endif
4593 {
4594 n2 = get_tv_number_chk(&var2, &error);
4595 if (error)
4596 {
4597 clear_tv(rettv);
4598 clear_tv(&var2);
4599 return FAIL;
4600 }
4601#ifdef FEAT_FLOAT
4602 if (rettv->v_type == VAR_FLOAT)
4603 f2 = n2;
4604#endif
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004605 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004606 clear_tv(rettv);
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004607
4608#ifdef FEAT_FLOAT
4609 /* If there is a float on either side the result is a float. */
4610 if (rettv->v_type == VAR_FLOAT || var2.v_type == VAR_FLOAT)
4611 {
4612 if (op == '+')
4613 f1 = f1 + f2;
4614 else
4615 f1 = f1 - f2;
4616 rettv->v_type = VAR_FLOAT;
4617 rettv->vval.v_float = f1;
4618 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004619 else
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004620#endif
4621 {
4622 if (op == '+')
4623 n1 = n1 + n2;
4624 else
4625 n1 = n1 - n2;
4626 rettv->v_type = VAR_NUMBER;
4627 rettv->vval.v_number = n1;
4628 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004629 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004630 clear_tv(&var2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004631 }
4632 }
4633 return OK;
4634}
4635
4636/*
4637 * Handle fifth level expression:
4638 * * number multiplication
4639 * / number division
4640 * % number modulo
4641 *
4642 * "arg" must point to the first non-white of the expression.
4643 * "arg" is advanced to the next non-white after the recognized expression.
4644 *
4645 * Return OK or FAIL.
4646 */
4647 static int
Bram Moolenaar8d00f9c2008-06-28 13:09:56 +00004648eval6(arg, rettv, evaluate, want_string)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004649 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00004650 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004651 int evaluate;
Bram Moolenaar8d00f9c2008-06-28 13:09:56 +00004652 int want_string; /* after "." operator */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004653{
Bram Moolenaar33570922005-01-25 22:26:29 +00004654 typval_T var2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004655 int op;
4656 long n1, n2;
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004657#ifdef FEAT_FLOAT
4658 int use_float = FALSE;
4659 float_T f1 = 0, f2;
4660#endif
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004661 int error = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004662
4663 /*
4664 * Get the first variable.
4665 */
Bram Moolenaar8d00f9c2008-06-28 13:09:56 +00004666 if (eval7(arg, rettv, evaluate, want_string) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004667 return FAIL;
4668
4669 /*
4670 * Repeat computing, until no '*', '/' or '%' is following.
4671 */
4672 for (;;)
4673 {
4674 op = **arg;
4675 if (op != '*' && op != '/' && op != '%')
4676 break;
4677
4678 if (evaluate)
4679 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004680#ifdef FEAT_FLOAT
4681 if (rettv->v_type == VAR_FLOAT)
4682 {
4683 f1 = rettv->vval.v_float;
4684 use_float = TRUE;
4685 n1 = 0;
4686 }
4687 else
4688#endif
4689 n1 = get_tv_number_chk(rettv, &error);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004690 clear_tv(rettv);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004691 if (error)
4692 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004693 }
4694 else
4695 n1 = 0;
4696
4697 /*
4698 * Get the second variable.
4699 */
4700 *arg = skipwhite(*arg + 1);
Bram Moolenaar8d00f9c2008-06-28 13:09:56 +00004701 if (eval7(arg, &var2, evaluate, FALSE) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004702 return FAIL;
4703
4704 if (evaluate)
4705 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004706#ifdef FEAT_FLOAT
4707 if (var2.v_type == VAR_FLOAT)
4708 {
4709 if (!use_float)
4710 {
4711 f1 = n1;
4712 use_float = TRUE;
4713 }
4714 f2 = var2.vval.v_float;
4715 n2 = 0;
4716 }
4717 else
4718#endif
4719 {
4720 n2 = get_tv_number_chk(&var2, &error);
4721 clear_tv(&var2);
4722 if (error)
4723 return FAIL;
4724#ifdef FEAT_FLOAT
4725 if (use_float)
4726 f2 = n2;
4727#endif
4728 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004729
4730 /*
4731 * Compute the result.
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004732 * When either side is a float the result is a float.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004733 */
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004734#ifdef FEAT_FLOAT
4735 if (use_float)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004736 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004737 if (op == '*')
4738 f1 = f1 * f2;
4739 else if (op == '/')
4740 {
4741 /* We rely on the floating point library to handle divide
4742 * by zero to result in "inf" and not a crash. */
4743 f1 = f1 / f2;
4744 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004745 else
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004746 {
Bram Moolenaar1378fca2008-07-04 16:51:55 +00004747 EMSG(_("E804: Cannot use '%' with Float"));
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004748 return FAIL;
4749 }
4750 rettv->v_type = VAR_FLOAT;
4751 rettv->vval.v_float = f1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004752 }
4753 else
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004754#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004755 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004756 if (op == '*')
4757 n1 = n1 * n2;
4758 else if (op == '/')
4759 {
4760 if (n2 == 0) /* give an error message? */
4761 {
4762 if (n1 == 0)
4763 n1 = -0x7fffffffL - 1L; /* similar to NaN */
4764 else if (n1 < 0)
4765 n1 = -0x7fffffffL;
4766 else
4767 n1 = 0x7fffffffL;
4768 }
4769 else
4770 n1 = n1 / n2;
4771 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004772 else
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004773 {
4774 if (n2 == 0) /* give an error message? */
4775 n1 = 0;
4776 else
4777 n1 = n1 % n2;
4778 }
4779 rettv->v_type = VAR_NUMBER;
4780 rettv->vval.v_number = n1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004781 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004782 }
4783 }
4784
4785 return OK;
4786}
4787
4788/*
4789 * Handle sixth level expression:
4790 * number number constant
Bram Moolenaarbae0c162007-05-10 19:30:25 +00004791 * "string" string constant
4792 * 'string' literal string constant
Bram Moolenaar071d4272004-06-13 20:20:40 +00004793 * &option-name option value
4794 * @r register contents
4795 * identifier variable value
4796 * function() function call
4797 * $VAR environment variable
4798 * (expression) nested expression
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00004799 * [expr, expr] List
4800 * {key: val, key: val} Dictionary
Bram Moolenaar071d4272004-06-13 20:20:40 +00004801 *
4802 * Also handle:
4803 * ! in front logical NOT
4804 * - in front unary minus
4805 * + in front unary plus (ignored)
Bram Moolenaar8c711452005-01-14 21:53:12 +00004806 * trailing [] subscript in String or List
4807 * trailing .name entry in Dictionary
Bram Moolenaar071d4272004-06-13 20:20:40 +00004808 *
4809 * "arg" must point to the first non-white of the expression.
4810 * "arg" is advanced to the next non-white after the recognized expression.
4811 *
4812 * Return OK or FAIL.
4813 */
4814 static int
Bram Moolenaar8d00f9c2008-06-28 13:09:56 +00004815eval7(arg, rettv, evaluate, want_string)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004816 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00004817 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004818 int evaluate;
Bram Moolenaar8d00f9c2008-06-28 13:09:56 +00004819 int want_string; /* after "." operator */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004820{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004821 long n;
4822 int len;
4823 char_u *s;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004824 char_u *start_leader, *end_leader;
4825 int ret = OK;
4826 char_u *alias;
4827
4828 /*
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004829 * Initialise variable so that clear_tv() can't mistake this for a
Bram Moolenaar49cd9572005-01-03 21:06:01 +00004830 * string and free a string that isn't there.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004831 */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004832 rettv->v_type = VAR_UNKNOWN;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004833
4834 /*
4835 * Skip '!' and '-' characters. They are handled later.
4836 */
4837 start_leader = *arg;
4838 while (**arg == '!' || **arg == '-' || **arg == '+')
4839 *arg = skipwhite(*arg + 1);
4840 end_leader = *arg;
4841
4842 switch (**arg)
4843 {
4844 /*
4845 * Number constant.
4846 */
4847 case '0':
4848 case '1':
4849 case '2':
4850 case '3':
4851 case '4':
4852 case '5':
4853 case '6':
4854 case '7':
4855 case '8':
4856 case '9':
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004857 {
4858#ifdef FEAT_FLOAT
4859 char_u *p = skipdigits(*arg + 1);
4860 int get_float = FALSE;
4861
4862 /* We accept a float when the format matches
4863 * "[0-9]\+\.[0-9]\+\([eE][+-]\?[0-9]\+\)\?". This is very
Bram Moolenaar8d00f9c2008-06-28 13:09:56 +00004864 * strict to avoid backwards compatibility problems.
4865 * Don't look for a float after the "." operator, so that
4866 * ":let vers = 1.2.3" doesn't fail. */
4867 if (!want_string && p[0] == '.' && vim_isdigit(p[1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004868 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004869 get_float = TRUE;
4870 p = skipdigits(p + 2);
4871 if (*p == 'e' || *p == 'E')
4872 {
4873 ++p;
4874 if (*p == '-' || *p == '+')
4875 ++p;
4876 if (!vim_isdigit(*p))
4877 get_float = FALSE;
4878 else
4879 p = skipdigits(p + 1);
4880 }
4881 if (ASCII_ISALPHA(*p) || *p == '.')
4882 get_float = FALSE;
4883 }
4884 if (get_float)
4885 {
4886 float_T f;
4887
4888 *arg += string2float(*arg, &f);
4889 if (evaluate)
4890 {
4891 rettv->v_type = VAR_FLOAT;
4892 rettv->vval.v_float = f;
4893 }
4894 }
4895 else
4896#endif
4897 {
4898 vim_str2nr(*arg, NULL, &len, TRUE, TRUE, &n, NULL);
4899 *arg += len;
4900 if (evaluate)
4901 {
4902 rettv->v_type = VAR_NUMBER;
4903 rettv->vval.v_number = n;
4904 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004905 }
4906 break;
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004907 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004908
4909 /*
4910 * String constant: "string".
4911 */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004912 case '"': ret = get_string_tv(arg, rettv, evaluate);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004913 break;
4914
4915 /*
Bram Moolenaar8c711452005-01-14 21:53:12 +00004916 * Literal string constant: 'str''ing'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004917 */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004918 case '\'': ret = get_lit_string_tv(arg, rettv, evaluate);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00004919 break;
4920
4921 /*
4922 * List: [expr, expr]
4923 */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004924 case '[': ret = get_list_tv(arg, rettv, evaluate);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004925 break;
4926
4927 /*
Bram Moolenaar8c711452005-01-14 21:53:12 +00004928 * Dictionary: {key: val, key: val}
4929 */
4930 case '{': ret = get_dict_tv(arg, rettv, evaluate);
4931 break;
4932
4933 /*
Bram Moolenaare9a41262005-01-15 22:18:47 +00004934 * Option value: &name
Bram Moolenaar071d4272004-06-13 20:20:40 +00004935 */
Bram Moolenaare9a41262005-01-15 22:18:47 +00004936 case '&': ret = get_option_tv(arg, rettv, evaluate);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004937 break;
4938
4939 /*
4940 * Environment variable: $VAR.
4941 */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004942 case '$': ret = get_env_tv(arg, rettv, evaluate);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004943 break;
4944
4945 /*
4946 * Register contents: @r.
4947 */
4948 case '@': ++*arg;
4949 if (evaluate)
4950 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004951 rettv->v_type = VAR_STRING;
Bram Moolenaar92124a32005-06-17 22:03:40 +00004952 rettv->vval.v_string = get_reg_contents(**arg, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004953 }
4954 if (**arg != NUL)
4955 ++*arg;
4956 break;
4957
4958 /*
4959 * nested expression: (expression).
4960 */
4961 case '(': *arg = skipwhite(*arg + 1);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004962 ret = eval1(arg, rettv, evaluate); /* recursive! */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004963 if (**arg == ')')
4964 ++*arg;
4965 else if (ret == OK)
4966 {
4967 EMSG(_("E110: Missing ')'"));
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004968 clear_tv(rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004969 ret = FAIL;
4970 }
4971 break;
4972
Bram Moolenaar8c711452005-01-14 21:53:12 +00004973 default: ret = NOTDONE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004974 break;
4975 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00004976
4977 if (ret == NOTDONE)
4978 {
4979 /*
4980 * Must be a variable or function name.
4981 * Can also be a curly-braces kind of name: {expr}.
4982 */
4983 s = *arg;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00004984 len = get_name_len(arg, &alias, evaluate, TRUE);
Bram Moolenaar8c711452005-01-14 21:53:12 +00004985 if (alias != NULL)
4986 s = alias;
4987
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00004988 if (len <= 0)
Bram Moolenaar8c711452005-01-14 21:53:12 +00004989 ret = FAIL;
4990 else
4991 {
4992 if (**arg == '(') /* recursive! */
4993 {
4994 /* If "s" is the name of a variable of type VAR_FUNC
4995 * use its contents. */
4996 s = deref_func_name(s, &len);
4997
4998 /* Invoke the function. */
4999 ret = get_func_tv(s, len, rettv, arg,
5000 curwin->w_cursor.lnum, curwin->w_cursor.lnum,
Bram Moolenaare9a41262005-01-15 22:18:47 +00005001 &len, evaluate, NULL);
Bram Moolenaar8c711452005-01-14 21:53:12 +00005002 /* Stop the expression evaluation when immediately
5003 * aborting on error, or when an interrupt occurred or
5004 * an exception was thrown but not caught. */
5005 if (aborting())
5006 {
5007 if (ret == OK)
5008 clear_tv(rettv);
5009 ret = FAIL;
5010 }
5011 }
5012 else if (evaluate)
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00005013 ret = get_var_tv(s, len, rettv, TRUE);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00005014 else
5015 ret = OK;
Bram Moolenaar8c711452005-01-14 21:53:12 +00005016 }
5017
5018 if (alias != NULL)
5019 vim_free(alias);
5020 }
5021
Bram Moolenaar071d4272004-06-13 20:20:40 +00005022 *arg = skipwhite(*arg);
5023
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00005024 /* Handle following '[', '(' and '.' for expr[expr], expr.name,
5025 * expr(expr). */
5026 if (ret == OK)
5027 ret = handle_subscript(arg, rettv, evaluate, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005028
5029 /*
5030 * Apply logical NOT and unary '-', from right to left, ignore '+'.
5031 */
5032 if (ret == OK && evaluate && end_leader > start_leader)
5033 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005034 int error = FALSE;
Bram Moolenaar8c8de832008-06-24 22:58:06 +00005035 int val = 0;
5036#ifdef FEAT_FLOAT
5037 float_T f = 0.0;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005038
Bram Moolenaar8c8de832008-06-24 22:58:06 +00005039 if (rettv->v_type == VAR_FLOAT)
5040 f = rettv->vval.v_float;
5041 else
5042#endif
5043 val = get_tv_number_chk(rettv, &error);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005044 if (error)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005045 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005046 clear_tv(rettv);
5047 ret = FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005048 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005049 else
5050 {
5051 while (end_leader > start_leader)
5052 {
5053 --end_leader;
5054 if (*end_leader == '!')
Bram Moolenaar8c8de832008-06-24 22:58:06 +00005055 {
5056#ifdef FEAT_FLOAT
5057 if (rettv->v_type == VAR_FLOAT)
5058 f = !f;
5059 else
5060#endif
5061 val = !val;
5062 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005063 else if (*end_leader == '-')
Bram Moolenaar8c8de832008-06-24 22:58:06 +00005064 {
5065#ifdef FEAT_FLOAT
5066 if (rettv->v_type == VAR_FLOAT)
5067 f = -f;
5068 else
5069#endif
5070 val = -val;
5071 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005072 }
Bram Moolenaar8c8de832008-06-24 22:58:06 +00005073#ifdef FEAT_FLOAT
5074 if (rettv->v_type == VAR_FLOAT)
5075 {
5076 clear_tv(rettv);
5077 rettv->vval.v_float = f;
5078 }
5079 else
5080#endif
5081 {
5082 clear_tv(rettv);
5083 rettv->v_type = VAR_NUMBER;
5084 rettv->vval.v_number = val;
5085 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005086 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005087 }
5088
5089 return ret;
5090}
5091
5092/*
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00005093 * Evaluate an "[expr]" or "[expr:expr]" index. Also "dict.key".
5094 * "*arg" points to the '[' or '.'.
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005095 * Returns FAIL or OK. "*arg" is advanced to after the ']'.
5096 */
5097 static int
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00005098eval_index(arg, rettv, evaluate, verbose)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005099 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00005100 typval_T *rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005101 int evaluate;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00005102 int verbose; /* give error messages */
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005103{
5104 int empty1 = FALSE, empty2 = FALSE;
Bram Moolenaar33570922005-01-25 22:26:29 +00005105 typval_T var1, var2;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005106 long n1, n2 = 0;
Bram Moolenaar8c711452005-01-14 21:53:12 +00005107 long len = -1;
5108 int range = FALSE;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005109 char_u *s;
Bram Moolenaar8c711452005-01-14 21:53:12 +00005110 char_u *key = NULL;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005111
Bram Moolenaar8c8de832008-06-24 22:58:06 +00005112 if (rettv->v_type == VAR_FUNC
5113#ifdef FEAT_FLOAT
5114 || rettv->v_type == VAR_FLOAT
5115#endif
5116 )
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005117 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00005118 if (verbose)
5119 EMSG(_("E695: Cannot index a Funcref"));
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005120 return FAIL;
5121 }
5122
Bram Moolenaar8c711452005-01-14 21:53:12 +00005123 if (**arg == '.')
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005124 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005125 /*
5126 * dict.name
5127 */
5128 key = *arg + 1;
5129 for (len = 0; ASCII_ISALNUM(key[len]) || key[len] == '_'; ++len)
5130 ;
5131 if (len == 0)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005132 return FAIL;
Bram Moolenaar8c711452005-01-14 21:53:12 +00005133 *arg = skipwhite(key + len);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005134 }
5135 else
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005136 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005137 /*
5138 * something[idx]
5139 *
5140 * Get the (first) variable from inside the [].
5141 */
5142 *arg = skipwhite(*arg + 1);
5143 if (**arg == ':')
5144 empty1 = TRUE;
5145 else if (eval1(arg, &var1, evaluate) == FAIL) /* recursive! */
5146 return FAIL;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005147 else if (evaluate && get_tv_string_chk(&var1) == NULL)
5148 {
5149 /* not a number or string */
5150 clear_tv(&var1);
5151 return FAIL;
5152 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00005153
5154 /*
5155 * Get the second variable from inside the [:].
5156 */
5157 if (**arg == ':')
5158 {
5159 range = TRUE;
5160 *arg = skipwhite(*arg + 1);
5161 if (**arg == ']')
5162 empty2 = TRUE;
5163 else if (eval1(arg, &var2, evaluate) == FAIL) /* recursive! */
5164 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005165 if (!empty1)
5166 clear_tv(&var1);
5167 return FAIL;
5168 }
5169 else if (evaluate && get_tv_string_chk(&var2) == NULL)
5170 {
5171 /* not a number or string */
5172 if (!empty1)
5173 clear_tv(&var1);
5174 clear_tv(&var2);
Bram Moolenaar8c711452005-01-14 21:53:12 +00005175 return FAIL;
5176 }
5177 }
5178
5179 /* Check for the ']'. */
5180 if (**arg != ']')
5181 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00005182 if (verbose)
5183 EMSG(_(e_missbrac));
Bram Moolenaar8c711452005-01-14 21:53:12 +00005184 clear_tv(&var1);
5185 if (range)
5186 clear_tv(&var2);
5187 return FAIL;
5188 }
5189 *arg = skipwhite(*arg + 1); /* skip the ']' */
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005190 }
5191
5192 if (evaluate)
5193 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005194 n1 = 0;
5195 if (!empty1 && rettv->v_type != VAR_DICT)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005196 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005197 n1 = get_tv_number(&var1);
5198 clear_tv(&var1);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005199 }
5200 if (range)
5201 {
5202 if (empty2)
5203 n2 = -1;
5204 else
5205 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005206 n2 = get_tv_number(&var2);
5207 clear_tv(&var2);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005208 }
5209 }
5210
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005211 switch (rettv->v_type)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005212 {
5213 case VAR_NUMBER:
5214 case VAR_STRING:
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005215 s = get_tv_string(rettv);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005216 len = (long)STRLEN(s);
5217 if (range)
5218 {
5219 /* The resulting variable is a substring. If the indexes
5220 * are out of range the result is empty. */
5221 if (n1 < 0)
5222 {
5223 n1 = len + n1;
5224 if (n1 < 0)
5225 n1 = 0;
5226 }
5227 if (n2 < 0)
5228 n2 = len + n2;
5229 else if (n2 >= len)
5230 n2 = len;
5231 if (n1 >= len || n2 < 0 || n1 > n2)
5232 s = NULL;
5233 else
5234 s = vim_strnsave(s + n1, (int)(n2 - n1 + 1));
5235 }
5236 else
5237 {
5238 /* The resulting variable is a string of a single
5239 * character. If the index is too big or negative the
5240 * result is empty. */
5241 if (n1 >= len || n1 < 0)
5242 s = NULL;
5243 else
5244 s = vim_strnsave(s + n1, 1);
5245 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005246 clear_tv(rettv);
5247 rettv->v_type = VAR_STRING;
5248 rettv->vval.v_string = s;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005249 break;
5250
5251 case VAR_LIST:
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005252 len = list_len(rettv->vval.v_list);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005253 if (n1 < 0)
5254 n1 = len + n1;
5255 if (!empty1 && (n1 < 0 || n1 >= len))
5256 {
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00005257 /* For a range we allow invalid values and return an empty
5258 * list. A list index out of range is an error. */
5259 if (!range)
5260 {
5261 if (verbose)
5262 EMSGN(_(e_listidx), n1);
5263 return FAIL;
5264 }
5265 n1 = len;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005266 }
5267 if (range)
5268 {
Bram Moolenaar33570922005-01-25 22:26:29 +00005269 list_T *l;
5270 listitem_T *item;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005271
5272 if (n2 < 0)
5273 n2 = len + n2;
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00005274 else if (n2 >= len)
5275 n2 = len - 1;
5276 if (!empty2 && (n2 < 0 || n2 + 1 < n1))
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00005277 n2 = -1;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005278 l = list_alloc();
5279 if (l == NULL)
5280 return FAIL;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005281 for (item = list_find(rettv->vval.v_list, n1);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005282 n1 <= n2; ++n1)
5283 {
5284 if (list_append_tv(l, &item->li_tv) == FAIL)
5285 {
Bram Moolenaar685295c2006-10-15 20:37:38 +00005286 list_free(l, TRUE);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005287 return FAIL;
5288 }
5289 item = item->li_next;
5290 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005291 clear_tv(rettv);
5292 rettv->v_type = VAR_LIST;
5293 rettv->vval.v_list = l;
Bram Moolenaar0d660222005-01-07 21:51:51 +00005294 ++l->lv_refcount;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005295 }
5296 else
5297 {
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00005298 copy_tv(&list_find(rettv->vval.v_list, n1)->li_tv, &var1);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005299 clear_tv(rettv);
5300 *rettv = var1;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005301 }
5302 break;
Bram Moolenaar8c711452005-01-14 21:53:12 +00005303
5304 case VAR_DICT:
5305 if (range)
5306 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00005307 if (verbose)
5308 EMSG(_(e_dictrange));
Bram Moolenaar8c711452005-01-14 21:53:12 +00005309 if (len == -1)
5310 clear_tv(&var1);
5311 return FAIL;
5312 }
5313 {
Bram Moolenaar33570922005-01-25 22:26:29 +00005314 dictitem_T *item;
Bram Moolenaar8c711452005-01-14 21:53:12 +00005315
5316 if (len == -1)
5317 {
5318 key = get_tv_string(&var1);
5319 if (*key == NUL)
5320 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00005321 if (verbose)
5322 EMSG(_(e_emptykey));
Bram Moolenaar8c711452005-01-14 21:53:12 +00005323 clear_tv(&var1);
5324 return FAIL;
5325 }
5326 }
5327
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00005328 item = dict_find(rettv->vval.v_dict, key, (int)len);
Bram Moolenaar8c711452005-01-14 21:53:12 +00005329
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00005330 if (item == NULL && verbose)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00005331 EMSG2(_(e_dictkey), key);
Bram Moolenaar8c711452005-01-14 21:53:12 +00005332 if (len == -1)
5333 clear_tv(&var1);
5334 if (item == NULL)
5335 return FAIL;
5336
5337 copy_tv(&item->di_tv, &var1);
5338 clear_tv(rettv);
5339 *rettv = var1;
5340 }
5341 break;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005342 }
5343 }
5344
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005345 return OK;
5346}
5347
5348/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00005349 * Get an option value.
5350 * "arg" points to the '&' or '+' before the option name.
5351 * "arg" is advanced to character after the option name.
5352 * Return OK or FAIL.
5353 */
5354 static int
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005355get_option_tv(arg, rettv, evaluate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005356 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00005357 typval_T *rettv; /* when NULL, only check if option exists */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005358 int evaluate;
5359{
5360 char_u *option_end;
5361 long numval;
5362 char_u *stringval;
5363 int opt_type;
5364 int c;
5365 int working = (**arg == '+'); /* has("+option") */
5366 int ret = OK;
5367 int opt_flags;
5368
5369 /*
5370 * Isolate the option name and find its value.
5371 */
5372 option_end = find_option_end(arg, &opt_flags);
5373 if (option_end == NULL)
5374 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005375 if (rettv != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005376 EMSG2(_("E112: Option name missing: %s"), *arg);
5377 return FAIL;
5378 }
5379
5380 if (!evaluate)
5381 {
5382 *arg = option_end;
5383 return OK;
5384 }
5385
5386 c = *option_end;
5387 *option_end = NUL;
5388 opt_type = get_option_value(*arg, &numval,
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005389 rettv == NULL ? NULL : &stringval, opt_flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005390
5391 if (opt_type == -3) /* invalid name */
5392 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005393 if (rettv != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005394 EMSG2(_("E113: Unknown option: %s"), *arg);
5395 ret = FAIL;
5396 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005397 else if (rettv != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005398 {
5399 if (opt_type == -2) /* hidden string option */
5400 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005401 rettv->v_type = VAR_STRING;
5402 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005403 }
5404 else if (opt_type == -1) /* hidden number option */
5405 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005406 rettv->v_type = VAR_NUMBER;
5407 rettv->vval.v_number = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005408 }
5409 else if (opt_type == 1) /* number option */
5410 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005411 rettv->v_type = VAR_NUMBER;
5412 rettv->vval.v_number = numval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005413 }
5414 else /* string option */
5415 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005416 rettv->v_type = VAR_STRING;
5417 rettv->vval.v_string = stringval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005418 }
5419 }
5420 else if (working && (opt_type == -2 || opt_type == -1))
5421 ret = FAIL;
5422
5423 *option_end = c; /* put back for error messages */
5424 *arg = option_end;
5425
5426 return ret;
5427}
5428
5429/*
5430 * Allocate a variable for a string constant.
5431 * Return OK or FAIL.
5432 */
5433 static int
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005434get_string_tv(arg, rettv, evaluate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005435 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00005436 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005437 int evaluate;
5438{
5439 char_u *p;
5440 char_u *name;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005441 int extra = 0;
5442
5443 /*
5444 * Find the end of the string, skipping backslashed characters.
5445 */
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005446 for (p = *arg + 1; *p != NUL && *p != '"'; mb_ptr_adv(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005447 {
5448 if (*p == '\\' && p[1] != NUL)
5449 {
5450 ++p;
5451 /* A "\<x>" form occupies at least 4 characters, and produces up
5452 * to 6 characters: reserve space for 2 extra */
5453 if (*p == '<')
5454 extra += 2;
5455 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005456 }
5457
5458 if (*p != '"')
5459 {
5460 EMSG2(_("E114: Missing quote: %s"), *arg);
5461 return FAIL;
5462 }
5463
5464 /* If only parsing, set *arg and return here */
5465 if (!evaluate)
5466 {
5467 *arg = p + 1;
5468 return OK;
5469 }
5470
5471 /*
5472 * Copy the string into allocated memory, handling backslashed
5473 * characters.
5474 */
5475 name = alloc((unsigned)(p - *arg + extra));
5476 if (name == NULL)
5477 return FAIL;
Bram Moolenaar8c711452005-01-14 21:53:12 +00005478 rettv->v_type = VAR_STRING;
5479 rettv->vval.v_string = name;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005480
Bram Moolenaar8c711452005-01-14 21:53:12 +00005481 for (p = *arg + 1; *p != NUL && *p != '"'; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00005482 {
5483 if (*p == '\\')
5484 {
5485 switch (*++p)
5486 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005487 case 'b': *name++ = BS; ++p; break;
5488 case 'e': *name++ = ESC; ++p; break;
5489 case 'f': *name++ = FF; ++p; break;
5490 case 'n': *name++ = NL; ++p; break;
5491 case 'r': *name++ = CAR; ++p; break;
5492 case 't': *name++ = TAB; ++p; break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005493
5494 case 'X': /* hex: "\x1", "\x12" */
5495 case 'x':
5496 case 'u': /* Unicode: "\u0023" */
5497 case 'U':
5498 if (vim_isxdigit(p[1]))
5499 {
5500 int n, nr;
5501 int c = toupper(*p);
5502
5503 if (c == 'X')
5504 n = 2;
5505 else
5506 n = 4;
5507 nr = 0;
5508 while (--n >= 0 && vim_isxdigit(p[1]))
5509 {
5510 ++p;
5511 nr = (nr << 4) + hex2nr(*p);
5512 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00005513 ++p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005514#ifdef FEAT_MBYTE
5515 /* For "\u" store the number according to
5516 * 'encoding'. */
5517 if (c != 'X')
Bram Moolenaar8c711452005-01-14 21:53:12 +00005518 name += (*mb_char2bytes)(nr, name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005519 else
5520#endif
Bram Moolenaar8c711452005-01-14 21:53:12 +00005521 *name++ = nr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005522 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005523 break;
5524
5525 /* octal: "\1", "\12", "\123" */
5526 case '0':
5527 case '1':
5528 case '2':
5529 case '3':
5530 case '4':
5531 case '5':
5532 case '6':
Bram Moolenaar8c711452005-01-14 21:53:12 +00005533 case '7': *name = *p++ - '0';
5534 if (*p >= '0' && *p <= '7')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005535 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005536 *name = (*name << 3) + *p++ - '0';
5537 if (*p >= '0' && *p <= '7')
5538 *name = (*name << 3) + *p++ - '0';
Bram Moolenaar071d4272004-06-13 20:20:40 +00005539 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00005540 ++name;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005541 break;
5542
5543 /* Special key, e.g.: "\<C-W>" */
Bram Moolenaar8c711452005-01-14 21:53:12 +00005544 case '<': extra = trans_special(&p, name, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005545 if (extra != 0)
5546 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005547 name += extra;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005548 break;
5549 }
5550 /* FALLTHROUGH */
5551
Bram Moolenaar8c711452005-01-14 21:53:12 +00005552 default: MB_COPY_CHAR(p, name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005553 break;
5554 }
5555 }
5556 else
Bram Moolenaar8c711452005-01-14 21:53:12 +00005557 MB_COPY_CHAR(p, name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005558
Bram Moolenaar071d4272004-06-13 20:20:40 +00005559 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00005560 *name = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005561 *arg = p + 1;
5562
Bram Moolenaar071d4272004-06-13 20:20:40 +00005563 return OK;
5564}
5565
5566/*
Bram Moolenaar8c711452005-01-14 21:53:12 +00005567 * Allocate a variable for a 'str''ing' constant.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005568 * Return OK or FAIL.
5569 */
5570 static int
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005571get_lit_string_tv(arg, rettv, evaluate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005572 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00005573 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005574 int evaluate;
5575{
5576 char_u *p;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005577 char_u *str;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005578 int reduce = 0;
5579
5580 /*
Bram Moolenaar8c711452005-01-14 21:53:12 +00005581 * Find the end of the string, skipping ''.
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005582 */
5583 for (p = *arg + 1; *p != NUL; mb_ptr_adv(p))
5584 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005585 if (*p == '\'')
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005586 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005587 if (p[1] != '\'')
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005588 break;
5589 ++reduce;
5590 ++p;
5591 }
5592 }
5593
Bram Moolenaar8c711452005-01-14 21:53:12 +00005594 if (*p != '\'')
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005595 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005596 EMSG2(_("E115: Missing quote: %s"), *arg);
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005597 return FAIL;
5598 }
5599
Bram Moolenaar8c711452005-01-14 21:53:12 +00005600 /* If only parsing return after setting "*arg" */
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005601 if (!evaluate)
5602 {
5603 *arg = p + 1;
5604 return OK;
5605 }
5606
5607 /*
Bram Moolenaar8c711452005-01-14 21:53:12 +00005608 * Copy the string into allocated memory, handling '' to ' reduction.
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005609 */
5610 str = alloc((unsigned)((p - *arg) - reduce));
5611 if (str == NULL)
5612 return FAIL;
Bram Moolenaar8c711452005-01-14 21:53:12 +00005613 rettv->v_type = VAR_STRING;
5614 rettv->vval.v_string = str;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005615
Bram Moolenaar8c711452005-01-14 21:53:12 +00005616 for (p = *arg + 1; *p != NUL; )
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005617 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005618 if (*p == '\'')
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005619 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005620 if (p[1] != '\'')
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005621 break;
5622 ++p;
5623 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00005624 MB_COPY_CHAR(p, str);
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005625 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00005626 *str = NUL;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005627 *arg = p + 1;
5628
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005629 return OK;
5630}
5631
5632/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005633 * Allocate a variable for a List and fill it from "*arg".
5634 * Return OK or FAIL.
5635 */
5636 static int
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005637get_list_tv(arg, rettv, evaluate)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005638 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00005639 typval_T *rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005640 int evaluate;
5641{
Bram Moolenaar33570922005-01-25 22:26:29 +00005642 list_T *l = NULL;
5643 typval_T tv;
5644 listitem_T *item;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005645
5646 if (evaluate)
5647 {
5648 l = list_alloc();
5649 if (l == NULL)
5650 return FAIL;
5651 }
5652
5653 *arg = skipwhite(*arg + 1);
5654 while (**arg != ']' && **arg != NUL)
5655 {
5656 if (eval1(arg, &tv, evaluate) == FAIL) /* recursive! */
5657 goto failret;
5658 if (evaluate)
5659 {
5660 item = listitem_alloc();
5661 if (item != NULL)
5662 {
5663 item->li_tv = tv;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00005664 item->li_tv.v_lock = 0;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005665 list_append(l, item);
5666 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00005667 else
5668 clear_tv(&tv);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005669 }
5670
5671 if (**arg == ']')
5672 break;
5673 if (**arg != ',')
5674 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005675 EMSG2(_("E696: Missing comma in List: %s"), *arg);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005676 goto failret;
5677 }
5678 *arg = skipwhite(*arg + 1);
5679 }
5680
5681 if (**arg != ']')
5682 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005683 EMSG2(_("E697: Missing end of List ']': %s"), *arg);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005684failret:
5685 if (evaluate)
Bram Moolenaar685295c2006-10-15 20:37:38 +00005686 list_free(l, TRUE);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005687 return FAIL;
5688 }
5689
5690 *arg = skipwhite(*arg + 1);
5691 if (evaluate)
5692 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005693 rettv->v_type = VAR_LIST;
5694 rettv->vval.v_list = l;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005695 ++l->lv_refcount;
5696 }
5697
5698 return OK;
5699}
5700
5701/*
5702 * Allocate an empty header for a list.
Bram Moolenaard43b6cf2005-09-09 19:53:42 +00005703 * Caller should take care of the reference count.
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005704 */
Bram Moolenaar1ef15e32006-02-01 21:56:25 +00005705 list_T *
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005706list_alloc()
5707{
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00005708 list_T *l;
5709
5710 l = (list_T *)alloc_clear(sizeof(list_T));
5711 if (l != NULL)
5712 {
5713 /* Prepend the list to the list of lists for garbage collection. */
5714 if (first_list != NULL)
5715 first_list->lv_used_prev = l;
5716 l->lv_used_prev = NULL;
5717 l->lv_used_next = first_list;
5718 first_list = l;
5719 }
5720 return l;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005721}
5722
5723/*
Bram Moolenaareddf53b2006-02-27 00:11:10 +00005724 * Allocate an empty list for a return value.
5725 * Returns OK or FAIL.
5726 */
5727 static int
5728rettv_list_alloc(rettv)
5729 typval_T *rettv;
5730{
5731 list_T *l = list_alloc();
5732
5733 if (l == NULL)
5734 return FAIL;
5735
5736 rettv->vval.v_list = l;
5737 rettv->v_type = VAR_LIST;
5738 ++l->lv_refcount;
5739 return OK;
5740}
5741
5742/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005743 * Unreference a list: decrement the reference count and free it when it
5744 * becomes zero.
5745 */
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00005746 void
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005747list_unref(l)
Bram Moolenaar33570922005-01-25 22:26:29 +00005748 list_T *l;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005749{
Bram Moolenaar685295c2006-10-15 20:37:38 +00005750 if (l != NULL && --l->lv_refcount <= 0)
5751 list_free(l, TRUE);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005752}
5753
5754/*
5755 * Free a list, including all items it points to.
5756 * Ignores the reference count.
5757 */
Bram Moolenaar1ef15e32006-02-01 21:56:25 +00005758 void
Bram Moolenaar685295c2006-10-15 20:37:38 +00005759list_free(l, recurse)
5760 list_T *l;
5761 int recurse; /* Free Lists and Dictionaries recursively. */
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005762{
Bram Moolenaar33570922005-01-25 22:26:29 +00005763 listitem_T *item;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005764
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00005765 /* Remove the list from the list of lists for garbage collection. */
5766 if (l->lv_used_prev == NULL)
5767 first_list = l->lv_used_next;
5768 else
5769 l->lv_used_prev->lv_used_next = l->lv_used_next;
5770 if (l->lv_used_next != NULL)
5771 l->lv_used_next->lv_used_prev = l->lv_used_prev;
5772
Bram Moolenaard9fba312005-06-26 22:34:35 +00005773 for (item = l->lv_first; item != NULL; item = l->lv_first)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005774 {
Bram Moolenaard9fba312005-06-26 22:34:35 +00005775 /* Remove the item before deleting it. */
5776 l->lv_first = item->li_next;
Bram Moolenaar685295c2006-10-15 20:37:38 +00005777 if (recurse || (item->li_tv.v_type != VAR_LIST
5778 && item->li_tv.v_type != VAR_DICT))
5779 clear_tv(&item->li_tv);
5780 vim_free(item);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005781 }
5782 vim_free(l);
5783}
5784
5785/*
5786 * Allocate a list item.
5787 */
Bram Moolenaar33570922005-01-25 22:26:29 +00005788 static listitem_T *
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005789listitem_alloc()
5790{
Bram Moolenaar33570922005-01-25 22:26:29 +00005791 return (listitem_T *)alloc(sizeof(listitem_T));
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005792}
5793
5794/*
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00005795 * Free a list item. Also clears the value. Does not notify watchers.
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005796 */
5797 static void
5798listitem_free(item)
Bram Moolenaar33570922005-01-25 22:26:29 +00005799 listitem_T *item;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005800{
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005801 clear_tv(&item->li_tv);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005802 vim_free(item);
5803}
5804
5805/*
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00005806 * Remove a list item from a List and free it. Also clears the value.
5807 */
5808 static void
5809listitem_remove(l, item)
Bram Moolenaar33570922005-01-25 22:26:29 +00005810 list_T *l;
5811 listitem_T *item;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00005812{
5813 list_remove(l, item, item);
5814 listitem_free(item);
5815}
5816
5817/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005818 * Get the number of items in a list.
5819 */
5820 static long
5821list_len(l)
Bram Moolenaar33570922005-01-25 22:26:29 +00005822 list_T *l;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005823{
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005824 if (l == NULL)
5825 return 0L;
Bram Moolenaar758711c2005-02-02 23:11:38 +00005826 return l->lv_len;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005827}
5828
5829/*
Bram Moolenaar8a283e52005-01-06 23:28:25 +00005830 * Return TRUE when two lists have exactly the same values.
5831 */
5832 static int
5833list_equal(l1, l2, ic)
Bram Moolenaar33570922005-01-25 22:26:29 +00005834 list_T *l1;
5835 list_T *l2;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00005836 int ic; /* ignore case for strings */
5837{
Bram Moolenaar33570922005-01-25 22:26:29 +00005838 listitem_T *item1, *item2;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00005839
Bram Moolenaar9bf749b2008-07-27 13:57:29 +00005840 if (l1 == NULL || l2 == NULL)
5841 return FALSE;
Bram Moolenaar8b402a02006-10-17 13:16:39 +00005842 if (l1 == l2)
5843 return TRUE;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00005844 if (list_len(l1) != list_len(l2))
5845 return FALSE;
5846
Bram Moolenaar8a283e52005-01-06 23:28:25 +00005847 for (item1 = l1->lv_first, item2 = l2->lv_first;
5848 item1 != NULL && item2 != NULL;
5849 item1 = item1->li_next, item2 = item2->li_next)
5850 if (!tv_equal(&item1->li_tv, &item2->li_tv, ic))
5851 return FALSE;
5852 return item1 == NULL && item2 == NULL;
5853}
5854
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00005855#if defined(FEAT_PYTHON) || defined(PROTO)
5856/*
5857 * Return the dictitem that an entry in a hashtable points to.
5858 */
5859 dictitem_T *
5860dict_lookup(hi)
5861 hashitem_T *hi;
5862{
5863 return HI2DI(hi);
5864}
5865#endif
5866
Bram Moolenaar8a283e52005-01-06 23:28:25 +00005867/*
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00005868 * Return TRUE when two dictionaries have exactly the same key/values.
5869 */
5870 static int
5871dict_equal(d1, d2, ic)
Bram Moolenaar33570922005-01-25 22:26:29 +00005872 dict_T *d1;
5873 dict_T *d2;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00005874 int ic; /* ignore case for strings */
5875{
Bram Moolenaar33570922005-01-25 22:26:29 +00005876 hashitem_T *hi;
5877 dictitem_T *item2;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00005878 int todo;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00005879
Bram Moolenaar9bf749b2008-07-27 13:57:29 +00005880 if (d1 == NULL || d2 == NULL)
5881 return FALSE;
Bram Moolenaar8b402a02006-10-17 13:16:39 +00005882 if (d1 == d2)
5883 return TRUE;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00005884 if (dict_len(d1) != dict_len(d2))
5885 return FALSE;
5886
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005887 todo = (int)d1->dv_hashtab.ht_used;
Bram Moolenaar33570922005-01-25 22:26:29 +00005888 for (hi = d1->dv_hashtab.ht_array; todo > 0; ++hi)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00005889 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00005890 if (!HASHITEM_EMPTY(hi))
5891 {
5892 item2 = dict_find(d2, hi->hi_key, -1);
5893 if (item2 == NULL)
5894 return FALSE;
5895 if (!tv_equal(&HI2DI(hi)->di_tv, &item2->di_tv, ic))
5896 return FALSE;
5897 --todo;
5898 }
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00005899 }
5900 return TRUE;
5901}
5902
5903/*
Bram Moolenaar8a283e52005-01-06 23:28:25 +00005904 * Return TRUE if "tv1" and "tv2" have the same value.
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +00005905 * Compares the items just like "==" would compare them, but strings and
Bram Moolenaar8c8de832008-06-24 22:58:06 +00005906 * numbers are different. Floats and numbers are also different.
Bram Moolenaar8a283e52005-01-06 23:28:25 +00005907 */
5908 static int
5909tv_equal(tv1, tv2, ic)
Bram Moolenaar33570922005-01-25 22:26:29 +00005910 typval_T *tv1;
5911 typval_T *tv2;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00005912 int ic; /* ignore case */
5913{
5914 char_u buf1[NUMBUFLEN], buf2[NUMBUFLEN];
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005915 char_u *s1, *s2;
Bram Moolenaarb47a2402006-10-15 13:09:12 +00005916 static int recursive = 0; /* cach recursive loops */
5917 int r;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00005918
Bram Moolenaar8b402a02006-10-17 13:16:39 +00005919 if (tv1->v_type != tv2->v_type)
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +00005920 return FALSE;
Bram Moolenaar8b402a02006-10-17 13:16:39 +00005921 /* Catch lists and dicts that have an endless loop by limiting
5922 * recursiveness to 1000. We guess they are equal then. */
5923 if (recursive >= 1000)
5924 return TRUE;
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +00005925
5926 switch (tv1->v_type)
Bram Moolenaar8a283e52005-01-06 23:28:25 +00005927 {
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +00005928 case VAR_LIST:
Bram Moolenaarb47a2402006-10-15 13:09:12 +00005929 ++recursive;
5930 r = list_equal(tv1->vval.v_list, tv2->vval.v_list, ic);
5931 --recursive;
5932 return r;
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +00005933
5934 case VAR_DICT:
Bram Moolenaarb47a2402006-10-15 13:09:12 +00005935 ++recursive;
5936 r = dict_equal(tv1->vval.v_dict, tv2->vval.v_dict, ic);
5937 --recursive;
5938 return r;
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +00005939
5940 case VAR_FUNC:
5941 return (tv1->vval.v_string != NULL
5942 && tv2->vval.v_string != NULL
5943 && STRCMP(tv1->vval.v_string, tv2->vval.v_string) == 0);
5944
5945 case VAR_NUMBER:
5946 return tv1->vval.v_number == tv2->vval.v_number;
5947
Bram Moolenaar8c8de832008-06-24 22:58:06 +00005948#ifdef FEAT_FLOAT
5949 case VAR_FLOAT:
5950 return tv1->vval.v_float == tv2->vval.v_float;
5951#endif
5952
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +00005953 case VAR_STRING:
5954 s1 = get_tv_string_buf(tv1, buf1);
5955 s2 = get_tv_string_buf(tv2, buf2);
5956 return ((ic ? MB_STRICMP(s1, s2) : STRCMP(s1, s2)) == 0);
Bram Moolenaar8a283e52005-01-06 23:28:25 +00005957 }
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +00005958
5959 EMSG2(_(e_intern2), "tv_equal()");
Bram Moolenaar8a283e52005-01-06 23:28:25 +00005960 return TRUE;
5961}
5962
5963/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005964 * Locate item with index "n" in list "l" and return it.
5965 * A negative index is counted from the end; -1 is the last item.
5966 * Returns NULL when "n" is out of range.
5967 */
Bram Moolenaar33570922005-01-25 22:26:29 +00005968 static listitem_T *
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005969list_find(l, n)
Bram Moolenaar33570922005-01-25 22:26:29 +00005970 list_T *l;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005971 long n;
5972{
Bram Moolenaar33570922005-01-25 22:26:29 +00005973 listitem_T *item;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005974 long idx;
5975
5976 if (l == NULL)
5977 return NULL;
Bram Moolenaar758711c2005-02-02 23:11:38 +00005978
5979 /* Negative index is relative to the end. */
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005980 if (n < 0)
Bram Moolenaar758711c2005-02-02 23:11:38 +00005981 n = l->lv_len + n;
5982
5983 /* Check for index out of range. */
5984 if (n < 0 || n >= l->lv_len)
5985 return NULL;
5986
5987 /* When there is a cached index may start search from there. */
5988 if (l->lv_idx_item != NULL)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005989 {
Bram Moolenaar758711c2005-02-02 23:11:38 +00005990 if (n < l->lv_idx / 2)
5991 {
5992 /* closest to the start of the list */
5993 item = l->lv_first;
5994 idx = 0;
5995 }
5996 else if (n > (l->lv_idx + l->lv_len) / 2)
5997 {
5998 /* closest to the end of the list */
5999 item = l->lv_last;
6000 idx = l->lv_len - 1;
6001 }
6002 else
6003 {
6004 /* closest to the cached index */
6005 item = l->lv_idx_item;
6006 idx = l->lv_idx;
6007 }
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006008 }
6009 else
6010 {
Bram Moolenaar758711c2005-02-02 23:11:38 +00006011 if (n < l->lv_len / 2)
6012 {
6013 /* closest to the start of the list */
6014 item = l->lv_first;
6015 idx = 0;
6016 }
6017 else
6018 {
6019 /* closest to the end of the list */
6020 item = l->lv_last;
6021 idx = l->lv_len - 1;
6022 }
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006023 }
Bram Moolenaar758711c2005-02-02 23:11:38 +00006024
6025 while (n > idx)
6026 {
6027 /* search forward */
6028 item = item->li_next;
6029 ++idx;
6030 }
6031 while (n < idx)
6032 {
6033 /* search backward */
6034 item = item->li_prev;
6035 --idx;
6036 }
6037
6038 /* cache the used index */
6039 l->lv_idx = idx;
6040 l->lv_idx_item = item;
6041
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006042 return item;
6043}
6044
6045/*
Bram Moolenaara5525202006-03-02 22:52:09 +00006046 * Get list item "l[idx]" as a number.
6047 */
6048 static long
6049list_find_nr(l, idx, errorp)
6050 list_T *l;
6051 long idx;
6052 int *errorp; /* set to TRUE when something wrong */
6053{
6054 listitem_T *li;
6055
6056 li = list_find(l, idx);
6057 if (li == NULL)
6058 {
6059 if (errorp != NULL)
6060 *errorp = TRUE;
6061 return -1L;
6062 }
6063 return get_tv_number_chk(&li->li_tv, errorp);
6064}
6065
6066/*
Bram Moolenaard812df62008-11-09 12:46:09 +00006067 * Get list item "l[idx - 1]" as a string. Returns NULL for failure.
6068 */
6069 char_u *
6070list_find_str(l, idx)
6071 list_T *l;
6072 long idx;
6073{
6074 listitem_T *li;
6075
6076 li = list_find(l, idx - 1);
6077 if (li == NULL)
6078 {
6079 EMSGN(_(e_listidx), idx);
6080 return NULL;
6081 }
6082 return get_tv_string(&li->li_tv);
6083}
6084
6085/*
Bram Moolenaar6cc16192005-01-08 21:49:45 +00006086 * Locate "item" list "l" and return its index.
6087 * Returns -1 when "item" is not in the list.
6088 */
6089 static long
6090list_idx_of_item(l, item)
Bram Moolenaar33570922005-01-25 22:26:29 +00006091 list_T *l;
6092 listitem_T *item;
Bram Moolenaar6cc16192005-01-08 21:49:45 +00006093{
6094 long idx = 0;
Bram Moolenaar33570922005-01-25 22:26:29 +00006095 listitem_T *li;
Bram Moolenaar6cc16192005-01-08 21:49:45 +00006096
6097 if (l == NULL)
6098 return -1;
6099 idx = 0;
6100 for (li = l->lv_first; li != NULL && li != item; li = li->li_next)
6101 ++idx;
6102 if (li == NULL)
6103 return -1;
Bram Moolenaar75c50c42005-06-04 22:06:24 +00006104 return idx;
Bram Moolenaar6cc16192005-01-08 21:49:45 +00006105}
6106
6107/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006108 * Append item "item" to the end of list "l".
6109 */
6110 static void
6111list_append(l, item)
Bram Moolenaar33570922005-01-25 22:26:29 +00006112 list_T *l;
6113 listitem_T *item;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006114{
6115 if (l->lv_last == NULL)
6116 {
6117 /* empty list */
6118 l->lv_first = item;
6119 l->lv_last = item;
6120 item->li_prev = NULL;
6121 }
6122 else
6123 {
6124 l->lv_last->li_next = item;
6125 item->li_prev = l->lv_last;
6126 l->lv_last = item;
6127 }
Bram Moolenaar758711c2005-02-02 23:11:38 +00006128 ++l->lv_len;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006129 item->li_next = NULL;
6130}
6131
6132/*
Bram Moolenaar33570922005-01-25 22:26:29 +00006133 * Append typval_T "tv" to the end of list "l".
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006134 * Return FAIL when out of memory.
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006135 */
6136 static int
6137list_append_tv(l, tv)
Bram Moolenaar33570922005-01-25 22:26:29 +00006138 list_T *l;
6139 typval_T *tv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006140{
Bram Moolenaar05159a02005-02-26 23:04:13 +00006141 listitem_T *li = listitem_alloc();
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006142
Bram Moolenaar05159a02005-02-26 23:04:13 +00006143 if (li == NULL)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006144 return FAIL;
Bram Moolenaar05159a02005-02-26 23:04:13 +00006145 copy_tv(tv, &li->li_tv);
6146 list_append(l, li);
6147 return OK;
6148}
6149
6150/*
Bram Moolenaar2641f772005-03-25 21:58:17 +00006151 * Add a dictionary to a list. Used by getqflist().
Bram Moolenaar05159a02005-02-26 23:04:13 +00006152 * Return FAIL when out of memory.
6153 */
6154 int
6155list_append_dict(list, dict)
6156 list_T *list;
6157 dict_T *dict;
6158{
6159 listitem_T *li = listitem_alloc();
6160
6161 if (li == NULL)
6162 return FAIL;
6163 li->li_tv.v_type = VAR_DICT;
6164 li->li_tv.v_lock = 0;
6165 li->li_tv.vval.v_dict = dict;
6166 list_append(list, li);
6167 ++dict->dv_refcount;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006168 return OK;
6169}
6170
6171/*
Bram Moolenaard43b6cf2005-09-09 19:53:42 +00006172 * Make a copy of "str" and append it as an item to list "l".
Bram Moolenaar4463f292005-09-25 22:20:24 +00006173 * When "len" >= 0 use "str[len]".
Bram Moolenaard43b6cf2005-09-09 19:53:42 +00006174 * Returns FAIL when out of memory.
6175 */
Bram Moolenaard812df62008-11-09 12:46:09 +00006176 int
Bram Moolenaar4463f292005-09-25 22:20:24 +00006177list_append_string(l, str, len)
Bram Moolenaard43b6cf2005-09-09 19:53:42 +00006178 list_T *l;
6179 char_u *str;
Bram Moolenaar4463f292005-09-25 22:20:24 +00006180 int len;
Bram Moolenaard43b6cf2005-09-09 19:53:42 +00006181{
6182 listitem_T *li = listitem_alloc();
6183
6184 if (li == NULL)
6185 return FAIL;
6186 list_append(l, li);
6187 li->li_tv.v_type = VAR_STRING;
6188 li->li_tv.v_lock = 0;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006189 if (str == NULL)
6190 li->li_tv.vval.v_string = NULL;
6191 else if ((li->li_tv.vval.v_string = (len >= 0 ? vim_strnsave(str, len)
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00006192 : vim_strsave(str))) == NULL)
Bram Moolenaard43b6cf2005-09-09 19:53:42 +00006193 return FAIL;
6194 return OK;
6195}
6196
6197/*
Bram Moolenaar4463f292005-09-25 22:20:24 +00006198 * Append "n" to list "l".
6199 * Returns FAIL when out of memory.
6200 */
6201 static int
6202list_append_number(l, n)
6203 list_T *l;
6204 varnumber_T n;
6205{
6206 listitem_T *li;
6207
6208 li = listitem_alloc();
6209 if (li == NULL)
6210 return FAIL;
6211 li->li_tv.v_type = VAR_NUMBER;
6212 li->li_tv.v_lock = 0;
6213 li->li_tv.vval.v_number = n;
6214 list_append(l, li);
6215 return OK;
6216}
6217
6218/*
Bram Moolenaar33570922005-01-25 22:26:29 +00006219 * Insert typval_T "tv" in list "l" before "item".
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006220 * If "item" is NULL append at the end.
6221 * Return FAIL when out of memory.
6222 */
6223 static int
6224list_insert_tv(l, tv, item)
Bram Moolenaar33570922005-01-25 22:26:29 +00006225 list_T *l;
6226 typval_T *tv;
6227 listitem_T *item;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006228{
Bram Moolenaar33570922005-01-25 22:26:29 +00006229 listitem_T *ni = listitem_alloc();
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006230
6231 if (ni == NULL)
6232 return FAIL;
6233 copy_tv(tv, &ni->li_tv);
6234 if (item == NULL)
6235 /* Append new item at end of list. */
6236 list_append(l, ni);
6237 else
6238 {
6239 /* Insert new item before existing item. */
6240 ni->li_prev = item->li_prev;
6241 ni->li_next = item;
6242 if (item->li_prev == NULL)
Bram Moolenaar758711c2005-02-02 23:11:38 +00006243 {
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006244 l->lv_first = ni;
Bram Moolenaar758711c2005-02-02 23:11:38 +00006245 ++l->lv_idx;
6246 }
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006247 else
Bram Moolenaar758711c2005-02-02 23:11:38 +00006248 {
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006249 item->li_prev->li_next = ni;
Bram Moolenaar758711c2005-02-02 23:11:38 +00006250 l->lv_idx_item = NULL;
6251 }
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006252 item->li_prev = ni;
Bram Moolenaar758711c2005-02-02 23:11:38 +00006253 ++l->lv_len;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006254 }
6255 return OK;
6256}
6257
6258/*
6259 * Extend "l1" with "l2".
6260 * If "bef" is NULL append at the end, otherwise insert before this item.
6261 * Returns FAIL when out of memory.
6262 */
6263 static int
6264list_extend(l1, l2, bef)
Bram Moolenaar33570922005-01-25 22:26:29 +00006265 list_T *l1;
6266 list_T *l2;
6267 listitem_T *bef;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006268{
Bram Moolenaar33570922005-01-25 22:26:29 +00006269 listitem_T *item;
Bram Moolenaardc9cf9c2008-08-08 10:36:31 +00006270 int todo = l2->lv_len;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006271
Bram Moolenaardc9cf9c2008-08-08 10:36:31 +00006272 /* We also quit the loop when we have inserted the original item count of
6273 * the list, avoid a hang when we extend a list with itself. */
6274 for (item = l2->lv_first; item != NULL && --todo >= 0; item = item->li_next)
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006275 if (list_insert_tv(l1, &item->li_tv, bef) == FAIL)
6276 return FAIL;
6277 return OK;
6278}
6279
6280/*
6281 * Concatenate lists "l1" and "l2" into a new list, stored in "tv".
6282 * Return FAIL when out of memory.
6283 */
6284 static int
6285list_concat(l1, l2, tv)
Bram Moolenaar33570922005-01-25 22:26:29 +00006286 list_T *l1;
6287 list_T *l2;
6288 typval_T *tv;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006289{
Bram Moolenaar33570922005-01-25 22:26:29 +00006290 list_T *l;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006291
Bram Moolenaar9bf749b2008-07-27 13:57:29 +00006292 if (l1 == NULL || l2 == NULL)
6293 return FAIL;
6294
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006295 /* make a copy of the first list. */
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006296 l = list_copy(l1, FALSE, 0);
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006297 if (l == NULL)
6298 return FAIL;
6299 tv->v_type = VAR_LIST;
6300 tv->vval.v_list = l;
6301
6302 /* append all items from the second list */
6303 return list_extend(l, l2, NULL);
6304}
6305
6306/*
Bram Moolenaare9a41262005-01-15 22:18:47 +00006307 * Make a copy of list "orig". Shallow if "deep" is FALSE.
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006308 * The refcount of the new list is set to 1.
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006309 * See item_copy() for "copyID".
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006310 * Returns NULL when out of memory.
6311 */
Bram Moolenaar33570922005-01-25 22:26:29 +00006312 static list_T *
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006313list_copy(orig, deep, copyID)
Bram Moolenaar33570922005-01-25 22:26:29 +00006314 list_T *orig;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006315 int deep;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006316 int copyID;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006317{
Bram Moolenaar33570922005-01-25 22:26:29 +00006318 list_T *copy;
6319 listitem_T *item;
6320 listitem_T *ni;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006321
6322 if (orig == NULL)
6323 return NULL;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006324
6325 copy = list_alloc();
6326 if (copy != NULL)
6327 {
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006328 if (copyID != 0)
6329 {
6330 /* Do this before adding the items, because one of the items may
6331 * refer back to this list. */
6332 orig->lv_copyID = copyID;
6333 orig->lv_copylist = copy;
6334 }
6335 for (item = orig->lv_first; item != NULL && !got_int;
6336 item = item->li_next)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006337 {
6338 ni = listitem_alloc();
6339 if (ni == NULL)
6340 break;
Bram Moolenaare9a41262005-01-15 22:18:47 +00006341 if (deep)
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006342 {
6343 if (item_copy(&item->li_tv, &ni->li_tv, deep, copyID) == FAIL)
6344 {
6345 vim_free(ni);
6346 break;
6347 }
6348 }
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006349 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +00006350 copy_tv(&item->li_tv, &ni->li_tv);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006351 list_append(copy, ni);
6352 }
6353 ++copy->lv_refcount;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006354 if (item != NULL)
6355 {
6356 list_unref(copy);
6357 copy = NULL;
6358 }
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006359 }
6360
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006361 return copy;
6362}
6363
6364/*
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006365 * Remove items "item" to "item2" from list "l".
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00006366 * Does not free the listitem or the value!
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006367 */
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006368 static void
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00006369list_remove(l, item, item2)
Bram Moolenaar33570922005-01-25 22:26:29 +00006370 list_T *l;
6371 listitem_T *item;
6372 listitem_T *item2;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006373{
Bram Moolenaar33570922005-01-25 22:26:29 +00006374 listitem_T *ip;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006375
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006376 /* notify watchers */
6377 for (ip = item; ip != NULL; ip = ip->li_next)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006378 {
Bram Moolenaar758711c2005-02-02 23:11:38 +00006379 --l->lv_len;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006380 list_fix_watch(l, ip);
6381 if (ip == item2)
6382 break;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006383 }
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006384
6385 if (item2->li_next == NULL)
6386 l->lv_last = item->li_prev;
6387 else
6388 item2->li_next->li_prev = item->li_prev;
6389 if (item->li_prev == NULL)
6390 l->lv_first = item2->li_next;
6391 else
6392 item->li_prev->li_next = item2->li_next;
Bram Moolenaar758711c2005-02-02 23:11:38 +00006393 l->lv_idx_item = NULL;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006394}
6395
6396/*
6397 * Return an allocated string with the string representation of a list.
6398 * May return NULL.
6399 */
6400 static char_u *
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00006401list2string(tv, copyID)
Bram Moolenaar33570922005-01-25 22:26:29 +00006402 typval_T *tv;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00006403 int copyID;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006404{
6405 garray_T ga;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006406
6407 if (tv->vval.v_list == NULL)
6408 return NULL;
6409 ga_init2(&ga, (int)sizeof(char), 80);
6410 ga_append(&ga, '[');
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00006411 if (list_join(&ga, tv->vval.v_list, (char_u *)", ", FALSE, copyID) == FAIL)
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006412 {
6413 vim_free(ga.ga_data);
6414 return NULL;
6415 }
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006416 ga_append(&ga, ']');
6417 ga_append(&ga, NUL);
6418 return (char_u *)ga.ga_data;
6419}
6420
6421/*
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00006422 * Join list "l" into a string in "*gap", using separator "sep".
6423 * When "echo" is TRUE use String as echoed, otherwise as inside a List.
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006424 * Return FAIL or OK.
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00006425 */
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006426 static int
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00006427list_join(gap, l, sep, echo, copyID)
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00006428 garray_T *gap;
Bram Moolenaar33570922005-01-25 22:26:29 +00006429 list_T *l;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00006430 char_u *sep;
6431 int echo;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00006432 int copyID;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00006433{
6434 int first = TRUE;
6435 char_u *tofree;
6436 char_u numbuf[NUMBUFLEN];
Bram Moolenaar33570922005-01-25 22:26:29 +00006437 listitem_T *item;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00006438 char_u *s;
6439
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006440 for (item = l->lv_first; item != NULL && !got_int; item = item->li_next)
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00006441 {
6442 if (first)
6443 first = FALSE;
6444 else
6445 ga_concat(gap, sep);
6446
6447 if (echo)
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00006448 s = echo_string(&item->li_tv, &tofree, numbuf, copyID);
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00006449 else
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00006450 s = tv2string(&item->li_tv, &tofree, numbuf, copyID);
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00006451 if (s != NULL)
6452 ga_concat(gap, s);
6453 vim_free(tofree);
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006454 if (s == NULL)
6455 return FAIL;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00006456 }
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006457 return OK;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00006458}
6459
6460/*
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006461 * Garbage collection for lists and dictionaries.
6462 *
6463 * We use reference counts to be able to free most items right away when they
6464 * are no longer used. But for composite items it's possible that it becomes
6465 * unused while the reference count is > 0: When there is a recursive
6466 * reference. Example:
6467 * :let l = [1, 2, 3]
6468 * :let d = {9: l}
6469 * :let l[1] = d
6470 *
6471 * Since this is quite unusual we handle this with garbage collection: every
6472 * once in a while find out which lists and dicts are not referenced from any
6473 * variable.
6474 *
6475 * Here is a good reference text about garbage collection (refers to Python
6476 * but it applies to all reference-counting mechanisms):
6477 * http://python.ca/nas/python/gc/
Bram Moolenaard9fba312005-06-26 22:34:35 +00006478 */
Bram Moolenaard9fba312005-06-26 22:34:35 +00006479
6480/*
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006481 * Do garbage collection for lists and dicts.
6482 * Return TRUE if some memory was freed.
Bram Moolenaard9fba312005-06-26 22:34:35 +00006483 */
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006484 int
6485garbage_collect()
Bram Moolenaard9fba312005-06-26 22:34:35 +00006486{
6487 dict_T *dd;
6488 list_T *ll;
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006489 int copyID = ++current_copyID;
6490 buf_T *buf;
6491 win_T *wp;
6492 int i;
6493 funccall_T *fc;
6494 int did_free = FALSE;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006495#ifdef FEAT_WINDOWS
6496 tabpage_T *tp;
6497#endif
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006498
Bram Moolenaar9fecb462006-09-05 10:59:47 +00006499 /* Only do this once. */
6500 want_garbage_collect = FALSE;
6501 may_garbage_collect = FALSE;
Bram Moolenaar9d2c8c12007-09-25 16:00:00 +00006502 garbage_collect_at_exit = FALSE;
Bram Moolenaar9fecb462006-09-05 10:59:47 +00006503
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006504 /*
6505 * 1. Go through all accessible variables and mark all lists and dicts
6506 * with copyID.
6507 */
6508 /* script-local variables */
6509 for (i = 1; i <= ga_scripts.ga_len; ++i)
6510 set_ref_in_ht(&SCRIPT_VARS(i), copyID);
6511
6512 /* buffer-local variables */
6513 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
6514 set_ref_in_ht(&buf->b_vars.dv_hashtab, copyID);
6515
6516 /* window-local variables */
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006517 FOR_ALL_TAB_WINDOWS(tp, wp)
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006518 set_ref_in_ht(&wp->w_vars.dv_hashtab, copyID);
6519
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006520#ifdef FEAT_WINDOWS
6521 /* tabpage-local variables */
6522 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next)
6523 set_ref_in_ht(&tp->tp_vars.dv_hashtab, copyID);
6524#endif
6525
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006526 /* global variables */
6527 set_ref_in_ht(&globvarht, copyID);
6528
6529 /* function-local variables */
6530 for (fc = current_funccal; fc != NULL; fc = fc->caller)
6531 {
6532 set_ref_in_ht(&fc->l_vars.dv_hashtab, copyID);
6533 set_ref_in_ht(&fc->l_avars.dv_hashtab, copyID);
6534 }
6535
Bram Moolenaard812df62008-11-09 12:46:09 +00006536 /* v: vars */
6537 set_ref_in_ht(&vimvarht, copyID);
6538
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006539 /*
6540 * 2. Go through the list of dicts and free items without the copyID.
6541 */
6542 for (dd = first_dict; dd != NULL; )
6543 if (dd->dv_copyID != copyID)
6544 {
Bram Moolenaar685295c2006-10-15 20:37:38 +00006545 /* Free the Dictionary and ordinary items it contains, but don't
6546 * recurse into Lists and Dictionaries, they will be in the list
6547 * of dicts or list of lists. */
6548 dict_free(dd, FALSE);
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006549 did_free = TRUE;
6550
6551 /* restart, next dict may also have been freed */
6552 dd = first_dict;
6553 }
6554 else
6555 dd = dd->dv_used_next;
6556
6557 /*
6558 * 3. Go through the list of lists and free items without the copyID.
Bram Moolenaar7bb4c6e2005-09-07 21:22:27 +00006559 * But don't free a list that has a watcher (used in a for loop), these
6560 * are not referenced anywhere.
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006561 */
6562 for (ll = first_list; ll != NULL; )
Bram Moolenaar7bb4c6e2005-09-07 21:22:27 +00006563 if (ll->lv_copyID != copyID && ll->lv_watch == NULL)
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006564 {
Bram Moolenaar685295c2006-10-15 20:37:38 +00006565 /* Free the List and ordinary items it contains, but don't recurse
6566 * into Lists and Dictionaries, they will be in the list of dicts
6567 * or list of lists. */
6568 list_free(ll, FALSE);
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006569 did_free = TRUE;
6570
Bram Moolenaar7bb4c6e2005-09-07 21:22:27 +00006571 /* restart, next list may also have been freed */
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006572 ll = first_list;
6573 }
6574 else
6575 ll = ll->lv_used_next;
6576
6577 return did_free;
6578}
6579
6580/*
6581 * Mark all lists and dicts referenced through hashtab "ht" with "copyID".
6582 */
6583 static void
6584set_ref_in_ht(ht, copyID)
6585 hashtab_T *ht;
6586 int copyID;
6587{
6588 int todo;
6589 hashitem_T *hi;
6590
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006591 todo = (int)ht->ht_used;
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006592 for (hi = ht->ht_array; todo > 0; ++hi)
6593 if (!HASHITEM_EMPTY(hi))
6594 {
6595 --todo;
6596 set_ref_in_item(&HI2DI(hi)->di_tv, copyID);
6597 }
6598}
6599
6600/*
6601 * Mark all lists and dicts referenced through list "l" with "copyID".
6602 */
6603 static void
6604set_ref_in_list(l, copyID)
6605 list_T *l;
6606 int copyID;
6607{
6608 listitem_T *li;
6609
6610 for (li = l->lv_first; li != NULL; li = li->li_next)
6611 set_ref_in_item(&li->li_tv, copyID);
6612}
6613
6614/*
6615 * Mark all lists and dicts referenced through typval "tv" with "copyID".
6616 */
6617 static void
6618set_ref_in_item(tv, copyID)
6619 typval_T *tv;
6620 int copyID;
6621{
6622 dict_T *dd;
6623 list_T *ll;
Bram Moolenaard9fba312005-06-26 22:34:35 +00006624
6625 switch (tv->v_type)
6626 {
6627 case VAR_DICT:
6628 dd = tv->vval.v_dict;
Bram Moolenaard812df62008-11-09 12:46:09 +00006629 if (dd != NULL && dd->dv_copyID != copyID)
Bram Moolenaard9fba312005-06-26 22:34:35 +00006630 {
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006631 /* Didn't see this dict yet. */
6632 dd->dv_copyID = copyID;
6633 set_ref_in_ht(&dd->dv_hashtab, copyID);
Bram Moolenaard9fba312005-06-26 22:34:35 +00006634 }
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006635 break;
Bram Moolenaard9fba312005-06-26 22:34:35 +00006636
6637 case VAR_LIST:
6638 ll = tv->vval.v_list;
Bram Moolenaard812df62008-11-09 12:46:09 +00006639 if (ll != NULL && ll->lv_copyID != copyID)
Bram Moolenaard9fba312005-06-26 22:34:35 +00006640 {
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006641 /* Didn't see this list yet. */
6642 ll->lv_copyID = copyID;
6643 set_ref_in_list(ll, copyID);
Bram Moolenaard9fba312005-06-26 22:34:35 +00006644 }
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006645 break;
Bram Moolenaard9fba312005-06-26 22:34:35 +00006646 }
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006647 return;
Bram Moolenaard9fba312005-06-26 22:34:35 +00006648}
6649
6650/*
Bram Moolenaar8c711452005-01-14 21:53:12 +00006651 * Allocate an empty header for a dictionary.
6652 */
Bram Moolenaar05159a02005-02-26 23:04:13 +00006653 dict_T *
Bram Moolenaar8c711452005-01-14 21:53:12 +00006654dict_alloc()
6655{
Bram Moolenaar33570922005-01-25 22:26:29 +00006656 dict_T *d;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006657
Bram Moolenaar33570922005-01-25 22:26:29 +00006658 d = (dict_T *)alloc(sizeof(dict_T));
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006659 if (d != NULL)
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00006660 {
Bram Moolenaar685295c2006-10-15 20:37:38 +00006661 /* Add the list to the list of dicts for garbage collection. */
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006662 if (first_dict != NULL)
6663 first_dict->dv_used_prev = d;
6664 d->dv_used_next = first_dict;
6665 d->dv_used_prev = NULL;
Bram Moolenaar685295c2006-10-15 20:37:38 +00006666 first_dict = d;
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006667
Bram Moolenaar33570922005-01-25 22:26:29 +00006668 hash_init(&d->dv_hashtab);
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00006669 d->dv_lock = 0;
6670 d->dv_refcount = 0;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006671 d->dv_copyID = 0;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00006672 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006673 return d;
Bram Moolenaar8c711452005-01-14 21:53:12 +00006674}
6675
6676/*
6677 * Unreference a Dictionary: decrement the reference count and free it when it
6678 * becomes zero.
6679 */
6680 static void
6681dict_unref(d)
Bram Moolenaar33570922005-01-25 22:26:29 +00006682 dict_T *d;
Bram Moolenaar8c711452005-01-14 21:53:12 +00006683{
Bram Moolenaar685295c2006-10-15 20:37:38 +00006684 if (d != NULL && --d->dv_refcount <= 0)
6685 dict_free(d, TRUE);
Bram Moolenaar8c711452005-01-14 21:53:12 +00006686}
6687
6688/*
6689 * Free a Dictionary, including all items it contains.
6690 * Ignores the reference count.
6691 */
6692 static void
Bram Moolenaar685295c2006-10-15 20:37:38 +00006693dict_free(d, recurse)
6694 dict_T *d;
6695 int recurse; /* Free Lists and Dictionaries recursively. */
Bram Moolenaar8c711452005-01-14 21:53:12 +00006696{
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006697 int todo;
Bram Moolenaar33570922005-01-25 22:26:29 +00006698 hashitem_T *hi;
Bram Moolenaard9fba312005-06-26 22:34:35 +00006699 dictitem_T *di;
Bram Moolenaar8c711452005-01-14 21:53:12 +00006700
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006701 /* Remove the dict from the list of dicts for garbage collection. */
6702 if (d->dv_used_prev == NULL)
6703 first_dict = d->dv_used_next;
6704 else
6705 d->dv_used_prev->dv_used_next = d->dv_used_next;
6706 if (d->dv_used_next != NULL)
6707 d->dv_used_next->dv_used_prev = d->dv_used_prev;
6708
6709 /* Lock the hashtab, we don't want it to resize while freeing items. */
Bram Moolenaard9fba312005-06-26 22:34:35 +00006710 hash_lock(&d->dv_hashtab);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006711 todo = (int)d->dv_hashtab.ht_used;
Bram Moolenaar33570922005-01-25 22:26:29 +00006712 for (hi = d->dv_hashtab.ht_array; todo > 0; ++hi)
Bram Moolenaar8c711452005-01-14 21:53:12 +00006713 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006714 if (!HASHITEM_EMPTY(hi))
6715 {
Bram Moolenaard9fba312005-06-26 22:34:35 +00006716 /* Remove the item before deleting it, just in case there is
6717 * something recursive causing trouble. */
6718 di = HI2DI(hi);
6719 hash_remove(&d->dv_hashtab, hi);
Bram Moolenaar685295c2006-10-15 20:37:38 +00006720 if (recurse || (di->di_tv.v_type != VAR_LIST
6721 && di->di_tv.v_type != VAR_DICT))
6722 clear_tv(&di->di_tv);
6723 vim_free(di);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006724 --todo;
6725 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00006726 }
Bram Moolenaar33570922005-01-25 22:26:29 +00006727 hash_clear(&d->dv_hashtab);
Bram Moolenaar8c711452005-01-14 21:53:12 +00006728 vim_free(d);
6729}
6730
6731/*
6732 * Allocate a Dictionary item.
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006733 * The "key" is copied to the new item.
6734 * Note that the value of the item "di_tv" still needs to be initialized!
6735 * Returns NULL when out of memory.
Bram Moolenaar8c711452005-01-14 21:53:12 +00006736 */
Bram Moolenaar33570922005-01-25 22:26:29 +00006737 static dictitem_T *
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006738dictitem_alloc(key)
6739 char_u *key;
Bram Moolenaar8c711452005-01-14 21:53:12 +00006740{
Bram Moolenaar33570922005-01-25 22:26:29 +00006741 dictitem_T *di;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006742
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006743 di = (dictitem_T *)alloc((unsigned)(sizeof(dictitem_T) + STRLEN(key)));
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006744 if (di != NULL)
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00006745 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006746 STRCPY(di->di_key, key);
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00006747 di->di_flags = 0;
6748 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006749 return di;
Bram Moolenaar8c711452005-01-14 21:53:12 +00006750}
6751
6752/*
Bram Moolenaare9a41262005-01-15 22:18:47 +00006753 * Make a copy of a Dictionary item.
6754 */
Bram Moolenaar33570922005-01-25 22:26:29 +00006755 static dictitem_T *
Bram Moolenaare9a41262005-01-15 22:18:47 +00006756dictitem_copy(org)
Bram Moolenaar33570922005-01-25 22:26:29 +00006757 dictitem_T *org;
Bram Moolenaare9a41262005-01-15 22:18:47 +00006758{
Bram Moolenaar33570922005-01-25 22:26:29 +00006759 dictitem_T *di;
Bram Moolenaare9a41262005-01-15 22:18:47 +00006760
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006761 di = (dictitem_T *)alloc((unsigned)(sizeof(dictitem_T)
6762 + STRLEN(org->di_key)));
Bram Moolenaare9a41262005-01-15 22:18:47 +00006763 if (di != NULL)
6764 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006765 STRCPY(di->di_key, org->di_key);
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00006766 di->di_flags = 0;
Bram Moolenaare9a41262005-01-15 22:18:47 +00006767 copy_tv(&org->di_tv, &di->di_tv);
6768 }
6769 return di;
6770}
6771
6772/*
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006773 * Remove item "item" from Dictionary "dict" and free it.
6774 */
6775 static void
6776dictitem_remove(dict, item)
Bram Moolenaar33570922005-01-25 22:26:29 +00006777 dict_T *dict;
6778 dictitem_T *item;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006779{
Bram Moolenaar33570922005-01-25 22:26:29 +00006780 hashitem_T *hi;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006781
Bram Moolenaar33570922005-01-25 22:26:29 +00006782 hi = hash_find(&dict->dv_hashtab, item->di_key);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006783 if (HASHITEM_EMPTY(hi))
6784 EMSG2(_(e_intern2), "dictitem_remove()");
6785 else
Bram Moolenaar33570922005-01-25 22:26:29 +00006786 hash_remove(&dict->dv_hashtab, hi);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006787 dictitem_free(item);
6788}
6789
6790/*
Bram Moolenaar8c711452005-01-14 21:53:12 +00006791 * Free a dict item. Also clears the value.
6792 */
6793 static void
6794dictitem_free(item)
Bram Moolenaar33570922005-01-25 22:26:29 +00006795 dictitem_T *item;
Bram Moolenaar8c711452005-01-14 21:53:12 +00006796{
Bram Moolenaar8c711452005-01-14 21:53:12 +00006797 clear_tv(&item->di_tv);
6798 vim_free(item);
6799}
6800
6801/*
Bram Moolenaare9a41262005-01-15 22:18:47 +00006802 * Make a copy of dict "d". Shallow if "deep" is FALSE.
6803 * The refcount of the new dict is set to 1.
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006804 * See item_copy() for "copyID".
Bram Moolenaare9a41262005-01-15 22:18:47 +00006805 * Returns NULL when out of memory.
6806 */
Bram Moolenaar33570922005-01-25 22:26:29 +00006807 static dict_T *
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006808dict_copy(orig, deep, copyID)
Bram Moolenaar33570922005-01-25 22:26:29 +00006809 dict_T *orig;
Bram Moolenaare9a41262005-01-15 22:18:47 +00006810 int deep;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006811 int copyID;
Bram Moolenaare9a41262005-01-15 22:18:47 +00006812{
Bram Moolenaar33570922005-01-25 22:26:29 +00006813 dict_T *copy;
6814 dictitem_T *di;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006815 int todo;
Bram Moolenaar33570922005-01-25 22:26:29 +00006816 hashitem_T *hi;
Bram Moolenaare9a41262005-01-15 22:18:47 +00006817
6818 if (orig == NULL)
6819 return NULL;
6820
6821 copy = dict_alloc();
6822 if (copy != NULL)
6823 {
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006824 if (copyID != 0)
6825 {
6826 orig->dv_copyID = copyID;
6827 orig->dv_copydict = copy;
6828 }
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006829 todo = (int)orig->dv_hashtab.ht_used;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006830 for (hi = orig->dv_hashtab.ht_array; todo > 0 && !got_int; ++hi)
Bram Moolenaare9a41262005-01-15 22:18:47 +00006831 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006832 if (!HASHITEM_EMPTY(hi))
Bram Moolenaare9a41262005-01-15 22:18:47 +00006833 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006834 --todo;
6835
6836 di = dictitem_alloc(hi->hi_key);
6837 if (di == NULL)
6838 break;
6839 if (deep)
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006840 {
6841 if (item_copy(&HI2DI(hi)->di_tv, &di->di_tv, deep,
6842 copyID) == FAIL)
6843 {
6844 vim_free(di);
6845 break;
6846 }
6847 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006848 else
6849 copy_tv(&HI2DI(hi)->di_tv, &di->di_tv);
6850 if (dict_add(copy, di) == FAIL)
6851 {
6852 dictitem_free(di);
6853 break;
6854 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00006855 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00006856 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006857
Bram Moolenaare9a41262005-01-15 22:18:47 +00006858 ++copy->dv_refcount;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006859 if (todo > 0)
6860 {
6861 dict_unref(copy);
6862 copy = NULL;
6863 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00006864 }
6865
6866 return copy;
6867}
6868
6869/*
Bram Moolenaar8c711452005-01-14 21:53:12 +00006870 * Add item "item" to Dictionary "d".
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006871 * Returns FAIL when out of memory and when key already existed.
Bram Moolenaar8c711452005-01-14 21:53:12 +00006872 */
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006873 static int
Bram Moolenaar8c711452005-01-14 21:53:12 +00006874dict_add(d, item)
Bram Moolenaar33570922005-01-25 22:26:29 +00006875 dict_T *d;
6876 dictitem_T *item;
Bram Moolenaar8c711452005-01-14 21:53:12 +00006877{
Bram Moolenaar33570922005-01-25 22:26:29 +00006878 return hash_add(&d->dv_hashtab, item->di_key);
Bram Moolenaar8c711452005-01-14 21:53:12 +00006879}
6880
Bram Moolenaar8c711452005-01-14 21:53:12 +00006881/*
Bram Moolenaar05159a02005-02-26 23:04:13 +00006882 * Add a number or string entry to dictionary "d".
6883 * When "str" is NULL use number "nr", otherwise use "str".
6884 * Returns FAIL when out of memory and when key already exists.
6885 */
6886 int
6887dict_add_nr_str(d, key, nr, str)
6888 dict_T *d;
6889 char *key;
6890 long nr;
6891 char_u *str;
6892{
6893 dictitem_T *item;
6894
6895 item = dictitem_alloc((char_u *)key);
6896 if (item == NULL)
6897 return FAIL;
6898 item->di_tv.v_lock = 0;
6899 if (str == NULL)
6900 {
6901 item->di_tv.v_type = VAR_NUMBER;
6902 item->di_tv.vval.v_number = nr;
6903 }
6904 else
6905 {
6906 item->di_tv.v_type = VAR_STRING;
6907 item->di_tv.vval.v_string = vim_strsave(str);
6908 }
6909 if (dict_add(d, item) == FAIL)
6910 {
6911 dictitem_free(item);
6912 return FAIL;
6913 }
6914 return OK;
6915}
6916
6917/*
Bram Moolenaare9a41262005-01-15 22:18:47 +00006918 * Get the number of items in a Dictionary.
6919 */
6920 static long
6921dict_len(d)
Bram Moolenaar33570922005-01-25 22:26:29 +00006922 dict_T *d;
Bram Moolenaare9a41262005-01-15 22:18:47 +00006923{
Bram Moolenaare9a41262005-01-15 22:18:47 +00006924 if (d == NULL)
6925 return 0L;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006926 return (long)d->dv_hashtab.ht_used;
Bram Moolenaare9a41262005-01-15 22:18:47 +00006927}
6928
6929/*
Bram Moolenaar8c711452005-01-14 21:53:12 +00006930 * Find item "key[len]" in Dictionary "d".
6931 * If "len" is negative use strlen(key).
6932 * Returns NULL when not found.
6933 */
Bram Moolenaar33570922005-01-25 22:26:29 +00006934 static dictitem_T *
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006935dict_find(d, key, len)
Bram Moolenaar33570922005-01-25 22:26:29 +00006936 dict_T *d;
Bram Moolenaar8c711452005-01-14 21:53:12 +00006937 char_u *key;
6938 int len;
6939{
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006940#define AKEYLEN 200
6941 char_u buf[AKEYLEN];
6942 char_u *akey;
6943 char_u *tofree = NULL;
Bram Moolenaar33570922005-01-25 22:26:29 +00006944 hashitem_T *hi;
Bram Moolenaar8c711452005-01-14 21:53:12 +00006945
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006946 if (len < 0)
6947 akey = key;
6948 else if (len >= AKEYLEN)
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00006949 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006950 tofree = akey = vim_strnsave(key, len);
6951 if (akey == NULL)
6952 return NULL;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00006953 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006954 else
6955 {
6956 /* Avoid a malloc/free by using buf[]. */
Bram Moolenaarce0842a2005-07-18 21:58:11 +00006957 vim_strncpy(buf, key, len);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006958 akey = buf;
6959 }
6960
Bram Moolenaar33570922005-01-25 22:26:29 +00006961 hi = hash_find(&d->dv_hashtab, akey);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006962 vim_free(tofree);
6963 if (HASHITEM_EMPTY(hi))
6964 return NULL;
6965 return HI2DI(hi);
Bram Moolenaar8c711452005-01-14 21:53:12 +00006966}
6967
6968/*
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00006969 * Get a string item from a dictionary.
6970 * When "save" is TRUE allocate memory for it.
Bram Moolenaar2641f772005-03-25 21:58:17 +00006971 * Returns NULL if the entry doesn't exist or out of memory.
6972 */
6973 char_u *
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00006974get_dict_string(d, key, save)
Bram Moolenaar2641f772005-03-25 21:58:17 +00006975 dict_T *d;
6976 char_u *key;
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00006977 int save;
Bram Moolenaar2641f772005-03-25 21:58:17 +00006978{
6979 dictitem_T *di;
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00006980 char_u *s;
Bram Moolenaar2641f772005-03-25 21:58:17 +00006981
6982 di = dict_find(d, key, -1);
6983 if (di == NULL)
6984 return NULL;
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00006985 s = get_tv_string(&di->di_tv);
6986 if (save && s != NULL)
6987 s = vim_strsave(s);
6988 return s;
Bram Moolenaar2641f772005-03-25 21:58:17 +00006989}
6990
6991/*
6992 * Get a number item from a dictionary.
6993 * Returns 0 if the entry doesn't exist or out of memory.
6994 */
6995 long
6996get_dict_number(d, key)
6997 dict_T *d;
6998 char_u *key;
6999{
7000 dictitem_T *di;
7001
7002 di = dict_find(d, key, -1);
7003 if (di == NULL)
7004 return 0;
7005 return get_tv_number(&di->di_tv);
7006}
7007
7008/*
Bram Moolenaar8c711452005-01-14 21:53:12 +00007009 * Return an allocated string with the string representation of a Dictionary.
7010 * May return NULL.
7011 */
7012 static char_u *
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007013dict2string(tv, copyID)
Bram Moolenaar33570922005-01-25 22:26:29 +00007014 typval_T *tv;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007015 int copyID;
Bram Moolenaar8c711452005-01-14 21:53:12 +00007016{
7017 garray_T ga;
7018 int first = TRUE;
7019 char_u *tofree;
7020 char_u numbuf[NUMBUFLEN];
Bram Moolenaar33570922005-01-25 22:26:29 +00007021 hashitem_T *hi;
Bram Moolenaar8c711452005-01-14 21:53:12 +00007022 char_u *s;
Bram Moolenaar33570922005-01-25 22:26:29 +00007023 dict_T *d;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007024 int todo;
Bram Moolenaar8c711452005-01-14 21:53:12 +00007025
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007026 if ((d = tv->vval.v_dict) == NULL)
Bram Moolenaar8c711452005-01-14 21:53:12 +00007027 return NULL;
7028 ga_init2(&ga, (int)sizeof(char), 80);
7029 ga_append(&ga, '{');
7030
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007031 todo = (int)d->dv_hashtab.ht_used;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00007032 for (hi = d->dv_hashtab.ht_array; todo > 0 && !got_int; ++hi)
Bram Moolenaar8c711452005-01-14 21:53:12 +00007033 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007034 if (!HASHITEM_EMPTY(hi))
Bram Moolenaar8c711452005-01-14 21:53:12 +00007035 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007036 --todo;
7037
7038 if (first)
7039 first = FALSE;
7040 else
7041 ga_concat(&ga, (char_u *)", ");
7042
7043 tofree = string_quote(hi->hi_key, FALSE);
7044 if (tofree != NULL)
7045 {
7046 ga_concat(&ga, tofree);
7047 vim_free(tofree);
7048 }
7049 ga_concat(&ga, (char_u *)": ");
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007050 s = tv2string(&HI2DI(hi)->di_tv, &tofree, numbuf, copyID);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007051 if (s != NULL)
7052 ga_concat(&ga, s);
Bram Moolenaar8c711452005-01-14 21:53:12 +00007053 vim_free(tofree);
Bram Moolenaar81bf7082005-02-12 14:31:42 +00007054 if (s == NULL)
7055 break;
Bram Moolenaar8c711452005-01-14 21:53:12 +00007056 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00007057 }
Bram Moolenaar81bf7082005-02-12 14:31:42 +00007058 if (todo > 0)
7059 {
7060 vim_free(ga.ga_data);
7061 return NULL;
7062 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00007063
7064 ga_append(&ga, '}');
7065 ga_append(&ga, NUL);
7066 return (char_u *)ga.ga_data;
7067}
7068
7069/*
7070 * Allocate a variable for a Dictionary and fill it from "*arg".
7071 * Return OK or FAIL. Returns NOTDONE for {expr}.
7072 */
7073 static int
7074get_dict_tv(arg, rettv, evaluate)
7075 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00007076 typval_T *rettv;
Bram Moolenaar8c711452005-01-14 21:53:12 +00007077 int evaluate;
7078{
Bram Moolenaar33570922005-01-25 22:26:29 +00007079 dict_T *d = NULL;
7080 typval_T tvkey;
7081 typval_T tv;
Bram Moolenaarad6c2272007-09-17 20:21:33 +00007082 char_u *key = NULL;
Bram Moolenaar33570922005-01-25 22:26:29 +00007083 dictitem_T *item;
Bram Moolenaar8c711452005-01-14 21:53:12 +00007084 char_u *start = skipwhite(*arg + 1);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007085 char_u buf[NUMBUFLEN];
Bram Moolenaar8c711452005-01-14 21:53:12 +00007086
7087 /*
7088 * First check if it's not a curly-braces thing: {expr}.
7089 * Must do this without evaluating, otherwise a function may be called
7090 * twice. Unfortunately this means we need to call eval1() twice for the
7091 * first item.
Bram Moolenaare9a41262005-01-15 22:18:47 +00007092 * But {} is an empty Dictionary.
Bram Moolenaar8c711452005-01-14 21:53:12 +00007093 */
Bram Moolenaare9a41262005-01-15 22:18:47 +00007094 if (*start != '}')
7095 {
7096 if (eval1(&start, &tv, FALSE) == FAIL) /* recursive! */
7097 return FAIL;
7098 if (*start == '}')
7099 return NOTDONE;
7100 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00007101
7102 if (evaluate)
7103 {
7104 d = dict_alloc();
7105 if (d == NULL)
7106 return FAIL;
7107 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007108 tvkey.v_type = VAR_UNKNOWN;
7109 tv.v_type = VAR_UNKNOWN;
Bram Moolenaar8c711452005-01-14 21:53:12 +00007110
7111 *arg = skipwhite(*arg + 1);
7112 while (**arg != '}' && **arg != NUL)
7113 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007114 if (eval1(arg, &tvkey, evaluate) == FAIL) /* recursive! */
Bram Moolenaar8c711452005-01-14 21:53:12 +00007115 goto failret;
7116 if (**arg != ':')
7117 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00007118 EMSG2(_("E720: Missing colon in Dictionary: %s"), *arg);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007119 clear_tv(&tvkey);
Bram Moolenaar8c711452005-01-14 21:53:12 +00007120 goto failret;
7121 }
Bram Moolenaar037cc642007-09-13 18:40:54 +00007122 if (evaluate)
Bram Moolenaar8c711452005-01-14 21:53:12 +00007123 {
Bram Moolenaar037cc642007-09-13 18:40:54 +00007124 key = get_tv_string_buf_chk(&tvkey, buf);
7125 if (key == NULL || *key == NUL)
7126 {
7127 /* "key" is NULL when get_tv_string_buf_chk() gave an errmsg */
7128 if (key != NULL)
7129 EMSG(_(e_emptykey));
7130 clear_tv(&tvkey);
7131 goto failret;
7132 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00007133 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00007134
7135 *arg = skipwhite(*arg + 1);
7136 if (eval1(arg, &tv, evaluate) == FAIL) /* recursive! */
7137 {
Bram Moolenaar037cc642007-09-13 18:40:54 +00007138 if (evaluate)
7139 clear_tv(&tvkey);
Bram Moolenaar8c711452005-01-14 21:53:12 +00007140 goto failret;
7141 }
7142 if (evaluate)
7143 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007144 item = dict_find(d, key, -1);
Bram Moolenaar8c711452005-01-14 21:53:12 +00007145 if (item != NULL)
7146 {
Bram Moolenaarb982ca52005-03-28 21:02:15 +00007147 EMSG2(_("E721: Duplicate key in Dictionary: \"%s\""), key);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007148 clear_tv(&tvkey);
Bram Moolenaar8c711452005-01-14 21:53:12 +00007149 clear_tv(&tv);
7150 goto failret;
7151 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007152 item = dictitem_alloc(key);
7153 clear_tv(&tvkey);
7154 if (item != NULL)
Bram Moolenaar8c711452005-01-14 21:53:12 +00007155 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00007156 item->di_tv = tv;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00007157 item->di_tv.v_lock = 0;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007158 if (dict_add(d, item) == FAIL)
7159 dictitem_free(item);
Bram Moolenaar8c711452005-01-14 21:53:12 +00007160 }
7161 }
7162
7163 if (**arg == '}')
7164 break;
7165 if (**arg != ',')
7166 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00007167 EMSG2(_("E722: Missing comma in Dictionary: %s"), *arg);
Bram Moolenaar8c711452005-01-14 21:53:12 +00007168 goto failret;
7169 }
7170 *arg = skipwhite(*arg + 1);
7171 }
7172
7173 if (**arg != '}')
7174 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00007175 EMSG2(_("E723: Missing end of Dictionary '}': %s"), *arg);
Bram Moolenaar8c711452005-01-14 21:53:12 +00007176failret:
7177 if (evaluate)
Bram Moolenaar685295c2006-10-15 20:37:38 +00007178 dict_free(d, TRUE);
Bram Moolenaar8c711452005-01-14 21:53:12 +00007179 return FAIL;
7180 }
7181
7182 *arg = skipwhite(*arg + 1);
7183 if (evaluate)
7184 {
7185 rettv->v_type = VAR_DICT;
7186 rettv->vval.v_dict = d;
7187 ++d->dv_refcount;
7188 }
7189
7190 return OK;
7191}
7192
Bram Moolenaar8c711452005-01-14 21:53:12 +00007193/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007194 * Return a string with the string representation of a variable.
7195 * If the memory is allocated "tofree" is set to it, otherwise NULL.
Bram Moolenaar8a283e52005-01-06 23:28:25 +00007196 * "numbuf" is used for a number.
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007197 * Does not put quotes around strings, as ":echo" displays values.
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007198 * When "copyID" is not NULL replace recursive lists and dicts with "...".
Bram Moolenaar92c5aba2007-08-14 20:29:31 +00007199 * May return NULL.
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007200 */
7201 static char_u *
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007202echo_string(tv, tofree, numbuf, copyID)
Bram Moolenaar33570922005-01-25 22:26:29 +00007203 typval_T *tv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007204 char_u **tofree;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00007205 char_u *numbuf;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007206 int copyID;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007207{
Bram Moolenaare9a41262005-01-15 22:18:47 +00007208 static int recurse = 0;
7209 char_u *r = NULL;
7210
Bram Moolenaar33570922005-01-25 22:26:29 +00007211 if (recurse >= DICT_MAXNEST)
Bram Moolenaare9a41262005-01-15 22:18:47 +00007212 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00007213 EMSG(_("E724: variable nested too deep for displaying"));
Bram Moolenaare9a41262005-01-15 22:18:47 +00007214 *tofree = NULL;
7215 return NULL;
7216 }
7217 ++recurse;
7218
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007219 switch (tv->v_type)
7220 {
7221 case VAR_FUNC:
7222 *tofree = NULL;
Bram Moolenaare9a41262005-01-15 22:18:47 +00007223 r = tv->vval.v_string;
7224 break;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007225
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007226 case VAR_LIST:
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007227 if (tv->vval.v_list == NULL)
7228 {
7229 *tofree = NULL;
7230 r = NULL;
7231 }
7232 else if (copyID != 0 && tv->vval.v_list->lv_copyID == copyID)
7233 {
7234 *tofree = NULL;
7235 r = (char_u *)"[...]";
7236 }
7237 else
7238 {
7239 tv->vval.v_list->lv_copyID = copyID;
7240 *tofree = list2string(tv, copyID);
7241 r = *tofree;
7242 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00007243 break;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007244
Bram Moolenaar8c711452005-01-14 21:53:12 +00007245 case VAR_DICT:
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007246 if (tv->vval.v_dict == NULL)
7247 {
7248 *tofree = NULL;
7249 r = NULL;
7250 }
7251 else if (copyID != 0 && tv->vval.v_dict->dv_copyID == copyID)
7252 {
7253 *tofree = NULL;
7254 r = (char_u *)"{...}";
7255 }
7256 else
7257 {
7258 tv->vval.v_dict->dv_copyID = copyID;
7259 *tofree = dict2string(tv, copyID);
7260 r = *tofree;
7261 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00007262 break;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007263
Bram Moolenaarc70646c2005-01-04 21:52:38 +00007264 case VAR_STRING:
7265 case VAR_NUMBER:
Bram Moolenaare9a41262005-01-15 22:18:47 +00007266 *tofree = NULL;
7267 r = get_tv_string_buf(tv, numbuf);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007268 break;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007269
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007270#ifdef FEAT_FLOAT
7271 case VAR_FLOAT:
7272 *tofree = NULL;
7273 vim_snprintf((char *)numbuf, NUMBUFLEN, "%g", tv->vval.v_float);
7274 r = numbuf;
7275 break;
7276#endif
7277
Bram Moolenaarc70646c2005-01-04 21:52:38 +00007278 default:
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007279 EMSG2(_(e_intern2), "echo_string()");
Bram Moolenaare9a41262005-01-15 22:18:47 +00007280 *tofree = NULL;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007281 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00007282
7283 --recurse;
7284 return r;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007285}
7286
7287/*
7288 * Return a string with the string representation of a variable.
7289 * If the memory is allocated "tofree" is set to it, otherwise NULL.
7290 * "numbuf" is used for a number.
7291 * Puts quotes around strings, so that they can be parsed back by eval().
Bram Moolenaar92c5aba2007-08-14 20:29:31 +00007292 * May return NULL.
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007293 */
7294 static char_u *
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007295tv2string(tv, tofree, numbuf, copyID)
Bram Moolenaar33570922005-01-25 22:26:29 +00007296 typval_T *tv;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007297 char_u **tofree;
7298 char_u *numbuf;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007299 int copyID;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007300{
7301 switch (tv->v_type)
7302 {
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007303 case VAR_FUNC:
7304 *tofree = string_quote(tv->vval.v_string, TRUE);
7305 return *tofree;
7306 case VAR_STRING:
7307 *tofree = string_quote(tv->vval.v_string, FALSE);
7308 return *tofree;
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007309#ifdef FEAT_FLOAT
7310 case VAR_FLOAT:
7311 *tofree = NULL;
7312 vim_snprintf((char *)numbuf, NUMBUFLEN - 1, "%g", tv->vval.v_float);
7313 return numbuf;
7314#endif
Bram Moolenaare9a41262005-01-15 22:18:47 +00007315 case VAR_NUMBER:
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007316 case VAR_LIST:
Bram Moolenaar8c711452005-01-14 21:53:12 +00007317 case VAR_DICT:
Bram Moolenaare9a41262005-01-15 22:18:47 +00007318 break;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007319 default:
Bram Moolenaarc70646c2005-01-04 21:52:38 +00007320 EMSG2(_(e_intern2), "tv2string()");
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007321 }
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007322 return echo_string(tv, tofree, numbuf, copyID);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007323}
7324
7325/*
Bram Moolenaar33570922005-01-25 22:26:29 +00007326 * Return string "str" in ' quotes, doubling ' characters.
7327 * If "str" is NULL an empty string is assumed.
Bram Moolenaar8c711452005-01-14 21:53:12 +00007328 * If "function" is TRUE make it function('string').
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007329 */
7330 static char_u *
7331string_quote(str, function)
7332 char_u *str;
7333 int function;
7334{
Bram Moolenaar33570922005-01-25 22:26:29 +00007335 unsigned len;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007336 char_u *p, *r, *s;
7337
Bram Moolenaar33570922005-01-25 22:26:29 +00007338 len = (function ? 13 : 3);
7339 if (str != NULL)
7340 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007341 len += (unsigned)STRLEN(str);
Bram Moolenaar33570922005-01-25 22:26:29 +00007342 for (p = str; *p != NUL; mb_ptr_adv(p))
7343 if (*p == '\'')
7344 ++len;
7345 }
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007346 s = r = alloc(len);
7347 if (r != NULL)
7348 {
7349 if (function)
7350 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00007351 STRCPY(r, "function('");
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007352 r += 10;
7353 }
7354 else
Bram Moolenaar8c711452005-01-14 21:53:12 +00007355 *r++ = '\'';
Bram Moolenaar33570922005-01-25 22:26:29 +00007356 if (str != NULL)
7357 for (p = str; *p != NUL; )
7358 {
7359 if (*p == '\'')
7360 *r++ = '\'';
7361 MB_COPY_CHAR(p, r);
7362 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00007363 *r++ = '\'';
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007364 if (function)
7365 *r++ = ')';
7366 *r++ = NUL;
7367 }
7368 return s;
7369}
7370
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007371#ifdef FEAT_FLOAT
7372/*
7373 * Convert the string "text" to a floating point number.
7374 * This uses strtod(). setlocale(LC_NUMERIC, "C") has been used to make sure
7375 * this always uses a decimal point.
7376 * Returns the length of the text that was consumed.
7377 */
7378 static int
7379string2float(text, value)
7380 char_u *text;
7381 float_T *value; /* result stored here */
7382{
7383 char *s = (char *)text;
7384 float_T f;
7385
7386 f = strtod(s, &s);
7387 *value = f;
7388 return (int)((char_u *)s - text);
7389}
7390#endif
7391
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007392/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00007393 * Get the value of an environment variable.
7394 * "arg" is pointing to the '$'. It is advanced to after the name.
7395 * If the environment variable was not set, silently assume it is empty.
7396 * Always return OK.
7397 */
7398 static int
Bram Moolenaarc70646c2005-01-04 21:52:38 +00007399get_env_tv(arg, rettv, evaluate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007400 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00007401 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007402 int evaluate;
7403{
7404 char_u *string = NULL;
7405 int len;
7406 int cc;
7407 char_u *name;
Bram Moolenaar05159a02005-02-26 23:04:13 +00007408 int mustfree = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007409
7410 ++*arg;
7411 name = *arg;
7412 len = get_env_len(arg);
7413 if (evaluate)
7414 {
7415 if (len != 0)
7416 {
7417 cc = name[len];
7418 name[len] = NUL;
Bram Moolenaar05159a02005-02-26 23:04:13 +00007419 /* first try vim_getenv(), fast for normal environment vars */
7420 string = vim_getenv(name, &mustfree);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007421 if (string != NULL && *string != NUL)
Bram Moolenaar05159a02005-02-26 23:04:13 +00007422 {
7423 if (!mustfree)
7424 string = vim_strsave(string);
7425 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007426 else
7427 {
Bram Moolenaar05159a02005-02-26 23:04:13 +00007428 if (mustfree)
7429 vim_free(string);
7430
Bram Moolenaar071d4272004-06-13 20:20:40 +00007431 /* next try expanding things like $VIM and ${HOME} */
7432 string = expand_env_save(name - 1);
7433 if (string != NULL && *string == '$')
7434 {
7435 vim_free(string);
7436 string = NULL;
7437 }
7438 }
7439 name[len] = cc;
7440 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00007441 rettv->v_type = VAR_STRING;
7442 rettv->vval.v_string = string;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007443 }
7444
7445 return OK;
7446}
7447
7448/*
7449 * Array with names and number of arguments of all internal functions
7450 * MUST BE KEPT SORTED IN strcmp() ORDER FOR BINARY SEARCH!
7451 */
7452static struct fst
7453{
7454 char *f_name; /* function name */
7455 char f_min_argc; /* minimal number of arguments */
7456 char f_max_argc; /* maximal number of arguments */
Bram Moolenaar33570922005-01-25 22:26:29 +00007457 void (*f_func) __ARGS((typval_T *args, typval_T *rvar));
Bram Moolenaarbae0c162007-05-10 19:30:25 +00007458 /* implementation of function */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007459} functions[] =
7460{
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007461#ifdef FEAT_FLOAT
7462 {"abs", 1, 1, f_abs},
7463#endif
Bram Moolenaar0d660222005-01-07 21:51:51 +00007464 {"add", 2, 2, f_add},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007465 {"append", 2, 2, f_append},
7466 {"argc", 0, 0, f_argc},
7467 {"argidx", 0, 0, f_argidx},
Bram Moolenaare2f98b92006-03-29 21:18:24 +00007468 {"argv", 0, 1, f_argv},
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007469#ifdef FEAT_FLOAT
7470 {"atan", 1, 1, f_atan},
7471#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007472 {"browse", 4, 4, f_browse},
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00007473 {"browsedir", 2, 2, f_browsedir},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007474 {"bufexists", 1, 1, f_bufexists},
7475 {"buffer_exists", 1, 1, f_bufexists}, /* obsolete */
7476 {"buffer_name", 1, 1, f_bufname}, /* obsolete */
7477 {"buffer_number", 1, 1, f_bufnr}, /* obsolete */
7478 {"buflisted", 1, 1, f_buflisted},
7479 {"bufloaded", 1, 1, f_bufloaded},
7480 {"bufname", 1, 1, f_bufname},
Bram Moolenaar0e34f622006-03-03 23:00:03 +00007481 {"bufnr", 1, 2, f_bufnr},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007482 {"bufwinnr", 1, 1, f_bufwinnr},
7483 {"byte2line", 1, 1, f_byte2line},
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00007484 {"byteidx", 2, 2, f_byteidx},
Bram Moolenaare9a41262005-01-15 22:18:47 +00007485 {"call", 2, 3, f_call},
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007486#ifdef FEAT_FLOAT
7487 {"ceil", 1, 1, f_ceil},
7488#endif
Bram Moolenaarf0acfce2006-03-17 23:21:19 +00007489 {"changenr", 0, 0, f_changenr},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007490 {"char2nr", 1, 1, f_char2nr},
7491 {"cindent", 1, 1, f_cindent},
Bram Moolenaar6ee10162007-07-26 20:58:42 +00007492 {"clearmatches", 0, 0, f_clearmatches},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007493 {"col", 1, 1, f_col},
Bram Moolenaar572cb562005-08-05 21:35:02 +00007494#if defined(FEAT_INS_EXPAND)
Bram Moolenaarade00832006-03-10 21:46:58 +00007495 {"complete", 2, 2, f_complete},
Bram Moolenaar572cb562005-08-05 21:35:02 +00007496 {"complete_add", 1, 1, f_complete_add},
7497 {"complete_check", 0, 0, f_complete_check},
7498#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007499 {"confirm", 1, 4, f_confirm},
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007500 {"copy", 1, 1, f_copy},
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007501#ifdef FEAT_FLOAT
7502 {"cos", 1, 1, f_cos},
7503#endif
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007504 {"count", 2, 4, f_count},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007505 {"cscope_connection",0,3, f_cscope_connection},
Bram Moolenaara5525202006-03-02 22:52:09 +00007506 {"cursor", 1, 3, f_cursor},
Bram Moolenaar81bf7082005-02-12 14:31:42 +00007507 {"deepcopy", 1, 2, f_deepcopy},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007508 {"delete", 1, 1, f_delete},
7509 {"did_filetype", 0, 0, f_did_filetype},
Bram Moolenaar47136d72004-10-12 20:02:24 +00007510 {"diff_filler", 1, 1, f_diff_filler},
7511 {"diff_hlID", 2, 2, f_diff_hlID},
Bram Moolenaare49b69a2005-01-08 16:11:57 +00007512 {"empty", 1, 1, f_empty},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007513 {"escape", 2, 2, f_escape},
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007514 {"eval", 1, 1, f_eval},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007515 {"eventhandler", 0, 0, f_eventhandler},
7516 {"executable", 1, 1, f_executable},
7517 {"exists", 1, 1, f_exists},
7518 {"expand", 1, 2, f_expand},
Bram Moolenaar8a283e52005-01-06 23:28:25 +00007519 {"extend", 2, 3, f_extend},
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00007520 {"feedkeys", 1, 2, f_feedkeys},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007521 {"file_readable", 1, 1, f_filereadable}, /* obsolete */
7522 {"filereadable", 1, 1, f_filereadable},
7523 {"filewritable", 1, 1, f_filewritable},
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007524 {"filter", 2, 2, f_filter},
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00007525 {"finddir", 1, 3, f_finddir},
7526 {"findfile", 1, 3, f_findfile},
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007527#ifdef FEAT_FLOAT
7528 {"float2nr", 1, 1, f_float2nr},
7529 {"floor", 1, 1, f_floor},
7530#endif
Bram Moolenaaraebaf892008-05-28 14:49:58 +00007531 {"fnameescape", 1, 1, f_fnameescape},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007532 {"fnamemodify", 2, 2, f_fnamemodify},
7533 {"foldclosed", 1, 1, f_foldclosed},
7534 {"foldclosedend", 1, 1, f_foldclosedend},
7535 {"foldlevel", 1, 1, f_foldlevel},
7536 {"foldtext", 0, 0, f_foldtext},
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00007537 {"foldtextresult", 1, 1, f_foldtextresult},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007538 {"foreground", 0, 0, f_foreground},
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007539 {"function", 1, 1, f_function},
Bram Moolenaar9d2c8c12007-09-25 16:00:00 +00007540 {"garbagecollect", 0, 1, f_garbagecollect},
Bram Moolenaar0d660222005-01-07 21:51:51 +00007541 {"get", 2, 3, f_get},
Bram Moolenaar80fc0432005-07-20 22:06:07 +00007542 {"getbufline", 2, 3, f_getbufline},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007543 {"getbufvar", 2, 2, f_getbufvar},
7544 {"getchar", 0, 1, f_getchar},
7545 {"getcharmod", 0, 0, f_getcharmod},
7546 {"getcmdline", 0, 0, f_getcmdline},
7547 {"getcmdpos", 0, 0, f_getcmdpos},
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00007548 {"getcmdtype", 0, 0, f_getcmdtype},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007549 {"getcwd", 0, 0, f_getcwd},
Bram Moolenaar46c9c732004-12-12 11:37:09 +00007550 {"getfontname", 0, 1, f_getfontname},
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00007551 {"getfperm", 1, 1, f_getfperm},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007552 {"getfsize", 1, 1, f_getfsize},
7553 {"getftime", 1, 1, f_getftime},
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00007554 {"getftype", 1, 1, f_getftype},
Bram Moolenaar0d660222005-01-07 21:51:51 +00007555 {"getline", 1, 2, f_getline},
Bram Moolenaar280f1262006-01-30 00:14:18 +00007556 {"getloclist", 1, 1, f_getqflist},
Bram Moolenaar2240aeb2007-07-27 19:33:14 +00007557 {"getmatches", 0, 0, f_getmatches},
Bram Moolenaar18081e32008-02-20 19:11:07 +00007558 {"getpid", 0, 0, f_getpid},
Bram Moolenaara5525202006-03-02 22:52:09 +00007559 {"getpos", 1, 1, f_getpos},
Bram Moolenaar2641f772005-03-25 21:58:17 +00007560 {"getqflist", 0, 0, f_getqflist},
Bram Moolenaar67fe1a12005-05-22 22:12:58 +00007561 {"getreg", 0, 2, f_getreg},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007562 {"getregtype", 0, 1, f_getregtype},
Bram Moolenaar99ebf042006-04-15 20:28:54 +00007563 {"gettabwinvar", 3, 3, f_gettabwinvar},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007564 {"getwinposx", 0, 0, f_getwinposx},
7565 {"getwinposy", 0, 0, f_getwinposy},
7566 {"getwinvar", 2, 2, f_getwinvar},
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +00007567 {"glob", 1, 2, f_glob},
7568 {"globpath", 2, 3, f_globpath},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007569 {"has", 1, 1, f_has},
Bram Moolenaare9a41262005-01-15 22:18:47 +00007570 {"has_key", 2, 2, f_has_key},
Bram Moolenaard267b9c2007-04-26 15:06:45 +00007571 {"haslocaldir", 0, 0, f_haslocaldir},
Bram Moolenaar2c932302006-03-18 21:42:09 +00007572 {"hasmapto", 1, 3, f_hasmapto},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007573 {"highlightID", 1, 1, f_hlID}, /* obsolete */
7574 {"highlight_exists",1, 1, f_hlexists}, /* obsolete */
7575 {"histadd", 2, 2, f_histadd},
7576 {"histdel", 1, 2, f_histdel},
7577 {"histget", 1, 2, f_histget},
7578 {"histnr", 1, 1, f_histnr},
7579 {"hlID", 1, 1, f_hlID},
7580 {"hlexists", 1, 1, f_hlexists},
7581 {"hostname", 0, 0, f_hostname},
7582 {"iconv", 3, 3, f_iconv},
7583 {"indent", 1, 1, f_indent},
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007584 {"index", 2, 4, f_index},
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00007585 {"input", 1, 3, f_input},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007586 {"inputdialog", 1, 3, f_inputdialog},
Bram Moolenaar6efa2b32005-09-10 19:26:26 +00007587 {"inputlist", 1, 1, f_inputlist},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007588 {"inputrestore", 0, 0, f_inputrestore},
7589 {"inputsave", 0, 0, f_inputsave},
7590 {"inputsecret", 1, 2, f_inputsecret},
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007591 {"insert", 2, 3, f_insert},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007592 {"isdirectory", 1, 1, f_isdirectory},
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00007593 {"islocked", 1, 1, f_islocked},
Bram Moolenaar8c711452005-01-14 21:53:12 +00007594 {"items", 1, 1, f_items},
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007595 {"join", 1, 2, f_join},
Bram Moolenaar8c711452005-01-14 21:53:12 +00007596 {"keys", 1, 1, f_keys},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007597 {"last_buffer_nr", 0, 0, f_last_buffer_nr},/* obsolete */
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007598 {"len", 1, 1, f_len},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007599 {"libcall", 3, 3, f_libcall},
7600 {"libcallnr", 3, 3, f_libcallnr},
7601 {"line", 1, 1, f_line},
7602 {"line2byte", 1, 1, f_line2byte},
7603 {"lispindent", 1, 1, f_lispindent},
7604 {"localtime", 0, 0, f_localtime},
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007605#ifdef FEAT_FLOAT
7606 {"log10", 1, 1, f_log10},
7607#endif
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007608 {"map", 2, 2, f_map},
Bram Moolenaar2c932302006-03-18 21:42:09 +00007609 {"maparg", 1, 3, f_maparg},
7610 {"mapcheck", 1, 3, f_mapcheck},
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00007611 {"match", 2, 4, f_match},
Bram Moolenaar6ee10162007-07-26 20:58:42 +00007612 {"matchadd", 2, 4, f_matchadd},
Bram Moolenaar910f66f2006-04-05 20:41:53 +00007613 {"matcharg", 1, 1, f_matcharg},
Bram Moolenaar6ee10162007-07-26 20:58:42 +00007614 {"matchdelete", 1, 1, f_matchdelete},
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00007615 {"matchend", 2, 4, f_matchend},
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00007616 {"matchlist", 2, 4, f_matchlist},
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00007617 {"matchstr", 2, 4, f_matchstr},
Bram Moolenaar6cc16192005-01-08 21:49:45 +00007618 {"max", 1, 1, f_max},
7619 {"min", 1, 1, f_min},
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00007620#ifdef vim_mkdir
7621 {"mkdir", 1, 3, f_mkdir},
7622#endif
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007623 {"mode", 0, 1, f_mode},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007624 {"nextnonblank", 1, 1, f_nextnonblank},
7625 {"nr2char", 1, 1, f_nr2char},
Bram Moolenaar910f66f2006-04-05 20:41:53 +00007626 {"pathshorten", 1, 1, f_pathshorten},
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007627#ifdef FEAT_FLOAT
7628 {"pow", 2, 2, f_pow},
7629#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007630 {"prevnonblank", 1, 1, f_prevnonblank},
Bram Moolenaar4be06f92005-07-29 22:36:03 +00007631 {"printf", 2, 19, f_printf},
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007632 {"pumvisible", 0, 0, f_pumvisible},
Bram Moolenaar8c711452005-01-14 21:53:12 +00007633 {"range", 1, 3, f_range},
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00007634 {"readfile", 1, 3, f_readfile},
Bram Moolenaare580b0c2006-03-21 21:33:03 +00007635 {"reltime", 0, 2, f_reltime},
7636 {"reltimestr", 1, 1, f_reltimestr},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007637 {"remote_expr", 2, 3, f_remote_expr},
7638 {"remote_foreground", 1, 1, f_remote_foreground},
7639 {"remote_peek", 1, 2, f_remote_peek},
7640 {"remote_read", 1, 1, f_remote_read},
7641 {"remote_send", 2, 3, f_remote_send},
Bram Moolenaar8a283e52005-01-06 23:28:25 +00007642 {"remove", 2, 3, f_remove},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007643 {"rename", 2, 2, f_rename},
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00007644 {"repeat", 2, 2, f_repeat},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007645 {"resolve", 1, 1, f_resolve},
Bram Moolenaar0d660222005-01-07 21:51:51 +00007646 {"reverse", 1, 1, f_reverse},
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007647#ifdef FEAT_FLOAT
7648 {"round", 1, 1, f_round},
7649#endif
Bram Moolenaar76929292008-01-06 19:07:36 +00007650 {"search", 1, 4, f_search},
Bram Moolenaare6facf92005-09-13 21:22:27 +00007651 {"searchdecl", 1, 3, f_searchdecl},
Bram Moolenaar76929292008-01-06 19:07:36 +00007652 {"searchpair", 3, 7, f_searchpair},
7653 {"searchpairpos", 3, 7, f_searchpairpos},
7654 {"searchpos", 1, 4, f_searchpos},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007655 {"server2client", 2, 2, f_server2client},
7656 {"serverlist", 0, 0, f_serverlist},
7657 {"setbufvar", 3, 3, f_setbufvar},
7658 {"setcmdpos", 1, 1, f_setcmdpos},
7659 {"setline", 2, 2, f_setline},
Bram Moolenaar17c7c012006-01-26 22:25:15 +00007660 {"setloclist", 2, 3, f_setloclist},
Bram Moolenaar6ee10162007-07-26 20:58:42 +00007661 {"setmatches", 1, 1, f_setmatches},
Bram Moolenaar0e34f622006-03-03 23:00:03 +00007662 {"setpos", 2, 2, f_setpos},
Bram Moolenaarf4630b62005-05-20 21:31:17 +00007663 {"setqflist", 1, 2, f_setqflist},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007664 {"setreg", 2, 3, f_setreg},
Bram Moolenaar99ebf042006-04-15 20:28:54 +00007665 {"settabwinvar", 4, 4, f_settabwinvar},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007666 {"setwinvar", 3, 3, f_setwinvar},
Bram Moolenaar05bb9532008-07-04 09:44:11 +00007667 {"shellescape", 1, 2, f_shellescape},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007668 {"simplify", 1, 1, f_simplify},
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007669#ifdef FEAT_FLOAT
7670 {"sin", 1, 1, f_sin},
7671#endif
Bram Moolenaar0d660222005-01-07 21:51:51 +00007672 {"sort", 1, 2, f_sort},
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00007673 {"soundfold", 1, 1, f_soundfold},
Bram Moolenaar4463f292005-09-25 22:20:24 +00007674 {"spellbadword", 0, 1, f_spellbadword},
Bram Moolenaar69e0ff92005-09-30 21:23:56 +00007675 {"spellsuggest", 1, 3, f_spellsuggest},
Bram Moolenaar67fe1a12005-05-22 22:12:58 +00007676 {"split", 1, 3, f_split},
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007677#ifdef FEAT_FLOAT
7678 {"sqrt", 1, 1, f_sqrt},
7679 {"str2float", 1, 1, f_str2float},
7680#endif
Bram Moolenaar2c932302006-03-18 21:42:09 +00007681 {"str2nr", 1, 2, f_str2nr},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007682#ifdef HAVE_STRFTIME
7683 {"strftime", 1, 2, f_strftime},
7684#endif
Bram Moolenaar33570922005-01-25 22:26:29 +00007685 {"stridx", 2, 3, f_stridx},
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007686 {"string", 1, 1, f_string},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007687 {"strlen", 1, 1, f_strlen},
7688 {"strpart", 2, 3, f_strpart},
Bram Moolenaar532c7802005-01-27 14:44:31 +00007689 {"strridx", 2, 3, f_strridx},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007690 {"strtrans", 1, 1, f_strtrans},
7691 {"submatch", 1, 1, f_submatch},
7692 {"substitute", 4, 4, f_substitute},
7693 {"synID", 3, 3, f_synID},
7694 {"synIDattr", 2, 3, f_synIDattr},
7695 {"synIDtrans", 1, 1, f_synIDtrans},
Bram Moolenaar9d188ab2008-01-10 21:24:39 +00007696 {"synstack", 2, 2, f_synstack},
Bram Moolenaarc0197e22004-09-13 20:26:32 +00007697 {"system", 1, 2, f_system},
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00007698 {"tabpagebuflist", 0, 1, f_tabpagebuflist},
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00007699 {"tabpagenr", 0, 1, f_tabpagenr},
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00007700 {"tabpagewinnr", 1, 2, f_tabpagewinnr},
Bram Moolenaard43b6cf2005-09-09 19:53:42 +00007701 {"tagfiles", 0, 0, f_tagfiles},
Bram Moolenaar19a09a12005-03-04 23:39:37 +00007702 {"taglist", 1, 1, f_taglist},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007703 {"tempname", 0, 0, f_tempname},
Bram Moolenaard52d9742005-08-21 22:20:28 +00007704 {"test", 1, 1, f_test},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007705 {"tolower", 1, 1, f_tolower},
7706 {"toupper", 1, 1, f_toupper},
Bram Moolenaar8299df92004-07-10 09:47:34 +00007707 {"tr", 3, 3, f_tr},
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007708#ifdef FEAT_FLOAT
7709 {"trunc", 1, 1, f_trunc},
7710#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007711 {"type", 1, 1, f_type},
Bram Moolenaar8c711452005-01-14 21:53:12 +00007712 {"values", 1, 1, f_values},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007713 {"virtcol", 1, 1, f_virtcol},
7714 {"visualmode", 0, 1, f_visualmode},
7715 {"winbufnr", 1, 1, f_winbufnr},
7716 {"wincol", 0, 0, f_wincol},
7717 {"winheight", 1, 1, f_winheight},
7718 {"winline", 0, 0, f_winline},
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00007719 {"winnr", 0, 1, f_winnr},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007720 {"winrestcmd", 0, 0, f_winrestcmd},
Bram Moolenaar768b8c42006-03-04 21:58:33 +00007721 {"winrestview", 1, 1, f_winrestview},
7722 {"winsaveview", 0, 0, f_winsaveview},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007723 {"winwidth", 1, 1, f_winwidth},
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00007724 {"writefile", 2, 3, f_writefile},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007725};
7726
7727#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
7728
7729/*
7730 * Function given to ExpandGeneric() to obtain the list of internal
7731 * or user defined function names.
7732 */
7733 char_u *
7734get_function_name(xp, idx)
7735 expand_T *xp;
7736 int idx;
7737{
7738 static int intidx = -1;
7739 char_u *name;
7740
7741 if (idx == 0)
7742 intidx = -1;
7743 if (intidx < 0)
7744 {
7745 name = get_user_func_name(xp, idx);
7746 if (name != NULL)
7747 return name;
7748 }
7749 if (++intidx < (int)(sizeof(functions) / sizeof(struct fst)))
7750 {
7751 STRCPY(IObuff, functions[intidx].f_name);
7752 STRCAT(IObuff, "(");
7753 if (functions[intidx].f_max_argc == 0)
7754 STRCAT(IObuff, ")");
7755 return IObuff;
7756 }
7757
7758 return NULL;
7759}
7760
7761/*
7762 * Function given to ExpandGeneric() to obtain the list of internal or
7763 * user defined variable or function names.
7764 */
7765/*ARGSUSED*/
7766 char_u *
7767get_expr_name(xp, idx)
7768 expand_T *xp;
7769 int idx;
7770{
7771 static int intidx = -1;
7772 char_u *name;
7773
7774 if (idx == 0)
7775 intidx = -1;
7776 if (intidx < 0)
7777 {
7778 name = get_function_name(xp, idx);
7779 if (name != NULL)
7780 return name;
7781 }
7782 return get_user_var_name(xp, ++intidx);
7783}
7784
7785#endif /* FEAT_CMDL_COMPL */
7786
7787/*
7788 * Find internal function in table above.
7789 * Return index, or -1 if not found
7790 */
7791 static int
7792find_internal_func(name)
7793 char_u *name; /* name of the function */
7794{
7795 int first = 0;
7796 int last = (int)(sizeof(functions) / sizeof(struct fst)) - 1;
7797 int cmp;
7798 int x;
7799
7800 /*
7801 * Find the function name in the table. Binary search.
7802 */
7803 while (first <= last)
7804 {
7805 x = first + ((unsigned)(last - first) >> 1);
7806 cmp = STRCMP(name, functions[x].f_name);
7807 if (cmp < 0)
7808 last = x - 1;
7809 else if (cmp > 0)
7810 first = x + 1;
7811 else
7812 return x;
7813 }
7814 return -1;
7815}
7816
7817/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007818 * Check if "name" is a variable of type VAR_FUNC. If so, return the function
7819 * name it contains, otherwise return "name".
7820 */
7821 static char_u *
7822deref_func_name(name, lenp)
7823 char_u *name;
7824 int *lenp;
7825{
Bram Moolenaar33570922005-01-25 22:26:29 +00007826 dictitem_T *v;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007827 int cc;
7828
7829 cc = name[*lenp];
7830 name[*lenp] = NUL;
Bram Moolenaara7043832005-01-21 11:56:39 +00007831 v = find_var(name, NULL);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007832 name[*lenp] = cc;
Bram Moolenaar33570922005-01-25 22:26:29 +00007833 if (v != NULL && v->di_tv.v_type == VAR_FUNC)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007834 {
Bram Moolenaar33570922005-01-25 22:26:29 +00007835 if (v->di_tv.vval.v_string == NULL)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007836 {
7837 *lenp = 0;
7838 return (char_u *)""; /* just in case */
7839 }
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007840 *lenp = (int)STRLEN(v->di_tv.vval.v_string);
Bram Moolenaar33570922005-01-25 22:26:29 +00007841 return v->di_tv.vval.v_string;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007842 }
7843
7844 return name;
7845}
7846
7847/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00007848 * Allocate a variable for the result of a function.
7849 * Return OK or FAIL.
7850 */
7851 static int
Bram Moolenaare9a41262005-01-15 22:18:47 +00007852get_func_tv(name, len, rettv, arg, firstline, lastline, doesrange,
7853 evaluate, selfdict)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007854 char_u *name; /* name of the function */
7855 int len; /* length of "name" */
Bram Moolenaar33570922005-01-25 22:26:29 +00007856 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007857 char_u **arg; /* argument, pointing to the '(' */
7858 linenr_T firstline; /* first line of range */
7859 linenr_T lastline; /* last line of range */
7860 int *doesrange; /* return: function handled range */
7861 int evaluate;
Bram Moolenaar33570922005-01-25 22:26:29 +00007862 dict_T *selfdict; /* Dictionary for "self" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007863{
7864 char_u *argp;
7865 int ret = OK;
Bram Moolenaareb3593b2006-04-22 22:33:57 +00007866 typval_T argvars[MAX_FUNC_ARGS + 1]; /* vars for arguments */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007867 int argcount = 0; /* number of arguments found */
7868
7869 /*
7870 * Get the arguments.
7871 */
7872 argp = *arg;
7873 while (argcount < MAX_FUNC_ARGS)
7874 {
7875 argp = skipwhite(argp + 1); /* skip the '(' or ',' */
7876 if (*argp == ')' || *argp == ',' || *argp == NUL)
7877 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007878 if (eval1(&argp, &argvars[argcount], evaluate) == FAIL)
7879 {
7880 ret = FAIL;
7881 break;
7882 }
7883 ++argcount;
7884 if (*argp != ',')
7885 break;
7886 }
7887 if (*argp == ')')
7888 ++argp;
7889 else
7890 ret = FAIL;
7891
7892 if (ret == OK)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00007893 ret = call_func(name, len, rettv, argcount, argvars,
Bram Moolenaare9a41262005-01-15 22:18:47 +00007894 firstline, lastline, doesrange, evaluate, selfdict);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007895 else if (!aborting())
Bram Moolenaar33570922005-01-25 22:26:29 +00007896 {
7897 if (argcount == MAX_FUNC_ARGS)
Bram Moolenaar81bf7082005-02-12 14:31:42 +00007898 emsg_funcname("E740: Too many arguments for function %s", name);
Bram Moolenaar33570922005-01-25 22:26:29 +00007899 else
Bram Moolenaar81bf7082005-02-12 14:31:42 +00007900 emsg_funcname("E116: Invalid arguments for function %s", name);
Bram Moolenaar33570922005-01-25 22:26:29 +00007901 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007902
7903 while (--argcount >= 0)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00007904 clear_tv(&argvars[argcount]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007905
7906 *arg = skipwhite(argp);
7907 return ret;
7908}
7909
7910
7911/*
7912 * Call a function with its resolved parameters
Bram Moolenaar280f1262006-01-30 00:14:18 +00007913 * Return OK when the function can't be called, FAIL otherwise.
7914 * Also returns OK when an error was encountered while executing the function.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007915 */
7916 static int
Bram Moolenaarc70646c2005-01-04 21:52:38 +00007917call_func(name, len, rettv, argcount, argvars, firstline, lastline,
Bram Moolenaare9a41262005-01-15 22:18:47 +00007918 doesrange, evaluate, selfdict)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007919 char_u *name; /* name of the function */
7920 int len; /* length of "name" */
Bram Moolenaar33570922005-01-25 22:26:29 +00007921 typval_T *rettv; /* return value goes here */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007922 int argcount; /* number of "argvars" */
Bram Moolenaareb3593b2006-04-22 22:33:57 +00007923 typval_T *argvars; /* vars for arguments, must have "argcount"
7924 PLUS ONE elements! */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007925 linenr_T firstline; /* first line of range */
7926 linenr_T lastline; /* last line of range */
7927 int *doesrange; /* return: function handled range */
7928 int evaluate;
Bram Moolenaar33570922005-01-25 22:26:29 +00007929 dict_T *selfdict; /* Dictionary for "self" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007930{
7931 int ret = FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007932#define ERROR_UNKNOWN 0
7933#define ERROR_TOOMANY 1
7934#define ERROR_TOOFEW 2
7935#define ERROR_SCRIPT 3
Bram Moolenaare9a41262005-01-15 22:18:47 +00007936#define ERROR_DICT 4
7937#define ERROR_NONE 5
7938#define ERROR_OTHER 6
Bram Moolenaar071d4272004-06-13 20:20:40 +00007939 int error = ERROR_NONE;
7940 int i;
7941 int llen;
7942 ufunc_T *fp;
7943 int cc;
7944#define FLEN_FIXED 40
7945 char_u fname_buf[FLEN_FIXED + 1];
7946 char_u *fname;
7947
7948 /*
7949 * In a script change <SID>name() and s:name() to K_SNR 123_name().
7950 * Change <SNR>123_name() to K_SNR 123_name().
7951 * Use fname_buf[] when it fits, otherwise allocate memory (slow).
7952 */
7953 cc = name[len];
7954 name[len] = NUL;
7955 llen = eval_fname_script(name);
7956 if (llen > 0)
7957 {
7958 fname_buf[0] = K_SPECIAL;
7959 fname_buf[1] = KS_EXTRA;
7960 fname_buf[2] = (int)KE_SNR;
7961 i = 3;
7962 if (eval_fname_sid(name)) /* "<SID>" or "s:" */
7963 {
7964 if (current_SID <= 0)
7965 error = ERROR_SCRIPT;
7966 else
7967 {
7968 sprintf((char *)fname_buf + 3, "%ld_", (long)current_SID);
7969 i = (int)STRLEN(fname_buf);
7970 }
7971 }
7972 if (i + STRLEN(name + llen) < FLEN_FIXED)
7973 {
7974 STRCPY(fname_buf + i, name + llen);
7975 fname = fname_buf;
7976 }
7977 else
7978 {
7979 fname = alloc((unsigned)(i + STRLEN(name + llen) + 1));
7980 if (fname == NULL)
7981 error = ERROR_OTHER;
7982 else
7983 {
7984 mch_memmove(fname, fname_buf, (size_t)i);
7985 STRCPY(fname + i, name + llen);
7986 }
7987 }
7988 }
7989 else
7990 fname = name;
7991
7992 *doesrange = FALSE;
7993
7994
7995 /* execute the function if no errors detected and executing */
7996 if (evaluate && error == ERROR_NONE)
7997 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00007998 rettv->v_type = VAR_NUMBER; /* default is number rettv */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007999 error = ERROR_UNKNOWN;
8000
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +00008001 if (!builtin_function(fname))
Bram Moolenaar071d4272004-06-13 20:20:40 +00008002 {
8003 /*
8004 * User defined function.
8005 */
8006 fp = find_func(fname);
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +00008007
Bram Moolenaar071d4272004-06-13 20:20:40 +00008008#ifdef FEAT_AUTOCMD
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +00008009 /* Trigger FuncUndefined event, may load the function. */
8010 if (fp == NULL
8011 && apply_autocmds(EVENT_FUNCUNDEFINED,
8012 fname, fname, TRUE, NULL)
8013 && !aborting())
Bram Moolenaar071d4272004-06-13 20:20:40 +00008014 {
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +00008015 /* executed an autocommand, search for the function again */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008016 fp = find_func(fname);
8017 }
8018#endif
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +00008019 /* Try loading a package. */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00008020 if (fp == NULL && script_autoload(fname, TRUE) && !aborting())
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +00008021 {
8022 /* loaded a package, search for the function again */
8023 fp = find_func(fname);
8024 }
8025
Bram Moolenaar071d4272004-06-13 20:20:40 +00008026 if (fp != NULL)
8027 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00008028 if (fp->uf_flags & FC_RANGE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008029 *doesrange = TRUE;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00008030 if (argcount < fp->uf_args.ga_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008031 error = ERROR_TOOFEW;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00008032 else if (!fp->uf_varargs && argcount > fp->uf_args.ga_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008033 error = ERROR_TOOMANY;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00008034 else if ((fp->uf_flags & FC_DICT) && selfdict == NULL)
Bram Moolenaare9a41262005-01-15 22:18:47 +00008035 error = ERROR_DICT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008036 else
8037 {
8038 /*
8039 * Call the user function.
8040 * Save and restore search patterns, script variables and
8041 * redo buffer.
8042 */
8043 save_search_patterns();
8044 saveRedobuff();
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00008045 ++fp->uf_calls;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008046 call_user_func(fp, argcount, argvars, rettv,
Bram Moolenaare9a41262005-01-15 22:18:47 +00008047 firstline, lastline,
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00008048 (fp->uf_flags & FC_DICT) ? selfdict : NULL);
8049 if (--fp->uf_calls <= 0 && isdigit(*fp->uf_name)
8050 && fp->uf_refcount <= 0)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00008051 /* Function was unreferenced while being used, free it
8052 * now. */
8053 func_free(fp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008054 restoreRedobuff();
8055 restore_search_patterns();
8056 error = ERROR_NONE;
8057 }
8058 }
8059 }
8060 else
8061 {
8062 /*
8063 * Find the function name in the table, call its implementation.
8064 */
8065 i = find_internal_func(fname);
8066 if (i >= 0)
8067 {
8068 if (argcount < functions[i].f_min_argc)
8069 error = ERROR_TOOFEW;
8070 else if (argcount > functions[i].f_max_argc)
8071 error = ERROR_TOOMANY;
8072 else
8073 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +00008074 argvars[argcount].v_type = VAR_UNKNOWN;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008075 functions[i].f_func(argvars, rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008076 error = ERROR_NONE;
8077 }
8078 }
8079 }
8080 /*
8081 * The function call (or "FuncUndefined" autocommand sequence) might
8082 * have been aborted by an error, an interrupt, or an explicitly thrown
8083 * exception that has not been caught so far. This situation can be
8084 * tested for by calling aborting(). For an error in an internal
8085 * function or for the "E132" error in call_user_func(), however, the
8086 * throw point at which the "force_abort" flag (temporarily reset by
8087 * emsg()) is normally updated has not been reached yet. We need to
8088 * update that flag first to make aborting() reliable.
8089 */
8090 update_force_abort();
8091 }
8092 if (error == ERROR_NONE)
8093 ret = OK;
8094
8095 /*
8096 * Report an error unless the argument evaluation or function call has been
8097 * cancelled due to an aborting error, an interrupt, or an exception.
8098 */
Bram Moolenaar8c711452005-01-14 21:53:12 +00008099 if (!aborting())
8100 {
8101 switch (error)
8102 {
8103 case ERROR_UNKNOWN:
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00008104 emsg_funcname(N_("E117: Unknown function: %s"), name);
Bram Moolenaar8c711452005-01-14 21:53:12 +00008105 break;
8106 case ERROR_TOOMANY:
Bram Moolenaar81bf7082005-02-12 14:31:42 +00008107 emsg_funcname(e_toomanyarg, name);
Bram Moolenaar8c711452005-01-14 21:53:12 +00008108 break;
8109 case ERROR_TOOFEW:
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00008110 emsg_funcname(N_("E119: Not enough arguments for function: %s"),
Bram Moolenaar8c711452005-01-14 21:53:12 +00008111 name);
8112 break;
8113 case ERROR_SCRIPT:
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00008114 emsg_funcname(N_("E120: Using <SID> not in a script context: %s"),
Bram Moolenaar8c711452005-01-14 21:53:12 +00008115 name);
8116 break;
Bram Moolenaare9a41262005-01-15 22:18:47 +00008117 case ERROR_DICT:
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00008118 emsg_funcname(N_("E725: Calling dict function without Dictionary: %s"),
Bram Moolenaare9a41262005-01-15 22:18:47 +00008119 name);
8120 break;
Bram Moolenaar8c711452005-01-14 21:53:12 +00008121 }
8122 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008123
8124 name[len] = cc;
8125 if (fname != name && fname != fname_buf)
8126 vim_free(fname);
8127
8128 return ret;
8129}
8130
Bram Moolenaar81bf7082005-02-12 14:31:42 +00008131/*
8132 * Give an error message with a function name. Handle <SNR> things.
8133 */
8134 static void
Bram Moolenaar89d40322006-08-29 15:30:07 +00008135emsg_funcname(ermsg, name)
8136 char *ermsg;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00008137 char_u *name;
8138{
8139 char_u *p;
8140
8141 if (*name == K_SPECIAL)
8142 p = concat_str((char_u *)"<SNR>", name + 3);
8143 else
8144 p = name;
Bram Moolenaar89d40322006-08-29 15:30:07 +00008145 EMSG2(_(ermsg), p);
Bram Moolenaar81bf7082005-02-12 14:31:42 +00008146 if (p != name)
8147 vim_free(p);
8148}
8149
Bram Moolenaar05bb9532008-07-04 09:44:11 +00008150/*
8151 * Return TRUE for a non-zero Number and a non-empty String.
8152 */
8153 static int
8154non_zero_arg(argvars)
8155 typval_T *argvars;
8156{
8157 return ((argvars[0].v_type == VAR_NUMBER
8158 && argvars[0].vval.v_number != 0)
8159 || (argvars[0].v_type == VAR_STRING
8160 && argvars[0].vval.v_string != NULL
8161 && *argvars[0].vval.v_string != NUL));
8162}
8163
Bram Moolenaar071d4272004-06-13 20:20:40 +00008164/*********************************************
8165 * Implementation of the built-in functions
8166 */
8167
Bram Moolenaar8c8de832008-06-24 22:58:06 +00008168#ifdef FEAT_FLOAT
8169/*
8170 * "abs(expr)" function
8171 */
8172 static void
8173f_abs(argvars, rettv)
8174 typval_T *argvars;
8175 typval_T *rettv;
8176{
8177 if (argvars[0].v_type == VAR_FLOAT)
8178 {
8179 rettv->v_type = VAR_FLOAT;
8180 rettv->vval.v_float = fabs(argvars[0].vval.v_float);
8181 }
8182 else
8183 {
8184 varnumber_T n;
8185 int error = FALSE;
8186
8187 n = get_tv_number_chk(&argvars[0], &error);
8188 if (error)
8189 rettv->vval.v_number = -1;
8190 else if (n > 0)
8191 rettv->vval.v_number = n;
8192 else
8193 rettv->vval.v_number = -n;
8194 }
8195}
8196#endif
8197
Bram Moolenaar071d4272004-06-13 20:20:40 +00008198/*
Bram Moolenaar0d660222005-01-07 21:51:51 +00008199 * "add(list, item)" function
Bram Moolenaar071d4272004-06-13 20:20:40 +00008200 */
8201 static void
Bram Moolenaar0d660222005-01-07 21:51:51 +00008202f_add(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008203 typval_T *argvars;
8204 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008205{
Bram Moolenaar33570922005-01-25 22:26:29 +00008206 list_T *l;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008207
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008208 rettv->vval.v_number = 1; /* Default: Failed */
Bram Moolenaar49cd9572005-01-03 21:06:01 +00008209 if (argvars[0].v_type == VAR_LIST)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008210 {
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00008211 if ((l = argvars[0].vval.v_list) != NULL
8212 && !tv_check_lock(l->lv_lock, (char_u *)"add()")
8213 && list_append_tv(l, &argvars[1]) == OK)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008214 copy_tv(&argvars[0], rettv);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00008215 }
8216 else
Bram Moolenaar0d660222005-01-07 21:51:51 +00008217 EMSG(_(e_listreq));
8218}
8219
8220/*
8221 * "append(lnum, string/list)" function
8222 */
8223 static void
8224f_append(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008225 typval_T *argvars;
8226 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +00008227{
8228 long lnum;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008229 char_u *line;
Bram Moolenaar33570922005-01-25 22:26:29 +00008230 list_T *l = NULL;
8231 listitem_T *li = NULL;
8232 typval_T *tv;
Bram Moolenaar0d660222005-01-07 21:51:51 +00008233 long added = 0;
8234
Bram Moolenaar0d660222005-01-07 21:51:51 +00008235 lnum = get_tv_lnum(argvars);
8236 if (lnum >= 0
8237 && lnum <= curbuf->b_ml.ml_line_count
8238 && u_save(lnum, lnum + 1) == OK)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00008239 {
Bram Moolenaar0d660222005-01-07 21:51:51 +00008240 if (argvars[1].v_type == VAR_LIST)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00008241 {
Bram Moolenaar0d660222005-01-07 21:51:51 +00008242 l = argvars[1].vval.v_list;
8243 if (l == NULL)
8244 return;
8245 li = l->lv_first;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00008246 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008247 rettv->vval.v_number = 0; /* Default: Success */
Bram Moolenaar0d660222005-01-07 21:51:51 +00008248 for (;;)
8249 {
8250 if (l == NULL)
8251 tv = &argvars[1]; /* append a string */
8252 else if (li == NULL)
8253 break; /* end of list */
8254 else
8255 tv = &li->li_tv; /* append item from list */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008256 line = get_tv_string_chk(tv);
8257 if (line == NULL) /* type error */
8258 {
8259 rettv->vval.v_number = 1; /* Failed */
8260 break;
8261 }
8262 ml_append(lnum + added, line, (colnr_T)0, FALSE);
Bram Moolenaar0d660222005-01-07 21:51:51 +00008263 ++added;
8264 if (l == NULL)
8265 break;
8266 li = li->li_next;
8267 }
8268
8269 appended_lines_mark(lnum, added);
8270 if (curwin->w_cursor.lnum > lnum)
8271 curwin->w_cursor.lnum += added;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008272 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008273 else
8274 rettv->vval.v_number = 1; /* Failed */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008275}
8276
8277/*
8278 * "argc()" function
8279 */
8280/* ARGSUSED */
8281 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008282f_argc(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008283 typval_T *argvars;
8284 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008285{
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008286 rettv->vval.v_number = ARGCOUNT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008287}
8288
8289/*
8290 * "argidx()" function
8291 */
8292/* ARGSUSED */
8293 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008294f_argidx(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008295 typval_T *argvars;
8296 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008297{
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008298 rettv->vval.v_number = curwin->w_arg_idx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008299}
8300
8301/*
8302 * "argv(nr)" function
8303 */
8304 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008305f_argv(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008306 typval_T *argvars;
8307 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008308{
8309 int idx;
8310
Bram Moolenaare2f98b92006-03-29 21:18:24 +00008311 if (argvars[0].v_type != VAR_UNKNOWN)
8312 {
8313 idx = get_tv_number_chk(&argvars[0], NULL);
8314 if (idx >= 0 && idx < ARGCOUNT)
8315 rettv->vval.v_string = vim_strsave(alist_name(&ARGLIST[idx]));
8316 else
8317 rettv->vval.v_string = NULL;
8318 rettv->v_type = VAR_STRING;
8319 }
8320 else if (rettv_list_alloc(rettv) == OK)
8321 for (idx = 0; idx < ARGCOUNT; ++idx)
8322 list_append_string(rettv->vval.v_list,
8323 alist_name(&ARGLIST[idx]), -1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008324}
8325
Bram Moolenaar8c8de832008-06-24 22:58:06 +00008326#ifdef FEAT_FLOAT
8327static int get_float_arg __ARGS((typval_T *argvars, float_T *f));
8328
8329/*
8330 * Get the float value of "argvars[0]" into "f".
8331 * Returns FAIL when the argument is not a Number or Float.
8332 */
8333 static int
8334get_float_arg(argvars, f)
8335 typval_T *argvars;
8336 float_T *f;
8337{
8338 if (argvars[0].v_type == VAR_FLOAT)
8339 {
8340 *f = argvars[0].vval.v_float;
8341 return OK;
8342 }
8343 if (argvars[0].v_type == VAR_NUMBER)
8344 {
8345 *f = (float_T)argvars[0].vval.v_number;
8346 return OK;
8347 }
8348 EMSG(_("E808: Number or Float required"));
8349 return FAIL;
8350}
8351
8352/*
8353 * "atan()" function
8354 */
8355 static void
8356f_atan(argvars, rettv)
8357 typval_T *argvars;
8358 typval_T *rettv;
8359{
8360 float_T f;
8361
8362 rettv->v_type = VAR_FLOAT;
8363 if (get_float_arg(argvars, &f) == OK)
8364 rettv->vval.v_float = atan(f);
8365 else
8366 rettv->vval.v_float = 0.0;
8367}
8368#endif
8369
Bram Moolenaar071d4272004-06-13 20:20:40 +00008370/*
8371 * "browse(save, title, initdir, default)" function
8372 */
8373/* ARGSUSED */
8374 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008375f_browse(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008376 typval_T *argvars;
8377 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008378{
8379#ifdef FEAT_BROWSE
8380 int save;
8381 char_u *title;
8382 char_u *initdir;
8383 char_u *defname;
8384 char_u buf[NUMBUFLEN];
8385 char_u buf2[NUMBUFLEN];
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008386 int error = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008387
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008388 save = get_tv_number_chk(&argvars[0], &error);
8389 title = get_tv_string_chk(&argvars[1]);
8390 initdir = get_tv_string_buf_chk(&argvars[2], buf);
8391 defname = get_tv_string_buf_chk(&argvars[3], buf2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008392
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008393 if (error || title == NULL || initdir == NULL || defname == NULL)
8394 rettv->vval.v_string = NULL;
8395 else
8396 rettv->vval.v_string =
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00008397 do_browse(save ? BROWSE_SAVE : 0,
8398 title, defname, NULL, initdir, NULL, curbuf);
8399#else
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008400 rettv->vval.v_string = NULL;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00008401#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008402 rettv->v_type = VAR_STRING;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00008403}
8404
8405/*
8406 * "browsedir(title, initdir)" function
8407 */
8408/* ARGSUSED */
8409 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008410f_browsedir(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008411 typval_T *argvars;
8412 typval_T *rettv;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00008413{
8414#ifdef FEAT_BROWSE
8415 char_u *title;
8416 char_u *initdir;
8417 char_u buf[NUMBUFLEN];
8418
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008419 title = get_tv_string_chk(&argvars[0]);
8420 initdir = get_tv_string_buf_chk(&argvars[1], buf);
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00008421
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008422 if (title == NULL || initdir == NULL)
8423 rettv->vval.v_string = NULL;
8424 else
8425 rettv->vval.v_string = do_browse(BROWSE_DIR,
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00008426 title, NULL, NULL, initdir, NULL, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008427#else
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008428 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008429#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008430 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008431}
8432
Bram Moolenaar33570922005-01-25 22:26:29 +00008433static buf_T *find_buffer __ARGS((typval_T *avar));
Bram Moolenaar0d660222005-01-07 21:51:51 +00008434
Bram Moolenaar071d4272004-06-13 20:20:40 +00008435/*
8436 * Find a buffer by number or exact name.
8437 */
8438 static buf_T *
8439find_buffer(avar)
Bram Moolenaar33570922005-01-25 22:26:29 +00008440 typval_T *avar;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008441{
8442 buf_T *buf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008443
Bram Moolenaar49cd9572005-01-03 21:06:01 +00008444 if (avar->v_type == VAR_NUMBER)
8445 buf = buflist_findnr((int)avar->vval.v_number);
Bram Moolenaar758711c2005-02-02 23:11:38 +00008446 else if (avar->v_type == VAR_STRING && avar->vval.v_string != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008447 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +00008448 buf = buflist_findname_exp(avar->vval.v_string);
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00008449 if (buf == NULL)
8450 {
8451 /* No full path name match, try a match with a URL or a "nofile"
8452 * buffer, these don't use the full path. */
8453 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
8454 if (buf->b_fname != NULL
8455 && (path_with_url(buf->b_fname)
8456#ifdef FEAT_QUICKFIX
8457 || bt_nofile(buf)
8458#endif
8459 )
Bram Moolenaar49cd9572005-01-03 21:06:01 +00008460 && STRCMP(buf->b_fname, avar->vval.v_string) == 0)
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00008461 break;
8462 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008463 }
8464 return buf;
8465}
8466
8467/*
8468 * "bufexists(expr)" function
8469 */
8470 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008471f_bufexists(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008472 typval_T *argvars;
8473 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008474{
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008475 rettv->vval.v_number = (find_buffer(&argvars[0]) != NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008476}
8477
8478/*
8479 * "buflisted(expr)" function
8480 */
8481 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008482f_buflisted(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008483 typval_T *argvars;
8484 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008485{
8486 buf_T *buf;
8487
8488 buf = find_buffer(&argvars[0]);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008489 rettv->vval.v_number = (buf != NULL && buf->b_p_bl);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008490}
8491
8492/*
8493 * "bufloaded(expr)" function
8494 */
8495 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008496f_bufloaded(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008497 typval_T *argvars;
8498 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008499{
8500 buf_T *buf;
8501
8502 buf = find_buffer(&argvars[0]);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008503 rettv->vval.v_number = (buf != NULL && buf->b_ml.ml_mfp != NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008504}
8505
Bram Moolenaar33570922005-01-25 22:26:29 +00008506static buf_T *get_buf_tv __ARGS((typval_T *tv));
Bram Moolenaar0d660222005-01-07 21:51:51 +00008507
Bram Moolenaar071d4272004-06-13 20:20:40 +00008508/*
8509 * Get buffer by number or pattern.
8510 */
8511 static buf_T *
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008512get_buf_tv(tv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008513 typval_T *tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008514{
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008515 char_u *name = tv->vval.v_string;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008516 int save_magic;
8517 char_u *save_cpo;
8518 buf_T *buf;
8519
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008520 if (tv->v_type == VAR_NUMBER)
8521 return buflist_findnr((int)tv->vval.v_number);
Bram Moolenaar758711c2005-02-02 23:11:38 +00008522 if (tv->v_type != VAR_STRING)
8523 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008524 if (name == NULL || *name == NUL)
8525 return curbuf;
8526 if (name[0] == '$' && name[1] == NUL)
8527 return lastbuf;
8528
8529 /* Ignore 'magic' and 'cpoptions' here to make scripts portable */
8530 save_magic = p_magic;
8531 p_magic = TRUE;
8532 save_cpo = p_cpo;
8533 p_cpo = (char_u *)"";
8534
8535 buf = buflist_findnr(buflist_findpat(name, name + STRLEN(name),
8536 TRUE, FALSE));
8537
8538 p_magic = save_magic;
8539 p_cpo = save_cpo;
8540
8541 /* If not found, try expanding the name, like done for bufexists(). */
8542 if (buf == NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008543 buf = find_buffer(tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008544
8545 return buf;
8546}
8547
8548/*
8549 * "bufname(expr)" function
8550 */
8551 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008552f_bufname(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008553 typval_T *argvars;
8554 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008555{
8556 buf_T *buf;
8557
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008558 (void)get_tv_number(&argvars[0]); /* issue errmsg if type error */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008559 ++emsg_off;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008560 buf = get_buf_tv(&argvars[0]);
8561 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008562 if (buf != NULL && buf->b_fname != NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008563 rettv->vval.v_string = vim_strsave(buf->b_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008564 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008565 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008566 --emsg_off;
8567}
8568
8569/*
8570 * "bufnr(expr)" function
8571 */
8572 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008573f_bufnr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008574 typval_T *argvars;
8575 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008576{
8577 buf_T *buf;
Bram Moolenaar0e34f622006-03-03 23:00:03 +00008578 int error = FALSE;
8579 char_u *name;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008580
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008581 (void)get_tv_number(&argvars[0]); /* issue errmsg if type error */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008582 ++emsg_off;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008583 buf = get_buf_tv(&argvars[0]);
Bram Moolenaar0e34f622006-03-03 23:00:03 +00008584 --emsg_off;
8585
8586 /* If the buffer isn't found and the second argument is not zero create a
8587 * new buffer. */
8588 if (buf == NULL
8589 && argvars[1].v_type != VAR_UNKNOWN
8590 && get_tv_number_chk(&argvars[1], &error) != 0
8591 && !error
8592 && (name = get_tv_string_chk(&argvars[0])) != NULL
8593 && !error)
8594 buf = buflist_new(name, NULL, (linenr_T)1, 0);
8595
Bram Moolenaar071d4272004-06-13 20:20:40 +00008596 if (buf != NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008597 rettv->vval.v_number = buf->b_fnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008598 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008599 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008600}
8601
8602/*
8603 * "bufwinnr(nr)" function
8604 */
8605 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008606f_bufwinnr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008607 typval_T *argvars;
8608 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008609{
8610#ifdef FEAT_WINDOWS
8611 win_T *wp;
8612 int winnr = 0;
8613#endif
8614 buf_T *buf;
8615
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008616 (void)get_tv_number(&argvars[0]); /* issue errmsg if type error */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008617 ++emsg_off;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008618 buf = get_buf_tv(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008619#ifdef FEAT_WINDOWS
8620 for (wp = firstwin; wp; wp = wp->w_next)
8621 {
8622 ++winnr;
8623 if (wp->w_buffer == buf)
8624 break;
8625 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008626 rettv->vval.v_number = (wp != NULL ? winnr : -1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008627#else
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008628 rettv->vval.v_number = (curwin->w_buffer == buf ? 1 : -1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008629#endif
8630 --emsg_off;
8631}
8632
8633/*
8634 * "byte2line(byte)" function
8635 */
8636/*ARGSUSED*/
8637 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008638f_byte2line(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008639 typval_T *argvars;
8640 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008641{
8642#ifndef FEAT_BYTEOFF
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008643 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008644#else
8645 long boff = 0;
8646
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008647 boff = get_tv_number(&argvars[0]) - 1; /* boff gets -1 on type error */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008648 if (boff < 0)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008649 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008650 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008651 rettv->vval.v_number = ml_find_line_or_offset(curbuf,
Bram Moolenaar071d4272004-06-13 20:20:40 +00008652 (linenr_T)0, &boff);
8653#endif
8654}
8655
8656/*
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00008657 * "byteidx()" function
8658 */
8659/*ARGSUSED*/
8660 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008661f_byteidx(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008662 typval_T *argvars;
8663 typval_T *rettv;
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00008664{
8665#ifdef FEAT_MBYTE
8666 char_u *t;
8667#endif
8668 char_u *str;
8669 long idx;
8670
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008671 str = get_tv_string_chk(&argvars[0]);
8672 idx = get_tv_number_chk(&argvars[1], NULL);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008673 rettv->vval.v_number = -1;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008674 if (str == NULL || idx < 0)
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00008675 return;
8676
8677#ifdef FEAT_MBYTE
8678 t = str;
8679 for ( ; idx > 0; idx--)
8680 {
8681 if (*t == NUL) /* EOL reached */
8682 return;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00008683 t += (*mb_ptr2len)(t);
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00008684 }
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00008685 rettv->vval.v_number = (varnumber_T)(t - str);
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00008686#else
Bram Moolenaar8c8de832008-06-24 22:58:06 +00008687 if ((size_t)idx <= STRLEN(str))
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008688 rettv->vval.v_number = idx;
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00008689#endif
8690}
8691
8692/*
Bram Moolenaar8a283e52005-01-06 23:28:25 +00008693 * "call(func, arglist)" function
8694 */
8695 static void
8696f_call(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008697 typval_T *argvars;
8698 typval_T *rettv;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00008699{
8700 char_u *func;
Bram Moolenaareb3593b2006-04-22 22:33:57 +00008701 typval_T argv[MAX_FUNC_ARGS + 1];
Bram Moolenaar8a283e52005-01-06 23:28:25 +00008702 int argc = 0;
Bram Moolenaar33570922005-01-25 22:26:29 +00008703 listitem_T *item;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00008704 int dummy;
Bram Moolenaar33570922005-01-25 22:26:29 +00008705 dict_T *selfdict = NULL;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00008706
8707 rettv->vval.v_number = 0;
8708 if (argvars[1].v_type != VAR_LIST)
8709 {
8710 EMSG(_(e_listreq));
8711 return;
8712 }
8713 if (argvars[1].vval.v_list == NULL)
8714 return;
8715
8716 if (argvars[0].v_type == VAR_FUNC)
8717 func = argvars[0].vval.v_string;
8718 else
8719 func = get_tv_string(&argvars[0]);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008720 if (*func == NUL)
8721 return; /* type error or empty name */
Bram Moolenaar8a283e52005-01-06 23:28:25 +00008722
Bram Moolenaare9a41262005-01-15 22:18:47 +00008723 if (argvars[2].v_type != VAR_UNKNOWN)
8724 {
8725 if (argvars[2].v_type != VAR_DICT)
8726 {
8727 EMSG(_(e_dictreq));
8728 return;
8729 }
8730 selfdict = argvars[2].vval.v_dict;
8731 }
8732
Bram Moolenaar8a283e52005-01-06 23:28:25 +00008733 for (item = argvars[1].vval.v_list->lv_first; item != NULL;
8734 item = item->li_next)
8735 {
8736 if (argc == MAX_FUNC_ARGS)
8737 {
Bram Moolenaare49b69a2005-01-08 16:11:57 +00008738 EMSG(_("E699: Too many arguments"));
Bram Moolenaar8a283e52005-01-06 23:28:25 +00008739 break;
8740 }
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00008741 /* Make a copy of each argument. This is needed to be able to set
8742 * v_lock to VAR_FIXED in the copy without changing the original list.
8743 */
Bram Moolenaar8a283e52005-01-06 23:28:25 +00008744 copy_tv(&item->li_tv, &argv[argc++]);
8745 }
8746
8747 if (item == NULL)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00008748 (void)call_func(func, (int)STRLEN(func), rettv, argc, argv,
Bram Moolenaare9a41262005-01-15 22:18:47 +00008749 curwin->w_cursor.lnum, curwin->w_cursor.lnum,
8750 &dummy, TRUE, selfdict);
Bram Moolenaar8a283e52005-01-06 23:28:25 +00008751
8752 /* Free the arguments. */
8753 while (argc > 0)
8754 clear_tv(&argv[--argc]);
8755}
8756
Bram Moolenaar8c8de832008-06-24 22:58:06 +00008757#ifdef FEAT_FLOAT
8758/*
8759 * "ceil({float})" function
8760 */
8761 static void
8762f_ceil(argvars, rettv)
8763 typval_T *argvars;
8764 typval_T *rettv;
8765{
8766 float_T f;
8767
8768 rettv->v_type = VAR_FLOAT;
8769 if (get_float_arg(argvars, &f) == OK)
8770 rettv->vval.v_float = ceil(f);
8771 else
8772 rettv->vval.v_float = 0.0;
8773}
8774#endif
8775
Bram Moolenaar8a283e52005-01-06 23:28:25 +00008776/*
Bram Moolenaarf0acfce2006-03-17 23:21:19 +00008777 * "changenr()" function
8778 */
8779/*ARGSUSED*/
8780 static void
8781f_changenr(argvars, rettv)
8782 typval_T *argvars;
8783 typval_T *rettv;
8784{
8785 rettv->vval.v_number = curbuf->b_u_seq_cur;
8786}
8787
8788/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00008789 * "char2nr(string)" function
8790 */
8791 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008792f_char2nr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008793 typval_T *argvars;
8794 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008795{
8796#ifdef FEAT_MBYTE
8797 if (has_mbyte)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008798 rettv->vval.v_number = (*mb_ptr2char)(get_tv_string(&argvars[0]));
Bram Moolenaar071d4272004-06-13 20:20:40 +00008799 else
8800#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008801 rettv->vval.v_number = get_tv_string(&argvars[0])[0];
Bram Moolenaar071d4272004-06-13 20:20:40 +00008802}
8803
8804/*
8805 * "cindent(lnum)" function
8806 */
8807 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008808f_cindent(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008809 typval_T *argvars;
8810 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008811{
8812#ifdef FEAT_CINDENT
8813 pos_T pos;
8814 linenr_T lnum;
8815
8816 pos = curwin->w_cursor;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008817 lnum = get_tv_lnum(argvars);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008818 if (lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count)
8819 {
8820 curwin->w_cursor.lnum = lnum;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008821 rettv->vval.v_number = get_c_indent();
Bram Moolenaar071d4272004-06-13 20:20:40 +00008822 curwin->w_cursor = pos;
8823 }
8824 else
8825#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008826 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008827}
8828
8829/*
Bram Moolenaar6ee10162007-07-26 20:58:42 +00008830 * "clearmatches()" function
8831 */
8832/*ARGSUSED*/
8833 static void
8834f_clearmatches(argvars, rettv)
8835 typval_T *argvars;
8836 typval_T *rettv;
8837{
8838#ifdef FEAT_SEARCH_EXTRA
8839 clear_matches(curwin);
8840#endif
8841}
8842
8843/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00008844 * "col(string)" function
8845 */
8846 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008847f_col(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008848 typval_T *argvars;
8849 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008850{
8851 colnr_T col = 0;
8852 pos_T *fp;
Bram Moolenaar0e34f622006-03-03 23:00:03 +00008853 int fnum = curbuf->b_fnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008854
Bram Moolenaar0e34f622006-03-03 23:00:03 +00008855 fp = var2fpos(&argvars[0], FALSE, &fnum);
8856 if (fp != NULL && fnum == curbuf->b_fnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008857 {
8858 if (fp->col == MAXCOL)
8859 {
8860 /* '> can be MAXCOL, get the length of the line then */
8861 if (fp->lnum <= curbuf->b_ml.ml_line_count)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00008862 col = (colnr_T)STRLEN(ml_get(fp->lnum)) + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008863 else
8864 col = MAXCOL;
8865 }
8866 else
8867 {
8868 col = fp->col + 1;
8869#ifdef FEAT_VIRTUALEDIT
8870 /* col(".") when the cursor is on the NUL at the end of the line
8871 * because of "coladd" can be seen as an extra column. */
8872 if (virtual_active() && fp == &curwin->w_cursor)
8873 {
8874 char_u *p = ml_get_cursor();
8875
8876 if (curwin->w_cursor.coladd >= (colnr_T)chartabsize(p,
8877 curwin->w_virtcol - curwin->w_cursor.coladd))
8878 {
8879# ifdef FEAT_MBYTE
8880 int l;
8881
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00008882 if (*p != NUL && p[(l = (*mb_ptr2len)(p))] == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008883 col += l;
8884# else
8885 if (*p != NUL && p[1] == NUL)
8886 ++col;
8887# endif
8888 }
8889 }
8890#endif
8891 }
8892 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008893 rettv->vval.v_number = col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008894}
8895
Bram Moolenaar572cb562005-08-05 21:35:02 +00008896#if defined(FEAT_INS_EXPAND)
8897/*
Bram Moolenaarade00832006-03-10 21:46:58 +00008898 * "complete()" function
8899 */
8900/*ARGSUSED*/
8901 static void
8902f_complete(argvars, rettv)
8903 typval_T *argvars;
8904 typval_T *rettv;
8905{
8906 int startcol;
8907
8908 if ((State & INSERT) == 0)
8909 {
8910 EMSG(_("E785: complete() can only be used in Insert mode"));
8911 return;
8912 }
Bram Moolenaarce6ef252006-07-12 19:49:41 +00008913
8914 /* Check for undo allowed here, because if something was already inserted
8915 * the line was already saved for undo and this check isn't done. */
8916 if (!undo_allowed())
8917 return;
8918
Bram Moolenaarade00832006-03-10 21:46:58 +00008919 if (argvars[1].v_type != VAR_LIST || argvars[1].vval.v_list == NULL)
8920 {
8921 EMSG(_(e_invarg));
8922 return;
8923 }
8924
8925 startcol = get_tv_number_chk(&argvars[0], NULL);
8926 if (startcol <= 0)
8927 return;
8928
8929 set_completion(startcol - 1, argvars[1].vval.v_list);
8930}
8931
8932/*
Bram Moolenaar572cb562005-08-05 21:35:02 +00008933 * "complete_add()" function
8934 */
8935/*ARGSUSED*/
8936 static void
8937f_complete_add(argvars, rettv)
8938 typval_T *argvars;
8939 typval_T *rettv;
8940{
Bram Moolenaarceaf7b82006-03-19 22:18:55 +00008941 rettv->vval.v_number = ins_compl_add_tv(&argvars[0], 0);
Bram Moolenaar572cb562005-08-05 21:35:02 +00008942}
8943
8944/*
8945 * "complete_check()" function
8946 */
8947/*ARGSUSED*/
8948 static void
8949f_complete_check(argvars, rettv)
8950 typval_T *argvars;
8951 typval_T *rettv;
8952{
8953 int saved = RedrawingDisabled;
8954
8955 RedrawingDisabled = 0;
8956 ins_compl_check_keys(0);
8957 rettv->vval.v_number = compl_interrupted;
8958 RedrawingDisabled = saved;
8959}
8960#endif
8961
Bram Moolenaar071d4272004-06-13 20:20:40 +00008962/*
8963 * "confirm(message, buttons[, default [, type]])" function
8964 */
8965/*ARGSUSED*/
8966 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008967f_confirm(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008968 typval_T *argvars;
8969 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008970{
8971#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
8972 char_u *message;
8973 char_u *buttons = NULL;
8974 char_u buf[NUMBUFLEN];
8975 char_u buf2[NUMBUFLEN];
8976 int def = 1;
8977 int type = VIM_GENERIC;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008978 char_u *typestr;
8979 int error = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008980
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008981 message = get_tv_string_chk(&argvars[0]);
8982 if (message == NULL)
8983 error = TRUE;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00008984 if (argvars[1].v_type != VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008985 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008986 buttons = get_tv_string_buf_chk(&argvars[1], buf);
8987 if (buttons == NULL)
8988 error = TRUE;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00008989 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008990 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008991 def = get_tv_number_chk(&argvars[2], &error);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00008992 if (argvars[3].v_type != VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008993 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008994 typestr = get_tv_string_buf_chk(&argvars[3], buf2);
8995 if (typestr == NULL)
8996 error = TRUE;
8997 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00008998 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008999 switch (TOUPPER_ASC(*typestr))
9000 {
9001 case 'E': type = VIM_ERROR; break;
9002 case 'Q': type = VIM_QUESTION; break;
9003 case 'I': type = VIM_INFO; break;
9004 case 'W': type = VIM_WARNING; break;
9005 case 'G': type = VIM_GENERIC; break;
9006 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009007 }
9008 }
9009 }
9010 }
9011
9012 if (buttons == NULL || *buttons == NUL)
9013 buttons = (char_u *)_("&Ok");
9014
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009015 if (error)
9016 rettv->vval.v_number = 0;
9017 else
9018 rettv->vval.v_number = do_dialog(type, NULL, message, buttons,
Bram Moolenaar071d4272004-06-13 20:20:40 +00009019 def, NULL);
9020#else
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009021 rettv->vval.v_number = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009022#endif
9023}
9024
Bram Moolenaar49cd9572005-01-03 21:06:01 +00009025/*
9026 * "copy()" function
9027 */
9028 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009029f_copy(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009030 typval_T *argvars;
9031 typval_T *rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00009032{
Bram Moolenaar81bf7082005-02-12 14:31:42 +00009033 item_copy(&argvars[0], rettv, FALSE, 0);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00009034}
Bram Moolenaar071d4272004-06-13 20:20:40 +00009035
Bram Moolenaar8c8de832008-06-24 22:58:06 +00009036#ifdef FEAT_FLOAT
9037/*
9038 * "cos()" function
9039 */
9040 static void
9041f_cos(argvars, rettv)
9042 typval_T *argvars;
9043 typval_T *rettv;
9044{
9045 float_T f;
9046
9047 rettv->v_type = VAR_FLOAT;
9048 if (get_float_arg(argvars, &f) == OK)
9049 rettv->vval.v_float = cos(f);
9050 else
9051 rettv->vval.v_float = 0.0;
9052}
9053#endif
9054
Bram Moolenaar071d4272004-06-13 20:20:40 +00009055/*
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009056 * "count()" function
9057 */
9058 static void
9059f_count(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009060 typval_T *argvars;
9061 typval_T *rettv;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009062{
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009063 long n = 0;
9064 int ic = FALSE;
9065
Bram Moolenaare9a41262005-01-15 22:18:47 +00009066 if (argvars[0].v_type == VAR_LIST)
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009067 {
Bram Moolenaar33570922005-01-25 22:26:29 +00009068 listitem_T *li;
9069 list_T *l;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009070 long idx;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009071
Bram Moolenaare9a41262005-01-15 22:18:47 +00009072 if ((l = argvars[0].vval.v_list) != NULL)
9073 {
9074 li = l->lv_first;
9075 if (argvars[2].v_type != VAR_UNKNOWN)
9076 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009077 int error = FALSE;
9078
9079 ic = get_tv_number_chk(&argvars[2], &error);
Bram Moolenaare9a41262005-01-15 22:18:47 +00009080 if (argvars[3].v_type != VAR_UNKNOWN)
9081 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009082 idx = get_tv_number_chk(&argvars[3], &error);
9083 if (!error)
9084 {
9085 li = list_find(l, idx);
9086 if (li == NULL)
9087 EMSGN(_(e_listidx), idx);
9088 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00009089 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009090 if (error)
9091 li = NULL;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009092 }
9093
9094 for ( ; li != NULL; li = li->li_next)
9095 if (tv_equal(&li->li_tv, &argvars[1], ic))
9096 ++n;
9097 }
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009098 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00009099 else if (argvars[0].v_type == VAR_DICT)
9100 {
Bram Moolenaar33570922005-01-25 22:26:29 +00009101 int todo;
9102 dict_T *d;
9103 hashitem_T *hi;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009104
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00009105 if ((d = argvars[0].vval.v_dict) != NULL)
9106 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009107 int error = FALSE;
9108
Bram Moolenaare9a41262005-01-15 22:18:47 +00009109 if (argvars[2].v_type != VAR_UNKNOWN)
9110 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009111 ic = get_tv_number_chk(&argvars[2], &error);
Bram Moolenaare9a41262005-01-15 22:18:47 +00009112 if (argvars[3].v_type != VAR_UNKNOWN)
9113 EMSG(_(e_invarg));
9114 }
9115
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00009116 todo = error ? 0 : (int)d->dv_hashtab.ht_used;
Bram Moolenaar33570922005-01-25 22:26:29 +00009117 for (hi = d->dv_hashtab.ht_array; todo > 0; ++hi)
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00009118 {
9119 if (!HASHITEM_EMPTY(hi))
9120 {
9121 --todo;
9122 if (tv_equal(&HI2DI(hi)->di_tv, &argvars[1], ic))
9123 ++n;
9124 }
9125 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00009126 }
9127 }
9128 else
9129 EMSG2(_(e_listdictarg), "count()");
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009130 rettv->vval.v_number = n;
9131}
9132
9133/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00009134 * "cscope_connection([{num} , {dbpath} [, {prepend}]])" function
9135 *
9136 * Checks the existence of a cscope connection.
9137 */
9138/*ARGSUSED*/
9139 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009140f_cscope_connection(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009141 typval_T *argvars;
9142 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009143{
9144#ifdef FEAT_CSCOPE
9145 int num = 0;
9146 char_u *dbpath = NULL;
9147 char_u *prepend = NULL;
9148 char_u buf[NUMBUFLEN];
9149
Bram Moolenaar49cd9572005-01-03 21:06:01 +00009150 if (argvars[0].v_type != VAR_UNKNOWN
9151 && argvars[1].v_type != VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009152 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009153 num = (int)get_tv_number(&argvars[0]);
9154 dbpath = get_tv_string(&argvars[1]);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00009155 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009156 prepend = get_tv_string_buf(&argvars[2], buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009157 }
9158
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009159 rettv->vval.v_number = cs_connection(num, dbpath, prepend);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009160#else
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009161 rettv->vval.v_number = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009162#endif
9163}
9164
9165/*
9166 * "cursor(lnum, col)" function
9167 *
9168 * Moves the cursor to the specified line and column
9169 */
9170/*ARGSUSED*/
9171 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009172f_cursor(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009173 typval_T *argvars;
9174 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009175{
9176 long line, col;
Bram Moolenaara5525202006-03-02 22:52:09 +00009177#ifdef FEAT_VIRTUALEDIT
9178 long coladd = 0;
9179#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00009180
Bram Moolenaara5525202006-03-02 22:52:09 +00009181 if (argvars[1].v_type == VAR_UNKNOWN)
9182 {
Bram Moolenaar0e34f622006-03-03 23:00:03 +00009183 pos_T pos;
Bram Moolenaara5525202006-03-02 22:52:09 +00009184
Bram Moolenaar0e34f622006-03-03 23:00:03 +00009185 if (list2fpos(argvars, &pos, NULL) == FAIL)
Bram Moolenaara5525202006-03-02 22:52:09 +00009186 return;
Bram Moolenaar0e34f622006-03-03 23:00:03 +00009187 line = pos.lnum;
9188 col = pos.col;
Bram Moolenaara5525202006-03-02 22:52:09 +00009189#ifdef FEAT_VIRTUALEDIT
Bram Moolenaar0e34f622006-03-03 23:00:03 +00009190 coladd = pos.coladd;
Bram Moolenaara5525202006-03-02 22:52:09 +00009191#endif
9192 }
9193 else
9194 {
9195 line = get_tv_lnum(argvars);
9196 col = get_tv_number_chk(&argvars[1], NULL);
9197#ifdef FEAT_VIRTUALEDIT
9198 if (argvars[2].v_type != VAR_UNKNOWN)
9199 coladd = get_tv_number_chk(&argvars[2], NULL);
9200#endif
9201 }
9202 if (line < 0 || col < 0
9203#ifdef FEAT_VIRTUALEDIT
9204 || coladd < 0
9205#endif
9206 )
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009207 return; /* type error; errmsg already given */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009208 if (line > 0)
9209 curwin->w_cursor.lnum = line;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009210 if (col > 0)
9211 curwin->w_cursor.col = col - 1;
9212#ifdef FEAT_VIRTUALEDIT
Bram Moolenaara5525202006-03-02 22:52:09 +00009213 curwin->w_cursor.coladd = coladd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009214#endif
9215
9216 /* Make sure the cursor is in a valid position. */
9217 check_cursor();
9218#ifdef FEAT_MBYTE
9219 /* Correct cursor for multi-byte character. */
9220 if (has_mbyte)
9221 mb_adjust_cursor();
9222#endif
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00009223
9224 curwin->w_set_curswant = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009225}
9226
9227/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +00009228 * "deepcopy()" function
Bram Moolenaar071d4272004-06-13 20:20:40 +00009229 */
9230 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009231f_deepcopy(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009232 typval_T *argvars;
9233 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009234{
Bram Moolenaar81bf7082005-02-12 14:31:42 +00009235 int noref = 0;
9236
9237 if (argvars[1].v_type != VAR_UNKNOWN)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009238 noref = get_tv_number_chk(&argvars[1], NULL);
Bram Moolenaar81bf7082005-02-12 14:31:42 +00009239 if (noref < 0 || noref > 1)
9240 EMSG(_(e_invarg));
9241 else
Bram Moolenaard9fba312005-06-26 22:34:35 +00009242 item_copy(&argvars[0], rettv, TRUE, noref == 0 ? ++current_copyID : 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009243}
9244
9245/*
9246 * "delete()" function
9247 */
9248 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009249f_delete(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009250 typval_T *argvars;
9251 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009252{
9253 if (check_restricted() || check_secure())
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009254 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009255 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009256 rettv->vval.v_number = mch_remove(get_tv_string(&argvars[0]));
Bram Moolenaar071d4272004-06-13 20:20:40 +00009257}
9258
9259/*
9260 * "did_filetype()" function
9261 */
9262/*ARGSUSED*/
9263 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009264f_did_filetype(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009265 typval_T *argvars;
9266 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009267{
9268#ifdef FEAT_AUTOCMD
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009269 rettv->vval.v_number = did_filetype;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009270#else
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009271 rettv->vval.v_number = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009272#endif
9273}
9274
9275/*
Bram Moolenaar47136d72004-10-12 20:02:24 +00009276 * "diff_filler()" function
9277 */
9278/*ARGSUSED*/
9279 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009280f_diff_filler(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009281 typval_T *argvars;
9282 typval_T *rettv;
Bram Moolenaar47136d72004-10-12 20:02:24 +00009283{
9284#ifdef FEAT_DIFF
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009285 rettv->vval.v_number = diff_check_fill(curwin, get_tv_lnum(argvars));
Bram Moolenaar47136d72004-10-12 20:02:24 +00009286#endif
9287}
9288
9289/*
9290 * "diff_hlID()" function
9291 */
9292/*ARGSUSED*/
9293 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009294f_diff_hlID(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009295 typval_T *argvars;
9296 typval_T *rettv;
Bram Moolenaar47136d72004-10-12 20:02:24 +00009297{
9298#ifdef FEAT_DIFF
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009299 linenr_T lnum = get_tv_lnum(argvars);
Bram Moolenaar47136d72004-10-12 20:02:24 +00009300 static linenr_T prev_lnum = 0;
9301 static int changedtick = 0;
9302 static int fnum = 0;
9303 static int change_start = 0;
9304 static int change_end = 0;
Bram Moolenaar6f192452007-11-08 19:49:02 +00009305 static hlf_T hlID = (hlf_T)0;
Bram Moolenaar47136d72004-10-12 20:02:24 +00009306 int filler_lines;
9307 int col;
9308
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009309 if (lnum < 0) /* ignore type error in {lnum} arg */
9310 lnum = 0;
Bram Moolenaar47136d72004-10-12 20:02:24 +00009311 if (lnum != prev_lnum
9312 || changedtick != curbuf->b_changedtick
9313 || fnum != curbuf->b_fnum)
9314 {
9315 /* New line, buffer, change: need to get the values. */
9316 filler_lines = diff_check(curwin, lnum);
9317 if (filler_lines < 0)
9318 {
9319 if (filler_lines == -1)
9320 {
9321 change_start = MAXCOL;
9322 change_end = -1;
9323 if (diff_find_change(curwin, lnum, &change_start, &change_end))
9324 hlID = HLF_ADD; /* added line */
9325 else
9326 hlID = HLF_CHD; /* changed line */
9327 }
9328 else
9329 hlID = HLF_ADD; /* added line */
9330 }
9331 else
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00009332 hlID = (hlf_T)0;
Bram Moolenaar47136d72004-10-12 20:02:24 +00009333 prev_lnum = lnum;
9334 changedtick = curbuf->b_changedtick;
9335 fnum = curbuf->b_fnum;
9336 }
9337
9338 if (hlID == HLF_CHD || hlID == HLF_TXD)
9339 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009340 col = get_tv_number(&argvars[1]) - 1; /* ignore type error in {col} */
Bram Moolenaar47136d72004-10-12 20:02:24 +00009341 if (col >= change_start && col <= change_end)
9342 hlID = HLF_TXD; /* changed text */
9343 else
9344 hlID = HLF_CHD; /* changed line */
9345 }
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00009346 rettv->vval.v_number = hlID == (hlf_T)0 ? 0 : (int)hlID;
Bram Moolenaar47136d72004-10-12 20:02:24 +00009347#endif
9348}
9349
9350/*
Bram Moolenaare49b69a2005-01-08 16:11:57 +00009351 * "empty({expr})" function
9352 */
9353 static void
9354f_empty(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009355 typval_T *argvars;
9356 typval_T *rettv;
Bram Moolenaare49b69a2005-01-08 16:11:57 +00009357{
9358 int n;
9359
9360 switch (argvars[0].v_type)
9361 {
9362 case VAR_STRING:
9363 case VAR_FUNC:
9364 n = argvars[0].vval.v_string == NULL
9365 || *argvars[0].vval.v_string == NUL;
9366 break;
9367 case VAR_NUMBER:
9368 n = argvars[0].vval.v_number == 0;
9369 break;
Bram Moolenaar8c8de832008-06-24 22:58:06 +00009370#ifdef FEAT_FLOAT
9371 case VAR_FLOAT:
9372 n = argvars[0].vval.v_float == 0.0;
9373 break;
9374#endif
Bram Moolenaare49b69a2005-01-08 16:11:57 +00009375 case VAR_LIST:
9376 n = argvars[0].vval.v_list == NULL
9377 || argvars[0].vval.v_list->lv_first == NULL;
9378 break;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009379 case VAR_DICT:
9380 n = argvars[0].vval.v_dict == NULL
Bram Moolenaar33570922005-01-25 22:26:29 +00009381 || argvars[0].vval.v_dict->dv_hashtab.ht_used == 0;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009382 break;
Bram Moolenaare49b69a2005-01-08 16:11:57 +00009383 default:
9384 EMSG2(_(e_intern2), "f_empty()");
9385 n = 0;
9386 }
9387
9388 rettv->vval.v_number = n;
9389}
9390
9391/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00009392 * "escape({string}, {chars})" function
9393 */
9394 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009395f_escape(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009396 typval_T *argvars;
9397 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009398{
9399 char_u buf[NUMBUFLEN];
9400
Bram Moolenaar758711c2005-02-02 23:11:38 +00009401 rettv->vval.v_string = vim_strsave_escaped(get_tv_string(&argvars[0]),
9402 get_tv_string_buf(&argvars[1], buf));
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009403 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009404}
9405
9406/*
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009407 * "eval()" function
9408 */
9409/*ARGSUSED*/
9410 static void
9411f_eval(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009412 typval_T *argvars;
9413 typval_T *rettv;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009414{
9415 char_u *s;
9416
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009417 s = get_tv_string_chk(&argvars[0]);
9418 if (s != NULL)
9419 s = skipwhite(s);
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009420
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009421 if (s == NULL || eval1(&s, rettv, TRUE) == FAIL)
9422 {
9423 rettv->v_type = VAR_NUMBER;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009424 rettv->vval.v_number = 0;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009425 }
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009426 else if (*s != NUL)
9427 EMSG(_(e_trailing));
9428}
9429
9430/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00009431 * "eventhandler()" function
9432 */
9433/*ARGSUSED*/
9434 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009435f_eventhandler(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009436 typval_T *argvars;
9437 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009438{
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009439 rettv->vval.v_number = vgetc_busy;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009440}
9441
9442/*
9443 * "executable()" function
9444 */
9445 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009446f_executable(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009447 typval_T *argvars;
9448 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009449{
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009450 rettv->vval.v_number = mch_can_exe(get_tv_string(&argvars[0]));
Bram Moolenaar071d4272004-06-13 20:20:40 +00009451}
9452
9453/*
9454 * "exists()" function
9455 */
9456 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009457f_exists(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009458 typval_T *argvars;
9459 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009460{
9461 char_u *p;
9462 char_u *name;
9463 int n = FALSE;
9464 int len = 0;
9465
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009466 p = get_tv_string(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009467 if (*p == '$') /* environment variable */
9468 {
9469 /* first try "normal" environment variables (fast) */
9470 if (mch_getenv(p + 1) != NULL)
9471 n = TRUE;
9472 else
9473 {
9474 /* try expanding things like $VIM and ${HOME} */
9475 p = expand_env_save(p);
9476 if (p != NULL && *p != '$')
9477 n = TRUE;
9478 vim_free(p);
9479 }
9480 }
9481 else if (*p == '&' || *p == '+') /* option */
Bram Moolenaar79783442006-05-05 21:18:03 +00009482 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009483 n = (get_option_tv(&p, NULL, TRUE) == OK);
Bram Moolenaar79783442006-05-05 21:18:03 +00009484 if (*skipwhite(p) != NUL)
9485 n = FALSE; /* trailing garbage */
9486 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009487 else if (*p == '*') /* internal or user defined function */
9488 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +00009489 n = function_exists(p + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009490 }
9491 else if (*p == ':')
9492 {
9493 n = cmd_exists(p + 1);
9494 }
9495 else if (*p == '#')
9496 {
9497#ifdef FEAT_AUTOCMD
Bram Moolenaarf4cd3e82005-12-22 22:47:02 +00009498 if (p[1] == '#')
9499 n = autocmd_supported(p + 2);
9500 else
9501 n = au_exists(p + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009502#endif
9503 }
9504 else /* internal variable */
9505 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00009506 char_u *tofree;
9507 typval_T tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009508
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00009509 /* get_name_len() takes care of expanding curly braces */
9510 name = p;
9511 len = get_name_len(&p, &tofree, TRUE, FALSE);
9512 if (len > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009513 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00009514 if (tofree != NULL)
9515 name = tofree;
9516 n = (get_var_tv(name, len, &tv, FALSE) == OK);
9517 if (n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009518 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00009519 /* handle d.key, l[idx], f(expr) */
9520 n = (handle_subscript(&p, &tv, TRUE, FALSE) == OK);
9521 if (n)
9522 clear_tv(&tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009523 }
9524 }
Bram Moolenaar79783442006-05-05 21:18:03 +00009525 if (*p != NUL)
9526 n = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009527
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00009528 vim_free(tofree);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009529 }
9530
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009531 rettv->vval.v_number = n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009532}
9533
9534/*
9535 * "expand()" function
9536 */
9537 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009538f_expand(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009539 typval_T *argvars;
9540 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009541{
9542 char_u *s;
9543 int len;
9544 char_u *errormsg;
9545 int flags = WILD_SILENT|WILD_USE_NL|WILD_LIST_NOTFOUND;
9546 expand_T xpc;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009547 int error = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009548
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009549 rettv->v_type = VAR_STRING;
9550 s = get_tv_string(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009551 if (*s == '%' || *s == '#' || *s == '<')
9552 {
9553 ++emsg_off;
Bram Moolenaar63b92542007-03-27 14:57:09 +00009554 rettv->vval.v_string = eval_vars(s, s, &len, NULL, &errormsg, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009555 --emsg_off;
9556 }
9557 else
9558 {
9559 /* When the optional second argument is non-zero, don't remove matches
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +00009560 * for 'wildignore' and don't put matches for 'suffixes' at the end. */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009561 if (argvars[1].v_type != VAR_UNKNOWN
9562 && get_tv_number_chk(&argvars[1], &error))
Bram Moolenaar071d4272004-06-13 20:20:40 +00009563 flags |= WILD_KEEP_ALL;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009564 if (!error)
9565 {
9566 ExpandInit(&xpc);
9567 xpc.xp_context = EXPAND_FILES;
9568 rettv->vval.v_string = ExpandOne(&xpc, s, NULL, flags, WILD_ALL);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009569 }
9570 else
9571 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009572 }
9573}
9574
9575/*
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009576 * "extend(list, list [, idx])" function
Bram Moolenaare9a41262005-01-15 22:18:47 +00009577 * "extend(dict, dict [, action])" function
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009578 */
9579 static void
9580f_extend(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009581 typval_T *argvars;
9582 typval_T *rettv;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009583{
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009584 rettv->vval.v_number = 0;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009585 if (argvars[0].v_type == VAR_LIST && argvars[1].v_type == VAR_LIST)
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009586 {
Bram Moolenaar33570922005-01-25 22:26:29 +00009587 list_T *l1, *l2;
9588 listitem_T *item;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009589 long before;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009590 int error = FALSE;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009591
Bram Moolenaare9a41262005-01-15 22:18:47 +00009592 l1 = argvars[0].vval.v_list;
9593 l2 = argvars[1].vval.v_list;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00009594 if (l1 != NULL && !tv_check_lock(l1->lv_lock, (char_u *)"extend()")
9595 && l2 != NULL)
Bram Moolenaare9a41262005-01-15 22:18:47 +00009596 {
9597 if (argvars[2].v_type != VAR_UNKNOWN)
9598 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009599 before = get_tv_number_chk(&argvars[2], &error);
9600 if (error)
9601 return; /* type error; errmsg already given */
9602
Bram Moolenaar758711c2005-02-02 23:11:38 +00009603 if (before == l1->lv_len)
9604 item = NULL;
9605 else
Bram Moolenaare9a41262005-01-15 22:18:47 +00009606 {
Bram Moolenaar758711c2005-02-02 23:11:38 +00009607 item = list_find(l1, before);
9608 if (item == NULL)
9609 {
9610 EMSGN(_(e_listidx), before);
9611 return;
9612 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00009613 }
9614 }
9615 else
9616 item = NULL;
9617 list_extend(l1, l2, item);
9618
Bram Moolenaare9a41262005-01-15 22:18:47 +00009619 copy_tv(&argvars[0], rettv);
9620 }
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009621 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00009622 else if (argvars[0].v_type == VAR_DICT && argvars[1].v_type == VAR_DICT)
9623 {
Bram Moolenaar33570922005-01-25 22:26:29 +00009624 dict_T *d1, *d2;
9625 dictitem_T *di1;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009626 char_u *action;
9627 int i;
Bram Moolenaar33570922005-01-25 22:26:29 +00009628 hashitem_T *hi2;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00009629 int todo;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009630
9631 d1 = argvars[0].vval.v_dict;
9632 d2 = argvars[1].vval.v_dict;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00009633 if (d1 != NULL && !tv_check_lock(d1->dv_lock, (char_u *)"extend()")
9634 && d2 != NULL)
Bram Moolenaare9a41262005-01-15 22:18:47 +00009635 {
9636 /* Check the third argument. */
9637 if (argvars[2].v_type != VAR_UNKNOWN)
9638 {
9639 static char *(av[]) = {"keep", "force", "error"};
9640
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009641 action = get_tv_string_chk(&argvars[2]);
9642 if (action == NULL)
9643 return; /* type error; errmsg already given */
Bram Moolenaare9a41262005-01-15 22:18:47 +00009644 for (i = 0; i < 3; ++i)
9645 if (STRCMP(action, av[i]) == 0)
9646 break;
9647 if (i == 3)
9648 {
Bram Moolenaareb3593b2006-04-22 22:33:57 +00009649 EMSG2(_(e_invarg2), action);
Bram Moolenaare9a41262005-01-15 22:18:47 +00009650 return;
9651 }
9652 }
9653 else
9654 action = (char_u *)"force";
9655
9656 /* Go over all entries in the second dict and add them to the
9657 * first dict. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00009658 todo = (int)d2->dv_hashtab.ht_used;
Bram Moolenaar33570922005-01-25 22:26:29 +00009659 for (hi2 = d2->dv_hashtab.ht_array; todo > 0; ++hi2)
Bram Moolenaare9a41262005-01-15 22:18:47 +00009660 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00009661 if (!HASHITEM_EMPTY(hi2))
Bram Moolenaare9a41262005-01-15 22:18:47 +00009662 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00009663 --todo;
9664 di1 = dict_find(d1, hi2->hi_key, -1);
9665 if (di1 == NULL)
9666 {
9667 di1 = dictitem_copy(HI2DI(hi2));
9668 if (di1 != NULL && dict_add(d1, di1) == FAIL)
9669 dictitem_free(di1);
9670 }
9671 else if (*action == 'e')
9672 {
9673 EMSG2(_("E737: Key already exists: %s"), hi2->hi_key);
9674 break;
9675 }
9676 else if (*action == 'f')
9677 {
9678 clear_tv(&di1->di_tv);
9679 copy_tv(&HI2DI(hi2)->di_tv, &di1->di_tv);
9680 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00009681 }
9682 }
9683
Bram Moolenaare9a41262005-01-15 22:18:47 +00009684 copy_tv(&argvars[0], rettv);
9685 }
9686 }
9687 else
9688 EMSG2(_(e_listdictarg), "extend()");
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009689}
9690
9691/*
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00009692 * "feedkeys()" function
9693 */
9694/*ARGSUSED*/
9695 static void
9696f_feedkeys(argvars, rettv)
9697 typval_T *argvars;
9698 typval_T *rettv;
9699{
9700 int remap = TRUE;
9701 char_u *keys, *flags;
9702 char_u nbuf[NUMBUFLEN];
9703 int typed = FALSE;
Bram Moolenaarf193fff2006-04-27 00:02:13 +00009704 char_u *keys_esc;
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00009705
Bram Moolenaar3d43a662007-04-27 20:15:55 +00009706 /* This is not allowed in the sandbox. If the commands would still be
9707 * executed in the sandbox it would be OK, but it probably happens later,
9708 * when "sandbox" is no longer set. */
9709 if (check_secure())
9710 return;
9711
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00009712 rettv->vval.v_number = 0;
9713 keys = get_tv_string(&argvars[0]);
9714 if (*keys != NUL)
9715 {
9716 if (argvars[1].v_type != VAR_UNKNOWN)
9717 {
9718 flags = get_tv_string_buf(&argvars[1], nbuf);
9719 for ( ; *flags != NUL; ++flags)
9720 {
9721 switch (*flags)
9722 {
9723 case 'n': remap = FALSE; break;
9724 case 'm': remap = TRUE; break;
9725 case 't': typed = TRUE; break;
9726 }
9727 }
9728 }
9729
Bram Moolenaarf193fff2006-04-27 00:02:13 +00009730 /* Need to escape K_SPECIAL and CSI before putting the string in the
9731 * typeahead buffer. */
9732 keys_esc = vim_strsave_escape_csi(keys);
9733 if (keys_esc != NULL)
9734 {
9735 ins_typebuf(keys_esc, (remap ? REMAP_YES : REMAP_NONE),
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00009736 typebuf.tb_len, !typed, FALSE);
Bram Moolenaarf193fff2006-04-27 00:02:13 +00009737 vim_free(keys_esc);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00009738 if (vgetc_busy)
9739 typebuf_was_filled = TRUE;
Bram Moolenaarf193fff2006-04-27 00:02:13 +00009740 }
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00009741 }
9742}
9743
9744/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00009745 * "filereadable()" function
9746 */
9747 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009748f_filereadable(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009749 typval_T *argvars;
9750 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009751{
Bram Moolenaarc236c162008-07-13 17:41:49 +00009752 int fd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009753 char_u *p;
9754 int n;
9755
Bram Moolenaarc236c162008-07-13 17:41:49 +00009756#ifndef O_NONBLOCK
9757# define O_NONBLOCK 0
9758#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009759 p = get_tv_string(&argvars[0]);
Bram Moolenaarc236c162008-07-13 17:41:49 +00009760 if (*p && !mch_isdir(p) && (fd = mch_open((char *)p,
9761 O_RDONLY | O_NONBLOCK, 0)) >= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009762 {
9763 n = TRUE;
Bram Moolenaarc236c162008-07-13 17:41:49 +00009764 close(fd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009765 }
9766 else
9767 n = FALSE;
9768
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009769 rettv->vval.v_number = n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009770}
9771
9772/*
Bram Moolenaar0e4d8772005-06-07 21:12:49 +00009773 * Return 0 for not writable, 1 for writable file, 2 for a dir which we have
Bram Moolenaar071d4272004-06-13 20:20:40 +00009774 * rights to write into.
9775 */
9776 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009777f_filewritable(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009778 typval_T *argvars;
9779 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009780{
Bram Moolenaar0e4d8772005-06-07 21:12:49 +00009781 rettv->vval.v_number = filewritable(get_tv_string(&argvars[0]));
Bram Moolenaar071d4272004-06-13 20:20:40 +00009782}
9783
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00009784static void findfilendir __ARGS((typval_T *argvars, typval_T *rettv, int find_what));
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00009785
9786 static void
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00009787findfilendir(argvars, rettv, find_what)
Bram Moolenaar33570922005-01-25 22:26:29 +00009788 typval_T *argvars;
9789 typval_T *rettv;
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00009790 int find_what;
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00009791{
9792#ifdef FEAT_SEARCHPATH
9793 char_u *fname;
9794 char_u *fresult = NULL;
9795 char_u *path = *curbuf->b_p_path == NUL ? p_path : curbuf->b_p_path;
9796 char_u *p;
9797 char_u pathbuf[NUMBUFLEN];
9798 int count = 1;
9799 int first = TRUE;
Bram Moolenaar899dddf2006-03-26 21:06:50 +00009800 int error = FALSE;
9801#endif
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00009802
Bram Moolenaar899dddf2006-03-26 21:06:50 +00009803 rettv->vval.v_string = NULL;
9804 rettv->v_type = VAR_STRING;
9805
9806#ifdef FEAT_SEARCHPATH
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009807 fname = get_tv_string(&argvars[0]);
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00009808
Bram Moolenaar49cd9572005-01-03 21:06:01 +00009809 if (argvars[1].v_type != VAR_UNKNOWN)
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00009810 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009811 p = get_tv_string_buf_chk(&argvars[1], pathbuf);
9812 if (p == NULL)
Bram Moolenaar899dddf2006-03-26 21:06:50 +00009813 error = TRUE;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009814 else
9815 {
9816 if (*p != NUL)
9817 path = p;
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00009818
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009819 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar899dddf2006-03-26 21:06:50 +00009820 count = get_tv_number_chk(&argvars[2], &error);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009821 }
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00009822 }
9823
Bram Moolenaar899dddf2006-03-26 21:06:50 +00009824 if (count < 0 && rettv_list_alloc(rettv) == FAIL)
9825 error = TRUE;
9826
9827 if (*fname != NUL && !error)
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00009828 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009829 do
9830 {
Bram Moolenaar899dddf2006-03-26 21:06:50 +00009831 if (rettv->v_type == VAR_STRING)
9832 vim_free(fresult);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009833 fresult = find_file_in_path_option(first ? fname : NULL,
9834 first ? (int)STRLEN(fname) : 0,
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00009835 0, first, path,
9836 find_what,
9837 curbuf->b_ffname,
9838 find_what == FINDFILE_DIR
9839 ? (char_u *)"" : curbuf->b_p_sua);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009840 first = FALSE;
Bram Moolenaar899dddf2006-03-26 21:06:50 +00009841
9842 if (fresult != NULL && rettv->v_type == VAR_LIST)
9843 list_append_string(rettv->vval.v_list, fresult, -1);
9844
9845 } while ((rettv->v_type == VAR_LIST || --count > 0) && fresult != NULL);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009846 }
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00009847
Bram Moolenaar899dddf2006-03-26 21:06:50 +00009848 if (rettv->v_type == VAR_STRING)
9849 rettv->vval.v_string = fresult;
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00009850#endif
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00009851}
9852
Bram Moolenaar33570922005-01-25 22:26:29 +00009853static void filter_map __ARGS((typval_T *argvars, typval_T *rettv, int map));
9854static int filter_map_one __ARGS((typval_T *tv, char_u *expr, int map, int *remp));
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009855
9856/*
9857 * Implementation of map() and filter().
9858 */
9859 static void
9860filter_map(argvars, rettv, map)
Bram Moolenaar33570922005-01-25 22:26:29 +00009861 typval_T *argvars;
9862 typval_T *rettv;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009863 int map;
9864{
9865 char_u buf[NUMBUFLEN];
Bram Moolenaare9a41262005-01-15 22:18:47 +00009866 char_u *expr;
Bram Moolenaar33570922005-01-25 22:26:29 +00009867 listitem_T *li, *nli;
9868 list_T *l = NULL;
9869 dictitem_T *di;
9870 hashtab_T *ht;
9871 hashitem_T *hi;
9872 dict_T *d = NULL;
9873 typval_T save_val;
9874 typval_T save_key;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009875 int rem;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00009876 int todo;
Bram Moolenaar89d40322006-08-29 15:30:07 +00009877 char_u *ermsg = map ? (char_u *)"map()" : (char_u *)"filter()";
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00009878 int save_did_emsg;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009879
9880 rettv->vval.v_number = 0;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009881 if (argvars[0].v_type == VAR_LIST)
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009882 {
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00009883 if ((l = argvars[0].vval.v_list) == NULL
Bram Moolenaar89d40322006-08-29 15:30:07 +00009884 || (map && tv_check_lock(l->lv_lock, ermsg)))
Bram Moolenaare9a41262005-01-15 22:18:47 +00009885 return;
9886 }
9887 else if (argvars[0].v_type == VAR_DICT)
9888 {
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00009889 if ((d = argvars[0].vval.v_dict) == NULL
Bram Moolenaar89d40322006-08-29 15:30:07 +00009890 || (map && tv_check_lock(d->dv_lock, ermsg)))
Bram Moolenaare9a41262005-01-15 22:18:47 +00009891 return;
9892 }
9893 else
9894 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00009895 EMSG2(_(e_listdictarg), ermsg);
Bram Moolenaare9a41262005-01-15 22:18:47 +00009896 return;
9897 }
9898
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009899 expr = get_tv_string_buf_chk(&argvars[1], buf);
9900 /* On type errors, the preceding call has already displayed an error
9901 * message. Avoid a misleading error message for an empty string that
9902 * was not passed as argument. */
9903 if (expr != NULL)
Bram Moolenaare9a41262005-01-15 22:18:47 +00009904 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009905 prepare_vimvar(VV_VAL, &save_val);
9906 expr = skipwhite(expr);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00009907
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00009908 /* We reset "did_emsg" to be able to detect whether an error
9909 * occurred during evaluation of the expression. */
9910 save_did_emsg = did_emsg;
9911 did_emsg = FALSE;
Bram Moolenaar280f1262006-01-30 00:14:18 +00009912
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009913 if (argvars[0].v_type == VAR_DICT)
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009914 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009915 prepare_vimvar(VV_KEY, &save_key);
9916 vimvars[VV_KEY].vv_type = VAR_STRING;
9917
9918 ht = &d->dv_hashtab;
9919 hash_lock(ht);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00009920 todo = (int)ht->ht_used;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009921 for (hi = ht->ht_array; todo > 0; ++hi)
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009922 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009923 if (!HASHITEM_EMPTY(hi))
9924 {
9925 --todo;
9926 di = HI2DI(hi);
Bram Moolenaar89d40322006-08-29 15:30:07 +00009927 if (tv_check_lock(di->di_tv.v_lock, ermsg))
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009928 break;
9929 vimvars[VV_KEY].vv_str = vim_strsave(di->di_key);
Bram Moolenaar280f1262006-01-30 00:14:18 +00009930 if (filter_map_one(&di->di_tv, expr, map, &rem) == FAIL
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00009931 || did_emsg)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009932 break;
9933 if (!map && rem)
9934 dictitem_remove(d, di);
9935 clear_tv(&vimvars[VV_KEY].vv_tv);
9936 }
9937 }
9938 hash_unlock(ht);
9939
9940 restore_vimvar(VV_KEY, &save_key);
9941 }
9942 else
9943 {
9944 for (li = l->lv_first; li != NULL; li = nli)
9945 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00009946 if (tv_check_lock(li->li_tv.v_lock, ermsg))
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00009947 break;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009948 nli = li->li_next;
Bram Moolenaar280f1262006-01-30 00:14:18 +00009949 if (filter_map_one(&li->li_tv, expr, map, &rem) == FAIL
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00009950 || did_emsg)
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00009951 break;
9952 if (!map && rem)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009953 listitem_remove(l, li);
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009954 }
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009955 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00009956
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009957 restore_vimvar(VV_VAL, &save_val);
Bram Moolenaar280f1262006-01-30 00:14:18 +00009958
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00009959 did_emsg |= save_did_emsg;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009960 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00009961
9962 copy_tv(&argvars[0], rettv);
9963}
9964
9965 static int
9966filter_map_one(tv, expr, map, remp)
Bram Moolenaar33570922005-01-25 22:26:29 +00009967 typval_T *tv;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009968 char_u *expr;
9969 int map;
9970 int *remp;
9971{
Bram Moolenaar33570922005-01-25 22:26:29 +00009972 typval_T rettv;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009973 char_u *s;
Bram Moolenaarb4066a12007-09-17 19:38:08 +00009974 int retval = FAIL;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009975
Bram Moolenaar33570922005-01-25 22:26:29 +00009976 copy_tv(tv, &vimvars[VV_VAL].vv_tv);
Bram Moolenaare9a41262005-01-15 22:18:47 +00009977 s = expr;
9978 if (eval1(&s, &rettv, TRUE) == FAIL)
Bram Moolenaarb4066a12007-09-17 19:38:08 +00009979 goto theend;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009980 if (*s != NUL) /* check for trailing chars after expr */
9981 {
9982 EMSG2(_(e_invexpr2), s);
Bram Moolenaarb4066a12007-09-17 19:38:08 +00009983 goto theend;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009984 }
9985 if (map)
9986 {
9987 /* map(): replace the list item value */
9988 clear_tv(tv);
Bram Moolenaar4463f292005-09-25 22:20:24 +00009989 rettv.v_lock = 0;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009990 *tv = rettv;
9991 }
9992 else
9993 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009994 int error = FALSE;
9995
Bram Moolenaare9a41262005-01-15 22:18:47 +00009996 /* filter(): when expr is zero remove the item */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009997 *remp = (get_tv_number_chk(&rettv, &error) == 0);
Bram Moolenaare9a41262005-01-15 22:18:47 +00009998 clear_tv(&rettv);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009999 /* On type error, nothing has been removed; return FAIL to stop the
10000 * loop. The error message was given by get_tv_number_chk(). */
10001 if (error)
Bram Moolenaarb4066a12007-09-17 19:38:08 +000010002 goto theend;
Bram Moolenaare9a41262005-01-15 22:18:47 +000010003 }
Bram Moolenaarb4066a12007-09-17 19:38:08 +000010004 retval = OK;
10005theend:
Bram Moolenaar33570922005-01-25 22:26:29 +000010006 clear_tv(&vimvars[VV_VAL].vv_tv);
Bram Moolenaarb4066a12007-09-17 19:38:08 +000010007 return retval;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000010008}
10009
10010/*
10011 * "filter()" function
10012 */
10013 static void
10014f_filter(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010015 typval_T *argvars;
10016 typval_T *rettv;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000010017{
10018 filter_map(argvars, rettv, FALSE);
10019}
10020
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000010021/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000010022 * "finddir({fname}[, {path}[, {count}]])" function
10023 */
10024 static void
10025f_finddir(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010026 typval_T *argvars;
10027 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010028{
Bram Moolenaar4d0ec162008-02-20 11:24:52 +000010029 findfilendir(argvars, rettv, FINDFILE_DIR);
Bram Moolenaar0d660222005-01-07 21:51:51 +000010030}
10031
10032/*
10033 * "findfile({fname}[, {path}[, {count}]])" function
10034 */
10035 static void
10036f_findfile(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010037 typval_T *argvars;
10038 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010039{
Bram Moolenaar4d0ec162008-02-20 11:24:52 +000010040 findfilendir(argvars, rettv, FINDFILE_FILE);
Bram Moolenaar0d660222005-01-07 21:51:51 +000010041}
10042
Bram Moolenaar8c8de832008-06-24 22:58:06 +000010043#ifdef FEAT_FLOAT
10044/*
10045 * "float2nr({float})" function
10046 */
10047 static void
10048f_float2nr(argvars, rettv)
10049 typval_T *argvars;
10050 typval_T *rettv;
10051{
10052 float_T f;
10053
10054 if (get_float_arg(argvars, &f) == OK)
10055 {
10056 if (f < -0x7fffffff)
10057 rettv->vval.v_number = -0x7fffffff;
10058 else if (f > 0x7fffffff)
10059 rettv->vval.v_number = 0x7fffffff;
10060 else
10061 rettv->vval.v_number = (varnumber_T)f;
10062 }
10063 else
10064 rettv->vval.v_number = 0;
10065}
10066
10067/*
10068 * "floor({float})" function
10069 */
10070 static void
10071f_floor(argvars, rettv)
10072 typval_T *argvars;
10073 typval_T *rettv;
10074{
10075 float_T f;
10076
10077 rettv->v_type = VAR_FLOAT;
10078 if (get_float_arg(argvars, &f) == OK)
10079 rettv->vval.v_float = floor(f);
10080 else
10081 rettv->vval.v_float = 0.0;
10082}
10083#endif
10084
Bram Moolenaar0d660222005-01-07 21:51:51 +000010085/*
Bram Moolenaaraebaf892008-05-28 14:49:58 +000010086 * "fnameescape({string})" function
10087 */
10088 static void
10089f_fnameescape(argvars, rettv)
10090 typval_T *argvars;
10091 typval_T *rettv;
10092{
10093 rettv->vval.v_string = vim_strsave_fnameescape(
10094 get_tv_string(&argvars[0]), FALSE);
10095 rettv->v_type = VAR_STRING;
10096}
10097
10098/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000010099 * "fnamemodify({fname}, {mods})" function
10100 */
10101 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010102f_fnamemodify(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010103 typval_T *argvars;
10104 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010105{
10106 char_u *fname;
10107 char_u *mods;
10108 int usedlen = 0;
10109 int len;
10110 char_u *fbuf = NULL;
10111 char_u buf[NUMBUFLEN];
10112
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000010113 fname = get_tv_string_chk(&argvars[0]);
10114 mods = get_tv_string_buf_chk(&argvars[1], buf);
10115 if (fname == NULL || mods == NULL)
10116 fname = NULL;
10117 else
10118 {
10119 len = (int)STRLEN(fname);
10120 (void)modify_fname(mods, &usedlen, &fname, &fbuf, &len);
10121 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000010122
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010123 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010124 if (fname == NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010125 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010126 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010127 rettv->vval.v_string = vim_strnsave(fname, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010128 vim_free(fbuf);
10129}
10130
Bram Moolenaar33570922005-01-25 22:26:29 +000010131static void foldclosed_both __ARGS((typval_T *argvars, typval_T *rettv, int end));
Bram Moolenaar071d4272004-06-13 20:20:40 +000010132
10133/*
10134 * "foldclosed()" function
10135 */
10136 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010137foldclosed_both(argvars, rettv, end)
Bram Moolenaar33570922005-01-25 22:26:29 +000010138 typval_T *argvars;
10139 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010140 int end;
10141{
10142#ifdef FEAT_FOLDING
10143 linenr_T lnum;
10144 linenr_T first, last;
10145
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010146 lnum = get_tv_lnum(argvars);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010147 if (lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count)
10148 {
10149 if (hasFoldingWin(curwin, lnum, &first, &last, FALSE, NULL))
10150 {
10151 if (end)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010152 rettv->vval.v_number = (varnumber_T)last;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010153 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010154 rettv->vval.v_number = (varnumber_T)first;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010155 return;
10156 }
10157 }
10158#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010159 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010160}
10161
10162/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000010163 * "foldclosed()" function
10164 */
10165 static void
10166f_foldclosed(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010167 typval_T *argvars;
10168 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010169{
10170 foldclosed_both(argvars, rettv, FALSE);
10171}
10172
10173/*
10174 * "foldclosedend()" function
10175 */
10176 static void
10177f_foldclosedend(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010178 typval_T *argvars;
10179 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010180{
10181 foldclosed_both(argvars, rettv, TRUE);
10182}
10183
10184/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000010185 * "foldlevel()" function
10186 */
10187 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010188f_foldlevel(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010189 typval_T *argvars;
10190 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010191{
10192#ifdef FEAT_FOLDING
10193 linenr_T lnum;
10194
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010195 lnum = get_tv_lnum(argvars);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010196 if (lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010197 rettv->vval.v_number = foldLevel(lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010198 else
10199#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010200 rettv->vval.v_number = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010201}
10202
10203/*
10204 * "foldtext()" function
10205 */
10206/*ARGSUSED*/
10207 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010208f_foldtext(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010209 typval_T *argvars;
10210 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010211{
10212#ifdef FEAT_FOLDING
10213 linenr_T lnum;
10214 char_u *s;
10215 char_u *r;
10216 int len;
10217 char *txt;
10218#endif
10219
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010220 rettv->v_type = VAR_STRING;
10221 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010222#ifdef FEAT_FOLDING
Bram Moolenaare9a41262005-01-15 22:18:47 +000010223 if ((linenr_T)vimvars[VV_FOLDSTART].vv_nr > 0
10224 && (linenr_T)vimvars[VV_FOLDEND].vv_nr
10225 <= curbuf->b_ml.ml_line_count
10226 && vimvars[VV_FOLDDASHES].vv_str != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010227 {
10228 /* Find first non-empty line in the fold. */
Bram Moolenaare9a41262005-01-15 22:18:47 +000010229 lnum = (linenr_T)vimvars[VV_FOLDSTART].vv_nr;
10230 while (lnum < (linenr_T)vimvars[VV_FOLDEND].vv_nr)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010231 {
10232 if (!linewhite(lnum))
10233 break;
10234 ++lnum;
10235 }
10236
10237 /* Find interesting text in this line. */
10238 s = skipwhite(ml_get(lnum));
10239 /* skip C comment-start */
10240 if (s[0] == '/' && (s[1] == '*' || s[1] == '/'))
Bram Moolenaar293ee4d2004-12-09 21:34:53 +000010241 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000010242 s = skipwhite(s + 2);
Bram Moolenaar293ee4d2004-12-09 21:34:53 +000010243 if (*skipwhite(s) == NUL
Bram Moolenaare9a41262005-01-15 22:18:47 +000010244 && lnum + 1 < (linenr_T)vimvars[VV_FOLDEND].vv_nr)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +000010245 {
10246 s = skipwhite(ml_get(lnum + 1));
10247 if (*s == '*')
10248 s = skipwhite(s + 1);
10249 }
10250 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000010251 txt = _("+-%s%3ld lines: ");
10252 r = alloc((unsigned)(STRLEN(txt)
Bram Moolenaare9a41262005-01-15 22:18:47 +000010253 + STRLEN(vimvars[VV_FOLDDASHES].vv_str) /* for %s */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010254 + 20 /* for %3ld */
10255 + STRLEN(s))); /* concatenated */
10256 if (r != NULL)
10257 {
Bram Moolenaare9a41262005-01-15 22:18:47 +000010258 sprintf((char *)r, txt, vimvars[VV_FOLDDASHES].vv_str,
10259 (long)((linenr_T)vimvars[VV_FOLDEND].vv_nr
10260 - (linenr_T)vimvars[VV_FOLDSTART].vv_nr + 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +000010261 len = (int)STRLEN(r);
10262 STRCAT(r, s);
10263 /* remove 'foldmarker' and 'commentstring' */
10264 foldtext_cleanup(r + len);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010265 rettv->vval.v_string = r;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010266 }
10267 }
10268#endif
10269}
10270
10271/*
Bram Moolenaar7b0294c2004-10-11 10:16:09 +000010272 * "foldtextresult(lnum)" function
10273 */
10274/*ARGSUSED*/
10275 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010276f_foldtextresult(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010277 typval_T *argvars;
10278 typval_T *rettv;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +000010279{
10280#ifdef FEAT_FOLDING
10281 linenr_T lnum;
10282 char_u *text;
10283 char_u buf[51];
10284 foldinfo_T foldinfo;
10285 int fold_count;
10286#endif
10287
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010288 rettv->v_type = VAR_STRING;
10289 rettv->vval.v_string = NULL;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +000010290#ifdef FEAT_FOLDING
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010291 lnum = get_tv_lnum(argvars);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000010292 /* treat illegal types and illegal string values for {lnum} the same */
10293 if (lnum < 0)
10294 lnum = 0;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +000010295 fold_count = foldedCount(curwin, lnum, &foldinfo);
10296 if (fold_count > 0)
10297 {
10298 text = get_foldtext(curwin, lnum, lnum + fold_count - 1,
10299 &foldinfo, buf);
10300 if (text == buf)
10301 text = vim_strsave(text);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010302 rettv->vval.v_string = text;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +000010303 }
10304#endif
10305}
10306
10307/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000010308 * "foreground()" function
10309 */
10310/*ARGSUSED*/
10311 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010312f_foreground(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010313 typval_T *argvars;
10314 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010315{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010316 rettv->vval.v_number = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010317#ifdef FEAT_GUI
10318 if (gui.in_use)
10319 gui_mch_set_foreground();
10320#else
10321# ifdef WIN32
10322 win32_set_foreground();
10323# endif
10324#endif
10325}
10326
10327/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +000010328 * "function()" function
10329 */
10330/*ARGSUSED*/
10331 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010332f_function(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010333 typval_T *argvars;
10334 typval_T *rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000010335{
10336 char_u *s;
10337
Bram Moolenaara7043832005-01-21 11:56:39 +000010338 rettv->vval.v_number = 0;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010339 s = get_tv_string(&argvars[0]);
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000010340 if (s == NULL || *s == NUL || VIM_ISDIGIT(*s))
Bram Moolenaar49cd9572005-01-03 21:06:01 +000010341 EMSG2(_(e_invarg2), s);
Bram Moolenaar3d0089f2008-12-03 08:52:26 +000010342 /* Don't check an autoload name for existence here. */
10343 else if (vim_strchr(s, AUTOLOAD_CHAR) == NULL && !function_exists(s))
Bram Moolenaare49b69a2005-01-08 16:11:57 +000010344 EMSG2(_("E700: Unknown function: %s"), s);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000010345 else
10346 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010347 rettv->vval.v_string = vim_strsave(s);
10348 rettv->v_type = VAR_FUNC;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000010349 }
10350}
10351
10352/*
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +000010353 * "garbagecollect()" function
10354 */
10355/*ARGSUSED*/
10356 static void
10357f_garbagecollect(argvars, rettv)
10358 typval_T *argvars;
10359 typval_T *rettv;
10360{
Bram Moolenaar9fecb462006-09-05 10:59:47 +000010361 /* This is postponed until we are back at the toplevel, because we may be
10362 * using Lists and Dicts internally. E.g.: ":echo [garbagecollect()]". */
10363 want_garbage_collect = TRUE;
Bram Moolenaar9d2c8c12007-09-25 16:00:00 +000010364
10365 if (argvars[0].v_type != VAR_UNKNOWN && get_tv_number(&argvars[0]) == 1)
10366 garbage_collect_at_exit = TRUE;
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +000010367}
10368
10369/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000010370 * "get()" function
10371 */
10372 static void
10373f_get(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010374 typval_T *argvars;
10375 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010376{
Bram Moolenaar33570922005-01-25 22:26:29 +000010377 listitem_T *li;
10378 list_T *l;
10379 dictitem_T *di;
10380 dict_T *d;
10381 typval_T *tv = NULL;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010382
Bram Moolenaare9a41262005-01-15 22:18:47 +000010383 if (argvars[0].v_type == VAR_LIST)
Bram Moolenaar0d660222005-01-07 21:51:51 +000010384 {
Bram Moolenaare9a41262005-01-15 22:18:47 +000010385 if ((l = argvars[0].vval.v_list) != NULL)
Bram Moolenaar0d660222005-01-07 21:51:51 +000010386 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000010387 int error = FALSE;
10388
10389 li = list_find(l, get_tv_number_chk(&argvars[1], &error));
10390 if (!error && li != NULL)
Bram Moolenaare9a41262005-01-15 22:18:47 +000010391 tv = &li->li_tv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010392 }
Bram Moolenaar0d660222005-01-07 21:51:51 +000010393 }
Bram Moolenaare9a41262005-01-15 22:18:47 +000010394 else if (argvars[0].v_type == VAR_DICT)
10395 {
10396 if ((d = argvars[0].vval.v_dict) != NULL)
10397 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000010398 di = dict_find(d, get_tv_string(&argvars[1]), -1);
Bram Moolenaare9a41262005-01-15 22:18:47 +000010399 if (di != NULL)
10400 tv = &di->di_tv;
10401 }
10402 }
10403 else
10404 EMSG2(_(e_listdictarg), "get()");
10405
10406 if (tv == NULL)
10407 {
10408 if (argvars[2].v_type == VAR_UNKNOWN)
10409 rettv->vval.v_number = 0;
10410 else
10411 copy_tv(&argvars[2], rettv);
10412 }
10413 else
10414 copy_tv(tv, rettv);
Bram Moolenaar0d660222005-01-07 21:51:51 +000010415}
10416
Bram Moolenaar342337a2005-07-21 21:11:17 +000010417static 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 +000010418
10419/*
10420 * Get line or list of lines from buffer "buf" into "rettv".
Bram Moolenaar342337a2005-07-21 21:11:17 +000010421 * Return a range (from start to end) of lines in rettv from the specified
10422 * buffer.
10423 * If 'retlist' is TRUE, then the lines are returned as a Vim List.
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010424 */
10425 static void
Bram Moolenaar342337a2005-07-21 21:11:17 +000010426get_buffer_lines(buf, start, end, retlist, rettv)
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010427 buf_T *buf;
10428 linenr_T start;
10429 linenr_T end;
Bram Moolenaar342337a2005-07-21 21:11:17 +000010430 int retlist;
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010431 typval_T *rettv;
10432{
10433 char_u *p;
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010434
Bram Moolenaar342337a2005-07-21 21:11:17 +000010435 if (retlist)
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010436 {
Bram Moolenaareddf53b2006-02-27 00:11:10 +000010437 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaar342337a2005-07-21 21:11:17 +000010438 return;
Bram Moolenaar342337a2005-07-21 21:11:17 +000010439 }
10440 else
10441 rettv->vval.v_number = 0;
10442
10443 if (buf == NULL || buf->b_ml.ml_mfp == NULL || start < 0)
10444 return;
10445
10446 if (!retlist)
10447 {
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010448 if (start >= 1 && start <= buf->b_ml.ml_line_count)
10449 p = ml_get_buf(buf, start, FALSE);
10450 else
10451 p = (char_u *)"";
10452
10453 rettv->v_type = VAR_STRING;
10454 rettv->vval.v_string = vim_strsave(p);
10455 }
10456 else
10457 {
10458 if (end < start)
Bram Moolenaar342337a2005-07-21 21:11:17 +000010459 return;
10460
10461 if (start < 1)
10462 start = 1;
10463 if (end > buf->b_ml.ml_line_count)
10464 end = buf->b_ml.ml_line_count;
10465 while (start <= end)
Bram Moolenaareddf53b2006-02-27 00:11:10 +000010466 if (list_append_string(rettv->vval.v_list,
10467 ml_get_buf(buf, start++, FALSE), -1) == FAIL)
Bram Moolenaar342337a2005-07-21 21:11:17 +000010468 break;
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010469 }
10470}
10471
10472/*
10473 * "getbufline()" function
10474 */
10475 static void
10476f_getbufline(argvars, rettv)
10477 typval_T *argvars;
10478 typval_T *rettv;
10479{
10480 linenr_T lnum;
10481 linenr_T end;
10482 buf_T *buf;
10483
10484 (void)get_tv_number(&argvars[0]); /* issue errmsg if type error */
10485 ++emsg_off;
10486 buf = get_buf_tv(&argvars[0]);
10487 --emsg_off;
10488
Bram Moolenaar661b1822005-07-28 22:36:45 +000010489 lnum = get_tv_lnum_buf(&argvars[1], buf);
Bram Moolenaar342337a2005-07-21 21:11:17 +000010490 if (argvars[2].v_type == VAR_UNKNOWN)
10491 end = lnum;
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010492 else
Bram Moolenaar661b1822005-07-28 22:36:45 +000010493 end = get_tv_lnum_buf(&argvars[2], buf);
10494
Bram Moolenaar342337a2005-07-21 21:11:17 +000010495 get_buffer_lines(buf, lnum, end, TRUE, rettv);
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010496}
10497
Bram Moolenaar0d660222005-01-07 21:51:51 +000010498/*
10499 * "getbufvar()" function
10500 */
10501 static void
10502f_getbufvar(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010503 typval_T *argvars;
10504 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010505{
10506 buf_T *buf;
10507 buf_T *save_curbuf;
10508 char_u *varname;
Bram Moolenaar33570922005-01-25 22:26:29 +000010509 dictitem_T *v;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010510
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000010511 (void)get_tv_number(&argvars[0]); /* issue errmsg if type error */
10512 varname = get_tv_string_chk(&argvars[1]);
Bram Moolenaar0d660222005-01-07 21:51:51 +000010513 ++emsg_off;
10514 buf = get_buf_tv(&argvars[0]);
Bram Moolenaar0d660222005-01-07 21:51:51 +000010515
10516 rettv->v_type = VAR_STRING;
10517 rettv->vval.v_string = NULL;
10518
10519 if (buf != NULL && varname != NULL)
10520 {
Bram Moolenaar632deed2008-06-27 18:26:11 +000010521 /* set curbuf to be our buf, temporarily */
10522 save_curbuf = curbuf;
10523 curbuf = buf;
10524
Bram Moolenaar0d660222005-01-07 21:51:51 +000010525 if (*varname == '&') /* buffer-local-option */
Bram Moolenaar0d660222005-01-07 21:51:51 +000010526 get_option_tv(&varname, rettv, TRUE);
Bram Moolenaar0d660222005-01-07 21:51:51 +000010527 else
10528 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000010529 if (*varname == NUL)
10530 /* let getbufvar({nr}, "") return the "b:" dictionary. The
10531 * scope prefix before the NUL byte is required by
10532 * find_var_in_ht(). */
10533 varname = (char_u *)"b:" + 2;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010534 /* look up the variable */
Bram Moolenaar632deed2008-06-27 18:26:11 +000010535 v = find_var_in_ht(&curbuf->b_vars.dv_hashtab, varname, FALSE);
Bram Moolenaar0d660222005-01-07 21:51:51 +000010536 if (v != NULL)
Bram Moolenaar33570922005-01-25 22:26:29 +000010537 copy_tv(&v->di_tv, rettv);
Bram Moolenaar0d660222005-01-07 21:51:51 +000010538 }
Bram Moolenaar632deed2008-06-27 18:26:11 +000010539
10540 /* restore previous notion of curbuf */
10541 curbuf = save_curbuf;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010542 }
10543
10544 --emsg_off;
10545}
10546
10547/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000010548 * "getchar()" function
10549 */
10550 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010551f_getchar(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010552 typval_T *argvars;
10553 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010554{
10555 varnumber_T n;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000010556 int error = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010557
Bram Moolenaar4015b2c2006-06-22 19:01:34 +000010558 /* Position the cursor. Needed after a message that ends in a space. */
10559 windgoto(msg_row, msg_col);
10560
Bram Moolenaar071d4272004-06-13 20:20:40 +000010561 ++no_mapping;
10562 ++allow_keys;
Bram Moolenaar9c8791f2007-09-05 19:47:23 +000010563 for (;;)
10564 {
10565 if (argvars[0].v_type == VAR_UNKNOWN)
10566 /* getchar(): blocking wait. */
10567 n = safe_vgetc();
10568 else if (get_tv_number_chk(&argvars[0], &error) == 1)
10569 /* getchar(1): only check if char avail */
10570 n = vpeekc();
10571 else if (error || vpeekc() == NUL)
10572 /* illegal argument or getchar(0) and no char avail: return zero */
10573 n = 0;
10574 else
10575 /* getchar(0) and char avail: return char */
10576 n = safe_vgetc();
10577 if (n == K_IGNORE)
10578 continue;
10579 break;
10580 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000010581 --no_mapping;
10582 --allow_keys;
10583
Bram Moolenaar219b8702006-11-01 14:32:36 +000010584 vimvars[VV_MOUSE_WIN].vv_nr = 0;
10585 vimvars[VV_MOUSE_LNUM].vv_nr = 0;
10586 vimvars[VV_MOUSE_COL].vv_nr = 0;
10587
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010588 rettv->vval.v_number = n;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010589 if (IS_SPECIAL(n) || mod_mask != 0)
10590 {
10591 char_u temp[10]; /* modifier: 3, mbyte-char: 6, NUL: 1 */
10592 int i = 0;
10593
10594 /* Turn a special key into three bytes, plus modifier. */
10595 if (mod_mask != 0)
10596 {
10597 temp[i++] = K_SPECIAL;
10598 temp[i++] = KS_MODIFIER;
10599 temp[i++] = mod_mask;
10600 }
10601 if (IS_SPECIAL(n))
10602 {
10603 temp[i++] = K_SPECIAL;
10604 temp[i++] = K_SECOND(n);
10605 temp[i++] = K_THIRD(n);
10606 }
10607#ifdef FEAT_MBYTE
10608 else if (has_mbyte)
10609 i += (*mb_char2bytes)(n, temp + i);
10610#endif
10611 else
10612 temp[i++] = n;
10613 temp[i++] = NUL;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010614 rettv->v_type = VAR_STRING;
10615 rettv->vval.v_string = vim_strsave(temp);
Bram Moolenaar219b8702006-11-01 14:32:36 +000010616
10617#ifdef FEAT_MOUSE
10618 if (n == K_LEFTMOUSE
10619 || n == K_LEFTMOUSE_NM
10620 || n == K_LEFTDRAG
10621 || n == K_LEFTRELEASE
10622 || n == K_LEFTRELEASE_NM
10623 || n == K_MIDDLEMOUSE
10624 || n == K_MIDDLEDRAG
10625 || n == K_MIDDLERELEASE
10626 || n == K_RIGHTMOUSE
10627 || n == K_RIGHTDRAG
10628 || n == K_RIGHTRELEASE
10629 || n == K_X1MOUSE
10630 || n == K_X1DRAG
10631 || n == K_X1RELEASE
10632 || n == K_X2MOUSE
10633 || n == K_X2DRAG
10634 || n == K_X2RELEASE
10635 || n == K_MOUSEDOWN
10636 || n == K_MOUSEUP)
10637 {
10638 int row = mouse_row;
10639 int col = mouse_col;
10640 win_T *win;
10641 linenr_T lnum;
10642# ifdef FEAT_WINDOWS
10643 win_T *wp;
10644# endif
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +000010645 int winnr = 1;
Bram Moolenaar219b8702006-11-01 14:32:36 +000010646
10647 if (row >= 0 && col >= 0)
10648 {
10649 /* Find the window at the mouse coordinates and compute the
10650 * text position. */
10651 win = mouse_find_win(&row, &col);
10652 (void)mouse_comp_pos(win, &row, &col, &lnum);
10653# ifdef FEAT_WINDOWS
10654 for (wp = firstwin; wp != win; wp = wp->w_next)
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +000010655 ++winnr;
Bram Moolenaar219b8702006-11-01 14:32:36 +000010656# endif
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +000010657 vimvars[VV_MOUSE_WIN].vv_nr = winnr;
Bram Moolenaar219b8702006-11-01 14:32:36 +000010658 vimvars[VV_MOUSE_LNUM].vv_nr = lnum;
10659 vimvars[VV_MOUSE_COL].vv_nr = col + 1;
10660 }
10661 }
10662#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000010663 }
10664}
10665
10666/*
10667 * "getcharmod()" function
10668 */
10669/*ARGSUSED*/
10670 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010671f_getcharmod(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010672 typval_T *argvars;
10673 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010674{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010675 rettv->vval.v_number = mod_mask;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010676}
10677
10678/*
10679 * "getcmdline()" function
10680 */
10681/*ARGSUSED*/
10682 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010683f_getcmdline(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010684 typval_T *argvars;
10685 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010686{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010687 rettv->v_type = VAR_STRING;
10688 rettv->vval.v_string = get_cmdline_str();
Bram Moolenaar071d4272004-06-13 20:20:40 +000010689}
10690
10691/*
10692 * "getcmdpos()" function
10693 */
10694/*ARGSUSED*/
10695 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010696f_getcmdpos(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010697 typval_T *argvars;
10698 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010699{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010700 rettv->vval.v_number = get_cmdline_pos() + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010701}
10702
10703/*
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000010704 * "getcmdtype()" function
10705 */
10706/*ARGSUSED*/
10707 static void
10708f_getcmdtype(argvars, rettv)
10709 typval_T *argvars;
10710 typval_T *rettv;
10711{
10712 rettv->v_type = VAR_STRING;
10713 rettv->vval.v_string = alloc(2);
10714 if (rettv->vval.v_string != NULL)
10715 {
10716 rettv->vval.v_string[0] = get_cmdline_type();
10717 rettv->vval.v_string[1] = NUL;
10718 }
10719}
10720
10721/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000010722 * "getcwd()" function
10723 */
10724/*ARGSUSED*/
10725 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010726f_getcwd(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010727 typval_T *argvars;
10728 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010729{
10730 char_u cwd[MAXPATHL];
10731
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010732 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010733 if (mch_dirname(cwd, MAXPATHL) == FAIL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010734 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010735 else
10736 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010737 rettv->vval.v_string = vim_strsave(cwd);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010738#ifdef BACKSLASH_IN_FILENAME
Bram Moolenaar342337a2005-07-21 21:11:17 +000010739 if (rettv->vval.v_string != NULL)
10740 slash_adjust(rettv->vval.v_string);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010741#endif
10742 }
10743}
10744
10745/*
Bram Moolenaar46c9c732004-12-12 11:37:09 +000010746 * "getfontname()" function
10747 */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +000010748/*ARGSUSED*/
Bram Moolenaar46c9c732004-12-12 11:37:09 +000010749 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010750f_getfontname(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010751 typval_T *argvars;
10752 typval_T *rettv;
Bram Moolenaar46c9c732004-12-12 11:37:09 +000010753{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010754 rettv->v_type = VAR_STRING;
10755 rettv->vval.v_string = NULL;
Bram Moolenaar46c9c732004-12-12 11:37:09 +000010756#ifdef FEAT_GUI
10757 if (gui.in_use)
10758 {
10759 GuiFont font;
10760 char_u *name = NULL;
10761
Bram Moolenaar49cd9572005-01-03 21:06:01 +000010762 if (argvars[0].v_type == VAR_UNKNOWN)
Bram Moolenaar46c9c732004-12-12 11:37:09 +000010763 {
10764 /* Get the "Normal" font. Either the name saved by
10765 * hl_set_font_name() or from the font ID. */
10766 font = gui.norm_font;
10767 name = hl_get_font_name();
10768 }
10769 else
10770 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010771 name = get_tv_string(&argvars[0]);
Bram Moolenaar46c9c732004-12-12 11:37:09 +000010772 if (STRCMP(name, "*") == 0) /* don't use font dialog */
10773 return;
10774 font = gui_mch_get_font(name, FALSE);
10775 if (font == NOFONT)
10776 return; /* Invalid font name, return empty string. */
10777 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010778 rettv->vval.v_string = gui_mch_get_fontname(font, name);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000010779 if (argvars[0].v_type != VAR_UNKNOWN)
Bram Moolenaar46c9c732004-12-12 11:37:09 +000010780 gui_mch_free_font(font);
10781 }
10782#endif
10783}
10784
10785/*
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000010786 * "getfperm({fname})" function
10787 */
10788 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010789f_getfperm(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010790 typval_T *argvars;
10791 typval_T *rettv;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000010792{
10793 char_u *fname;
10794 struct stat st;
10795 char_u *perm = NULL;
10796 char_u flags[] = "rwx";
10797 int i;
10798
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010799 fname = get_tv_string(&argvars[0]);
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000010800
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010801 rettv->v_type = VAR_STRING;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000010802 if (mch_stat((char *)fname, &st) >= 0)
10803 {
10804 perm = vim_strsave((char_u *)"---------");
10805 if (perm != NULL)
10806 {
10807 for (i = 0; i < 9; i++)
10808 {
10809 if (st.st_mode & (1 << (8 - i)))
10810 perm[i] = flags[i % 3];
10811 }
10812 }
10813 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010814 rettv->vval.v_string = perm;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000010815}
10816
10817/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000010818 * "getfsize({fname})" function
10819 */
10820 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010821f_getfsize(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010822 typval_T *argvars;
10823 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010824{
10825 char_u *fname;
10826 struct stat st;
10827
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010828 fname = get_tv_string(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010829
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010830 rettv->v_type = VAR_NUMBER;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010831
10832 if (mch_stat((char *)fname, &st) >= 0)
10833 {
10834 if (mch_isdir(fname))
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010835 rettv->vval.v_number = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010836 else
Bram Moolenaard827ada2007-06-19 15:19:55 +000010837 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010838 rettv->vval.v_number = (varnumber_T)st.st_size;
Bram Moolenaard827ada2007-06-19 15:19:55 +000010839
10840 /* non-perfect check for overflow */
10841 if ((off_t)rettv->vval.v_number != (off_t)st.st_size)
10842 rettv->vval.v_number = -2;
10843 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000010844 }
10845 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010846 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010847}
10848
10849/*
10850 * "getftime({fname})" function
10851 */
10852 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010853f_getftime(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010854 typval_T *argvars;
10855 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010856{
10857 char_u *fname;
10858 struct stat st;
10859
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010860 fname = get_tv_string(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010861
10862 if (mch_stat((char *)fname, &st) >= 0)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010863 rettv->vval.v_number = (varnumber_T)st.st_mtime;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010864 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010865 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010866}
10867
10868/*
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000010869 * "getftype({fname})" function
10870 */
10871 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010872f_getftype(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010873 typval_T *argvars;
10874 typval_T *rettv;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000010875{
10876 char_u *fname;
10877 struct stat st;
10878 char_u *type = NULL;
10879 char *t;
10880
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010881 fname = get_tv_string(&argvars[0]);
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000010882
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010883 rettv->v_type = VAR_STRING;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000010884 if (mch_lstat((char *)fname, &st) >= 0)
10885 {
10886#ifdef S_ISREG
10887 if (S_ISREG(st.st_mode))
10888 t = "file";
10889 else if (S_ISDIR(st.st_mode))
10890 t = "dir";
10891# ifdef S_ISLNK
10892 else if (S_ISLNK(st.st_mode))
10893 t = "link";
10894# endif
10895# ifdef S_ISBLK
10896 else if (S_ISBLK(st.st_mode))
10897 t = "bdev";
10898# endif
10899# ifdef S_ISCHR
10900 else if (S_ISCHR(st.st_mode))
10901 t = "cdev";
10902# endif
10903# ifdef S_ISFIFO
10904 else if (S_ISFIFO(st.st_mode))
10905 t = "fifo";
10906# endif
10907# ifdef S_ISSOCK
10908 else if (S_ISSOCK(st.st_mode))
10909 t = "fifo";
10910# endif
10911 else
10912 t = "other";
10913#else
10914# ifdef S_IFMT
10915 switch (st.st_mode & S_IFMT)
10916 {
10917 case S_IFREG: t = "file"; break;
10918 case S_IFDIR: t = "dir"; break;
10919# ifdef S_IFLNK
10920 case S_IFLNK: t = "link"; break;
10921# endif
10922# ifdef S_IFBLK
10923 case S_IFBLK: t = "bdev"; break;
10924# endif
10925# ifdef S_IFCHR
10926 case S_IFCHR: t = "cdev"; break;
10927# endif
10928# ifdef S_IFIFO
10929 case S_IFIFO: t = "fifo"; break;
10930# endif
10931# ifdef S_IFSOCK
10932 case S_IFSOCK: t = "socket"; break;
10933# endif
10934 default: t = "other";
10935 }
10936# else
10937 if (mch_isdir(fname))
10938 t = "dir";
10939 else
10940 t = "file";
10941# endif
10942#endif
10943 type = vim_strsave((char_u *)t);
10944 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010945 rettv->vval.v_string = type;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000010946}
10947
10948/*
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010949 * "getline(lnum, [end])" function
Bram Moolenaar0d660222005-01-07 21:51:51 +000010950 */
10951 static void
10952f_getline(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010953 typval_T *argvars;
10954 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010955{
10956 linenr_T lnum;
10957 linenr_T end;
Bram Moolenaar342337a2005-07-21 21:11:17 +000010958 int retlist;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010959
10960 lnum = get_tv_lnum(argvars);
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010961 if (argvars[1].v_type == VAR_UNKNOWN)
Bram Moolenaar342337a2005-07-21 21:11:17 +000010962 {
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010963 end = 0;
Bram Moolenaar342337a2005-07-21 21:11:17 +000010964 retlist = FALSE;
10965 }
Bram Moolenaar0d660222005-01-07 21:51:51 +000010966 else
Bram Moolenaar342337a2005-07-21 21:11:17 +000010967 {
Bram Moolenaar0d660222005-01-07 21:51:51 +000010968 end = get_tv_lnum(&argvars[1]);
Bram Moolenaar342337a2005-07-21 21:11:17 +000010969 retlist = TRUE;
10970 }
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010971
Bram Moolenaar342337a2005-07-21 21:11:17 +000010972 get_buffer_lines(curbuf, lnum, end, retlist, rettv);
Bram Moolenaar0d660222005-01-07 21:51:51 +000010973}
10974
10975/*
Bram Moolenaar6ee10162007-07-26 20:58:42 +000010976 * "getmatches()" function
10977 */
10978/*ARGSUSED*/
10979 static void
10980f_getmatches(argvars, rettv)
10981 typval_T *argvars;
10982 typval_T *rettv;
10983{
10984#ifdef FEAT_SEARCH_EXTRA
10985 dict_T *dict;
10986 matchitem_T *cur = curwin->w_match_head;
10987
10988 rettv->vval.v_number = 0;
10989
10990 if (rettv_list_alloc(rettv) == OK)
10991 {
10992 while (cur != NULL)
10993 {
10994 dict = dict_alloc();
10995 if (dict == NULL)
10996 return;
Bram Moolenaar6ee10162007-07-26 20:58:42 +000010997 dict_add_nr_str(dict, "group", 0L, syn_id2name(cur->hlg_id));
10998 dict_add_nr_str(dict, "pattern", 0L, cur->pattern);
10999 dict_add_nr_str(dict, "priority", (long)cur->priority, NULL);
11000 dict_add_nr_str(dict, "id", (long)cur->id, NULL);
11001 list_append_dict(rettv->vval.v_list, dict);
11002 cur = cur->next;
11003 }
11004 }
11005#endif
11006}
11007
11008/*
Bram Moolenaar18081e32008-02-20 19:11:07 +000011009 * "getpid()" function
11010 */
11011/*ARGSUSED*/
11012 static void
11013f_getpid(argvars, rettv)
11014 typval_T *argvars;
11015 typval_T *rettv;
11016{
11017 rettv->vval.v_number = mch_get_pid();
11018}
11019
11020/*
Bram Moolenaara5525202006-03-02 22:52:09 +000011021 * "getpos(string)" function
11022 */
11023 static void
11024f_getpos(argvars, rettv)
11025 typval_T *argvars;
11026 typval_T *rettv;
11027{
11028 pos_T *fp;
11029 list_T *l;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000011030 int fnum = -1;
Bram Moolenaara5525202006-03-02 22:52:09 +000011031
11032 if (rettv_list_alloc(rettv) == OK)
11033 {
11034 l = rettv->vval.v_list;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000011035 fp = var2fpos(&argvars[0], TRUE, &fnum);
11036 if (fnum != -1)
11037 list_append_number(l, (varnumber_T)fnum);
11038 else
11039 list_append_number(l, (varnumber_T)0);
Bram Moolenaara5525202006-03-02 22:52:09 +000011040 list_append_number(l, (fp != NULL) ? (varnumber_T)fp->lnum
11041 : (varnumber_T)0);
Bram Moolenaare65f7322007-10-02 20:08:54 +000011042 list_append_number(l, (fp != NULL)
11043 ? (varnumber_T)(fp->col == MAXCOL ? MAXCOL : fp->col + 1)
Bram Moolenaara5525202006-03-02 22:52:09 +000011044 : (varnumber_T)0);
11045 list_append_number(l,
11046#ifdef FEAT_VIRTUALEDIT
11047 (fp != NULL) ? (varnumber_T)fp->coladd :
11048#endif
11049 (varnumber_T)0);
11050 }
11051 else
11052 rettv->vval.v_number = FALSE;
11053}
11054
11055/*
Bram Moolenaar280f1262006-01-30 00:14:18 +000011056 * "getqflist()" and "getloclist()" functions
Bram Moolenaar2641f772005-03-25 21:58:17 +000011057 */
Bram Moolenaar280f1262006-01-30 00:14:18 +000011058/*ARGSUSED*/
Bram Moolenaar2641f772005-03-25 21:58:17 +000011059 static void
Bram Moolenaar280f1262006-01-30 00:14:18 +000011060f_getqflist(argvars, rettv)
11061 typval_T *argvars;
Bram Moolenaar2641f772005-03-25 21:58:17 +000011062 typval_T *rettv;
11063{
11064#ifdef FEAT_QUICKFIX
Bram Moolenaar280f1262006-01-30 00:14:18 +000011065 win_T *wp;
Bram Moolenaar2641f772005-03-25 21:58:17 +000011066#endif
11067
Bram Moolenaar77f66d62007-02-20 02:16:18 +000011068 rettv->vval.v_number = 0;
Bram Moolenaar2641f772005-03-25 21:58:17 +000011069#ifdef FEAT_QUICKFIX
Bram Moolenaareddf53b2006-02-27 00:11:10 +000011070 if (rettv_list_alloc(rettv) == OK)
Bram Moolenaar2641f772005-03-25 21:58:17 +000011071 {
Bram Moolenaar280f1262006-01-30 00:14:18 +000011072 wp = NULL;
11073 if (argvars[0].v_type != VAR_UNKNOWN) /* getloclist() */
11074 {
Bram Moolenaar99ebf042006-04-15 20:28:54 +000011075 wp = find_win_by_nr(&argvars[0], NULL);
Bram Moolenaar280f1262006-01-30 00:14:18 +000011076 if (wp == NULL)
11077 return;
11078 }
11079
Bram Moolenaareddf53b2006-02-27 00:11:10 +000011080 (void)get_errorlist(wp, rettv->vval.v_list);
Bram Moolenaar2641f772005-03-25 21:58:17 +000011081 }
11082#endif
11083}
11084
11085/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000011086 * "getreg()" function
11087 */
11088 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011089f_getreg(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000011090 typval_T *argvars;
11091 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011092{
11093 char_u *strregname;
11094 int regname;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000011095 int arg2 = FALSE;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011096 int error = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011097
Bram Moolenaar49cd9572005-01-03 21:06:01 +000011098 if (argvars[0].v_type != VAR_UNKNOWN)
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000011099 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011100 strregname = get_tv_string_chk(&argvars[0]);
11101 error = strregname == NULL;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000011102 if (argvars[1].v_type != VAR_UNKNOWN)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011103 arg2 = get_tv_number_chk(&argvars[1], &error);
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000011104 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000011105 else
Bram Moolenaare9a41262005-01-15 22:18:47 +000011106 strregname = vimvars[VV_REG].vv_str;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011107 regname = (strregname == NULL ? '"' : *strregname);
11108 if (regname == 0)
11109 regname = '"';
11110
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011111 rettv->v_type = VAR_STRING;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011112 rettv->vval.v_string = error ? NULL :
11113 get_reg_contents(regname, TRUE, arg2);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011114}
11115
11116/*
11117 * "getregtype()" function
11118 */
11119 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011120f_getregtype(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000011121 typval_T *argvars;
11122 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011123{
11124 char_u *strregname;
11125 int regname;
11126 char_u buf[NUMBUFLEN + 2];
11127 long reglen = 0;
11128
Bram Moolenaar49cd9572005-01-03 21:06:01 +000011129 if (argvars[0].v_type != VAR_UNKNOWN)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011130 {
11131 strregname = get_tv_string_chk(&argvars[0]);
11132 if (strregname == NULL) /* type error; errmsg already given */
11133 {
11134 rettv->v_type = VAR_STRING;
11135 rettv->vval.v_string = NULL;
11136 return;
11137 }
11138 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000011139 else
11140 /* Default to v:register */
Bram Moolenaare9a41262005-01-15 22:18:47 +000011141 strregname = vimvars[VV_REG].vv_str;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011142
11143 regname = (strregname == NULL ? '"' : *strregname);
11144 if (regname == 0)
11145 regname = '"';
11146
11147 buf[0] = NUL;
11148 buf[1] = NUL;
11149 switch (get_reg_type(regname, &reglen))
11150 {
11151 case MLINE: buf[0] = 'V'; break;
11152 case MCHAR: buf[0] = 'v'; break;
11153#ifdef FEAT_VISUAL
11154 case MBLOCK:
11155 buf[0] = Ctrl_V;
11156 sprintf((char *)buf + 1, "%ld", reglen + 1);
11157 break;
11158#endif
11159 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011160 rettv->v_type = VAR_STRING;
11161 rettv->vval.v_string = vim_strsave(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011162}
11163
11164/*
Bram Moolenaar99ebf042006-04-15 20:28:54 +000011165 * "gettabwinvar()" function
11166 */
11167 static void
11168f_gettabwinvar(argvars, rettv)
11169 typval_T *argvars;
11170 typval_T *rettv;
11171{
11172 getwinvar(argvars, rettv, 1);
11173}
11174
11175/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000011176 * "getwinposx()" function
11177 */
11178/*ARGSUSED*/
11179 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011180f_getwinposx(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000011181 typval_T *argvars;
11182 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011183{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011184 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011185#ifdef FEAT_GUI
11186 if (gui.in_use)
11187 {
11188 int x, y;
11189
11190 if (gui_mch_get_winpos(&x, &y) == OK)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011191 rettv->vval.v_number = x;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011192 }
11193#endif
11194}
11195
11196/*
11197 * "getwinposy()" function
11198 */
11199/*ARGSUSED*/
11200 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011201f_getwinposy(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000011202 typval_T *argvars;
11203 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011204{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011205 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011206#ifdef FEAT_GUI
11207 if (gui.in_use)
11208 {
11209 int x, y;
11210
11211 if (gui_mch_get_winpos(&x, &y) == OK)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011212 rettv->vval.v_number = y;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011213 }
11214#endif
11215}
11216
Bram Moolenaar99ebf042006-04-15 20:28:54 +000011217/*
Bram Moolenaar8c8de832008-06-24 22:58:06 +000011218 * Find window specified by "vp" in tabpage "tp".
Bram Moolenaar99ebf042006-04-15 20:28:54 +000011219 */
Bram Moolenaara40058a2005-07-11 22:42:07 +000011220 static win_T *
Bram Moolenaar99ebf042006-04-15 20:28:54 +000011221find_win_by_nr(vp, tp)
Bram Moolenaara40058a2005-07-11 22:42:07 +000011222 typval_T *vp;
Bram Moolenaar99ebf042006-04-15 20:28:54 +000011223 tabpage_T *tp; /* NULL for current tab page */
Bram Moolenaara40058a2005-07-11 22:42:07 +000011224{
11225#ifdef FEAT_WINDOWS
11226 win_T *wp;
11227#endif
11228 int nr;
11229
11230 nr = get_tv_number_chk(vp, NULL);
11231
11232#ifdef FEAT_WINDOWS
11233 if (nr < 0)
11234 return NULL;
11235 if (nr == 0)
11236 return curwin;
11237
Bram Moolenaar99ebf042006-04-15 20:28:54 +000011238 for (wp = (tp == NULL || tp == curtab) ? firstwin : tp->tp_firstwin;
11239 wp != NULL; wp = wp->w_next)
Bram Moolenaara40058a2005-07-11 22:42:07 +000011240 if (--nr <= 0)
11241 break;
11242 return wp;
11243#else
11244 if (nr == 0 || nr == 1)
11245 return curwin;
11246 return NULL;
11247#endif
11248}
11249
Bram Moolenaar071d4272004-06-13 20:20:40 +000011250/*
11251 * "getwinvar()" function
11252 */
11253 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011254f_getwinvar(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000011255 typval_T *argvars;
11256 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011257{
Bram Moolenaar99ebf042006-04-15 20:28:54 +000011258 getwinvar(argvars, rettv, 0);
11259}
11260
11261/*
11262 * getwinvar() and gettabwinvar()
11263 */
11264 static void
11265getwinvar(argvars, rettv, off)
11266 typval_T *argvars;
11267 typval_T *rettv;
11268 int off; /* 1 for gettabwinvar() */
11269{
Bram Moolenaar071d4272004-06-13 20:20:40 +000011270 win_T *win, *oldcurwin;
11271 char_u *varname;
Bram Moolenaar33570922005-01-25 22:26:29 +000011272 dictitem_T *v;
Bram Moolenaar99ebf042006-04-15 20:28:54 +000011273 tabpage_T *tp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011274
Bram Moolenaar99ebf042006-04-15 20:28:54 +000011275#ifdef FEAT_WINDOWS
11276 if (off == 1)
11277 tp = find_tabpage((int)get_tv_number_chk(&argvars[0], NULL));
11278 else
11279 tp = curtab;
11280#endif
11281 win = find_win_by_nr(&argvars[off], tp);
11282 varname = get_tv_string_chk(&argvars[off + 1]);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011283 ++emsg_off;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011284
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011285 rettv->v_type = VAR_STRING;
11286 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011287
11288 if (win != NULL && varname != NULL)
11289 {
Bram Moolenaar69a7e432006-10-10 10:55:47 +000011290 /* Set curwin to be our win, temporarily. Also set curbuf, so
11291 * that we can get buffer-local options. */
11292 oldcurwin = curwin;
11293 curwin = win;
11294 curbuf = win->w_buffer;
11295
Bram Moolenaar071d4272004-06-13 20:20:40 +000011296 if (*varname == '&') /* window-local-option */
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011297 get_option_tv(&varname, rettv, 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011298 else
11299 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011300 if (*varname == NUL)
11301 /* let getwinvar({nr}, "") return the "w:" dictionary. The
11302 * scope prefix before the NUL byte is required by
11303 * find_var_in_ht(). */
11304 varname = (char_u *)"w:" + 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011305 /* look up the variable */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000011306 v = find_var_in_ht(&win->w_vars.dv_hashtab, varname, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011307 if (v != NULL)
Bram Moolenaar33570922005-01-25 22:26:29 +000011308 copy_tv(&v->di_tv, rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011309 }
Bram Moolenaar69a7e432006-10-10 10:55:47 +000011310
11311 /* restore previous notion of curwin */
11312 curwin = oldcurwin;
11313 curbuf = curwin->w_buffer;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011314 }
11315
11316 --emsg_off;
11317}
11318
11319/*
11320 * "glob()" function
11321 */
11322 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011323f_glob(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000011324 typval_T *argvars;
11325 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011326{
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +000011327 int flags = WILD_SILENT|WILD_USE_NL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011328 expand_T xpc;
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +000011329 int error = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011330
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +000011331 /* When the optional second argument is non-zero, don't remove matches
11332 * for 'wildignore' and don't put matches for 'suffixes' at the end. */
11333 if (argvars[1].v_type != VAR_UNKNOWN
11334 && get_tv_number_chk(&argvars[1], &error))
11335 flags |= WILD_KEEP_ALL;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011336 rettv->v_type = VAR_STRING;
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +000011337 if (!error)
11338 {
11339 ExpandInit(&xpc);
11340 xpc.xp_context = EXPAND_FILES;
11341 rettv->vval.v_string = ExpandOne(&xpc, get_tv_string(&argvars[0]),
11342 NULL, flags, WILD_ALL);
11343 }
11344 else
11345 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011346}
11347
11348/*
11349 * "globpath()" function
11350 */
11351 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011352f_globpath(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000011353 typval_T *argvars;
11354 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011355{
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +000011356 int flags = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011357 char_u buf1[NUMBUFLEN];
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011358 char_u *file = get_tv_string_buf_chk(&argvars[1], buf1);
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +000011359 int error = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011360
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +000011361 /* When the optional second argument is non-zero, don't remove matches
11362 * for 'wildignore' and don't put matches for 'suffixes' at the end. */
11363 if (argvars[2].v_type != VAR_UNKNOWN
11364 && get_tv_number_chk(&argvars[2], &error))
11365 flags |= WILD_KEEP_ALL;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011366 rettv->v_type = VAR_STRING;
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +000011367 if (file == NULL || error)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011368 rettv->vval.v_string = NULL;
11369 else
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +000011370 rettv->vval.v_string = globpath(get_tv_string(&argvars[0]), file,
11371 flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011372}
11373
11374/*
11375 * "has()" function
11376 */
11377 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011378f_has(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000011379 typval_T *argvars;
11380 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011381{
11382 int i;
11383 char_u *name;
11384 int n = FALSE;
11385 static char *(has_list[]) =
11386 {
11387#ifdef AMIGA
11388 "amiga",
11389# ifdef FEAT_ARP
11390 "arp",
11391# endif
11392#endif
11393#ifdef __BEOS__
11394 "beos",
11395#endif
11396#ifdef MSDOS
11397# ifdef DJGPP
11398 "dos32",
11399# else
11400 "dos16",
11401# endif
11402#endif
Bram Moolenaar241a8aa2005-12-06 20:04:44 +000011403#ifdef MACOS
Bram Moolenaar071d4272004-06-13 20:20:40 +000011404 "mac",
11405#endif
11406#if defined(MACOS_X_UNIX)
11407 "macunix",
11408#endif
11409#ifdef OS2
11410 "os2",
11411#endif
11412#ifdef __QNX__
11413 "qnx",
11414#endif
11415#ifdef RISCOS
11416 "riscos",
11417#endif
11418#ifdef UNIX
11419 "unix",
11420#endif
11421#ifdef VMS
11422 "vms",
11423#endif
11424#ifdef WIN16
11425 "win16",
11426#endif
11427#ifdef WIN32
11428 "win32",
11429#endif
11430#if defined(UNIX) && (defined(__CYGWIN32__) || defined(__CYGWIN__))
11431 "win32unix",
11432#endif
11433#ifdef WIN64
11434 "win64",
11435#endif
11436#ifdef EBCDIC
11437 "ebcdic",
11438#endif
11439#ifndef CASE_INSENSITIVE_FILENAME
11440 "fname_case",
11441#endif
11442#ifdef FEAT_ARABIC
11443 "arabic",
11444#endif
11445#ifdef FEAT_AUTOCMD
11446 "autocmd",
11447#endif
11448#ifdef FEAT_BEVAL
11449 "balloon_eval",
Bram Moolenaar342337a2005-07-21 21:11:17 +000011450# ifndef FEAT_GUI_W32 /* other GUIs always have multiline balloons */
11451 "balloon_multiline",
11452# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011453#endif
11454#if defined(SOME_BUILTIN_TCAPS) || defined(ALL_BUILTIN_TCAPS)
11455 "builtin_terms",
11456# ifdef ALL_BUILTIN_TCAPS
11457 "all_builtin_terms",
11458# endif
11459#endif
11460#ifdef FEAT_BYTEOFF
11461 "byte_offset",
11462#endif
11463#ifdef FEAT_CINDENT
11464 "cindent",
11465#endif
11466#ifdef FEAT_CLIENTSERVER
11467 "clientserver",
11468#endif
11469#ifdef FEAT_CLIPBOARD
11470 "clipboard",
11471#endif
11472#ifdef FEAT_CMDL_COMPL
11473 "cmdline_compl",
11474#endif
11475#ifdef FEAT_CMDHIST
11476 "cmdline_hist",
11477#endif
11478#ifdef FEAT_COMMENTS
11479 "comments",
11480#endif
11481#ifdef FEAT_CRYPT
11482 "cryptv",
11483#endif
11484#ifdef FEAT_CSCOPE
11485 "cscope",
11486#endif
Bram Moolenaarac6e65f2005-08-29 22:25:38 +000011487#ifdef CURSOR_SHAPE
11488 "cursorshape",
11489#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011490#ifdef DEBUG
11491 "debug",
11492#endif
11493#ifdef FEAT_CON_DIALOG
11494 "dialog_con",
11495#endif
11496#ifdef FEAT_GUI_DIALOG
11497 "dialog_gui",
11498#endif
11499#ifdef FEAT_DIFF
11500 "diff",
11501#endif
11502#ifdef FEAT_DIGRAPHS
11503 "digraphs",
11504#endif
11505#ifdef FEAT_DND
11506 "dnd",
11507#endif
11508#ifdef FEAT_EMACS_TAGS
11509 "emacs_tags",
11510#endif
11511 "eval", /* always present, of course! */
11512#ifdef FEAT_EX_EXTRA
11513 "ex_extra",
11514#endif
11515#ifdef FEAT_SEARCH_EXTRA
11516 "extra_search",
11517#endif
11518#ifdef FEAT_FKMAP
11519 "farsi",
11520#endif
11521#ifdef FEAT_SEARCHPATH
11522 "file_in_path",
11523#endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000011524#if defined(UNIX) && !defined(USE_SYSTEM)
11525 "filterpipe",
11526#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011527#ifdef FEAT_FIND_ID
11528 "find_in_path",
11529#endif
Bram Moolenaar8c8de832008-06-24 22:58:06 +000011530#ifdef FEAT_FLOAT
11531 "float",
11532#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011533#ifdef FEAT_FOLDING
11534 "folding",
11535#endif
11536#ifdef FEAT_FOOTER
11537 "footer",
11538#endif
11539#if !defined(USE_SYSTEM) && defined(UNIX)
11540 "fork",
11541#endif
11542#ifdef FEAT_GETTEXT
11543 "gettext",
11544#endif
11545#ifdef FEAT_GUI
11546 "gui",
11547#endif
11548#ifdef FEAT_GUI_ATHENA
11549# ifdef FEAT_GUI_NEXTAW
11550 "gui_neXtaw",
11551# else
11552 "gui_athena",
11553# endif
11554#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011555#ifdef FEAT_GUI_GTK
11556 "gui_gtk",
11557# ifdef HAVE_GTK2
11558 "gui_gtk2",
11559# endif
11560#endif
Bram Moolenaar7b188622007-09-25 10:51:12 +000011561#ifdef FEAT_GUI_GNOME
11562 "gui_gnome",
11563#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011564#ifdef FEAT_GUI_MAC
11565 "gui_mac",
11566#endif
11567#ifdef FEAT_GUI_MOTIF
11568 "gui_motif",
11569#endif
11570#ifdef FEAT_GUI_PHOTON
11571 "gui_photon",
11572#endif
11573#ifdef FEAT_GUI_W16
11574 "gui_win16",
11575#endif
11576#ifdef FEAT_GUI_W32
11577 "gui_win32",
11578#endif
11579#ifdef FEAT_HANGULIN
11580 "hangul_input",
11581#endif
11582#if defined(HAVE_ICONV_H) && defined(USE_ICONV)
11583 "iconv",
11584#endif
11585#ifdef FEAT_INS_EXPAND
11586 "insert_expand",
11587#endif
11588#ifdef FEAT_JUMPLIST
11589 "jumplist",
11590#endif
11591#ifdef FEAT_KEYMAP
11592 "keymap",
11593#endif
11594#ifdef FEAT_LANGMAP
11595 "langmap",
11596#endif
11597#ifdef FEAT_LIBCALL
11598 "libcall",
11599#endif
11600#ifdef FEAT_LINEBREAK
11601 "linebreak",
11602#endif
11603#ifdef FEAT_LISP
11604 "lispindent",
11605#endif
11606#ifdef FEAT_LISTCMDS
11607 "listcmds",
11608#endif
11609#ifdef FEAT_LOCALMAP
11610 "localmap",
11611#endif
11612#ifdef FEAT_MENU
11613 "menu",
11614#endif
11615#ifdef FEAT_SESSION
11616 "mksession",
11617#endif
11618#ifdef FEAT_MODIFY_FNAME
11619 "modify_fname",
11620#endif
11621#ifdef FEAT_MOUSE
11622 "mouse",
11623#endif
11624#ifdef FEAT_MOUSESHAPE
11625 "mouseshape",
11626#endif
11627#if defined(UNIX) || defined(VMS)
11628# ifdef FEAT_MOUSE_DEC
11629 "mouse_dec",
11630# endif
11631# ifdef FEAT_MOUSE_GPM
11632 "mouse_gpm",
11633# endif
11634# ifdef FEAT_MOUSE_JSB
11635 "mouse_jsbterm",
11636# endif
11637# ifdef FEAT_MOUSE_NET
11638 "mouse_netterm",
11639# endif
11640# ifdef FEAT_MOUSE_PTERM
11641 "mouse_pterm",
11642# endif
Bram Moolenaar8c8de832008-06-24 22:58:06 +000011643# ifdef FEAT_SYSMOUSE
11644 "mouse_sysmouse",
11645# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011646# ifdef FEAT_MOUSE_XTERM
11647 "mouse_xterm",
11648# endif
11649#endif
11650#ifdef FEAT_MBYTE
11651 "multi_byte",
11652#endif
11653#ifdef FEAT_MBYTE_IME
11654 "multi_byte_ime",
11655#endif
11656#ifdef FEAT_MULTI_LANG
11657 "multi_lang",
11658#endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +000011659#ifdef FEAT_MZSCHEME
Bram Moolenaar33570922005-01-25 22:26:29 +000011660#ifndef DYNAMIC_MZSCHEME
Bram Moolenaar325b7a22004-07-05 15:58:32 +000011661 "mzscheme",
11662#endif
Bram Moolenaar33570922005-01-25 22:26:29 +000011663#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011664#ifdef FEAT_OLE
11665 "ole",
11666#endif
11667#ifdef FEAT_OSFILETYPE
11668 "osfiletype",
11669#endif
11670#ifdef FEAT_PATH_EXTRA
11671 "path_extra",
11672#endif
11673#ifdef FEAT_PERL
11674#ifndef DYNAMIC_PERL
11675 "perl",
11676#endif
11677#endif
11678#ifdef FEAT_PYTHON
11679#ifndef DYNAMIC_PYTHON
11680 "python",
11681#endif
11682#endif
11683#ifdef FEAT_POSTSCRIPT
11684 "postscript",
11685#endif
11686#ifdef FEAT_PRINTER
11687 "printer",
11688#endif
Bram Moolenaar05159a02005-02-26 23:04:13 +000011689#ifdef FEAT_PROFILE
11690 "profile",
11691#endif
Bram Moolenaare580b0c2006-03-21 21:33:03 +000011692#ifdef FEAT_RELTIME
11693 "reltime",
11694#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011695#ifdef FEAT_QUICKFIX
11696 "quickfix",
11697#endif
11698#ifdef FEAT_RIGHTLEFT
11699 "rightleft",
11700#endif
11701#if defined(FEAT_RUBY) && !defined(DYNAMIC_RUBY)
11702 "ruby",
11703#endif
11704#ifdef FEAT_SCROLLBIND
11705 "scrollbind",
11706#endif
11707#ifdef FEAT_CMDL_INFO
11708 "showcmd",
11709 "cmdline_info",
11710#endif
11711#ifdef FEAT_SIGNS
11712 "signs",
11713#endif
11714#ifdef FEAT_SMARTINDENT
11715 "smartindent",
11716#endif
11717#ifdef FEAT_SNIFF
11718 "sniff",
11719#endif
11720#ifdef FEAT_STL_OPT
11721 "statusline",
11722#endif
11723#ifdef FEAT_SUN_WORKSHOP
11724 "sun_workshop",
11725#endif
11726#ifdef FEAT_NETBEANS_INTG
11727 "netbeans_intg",
11728#endif
Bram Moolenaar3c56a962006-03-12 22:19:04 +000011729#ifdef FEAT_SPELL
Bram Moolenaar0e4d8772005-06-07 21:12:49 +000011730 "spell",
11731#endif
11732#ifdef FEAT_SYN_HL
Bram Moolenaar071d4272004-06-13 20:20:40 +000011733 "syntax",
11734#endif
11735#if defined(USE_SYSTEM) || !defined(UNIX)
11736 "system",
11737#endif
11738#ifdef FEAT_TAG_BINS
11739 "tag_binary",
11740#endif
11741#ifdef FEAT_TAG_OLDSTATIC
11742 "tag_old_static",
11743#endif
11744#ifdef FEAT_TAG_ANYWHITE
11745 "tag_any_white",
11746#endif
11747#ifdef FEAT_TCL
11748# ifndef DYNAMIC_TCL
11749 "tcl",
11750# endif
11751#endif
11752#ifdef TERMINFO
11753 "terminfo",
11754#endif
11755#ifdef FEAT_TERMRESPONSE
11756 "termresponse",
11757#endif
11758#ifdef FEAT_TEXTOBJ
11759 "textobjects",
11760#endif
11761#ifdef HAVE_TGETENT
11762 "tgetent",
11763#endif
11764#ifdef FEAT_TITLE
11765 "title",
11766#endif
11767#ifdef FEAT_TOOLBAR
11768 "toolbar",
11769#endif
11770#ifdef FEAT_USR_CMDS
11771 "user-commands", /* was accidentally included in 5.4 */
11772 "user_commands",
11773#endif
11774#ifdef FEAT_VIMINFO
11775 "viminfo",
11776#endif
11777#ifdef FEAT_VERTSPLIT
11778 "vertsplit",
11779#endif
11780#ifdef FEAT_VIRTUALEDIT
11781 "virtualedit",
11782#endif
11783#ifdef FEAT_VISUAL
11784 "visual",
11785#endif
11786#ifdef FEAT_VISUALEXTRA
11787 "visualextra",
11788#endif
11789#ifdef FEAT_VREPLACE
11790 "vreplace",
11791#endif
11792#ifdef FEAT_WILDIGN
11793 "wildignore",
11794#endif
11795#ifdef FEAT_WILDMENU
11796 "wildmenu",
11797#endif
11798#ifdef FEAT_WINDOWS
11799 "windows",
11800#endif
11801#ifdef FEAT_WAK
11802 "winaltkeys",
11803#endif
11804#ifdef FEAT_WRITEBACKUP
11805 "writebackup",
11806#endif
11807#ifdef FEAT_XIM
11808 "xim",
11809#endif
11810#ifdef FEAT_XFONTSET
11811 "xfontset",
11812#endif
11813#ifdef USE_XSMP
11814 "xsmp",
11815#endif
11816#ifdef USE_XSMP_INTERACT
11817 "xsmp_interact",
11818#endif
11819#ifdef FEAT_XCLIPBOARD
11820 "xterm_clipboard",
11821#endif
11822#ifdef FEAT_XTERM_SAVE
11823 "xterm_save",
11824#endif
11825#if defined(UNIX) && defined(FEAT_X11)
11826 "X11",
11827#endif
11828 NULL
11829 };
11830
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011831 name = get_tv_string(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011832 for (i = 0; has_list[i] != NULL; ++i)
11833 if (STRICMP(name, has_list[i]) == 0)
11834 {
11835 n = TRUE;
11836 break;
11837 }
11838
11839 if (n == FALSE)
11840 {
11841 if (STRNICMP(name, "patch", 5) == 0)
11842 n = has_patch(atoi((char *)name + 5));
11843 else if (STRICMP(name, "vim_starting") == 0)
11844 n = (starting != 0);
Bram Moolenaar42022d52008-12-09 09:57:49 +000011845#ifdef FEAT_MBYTE
11846 else if (STRICMP(name, "multi_byte_encoding") == 0)
11847 n = has_mbyte;
11848#endif
Bram Moolenaar342337a2005-07-21 21:11:17 +000011849#if defined(FEAT_BEVAL) && defined(FEAT_GUI_W32)
11850 else if (STRICMP(name, "balloon_multiline") == 0)
11851 n = multiline_balloon_available();
11852#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011853#ifdef DYNAMIC_TCL
11854 else if (STRICMP(name, "tcl") == 0)
11855 n = tcl_enabled(FALSE);
11856#endif
11857#if defined(USE_ICONV) && defined(DYNAMIC_ICONV)
11858 else if (STRICMP(name, "iconv") == 0)
11859 n = iconv_enabled(FALSE);
11860#endif
Bram Moolenaar33570922005-01-25 22:26:29 +000011861#ifdef DYNAMIC_MZSCHEME
11862 else if (STRICMP(name, "mzscheme") == 0)
11863 n = mzscheme_enabled(FALSE);
11864#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011865#ifdef DYNAMIC_RUBY
11866 else if (STRICMP(name, "ruby") == 0)
11867 n = ruby_enabled(FALSE);
11868#endif
11869#ifdef DYNAMIC_PYTHON
11870 else if (STRICMP(name, "python") == 0)
11871 n = python_enabled(FALSE);
11872#endif
11873#ifdef DYNAMIC_PERL
11874 else if (STRICMP(name, "perl") == 0)
11875 n = perl_enabled(FALSE);
11876#endif
11877#ifdef FEAT_GUI
11878 else if (STRICMP(name, "gui_running") == 0)
11879 n = (gui.in_use || gui.starting);
11880# ifdef FEAT_GUI_W32
11881 else if (STRICMP(name, "gui_win32s") == 0)
11882 n = gui_is_win32s();
11883# endif
11884# ifdef FEAT_BROWSE
11885 else if (STRICMP(name, "browse") == 0)
11886 n = gui.in_use; /* gui_mch_browse() works when GUI is running */
11887# endif
11888#endif
11889#ifdef FEAT_SYN_HL
11890 else if (STRICMP(name, "syntax_items") == 0)
11891 n = syntax_present(curbuf);
11892#endif
11893#if defined(WIN3264)
11894 else if (STRICMP(name, "win95") == 0)
11895 n = mch_windows95();
11896#endif
Bram Moolenaar35a9aaa2004-10-24 19:23:07 +000011897#ifdef FEAT_NETBEANS_INTG
11898 else if (STRICMP(name, "netbeans_enabled") == 0)
11899 n = usingNetbeans;
11900#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011901 }
11902
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011903 rettv->vval.v_number = n;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011904}
11905
11906/*
Bram Moolenaare9a41262005-01-15 22:18:47 +000011907 * "has_key()" function
11908 */
11909 static void
11910f_has_key(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000011911 typval_T *argvars;
11912 typval_T *rettv;
Bram Moolenaare9a41262005-01-15 22:18:47 +000011913{
11914 rettv->vval.v_number = 0;
11915 if (argvars[0].v_type != VAR_DICT)
11916 {
11917 EMSG(_(e_dictreq));
11918 return;
11919 }
11920 if (argvars[0].vval.v_dict == NULL)
11921 return;
11922
11923 rettv->vval.v_number = dict_find(argvars[0].vval.v_dict,
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000011924 get_tv_string(&argvars[1]), -1) != NULL;
Bram Moolenaare9a41262005-01-15 22:18:47 +000011925}
11926
11927/*
Bram Moolenaard267b9c2007-04-26 15:06:45 +000011928 * "haslocaldir()" function
11929 */
11930/*ARGSUSED*/
11931 static void
11932f_haslocaldir(argvars, rettv)
11933 typval_T *argvars;
11934 typval_T *rettv;
11935{
11936 rettv->vval.v_number = (curwin->w_localdir != NULL);
11937}
11938
11939/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000011940 * "hasmapto()" function
11941 */
11942 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011943f_hasmapto(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000011944 typval_T *argvars;
11945 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011946{
11947 char_u *name;
11948 char_u *mode;
11949 char_u buf[NUMBUFLEN];
Bram Moolenaar2c932302006-03-18 21:42:09 +000011950 int abbr = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011951
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011952 name = get_tv_string(&argvars[0]);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000011953 if (argvars[1].v_type == VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000011954 mode = (char_u *)"nvo";
11955 else
Bram Moolenaar2c932302006-03-18 21:42:09 +000011956 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011957 mode = get_tv_string_buf(&argvars[1], buf);
Bram Moolenaar2c932302006-03-18 21:42:09 +000011958 if (argvars[2].v_type != VAR_UNKNOWN)
11959 abbr = get_tv_number(&argvars[2]);
11960 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000011961
Bram Moolenaar2c932302006-03-18 21:42:09 +000011962 if (map_to_exists(name, mode, abbr))
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011963 rettv->vval.v_number = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011964 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011965 rettv->vval.v_number = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011966}
11967
11968/*
11969 * "histadd()" function
11970 */
11971/*ARGSUSED*/
11972 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011973f_histadd(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000011974 typval_T *argvars;
11975 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011976{
11977#ifdef FEAT_CMDHIST
11978 int histype;
11979 char_u *str;
11980 char_u buf[NUMBUFLEN];
11981#endif
11982
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011983 rettv->vval.v_number = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011984 if (check_restricted() || check_secure())
11985 return;
11986#ifdef FEAT_CMDHIST
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011987 str = get_tv_string_chk(&argvars[0]); /* NULL on type error */
11988 histype = str != NULL ? get_histtype(str) : -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011989 if (histype >= 0)
11990 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011991 str = get_tv_string_buf(&argvars[1], buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011992 if (*str != NUL)
11993 {
11994 add_to_history(histype, str, FALSE, NUL);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011995 rettv->vval.v_number = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011996 return;
11997 }
11998 }
11999#endif
12000}
12001
12002/*
12003 * "histdel()" function
12004 */
12005/*ARGSUSED*/
12006 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012007f_histdel(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012008 typval_T *argvars;
12009 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012010{
12011#ifdef FEAT_CMDHIST
12012 int n;
12013 char_u buf[NUMBUFLEN];
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012014 char_u *str;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012015
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012016 str = get_tv_string_chk(&argvars[0]); /* NULL on type error */
12017 if (str == NULL)
12018 n = 0;
12019 else if (argvars[1].v_type == VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000012020 /* only one argument: clear entire history */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012021 n = clr_history(get_histtype(str));
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012022 else if (argvars[1].v_type == VAR_NUMBER)
Bram Moolenaar071d4272004-06-13 20:20:40 +000012023 /* index given: remove that entry */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012024 n = del_history_idx(get_histtype(str),
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012025 (int)get_tv_number(&argvars[1]));
Bram Moolenaar071d4272004-06-13 20:20:40 +000012026 else
12027 /* string given: remove all matching entries */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012028 n = del_history_entry(get_histtype(str),
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012029 get_tv_string_buf(&argvars[1], buf));
12030 rettv->vval.v_number = n;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012031#else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012032 rettv->vval.v_number = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012033#endif
12034}
12035
12036/*
12037 * "histget()" function
12038 */
12039/*ARGSUSED*/
12040 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012041f_histget(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012042 typval_T *argvars;
12043 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012044{
12045#ifdef FEAT_CMDHIST
12046 int type;
12047 int idx;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012048 char_u *str;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012049
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012050 str = get_tv_string_chk(&argvars[0]); /* NULL on type error */
12051 if (str == NULL)
12052 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012053 else
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012054 {
12055 type = get_histtype(str);
12056 if (argvars[1].v_type == VAR_UNKNOWN)
12057 idx = get_history_idx(type);
12058 else
12059 idx = (int)get_tv_number_chk(&argvars[1], NULL);
12060 /* -1 on type error */
12061 rettv->vval.v_string = vim_strsave(get_history_entry(type, idx));
12062 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000012063#else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012064 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012065#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012066 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012067}
12068
12069/*
12070 * "histnr()" function
12071 */
12072/*ARGSUSED*/
12073 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012074f_histnr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012075 typval_T *argvars;
12076 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012077{
12078 int i;
12079
12080#ifdef FEAT_CMDHIST
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012081 char_u *history = get_tv_string_chk(&argvars[0]);
12082
12083 i = history == NULL ? HIST_CMD - 1 : get_histtype(history);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012084 if (i >= HIST_CMD && i < HIST_COUNT)
12085 i = get_history_idx(i);
12086 else
12087#endif
12088 i = -1;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012089 rettv->vval.v_number = i;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012090}
12091
12092/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000012093 * "highlightID(name)" function
12094 */
12095 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012096f_hlID(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012097 typval_T *argvars;
12098 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012099{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012100 rettv->vval.v_number = syn_name2id(get_tv_string(&argvars[0]));
Bram Moolenaar071d4272004-06-13 20:20:40 +000012101}
12102
12103/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000012104 * "highlight_exists()" function
12105 */
12106 static void
12107f_hlexists(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012108 typval_T *argvars;
12109 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000012110{
12111 rettv->vval.v_number = highlight_exists(get_tv_string(&argvars[0]));
12112}
12113
12114/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000012115 * "hostname()" function
12116 */
12117/*ARGSUSED*/
12118 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012119f_hostname(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012120 typval_T *argvars;
12121 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012122{
12123 char_u hostname[256];
12124
12125 mch_get_host_name(hostname, 256);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012126 rettv->v_type = VAR_STRING;
12127 rettv->vval.v_string = vim_strsave(hostname);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012128}
12129
12130/*
12131 * iconv() function
12132 */
12133/*ARGSUSED*/
12134 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012135f_iconv(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012136 typval_T *argvars;
12137 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012138{
12139#ifdef FEAT_MBYTE
12140 char_u buf1[NUMBUFLEN];
12141 char_u buf2[NUMBUFLEN];
12142 char_u *from, *to, *str;
12143 vimconv_T vimconv;
12144#endif
12145
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012146 rettv->v_type = VAR_STRING;
12147 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012148
12149#ifdef FEAT_MBYTE
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012150 str = get_tv_string(&argvars[0]);
12151 from = enc_canonize(enc_skip(get_tv_string_buf(&argvars[1], buf1)));
12152 to = enc_canonize(enc_skip(get_tv_string_buf(&argvars[2], buf2)));
Bram Moolenaar071d4272004-06-13 20:20:40 +000012153 vimconv.vc_type = CONV_NONE;
12154 convert_setup(&vimconv, from, to);
12155
12156 /* If the encodings are equal, no conversion needed. */
12157 if (vimconv.vc_type == CONV_NONE)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012158 rettv->vval.v_string = vim_strsave(str);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012159 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012160 rettv->vval.v_string = string_convert(&vimconv, str, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012161
12162 convert_setup(&vimconv, NULL, NULL);
12163 vim_free(from);
12164 vim_free(to);
12165#endif
12166}
12167
12168/*
12169 * "indent()" function
12170 */
12171 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012172f_indent(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012173 typval_T *argvars;
12174 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012175{
12176 linenr_T lnum;
12177
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012178 lnum = get_tv_lnum(argvars);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012179 if (lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012180 rettv->vval.v_number = get_indent_lnum(lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012181 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012182 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012183}
12184
Bram Moolenaar8a283e52005-01-06 23:28:25 +000012185/*
12186 * "index()" function
12187 */
12188 static void
12189f_index(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012190 typval_T *argvars;
12191 typval_T *rettv;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000012192{
Bram Moolenaar33570922005-01-25 22:26:29 +000012193 list_T *l;
12194 listitem_T *item;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000012195 long idx = 0;
12196 int ic = FALSE;
12197
12198 rettv->vval.v_number = -1;
12199 if (argvars[0].v_type != VAR_LIST)
12200 {
12201 EMSG(_(e_listreq));
12202 return;
12203 }
12204 l = argvars[0].vval.v_list;
12205 if (l != NULL)
12206 {
Bram Moolenaar758711c2005-02-02 23:11:38 +000012207 item = l->lv_first;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000012208 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000012209 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012210 int error = FALSE;
12211
Bram Moolenaar758711c2005-02-02 23:11:38 +000012212 /* Start at specified item. Use the cached index that list_find()
12213 * sets, so that a negative number also works. */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012214 item = list_find(l, get_tv_number_chk(&argvars[2], &error));
Bram Moolenaar758711c2005-02-02 23:11:38 +000012215 idx = l->lv_idx;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000012216 if (argvars[3].v_type != VAR_UNKNOWN)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012217 ic = get_tv_number_chk(&argvars[3], &error);
12218 if (error)
12219 item = NULL;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000012220 }
Bram Moolenaar8a283e52005-01-06 23:28:25 +000012221
Bram Moolenaar758711c2005-02-02 23:11:38 +000012222 for ( ; item != NULL; item = item->li_next, ++idx)
12223 if (tv_equal(&item->li_tv, &argvars[1], ic))
Bram Moolenaar8a283e52005-01-06 23:28:25 +000012224 {
12225 rettv->vval.v_number = idx;
12226 break;
12227 }
12228 }
12229}
12230
Bram Moolenaar071d4272004-06-13 20:20:40 +000012231static int inputsecret_flag = 0;
12232
Bram Moolenaarecbaf552006-07-13 06:31:00 +000012233static void get_user_input __ARGS((typval_T *argvars, typval_T *rettv, int inputdialog));
12234
Bram Moolenaar071d4272004-06-13 20:20:40 +000012235/*
Bram Moolenaarecbaf552006-07-13 06:31:00 +000012236 * This function is used by f_input() and f_inputdialog() functions. The third
12237 * argument to f_input() specifies the type of completion to use at the
12238 * prompt. The third argument to f_inputdialog() specifies the value to return
12239 * when the user cancels the prompt.
Bram Moolenaar071d4272004-06-13 20:20:40 +000012240 */
12241 static void
Bram Moolenaarecbaf552006-07-13 06:31:00 +000012242get_user_input(argvars, rettv, inputdialog)
Bram Moolenaar33570922005-01-25 22:26:29 +000012243 typval_T *argvars;
12244 typval_T *rettv;
Bram Moolenaarecbaf552006-07-13 06:31:00 +000012245 int inputdialog;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012246{
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012247 char_u *prompt = get_tv_string_chk(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012248 char_u *p = NULL;
12249 int c;
12250 char_u buf[NUMBUFLEN];
12251 int cmd_silent_save = cmd_silent;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012252 char_u *defstr = (char_u *)"";
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000012253 int xp_type = EXPAND_NOTHING;
12254 char_u *xp_arg = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012255
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012256 rettv->v_type = VAR_STRING;
Bram Moolenaarce85c562007-09-16 12:21:16 +000012257 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012258
12259#ifdef NO_CONSOLE_INPUT
12260 /* While starting up, there is no place to enter text. */
12261 if (no_console_input())
Bram Moolenaar071d4272004-06-13 20:20:40 +000012262 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012263#endif
12264
12265 cmd_silent = FALSE; /* Want to see the prompt. */
12266 if (prompt != NULL)
12267 {
12268 /* Only the part of the message after the last NL is considered as
12269 * prompt for the command line */
12270 p = vim_strrchr(prompt, '\n');
12271 if (p == NULL)
12272 p = prompt;
12273 else
12274 {
12275 ++p;
12276 c = *p;
12277 *p = NUL;
12278 msg_start();
12279 msg_clr_eos();
12280 msg_puts_attr(prompt, echo_attr);
12281 msg_didout = FALSE;
12282 msg_starthere();
12283 *p = c;
12284 }
12285 cmdline_row = msg_row;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012286
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012287 if (argvars[1].v_type != VAR_UNKNOWN)
12288 {
12289 defstr = get_tv_string_buf_chk(&argvars[1], buf);
12290 if (defstr != NULL)
12291 stuffReadbuffSpec(defstr);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012292
Bram Moolenaarecbaf552006-07-13 06:31:00 +000012293 if (!inputdialog && argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar4463f292005-09-25 22:20:24 +000012294 {
12295 char_u *xp_name;
Bram Moolenaar86c9ee22006-05-13 11:33:27 +000012296 int xp_namelen;
Bram Moolenaar4463f292005-09-25 22:20:24 +000012297 long argt;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000012298
Bram Moolenaar4463f292005-09-25 22:20:24 +000012299 rettv->vval.v_string = NULL;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000012300
Bram Moolenaar4463f292005-09-25 22:20:24 +000012301 xp_name = get_tv_string_buf_chk(&argvars[2], buf);
12302 if (xp_name == NULL)
12303 return;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000012304
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000012305 xp_namelen = (int)STRLEN(xp_name);
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000012306
Bram Moolenaar4463f292005-09-25 22:20:24 +000012307 if (parse_compl_arg(xp_name, xp_namelen, &xp_type, &argt,
12308 &xp_arg) == FAIL)
12309 return;
12310 }
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000012311 }
12312
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012313 if (defstr != NULL)
12314 rettv->vval.v_string =
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000012315 getcmdline_prompt(inputsecret_flag ? NUL : '@', p, echo_attr,
12316 xp_type, xp_arg);
12317
12318 vim_free(xp_arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012319
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012320 /* since the user typed this, no need to wait for return */
12321 need_wait_return = FALSE;
12322 msg_didout = FALSE;
12323 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000012324 cmd_silent = cmd_silent_save;
12325}
12326
12327/*
Bram Moolenaarecbaf552006-07-13 06:31:00 +000012328 * "input()" function
12329 * Also handles inputsecret() when inputsecret is set.
12330 */
12331 static void
12332f_input(argvars, rettv)
12333 typval_T *argvars;
12334 typval_T *rettv;
12335{
12336 get_user_input(argvars, rettv, FALSE);
12337}
12338
12339/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000012340 * "inputdialog()" function
12341 */
12342 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012343f_inputdialog(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012344 typval_T *argvars;
12345 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012346{
12347#if defined(FEAT_GUI_TEXTDIALOG)
12348 /* Use a GUI dialog if the GUI is running and 'c' is not in 'guioptions' */
12349 if (gui.in_use && vim_strchr(p_go, GO_CONDIALOG) == NULL)
12350 {
12351 char_u *message;
12352 char_u buf[NUMBUFLEN];
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012353 char_u *defstr = (char_u *)"";
Bram Moolenaar071d4272004-06-13 20:20:40 +000012354
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012355 message = get_tv_string_chk(&argvars[0]);
12356 if (argvars[1].v_type != VAR_UNKNOWN
Bram Moolenaarc05f93f2006-05-02 22:09:31 +000012357 && (defstr = get_tv_string_buf_chk(&argvars[1], buf)) != NULL)
Bram Moolenaarce0842a2005-07-18 21:58:11 +000012358 vim_strncpy(IObuff, defstr, IOSIZE - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012359 else
12360 IObuff[0] = NUL;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012361 if (message != NULL && defstr != NULL
12362 && do_dialog(VIM_QUESTION, NULL, message,
12363 (char_u *)_("&OK\n&Cancel"), 1, IObuff) == 1)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012364 rettv->vval.v_string = vim_strsave(IObuff);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012365 else
12366 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012367 if (message != NULL && defstr != NULL
12368 && argvars[1].v_type != VAR_UNKNOWN
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012369 && argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012370 rettv->vval.v_string = vim_strsave(
12371 get_tv_string_buf(&argvars[2], buf));
Bram Moolenaar071d4272004-06-13 20:20:40 +000012372 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012373 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012374 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012375 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012376 }
12377 else
12378#endif
Bram Moolenaarecbaf552006-07-13 06:31:00 +000012379 get_user_input(argvars, rettv, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012380}
12381
Bram Moolenaar6efa2b32005-09-10 19:26:26 +000012382/*
12383 * "inputlist()" function
12384 */
12385 static void
12386f_inputlist(argvars, rettv)
12387 typval_T *argvars;
12388 typval_T *rettv;
12389{
12390 listitem_T *li;
12391 int selected;
12392 int mouse_used;
12393
12394 rettv->vval.v_number = 0;
12395#ifdef NO_CONSOLE_INPUT
12396 /* While starting up, there is no place to enter text. */
12397 if (no_console_input())
12398 return;
12399#endif
12400 if (argvars[0].v_type != VAR_LIST || argvars[0].vval.v_list == NULL)
12401 {
12402 EMSG2(_(e_listarg), "inputlist()");
12403 return;
12404 }
12405
12406 msg_start();
Bram Moolenaar412f7442006-07-23 19:51:57 +000012407 msg_row = Rows - 1; /* for when 'cmdheight' > 1 */
Bram Moolenaar6efa2b32005-09-10 19:26:26 +000012408 lines_left = Rows; /* avoid more prompt */
12409 msg_scroll = TRUE;
12410 msg_clr_eos();
12411
12412 for (li = argvars[0].vval.v_list->lv_first; li != NULL; li = li->li_next)
12413 {
12414 msg_puts(get_tv_string(&li->li_tv));
12415 msg_putchar('\n');
12416 }
12417
12418 /* Ask for choice. */
12419 selected = prompt_for_number(&mouse_used);
12420 if (mouse_used)
12421 selected -= lines_left;
12422
12423 rettv->vval.v_number = selected;
12424}
12425
12426
Bram Moolenaar071d4272004-06-13 20:20:40 +000012427static garray_T ga_userinput = {0, 0, sizeof(tasave_T), 4, NULL};
12428
12429/*
12430 * "inputrestore()" function
12431 */
12432/*ARGSUSED*/
12433 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012434f_inputrestore(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012435 typval_T *argvars;
12436 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012437{
12438 if (ga_userinput.ga_len > 0)
12439 {
12440 --ga_userinput.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012441 restore_typeahead((tasave_T *)(ga_userinput.ga_data)
12442 + ga_userinput.ga_len);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012443 rettv->vval.v_number = 0; /* OK */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012444 }
12445 else if (p_verbose > 1)
12446 {
Bram Moolenaar54ee7752005-05-31 22:22:17 +000012447 verb_msg((char_u *)_("called inputrestore() more often than inputsave()"));
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012448 rettv->vval.v_number = 1; /* Failed */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012449 }
12450}
12451
12452/*
12453 * "inputsave()" function
12454 */
12455/*ARGSUSED*/
12456 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012457f_inputsave(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012458 typval_T *argvars;
12459 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012460{
Bram Moolenaar8c8de832008-06-24 22:58:06 +000012461 /* Add an entry to the stack of typeahead storage. */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012462 if (ga_grow(&ga_userinput, 1) == OK)
12463 {
12464 save_typeahead((tasave_T *)(ga_userinput.ga_data)
12465 + ga_userinput.ga_len);
12466 ++ga_userinput.ga_len;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012467 rettv->vval.v_number = 0; /* OK */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012468 }
12469 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012470 rettv->vval.v_number = 1; /* Failed */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012471}
12472
12473/*
12474 * "inputsecret()" function
12475 */
12476 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012477f_inputsecret(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012478 typval_T *argvars;
12479 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012480{
12481 ++cmdline_star;
12482 ++inputsecret_flag;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012483 f_input(argvars, rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012484 --cmdline_star;
12485 --inputsecret_flag;
12486}
12487
12488/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012489 * "insert()" function
12490 */
12491 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012492f_insert(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012493 typval_T *argvars;
12494 typval_T *rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012495{
12496 long before = 0;
Bram Moolenaar33570922005-01-25 22:26:29 +000012497 listitem_T *item;
12498 list_T *l;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012499 int error = FALSE;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012500
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012501 rettv->vval.v_number = 0;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012502 if (argvars[0].v_type != VAR_LIST)
Bram Moolenaar0d660222005-01-07 21:51:51 +000012503 EMSG2(_(e_listarg), "insert()");
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012504 else if ((l = argvars[0].vval.v_list) != NULL
12505 && !tv_check_lock(l->lv_lock, (char_u *)"insert()"))
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012506 {
12507 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012508 before = get_tv_number_chk(&argvars[2], &error);
12509 if (error)
12510 return; /* type error; errmsg already given */
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012511
Bram Moolenaar758711c2005-02-02 23:11:38 +000012512 if (before == l->lv_len)
12513 item = NULL;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012514 else
12515 {
Bram Moolenaar758711c2005-02-02 23:11:38 +000012516 item = list_find(l, before);
12517 if (item == NULL)
12518 {
12519 EMSGN(_(e_listidx), before);
12520 l = NULL;
12521 }
12522 }
12523 if (l != NULL)
12524 {
Bram Moolenaar8a283e52005-01-06 23:28:25 +000012525 list_insert_tv(l, &argvars[1], item);
Bram Moolenaar8a283e52005-01-06 23:28:25 +000012526 copy_tv(&argvars[0], rettv);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012527 }
12528 }
12529}
12530
12531/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000012532 * "isdirectory()" function
12533 */
12534 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012535f_isdirectory(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012536 typval_T *argvars;
12537 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012538{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012539 rettv->vval.v_number = mch_isdir(get_tv_string(&argvars[0]));
Bram Moolenaar071d4272004-06-13 20:20:40 +000012540}
12541
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012542/*
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012543 * "islocked()" function
12544 */
12545 static void
12546f_islocked(argvars, rettv)
12547 typval_T *argvars;
12548 typval_T *rettv;
12549{
12550 lval_T lv;
12551 char_u *end;
12552 dictitem_T *di;
12553
12554 rettv->vval.v_number = -1;
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000012555 end = get_lval(get_tv_string(&argvars[0]), NULL, &lv, FALSE, FALSE, FALSE,
12556 FNE_CHECK_START);
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012557 if (end != NULL && lv.ll_name != NULL)
12558 {
12559 if (*end != NUL)
12560 EMSG(_(e_trailing));
12561 else
12562 {
12563 if (lv.ll_tv == NULL)
12564 {
12565 if (check_changedtick(lv.ll_name))
12566 rettv->vval.v_number = 1; /* always locked */
12567 else
12568 {
12569 di = find_var(lv.ll_name, NULL);
12570 if (di != NULL)
12571 {
12572 /* Consider a variable locked when:
12573 * 1. the variable itself is locked
12574 * 2. the value of the variable is locked.
12575 * 3. the List or Dict value is locked.
12576 */
12577 rettv->vval.v_number = ((di->di_flags & DI_FLAGS_LOCK)
12578 || tv_islocked(&di->di_tv));
12579 }
12580 }
12581 }
12582 else if (lv.ll_range)
Bram Moolenaar910f66f2006-04-05 20:41:53 +000012583 EMSG(_("E786: Range not allowed"));
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012584 else if (lv.ll_newkey != NULL)
12585 EMSG2(_(e_dictkey), lv.ll_newkey);
12586 else if (lv.ll_list != NULL)
12587 /* List item. */
12588 rettv->vval.v_number = tv_islocked(&lv.ll_li->li_tv);
12589 else
12590 /* Dictionary item. */
12591 rettv->vval.v_number = tv_islocked(&lv.ll_di->di_tv);
12592 }
12593 }
12594
12595 clear_lval(&lv);
12596}
12597
Bram Moolenaar33570922005-01-25 22:26:29 +000012598static void dict_list __ARGS((typval_T *argvars, typval_T *rettv, int what));
Bram Moolenaar8c711452005-01-14 21:53:12 +000012599
12600/*
12601 * Turn a dict into a list:
12602 * "what" == 0: list of keys
12603 * "what" == 1: list of values
12604 * "what" == 2: list of items
12605 */
12606 static void
12607dict_list(argvars, rettv, what)
Bram Moolenaar33570922005-01-25 22:26:29 +000012608 typval_T *argvars;
12609 typval_T *rettv;
Bram Moolenaar8c711452005-01-14 21:53:12 +000012610 int what;
12611{
Bram Moolenaar33570922005-01-25 22:26:29 +000012612 list_T *l2;
12613 dictitem_T *di;
12614 hashitem_T *hi;
12615 listitem_T *li;
12616 listitem_T *li2;
12617 dict_T *d;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012618 int todo;
Bram Moolenaar8c711452005-01-14 21:53:12 +000012619
12620 rettv->vval.v_number = 0;
12621 if (argvars[0].v_type != VAR_DICT)
12622 {
12623 EMSG(_(e_dictreq));
12624 return;
12625 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012626 if ((d = argvars[0].vval.v_dict) == NULL)
Bram Moolenaar8c711452005-01-14 21:53:12 +000012627 return;
12628
Bram Moolenaareddf53b2006-02-27 00:11:10 +000012629 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaar8c711452005-01-14 21:53:12 +000012630 return;
Bram Moolenaar8c711452005-01-14 21:53:12 +000012631
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000012632 todo = (int)d->dv_hashtab.ht_used;
Bram Moolenaar33570922005-01-25 22:26:29 +000012633 for (hi = d->dv_hashtab.ht_array; todo > 0; ++hi)
Bram Moolenaar8c711452005-01-14 21:53:12 +000012634 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012635 if (!HASHITEM_EMPTY(hi))
Bram Moolenaar8c711452005-01-14 21:53:12 +000012636 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012637 --todo;
12638 di = HI2DI(hi);
Bram Moolenaar8c711452005-01-14 21:53:12 +000012639
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012640 li = listitem_alloc();
12641 if (li == NULL)
Bram Moolenaar8c711452005-01-14 21:53:12 +000012642 break;
Bram Moolenaareddf53b2006-02-27 00:11:10 +000012643 list_append(rettv->vval.v_list, li);
Bram Moolenaar8c711452005-01-14 21:53:12 +000012644
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012645 if (what == 0)
12646 {
12647 /* keys() */
12648 li->li_tv.v_type = VAR_STRING;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012649 li->li_tv.v_lock = 0;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012650 li->li_tv.vval.v_string = vim_strsave(di->di_key);
12651 }
12652 else if (what == 1)
12653 {
12654 /* values() */
12655 copy_tv(&di->di_tv, &li->li_tv);
12656 }
12657 else
12658 {
12659 /* items() */
12660 l2 = list_alloc();
12661 li->li_tv.v_type = VAR_LIST;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012662 li->li_tv.v_lock = 0;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012663 li->li_tv.vval.v_list = l2;
12664 if (l2 == NULL)
12665 break;
12666 ++l2->lv_refcount;
12667
12668 li2 = listitem_alloc();
12669 if (li2 == NULL)
12670 break;
12671 list_append(l2, li2);
12672 li2->li_tv.v_type = VAR_STRING;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012673 li2->li_tv.v_lock = 0;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012674 li2->li_tv.vval.v_string = vim_strsave(di->di_key);
12675
12676 li2 = listitem_alloc();
12677 if (li2 == NULL)
12678 break;
12679 list_append(l2, li2);
12680 copy_tv(&di->di_tv, &li2->li_tv);
12681 }
Bram Moolenaar8c711452005-01-14 21:53:12 +000012682 }
12683 }
12684}
12685
12686/*
12687 * "items(dict)" function
12688 */
12689 static void
12690f_items(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012691 typval_T *argvars;
12692 typval_T *rettv;
Bram Moolenaar8c711452005-01-14 21:53:12 +000012693{
12694 dict_list(argvars, rettv, 2);
12695}
12696
Bram Moolenaar071d4272004-06-13 20:20:40 +000012697/*
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000012698 * "join()" function
12699 */
12700 static void
12701f_join(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012702 typval_T *argvars;
12703 typval_T *rettv;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000012704{
12705 garray_T ga;
12706 char_u *sep;
12707
12708 rettv->vval.v_number = 0;
12709 if (argvars[0].v_type != VAR_LIST)
12710 {
12711 EMSG(_(e_listreq));
12712 return;
12713 }
12714 if (argvars[0].vval.v_list == NULL)
12715 return;
12716 if (argvars[1].v_type == VAR_UNKNOWN)
12717 sep = (char_u *)" ";
12718 else
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012719 sep = get_tv_string_chk(&argvars[1]);
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000012720
12721 rettv->v_type = VAR_STRING;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012722
12723 if (sep != NULL)
12724 {
12725 ga_init2(&ga, (int)sizeof(char), 80);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +000012726 list_join(&ga, argvars[0].vval.v_list, sep, TRUE, 0);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012727 ga_append(&ga, NUL);
12728 rettv->vval.v_string = (char_u *)ga.ga_data;
12729 }
12730 else
12731 rettv->vval.v_string = NULL;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000012732}
12733
12734/*
Bram Moolenaar8c711452005-01-14 21:53:12 +000012735 * "keys()" function
12736 */
12737 static void
12738f_keys(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012739 typval_T *argvars;
12740 typval_T *rettv;
Bram Moolenaar8c711452005-01-14 21:53:12 +000012741{
12742 dict_list(argvars, rettv, 0);
12743}
12744
12745/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000012746 * "last_buffer_nr()" function.
12747 */
12748/*ARGSUSED*/
12749 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012750f_last_buffer_nr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012751 typval_T *argvars;
12752 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012753{
12754 int n = 0;
12755 buf_T *buf;
12756
12757 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
12758 if (n < buf->b_fnum)
12759 n = buf->b_fnum;
12760
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012761 rettv->vval.v_number = n;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012762}
12763
12764/*
12765 * "len()" function
12766 */
12767 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012768f_len(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012769 typval_T *argvars;
12770 typval_T *rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012771{
12772 switch (argvars[0].v_type)
12773 {
12774 case VAR_STRING:
12775 case VAR_NUMBER:
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012776 rettv->vval.v_number = (varnumber_T)STRLEN(
12777 get_tv_string(&argvars[0]));
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012778 break;
12779 case VAR_LIST:
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012780 rettv->vval.v_number = list_len(argvars[0].vval.v_list);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012781 break;
Bram Moolenaare9a41262005-01-15 22:18:47 +000012782 case VAR_DICT:
12783 rettv->vval.v_number = dict_len(argvars[0].vval.v_dict);
12784 break;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012785 default:
Bram Moolenaare49b69a2005-01-08 16:11:57 +000012786 EMSG(_("E701: Invalid type for len()"));
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012787 break;
12788 }
12789}
12790
Bram Moolenaar33570922005-01-25 22:26:29 +000012791static void libcall_common __ARGS((typval_T *argvars, typval_T *rettv, int type));
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012792
12793 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012794libcall_common(argvars, rettv, type)
Bram Moolenaar33570922005-01-25 22:26:29 +000012795 typval_T *argvars;
12796 typval_T *rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012797 int type;
12798{
12799#ifdef FEAT_LIBCALL
12800 char_u *string_in;
12801 char_u **string_result;
12802 int nr_result;
12803#endif
12804
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012805 rettv->v_type = type;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012806 if (type == VAR_NUMBER)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012807 rettv->vval.v_number = 0;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012808 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012809 rettv->vval.v_string = NULL;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012810
12811 if (check_restricted() || check_secure())
12812 return;
12813
12814#ifdef FEAT_LIBCALL
12815 /* The first two args must be strings, otherwise its meaningless */
12816 if (argvars[0].v_type == VAR_STRING && argvars[1].v_type == VAR_STRING)
12817 {
Bram Moolenaar758711c2005-02-02 23:11:38 +000012818 string_in = NULL;
12819 if (argvars[2].v_type == VAR_STRING)
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012820 string_in = argvars[2].vval.v_string;
12821 if (type == VAR_NUMBER)
12822 string_result = NULL;
12823 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012824 string_result = &rettv->vval.v_string;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012825 if (mch_libcall(argvars[0].vval.v_string,
12826 argvars[1].vval.v_string,
12827 string_in,
12828 argvars[2].vval.v_number,
12829 string_result,
12830 &nr_result) == OK
12831 && type == VAR_NUMBER)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012832 rettv->vval.v_number = nr_result;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012833 }
12834#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000012835}
12836
12837/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000012838 * "libcall()" function
12839 */
12840 static void
12841f_libcall(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012842 typval_T *argvars;
12843 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000012844{
12845 libcall_common(argvars, rettv, VAR_STRING);
12846}
12847
12848/*
12849 * "libcallnr()" function
12850 */
12851 static void
12852f_libcallnr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012853 typval_T *argvars;
12854 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000012855{
12856 libcall_common(argvars, rettv, VAR_NUMBER);
12857}
12858
12859/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000012860 * "line(string)" function
12861 */
12862 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012863f_line(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012864 typval_T *argvars;
12865 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012866{
12867 linenr_T lnum = 0;
12868 pos_T *fp;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000012869 int fnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012870
Bram Moolenaar0e34f622006-03-03 23:00:03 +000012871 fp = var2fpos(&argvars[0], TRUE, &fnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012872 if (fp != NULL)
12873 lnum = fp->lnum;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012874 rettv->vval.v_number = lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012875}
12876
12877/*
12878 * "line2byte(lnum)" function
12879 */
12880/*ARGSUSED*/
12881 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012882f_line2byte(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012883 typval_T *argvars;
12884 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012885{
12886#ifndef FEAT_BYTEOFF
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012887 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012888#else
12889 linenr_T lnum;
12890
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012891 lnum = get_tv_lnum(argvars);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012892 if (lnum < 1 || lnum > curbuf->b_ml.ml_line_count + 1)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012893 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012894 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012895 rettv->vval.v_number = ml_find_line_or_offset(curbuf, lnum, NULL);
12896 if (rettv->vval.v_number >= 0)
12897 ++rettv->vval.v_number;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012898#endif
12899}
12900
12901/*
12902 * "lispindent(lnum)" function
12903 */
12904 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012905f_lispindent(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012906 typval_T *argvars;
12907 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012908{
12909#ifdef FEAT_LISP
12910 pos_T pos;
12911 linenr_T lnum;
12912
12913 pos = curwin->w_cursor;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012914 lnum = get_tv_lnum(argvars);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012915 if (lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count)
12916 {
12917 curwin->w_cursor.lnum = lnum;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012918 rettv->vval.v_number = get_lisp_indent();
Bram Moolenaar071d4272004-06-13 20:20:40 +000012919 curwin->w_cursor = pos;
12920 }
12921 else
12922#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012923 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012924}
12925
12926/*
12927 * "localtime()" function
12928 */
12929/*ARGSUSED*/
12930 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012931f_localtime(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012932 typval_T *argvars;
12933 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012934{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012935 rettv->vval.v_number = (varnumber_T)time(NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012936}
12937
Bram Moolenaar33570922005-01-25 22:26:29 +000012938static void get_maparg __ARGS((typval_T *argvars, typval_T *rettv, int exact));
Bram Moolenaar071d4272004-06-13 20:20:40 +000012939
12940 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012941get_maparg(argvars, rettv, exact)
Bram Moolenaar33570922005-01-25 22:26:29 +000012942 typval_T *argvars;
12943 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012944 int exact;
12945{
12946 char_u *keys;
12947 char_u *which;
12948 char_u buf[NUMBUFLEN];
12949 char_u *keys_buf = NULL;
12950 char_u *rhs;
12951 int mode;
12952 garray_T ga;
Bram Moolenaar2c932302006-03-18 21:42:09 +000012953 int abbr = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012954
12955 /* return empty string for failure */
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012956 rettv->v_type = VAR_STRING;
12957 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012958
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012959 keys = get_tv_string(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012960 if (*keys == NUL)
12961 return;
12962
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012963 if (argvars[1].v_type != VAR_UNKNOWN)
Bram Moolenaar2c932302006-03-18 21:42:09 +000012964 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012965 which = get_tv_string_buf_chk(&argvars[1], buf);
Bram Moolenaar2c932302006-03-18 21:42:09 +000012966 if (argvars[2].v_type != VAR_UNKNOWN)
12967 abbr = get_tv_number(&argvars[2]);
12968 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000012969 else
12970 which = (char_u *)"";
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012971 if (which == NULL)
12972 return;
12973
Bram Moolenaar071d4272004-06-13 20:20:40 +000012974 mode = get_map_mode(&which, 0);
12975
Bram Moolenaar3fb9eda2006-05-03 21:29:58 +000012976 keys = replace_termcodes(keys, &keys_buf, TRUE, TRUE, FALSE);
Bram Moolenaar2c932302006-03-18 21:42:09 +000012977 rhs = check_map(keys, mode, exact, FALSE, abbr);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012978 vim_free(keys_buf);
12979 if (rhs != NULL)
12980 {
12981 ga_init(&ga);
12982 ga.ga_itemsize = 1;
12983 ga.ga_growsize = 40;
12984
12985 while (*rhs != NUL)
12986 ga_concat(&ga, str2special(&rhs, FALSE));
12987
12988 ga_append(&ga, NUL);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012989 rettv->vval.v_string = (char_u *)ga.ga_data;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012990 }
12991}
12992
Bram Moolenaar8c8de832008-06-24 22:58:06 +000012993#ifdef FEAT_FLOAT
12994/*
12995 * "log10()" function
12996 */
12997 static void
12998f_log10(argvars, rettv)
12999 typval_T *argvars;
13000 typval_T *rettv;
13001{
13002 float_T f;
13003
13004 rettv->v_type = VAR_FLOAT;
13005 if (get_float_arg(argvars, &f) == OK)
13006 rettv->vval.v_float = log10(f);
13007 else
13008 rettv->vval.v_float = 0.0;
13009}
13010#endif
13011
Bram Moolenaar071d4272004-06-13 20:20:40 +000013012/*
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013013 * "map()" function
13014 */
13015 static void
13016f_map(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013017 typval_T *argvars;
13018 typval_T *rettv;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013019{
13020 filter_map(argvars, rettv, TRUE);
13021}
13022
13023/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000013024 * "maparg()" function
Bram Moolenaar071d4272004-06-13 20:20:40 +000013025 */
13026 static void
Bram Moolenaar0d660222005-01-07 21:51:51 +000013027f_maparg(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013028 typval_T *argvars;
13029 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013030{
Bram Moolenaar0d660222005-01-07 21:51:51 +000013031 get_maparg(argvars, rettv, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000013032}
13033
13034/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000013035 * "mapcheck()" function
Bram Moolenaar071d4272004-06-13 20:20:40 +000013036 */
13037 static void
Bram Moolenaar0d660222005-01-07 21:51:51 +000013038f_mapcheck(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013039 typval_T *argvars;
13040 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013041{
Bram Moolenaar0d660222005-01-07 21:51:51 +000013042 get_maparg(argvars, rettv, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000013043}
13044
Bram Moolenaar33570922005-01-25 22:26:29 +000013045static void find_some_match __ARGS((typval_T *argvars, typval_T *rettv, int start));
Bram Moolenaar071d4272004-06-13 20:20:40 +000013046
13047 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013048find_some_match(argvars, rettv, type)
Bram Moolenaar33570922005-01-25 22:26:29 +000013049 typval_T *argvars;
13050 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013051 int type;
13052{
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013053 char_u *str = NULL;
13054 char_u *expr = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013055 char_u *pat;
13056 regmatch_T regmatch;
13057 char_u patbuf[NUMBUFLEN];
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013058 char_u strbuf[NUMBUFLEN];
Bram Moolenaar071d4272004-06-13 20:20:40 +000013059 char_u *save_cpo;
13060 long start = 0;
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013061 long nth = 1;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000013062 colnr_T startcol = 0;
Bram Moolenaar81bf7082005-02-12 14:31:42 +000013063 int match = 0;
Bram Moolenaar33570922005-01-25 22:26:29 +000013064 list_T *l = NULL;
13065 listitem_T *li = NULL;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013066 long idx = 0;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013067 char_u *tofree = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013068
13069 /* Make 'cpoptions' empty, the 'l' flag should not be used here. */
13070 save_cpo = p_cpo;
13071 p_cpo = (char_u *)"";
13072
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013073 rettv->vval.v_number = -1;
13074 if (type == 3)
13075 {
13076 /* return empty list when there are no matches */
Bram Moolenaareddf53b2006-02-27 00:11:10 +000013077 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013078 goto theend;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013079 }
13080 else if (type == 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +000013081 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013082 rettv->v_type = VAR_STRING;
13083 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013084 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000013085
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013086 if (argvars[0].v_type == VAR_LIST)
13087 {
13088 if ((l = argvars[0].vval.v_list) == NULL)
13089 goto theend;
13090 li = l->lv_first;
13091 }
13092 else
13093 expr = str = get_tv_string(&argvars[0]);
13094
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013095 pat = get_tv_string_buf_chk(&argvars[1], patbuf);
13096 if (pat == NULL)
13097 goto theend;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013098
Bram Moolenaar49cd9572005-01-03 21:06:01 +000013099 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000013100 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013101 int error = FALSE;
13102
13103 start = get_tv_number_chk(&argvars[2], &error);
13104 if (error)
13105 goto theend;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013106 if (l != NULL)
13107 {
13108 li = list_find(l, start);
13109 if (li == NULL)
13110 goto theend;
Bram Moolenaar758711c2005-02-02 23:11:38 +000013111 idx = l->lv_idx; /* use the cached index */
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013112 }
13113 else
13114 {
13115 if (start < 0)
13116 start = 0;
13117 if (start > (long)STRLEN(str))
13118 goto theend;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000013119 /* When "count" argument is there ignore matches before "start",
13120 * otherwise skip part of the string. Differs when pattern is "^"
13121 * or "\<". */
13122 if (argvars[3].v_type != VAR_UNKNOWN)
13123 startcol = start;
13124 else
13125 str += start;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013126 }
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013127
Bram Moolenaar49cd9572005-01-03 21:06:01 +000013128 if (argvars[3].v_type != VAR_UNKNOWN)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013129 nth = get_tv_number_chk(&argvars[3], &error);
13130 if (error)
13131 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013132 }
13133
13134 regmatch.regprog = vim_regcomp(pat, RE_MAGIC + RE_STRING);
13135 if (regmatch.regprog != NULL)
13136 {
13137 regmatch.rm_ic = p_ic;
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013138
Bram Moolenaard8e9bb22005-07-09 21:14:46 +000013139 for (;;)
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013140 {
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013141 if (l != NULL)
13142 {
13143 if (li == NULL)
13144 {
13145 match = FALSE;
13146 break;
13147 }
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013148 vim_free(tofree);
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000013149 str = echo_string(&li->li_tv, &tofree, strbuf, 0);
Bram Moolenaar81bf7082005-02-12 14:31:42 +000013150 if (str == NULL)
13151 break;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013152 }
13153
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000013154 match = vim_regexec_nl(&regmatch, str, (colnr_T)startcol);
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013155
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013156 if (match && --nth <= 0)
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013157 break;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013158 if (l == NULL && !match)
13159 break;
13160
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013161 /* Advance to just after the match. */
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013162 if (l != NULL)
13163 {
13164 li = li->li_next;
13165 ++idx;
13166 }
13167 else
13168 {
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013169#ifdef FEAT_MBYTE
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000013170 startcol = (colnr_T)(regmatch.startp[0]
13171 + (*mb_ptr2len)(regmatch.startp[0]) - str);
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013172#else
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000013173 startcol = regmatch.startp[0] + 1 - str;
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013174#endif
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013175 }
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013176 }
13177
13178 if (match)
Bram Moolenaar071d4272004-06-13 20:20:40 +000013179 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013180 if (type == 3)
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013181 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013182 int i;
13183
13184 /* return list with matched string and submatches */
13185 for (i = 0; i < NSUBEXP; ++i)
13186 {
13187 if (regmatch.endp[i] == NULL)
Bram Moolenaarf9393ef2006-04-24 19:47:27 +000013188 {
13189 if (list_append_string(rettv->vval.v_list,
13190 (char_u *)"", 0) == FAIL)
13191 break;
13192 }
13193 else if (list_append_string(rettv->vval.v_list,
Bram Moolenaar4463f292005-09-25 22:20:24 +000013194 regmatch.startp[i],
13195 (int)(regmatch.endp[i] - regmatch.startp[i]))
13196 == FAIL)
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013197 break;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013198 }
13199 }
13200 else if (type == 2)
13201 {
13202 /* return matched string */
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013203 if (l != NULL)
13204 copy_tv(&li->li_tv, rettv);
13205 else
13206 rettv->vval.v_string = vim_strnsave(regmatch.startp[0],
Bram Moolenaar071d4272004-06-13 20:20:40 +000013207 (int)(regmatch.endp[0] - regmatch.startp[0]));
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013208 }
13209 else if (l != NULL)
13210 rettv->vval.v_number = idx;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013211 else
13212 {
13213 if (type != 0)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013214 rettv->vval.v_number =
Bram Moolenaar071d4272004-06-13 20:20:40 +000013215 (varnumber_T)(regmatch.startp[0] - str);
13216 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013217 rettv->vval.v_number =
Bram Moolenaar071d4272004-06-13 20:20:40 +000013218 (varnumber_T)(regmatch.endp[0] - str);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000013219 rettv->vval.v_number += (varnumber_T)(str - expr);
Bram Moolenaar071d4272004-06-13 20:20:40 +000013220 }
13221 }
13222 vim_free(regmatch.regprog);
13223 }
13224
13225theend:
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013226 vim_free(tofree);
Bram Moolenaar071d4272004-06-13 20:20:40 +000013227 p_cpo = save_cpo;
13228}
13229
13230/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000013231 * "match()" function
13232 */
13233 static void
13234f_match(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013235 typval_T *argvars;
13236 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000013237{
13238 find_some_match(argvars, rettv, 1);
13239}
13240
13241/*
Bram Moolenaar6ee10162007-07-26 20:58:42 +000013242 * "matchadd()" function
13243 */
13244 static void
13245f_matchadd(argvars, rettv)
13246 typval_T *argvars;
13247 typval_T *rettv;
13248{
13249#ifdef FEAT_SEARCH_EXTRA
13250 char_u buf[NUMBUFLEN];
13251 char_u *grp = get_tv_string_buf_chk(&argvars[0], buf); /* group */
13252 char_u *pat = get_tv_string_buf_chk(&argvars[1], buf); /* pattern */
13253 int prio = 10; /* default priority */
13254 int id = -1;
13255 int error = FALSE;
13256
13257 rettv->vval.v_number = -1;
13258
13259 if (grp == NULL || pat == NULL)
13260 return;
13261 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar2240aeb2007-07-27 19:33:14 +000013262 {
Bram Moolenaar6ee10162007-07-26 20:58:42 +000013263 prio = get_tv_number_chk(&argvars[2], &error);
Bram Moolenaar2240aeb2007-07-27 19:33:14 +000013264 if (argvars[3].v_type != VAR_UNKNOWN)
13265 id = get_tv_number_chk(&argvars[3], &error);
13266 }
Bram Moolenaar6ee10162007-07-26 20:58:42 +000013267 if (error == TRUE)
13268 return;
13269 if (id >= 1 && id <= 3)
13270 {
13271 EMSGN("E798: ID is reserved for \":match\": %ld", id);
13272 return;
13273 }
13274
13275 rettv->vval.v_number = match_add(curwin, grp, pat, prio, id);
13276#endif
13277}
13278
13279/*
Bram Moolenaar910f66f2006-04-05 20:41:53 +000013280 * "matcharg()" function
13281 */
13282 static void
13283f_matcharg(argvars, rettv)
13284 typval_T *argvars;
13285 typval_T *rettv;
13286{
13287 if (rettv_list_alloc(rettv) == OK)
13288 {
13289#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar6ee10162007-07-26 20:58:42 +000013290 int id = get_tv_number(&argvars[0]);
13291 matchitem_T *m;
Bram Moolenaar910f66f2006-04-05 20:41:53 +000013292
Bram Moolenaar6ee10162007-07-26 20:58:42 +000013293 if (id >= 1 && id <= 3)
Bram Moolenaar910f66f2006-04-05 20:41:53 +000013294 {
Bram Moolenaar6ee10162007-07-26 20:58:42 +000013295 if ((m = (matchitem_T *)get_match(curwin, id)) != NULL)
13296 {
13297 list_append_string(rettv->vval.v_list,
13298 syn_id2name(m->hlg_id), -1);
13299 list_append_string(rettv->vval.v_list, m->pattern, -1);
13300 }
13301 else
13302 {
13303 list_append_string(rettv->vval.v_list, NUL, -1);
13304 list_append_string(rettv->vval.v_list, NUL, -1);
13305 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +000013306 }
13307#endif
13308 }
13309}
13310
13311/*
Bram Moolenaar6ee10162007-07-26 20:58:42 +000013312 * "matchdelete()" function
13313 */
13314 static void
13315f_matchdelete(argvars, rettv)
13316 typval_T *argvars;
13317 typval_T *rettv;
13318{
13319#ifdef FEAT_SEARCH_EXTRA
13320 rettv->vval.v_number = match_delete(curwin,
13321 (int)get_tv_number(&argvars[0]), TRUE);
13322#endif
13323}
13324
13325/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000013326 * "matchend()" function
13327 */
13328 static void
13329f_matchend(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013330 typval_T *argvars;
13331 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000013332{
13333 find_some_match(argvars, rettv, 0);
13334}
13335
13336/*
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013337 * "matchlist()" function
13338 */
13339 static void
13340f_matchlist(argvars, rettv)
13341 typval_T *argvars;
13342 typval_T *rettv;
13343{
13344 find_some_match(argvars, rettv, 3);
13345}
13346
13347/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000013348 * "matchstr()" function
13349 */
13350 static void
13351f_matchstr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013352 typval_T *argvars;
13353 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000013354{
13355 find_some_match(argvars, rettv, 2);
13356}
13357
Bram Moolenaar33570922005-01-25 22:26:29 +000013358static void max_min __ARGS((typval_T *argvars, typval_T *rettv, int domax));
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013359
13360 static void
13361max_min(argvars, rettv, domax)
Bram Moolenaar33570922005-01-25 22:26:29 +000013362 typval_T *argvars;
13363 typval_T *rettv;
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013364 int domax;
13365{
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013366 long n = 0;
13367 long i;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013368 int error = FALSE;
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013369
13370 if (argvars[0].v_type == VAR_LIST)
13371 {
Bram Moolenaar33570922005-01-25 22:26:29 +000013372 list_T *l;
13373 listitem_T *li;
Bram Moolenaare9a41262005-01-15 22:18:47 +000013374
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013375 l = argvars[0].vval.v_list;
13376 if (l != NULL)
13377 {
13378 li = l->lv_first;
13379 if (li != NULL)
13380 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013381 n = get_tv_number_chk(&li->li_tv, &error);
Bram Moolenaard8e9bb22005-07-09 21:14:46 +000013382 for (;;)
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013383 {
13384 li = li->li_next;
13385 if (li == NULL)
13386 break;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013387 i = get_tv_number_chk(&li->li_tv, &error);
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013388 if (domax ? i > n : i < n)
13389 n = i;
13390 }
13391 }
13392 }
13393 }
Bram Moolenaare9a41262005-01-15 22:18:47 +000013394 else if (argvars[0].v_type == VAR_DICT)
13395 {
Bram Moolenaar33570922005-01-25 22:26:29 +000013396 dict_T *d;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000013397 int first = TRUE;
Bram Moolenaar33570922005-01-25 22:26:29 +000013398 hashitem_T *hi;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000013399 int todo;
Bram Moolenaare9a41262005-01-15 22:18:47 +000013400
13401 d = argvars[0].vval.v_dict;
13402 if (d != NULL)
13403 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000013404 todo = (int)d->dv_hashtab.ht_used;
Bram Moolenaar33570922005-01-25 22:26:29 +000013405 for (hi = d->dv_hashtab.ht_array; todo > 0; ++hi)
Bram Moolenaare9a41262005-01-15 22:18:47 +000013406 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000013407 if (!HASHITEM_EMPTY(hi))
Bram Moolenaare9a41262005-01-15 22:18:47 +000013408 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000013409 --todo;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013410 i = get_tv_number_chk(&HI2DI(hi)->di_tv, &error);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000013411 if (first)
13412 {
13413 n = i;
13414 first = FALSE;
13415 }
13416 else if (domax ? i > n : i < n)
Bram Moolenaare9a41262005-01-15 22:18:47 +000013417 n = i;
13418 }
13419 }
13420 }
13421 }
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013422 else
Bram Moolenaar758711c2005-02-02 23:11:38 +000013423 EMSG(_(e_listdictarg));
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013424 rettv->vval.v_number = error ? 0 : n;
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013425}
13426
13427/*
13428 * "max()" function
13429 */
13430 static void
13431f_max(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013432 typval_T *argvars;
13433 typval_T *rettv;
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013434{
13435 max_min(argvars, rettv, TRUE);
13436}
13437
13438/*
13439 * "min()" function
13440 */
13441 static void
13442f_min(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013443 typval_T *argvars;
13444 typval_T *rettv;
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013445{
13446 max_min(argvars, rettv, FALSE);
13447}
13448
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000013449static int mkdir_recurse __ARGS((char_u *dir, int prot));
13450
13451/*
13452 * Create the directory in which "dir" is located, and higher levels when
13453 * needed.
13454 */
13455 static int
13456mkdir_recurse(dir, prot)
13457 char_u *dir;
13458 int prot;
13459{
13460 char_u *p;
13461 char_u *updir;
13462 int r = FAIL;
13463
13464 /* Get end of directory name in "dir".
13465 * We're done when it's "/" or "c:/". */
13466 p = gettail_sep(dir);
13467 if (p <= get_past_head(dir))
13468 return OK;
13469
13470 /* If the directory exists we're done. Otherwise: create it.*/
13471 updir = vim_strnsave(dir, (int)(p - dir));
13472 if (updir == NULL)
13473 return FAIL;
13474 if (mch_isdir(updir))
13475 r = OK;
13476 else if (mkdir_recurse(updir, prot) == OK)
13477 r = vim_mkdir_emsg(updir, prot);
13478 vim_free(updir);
13479 return r;
13480}
13481
13482#ifdef vim_mkdir
13483/*
13484 * "mkdir()" function
13485 */
13486 static void
13487f_mkdir(argvars, rettv)
13488 typval_T *argvars;
13489 typval_T *rettv;
13490{
13491 char_u *dir;
13492 char_u buf[NUMBUFLEN];
13493 int prot = 0755;
13494
13495 rettv->vval.v_number = FAIL;
13496 if (check_restricted() || check_secure())
13497 return;
13498
13499 dir = get_tv_string_buf(&argvars[0], buf);
13500 if (argvars[1].v_type != VAR_UNKNOWN)
13501 {
13502 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013503 prot = get_tv_number_chk(&argvars[2], NULL);
13504 if (prot != -1 && STRCMP(get_tv_string(&argvars[1]), "p") == 0)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000013505 mkdir_recurse(dir, prot);
13506 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013507 rettv->vval.v_number = prot != -1 ? vim_mkdir_emsg(dir, prot) : 0;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000013508}
13509#endif
13510
Bram Moolenaar0d660222005-01-07 21:51:51 +000013511/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000013512 * "mode()" function
13513 */
13514/*ARGSUSED*/
13515 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013516f_mode(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013517 typval_T *argvars;
13518 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013519{
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013520 char_u buf[3];
13521
13522 buf[1] = NUL;
13523 buf[2] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013524
13525#ifdef FEAT_VISUAL
13526 if (VIsual_active)
13527 {
13528 if (VIsual_select)
13529 buf[0] = VIsual_mode + 's' - 'v';
13530 else
13531 buf[0] = VIsual_mode;
13532 }
13533 else
13534#endif
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013535 if (State == HITRETURN || State == ASKMORE || State == SETWSIZE
13536 || State == CONFIRM)
13537 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000013538 buf[0] = 'r';
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013539 if (State == ASKMORE)
13540 buf[1] = 'm';
13541 else if (State == CONFIRM)
13542 buf[1] = '?';
13543 }
13544 else if (State == EXTERNCMD)
13545 buf[0] = '!';
Bram Moolenaar071d4272004-06-13 20:20:40 +000013546 else if (State & INSERT)
13547 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013548#ifdef FEAT_VREPLACE
13549 if (State & VREPLACE_FLAG)
13550 {
13551 buf[0] = 'R';
13552 buf[1] = 'v';
13553 }
13554 else
13555#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000013556 if (State & REPLACE_FLAG)
13557 buf[0] = 'R';
13558 else
13559 buf[0] = 'i';
13560 }
13561 else if (State & CMDLINE)
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013562 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000013563 buf[0] = 'c';
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013564 if (exmode_active)
13565 buf[1] = 'v';
13566 }
13567 else if (exmode_active)
13568 {
13569 buf[0] = 'c';
13570 buf[1] = 'e';
13571 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000013572 else
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013573 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000013574 buf[0] = 'n';
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013575 if (finish_op)
13576 buf[1] = 'o';
13577 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000013578
Bram Moolenaar05bb9532008-07-04 09:44:11 +000013579 /* Clear out the minor mode when the argument is not a non-zero number or
13580 * non-empty string. */
13581 if (!non_zero_arg(&argvars[0]))
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013582 buf[1] = NUL;
13583
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013584 rettv->vval.v_string = vim_strsave(buf);
13585 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013586}
13587
13588/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000013589 * "nextnonblank()" function
13590 */
13591 static void
13592f_nextnonblank(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013593 typval_T *argvars;
13594 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000013595{
13596 linenr_T lnum;
13597
13598 for (lnum = get_tv_lnum(argvars); ; ++lnum)
13599 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013600 if (lnum < 0 || lnum > curbuf->b_ml.ml_line_count)
Bram Moolenaar0d660222005-01-07 21:51:51 +000013601 {
13602 lnum = 0;
13603 break;
13604 }
13605 if (*skipwhite(ml_get(lnum)) != NUL)
13606 break;
13607 }
13608 rettv->vval.v_number = lnum;
13609}
13610
13611/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000013612 * "nr2char()" function
13613 */
13614 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013615f_nr2char(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013616 typval_T *argvars;
13617 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013618{
13619 char_u buf[NUMBUFLEN];
13620
13621#ifdef FEAT_MBYTE
13622 if (has_mbyte)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013623 buf[(*mb_char2bytes)((int)get_tv_number(&argvars[0]), buf)] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013624 else
13625#endif
13626 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013627 buf[0] = (char_u)get_tv_number(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000013628 buf[1] = NUL;
13629 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013630 rettv->v_type = VAR_STRING;
13631 rettv->vval.v_string = vim_strsave(buf);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000013632}
13633
13634/*
Bram Moolenaar910f66f2006-04-05 20:41:53 +000013635 * "pathshorten()" function
13636 */
13637 static void
13638f_pathshorten(argvars, rettv)
13639 typval_T *argvars;
13640 typval_T *rettv;
13641{
13642 char_u *p;
13643
13644 rettv->v_type = VAR_STRING;
13645 p = get_tv_string_chk(&argvars[0]);
13646 if (p == NULL)
13647 rettv->vval.v_string = NULL;
13648 else
13649 {
13650 p = vim_strsave(p);
13651 rettv->vval.v_string = p;
13652 if (p != NULL)
13653 shorten_dir(p);
13654 }
13655}
13656
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013657#ifdef FEAT_FLOAT
13658/*
13659 * "pow()" function
13660 */
13661 static void
13662f_pow(argvars, rettv)
13663 typval_T *argvars;
13664 typval_T *rettv;
13665{
13666 float_T fx, fy;
13667
13668 rettv->v_type = VAR_FLOAT;
13669 if (get_float_arg(argvars, &fx) == OK
13670 && get_float_arg(&argvars[1], &fy) == OK)
13671 rettv->vval.v_float = pow(fx, fy);
13672 else
13673 rettv->vval.v_float = 0.0;
13674}
13675#endif
13676
Bram Moolenaar910f66f2006-04-05 20:41:53 +000013677/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000013678 * "prevnonblank()" function
13679 */
13680 static void
13681f_prevnonblank(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013682 typval_T *argvars;
13683 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000013684{
13685 linenr_T lnum;
13686
13687 lnum = get_tv_lnum(argvars);
13688 if (lnum < 1 || lnum > curbuf->b_ml.ml_line_count)
13689 lnum = 0;
13690 else
13691 while (lnum >= 1 && *skipwhite(ml_get(lnum)) == NUL)
13692 --lnum;
13693 rettv->vval.v_number = lnum;
13694}
13695
Bram Moolenaara6c840d2005-08-22 22:59:46 +000013696#ifdef HAVE_STDARG_H
13697/* This dummy va_list is here because:
13698 * - passing a NULL pointer doesn't work when va_list isn't a pointer
13699 * - locally in the function results in a "used before set" warning
13700 * - using va_start() to initialize it gives "function with fixed args" error */
13701static va_list ap;
13702#endif
13703
Bram Moolenaar8c711452005-01-14 21:53:12 +000013704/*
Bram Moolenaar4be06f92005-07-29 22:36:03 +000013705 * "printf()" function
13706 */
13707 static void
13708f_printf(argvars, rettv)
13709 typval_T *argvars;
13710 typval_T *rettv;
13711{
13712 rettv->v_type = VAR_STRING;
13713 rettv->vval.v_string = NULL;
Bram Moolenaard52d9742005-08-21 22:20:28 +000013714#ifdef HAVE_STDARG_H /* only very old compilers can't do this */
Bram Moolenaar4be06f92005-07-29 22:36:03 +000013715 {
13716 char_u buf[NUMBUFLEN];
13717 int len;
13718 char_u *s;
13719 int saved_did_emsg = did_emsg;
13720 char *fmt;
13721
13722 /* Get the required length, allocate the buffer and do it for real. */
13723 did_emsg = FALSE;
13724 fmt = (char *)get_tv_string_buf(&argvars[0], buf);
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +000013725 len = vim_vsnprintf(NULL, 0, fmt, ap, argvars + 1);
Bram Moolenaar4be06f92005-07-29 22:36:03 +000013726 if (!did_emsg)
13727 {
13728 s = alloc(len + 1);
13729 if (s != NULL)
13730 {
13731 rettv->vval.v_string = s;
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +000013732 (void)vim_vsnprintf((char *)s, len + 1, fmt, ap, argvars + 1);
Bram Moolenaar4be06f92005-07-29 22:36:03 +000013733 }
13734 }
13735 did_emsg |= saved_did_emsg;
13736 }
13737#endif
13738}
13739
13740/*
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000013741 * "pumvisible()" function
13742 */
13743/*ARGSUSED*/
13744 static void
13745f_pumvisible(argvars, rettv)
13746 typval_T *argvars;
13747 typval_T *rettv;
13748{
13749 rettv->vval.v_number = 0;
13750#ifdef FEAT_INS_EXPAND
13751 if (pum_visible())
13752 rettv->vval.v_number = 1;
13753#endif
13754}
13755
13756/*
Bram Moolenaar8c711452005-01-14 21:53:12 +000013757 * "range()" function
13758 */
13759 static void
13760f_range(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013761 typval_T *argvars;
13762 typval_T *rettv;
Bram Moolenaar8c711452005-01-14 21:53:12 +000013763{
13764 long start;
13765 long end;
13766 long stride = 1;
13767 long i;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013768 int error = FALSE;
Bram Moolenaar8c711452005-01-14 21:53:12 +000013769
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013770 start = get_tv_number_chk(&argvars[0], &error);
Bram Moolenaar8c711452005-01-14 21:53:12 +000013771 if (argvars[1].v_type == VAR_UNKNOWN)
13772 {
13773 end = start - 1;
13774 start = 0;
13775 }
13776 else
13777 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013778 end = get_tv_number_chk(&argvars[1], &error);
Bram Moolenaar8c711452005-01-14 21:53:12 +000013779 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013780 stride = get_tv_number_chk(&argvars[2], &error);
Bram Moolenaar8c711452005-01-14 21:53:12 +000013781 }
13782
13783 rettv->vval.v_number = 0;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013784 if (error)
13785 return; /* type error; errmsg already given */
Bram Moolenaar8c711452005-01-14 21:53:12 +000013786 if (stride == 0)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000013787 EMSG(_("E726: Stride is zero"));
Bram Moolenaar92124a32005-06-17 22:03:40 +000013788 else if (stride > 0 ? end + 1 < start : end - 1 > start)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000013789 EMSG(_("E727: Start past end"));
Bram Moolenaar8c711452005-01-14 21:53:12 +000013790 else
13791 {
Bram Moolenaareddf53b2006-02-27 00:11:10 +000013792 if (rettv_list_alloc(rettv) == OK)
Bram Moolenaar8c711452005-01-14 21:53:12 +000013793 for (i = start; stride > 0 ? i <= end : i >= end; i += stride)
Bram Moolenaareddf53b2006-02-27 00:11:10 +000013794 if (list_append_number(rettv->vval.v_list,
13795 (varnumber_T)i) == FAIL)
Bram Moolenaar8c711452005-01-14 21:53:12 +000013796 break;
Bram Moolenaar8c711452005-01-14 21:53:12 +000013797 }
13798}
13799
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013800/*
13801 * "readfile()" function
13802 */
13803 static void
13804f_readfile(argvars, rettv)
13805 typval_T *argvars;
13806 typval_T *rettv;
13807{
13808 int binary = FALSE;
13809 char_u *fname;
13810 FILE *fd;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013811 listitem_T *li;
13812#define FREAD_SIZE 200 /* optimized for text lines */
13813 char_u buf[FREAD_SIZE];
13814 int readlen; /* size of last fread() */
13815 int buflen; /* nr of valid chars in buf[] */
13816 int filtd; /* how much in buf[] was NUL -> '\n' filtered */
13817 int tolist; /* first byte in buf[] still to be put in list */
13818 int chop; /* how many CR to chop off */
13819 char_u *prev = NULL; /* previously read bytes, if any */
13820 int prevlen = 0; /* length of "prev" if not NULL */
13821 char_u *s;
13822 int len;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000013823 long maxline = MAXLNUM;
13824 long cnt = 0;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013825
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000013826 if (argvars[1].v_type != VAR_UNKNOWN)
13827 {
13828 if (STRCMP(get_tv_string(&argvars[1]), "b") == 0)
13829 binary = TRUE;
13830 if (argvars[2].v_type != VAR_UNKNOWN)
13831 maxline = get_tv_number(&argvars[2]);
13832 }
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013833
Bram Moolenaareddf53b2006-02-27 00:11:10 +000013834 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013835 return;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013836
13837 /* Always open the file in binary mode, library functions have a mind of
13838 * their own about CR-LF conversion. */
13839 fname = get_tv_string(&argvars[0]);
13840 if (*fname == NUL || (fd = mch_fopen((char *)fname, READBIN)) == NULL)
13841 {
13842 EMSG2(_(e_notopen), *fname == NUL ? (char_u *)_("<empty>") : fname);
13843 return;
13844 }
13845
13846 filtd = 0;
Bram Moolenaarb982ca52005-03-28 21:02:15 +000013847 while (cnt < maxline || maxline < 0)
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013848 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000013849 readlen = (int)fread(buf + filtd, 1, FREAD_SIZE - filtd, fd);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013850 buflen = filtd + readlen;
13851 tolist = 0;
13852 for ( ; filtd < buflen || readlen <= 0; ++filtd)
13853 {
13854 if (buf[filtd] == '\n' || readlen <= 0)
13855 {
13856 /* Only when in binary mode add an empty list item when the
13857 * last line ends in a '\n'. */
13858 if (!binary && readlen == 0 && filtd == 0)
13859 break;
13860
13861 /* Found end-of-line or end-of-file: add a text line to the
13862 * list. */
13863 chop = 0;
13864 if (!binary)
13865 while (filtd - chop - 1 >= tolist
13866 && buf[filtd - chop - 1] == '\r')
13867 ++chop;
13868 len = filtd - tolist - chop;
13869 if (prev == NULL)
13870 s = vim_strnsave(buf + tolist, len);
13871 else
13872 {
13873 s = alloc((unsigned)(prevlen + len + 1));
13874 if (s != NULL)
13875 {
13876 mch_memmove(s, prev, prevlen);
13877 vim_free(prev);
13878 prev = NULL;
13879 mch_memmove(s + prevlen, buf + tolist, len);
13880 s[prevlen + len] = NUL;
13881 }
13882 }
13883 tolist = filtd + 1;
13884
13885 li = listitem_alloc();
13886 if (li == NULL)
13887 {
13888 vim_free(s);
13889 break;
13890 }
13891 li->li_tv.v_type = VAR_STRING;
13892 li->li_tv.v_lock = 0;
13893 li->li_tv.vval.v_string = s;
Bram Moolenaareddf53b2006-02-27 00:11:10 +000013894 list_append(rettv->vval.v_list, li);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013895
Bram Moolenaarb982ca52005-03-28 21:02:15 +000013896 if (++cnt >= maxline && maxline >= 0)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000013897 break;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013898 if (readlen <= 0)
13899 break;
13900 }
13901 else if (buf[filtd] == NUL)
13902 buf[filtd] = '\n';
13903 }
13904 if (readlen <= 0)
13905 break;
13906
13907 if (tolist == 0)
13908 {
13909 /* "buf" is full, need to move text to an allocated buffer */
13910 if (prev == NULL)
13911 {
13912 prev = vim_strnsave(buf, buflen);
13913 prevlen = buflen;
13914 }
13915 else
13916 {
13917 s = alloc((unsigned)(prevlen + buflen));
13918 if (s != NULL)
13919 {
13920 mch_memmove(s, prev, prevlen);
13921 mch_memmove(s + prevlen, buf, buflen);
13922 vim_free(prev);
13923 prev = s;
13924 prevlen += buflen;
13925 }
13926 }
13927 filtd = 0;
13928 }
13929 else
13930 {
13931 mch_memmove(buf, buf + tolist, buflen - tolist);
13932 filtd -= tolist;
13933 }
13934 }
13935
Bram Moolenaarb982ca52005-03-28 21:02:15 +000013936 /*
13937 * For a negative line count use only the lines at the end of the file,
13938 * free the rest.
13939 */
13940 if (maxline < 0)
13941 while (cnt > -maxline)
13942 {
Bram Moolenaareddf53b2006-02-27 00:11:10 +000013943 listitem_remove(rettv->vval.v_list, rettv->vval.v_list->lv_first);
Bram Moolenaarb982ca52005-03-28 21:02:15 +000013944 --cnt;
13945 }
13946
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000013947 vim_free(prev);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013948 fclose(fd);
13949}
13950
Bram Moolenaare580b0c2006-03-21 21:33:03 +000013951#if defined(FEAT_RELTIME)
13952static int list2proftime __ARGS((typval_T *arg, proftime_T *tm));
13953
13954/*
13955 * Convert a List to proftime_T.
13956 * Return FAIL when there is something wrong.
13957 */
13958 static int
13959list2proftime(arg, tm)
13960 typval_T *arg;
13961 proftime_T *tm;
13962{
13963 long n1, n2;
13964 int error = FALSE;
13965
13966 if (arg->v_type != VAR_LIST || arg->vval.v_list == NULL
13967 || arg->vval.v_list->lv_len != 2)
13968 return FAIL;
13969 n1 = list_find_nr(arg->vval.v_list, 0L, &error);
13970 n2 = list_find_nr(arg->vval.v_list, 1L, &error);
13971# ifdef WIN3264
Bram Moolenaardb552d602006-03-23 22:59:57 +000013972 tm->HighPart = n1;
13973 tm->LowPart = n2;
Bram Moolenaare580b0c2006-03-21 21:33:03 +000013974# else
13975 tm->tv_sec = n1;
13976 tm->tv_usec = n2;
13977# endif
13978 return error ? FAIL : OK;
13979}
13980#endif /* FEAT_RELTIME */
13981
13982/*
13983 * "reltime()" function
13984 */
13985 static void
13986f_reltime(argvars, rettv)
13987 typval_T *argvars;
13988 typval_T *rettv;
13989{
13990#ifdef FEAT_RELTIME
13991 proftime_T res;
13992 proftime_T start;
13993
13994 if (argvars[0].v_type == VAR_UNKNOWN)
13995 {
13996 /* No arguments: get current time. */
13997 profile_start(&res);
13998 }
13999 else if (argvars[1].v_type == VAR_UNKNOWN)
14000 {
14001 if (list2proftime(&argvars[0], &res) == FAIL)
14002 return;
14003 profile_end(&res);
14004 }
14005 else
14006 {
14007 /* Two arguments: compute the difference. */
14008 if (list2proftime(&argvars[0], &start) == FAIL
14009 || list2proftime(&argvars[1], &res) == FAIL)
14010 return;
14011 profile_sub(&res, &start);
14012 }
14013
14014 if (rettv_list_alloc(rettv) == OK)
14015 {
14016 long n1, n2;
14017
14018# ifdef WIN3264
Bram Moolenaardb552d602006-03-23 22:59:57 +000014019 n1 = res.HighPart;
14020 n2 = res.LowPart;
Bram Moolenaare580b0c2006-03-21 21:33:03 +000014021# else
14022 n1 = res.tv_sec;
14023 n2 = res.tv_usec;
14024# endif
14025 list_append_number(rettv->vval.v_list, (varnumber_T)n1);
14026 list_append_number(rettv->vval.v_list, (varnumber_T)n2);
14027 }
14028#endif
14029}
14030
14031/*
14032 * "reltimestr()" function
14033 */
14034 static void
14035f_reltimestr(argvars, rettv)
14036 typval_T *argvars;
14037 typval_T *rettv;
14038{
14039#ifdef FEAT_RELTIME
14040 proftime_T tm;
14041#endif
14042
14043 rettv->v_type = VAR_STRING;
14044 rettv->vval.v_string = NULL;
14045#ifdef FEAT_RELTIME
14046 if (list2proftime(&argvars[0], &tm) == OK)
14047 rettv->vval.v_string = vim_strsave((char_u *)profile_msg(&tm));
14048#endif
14049}
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000014050
Bram Moolenaar0d660222005-01-07 21:51:51 +000014051#if defined(FEAT_CLIENTSERVER) && defined(FEAT_X11)
14052static void make_connection __ARGS((void));
14053static int check_connection __ARGS((void));
14054
14055 static void
14056make_connection()
14057{
14058 if (X_DISPLAY == NULL
14059# ifdef FEAT_GUI
14060 && !gui.in_use
14061# endif
14062 )
14063 {
14064 x_force_connect = TRUE;
14065 setup_term_clip();
14066 x_force_connect = FALSE;
14067 }
14068}
14069
14070 static int
14071check_connection()
14072{
14073 make_connection();
14074 if (X_DISPLAY == NULL)
14075 {
14076 EMSG(_("E240: No connection to Vim server"));
14077 return FAIL;
14078 }
14079 return OK;
14080}
14081#endif
14082
14083#ifdef FEAT_CLIENTSERVER
Bram Moolenaar33570922005-01-25 22:26:29 +000014084static void remote_common __ARGS((typval_T *argvars, typval_T *rettv, int expr));
Bram Moolenaar0d660222005-01-07 21:51:51 +000014085
14086 static void
14087remote_common(argvars, rettv, expr)
Bram Moolenaar33570922005-01-25 22:26:29 +000014088 typval_T *argvars;
14089 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014090 int expr;
14091{
14092 char_u *server_name;
14093 char_u *keys;
14094 char_u *r = NULL;
14095 char_u buf[NUMBUFLEN];
14096# ifdef WIN32
14097 HWND w;
14098# else
14099 Window w;
14100# endif
14101
14102 if (check_restricted() || check_secure())
14103 return;
14104
14105# ifdef FEAT_X11
14106 if (check_connection() == FAIL)
14107 return;
14108# endif
14109
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014110 server_name = get_tv_string_chk(&argvars[0]);
14111 if (server_name == NULL)
14112 return; /* type error; errmsg already given */
Bram Moolenaar0d660222005-01-07 21:51:51 +000014113 keys = get_tv_string_buf(&argvars[1], buf);
14114# ifdef WIN32
14115 if (serverSendToVim(server_name, keys, &r, &w, expr, TRUE) < 0)
14116# else
14117 if (serverSendToVim(X_DISPLAY, server_name, keys, &r, &w, expr, 0, TRUE)
14118 < 0)
14119# endif
14120 {
14121 if (r != NULL)
14122 EMSG(r); /* sending worked but evaluation failed */
14123 else
14124 EMSG2(_("E241: Unable to send to %s"), server_name);
14125 return;
14126 }
14127
14128 rettv->vval.v_string = r;
14129
14130 if (argvars[2].v_type != VAR_UNKNOWN)
14131 {
Bram Moolenaar33570922005-01-25 22:26:29 +000014132 dictitem_T v;
Bram Moolenaar555b2802005-05-19 21:08:39 +000014133 char_u str[30];
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014134 char_u *idvar;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014135
Bram Moolenaareb3593b2006-04-22 22:33:57 +000014136 sprintf((char *)str, PRINTF_HEX_LONG_U, (long_u)w);
Bram Moolenaar33570922005-01-25 22:26:29 +000014137 v.di_tv.v_type = VAR_STRING;
14138 v.di_tv.vval.v_string = vim_strsave(str);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014139 idvar = get_tv_string_chk(&argvars[2]);
14140 if (idvar != NULL)
14141 set_var(idvar, &v.di_tv, FALSE);
Bram Moolenaar33570922005-01-25 22:26:29 +000014142 vim_free(v.di_tv.vval.v_string);
Bram Moolenaar0d660222005-01-07 21:51:51 +000014143 }
14144}
14145#endif
14146
14147/*
14148 * "remote_expr()" function
14149 */
14150/*ARGSUSED*/
14151 static void
14152f_remote_expr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000014153 typval_T *argvars;
14154 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014155{
14156 rettv->v_type = VAR_STRING;
14157 rettv->vval.v_string = NULL;
14158#ifdef FEAT_CLIENTSERVER
14159 remote_common(argvars, rettv, TRUE);
14160#endif
14161}
14162
14163/*
14164 * "remote_foreground()" function
14165 */
14166/*ARGSUSED*/
14167 static void
14168f_remote_foreground(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000014169 typval_T *argvars;
14170 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014171{
14172 rettv->vval.v_number = 0;
14173#ifdef FEAT_CLIENTSERVER
14174# ifdef WIN32
14175 /* On Win32 it's done in this application. */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014176 {
14177 char_u *server_name = get_tv_string_chk(&argvars[0]);
14178
14179 if (server_name != NULL)
14180 serverForeground(server_name);
14181 }
Bram Moolenaar0d660222005-01-07 21:51:51 +000014182# else
14183 /* Send a foreground() expression to the server. */
14184 argvars[1].v_type = VAR_STRING;
14185 argvars[1].vval.v_string = vim_strsave((char_u *)"foreground()");
14186 argvars[2].v_type = VAR_UNKNOWN;
14187 remote_common(argvars, rettv, TRUE);
14188 vim_free(argvars[1].vval.v_string);
14189# endif
14190#endif
14191}
14192
14193/*ARGSUSED*/
14194 static void
14195f_remote_peek(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000014196 typval_T *argvars;
14197 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014198{
14199#ifdef FEAT_CLIENTSERVER
Bram Moolenaar33570922005-01-25 22:26:29 +000014200 dictitem_T v;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014201 char_u *s = NULL;
14202# ifdef WIN32
Bram Moolenaareb3593b2006-04-22 22:33:57 +000014203 long_u n = 0;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014204# endif
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014205 char_u *serverid;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014206
14207 if (check_restricted() || check_secure())
14208 {
14209 rettv->vval.v_number = -1;
14210 return;
14211 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014212 serverid = get_tv_string_chk(&argvars[0]);
14213 if (serverid == NULL)
14214 {
14215 rettv->vval.v_number = -1;
14216 return; /* type error; errmsg already given */
14217 }
Bram Moolenaar0d660222005-01-07 21:51:51 +000014218# ifdef WIN32
Bram Moolenaareb3593b2006-04-22 22:33:57 +000014219 sscanf(serverid, SCANF_HEX_LONG_U, &n);
Bram Moolenaar0d660222005-01-07 21:51:51 +000014220 if (n == 0)
14221 rettv->vval.v_number = -1;
14222 else
14223 {
14224 s = serverGetReply((HWND)n, FALSE, FALSE, FALSE);
14225 rettv->vval.v_number = (s != NULL);
14226 }
14227# else
14228 rettv->vval.v_number = 0;
14229 if (check_connection() == FAIL)
14230 return;
14231
14232 rettv->vval.v_number = serverPeekReply(X_DISPLAY,
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014233 serverStrToWin(serverid), &s);
Bram Moolenaar0d660222005-01-07 21:51:51 +000014234# endif
14235
14236 if (argvars[1].v_type != VAR_UNKNOWN && rettv->vval.v_number > 0)
14237 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014238 char_u *retvar;
14239
Bram Moolenaar33570922005-01-25 22:26:29 +000014240 v.di_tv.v_type = VAR_STRING;
14241 v.di_tv.vval.v_string = vim_strsave(s);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014242 retvar = get_tv_string_chk(&argvars[1]);
14243 if (retvar != NULL)
14244 set_var(retvar, &v.di_tv, FALSE);
Bram Moolenaar33570922005-01-25 22:26:29 +000014245 vim_free(v.di_tv.vval.v_string);
Bram Moolenaar0d660222005-01-07 21:51:51 +000014246 }
14247#else
14248 rettv->vval.v_number = -1;
14249#endif
14250}
14251
14252/*ARGSUSED*/
14253 static void
14254f_remote_read(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000014255 typval_T *argvars;
14256 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014257{
14258 char_u *r = NULL;
14259
14260#ifdef FEAT_CLIENTSERVER
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014261 char_u *serverid = get_tv_string_chk(&argvars[0]);
14262
14263 if (serverid != NULL && !check_restricted() && !check_secure())
Bram Moolenaar0d660222005-01-07 21:51:51 +000014264 {
14265# ifdef WIN32
14266 /* The server's HWND is encoded in the 'id' parameter */
Bram Moolenaareb3593b2006-04-22 22:33:57 +000014267 long_u n = 0;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014268
Bram Moolenaareb3593b2006-04-22 22:33:57 +000014269 sscanf(serverid, SCANF_HEX_LONG_U, &n);
Bram Moolenaar0d660222005-01-07 21:51:51 +000014270 if (n != 0)
14271 r = serverGetReply((HWND)n, FALSE, TRUE, TRUE);
14272 if (r == NULL)
14273# else
14274 if (check_connection() == FAIL || serverReadReply(X_DISPLAY,
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014275 serverStrToWin(serverid), &r, FALSE) < 0)
Bram Moolenaar0d660222005-01-07 21:51:51 +000014276# endif
14277 EMSG(_("E277: Unable to read a server reply"));
14278 }
14279#endif
14280 rettv->v_type = VAR_STRING;
14281 rettv->vval.v_string = r;
14282}
14283
14284/*
14285 * "remote_send()" function
14286 */
14287/*ARGSUSED*/
14288 static void
14289f_remote_send(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000014290 typval_T *argvars;
14291 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014292{
14293 rettv->v_type = VAR_STRING;
14294 rettv->vval.v_string = NULL;
14295#ifdef FEAT_CLIENTSERVER
14296 remote_common(argvars, rettv, FALSE);
14297#endif
14298}
14299
14300/*
Bram Moolenaar8c711452005-01-14 21:53:12 +000014301 * "remove()" function
Bram Moolenaar49cd9572005-01-03 21:06:01 +000014302 */
14303 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014304f_remove(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000014305 typval_T *argvars;
14306 typval_T *rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000014307{
Bram Moolenaar33570922005-01-25 22:26:29 +000014308 list_T *l;
14309 listitem_T *item, *item2;
14310 listitem_T *li;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000014311 long idx;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014312 long end;
Bram Moolenaar8c711452005-01-14 21:53:12 +000014313 char_u *key;
Bram Moolenaar33570922005-01-25 22:26:29 +000014314 dict_T *d;
14315 dictitem_T *di;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000014316
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014317 rettv->vval.v_number = 0;
Bram Moolenaar8c711452005-01-14 21:53:12 +000014318 if (argvars[0].v_type == VAR_DICT)
14319 {
14320 if (argvars[2].v_type != VAR_UNKNOWN)
14321 EMSG2(_(e_toomanyarg), "remove()");
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000014322 else if ((d = argvars[0].vval.v_dict) != NULL
Bram Moolenaar9dfb0f82006-06-22 16:03:05 +000014323 && !tv_check_lock(d->dv_lock, (char_u *)"remove() argument"))
Bram Moolenaar8c711452005-01-14 21:53:12 +000014324 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014325 key = get_tv_string_chk(&argvars[1]);
14326 if (key != NULL)
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000014327 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014328 di = dict_find(d, key, -1);
14329 if (di == NULL)
14330 EMSG2(_(e_dictkey), key);
14331 else
14332 {
14333 *rettv = di->di_tv;
14334 init_tv(&di->di_tv);
14335 dictitem_remove(d, di);
14336 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000014337 }
Bram Moolenaar8c711452005-01-14 21:53:12 +000014338 }
14339 }
14340 else if (argvars[0].v_type != VAR_LIST)
14341 EMSG2(_(e_listdictarg), "remove()");
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000014342 else if ((l = argvars[0].vval.v_list) != NULL
Bram Moolenaar9dfb0f82006-06-22 16:03:05 +000014343 && !tv_check_lock(l->lv_lock, (char_u *)"remove() argument"))
Bram Moolenaar49cd9572005-01-03 21:06:01 +000014344 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014345 int error = FALSE;
14346
14347 idx = get_tv_number_chk(&argvars[1], &error);
14348 if (error)
14349 ; /* type error: do nothing, errmsg already given */
14350 else if ((item = list_find(l, idx)) == NULL)
Bram Moolenaar49cd9572005-01-03 21:06:01 +000014351 EMSGN(_(e_listidx), idx);
14352 else
14353 {
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014354 if (argvars[2].v_type == VAR_UNKNOWN)
14355 {
14356 /* Remove one item, return its value. */
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000014357 list_remove(l, item, item);
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014358 *rettv = item->li_tv;
14359 vim_free(item);
14360 }
14361 else
14362 {
14363 /* Remove range of items, return list with values. */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014364 end = get_tv_number_chk(&argvars[2], &error);
14365 if (error)
14366 ; /* type error: do nothing */
14367 else if ((item2 = list_find(l, end)) == NULL)
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014368 EMSGN(_(e_listidx), end);
14369 else
14370 {
Bram Moolenaar758711c2005-02-02 23:11:38 +000014371 int cnt = 0;
14372
14373 for (li = item; li != NULL; li = li->li_next)
14374 {
14375 ++cnt;
14376 if (li == item2)
14377 break;
14378 }
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014379 if (li == NULL) /* didn't find "item2" after "item" */
14380 EMSG(_(e_invrange));
14381 else
14382 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000014383 list_remove(l, item, item2);
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014384 if (rettv_list_alloc(rettv) == OK)
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014385 {
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014386 l = rettv->vval.v_list;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014387 l->lv_first = item;
14388 l->lv_last = item2;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014389 item->li_prev = NULL;
14390 item2->li_next = NULL;
Bram Moolenaar758711c2005-02-02 23:11:38 +000014391 l->lv_len = cnt;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014392 }
14393 }
14394 }
14395 }
Bram Moolenaar49cd9572005-01-03 21:06:01 +000014396 }
14397 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000014398}
14399
14400/*
14401 * "rename({from}, {to})" function
14402 */
14403 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014404f_rename(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000014405 typval_T *argvars;
14406 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014407{
14408 char_u buf[NUMBUFLEN];
14409
14410 if (check_restricted() || check_secure())
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014411 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014412 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014413 rettv->vval.v_number = vim_rename(get_tv_string(&argvars[0]),
14414 get_tv_string_buf(&argvars[1], buf));
Bram Moolenaar071d4272004-06-13 20:20:40 +000014415}
14416
14417/*
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014418 * "repeat()" function
14419 */
14420/*ARGSUSED*/
14421 static void
14422f_repeat(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000014423 typval_T *argvars;
14424 typval_T *rettv;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014425{
14426 char_u *p;
14427 int n;
14428 int slen;
14429 int len;
14430 char_u *r;
14431 int i;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014432
14433 n = get_tv_number(&argvars[1]);
14434 if (argvars[0].v_type == VAR_LIST)
14435 {
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014436 if (rettv_list_alloc(rettv) == OK && argvars[0].vval.v_list != NULL)
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014437 while (n-- > 0)
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014438 if (list_extend(rettv->vval.v_list,
14439 argvars[0].vval.v_list, NULL) == FAIL)
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014440 break;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014441 }
14442 else
14443 {
14444 p = get_tv_string(&argvars[0]);
14445 rettv->v_type = VAR_STRING;
14446 rettv->vval.v_string = NULL;
14447
14448 slen = (int)STRLEN(p);
14449 len = slen * n;
14450 if (len <= 0)
14451 return;
14452
14453 r = alloc(len + 1);
14454 if (r != NULL)
14455 {
14456 for (i = 0; i < n; i++)
14457 mch_memmove(r + i * slen, p, (size_t)slen);
14458 r[len] = NUL;
14459 }
14460
14461 rettv->vval.v_string = r;
14462 }
14463}
14464
14465/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000014466 * "resolve()" function
14467 */
14468 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014469f_resolve(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000014470 typval_T *argvars;
14471 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014472{
14473 char_u *p;
14474
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014475 p = get_tv_string(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014476#ifdef FEAT_SHORTCUT
14477 {
14478 char_u *v = NULL;
14479
14480 v = mch_resolve_shortcut(p);
14481 if (v != NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014482 rettv->vval.v_string = v;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014483 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014484 rettv->vval.v_string = vim_strsave(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014485 }
14486#else
14487# ifdef HAVE_READLINK
14488 {
14489 char_u buf[MAXPATHL + 1];
14490 char_u *cpy;
14491 int len;
14492 char_u *remain = NULL;
14493 char_u *q;
14494 int is_relative_to_current = FALSE;
14495 int has_trailing_pathsep = FALSE;
14496 int limit = 100;
14497
14498 p = vim_strsave(p);
14499
14500 if (p[0] == '.' && (vim_ispathsep(p[1])
14501 || (p[1] == '.' && (vim_ispathsep(p[2])))))
14502 is_relative_to_current = TRUE;
14503
14504 len = STRLEN(p);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +000014505 if (len > 0 && after_pathsep(p, p + len))
Bram Moolenaar071d4272004-06-13 20:20:40 +000014506 has_trailing_pathsep = TRUE;
14507
14508 q = getnextcomp(p);
14509 if (*q != NUL)
14510 {
14511 /* Separate the first path component in "p", and keep the
14512 * remainder (beginning with the path separator). */
14513 remain = vim_strsave(q - 1);
14514 q[-1] = NUL;
14515 }
14516
14517 for (;;)
14518 {
14519 for (;;)
14520 {
14521 len = readlink((char *)p, (char *)buf, MAXPATHL);
14522 if (len <= 0)
14523 break;
14524 buf[len] = NUL;
14525
14526 if (limit-- == 0)
14527 {
14528 vim_free(p);
14529 vim_free(remain);
14530 EMSG(_("E655: Too many symbolic links (cycle?)"));
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014531 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014532 goto fail;
14533 }
14534
14535 /* Ensure that the result will have a trailing path separator
14536 * if the argument has one. */
14537 if (remain == NULL && has_trailing_pathsep)
14538 add_pathsep(buf);
14539
14540 /* Separate the first path component in the link value and
14541 * concatenate the remainders. */
14542 q = getnextcomp(vim_ispathsep(*buf) ? buf + 1 : buf);
14543 if (*q != NUL)
14544 {
14545 if (remain == NULL)
14546 remain = vim_strsave(q - 1);
14547 else
14548 {
Bram Moolenaar900b4d72005-12-12 22:05:50 +000014549 cpy = concat_str(q - 1, remain);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014550 if (cpy != NULL)
14551 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000014552 vim_free(remain);
14553 remain = cpy;
14554 }
14555 }
14556 q[-1] = NUL;
14557 }
14558
14559 q = gettail(p);
14560 if (q > p && *q == NUL)
14561 {
14562 /* Ignore trailing path separator. */
14563 q[-1] = NUL;
14564 q = gettail(p);
14565 }
14566 if (q > p && !mch_isFullName(buf))
14567 {
14568 /* symlink is relative to directory of argument */
14569 cpy = alloc((unsigned)(STRLEN(p) + STRLEN(buf) + 1));
14570 if (cpy != NULL)
14571 {
14572 STRCPY(cpy, p);
14573 STRCPY(gettail(cpy), buf);
14574 vim_free(p);
14575 p = cpy;
14576 }
14577 }
14578 else
14579 {
14580 vim_free(p);
14581 p = vim_strsave(buf);
14582 }
14583 }
14584
14585 if (remain == NULL)
14586 break;
14587
14588 /* Append the first path component of "remain" to "p". */
14589 q = getnextcomp(remain + 1);
14590 len = q - remain - (*q != NUL);
14591 cpy = vim_strnsave(p, STRLEN(p) + len);
14592 if (cpy != NULL)
14593 {
14594 STRNCAT(cpy, remain, len);
14595 vim_free(p);
14596 p = cpy;
14597 }
14598 /* Shorten "remain". */
14599 if (*q != NUL)
Bram Moolenaar8c8de832008-06-24 22:58:06 +000014600 STRMOVE(remain, q - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014601 else
14602 {
14603 vim_free(remain);
14604 remain = NULL;
14605 }
14606 }
14607
14608 /* If the result is a relative path name, make it explicitly relative to
14609 * the current directory if and only if the argument had this form. */
14610 if (!vim_ispathsep(*p))
14611 {
14612 if (is_relative_to_current
14613 && *p != NUL
14614 && !(p[0] == '.'
14615 && (p[1] == NUL
14616 || vim_ispathsep(p[1])
14617 || (p[1] == '.'
14618 && (p[2] == NUL
14619 || vim_ispathsep(p[2]))))))
14620 {
14621 /* Prepend "./". */
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000014622 cpy = concat_str((char_u *)"./", p);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014623 if (cpy != NULL)
14624 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000014625 vim_free(p);
14626 p = cpy;
14627 }
14628 }
14629 else if (!is_relative_to_current)
14630 {
14631 /* Strip leading "./". */
14632 q = p;
14633 while (q[0] == '.' && vim_ispathsep(q[1]))
14634 q += 2;
14635 if (q > p)
Bram Moolenaar8c8de832008-06-24 22:58:06 +000014636 STRMOVE(p, p + 2);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014637 }
14638 }
14639
14640 /* Ensure that the result will have no trailing path separator
14641 * if the argument had none. But keep "/" or "//". */
14642 if (!has_trailing_pathsep)
14643 {
14644 q = p + STRLEN(p);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +000014645 if (after_pathsep(p, q))
14646 *gettail_sep(p) = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014647 }
14648
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014649 rettv->vval.v_string = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014650 }
14651# else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014652 rettv->vval.v_string = vim_strsave(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014653# endif
14654#endif
14655
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014656 simplify_filename(rettv->vval.v_string);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014657
14658#ifdef HAVE_READLINK
14659fail:
14660#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014661 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014662}
14663
14664/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000014665 * "reverse({list})" function
Bram Moolenaar071d4272004-06-13 20:20:40 +000014666 */
14667 static void
Bram Moolenaar0d660222005-01-07 21:51:51 +000014668f_reverse(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000014669 typval_T *argvars;
14670 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014671{
Bram Moolenaar33570922005-01-25 22:26:29 +000014672 list_T *l;
14673 listitem_T *li, *ni;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014674
Bram Moolenaar0d660222005-01-07 21:51:51 +000014675 rettv->vval.v_number = 0;
14676 if (argvars[0].v_type != VAR_LIST)
14677 EMSG2(_(e_listarg), "reverse()");
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000014678 else if ((l = argvars[0].vval.v_list) != NULL
14679 && !tv_check_lock(l->lv_lock, (char_u *)"reverse()"))
Bram Moolenaar0d660222005-01-07 21:51:51 +000014680 {
14681 li = l->lv_last;
Bram Moolenaar81bf7082005-02-12 14:31:42 +000014682 l->lv_first = l->lv_last = NULL;
Bram Moolenaar758711c2005-02-02 23:11:38 +000014683 l->lv_len = 0;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014684 while (li != NULL)
14685 {
14686 ni = li->li_prev;
14687 list_append(l, li);
14688 li = ni;
14689 }
14690 rettv->vval.v_list = l;
14691 rettv->v_type = VAR_LIST;
14692 ++l->lv_refcount;
Bram Moolenaar52514562008-04-01 11:12:09 +000014693 l->lv_idx = l->lv_len - l->lv_idx - 1;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014694 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000014695}
14696
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014697#define SP_NOMOVE 0x01 /* don't move cursor */
14698#define SP_REPEAT 0x02 /* repeat to find outer pair */
14699#define SP_RETCOUNT 0x04 /* return matchcount */
14700#define SP_SETPCMARK 0x08 /* set previous context mark */
14701#define SP_START 0x10 /* accept match at start position */
14702#define SP_SUBPAT 0x20 /* return nr of matching sub-pattern */
14703#define SP_END 0x40 /* leave cursor at end of match */
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014704
Bram Moolenaar33570922005-01-25 22:26:29 +000014705static int get_search_arg __ARGS((typval_T *varp, int *flagsp));
Bram Moolenaar0d660222005-01-07 21:51:51 +000014706
14707/*
14708 * Get flags for a search function.
14709 * Possibly sets "p_ws".
14710 * Returns BACKWARD, FORWARD or zero (for an error).
14711 */
14712 static int
14713get_search_arg(varp, flagsp)
Bram Moolenaar33570922005-01-25 22:26:29 +000014714 typval_T *varp;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014715 int *flagsp;
14716{
14717 int dir = FORWARD;
14718 char_u *flags;
14719 char_u nbuf[NUMBUFLEN];
14720 int mask;
14721
14722 if (varp->v_type != VAR_UNKNOWN)
14723 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014724 flags = get_tv_string_buf_chk(varp, nbuf);
14725 if (flags == NULL)
14726 return 0; /* type error; errmsg already given */
Bram Moolenaar0d660222005-01-07 21:51:51 +000014727 while (*flags != NUL)
14728 {
14729 switch (*flags)
14730 {
14731 case 'b': dir = BACKWARD; break;
14732 case 'w': p_ws = TRUE; break;
14733 case 'W': p_ws = FALSE; break;
14734 default: mask = 0;
14735 if (flagsp != NULL)
14736 switch (*flags)
14737 {
Bram Moolenaar0e34f622006-03-03 23:00:03 +000014738 case 'c': mask = SP_START; break;
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014739 case 'e': mask = SP_END; break;
14740 case 'm': mask = SP_RETCOUNT; break;
14741 case 'n': mask = SP_NOMOVE; break;
14742 case 'p': mask = SP_SUBPAT; break;
14743 case 'r': mask = SP_REPEAT; break;
14744 case 's': mask = SP_SETPCMARK; break;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014745 }
14746 if (mask == 0)
14747 {
14748 EMSG2(_(e_invarg2), flags);
14749 dir = 0;
14750 }
14751 else
14752 *flagsp |= mask;
14753 }
14754 if (dir == 0)
14755 break;
14756 ++flags;
14757 }
14758 }
14759 return dir;
14760}
14761
Bram Moolenaar071d4272004-06-13 20:20:40 +000014762/*
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014763 * Shared by search() and searchpos() functions
Bram Moolenaar071d4272004-06-13 20:20:40 +000014764 */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014765 static int
Bram Moolenaar362e1a32006-03-06 23:29:24 +000014766search_cmn(argvars, match_pos, flagsp)
Bram Moolenaar33570922005-01-25 22:26:29 +000014767 typval_T *argvars;
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014768 pos_T *match_pos;
Bram Moolenaar362e1a32006-03-06 23:29:24 +000014769 int *flagsp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014770{
Bram Moolenaar362e1a32006-03-06 23:29:24 +000014771 int flags;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014772 char_u *pat;
14773 pos_T pos;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014774 pos_T save_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014775 int save_p_ws = p_ws;
14776 int dir;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014777 int retval = 0; /* default: FAIL */
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014778 long lnum_stop = 0;
Bram Moolenaar76929292008-01-06 19:07:36 +000014779 proftime_T tm;
14780#ifdef FEAT_RELTIME
14781 long time_limit = 0;
14782#endif
Bram Moolenaar0e34f622006-03-03 23:00:03 +000014783 int options = SEARCH_KEEP;
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014784 int subpatnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014785
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014786 pat = get_tv_string(&argvars[0]);
Bram Moolenaar362e1a32006-03-06 23:29:24 +000014787 dir = get_search_arg(&argvars[1], flagsp); /* may set p_ws */
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014788 if (dir == 0)
14789 goto theend;
Bram Moolenaar362e1a32006-03-06 23:29:24 +000014790 flags = *flagsp;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000014791 if (flags & SP_START)
14792 options |= SEARCH_START;
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014793 if (flags & SP_END)
14794 options |= SEARCH_END;
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014795
Bram Moolenaar76929292008-01-06 19:07:36 +000014796 /* Optional arguments: line number to stop searching and timeout. */
14797 if (argvars[1].v_type != VAR_UNKNOWN && argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014798 {
14799 lnum_stop = get_tv_number_chk(&argvars[2], NULL);
14800 if (lnum_stop < 0)
14801 goto theend;
Bram Moolenaar76929292008-01-06 19:07:36 +000014802#ifdef FEAT_RELTIME
14803 if (argvars[3].v_type != VAR_UNKNOWN)
14804 {
14805 time_limit = get_tv_number_chk(&argvars[3], NULL);
14806 if (time_limit < 0)
14807 goto theend;
14808 }
14809#endif
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014810 }
14811
Bram Moolenaar76929292008-01-06 19:07:36 +000014812#ifdef FEAT_RELTIME
14813 /* Set the time limit, if there is one. */
14814 profile_setlimit(time_limit, &tm);
14815#endif
14816
Bram Moolenaar231334e2005-07-25 20:46:57 +000014817 /*
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014818 * This function does not accept SP_REPEAT and SP_RETCOUNT flags.
Bram Moolenaar231334e2005-07-25 20:46:57 +000014819 * Check to make sure only those flags are set.
14820 * Also, Only the SP_NOMOVE or the SP_SETPCMARK flag can be set. Both
14821 * flags cannot be set. Check for that condition also.
14822 */
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014823 if (((flags & (SP_REPEAT | SP_RETCOUNT)) != 0)
Bram Moolenaar0e34f622006-03-03 23:00:03 +000014824 || ((flags & SP_NOMOVE) && (flags & SP_SETPCMARK)))
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014825 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014826 EMSG2(_(e_invarg2), get_tv_string(&argvars[1]));
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014827 goto theend;
14828 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000014829
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014830 pos = save_cursor = curwin->w_cursor;
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014831 subpatnum = searchit(curwin, curbuf, &pos, dir, pat, 1L,
Bram Moolenaar76929292008-01-06 19:07:36 +000014832 options, RE_SEARCH, (linenr_T)lnum_stop, &tm);
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014833 if (subpatnum != FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000014834 {
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014835 if (flags & SP_SUBPAT)
14836 retval = subpatnum;
14837 else
14838 retval = pos.lnum;
Bram Moolenaar231334e2005-07-25 20:46:57 +000014839 if (flags & SP_SETPCMARK)
14840 setpcmark();
Bram Moolenaar071d4272004-06-13 20:20:40 +000014841 curwin->w_cursor = pos;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014842 if (match_pos != NULL)
14843 {
14844 /* Store the match cursor position */
14845 match_pos->lnum = pos.lnum;
14846 match_pos->col = pos.col + 1;
14847 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000014848 /* "/$" will put the cursor after the end of the line, may need to
14849 * correct that here */
14850 check_cursor();
14851 }
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014852
14853 /* If 'n' flag is used: restore cursor position. */
14854 if (flags & SP_NOMOVE)
14855 curwin->w_cursor = save_cursor;
Bram Moolenaar7a42fa32007-07-10 11:28:55 +000014856 else
14857 curwin->w_set_curswant = TRUE;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014858theend:
Bram Moolenaar071d4272004-06-13 20:20:40 +000014859 p_ws = save_p_ws;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014860
14861 return retval;
14862}
14863
Bram Moolenaar8c8de832008-06-24 22:58:06 +000014864#ifdef FEAT_FLOAT
14865/*
14866 * "round({float})" function
14867 */
14868 static void
14869f_round(argvars, rettv)
14870 typval_T *argvars;
14871 typval_T *rettv;
14872{
14873 float_T f;
14874
14875 rettv->v_type = VAR_FLOAT;
14876 if (get_float_arg(argvars, &f) == OK)
14877 /* round() is not in C90, use ceil() or floor() instead. */
14878 rettv->vval.v_float = f > 0 ? floor(f + 0.5) : ceil(f - 0.5);
14879 else
14880 rettv->vval.v_float = 0.0;
14881}
14882#endif
14883
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014884/*
14885 * "search()" function
14886 */
14887 static void
14888f_search(argvars, rettv)
14889 typval_T *argvars;
14890 typval_T *rettv;
14891{
Bram Moolenaar362e1a32006-03-06 23:29:24 +000014892 int flags = 0;
14893
14894 rettv->vval.v_number = search_cmn(argvars, NULL, &flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014895}
14896
Bram Moolenaar071d4272004-06-13 20:20:40 +000014897/*
Bram Moolenaardd2436f2005-09-05 22:14:46 +000014898 * "searchdecl()" function
14899 */
14900 static void
14901f_searchdecl(argvars, rettv)
14902 typval_T *argvars;
14903 typval_T *rettv;
14904{
14905 int locally = 1;
Bram Moolenaare6facf92005-09-13 21:22:27 +000014906 int thisblock = 0;
Bram Moolenaardd2436f2005-09-05 22:14:46 +000014907 int error = FALSE;
14908 char_u *name;
14909
14910 rettv->vval.v_number = 1; /* default: FAIL */
14911
14912 name = get_tv_string_chk(&argvars[0]);
14913 if (argvars[1].v_type != VAR_UNKNOWN)
Bram Moolenaare6facf92005-09-13 21:22:27 +000014914 {
Bram Moolenaardd2436f2005-09-05 22:14:46 +000014915 locally = get_tv_number_chk(&argvars[1], &error) == 0;
Bram Moolenaare6facf92005-09-13 21:22:27 +000014916 if (!error && argvars[2].v_type != VAR_UNKNOWN)
14917 thisblock = get_tv_number_chk(&argvars[2], &error) != 0;
14918 }
Bram Moolenaardd2436f2005-09-05 22:14:46 +000014919 if (!error && name != NULL)
14920 rettv->vval.v_number = find_decl(name, (int)STRLEN(name),
Bram Moolenaare6facf92005-09-13 21:22:27 +000014921 locally, thisblock, SEARCH_KEEP) == FAIL;
Bram Moolenaardd2436f2005-09-05 22:14:46 +000014922}
14923
14924/*
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014925 * Used by searchpair() and searchpairpos()
Bram Moolenaar071d4272004-06-13 20:20:40 +000014926 */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014927 static int
14928searchpair_cmn(argvars, match_pos)
Bram Moolenaar33570922005-01-25 22:26:29 +000014929 typval_T *argvars;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014930 pos_T *match_pos;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014931{
14932 char_u *spat, *mpat, *epat;
14933 char_u *skip;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014934 int save_p_ws = p_ws;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014935 int dir;
14936 int flags = 0;
14937 char_u nbuf1[NUMBUFLEN];
14938 char_u nbuf2[NUMBUFLEN];
14939 char_u nbuf3[NUMBUFLEN];
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014940 int retval = 0; /* default: FAIL */
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014941 long lnum_stop = 0;
Bram Moolenaar76929292008-01-06 19:07:36 +000014942 long time_limit = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014943
Bram Moolenaar071d4272004-06-13 20:20:40 +000014944 /* Get the three pattern arguments: start, middle, end. */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014945 spat = get_tv_string_chk(&argvars[0]);
14946 mpat = get_tv_string_buf_chk(&argvars[1], nbuf1);
14947 epat = get_tv_string_buf_chk(&argvars[2], nbuf2);
14948 if (spat == NULL || mpat == NULL || epat == NULL)
14949 goto theend; /* type error */
Bram Moolenaar071d4272004-06-13 20:20:40 +000014950
Bram Moolenaar071d4272004-06-13 20:20:40 +000014951 /* Handle the optional fourth argument: flags */
14952 dir = get_search_arg(&argvars[3], &flags); /* may set p_ws */
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014953 if (dir == 0)
14954 goto theend;
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014955
14956 /* Don't accept SP_END or SP_SUBPAT.
Bram Moolenaar231334e2005-07-25 20:46:57 +000014957 * Only one of the SP_NOMOVE or SP_SETPCMARK flags can be set.
14958 */
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014959 if ((flags & (SP_END | SP_SUBPAT)) != 0
14960 || ((flags & SP_NOMOVE) && (flags & SP_SETPCMARK)))
Bram Moolenaar231334e2005-07-25 20:46:57 +000014961 {
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014962 EMSG2(_(e_invarg2), get_tv_string(&argvars[3]));
Bram Moolenaar231334e2005-07-25 20:46:57 +000014963 goto theend;
14964 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000014965
Bram Moolenaar92de73d2008-01-22 10:59:38 +000014966 /* Using 'r' implies 'W', otherwise it doesn't work. */
14967 if (flags & SP_REPEAT)
14968 p_ws = FALSE;
14969
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014970 /* Optional fifth argument: skip expression */
Bram Moolenaar49cd9572005-01-03 21:06:01 +000014971 if (argvars[3].v_type == VAR_UNKNOWN
14972 || argvars[4].v_type == VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000014973 skip = (char_u *)"";
14974 else
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014975 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014976 skip = get_tv_string_buf_chk(&argvars[4], nbuf3);
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014977 if (argvars[5].v_type != VAR_UNKNOWN)
14978 {
14979 lnum_stop = get_tv_number_chk(&argvars[5], NULL);
14980 if (lnum_stop < 0)
14981 goto theend;
Bram Moolenaar76929292008-01-06 19:07:36 +000014982#ifdef FEAT_RELTIME
14983 if (argvars[6].v_type != VAR_UNKNOWN)
14984 {
14985 time_limit = get_tv_number_chk(&argvars[6], NULL);
14986 if (time_limit < 0)
14987 goto theend;
14988 }
14989#endif
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014990 }
14991 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014992 if (skip == NULL)
14993 goto theend; /* type error */
Bram Moolenaar071d4272004-06-13 20:20:40 +000014994
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014995 retval = do_searchpair(spat, mpat, epat, dir, skip, flags,
Bram Moolenaar76929292008-01-06 19:07:36 +000014996 match_pos, lnum_stop, time_limit);
Bram Moolenaar9fad3082005-07-19 22:22:13 +000014997
14998theend:
14999 p_ws = save_p_ws;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015000
15001 return retval;
15002}
15003
15004/*
15005 * "searchpair()" function
15006 */
15007 static void
15008f_searchpair(argvars, rettv)
15009 typval_T *argvars;
15010 typval_T *rettv;
15011{
15012 rettv->vval.v_number = searchpair_cmn(argvars, NULL);
15013}
15014
15015/*
15016 * "searchpairpos()" function
15017 */
15018 static void
15019f_searchpairpos(argvars, rettv)
15020 typval_T *argvars;
15021 typval_T *rettv;
15022{
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015023 pos_T match_pos;
15024 int lnum = 0;
15025 int col = 0;
15026
15027 rettv->vval.v_number = 0;
15028
Bram Moolenaareddf53b2006-02-27 00:11:10 +000015029 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015030 return;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015031
15032 if (searchpair_cmn(argvars, &match_pos) > 0)
15033 {
15034 lnum = match_pos.lnum;
15035 col = match_pos.col;
15036 }
15037
Bram Moolenaareddf53b2006-02-27 00:11:10 +000015038 list_append_number(rettv->vval.v_list, (varnumber_T)lnum);
15039 list_append_number(rettv->vval.v_list, (varnumber_T)col);
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015040}
15041
15042/*
15043 * Search for a start/middle/end thing.
15044 * Used by searchpair(), see its documentation for the details.
15045 * Returns 0 or -1 for no match,
15046 */
15047 long
Bram Moolenaar76929292008-01-06 19:07:36 +000015048do_searchpair(spat, mpat, epat, dir, skip, flags, match_pos,
15049 lnum_stop, time_limit)
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015050 char_u *spat; /* start pattern */
15051 char_u *mpat; /* middle pattern */
15052 char_u *epat; /* end pattern */
15053 int dir; /* BACKWARD or FORWARD */
15054 char_u *skip; /* skip expression */
Bram Moolenaar768b8c42006-03-04 21:58:33 +000015055 int flags; /* SP_SETPCMARK and other SP_ values */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015056 pos_T *match_pos;
Bram Moolenaareddf53b2006-02-27 00:11:10 +000015057 linenr_T lnum_stop; /* stop at this line if not zero */
Bram Moolenaar76929292008-01-06 19:07:36 +000015058 long time_limit; /* stop after this many msec */
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015059{
15060 char_u *save_cpo;
15061 char_u *pat, *pat2 = NULL, *pat3 = NULL;
15062 long retval = 0;
15063 pos_T pos;
15064 pos_T firstpos;
15065 pos_T foundpos;
15066 pos_T save_cursor;
15067 pos_T save_pos;
15068 int n;
15069 int r;
15070 int nest = 1;
15071 int err;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015072 int options = SEARCH_KEEP;
Bram Moolenaar76929292008-01-06 19:07:36 +000015073 proftime_T tm;
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015074
15075 /* Make 'cpoptions' empty, the 'l' flag should not be used here. */
15076 save_cpo = p_cpo;
Bram Moolenaar9c24ccc2008-07-14 21:05:15 +000015077 p_cpo = empty_option;
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015078
Bram Moolenaar76929292008-01-06 19:07:36 +000015079#ifdef FEAT_RELTIME
15080 /* Set the time limit, if there is one. */
15081 profile_setlimit(time_limit, &tm);
15082#endif
15083
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015084 /* Make two search patterns: start/end (pat2, for in nested pairs) and
15085 * start/middle/end (pat3, for the top pair). */
15086 pat2 = alloc((unsigned)(STRLEN(spat) + STRLEN(epat) + 15));
15087 pat3 = alloc((unsigned)(STRLEN(spat) + STRLEN(mpat) + STRLEN(epat) + 23));
15088 if (pat2 == NULL || pat3 == NULL)
15089 goto theend;
15090 sprintf((char *)pat2, "\\(%s\\m\\)\\|\\(%s\\m\\)", spat, epat);
15091 if (*mpat == NUL)
15092 STRCPY(pat3, pat2);
15093 else
15094 sprintf((char *)pat3, "\\(%s\\m\\)\\|\\(%s\\m\\)\\|\\(%s\\m\\)",
15095 spat, epat, mpat);
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015096 if (flags & SP_START)
15097 options |= SEARCH_START;
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015098
Bram Moolenaar071d4272004-06-13 20:20:40 +000015099 save_cursor = curwin->w_cursor;
15100 pos = curwin->w_cursor;
Bram Moolenaar261bfea2006-03-01 22:12:31 +000015101 clearpos(&firstpos);
15102 clearpos(&foundpos);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015103 pat = pat3;
15104 for (;;)
15105 {
15106 n = searchit(curwin, curbuf, &pos, dir, pat, 1L,
Bram Moolenaar76929292008-01-06 19:07:36 +000015107 options, RE_SEARCH, lnum_stop, &tm);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015108 if (n == FAIL || (firstpos.lnum != 0 && equalpos(pos, firstpos)))
15109 /* didn't find it or found the first match again: FAIL */
15110 break;
15111
15112 if (firstpos.lnum == 0)
15113 firstpos = pos;
Bram Moolenaarc9a2d2e2005-04-24 22:09:56 +000015114 if (equalpos(pos, foundpos))
15115 {
15116 /* Found the same position again. Can happen with a pattern that
15117 * has "\zs" at the end and searching backwards. Advance one
15118 * character and try again. */
15119 if (dir == BACKWARD)
15120 decl(&pos);
15121 else
15122 incl(&pos);
15123 }
15124 foundpos = pos;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015125
Bram Moolenaar92de73d2008-01-22 10:59:38 +000015126 /* clear the start flag to avoid getting stuck here */
15127 options &= ~SEARCH_START;
15128
Bram Moolenaar071d4272004-06-13 20:20:40 +000015129 /* If the skip pattern matches, ignore this match. */
15130 if (*skip != NUL)
15131 {
15132 save_pos = curwin->w_cursor;
15133 curwin->w_cursor = pos;
15134 r = eval_to_bool(skip, &err, NULL, FALSE);
15135 curwin->w_cursor = save_pos;
15136 if (err)
15137 {
15138 /* Evaluating {skip} caused an error, break here. */
15139 curwin->w_cursor = save_cursor;
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015140 retval = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015141 break;
15142 }
15143 if (r)
15144 continue;
15145 }
15146
15147 if ((dir == BACKWARD && n == 3) || (dir == FORWARD && n == 2))
15148 {
15149 /* Found end when searching backwards or start when searching
15150 * forward: nested pair. */
15151 ++nest;
15152 pat = pat2; /* nested, don't search for middle */
15153 }
15154 else
15155 {
15156 /* Found end when searching forward or start when searching
15157 * backward: end of (nested) pair; or found middle in outer pair. */
15158 if (--nest == 1)
15159 pat = pat3; /* outer level, search for middle */
15160 }
15161
15162 if (nest == 0)
15163 {
15164 /* Found the match: return matchcount or line number. */
15165 if (flags & SP_RETCOUNT)
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015166 ++retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015167 else
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015168 retval = pos.lnum;
Bram Moolenaar231334e2005-07-25 20:46:57 +000015169 if (flags & SP_SETPCMARK)
15170 setpcmark();
Bram Moolenaar071d4272004-06-13 20:20:40 +000015171 curwin->w_cursor = pos;
15172 if (!(flags & SP_REPEAT))
15173 break;
15174 nest = 1; /* search for next unmatched */
15175 }
15176 }
15177
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015178 if (match_pos != NULL)
15179 {
15180 /* Store the match cursor position */
15181 match_pos->lnum = curwin->w_cursor.lnum;
15182 match_pos->col = curwin->w_cursor.col + 1;
15183 }
15184
Bram Moolenaar071d4272004-06-13 20:20:40 +000015185 /* If 'n' flag is used or search failed: restore cursor position. */
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015186 if ((flags & SP_NOMOVE) || retval == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000015187 curwin->w_cursor = save_cursor;
15188
15189theend:
15190 vim_free(pat2);
15191 vim_free(pat3);
Bram Moolenaar9c24ccc2008-07-14 21:05:15 +000015192 if (p_cpo == empty_option)
15193 p_cpo = save_cpo;
15194 else
15195 /* Darn, evaluating the {skip} expression changed the value. */
15196 free_string_option(save_cpo);
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015197
15198 return retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015199}
15200
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015201/*
15202 * "searchpos()" function
15203 */
15204 static void
15205f_searchpos(argvars, rettv)
15206 typval_T *argvars;
15207 typval_T *rettv;
15208{
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015209 pos_T match_pos;
15210 int lnum = 0;
15211 int col = 0;
Bram Moolenaar362e1a32006-03-06 23:29:24 +000015212 int n;
15213 int flags = 0;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015214
15215 rettv->vval.v_number = 0;
15216
Bram Moolenaareddf53b2006-02-27 00:11:10 +000015217 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015218 return;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015219
Bram Moolenaar362e1a32006-03-06 23:29:24 +000015220 n = search_cmn(argvars, &match_pos, &flags);
15221 if (n > 0)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015222 {
15223 lnum = match_pos.lnum;
15224 col = match_pos.col;
15225 }
15226
Bram Moolenaareddf53b2006-02-27 00:11:10 +000015227 list_append_number(rettv->vval.v_list, (varnumber_T)lnum);
15228 list_append_number(rettv->vval.v_list, (varnumber_T)col);
Bram Moolenaar362e1a32006-03-06 23:29:24 +000015229 if (flags & SP_SUBPAT)
15230 list_append_number(rettv->vval.v_list, (varnumber_T)n);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015231}
15232
15233
Bram Moolenaar0d660222005-01-07 21:51:51 +000015234/*ARGSUSED*/
15235 static void
15236f_server2client(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000015237 typval_T *argvars;
15238 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015239{
Bram Moolenaar0d660222005-01-07 21:51:51 +000015240#ifdef FEAT_CLIENTSERVER
15241 char_u buf[NUMBUFLEN];
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015242 char_u *server = get_tv_string_chk(&argvars[0]);
15243 char_u *reply = get_tv_string_buf_chk(&argvars[1], buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015244
Bram Moolenaar0d660222005-01-07 21:51:51 +000015245 rettv->vval.v_number = -1;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015246 if (server == NULL || reply == NULL)
15247 return;
Bram Moolenaar0d660222005-01-07 21:51:51 +000015248 if (check_restricted() || check_secure())
15249 return;
15250# ifdef FEAT_X11
15251 if (check_connection() == FAIL)
15252 return;
15253# endif
15254
15255 if (serverSendReply(server, reply) < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000015256 {
Bram Moolenaar0d660222005-01-07 21:51:51 +000015257 EMSG(_("E258: Unable to send to client"));
15258 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015259 }
Bram Moolenaar0d660222005-01-07 21:51:51 +000015260 rettv->vval.v_number = 0;
15261#else
15262 rettv->vval.v_number = -1;
15263#endif
15264}
15265
15266/*ARGSUSED*/
15267 static void
15268f_serverlist(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000015269 typval_T *argvars;
15270 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000015271{
15272 char_u *r = NULL;
15273
15274#ifdef FEAT_CLIENTSERVER
15275# ifdef WIN32
15276 r = serverGetVimNames();
15277# else
15278 make_connection();
15279 if (X_DISPLAY != NULL)
15280 r = serverGetVimNames(X_DISPLAY);
15281# endif
15282#endif
15283 rettv->v_type = VAR_STRING;
15284 rettv->vval.v_string = r;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015285}
15286
15287/*
15288 * "setbufvar()" function
15289 */
15290/*ARGSUSED*/
15291 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000015292f_setbufvar(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000015293 typval_T *argvars;
15294 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015295{
15296 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015297 aco_save_T aco;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015298 char_u *varname, *bufvarname;
Bram Moolenaar33570922005-01-25 22:26:29 +000015299 typval_T *varp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015300 char_u nbuf[NUMBUFLEN];
15301
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015302 rettv->vval.v_number = 0;
15303
Bram Moolenaar071d4272004-06-13 20:20:40 +000015304 if (check_restricted() || check_secure())
15305 return;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015306 (void)get_tv_number(&argvars[0]); /* issue errmsg if type error */
15307 varname = get_tv_string_chk(&argvars[1]);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000015308 buf = get_buf_tv(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015309 varp = &argvars[2];
15310
15311 if (buf != NULL && varname != NULL && varp != NULL)
15312 {
15313 /* set curbuf to be our buf, temporarily */
Bram Moolenaar071d4272004-06-13 20:20:40 +000015314 aucmd_prepbuf(&aco, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015315
15316 if (*varname == '&')
15317 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015318 long numval;
15319 char_u *strval;
15320 int error = FALSE;
15321
Bram Moolenaar071d4272004-06-13 20:20:40 +000015322 ++varname;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015323 numval = get_tv_number_chk(varp, &error);
15324 strval = get_tv_string_buf_chk(varp, nbuf);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015325 if (!error && strval != NULL)
15326 set_option_value(varname, numval, strval, OPT_LOCAL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015327 }
15328 else
15329 {
15330 bufvarname = alloc((unsigned)STRLEN(varname) + 3);
15331 if (bufvarname != NULL)
15332 {
15333 STRCPY(bufvarname, "b:");
15334 STRCPY(bufvarname + 2, varname);
Bram Moolenaar1c2fda22005-01-02 11:43:19 +000015335 set_var(bufvarname, varp, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015336 vim_free(bufvarname);
15337 }
15338 }
15339
15340 /* reset notion of buffer */
Bram Moolenaar071d4272004-06-13 20:20:40 +000015341 aucmd_restbuf(&aco);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015342 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000015343}
15344
15345/*
15346 * "setcmdpos()" function
15347 */
15348 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000015349f_setcmdpos(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000015350 typval_T *argvars;
15351 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015352{
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015353 int pos = (int)get_tv_number(&argvars[0]) - 1;
15354
15355 if (pos >= 0)
15356 rettv->vval.v_number = set_cmdline_pos(pos);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015357}
15358
15359/*
15360 * "setline()" function
15361 */
15362 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000015363f_setline(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000015364 typval_T *argvars;
15365 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015366{
15367 linenr_T lnum;
Bram Moolenaar0e6830e2005-05-27 20:23:44 +000015368 char_u *line = NULL;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015369 list_T *l = NULL;
15370 listitem_T *li = NULL;
15371 long added = 0;
15372 linenr_T lcount = curbuf->b_ml.ml_line_count;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015373
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015374 lnum = get_tv_lnum(&argvars[0]);
15375 if (argvars[1].v_type == VAR_LIST)
Bram Moolenaar071d4272004-06-13 20:20:40 +000015376 {
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015377 l = argvars[1].vval.v_list;
15378 li = l->lv_first;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015379 }
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015380 else
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015381 line = get_tv_string_chk(&argvars[1]);
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015382
15383 rettv->vval.v_number = 0; /* OK */
15384 for (;;)
15385 {
15386 if (l != NULL)
15387 {
15388 /* list argument, get next string */
15389 if (li == NULL)
15390 break;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015391 line = get_tv_string_chk(&li->li_tv);
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015392 li = li->li_next;
15393 }
15394
15395 rettv->vval.v_number = 1; /* FAIL */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015396 if (line == NULL || lnum < 1 || lnum > curbuf->b_ml.ml_line_count + 1)
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015397 break;
15398 if (lnum <= curbuf->b_ml.ml_line_count)
15399 {
15400 /* existing line, replace it */
15401 if (u_savesub(lnum) == OK && ml_replace(lnum, line, TRUE) == OK)
15402 {
15403 changed_bytes(lnum, 0);
Bram Moolenaar87c19962007-04-26 08:54:21 +000015404 if (lnum == curwin->w_cursor.lnum)
15405 check_cursor_col();
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015406 rettv->vval.v_number = 0; /* OK */
15407 }
15408 }
15409 else if (added > 0 || u_save(lnum - 1, lnum) == OK)
15410 {
15411 /* lnum is one past the last line, append the line */
15412 ++added;
15413 if (ml_append(lnum - 1, line, (colnr_T)0, FALSE) == OK)
15414 rettv->vval.v_number = 0; /* OK */
15415 }
15416
15417 if (l == NULL) /* only one string argument */
15418 break;
15419 ++lnum;
15420 }
15421
15422 if (added > 0)
15423 appended_lines_mark(lcount, added);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015424}
15425
Bram Moolenaard9ff7d52008-03-20 12:23:49 +000015426static void set_qf_ll_list __ARGS((win_T *wp, typval_T *list_arg, typval_T *action_arg, typval_T *rettv));
15427
Bram Moolenaar071d4272004-06-13 20:20:40 +000015428/*
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015429 * Used by "setqflist()" and "setloclist()" functions
Bram Moolenaar2641f772005-03-25 21:58:17 +000015430 */
15431/*ARGSUSED*/
15432 static void
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015433set_qf_ll_list(wp, list_arg, action_arg, rettv)
15434 win_T *wp;
15435 typval_T *list_arg;
15436 typval_T *action_arg;
Bram Moolenaar2641f772005-03-25 21:58:17 +000015437 typval_T *rettv;
15438{
Bram Moolenaar0ac93792006-01-21 22:16:51 +000015439#ifdef FEAT_QUICKFIX
Bram Moolenaarf4630b62005-05-20 21:31:17 +000015440 char_u *act;
15441 int action = ' ';
Bram Moolenaar0ac93792006-01-21 22:16:51 +000015442#endif
Bram Moolenaarf4630b62005-05-20 21:31:17 +000015443
Bram Moolenaar2641f772005-03-25 21:58:17 +000015444 rettv->vval.v_number = -1;
15445
15446#ifdef FEAT_QUICKFIX
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015447 if (list_arg->v_type != VAR_LIST)
Bram Moolenaar2641f772005-03-25 21:58:17 +000015448 EMSG(_(e_listreq));
15449 else
15450 {
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015451 list_T *l = list_arg->vval.v_list;
Bram Moolenaar2641f772005-03-25 21:58:17 +000015452
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015453 if (action_arg->v_type == VAR_STRING)
Bram Moolenaarf4630b62005-05-20 21:31:17 +000015454 {
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015455 act = get_tv_string_chk(action_arg);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015456 if (act == NULL)
15457 return; /* type error; errmsg already given */
Bram Moolenaarf4630b62005-05-20 21:31:17 +000015458 if (*act == 'a' || *act == 'r')
15459 action = *act;
15460 }
15461
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015462 if (l != NULL && set_errorlist(wp, l, action) == OK)
Bram Moolenaar2641f772005-03-25 21:58:17 +000015463 rettv->vval.v_number = 0;
15464 }
15465#endif
15466}
15467
15468/*
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015469 * "setloclist()" function
15470 */
15471/*ARGSUSED*/
15472 static void
15473f_setloclist(argvars, rettv)
15474 typval_T *argvars;
15475 typval_T *rettv;
15476{
15477 win_T *win;
15478
15479 rettv->vval.v_number = -1;
15480
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015481 win = find_win_by_nr(&argvars[0], NULL);
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015482 if (win != NULL)
15483 set_qf_ll_list(win, &argvars[1], &argvars[2], rettv);
15484}
15485
15486/*
Bram Moolenaar6ee10162007-07-26 20:58:42 +000015487 * "setmatches()" function
15488 */
15489 static void
15490f_setmatches(argvars, rettv)
15491 typval_T *argvars;
15492 typval_T *rettv;
15493{
15494#ifdef FEAT_SEARCH_EXTRA
15495 list_T *l;
15496 listitem_T *li;
15497 dict_T *d;
15498
15499 rettv->vval.v_number = -1;
15500 if (argvars[0].v_type != VAR_LIST)
15501 {
15502 EMSG(_(e_listreq));
15503 return;
15504 }
15505 if ((l = argvars[0].vval.v_list) != NULL)
15506 {
15507
15508 /* To some extent make sure that we are dealing with a list from
15509 * "getmatches()". */
15510 li = l->lv_first;
15511 while (li != NULL)
15512 {
15513 if (li->li_tv.v_type != VAR_DICT
15514 || (d = li->li_tv.vval.v_dict) == NULL)
15515 {
15516 EMSG(_(e_invarg));
15517 return;
15518 }
15519 if (!(dict_find(d, (char_u *)"group", -1) != NULL
15520 && dict_find(d, (char_u *)"pattern", -1) != NULL
15521 && dict_find(d, (char_u *)"priority", -1) != NULL
15522 && dict_find(d, (char_u *)"id", -1) != NULL))
15523 {
15524 EMSG(_(e_invarg));
15525 return;
15526 }
15527 li = li->li_next;
15528 }
15529
15530 clear_matches(curwin);
15531 li = l->lv_first;
15532 while (li != NULL)
15533 {
15534 d = li->li_tv.vval.v_dict;
15535 match_add(curwin, get_dict_string(d, (char_u *)"group", FALSE),
15536 get_dict_string(d, (char_u *)"pattern", FALSE),
15537 (int)get_dict_number(d, (char_u *)"priority"),
15538 (int)get_dict_number(d, (char_u *)"id"));
15539 li = li->li_next;
15540 }
15541 rettv->vval.v_number = 0;
15542 }
15543#endif
15544}
15545
15546/*
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015547 * "setpos()" function
15548 */
15549/*ARGSUSED*/
15550 static void
15551f_setpos(argvars, rettv)
15552 typval_T *argvars;
15553 typval_T *rettv;
15554{
15555 pos_T pos;
15556 int fnum;
15557 char_u *name;
15558
Bram Moolenaar08250432008-02-13 11:42:46 +000015559 rettv->vval.v_number = -1;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015560 name = get_tv_string_chk(argvars);
15561 if (name != NULL)
15562 {
15563 if (list2fpos(&argvars[1], &pos, &fnum) == OK)
15564 {
15565 --pos.col;
Bram Moolenaar08250432008-02-13 11:42:46 +000015566 if (name[0] == '.' && name[1] == NUL)
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015567 {
Bram Moolenaar08250432008-02-13 11:42:46 +000015568 /* set cursor */
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015569 if (fnum == curbuf->b_fnum)
15570 {
15571 curwin->w_cursor = pos;
15572 check_cursor();
Bram Moolenaar08250432008-02-13 11:42:46 +000015573 rettv->vval.v_number = 0;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015574 }
15575 else
15576 EMSG(_(e_invarg));
15577 }
Bram Moolenaar08250432008-02-13 11:42:46 +000015578 else if (name[0] == '\'' && name[1] != NUL && name[2] == NUL)
15579 {
15580 /* set mark */
15581 if (setmark_pos(name[1], &pos, fnum) == OK)
15582 rettv->vval.v_number = 0;
15583 }
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015584 else
15585 EMSG(_(e_invarg));
15586 }
15587 }
15588}
15589
15590/*
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015591 * "setqflist()" function
15592 */
15593/*ARGSUSED*/
15594 static void
15595f_setqflist(argvars, rettv)
15596 typval_T *argvars;
15597 typval_T *rettv;
15598{
15599 set_qf_ll_list(NULL, &argvars[0], &argvars[1], rettv);
15600}
15601
15602/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000015603 * "setreg()" function
15604 */
15605 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000015606f_setreg(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000015607 typval_T *argvars;
15608 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015609{
15610 int regname;
15611 char_u *strregname;
15612 char_u *stropt;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015613 char_u *strval;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015614 int append;
15615 char_u yank_type;
15616 long block_len;
15617
15618 block_len = -1;
15619 yank_type = MAUTO;
15620 append = FALSE;
15621
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015622 strregname = get_tv_string_chk(argvars);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000015623 rettv->vval.v_number = 1; /* FAIL is default */
Bram Moolenaar071d4272004-06-13 20:20:40 +000015624
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015625 if (strregname == NULL)
15626 return; /* type error; errmsg already given */
15627 regname = *strregname;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015628 if (regname == 0 || regname == '@')
15629 regname = '"';
15630 else if (regname == '=')
15631 return;
15632
Bram Moolenaar49cd9572005-01-03 21:06:01 +000015633 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000015634 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015635 stropt = get_tv_string_chk(&argvars[2]);
15636 if (stropt == NULL)
15637 return; /* type error */
15638 for (; *stropt != NUL; ++stropt)
Bram Moolenaar071d4272004-06-13 20:20:40 +000015639 switch (*stropt)
15640 {
15641 case 'a': case 'A': /* append */
15642 append = TRUE;
15643 break;
15644 case 'v': case 'c': /* character-wise selection */
15645 yank_type = MCHAR;
15646 break;
15647 case 'V': case 'l': /* line-wise selection */
15648 yank_type = MLINE;
15649 break;
15650#ifdef FEAT_VISUAL
15651 case 'b': case Ctrl_V: /* block-wise selection */
15652 yank_type = MBLOCK;
15653 if (VIM_ISDIGIT(stropt[1]))
15654 {
15655 ++stropt;
15656 block_len = getdigits(&stropt) - 1;
15657 --stropt;
15658 }
15659 break;
15660#endif
15661 }
15662 }
15663
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015664 strval = get_tv_string_chk(&argvars[1]);
15665 if (strval != NULL)
15666 write_reg_contents_ex(regname, strval, -1,
Bram Moolenaar071d4272004-06-13 20:20:40 +000015667 append, yank_type, block_len);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000015668 rettv->vval.v_number = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015669}
15670
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015671/*
15672 * "settabwinvar()" function
15673 */
15674 static void
15675f_settabwinvar(argvars, rettv)
15676 typval_T *argvars;
15677 typval_T *rettv;
15678{
15679 setwinvar(argvars, rettv, 1);
15680}
Bram Moolenaar071d4272004-06-13 20:20:40 +000015681
15682/*
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015683 * "setwinvar()" function
Bram Moolenaar071d4272004-06-13 20:20:40 +000015684 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000015685 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000015686f_setwinvar(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000015687 typval_T *argvars;
15688 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015689{
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015690 setwinvar(argvars, rettv, 0);
15691}
15692
15693/*
15694 * "setwinvar()" and "settabwinvar()" functions
15695 */
15696 static void
15697setwinvar(argvars, rettv, off)
15698 typval_T *argvars;
15699 typval_T *rettv;
15700 int off;
15701{
Bram Moolenaar071d4272004-06-13 20:20:40 +000015702 win_T *win;
15703#ifdef FEAT_WINDOWS
15704 win_T *save_curwin;
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015705 tabpage_T *save_curtab;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015706#endif
15707 char_u *varname, *winvarname;
Bram Moolenaar33570922005-01-25 22:26:29 +000015708 typval_T *varp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015709 char_u nbuf[NUMBUFLEN];
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015710 tabpage_T *tp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015711
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015712 rettv->vval.v_number = 0;
15713
Bram Moolenaar071d4272004-06-13 20:20:40 +000015714 if (check_restricted() || check_secure())
15715 return;
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015716
15717#ifdef FEAT_WINDOWS
15718 if (off == 1)
15719 tp = find_tabpage((int)get_tv_number_chk(&argvars[0], NULL));
15720 else
15721 tp = curtab;
15722#endif
15723 win = find_win_by_nr(&argvars[off], tp);
15724 varname = get_tv_string_chk(&argvars[off + 1]);
15725 varp = &argvars[off + 2];
Bram Moolenaar071d4272004-06-13 20:20:40 +000015726
15727 if (win != NULL && varname != NULL && varp != NULL)
15728 {
15729#ifdef FEAT_WINDOWS
15730 /* set curwin to be our win, temporarily */
15731 save_curwin = curwin;
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015732 save_curtab = curtab;
15733 goto_tabpage_tp(tp);
15734 if (!win_valid(win))
15735 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015736 curwin = win;
15737 curbuf = curwin->w_buffer;
15738#endif
15739
15740 if (*varname == '&')
15741 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015742 long numval;
15743 char_u *strval;
15744 int error = FALSE;
15745
Bram Moolenaar071d4272004-06-13 20:20:40 +000015746 ++varname;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015747 numval = get_tv_number_chk(varp, &error);
15748 strval = get_tv_string_buf_chk(varp, nbuf);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015749 if (!error && strval != NULL)
15750 set_option_value(varname, numval, strval, OPT_LOCAL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015751 }
15752 else
15753 {
15754 winvarname = alloc((unsigned)STRLEN(varname) + 3);
15755 if (winvarname != NULL)
15756 {
15757 STRCPY(winvarname, "w:");
15758 STRCPY(winvarname + 2, varname);
Bram Moolenaar1c2fda22005-01-02 11:43:19 +000015759 set_var(winvarname, varp, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015760 vim_free(winvarname);
15761 }
15762 }
15763
15764#ifdef FEAT_WINDOWS
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015765 /* Restore current tabpage and window, if still valid (autocomands can
15766 * make them invalid). */
15767 if (valid_tabpage(save_curtab))
15768 goto_tabpage_tp(save_curtab);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015769 if (win_valid(save_curwin))
15770 {
15771 curwin = save_curwin;
15772 curbuf = curwin->w_buffer;
15773 }
15774#endif
15775 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000015776}
15777
15778/*
Bram Moolenaar60a495f2006-10-03 12:44:42 +000015779 * "shellescape({string})" function
15780 */
15781 static void
15782f_shellescape(argvars, rettv)
15783 typval_T *argvars;
15784 typval_T *rettv;
15785{
Bram Moolenaar05bb9532008-07-04 09:44:11 +000015786 rettv->vval.v_string = vim_strsave_shellescape(
15787 get_tv_string(&argvars[0]), non_zero_arg(&argvars[1]));
Bram Moolenaar60a495f2006-10-03 12:44:42 +000015788 rettv->v_type = VAR_STRING;
15789}
15790
15791/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000015792 * "simplify()" function
Bram Moolenaar071d4272004-06-13 20:20:40 +000015793 */
15794 static void
Bram Moolenaar0d660222005-01-07 21:51:51 +000015795f_simplify(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000015796 typval_T *argvars;
15797 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015798{
Bram Moolenaar0d660222005-01-07 21:51:51 +000015799 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015800
Bram Moolenaar0d660222005-01-07 21:51:51 +000015801 p = get_tv_string(&argvars[0]);
15802 rettv->vval.v_string = vim_strsave(p);
15803 simplify_filename(rettv->vval.v_string); /* simplify in place */
15804 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015805}
15806
Bram Moolenaar8c8de832008-06-24 22:58:06 +000015807#ifdef FEAT_FLOAT
15808/*
15809 * "sin()" function
15810 */
15811 static void
15812f_sin(argvars, rettv)
15813 typval_T *argvars;
15814 typval_T *rettv;
15815{
15816 float_T f;
15817
15818 rettv->v_type = VAR_FLOAT;
15819 if (get_float_arg(argvars, &f) == OK)
15820 rettv->vval.v_float = sin(f);
15821 else
15822 rettv->vval.v_float = 0.0;
15823}
15824#endif
15825
Bram Moolenaar0d660222005-01-07 21:51:51 +000015826static int
15827#ifdef __BORLANDC__
15828 _RTLENTRYF
15829#endif
15830 item_compare __ARGS((const void *s1, const void *s2));
15831static int
15832#ifdef __BORLANDC__
15833 _RTLENTRYF
15834#endif
15835 item_compare2 __ARGS((const void *s1, const void *s2));
15836
15837static int item_compare_ic;
15838static char_u *item_compare_func;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015839static int item_compare_func_err;
Bram Moolenaar0d660222005-01-07 21:51:51 +000015840#define ITEM_COMPARE_FAIL 999
15841
Bram Moolenaar071d4272004-06-13 20:20:40 +000015842/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000015843 * Compare functions for f_sort() below.
Bram Moolenaar071d4272004-06-13 20:20:40 +000015844 */
Bram Moolenaar0d660222005-01-07 21:51:51 +000015845 static int
15846#ifdef __BORLANDC__
15847_RTLENTRYF
15848#endif
15849item_compare(s1, s2)
15850 const void *s1;
15851 const void *s2;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015852{
Bram Moolenaar0d660222005-01-07 21:51:51 +000015853 char_u *p1, *p2;
15854 char_u *tofree1, *tofree2;
15855 int res;
15856 char_u numbuf1[NUMBUFLEN];
15857 char_u numbuf2[NUMBUFLEN];
Bram Moolenaar071d4272004-06-13 20:20:40 +000015858
Bram Moolenaarb71eaae2006-01-20 23:10:18 +000015859 p1 = tv2string(&(*(listitem_T **)s1)->li_tv, &tofree1, numbuf1, 0);
15860 p2 = tv2string(&(*(listitem_T **)s2)->li_tv, &tofree2, numbuf2, 0);
Bram Moolenaar92c5aba2007-08-14 20:29:31 +000015861 if (p1 == NULL)
15862 p1 = (char_u *)"";
15863 if (p2 == NULL)
15864 p2 = (char_u *)"";
Bram Moolenaar0d660222005-01-07 21:51:51 +000015865 if (item_compare_ic)
15866 res = STRICMP(p1, p2);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015867 else
Bram Moolenaar0d660222005-01-07 21:51:51 +000015868 res = STRCMP(p1, p2);
15869 vim_free(tofree1);
15870 vim_free(tofree2);
15871 return res;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015872}
15873
15874 static int
Bram Moolenaar0d660222005-01-07 21:51:51 +000015875#ifdef __BORLANDC__
15876_RTLENTRYF
Bram Moolenaar071d4272004-06-13 20:20:40 +000015877#endif
Bram Moolenaar0d660222005-01-07 21:51:51 +000015878item_compare2(s1, s2)
15879 const void *s1;
15880 const void *s2;
15881{
15882 int res;
Bram Moolenaar33570922005-01-25 22:26:29 +000015883 typval_T rettv;
Bram Moolenaareb3593b2006-04-22 22:33:57 +000015884 typval_T argv[3];
Bram Moolenaar0d660222005-01-07 21:51:51 +000015885 int dummy;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015886
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015887 /* shortcut after failure in previous call; compare all items equal */
15888 if (item_compare_func_err)
15889 return 0;
15890
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000015891 /* copy the values. This is needed to be able to set v_lock to VAR_FIXED
15892 * in the copy without changing the original list items. */
Bram Moolenaar33570922005-01-25 22:26:29 +000015893 copy_tv(&(*(listitem_T **)s1)->li_tv, &argv[0]);
15894 copy_tv(&(*(listitem_T **)s2)->li_tv, &argv[1]);
Bram Moolenaar0d660222005-01-07 21:51:51 +000015895
15896 rettv.v_type = VAR_UNKNOWN; /* clear_tv() uses this */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000015897 res = call_func(item_compare_func, (int)STRLEN(item_compare_func),
Bram Moolenaare9a41262005-01-15 22:18:47 +000015898 &rettv, 2, argv, 0L, 0L, &dummy, TRUE, NULL);
Bram Moolenaar0d660222005-01-07 21:51:51 +000015899 clear_tv(&argv[0]);
15900 clear_tv(&argv[1]);
15901
15902 if (res == FAIL)
15903 res = ITEM_COMPARE_FAIL;
15904 else
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015905 res = get_tv_number_chk(&rettv, &item_compare_func_err);
15906 if (item_compare_func_err)
Bram Moolenaar61c4e2c2008-08-25 02:49:18 +000015907 res = ITEM_COMPARE_FAIL; /* return value has wrong type */
Bram Moolenaar0d660222005-01-07 21:51:51 +000015908 clear_tv(&rettv);
15909 return res;
15910}
15911
15912/*
15913 * "sort({list})" function
15914 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000015915 static void
Bram Moolenaar0d660222005-01-07 21:51:51 +000015916f_sort(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000015917 typval_T *argvars;
15918 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015919{
Bram Moolenaar33570922005-01-25 22:26:29 +000015920 list_T *l;
15921 listitem_T *li;
15922 listitem_T **ptrs;
Bram Moolenaar0d660222005-01-07 21:51:51 +000015923 long len;
15924 long i;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015925
Bram Moolenaar0d660222005-01-07 21:51:51 +000015926 rettv->vval.v_number = 0;
15927 if (argvars[0].v_type != VAR_LIST)
15928 EMSG2(_(e_listarg), "sort()");
Bram Moolenaar071d4272004-06-13 20:20:40 +000015929 else
15930 {
Bram Moolenaar0d660222005-01-07 21:51:51 +000015931 l = argvars[0].vval.v_list;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000015932 if (l == NULL || tv_check_lock(l->lv_lock, (char_u *)"sort()"))
Bram Moolenaar0d660222005-01-07 21:51:51 +000015933 return;
15934 rettv->vval.v_list = l;
15935 rettv->v_type = VAR_LIST;
15936 ++l->lv_refcount;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015937
Bram Moolenaar0d660222005-01-07 21:51:51 +000015938 len = list_len(l);
15939 if (len <= 1)
15940 return; /* short list sorts pretty quickly */
Bram Moolenaar071d4272004-06-13 20:20:40 +000015941
Bram Moolenaar0d660222005-01-07 21:51:51 +000015942 item_compare_ic = FALSE;
15943 item_compare_func = NULL;
15944 if (argvars[1].v_type != VAR_UNKNOWN)
15945 {
15946 if (argvars[1].v_type == VAR_FUNC)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015947 item_compare_func = argvars[1].vval.v_string;
Bram Moolenaar0d660222005-01-07 21:51:51 +000015948 else
15949 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015950 int error = FALSE;
15951
15952 i = get_tv_number_chk(&argvars[1], &error);
15953 if (error)
15954 return; /* type error; errmsg already given */
Bram Moolenaar0d660222005-01-07 21:51:51 +000015955 if (i == 1)
15956 item_compare_ic = TRUE;
15957 else
15958 item_compare_func = get_tv_string(&argvars[1]);
15959 }
15960 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000015961
Bram Moolenaar0d660222005-01-07 21:51:51 +000015962 /* Make an array with each entry pointing to an item in the List. */
Bram Moolenaar33570922005-01-25 22:26:29 +000015963 ptrs = (listitem_T **)alloc((int)(len * sizeof(listitem_T *)));
Bram Moolenaar0d660222005-01-07 21:51:51 +000015964 if (ptrs == NULL)
15965 return;
15966 i = 0;
15967 for (li = l->lv_first; li != NULL; li = li->li_next)
15968 ptrs[i++] = li;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015969
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015970 item_compare_func_err = FALSE;
Bram Moolenaar0d660222005-01-07 21:51:51 +000015971 /* test the compare function */
15972 if (item_compare_func != NULL
15973 && item_compare2((void *)&ptrs[0], (void *)&ptrs[1])
15974 == ITEM_COMPARE_FAIL)
Bram Moolenaare49b69a2005-01-08 16:11:57 +000015975 EMSG(_("E702: Sort compare function failed"));
Bram Moolenaar071d4272004-06-13 20:20:40 +000015976 else
Bram Moolenaar0d660222005-01-07 21:51:51 +000015977 {
15978 /* Sort the array with item pointers. */
Bram Moolenaar33570922005-01-25 22:26:29 +000015979 qsort((void *)ptrs, (size_t)len, sizeof(listitem_T *),
Bram Moolenaar0d660222005-01-07 21:51:51 +000015980 item_compare_func == NULL ? item_compare : item_compare2);
15981
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015982 if (!item_compare_func_err)
15983 {
15984 /* Clear the List and append the items in the sorted order. */
Bram Moolenaar52514562008-04-01 11:12:09 +000015985 l->lv_first = l->lv_last = l->lv_idx_item = NULL;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015986 l->lv_len = 0;
15987 for (i = 0; i < len; ++i)
15988 list_append(l, ptrs[i]);
15989 }
Bram Moolenaar0d660222005-01-07 21:51:51 +000015990 }
15991
15992 vim_free(ptrs);
15993 }
15994}
15995
Bram Moolenaard857f0e2005-06-21 22:37:39 +000015996/*
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +000015997 * "soundfold({word})" function
15998 */
15999 static void
16000f_soundfold(argvars, rettv)
16001 typval_T *argvars;
16002 typval_T *rettv;
16003{
16004 char_u *s;
16005
16006 rettv->v_type = VAR_STRING;
16007 s = get_tv_string(&argvars[0]);
Bram Moolenaar3c56a962006-03-12 22:19:04 +000016008#ifdef FEAT_SPELL
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +000016009 rettv->vval.v_string = eval_soundfold(s);
16010#else
16011 rettv->vval.v_string = vim_strsave(s);
16012#endif
16013}
16014
16015/*
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016016 * "spellbadword()" function
16017 */
16018/* ARGSUSED */
16019 static void
16020f_spellbadword(argvars, rettv)
16021 typval_T *argvars;
16022 typval_T *rettv;
16023{
Bram Moolenaar4463f292005-09-25 22:20:24 +000016024 char_u *word = (char_u *)"";
Bram Moolenaar482aaeb2005-09-29 18:26:07 +000016025 hlf_T attr = HLF_COUNT;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000016026 int len = 0;
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016027
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016028 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaar4463f292005-09-25 22:20:24 +000016029 return;
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016030
Bram Moolenaar3c56a962006-03-12 22:19:04 +000016031#ifdef FEAT_SPELL
Bram Moolenaar4463f292005-09-25 22:20:24 +000016032 if (argvars[0].v_type == VAR_UNKNOWN)
16033 {
16034 /* Find the start and length of the badly spelled word. */
16035 len = spell_move_to(curwin, FORWARD, TRUE, TRUE, &attr);
16036 if (len != 0)
16037 word = ml_get_cursor();
16038 }
16039 else if (curwin->w_p_spell && *curbuf->b_p_spl != NUL)
16040 {
16041 char_u *str = get_tv_string_chk(&argvars[0]);
16042 int capcol = -1;
16043
16044 if (str != NULL)
16045 {
16046 /* Check the argument for spelling. */
16047 while (*str != NUL)
16048 {
Bram Moolenaar4770d092006-01-12 23:22:24 +000016049 len = spell_check(curwin, str, &attr, &capcol, FALSE);
Bram Moolenaar482aaeb2005-09-29 18:26:07 +000016050 if (attr != HLF_COUNT)
Bram Moolenaar4463f292005-09-25 22:20:24 +000016051 {
16052 word = str;
16053 break;
16054 }
16055 str += len;
16056 }
16057 }
16058 }
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016059#endif
Bram Moolenaar4463f292005-09-25 22:20:24 +000016060
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016061 list_append_string(rettv->vval.v_list, word, len);
16062 list_append_string(rettv->vval.v_list, (char_u *)(
Bram Moolenaar482aaeb2005-09-29 18:26:07 +000016063 attr == HLF_SPB ? "bad" :
16064 attr == HLF_SPR ? "rare" :
16065 attr == HLF_SPL ? "local" :
16066 attr == HLF_SPC ? "caps" :
16067 ""), -1);
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016068}
16069
16070/*
16071 * "spellsuggest()" function
16072 */
Bram Moolenaar3c56a962006-03-12 22:19:04 +000016073/*ARGSUSED*/
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016074 static void
16075f_spellsuggest(argvars, rettv)
16076 typval_T *argvars;
16077 typval_T *rettv;
16078{
Bram Moolenaar3c56a962006-03-12 22:19:04 +000016079#ifdef FEAT_SPELL
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016080 char_u *str;
Bram Moolenaar69e0ff92005-09-30 21:23:56 +000016081 int typeerr = FALSE;
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016082 int maxcount;
16083 garray_T ga;
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016084 int i;
Bram Moolenaar69e0ff92005-09-30 21:23:56 +000016085 listitem_T *li;
16086 int need_capital = FALSE;
16087#endif
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016088
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016089 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016090 return;
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016091
Bram Moolenaar3c56a962006-03-12 22:19:04 +000016092#ifdef FEAT_SPELL
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016093 if (curwin->w_p_spell && *curbuf->b_p_spl != NUL)
16094 {
16095 str = get_tv_string(&argvars[0]);
16096 if (argvars[1].v_type != VAR_UNKNOWN)
16097 {
Bram Moolenaar69e0ff92005-09-30 21:23:56 +000016098 maxcount = get_tv_number_chk(&argvars[1], &typeerr);
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016099 if (maxcount <= 0)
16100 return;
Bram Moolenaar69e0ff92005-09-30 21:23:56 +000016101 if (argvars[2].v_type != VAR_UNKNOWN)
16102 {
16103 need_capital = get_tv_number_chk(&argvars[2], &typeerr);
16104 if (typeerr)
16105 return;
16106 }
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016107 }
16108 else
16109 maxcount = 25;
16110
Bram Moolenaar4770d092006-01-12 23:22:24 +000016111 spell_suggest_list(&ga, str, maxcount, need_capital, FALSE);
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016112
16113 for (i = 0; i < ga.ga_len; ++i)
16114 {
16115 str = ((char_u **)ga.ga_data)[i];
16116
16117 li = listitem_alloc();
16118 if (li == NULL)
16119 vim_free(str);
16120 else
16121 {
16122 li->li_tv.v_type = VAR_STRING;
16123 li->li_tv.v_lock = 0;
16124 li->li_tv.vval.v_string = str;
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016125 list_append(rettv->vval.v_list, li);
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016126 }
16127 }
16128 ga_clear(&ga);
16129 }
16130#endif
16131}
16132
Bram Moolenaar0d660222005-01-07 21:51:51 +000016133 static void
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000016134f_split(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016135 typval_T *argvars;
16136 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000016137{
16138 char_u *str;
16139 char_u *end;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000016140 char_u *pat = NULL;
Bram Moolenaar0d660222005-01-07 21:51:51 +000016141 regmatch_T regmatch;
16142 char_u patbuf[NUMBUFLEN];
16143 char_u *save_cpo;
16144 int match;
Bram Moolenaar0d660222005-01-07 21:51:51 +000016145 colnr_T col = 0;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000016146 int keepempty = FALSE;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016147 int typeerr = FALSE;
Bram Moolenaar0d660222005-01-07 21:51:51 +000016148
16149 /* Make 'cpoptions' empty, the 'l' flag should not be used here. */
16150 save_cpo = p_cpo;
16151 p_cpo = (char_u *)"";
16152
16153 str = get_tv_string(&argvars[0]);
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000016154 if (argvars[1].v_type != VAR_UNKNOWN)
16155 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016156 pat = get_tv_string_buf_chk(&argvars[1], patbuf);
16157 if (pat == NULL)
16158 typeerr = TRUE;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000016159 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016160 keepempty = get_tv_number_chk(&argvars[2], &typeerr);
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000016161 }
16162 if (pat == NULL || *pat == NUL)
16163 pat = (char_u *)"[\\x01- ]\\+";
Bram Moolenaar0d660222005-01-07 21:51:51 +000016164
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016165 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000016166 return;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016167 if (typeerr)
16168 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016169
Bram Moolenaar0d660222005-01-07 21:51:51 +000016170 regmatch.regprog = vim_regcomp(pat, RE_MAGIC + RE_STRING);
16171 if (regmatch.regprog != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000016172 {
Bram Moolenaar0d660222005-01-07 21:51:51 +000016173 regmatch.rm_ic = FALSE;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000016174 while (*str != NUL || keepempty)
Bram Moolenaar0d660222005-01-07 21:51:51 +000016175 {
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000016176 if (*str == NUL)
16177 match = FALSE; /* empty item at the end */
16178 else
16179 match = vim_regexec_nl(&regmatch, str, col);
Bram Moolenaar0d660222005-01-07 21:51:51 +000016180 if (match)
16181 end = regmatch.startp[0];
16182 else
16183 end = str + STRLEN(str);
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016184 if (keepempty || end > str || (rettv->vval.v_list->lv_len > 0
16185 && *str != NUL && match && end < regmatch.endp[0]))
Bram Moolenaar0d660222005-01-07 21:51:51 +000016186 {
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016187 if (list_append_string(rettv->vval.v_list, str,
16188 (int)(end - str)) == FAIL)
Bram Moolenaar0d660222005-01-07 21:51:51 +000016189 break;
Bram Moolenaar0d660222005-01-07 21:51:51 +000016190 }
16191 if (!match)
16192 break;
16193 /* Advance to just after the match. */
16194 if (regmatch.endp[0] > str)
16195 col = 0;
16196 else
16197 {
16198 /* Don't get stuck at the same match. */
16199#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000016200 col = (*mb_ptr2len)(regmatch.endp[0]);
Bram Moolenaar0d660222005-01-07 21:51:51 +000016201#else
16202 col = 1;
16203#endif
16204 }
16205 str = regmatch.endp[0];
16206 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000016207
Bram Moolenaar0d660222005-01-07 21:51:51 +000016208 vim_free(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016209 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000016210
Bram Moolenaar0d660222005-01-07 21:51:51 +000016211 p_cpo = save_cpo;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016212}
16213
Bram Moolenaar8c8de832008-06-24 22:58:06 +000016214#ifdef FEAT_FLOAT
16215/*
16216 * "sqrt()" function
16217 */
16218 static void
16219f_sqrt(argvars, rettv)
16220 typval_T *argvars;
16221 typval_T *rettv;
16222{
16223 float_T f;
16224
16225 rettv->v_type = VAR_FLOAT;
16226 if (get_float_arg(argvars, &f) == OK)
16227 rettv->vval.v_float = sqrt(f);
16228 else
16229 rettv->vval.v_float = 0.0;
16230}
16231
16232/*
16233 * "str2float()" function
16234 */
16235 static void
16236f_str2float(argvars, rettv)
16237 typval_T *argvars;
16238 typval_T *rettv;
16239{
16240 char_u *p = skipwhite(get_tv_string(&argvars[0]));
16241
16242 if (*p == '+')
16243 p = skipwhite(p + 1);
16244 (void)string2float(p, &rettv->vval.v_float);
16245 rettv->v_type = VAR_FLOAT;
16246}
16247#endif
16248
Bram Moolenaar2c932302006-03-18 21:42:09 +000016249/*
16250 * "str2nr()" function
16251 */
16252 static void
16253f_str2nr(argvars, rettv)
16254 typval_T *argvars;
16255 typval_T *rettv;
16256{
16257 int base = 10;
16258 char_u *p;
16259 long n;
16260
16261 if (argvars[1].v_type != VAR_UNKNOWN)
16262 {
16263 base = get_tv_number(&argvars[1]);
16264 if (base != 8 && base != 10 && base != 16)
16265 {
16266 EMSG(_(e_invarg));
16267 return;
16268 }
16269 }
16270
16271 p = skipwhite(get_tv_string(&argvars[0]));
Bram Moolenaar8c8de832008-06-24 22:58:06 +000016272 if (*p == '+')
16273 p = skipwhite(p + 1);
Bram Moolenaar2c932302006-03-18 21:42:09 +000016274 vim_str2nr(p, NULL, NULL, base == 8 ? 2 : 0, base == 16 ? 2 : 0, &n, NULL);
16275 rettv->vval.v_number = n;
16276}
16277
Bram Moolenaar071d4272004-06-13 20:20:40 +000016278#ifdef HAVE_STRFTIME
16279/*
16280 * "strftime({format}[, {time}])" function
16281 */
16282 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016283f_strftime(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016284 typval_T *argvars;
16285 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016286{
16287 char_u result_buf[256];
16288 struct tm *curtime;
16289 time_t seconds;
16290 char_u *p;
16291
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016292 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016293
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016294 p = get_tv_string(&argvars[0]);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000016295 if (argvars[1].v_type == VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000016296 seconds = time(NULL);
16297 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016298 seconds = (time_t)get_tv_number(&argvars[1]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016299 curtime = localtime(&seconds);
16300 /* MSVC returns NULL for an invalid value of seconds. */
16301 if (curtime == NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016302 rettv->vval.v_string = vim_strsave((char_u *)_("(Invalid)"));
Bram Moolenaar071d4272004-06-13 20:20:40 +000016303 else
16304 {
16305# ifdef FEAT_MBYTE
16306 vimconv_T conv;
16307 char_u *enc;
16308
16309 conv.vc_type = CONV_NONE;
16310 enc = enc_locale();
16311 convert_setup(&conv, p_enc, enc);
16312 if (conv.vc_type != CONV_NONE)
16313 p = string_convert(&conv, p, NULL);
16314# endif
16315 if (p != NULL)
16316 (void)strftime((char *)result_buf, sizeof(result_buf),
16317 (char *)p, curtime);
16318 else
16319 result_buf[0] = NUL;
16320
16321# ifdef FEAT_MBYTE
16322 if (conv.vc_type != CONV_NONE)
16323 vim_free(p);
16324 convert_setup(&conv, enc, p_enc);
16325 if (conv.vc_type != CONV_NONE)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016326 rettv->vval.v_string = string_convert(&conv, result_buf, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016327 else
16328# endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016329 rettv->vval.v_string = vim_strsave(result_buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016330
16331# ifdef FEAT_MBYTE
16332 /* Release conversion descriptors */
16333 convert_setup(&conv, NULL, NULL);
16334 vim_free(enc);
16335# endif
16336 }
16337}
16338#endif
16339
16340/*
16341 * "stridx()" function
16342 */
16343 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016344f_stridx(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016345 typval_T *argvars;
16346 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016347{
16348 char_u buf[NUMBUFLEN];
16349 char_u *needle;
16350 char_u *haystack;
Bram Moolenaar33570922005-01-25 22:26:29 +000016351 char_u *save_haystack;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016352 char_u *pos;
Bram Moolenaar33570922005-01-25 22:26:29 +000016353 int start_idx;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016354
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016355 needle = get_tv_string_chk(&argvars[1]);
16356 save_haystack = haystack = get_tv_string_buf_chk(&argvars[0], buf);
Bram Moolenaar33570922005-01-25 22:26:29 +000016357 rettv->vval.v_number = -1;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016358 if (needle == NULL || haystack == NULL)
16359 return; /* type error; errmsg already given */
Bram Moolenaar071d4272004-06-13 20:20:40 +000016360
Bram Moolenaar33570922005-01-25 22:26:29 +000016361 if (argvars[2].v_type != VAR_UNKNOWN)
16362 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016363 int error = FALSE;
16364
16365 start_idx = get_tv_number_chk(&argvars[2], &error);
16366 if (error || start_idx >= (int)STRLEN(haystack))
Bram Moolenaar33570922005-01-25 22:26:29 +000016367 return;
Bram Moolenaar532c7802005-01-27 14:44:31 +000016368 if (start_idx >= 0)
16369 haystack += start_idx;
Bram Moolenaar33570922005-01-25 22:26:29 +000016370 }
16371
16372 pos = (char_u *)strstr((char *)haystack, (char *)needle);
16373 if (pos != NULL)
16374 rettv->vval.v_number = (varnumber_T)(pos - save_haystack);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016375}
16376
16377/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +000016378 * "string()" function
16379 */
16380 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016381f_string(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016382 typval_T *argvars;
16383 typval_T *rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000016384{
16385 char_u *tofree;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000016386 char_u numbuf[NUMBUFLEN];
Bram Moolenaar49cd9572005-01-03 21:06:01 +000016387
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016388 rettv->v_type = VAR_STRING;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +000016389 rettv->vval.v_string = tv2string(&argvars[0], &tofree, numbuf, 0);
Bram Moolenaar8c8de832008-06-24 22:58:06 +000016390 /* Make a copy if we have a value but it's not in allocated memory. */
Bram Moolenaar92c5aba2007-08-14 20:29:31 +000016391 if (rettv->vval.v_string != NULL && tofree == NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016392 rettv->vval.v_string = vim_strsave(rettv->vval.v_string);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016393}
16394
16395/*
16396 * "strlen()" function
16397 */
16398 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016399f_strlen(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016400 typval_T *argvars;
16401 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016402{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016403 rettv->vval.v_number = (varnumber_T)(STRLEN(
16404 get_tv_string(&argvars[0])));
Bram Moolenaar071d4272004-06-13 20:20:40 +000016405}
16406
16407/*
16408 * "strpart()" function
16409 */
16410 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016411f_strpart(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016412 typval_T *argvars;
16413 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016414{
16415 char_u *p;
16416 int n;
16417 int len;
16418 int slen;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016419 int error = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016420
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016421 p = get_tv_string(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016422 slen = (int)STRLEN(p);
16423
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016424 n = get_tv_number_chk(&argvars[1], &error);
16425 if (error)
16426 len = 0;
16427 else if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016428 len = get_tv_number(&argvars[2]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016429 else
16430 len = slen - n; /* default len: all bytes that are available. */
16431
16432 /*
16433 * Only return the overlap between the specified part and the actual
16434 * string.
16435 */
16436 if (n < 0)
16437 {
16438 len += n;
16439 n = 0;
16440 }
16441 else if (n > slen)
16442 n = slen;
16443 if (len < 0)
16444 len = 0;
16445 else if (n + len > slen)
16446 len = slen - n;
16447
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016448 rettv->v_type = VAR_STRING;
16449 rettv->vval.v_string = vim_strnsave(p + n, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016450}
16451
16452/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000016453 * "strridx()" function
16454 */
16455 static void
16456f_strridx(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016457 typval_T *argvars;
16458 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000016459{
16460 char_u buf[NUMBUFLEN];
16461 char_u *needle;
16462 char_u *haystack;
16463 char_u *rest;
16464 char_u *lastmatch = NULL;
Bram Moolenaar532c7802005-01-27 14:44:31 +000016465 int haystack_len, end_idx;
Bram Moolenaar0d660222005-01-07 21:51:51 +000016466
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016467 needle = get_tv_string_chk(&argvars[1]);
16468 haystack = get_tv_string_buf_chk(&argvars[0], buf);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016469
16470 rettv->vval.v_number = -1;
16471 if (needle == NULL || haystack == NULL)
16472 return; /* type error; errmsg already given */
Bram Moolenaareb3593b2006-04-22 22:33:57 +000016473
16474 haystack_len = (int)STRLEN(haystack);
Bram Moolenaar05159a02005-02-26 23:04:13 +000016475 if (argvars[2].v_type != VAR_UNKNOWN)
16476 {
16477 /* Third argument: upper limit for index */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016478 end_idx = get_tv_number_chk(&argvars[2], NULL);
Bram Moolenaar05159a02005-02-26 23:04:13 +000016479 if (end_idx < 0)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016480 return; /* can never find a match */
Bram Moolenaar05159a02005-02-26 23:04:13 +000016481 }
16482 else
16483 end_idx = haystack_len;
16484
Bram Moolenaar0d660222005-01-07 21:51:51 +000016485 if (*needle == NUL)
Bram Moolenaar05159a02005-02-26 23:04:13 +000016486 {
Bram Moolenaar0d660222005-01-07 21:51:51 +000016487 /* Empty string matches past the end. */
Bram Moolenaar05159a02005-02-26 23:04:13 +000016488 lastmatch = haystack + end_idx;
16489 }
Bram Moolenaar0d660222005-01-07 21:51:51 +000016490 else
Bram Moolenaar532c7802005-01-27 14:44:31 +000016491 {
Bram Moolenaar0d660222005-01-07 21:51:51 +000016492 for (rest = haystack; *rest != '\0'; ++rest)
16493 {
16494 rest = (char_u *)strstr((char *)rest, (char *)needle);
Bram Moolenaar532c7802005-01-27 14:44:31 +000016495 if (rest == NULL || rest > haystack + end_idx)
Bram Moolenaar0d660222005-01-07 21:51:51 +000016496 break;
16497 lastmatch = rest;
16498 }
Bram Moolenaar532c7802005-01-27 14:44:31 +000016499 }
Bram Moolenaar0d660222005-01-07 21:51:51 +000016500
16501 if (lastmatch == NULL)
16502 rettv->vval.v_number = -1;
16503 else
16504 rettv->vval.v_number = (varnumber_T)(lastmatch - haystack);
16505}
16506
16507/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000016508 * "strtrans()" function
16509 */
16510 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016511f_strtrans(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016512 typval_T *argvars;
16513 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016514{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016515 rettv->v_type = VAR_STRING;
16516 rettv->vval.v_string = transstr(get_tv_string(&argvars[0]));
Bram Moolenaar071d4272004-06-13 20:20:40 +000016517}
16518
16519/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000016520 * "submatch()" function
16521 */
16522 static void
16523f_submatch(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016524 typval_T *argvars;
16525 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000016526{
16527 rettv->v_type = VAR_STRING;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016528 rettv->vval.v_string =
16529 reg_submatch((int)get_tv_number_chk(&argvars[0], NULL));
Bram Moolenaar0d660222005-01-07 21:51:51 +000016530}
16531
16532/*
16533 * "substitute()" function
16534 */
16535 static void
16536f_substitute(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016537 typval_T *argvars;
16538 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000016539{
16540 char_u patbuf[NUMBUFLEN];
16541 char_u subbuf[NUMBUFLEN];
16542 char_u flagsbuf[NUMBUFLEN];
16543
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016544 char_u *str = get_tv_string_chk(&argvars[0]);
16545 char_u *pat = get_tv_string_buf_chk(&argvars[1], patbuf);
16546 char_u *sub = get_tv_string_buf_chk(&argvars[2], subbuf);
16547 char_u *flg = get_tv_string_buf_chk(&argvars[3], flagsbuf);
16548
Bram Moolenaar0d660222005-01-07 21:51:51 +000016549 rettv->v_type = VAR_STRING;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016550 if (str == NULL || pat == NULL || sub == NULL || flg == NULL)
16551 rettv->vval.v_string = NULL;
16552 else
16553 rettv->vval.v_string = do_string_sub(str, pat, sub, flg);
Bram Moolenaar0d660222005-01-07 21:51:51 +000016554}
16555
16556/*
Bram Moolenaar54ff3412005-04-20 19:48:33 +000016557 * "synID(lnum, col, trans)" function
Bram Moolenaar071d4272004-06-13 20:20:40 +000016558 */
16559/*ARGSUSED*/
16560 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016561f_synID(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016562 typval_T *argvars;
16563 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016564{
16565 int id = 0;
16566#ifdef FEAT_SYN_HL
Bram Moolenaar54ff3412005-04-20 19:48:33 +000016567 long lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016568 long col;
16569 int trans;
Bram Moolenaar92124a32005-06-17 22:03:40 +000016570 int transerr = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016571
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016572 lnum = get_tv_lnum(argvars); /* -1 on type error */
16573 col = get_tv_number(&argvars[1]) - 1; /* -1 on type error */
16574 trans = get_tv_number_chk(&argvars[2], &transerr);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016575
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016576 if (!transerr && lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count
Bram Moolenaar54ff3412005-04-20 19:48:33 +000016577 && col >= 0 && col < (long)STRLEN(ml_get(lnum)))
Bram Moolenaar56cefaf2008-01-12 15:47:10 +000016578 id = syn_get_id(curwin, lnum, (colnr_T)col, trans, NULL, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016579#endif
16580
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016581 rettv->vval.v_number = id;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016582}
16583
16584/*
16585 * "synIDattr(id, what [, mode])" function
16586 */
16587/*ARGSUSED*/
16588 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016589f_synIDattr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016590 typval_T *argvars;
16591 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016592{
16593 char_u *p = NULL;
16594#ifdef FEAT_SYN_HL
16595 int id;
16596 char_u *what;
16597 char_u *mode;
16598 char_u modebuf[NUMBUFLEN];
16599 int modec;
16600
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016601 id = get_tv_number(&argvars[0]);
16602 what = get_tv_string(&argvars[1]);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000016603 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000016604 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016605 mode = get_tv_string_buf(&argvars[2], modebuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016606 modec = TOLOWER_ASC(mode[0]);
16607 if (modec != 't' && modec != 'c'
16608#ifdef FEAT_GUI
16609 && modec != 'g'
16610#endif
16611 )
16612 modec = 0; /* replace invalid with current */
16613 }
16614 else
16615 {
16616#ifdef FEAT_GUI
16617 if (gui.in_use)
16618 modec = 'g';
16619 else
16620#endif
16621 if (t_colors > 1)
16622 modec = 'c';
16623 else
16624 modec = 't';
16625 }
16626
16627
16628 switch (TOLOWER_ASC(what[0]))
16629 {
16630 case 'b':
16631 if (TOLOWER_ASC(what[1]) == 'g') /* bg[#] */
16632 p = highlight_color(id, what, modec);
16633 else /* bold */
16634 p = highlight_has_attr(id, HL_BOLD, modec);
16635 break;
16636
16637 case 'f': /* fg[#] */
16638 p = highlight_color(id, what, modec);
16639 break;
16640
16641 case 'i':
16642 if (TOLOWER_ASC(what[1]) == 'n') /* inverse */
16643 p = highlight_has_attr(id, HL_INVERSE, modec);
16644 else /* italic */
16645 p = highlight_has_attr(id, HL_ITALIC, modec);
16646 break;
16647
16648 case 'n': /* name */
16649 p = get_highlight_name(NULL, id - 1);
16650 break;
16651
16652 case 'r': /* reverse */
16653 p = highlight_has_attr(id, HL_INVERSE, modec);
16654 break;
16655
Bram Moolenaar6f507d62008-11-28 10:16:05 +000016656 case 's':
16657 if (TOLOWER_ASC(what[1]) == 'p') /* sp[#] */
16658 p = highlight_color(id, what, modec);
16659 else /* standout */
16660 p = highlight_has_attr(id, HL_STANDOUT, modec);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016661 break;
16662
Bram Moolenaar5b743bf2005-03-15 22:50:43 +000016663 case 'u':
16664 if (STRLEN(what) <= 5 || TOLOWER_ASC(what[5]) != 'c')
16665 /* underline */
16666 p = highlight_has_attr(id, HL_UNDERLINE, modec);
16667 else
16668 /* undercurl */
16669 p = highlight_has_attr(id, HL_UNDERCURL, modec);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016670 break;
16671 }
16672
16673 if (p != NULL)
16674 p = vim_strsave(p);
16675#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016676 rettv->v_type = VAR_STRING;
16677 rettv->vval.v_string = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016678}
16679
16680/*
16681 * "synIDtrans(id)" function
16682 */
16683/*ARGSUSED*/
16684 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016685f_synIDtrans(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016686 typval_T *argvars;
16687 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016688{
16689 int id;
16690
16691#ifdef FEAT_SYN_HL
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016692 id = get_tv_number(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016693
16694 if (id > 0)
16695 id = syn_get_final_id(id);
16696 else
16697#endif
16698 id = 0;
16699
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016700 rettv->vval.v_number = id;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016701}
16702
16703/*
Bram Moolenaar9d188ab2008-01-10 21:24:39 +000016704 * "synstack(lnum, col)" function
16705 */
16706/*ARGSUSED*/
16707 static void
16708f_synstack(argvars, rettv)
16709 typval_T *argvars;
16710 typval_T *rettv;
16711{
16712#ifdef FEAT_SYN_HL
16713 long lnum;
16714 long col;
16715 int i;
16716 int id;
16717#endif
16718
16719 rettv->v_type = VAR_LIST;
16720 rettv->vval.v_list = NULL;
16721
16722#ifdef FEAT_SYN_HL
16723 lnum = get_tv_lnum(argvars); /* -1 on type error */
16724 col = get_tv_number(&argvars[1]) - 1; /* -1 on type error */
16725
16726 if (lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count
Bram Moolenaar6cad8bd2008-09-10 13:39:10 +000016727 && col >= 0 && (col == 0 || col < (long)STRLEN(ml_get(lnum)))
Bram Moolenaar9d188ab2008-01-10 21:24:39 +000016728 && rettv_list_alloc(rettv) != FAIL)
16729 {
Bram Moolenaar56cefaf2008-01-12 15:47:10 +000016730 (void)syn_get_id(curwin, lnum, (colnr_T)col, FALSE, NULL, TRUE);
Bram Moolenaar9d188ab2008-01-10 21:24:39 +000016731 for (i = 0; ; ++i)
16732 {
16733 id = syn_get_stack_item(i);
16734 if (id < 0)
16735 break;
16736 if (list_append_number(rettv->vval.v_list, id) == FAIL)
16737 break;
16738 }
16739 }
16740#endif
16741}
16742
16743/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000016744 * "system()" function
16745 */
16746 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016747f_system(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016748 typval_T *argvars;
16749 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016750{
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016751 char_u *res = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016752 char_u *p;
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016753 char_u *infile = NULL;
16754 char_u buf[NUMBUFLEN];
16755 int err = FALSE;
16756 FILE *fd;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016757
Bram Moolenaard9fe7c42007-04-29 11:53:56 +000016758 if (check_restricted() || check_secure())
Bram Moolenaare6f565a2007-12-07 16:09:32 +000016759 goto done;
Bram Moolenaard9fe7c42007-04-29 11:53:56 +000016760
Bram Moolenaar49cd9572005-01-03 21:06:01 +000016761 if (argvars[1].v_type != VAR_UNKNOWN)
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016762 {
16763 /*
16764 * Write the string to a temp file, to be used for input of the shell
16765 * command.
16766 */
16767 if ((infile = vim_tempname('i')) == NULL)
16768 {
16769 EMSG(_(e_notmp));
Bram Moolenaare6f565a2007-12-07 16:09:32 +000016770 goto done;
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016771 }
16772
16773 fd = mch_fopen((char *)infile, WRITEBIN);
16774 if (fd == NULL)
16775 {
16776 EMSG2(_(e_notopen), infile);
16777 goto done;
16778 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016779 p = get_tv_string_buf_chk(&argvars[1], buf);
16780 if (p == NULL)
Bram Moolenaareb3593b2006-04-22 22:33:57 +000016781 {
16782 fclose(fd);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016783 goto done; /* type error; errmsg already given */
Bram Moolenaareb3593b2006-04-22 22:33:57 +000016784 }
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016785 if (fwrite(p, STRLEN(p), 1, fd) != 1)
16786 err = TRUE;
16787 if (fclose(fd) != 0)
16788 err = TRUE;
16789 if (err)
16790 {
16791 EMSG(_("E677: Error writing temp file"));
16792 goto done;
16793 }
16794 }
16795
Bram Moolenaare580b0c2006-03-21 21:33:03 +000016796 res = get_cmd_output(get_tv_string(&argvars[0]), infile,
16797 SHELL_SILENT | SHELL_COOKED);
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016798
Bram Moolenaar071d4272004-06-13 20:20:40 +000016799#ifdef USE_CR
16800 /* translate <CR> into <NL> */
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016801 if (res != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000016802 {
16803 char_u *s;
16804
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016805 for (s = res; *s; ++s)
Bram Moolenaar071d4272004-06-13 20:20:40 +000016806 {
16807 if (*s == CAR)
16808 *s = NL;
16809 }
16810 }
16811#else
16812# ifdef USE_CRNL
16813 /* translate <CR><NL> into <NL> */
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016814 if (res != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000016815 {
16816 char_u *s, *d;
16817
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016818 d = res;
16819 for (s = res; *s; ++s)
Bram Moolenaar071d4272004-06-13 20:20:40 +000016820 {
16821 if (s[0] == CAR && s[1] == NL)
16822 ++s;
16823 *d++ = *s;
16824 }
16825 *d = NUL;
16826 }
16827# endif
16828#endif
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016829
16830done:
16831 if (infile != NULL)
16832 {
16833 mch_remove(infile);
16834 vim_free(infile);
16835 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016836 rettv->v_type = VAR_STRING;
16837 rettv->vval.v_string = res;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016838}
16839
16840/*
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016841 * "tabpagebuflist()" function
16842 */
16843/* ARGSUSED */
16844 static void
16845f_tabpagebuflist(argvars, rettv)
16846 typval_T *argvars;
16847 typval_T *rettv;
16848{
16849#ifndef FEAT_WINDOWS
16850 rettv->vval.v_number = 0;
16851#else
16852 tabpage_T *tp;
16853 win_T *wp = NULL;
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016854
16855 if (argvars[0].v_type == VAR_UNKNOWN)
16856 wp = firstwin;
16857 else
16858 {
16859 tp = find_tabpage((int)get_tv_number(&argvars[0]));
16860 if (tp != NULL)
Bram Moolenaar238a5642006-02-21 22:12:05 +000016861 wp = (tp == curtab) ? firstwin : tp->tp_firstwin;
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016862 }
16863 if (wp == NULL)
16864 rettv->vval.v_number = 0;
16865 else
16866 {
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016867 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016868 rettv->vval.v_number = 0;
16869 else
16870 {
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016871 for (; wp != NULL; wp = wp->w_next)
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016872 if (list_append_number(rettv->vval.v_list,
16873 wp->w_buffer->b_fnum) == FAIL)
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016874 break;
16875 }
16876 }
16877#endif
16878}
16879
16880
16881/*
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000016882 * "tabpagenr()" function
16883 */
16884/* ARGSUSED */
16885 static void
16886f_tabpagenr(argvars, rettv)
16887 typval_T *argvars;
16888 typval_T *rettv;
16889{
16890 int nr = 1;
16891#ifdef FEAT_WINDOWS
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000016892 char_u *arg;
16893
16894 if (argvars[0].v_type != VAR_UNKNOWN)
16895 {
16896 arg = get_tv_string_chk(&argvars[0]);
16897 nr = 0;
16898 if (arg != NULL)
16899 {
16900 if (STRCMP(arg, "$") == 0)
Bram Moolenaara5621492006-02-25 21:55:24 +000016901 nr = tabpage_index(NULL) - 1;
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000016902 else
16903 EMSG2(_(e_invexpr2), arg);
16904 }
16905 }
16906 else
Bram Moolenaar32466aa2006-02-24 23:53:04 +000016907 nr = tabpage_index(curtab);
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000016908#endif
16909 rettv->vval.v_number = nr;
16910}
16911
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016912
16913#ifdef FEAT_WINDOWS
16914static int get_winnr __ARGS((tabpage_T *tp, typval_T *argvar));
16915
16916/*
16917 * Common code for tabpagewinnr() and winnr().
16918 */
16919 static int
16920get_winnr(tp, argvar)
16921 tabpage_T *tp;
16922 typval_T *argvar;
16923{
16924 win_T *twin;
16925 int nr = 1;
16926 win_T *wp;
16927 char_u *arg;
16928
16929 twin = (tp == curtab) ? curwin : tp->tp_curwin;
16930 if (argvar->v_type != VAR_UNKNOWN)
16931 {
16932 arg = get_tv_string_chk(argvar);
16933 if (arg == NULL)
16934 nr = 0; /* type error; errmsg already given */
16935 else if (STRCMP(arg, "$") == 0)
16936 twin = (tp == curtab) ? lastwin : tp->tp_lastwin;
16937 else if (STRCMP(arg, "#") == 0)
16938 {
16939 twin = (tp == curtab) ? prevwin : tp->tp_prevwin;
16940 if (twin == NULL)
16941 nr = 0;
16942 }
16943 else
16944 {
16945 EMSG2(_(e_invexpr2), arg);
16946 nr = 0;
16947 }
16948 }
16949
16950 if (nr > 0)
16951 for (wp = (tp == curtab) ? firstwin : tp->tp_firstwin;
16952 wp != twin; wp = wp->w_next)
Bram Moolenaar4940e3f2007-03-25 15:49:08 +000016953 {
16954 if (wp == NULL)
16955 {
16956 /* didn't find it in this tabpage */
16957 nr = 0;
16958 break;
16959 }
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016960 ++nr;
Bram Moolenaar4940e3f2007-03-25 15:49:08 +000016961 }
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016962 return nr;
16963}
16964#endif
16965
16966/*
16967 * "tabpagewinnr()" function
16968 */
16969/* ARGSUSED */
16970 static void
16971f_tabpagewinnr(argvars, rettv)
16972 typval_T *argvars;
16973 typval_T *rettv;
16974{
16975 int nr = 1;
16976#ifdef FEAT_WINDOWS
16977 tabpage_T *tp;
16978
16979 tp = find_tabpage((int)get_tv_number(&argvars[0]));
16980 if (tp == NULL)
16981 nr = 0;
16982 else
16983 nr = get_winnr(tp, &argvars[1]);
16984#endif
16985 rettv->vval.v_number = nr;
16986}
16987
16988
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000016989/*
Bram Moolenaard43b6cf2005-09-09 19:53:42 +000016990 * "tagfiles()" function
16991 */
16992/*ARGSUSED*/
16993 static void
16994f_tagfiles(argvars, rettv)
16995 typval_T *argvars;
16996 typval_T *rettv;
16997{
16998 char_u fname[MAXPATHL + 1];
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016999 tagname_T tn;
17000 int first;
Bram Moolenaard43b6cf2005-09-09 19:53:42 +000017001
Bram Moolenaareddf53b2006-02-27 00:11:10 +000017002 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaard43b6cf2005-09-09 19:53:42 +000017003 {
17004 rettv->vval.v_number = 0;
17005 return;
17006 }
Bram Moolenaard43b6cf2005-09-09 19:53:42 +000017007
Bram Moolenaareddf53b2006-02-27 00:11:10 +000017008 for (first = TRUE; ; first = FALSE)
17009 if (get_tagfname(&tn, first, fname) == FAIL
17010 || list_append_string(rettv->vval.v_list, fname, -1) == FAIL)
Bram Moolenaard43b6cf2005-09-09 19:53:42 +000017011 break;
Bram Moolenaareddf53b2006-02-27 00:11:10 +000017012 tagname_free(&tn);
Bram Moolenaard43b6cf2005-09-09 19:53:42 +000017013}
17014
17015/*
Bram Moolenaare2ac10d2005-03-07 23:26:06 +000017016 * "taglist()" function
Bram Moolenaar19a09a12005-03-04 23:39:37 +000017017 */
17018 static void
17019f_taglist(argvars, rettv)
17020 typval_T *argvars;
17021 typval_T *rettv;
17022{
17023 char_u *tag_pattern;
Bram Moolenaar19a09a12005-03-04 23:39:37 +000017024
17025 tag_pattern = get_tv_string(&argvars[0]);
17026
17027 rettv->vval.v_number = FALSE;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000017028 if (*tag_pattern == NUL)
17029 return;
Bram Moolenaar19a09a12005-03-04 23:39:37 +000017030
Bram Moolenaareddf53b2006-02-27 00:11:10 +000017031 if (rettv_list_alloc(rettv) == OK)
17032 (void)get_tags(rettv->vval.v_list, tag_pattern);
Bram Moolenaar19a09a12005-03-04 23:39:37 +000017033}
17034
17035/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000017036 * "tempname()" function
17037 */
17038/*ARGSUSED*/
17039 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017040f_tempname(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017041 typval_T *argvars;
17042 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017043{
17044 static int x = 'A';
17045
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017046 rettv->v_type = VAR_STRING;
17047 rettv->vval.v_string = vim_tempname(x);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017048
17049 /* Advance 'x' to use A-Z and 0-9, so that there are at least 34 different
17050 * names. Skip 'I' and 'O', they are used for shell redirection. */
17051 do
17052 {
17053 if (x == 'Z')
17054 x = '0';
17055 else if (x == '9')
17056 x = 'A';
17057 else
17058 {
17059#ifdef EBCDIC
17060 if (x == 'I')
17061 x = 'J';
17062 else if (x == 'R')
17063 x = 'S';
17064 else
17065#endif
17066 ++x;
17067 }
17068 } while (x == 'I' || x == 'O');
17069}
17070
17071/*
Bram Moolenaard52d9742005-08-21 22:20:28 +000017072 * "test(list)" function: Just checking the walls...
17073 */
17074/*ARGSUSED*/
17075 static void
17076f_test(argvars, rettv)
17077 typval_T *argvars;
17078 typval_T *rettv;
17079{
17080 /* Used for unit testing. Change the code below to your liking. */
17081#if 0
17082 listitem_T *li;
17083 list_T *l;
17084 char_u *bad, *good;
17085
17086 if (argvars[0].v_type != VAR_LIST)
17087 return;
17088 l = argvars[0].vval.v_list;
17089 if (l == NULL)
17090 return;
17091 li = l->lv_first;
17092 if (li == NULL)
17093 return;
17094 bad = get_tv_string(&li->li_tv);
17095 li = li->li_next;
17096 if (li == NULL)
17097 return;
17098 good = get_tv_string(&li->li_tv);
17099 rettv->vval.v_number = test_edit_score(bad, good);
17100#endif
17101}
17102
17103/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000017104 * "tolower(string)" function
17105 */
17106 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017107f_tolower(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017108 typval_T *argvars;
17109 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017110{
17111 char_u *p;
17112
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017113 p = vim_strsave(get_tv_string(&argvars[0]));
17114 rettv->v_type = VAR_STRING;
17115 rettv->vval.v_string = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017116
17117 if (p != NULL)
17118 while (*p != NUL)
17119 {
17120#ifdef FEAT_MBYTE
17121 int l;
17122
17123 if (enc_utf8)
17124 {
17125 int c, lc;
17126
17127 c = utf_ptr2char(p);
17128 lc = utf_tolower(c);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000017129 l = utf_ptr2len(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017130 /* TODO: reallocate string when byte count changes. */
17131 if (utf_char2len(lc) == l)
17132 utf_char2bytes(lc, p);
17133 p += l;
17134 }
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000017135 else if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017136 p += l; /* skip multi-byte character */
17137 else
17138#endif
17139 {
17140 *p = TOLOWER_LOC(*p); /* note that tolower() can be a macro */
17141 ++p;
17142 }
17143 }
17144}
17145
17146/*
17147 * "toupper(string)" function
17148 */
17149 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017150f_toupper(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017151 typval_T *argvars;
17152 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017153{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017154 rettv->v_type = VAR_STRING;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000017155 rettv->vval.v_string = strup_save(get_tv_string(&argvars[0]));
Bram Moolenaar071d4272004-06-13 20:20:40 +000017156}
17157
17158/*
Bram Moolenaar8299df92004-07-10 09:47:34 +000017159 * "tr(string, fromstr, tostr)" function
17160 */
17161 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017162f_tr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017163 typval_T *argvars;
17164 typval_T *rettv;
Bram Moolenaar8299df92004-07-10 09:47:34 +000017165{
17166 char_u *instr;
17167 char_u *fromstr;
17168 char_u *tostr;
17169 char_u *p;
17170#ifdef FEAT_MBYTE
Bram Moolenaar342337a2005-07-21 21:11:17 +000017171 int inlen;
17172 int fromlen;
17173 int tolen;
Bram Moolenaar8299df92004-07-10 09:47:34 +000017174 int idx;
17175 char_u *cpstr;
17176 int cplen;
17177 int first = TRUE;
17178#endif
17179 char_u buf[NUMBUFLEN];
17180 char_u buf2[NUMBUFLEN];
17181 garray_T ga;
17182
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017183 instr = get_tv_string(&argvars[0]);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000017184 fromstr = get_tv_string_buf_chk(&argvars[1], buf);
17185 tostr = get_tv_string_buf_chk(&argvars[2], buf2);
Bram Moolenaar8299df92004-07-10 09:47:34 +000017186
17187 /* Default return value: empty string. */
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017188 rettv->v_type = VAR_STRING;
17189 rettv->vval.v_string = NULL;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000017190 if (fromstr == NULL || tostr == NULL)
17191 return; /* type error; errmsg already given */
Bram Moolenaar8299df92004-07-10 09:47:34 +000017192 ga_init2(&ga, (int)sizeof(char), 80);
17193
17194#ifdef FEAT_MBYTE
17195 if (!has_mbyte)
17196#endif
17197 /* not multi-byte: fromstr and tostr must be the same length */
17198 if (STRLEN(fromstr) != STRLEN(tostr))
17199 {
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000017200#ifdef FEAT_MBYTE
Bram Moolenaar8299df92004-07-10 09:47:34 +000017201error:
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000017202#endif
Bram Moolenaar8299df92004-07-10 09:47:34 +000017203 EMSG2(_(e_invarg2), fromstr);
17204 ga_clear(&ga);
17205 return;
17206 }
17207
17208 /* fromstr and tostr have to contain the same number of chars */
17209 while (*instr != NUL)
17210 {
17211#ifdef FEAT_MBYTE
17212 if (has_mbyte)
17213 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000017214 inlen = (*mb_ptr2len)(instr);
Bram Moolenaar8299df92004-07-10 09:47:34 +000017215 cpstr = instr;
17216 cplen = inlen;
17217 idx = 0;
17218 for (p = fromstr; *p != NUL; p += fromlen)
17219 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000017220 fromlen = (*mb_ptr2len)(p);
Bram Moolenaar8299df92004-07-10 09:47:34 +000017221 if (fromlen == inlen && STRNCMP(instr, p, inlen) == 0)
17222 {
17223 for (p = tostr; *p != NUL; p += tolen)
17224 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000017225 tolen = (*mb_ptr2len)(p);
Bram Moolenaar8299df92004-07-10 09:47:34 +000017226 if (idx-- == 0)
17227 {
17228 cplen = tolen;
17229 cpstr = p;
17230 break;
17231 }
17232 }
17233 if (*p == NUL) /* tostr is shorter than fromstr */
17234 goto error;
17235 break;
17236 }
17237 ++idx;
17238 }
17239
17240 if (first && cpstr == instr)
17241 {
17242 /* Check that fromstr and tostr have the same number of
17243 * (multi-byte) characters. Done only once when a character
17244 * of instr doesn't appear in fromstr. */
17245 first = FALSE;
17246 for (p = tostr; *p != NUL; p += tolen)
17247 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000017248 tolen = (*mb_ptr2len)(p);
Bram Moolenaar8299df92004-07-10 09:47:34 +000017249 --idx;
17250 }
17251 if (idx != 0)
17252 goto error;
17253 }
17254
17255 ga_grow(&ga, cplen);
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +000017256 mch_memmove((char *)ga.ga_data + ga.ga_len, cpstr, (size_t)cplen);
Bram Moolenaar8299df92004-07-10 09:47:34 +000017257 ga.ga_len += cplen;
Bram Moolenaar8299df92004-07-10 09:47:34 +000017258
17259 instr += inlen;
17260 }
17261 else
17262#endif
17263 {
17264 /* When not using multi-byte chars we can do it faster. */
17265 p = vim_strchr(fromstr, *instr);
17266 if (p != NULL)
17267 ga_append(&ga, tostr[p - fromstr]);
17268 else
17269 ga_append(&ga, *instr);
17270 ++instr;
17271 }
17272 }
17273
Bram Moolenaar61b974b2006-12-05 09:32:29 +000017274 /* add a terminating NUL */
17275 ga_grow(&ga, 1);
17276 ga_append(&ga, NUL);
17277
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017278 rettv->vval.v_string = ga.ga_data;
Bram Moolenaar8299df92004-07-10 09:47:34 +000017279}
17280
Bram Moolenaar8c8de832008-06-24 22:58:06 +000017281#ifdef FEAT_FLOAT
17282/*
17283 * "trunc({float})" function
17284 */
17285 static void
17286f_trunc(argvars, rettv)
17287 typval_T *argvars;
17288 typval_T *rettv;
17289{
17290 float_T f;
17291
17292 rettv->v_type = VAR_FLOAT;
17293 if (get_float_arg(argvars, &f) == OK)
17294 /* trunc() is not in C90, use floor() or ceil() instead. */
17295 rettv->vval.v_float = f > 0 ? floor(f) : ceil(f);
17296 else
17297 rettv->vval.v_float = 0.0;
17298}
17299#endif
17300
Bram Moolenaar8299df92004-07-10 09:47:34 +000017301/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000017302 * "type(expr)" function
17303 */
17304 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017305f_type(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017306 typval_T *argvars;
17307 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017308{
Bram Moolenaar6cc16192005-01-08 21:49:45 +000017309 int n;
17310
17311 switch (argvars[0].v_type)
17312 {
17313 case VAR_NUMBER: n = 0; break;
17314 case VAR_STRING: n = 1; break;
17315 case VAR_FUNC: n = 2; break;
17316 case VAR_LIST: n = 3; break;
Bram Moolenaar758711c2005-02-02 23:11:38 +000017317 case VAR_DICT: n = 4; break;
Bram Moolenaar8c8de832008-06-24 22:58:06 +000017318#ifdef FEAT_FLOAT
17319 case VAR_FLOAT: n = 5; break;
17320#endif
Bram Moolenaar6cc16192005-01-08 21:49:45 +000017321 default: EMSG2(_(e_intern2), "f_type()"); n = 0; break;
17322 }
17323 rettv->vval.v_number = n;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017324}
17325
17326/*
Bram Moolenaar8c711452005-01-14 21:53:12 +000017327 * "values(dict)" function
17328 */
17329 static void
17330f_values(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017331 typval_T *argvars;
17332 typval_T *rettv;
Bram Moolenaar8c711452005-01-14 21:53:12 +000017333{
17334 dict_list(argvars, rettv, 1);
17335}
17336
17337/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000017338 * "virtcol(string)" function
17339 */
17340 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017341f_virtcol(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017342 typval_T *argvars;
17343 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017344{
17345 colnr_T vcol = 0;
17346 pos_T *fp;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000017347 int fnum = curbuf->b_fnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017348
Bram Moolenaar0e34f622006-03-03 23:00:03 +000017349 fp = var2fpos(&argvars[0], FALSE, &fnum);
17350 if (fp != NULL && fp->lnum <= curbuf->b_ml.ml_line_count
17351 && fnum == curbuf->b_fnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017352 {
17353 getvvcol(curwin, fp, NULL, NULL, &vcol);
17354 ++vcol;
17355 }
17356
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017357 rettv->vval.v_number = vcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017358}
17359
17360/*
17361 * "visualmode()" function
17362 */
17363/*ARGSUSED*/
17364 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017365f_visualmode(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017366 typval_T *argvars;
17367 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017368{
17369#ifdef FEAT_VISUAL
17370 char_u str[2];
17371
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017372 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017373 str[0] = curbuf->b_visual_mode_eval;
17374 str[1] = NUL;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017375 rettv->vval.v_string = vim_strsave(str);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017376
17377 /* A non-zero number or non-empty string argument: reset mode. */
Bram Moolenaar05bb9532008-07-04 09:44:11 +000017378 if (non_zero_arg(&argvars[0]))
Bram Moolenaar071d4272004-06-13 20:20:40 +000017379 curbuf->b_visual_mode_eval = NUL;
17380#else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017381 rettv->vval.v_number = 0; /* return anything, it won't work anyway */
Bram Moolenaar071d4272004-06-13 20:20:40 +000017382#endif
17383}
17384
17385/*
17386 * "winbufnr(nr)" function
17387 */
17388 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017389f_winbufnr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017390 typval_T *argvars;
17391 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017392{
17393 win_T *wp;
17394
Bram Moolenaar99ebf042006-04-15 20:28:54 +000017395 wp = find_win_by_nr(&argvars[0], NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017396 if (wp == NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017397 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017398 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017399 rettv->vval.v_number = wp->w_buffer->b_fnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017400}
17401
17402/*
17403 * "wincol()" function
17404 */
17405/*ARGSUSED*/
17406 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017407f_wincol(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017408 typval_T *argvars;
17409 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017410{
17411 validate_cursor();
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017412 rettv->vval.v_number = curwin->w_wcol + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017413}
17414
17415/*
17416 * "winheight(nr)" function
17417 */
17418 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017419f_winheight(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017420 typval_T *argvars;
17421 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017422{
17423 win_T *wp;
17424
Bram Moolenaar99ebf042006-04-15 20:28:54 +000017425 wp = find_win_by_nr(&argvars[0], NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017426 if (wp == NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017427 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017428 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017429 rettv->vval.v_number = wp->w_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017430}
17431
17432/*
17433 * "winline()" function
17434 */
17435/*ARGSUSED*/
17436 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017437f_winline(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017438 typval_T *argvars;
17439 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017440{
17441 validate_cursor();
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017442 rettv->vval.v_number = curwin->w_wrow + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017443}
17444
17445/*
17446 * "winnr()" function
17447 */
17448/* ARGSUSED */
17449 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017450f_winnr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017451 typval_T *argvars;
17452 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017453{
17454 int nr = 1;
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000017455
Bram Moolenaar071d4272004-06-13 20:20:40 +000017456#ifdef FEAT_WINDOWS
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000017457 nr = get_winnr(curtab, &argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017458#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017459 rettv->vval.v_number = nr;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017460}
17461
17462/*
17463 * "winrestcmd()" function
17464 */
17465/* ARGSUSED */
17466 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017467f_winrestcmd(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017468 typval_T *argvars;
17469 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017470{
17471#ifdef FEAT_WINDOWS
17472 win_T *wp;
17473 int winnr = 1;
17474 garray_T ga;
17475 char_u buf[50];
17476
17477 ga_init2(&ga, (int)sizeof(char), 70);
17478 for (wp = firstwin; wp != NULL; wp = wp->w_next)
17479 {
17480 sprintf((char *)buf, "%dresize %d|", winnr, wp->w_height);
17481 ga_concat(&ga, buf);
17482# ifdef FEAT_VERTSPLIT
17483 sprintf((char *)buf, "vert %dresize %d|", winnr, wp->w_width);
17484 ga_concat(&ga, buf);
17485# endif
17486 ++winnr;
17487 }
Bram Moolenaar269ec652004-07-29 08:43:53 +000017488 ga_append(&ga, NUL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017489
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017490 rettv->vval.v_string = ga.ga_data;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017491#else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017492 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017493#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017494 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017495}
17496
17497/*
Bram Moolenaar768b8c42006-03-04 21:58:33 +000017498 * "winrestview()" function
17499 */
17500/* ARGSUSED */
17501 static void
17502f_winrestview(argvars, rettv)
17503 typval_T *argvars;
17504 typval_T *rettv;
17505{
17506 dict_T *dict;
17507
17508 if (argvars[0].v_type != VAR_DICT
17509 || (dict = argvars[0].vval.v_dict) == NULL)
17510 EMSG(_(e_invarg));
17511 else
17512 {
17513 curwin->w_cursor.lnum = get_dict_number(dict, (char_u *)"lnum");
17514 curwin->w_cursor.col = get_dict_number(dict, (char_u *)"col");
17515#ifdef FEAT_VIRTUALEDIT
17516 curwin->w_cursor.coladd = get_dict_number(dict, (char_u *)"coladd");
17517#endif
17518 curwin->w_curswant = get_dict_number(dict, (char_u *)"curswant");
Bram Moolenaar362e1a32006-03-06 23:29:24 +000017519 curwin->w_set_curswant = FALSE;
Bram Moolenaar768b8c42006-03-04 21:58:33 +000017520
Bram Moolenaar6f11a412006-09-06 20:16:42 +000017521 set_topline(curwin, get_dict_number(dict, (char_u *)"topline"));
Bram Moolenaar768b8c42006-03-04 21:58:33 +000017522#ifdef FEAT_DIFF
17523 curwin->w_topfill = get_dict_number(dict, (char_u *)"topfill");
17524#endif
17525 curwin->w_leftcol = get_dict_number(dict, (char_u *)"leftcol");
17526 curwin->w_skipcol = get_dict_number(dict, (char_u *)"skipcol");
17527
17528 check_cursor();
17529 changed_cline_bef_curs();
17530 invalidate_botline();
17531 redraw_later(VALID);
17532
17533 if (curwin->w_topline == 0)
17534 curwin->w_topline = 1;
17535 if (curwin->w_topline > curbuf->b_ml.ml_line_count)
17536 curwin->w_topline = curbuf->b_ml.ml_line_count;
17537#ifdef FEAT_DIFF
17538 check_topfill(curwin, TRUE);
17539#endif
17540 }
17541}
17542
17543/*
17544 * "winsaveview()" function
17545 */
17546/* ARGSUSED */
17547 static void
17548f_winsaveview(argvars, rettv)
17549 typval_T *argvars;
17550 typval_T *rettv;
17551{
17552 dict_T *dict;
17553
17554 dict = dict_alloc();
17555 if (dict == NULL)
17556 return;
17557 rettv->v_type = VAR_DICT;
17558 rettv->vval.v_dict = dict;
17559 ++dict->dv_refcount;
17560
17561 dict_add_nr_str(dict, "lnum", (long)curwin->w_cursor.lnum, NULL);
17562 dict_add_nr_str(dict, "col", (long)curwin->w_cursor.col, NULL);
17563#ifdef FEAT_VIRTUALEDIT
17564 dict_add_nr_str(dict, "coladd", (long)curwin->w_cursor.coladd, NULL);
17565#endif
Bram Moolenaar9af1ba92006-08-29 19:55:53 +000017566 update_curswant();
Bram Moolenaar768b8c42006-03-04 21:58:33 +000017567 dict_add_nr_str(dict, "curswant", (long)curwin->w_curswant, NULL);
17568
17569 dict_add_nr_str(dict, "topline", (long)curwin->w_topline, NULL);
17570#ifdef FEAT_DIFF
17571 dict_add_nr_str(dict, "topfill", (long)curwin->w_topfill, NULL);
17572#endif
17573 dict_add_nr_str(dict, "leftcol", (long)curwin->w_leftcol, NULL);
17574 dict_add_nr_str(dict, "skipcol", (long)curwin->w_skipcol, NULL);
17575}
17576
17577/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000017578 * "winwidth(nr)" function
17579 */
17580 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017581f_winwidth(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017582 typval_T *argvars;
17583 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017584{
17585 win_T *wp;
17586
Bram Moolenaar99ebf042006-04-15 20:28:54 +000017587 wp = find_win_by_nr(&argvars[0], NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017588 if (wp == NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017589 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017590 else
17591#ifdef FEAT_VERTSPLIT
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017592 rettv->vval.v_number = wp->w_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017593#else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017594 rettv->vval.v_number = Columns;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017595#endif
17596}
17597
Bram Moolenaar071d4272004-06-13 20:20:40 +000017598/*
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000017599 * "writefile()" function
17600 */
17601 static void
17602f_writefile(argvars, rettv)
17603 typval_T *argvars;
17604 typval_T *rettv;
17605{
17606 int binary = FALSE;
17607 char_u *fname;
17608 FILE *fd;
17609 listitem_T *li;
17610 char_u *s;
17611 int ret = 0;
17612 int c;
17613
Bram Moolenaard9fe7c42007-04-29 11:53:56 +000017614 if (check_restricted() || check_secure())
17615 return;
17616
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000017617 if (argvars[0].v_type != VAR_LIST)
17618 {
17619 EMSG2(_(e_listarg), "writefile()");
17620 return;
17621 }
17622 if (argvars[0].vval.v_list == NULL)
17623 return;
17624
17625 if (argvars[2].v_type != VAR_UNKNOWN
17626 && STRCMP(get_tv_string(&argvars[2]), "b") == 0)
17627 binary = TRUE;
17628
17629 /* Always open the file in binary mode, library functions have a mind of
17630 * their own about CR-LF conversion. */
17631 fname = get_tv_string(&argvars[1]);
17632 if (*fname == NUL || (fd = mch_fopen((char *)fname, WRITEBIN)) == NULL)
17633 {
17634 EMSG2(_(e_notcreate), *fname == NUL ? (char_u *)_("<empty>") : fname);
17635 ret = -1;
17636 }
17637 else
17638 {
17639 for (li = argvars[0].vval.v_list->lv_first; li != NULL;
17640 li = li->li_next)
17641 {
17642 for (s = get_tv_string(&li->li_tv); *s != NUL; ++s)
17643 {
17644 if (*s == '\n')
17645 c = putc(NUL, fd);
17646 else
17647 c = putc(*s, fd);
17648 if (c == EOF)
17649 {
17650 ret = -1;
17651 break;
17652 }
17653 }
17654 if (!binary || li->li_next != NULL)
17655 if (putc('\n', fd) == EOF)
17656 {
17657 ret = -1;
17658 break;
17659 }
17660 if (ret < 0)
17661 {
17662 EMSG(_(e_write));
17663 break;
17664 }
17665 }
17666 fclose(fd);
17667 }
17668
17669 rettv->vval.v_number = ret;
17670}
17671
17672/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000017673 * Translate a String variable into a position.
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017674 * Returns NULL when there is an error.
Bram Moolenaar071d4272004-06-13 20:20:40 +000017675 */
17676 static pos_T *
Bram Moolenaar477933c2007-07-17 14:32:23 +000017677var2fpos(varp, dollar_lnum, fnum)
Bram Moolenaar33570922005-01-25 22:26:29 +000017678 typval_T *varp;
Bram Moolenaar477933c2007-07-17 14:32:23 +000017679 int dollar_lnum; /* TRUE when $ is last line */
Bram Moolenaar0e34f622006-03-03 23:00:03 +000017680 int *fnum; /* set to fnum for '0, 'A, etc. */
Bram Moolenaar071d4272004-06-13 20:20:40 +000017681{
Bram Moolenaar261bfea2006-03-01 22:12:31 +000017682 char_u *name;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017683 static pos_T pos;
Bram Moolenaar261bfea2006-03-01 22:12:31 +000017684 pos_T *pp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017685
Bram Moolenaara5525202006-03-02 22:52:09 +000017686 /* Argument can be [lnum, col, coladd]. */
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017687 if (varp->v_type == VAR_LIST)
17688 {
17689 list_T *l;
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017690 int len;
Bram Moolenaara5525202006-03-02 22:52:09 +000017691 int error = FALSE;
Bram Moolenaar477933c2007-07-17 14:32:23 +000017692 listitem_T *li;
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017693
17694 l = varp->vval.v_list;
17695 if (l == NULL)
17696 return NULL;
17697
17698 /* Get the line number */
Bram Moolenaara5525202006-03-02 22:52:09 +000017699 pos.lnum = list_find_nr(l, 0L, &error);
17700 if (error || pos.lnum <= 0 || pos.lnum > curbuf->b_ml.ml_line_count)
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017701 return NULL; /* invalid line number */
17702
17703 /* Get the column number */
Bram Moolenaara5525202006-03-02 22:52:09 +000017704 pos.col = list_find_nr(l, 1L, &error);
17705 if (error)
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017706 return NULL;
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017707 len = (long)STRLEN(ml_get(pos.lnum));
Bram Moolenaar477933c2007-07-17 14:32:23 +000017708
17709 /* We accept "$" for the column number: last column. */
17710 li = list_find(l, 1L);
17711 if (li != NULL && li->li_tv.v_type == VAR_STRING
17712 && li->li_tv.vval.v_string != NULL
17713 && STRCMP(li->li_tv.vval.v_string, "$") == 0)
17714 pos.col = len + 1;
17715
Bram Moolenaara5525202006-03-02 22:52:09 +000017716 /* Accept a position up to the NUL after the line. */
Bram Moolenaar4c3f5362006-04-11 21:38:50 +000017717 if (pos.col == 0 || (int)pos.col > len + 1)
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017718 return NULL; /* invalid column number */
Bram Moolenaara5525202006-03-02 22:52:09 +000017719 --pos.col;
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017720
Bram Moolenaara5525202006-03-02 22:52:09 +000017721#ifdef FEAT_VIRTUALEDIT
17722 /* Get the virtual offset. Defaults to zero. */
17723 pos.coladd = list_find_nr(l, 2L, &error);
17724 if (error)
17725 pos.coladd = 0;
17726#endif
17727
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017728 return &pos;
17729 }
17730
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000017731 name = get_tv_string_chk(varp);
17732 if (name == NULL)
17733 return NULL;
Bram Moolenaar9ecd0232008-06-20 15:31:51 +000017734 if (name[0] == '.') /* cursor */
Bram Moolenaar071d4272004-06-13 20:20:40 +000017735 return &curwin->w_cursor;
Bram Moolenaar9ecd0232008-06-20 15:31:51 +000017736#ifdef FEAT_VISUAL
17737 if (name[0] == 'v' && name[1] == NUL) /* Visual start */
17738 {
17739 if (VIsual_active)
17740 return &VIsual;
17741 return &curwin->w_cursor;
17742 }
17743#endif
17744 if (name[0] == '\'') /* mark */
Bram Moolenaar071d4272004-06-13 20:20:40 +000017745 {
Bram Moolenaar0e34f622006-03-03 23:00:03 +000017746 pp = getmark_fnum(name[1], FALSE, fnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017747 if (pp == NULL || pp == (pos_T *)-1 || pp->lnum <= 0)
17748 return NULL;
17749 return pp;
17750 }
Bram Moolenaara5525202006-03-02 22:52:09 +000017751
17752#ifdef FEAT_VIRTUALEDIT
17753 pos.coladd = 0;
17754#endif
17755
Bram Moolenaar477933c2007-07-17 14:32:23 +000017756 if (name[0] == 'w' && dollar_lnum)
Bram Moolenaarf52c7252006-02-10 23:23:57 +000017757 {
17758 pos.col = 0;
17759 if (name[1] == '0') /* "w0": first visible line */
17760 {
Bram Moolenaarf740b292006-02-16 22:11:02 +000017761 update_topline();
Bram Moolenaarf52c7252006-02-10 23:23:57 +000017762 pos.lnum = curwin->w_topline;
17763 return &pos;
17764 }
17765 else if (name[1] == '$') /* "w$": last visible line */
17766 {
Bram Moolenaarf740b292006-02-16 22:11:02 +000017767 validate_botline();
Bram Moolenaarf52c7252006-02-10 23:23:57 +000017768 pos.lnum = curwin->w_botline - 1;
17769 return &pos;
17770 }
17771 }
17772 else if (name[0] == '$') /* last column or line */
Bram Moolenaar071d4272004-06-13 20:20:40 +000017773 {
Bram Moolenaar477933c2007-07-17 14:32:23 +000017774 if (dollar_lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017775 {
17776 pos.lnum = curbuf->b_ml.ml_line_count;
17777 pos.col = 0;
17778 }
17779 else
17780 {
17781 pos.lnum = curwin->w_cursor.lnum;
17782 pos.col = (colnr_T)STRLEN(ml_get_curline());
17783 }
17784 return &pos;
17785 }
17786 return NULL;
17787}
17788
17789/*
Bram Moolenaar0e34f622006-03-03 23:00:03 +000017790 * Convert list in "arg" into a position and optional file number.
17791 * When "fnump" is NULL there is no file number, only 3 items.
17792 * Note that the column is passed on as-is, the caller may want to decrement
17793 * it to use 1 for the first column.
17794 * Return FAIL when conversion is not possible, doesn't check the position for
17795 * validity.
17796 */
17797 static int
17798list2fpos(arg, posp, fnump)
17799 typval_T *arg;
17800 pos_T *posp;
17801 int *fnump;
17802{
17803 list_T *l = arg->vval.v_list;
17804 long i = 0;
17805 long n;
17806
Bram Moolenaarbde35262006-07-23 20:12:24 +000017807 /* List must be: [fnum, lnum, col, coladd], where "fnum" is only there
17808 * when "fnump" isn't NULL and "coladd" is optional. */
17809 if (arg->v_type != VAR_LIST
17810 || l == NULL
17811 || l->lv_len < (fnump == NULL ? 2 : 3)
17812 || l->lv_len > (fnump == NULL ? 3 : 4))
Bram Moolenaar0e34f622006-03-03 23:00:03 +000017813 return FAIL;
17814
17815 if (fnump != NULL)
17816 {
17817 n = list_find_nr(l, i++, NULL); /* fnum */
17818 if (n < 0)
17819 return FAIL;
17820 if (n == 0)
17821 n = curbuf->b_fnum; /* current buffer */
17822 *fnump = n;
17823 }
17824
17825 n = list_find_nr(l, i++, NULL); /* lnum */
17826 if (n < 0)
17827 return FAIL;
17828 posp->lnum = n;
17829
17830 n = list_find_nr(l, i++, NULL); /* col */
17831 if (n < 0)
17832 return FAIL;
17833 posp->col = n;
17834
17835#ifdef FEAT_VIRTUALEDIT
17836 n = list_find_nr(l, i, NULL);
17837 if (n < 0)
Bram Moolenaarbde35262006-07-23 20:12:24 +000017838 posp->coladd = 0;
17839 else
17840 posp->coladd = n;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000017841#endif
17842
17843 return OK;
17844}
17845
17846/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000017847 * Get the length of an environment variable name.
17848 * Advance "arg" to the first character after the name.
17849 * Return 0 for error.
17850 */
17851 static int
17852get_env_len(arg)
17853 char_u **arg;
17854{
17855 char_u *p;
17856 int len;
17857
17858 for (p = *arg; vim_isIDc(*p); ++p)
17859 ;
17860 if (p == *arg) /* no name found */
17861 return 0;
17862
17863 len = (int)(p - *arg);
17864 *arg = p;
17865 return len;
17866}
17867
17868/*
17869 * Get the length of the name of a function or internal variable.
17870 * "arg" is advanced to the first non-white character after the name.
17871 * Return 0 if something is wrong.
17872 */
17873 static int
17874get_id_len(arg)
17875 char_u **arg;
17876{
17877 char_u *p;
17878 int len;
17879
17880 /* Find the end of the name. */
17881 for (p = *arg; eval_isnamec(*p); ++p)
17882 ;
17883 if (p == *arg) /* no name found */
17884 return 0;
17885
17886 len = (int)(p - *arg);
17887 *arg = skipwhite(p);
17888
17889 return len;
17890}
17891
17892/*
Bram Moolenaara7043832005-01-21 11:56:39 +000017893 * Get the length of the name of a variable or function.
17894 * Only the name is recognized, does not handle ".key" or "[idx]".
Bram Moolenaar071d4272004-06-13 20:20:40 +000017895 * "arg" is advanced to the first non-white character after the name.
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000017896 * Return -1 if curly braces expansion failed.
17897 * Return 0 if something else is wrong.
Bram Moolenaar071d4272004-06-13 20:20:40 +000017898 * If the name contains 'magic' {}'s, expand them and return the
17899 * expanded name in an allocated string via 'alias' - caller must free.
17900 */
17901 static int
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000017902get_name_len(arg, alias, evaluate, verbose)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017903 char_u **arg;
17904 char_u **alias;
17905 int evaluate;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000017906 int verbose;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017907{
17908 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017909 char_u *p;
17910 char_u *expr_start;
17911 char_u *expr_end;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017912
17913 *alias = NULL; /* default to no alias */
17914
17915 if ((*arg)[0] == K_SPECIAL && (*arg)[1] == KS_EXTRA
17916 && (*arg)[2] == (int)KE_SNR)
17917 {
17918 /* hard coded <SNR>, already translated */
17919 *arg += 3;
17920 return get_id_len(arg) + 3;
17921 }
17922 len = eval_fname_script(*arg);
17923 if (len > 0)
17924 {
17925 /* literal "<SID>", "s:" or "<SNR>" */
17926 *arg += len;
17927 }
17928
Bram Moolenaar071d4272004-06-13 20:20:40 +000017929 /*
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017930 * Find the end of the name; check for {} construction.
Bram Moolenaar071d4272004-06-13 20:20:40 +000017931 */
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000017932 p = find_name_end(*arg, &expr_start, &expr_end,
17933 len > 0 ? 0 : FNE_CHECK_START);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017934 if (expr_start != NULL)
17935 {
17936 char_u *temp_string;
17937
17938 if (!evaluate)
17939 {
17940 len += (int)(p - *arg);
17941 *arg = skipwhite(p);
17942 return len;
17943 }
17944
17945 /*
17946 * Include any <SID> etc in the expanded string:
17947 * Thus the -len here.
17948 */
17949 temp_string = make_expanded_name(*arg - len, expr_start, expr_end, p);
17950 if (temp_string == NULL)
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000017951 return -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017952 *alias = temp_string;
17953 *arg = skipwhite(p);
17954 return (int)STRLEN(temp_string);
17955 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000017956
17957 len += get_id_len(arg);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000017958 if (len == 0 && verbose)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017959 EMSG2(_(e_invexpr2), *arg);
17960
17961 return len;
17962}
17963
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017964/*
17965 * Find the end of a variable or function name, taking care of magic braces.
17966 * If "expr_start" is not NULL then "expr_start" and "expr_end" are set to the
17967 * start and end of the first magic braces item.
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000017968 * "flags" can have FNE_INCL_BR and FNE_CHECK_START.
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017969 * Return a pointer to just after the name. Equal to "arg" if there is no
17970 * valid name.
17971 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000017972 static char_u *
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000017973find_name_end(arg, expr_start, expr_end, flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017974 char_u *arg;
17975 char_u **expr_start;
17976 char_u **expr_end;
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000017977 int flags;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017978{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017979 int mb_nest = 0;
17980 int br_nest = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017981 char_u *p;
17982
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017983 if (expr_start != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017984 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017985 *expr_start = NULL;
17986 *expr_end = NULL;
17987 }
17988
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000017989 /* Quick check for valid starting character. */
17990 if ((flags & FNE_CHECK_START) && !eval_isnamec1(*arg) && *arg != '{')
17991 return arg;
17992
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017993 for (p = arg; *p != NUL
17994 && (eval_isnamec(*p)
Bram Moolenaare9a41262005-01-15 22:18:47 +000017995 || *p == '{'
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000017996 || ((flags & FNE_INCL_BR) && (*p == '[' || *p == '.'))
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017997 || mb_nest != 0
Bram Moolenaar8af24422005-08-08 22:06:28 +000017998 || br_nest != 0); mb_ptr_adv(p))
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017999 {
Bram Moolenaar8af24422005-08-08 22:06:28 +000018000 if (*p == '\'')
18001 {
18002 /* skip over 'string' to avoid counting [ and ] inside it. */
18003 for (p = p + 1; *p != NUL && *p != '\''; mb_ptr_adv(p))
18004 ;
18005 if (*p == NUL)
18006 break;
18007 }
18008 else if (*p == '"')
18009 {
18010 /* skip over "str\"ing" to avoid counting [ and ] inside it. */
18011 for (p = p + 1; *p != NUL && *p != '"'; mb_ptr_adv(p))
18012 if (*p == '\\' && p[1] != NUL)
18013 ++p;
18014 if (*p == NUL)
18015 break;
18016 }
18017
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018018 if (mb_nest == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018019 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018020 if (*p == '[')
18021 ++br_nest;
18022 else if (*p == ']')
18023 --br_nest;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018024 }
Bram Moolenaar8af24422005-08-08 22:06:28 +000018025
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018026 if (br_nest == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018027 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018028 if (*p == '{')
18029 {
18030 mb_nest++;
18031 if (expr_start != NULL && *expr_start == NULL)
18032 *expr_start = p;
18033 }
18034 else if (*p == '}')
18035 {
18036 mb_nest--;
18037 if (expr_start != NULL && mb_nest == 0 && *expr_end == NULL)
18038 *expr_end = p;
18039 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000018040 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000018041 }
18042
18043 return p;
18044}
18045
18046/*
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000018047 * Expands out the 'magic' {}'s in a variable/function name.
18048 * Note that this can call itself recursively, to deal with
18049 * constructs like foo{bar}{baz}{bam}
18050 * The four pointer arguments point to "foo{expre}ss{ion}bar"
18051 * "in_start" ^
18052 * "expr_start" ^
18053 * "expr_end" ^
18054 * "in_end" ^
18055 *
18056 * Returns a new allocated string, which the caller must free.
18057 * Returns NULL for failure.
18058 */
18059 static char_u *
18060make_expanded_name(in_start, expr_start, expr_end, in_end)
18061 char_u *in_start;
18062 char_u *expr_start;
18063 char_u *expr_end;
18064 char_u *in_end;
18065{
18066 char_u c1;
18067 char_u *retval = NULL;
18068 char_u *temp_result;
18069 char_u *nextcmd = NULL;
18070
18071 if (expr_end == NULL || in_end == NULL)
18072 return NULL;
18073 *expr_start = NUL;
18074 *expr_end = NUL;
18075 c1 = *in_end;
18076 *in_end = NUL;
18077
Bram Moolenaar362e1a32006-03-06 23:29:24 +000018078 temp_result = eval_to_string(expr_start + 1, &nextcmd, FALSE);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000018079 if (temp_result != NULL && nextcmd == NULL)
18080 {
18081 retval = alloc((unsigned)(STRLEN(temp_result) + (expr_start - in_start)
18082 + (in_end - expr_end) + 1));
18083 if (retval != NULL)
18084 {
18085 STRCPY(retval, in_start);
18086 STRCAT(retval, temp_result);
18087 STRCAT(retval, expr_end + 1);
18088 }
18089 }
18090 vim_free(temp_result);
18091
18092 *in_end = c1; /* put char back for error messages */
18093 *expr_start = '{';
18094 *expr_end = '}';
18095
18096 if (retval != NULL)
18097 {
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000018098 temp_result = find_name_end(retval, &expr_start, &expr_end, 0);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000018099 if (expr_start != NULL)
18100 {
18101 /* Further expansion! */
18102 temp_result = make_expanded_name(retval, expr_start,
18103 expr_end, temp_result);
18104 vim_free(retval);
18105 retval = temp_result;
18106 }
18107 }
18108
18109 return retval;
18110}
18111
18112/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000018113 * Return TRUE if character "c" can be used in a variable or function name.
Bram Moolenaare9a41262005-01-15 22:18:47 +000018114 * Does not include '{' or '}' for magic braces.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018115 */
18116 static int
18117eval_isnamec(c)
18118 int c;
18119{
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000018120 return (ASCII_ISALNUM(c) || c == '_' || c == ':' || c == AUTOLOAD_CHAR);
18121}
18122
18123/*
18124 * Return TRUE if character "c" can be used as the first character in a
18125 * variable or function name (excluding '{' and '}').
18126 */
18127 static int
18128eval_isnamec1(c)
18129 int c;
18130{
18131 return (ASCII_ISALPHA(c) || c == '_');
Bram Moolenaar071d4272004-06-13 20:20:40 +000018132}
18133
18134/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000018135 * Set number v: variable to "val".
18136 */
18137 void
18138set_vim_var_nr(idx, val)
18139 int idx;
18140 long val;
18141{
Bram Moolenaare9a41262005-01-15 22:18:47 +000018142 vimvars[idx].vv_nr = val;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018143}
18144
18145/*
Bram Moolenaar19a09a12005-03-04 23:39:37 +000018146 * Get number v: variable value.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018147 */
18148 long
18149get_vim_var_nr(idx)
18150 int idx;
18151{
Bram Moolenaare9a41262005-01-15 22:18:47 +000018152 return vimvars[idx].vv_nr;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018153}
18154
Bram Moolenaar19a09a12005-03-04 23:39:37 +000018155/*
18156 * Get string v: variable value. Uses a static buffer, can only be used once.
18157 */
18158 char_u *
18159get_vim_var_str(idx)
18160 int idx;
18161{
18162 return get_tv_string(&vimvars[idx].vv_tv);
18163}
Bram Moolenaar19a09a12005-03-04 23:39:37 +000018164
Bram Moolenaar071d4272004-06-13 20:20:40 +000018165/*
Bram Moolenaard812df62008-11-09 12:46:09 +000018166 * Get List v: variable value. Caller must take care of reference count when
18167 * needed.
18168 */
18169 list_T *
18170get_vim_var_list(idx)
18171 int idx;
18172{
18173 return vimvars[idx].vv_list;
18174}
18175
18176/*
Bram Moolenaar8df74be2008-11-20 15:12:02 +000018177 * Set v:count to "count" and v:count1 to "count1".
18178 * When "set_prevcount" is TRUE first set v:prevcount from v:count.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018179 */
18180 void
Bram Moolenaar8df74be2008-11-20 15:12:02 +000018181set_vcount(count, count1, set_prevcount)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018182 long count;
18183 long count1;
Bram Moolenaar8df74be2008-11-20 15:12:02 +000018184 int set_prevcount;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018185{
Bram Moolenaar8df74be2008-11-20 15:12:02 +000018186 if (set_prevcount)
18187 vimvars[VV_PREVCOUNT].vv_nr = vimvars[VV_COUNT].vv_nr;
Bram Moolenaare9a41262005-01-15 22:18:47 +000018188 vimvars[VV_COUNT].vv_nr = count;
18189 vimvars[VV_COUNT1].vv_nr = count1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018190}
18191
18192/*
18193 * Set string v: variable to a copy of "val".
18194 */
18195 void
18196set_vim_var_string(idx, val, len)
18197 int idx;
18198 char_u *val;
18199 int len; /* length of "val" to use or -1 (whole string) */
18200{
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018201 /* Need to do this (at least) once, since we can't initialize a union.
18202 * Will always be invoked when "v:progname" is set. */
18203 vimvars[VV_VERSION].vv_nr = VIM_VERSION_100;
18204
Bram Moolenaare9a41262005-01-15 22:18:47 +000018205 vim_free(vimvars[idx].vv_str);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018206 if (val == NULL)
Bram Moolenaare9a41262005-01-15 22:18:47 +000018207 vimvars[idx].vv_str = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018208 else if (len == -1)
Bram Moolenaare9a41262005-01-15 22:18:47 +000018209 vimvars[idx].vv_str = vim_strsave(val);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018210 else
Bram Moolenaare9a41262005-01-15 22:18:47 +000018211 vimvars[idx].vv_str = vim_strnsave(val, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018212}
18213
18214/*
Bram Moolenaard812df62008-11-09 12:46:09 +000018215 * Set List v: variable to "val".
18216 */
18217 void
18218set_vim_var_list(idx, val)
18219 int idx;
18220 list_T *val;
18221{
18222 list_unref(vimvars[idx].vv_list);
18223 vimvars[idx].vv_list = val;
18224 if (val != NULL)
18225 ++val->lv_refcount;
18226}
18227
18228/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000018229 * Set v:register if needed.
18230 */
18231 void
18232set_reg_var(c)
18233 int c;
18234{
18235 char_u regname;
18236
18237 if (c == 0 || c == ' ')
18238 regname = '"';
18239 else
18240 regname = c;
18241 /* Avoid free/alloc when the value is already right. */
Bram Moolenaare9a41262005-01-15 22:18:47 +000018242 if (vimvars[VV_REG].vv_str == NULL || vimvars[VV_REG].vv_str[0] != c)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018243 set_vim_var_string(VV_REG, &regname, 1);
18244}
18245
18246/*
18247 * Get or set v:exception. If "oldval" == NULL, return the current value.
18248 * Otherwise, restore the value to "oldval" and return NULL.
18249 * Must always be called in pairs to save and restore v:exception! Does not
18250 * take care of memory allocations.
18251 */
18252 char_u *
18253v_exception(oldval)
18254 char_u *oldval;
18255{
18256 if (oldval == NULL)
Bram Moolenaare9a41262005-01-15 22:18:47 +000018257 return vimvars[VV_EXCEPTION].vv_str;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018258
Bram Moolenaare9a41262005-01-15 22:18:47 +000018259 vimvars[VV_EXCEPTION].vv_str = oldval;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018260 return NULL;
18261}
18262
18263/*
18264 * Get or set v:throwpoint. If "oldval" == NULL, return the current value.
18265 * Otherwise, restore the value to "oldval" and return NULL.
18266 * Must always be called in pairs to save and restore v:throwpoint! Does not
18267 * take care of memory allocations.
18268 */
18269 char_u *
18270v_throwpoint(oldval)
18271 char_u *oldval;
18272{
18273 if (oldval == NULL)
Bram Moolenaare9a41262005-01-15 22:18:47 +000018274 return vimvars[VV_THROWPOINT].vv_str;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018275
Bram Moolenaare9a41262005-01-15 22:18:47 +000018276 vimvars[VV_THROWPOINT].vv_str = oldval;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018277 return NULL;
18278}
18279
18280#if defined(FEAT_AUTOCMD) || defined(PROTO)
18281/*
18282 * Set v:cmdarg.
18283 * If "eap" != NULL, use "eap" to generate the value and return the old value.
18284 * If "oldarg" != NULL, restore the value to "oldarg" and return NULL.
18285 * Must always be called in pairs!
18286 */
18287 char_u *
18288set_cmdarg(eap, oldarg)
18289 exarg_T *eap;
18290 char_u *oldarg;
18291{
18292 char_u *oldval;
18293 char_u *newval;
18294 unsigned len;
18295
Bram Moolenaare9a41262005-01-15 22:18:47 +000018296 oldval = vimvars[VV_CMDARG].vv_str;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000018297 if (eap == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018298 {
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000018299 vim_free(oldval);
Bram Moolenaare9a41262005-01-15 22:18:47 +000018300 vimvars[VV_CMDARG].vv_str = oldarg;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000018301 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018302 }
18303
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000018304 if (eap->force_bin == FORCE_BIN)
18305 len = 6;
18306 else if (eap->force_bin == FORCE_NOBIN)
18307 len = 8;
18308 else
18309 len = 0;
Bram Moolenaar910f66f2006-04-05 20:41:53 +000018310
18311 if (eap->read_edit)
18312 len += 7;
18313
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000018314 if (eap->force_ff != 0)
18315 len += (unsigned)STRLEN(eap->cmd + eap->force_ff) + 6;
18316# ifdef FEAT_MBYTE
18317 if (eap->force_enc != 0)
18318 len += (unsigned)STRLEN(eap->cmd + eap->force_enc) + 7;
Bram Moolenaarb2c2efa2005-12-13 20:09:08 +000018319 if (eap->bad_char != 0)
18320 len += (unsigned)STRLEN(eap->cmd + eap->bad_char) + 7;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000018321# endif
18322
18323 newval = alloc(len + 1);
18324 if (newval == NULL)
18325 return NULL;
18326
18327 if (eap->force_bin == FORCE_BIN)
18328 sprintf((char *)newval, " ++bin");
18329 else if (eap->force_bin == FORCE_NOBIN)
18330 sprintf((char *)newval, " ++nobin");
18331 else
18332 *newval = NUL;
Bram Moolenaar910f66f2006-04-05 20:41:53 +000018333
18334 if (eap->read_edit)
18335 STRCAT(newval, " ++edit");
18336
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000018337 if (eap->force_ff != 0)
18338 sprintf((char *)newval + STRLEN(newval), " ++ff=%s",
18339 eap->cmd + eap->force_ff);
18340# ifdef FEAT_MBYTE
18341 if (eap->force_enc != 0)
18342 sprintf((char *)newval + STRLEN(newval), " ++enc=%s",
18343 eap->cmd + eap->force_enc);
Bram Moolenaarb2c2efa2005-12-13 20:09:08 +000018344 if (eap->bad_char != 0)
18345 sprintf((char *)newval + STRLEN(newval), " ++bad=%s",
18346 eap->cmd + eap->bad_char);
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000018347# endif
Bram Moolenaare9a41262005-01-15 22:18:47 +000018348 vimvars[VV_CMDARG].vv_str = newval;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000018349 return oldval;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018350}
18351#endif
18352
18353/*
18354 * Get the value of internal variable "name".
18355 * Return OK or FAIL.
18356 */
18357 static int
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000018358get_var_tv(name, len, rettv, verbose)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018359 char_u *name;
18360 int len; /* length of "name" */
Bram Moolenaar33570922005-01-25 22:26:29 +000018361 typval_T *rettv; /* NULL when only checking existence */
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000018362 int verbose; /* may give error message */
Bram Moolenaar071d4272004-06-13 20:20:40 +000018363{
18364 int ret = OK;
Bram Moolenaar33570922005-01-25 22:26:29 +000018365 typval_T *tv = NULL;
18366 typval_T atv;
18367 dictitem_T *v;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018368 int cc;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018369
18370 /* truncate the name, so that we can use strcmp() */
18371 cc = name[len];
18372 name[len] = NUL;
18373
18374 /*
18375 * Check for "b:changedtick".
18376 */
18377 if (STRCMP(name, "b:changedtick") == 0)
18378 {
Bram Moolenaare9a41262005-01-15 22:18:47 +000018379 atv.v_type = VAR_NUMBER;
18380 atv.vval.v_number = curbuf->b_changedtick;
18381 tv = &atv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018382 }
18383
18384 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +000018385 * Check for user-defined variables.
18386 */
18387 else
18388 {
Bram Moolenaara7043832005-01-21 11:56:39 +000018389 v = find_var(name, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018390 if (v != NULL)
Bram Moolenaar33570922005-01-25 22:26:29 +000018391 tv = &v->di_tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018392 }
18393
Bram Moolenaare9a41262005-01-15 22:18:47 +000018394 if (tv == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018395 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000018396 if (rettv != NULL && verbose)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018397 EMSG2(_(e_undefvar), name);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018398 ret = FAIL;
18399 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018400 else if (rettv != NULL)
Bram Moolenaare9a41262005-01-15 22:18:47 +000018401 copy_tv(tv, rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018402
18403 name[len] = cc;
18404
18405 return ret;
18406}
18407
18408/*
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000018409 * Handle expr[expr], expr[expr:expr] subscript and .name lookup.
18410 * Also handle function call with Funcref variable: func(expr)
18411 * Can all be combined: dict.func(expr)[idx]['func'](expr)
18412 */
18413 static int
18414handle_subscript(arg, rettv, evaluate, verbose)
18415 char_u **arg;
18416 typval_T *rettv;
18417 int evaluate; /* do more than finding the end */
18418 int verbose; /* give error messages */
18419{
18420 int ret = OK;
18421 dict_T *selfdict = NULL;
18422 char_u *s;
18423 int len;
Bram Moolenaard9fba312005-06-26 22:34:35 +000018424 typval_T functv;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000018425
18426 while (ret == OK
18427 && (**arg == '['
18428 || (**arg == '.' && rettv->v_type == VAR_DICT)
18429 || (**arg == '(' && rettv->v_type == VAR_FUNC))
18430 && !vim_iswhite(*(*arg - 1)))
18431 {
18432 if (**arg == '(')
18433 {
Bram Moolenaard9fba312005-06-26 22:34:35 +000018434 /* need to copy the funcref so that we can clear rettv */
18435 functv = *rettv;
18436 rettv->v_type = VAR_UNKNOWN;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000018437
18438 /* Invoke the function. Recursive! */
Bram Moolenaard9fba312005-06-26 22:34:35 +000018439 s = functv.vval.v_string;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000018440 ret = get_func_tv(s, (int)STRLEN(s), rettv, arg,
Bram Moolenaard9fba312005-06-26 22:34:35 +000018441 curwin->w_cursor.lnum, curwin->w_cursor.lnum,
18442 &len, evaluate, selfdict);
18443
18444 /* Clear the funcref afterwards, so that deleting it while
18445 * evaluating the arguments is possible (see test55). */
18446 clear_tv(&functv);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000018447
18448 /* Stop the expression evaluation when immediately aborting on
18449 * error, or when an interrupt occurred or an exception was thrown
18450 * but not caught. */
18451 if (aborting())
18452 {
18453 if (ret == OK)
18454 clear_tv(rettv);
18455 ret = FAIL;
18456 }
18457 dict_unref(selfdict);
18458 selfdict = NULL;
18459 }
18460 else /* **arg == '[' || **arg == '.' */
18461 {
18462 dict_unref(selfdict);
18463 if (rettv->v_type == VAR_DICT)
18464 {
18465 selfdict = rettv->vval.v_dict;
18466 if (selfdict != NULL)
18467 ++selfdict->dv_refcount;
18468 }
18469 else
18470 selfdict = NULL;
18471 if (eval_index(arg, rettv, evaluate, verbose) == FAIL)
18472 {
18473 clear_tv(rettv);
18474 ret = FAIL;
18475 }
18476 }
18477 }
18478 dict_unref(selfdict);
18479 return ret;
18480}
18481
18482/*
Bram Moolenaar8c8de832008-06-24 22:58:06 +000018483 * Allocate memory for a variable type-value, and make it empty (0 or NULL
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018484 * value).
18485 */
Bram Moolenaar33570922005-01-25 22:26:29 +000018486 static typval_T *
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018487alloc_tv()
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018488{
Bram Moolenaar33570922005-01-25 22:26:29 +000018489 return (typval_T *)alloc_clear((unsigned)sizeof(typval_T));
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018490}
18491
18492/*
18493 * Allocate memory for a variable type-value, and assign a string to it.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018494 * The string "s" must have been allocated, it is consumed.
18495 * Return NULL for out of memory, the variable otherwise.
18496 */
Bram Moolenaar33570922005-01-25 22:26:29 +000018497 static typval_T *
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018498alloc_string_tv(s)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018499 char_u *s;
18500{
Bram Moolenaar33570922005-01-25 22:26:29 +000018501 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018502
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018503 rettv = alloc_tv();
18504 if (rettv != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018505 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018506 rettv->v_type = VAR_STRING;
18507 rettv->vval.v_string = s;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018508 }
18509 else
18510 vim_free(s);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018511 return rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018512}
18513
18514/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018515 * Free the memory for a variable type-value.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018516 */
Bram Moolenaar4770d092006-01-12 23:22:24 +000018517 void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018518free_tv(varp)
Bram Moolenaar33570922005-01-25 22:26:29 +000018519 typval_T *varp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018520{
18521 if (varp != NULL)
18522 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018523 switch (varp->v_type)
18524 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018525 case VAR_FUNC:
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018526 func_unref(varp->vval.v_string);
18527 /*FALLTHROUGH*/
18528 case VAR_STRING:
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018529 vim_free(varp->vval.v_string);
18530 break;
18531 case VAR_LIST:
18532 list_unref(varp->vval.v_list);
18533 break;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018534 case VAR_DICT:
18535 dict_unref(varp->vval.v_dict);
18536 break;
Bram Moolenaar758711c2005-02-02 23:11:38 +000018537 case VAR_NUMBER:
Bram Moolenaar8c8de832008-06-24 22:58:06 +000018538#ifdef FEAT_FLOAT
18539 case VAR_FLOAT:
18540#endif
Bram Moolenaar758711c2005-02-02 23:11:38 +000018541 case VAR_UNKNOWN:
18542 break;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018543 default:
Bram Moolenaar758711c2005-02-02 23:11:38 +000018544 EMSG2(_(e_intern2), "free_tv()");
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018545 break;
18546 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000018547 vim_free(varp);
18548 }
18549}
18550
18551/*
18552 * Free the memory for a variable value and set the value to NULL or 0.
18553 */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000018554 void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018555clear_tv(varp)
Bram Moolenaar33570922005-01-25 22:26:29 +000018556 typval_T *varp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018557{
18558 if (varp != NULL)
18559 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018560 switch (varp->v_type)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018561 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018562 case VAR_FUNC:
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018563 func_unref(varp->vval.v_string);
18564 /*FALLTHROUGH*/
18565 case VAR_STRING:
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018566 vim_free(varp->vval.v_string);
18567 varp->vval.v_string = NULL;
18568 break;
18569 case VAR_LIST:
18570 list_unref(varp->vval.v_list);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000018571 varp->vval.v_list = NULL;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018572 break;
Bram Moolenaar8c711452005-01-14 21:53:12 +000018573 case VAR_DICT:
18574 dict_unref(varp->vval.v_dict);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000018575 varp->vval.v_dict = NULL;
Bram Moolenaar8c711452005-01-14 21:53:12 +000018576 break;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018577 case VAR_NUMBER:
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018578 varp->vval.v_number = 0;
18579 break;
Bram Moolenaar8c8de832008-06-24 22:58:06 +000018580#ifdef FEAT_FLOAT
18581 case VAR_FLOAT:
18582 varp->vval.v_float = 0.0;
18583 break;
18584#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018585 case VAR_UNKNOWN:
18586 break;
18587 default:
18588 EMSG2(_(e_intern2), "clear_tv()");
Bram Moolenaar071d4272004-06-13 20:20:40 +000018589 }
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000018590 varp->v_lock = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018591 }
18592}
18593
18594/*
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018595 * Set the value of a variable to NULL without freeing items.
18596 */
18597 static void
18598init_tv(varp)
Bram Moolenaar33570922005-01-25 22:26:29 +000018599 typval_T *varp;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018600{
18601 if (varp != NULL)
Bram Moolenaar33570922005-01-25 22:26:29 +000018602 vim_memset(varp, 0, sizeof(typval_T));
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018603}
18604
18605/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000018606 * Get the number value of a variable.
18607 * If it is a String variable, uses vim_str2nr().
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018608 * For incompatible types, return 0.
18609 * get_tv_number_chk() is similar to get_tv_number(), but informs the
18610 * caller of incompatible types: it sets *denote to TRUE if "denote"
18611 * is not NULL or returns -1 otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018612 */
18613 static long
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018614get_tv_number(varp)
Bram Moolenaar33570922005-01-25 22:26:29 +000018615 typval_T *varp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018616{
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018617 int error = FALSE;
18618
18619 return get_tv_number_chk(varp, &error); /* return 0L on error */
18620}
18621
Bram Moolenaar4be06f92005-07-29 22:36:03 +000018622 long
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018623get_tv_number_chk(varp, denote)
18624 typval_T *varp;
18625 int *denote;
18626{
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018627 long n = 0L;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018628
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018629 switch (varp->v_type)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018630 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018631 case VAR_NUMBER:
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018632 return (long)(varp->vval.v_number);
Bram Moolenaar8c8de832008-06-24 22:58:06 +000018633#ifdef FEAT_FLOAT
18634 case VAR_FLOAT:
Bram Moolenaared0e7452008-06-27 19:17:34 +000018635 EMSG(_("E805: Using a Float as a Number"));
Bram Moolenaar8c8de832008-06-24 22:58:06 +000018636 break;
18637#endif
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018638 case VAR_FUNC:
Bram Moolenaared0e7452008-06-27 19:17:34 +000018639 EMSG(_("E703: Using a Funcref as a Number"));
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018640 break;
18641 case VAR_STRING:
18642 if (varp->vval.v_string != NULL)
18643 vim_str2nr(varp->vval.v_string, NULL, NULL,
18644 TRUE, TRUE, &n, NULL);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018645 return n;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000018646 case VAR_LIST:
Bram Moolenaared0e7452008-06-27 19:17:34 +000018647 EMSG(_("E745: Using a List as a Number"));
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000018648 break;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018649 case VAR_DICT:
Bram Moolenaared0e7452008-06-27 19:17:34 +000018650 EMSG(_("E728: Using a Dictionary as a Number"));
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018651 break;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018652 default:
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018653 EMSG2(_(e_intern2), "get_tv_number()");
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018654 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018655 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018656 if (denote == NULL) /* useful for values that must be unsigned */
18657 n = -1;
18658 else
18659 *denote = TRUE;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018660 return n;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018661}
18662
18663/*
Bram Moolenaar661b1822005-07-28 22:36:45 +000018664 * Get the lnum from the first argument.
18665 * Also accepts ".", "$", etc., but that only works for the current buffer.
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018666 * Returns -1 on error.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018667 */
18668 static linenr_T
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018669get_tv_lnum(argvars)
Bram Moolenaar33570922005-01-25 22:26:29 +000018670 typval_T *argvars;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018671{
Bram Moolenaar33570922005-01-25 22:26:29 +000018672 typval_T rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018673 linenr_T lnum;
18674
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018675 lnum = get_tv_number_chk(&argvars[0], NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018676 if (lnum == 0) /* no valid number, try using line() */
18677 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018678 rettv.v_type = VAR_NUMBER;
18679 f_line(argvars, &rettv);
18680 lnum = rettv.vval.v_number;
18681 clear_tv(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018682 }
18683 return lnum;
18684}
18685
18686/*
Bram Moolenaar661b1822005-07-28 22:36:45 +000018687 * Get the lnum from the first argument.
18688 * Also accepts "$", then "buf" is used.
18689 * Returns 0 on error.
18690 */
18691 static linenr_T
18692get_tv_lnum_buf(argvars, buf)
18693 typval_T *argvars;
18694 buf_T *buf;
18695{
18696 if (argvars[0].v_type == VAR_STRING
18697 && argvars[0].vval.v_string != NULL
18698 && argvars[0].vval.v_string[0] == '$'
18699 && buf != NULL)
18700 return buf->b_ml.ml_line_count;
18701 return get_tv_number_chk(&argvars[0], NULL);
18702}
18703
18704/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000018705 * Get the string value of a variable.
18706 * If it is a Number variable, the number is converted into a string.
Bram Moolenaara7043832005-01-21 11:56:39 +000018707 * get_tv_string() uses a single, static buffer. YOU CAN ONLY USE IT ONCE!
18708 * get_tv_string_buf() uses a given buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018709 * If the String variable has never been set, return an empty string.
18710 * Never returns NULL;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018711 * get_tv_string_chk() and get_tv_string_buf_chk() are similar, but return
18712 * NULL on error.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018713 */
18714 static char_u *
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018715get_tv_string(varp)
Bram Moolenaar33570922005-01-25 22:26:29 +000018716 typval_T *varp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018717{
18718 static char_u mybuf[NUMBUFLEN];
18719
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018720 return get_tv_string_buf(varp, mybuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018721}
18722
18723 static char_u *
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018724get_tv_string_buf(varp, buf)
Bram Moolenaar33570922005-01-25 22:26:29 +000018725 typval_T *varp;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018726 char_u *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018727{
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018728 char_u *res = get_tv_string_buf_chk(varp, buf);
18729
18730 return res != NULL ? res : (char_u *)"";
18731}
18732
Bram Moolenaar4be06f92005-07-29 22:36:03 +000018733 char_u *
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018734get_tv_string_chk(varp)
18735 typval_T *varp;
18736{
18737 static char_u mybuf[NUMBUFLEN];
18738
18739 return get_tv_string_buf_chk(varp, mybuf);
18740}
18741
18742 static char_u *
18743get_tv_string_buf_chk(varp, buf)
18744 typval_T *varp;
18745 char_u *buf;
18746{
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018747 switch (varp->v_type)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018748 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018749 case VAR_NUMBER:
18750 sprintf((char *)buf, "%ld", (long)varp->vval.v_number);
18751 return buf;
18752 case VAR_FUNC:
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018753 EMSG(_("E729: using Funcref as a String"));
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018754 break;
18755 case VAR_LIST:
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018756 EMSG(_("E730: using List as a String"));
Bram Moolenaar8c711452005-01-14 21:53:12 +000018757 break;
18758 case VAR_DICT:
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018759 EMSG(_("E731: using Dictionary as a String"));
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018760 break;
Bram Moolenaar8c8de832008-06-24 22:58:06 +000018761#ifdef FEAT_FLOAT
18762 case VAR_FLOAT:
18763 EMSG(_("E806: using Float as a String"));
18764 break;
18765#endif
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018766 case VAR_STRING:
18767 if (varp->vval.v_string != NULL)
18768 return varp->vval.v_string;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018769 return (char_u *)"";
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018770 default:
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018771 EMSG2(_(e_intern2), "get_tv_string_buf()");
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018772 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018773 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018774 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018775}
18776
18777/*
18778 * Find variable "name" in the list of variables.
18779 * Return a pointer to it if found, NULL if not found.
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018780 * Careful: "a:0" variables don't have a name.
Bram Moolenaara7043832005-01-21 11:56:39 +000018781 * When "htp" is not NULL we are writing to the variable, set "htp" to the
Bram Moolenaar33570922005-01-25 22:26:29 +000018782 * hashtab_T used.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018783 */
Bram Moolenaar33570922005-01-25 22:26:29 +000018784 static dictitem_T *
Bram Moolenaara7043832005-01-21 11:56:39 +000018785find_var(name, htp)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018786 char_u *name;
Bram Moolenaar33570922005-01-25 22:26:29 +000018787 hashtab_T **htp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018788{
Bram Moolenaar071d4272004-06-13 20:20:40 +000018789 char_u *varname;
Bram Moolenaar33570922005-01-25 22:26:29 +000018790 hashtab_T *ht;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018791
Bram Moolenaara7043832005-01-21 11:56:39 +000018792 ht = find_var_ht(name, &varname);
18793 if (htp != NULL)
18794 *htp = ht;
18795 if (ht == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018796 return NULL;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000018797 return find_var_in_ht(ht, varname, htp != NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018798}
18799
18800/*
Bram Moolenaar33570922005-01-25 22:26:29 +000018801 * Find variable "varname" in hashtab "ht".
Bram Moolenaara7043832005-01-21 11:56:39 +000018802 * Returns NULL if not found.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018803 */
Bram Moolenaar33570922005-01-25 22:26:29 +000018804 static dictitem_T *
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000018805find_var_in_ht(ht, varname, writing)
Bram Moolenaar33570922005-01-25 22:26:29 +000018806 hashtab_T *ht;
Bram Moolenaara7043832005-01-21 11:56:39 +000018807 char_u *varname;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000018808 int writing;
Bram Moolenaara7043832005-01-21 11:56:39 +000018809{
Bram Moolenaar33570922005-01-25 22:26:29 +000018810 hashitem_T *hi;
18811
18812 if (*varname == NUL)
18813 {
18814 /* Must be something like "s:", otherwise "ht" would be NULL. */
18815 switch (varname[-2])
18816 {
18817 case 's': return &SCRIPT_SV(current_SID).sv_var;
18818 case 'g': return &globvars_var;
18819 case 'v': return &vimvars_var;
18820 case 'b': return &curbuf->b_bufvar;
18821 case 'w': return &curwin->w_winvar;
Bram Moolenaar910f66f2006-04-05 20:41:53 +000018822#ifdef FEAT_WINDOWS
18823 case 't': return &curtab->tp_winvar;
18824#endif
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +000018825 case 'l': return current_funccal == NULL
18826 ? NULL : &current_funccal->l_vars_var;
18827 case 'a': return current_funccal == NULL
18828 ? NULL : &current_funccal->l_avars_var;
Bram Moolenaar33570922005-01-25 22:26:29 +000018829 }
18830 return NULL;
18831 }
Bram Moolenaara7043832005-01-21 11:56:39 +000018832
18833 hi = hash_find(ht, varname);
18834 if (HASHITEM_EMPTY(hi))
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000018835 {
18836 /* For global variables we may try auto-loading the script. If it
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000018837 * worked find the variable again. Don't auto-load a script if it was
18838 * loaded already, otherwise it would be loaded every time when
18839 * checking if a function name is a Funcref variable. */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000018840 if (ht == &globvarht && !writing
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000018841 && script_autoload(varname, FALSE) && !aborting())
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000018842 hi = hash_find(ht, varname);
18843 if (HASHITEM_EMPTY(hi))
18844 return NULL;
18845 }
Bram Moolenaar33570922005-01-25 22:26:29 +000018846 return HI2DI(hi);
Bram Moolenaara7043832005-01-21 11:56:39 +000018847}
18848
18849/*
Bram Moolenaar33570922005-01-25 22:26:29 +000018850 * Find the hashtab used for a variable name.
Bram Moolenaara7043832005-01-21 11:56:39 +000018851 * Set "varname" to the start of name without ':'.
18852 */
Bram Moolenaar33570922005-01-25 22:26:29 +000018853 static hashtab_T *
Bram Moolenaara7043832005-01-21 11:56:39 +000018854find_var_ht(name, varname)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018855 char_u *name;
18856 char_u **varname;
18857{
Bram Moolenaar75c50c42005-06-04 22:06:24 +000018858 hashitem_T *hi;
18859
Bram Moolenaar071d4272004-06-13 20:20:40 +000018860 if (name[1] != ':')
18861 {
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000018862 /* The name must not start with a colon or #. */
18863 if (name[0] == ':' || name[0] == AUTOLOAD_CHAR)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018864 return NULL;
18865 *varname = name;
Bram Moolenaar532c7802005-01-27 14:44:31 +000018866
18867 /* "version" is "v:version" in all scopes */
Bram Moolenaar75c50c42005-06-04 22:06:24 +000018868 hi = hash_find(&compat_hashtab, name);
18869 if (!HASHITEM_EMPTY(hi))
Bram Moolenaar532c7802005-01-27 14:44:31 +000018870 return &compat_hashtab;
18871
Bram Moolenaar071d4272004-06-13 20:20:40 +000018872 if (current_funccal == NULL)
Bram Moolenaar33570922005-01-25 22:26:29 +000018873 return &globvarht; /* global variable */
18874 return &current_funccal->l_vars.dv_hashtab; /* l: variable */
Bram Moolenaar071d4272004-06-13 20:20:40 +000018875 }
18876 *varname = name + 2;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000018877 if (*name == 'g') /* global variable */
18878 return &globvarht;
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000018879 /* There must be no ':' or '#' in the rest of the name, unless g: is used
18880 */
18881 if (vim_strchr(name + 2, ':') != NULL
18882 || vim_strchr(name + 2, AUTOLOAD_CHAR) != NULL)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000018883 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018884 if (*name == 'b') /* buffer variable */
Bram Moolenaar33570922005-01-25 22:26:29 +000018885 return &curbuf->b_vars.dv_hashtab;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018886 if (*name == 'w') /* window variable */
Bram Moolenaar33570922005-01-25 22:26:29 +000018887 return &curwin->w_vars.dv_hashtab;
Bram Moolenaar910f66f2006-04-05 20:41:53 +000018888#ifdef FEAT_WINDOWS
18889 if (*name == 't') /* tab page variable */
18890 return &curtab->tp_vars.dv_hashtab;
18891#endif
Bram Moolenaar33570922005-01-25 22:26:29 +000018892 if (*name == 'v') /* v: variable */
18893 return &vimvarht;
18894 if (*name == 'a' && current_funccal != NULL) /* function argument */
18895 return &current_funccal->l_avars.dv_hashtab;
18896 if (*name == 'l' && current_funccal != NULL) /* local function variable */
18897 return &current_funccal->l_vars.dv_hashtab;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018898 if (*name == 's' /* script variable */
18899 && current_SID > 0 && current_SID <= ga_scripts.ga_len)
18900 return &SCRIPT_VARS(current_SID);
18901 return NULL;
18902}
18903
18904/*
18905 * Get the string value of a (global/local) variable.
18906 * Returns NULL when it doesn't exist.
18907 */
18908 char_u *
18909get_var_value(name)
18910 char_u *name;
18911{
Bram Moolenaar33570922005-01-25 22:26:29 +000018912 dictitem_T *v;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018913
Bram Moolenaara7043832005-01-21 11:56:39 +000018914 v = find_var(name, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018915 if (v == NULL)
18916 return NULL;
Bram Moolenaar33570922005-01-25 22:26:29 +000018917 return get_tv_string(&v->di_tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018918}
18919
18920/*
Bram Moolenaar33570922005-01-25 22:26:29 +000018921 * Allocate a new hashtab for a sourced script. It will be used while
Bram Moolenaar071d4272004-06-13 20:20:40 +000018922 * sourcing this script and when executing functions defined in the script.
18923 */
18924 void
18925new_script_vars(id)
18926 scid_T id;
18927{
Bram Moolenaara7043832005-01-21 11:56:39 +000018928 int i;
Bram Moolenaar33570922005-01-25 22:26:29 +000018929 hashtab_T *ht;
18930 scriptvar_T *sv;
Bram Moolenaara7043832005-01-21 11:56:39 +000018931
Bram Moolenaar071d4272004-06-13 20:20:40 +000018932 if (ga_grow(&ga_scripts, (int)(id - ga_scripts.ga_len)) == OK)
18933 {
Bram Moolenaara7043832005-01-21 11:56:39 +000018934 /* Re-allocating ga_data means that an ht_array pointing to
18935 * ht_smallarray becomes invalid. We can recognize this: ht_mask is
Bram Moolenaar33570922005-01-25 22:26:29 +000018936 * at its init value. Also reset "v_dict", it's always the same. */
Bram Moolenaara7043832005-01-21 11:56:39 +000018937 for (i = 1; i <= ga_scripts.ga_len; ++i)
18938 {
18939 ht = &SCRIPT_VARS(i);
18940 if (ht->ht_mask == HT_INIT_SIZE - 1)
18941 ht->ht_array = ht->ht_smallarray;
Bram Moolenaar33570922005-01-25 22:26:29 +000018942 sv = &SCRIPT_SV(i);
18943 sv->sv_var.di_tv.vval.v_dict = &sv->sv_dict;
Bram Moolenaara7043832005-01-21 11:56:39 +000018944 }
18945
Bram Moolenaar071d4272004-06-13 20:20:40 +000018946 while (ga_scripts.ga_len < id)
18947 {
Bram Moolenaar33570922005-01-25 22:26:29 +000018948 sv = &SCRIPT_SV(ga_scripts.ga_len + 1);
18949 init_var_dict(&sv->sv_dict, &sv->sv_var);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018950 ++ga_scripts.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018951 }
18952 }
18953}
18954
18955/*
Bram Moolenaar33570922005-01-25 22:26:29 +000018956 * Initialize dictionary "dict" as a scope and set variable "dict_var" to
18957 * point to it.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018958 */
18959 void
Bram Moolenaar33570922005-01-25 22:26:29 +000018960init_var_dict(dict, dict_var)
18961 dict_T *dict;
18962 dictitem_T *dict_var;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018963{
Bram Moolenaar33570922005-01-25 22:26:29 +000018964 hash_init(&dict->dv_hashtab);
18965 dict->dv_refcount = 99999;
18966 dict_var->di_tv.vval.v_dict = dict;
18967 dict_var->di_tv.v_type = VAR_DICT;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000018968 dict_var->di_tv.v_lock = VAR_FIXED;
Bram Moolenaar33570922005-01-25 22:26:29 +000018969 dict_var->di_flags = DI_FLAGS_RO | DI_FLAGS_FIX;
18970 dict_var->di_key[0] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018971}
18972
18973/*
18974 * Clean up a list of internal variables.
Bram Moolenaar33570922005-01-25 22:26:29 +000018975 * Frees all allocated variables and the value they contain.
18976 * Clears hashtab "ht", does not free it.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018977 */
18978 void
Bram Moolenaara7043832005-01-21 11:56:39 +000018979vars_clear(ht)
Bram Moolenaar33570922005-01-25 22:26:29 +000018980 hashtab_T *ht;
18981{
18982 vars_clear_ext(ht, TRUE);
18983}
18984
18985/*
18986 * Like vars_clear(), but only free the value if "free_val" is TRUE.
18987 */
18988 static void
18989vars_clear_ext(ht, free_val)
18990 hashtab_T *ht;
18991 int free_val;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018992{
Bram Moolenaara7043832005-01-21 11:56:39 +000018993 int todo;
Bram Moolenaar33570922005-01-25 22:26:29 +000018994 hashitem_T *hi;
18995 dictitem_T *v;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018996
Bram Moolenaar33570922005-01-25 22:26:29 +000018997 hash_lock(ht);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000018998 todo = (int)ht->ht_used;
Bram Moolenaara7043832005-01-21 11:56:39 +000018999 for (hi = ht->ht_array; todo > 0; ++hi)
19000 {
19001 if (!HASHITEM_EMPTY(hi))
19002 {
19003 --todo;
19004
Bram Moolenaar33570922005-01-25 22:26:29 +000019005 /* Free the variable. Don't remove it from the hashtab,
Bram Moolenaara7043832005-01-21 11:56:39 +000019006 * ht_array might change then. hash_clear() takes care of it
19007 * later. */
Bram Moolenaar33570922005-01-25 22:26:29 +000019008 v = HI2DI(hi);
19009 if (free_val)
19010 clear_tv(&v->di_tv);
19011 if ((v->di_flags & DI_FLAGS_FIX) == 0)
19012 vim_free(v);
Bram Moolenaara7043832005-01-21 11:56:39 +000019013 }
19014 }
19015 hash_clear(ht);
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +000019016 ht->ht_used = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019017}
19018
Bram Moolenaara7043832005-01-21 11:56:39 +000019019/*
Bram Moolenaar33570922005-01-25 22:26:29 +000019020 * Delete a variable from hashtab "ht" at item "hi".
19021 * Clear the variable value and free the dictitem.
Bram Moolenaara7043832005-01-21 11:56:39 +000019022 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000019023 static void
Bram Moolenaara7043832005-01-21 11:56:39 +000019024delete_var(ht, hi)
Bram Moolenaar33570922005-01-25 22:26:29 +000019025 hashtab_T *ht;
19026 hashitem_T *hi;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019027{
Bram Moolenaar33570922005-01-25 22:26:29 +000019028 dictitem_T *di = HI2DI(hi);
Bram Moolenaara7043832005-01-21 11:56:39 +000019029
19030 hash_remove(ht, hi);
Bram Moolenaar33570922005-01-25 22:26:29 +000019031 clear_tv(&di->di_tv);
19032 vim_free(di);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019033}
19034
19035/*
19036 * List the value of one internal variable.
19037 */
19038 static void
Bram Moolenaar7d61a922007-08-30 09:12:23 +000019039list_one_var(v, prefix, first)
Bram Moolenaar33570922005-01-25 22:26:29 +000019040 dictitem_T *v;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019041 char_u *prefix;
Bram Moolenaar7d61a922007-08-30 09:12:23 +000019042 int *first;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019043{
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019044 char_u *tofree;
19045 char_u *s;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000019046 char_u numbuf[NUMBUFLEN];
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019047
Bram Moolenaarb71eaae2006-01-20 23:10:18 +000019048 s = echo_string(&v->di_tv, &tofree, numbuf, ++current_copyID);
Bram Moolenaar33570922005-01-25 22:26:29 +000019049 list_one_var_a(prefix, v->di_key, v->di_tv.v_type,
Bram Moolenaar7d61a922007-08-30 09:12:23 +000019050 s == NULL ? (char_u *)"" : s, first);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019051 vim_free(tofree);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019052}
19053
Bram Moolenaar071d4272004-06-13 20:20:40 +000019054 static void
Bram Moolenaar7d61a922007-08-30 09:12:23 +000019055list_one_var_a(prefix, name, type, string, first)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019056 char_u *prefix;
19057 char_u *name;
19058 int type;
19059 char_u *string;
Bram Moolenaar7d61a922007-08-30 09:12:23 +000019060 int *first; /* when TRUE clear rest of screen and set to FALSE */
Bram Moolenaar071d4272004-06-13 20:20:40 +000019061{
Bram Moolenaar31859182007-08-14 20:41:13 +000019062 /* don't use msg() or msg_attr() to avoid overwriting "v:statusmsg" */
19063 msg_start();
19064 msg_puts(prefix);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019065 if (name != NULL) /* "a:" vars don't have a name stored */
19066 msg_puts(name);
19067 msg_putchar(' ');
19068 msg_advance(22);
19069 if (type == VAR_NUMBER)
19070 msg_putchar('#');
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019071 else if (type == VAR_FUNC)
19072 msg_putchar('*');
19073 else if (type == VAR_LIST)
19074 {
19075 msg_putchar('[');
19076 if (*string == '[')
19077 ++string;
19078 }
Bram Moolenaar8c711452005-01-14 21:53:12 +000019079 else if (type == VAR_DICT)
19080 {
19081 msg_putchar('{');
19082 if (*string == '{')
19083 ++string;
19084 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019085 else
19086 msg_putchar(' ');
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019087
Bram Moolenaar071d4272004-06-13 20:20:40 +000019088 msg_outtrans(string);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019089
19090 if (type == VAR_FUNC)
19091 msg_puts((char_u *)"()");
Bram Moolenaar7d61a922007-08-30 09:12:23 +000019092 if (*first)
19093 {
19094 msg_clr_eos();
19095 *first = FALSE;
19096 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019097}
19098
19099/*
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019100 * Set variable "name" to value in "tv".
Bram Moolenaar071d4272004-06-13 20:20:40 +000019101 * If the variable already exists, the value is updated.
19102 * Otherwise the variable is created.
19103 */
19104 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019105set_var(name, tv, copy)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019106 char_u *name;
Bram Moolenaar33570922005-01-25 22:26:29 +000019107 typval_T *tv;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019108 int copy; /* make copy of value in "tv" */
Bram Moolenaar071d4272004-06-13 20:20:40 +000019109{
Bram Moolenaar33570922005-01-25 22:26:29 +000019110 dictitem_T *v;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019111 char_u *varname;
Bram Moolenaar33570922005-01-25 22:26:29 +000019112 hashtab_T *ht;
Bram Moolenaar92124a32005-06-17 22:03:40 +000019113 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019114
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019115 if (tv->v_type == VAR_FUNC)
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019116 {
19117 if (!(vim_strchr((char_u *)"wbs", name[0]) != NULL && name[1] == ':')
19118 && !ASCII_ISUPPER((name[0] != NUL && name[1] == ':')
19119 ? name[2] : name[0]))
19120 {
Bram Moolenaare49b69a2005-01-08 16:11:57 +000019121 EMSG2(_("E704: Funcref variable name must start with a capital: %s"), name);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019122 return;
19123 }
19124 if (function_exists(name))
19125 {
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +000019126 EMSG2(_("E705: Variable name conflicts with existing function: %s"),
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019127 name);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019128 return;
19129 }
19130 }
19131
Bram Moolenaara7043832005-01-21 11:56:39 +000019132 ht = find_var_ht(name, &varname);
Bram Moolenaar33570922005-01-25 22:26:29 +000019133 if (ht == NULL || *varname == NUL)
Bram Moolenaara7043832005-01-21 11:56:39 +000019134 {
Bram Moolenaar92124a32005-06-17 22:03:40 +000019135 EMSG2(_(e_illvar), name);
Bram Moolenaara7043832005-01-21 11:56:39 +000019136 return;
19137 }
19138
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000019139 v = find_var_in_ht(ht, varname, TRUE);
Bram Moolenaar33570922005-01-25 22:26:29 +000019140 if (v != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019141 {
Bram Moolenaar33570922005-01-25 22:26:29 +000019142 /* existing variable, need to clear the value */
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000019143 if (var_check_ro(v->di_flags, name)
19144 || tv_check_lock(v->di_tv.v_lock, name))
Bram Moolenaar33570922005-01-25 22:26:29 +000019145 return;
19146 if (v->di_tv.v_type != tv->v_type
19147 && !((v->di_tv.v_type == VAR_STRING
19148 || v->di_tv.v_type == VAR_NUMBER)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019149 && (tv->v_type == VAR_STRING
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019150 || tv->v_type == VAR_NUMBER))
19151#ifdef FEAT_FLOAT
19152 && !((v->di_tv.v_type == VAR_NUMBER
19153 || v->di_tv.v_type == VAR_FLOAT)
19154 && (tv->v_type == VAR_NUMBER
19155 || tv->v_type == VAR_FLOAT))
19156#endif
19157 )
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019158 {
Bram Moolenaare49b69a2005-01-08 16:11:57 +000019159 EMSG2(_("E706: Variable type mismatch for: %s"), name);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019160 return;
19161 }
Bram Moolenaar33570922005-01-25 22:26:29 +000019162
19163 /*
Bram Moolenaar758711c2005-02-02 23:11:38 +000019164 * Handle setting internal v: variables separately: we don't change
19165 * the type.
Bram Moolenaar33570922005-01-25 22:26:29 +000019166 */
19167 if (ht == &vimvarht)
19168 {
19169 if (v->di_tv.v_type == VAR_STRING)
19170 {
19171 vim_free(v->di_tv.vval.v_string);
19172 if (copy || tv->v_type != VAR_STRING)
19173 v->di_tv.vval.v_string = vim_strsave(get_tv_string(tv));
19174 else
19175 {
19176 /* Take over the string to avoid an extra alloc/free. */
19177 v->di_tv.vval.v_string = tv->vval.v_string;
19178 tv->vval.v_string = NULL;
19179 }
19180 }
19181 else if (v->di_tv.v_type != VAR_NUMBER)
19182 EMSG2(_(e_intern2), "set_var()");
19183 else
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019184 {
Bram Moolenaar33570922005-01-25 22:26:29 +000019185 v->di_tv.vval.v_number = get_tv_number(tv);
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019186 if (STRCMP(varname, "searchforward") == 0)
19187 set_search_direction(v->di_tv.vval.v_number ? '/' : '?');
19188 }
Bram Moolenaar33570922005-01-25 22:26:29 +000019189 return;
19190 }
19191
19192 clear_tv(&v->di_tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019193 }
19194 else /* add a new variable */
19195 {
Bram Moolenaar5fcc3fe2006-06-22 15:35:14 +000019196 /* Can't add "v:" variable. */
19197 if (ht == &vimvarht)
19198 {
19199 EMSG2(_(e_illvar), name);
19200 return;
19201 }
19202
Bram Moolenaar92124a32005-06-17 22:03:40 +000019203 /* Make sure the variable name is valid. */
19204 for (p = varname; *p != NUL; ++p)
Bram Moolenaara5792f52005-11-23 21:25:05 +000019205 if (!eval_isnamec1(*p) && (p == varname || !VIM_ISDIGIT(*p))
19206 && *p != AUTOLOAD_CHAR)
Bram Moolenaar92124a32005-06-17 22:03:40 +000019207 {
19208 EMSG2(_(e_illvar), varname);
19209 return;
19210 }
19211
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000019212 v = (dictitem_T *)alloc((unsigned)(sizeof(dictitem_T)
19213 + STRLEN(varname)));
Bram Moolenaara7043832005-01-21 11:56:39 +000019214 if (v == NULL)
19215 return;
Bram Moolenaar33570922005-01-25 22:26:29 +000019216 STRCPY(v->di_key, varname);
Bram Moolenaar33570922005-01-25 22:26:29 +000019217 if (hash_add(ht, DI2HIKEY(v)) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019218 {
Bram Moolenaara7043832005-01-21 11:56:39 +000019219 vim_free(v);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019220 return;
19221 }
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000019222 v->di_flags = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019223 }
Bram Moolenaara7043832005-01-21 11:56:39 +000019224
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019225 if (copy || tv->v_type == VAR_NUMBER || tv->v_type == VAR_FLOAT)
Bram Moolenaar33570922005-01-25 22:26:29 +000019226 copy_tv(tv, &v->di_tv);
Bram Moolenaar1c2fda22005-01-02 11:43:19 +000019227 else
19228 {
Bram Moolenaar33570922005-01-25 22:26:29 +000019229 v->di_tv = *tv;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000019230 v->di_tv.v_lock = 0;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019231 init_tv(tv);
Bram Moolenaar1c2fda22005-01-02 11:43:19 +000019232 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019233}
19234
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019235/*
Bram Moolenaar4e957af2006-09-02 11:41:07 +000019236 * Return TRUE if di_flags "flags" indicates variable "name" is read-only.
Bram Moolenaar33570922005-01-25 22:26:29 +000019237 * Also give an error message.
19238 */
19239 static int
19240var_check_ro(flags, name)
19241 int flags;
19242 char_u *name;
19243{
19244 if (flags & DI_FLAGS_RO)
19245 {
19246 EMSG2(_(e_readonlyvar), name);
19247 return TRUE;
19248 }
19249 if ((flags & DI_FLAGS_RO_SBX) && sandbox)
19250 {
19251 EMSG2(_(e_readonlysbx), name);
19252 return TRUE;
19253 }
19254 return FALSE;
19255}
19256
19257/*
Bram Moolenaar4e957af2006-09-02 11:41:07 +000019258 * Return TRUE if di_flags "flags" indicates variable "name" is fixed.
19259 * Also give an error message.
19260 */
19261 static int
19262var_check_fixed(flags, name)
19263 int flags;
19264 char_u *name;
19265{
19266 if (flags & DI_FLAGS_FIX)
19267 {
19268 EMSG2(_("E795: Cannot delete variable %s"), name);
19269 return TRUE;
19270 }
19271 return FALSE;
19272}
19273
19274/*
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000019275 * Return TRUE if typeval "tv" is set to be locked (immutable).
19276 * Also give an error message, using "name".
19277 */
19278 static int
19279tv_check_lock(lock, name)
19280 int lock;
19281 char_u *name;
19282{
19283 if (lock & VAR_LOCKED)
19284 {
19285 EMSG2(_("E741: Value is locked: %s"),
19286 name == NULL ? (char_u *)_("Unknown") : name);
19287 return TRUE;
19288 }
19289 if (lock & VAR_FIXED)
19290 {
19291 EMSG2(_("E742: Cannot change value of %s"),
19292 name == NULL ? (char_u *)_("Unknown") : name);
19293 return TRUE;
19294 }
19295 return FALSE;
19296}
19297
19298/*
Bram Moolenaar33570922005-01-25 22:26:29 +000019299 * Copy the values from typval_T "from" to typval_T "to".
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019300 * When needed allocates string or increases reference count.
Bram Moolenaare9a41262005-01-15 22:18:47 +000019301 * Does not make a copy of a list or dict but copies the reference!
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019302 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000019303 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019304copy_tv(from, to)
Bram Moolenaar33570922005-01-25 22:26:29 +000019305 typval_T *from;
19306 typval_T *to;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019307{
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019308 to->v_type = from->v_type;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000019309 to->v_lock = 0;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019310 switch (from->v_type)
19311 {
19312 case VAR_NUMBER:
19313 to->vval.v_number = from->vval.v_number;
19314 break;
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019315#ifdef FEAT_FLOAT
19316 case VAR_FLOAT:
19317 to->vval.v_float = from->vval.v_float;
19318 break;
19319#endif
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019320 case VAR_STRING:
19321 case VAR_FUNC:
19322 if (from->vval.v_string == NULL)
19323 to->vval.v_string = NULL;
19324 else
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019325 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019326 to->vval.v_string = vim_strsave(from->vval.v_string);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019327 if (from->v_type == VAR_FUNC)
19328 func_ref(to->vval.v_string);
19329 }
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019330 break;
19331 case VAR_LIST:
19332 if (from->vval.v_list == NULL)
19333 to->vval.v_list = NULL;
19334 else
19335 {
19336 to->vval.v_list = from->vval.v_list;
19337 ++to->vval.v_list->lv_refcount;
19338 }
19339 break;
Bram Moolenaar8c711452005-01-14 21:53:12 +000019340 case VAR_DICT:
19341 if (from->vval.v_dict == NULL)
19342 to->vval.v_dict = NULL;
19343 else
19344 {
19345 to->vval.v_dict = from->vval.v_dict;
19346 ++to->vval.v_dict->dv_refcount;
19347 }
19348 break;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019349 default:
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019350 EMSG2(_(e_intern2), "copy_tv()");
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019351 break;
19352 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019353}
19354
19355/*
Bram Moolenaare9a41262005-01-15 22:18:47 +000019356 * Make a copy of an item.
19357 * Lists and Dictionaries are also copied. A deep copy if "deep" is set.
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019358 * For deepcopy() "copyID" is zero for a full copy or the ID for when a
19359 * reference to an already copied list/dict can be used.
19360 * Returns FAIL or OK.
Bram Moolenaare9a41262005-01-15 22:18:47 +000019361 */
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019362 static int
19363item_copy(from, to, deep, copyID)
Bram Moolenaar33570922005-01-25 22:26:29 +000019364 typval_T *from;
19365 typval_T *to;
Bram Moolenaare9a41262005-01-15 22:18:47 +000019366 int deep;
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019367 int copyID;
Bram Moolenaare9a41262005-01-15 22:18:47 +000019368{
19369 static int recurse = 0;
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019370 int ret = OK;
Bram Moolenaare9a41262005-01-15 22:18:47 +000019371
Bram Moolenaar33570922005-01-25 22:26:29 +000019372 if (recurse >= DICT_MAXNEST)
Bram Moolenaare9a41262005-01-15 22:18:47 +000019373 {
19374 EMSG(_("E698: variable nested too deep for making a copy"));
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019375 return FAIL;
Bram Moolenaare9a41262005-01-15 22:18:47 +000019376 }
19377 ++recurse;
19378
19379 switch (from->v_type)
19380 {
19381 case VAR_NUMBER:
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019382#ifdef FEAT_FLOAT
19383 case VAR_FLOAT:
19384#endif
Bram Moolenaare9a41262005-01-15 22:18:47 +000019385 case VAR_STRING:
19386 case VAR_FUNC:
19387 copy_tv(from, to);
19388 break;
19389 case VAR_LIST:
19390 to->v_type = VAR_LIST;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000019391 to->v_lock = 0;
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019392 if (from->vval.v_list == NULL)
19393 to->vval.v_list = NULL;
19394 else if (copyID != 0 && from->vval.v_list->lv_copyID == copyID)
19395 {
19396 /* use the copy made earlier */
19397 to->vval.v_list = from->vval.v_list->lv_copylist;
19398 ++to->vval.v_list->lv_refcount;
19399 }
19400 else
19401 to->vval.v_list = list_copy(from->vval.v_list, deep, copyID);
19402 if (to->vval.v_list == NULL)
19403 ret = FAIL;
Bram Moolenaare9a41262005-01-15 22:18:47 +000019404 break;
19405 case VAR_DICT:
19406 to->v_type = VAR_DICT;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000019407 to->v_lock = 0;
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019408 if (from->vval.v_dict == NULL)
19409 to->vval.v_dict = NULL;
19410 else if (copyID != 0 && from->vval.v_dict->dv_copyID == copyID)
19411 {
19412 /* use the copy made earlier */
19413 to->vval.v_dict = from->vval.v_dict->dv_copydict;
19414 ++to->vval.v_dict->dv_refcount;
19415 }
19416 else
19417 to->vval.v_dict = dict_copy(from->vval.v_dict, deep, copyID);
19418 if (to->vval.v_dict == NULL)
19419 ret = FAIL;
Bram Moolenaare9a41262005-01-15 22:18:47 +000019420 break;
19421 default:
19422 EMSG2(_(e_intern2), "item_copy()");
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019423 ret = FAIL;
Bram Moolenaare9a41262005-01-15 22:18:47 +000019424 }
19425 --recurse;
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019426 return ret;
Bram Moolenaare9a41262005-01-15 22:18:47 +000019427}
19428
19429/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000019430 * ":echo expr1 ..." print each argument separated with a space, add a
19431 * newline at the end.
19432 * ":echon expr1 ..." print each argument plain.
19433 */
19434 void
19435ex_echo(eap)
19436 exarg_T *eap;
19437{
19438 char_u *arg = eap->arg;
Bram Moolenaar33570922005-01-25 22:26:29 +000019439 typval_T rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019440 char_u *tofree;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019441 char_u *p;
19442 int needclr = TRUE;
19443 int atstart = TRUE;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000019444 char_u numbuf[NUMBUFLEN];
Bram Moolenaar071d4272004-06-13 20:20:40 +000019445
19446 if (eap->skip)
19447 ++emsg_skip;
19448 while (*arg != NUL && *arg != '|' && *arg != '\n' && !got_int)
19449 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019450 /* If eval1() causes an error message the text from the command may
19451 * still need to be cleared. E.g., "echo 22,44". */
19452 need_clr_eos = needclr;
19453
Bram Moolenaar071d4272004-06-13 20:20:40 +000019454 p = arg;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019455 if (eval1(&arg, &rettv, !eap->skip) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019456 {
19457 /*
19458 * Report the invalid expression unless the expression evaluation
19459 * has been cancelled due to an aborting error, an interrupt, or an
19460 * exception.
19461 */
19462 if (!aborting())
19463 EMSG2(_(e_invexpr2), p);
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019464 need_clr_eos = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019465 break;
19466 }
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019467 need_clr_eos = FALSE;
19468
Bram Moolenaar071d4272004-06-13 20:20:40 +000019469 if (!eap->skip)
19470 {
19471 if (atstart)
19472 {
19473 atstart = FALSE;
19474 /* Call msg_start() after eval1(), evaluating the expression
19475 * may cause a message to appear. */
19476 if (eap->cmdidx == CMD_echo)
19477 msg_start();
19478 }
19479 else if (eap->cmdidx == CMD_echo)
19480 msg_puts_attr((char_u *)" ", echo_attr);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +000019481 p = echo_string(&rettv, &tofree, numbuf, ++current_copyID);
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019482 if (p != NULL)
19483 for ( ; *p != NUL && !got_int; ++p)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019484 {
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019485 if (*p == '\n' || *p == '\r' || *p == TAB)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019486 {
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019487 if (*p != TAB && needclr)
19488 {
19489 /* remove any text still there from the command */
19490 msg_clr_eos();
19491 needclr = FALSE;
19492 }
19493 msg_putchar_attr(*p, echo_attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019494 }
19495 else
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019496 {
19497#ifdef FEAT_MBYTE
19498 if (has_mbyte)
19499 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000019500 int i = (*mb_ptr2len)(p);
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019501
19502 (void)msg_outtrans_len_attr(p, i, echo_attr);
19503 p += i - 1;
19504 }
19505 else
Bram Moolenaar071d4272004-06-13 20:20:40 +000019506#endif
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019507 (void)msg_outtrans_len_attr(p, 1, echo_attr);
19508 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019509 }
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019510 vim_free(tofree);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019511 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019512 clear_tv(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019513 arg = skipwhite(arg);
19514 }
19515 eap->nextcmd = check_nextcmd(arg);
19516
19517 if (eap->skip)
19518 --emsg_skip;
19519 else
19520 {
19521 /* remove text that may still be there from the command */
19522 if (needclr)
19523 msg_clr_eos();
19524 if (eap->cmdidx == CMD_echo)
19525 msg_end();
19526 }
19527}
19528
19529/*
19530 * ":echohl {name}".
19531 */
19532 void
19533ex_echohl(eap)
19534 exarg_T *eap;
19535{
19536 int id;
19537
19538 id = syn_name2id(eap->arg);
19539 if (id == 0)
19540 echo_attr = 0;
19541 else
19542 echo_attr = syn_id2attr(id);
19543}
19544
19545/*
19546 * ":execute expr1 ..." execute the result of an expression.
19547 * ":echomsg expr1 ..." Print a message
19548 * ":echoerr expr1 ..." Print an error
19549 * Each gets spaces around each argument and a newline at the end for
19550 * echo commands
19551 */
19552 void
19553ex_execute(eap)
19554 exarg_T *eap;
19555{
19556 char_u *arg = eap->arg;
Bram Moolenaar33570922005-01-25 22:26:29 +000019557 typval_T rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019558 int ret = OK;
19559 char_u *p;
19560 garray_T ga;
19561 int len;
19562 int save_did_emsg;
19563
19564 ga_init2(&ga, 1, 80);
19565
19566 if (eap->skip)
19567 ++emsg_skip;
19568 while (*arg != NUL && *arg != '|' && *arg != '\n')
19569 {
19570 p = arg;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019571 if (eval1(&arg, &rettv, !eap->skip) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019572 {
19573 /*
19574 * Report the invalid expression unless the expression evaluation
19575 * has been cancelled due to an aborting error, an interrupt, or an
19576 * exception.
19577 */
19578 if (!aborting())
19579 EMSG2(_(e_invexpr2), p);
19580 ret = FAIL;
19581 break;
19582 }
19583
19584 if (!eap->skip)
19585 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019586 p = get_tv_string(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019587 len = (int)STRLEN(p);
19588 if (ga_grow(&ga, len + 2) == FAIL)
19589 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019590 clear_tv(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019591 ret = FAIL;
19592 break;
19593 }
19594 if (ga.ga_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019595 ((char_u *)(ga.ga_data))[ga.ga_len++] = ' ';
Bram Moolenaar071d4272004-06-13 20:20:40 +000019596 STRCPY((char_u *)(ga.ga_data) + ga.ga_len, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019597 ga.ga_len += len;
19598 }
19599
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019600 clear_tv(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019601 arg = skipwhite(arg);
19602 }
19603
19604 if (ret != FAIL && ga.ga_data != NULL)
19605 {
19606 if (eap->cmdidx == CMD_echomsg)
Bram Moolenaar4770d092006-01-12 23:22:24 +000019607 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000019608 MSG_ATTR(ga.ga_data, echo_attr);
Bram Moolenaar4770d092006-01-12 23:22:24 +000019609 out_flush();
19610 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019611 else if (eap->cmdidx == CMD_echoerr)
19612 {
19613 /* We don't want to abort following commands, restore did_emsg. */
19614 save_did_emsg = did_emsg;
19615 EMSG((char_u *)ga.ga_data);
19616 if (!force_abort)
19617 did_emsg = save_did_emsg;
19618 }
19619 else if (eap->cmdidx == CMD_execute)
19620 do_cmdline((char_u *)ga.ga_data,
19621 eap->getline, eap->cookie, DOCMD_NOWAIT|DOCMD_VERBOSE);
19622 }
19623
19624 ga_clear(&ga);
19625
19626 if (eap->skip)
19627 --emsg_skip;
19628
19629 eap->nextcmd = check_nextcmd(arg);
19630}
19631
19632/*
19633 * Skip over the name of an option: "&option", "&g:option" or "&l:option".
19634 * "arg" points to the "&" or '+' when called, to "option" when returning.
19635 * Returns NULL when no option name found. Otherwise pointer to the char
19636 * after the option name.
19637 */
19638 static char_u *
19639find_option_end(arg, opt_flags)
19640 char_u **arg;
19641 int *opt_flags;
19642{
19643 char_u *p = *arg;
19644
19645 ++p;
19646 if (*p == 'g' && p[1] == ':')
19647 {
19648 *opt_flags = OPT_GLOBAL;
19649 p += 2;
19650 }
19651 else if (*p == 'l' && p[1] == ':')
19652 {
19653 *opt_flags = OPT_LOCAL;
19654 p += 2;
19655 }
19656 else
19657 *opt_flags = 0;
19658
19659 if (!ASCII_ISALPHA(*p))
19660 return NULL;
19661 *arg = p;
19662
19663 if (p[0] == 't' && p[1] == '_' && p[2] != NUL && p[3] != NUL)
19664 p += 4; /* termcap option */
19665 else
19666 while (ASCII_ISALPHA(*p))
19667 ++p;
19668 return p;
19669}
19670
19671/*
19672 * ":function"
19673 */
19674 void
19675ex_function(eap)
19676 exarg_T *eap;
19677{
19678 char_u *theline;
19679 int j;
19680 int c;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019681 int saved_did_emsg;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019682 char_u *name = NULL;
19683 char_u *p;
19684 char_u *arg;
Bram Moolenaar997fb4b2006-02-17 21:53:23 +000019685 char_u *line_arg = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019686 garray_T newargs;
19687 garray_T newlines;
19688 int varargs = FALSE;
19689 int mustend = FALSE;
19690 int flags = 0;
19691 ufunc_T *fp;
19692 int indent;
19693 int nesting;
19694 char_u *skip_until = NULL;
Bram Moolenaar33570922005-01-25 22:26:29 +000019695 dictitem_T *v;
19696 funcdict_T fudi;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019697 static int func_nr = 0; /* number for nameless function */
19698 int paren;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000019699 hashtab_T *ht;
19700 int todo;
19701 hashitem_T *hi;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000019702 int sourcing_lnum_off;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019703
19704 /*
19705 * ":function" without argument: list functions.
19706 */
19707 if (ends_excmd(*eap->arg))
19708 {
19709 if (!eap->skip)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000019710 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000019711 todo = (int)func_hashtab.ht_used;
Bram Moolenaar038eb0e2005-02-27 22:43:26 +000019712 for (hi = func_hashtab.ht_array; todo > 0 && !got_int; ++hi)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000019713 {
19714 if (!HASHITEM_EMPTY(hi))
19715 {
19716 --todo;
19717 fp = HI2UF(hi);
19718 if (!isdigit(*fp->uf_name))
19719 list_func_head(fp, FALSE);
19720 }
19721 }
19722 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019723 eap->nextcmd = check_nextcmd(eap->arg);
19724 return;
19725 }
19726
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019727 /*
Bram Moolenaardd2436f2005-09-05 22:14:46 +000019728 * ":function /pat": list functions matching pattern.
19729 */
19730 if (*eap->arg == '/')
19731 {
19732 p = skip_regexp(eap->arg + 1, '/', TRUE, NULL);
19733 if (!eap->skip)
19734 {
19735 regmatch_T regmatch;
19736
19737 c = *p;
19738 *p = NUL;
19739 regmatch.regprog = vim_regcomp(eap->arg + 1, RE_MAGIC);
19740 *p = c;
19741 if (regmatch.regprog != NULL)
19742 {
19743 regmatch.rm_ic = p_ic;
19744
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000019745 todo = (int)func_hashtab.ht_used;
Bram Moolenaardd2436f2005-09-05 22:14:46 +000019746 for (hi = func_hashtab.ht_array; todo > 0 && !got_int; ++hi)
19747 {
19748 if (!HASHITEM_EMPTY(hi))
19749 {
19750 --todo;
19751 fp = HI2UF(hi);
19752 if (!isdigit(*fp->uf_name)
19753 && vim_regexec(&regmatch, fp->uf_name, 0))
19754 list_func_head(fp, FALSE);
19755 }
19756 }
19757 }
19758 }
19759 if (*p == '/')
19760 ++p;
19761 eap->nextcmd = check_nextcmd(p);
19762 return;
19763 }
19764
19765 /*
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019766 * Get the function name. There are these situations:
19767 * func normal function name
19768 * "name" == func, "fudi.fd_dict" == NULL
19769 * dict.func new dictionary entry
19770 * "name" == NULL, "fudi.fd_dict" set,
19771 * "fudi.fd_di" == NULL, "fudi.fd_newkey" == func
19772 * dict.func existing dict entry with a Funcref
Bram Moolenaard857f0e2005-06-21 22:37:39 +000019773 * "name" == func, "fudi.fd_dict" set,
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019774 * "fudi.fd_di" set, "fudi.fd_newkey" == NULL
19775 * dict.func existing dict entry that's not a Funcref
19776 * "name" == NULL, "fudi.fd_dict" set,
19777 * "fudi.fd_di" set, "fudi.fd_newkey" == NULL
19778 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000019779 p = eap->arg;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019780 name = trans_function_name(&p, eap->skip, 0, &fudi);
19781 paren = (vim_strchr(p, '(') != NULL);
19782 if (name == NULL && (fudi.fd_dict == NULL || !paren) && !eap->skip)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019783 {
19784 /*
19785 * Return on an invalid expression in braces, unless the expression
19786 * evaluation has been cancelled due to an aborting error, an
19787 * interrupt, or an exception.
19788 */
19789 if (!aborting())
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019790 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000019791 if (!eap->skip && fudi.fd_newkey != NULL)
19792 EMSG2(_(e_dictkey), fudi.fd_newkey);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019793 vim_free(fudi.fd_newkey);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019794 return;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019795 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019796 else
19797 eap->skip = TRUE;
19798 }
Bram Moolenaar1f35bf92006-03-07 22:38:47 +000019799
Bram Moolenaar071d4272004-06-13 20:20:40 +000019800 /* An error in a function call during evaluation of an expression in magic
19801 * braces should not cause the function not to be defined. */
19802 saved_did_emsg = did_emsg;
19803 did_emsg = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019804
19805 /*
19806 * ":function func" with only function name: list function.
19807 */
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019808 if (!paren)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019809 {
19810 if (!ends_excmd(*skipwhite(p)))
19811 {
19812 EMSG(_(e_trailing));
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019813 goto ret_free;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019814 }
19815 eap->nextcmd = check_nextcmd(p);
19816 if (eap->nextcmd != NULL)
19817 *p = NUL;
19818 if (!eap->skip && !got_int)
19819 {
19820 fp = find_func(name);
19821 if (fp != NULL)
19822 {
19823 list_func_head(fp, TRUE);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000019824 for (j = 0; j < fp->uf_lines.ga_len && !got_int; ++j)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019825 {
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000019826 if (FUNCLINE(fp, j) == NULL)
19827 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019828 msg_putchar('\n');
19829 msg_outnum((long)(j + 1));
19830 if (j < 9)
19831 msg_putchar(' ');
19832 if (j < 99)
19833 msg_putchar(' ');
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000019834 msg_prt_line(FUNCLINE(fp, j), FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019835 out_flush(); /* show a line at a time */
19836 ui_breakcheck();
19837 }
19838 if (!got_int)
19839 {
19840 msg_putchar('\n');
19841 msg_puts((char_u *)" endfunction");
19842 }
19843 }
19844 else
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019845 emsg_funcname("E123: Undefined function: %s", name);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019846 }
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019847 goto ret_free;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019848 }
19849
19850 /*
19851 * ":function name(arg1, arg2)" Define function.
19852 */
19853 p = skipwhite(p);
19854 if (*p != '(')
19855 {
19856 if (!eap->skip)
19857 {
19858 EMSG2(_("E124: Missing '(': %s"), eap->arg);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019859 goto ret_free;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019860 }
19861 /* attempt to continue by skipping some text */
19862 if (vim_strchr(p, '(') != NULL)
19863 p = vim_strchr(p, '(');
19864 }
19865 p = skipwhite(p + 1);
19866
19867 ga_init2(&newargs, (int)sizeof(char_u *), 3);
19868 ga_init2(&newlines, (int)sizeof(char_u *), 3);
19869
Bram Moolenaard857f0e2005-06-21 22:37:39 +000019870 if (!eap->skip)
19871 {
Bram Moolenaarb42dc232006-11-21 18:36:05 +000019872 /* Check the name of the function. Unless it's a dictionary function
19873 * (that we are overwriting). */
Bram Moolenaard857f0e2005-06-21 22:37:39 +000019874 if (name != NULL)
19875 arg = name;
19876 else
19877 arg = fudi.fd_newkey;
Bram Moolenaarb42dc232006-11-21 18:36:05 +000019878 if (arg != NULL && (fudi.fd_di == NULL
19879 || fudi.fd_di->di_tv.v_type != VAR_FUNC))
Bram Moolenaard857f0e2005-06-21 22:37:39 +000019880 {
19881 if (*arg == K_SPECIAL)
19882 j = 3;
19883 else
19884 j = 0;
19885 while (arg[j] != NUL && (j == 0 ? eval_isnamec1(arg[j])
19886 : eval_isnamec(arg[j])))
19887 ++j;
19888 if (arg[j] != NUL)
19889 emsg_funcname(_(e_invarg2), arg);
19890 }
19891 }
19892
Bram Moolenaar071d4272004-06-13 20:20:40 +000019893 /*
19894 * Isolate the arguments: "arg1, arg2, ...)"
19895 */
19896 while (*p != ')')
19897 {
19898 if (p[0] == '.' && p[1] == '.' && p[2] == '.')
19899 {
19900 varargs = TRUE;
19901 p += 3;
19902 mustend = TRUE;
19903 }
19904 else
19905 {
19906 arg = p;
19907 while (ASCII_ISALNUM(*p) || *p == '_')
19908 ++p;
19909 if (arg == p || isdigit(*arg)
19910 || (p - arg == 9 && STRNCMP(arg, "firstline", 9) == 0)
19911 || (p - arg == 8 && STRNCMP(arg, "lastline", 8) == 0))
19912 {
19913 if (!eap->skip)
19914 EMSG2(_("E125: Illegal argument: %s"), arg);
19915 break;
19916 }
19917 if (ga_grow(&newargs, 1) == FAIL)
19918 goto erret;
19919 c = *p;
19920 *p = NUL;
19921 arg = vim_strsave(arg);
19922 if (arg == NULL)
19923 goto erret;
19924 ((char_u **)(newargs.ga_data))[newargs.ga_len] = arg;
19925 *p = c;
19926 newargs.ga_len++;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019927 if (*p == ',')
19928 ++p;
19929 else
19930 mustend = TRUE;
19931 }
19932 p = skipwhite(p);
19933 if (mustend && *p != ')')
19934 {
19935 if (!eap->skip)
19936 EMSG2(_(e_invarg2), eap->arg);
19937 break;
19938 }
19939 }
19940 ++p; /* skip the ')' */
19941
Bram Moolenaare9a41262005-01-15 22:18:47 +000019942 /* find extra arguments "range", "dict" and "abort" */
Bram Moolenaar071d4272004-06-13 20:20:40 +000019943 for (;;)
19944 {
19945 p = skipwhite(p);
19946 if (STRNCMP(p, "range", 5) == 0)
19947 {
19948 flags |= FC_RANGE;
19949 p += 5;
19950 }
Bram Moolenaare9a41262005-01-15 22:18:47 +000019951 else if (STRNCMP(p, "dict", 4) == 0)
19952 {
19953 flags |= FC_DICT;
19954 p += 4;
19955 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019956 else if (STRNCMP(p, "abort", 5) == 0)
19957 {
19958 flags |= FC_ABORT;
19959 p += 5;
19960 }
19961 else
19962 break;
19963 }
19964
Bram Moolenaar997fb4b2006-02-17 21:53:23 +000019965 /* When there is a line break use what follows for the function body.
19966 * Makes 'exe "func Test()\n...\nendfunc"' work. */
19967 if (*p == '\n')
19968 line_arg = p + 1;
19969 else if (*p != NUL && *p != '"' && !eap->skip && !did_emsg)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019970 EMSG(_(e_trailing));
19971
19972 /*
19973 * Read the body of the function, until ":endfunction" is found.
19974 */
19975 if (KeyTyped)
19976 {
19977 /* Check if the function already exists, don't let the user type the
19978 * whole function before telling him it doesn't work! For a script we
19979 * need to skip the body to be able to find what follows. */
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019980 if (!eap->skip && !eap->forceit)
19981 {
19982 if (fudi.fd_dict != NULL && fudi.fd_newkey == NULL)
19983 EMSG(_(e_funcdict));
19984 else if (name != NULL && find_func(name) != NULL)
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019985 emsg_funcname(e_funcexts, name);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019986 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019987
Bram Moolenaard857f0e2005-06-21 22:37:39 +000019988 if (!eap->skip && did_emsg)
19989 goto erret;
19990
Bram Moolenaar071d4272004-06-13 20:20:40 +000019991 msg_putchar('\n'); /* don't overwrite the function name */
19992 cmdline_row = msg_row;
19993 }
19994
19995 indent = 2;
19996 nesting = 0;
19997 for (;;)
19998 {
19999 msg_scroll = TRUE;
20000 need_wait_return = FALSE;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000020001 sourcing_lnum_off = sourcing_lnum;
20002
Bram Moolenaar997fb4b2006-02-17 21:53:23 +000020003 if (line_arg != NULL)
20004 {
20005 /* Use eap->arg, split up in parts by line breaks. */
20006 theline = line_arg;
20007 p = vim_strchr(theline, '\n');
20008 if (p == NULL)
20009 line_arg += STRLEN(line_arg);
20010 else
20011 {
20012 *p = NUL;
20013 line_arg = p + 1;
20014 }
20015 }
20016 else if (eap->getline == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020017 theline = getcmdline(':', 0L, indent);
20018 else
20019 theline = eap->getline(':', eap->cookie, indent);
20020 if (KeyTyped)
20021 lines_left = Rows - 1;
20022 if (theline == NULL)
20023 {
20024 EMSG(_("E126: Missing :endfunction"));
20025 goto erret;
20026 }
20027
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000020028 /* Detect line continuation: sourcing_lnum increased more than one. */
20029 if (sourcing_lnum > sourcing_lnum_off + 1)
20030 sourcing_lnum_off = sourcing_lnum - sourcing_lnum_off - 1;
20031 else
20032 sourcing_lnum_off = 0;
20033
Bram Moolenaar071d4272004-06-13 20:20:40 +000020034 if (skip_until != NULL)
20035 {
20036 /* between ":append" and "." and between ":python <<EOF" and "EOF"
20037 * don't check for ":endfunc". */
20038 if (STRCMP(theline, skip_until) == 0)
20039 {
20040 vim_free(skip_until);
20041 skip_until = NULL;
20042 }
20043 }
20044 else
20045 {
20046 /* skip ':' and blanks*/
20047 for (p = theline; vim_iswhite(*p) || *p == ':'; ++p)
20048 ;
20049
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000020050 /* Check for "endfunction". */
20051 if (checkforcmd(&p, "endfunction", 4) && nesting-- == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020052 {
Bram Moolenaar997fb4b2006-02-17 21:53:23 +000020053 if (line_arg == NULL)
20054 vim_free(theline);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020055 break;
20056 }
20057
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000020058 /* Increase indent inside "if", "while", "for" and "try", decrease
Bram Moolenaar071d4272004-06-13 20:20:40 +000020059 * at "end". */
20060 if (indent > 2 && STRNCMP(p, "end", 3) == 0)
20061 indent -= 2;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000020062 else if (STRNCMP(p, "if", 2) == 0
20063 || STRNCMP(p, "wh", 2) == 0
20064 || STRNCMP(p, "for", 3) == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +000020065 || STRNCMP(p, "try", 3) == 0)
20066 indent += 2;
20067
20068 /* Check for defining a function inside this function. */
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000020069 if (checkforcmd(&p, "function", 2))
Bram Moolenaar071d4272004-06-13 20:20:40 +000020070 {
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000020071 if (*p == '!')
20072 p = skipwhite(p + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020073 p += eval_fname_script(p);
20074 if (ASCII_ISALPHA(*p))
20075 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020076 vim_free(trans_function_name(&p, TRUE, 0, NULL));
Bram Moolenaar071d4272004-06-13 20:20:40 +000020077 if (*skipwhite(p) == '(')
20078 {
20079 ++nesting;
20080 indent += 2;
20081 }
20082 }
20083 }
20084
20085 /* Check for ":append" or ":insert". */
20086 p = skip_range(p, NULL);
20087 if ((p[0] == 'a' && (!ASCII_ISALPHA(p[1]) || p[1] == 'p'))
20088 || (p[0] == 'i'
20089 && (!ASCII_ISALPHA(p[1]) || (p[1] == 'n'
20090 && (!ASCII_ISALPHA(p[2]) || (p[2] == 's'))))))
20091 skip_until = vim_strsave((char_u *)".");
20092
20093 /* Check for ":python <<EOF", ":tcl <<EOF", etc. */
20094 arg = skipwhite(skiptowhite(p));
20095 if (arg[0] == '<' && arg[1] =='<'
20096 && ((p[0] == 'p' && p[1] == 'y'
20097 && (!ASCII_ISALPHA(p[2]) || p[2] == 't'))
20098 || (p[0] == 'p' && p[1] == 'e'
20099 && (!ASCII_ISALPHA(p[2]) || p[2] == 'r'))
20100 || (p[0] == 't' && p[1] == 'c'
20101 && (!ASCII_ISALPHA(p[2]) || p[2] == 'l'))
20102 || (p[0] == 'r' && p[1] == 'u' && p[2] == 'b'
20103 && (!ASCII_ISALPHA(p[3]) || p[3] == 'y'))
Bram Moolenaar325b7a22004-07-05 15:58:32 +000020104 || (p[0] == 'm' && p[1] == 'z'
20105 && (!ASCII_ISALPHA(p[2]) || p[2] == 's'))
Bram Moolenaar071d4272004-06-13 20:20:40 +000020106 ))
20107 {
20108 /* ":python <<" continues until a dot, like ":append" */
20109 p = skipwhite(arg + 2);
20110 if (*p == NUL)
20111 skip_until = vim_strsave((char_u *)".");
20112 else
20113 skip_until = vim_strsave(p);
20114 }
20115 }
20116
20117 /* Add the line to the function. */
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000020118 if (ga_grow(&newlines, 1 + sourcing_lnum_off) == FAIL)
Bram Moolenaar29a1c1d2005-06-24 23:11:15 +000020119 {
Bram Moolenaar997fb4b2006-02-17 21:53:23 +000020120 if (line_arg == NULL)
20121 vim_free(theline);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020122 goto erret;
Bram Moolenaar29a1c1d2005-06-24 23:11:15 +000020123 }
20124
20125 /* Copy the line to newly allocated memory. get_one_sourceline()
20126 * allocates 250 bytes per line, this saves 80% on average. The cost
20127 * is an extra alloc/free. */
20128 p = vim_strsave(theline);
20129 if (p != NULL)
20130 {
Bram Moolenaar997fb4b2006-02-17 21:53:23 +000020131 if (line_arg == NULL)
20132 vim_free(theline);
Bram Moolenaar29a1c1d2005-06-24 23:11:15 +000020133 theline = p;
20134 }
20135
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000020136 ((char_u **)(newlines.ga_data))[newlines.ga_len++] = theline;
20137
20138 /* Add NULL lines for continuation lines, so that the line count is
20139 * equal to the index in the growarray. */
20140 while (sourcing_lnum_off-- > 0)
20141 ((char_u **)(newlines.ga_data))[newlines.ga_len++] = NULL;
Bram Moolenaar997fb4b2006-02-17 21:53:23 +000020142
20143 /* Check for end of eap->arg. */
20144 if (line_arg != NULL && *line_arg == NUL)
20145 line_arg = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020146 }
20147
20148 /* Don't define the function when skipping commands or when an error was
20149 * detected. */
20150 if (eap->skip || did_emsg)
20151 goto erret;
20152
20153 /*
20154 * If there are no errors, add the function
20155 */
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020156 if (fudi.fd_dict == NULL)
Bram Moolenaar49cd9572005-01-03 21:06:01 +000020157 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020158 v = find_var(name, &ht);
Bram Moolenaar33570922005-01-25 22:26:29 +000020159 if (v != NULL && v->di_tv.v_type == VAR_FUNC)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020160 {
Bram Moolenaar81bf7082005-02-12 14:31:42 +000020161 emsg_funcname("E707: Function name conflicts with variable: %s",
20162 name);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020163 goto erret;
20164 }
Bram Moolenaar49cd9572005-01-03 21:06:01 +000020165
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020166 fp = find_func(name);
20167 if (fp != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020168 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020169 if (!eap->forceit)
20170 {
Bram Moolenaar81bf7082005-02-12 14:31:42 +000020171 emsg_funcname(e_funcexts, name);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020172 goto erret;
20173 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020174 if (fp->uf_calls > 0)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020175 {
Bram Moolenaar81bf7082005-02-12 14:31:42 +000020176 emsg_funcname("E127: Cannot redefine function %s: It is in use",
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020177 name);
20178 goto erret;
20179 }
20180 /* redefine existing function */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020181 ga_clear_strings(&(fp->uf_args));
20182 ga_clear_strings(&(fp->uf_lines));
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020183 vim_free(name);
20184 name = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020185 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000020186 }
20187 else
20188 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020189 char numbuf[20];
20190
20191 fp = NULL;
20192 if (fudi.fd_newkey == NULL && !eap->forceit)
20193 {
20194 EMSG(_(e_funcdict));
20195 goto erret;
20196 }
Bram Moolenaar758711c2005-02-02 23:11:38 +000020197 if (fudi.fd_di == NULL)
20198 {
20199 /* Can't add a function to a locked dictionary */
20200 if (tv_check_lock(fudi.fd_dict->dv_lock, eap->arg))
20201 goto erret;
20202 }
20203 /* Can't change an existing function if it is locked */
20204 else if (tv_check_lock(fudi.fd_di->di_tv.v_lock, eap->arg))
20205 goto erret;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020206
20207 /* Give the function a sequential number. Can only be used with a
20208 * Funcref! */
20209 vim_free(name);
20210 sprintf(numbuf, "%d", ++func_nr);
20211 name = vim_strsave((char_u *)numbuf);
20212 if (name == NULL)
20213 goto erret;
20214 }
20215
20216 if (fp == NULL)
20217 {
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020218 if (fudi.fd_dict == NULL && vim_strchr(name, AUTOLOAD_CHAR) != NULL)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020219 {
20220 int slen, plen;
20221 char_u *scriptname;
20222
20223 /* Check that the autoload name matches the script name. */
20224 j = FAIL;
20225 if (sourcing_name != NULL)
20226 {
20227 scriptname = autoload_name(name);
20228 if (scriptname != NULL)
20229 {
20230 p = vim_strchr(scriptname, '/');
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000020231 plen = (int)STRLEN(p);
20232 slen = (int)STRLEN(sourcing_name);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020233 if (slen > plen && fnamecmp(p,
20234 sourcing_name + slen - plen) == 0)
20235 j = OK;
20236 vim_free(scriptname);
20237 }
20238 }
20239 if (j == FAIL)
20240 {
20241 EMSG2(_("E746: Function name does not match script file name: %s"), name);
20242 goto erret;
20243 }
20244 }
20245
20246 fp = (ufunc_T *)alloc((unsigned)(sizeof(ufunc_T) + STRLEN(name)));
Bram Moolenaar071d4272004-06-13 20:20:40 +000020247 if (fp == NULL)
20248 goto erret;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020249
20250 if (fudi.fd_dict != NULL)
20251 {
20252 if (fudi.fd_di == NULL)
20253 {
20254 /* add new dict entry */
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000020255 fudi.fd_di = dictitem_alloc(fudi.fd_newkey);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020256 if (fudi.fd_di == NULL)
20257 {
20258 vim_free(fp);
20259 goto erret;
20260 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000020261 if (dict_add(fudi.fd_dict, fudi.fd_di) == FAIL)
20262 {
20263 vim_free(fudi.fd_di);
Bram Moolenaar0a5fd8b2006-08-16 20:02:22 +000020264 vim_free(fp);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000020265 goto erret;
20266 }
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020267 }
20268 else
20269 /* overwrite existing dict entry */
20270 clear_tv(&fudi.fd_di->di_tv);
20271 fudi.fd_di->di_tv.v_type = VAR_FUNC;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000020272 fudi.fd_di->di_tv.v_lock = 0;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020273 fudi.fd_di->di_tv.vval.v_string = vim_strsave(name);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020274 fp->uf_refcount = 1;
Bram Moolenaar910f66f2006-04-05 20:41:53 +000020275
20276 /* behave like "dict" was used */
20277 flags |= FC_DICT;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020278 }
20279
Bram Moolenaar071d4272004-06-13 20:20:40 +000020280 /* insert the new function in the function list */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020281 STRCPY(fp->uf_name, name);
20282 hash_add(&func_hashtab, UF2HIKEY(fp));
Bram Moolenaar071d4272004-06-13 20:20:40 +000020283 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020284 fp->uf_args = newargs;
20285 fp->uf_lines = newlines;
Bram Moolenaar05159a02005-02-26 23:04:13 +000020286#ifdef FEAT_PROFILE
20287 fp->uf_tml_count = NULL;
20288 fp->uf_tml_total = NULL;
20289 fp->uf_tml_self = NULL;
20290 fp->uf_profiling = FALSE;
20291 if (prof_def_func())
20292 func_do_profile(fp);
20293#endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020294 fp->uf_varargs = varargs;
20295 fp->uf_flags = flags;
20296 fp->uf_calls = 0;
20297 fp->uf_script_ID = current_SID;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020298 goto ret_free;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020299
20300erret:
Bram Moolenaar071d4272004-06-13 20:20:40 +000020301 ga_clear_strings(&newargs);
20302 ga_clear_strings(&newlines);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020303ret_free:
20304 vim_free(skip_until);
20305 vim_free(fudi.fd_newkey);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020306 vim_free(name);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020307 did_emsg |= saved_did_emsg;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020308}
20309
20310/*
20311 * Get a function name, translating "<SID>" and "<SNR>".
Bram Moolenaara7043832005-01-21 11:56:39 +000020312 * Also handles a Funcref in a List or Dictionary.
Bram Moolenaar071d4272004-06-13 20:20:40 +000020313 * Returns the function name in allocated memory, or NULL for failure.
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020314 * flags:
20315 * TFN_INT: internal function name OK
20316 * TFN_QUIET: be quiet
Bram Moolenaar071d4272004-06-13 20:20:40 +000020317 * Advances "pp" to just after the function name (if no error).
20318 */
20319 static char_u *
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020320trans_function_name(pp, skip, flags, fdp)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020321 char_u **pp;
20322 int skip; /* only find the end, don't evaluate */
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020323 int flags;
Bram Moolenaar33570922005-01-25 22:26:29 +000020324 funcdict_T *fdp; /* return: info about dictionary used */
Bram Moolenaar071d4272004-06-13 20:20:40 +000020325{
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020326 char_u *name = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020327 char_u *start;
20328 char_u *end;
20329 int lead;
20330 char_u sid_buf[20];
Bram Moolenaar071d4272004-06-13 20:20:40 +000020331 int len;
Bram Moolenaar33570922005-01-25 22:26:29 +000020332 lval_T lv;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020333
20334 if (fdp != NULL)
Bram Moolenaar33570922005-01-25 22:26:29 +000020335 vim_memset(fdp, 0, sizeof(funcdict_T));
Bram Moolenaar071d4272004-06-13 20:20:40 +000020336 start = *pp;
Bram Moolenaara7043832005-01-21 11:56:39 +000020337
20338 /* Check for hard coded <SNR>: already translated function ID (from a user
20339 * command). */
20340 if ((*pp)[0] == K_SPECIAL && (*pp)[1] == KS_EXTRA
20341 && (*pp)[2] == (int)KE_SNR)
20342 {
20343 *pp += 3;
20344 len = get_id_len(pp) + 3;
20345 return vim_strnsave(start, len);
20346 }
20347
20348 /* A name starting with "<SID>" or "<SNR>" is local to a script. But
20349 * don't skip over "s:", get_lval() needs it for "s:dict.func". */
Bram Moolenaar071d4272004-06-13 20:20:40 +000020350 lead = eval_fname_script(start);
Bram Moolenaara7043832005-01-21 11:56:39 +000020351 if (lead > 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020352 start += lead;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020353
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020354 end = get_lval(start, NULL, &lv, FALSE, skip, flags & TFN_QUIET,
20355 lead > 2 ? 0 : FNE_CHECK_START);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020356 if (end == start)
20357 {
20358 if (!skip)
20359 EMSG(_("E129: Function name required"));
20360 goto theend;
20361 }
Bram Moolenaara7043832005-01-21 11:56:39 +000020362 if (end == NULL || (lv.ll_tv != NULL && (lead > 2 || lv.ll_range)))
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020363 {
20364 /*
20365 * Report an invalid expression in braces, unless the expression
20366 * evaluation has been cancelled due to an aborting error, an
20367 * interrupt, or an exception.
20368 */
20369 if (!aborting())
20370 {
20371 if (end != NULL)
20372 EMSG2(_(e_invarg2), start);
20373 }
20374 else
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020375 *pp = find_name_end(start, NULL, NULL, FNE_INCL_BR);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020376 goto theend;
20377 }
20378
20379 if (lv.ll_tv != NULL)
20380 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020381 if (fdp != NULL)
20382 {
20383 fdp->fd_dict = lv.ll_dict;
20384 fdp->fd_newkey = lv.ll_newkey;
20385 lv.ll_newkey = NULL;
20386 fdp->fd_di = lv.ll_di;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020387 }
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020388 if (lv.ll_tv->v_type == VAR_FUNC && lv.ll_tv->vval.v_string != NULL)
20389 {
20390 name = vim_strsave(lv.ll_tv->vval.v_string);
20391 *pp = end;
20392 }
20393 else
20394 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000020395 if (!skip && !(flags & TFN_QUIET) && (fdp == NULL
20396 || lv.ll_dict == NULL || fdp->fd_newkey == NULL))
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020397 EMSG(_(e_funcref));
20398 else
20399 *pp = end;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020400 name = NULL;
20401 }
20402 goto theend;
20403 }
20404
20405 if (lv.ll_name == NULL)
20406 {
20407 /* Error found, but continue after the function name. */
20408 *pp = end;
20409 goto theend;
20410 }
20411
Bram Moolenaar33e1a802007-09-06 12:26:44 +000020412 /* Check if the name is a Funcref. If so, use the value. */
20413 if (lv.ll_exp_name != NULL)
20414 {
20415 len = (int)STRLEN(lv.ll_exp_name);
20416 name = deref_func_name(lv.ll_exp_name, &len);
20417 if (name == lv.ll_exp_name)
20418 name = NULL;
20419 }
20420 else
20421 {
20422 len = (int)(end - *pp);
20423 name = deref_func_name(*pp, &len);
20424 if (name == *pp)
20425 name = NULL;
20426 }
20427 if (name != NULL)
20428 {
20429 name = vim_strsave(name);
20430 *pp = end;
20431 goto theend;
20432 }
20433
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020434 if (lv.ll_exp_name != NULL)
Bram Moolenaarc32840f2006-01-14 21:23:38 +000020435 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000020436 len = (int)STRLEN(lv.ll_exp_name);
Bram Moolenaarc32840f2006-01-14 21:23:38 +000020437 if (lead <= 2 && lv.ll_name == lv.ll_exp_name
20438 && STRNCMP(lv.ll_name, "s:", 2) == 0)
20439 {
20440 /* When there was "s:" already or the name expanded to get a
20441 * leading "s:" then remove it. */
20442 lv.ll_name += 2;
20443 len -= 2;
20444 lead = 2;
20445 }
20446 }
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020447 else
Bram Moolenaara7043832005-01-21 11:56:39 +000020448 {
20449 if (lead == 2) /* skip over "s:" */
20450 lv.ll_name += 2;
20451 len = (int)(end - lv.ll_name);
20452 }
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020453
20454 /*
20455 * Copy the function name to allocated memory.
20456 * Accept <SID>name() inside a script, translate into <SNR>123_name().
20457 * Accept <SNR>123_name() outside a script.
20458 */
20459 if (skip)
20460 lead = 0; /* do nothing */
20461 else if (lead > 0)
20462 {
20463 lead = 3;
Bram Moolenaar86c9ee22006-05-13 11:33:27 +000020464 if ((lv.ll_exp_name != NULL && eval_fname_sid(lv.ll_exp_name))
20465 || eval_fname_sid(*pp))
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020466 {
Bram Moolenaar899dddf2006-03-26 21:06:50 +000020467 /* It's "s:" or "<SID>" */
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020468 if (current_SID <= 0)
20469 {
20470 EMSG(_(e_usingsid));
20471 goto theend;
20472 }
20473 sprintf((char *)sid_buf, "%ld_", (long)current_SID);
20474 lead += (int)STRLEN(sid_buf);
20475 }
20476 }
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020477 else if (!(flags & TFN_INT) && builtin_function(lv.ll_name))
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020478 {
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020479 EMSG2(_("E128: Function name must start with a capital or contain a colon: %s"), lv.ll_name);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020480 goto theend;
20481 }
20482 name = alloc((unsigned)(len + lead + 1));
20483 if (name != NULL)
20484 {
20485 if (lead > 0)
20486 {
20487 name[0] = K_SPECIAL;
20488 name[1] = KS_EXTRA;
20489 name[2] = (int)KE_SNR;
Bram Moolenaara7043832005-01-21 11:56:39 +000020490 if (lead > 3) /* If it's "<SID>" */
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020491 STRCPY(name + 3, sid_buf);
20492 }
20493 mch_memmove(name + lead, lv.ll_name, (size_t)len);
20494 name[len + lead] = NUL;
20495 }
20496 *pp = end;
20497
20498theend:
20499 clear_lval(&lv);
20500 return name;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020501}
20502
20503/*
20504 * Return 5 if "p" starts with "<SID>" or "<SNR>" (ignoring case).
20505 * Return 2 if "p" starts with "s:".
20506 * Return 0 otherwise.
20507 */
20508 static int
20509eval_fname_script(p)
20510 char_u *p;
20511{
20512 if (p[0] == '<' && (STRNICMP(p + 1, "SID>", 4) == 0
20513 || STRNICMP(p + 1, "SNR>", 4) == 0))
20514 return 5;
20515 if (p[0] == 's' && p[1] == ':')
20516 return 2;
20517 return 0;
20518}
20519
20520/*
20521 * Return TRUE if "p" starts with "<SID>" or "s:".
20522 * Only works if eval_fname_script() returned non-zero for "p"!
20523 */
20524 static int
20525eval_fname_sid(p)
20526 char_u *p;
20527{
20528 return (*p == 's' || TOUPPER_ASC(p[2]) == 'I');
20529}
20530
20531/*
20532 * List the head of the function: "name(arg1, arg2)".
20533 */
20534 static void
20535list_func_head(fp, indent)
20536 ufunc_T *fp;
20537 int indent;
20538{
20539 int j;
20540
20541 msg_start();
20542 if (indent)
20543 MSG_PUTS(" ");
20544 MSG_PUTS("function ");
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020545 if (fp->uf_name[0] == K_SPECIAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020546 {
20547 MSG_PUTS_ATTR("<SNR>", hl_attr(HLF_8));
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020548 msg_puts(fp->uf_name + 3);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020549 }
20550 else
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020551 msg_puts(fp->uf_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020552 msg_putchar('(');
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020553 for (j = 0; j < fp->uf_args.ga_len; ++j)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020554 {
20555 if (j)
20556 MSG_PUTS(", ");
20557 msg_puts(FUNCARG(fp, j));
20558 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020559 if (fp->uf_varargs)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020560 {
20561 if (j)
20562 MSG_PUTS(", ");
20563 MSG_PUTS("...");
20564 }
20565 msg_putchar(')');
Bram Moolenaarcafda4f2005-09-06 19:25:11 +000020566 msg_clr_eos();
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +000020567 if (p_verbose > 0)
20568 last_set_msg(fp->uf_script_ID);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020569}
20570
20571/*
20572 * Find a function by name, return pointer to it in ufuncs.
20573 * Return NULL for unknown function.
20574 */
20575 static ufunc_T *
20576find_func(name)
20577 char_u *name;
20578{
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020579 hashitem_T *hi;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020580
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020581 hi = hash_find(&func_hashtab, name);
20582 if (!HASHITEM_EMPTY(hi))
20583 return HI2UF(hi);
20584 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020585}
20586
Bram Moolenaar29a1c1d2005-06-24 23:11:15 +000020587#if defined(EXITFREE) || defined(PROTO)
20588 void
20589free_all_functions()
20590{
20591 hashitem_T *hi;
20592
20593 /* Need to start all over every time, because func_free() may change the
20594 * hash table. */
20595 while (func_hashtab.ht_used > 0)
20596 for (hi = func_hashtab.ht_array; ; ++hi)
20597 if (!HASHITEM_EMPTY(hi))
20598 {
20599 func_free(HI2UF(hi));
20600 break;
20601 }
20602}
20603#endif
20604
Bram Moolenaar49cd9572005-01-03 21:06:01 +000020605/*
20606 * Return TRUE if a function "name" exists.
20607 */
20608 static int
20609function_exists(name)
20610 char_u *name;
20611{
Bram Moolenaaraa35dd12006-04-29 22:03:41 +000020612 char_u *nm = name;
20613 char_u *p;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000020614 int n = FALSE;
20615
Bram Moolenaaraa35dd12006-04-29 22:03:41 +000020616 p = trans_function_name(&nm, FALSE, TFN_INT|TFN_QUIET, NULL);
Bram Moolenaar79783442006-05-05 21:18:03 +000020617 nm = skipwhite(nm);
20618
20619 /* Only accept "funcname", "funcname ", "funcname (..." and
20620 * "funcname(...", not "funcname!...". */
20621 if (p != NULL && (*nm == NUL || *nm == '('))
Bram Moolenaar49cd9572005-01-03 21:06:01 +000020622 {
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020623 if (builtin_function(p))
Bram Moolenaar49cd9572005-01-03 21:06:01 +000020624 n = (find_internal_func(p) >= 0);
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020625 else
20626 n = (find_func(p) != NULL);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000020627 }
Bram Moolenaar79783442006-05-05 21:18:03 +000020628 vim_free(p);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000020629 return n;
20630}
20631
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020632/*
20633 * Return TRUE if "name" looks like a builtin function name: starts with a
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020634 * lower case letter and doesn't contain a ':' or AUTOLOAD_CHAR.
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020635 */
20636 static int
20637builtin_function(name)
20638 char_u *name;
20639{
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020640 return ASCII_ISLOWER(name[0]) && vim_strchr(name, ':') == NULL
20641 && vim_strchr(name, AUTOLOAD_CHAR) == NULL;
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020642}
20643
Bram Moolenaar05159a02005-02-26 23:04:13 +000020644#if defined(FEAT_PROFILE) || defined(PROTO)
20645/*
20646 * Start profiling function "fp".
20647 */
20648 static void
20649func_do_profile(fp)
20650 ufunc_T *fp;
20651{
20652 fp->uf_tm_count = 0;
20653 profile_zero(&fp->uf_tm_self);
20654 profile_zero(&fp->uf_tm_total);
20655 if (fp->uf_tml_count == NULL)
20656 fp->uf_tml_count = (int *)alloc_clear((unsigned)
20657 (sizeof(int) * fp->uf_lines.ga_len));
20658 if (fp->uf_tml_total == NULL)
20659 fp->uf_tml_total = (proftime_T *)alloc_clear((unsigned)
20660 (sizeof(proftime_T) * fp->uf_lines.ga_len));
20661 if (fp->uf_tml_self == NULL)
20662 fp->uf_tml_self = (proftime_T *)alloc_clear((unsigned)
20663 (sizeof(proftime_T) * fp->uf_lines.ga_len));
20664 fp->uf_tml_idx = -1;
20665 if (fp->uf_tml_count == NULL || fp->uf_tml_total == NULL
20666 || fp->uf_tml_self == NULL)
20667 return; /* out of memory */
20668
20669 fp->uf_profiling = TRUE;
20670}
20671
20672/*
20673 * Dump the profiling results for all functions in file "fd".
20674 */
20675 void
20676func_dump_profile(fd)
20677 FILE *fd;
20678{
20679 hashitem_T *hi;
20680 int todo;
20681 ufunc_T *fp;
20682 int i;
Bram Moolenaar73830342005-02-28 22:48:19 +000020683 ufunc_T **sorttab;
20684 int st_len = 0;
Bram Moolenaar05159a02005-02-26 23:04:13 +000020685
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000020686 todo = (int)func_hashtab.ht_used;
Bram Moolenaar61c4e2c2008-08-25 02:49:18 +000020687 if (todo == 0)
20688 return; /* nothing to dump */
20689
Bram Moolenaar73830342005-02-28 22:48:19 +000020690 sorttab = (ufunc_T **)alloc((unsigned)(sizeof(ufunc_T) * todo));
20691
Bram Moolenaar05159a02005-02-26 23:04:13 +000020692 for (hi = func_hashtab.ht_array; todo > 0; ++hi)
20693 {
20694 if (!HASHITEM_EMPTY(hi))
20695 {
20696 --todo;
20697 fp = HI2UF(hi);
20698 if (fp->uf_profiling)
20699 {
Bram Moolenaar73830342005-02-28 22:48:19 +000020700 if (sorttab != NULL)
20701 sorttab[st_len++] = fp;
20702
Bram Moolenaar05159a02005-02-26 23:04:13 +000020703 if (fp->uf_name[0] == K_SPECIAL)
20704 fprintf(fd, "FUNCTION <SNR>%s()\n", fp->uf_name + 3);
20705 else
20706 fprintf(fd, "FUNCTION %s()\n", fp->uf_name);
20707 if (fp->uf_tm_count == 1)
20708 fprintf(fd, "Called 1 time\n");
20709 else
20710 fprintf(fd, "Called %d times\n", fp->uf_tm_count);
20711 fprintf(fd, "Total time: %s\n", profile_msg(&fp->uf_tm_total));
20712 fprintf(fd, " Self time: %s\n", profile_msg(&fp->uf_tm_self));
20713 fprintf(fd, "\n");
20714 fprintf(fd, "count total (s) self (s)\n");
20715
20716 for (i = 0; i < fp->uf_lines.ga_len; ++i)
20717 {
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000020718 if (FUNCLINE(fp, i) == NULL)
20719 continue;
Bram Moolenaar73830342005-02-28 22:48:19 +000020720 prof_func_line(fd, fp->uf_tml_count[i],
20721 &fp->uf_tml_total[i], &fp->uf_tml_self[i], TRUE);
Bram Moolenaar05159a02005-02-26 23:04:13 +000020722 fprintf(fd, "%s\n", FUNCLINE(fp, i));
20723 }
20724 fprintf(fd, "\n");
20725 }
20726 }
20727 }
Bram Moolenaar73830342005-02-28 22:48:19 +000020728
20729 if (sorttab != NULL && st_len > 0)
20730 {
20731 qsort((void *)sorttab, (size_t)st_len, sizeof(ufunc_T *),
20732 prof_total_cmp);
20733 prof_sort_list(fd, sorttab, st_len, "TOTAL", FALSE);
20734 qsort((void *)sorttab, (size_t)st_len, sizeof(ufunc_T *),
20735 prof_self_cmp);
20736 prof_sort_list(fd, sorttab, st_len, "SELF", TRUE);
20737 }
Bram Moolenaar61c4e2c2008-08-25 02:49:18 +000020738
20739 vim_free(sorttab);
Bram Moolenaar05159a02005-02-26 23:04:13 +000020740}
Bram Moolenaar73830342005-02-28 22:48:19 +000020741
20742 static void
20743prof_sort_list(fd, sorttab, st_len, title, prefer_self)
20744 FILE *fd;
20745 ufunc_T **sorttab;
20746 int st_len;
20747 char *title;
20748 int prefer_self; /* when equal print only self time */
20749{
20750 int i;
20751 ufunc_T *fp;
20752
20753 fprintf(fd, "FUNCTIONS SORTED ON %s TIME\n", title);
20754 fprintf(fd, "count total (s) self (s) function\n");
20755 for (i = 0; i < 20 && i < st_len; ++i)
20756 {
20757 fp = sorttab[i];
20758 prof_func_line(fd, fp->uf_tm_count, &fp->uf_tm_total, &fp->uf_tm_self,
20759 prefer_self);
20760 if (fp->uf_name[0] == K_SPECIAL)
20761 fprintf(fd, " <SNR>%s()\n", fp->uf_name + 3);
20762 else
20763 fprintf(fd, " %s()\n", fp->uf_name);
20764 }
20765 fprintf(fd, "\n");
20766}
20767
20768/*
20769 * Print the count and times for one function or function line.
20770 */
20771 static void
20772prof_func_line(fd, count, total, self, prefer_self)
20773 FILE *fd;
20774 int count;
20775 proftime_T *total;
20776 proftime_T *self;
20777 int prefer_self; /* when equal print only self time */
20778{
20779 if (count > 0)
20780 {
20781 fprintf(fd, "%5d ", count);
20782 if (prefer_self && profile_equal(total, self))
20783 fprintf(fd, " ");
20784 else
20785 fprintf(fd, "%s ", profile_msg(total));
20786 if (!prefer_self && profile_equal(total, self))
20787 fprintf(fd, " ");
20788 else
20789 fprintf(fd, "%s ", profile_msg(self));
20790 }
20791 else
20792 fprintf(fd, " ");
20793}
20794
20795/*
20796 * Compare function for total time sorting.
20797 */
20798 static int
20799#ifdef __BORLANDC__
20800_RTLENTRYF
20801#endif
20802prof_total_cmp(s1, s2)
20803 const void *s1;
20804 const void *s2;
20805{
20806 ufunc_T *p1, *p2;
20807
20808 p1 = *(ufunc_T **)s1;
20809 p2 = *(ufunc_T **)s2;
20810 return profile_cmp(&p1->uf_tm_total, &p2->uf_tm_total);
20811}
20812
20813/*
20814 * Compare function for self time sorting.
20815 */
20816 static int
20817#ifdef __BORLANDC__
20818_RTLENTRYF
20819#endif
20820prof_self_cmp(s1, s2)
20821 const void *s1;
20822 const void *s2;
20823{
20824 ufunc_T *p1, *p2;
20825
20826 p1 = *(ufunc_T **)s1;
20827 p2 = *(ufunc_T **)s2;
20828 return profile_cmp(&p1->uf_tm_self, &p2->uf_tm_self);
20829}
20830
Bram Moolenaar05159a02005-02-26 23:04:13 +000020831#endif
20832
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020833/*
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020834 * If "name" has a package name try autoloading the script for it.
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020835 * Return TRUE if a package was loaded.
20836 */
20837 static int
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000020838script_autoload(name, reload)
20839 char_u *name;
20840 int reload; /* load script again when already loaded */
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020841{
20842 char_u *p;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000020843 char_u *scriptname, *tofree;
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020844 int ret = FALSE;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000020845 int i;
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020846
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000020847 /* If there is no '#' after name[0] there is no package name. */
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020848 p = vim_strchr(name, AUTOLOAD_CHAR);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000020849 if (p == NULL || p == name)
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020850 return FALSE;
20851
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000020852 tofree = scriptname = autoload_name(name);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020853
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000020854 /* Find the name in the list of previously loaded package names. Skip
20855 * "autoload/", it's always the same. */
20856 for (i = 0; i < ga_loaded.ga_len; ++i)
20857 if (STRCMP(((char_u **)ga_loaded.ga_data)[i] + 9, scriptname + 9) == 0)
20858 break;
20859 if (!reload && i < ga_loaded.ga_len)
20860 ret = FALSE; /* was loaded already */
20861 else
20862 {
20863 /* Remember the name if it wasn't loaded already. */
20864 if (i == ga_loaded.ga_len && ga_grow(&ga_loaded, 1) == OK)
20865 {
20866 ((char_u **)ga_loaded.ga_data)[ga_loaded.ga_len++] = scriptname;
20867 tofree = NULL;
20868 }
20869
20870 /* Try loading the package from $VIMRUNTIME/autoload/<name>.vim */
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +000020871 if (source_runtime(scriptname, FALSE) == OK)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000020872 ret = TRUE;
20873 }
20874
20875 vim_free(tofree);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020876 return ret;
20877}
20878
20879/*
20880 * Return the autoload script name for a function or variable name.
20881 * Returns NULL when out of memory.
20882 */
20883 static char_u *
20884autoload_name(name)
20885 char_u *name;
20886{
20887 char_u *p;
20888 char_u *scriptname;
20889
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020890 /* Get the script file name: replace '#' with '/', append ".vim". */
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020891 scriptname = alloc((unsigned)(STRLEN(name) + 14));
20892 if (scriptname == NULL)
20893 return FALSE;
20894 STRCPY(scriptname, "autoload/");
20895 STRCAT(scriptname, name);
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020896 *vim_strrchr(scriptname, AUTOLOAD_CHAR) = NUL;
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020897 STRCAT(scriptname, ".vim");
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020898 while ((p = vim_strchr(scriptname, AUTOLOAD_CHAR)) != NULL)
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020899 *p = '/';
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020900 return scriptname;
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020901}
20902
Bram Moolenaar071d4272004-06-13 20:20:40 +000020903#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
20904
20905/*
20906 * Function given to ExpandGeneric() to obtain the list of user defined
20907 * function names.
20908 */
20909 char_u *
20910get_user_func_name(xp, idx)
20911 expand_T *xp;
20912 int idx;
20913{
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020914 static long_u done;
20915 static hashitem_T *hi;
20916 ufunc_T *fp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020917
20918 if (idx == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020919 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020920 done = 0;
20921 hi = func_hashtab.ht_array;
20922 }
20923 if (done < func_hashtab.ht_used)
20924 {
20925 if (done++ > 0)
20926 ++hi;
20927 while (HASHITEM_EMPTY(hi))
20928 ++hi;
20929 fp = HI2UF(hi);
20930
20931 if (STRLEN(fp->uf_name) + 4 >= IOSIZE)
20932 return fp->uf_name; /* prevents overflow */
Bram Moolenaar071d4272004-06-13 20:20:40 +000020933
20934 cat_func_name(IObuff, fp);
20935 if (xp->xp_context != EXPAND_USER_FUNC)
20936 {
20937 STRCAT(IObuff, "(");
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020938 if (!fp->uf_varargs && fp->uf_args.ga_len == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020939 STRCAT(IObuff, ")");
20940 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000020941 return IObuff;
20942 }
20943 return NULL;
20944}
20945
20946#endif /* FEAT_CMDL_COMPL */
20947
20948/*
20949 * Copy the function name of "fp" to buffer "buf".
20950 * "buf" must be able to hold the function name plus three bytes.
20951 * Takes care of script-local function names.
20952 */
20953 static void
20954cat_func_name(buf, fp)
20955 char_u *buf;
20956 ufunc_T *fp;
20957{
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020958 if (fp->uf_name[0] == K_SPECIAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020959 {
20960 STRCPY(buf, "<SNR>");
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020961 STRCAT(buf, fp->uf_name + 3);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020962 }
20963 else
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020964 STRCPY(buf, fp->uf_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020965}
20966
20967/*
20968 * ":delfunction {name}"
20969 */
20970 void
20971ex_delfunction(eap)
20972 exarg_T *eap;
20973{
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020974 ufunc_T *fp = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020975 char_u *p;
20976 char_u *name;
Bram Moolenaar33570922005-01-25 22:26:29 +000020977 funcdict_T fudi;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020978
20979 p = eap->arg;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020980 name = trans_function_name(&p, eap->skip, 0, &fudi);
20981 vim_free(fudi.fd_newkey);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020982 if (name == NULL)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020983 {
20984 if (fudi.fd_dict != NULL && !eap->skip)
20985 EMSG(_(e_funcref));
Bram Moolenaar071d4272004-06-13 20:20:40 +000020986 return;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020987 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000020988 if (!ends_excmd(*skipwhite(p)))
20989 {
20990 vim_free(name);
20991 EMSG(_(e_trailing));
20992 return;
20993 }
20994 eap->nextcmd = check_nextcmd(p);
20995 if (eap->nextcmd != NULL)
20996 *p = NUL;
20997
20998 if (!eap->skip)
20999 fp = find_func(name);
21000 vim_free(name);
21001
21002 if (!eap->skip)
21003 {
21004 if (fp == NULL)
21005 {
Bram Moolenaar05159a02005-02-26 23:04:13 +000021006 EMSG2(_(e_nofunc), eap->arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021007 return;
21008 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021009 if (fp->uf_calls > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021010 {
21011 EMSG2(_("E131: Cannot delete function %s: It is in use"), eap->arg);
21012 return;
21013 }
21014
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000021015 if (fudi.fd_dict != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021016 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000021017 /* Delete the dict item that refers to the function, it will
21018 * invoke func_unref() and possibly delete the function. */
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000021019 dictitem_remove(fudi.fd_dict, fudi.fd_di);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021020 }
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000021021 else
21022 func_free(fp);
21023 }
21024}
21025
21026/*
21027 * Free a function and remove it from the list of functions.
21028 */
21029 static void
21030func_free(fp)
21031 ufunc_T *fp;
21032{
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021033 hashitem_T *hi;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000021034
21035 /* clear this function */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021036 ga_clear_strings(&(fp->uf_args));
21037 ga_clear_strings(&(fp->uf_lines));
Bram Moolenaar05159a02005-02-26 23:04:13 +000021038#ifdef FEAT_PROFILE
21039 vim_free(fp->uf_tml_count);
21040 vim_free(fp->uf_tml_total);
21041 vim_free(fp->uf_tml_self);
21042#endif
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000021043
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021044 /* remove the function from the function hashtable */
21045 hi = hash_find(&func_hashtab, UF2HIKEY(fp));
21046 if (HASHITEM_EMPTY(hi))
21047 EMSG2(_(e_intern2), "func_free()");
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000021048 else
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021049 hash_remove(&func_hashtab, hi);
21050
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000021051 vim_free(fp);
21052}
21053
21054/*
21055 * Unreference a Function: decrement the reference count and free it when it
21056 * becomes zero. Only for numbered functions.
21057 */
21058 static void
21059func_unref(name)
21060 char_u *name;
21061{
21062 ufunc_T *fp;
21063
21064 if (name != NULL && isdigit(*name))
21065 {
21066 fp = find_func(name);
21067 if (fp == NULL)
21068 EMSG2(_(e_intern2), "func_unref()");
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021069 else if (--fp->uf_refcount <= 0)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000021070 {
21071 /* Only delete it when it's not being used. Otherwise it's done
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021072 * when "uf_calls" becomes zero. */
21073 if (fp->uf_calls == 0)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000021074 func_free(fp);
21075 }
21076 }
21077}
21078
21079/*
21080 * Count a reference to a Function.
21081 */
21082 static void
21083func_ref(name)
21084 char_u *name;
21085{
21086 ufunc_T *fp;
21087
21088 if (name != NULL && isdigit(*name))
21089 {
21090 fp = find_func(name);
21091 if (fp == NULL)
21092 EMSG2(_(e_intern2), "func_ref()");
21093 else
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021094 ++fp->uf_refcount;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021095 }
21096}
21097
21098/*
21099 * Call a user function.
21100 */
21101 static void
Bram Moolenaare9a41262005-01-15 22:18:47 +000021102call_user_func(fp, argcount, argvars, rettv, firstline, lastline, selfdict)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021103 ufunc_T *fp; /* pointer to function */
21104 int argcount; /* nr of args */
Bram Moolenaar33570922005-01-25 22:26:29 +000021105 typval_T *argvars; /* arguments */
21106 typval_T *rettv; /* return value */
Bram Moolenaar071d4272004-06-13 20:20:40 +000021107 linenr_T firstline; /* first line of range */
21108 linenr_T lastline; /* last line of range */
Bram Moolenaar33570922005-01-25 22:26:29 +000021109 dict_T *selfdict; /* Dictionary for "self" */
Bram Moolenaar071d4272004-06-13 20:20:40 +000021110{
Bram Moolenaar33570922005-01-25 22:26:29 +000021111 char_u *save_sourcing_name;
21112 linenr_T save_sourcing_lnum;
21113 scid_T save_current_SID;
21114 funccall_T fc;
Bram Moolenaar33570922005-01-25 22:26:29 +000021115 int save_did_emsg;
21116 static int depth = 0;
21117 dictitem_T *v;
21118 int fixvar_idx = 0; /* index in fixvar[] */
21119 int i;
21120 int ai;
21121 char_u numbuf[NUMBUFLEN];
21122 char_u *name;
Bram Moolenaar05159a02005-02-26 23:04:13 +000021123#ifdef FEAT_PROFILE
21124 proftime_T wait_start;
Bram Moolenaare9da72e2006-11-01 17:34:40 +000021125 proftime_T call_start;
Bram Moolenaar05159a02005-02-26 23:04:13 +000021126#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000021127
21128 /* If depth of calling is getting too high, don't execute the function */
21129 if (depth >= p_mfd)
21130 {
21131 EMSG(_("E132: Function call depth is higher than 'maxfuncdepth'"));
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021132 rettv->v_type = VAR_NUMBER;
21133 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021134 return;
21135 }
21136 ++depth;
21137
21138 line_breakcheck(); /* check for CTRL-C hit */
21139
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +000021140 fc.caller = current_funccal;
Bram Moolenaar33570922005-01-25 22:26:29 +000021141 current_funccal = &fc;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021142 fc.func = fp;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021143 fc.rettv = rettv;
21144 rettv->vval.v_number = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021145 fc.linenr = 0;
21146 fc.returned = FALSE;
21147 fc.level = ex_nesting_level;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021148 /* Check if this function has a breakpoint. */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021149 fc.breakpoint = dbg_find_breakpoint(FALSE, fp->uf_name, (linenr_T)0);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021150 fc.dbg_tick = debug_tick;
21151
Bram Moolenaar33570922005-01-25 22:26:29 +000021152 /*
21153 * Note about using fc.fixvar[]: This is an array of FIXVAR_CNT variables
21154 * with names up to VAR_SHORT_LEN long. This avoids having to alloc/free
21155 * each argument variable and saves a lot of time.
21156 */
21157 /*
21158 * Init l: variables.
21159 */
21160 init_var_dict(&fc.l_vars, &fc.l_vars_var);
Bram Moolenaara7043832005-01-21 11:56:39 +000021161 if (selfdict != NULL)
Bram Moolenaare9a41262005-01-15 22:18:47 +000021162 {
Bram Moolenaar76b92b22006-03-24 22:46:53 +000021163 /* Set l:self to "selfdict". Use "name" to avoid a warning from
21164 * some compiler that checks the destination size. */
Bram Moolenaar33570922005-01-25 22:26:29 +000021165 v = &fc.fixvar[fixvar_idx++].var;
Bram Moolenaar76b92b22006-03-24 22:46:53 +000021166 name = v->di_key;
21167 STRCPY(name, "self");
Bram Moolenaar33570922005-01-25 22:26:29 +000021168 v->di_flags = DI_FLAGS_RO + DI_FLAGS_FIX;
21169 hash_add(&fc.l_vars.dv_hashtab, DI2HIKEY(v));
21170 v->di_tv.v_type = VAR_DICT;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000021171 v->di_tv.v_lock = 0;
Bram Moolenaar33570922005-01-25 22:26:29 +000021172 v->di_tv.vval.v_dict = selfdict;
21173 ++selfdict->dv_refcount;
21174 }
Bram Moolenaare9a41262005-01-15 22:18:47 +000021175
Bram Moolenaar33570922005-01-25 22:26:29 +000021176 /*
21177 * Init a: variables.
21178 * Set a:0 to "argcount".
21179 * Set a:000 to a list with room for the "..." arguments.
21180 */
21181 init_var_dict(&fc.l_avars, &fc.l_avars_var);
21182 add_nr_var(&fc.l_avars, &fc.fixvar[fixvar_idx++].var, "0",
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021183 (varnumber_T)(argcount - fp->uf_args.ga_len));
Bram Moolenaar0cd49302008-11-20 09:37:01 +000021184 /* Use "name" to avoid a warning from some compiler that checks the
21185 * destination size. */
Bram Moolenaar33570922005-01-25 22:26:29 +000021186 v = &fc.fixvar[fixvar_idx++].var;
Bram Moolenaar0cd49302008-11-20 09:37:01 +000021187 name = v->di_key;
21188 STRCPY(name, "000");
Bram Moolenaar33570922005-01-25 22:26:29 +000021189 v->di_flags = DI_FLAGS_RO | DI_FLAGS_FIX;
21190 hash_add(&fc.l_avars.dv_hashtab, DI2HIKEY(v));
21191 v->di_tv.v_type = VAR_LIST;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000021192 v->di_tv.v_lock = VAR_FIXED;
Bram Moolenaar33570922005-01-25 22:26:29 +000021193 v->di_tv.vval.v_list = &fc.l_varlist;
21194 vim_memset(&fc.l_varlist, 0, sizeof(list_T));
21195 fc.l_varlist.lv_refcount = 99999;
Bram Moolenaar9dfb0f82006-06-22 16:03:05 +000021196 fc.l_varlist.lv_lock = VAR_FIXED;
Bram Moolenaar33570922005-01-25 22:26:29 +000021197
21198 /*
21199 * Set a:firstline to "firstline" and a:lastline to "lastline".
21200 * Set a:name to named arguments.
21201 * Set a:N to the "..." arguments.
21202 */
21203 add_nr_var(&fc.l_avars, &fc.fixvar[fixvar_idx++].var, "firstline",
21204 (varnumber_T)firstline);
21205 add_nr_var(&fc.l_avars, &fc.fixvar[fixvar_idx++].var, "lastline",
21206 (varnumber_T)lastline);
21207 for (i = 0; i < argcount; ++i)
21208 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021209 ai = i - fp->uf_args.ga_len;
Bram Moolenaar33570922005-01-25 22:26:29 +000021210 if (ai < 0)
21211 /* named argument a:name */
21212 name = FUNCARG(fp, i);
21213 else
Bram Moolenaare9a41262005-01-15 22:18:47 +000021214 {
Bram Moolenaar33570922005-01-25 22:26:29 +000021215 /* "..." argument a:1, a:2, etc. */
21216 sprintf((char *)numbuf, "%d", ai + 1);
21217 name = numbuf;
21218 }
21219 if (fixvar_idx < FIXVAR_CNT && STRLEN(name) <= VAR_SHORT_LEN)
21220 {
21221 v = &fc.fixvar[fixvar_idx++].var;
21222 v->di_flags = DI_FLAGS_RO | DI_FLAGS_FIX;
21223 }
21224 else
21225 {
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000021226 v = (dictitem_T *)alloc((unsigned)(sizeof(dictitem_T)
21227 + STRLEN(name)));
Bram Moolenaar33570922005-01-25 22:26:29 +000021228 if (v == NULL)
21229 break;
21230 v->di_flags = DI_FLAGS_RO;
21231 }
21232 STRCPY(v->di_key, name);
21233 hash_add(&fc.l_avars.dv_hashtab, DI2HIKEY(v));
21234
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000021235 /* Note: the values are copied directly to avoid alloc/free.
21236 * "argvars" must have VAR_FIXED for v_lock. */
Bram Moolenaar33570922005-01-25 22:26:29 +000021237 v->di_tv = argvars[i];
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000021238 v->di_tv.v_lock = VAR_FIXED;
Bram Moolenaar33570922005-01-25 22:26:29 +000021239
21240 if (ai >= 0 && ai < MAX_FUNC_ARGS)
21241 {
21242 list_append(&fc.l_varlist, &fc.l_listitems[ai]);
21243 fc.l_listitems[ai].li_tv = argvars[i];
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000021244 fc.l_listitems[ai].li_tv.v_lock = VAR_FIXED;
Bram Moolenaare9a41262005-01-15 22:18:47 +000021245 }
21246 }
21247
Bram Moolenaar071d4272004-06-13 20:20:40 +000021248 /* Don't redraw while executing the function. */
21249 ++RedrawingDisabled;
21250 save_sourcing_name = sourcing_name;
21251 save_sourcing_lnum = sourcing_lnum;
21252 sourcing_lnum = 1;
21253 sourcing_name = alloc((unsigned)((save_sourcing_name == NULL ? 0
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021254 : STRLEN(save_sourcing_name)) + STRLEN(fp->uf_name) + 13));
Bram Moolenaar071d4272004-06-13 20:20:40 +000021255 if (sourcing_name != NULL)
21256 {
21257 if (save_sourcing_name != NULL
21258 && STRNCMP(save_sourcing_name, "function ", 9) == 0)
21259 sprintf((char *)sourcing_name, "%s..", save_sourcing_name);
21260 else
21261 STRCPY(sourcing_name, "function ");
21262 cat_func_name(sourcing_name + STRLEN(sourcing_name), fp);
21263
21264 if (p_verbose >= 12)
21265 {
21266 ++no_wait_return;
Bram Moolenaar54ee7752005-05-31 22:22:17 +000021267 verbose_enter_scroll();
21268
Bram Moolenaar555b2802005-05-19 21:08:39 +000021269 smsg((char_u *)_("calling %s"), sourcing_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021270 if (p_verbose >= 14)
21271 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000021272 char_u buf[MSG_BUF_LEN];
Bram Moolenaar89d40322006-08-29 15:30:07 +000021273 char_u numbuf2[NUMBUFLEN];
Bram Moolenaar758711c2005-02-02 23:11:38 +000021274 char_u *tofree;
Bram Moolenaar92c5aba2007-08-14 20:29:31 +000021275 char_u *s;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021276
21277 msg_puts((char_u *)"(");
21278 for (i = 0; i < argcount; ++i)
21279 {
21280 if (i > 0)
21281 msg_puts((char_u *)", ");
Bram Moolenaar49cd9572005-01-03 21:06:01 +000021282 if (argvars[i].v_type == VAR_NUMBER)
21283 msg_outnum((long)argvars[i].vval.v_number);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021284 else
21285 {
Bram Moolenaar92c5aba2007-08-14 20:29:31 +000021286 s = tv2string(&argvars[i], &tofree, numbuf2, 0);
21287 if (s != NULL)
21288 {
21289 trunc_string(s, buf, MSG_BUF_CLEN);
21290 msg_puts(buf);
21291 vim_free(tofree);
21292 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000021293 }
21294 }
21295 msg_puts((char_u *)")");
21296 }
21297 msg_puts((char_u *)"\n"); /* don't overwrite this either */
Bram Moolenaar54ee7752005-05-31 22:22:17 +000021298
21299 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +000021300 --no_wait_return;
21301 }
21302 }
Bram Moolenaar05159a02005-02-26 23:04:13 +000021303#ifdef FEAT_PROFILE
Bram Moolenaarb3656ed2006-03-20 21:59:49 +000021304 if (do_profiling == PROF_YES)
Bram Moolenaar05159a02005-02-26 23:04:13 +000021305 {
21306 if (!fp->uf_profiling && has_profiling(FALSE, fp->uf_name, NULL))
21307 func_do_profile(fp);
21308 if (fp->uf_profiling
Bram Moolenaar61c4e2c2008-08-25 02:49:18 +000021309 || (fc.caller != NULL && fc.caller->func->uf_profiling))
Bram Moolenaar05159a02005-02-26 23:04:13 +000021310 {
21311 ++fp->uf_tm_count;
Bram Moolenaare9da72e2006-11-01 17:34:40 +000021312 profile_start(&call_start);
Bram Moolenaar05159a02005-02-26 23:04:13 +000021313 profile_zero(&fp->uf_tm_children);
21314 }
21315 script_prof_save(&wait_start);
21316 }
21317#endif
21318
Bram Moolenaar071d4272004-06-13 20:20:40 +000021319 save_current_SID = current_SID;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021320 current_SID = fp->uf_script_ID;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021321 save_did_emsg = did_emsg;
21322 did_emsg = FALSE;
21323
21324 /* call do_cmdline() to execute the lines */
21325 do_cmdline(NULL, get_func_line, (void *)&fc,
21326 DOCMD_NOWAIT|DOCMD_VERBOSE|DOCMD_REPEAT);
21327
21328 --RedrawingDisabled;
21329
21330 /* when the function was aborted because of an error, return -1 */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021331 if ((did_emsg && (fp->uf_flags & FC_ABORT)) || rettv->v_type == VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021332 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021333 clear_tv(rettv);
21334 rettv->v_type = VAR_NUMBER;
21335 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021336 }
21337
Bram Moolenaar05159a02005-02-26 23:04:13 +000021338#ifdef FEAT_PROFILE
Bram Moolenaarb3656ed2006-03-20 21:59:49 +000021339 if (do_profiling == PROF_YES && (fp->uf_profiling
Bram Moolenaar61c4e2c2008-08-25 02:49:18 +000021340 || (fc.caller != NULL && fc.caller->func->uf_profiling)))
Bram Moolenaar05159a02005-02-26 23:04:13 +000021341 {
Bram Moolenaare9da72e2006-11-01 17:34:40 +000021342 profile_end(&call_start);
21343 profile_sub_wait(&wait_start, &call_start);
21344 profile_add(&fp->uf_tm_total, &call_start);
21345 profile_self(&fp->uf_tm_self, &call_start, &fp->uf_tm_children);
Bram Moolenaar61c4e2c2008-08-25 02:49:18 +000021346 if (fc.caller != NULL && fc.caller->func->uf_profiling)
Bram Moolenaar05159a02005-02-26 23:04:13 +000021347 {
Bram Moolenaare9da72e2006-11-01 17:34:40 +000021348 profile_add(&fc.caller->func->uf_tm_children, &call_start);
21349 profile_add(&fc.caller->func->uf_tml_children, &call_start);
Bram Moolenaar05159a02005-02-26 23:04:13 +000021350 }
21351 }
21352#endif
21353
Bram Moolenaar071d4272004-06-13 20:20:40 +000021354 /* when being verbose, mention the return value */
21355 if (p_verbose >= 12)
21356 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000021357 ++no_wait_return;
Bram Moolenaar54ee7752005-05-31 22:22:17 +000021358 verbose_enter_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +000021359
Bram Moolenaar071d4272004-06-13 20:20:40 +000021360 if (aborting())
Bram Moolenaar555b2802005-05-19 21:08:39 +000021361 smsg((char_u *)_("%s aborted"), sourcing_name);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021362 else if (fc.rettv->v_type == VAR_NUMBER)
Bram Moolenaar555b2802005-05-19 21:08:39 +000021363 smsg((char_u *)_("%s returning #%ld"), sourcing_name,
21364 (long)fc.rettv->vval.v_number);
Bram Moolenaar758711c2005-02-02 23:11:38 +000021365 else
Bram Moolenaar071d4272004-06-13 20:20:40 +000021366 {
Bram Moolenaar758711c2005-02-02 23:11:38 +000021367 char_u buf[MSG_BUF_LEN];
Bram Moolenaar89d40322006-08-29 15:30:07 +000021368 char_u numbuf2[NUMBUFLEN];
Bram Moolenaar758711c2005-02-02 23:11:38 +000021369 char_u *tofree;
Bram Moolenaar92c5aba2007-08-14 20:29:31 +000021370 char_u *s;
Bram Moolenaar758711c2005-02-02 23:11:38 +000021371
Bram Moolenaar555b2802005-05-19 21:08:39 +000021372 /* The value may be very long. Skip the middle part, so that we
21373 * have some idea how it starts and ends. smsg() would always
21374 * truncate it at the end. */
Bram Moolenaar92c5aba2007-08-14 20:29:31 +000021375 s = tv2string(fc.rettv, &tofree, numbuf2, 0);
21376 if (s != NULL)
21377 {
21378 trunc_string(s, buf, MSG_BUF_CLEN);
21379 smsg((char_u *)_("%s returning %s"), sourcing_name, buf);
21380 vim_free(tofree);
21381 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000021382 }
21383 msg_puts((char_u *)"\n"); /* don't overwrite this either */
Bram Moolenaar54ee7752005-05-31 22:22:17 +000021384
21385 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +000021386 --no_wait_return;
21387 }
21388
21389 vim_free(sourcing_name);
21390 sourcing_name = save_sourcing_name;
21391 sourcing_lnum = save_sourcing_lnum;
21392 current_SID = save_current_SID;
Bram Moolenaar05159a02005-02-26 23:04:13 +000021393#ifdef FEAT_PROFILE
Bram Moolenaarb3656ed2006-03-20 21:59:49 +000021394 if (do_profiling == PROF_YES)
Bram Moolenaar05159a02005-02-26 23:04:13 +000021395 script_prof_restore(&wait_start);
21396#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000021397
21398 if (p_verbose >= 12 && sourcing_name != NULL)
21399 {
21400 ++no_wait_return;
Bram Moolenaar54ee7752005-05-31 22:22:17 +000021401 verbose_enter_scroll();
21402
Bram Moolenaar555b2802005-05-19 21:08:39 +000021403 smsg((char_u *)_("continuing in %s"), sourcing_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021404 msg_puts((char_u *)"\n"); /* don't overwrite this either */
Bram Moolenaar54ee7752005-05-31 22:22:17 +000021405
21406 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +000021407 --no_wait_return;
21408 }
21409
21410 did_emsg |= save_did_emsg;
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +000021411 current_funccal = fc.caller;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021412
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021413 /* The a: variables typevals were not allocated, only free the allocated
Bram Moolenaar33570922005-01-25 22:26:29 +000021414 * variables. */
21415 vars_clear_ext(&fc.l_avars.dv_hashtab, FALSE);
21416
21417 vars_clear(&fc.l_vars.dv_hashtab); /* free all l: variables */
Bram Moolenaar071d4272004-06-13 20:20:40 +000021418 --depth;
21419}
21420
21421/*
Bram Moolenaar33570922005-01-25 22:26:29 +000021422 * Add a number variable "name" to dict "dp" with value "nr".
21423 */
21424 static void
21425add_nr_var(dp, v, name, nr)
21426 dict_T *dp;
21427 dictitem_T *v;
21428 char *name;
21429 varnumber_T nr;
21430{
21431 STRCPY(v->di_key, name);
21432 v->di_flags = DI_FLAGS_RO | DI_FLAGS_FIX;
21433 hash_add(&dp->dv_hashtab, DI2HIKEY(v));
21434 v->di_tv.v_type = VAR_NUMBER;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000021435 v->di_tv.v_lock = VAR_FIXED;
Bram Moolenaar33570922005-01-25 22:26:29 +000021436 v->di_tv.vval.v_number = nr;
21437}
21438
21439/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000021440 * ":return [expr]"
21441 */
21442 void
21443ex_return(eap)
21444 exarg_T *eap;
21445{
21446 char_u *arg = eap->arg;
Bram Moolenaar33570922005-01-25 22:26:29 +000021447 typval_T rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021448 int returning = FALSE;
21449
21450 if (current_funccal == NULL)
21451 {
21452 EMSG(_("E133: :return not inside a function"));
21453 return;
21454 }
21455
21456 if (eap->skip)
21457 ++emsg_skip;
21458
21459 eap->nextcmd = NULL;
21460 if ((*arg != NUL && *arg != '|' && *arg != '\n')
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021461 && eval0(arg, &rettv, &eap->nextcmd, !eap->skip) != FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021462 {
21463 if (!eap->skip)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021464 returning = do_return(eap, FALSE, TRUE, &rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021465 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021466 clear_tv(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021467 }
21468 /* It's safer to return also on error. */
21469 else if (!eap->skip)
21470 {
21471 /*
21472 * Return unless the expression evaluation has been cancelled due to an
21473 * aborting error, an interrupt, or an exception.
21474 */
21475 if (!aborting())
21476 returning = do_return(eap, FALSE, TRUE, NULL);
21477 }
21478
21479 /* When skipping or the return gets pending, advance to the next command
21480 * in this line (!returning). Otherwise, ignore the rest of the line.
21481 * Following lines will be ignored by get_func_line(). */
21482 if (returning)
21483 eap->nextcmd = NULL;
21484 else if (eap->nextcmd == NULL) /* no argument */
21485 eap->nextcmd = check_nextcmd(arg);
21486
21487 if (eap->skip)
21488 --emsg_skip;
21489}
21490
21491/*
21492 * Return from a function. Possibly makes the return pending. Also called
21493 * for a pending return at the ":endtry" or after returning from an extra
21494 * do_cmdline(). "reanimate" is used in the latter case. "is_cmd" is set
Bram Moolenaar33570922005-01-25 22:26:29 +000021495 * when called due to a ":return" command. "rettv" may point to a typval_T
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021496 * with the return rettv. Returns TRUE when the return can be carried out,
Bram Moolenaar071d4272004-06-13 20:20:40 +000021497 * FALSE when the return gets pending.
21498 */
21499 int
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021500do_return(eap, reanimate, is_cmd, rettv)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021501 exarg_T *eap;
21502 int reanimate;
21503 int is_cmd;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021504 void *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021505{
21506 int idx;
21507 struct condstack *cstack = eap->cstack;
21508
21509 if (reanimate)
21510 /* Undo the return. */
21511 current_funccal->returned = FALSE;
21512
21513 /*
21514 * Cleanup (and inactivate) conditionals, but stop when a try conditional
21515 * not in its finally clause (which then is to be executed next) is found.
21516 * In this case, make the ":return" pending for execution at the ":endtry".
21517 * Otherwise, return normally.
21518 */
21519 idx = cleanup_conditionals(eap->cstack, 0, TRUE);
21520 if (idx >= 0)
21521 {
21522 cstack->cs_pending[idx] = CSTP_RETURN;
21523
21524 if (!is_cmd && !reanimate)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021525 /* A pending return again gets pending. "rettv" points to an
21526 * allocated variable with the rettv of the original ":return"'s
Bram Moolenaar071d4272004-06-13 20:20:40 +000021527 * argument if present or is NULL else. */
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021528 cstack->cs_rettv[idx] = rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021529 else
21530 {
21531 /* When undoing a return in order to make it pending, get the stored
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021532 * return rettv. */
Bram Moolenaar071d4272004-06-13 20:20:40 +000021533 if (reanimate)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021534 rettv = current_funccal->rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021535
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021536 if (rettv != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021537 {
21538 /* Store the value of the pending return. */
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021539 if ((cstack->cs_rettv[idx] = alloc_tv()) != NULL)
Bram Moolenaar33570922005-01-25 22:26:29 +000021540 *(typval_T *)cstack->cs_rettv[idx] = *(typval_T *)rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021541 else
21542 EMSG(_(e_outofmem));
21543 }
21544 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021545 cstack->cs_rettv[idx] = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021546
21547 if (reanimate)
21548 {
21549 /* The pending return value could be overwritten by a ":return"
21550 * without argument in a finally clause; reset the default
21551 * return value. */
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021552 current_funccal->rettv->v_type = VAR_NUMBER;
21553 current_funccal->rettv->vval.v_number = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021554 }
21555 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021556 report_make_pending(CSTP_RETURN, rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021557 }
21558 else
21559 {
21560 current_funccal->returned = TRUE;
21561
21562 /* If the return is carried out now, store the return value. For
21563 * a return immediately after reanimation, the value is already
21564 * there. */
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021565 if (!reanimate && rettv != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021566 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021567 clear_tv(current_funccal->rettv);
Bram Moolenaar33570922005-01-25 22:26:29 +000021568 *current_funccal->rettv = *(typval_T *)rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021569 if (!is_cmd)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021570 vim_free(rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021571 }
21572 }
21573
21574 return idx < 0;
21575}
21576
21577/*
21578 * Free the variable with a pending return value.
21579 */
21580 void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021581discard_pending_return(rettv)
21582 void *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021583{
Bram Moolenaar33570922005-01-25 22:26:29 +000021584 free_tv((typval_T *)rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021585}
21586
21587/*
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021588 * Generate a return command for producing the value of "rettv". The result
Bram Moolenaar071d4272004-06-13 20:20:40 +000021589 * is an allocated string. Used by report_pending() for verbose messages.
21590 */
21591 char_u *
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021592get_return_cmd(rettv)
21593 void *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021594{
Bram Moolenaar81bf7082005-02-12 14:31:42 +000021595 char_u *s = NULL;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021596 char_u *tofree = NULL;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000021597 char_u numbuf[NUMBUFLEN];
Bram Moolenaar071d4272004-06-13 20:20:40 +000021598
Bram Moolenaar81bf7082005-02-12 14:31:42 +000021599 if (rettv != NULL)
Bram Moolenaarb71eaae2006-01-20 23:10:18 +000021600 s = echo_string((typval_T *)rettv, &tofree, numbuf, 0);
Bram Moolenaar81bf7082005-02-12 14:31:42 +000021601 if (s == NULL)
21602 s = (char_u *)"";
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021603
21604 STRCPY(IObuff, ":return ");
21605 STRNCPY(IObuff + 8, s, IOSIZE - 8);
21606 if (STRLEN(s) + 8 >= IOSIZE)
21607 STRCPY(IObuff + IOSIZE - 4, "...");
21608 vim_free(tofree);
21609 return vim_strsave(IObuff);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021610}
21611
21612/*
21613 * Get next function line.
21614 * Called by do_cmdline() to get the next line.
21615 * Returns allocated string, or NULL for end of function.
21616 */
21617/* ARGSUSED */
21618 char_u *
21619get_func_line(c, cookie, indent)
21620 int c; /* not used */
21621 void *cookie;
21622 int indent; /* not used */
21623{
Bram Moolenaar33570922005-01-25 22:26:29 +000021624 funccall_T *fcp = (funccall_T *)cookie;
Bram Moolenaar05159a02005-02-26 23:04:13 +000021625 ufunc_T *fp = fcp->func;
21626 char_u *retval;
21627 garray_T *gap; /* growarray with function lines */
Bram Moolenaar071d4272004-06-13 20:20:40 +000021628
21629 /* If breakpoints have been added/deleted need to check for it. */
21630 if (fcp->dbg_tick != debug_tick)
21631 {
Bram Moolenaar05159a02005-02-26 23:04:13 +000021632 fcp->breakpoint = dbg_find_breakpoint(FALSE, fp->uf_name,
Bram Moolenaar071d4272004-06-13 20:20:40 +000021633 sourcing_lnum);
21634 fcp->dbg_tick = debug_tick;
21635 }
Bram Moolenaar05159a02005-02-26 23:04:13 +000021636#ifdef FEAT_PROFILE
Bram Moolenaarb3656ed2006-03-20 21:59:49 +000021637 if (do_profiling == PROF_YES)
Bram Moolenaar05159a02005-02-26 23:04:13 +000021638 func_line_end(cookie);
21639#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000021640
Bram Moolenaar05159a02005-02-26 23:04:13 +000021641 gap = &fp->uf_lines;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000021642 if (((fp->uf_flags & FC_ABORT) && did_emsg && !aborted_in_try())
21643 || fcp->returned)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021644 retval = NULL;
21645 else
21646 {
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000021647 /* Skip NULL lines (continuation lines). */
21648 while (fcp->linenr < gap->ga_len
21649 && ((char_u **)(gap->ga_data))[fcp->linenr] == NULL)
21650 ++fcp->linenr;
21651 if (fcp->linenr >= gap->ga_len)
21652 retval = NULL;
21653 else
21654 {
21655 retval = vim_strsave(((char_u **)(gap->ga_data))[fcp->linenr++]);
21656 sourcing_lnum = fcp->linenr;
Bram Moolenaar05159a02005-02-26 23:04:13 +000021657#ifdef FEAT_PROFILE
Bram Moolenaarb3656ed2006-03-20 21:59:49 +000021658 if (do_profiling == PROF_YES)
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000021659 func_line_start(cookie);
Bram Moolenaar05159a02005-02-26 23:04:13 +000021660#endif
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000021661 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000021662 }
21663
21664 /* Did we encounter a breakpoint? */
21665 if (fcp->breakpoint != 0 && fcp->breakpoint <= sourcing_lnum)
21666 {
Bram Moolenaar05159a02005-02-26 23:04:13 +000021667 dbg_breakpoint(fp->uf_name, sourcing_lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021668 /* Find next breakpoint. */
Bram Moolenaar05159a02005-02-26 23:04:13 +000021669 fcp->breakpoint = dbg_find_breakpoint(FALSE, fp->uf_name,
Bram Moolenaar071d4272004-06-13 20:20:40 +000021670 sourcing_lnum);
21671 fcp->dbg_tick = debug_tick;
21672 }
21673
21674 return retval;
21675}
21676
Bram Moolenaar05159a02005-02-26 23:04:13 +000021677#if defined(FEAT_PROFILE) || defined(PROTO)
21678/*
21679 * Called when starting to read a function line.
21680 * "sourcing_lnum" must be correct!
21681 * When skipping lines it may not actually be executed, but we won't find out
21682 * until later and we need to store the time now.
21683 */
21684 void
21685func_line_start(cookie)
21686 void *cookie;
21687{
21688 funccall_T *fcp = (funccall_T *)cookie;
21689 ufunc_T *fp = fcp->func;
21690
21691 if (fp->uf_profiling && sourcing_lnum >= 1
21692 && sourcing_lnum <= fp->uf_lines.ga_len)
21693 {
21694 fp->uf_tml_idx = sourcing_lnum - 1;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000021695 /* Skip continuation lines. */
21696 while (fp->uf_tml_idx > 0 && FUNCLINE(fp, fp->uf_tml_idx) == NULL)
21697 --fp->uf_tml_idx;
Bram Moolenaar05159a02005-02-26 23:04:13 +000021698 fp->uf_tml_execed = FALSE;
21699 profile_start(&fp->uf_tml_start);
21700 profile_zero(&fp->uf_tml_children);
21701 profile_get_wait(&fp->uf_tml_wait);
21702 }
21703}
21704
21705/*
21706 * Called when actually executing a function line.
21707 */
21708 void
21709func_line_exec(cookie)
21710 void *cookie;
21711{
21712 funccall_T *fcp = (funccall_T *)cookie;
21713 ufunc_T *fp = fcp->func;
21714
21715 if (fp->uf_profiling && fp->uf_tml_idx >= 0)
21716 fp->uf_tml_execed = TRUE;
21717}
21718
21719/*
21720 * Called when done with a function line.
21721 */
21722 void
21723func_line_end(cookie)
21724 void *cookie;
21725{
21726 funccall_T *fcp = (funccall_T *)cookie;
21727 ufunc_T *fp = fcp->func;
21728
21729 if (fp->uf_profiling && fp->uf_tml_idx >= 0)
21730 {
21731 if (fp->uf_tml_execed)
21732 {
21733 ++fp->uf_tml_count[fp->uf_tml_idx];
21734 profile_end(&fp->uf_tml_start);
21735 profile_sub_wait(&fp->uf_tml_wait, &fp->uf_tml_start);
Bram Moolenaar05159a02005-02-26 23:04:13 +000021736 profile_add(&fp->uf_tml_total[fp->uf_tml_idx], &fp->uf_tml_start);
Bram Moolenaar1056d982006-03-09 22:37:52 +000021737 profile_self(&fp->uf_tml_self[fp->uf_tml_idx], &fp->uf_tml_start,
21738 &fp->uf_tml_children);
Bram Moolenaar05159a02005-02-26 23:04:13 +000021739 }
21740 fp->uf_tml_idx = -1;
21741 }
21742}
21743#endif
21744
Bram Moolenaar071d4272004-06-13 20:20:40 +000021745/*
21746 * Return TRUE if the currently active function should be ended, because a
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021747 * return was encountered or an error occurred. Used inside a ":while".
Bram Moolenaar071d4272004-06-13 20:20:40 +000021748 */
21749 int
21750func_has_ended(cookie)
21751 void *cookie;
21752{
Bram Moolenaar33570922005-01-25 22:26:29 +000021753 funccall_T *fcp = (funccall_T *)cookie;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021754
21755 /* Ignore the "abort" flag if the abortion behavior has been changed due to
21756 * an error inside a try conditional. */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021757 return (((fcp->func->uf_flags & FC_ABORT) && did_emsg && !aborted_in_try())
Bram Moolenaar071d4272004-06-13 20:20:40 +000021758 || fcp->returned);
21759}
21760
21761/*
21762 * return TRUE if cookie indicates a function which "abort"s on errors.
21763 */
21764 int
21765func_has_abort(cookie)
21766 void *cookie;
21767{
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021768 return ((funccall_T *)cookie)->func->uf_flags & FC_ABORT;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021769}
21770
21771#if defined(FEAT_VIMINFO) || defined(FEAT_SESSION)
21772typedef enum
21773{
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021774 VAR_FLAVOUR_DEFAULT, /* doesn't start with uppercase */
21775 VAR_FLAVOUR_SESSION, /* starts with uppercase, some lower */
21776 VAR_FLAVOUR_VIMINFO /* all uppercase */
Bram Moolenaar071d4272004-06-13 20:20:40 +000021777} var_flavour_T;
21778
21779static var_flavour_T var_flavour __ARGS((char_u *varname));
21780
21781 static var_flavour_T
21782var_flavour(varname)
21783 char_u *varname;
21784{
21785 char_u *p = varname;
21786
21787 if (ASCII_ISUPPER(*p))
21788 {
21789 while (*(++p))
21790 if (ASCII_ISLOWER(*p))
21791 return VAR_FLAVOUR_SESSION;
21792 return VAR_FLAVOUR_VIMINFO;
21793 }
21794 else
21795 return VAR_FLAVOUR_DEFAULT;
21796}
21797#endif
21798
21799#if defined(FEAT_VIMINFO) || defined(PROTO)
21800/*
21801 * Restore global vars that start with a capital from the viminfo file
21802 */
21803 int
21804read_viminfo_varlist(virp, writing)
21805 vir_T *virp;
21806 int writing;
21807{
21808 char_u *tab;
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021809 int type = VAR_NUMBER;
Bram Moolenaar33570922005-01-25 22:26:29 +000021810 typval_T tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021811
21812 if (!writing && (find_viminfo_parameter('!') != NULL))
21813 {
21814 tab = vim_strchr(virp->vir_line + 1, '\t');
21815 if (tab != NULL)
21816 {
21817 *tab++ = '\0'; /* isolate the variable name */
21818 if (*tab == 'S') /* string var */
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021819 type = VAR_STRING;
21820#ifdef FEAT_FLOAT
21821 else if (*tab == 'F')
21822 type = VAR_FLOAT;
21823#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000021824
21825 tab = vim_strchr(tab, '\t');
21826 if (tab != NULL)
21827 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021828 tv.v_type = type;
21829 if (type == VAR_STRING)
Bram Moolenaar3d60ec22005-01-05 22:19:46 +000021830 tv.vval.v_string = viminfo_readstring(virp,
Bram Moolenaar071d4272004-06-13 20:20:40 +000021831 (int)(tab - virp->vir_line + 1), TRUE);
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021832#ifdef FEAT_FLOAT
21833 else if (type == VAR_FLOAT)
21834 (void)string2float(tab + 1, &tv.vval.v_float);
21835#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000021836 else
Bram Moolenaar3d60ec22005-01-05 22:19:46 +000021837 tv.vval.v_number = atol((char *)tab + 1);
Bram Moolenaar3d60ec22005-01-05 22:19:46 +000021838 set_var(virp->vir_line + 1, &tv, FALSE);
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021839 if (type == VAR_STRING)
Bram Moolenaar3d60ec22005-01-05 22:19:46 +000021840 vim_free(tv.vval.v_string);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021841 }
21842 }
21843 }
21844
21845 return viminfo_readline(virp);
21846}
21847
21848/*
21849 * Write global vars that start with a capital to the viminfo file
21850 */
21851 void
21852write_viminfo_varlist(fp)
21853 FILE *fp;
21854{
Bram Moolenaar33570922005-01-25 22:26:29 +000021855 hashitem_T *hi;
21856 dictitem_T *this_var;
Bram Moolenaara7043832005-01-21 11:56:39 +000021857 int todo;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021858 char *s;
Bram Moolenaar81bf7082005-02-12 14:31:42 +000021859 char_u *p;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021860 char_u *tofree;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000021861 char_u numbuf[NUMBUFLEN];
Bram Moolenaar071d4272004-06-13 20:20:40 +000021862
21863 if (find_viminfo_parameter('!') == NULL)
21864 return;
21865
21866 fprintf(fp, _("\n# global variables:\n"));
Bram Moolenaara7043832005-01-21 11:56:39 +000021867
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000021868 todo = (int)globvarht.ht_used;
Bram Moolenaar33570922005-01-25 22:26:29 +000021869 for (hi = globvarht.ht_array; todo > 0; ++hi)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021870 {
Bram Moolenaara7043832005-01-21 11:56:39 +000021871 if (!HASHITEM_EMPTY(hi))
Bram Moolenaar071d4272004-06-13 20:20:40 +000021872 {
Bram Moolenaara7043832005-01-21 11:56:39 +000021873 --todo;
Bram Moolenaar33570922005-01-25 22:26:29 +000021874 this_var = HI2DI(hi);
21875 if (var_flavour(this_var->di_key) == VAR_FLAVOUR_VIMINFO)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021876 {
Bram Moolenaar33570922005-01-25 22:26:29 +000021877 switch (this_var->di_tv.v_type)
Bram Moolenaara7043832005-01-21 11:56:39 +000021878 {
21879 case VAR_STRING: s = "STR"; break;
21880 case VAR_NUMBER: s = "NUM"; break;
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021881#ifdef FEAT_FLOAT
21882 case VAR_FLOAT: s = "FLO"; break;
21883#endif
Bram Moolenaara7043832005-01-21 11:56:39 +000021884 default: continue;
21885 }
Bram Moolenaar33570922005-01-25 22:26:29 +000021886 fprintf(fp, "!%s\t%s\t", this_var->di_key, s);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +000021887 p = echo_string(&this_var->di_tv, &tofree, numbuf, 0);
Bram Moolenaar81bf7082005-02-12 14:31:42 +000021888 if (p != NULL)
21889 viminfo_writestring(fp, p);
Bram Moolenaara7043832005-01-21 11:56:39 +000021890 vim_free(tofree);
21891 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000021892 }
21893 }
21894}
21895#endif
21896
21897#if defined(FEAT_SESSION) || defined(PROTO)
21898 int
21899store_session_globals(fd)
21900 FILE *fd;
21901{
Bram Moolenaar33570922005-01-25 22:26:29 +000021902 hashitem_T *hi;
21903 dictitem_T *this_var;
Bram Moolenaara7043832005-01-21 11:56:39 +000021904 int todo;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021905 char_u *p, *t;
21906
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000021907 todo = (int)globvarht.ht_used;
Bram Moolenaar33570922005-01-25 22:26:29 +000021908 for (hi = globvarht.ht_array; todo > 0; ++hi)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021909 {
Bram Moolenaara7043832005-01-21 11:56:39 +000021910 if (!HASHITEM_EMPTY(hi))
Bram Moolenaar071d4272004-06-13 20:20:40 +000021911 {
Bram Moolenaara7043832005-01-21 11:56:39 +000021912 --todo;
Bram Moolenaar33570922005-01-25 22:26:29 +000021913 this_var = HI2DI(hi);
21914 if ((this_var->di_tv.v_type == VAR_NUMBER
21915 || this_var->di_tv.v_type == VAR_STRING)
21916 && var_flavour(this_var->di_key) == VAR_FLAVOUR_SESSION)
Bram Moolenaar3d60ec22005-01-05 22:19:46 +000021917 {
Bram Moolenaara7043832005-01-21 11:56:39 +000021918 /* Escape special characters with a backslash. Turn a LF and
21919 * CR into \n and \r. */
Bram Moolenaar33570922005-01-25 22:26:29 +000021920 p = vim_strsave_escaped(get_tv_string(&this_var->di_tv),
Bram Moolenaara7043832005-01-21 11:56:39 +000021921 (char_u *)"\\\"\n\r");
21922 if (p == NULL) /* out of memory */
21923 break;
21924 for (t = p; *t != NUL; ++t)
21925 if (*t == '\n')
21926 *t = 'n';
21927 else if (*t == '\r')
21928 *t = 'r';
21929 if ((fprintf(fd, "let %s = %c%s%c",
Bram Moolenaar33570922005-01-25 22:26:29 +000021930 this_var->di_key,
21931 (this_var->di_tv.v_type == VAR_STRING) ? '"'
21932 : ' ',
21933 p,
21934 (this_var->di_tv.v_type == VAR_STRING) ? '"'
21935 : ' ') < 0)
Bram Moolenaara7043832005-01-21 11:56:39 +000021936 || put_eol(fd) == FAIL)
21937 {
21938 vim_free(p);
21939 return FAIL;
21940 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000021941 vim_free(p);
21942 }
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021943#ifdef FEAT_FLOAT
21944 else if (this_var->di_tv.v_type == VAR_FLOAT
21945 && var_flavour(this_var->di_key) == VAR_FLAVOUR_SESSION)
21946 {
21947 float_T f = this_var->di_tv.vval.v_float;
21948 int sign = ' ';
21949
21950 if (f < 0)
21951 {
21952 f = -f;
21953 sign = '-';
21954 }
21955 if ((fprintf(fd, "let %s = %c&%f",
21956 this_var->di_key, sign, f) < 0)
21957 || put_eol(fd) == FAIL)
21958 return FAIL;
21959 }
21960#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000021961 }
21962 }
21963 return OK;
21964}
21965#endif
21966
Bram Moolenaar661b1822005-07-28 22:36:45 +000021967/*
21968 * Display script name where an item was last set.
21969 * Should only be invoked when 'verbose' is non-zero.
21970 */
21971 void
21972last_set_msg(scriptID)
21973 scid_T scriptID;
21974{
Bram Moolenaarcafda4f2005-09-06 19:25:11 +000021975 char_u *p;
21976
Bram Moolenaar661b1822005-07-28 22:36:45 +000021977 if (scriptID != 0)
21978 {
Bram Moolenaarcafda4f2005-09-06 19:25:11 +000021979 p = home_replace_save(NULL, get_scriptname(scriptID));
21980 if (p != NULL)
21981 {
21982 verbose_enter();
21983 MSG_PUTS(_("\n\tLast set from "));
21984 MSG_PUTS(p);
21985 vim_free(p);
21986 verbose_leave();
21987 }
Bram Moolenaar661b1822005-07-28 22:36:45 +000021988 }
21989}
21990
Bram Moolenaard812df62008-11-09 12:46:09 +000021991/*
21992 * List v:oldfiles in a nice way.
21993 */
21994/*ARGSUSED*/
21995 void
21996ex_oldfiles(eap)
21997 exarg_T *eap;
21998{
21999 list_T *l = vimvars[VV_OLDFILES].vv_list;
22000 listitem_T *li;
22001 int nr = 0;
22002
22003 if (l == NULL)
22004 msg((char_u *)_("No old files"));
22005 else
22006 {
22007 msg_start();
22008 msg_scroll = TRUE;
22009 for (li = l->lv_first; li != NULL && !got_int; li = li->li_next)
22010 {
22011 msg_outnum((long)++nr);
22012 MSG_PUTS(": ");
22013 msg_outtrans(get_tv_string(&li->li_tv));
22014 msg_putchar('\n');
22015 out_flush(); /* output one line at a time */
22016 ui_breakcheck();
22017 }
22018 /* Assume "got_int" was set to truncate the listing. */
22019 got_int = FALSE;
22020
22021#ifdef FEAT_BROWSE_CMD
22022 if (cmdmod.browse)
22023 {
22024 quit_more = FALSE;
22025 nr = prompt_for_number(FALSE);
22026 msg_starthere();
22027 if (nr > 0)
22028 {
22029 char_u *p = list_find_str(get_vim_var_list(VV_OLDFILES),
22030 (long)nr);
22031
22032 if (p != NULL)
22033 {
22034 p = expand_env_save(p);
22035 eap->arg = p;
22036 eap->cmdidx = CMD_edit;
22037 cmdmod.browse = FALSE;
22038 do_exedit(eap, NULL);
22039 vim_free(p);
22040 }
22041 }
22042 }
22043#endif
22044 }
22045}
22046
Bram Moolenaar071d4272004-06-13 20:20:40 +000022047#endif /* FEAT_EVAL */
22048
Bram Moolenaar071d4272004-06-13 20:20:40 +000022049
Bram Moolenaar8c8de832008-06-24 22:58:06 +000022050#if defined(FEAT_MODIFY_FNAME) || defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +000022051
22052#ifdef WIN3264
22053/*
22054 * Functions for ":8" filename modifier: get 8.3 version of a filename.
22055 */
22056static int get_short_pathname __ARGS((char_u **fnamep, char_u **bufp, int *fnamelen));
22057static int shortpath_for_invalid_fname __ARGS((char_u **fname, char_u **bufp, int *fnamelen));
22058static int shortpath_for_partial __ARGS((char_u **fnamep, char_u **bufp, int *fnamelen));
22059
22060/*
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022061 * Get the short path (8.3) for the filename in "fnamep".
22062 * Only works for a valid file name.
22063 * When the path gets longer "fnamep" is changed and the allocated buffer
22064 * is put in "bufp".
22065 * *fnamelen is the length of "fnamep" and set to 0 for a nonexistent path.
22066 * Returns OK on success, FAIL on failure.
Bram Moolenaar071d4272004-06-13 20:20:40 +000022067 */
22068 static int
22069get_short_pathname(fnamep, bufp, fnamelen)
22070 char_u **fnamep;
22071 char_u **bufp;
22072 int *fnamelen;
22073{
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022074 int l, len;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022075 char_u *newbuf;
22076
22077 len = *fnamelen;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022078 l = GetShortPathName(*fnamep, *fnamep, len);
22079 if (l > len - 1)
22080 {
22081 /* If that doesn't work (not enough space), then save the string
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022082 * and try again with a new buffer big enough. */
Bram Moolenaar071d4272004-06-13 20:20:40 +000022083 newbuf = vim_strnsave(*fnamep, l);
22084 if (newbuf == NULL)
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022085 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022086
22087 vim_free(*bufp);
22088 *fnamep = *bufp = newbuf;
22089
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022090 /* Really should always succeed, as the buffer is big enough. */
22091 l = GetShortPathName(*fnamep, *fnamep, l+1);
Bram Moolenaar071d4272004-06-13 20:20:40 +000022092 }
22093
22094 *fnamelen = l;
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022095 return OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022096}
22097
22098/*
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022099 * Get the short path (8.3) for the filename in "fname". The converted
22100 * path is returned in "bufp".
22101 *
22102 * Some of the directories specified in "fname" may not exist. This function
22103 * will shorten the existing directories at the beginning of the path and then
22104 * append the remaining non-existing path.
22105 *
22106 * fname - Pointer to the filename to shorten. On return, contains the
22107 * pointer to the shortened pathname
22108 * bufp - Pointer to an allocated buffer for the filename.
22109 * fnamelen - Length of the filename pointed to by fname
22110 *
22111 * Returns OK on success (or nothing done) and FAIL on failure (out of memory).
Bram Moolenaar071d4272004-06-13 20:20:40 +000022112 */
22113 static int
22114shortpath_for_invalid_fname(fname, bufp, fnamelen)
22115 char_u **fname;
22116 char_u **bufp;
22117 int *fnamelen;
22118{
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022119 char_u *short_fname, *save_fname, *pbuf_unused;
22120 char_u *endp, *save_endp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022121 char_u ch;
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022122 int old_len, len;
22123 int new_len, sfx_len;
22124 int retval = OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022125
22126 /* Make a copy */
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022127 old_len = *fnamelen;
22128 save_fname = vim_strnsave(*fname, old_len);
22129 pbuf_unused = NULL;
22130 short_fname = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022131
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022132 endp = save_fname + old_len - 1; /* Find the end of the copy */
22133 save_endp = endp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022134
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022135 /*
22136 * Try shortening the supplied path till it succeeds by removing one
22137 * directory at a time from the tail of the path.
22138 */
22139 len = 0;
22140 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +000022141 {
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022142 /* go back one path-separator */
22143 while (endp > save_fname && !after_pathsep(save_fname, endp + 1))
22144 --endp;
22145 if (endp <= save_fname)
22146 break; /* processed the complete path */
22147
22148 /*
22149 * Replace the path separator with a NUL and try to shorten the
22150 * resulting path.
22151 */
22152 ch = *endp;
22153 *endp = 0;
22154 short_fname = save_fname;
Bram Moolenaarc236c162008-07-13 17:41:49 +000022155 len = (int)STRLEN(short_fname) + 1;
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022156 if (get_short_pathname(&short_fname, &pbuf_unused, &len) == FAIL)
22157 {
22158 retval = FAIL;
22159 goto theend;
22160 }
22161 *endp = ch; /* preserve the string */
22162
22163 if (len > 0)
22164 break; /* successfully shortened the path */
22165
22166 /* failed to shorten the path. Skip the path separator */
22167 --endp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022168 }
22169
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022170 if (len > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000022171 {
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022172 /*
22173 * Succeeded in shortening the path. Now concatenate the shortened
22174 * path with the remaining path at the tail.
22175 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000022176
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022177 /* Compute the length of the new path. */
22178 sfx_len = (int)(save_endp - endp) + 1;
22179 new_len = len + sfx_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022180
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022181 *fnamelen = new_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022182 vim_free(*bufp);
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022183 if (new_len > old_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +000022184 {
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022185 /* There is not enough space in the currently allocated string,
22186 * copy it to a buffer big enough. */
22187 *fname = *bufp = vim_strnsave(short_fname, new_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +000022188 if (*fname == NULL)
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022189 {
22190 retval = FAIL;
22191 goto theend;
22192 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000022193 }
22194 else
22195 {
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022196 /* Transfer short_fname to the main buffer (it's big enough),
22197 * unless get_short_pathname() did its work in-place. */
22198 *fname = *bufp = save_fname;
22199 if (short_fname != save_fname)
22200 vim_strncpy(save_fname, short_fname, len);
22201 save_fname = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022202 }
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022203
22204 /* concat the not-shortened part of the path */
22205 vim_strncpy(*fname + len, endp, sfx_len);
22206 (*fname)[new_len] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022207 }
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022208
22209theend:
22210 vim_free(pbuf_unused);
22211 vim_free(save_fname);
22212
22213 return retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022214}
22215
22216/*
22217 * Get a pathname for a partial path.
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022218 * Returns OK for success, FAIL for failure.
Bram Moolenaar071d4272004-06-13 20:20:40 +000022219 */
22220 static int
22221shortpath_for_partial(fnamep, bufp, fnamelen)
22222 char_u **fnamep;
22223 char_u **bufp;
22224 int *fnamelen;
22225{
22226 int sepcount, len, tflen;
22227 char_u *p;
22228 char_u *pbuf, *tfname;
22229 int hasTilde;
22230
Bram Moolenaar8c8de832008-06-24 22:58:06 +000022231 /* Count up the path separators from the RHS.. so we know which part
22232 * of the path to return. */
Bram Moolenaar071d4272004-06-13 20:20:40 +000022233 sepcount = 0;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +000022234 for (p = *fnamep; p < *fnamep + *fnamelen; mb_ptr_adv(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +000022235 if (vim_ispathsep(*p))
22236 ++sepcount;
22237
22238 /* Need full path first (use expand_env() to remove a "~/") */
22239 hasTilde = (**fnamep == '~');
22240 if (hasTilde)
22241 pbuf = tfname = expand_env_save(*fnamep);
22242 else
22243 pbuf = tfname = FullName_save(*fnamep, FALSE);
22244
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000022245 len = tflen = (int)STRLEN(tfname);
Bram Moolenaar071d4272004-06-13 20:20:40 +000022246
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022247 if (get_short_pathname(&tfname, &pbuf, &len) == FAIL)
22248 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022249
22250 if (len == 0)
22251 {
22252 /* Don't have a valid filename, so shorten the rest of the
22253 * path if we can. This CAN give us invalid 8.3 filenames, but
22254 * there's not a lot of point in guessing what it might be.
22255 */
22256 len = tflen;
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022257 if (shortpath_for_invalid_fname(&tfname, &pbuf, &len) == FAIL)
22258 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022259 }
22260
22261 /* Count the paths backward to find the beginning of the desired string. */
22262 for (p = tfname + len - 1; p >= tfname; --p)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +000022263 {
22264#ifdef FEAT_MBYTE
22265 if (has_mbyte)
22266 p -= mb_head_off(tfname, p);
22267#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000022268 if (vim_ispathsep(*p))
22269 {
22270 if (sepcount == 0 || (hasTilde && sepcount == 1))
22271 break;
22272 else
22273 sepcount --;
22274 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +000022275 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000022276 if (hasTilde)
22277 {
22278 --p;
22279 if (p >= tfname)
22280 *p = '~';
22281 else
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022282 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022283 }
22284 else
22285 ++p;
22286
22287 /* Copy in the string - p indexes into tfname - allocated at pbuf */
22288 vim_free(*bufp);
22289 *fnamelen = (int)STRLEN(p);
22290 *bufp = pbuf;
22291 *fnamep = p;
22292
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022293 return OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022294}
22295#endif /* WIN3264 */
22296
22297/*
22298 * Adjust a filename, according to a string of modifiers.
22299 * *fnamep must be NUL terminated when called. When returning, the length is
22300 * determined by *fnamelen.
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022301 * Returns VALID_ flags or -1 for failure.
Bram Moolenaar071d4272004-06-13 20:20:40 +000022302 * When there is an error, *fnamep is set to NULL.
22303 */
22304 int
22305modify_fname(src, usedlen, fnamep, bufp, fnamelen)
22306 char_u *src; /* string with modifiers */
22307 int *usedlen; /* characters after src that are used */
22308 char_u **fnamep; /* file name so far */
22309 char_u **bufp; /* buffer for allocated file name or NULL */
22310 int *fnamelen; /* length of fnamep */
22311{
22312 int valid = 0;
22313 char_u *tail;
22314 char_u *s, *p, *pbuf;
22315 char_u dirname[MAXPATHL];
22316 int c;
22317 int has_fullname = 0;
22318#ifdef WIN3264
22319 int has_shortname = 0;
22320#endif
22321
22322repeat:
22323 /* ":p" - full path/file_name */
22324 if (src[*usedlen] == ':' && src[*usedlen + 1] == 'p')
22325 {
22326 has_fullname = 1;
22327
22328 valid |= VALID_PATH;
22329 *usedlen += 2;
22330
22331 /* Expand "~/path" for all systems and "~user/path" for Unix and VMS */
22332 if ((*fnamep)[0] == '~'
22333#if !defined(UNIX) && !(defined(VMS) && defined(USER_HOME))
22334 && ((*fnamep)[1] == '/'
22335# ifdef BACKSLASH_IN_FILENAME
22336 || (*fnamep)[1] == '\\'
22337# endif
22338 || (*fnamep)[1] == NUL)
22339
22340#endif
22341 )
22342 {
22343 *fnamep = expand_env_save(*fnamep);
22344 vim_free(*bufp); /* free any allocated file name */
22345 *bufp = *fnamep;
22346 if (*fnamep == NULL)
22347 return -1;
22348 }
22349
22350 /* When "/." or "/.." is used: force expansion to get rid of it. */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +000022351 for (p = *fnamep; *p != NUL; mb_ptr_adv(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +000022352 {
22353 if (vim_ispathsep(*p)
22354 && p[1] == '.'
22355 && (p[2] == NUL
22356 || vim_ispathsep(p[2])
22357 || (p[2] == '.'
22358 && (p[3] == NUL || vim_ispathsep(p[3])))))
22359 break;
22360 }
22361
22362 /* FullName_save() is slow, don't use it when not needed. */
22363 if (*p != NUL || !vim_isAbsName(*fnamep))
22364 {
22365 *fnamep = FullName_save(*fnamep, *p != NUL);
22366 vim_free(*bufp); /* free any allocated file name */
22367 *bufp = *fnamep;
22368 if (*fnamep == NULL)
22369 return -1;
22370 }
22371
22372 /* Append a path separator to a directory. */
22373 if (mch_isdir(*fnamep))
22374 {
22375 /* Make room for one or two extra characters. */
22376 *fnamep = vim_strnsave(*fnamep, (int)STRLEN(*fnamep) + 2);
22377 vim_free(*bufp); /* free any allocated file name */
22378 *bufp = *fnamep;
22379 if (*fnamep == NULL)
22380 return -1;
22381 add_pathsep(*fnamep);
22382 }
22383 }
22384
22385 /* ":." - path relative to the current directory */
22386 /* ":~" - path relative to the home directory */
22387 /* ":8" - shortname path - postponed till after */
22388 while (src[*usedlen] == ':'
22389 && ((c = src[*usedlen + 1]) == '.' || c == '~' || c == '8'))
22390 {
22391 *usedlen += 2;
22392 if (c == '8')
22393 {
22394#ifdef WIN3264
22395 has_shortname = 1; /* Postpone this. */
22396#endif
22397 continue;
22398 }
22399 pbuf = NULL;
22400 /* Need full path first (use expand_env() to remove a "~/") */
22401 if (!has_fullname)
22402 {
22403 if (c == '.' && **fnamep == '~')
22404 p = pbuf = expand_env_save(*fnamep);
22405 else
22406 p = pbuf = FullName_save(*fnamep, FALSE);
22407 }
22408 else
22409 p = *fnamep;
22410
22411 has_fullname = 0;
22412
22413 if (p != NULL)
22414 {
22415 if (c == '.')
22416 {
22417 mch_dirname(dirname, MAXPATHL);
22418 s = shorten_fname(p, dirname);
22419 if (s != NULL)
22420 {
22421 *fnamep = s;
22422 if (pbuf != NULL)
22423 {
22424 vim_free(*bufp); /* free any allocated file name */
22425 *bufp = pbuf;
22426 pbuf = NULL;
22427 }
22428 }
22429 }
22430 else
22431 {
22432 home_replace(NULL, p, dirname, MAXPATHL, TRUE);
22433 /* Only replace it when it starts with '~' */
22434 if (*dirname == '~')
22435 {
22436 s = vim_strsave(dirname);
22437 if (s != NULL)
22438 {
22439 *fnamep = s;
22440 vim_free(*bufp);
22441 *bufp = s;
22442 }
22443 }
22444 }
22445 vim_free(pbuf);
22446 }
22447 }
22448
22449 tail = gettail(*fnamep);
22450 *fnamelen = (int)STRLEN(*fnamep);
22451
22452 /* ":h" - head, remove "/file_name", can be repeated */
22453 /* Don't remove the first "/" or "c:\" */
22454 while (src[*usedlen] == ':' && src[*usedlen + 1] == 'h')
22455 {
22456 valid |= VALID_HEAD;
22457 *usedlen += 2;
22458 s = get_past_head(*fnamep);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +000022459 while (tail > s && after_pathsep(s, tail))
Bram Moolenaar5461cfe2007-09-25 18:40:14 +000022460 mb_ptr_back(*fnamep, tail);
Bram Moolenaar071d4272004-06-13 20:20:40 +000022461 *fnamelen = (int)(tail - *fnamep);
22462#ifdef VMS
22463 if (*fnamelen > 0)
22464 *fnamelen += 1; /* the path separator is part of the path */
22465#endif
Bram Moolenaar5461cfe2007-09-25 18:40:14 +000022466 if (*fnamelen == 0)
22467 {
22468 /* Result is empty. Turn it into "." to make ":cd %:h" work. */
22469 p = vim_strsave((char_u *)".");
22470 if (p == NULL)
22471 return -1;
22472 vim_free(*bufp);
22473 *bufp = *fnamep = tail = p;
22474 *fnamelen = 1;
22475 }
22476 else
22477 {
22478 while (tail > s && !after_pathsep(s, tail))
22479 mb_ptr_back(*fnamep, tail);
22480 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000022481 }
22482
22483 /* ":8" - shortname */
22484 if (src[*usedlen] == ':' && src[*usedlen + 1] == '8')
22485 {
22486 *usedlen += 2;
22487#ifdef WIN3264
22488 has_shortname = 1;
22489#endif
22490 }
22491
22492#ifdef WIN3264
22493 /* Check shortname after we have done 'heads' and before we do 'tails'
22494 */
22495 if (has_shortname)
22496 {
22497 pbuf = NULL;
22498 /* Copy the string if it is shortened by :h */
22499 if (*fnamelen < (int)STRLEN(*fnamep))
22500 {
22501 p = vim_strnsave(*fnamep, *fnamelen);
22502 if (p == 0)
22503 return -1;
22504 vim_free(*bufp);
22505 *bufp = *fnamep = p;
22506 }
22507
22508 /* Split into two implementations - makes it easier. First is where
22509 * there isn't a full name already, second is where there is.
22510 */
22511 if (!has_fullname && !vim_isAbsName(*fnamep))
22512 {
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022513 if (shortpath_for_partial(fnamep, bufp, fnamelen) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000022514 return -1;
22515 }
22516 else
22517 {
22518 int l;
22519
22520 /* Simple case, already have the full-name
22521 * Nearly always shorter, so try first time. */
22522 l = *fnamelen;
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022523 if (get_short_pathname(fnamep, bufp, &l) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000022524 return -1;
22525
22526 if (l == 0)
22527 {
22528 /* Couldn't find the filename.. search the paths.
22529 */
22530 l = *fnamelen;
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022531 if (shortpath_for_invalid_fname(fnamep, bufp, &l) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000022532 return -1;
22533 }
22534 *fnamelen = l;
22535 }
22536 }
22537#endif /* WIN3264 */
22538
22539 /* ":t" - tail, just the basename */
22540 if (src[*usedlen] == ':' && src[*usedlen + 1] == 't')
22541 {
22542 *usedlen += 2;
22543 *fnamelen -= (int)(tail - *fnamep);
22544 *fnamep = tail;
22545 }
22546
22547 /* ":e" - extension, can be repeated */
22548 /* ":r" - root, without extension, can be repeated */
22549 while (src[*usedlen] == ':'
22550 && (src[*usedlen + 1] == 'e' || src[*usedlen + 1] == 'r'))
22551 {
22552 /* find a '.' in the tail:
22553 * - for second :e: before the current fname
22554 * - otherwise: The last '.'
22555 */
22556 if (src[*usedlen + 1] == 'e' && *fnamep > tail)
22557 s = *fnamep - 2;
22558 else
22559 s = *fnamep + *fnamelen - 1;
22560 for ( ; s > tail; --s)
22561 if (s[0] == '.')
22562 break;
22563 if (src[*usedlen + 1] == 'e') /* :e */
22564 {
22565 if (s > tail)
22566 {
22567 *fnamelen += (int)(*fnamep - (s + 1));
22568 *fnamep = s + 1;
22569#ifdef VMS
22570 /* cut version from the extension */
22571 s = *fnamep + *fnamelen - 1;
22572 for ( ; s > *fnamep; --s)
22573 if (s[0] == ';')
22574 break;
22575 if (s > *fnamep)
22576 *fnamelen = s - *fnamep;
22577#endif
22578 }
22579 else if (*fnamep <= tail)
22580 *fnamelen = 0;
22581 }
22582 else /* :r */
22583 {
22584 if (s > tail) /* remove one extension */
22585 *fnamelen = (int)(s - *fnamep);
22586 }
22587 *usedlen += 2;
22588 }
22589
22590 /* ":s?pat?foo?" - substitute */
22591 /* ":gs?pat?foo?" - global substitute */
22592 if (src[*usedlen] == ':'
22593 && (src[*usedlen + 1] == 's'
22594 || (src[*usedlen + 1] == 'g' && src[*usedlen + 2] == 's')))
22595 {
22596 char_u *str;
22597 char_u *pat;
22598 char_u *sub;
22599 int sep;
22600 char_u *flags;
22601 int didit = FALSE;
22602
22603 flags = (char_u *)"";
22604 s = src + *usedlen + 2;
22605 if (src[*usedlen + 1] == 'g')
22606 {
22607 flags = (char_u *)"g";
22608 ++s;
22609 }
22610
22611 sep = *s++;
22612 if (sep)
22613 {
22614 /* find end of pattern */
22615 p = vim_strchr(s, sep);
22616 if (p != NULL)
22617 {
22618 pat = vim_strnsave(s, (int)(p - s));
22619 if (pat != NULL)
22620 {
22621 s = p + 1;
22622 /* find end of substitution */
22623 p = vim_strchr(s, sep);
22624 if (p != NULL)
22625 {
22626 sub = vim_strnsave(s, (int)(p - s));
22627 str = vim_strnsave(*fnamep, *fnamelen);
22628 if (sub != NULL && str != NULL)
22629 {
22630 *usedlen = (int)(p + 1 - src);
22631 s = do_string_sub(str, pat, sub, flags);
22632 if (s != NULL)
22633 {
22634 *fnamep = s;
22635 *fnamelen = (int)STRLEN(s);
22636 vim_free(*bufp);
22637 *bufp = s;
22638 didit = TRUE;
22639 }
22640 }
22641 vim_free(sub);
22642 vim_free(str);
22643 }
22644 vim_free(pat);
22645 }
22646 }
22647 /* after using ":s", repeat all the modifiers */
22648 if (didit)
22649 goto repeat;
22650 }
22651 }
22652
22653 return valid;
22654}
22655
22656/*
22657 * Perform a substitution on "str" with pattern "pat" and substitute "sub".
22658 * "flags" can be "g" to do a global substitute.
22659 * Returns an allocated string, NULL for error.
22660 */
22661 char_u *
22662do_string_sub(str, pat, sub, flags)
22663 char_u *str;
22664 char_u *pat;
22665 char_u *sub;
22666 char_u *flags;
22667{
22668 int sublen;
22669 regmatch_T regmatch;
22670 int i;
22671 int do_all;
22672 char_u *tail;
22673 garray_T ga;
22674 char_u *ret;
22675 char_u *save_cpo;
22676
22677 /* Make 'cpoptions' empty, so that the 'l' flag doesn't work here */
22678 save_cpo = p_cpo;
Bram Moolenaar9c24ccc2008-07-14 21:05:15 +000022679 p_cpo = empty_option;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022680
22681 ga_init2(&ga, 1, 200);
22682
22683 do_all = (flags[0] == 'g');
22684
22685 regmatch.rm_ic = p_ic;
22686 regmatch.regprog = vim_regcomp(pat, RE_MAGIC + RE_STRING);
22687 if (regmatch.regprog != NULL)
22688 {
22689 tail = str;
22690 while (vim_regexec_nl(&regmatch, str, (colnr_T)(tail - str)))
22691 {
22692 /*
22693 * Get some space for a temporary buffer to do the substitution
22694 * into. It will contain:
22695 * - The text up to where the match is.
22696 * - The substituted text.
22697 * - The text after the match.
22698 */
22699 sublen = vim_regsub(&regmatch, sub, tail, FALSE, TRUE, FALSE);
22700 if (ga_grow(&ga, (int)(STRLEN(tail) + sublen -
22701 (regmatch.endp[0] - regmatch.startp[0]))) == FAIL)
22702 {
22703 ga_clear(&ga);
22704 break;
22705 }
22706
22707 /* copy the text up to where the match is */
22708 i = (int)(regmatch.startp[0] - tail);
22709 mch_memmove((char_u *)ga.ga_data + ga.ga_len, tail, (size_t)i);
22710 /* add the substituted text */
22711 (void)vim_regsub(&regmatch, sub, (char_u *)ga.ga_data
22712 + ga.ga_len + i, TRUE, TRUE, FALSE);
22713 ga.ga_len += i + sublen - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022714 /* avoid getting stuck on a match with an empty string */
22715 if (tail == regmatch.endp[0])
22716 {
22717 if (*tail == NUL)
22718 break;
22719 *((char_u *)ga.ga_data + ga.ga_len) = *tail++;
22720 ++ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022721 }
22722 else
22723 {
22724 tail = regmatch.endp[0];
22725 if (*tail == NUL)
22726 break;
22727 }
22728 if (!do_all)
22729 break;
22730 }
22731
22732 if (ga.ga_data != NULL)
22733 STRCPY((char *)ga.ga_data + ga.ga_len, tail);
22734
22735 vim_free(regmatch.regprog);
22736 }
22737
22738 ret = vim_strsave(ga.ga_data == NULL ? str : (char_u *)ga.ga_data);
22739 ga_clear(&ga);
Bram Moolenaar9c24ccc2008-07-14 21:05:15 +000022740 if (p_cpo == empty_option)
22741 p_cpo = save_cpo;
22742 else
22743 /* Darn, evaluating {sub} expression changed the value. */
22744 free_string_option(save_cpo);
Bram Moolenaar071d4272004-06-13 20:20:40 +000022745
22746 return ret;
22747}
22748
22749#endif /* defined(FEAT_MODIFY_FNAME) || defined(FEAT_EVAL) */