blob: 75c4099bf69aaf78958a0f4f8c9ea9259bd2957d [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 Moolenaar342337a2005-07-21 21:11:17 +000011845#if defined(FEAT_BEVAL) && defined(FEAT_GUI_W32)
11846 else if (STRICMP(name, "balloon_multiline") == 0)
11847 n = multiline_balloon_available();
11848#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011849#ifdef DYNAMIC_TCL
11850 else if (STRICMP(name, "tcl") == 0)
11851 n = tcl_enabled(FALSE);
11852#endif
11853#if defined(USE_ICONV) && defined(DYNAMIC_ICONV)
11854 else if (STRICMP(name, "iconv") == 0)
11855 n = iconv_enabled(FALSE);
11856#endif
Bram Moolenaar33570922005-01-25 22:26:29 +000011857#ifdef DYNAMIC_MZSCHEME
11858 else if (STRICMP(name, "mzscheme") == 0)
11859 n = mzscheme_enabled(FALSE);
11860#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011861#ifdef DYNAMIC_RUBY
11862 else if (STRICMP(name, "ruby") == 0)
11863 n = ruby_enabled(FALSE);
11864#endif
11865#ifdef DYNAMIC_PYTHON
11866 else if (STRICMP(name, "python") == 0)
11867 n = python_enabled(FALSE);
11868#endif
11869#ifdef DYNAMIC_PERL
11870 else if (STRICMP(name, "perl") == 0)
11871 n = perl_enabled(FALSE);
11872#endif
11873#ifdef FEAT_GUI
11874 else if (STRICMP(name, "gui_running") == 0)
11875 n = (gui.in_use || gui.starting);
11876# ifdef FEAT_GUI_W32
11877 else if (STRICMP(name, "gui_win32s") == 0)
11878 n = gui_is_win32s();
11879# endif
11880# ifdef FEAT_BROWSE
11881 else if (STRICMP(name, "browse") == 0)
11882 n = gui.in_use; /* gui_mch_browse() works when GUI is running */
11883# endif
11884#endif
11885#ifdef FEAT_SYN_HL
11886 else if (STRICMP(name, "syntax_items") == 0)
11887 n = syntax_present(curbuf);
11888#endif
11889#if defined(WIN3264)
11890 else if (STRICMP(name, "win95") == 0)
11891 n = mch_windows95();
11892#endif
Bram Moolenaar35a9aaa2004-10-24 19:23:07 +000011893#ifdef FEAT_NETBEANS_INTG
11894 else if (STRICMP(name, "netbeans_enabled") == 0)
11895 n = usingNetbeans;
11896#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011897 }
11898
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011899 rettv->vval.v_number = n;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011900}
11901
11902/*
Bram Moolenaare9a41262005-01-15 22:18:47 +000011903 * "has_key()" function
11904 */
11905 static void
11906f_has_key(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000011907 typval_T *argvars;
11908 typval_T *rettv;
Bram Moolenaare9a41262005-01-15 22:18:47 +000011909{
11910 rettv->vval.v_number = 0;
11911 if (argvars[0].v_type != VAR_DICT)
11912 {
11913 EMSG(_(e_dictreq));
11914 return;
11915 }
11916 if (argvars[0].vval.v_dict == NULL)
11917 return;
11918
11919 rettv->vval.v_number = dict_find(argvars[0].vval.v_dict,
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000011920 get_tv_string(&argvars[1]), -1) != NULL;
Bram Moolenaare9a41262005-01-15 22:18:47 +000011921}
11922
11923/*
Bram Moolenaard267b9c2007-04-26 15:06:45 +000011924 * "haslocaldir()" function
11925 */
11926/*ARGSUSED*/
11927 static void
11928f_haslocaldir(argvars, rettv)
11929 typval_T *argvars;
11930 typval_T *rettv;
11931{
11932 rettv->vval.v_number = (curwin->w_localdir != NULL);
11933}
11934
11935/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000011936 * "hasmapto()" function
11937 */
11938 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011939f_hasmapto(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000011940 typval_T *argvars;
11941 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011942{
11943 char_u *name;
11944 char_u *mode;
11945 char_u buf[NUMBUFLEN];
Bram Moolenaar2c932302006-03-18 21:42:09 +000011946 int abbr = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011947
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011948 name = get_tv_string(&argvars[0]);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000011949 if (argvars[1].v_type == VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000011950 mode = (char_u *)"nvo";
11951 else
Bram Moolenaar2c932302006-03-18 21:42:09 +000011952 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011953 mode = get_tv_string_buf(&argvars[1], buf);
Bram Moolenaar2c932302006-03-18 21:42:09 +000011954 if (argvars[2].v_type != VAR_UNKNOWN)
11955 abbr = get_tv_number(&argvars[2]);
11956 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000011957
Bram Moolenaar2c932302006-03-18 21:42:09 +000011958 if (map_to_exists(name, mode, abbr))
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011959 rettv->vval.v_number = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011960 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011961 rettv->vval.v_number = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011962}
11963
11964/*
11965 * "histadd()" function
11966 */
11967/*ARGSUSED*/
11968 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011969f_histadd(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000011970 typval_T *argvars;
11971 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011972{
11973#ifdef FEAT_CMDHIST
11974 int histype;
11975 char_u *str;
11976 char_u buf[NUMBUFLEN];
11977#endif
11978
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011979 rettv->vval.v_number = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011980 if (check_restricted() || check_secure())
11981 return;
11982#ifdef FEAT_CMDHIST
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011983 str = get_tv_string_chk(&argvars[0]); /* NULL on type error */
11984 histype = str != NULL ? get_histtype(str) : -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011985 if (histype >= 0)
11986 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011987 str = get_tv_string_buf(&argvars[1], buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011988 if (*str != NUL)
11989 {
11990 add_to_history(histype, str, FALSE, NUL);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011991 rettv->vval.v_number = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011992 return;
11993 }
11994 }
11995#endif
11996}
11997
11998/*
11999 * "histdel()" function
12000 */
12001/*ARGSUSED*/
12002 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012003f_histdel(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012004 typval_T *argvars;
12005 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012006{
12007#ifdef FEAT_CMDHIST
12008 int n;
12009 char_u buf[NUMBUFLEN];
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012010 char_u *str;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012011
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012012 str = get_tv_string_chk(&argvars[0]); /* NULL on type error */
12013 if (str == NULL)
12014 n = 0;
12015 else if (argvars[1].v_type == VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000012016 /* only one argument: clear entire history */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012017 n = clr_history(get_histtype(str));
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012018 else if (argvars[1].v_type == VAR_NUMBER)
Bram Moolenaar071d4272004-06-13 20:20:40 +000012019 /* index given: remove that entry */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012020 n = del_history_idx(get_histtype(str),
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012021 (int)get_tv_number(&argvars[1]));
Bram Moolenaar071d4272004-06-13 20:20:40 +000012022 else
12023 /* string given: remove all matching entries */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012024 n = del_history_entry(get_histtype(str),
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012025 get_tv_string_buf(&argvars[1], buf));
12026 rettv->vval.v_number = n;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012027#else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012028 rettv->vval.v_number = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012029#endif
12030}
12031
12032/*
12033 * "histget()" function
12034 */
12035/*ARGSUSED*/
12036 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012037f_histget(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012038 typval_T *argvars;
12039 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012040{
12041#ifdef FEAT_CMDHIST
12042 int type;
12043 int idx;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012044 char_u *str;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012045
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012046 str = get_tv_string_chk(&argvars[0]); /* NULL on type error */
12047 if (str == NULL)
12048 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012049 else
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012050 {
12051 type = get_histtype(str);
12052 if (argvars[1].v_type == VAR_UNKNOWN)
12053 idx = get_history_idx(type);
12054 else
12055 idx = (int)get_tv_number_chk(&argvars[1], NULL);
12056 /* -1 on type error */
12057 rettv->vval.v_string = vim_strsave(get_history_entry(type, idx));
12058 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000012059#else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012060 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012061#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012062 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012063}
12064
12065/*
12066 * "histnr()" function
12067 */
12068/*ARGSUSED*/
12069 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012070f_histnr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012071 typval_T *argvars;
12072 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012073{
12074 int i;
12075
12076#ifdef FEAT_CMDHIST
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012077 char_u *history = get_tv_string_chk(&argvars[0]);
12078
12079 i = history == NULL ? HIST_CMD - 1 : get_histtype(history);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012080 if (i >= HIST_CMD && i < HIST_COUNT)
12081 i = get_history_idx(i);
12082 else
12083#endif
12084 i = -1;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012085 rettv->vval.v_number = i;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012086}
12087
12088/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000012089 * "highlightID(name)" function
12090 */
12091 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012092f_hlID(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012093 typval_T *argvars;
12094 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012095{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012096 rettv->vval.v_number = syn_name2id(get_tv_string(&argvars[0]));
Bram Moolenaar071d4272004-06-13 20:20:40 +000012097}
12098
12099/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000012100 * "highlight_exists()" function
12101 */
12102 static void
12103f_hlexists(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012104 typval_T *argvars;
12105 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000012106{
12107 rettv->vval.v_number = highlight_exists(get_tv_string(&argvars[0]));
12108}
12109
12110/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000012111 * "hostname()" function
12112 */
12113/*ARGSUSED*/
12114 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012115f_hostname(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012116 typval_T *argvars;
12117 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012118{
12119 char_u hostname[256];
12120
12121 mch_get_host_name(hostname, 256);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012122 rettv->v_type = VAR_STRING;
12123 rettv->vval.v_string = vim_strsave(hostname);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012124}
12125
12126/*
12127 * iconv() function
12128 */
12129/*ARGSUSED*/
12130 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012131f_iconv(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012132 typval_T *argvars;
12133 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012134{
12135#ifdef FEAT_MBYTE
12136 char_u buf1[NUMBUFLEN];
12137 char_u buf2[NUMBUFLEN];
12138 char_u *from, *to, *str;
12139 vimconv_T vimconv;
12140#endif
12141
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012142 rettv->v_type = VAR_STRING;
12143 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012144
12145#ifdef FEAT_MBYTE
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012146 str = get_tv_string(&argvars[0]);
12147 from = enc_canonize(enc_skip(get_tv_string_buf(&argvars[1], buf1)));
12148 to = enc_canonize(enc_skip(get_tv_string_buf(&argvars[2], buf2)));
Bram Moolenaar071d4272004-06-13 20:20:40 +000012149 vimconv.vc_type = CONV_NONE;
12150 convert_setup(&vimconv, from, to);
12151
12152 /* If the encodings are equal, no conversion needed. */
12153 if (vimconv.vc_type == CONV_NONE)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012154 rettv->vval.v_string = vim_strsave(str);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012155 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012156 rettv->vval.v_string = string_convert(&vimconv, str, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012157
12158 convert_setup(&vimconv, NULL, NULL);
12159 vim_free(from);
12160 vim_free(to);
12161#endif
12162}
12163
12164/*
12165 * "indent()" function
12166 */
12167 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012168f_indent(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012169 typval_T *argvars;
12170 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012171{
12172 linenr_T lnum;
12173
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012174 lnum = get_tv_lnum(argvars);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012175 if (lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012176 rettv->vval.v_number = get_indent_lnum(lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012177 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012178 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012179}
12180
Bram Moolenaar8a283e52005-01-06 23:28:25 +000012181/*
12182 * "index()" function
12183 */
12184 static void
12185f_index(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012186 typval_T *argvars;
12187 typval_T *rettv;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000012188{
Bram Moolenaar33570922005-01-25 22:26:29 +000012189 list_T *l;
12190 listitem_T *item;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000012191 long idx = 0;
12192 int ic = FALSE;
12193
12194 rettv->vval.v_number = -1;
12195 if (argvars[0].v_type != VAR_LIST)
12196 {
12197 EMSG(_(e_listreq));
12198 return;
12199 }
12200 l = argvars[0].vval.v_list;
12201 if (l != NULL)
12202 {
Bram Moolenaar758711c2005-02-02 23:11:38 +000012203 item = l->lv_first;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000012204 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000012205 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012206 int error = FALSE;
12207
Bram Moolenaar758711c2005-02-02 23:11:38 +000012208 /* Start at specified item. Use the cached index that list_find()
12209 * sets, so that a negative number also works. */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012210 item = list_find(l, get_tv_number_chk(&argvars[2], &error));
Bram Moolenaar758711c2005-02-02 23:11:38 +000012211 idx = l->lv_idx;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000012212 if (argvars[3].v_type != VAR_UNKNOWN)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012213 ic = get_tv_number_chk(&argvars[3], &error);
12214 if (error)
12215 item = NULL;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000012216 }
Bram Moolenaar8a283e52005-01-06 23:28:25 +000012217
Bram Moolenaar758711c2005-02-02 23:11:38 +000012218 for ( ; item != NULL; item = item->li_next, ++idx)
12219 if (tv_equal(&item->li_tv, &argvars[1], ic))
Bram Moolenaar8a283e52005-01-06 23:28:25 +000012220 {
12221 rettv->vval.v_number = idx;
12222 break;
12223 }
12224 }
12225}
12226
Bram Moolenaar071d4272004-06-13 20:20:40 +000012227static int inputsecret_flag = 0;
12228
Bram Moolenaarecbaf552006-07-13 06:31:00 +000012229static void get_user_input __ARGS((typval_T *argvars, typval_T *rettv, int inputdialog));
12230
Bram Moolenaar071d4272004-06-13 20:20:40 +000012231/*
Bram Moolenaarecbaf552006-07-13 06:31:00 +000012232 * This function is used by f_input() and f_inputdialog() functions. The third
12233 * argument to f_input() specifies the type of completion to use at the
12234 * prompt. The third argument to f_inputdialog() specifies the value to return
12235 * when the user cancels the prompt.
Bram Moolenaar071d4272004-06-13 20:20:40 +000012236 */
12237 static void
Bram Moolenaarecbaf552006-07-13 06:31:00 +000012238get_user_input(argvars, rettv, inputdialog)
Bram Moolenaar33570922005-01-25 22:26:29 +000012239 typval_T *argvars;
12240 typval_T *rettv;
Bram Moolenaarecbaf552006-07-13 06:31:00 +000012241 int inputdialog;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012242{
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012243 char_u *prompt = get_tv_string_chk(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012244 char_u *p = NULL;
12245 int c;
12246 char_u buf[NUMBUFLEN];
12247 int cmd_silent_save = cmd_silent;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012248 char_u *defstr = (char_u *)"";
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000012249 int xp_type = EXPAND_NOTHING;
12250 char_u *xp_arg = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012251
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012252 rettv->v_type = VAR_STRING;
Bram Moolenaarce85c562007-09-16 12:21:16 +000012253 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012254
12255#ifdef NO_CONSOLE_INPUT
12256 /* While starting up, there is no place to enter text. */
12257 if (no_console_input())
Bram Moolenaar071d4272004-06-13 20:20:40 +000012258 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012259#endif
12260
12261 cmd_silent = FALSE; /* Want to see the prompt. */
12262 if (prompt != NULL)
12263 {
12264 /* Only the part of the message after the last NL is considered as
12265 * prompt for the command line */
12266 p = vim_strrchr(prompt, '\n');
12267 if (p == NULL)
12268 p = prompt;
12269 else
12270 {
12271 ++p;
12272 c = *p;
12273 *p = NUL;
12274 msg_start();
12275 msg_clr_eos();
12276 msg_puts_attr(prompt, echo_attr);
12277 msg_didout = FALSE;
12278 msg_starthere();
12279 *p = c;
12280 }
12281 cmdline_row = msg_row;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012282
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012283 if (argvars[1].v_type != VAR_UNKNOWN)
12284 {
12285 defstr = get_tv_string_buf_chk(&argvars[1], buf);
12286 if (defstr != NULL)
12287 stuffReadbuffSpec(defstr);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012288
Bram Moolenaarecbaf552006-07-13 06:31:00 +000012289 if (!inputdialog && argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar4463f292005-09-25 22:20:24 +000012290 {
12291 char_u *xp_name;
Bram Moolenaar86c9ee22006-05-13 11:33:27 +000012292 int xp_namelen;
Bram Moolenaar4463f292005-09-25 22:20:24 +000012293 long argt;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000012294
Bram Moolenaar4463f292005-09-25 22:20:24 +000012295 rettv->vval.v_string = NULL;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000012296
Bram Moolenaar4463f292005-09-25 22:20:24 +000012297 xp_name = get_tv_string_buf_chk(&argvars[2], buf);
12298 if (xp_name == NULL)
12299 return;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000012300
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000012301 xp_namelen = (int)STRLEN(xp_name);
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000012302
Bram Moolenaar4463f292005-09-25 22:20:24 +000012303 if (parse_compl_arg(xp_name, xp_namelen, &xp_type, &argt,
12304 &xp_arg) == FAIL)
12305 return;
12306 }
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000012307 }
12308
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012309 if (defstr != NULL)
12310 rettv->vval.v_string =
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000012311 getcmdline_prompt(inputsecret_flag ? NUL : '@', p, echo_attr,
12312 xp_type, xp_arg);
12313
12314 vim_free(xp_arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012315
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012316 /* since the user typed this, no need to wait for return */
12317 need_wait_return = FALSE;
12318 msg_didout = FALSE;
12319 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000012320 cmd_silent = cmd_silent_save;
12321}
12322
12323/*
Bram Moolenaarecbaf552006-07-13 06:31:00 +000012324 * "input()" function
12325 * Also handles inputsecret() when inputsecret is set.
12326 */
12327 static void
12328f_input(argvars, rettv)
12329 typval_T *argvars;
12330 typval_T *rettv;
12331{
12332 get_user_input(argvars, rettv, FALSE);
12333}
12334
12335/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000012336 * "inputdialog()" function
12337 */
12338 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012339f_inputdialog(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012340 typval_T *argvars;
12341 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012342{
12343#if defined(FEAT_GUI_TEXTDIALOG)
12344 /* Use a GUI dialog if the GUI is running and 'c' is not in 'guioptions' */
12345 if (gui.in_use && vim_strchr(p_go, GO_CONDIALOG) == NULL)
12346 {
12347 char_u *message;
12348 char_u buf[NUMBUFLEN];
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012349 char_u *defstr = (char_u *)"";
Bram Moolenaar071d4272004-06-13 20:20:40 +000012350
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012351 message = get_tv_string_chk(&argvars[0]);
12352 if (argvars[1].v_type != VAR_UNKNOWN
Bram Moolenaarc05f93f2006-05-02 22:09:31 +000012353 && (defstr = get_tv_string_buf_chk(&argvars[1], buf)) != NULL)
Bram Moolenaarce0842a2005-07-18 21:58:11 +000012354 vim_strncpy(IObuff, defstr, IOSIZE - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012355 else
12356 IObuff[0] = NUL;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012357 if (message != NULL && defstr != NULL
12358 && do_dialog(VIM_QUESTION, NULL, message,
12359 (char_u *)_("&OK\n&Cancel"), 1, IObuff) == 1)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012360 rettv->vval.v_string = vim_strsave(IObuff);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012361 else
12362 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012363 if (message != NULL && defstr != NULL
12364 && argvars[1].v_type != VAR_UNKNOWN
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012365 && argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012366 rettv->vval.v_string = vim_strsave(
12367 get_tv_string_buf(&argvars[2], buf));
Bram Moolenaar071d4272004-06-13 20:20:40 +000012368 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012369 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012370 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012371 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012372 }
12373 else
12374#endif
Bram Moolenaarecbaf552006-07-13 06:31:00 +000012375 get_user_input(argvars, rettv, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012376}
12377
Bram Moolenaar6efa2b32005-09-10 19:26:26 +000012378/*
12379 * "inputlist()" function
12380 */
12381 static void
12382f_inputlist(argvars, rettv)
12383 typval_T *argvars;
12384 typval_T *rettv;
12385{
12386 listitem_T *li;
12387 int selected;
12388 int mouse_used;
12389
12390 rettv->vval.v_number = 0;
12391#ifdef NO_CONSOLE_INPUT
12392 /* While starting up, there is no place to enter text. */
12393 if (no_console_input())
12394 return;
12395#endif
12396 if (argvars[0].v_type != VAR_LIST || argvars[0].vval.v_list == NULL)
12397 {
12398 EMSG2(_(e_listarg), "inputlist()");
12399 return;
12400 }
12401
12402 msg_start();
Bram Moolenaar412f7442006-07-23 19:51:57 +000012403 msg_row = Rows - 1; /* for when 'cmdheight' > 1 */
Bram Moolenaar6efa2b32005-09-10 19:26:26 +000012404 lines_left = Rows; /* avoid more prompt */
12405 msg_scroll = TRUE;
12406 msg_clr_eos();
12407
12408 for (li = argvars[0].vval.v_list->lv_first; li != NULL; li = li->li_next)
12409 {
12410 msg_puts(get_tv_string(&li->li_tv));
12411 msg_putchar('\n');
12412 }
12413
12414 /* Ask for choice. */
12415 selected = prompt_for_number(&mouse_used);
12416 if (mouse_used)
12417 selected -= lines_left;
12418
12419 rettv->vval.v_number = selected;
12420}
12421
12422
Bram Moolenaar071d4272004-06-13 20:20:40 +000012423static garray_T ga_userinput = {0, 0, sizeof(tasave_T), 4, NULL};
12424
12425/*
12426 * "inputrestore()" function
12427 */
12428/*ARGSUSED*/
12429 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012430f_inputrestore(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012431 typval_T *argvars;
12432 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012433{
12434 if (ga_userinput.ga_len > 0)
12435 {
12436 --ga_userinput.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012437 restore_typeahead((tasave_T *)(ga_userinput.ga_data)
12438 + ga_userinput.ga_len);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012439 rettv->vval.v_number = 0; /* OK */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012440 }
12441 else if (p_verbose > 1)
12442 {
Bram Moolenaar54ee7752005-05-31 22:22:17 +000012443 verb_msg((char_u *)_("called inputrestore() more often than inputsave()"));
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012444 rettv->vval.v_number = 1; /* Failed */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012445 }
12446}
12447
12448/*
12449 * "inputsave()" function
12450 */
12451/*ARGSUSED*/
12452 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012453f_inputsave(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012454 typval_T *argvars;
12455 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012456{
Bram Moolenaar8c8de832008-06-24 22:58:06 +000012457 /* Add an entry to the stack of typeahead storage. */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012458 if (ga_grow(&ga_userinput, 1) == OK)
12459 {
12460 save_typeahead((tasave_T *)(ga_userinput.ga_data)
12461 + ga_userinput.ga_len);
12462 ++ga_userinput.ga_len;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012463 rettv->vval.v_number = 0; /* OK */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012464 }
12465 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012466 rettv->vval.v_number = 1; /* Failed */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012467}
12468
12469/*
12470 * "inputsecret()" function
12471 */
12472 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012473f_inputsecret(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012474 typval_T *argvars;
12475 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012476{
12477 ++cmdline_star;
12478 ++inputsecret_flag;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012479 f_input(argvars, rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012480 --cmdline_star;
12481 --inputsecret_flag;
12482}
12483
12484/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012485 * "insert()" function
12486 */
12487 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012488f_insert(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012489 typval_T *argvars;
12490 typval_T *rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012491{
12492 long before = 0;
Bram Moolenaar33570922005-01-25 22:26:29 +000012493 listitem_T *item;
12494 list_T *l;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012495 int error = FALSE;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012496
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012497 rettv->vval.v_number = 0;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012498 if (argvars[0].v_type != VAR_LIST)
Bram Moolenaar0d660222005-01-07 21:51:51 +000012499 EMSG2(_(e_listarg), "insert()");
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012500 else if ((l = argvars[0].vval.v_list) != NULL
12501 && !tv_check_lock(l->lv_lock, (char_u *)"insert()"))
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012502 {
12503 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012504 before = get_tv_number_chk(&argvars[2], &error);
12505 if (error)
12506 return; /* type error; errmsg already given */
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012507
Bram Moolenaar758711c2005-02-02 23:11:38 +000012508 if (before == l->lv_len)
12509 item = NULL;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012510 else
12511 {
Bram Moolenaar758711c2005-02-02 23:11:38 +000012512 item = list_find(l, before);
12513 if (item == NULL)
12514 {
12515 EMSGN(_(e_listidx), before);
12516 l = NULL;
12517 }
12518 }
12519 if (l != NULL)
12520 {
Bram Moolenaar8a283e52005-01-06 23:28:25 +000012521 list_insert_tv(l, &argvars[1], item);
Bram Moolenaar8a283e52005-01-06 23:28:25 +000012522 copy_tv(&argvars[0], rettv);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012523 }
12524 }
12525}
12526
12527/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000012528 * "isdirectory()" function
12529 */
12530 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012531f_isdirectory(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012532 typval_T *argvars;
12533 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012534{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012535 rettv->vval.v_number = mch_isdir(get_tv_string(&argvars[0]));
Bram Moolenaar071d4272004-06-13 20:20:40 +000012536}
12537
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012538/*
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012539 * "islocked()" function
12540 */
12541 static void
12542f_islocked(argvars, rettv)
12543 typval_T *argvars;
12544 typval_T *rettv;
12545{
12546 lval_T lv;
12547 char_u *end;
12548 dictitem_T *di;
12549
12550 rettv->vval.v_number = -1;
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000012551 end = get_lval(get_tv_string(&argvars[0]), NULL, &lv, FALSE, FALSE, FALSE,
12552 FNE_CHECK_START);
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012553 if (end != NULL && lv.ll_name != NULL)
12554 {
12555 if (*end != NUL)
12556 EMSG(_(e_trailing));
12557 else
12558 {
12559 if (lv.ll_tv == NULL)
12560 {
12561 if (check_changedtick(lv.ll_name))
12562 rettv->vval.v_number = 1; /* always locked */
12563 else
12564 {
12565 di = find_var(lv.ll_name, NULL);
12566 if (di != NULL)
12567 {
12568 /* Consider a variable locked when:
12569 * 1. the variable itself is locked
12570 * 2. the value of the variable is locked.
12571 * 3. the List or Dict value is locked.
12572 */
12573 rettv->vval.v_number = ((di->di_flags & DI_FLAGS_LOCK)
12574 || tv_islocked(&di->di_tv));
12575 }
12576 }
12577 }
12578 else if (lv.ll_range)
Bram Moolenaar910f66f2006-04-05 20:41:53 +000012579 EMSG(_("E786: Range not allowed"));
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012580 else if (lv.ll_newkey != NULL)
12581 EMSG2(_(e_dictkey), lv.ll_newkey);
12582 else if (lv.ll_list != NULL)
12583 /* List item. */
12584 rettv->vval.v_number = tv_islocked(&lv.ll_li->li_tv);
12585 else
12586 /* Dictionary item. */
12587 rettv->vval.v_number = tv_islocked(&lv.ll_di->di_tv);
12588 }
12589 }
12590
12591 clear_lval(&lv);
12592}
12593
Bram Moolenaar33570922005-01-25 22:26:29 +000012594static void dict_list __ARGS((typval_T *argvars, typval_T *rettv, int what));
Bram Moolenaar8c711452005-01-14 21:53:12 +000012595
12596/*
12597 * Turn a dict into a list:
12598 * "what" == 0: list of keys
12599 * "what" == 1: list of values
12600 * "what" == 2: list of items
12601 */
12602 static void
12603dict_list(argvars, rettv, what)
Bram Moolenaar33570922005-01-25 22:26:29 +000012604 typval_T *argvars;
12605 typval_T *rettv;
Bram Moolenaar8c711452005-01-14 21:53:12 +000012606 int what;
12607{
Bram Moolenaar33570922005-01-25 22:26:29 +000012608 list_T *l2;
12609 dictitem_T *di;
12610 hashitem_T *hi;
12611 listitem_T *li;
12612 listitem_T *li2;
12613 dict_T *d;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012614 int todo;
Bram Moolenaar8c711452005-01-14 21:53:12 +000012615
12616 rettv->vval.v_number = 0;
12617 if (argvars[0].v_type != VAR_DICT)
12618 {
12619 EMSG(_(e_dictreq));
12620 return;
12621 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012622 if ((d = argvars[0].vval.v_dict) == NULL)
Bram Moolenaar8c711452005-01-14 21:53:12 +000012623 return;
12624
Bram Moolenaareddf53b2006-02-27 00:11:10 +000012625 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaar8c711452005-01-14 21:53:12 +000012626 return;
Bram Moolenaar8c711452005-01-14 21:53:12 +000012627
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000012628 todo = (int)d->dv_hashtab.ht_used;
Bram Moolenaar33570922005-01-25 22:26:29 +000012629 for (hi = d->dv_hashtab.ht_array; todo > 0; ++hi)
Bram Moolenaar8c711452005-01-14 21:53:12 +000012630 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012631 if (!HASHITEM_EMPTY(hi))
Bram Moolenaar8c711452005-01-14 21:53:12 +000012632 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012633 --todo;
12634 di = HI2DI(hi);
Bram Moolenaar8c711452005-01-14 21:53:12 +000012635
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012636 li = listitem_alloc();
12637 if (li == NULL)
Bram Moolenaar8c711452005-01-14 21:53:12 +000012638 break;
Bram Moolenaareddf53b2006-02-27 00:11:10 +000012639 list_append(rettv->vval.v_list, li);
Bram Moolenaar8c711452005-01-14 21:53:12 +000012640
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012641 if (what == 0)
12642 {
12643 /* keys() */
12644 li->li_tv.v_type = VAR_STRING;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012645 li->li_tv.v_lock = 0;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012646 li->li_tv.vval.v_string = vim_strsave(di->di_key);
12647 }
12648 else if (what == 1)
12649 {
12650 /* values() */
12651 copy_tv(&di->di_tv, &li->li_tv);
12652 }
12653 else
12654 {
12655 /* items() */
12656 l2 = list_alloc();
12657 li->li_tv.v_type = VAR_LIST;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012658 li->li_tv.v_lock = 0;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012659 li->li_tv.vval.v_list = l2;
12660 if (l2 == NULL)
12661 break;
12662 ++l2->lv_refcount;
12663
12664 li2 = listitem_alloc();
12665 if (li2 == NULL)
12666 break;
12667 list_append(l2, li2);
12668 li2->li_tv.v_type = VAR_STRING;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012669 li2->li_tv.v_lock = 0;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012670 li2->li_tv.vval.v_string = vim_strsave(di->di_key);
12671
12672 li2 = listitem_alloc();
12673 if (li2 == NULL)
12674 break;
12675 list_append(l2, li2);
12676 copy_tv(&di->di_tv, &li2->li_tv);
12677 }
Bram Moolenaar8c711452005-01-14 21:53:12 +000012678 }
12679 }
12680}
12681
12682/*
12683 * "items(dict)" function
12684 */
12685 static void
12686f_items(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012687 typval_T *argvars;
12688 typval_T *rettv;
Bram Moolenaar8c711452005-01-14 21:53:12 +000012689{
12690 dict_list(argvars, rettv, 2);
12691}
12692
Bram Moolenaar071d4272004-06-13 20:20:40 +000012693/*
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000012694 * "join()" function
12695 */
12696 static void
12697f_join(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012698 typval_T *argvars;
12699 typval_T *rettv;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000012700{
12701 garray_T ga;
12702 char_u *sep;
12703
12704 rettv->vval.v_number = 0;
12705 if (argvars[0].v_type != VAR_LIST)
12706 {
12707 EMSG(_(e_listreq));
12708 return;
12709 }
12710 if (argvars[0].vval.v_list == NULL)
12711 return;
12712 if (argvars[1].v_type == VAR_UNKNOWN)
12713 sep = (char_u *)" ";
12714 else
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012715 sep = get_tv_string_chk(&argvars[1]);
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000012716
12717 rettv->v_type = VAR_STRING;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012718
12719 if (sep != NULL)
12720 {
12721 ga_init2(&ga, (int)sizeof(char), 80);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +000012722 list_join(&ga, argvars[0].vval.v_list, sep, TRUE, 0);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012723 ga_append(&ga, NUL);
12724 rettv->vval.v_string = (char_u *)ga.ga_data;
12725 }
12726 else
12727 rettv->vval.v_string = NULL;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000012728}
12729
12730/*
Bram Moolenaar8c711452005-01-14 21:53:12 +000012731 * "keys()" function
12732 */
12733 static void
12734f_keys(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012735 typval_T *argvars;
12736 typval_T *rettv;
Bram Moolenaar8c711452005-01-14 21:53:12 +000012737{
12738 dict_list(argvars, rettv, 0);
12739}
12740
12741/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000012742 * "last_buffer_nr()" function.
12743 */
12744/*ARGSUSED*/
12745 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012746f_last_buffer_nr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012747 typval_T *argvars;
12748 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012749{
12750 int n = 0;
12751 buf_T *buf;
12752
12753 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
12754 if (n < buf->b_fnum)
12755 n = buf->b_fnum;
12756
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012757 rettv->vval.v_number = n;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012758}
12759
12760/*
12761 * "len()" function
12762 */
12763 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012764f_len(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012765 typval_T *argvars;
12766 typval_T *rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012767{
12768 switch (argvars[0].v_type)
12769 {
12770 case VAR_STRING:
12771 case VAR_NUMBER:
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012772 rettv->vval.v_number = (varnumber_T)STRLEN(
12773 get_tv_string(&argvars[0]));
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012774 break;
12775 case VAR_LIST:
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012776 rettv->vval.v_number = list_len(argvars[0].vval.v_list);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012777 break;
Bram Moolenaare9a41262005-01-15 22:18:47 +000012778 case VAR_DICT:
12779 rettv->vval.v_number = dict_len(argvars[0].vval.v_dict);
12780 break;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012781 default:
Bram Moolenaare49b69a2005-01-08 16:11:57 +000012782 EMSG(_("E701: Invalid type for len()"));
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012783 break;
12784 }
12785}
12786
Bram Moolenaar33570922005-01-25 22:26:29 +000012787static void libcall_common __ARGS((typval_T *argvars, typval_T *rettv, int type));
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012788
12789 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012790libcall_common(argvars, rettv, type)
Bram Moolenaar33570922005-01-25 22:26:29 +000012791 typval_T *argvars;
12792 typval_T *rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012793 int type;
12794{
12795#ifdef FEAT_LIBCALL
12796 char_u *string_in;
12797 char_u **string_result;
12798 int nr_result;
12799#endif
12800
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012801 rettv->v_type = type;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012802 if (type == VAR_NUMBER)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012803 rettv->vval.v_number = 0;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012804 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012805 rettv->vval.v_string = NULL;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012806
12807 if (check_restricted() || check_secure())
12808 return;
12809
12810#ifdef FEAT_LIBCALL
12811 /* The first two args must be strings, otherwise its meaningless */
12812 if (argvars[0].v_type == VAR_STRING && argvars[1].v_type == VAR_STRING)
12813 {
Bram Moolenaar758711c2005-02-02 23:11:38 +000012814 string_in = NULL;
12815 if (argvars[2].v_type == VAR_STRING)
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012816 string_in = argvars[2].vval.v_string;
12817 if (type == VAR_NUMBER)
12818 string_result = NULL;
12819 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012820 string_result = &rettv->vval.v_string;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012821 if (mch_libcall(argvars[0].vval.v_string,
12822 argvars[1].vval.v_string,
12823 string_in,
12824 argvars[2].vval.v_number,
12825 string_result,
12826 &nr_result) == OK
12827 && type == VAR_NUMBER)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012828 rettv->vval.v_number = nr_result;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012829 }
12830#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000012831}
12832
12833/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000012834 * "libcall()" function
12835 */
12836 static void
12837f_libcall(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012838 typval_T *argvars;
12839 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000012840{
12841 libcall_common(argvars, rettv, VAR_STRING);
12842}
12843
12844/*
12845 * "libcallnr()" function
12846 */
12847 static void
12848f_libcallnr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012849 typval_T *argvars;
12850 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000012851{
12852 libcall_common(argvars, rettv, VAR_NUMBER);
12853}
12854
12855/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000012856 * "line(string)" function
12857 */
12858 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012859f_line(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012860 typval_T *argvars;
12861 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012862{
12863 linenr_T lnum = 0;
12864 pos_T *fp;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000012865 int fnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012866
Bram Moolenaar0e34f622006-03-03 23:00:03 +000012867 fp = var2fpos(&argvars[0], TRUE, &fnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012868 if (fp != NULL)
12869 lnum = fp->lnum;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012870 rettv->vval.v_number = lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012871}
12872
12873/*
12874 * "line2byte(lnum)" function
12875 */
12876/*ARGSUSED*/
12877 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012878f_line2byte(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012879 typval_T *argvars;
12880 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012881{
12882#ifndef FEAT_BYTEOFF
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012883 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012884#else
12885 linenr_T lnum;
12886
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012887 lnum = get_tv_lnum(argvars);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012888 if (lnum < 1 || lnum > curbuf->b_ml.ml_line_count + 1)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012889 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012890 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012891 rettv->vval.v_number = ml_find_line_or_offset(curbuf, lnum, NULL);
12892 if (rettv->vval.v_number >= 0)
12893 ++rettv->vval.v_number;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012894#endif
12895}
12896
12897/*
12898 * "lispindent(lnum)" function
12899 */
12900 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012901f_lispindent(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012902 typval_T *argvars;
12903 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012904{
12905#ifdef FEAT_LISP
12906 pos_T pos;
12907 linenr_T lnum;
12908
12909 pos = curwin->w_cursor;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012910 lnum = get_tv_lnum(argvars);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012911 if (lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count)
12912 {
12913 curwin->w_cursor.lnum = lnum;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012914 rettv->vval.v_number = get_lisp_indent();
Bram Moolenaar071d4272004-06-13 20:20:40 +000012915 curwin->w_cursor = pos;
12916 }
12917 else
12918#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012919 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012920}
12921
12922/*
12923 * "localtime()" function
12924 */
12925/*ARGSUSED*/
12926 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012927f_localtime(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012928 typval_T *argvars;
12929 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012930{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012931 rettv->vval.v_number = (varnumber_T)time(NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012932}
12933
Bram Moolenaar33570922005-01-25 22:26:29 +000012934static void get_maparg __ARGS((typval_T *argvars, typval_T *rettv, int exact));
Bram Moolenaar071d4272004-06-13 20:20:40 +000012935
12936 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012937get_maparg(argvars, rettv, exact)
Bram Moolenaar33570922005-01-25 22:26:29 +000012938 typval_T *argvars;
12939 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012940 int exact;
12941{
12942 char_u *keys;
12943 char_u *which;
12944 char_u buf[NUMBUFLEN];
12945 char_u *keys_buf = NULL;
12946 char_u *rhs;
12947 int mode;
12948 garray_T ga;
Bram Moolenaar2c932302006-03-18 21:42:09 +000012949 int abbr = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012950
12951 /* return empty string for failure */
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012952 rettv->v_type = VAR_STRING;
12953 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012954
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012955 keys = get_tv_string(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012956 if (*keys == NUL)
12957 return;
12958
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012959 if (argvars[1].v_type != VAR_UNKNOWN)
Bram Moolenaar2c932302006-03-18 21:42:09 +000012960 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012961 which = get_tv_string_buf_chk(&argvars[1], buf);
Bram Moolenaar2c932302006-03-18 21:42:09 +000012962 if (argvars[2].v_type != VAR_UNKNOWN)
12963 abbr = get_tv_number(&argvars[2]);
12964 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000012965 else
12966 which = (char_u *)"";
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012967 if (which == NULL)
12968 return;
12969
Bram Moolenaar071d4272004-06-13 20:20:40 +000012970 mode = get_map_mode(&which, 0);
12971
Bram Moolenaar3fb9eda2006-05-03 21:29:58 +000012972 keys = replace_termcodes(keys, &keys_buf, TRUE, TRUE, FALSE);
Bram Moolenaar2c932302006-03-18 21:42:09 +000012973 rhs = check_map(keys, mode, exact, FALSE, abbr);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012974 vim_free(keys_buf);
12975 if (rhs != NULL)
12976 {
12977 ga_init(&ga);
12978 ga.ga_itemsize = 1;
12979 ga.ga_growsize = 40;
12980
12981 while (*rhs != NUL)
12982 ga_concat(&ga, str2special(&rhs, FALSE));
12983
12984 ga_append(&ga, NUL);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012985 rettv->vval.v_string = (char_u *)ga.ga_data;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012986 }
12987}
12988
Bram Moolenaar8c8de832008-06-24 22:58:06 +000012989#ifdef FEAT_FLOAT
12990/*
12991 * "log10()" function
12992 */
12993 static void
12994f_log10(argvars, rettv)
12995 typval_T *argvars;
12996 typval_T *rettv;
12997{
12998 float_T f;
12999
13000 rettv->v_type = VAR_FLOAT;
13001 if (get_float_arg(argvars, &f) == OK)
13002 rettv->vval.v_float = log10(f);
13003 else
13004 rettv->vval.v_float = 0.0;
13005}
13006#endif
13007
Bram Moolenaar071d4272004-06-13 20:20:40 +000013008/*
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013009 * "map()" function
13010 */
13011 static void
13012f_map(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013013 typval_T *argvars;
13014 typval_T *rettv;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013015{
13016 filter_map(argvars, rettv, TRUE);
13017}
13018
13019/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000013020 * "maparg()" function
Bram Moolenaar071d4272004-06-13 20:20:40 +000013021 */
13022 static void
Bram Moolenaar0d660222005-01-07 21:51:51 +000013023f_maparg(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013024 typval_T *argvars;
13025 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013026{
Bram Moolenaar0d660222005-01-07 21:51:51 +000013027 get_maparg(argvars, rettv, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000013028}
13029
13030/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000013031 * "mapcheck()" function
Bram Moolenaar071d4272004-06-13 20:20:40 +000013032 */
13033 static void
Bram Moolenaar0d660222005-01-07 21:51:51 +000013034f_mapcheck(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013035 typval_T *argvars;
13036 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013037{
Bram Moolenaar0d660222005-01-07 21:51:51 +000013038 get_maparg(argvars, rettv, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000013039}
13040
Bram Moolenaar33570922005-01-25 22:26:29 +000013041static void find_some_match __ARGS((typval_T *argvars, typval_T *rettv, int start));
Bram Moolenaar071d4272004-06-13 20:20:40 +000013042
13043 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013044find_some_match(argvars, rettv, type)
Bram Moolenaar33570922005-01-25 22:26:29 +000013045 typval_T *argvars;
13046 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013047 int type;
13048{
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013049 char_u *str = NULL;
13050 char_u *expr = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013051 char_u *pat;
13052 regmatch_T regmatch;
13053 char_u patbuf[NUMBUFLEN];
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013054 char_u strbuf[NUMBUFLEN];
Bram Moolenaar071d4272004-06-13 20:20:40 +000013055 char_u *save_cpo;
13056 long start = 0;
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013057 long nth = 1;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000013058 colnr_T startcol = 0;
Bram Moolenaar81bf7082005-02-12 14:31:42 +000013059 int match = 0;
Bram Moolenaar33570922005-01-25 22:26:29 +000013060 list_T *l = NULL;
13061 listitem_T *li = NULL;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013062 long idx = 0;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013063 char_u *tofree = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013064
13065 /* Make 'cpoptions' empty, the 'l' flag should not be used here. */
13066 save_cpo = p_cpo;
13067 p_cpo = (char_u *)"";
13068
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013069 rettv->vval.v_number = -1;
13070 if (type == 3)
13071 {
13072 /* return empty list when there are no matches */
Bram Moolenaareddf53b2006-02-27 00:11:10 +000013073 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013074 goto theend;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013075 }
13076 else if (type == 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +000013077 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013078 rettv->v_type = VAR_STRING;
13079 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013080 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000013081
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013082 if (argvars[0].v_type == VAR_LIST)
13083 {
13084 if ((l = argvars[0].vval.v_list) == NULL)
13085 goto theend;
13086 li = l->lv_first;
13087 }
13088 else
13089 expr = str = get_tv_string(&argvars[0]);
13090
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013091 pat = get_tv_string_buf_chk(&argvars[1], patbuf);
13092 if (pat == NULL)
13093 goto theend;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013094
Bram Moolenaar49cd9572005-01-03 21:06:01 +000013095 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000013096 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013097 int error = FALSE;
13098
13099 start = get_tv_number_chk(&argvars[2], &error);
13100 if (error)
13101 goto theend;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013102 if (l != NULL)
13103 {
13104 li = list_find(l, start);
13105 if (li == NULL)
13106 goto theend;
Bram Moolenaar758711c2005-02-02 23:11:38 +000013107 idx = l->lv_idx; /* use the cached index */
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013108 }
13109 else
13110 {
13111 if (start < 0)
13112 start = 0;
13113 if (start > (long)STRLEN(str))
13114 goto theend;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000013115 /* When "count" argument is there ignore matches before "start",
13116 * otherwise skip part of the string. Differs when pattern is "^"
13117 * or "\<". */
13118 if (argvars[3].v_type != VAR_UNKNOWN)
13119 startcol = start;
13120 else
13121 str += start;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013122 }
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013123
Bram Moolenaar49cd9572005-01-03 21:06:01 +000013124 if (argvars[3].v_type != VAR_UNKNOWN)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013125 nth = get_tv_number_chk(&argvars[3], &error);
13126 if (error)
13127 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013128 }
13129
13130 regmatch.regprog = vim_regcomp(pat, RE_MAGIC + RE_STRING);
13131 if (regmatch.regprog != NULL)
13132 {
13133 regmatch.rm_ic = p_ic;
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013134
Bram Moolenaard8e9bb22005-07-09 21:14:46 +000013135 for (;;)
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013136 {
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013137 if (l != NULL)
13138 {
13139 if (li == NULL)
13140 {
13141 match = FALSE;
13142 break;
13143 }
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013144 vim_free(tofree);
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000013145 str = echo_string(&li->li_tv, &tofree, strbuf, 0);
Bram Moolenaar81bf7082005-02-12 14:31:42 +000013146 if (str == NULL)
13147 break;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013148 }
13149
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000013150 match = vim_regexec_nl(&regmatch, str, (colnr_T)startcol);
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013151
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013152 if (match && --nth <= 0)
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013153 break;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013154 if (l == NULL && !match)
13155 break;
13156
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013157 /* Advance to just after the match. */
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013158 if (l != NULL)
13159 {
13160 li = li->li_next;
13161 ++idx;
13162 }
13163 else
13164 {
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013165#ifdef FEAT_MBYTE
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000013166 startcol = (colnr_T)(regmatch.startp[0]
13167 + (*mb_ptr2len)(regmatch.startp[0]) - str);
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013168#else
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000013169 startcol = regmatch.startp[0] + 1 - str;
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013170#endif
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013171 }
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013172 }
13173
13174 if (match)
Bram Moolenaar071d4272004-06-13 20:20:40 +000013175 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013176 if (type == 3)
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013177 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013178 int i;
13179
13180 /* return list with matched string and submatches */
13181 for (i = 0; i < NSUBEXP; ++i)
13182 {
13183 if (regmatch.endp[i] == NULL)
Bram Moolenaarf9393ef2006-04-24 19:47:27 +000013184 {
13185 if (list_append_string(rettv->vval.v_list,
13186 (char_u *)"", 0) == FAIL)
13187 break;
13188 }
13189 else if (list_append_string(rettv->vval.v_list,
Bram Moolenaar4463f292005-09-25 22:20:24 +000013190 regmatch.startp[i],
13191 (int)(regmatch.endp[i] - regmatch.startp[i]))
13192 == FAIL)
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013193 break;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013194 }
13195 }
13196 else if (type == 2)
13197 {
13198 /* return matched string */
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013199 if (l != NULL)
13200 copy_tv(&li->li_tv, rettv);
13201 else
13202 rettv->vval.v_string = vim_strnsave(regmatch.startp[0],
Bram Moolenaar071d4272004-06-13 20:20:40 +000013203 (int)(regmatch.endp[0] - regmatch.startp[0]));
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013204 }
13205 else if (l != NULL)
13206 rettv->vval.v_number = idx;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013207 else
13208 {
13209 if (type != 0)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013210 rettv->vval.v_number =
Bram Moolenaar071d4272004-06-13 20:20:40 +000013211 (varnumber_T)(regmatch.startp[0] - str);
13212 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013213 rettv->vval.v_number =
Bram Moolenaar071d4272004-06-13 20:20:40 +000013214 (varnumber_T)(regmatch.endp[0] - str);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000013215 rettv->vval.v_number += (varnumber_T)(str - expr);
Bram Moolenaar071d4272004-06-13 20:20:40 +000013216 }
13217 }
13218 vim_free(regmatch.regprog);
13219 }
13220
13221theend:
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013222 vim_free(tofree);
Bram Moolenaar071d4272004-06-13 20:20:40 +000013223 p_cpo = save_cpo;
13224}
13225
13226/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000013227 * "match()" function
13228 */
13229 static void
13230f_match(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013231 typval_T *argvars;
13232 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000013233{
13234 find_some_match(argvars, rettv, 1);
13235}
13236
13237/*
Bram Moolenaar6ee10162007-07-26 20:58:42 +000013238 * "matchadd()" function
13239 */
13240 static void
13241f_matchadd(argvars, rettv)
13242 typval_T *argvars;
13243 typval_T *rettv;
13244{
13245#ifdef FEAT_SEARCH_EXTRA
13246 char_u buf[NUMBUFLEN];
13247 char_u *grp = get_tv_string_buf_chk(&argvars[0], buf); /* group */
13248 char_u *pat = get_tv_string_buf_chk(&argvars[1], buf); /* pattern */
13249 int prio = 10; /* default priority */
13250 int id = -1;
13251 int error = FALSE;
13252
13253 rettv->vval.v_number = -1;
13254
13255 if (grp == NULL || pat == NULL)
13256 return;
13257 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar2240aeb2007-07-27 19:33:14 +000013258 {
Bram Moolenaar6ee10162007-07-26 20:58:42 +000013259 prio = get_tv_number_chk(&argvars[2], &error);
Bram Moolenaar2240aeb2007-07-27 19:33:14 +000013260 if (argvars[3].v_type != VAR_UNKNOWN)
13261 id = get_tv_number_chk(&argvars[3], &error);
13262 }
Bram Moolenaar6ee10162007-07-26 20:58:42 +000013263 if (error == TRUE)
13264 return;
13265 if (id >= 1 && id <= 3)
13266 {
13267 EMSGN("E798: ID is reserved for \":match\": %ld", id);
13268 return;
13269 }
13270
13271 rettv->vval.v_number = match_add(curwin, grp, pat, prio, id);
13272#endif
13273}
13274
13275/*
Bram Moolenaar910f66f2006-04-05 20:41:53 +000013276 * "matcharg()" function
13277 */
13278 static void
13279f_matcharg(argvars, rettv)
13280 typval_T *argvars;
13281 typval_T *rettv;
13282{
13283 if (rettv_list_alloc(rettv) == OK)
13284 {
13285#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar6ee10162007-07-26 20:58:42 +000013286 int id = get_tv_number(&argvars[0]);
13287 matchitem_T *m;
Bram Moolenaar910f66f2006-04-05 20:41:53 +000013288
Bram Moolenaar6ee10162007-07-26 20:58:42 +000013289 if (id >= 1 && id <= 3)
Bram Moolenaar910f66f2006-04-05 20:41:53 +000013290 {
Bram Moolenaar6ee10162007-07-26 20:58:42 +000013291 if ((m = (matchitem_T *)get_match(curwin, id)) != NULL)
13292 {
13293 list_append_string(rettv->vval.v_list,
13294 syn_id2name(m->hlg_id), -1);
13295 list_append_string(rettv->vval.v_list, m->pattern, -1);
13296 }
13297 else
13298 {
13299 list_append_string(rettv->vval.v_list, NUL, -1);
13300 list_append_string(rettv->vval.v_list, NUL, -1);
13301 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +000013302 }
13303#endif
13304 }
13305}
13306
13307/*
Bram Moolenaar6ee10162007-07-26 20:58:42 +000013308 * "matchdelete()" function
13309 */
13310 static void
13311f_matchdelete(argvars, rettv)
13312 typval_T *argvars;
13313 typval_T *rettv;
13314{
13315#ifdef FEAT_SEARCH_EXTRA
13316 rettv->vval.v_number = match_delete(curwin,
13317 (int)get_tv_number(&argvars[0]), TRUE);
13318#endif
13319}
13320
13321/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000013322 * "matchend()" function
13323 */
13324 static void
13325f_matchend(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013326 typval_T *argvars;
13327 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000013328{
13329 find_some_match(argvars, rettv, 0);
13330}
13331
13332/*
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013333 * "matchlist()" function
13334 */
13335 static void
13336f_matchlist(argvars, rettv)
13337 typval_T *argvars;
13338 typval_T *rettv;
13339{
13340 find_some_match(argvars, rettv, 3);
13341}
13342
13343/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000013344 * "matchstr()" function
13345 */
13346 static void
13347f_matchstr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013348 typval_T *argvars;
13349 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000013350{
13351 find_some_match(argvars, rettv, 2);
13352}
13353
Bram Moolenaar33570922005-01-25 22:26:29 +000013354static void max_min __ARGS((typval_T *argvars, typval_T *rettv, int domax));
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013355
13356 static void
13357max_min(argvars, rettv, domax)
Bram Moolenaar33570922005-01-25 22:26:29 +000013358 typval_T *argvars;
13359 typval_T *rettv;
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013360 int domax;
13361{
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013362 long n = 0;
13363 long i;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013364 int error = FALSE;
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013365
13366 if (argvars[0].v_type == VAR_LIST)
13367 {
Bram Moolenaar33570922005-01-25 22:26:29 +000013368 list_T *l;
13369 listitem_T *li;
Bram Moolenaare9a41262005-01-15 22:18:47 +000013370
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013371 l = argvars[0].vval.v_list;
13372 if (l != NULL)
13373 {
13374 li = l->lv_first;
13375 if (li != NULL)
13376 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013377 n = get_tv_number_chk(&li->li_tv, &error);
Bram Moolenaard8e9bb22005-07-09 21:14:46 +000013378 for (;;)
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013379 {
13380 li = li->li_next;
13381 if (li == NULL)
13382 break;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013383 i = get_tv_number_chk(&li->li_tv, &error);
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013384 if (domax ? i > n : i < n)
13385 n = i;
13386 }
13387 }
13388 }
13389 }
Bram Moolenaare9a41262005-01-15 22:18:47 +000013390 else if (argvars[0].v_type == VAR_DICT)
13391 {
Bram Moolenaar33570922005-01-25 22:26:29 +000013392 dict_T *d;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000013393 int first = TRUE;
Bram Moolenaar33570922005-01-25 22:26:29 +000013394 hashitem_T *hi;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000013395 int todo;
Bram Moolenaare9a41262005-01-15 22:18:47 +000013396
13397 d = argvars[0].vval.v_dict;
13398 if (d != NULL)
13399 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000013400 todo = (int)d->dv_hashtab.ht_used;
Bram Moolenaar33570922005-01-25 22:26:29 +000013401 for (hi = d->dv_hashtab.ht_array; todo > 0; ++hi)
Bram Moolenaare9a41262005-01-15 22:18:47 +000013402 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000013403 if (!HASHITEM_EMPTY(hi))
Bram Moolenaare9a41262005-01-15 22:18:47 +000013404 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000013405 --todo;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013406 i = get_tv_number_chk(&HI2DI(hi)->di_tv, &error);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000013407 if (first)
13408 {
13409 n = i;
13410 first = FALSE;
13411 }
13412 else if (domax ? i > n : i < n)
Bram Moolenaare9a41262005-01-15 22:18:47 +000013413 n = i;
13414 }
13415 }
13416 }
13417 }
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013418 else
Bram Moolenaar758711c2005-02-02 23:11:38 +000013419 EMSG(_(e_listdictarg));
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013420 rettv->vval.v_number = error ? 0 : n;
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013421}
13422
13423/*
13424 * "max()" function
13425 */
13426 static void
13427f_max(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013428 typval_T *argvars;
13429 typval_T *rettv;
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013430{
13431 max_min(argvars, rettv, TRUE);
13432}
13433
13434/*
13435 * "min()" function
13436 */
13437 static void
13438f_min(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013439 typval_T *argvars;
13440 typval_T *rettv;
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013441{
13442 max_min(argvars, rettv, FALSE);
13443}
13444
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000013445static int mkdir_recurse __ARGS((char_u *dir, int prot));
13446
13447/*
13448 * Create the directory in which "dir" is located, and higher levels when
13449 * needed.
13450 */
13451 static int
13452mkdir_recurse(dir, prot)
13453 char_u *dir;
13454 int prot;
13455{
13456 char_u *p;
13457 char_u *updir;
13458 int r = FAIL;
13459
13460 /* Get end of directory name in "dir".
13461 * We're done when it's "/" or "c:/". */
13462 p = gettail_sep(dir);
13463 if (p <= get_past_head(dir))
13464 return OK;
13465
13466 /* If the directory exists we're done. Otherwise: create it.*/
13467 updir = vim_strnsave(dir, (int)(p - dir));
13468 if (updir == NULL)
13469 return FAIL;
13470 if (mch_isdir(updir))
13471 r = OK;
13472 else if (mkdir_recurse(updir, prot) == OK)
13473 r = vim_mkdir_emsg(updir, prot);
13474 vim_free(updir);
13475 return r;
13476}
13477
13478#ifdef vim_mkdir
13479/*
13480 * "mkdir()" function
13481 */
13482 static void
13483f_mkdir(argvars, rettv)
13484 typval_T *argvars;
13485 typval_T *rettv;
13486{
13487 char_u *dir;
13488 char_u buf[NUMBUFLEN];
13489 int prot = 0755;
13490
13491 rettv->vval.v_number = FAIL;
13492 if (check_restricted() || check_secure())
13493 return;
13494
13495 dir = get_tv_string_buf(&argvars[0], buf);
13496 if (argvars[1].v_type != VAR_UNKNOWN)
13497 {
13498 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013499 prot = get_tv_number_chk(&argvars[2], NULL);
13500 if (prot != -1 && STRCMP(get_tv_string(&argvars[1]), "p") == 0)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000013501 mkdir_recurse(dir, prot);
13502 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013503 rettv->vval.v_number = prot != -1 ? vim_mkdir_emsg(dir, prot) : 0;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000013504}
13505#endif
13506
Bram Moolenaar0d660222005-01-07 21:51:51 +000013507/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000013508 * "mode()" function
13509 */
13510/*ARGSUSED*/
13511 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013512f_mode(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013513 typval_T *argvars;
13514 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013515{
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013516 char_u buf[3];
13517
13518 buf[1] = NUL;
13519 buf[2] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013520
13521#ifdef FEAT_VISUAL
13522 if (VIsual_active)
13523 {
13524 if (VIsual_select)
13525 buf[0] = VIsual_mode + 's' - 'v';
13526 else
13527 buf[0] = VIsual_mode;
13528 }
13529 else
13530#endif
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013531 if (State == HITRETURN || State == ASKMORE || State == SETWSIZE
13532 || State == CONFIRM)
13533 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000013534 buf[0] = 'r';
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013535 if (State == ASKMORE)
13536 buf[1] = 'm';
13537 else if (State == CONFIRM)
13538 buf[1] = '?';
13539 }
13540 else if (State == EXTERNCMD)
13541 buf[0] = '!';
Bram Moolenaar071d4272004-06-13 20:20:40 +000013542 else if (State & INSERT)
13543 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013544#ifdef FEAT_VREPLACE
13545 if (State & VREPLACE_FLAG)
13546 {
13547 buf[0] = 'R';
13548 buf[1] = 'v';
13549 }
13550 else
13551#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000013552 if (State & REPLACE_FLAG)
13553 buf[0] = 'R';
13554 else
13555 buf[0] = 'i';
13556 }
13557 else if (State & CMDLINE)
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013558 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000013559 buf[0] = 'c';
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013560 if (exmode_active)
13561 buf[1] = 'v';
13562 }
13563 else if (exmode_active)
13564 {
13565 buf[0] = 'c';
13566 buf[1] = 'e';
13567 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000013568 else
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013569 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000013570 buf[0] = 'n';
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013571 if (finish_op)
13572 buf[1] = 'o';
13573 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000013574
Bram Moolenaar05bb9532008-07-04 09:44:11 +000013575 /* Clear out the minor mode when the argument is not a non-zero number or
13576 * non-empty string. */
13577 if (!non_zero_arg(&argvars[0]))
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013578 buf[1] = NUL;
13579
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013580 rettv->vval.v_string = vim_strsave(buf);
13581 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013582}
13583
13584/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000013585 * "nextnonblank()" function
13586 */
13587 static void
13588f_nextnonblank(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013589 typval_T *argvars;
13590 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000013591{
13592 linenr_T lnum;
13593
13594 for (lnum = get_tv_lnum(argvars); ; ++lnum)
13595 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013596 if (lnum < 0 || lnum > curbuf->b_ml.ml_line_count)
Bram Moolenaar0d660222005-01-07 21:51:51 +000013597 {
13598 lnum = 0;
13599 break;
13600 }
13601 if (*skipwhite(ml_get(lnum)) != NUL)
13602 break;
13603 }
13604 rettv->vval.v_number = lnum;
13605}
13606
13607/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000013608 * "nr2char()" function
13609 */
13610 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013611f_nr2char(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013612 typval_T *argvars;
13613 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013614{
13615 char_u buf[NUMBUFLEN];
13616
13617#ifdef FEAT_MBYTE
13618 if (has_mbyte)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013619 buf[(*mb_char2bytes)((int)get_tv_number(&argvars[0]), buf)] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013620 else
13621#endif
13622 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013623 buf[0] = (char_u)get_tv_number(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000013624 buf[1] = NUL;
13625 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013626 rettv->v_type = VAR_STRING;
13627 rettv->vval.v_string = vim_strsave(buf);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000013628}
13629
13630/*
Bram Moolenaar910f66f2006-04-05 20:41:53 +000013631 * "pathshorten()" function
13632 */
13633 static void
13634f_pathshorten(argvars, rettv)
13635 typval_T *argvars;
13636 typval_T *rettv;
13637{
13638 char_u *p;
13639
13640 rettv->v_type = VAR_STRING;
13641 p = get_tv_string_chk(&argvars[0]);
13642 if (p == NULL)
13643 rettv->vval.v_string = NULL;
13644 else
13645 {
13646 p = vim_strsave(p);
13647 rettv->vval.v_string = p;
13648 if (p != NULL)
13649 shorten_dir(p);
13650 }
13651}
13652
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013653#ifdef FEAT_FLOAT
13654/*
13655 * "pow()" function
13656 */
13657 static void
13658f_pow(argvars, rettv)
13659 typval_T *argvars;
13660 typval_T *rettv;
13661{
13662 float_T fx, fy;
13663
13664 rettv->v_type = VAR_FLOAT;
13665 if (get_float_arg(argvars, &fx) == OK
13666 && get_float_arg(&argvars[1], &fy) == OK)
13667 rettv->vval.v_float = pow(fx, fy);
13668 else
13669 rettv->vval.v_float = 0.0;
13670}
13671#endif
13672
Bram Moolenaar910f66f2006-04-05 20:41:53 +000013673/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000013674 * "prevnonblank()" function
13675 */
13676 static void
13677f_prevnonblank(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013678 typval_T *argvars;
13679 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000013680{
13681 linenr_T lnum;
13682
13683 lnum = get_tv_lnum(argvars);
13684 if (lnum < 1 || lnum > curbuf->b_ml.ml_line_count)
13685 lnum = 0;
13686 else
13687 while (lnum >= 1 && *skipwhite(ml_get(lnum)) == NUL)
13688 --lnum;
13689 rettv->vval.v_number = lnum;
13690}
13691
Bram Moolenaara6c840d2005-08-22 22:59:46 +000013692#ifdef HAVE_STDARG_H
13693/* This dummy va_list is here because:
13694 * - passing a NULL pointer doesn't work when va_list isn't a pointer
13695 * - locally in the function results in a "used before set" warning
13696 * - using va_start() to initialize it gives "function with fixed args" error */
13697static va_list ap;
13698#endif
13699
Bram Moolenaar8c711452005-01-14 21:53:12 +000013700/*
Bram Moolenaar4be06f92005-07-29 22:36:03 +000013701 * "printf()" function
13702 */
13703 static void
13704f_printf(argvars, rettv)
13705 typval_T *argvars;
13706 typval_T *rettv;
13707{
13708 rettv->v_type = VAR_STRING;
13709 rettv->vval.v_string = NULL;
Bram Moolenaard52d9742005-08-21 22:20:28 +000013710#ifdef HAVE_STDARG_H /* only very old compilers can't do this */
Bram Moolenaar4be06f92005-07-29 22:36:03 +000013711 {
13712 char_u buf[NUMBUFLEN];
13713 int len;
13714 char_u *s;
13715 int saved_did_emsg = did_emsg;
13716 char *fmt;
13717
13718 /* Get the required length, allocate the buffer and do it for real. */
13719 did_emsg = FALSE;
13720 fmt = (char *)get_tv_string_buf(&argvars[0], buf);
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +000013721 len = vim_vsnprintf(NULL, 0, fmt, ap, argvars + 1);
Bram Moolenaar4be06f92005-07-29 22:36:03 +000013722 if (!did_emsg)
13723 {
13724 s = alloc(len + 1);
13725 if (s != NULL)
13726 {
13727 rettv->vval.v_string = s;
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +000013728 (void)vim_vsnprintf((char *)s, len + 1, fmt, ap, argvars + 1);
Bram Moolenaar4be06f92005-07-29 22:36:03 +000013729 }
13730 }
13731 did_emsg |= saved_did_emsg;
13732 }
13733#endif
13734}
13735
13736/*
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000013737 * "pumvisible()" function
13738 */
13739/*ARGSUSED*/
13740 static void
13741f_pumvisible(argvars, rettv)
13742 typval_T *argvars;
13743 typval_T *rettv;
13744{
13745 rettv->vval.v_number = 0;
13746#ifdef FEAT_INS_EXPAND
13747 if (pum_visible())
13748 rettv->vval.v_number = 1;
13749#endif
13750}
13751
13752/*
Bram Moolenaar8c711452005-01-14 21:53:12 +000013753 * "range()" function
13754 */
13755 static void
13756f_range(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013757 typval_T *argvars;
13758 typval_T *rettv;
Bram Moolenaar8c711452005-01-14 21:53:12 +000013759{
13760 long start;
13761 long end;
13762 long stride = 1;
13763 long i;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013764 int error = FALSE;
Bram Moolenaar8c711452005-01-14 21:53:12 +000013765
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013766 start = get_tv_number_chk(&argvars[0], &error);
Bram Moolenaar8c711452005-01-14 21:53:12 +000013767 if (argvars[1].v_type == VAR_UNKNOWN)
13768 {
13769 end = start - 1;
13770 start = 0;
13771 }
13772 else
13773 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013774 end = get_tv_number_chk(&argvars[1], &error);
Bram Moolenaar8c711452005-01-14 21:53:12 +000013775 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013776 stride = get_tv_number_chk(&argvars[2], &error);
Bram Moolenaar8c711452005-01-14 21:53:12 +000013777 }
13778
13779 rettv->vval.v_number = 0;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013780 if (error)
13781 return; /* type error; errmsg already given */
Bram Moolenaar8c711452005-01-14 21:53:12 +000013782 if (stride == 0)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000013783 EMSG(_("E726: Stride is zero"));
Bram Moolenaar92124a32005-06-17 22:03:40 +000013784 else if (stride > 0 ? end + 1 < start : end - 1 > start)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000013785 EMSG(_("E727: Start past end"));
Bram Moolenaar8c711452005-01-14 21:53:12 +000013786 else
13787 {
Bram Moolenaareddf53b2006-02-27 00:11:10 +000013788 if (rettv_list_alloc(rettv) == OK)
Bram Moolenaar8c711452005-01-14 21:53:12 +000013789 for (i = start; stride > 0 ? i <= end : i >= end; i += stride)
Bram Moolenaareddf53b2006-02-27 00:11:10 +000013790 if (list_append_number(rettv->vval.v_list,
13791 (varnumber_T)i) == FAIL)
Bram Moolenaar8c711452005-01-14 21:53:12 +000013792 break;
Bram Moolenaar8c711452005-01-14 21:53:12 +000013793 }
13794}
13795
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013796/*
13797 * "readfile()" function
13798 */
13799 static void
13800f_readfile(argvars, rettv)
13801 typval_T *argvars;
13802 typval_T *rettv;
13803{
13804 int binary = FALSE;
13805 char_u *fname;
13806 FILE *fd;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013807 listitem_T *li;
13808#define FREAD_SIZE 200 /* optimized for text lines */
13809 char_u buf[FREAD_SIZE];
13810 int readlen; /* size of last fread() */
13811 int buflen; /* nr of valid chars in buf[] */
13812 int filtd; /* how much in buf[] was NUL -> '\n' filtered */
13813 int tolist; /* first byte in buf[] still to be put in list */
13814 int chop; /* how many CR to chop off */
13815 char_u *prev = NULL; /* previously read bytes, if any */
13816 int prevlen = 0; /* length of "prev" if not NULL */
13817 char_u *s;
13818 int len;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000013819 long maxline = MAXLNUM;
13820 long cnt = 0;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013821
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000013822 if (argvars[1].v_type != VAR_UNKNOWN)
13823 {
13824 if (STRCMP(get_tv_string(&argvars[1]), "b") == 0)
13825 binary = TRUE;
13826 if (argvars[2].v_type != VAR_UNKNOWN)
13827 maxline = get_tv_number(&argvars[2]);
13828 }
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013829
Bram Moolenaareddf53b2006-02-27 00:11:10 +000013830 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013831 return;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013832
13833 /* Always open the file in binary mode, library functions have a mind of
13834 * their own about CR-LF conversion. */
13835 fname = get_tv_string(&argvars[0]);
13836 if (*fname == NUL || (fd = mch_fopen((char *)fname, READBIN)) == NULL)
13837 {
13838 EMSG2(_(e_notopen), *fname == NUL ? (char_u *)_("<empty>") : fname);
13839 return;
13840 }
13841
13842 filtd = 0;
Bram Moolenaarb982ca52005-03-28 21:02:15 +000013843 while (cnt < maxline || maxline < 0)
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013844 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000013845 readlen = (int)fread(buf + filtd, 1, FREAD_SIZE - filtd, fd);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013846 buflen = filtd + readlen;
13847 tolist = 0;
13848 for ( ; filtd < buflen || readlen <= 0; ++filtd)
13849 {
13850 if (buf[filtd] == '\n' || readlen <= 0)
13851 {
13852 /* Only when in binary mode add an empty list item when the
13853 * last line ends in a '\n'. */
13854 if (!binary && readlen == 0 && filtd == 0)
13855 break;
13856
13857 /* Found end-of-line or end-of-file: add a text line to the
13858 * list. */
13859 chop = 0;
13860 if (!binary)
13861 while (filtd - chop - 1 >= tolist
13862 && buf[filtd - chop - 1] == '\r')
13863 ++chop;
13864 len = filtd - tolist - chop;
13865 if (prev == NULL)
13866 s = vim_strnsave(buf + tolist, len);
13867 else
13868 {
13869 s = alloc((unsigned)(prevlen + len + 1));
13870 if (s != NULL)
13871 {
13872 mch_memmove(s, prev, prevlen);
13873 vim_free(prev);
13874 prev = NULL;
13875 mch_memmove(s + prevlen, buf + tolist, len);
13876 s[prevlen + len] = NUL;
13877 }
13878 }
13879 tolist = filtd + 1;
13880
13881 li = listitem_alloc();
13882 if (li == NULL)
13883 {
13884 vim_free(s);
13885 break;
13886 }
13887 li->li_tv.v_type = VAR_STRING;
13888 li->li_tv.v_lock = 0;
13889 li->li_tv.vval.v_string = s;
Bram Moolenaareddf53b2006-02-27 00:11:10 +000013890 list_append(rettv->vval.v_list, li);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013891
Bram Moolenaarb982ca52005-03-28 21:02:15 +000013892 if (++cnt >= maxline && maxline >= 0)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000013893 break;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013894 if (readlen <= 0)
13895 break;
13896 }
13897 else if (buf[filtd] == NUL)
13898 buf[filtd] = '\n';
13899 }
13900 if (readlen <= 0)
13901 break;
13902
13903 if (tolist == 0)
13904 {
13905 /* "buf" is full, need to move text to an allocated buffer */
13906 if (prev == NULL)
13907 {
13908 prev = vim_strnsave(buf, buflen);
13909 prevlen = buflen;
13910 }
13911 else
13912 {
13913 s = alloc((unsigned)(prevlen + buflen));
13914 if (s != NULL)
13915 {
13916 mch_memmove(s, prev, prevlen);
13917 mch_memmove(s + prevlen, buf, buflen);
13918 vim_free(prev);
13919 prev = s;
13920 prevlen += buflen;
13921 }
13922 }
13923 filtd = 0;
13924 }
13925 else
13926 {
13927 mch_memmove(buf, buf + tolist, buflen - tolist);
13928 filtd -= tolist;
13929 }
13930 }
13931
Bram Moolenaarb982ca52005-03-28 21:02:15 +000013932 /*
13933 * For a negative line count use only the lines at the end of the file,
13934 * free the rest.
13935 */
13936 if (maxline < 0)
13937 while (cnt > -maxline)
13938 {
Bram Moolenaareddf53b2006-02-27 00:11:10 +000013939 listitem_remove(rettv->vval.v_list, rettv->vval.v_list->lv_first);
Bram Moolenaarb982ca52005-03-28 21:02:15 +000013940 --cnt;
13941 }
13942
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000013943 vim_free(prev);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013944 fclose(fd);
13945}
13946
Bram Moolenaare580b0c2006-03-21 21:33:03 +000013947#if defined(FEAT_RELTIME)
13948static int list2proftime __ARGS((typval_T *arg, proftime_T *tm));
13949
13950/*
13951 * Convert a List to proftime_T.
13952 * Return FAIL when there is something wrong.
13953 */
13954 static int
13955list2proftime(arg, tm)
13956 typval_T *arg;
13957 proftime_T *tm;
13958{
13959 long n1, n2;
13960 int error = FALSE;
13961
13962 if (arg->v_type != VAR_LIST || arg->vval.v_list == NULL
13963 || arg->vval.v_list->lv_len != 2)
13964 return FAIL;
13965 n1 = list_find_nr(arg->vval.v_list, 0L, &error);
13966 n2 = list_find_nr(arg->vval.v_list, 1L, &error);
13967# ifdef WIN3264
Bram Moolenaardb552d602006-03-23 22:59:57 +000013968 tm->HighPart = n1;
13969 tm->LowPart = n2;
Bram Moolenaare580b0c2006-03-21 21:33:03 +000013970# else
13971 tm->tv_sec = n1;
13972 tm->tv_usec = n2;
13973# endif
13974 return error ? FAIL : OK;
13975}
13976#endif /* FEAT_RELTIME */
13977
13978/*
13979 * "reltime()" function
13980 */
13981 static void
13982f_reltime(argvars, rettv)
13983 typval_T *argvars;
13984 typval_T *rettv;
13985{
13986#ifdef FEAT_RELTIME
13987 proftime_T res;
13988 proftime_T start;
13989
13990 if (argvars[0].v_type == VAR_UNKNOWN)
13991 {
13992 /* No arguments: get current time. */
13993 profile_start(&res);
13994 }
13995 else if (argvars[1].v_type == VAR_UNKNOWN)
13996 {
13997 if (list2proftime(&argvars[0], &res) == FAIL)
13998 return;
13999 profile_end(&res);
14000 }
14001 else
14002 {
14003 /* Two arguments: compute the difference. */
14004 if (list2proftime(&argvars[0], &start) == FAIL
14005 || list2proftime(&argvars[1], &res) == FAIL)
14006 return;
14007 profile_sub(&res, &start);
14008 }
14009
14010 if (rettv_list_alloc(rettv) == OK)
14011 {
14012 long n1, n2;
14013
14014# ifdef WIN3264
Bram Moolenaardb552d602006-03-23 22:59:57 +000014015 n1 = res.HighPart;
14016 n2 = res.LowPart;
Bram Moolenaare580b0c2006-03-21 21:33:03 +000014017# else
14018 n1 = res.tv_sec;
14019 n2 = res.tv_usec;
14020# endif
14021 list_append_number(rettv->vval.v_list, (varnumber_T)n1);
14022 list_append_number(rettv->vval.v_list, (varnumber_T)n2);
14023 }
14024#endif
14025}
14026
14027/*
14028 * "reltimestr()" function
14029 */
14030 static void
14031f_reltimestr(argvars, rettv)
14032 typval_T *argvars;
14033 typval_T *rettv;
14034{
14035#ifdef FEAT_RELTIME
14036 proftime_T tm;
14037#endif
14038
14039 rettv->v_type = VAR_STRING;
14040 rettv->vval.v_string = NULL;
14041#ifdef FEAT_RELTIME
14042 if (list2proftime(&argvars[0], &tm) == OK)
14043 rettv->vval.v_string = vim_strsave((char_u *)profile_msg(&tm));
14044#endif
14045}
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000014046
Bram Moolenaar0d660222005-01-07 21:51:51 +000014047#if defined(FEAT_CLIENTSERVER) && defined(FEAT_X11)
14048static void make_connection __ARGS((void));
14049static int check_connection __ARGS((void));
14050
14051 static void
14052make_connection()
14053{
14054 if (X_DISPLAY == NULL
14055# ifdef FEAT_GUI
14056 && !gui.in_use
14057# endif
14058 )
14059 {
14060 x_force_connect = TRUE;
14061 setup_term_clip();
14062 x_force_connect = FALSE;
14063 }
14064}
14065
14066 static int
14067check_connection()
14068{
14069 make_connection();
14070 if (X_DISPLAY == NULL)
14071 {
14072 EMSG(_("E240: No connection to Vim server"));
14073 return FAIL;
14074 }
14075 return OK;
14076}
14077#endif
14078
14079#ifdef FEAT_CLIENTSERVER
Bram Moolenaar33570922005-01-25 22:26:29 +000014080static void remote_common __ARGS((typval_T *argvars, typval_T *rettv, int expr));
Bram Moolenaar0d660222005-01-07 21:51:51 +000014081
14082 static void
14083remote_common(argvars, rettv, expr)
Bram Moolenaar33570922005-01-25 22:26:29 +000014084 typval_T *argvars;
14085 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014086 int expr;
14087{
14088 char_u *server_name;
14089 char_u *keys;
14090 char_u *r = NULL;
14091 char_u buf[NUMBUFLEN];
14092# ifdef WIN32
14093 HWND w;
14094# else
14095 Window w;
14096# endif
14097
14098 if (check_restricted() || check_secure())
14099 return;
14100
14101# ifdef FEAT_X11
14102 if (check_connection() == FAIL)
14103 return;
14104# endif
14105
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014106 server_name = get_tv_string_chk(&argvars[0]);
14107 if (server_name == NULL)
14108 return; /* type error; errmsg already given */
Bram Moolenaar0d660222005-01-07 21:51:51 +000014109 keys = get_tv_string_buf(&argvars[1], buf);
14110# ifdef WIN32
14111 if (serverSendToVim(server_name, keys, &r, &w, expr, TRUE) < 0)
14112# else
14113 if (serverSendToVim(X_DISPLAY, server_name, keys, &r, &w, expr, 0, TRUE)
14114 < 0)
14115# endif
14116 {
14117 if (r != NULL)
14118 EMSG(r); /* sending worked but evaluation failed */
14119 else
14120 EMSG2(_("E241: Unable to send to %s"), server_name);
14121 return;
14122 }
14123
14124 rettv->vval.v_string = r;
14125
14126 if (argvars[2].v_type != VAR_UNKNOWN)
14127 {
Bram Moolenaar33570922005-01-25 22:26:29 +000014128 dictitem_T v;
Bram Moolenaar555b2802005-05-19 21:08:39 +000014129 char_u str[30];
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014130 char_u *idvar;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014131
Bram Moolenaareb3593b2006-04-22 22:33:57 +000014132 sprintf((char *)str, PRINTF_HEX_LONG_U, (long_u)w);
Bram Moolenaar33570922005-01-25 22:26:29 +000014133 v.di_tv.v_type = VAR_STRING;
14134 v.di_tv.vval.v_string = vim_strsave(str);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014135 idvar = get_tv_string_chk(&argvars[2]);
14136 if (idvar != NULL)
14137 set_var(idvar, &v.di_tv, FALSE);
Bram Moolenaar33570922005-01-25 22:26:29 +000014138 vim_free(v.di_tv.vval.v_string);
Bram Moolenaar0d660222005-01-07 21:51:51 +000014139 }
14140}
14141#endif
14142
14143/*
14144 * "remote_expr()" function
14145 */
14146/*ARGSUSED*/
14147 static void
14148f_remote_expr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000014149 typval_T *argvars;
14150 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014151{
14152 rettv->v_type = VAR_STRING;
14153 rettv->vval.v_string = NULL;
14154#ifdef FEAT_CLIENTSERVER
14155 remote_common(argvars, rettv, TRUE);
14156#endif
14157}
14158
14159/*
14160 * "remote_foreground()" function
14161 */
14162/*ARGSUSED*/
14163 static void
14164f_remote_foreground(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000014165 typval_T *argvars;
14166 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014167{
14168 rettv->vval.v_number = 0;
14169#ifdef FEAT_CLIENTSERVER
14170# ifdef WIN32
14171 /* On Win32 it's done in this application. */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014172 {
14173 char_u *server_name = get_tv_string_chk(&argvars[0]);
14174
14175 if (server_name != NULL)
14176 serverForeground(server_name);
14177 }
Bram Moolenaar0d660222005-01-07 21:51:51 +000014178# else
14179 /* Send a foreground() expression to the server. */
14180 argvars[1].v_type = VAR_STRING;
14181 argvars[1].vval.v_string = vim_strsave((char_u *)"foreground()");
14182 argvars[2].v_type = VAR_UNKNOWN;
14183 remote_common(argvars, rettv, TRUE);
14184 vim_free(argvars[1].vval.v_string);
14185# endif
14186#endif
14187}
14188
14189/*ARGSUSED*/
14190 static void
14191f_remote_peek(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000014192 typval_T *argvars;
14193 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014194{
14195#ifdef FEAT_CLIENTSERVER
Bram Moolenaar33570922005-01-25 22:26:29 +000014196 dictitem_T v;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014197 char_u *s = NULL;
14198# ifdef WIN32
Bram Moolenaareb3593b2006-04-22 22:33:57 +000014199 long_u n = 0;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014200# endif
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014201 char_u *serverid;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014202
14203 if (check_restricted() || check_secure())
14204 {
14205 rettv->vval.v_number = -1;
14206 return;
14207 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014208 serverid = get_tv_string_chk(&argvars[0]);
14209 if (serverid == NULL)
14210 {
14211 rettv->vval.v_number = -1;
14212 return; /* type error; errmsg already given */
14213 }
Bram Moolenaar0d660222005-01-07 21:51:51 +000014214# ifdef WIN32
Bram Moolenaareb3593b2006-04-22 22:33:57 +000014215 sscanf(serverid, SCANF_HEX_LONG_U, &n);
Bram Moolenaar0d660222005-01-07 21:51:51 +000014216 if (n == 0)
14217 rettv->vval.v_number = -1;
14218 else
14219 {
14220 s = serverGetReply((HWND)n, FALSE, FALSE, FALSE);
14221 rettv->vval.v_number = (s != NULL);
14222 }
14223# else
14224 rettv->vval.v_number = 0;
14225 if (check_connection() == FAIL)
14226 return;
14227
14228 rettv->vval.v_number = serverPeekReply(X_DISPLAY,
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014229 serverStrToWin(serverid), &s);
Bram Moolenaar0d660222005-01-07 21:51:51 +000014230# endif
14231
14232 if (argvars[1].v_type != VAR_UNKNOWN && rettv->vval.v_number > 0)
14233 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014234 char_u *retvar;
14235
Bram Moolenaar33570922005-01-25 22:26:29 +000014236 v.di_tv.v_type = VAR_STRING;
14237 v.di_tv.vval.v_string = vim_strsave(s);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014238 retvar = get_tv_string_chk(&argvars[1]);
14239 if (retvar != NULL)
14240 set_var(retvar, &v.di_tv, FALSE);
Bram Moolenaar33570922005-01-25 22:26:29 +000014241 vim_free(v.di_tv.vval.v_string);
Bram Moolenaar0d660222005-01-07 21:51:51 +000014242 }
14243#else
14244 rettv->vval.v_number = -1;
14245#endif
14246}
14247
14248/*ARGSUSED*/
14249 static void
14250f_remote_read(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000014251 typval_T *argvars;
14252 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014253{
14254 char_u *r = NULL;
14255
14256#ifdef FEAT_CLIENTSERVER
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014257 char_u *serverid = get_tv_string_chk(&argvars[0]);
14258
14259 if (serverid != NULL && !check_restricted() && !check_secure())
Bram Moolenaar0d660222005-01-07 21:51:51 +000014260 {
14261# ifdef WIN32
14262 /* The server's HWND is encoded in the 'id' parameter */
Bram Moolenaareb3593b2006-04-22 22:33:57 +000014263 long_u n = 0;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014264
Bram Moolenaareb3593b2006-04-22 22:33:57 +000014265 sscanf(serverid, SCANF_HEX_LONG_U, &n);
Bram Moolenaar0d660222005-01-07 21:51:51 +000014266 if (n != 0)
14267 r = serverGetReply((HWND)n, FALSE, TRUE, TRUE);
14268 if (r == NULL)
14269# else
14270 if (check_connection() == FAIL || serverReadReply(X_DISPLAY,
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014271 serverStrToWin(serverid), &r, FALSE) < 0)
Bram Moolenaar0d660222005-01-07 21:51:51 +000014272# endif
14273 EMSG(_("E277: Unable to read a server reply"));
14274 }
14275#endif
14276 rettv->v_type = VAR_STRING;
14277 rettv->vval.v_string = r;
14278}
14279
14280/*
14281 * "remote_send()" function
14282 */
14283/*ARGSUSED*/
14284 static void
14285f_remote_send(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000014286 typval_T *argvars;
14287 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014288{
14289 rettv->v_type = VAR_STRING;
14290 rettv->vval.v_string = NULL;
14291#ifdef FEAT_CLIENTSERVER
14292 remote_common(argvars, rettv, FALSE);
14293#endif
14294}
14295
14296/*
Bram Moolenaar8c711452005-01-14 21:53:12 +000014297 * "remove()" function
Bram Moolenaar49cd9572005-01-03 21:06:01 +000014298 */
14299 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014300f_remove(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000014301 typval_T *argvars;
14302 typval_T *rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000014303{
Bram Moolenaar33570922005-01-25 22:26:29 +000014304 list_T *l;
14305 listitem_T *item, *item2;
14306 listitem_T *li;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000014307 long idx;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014308 long end;
Bram Moolenaar8c711452005-01-14 21:53:12 +000014309 char_u *key;
Bram Moolenaar33570922005-01-25 22:26:29 +000014310 dict_T *d;
14311 dictitem_T *di;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000014312
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014313 rettv->vval.v_number = 0;
Bram Moolenaar8c711452005-01-14 21:53:12 +000014314 if (argvars[0].v_type == VAR_DICT)
14315 {
14316 if (argvars[2].v_type != VAR_UNKNOWN)
14317 EMSG2(_(e_toomanyarg), "remove()");
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000014318 else if ((d = argvars[0].vval.v_dict) != NULL
Bram Moolenaar9dfb0f82006-06-22 16:03:05 +000014319 && !tv_check_lock(d->dv_lock, (char_u *)"remove() argument"))
Bram Moolenaar8c711452005-01-14 21:53:12 +000014320 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014321 key = get_tv_string_chk(&argvars[1]);
14322 if (key != NULL)
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000014323 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014324 di = dict_find(d, key, -1);
14325 if (di == NULL)
14326 EMSG2(_(e_dictkey), key);
14327 else
14328 {
14329 *rettv = di->di_tv;
14330 init_tv(&di->di_tv);
14331 dictitem_remove(d, di);
14332 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000014333 }
Bram Moolenaar8c711452005-01-14 21:53:12 +000014334 }
14335 }
14336 else if (argvars[0].v_type != VAR_LIST)
14337 EMSG2(_(e_listdictarg), "remove()");
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000014338 else if ((l = argvars[0].vval.v_list) != NULL
Bram Moolenaar9dfb0f82006-06-22 16:03:05 +000014339 && !tv_check_lock(l->lv_lock, (char_u *)"remove() argument"))
Bram Moolenaar49cd9572005-01-03 21:06:01 +000014340 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014341 int error = FALSE;
14342
14343 idx = get_tv_number_chk(&argvars[1], &error);
14344 if (error)
14345 ; /* type error: do nothing, errmsg already given */
14346 else if ((item = list_find(l, idx)) == NULL)
Bram Moolenaar49cd9572005-01-03 21:06:01 +000014347 EMSGN(_(e_listidx), idx);
14348 else
14349 {
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014350 if (argvars[2].v_type == VAR_UNKNOWN)
14351 {
14352 /* Remove one item, return its value. */
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000014353 list_remove(l, item, item);
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014354 *rettv = item->li_tv;
14355 vim_free(item);
14356 }
14357 else
14358 {
14359 /* Remove range of items, return list with values. */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014360 end = get_tv_number_chk(&argvars[2], &error);
14361 if (error)
14362 ; /* type error: do nothing */
14363 else if ((item2 = list_find(l, end)) == NULL)
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014364 EMSGN(_(e_listidx), end);
14365 else
14366 {
Bram Moolenaar758711c2005-02-02 23:11:38 +000014367 int cnt = 0;
14368
14369 for (li = item; li != NULL; li = li->li_next)
14370 {
14371 ++cnt;
14372 if (li == item2)
14373 break;
14374 }
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014375 if (li == NULL) /* didn't find "item2" after "item" */
14376 EMSG(_(e_invrange));
14377 else
14378 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000014379 list_remove(l, item, item2);
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014380 if (rettv_list_alloc(rettv) == OK)
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014381 {
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014382 l = rettv->vval.v_list;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014383 l->lv_first = item;
14384 l->lv_last = item2;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014385 item->li_prev = NULL;
14386 item2->li_next = NULL;
Bram Moolenaar758711c2005-02-02 23:11:38 +000014387 l->lv_len = cnt;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014388 }
14389 }
14390 }
14391 }
Bram Moolenaar49cd9572005-01-03 21:06:01 +000014392 }
14393 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000014394}
14395
14396/*
14397 * "rename({from}, {to})" function
14398 */
14399 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014400f_rename(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000014401 typval_T *argvars;
14402 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014403{
14404 char_u buf[NUMBUFLEN];
14405
14406 if (check_restricted() || check_secure())
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014407 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014408 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014409 rettv->vval.v_number = vim_rename(get_tv_string(&argvars[0]),
14410 get_tv_string_buf(&argvars[1], buf));
Bram Moolenaar071d4272004-06-13 20:20:40 +000014411}
14412
14413/*
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014414 * "repeat()" function
14415 */
14416/*ARGSUSED*/
14417 static void
14418f_repeat(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000014419 typval_T *argvars;
14420 typval_T *rettv;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014421{
14422 char_u *p;
14423 int n;
14424 int slen;
14425 int len;
14426 char_u *r;
14427 int i;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014428
14429 n = get_tv_number(&argvars[1]);
14430 if (argvars[0].v_type == VAR_LIST)
14431 {
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014432 if (rettv_list_alloc(rettv) == OK && argvars[0].vval.v_list != NULL)
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014433 while (n-- > 0)
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014434 if (list_extend(rettv->vval.v_list,
14435 argvars[0].vval.v_list, NULL) == FAIL)
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014436 break;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014437 }
14438 else
14439 {
14440 p = get_tv_string(&argvars[0]);
14441 rettv->v_type = VAR_STRING;
14442 rettv->vval.v_string = NULL;
14443
14444 slen = (int)STRLEN(p);
14445 len = slen * n;
14446 if (len <= 0)
14447 return;
14448
14449 r = alloc(len + 1);
14450 if (r != NULL)
14451 {
14452 for (i = 0; i < n; i++)
14453 mch_memmove(r + i * slen, p, (size_t)slen);
14454 r[len] = NUL;
14455 }
14456
14457 rettv->vval.v_string = r;
14458 }
14459}
14460
14461/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000014462 * "resolve()" function
14463 */
14464 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014465f_resolve(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000014466 typval_T *argvars;
14467 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014468{
14469 char_u *p;
14470
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014471 p = get_tv_string(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014472#ifdef FEAT_SHORTCUT
14473 {
14474 char_u *v = NULL;
14475
14476 v = mch_resolve_shortcut(p);
14477 if (v != NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014478 rettv->vval.v_string = v;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014479 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014480 rettv->vval.v_string = vim_strsave(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014481 }
14482#else
14483# ifdef HAVE_READLINK
14484 {
14485 char_u buf[MAXPATHL + 1];
14486 char_u *cpy;
14487 int len;
14488 char_u *remain = NULL;
14489 char_u *q;
14490 int is_relative_to_current = FALSE;
14491 int has_trailing_pathsep = FALSE;
14492 int limit = 100;
14493
14494 p = vim_strsave(p);
14495
14496 if (p[0] == '.' && (vim_ispathsep(p[1])
14497 || (p[1] == '.' && (vim_ispathsep(p[2])))))
14498 is_relative_to_current = TRUE;
14499
14500 len = STRLEN(p);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +000014501 if (len > 0 && after_pathsep(p, p + len))
Bram Moolenaar071d4272004-06-13 20:20:40 +000014502 has_trailing_pathsep = TRUE;
14503
14504 q = getnextcomp(p);
14505 if (*q != NUL)
14506 {
14507 /* Separate the first path component in "p", and keep the
14508 * remainder (beginning with the path separator). */
14509 remain = vim_strsave(q - 1);
14510 q[-1] = NUL;
14511 }
14512
14513 for (;;)
14514 {
14515 for (;;)
14516 {
14517 len = readlink((char *)p, (char *)buf, MAXPATHL);
14518 if (len <= 0)
14519 break;
14520 buf[len] = NUL;
14521
14522 if (limit-- == 0)
14523 {
14524 vim_free(p);
14525 vim_free(remain);
14526 EMSG(_("E655: Too many symbolic links (cycle?)"));
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014527 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014528 goto fail;
14529 }
14530
14531 /* Ensure that the result will have a trailing path separator
14532 * if the argument has one. */
14533 if (remain == NULL && has_trailing_pathsep)
14534 add_pathsep(buf);
14535
14536 /* Separate the first path component in the link value and
14537 * concatenate the remainders. */
14538 q = getnextcomp(vim_ispathsep(*buf) ? buf + 1 : buf);
14539 if (*q != NUL)
14540 {
14541 if (remain == NULL)
14542 remain = vim_strsave(q - 1);
14543 else
14544 {
Bram Moolenaar900b4d72005-12-12 22:05:50 +000014545 cpy = concat_str(q - 1, remain);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014546 if (cpy != NULL)
14547 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000014548 vim_free(remain);
14549 remain = cpy;
14550 }
14551 }
14552 q[-1] = NUL;
14553 }
14554
14555 q = gettail(p);
14556 if (q > p && *q == NUL)
14557 {
14558 /* Ignore trailing path separator. */
14559 q[-1] = NUL;
14560 q = gettail(p);
14561 }
14562 if (q > p && !mch_isFullName(buf))
14563 {
14564 /* symlink is relative to directory of argument */
14565 cpy = alloc((unsigned)(STRLEN(p) + STRLEN(buf) + 1));
14566 if (cpy != NULL)
14567 {
14568 STRCPY(cpy, p);
14569 STRCPY(gettail(cpy), buf);
14570 vim_free(p);
14571 p = cpy;
14572 }
14573 }
14574 else
14575 {
14576 vim_free(p);
14577 p = vim_strsave(buf);
14578 }
14579 }
14580
14581 if (remain == NULL)
14582 break;
14583
14584 /* Append the first path component of "remain" to "p". */
14585 q = getnextcomp(remain + 1);
14586 len = q - remain - (*q != NUL);
14587 cpy = vim_strnsave(p, STRLEN(p) + len);
14588 if (cpy != NULL)
14589 {
14590 STRNCAT(cpy, remain, len);
14591 vim_free(p);
14592 p = cpy;
14593 }
14594 /* Shorten "remain". */
14595 if (*q != NUL)
Bram Moolenaar8c8de832008-06-24 22:58:06 +000014596 STRMOVE(remain, q - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014597 else
14598 {
14599 vim_free(remain);
14600 remain = NULL;
14601 }
14602 }
14603
14604 /* If the result is a relative path name, make it explicitly relative to
14605 * the current directory if and only if the argument had this form. */
14606 if (!vim_ispathsep(*p))
14607 {
14608 if (is_relative_to_current
14609 && *p != NUL
14610 && !(p[0] == '.'
14611 && (p[1] == NUL
14612 || vim_ispathsep(p[1])
14613 || (p[1] == '.'
14614 && (p[2] == NUL
14615 || vim_ispathsep(p[2]))))))
14616 {
14617 /* Prepend "./". */
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000014618 cpy = concat_str((char_u *)"./", p);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014619 if (cpy != NULL)
14620 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000014621 vim_free(p);
14622 p = cpy;
14623 }
14624 }
14625 else if (!is_relative_to_current)
14626 {
14627 /* Strip leading "./". */
14628 q = p;
14629 while (q[0] == '.' && vim_ispathsep(q[1]))
14630 q += 2;
14631 if (q > p)
Bram Moolenaar8c8de832008-06-24 22:58:06 +000014632 STRMOVE(p, p + 2);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014633 }
14634 }
14635
14636 /* Ensure that the result will have no trailing path separator
14637 * if the argument had none. But keep "/" or "//". */
14638 if (!has_trailing_pathsep)
14639 {
14640 q = p + STRLEN(p);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +000014641 if (after_pathsep(p, q))
14642 *gettail_sep(p) = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014643 }
14644
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014645 rettv->vval.v_string = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014646 }
14647# else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014648 rettv->vval.v_string = vim_strsave(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014649# endif
14650#endif
14651
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014652 simplify_filename(rettv->vval.v_string);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014653
14654#ifdef HAVE_READLINK
14655fail:
14656#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014657 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014658}
14659
14660/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000014661 * "reverse({list})" function
Bram Moolenaar071d4272004-06-13 20:20:40 +000014662 */
14663 static void
Bram Moolenaar0d660222005-01-07 21:51:51 +000014664f_reverse(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000014665 typval_T *argvars;
14666 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014667{
Bram Moolenaar33570922005-01-25 22:26:29 +000014668 list_T *l;
14669 listitem_T *li, *ni;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014670
Bram Moolenaar0d660222005-01-07 21:51:51 +000014671 rettv->vval.v_number = 0;
14672 if (argvars[0].v_type != VAR_LIST)
14673 EMSG2(_(e_listarg), "reverse()");
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000014674 else if ((l = argvars[0].vval.v_list) != NULL
14675 && !tv_check_lock(l->lv_lock, (char_u *)"reverse()"))
Bram Moolenaar0d660222005-01-07 21:51:51 +000014676 {
14677 li = l->lv_last;
Bram Moolenaar81bf7082005-02-12 14:31:42 +000014678 l->lv_first = l->lv_last = NULL;
Bram Moolenaar758711c2005-02-02 23:11:38 +000014679 l->lv_len = 0;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014680 while (li != NULL)
14681 {
14682 ni = li->li_prev;
14683 list_append(l, li);
14684 li = ni;
14685 }
14686 rettv->vval.v_list = l;
14687 rettv->v_type = VAR_LIST;
14688 ++l->lv_refcount;
Bram Moolenaar52514562008-04-01 11:12:09 +000014689 l->lv_idx = l->lv_len - l->lv_idx - 1;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014690 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000014691}
14692
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014693#define SP_NOMOVE 0x01 /* don't move cursor */
14694#define SP_REPEAT 0x02 /* repeat to find outer pair */
14695#define SP_RETCOUNT 0x04 /* return matchcount */
14696#define SP_SETPCMARK 0x08 /* set previous context mark */
14697#define SP_START 0x10 /* accept match at start position */
14698#define SP_SUBPAT 0x20 /* return nr of matching sub-pattern */
14699#define SP_END 0x40 /* leave cursor at end of match */
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014700
Bram Moolenaar33570922005-01-25 22:26:29 +000014701static int get_search_arg __ARGS((typval_T *varp, int *flagsp));
Bram Moolenaar0d660222005-01-07 21:51:51 +000014702
14703/*
14704 * Get flags for a search function.
14705 * Possibly sets "p_ws".
14706 * Returns BACKWARD, FORWARD or zero (for an error).
14707 */
14708 static int
14709get_search_arg(varp, flagsp)
Bram Moolenaar33570922005-01-25 22:26:29 +000014710 typval_T *varp;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014711 int *flagsp;
14712{
14713 int dir = FORWARD;
14714 char_u *flags;
14715 char_u nbuf[NUMBUFLEN];
14716 int mask;
14717
14718 if (varp->v_type != VAR_UNKNOWN)
14719 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014720 flags = get_tv_string_buf_chk(varp, nbuf);
14721 if (flags == NULL)
14722 return 0; /* type error; errmsg already given */
Bram Moolenaar0d660222005-01-07 21:51:51 +000014723 while (*flags != NUL)
14724 {
14725 switch (*flags)
14726 {
14727 case 'b': dir = BACKWARD; break;
14728 case 'w': p_ws = TRUE; break;
14729 case 'W': p_ws = FALSE; break;
14730 default: mask = 0;
14731 if (flagsp != NULL)
14732 switch (*flags)
14733 {
Bram Moolenaar0e34f622006-03-03 23:00:03 +000014734 case 'c': mask = SP_START; break;
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014735 case 'e': mask = SP_END; break;
14736 case 'm': mask = SP_RETCOUNT; break;
14737 case 'n': mask = SP_NOMOVE; break;
14738 case 'p': mask = SP_SUBPAT; break;
14739 case 'r': mask = SP_REPEAT; break;
14740 case 's': mask = SP_SETPCMARK; break;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014741 }
14742 if (mask == 0)
14743 {
14744 EMSG2(_(e_invarg2), flags);
14745 dir = 0;
14746 }
14747 else
14748 *flagsp |= mask;
14749 }
14750 if (dir == 0)
14751 break;
14752 ++flags;
14753 }
14754 }
14755 return dir;
14756}
14757
Bram Moolenaar071d4272004-06-13 20:20:40 +000014758/*
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014759 * Shared by search() and searchpos() functions
Bram Moolenaar071d4272004-06-13 20:20:40 +000014760 */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014761 static int
Bram Moolenaar362e1a32006-03-06 23:29:24 +000014762search_cmn(argvars, match_pos, flagsp)
Bram Moolenaar33570922005-01-25 22:26:29 +000014763 typval_T *argvars;
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014764 pos_T *match_pos;
Bram Moolenaar362e1a32006-03-06 23:29:24 +000014765 int *flagsp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014766{
Bram Moolenaar362e1a32006-03-06 23:29:24 +000014767 int flags;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014768 char_u *pat;
14769 pos_T pos;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014770 pos_T save_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014771 int save_p_ws = p_ws;
14772 int dir;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014773 int retval = 0; /* default: FAIL */
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014774 long lnum_stop = 0;
Bram Moolenaar76929292008-01-06 19:07:36 +000014775 proftime_T tm;
14776#ifdef FEAT_RELTIME
14777 long time_limit = 0;
14778#endif
Bram Moolenaar0e34f622006-03-03 23:00:03 +000014779 int options = SEARCH_KEEP;
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014780 int subpatnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014781
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014782 pat = get_tv_string(&argvars[0]);
Bram Moolenaar362e1a32006-03-06 23:29:24 +000014783 dir = get_search_arg(&argvars[1], flagsp); /* may set p_ws */
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014784 if (dir == 0)
14785 goto theend;
Bram Moolenaar362e1a32006-03-06 23:29:24 +000014786 flags = *flagsp;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000014787 if (flags & SP_START)
14788 options |= SEARCH_START;
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014789 if (flags & SP_END)
14790 options |= SEARCH_END;
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014791
Bram Moolenaar76929292008-01-06 19:07:36 +000014792 /* Optional arguments: line number to stop searching and timeout. */
14793 if (argvars[1].v_type != VAR_UNKNOWN && argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014794 {
14795 lnum_stop = get_tv_number_chk(&argvars[2], NULL);
14796 if (lnum_stop < 0)
14797 goto theend;
Bram Moolenaar76929292008-01-06 19:07:36 +000014798#ifdef FEAT_RELTIME
14799 if (argvars[3].v_type != VAR_UNKNOWN)
14800 {
14801 time_limit = get_tv_number_chk(&argvars[3], NULL);
14802 if (time_limit < 0)
14803 goto theend;
14804 }
14805#endif
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014806 }
14807
Bram Moolenaar76929292008-01-06 19:07:36 +000014808#ifdef FEAT_RELTIME
14809 /* Set the time limit, if there is one. */
14810 profile_setlimit(time_limit, &tm);
14811#endif
14812
Bram Moolenaar231334e2005-07-25 20:46:57 +000014813 /*
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014814 * This function does not accept SP_REPEAT and SP_RETCOUNT flags.
Bram Moolenaar231334e2005-07-25 20:46:57 +000014815 * Check to make sure only those flags are set.
14816 * Also, Only the SP_NOMOVE or the SP_SETPCMARK flag can be set. Both
14817 * flags cannot be set. Check for that condition also.
14818 */
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014819 if (((flags & (SP_REPEAT | SP_RETCOUNT)) != 0)
Bram Moolenaar0e34f622006-03-03 23:00:03 +000014820 || ((flags & SP_NOMOVE) && (flags & SP_SETPCMARK)))
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014821 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014822 EMSG2(_(e_invarg2), get_tv_string(&argvars[1]));
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014823 goto theend;
14824 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000014825
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014826 pos = save_cursor = curwin->w_cursor;
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014827 subpatnum = searchit(curwin, curbuf, &pos, dir, pat, 1L,
Bram Moolenaar76929292008-01-06 19:07:36 +000014828 options, RE_SEARCH, (linenr_T)lnum_stop, &tm);
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014829 if (subpatnum != FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000014830 {
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014831 if (flags & SP_SUBPAT)
14832 retval = subpatnum;
14833 else
14834 retval = pos.lnum;
Bram Moolenaar231334e2005-07-25 20:46:57 +000014835 if (flags & SP_SETPCMARK)
14836 setpcmark();
Bram Moolenaar071d4272004-06-13 20:20:40 +000014837 curwin->w_cursor = pos;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014838 if (match_pos != NULL)
14839 {
14840 /* Store the match cursor position */
14841 match_pos->lnum = pos.lnum;
14842 match_pos->col = pos.col + 1;
14843 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000014844 /* "/$" will put the cursor after the end of the line, may need to
14845 * correct that here */
14846 check_cursor();
14847 }
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014848
14849 /* If 'n' flag is used: restore cursor position. */
14850 if (flags & SP_NOMOVE)
14851 curwin->w_cursor = save_cursor;
Bram Moolenaar7a42fa32007-07-10 11:28:55 +000014852 else
14853 curwin->w_set_curswant = TRUE;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014854theend:
Bram Moolenaar071d4272004-06-13 20:20:40 +000014855 p_ws = save_p_ws;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014856
14857 return retval;
14858}
14859
Bram Moolenaar8c8de832008-06-24 22:58:06 +000014860#ifdef FEAT_FLOAT
14861/*
14862 * "round({float})" function
14863 */
14864 static void
14865f_round(argvars, rettv)
14866 typval_T *argvars;
14867 typval_T *rettv;
14868{
14869 float_T f;
14870
14871 rettv->v_type = VAR_FLOAT;
14872 if (get_float_arg(argvars, &f) == OK)
14873 /* round() is not in C90, use ceil() or floor() instead. */
14874 rettv->vval.v_float = f > 0 ? floor(f + 0.5) : ceil(f - 0.5);
14875 else
14876 rettv->vval.v_float = 0.0;
14877}
14878#endif
14879
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014880/*
14881 * "search()" function
14882 */
14883 static void
14884f_search(argvars, rettv)
14885 typval_T *argvars;
14886 typval_T *rettv;
14887{
Bram Moolenaar362e1a32006-03-06 23:29:24 +000014888 int flags = 0;
14889
14890 rettv->vval.v_number = search_cmn(argvars, NULL, &flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014891}
14892
Bram Moolenaar071d4272004-06-13 20:20:40 +000014893/*
Bram Moolenaardd2436f2005-09-05 22:14:46 +000014894 * "searchdecl()" function
14895 */
14896 static void
14897f_searchdecl(argvars, rettv)
14898 typval_T *argvars;
14899 typval_T *rettv;
14900{
14901 int locally = 1;
Bram Moolenaare6facf92005-09-13 21:22:27 +000014902 int thisblock = 0;
Bram Moolenaardd2436f2005-09-05 22:14:46 +000014903 int error = FALSE;
14904 char_u *name;
14905
14906 rettv->vval.v_number = 1; /* default: FAIL */
14907
14908 name = get_tv_string_chk(&argvars[0]);
14909 if (argvars[1].v_type != VAR_UNKNOWN)
Bram Moolenaare6facf92005-09-13 21:22:27 +000014910 {
Bram Moolenaardd2436f2005-09-05 22:14:46 +000014911 locally = get_tv_number_chk(&argvars[1], &error) == 0;
Bram Moolenaare6facf92005-09-13 21:22:27 +000014912 if (!error && argvars[2].v_type != VAR_UNKNOWN)
14913 thisblock = get_tv_number_chk(&argvars[2], &error) != 0;
14914 }
Bram Moolenaardd2436f2005-09-05 22:14:46 +000014915 if (!error && name != NULL)
14916 rettv->vval.v_number = find_decl(name, (int)STRLEN(name),
Bram Moolenaare6facf92005-09-13 21:22:27 +000014917 locally, thisblock, SEARCH_KEEP) == FAIL;
Bram Moolenaardd2436f2005-09-05 22:14:46 +000014918}
14919
14920/*
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014921 * Used by searchpair() and searchpairpos()
Bram Moolenaar071d4272004-06-13 20:20:40 +000014922 */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014923 static int
14924searchpair_cmn(argvars, match_pos)
Bram Moolenaar33570922005-01-25 22:26:29 +000014925 typval_T *argvars;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014926 pos_T *match_pos;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014927{
14928 char_u *spat, *mpat, *epat;
14929 char_u *skip;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014930 int save_p_ws = p_ws;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014931 int dir;
14932 int flags = 0;
14933 char_u nbuf1[NUMBUFLEN];
14934 char_u nbuf2[NUMBUFLEN];
14935 char_u nbuf3[NUMBUFLEN];
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014936 int retval = 0; /* default: FAIL */
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014937 long lnum_stop = 0;
Bram Moolenaar76929292008-01-06 19:07:36 +000014938 long time_limit = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014939
Bram Moolenaar071d4272004-06-13 20:20:40 +000014940 /* Get the three pattern arguments: start, middle, end. */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014941 spat = get_tv_string_chk(&argvars[0]);
14942 mpat = get_tv_string_buf_chk(&argvars[1], nbuf1);
14943 epat = get_tv_string_buf_chk(&argvars[2], nbuf2);
14944 if (spat == NULL || mpat == NULL || epat == NULL)
14945 goto theend; /* type error */
Bram Moolenaar071d4272004-06-13 20:20:40 +000014946
Bram Moolenaar071d4272004-06-13 20:20:40 +000014947 /* Handle the optional fourth argument: flags */
14948 dir = get_search_arg(&argvars[3], &flags); /* may set p_ws */
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014949 if (dir == 0)
14950 goto theend;
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014951
14952 /* Don't accept SP_END or SP_SUBPAT.
Bram Moolenaar231334e2005-07-25 20:46:57 +000014953 * Only one of the SP_NOMOVE or SP_SETPCMARK flags can be set.
14954 */
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014955 if ((flags & (SP_END | SP_SUBPAT)) != 0
14956 || ((flags & SP_NOMOVE) && (flags & SP_SETPCMARK)))
Bram Moolenaar231334e2005-07-25 20:46:57 +000014957 {
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014958 EMSG2(_(e_invarg2), get_tv_string(&argvars[3]));
Bram Moolenaar231334e2005-07-25 20:46:57 +000014959 goto theend;
14960 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000014961
Bram Moolenaar92de73d2008-01-22 10:59:38 +000014962 /* Using 'r' implies 'W', otherwise it doesn't work. */
14963 if (flags & SP_REPEAT)
14964 p_ws = FALSE;
14965
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014966 /* Optional fifth argument: skip expression */
Bram Moolenaar49cd9572005-01-03 21:06:01 +000014967 if (argvars[3].v_type == VAR_UNKNOWN
14968 || argvars[4].v_type == VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000014969 skip = (char_u *)"";
14970 else
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014971 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014972 skip = get_tv_string_buf_chk(&argvars[4], nbuf3);
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014973 if (argvars[5].v_type != VAR_UNKNOWN)
14974 {
14975 lnum_stop = get_tv_number_chk(&argvars[5], NULL);
14976 if (lnum_stop < 0)
14977 goto theend;
Bram Moolenaar76929292008-01-06 19:07:36 +000014978#ifdef FEAT_RELTIME
14979 if (argvars[6].v_type != VAR_UNKNOWN)
14980 {
14981 time_limit = get_tv_number_chk(&argvars[6], NULL);
14982 if (time_limit < 0)
14983 goto theend;
14984 }
14985#endif
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014986 }
14987 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014988 if (skip == NULL)
14989 goto theend; /* type error */
Bram Moolenaar071d4272004-06-13 20:20:40 +000014990
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014991 retval = do_searchpair(spat, mpat, epat, dir, skip, flags,
Bram Moolenaar76929292008-01-06 19:07:36 +000014992 match_pos, lnum_stop, time_limit);
Bram Moolenaar9fad3082005-07-19 22:22:13 +000014993
14994theend:
14995 p_ws = save_p_ws;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014996
14997 return retval;
14998}
14999
15000/*
15001 * "searchpair()" function
15002 */
15003 static void
15004f_searchpair(argvars, rettv)
15005 typval_T *argvars;
15006 typval_T *rettv;
15007{
15008 rettv->vval.v_number = searchpair_cmn(argvars, NULL);
15009}
15010
15011/*
15012 * "searchpairpos()" function
15013 */
15014 static void
15015f_searchpairpos(argvars, rettv)
15016 typval_T *argvars;
15017 typval_T *rettv;
15018{
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015019 pos_T match_pos;
15020 int lnum = 0;
15021 int col = 0;
15022
15023 rettv->vval.v_number = 0;
15024
Bram Moolenaareddf53b2006-02-27 00:11:10 +000015025 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015026 return;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015027
15028 if (searchpair_cmn(argvars, &match_pos) > 0)
15029 {
15030 lnum = match_pos.lnum;
15031 col = match_pos.col;
15032 }
15033
Bram Moolenaareddf53b2006-02-27 00:11:10 +000015034 list_append_number(rettv->vval.v_list, (varnumber_T)lnum);
15035 list_append_number(rettv->vval.v_list, (varnumber_T)col);
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015036}
15037
15038/*
15039 * Search for a start/middle/end thing.
15040 * Used by searchpair(), see its documentation for the details.
15041 * Returns 0 or -1 for no match,
15042 */
15043 long
Bram Moolenaar76929292008-01-06 19:07:36 +000015044do_searchpair(spat, mpat, epat, dir, skip, flags, match_pos,
15045 lnum_stop, time_limit)
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015046 char_u *spat; /* start pattern */
15047 char_u *mpat; /* middle pattern */
15048 char_u *epat; /* end pattern */
15049 int dir; /* BACKWARD or FORWARD */
15050 char_u *skip; /* skip expression */
Bram Moolenaar768b8c42006-03-04 21:58:33 +000015051 int flags; /* SP_SETPCMARK and other SP_ values */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015052 pos_T *match_pos;
Bram Moolenaareddf53b2006-02-27 00:11:10 +000015053 linenr_T lnum_stop; /* stop at this line if not zero */
Bram Moolenaar76929292008-01-06 19:07:36 +000015054 long time_limit; /* stop after this many msec */
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015055{
15056 char_u *save_cpo;
15057 char_u *pat, *pat2 = NULL, *pat3 = NULL;
15058 long retval = 0;
15059 pos_T pos;
15060 pos_T firstpos;
15061 pos_T foundpos;
15062 pos_T save_cursor;
15063 pos_T save_pos;
15064 int n;
15065 int r;
15066 int nest = 1;
15067 int err;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015068 int options = SEARCH_KEEP;
Bram Moolenaar76929292008-01-06 19:07:36 +000015069 proftime_T tm;
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015070
15071 /* Make 'cpoptions' empty, the 'l' flag should not be used here. */
15072 save_cpo = p_cpo;
Bram Moolenaar9c24ccc2008-07-14 21:05:15 +000015073 p_cpo = empty_option;
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015074
Bram Moolenaar76929292008-01-06 19:07:36 +000015075#ifdef FEAT_RELTIME
15076 /* Set the time limit, if there is one. */
15077 profile_setlimit(time_limit, &tm);
15078#endif
15079
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015080 /* Make two search patterns: start/end (pat2, for in nested pairs) and
15081 * start/middle/end (pat3, for the top pair). */
15082 pat2 = alloc((unsigned)(STRLEN(spat) + STRLEN(epat) + 15));
15083 pat3 = alloc((unsigned)(STRLEN(spat) + STRLEN(mpat) + STRLEN(epat) + 23));
15084 if (pat2 == NULL || pat3 == NULL)
15085 goto theend;
15086 sprintf((char *)pat2, "\\(%s\\m\\)\\|\\(%s\\m\\)", spat, epat);
15087 if (*mpat == NUL)
15088 STRCPY(pat3, pat2);
15089 else
15090 sprintf((char *)pat3, "\\(%s\\m\\)\\|\\(%s\\m\\)\\|\\(%s\\m\\)",
15091 spat, epat, mpat);
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015092 if (flags & SP_START)
15093 options |= SEARCH_START;
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015094
Bram Moolenaar071d4272004-06-13 20:20:40 +000015095 save_cursor = curwin->w_cursor;
15096 pos = curwin->w_cursor;
Bram Moolenaar261bfea2006-03-01 22:12:31 +000015097 clearpos(&firstpos);
15098 clearpos(&foundpos);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015099 pat = pat3;
15100 for (;;)
15101 {
15102 n = searchit(curwin, curbuf, &pos, dir, pat, 1L,
Bram Moolenaar76929292008-01-06 19:07:36 +000015103 options, RE_SEARCH, lnum_stop, &tm);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015104 if (n == FAIL || (firstpos.lnum != 0 && equalpos(pos, firstpos)))
15105 /* didn't find it or found the first match again: FAIL */
15106 break;
15107
15108 if (firstpos.lnum == 0)
15109 firstpos = pos;
Bram Moolenaarc9a2d2e2005-04-24 22:09:56 +000015110 if (equalpos(pos, foundpos))
15111 {
15112 /* Found the same position again. Can happen with a pattern that
15113 * has "\zs" at the end and searching backwards. Advance one
15114 * character and try again. */
15115 if (dir == BACKWARD)
15116 decl(&pos);
15117 else
15118 incl(&pos);
15119 }
15120 foundpos = pos;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015121
Bram Moolenaar92de73d2008-01-22 10:59:38 +000015122 /* clear the start flag to avoid getting stuck here */
15123 options &= ~SEARCH_START;
15124
Bram Moolenaar071d4272004-06-13 20:20:40 +000015125 /* If the skip pattern matches, ignore this match. */
15126 if (*skip != NUL)
15127 {
15128 save_pos = curwin->w_cursor;
15129 curwin->w_cursor = pos;
15130 r = eval_to_bool(skip, &err, NULL, FALSE);
15131 curwin->w_cursor = save_pos;
15132 if (err)
15133 {
15134 /* Evaluating {skip} caused an error, break here. */
15135 curwin->w_cursor = save_cursor;
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015136 retval = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015137 break;
15138 }
15139 if (r)
15140 continue;
15141 }
15142
15143 if ((dir == BACKWARD && n == 3) || (dir == FORWARD && n == 2))
15144 {
15145 /* Found end when searching backwards or start when searching
15146 * forward: nested pair. */
15147 ++nest;
15148 pat = pat2; /* nested, don't search for middle */
15149 }
15150 else
15151 {
15152 /* Found end when searching forward or start when searching
15153 * backward: end of (nested) pair; or found middle in outer pair. */
15154 if (--nest == 1)
15155 pat = pat3; /* outer level, search for middle */
15156 }
15157
15158 if (nest == 0)
15159 {
15160 /* Found the match: return matchcount or line number. */
15161 if (flags & SP_RETCOUNT)
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015162 ++retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015163 else
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015164 retval = pos.lnum;
Bram Moolenaar231334e2005-07-25 20:46:57 +000015165 if (flags & SP_SETPCMARK)
15166 setpcmark();
Bram Moolenaar071d4272004-06-13 20:20:40 +000015167 curwin->w_cursor = pos;
15168 if (!(flags & SP_REPEAT))
15169 break;
15170 nest = 1; /* search for next unmatched */
15171 }
15172 }
15173
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015174 if (match_pos != NULL)
15175 {
15176 /* Store the match cursor position */
15177 match_pos->lnum = curwin->w_cursor.lnum;
15178 match_pos->col = curwin->w_cursor.col + 1;
15179 }
15180
Bram Moolenaar071d4272004-06-13 20:20:40 +000015181 /* If 'n' flag is used or search failed: restore cursor position. */
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015182 if ((flags & SP_NOMOVE) || retval == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000015183 curwin->w_cursor = save_cursor;
15184
15185theend:
15186 vim_free(pat2);
15187 vim_free(pat3);
Bram Moolenaar9c24ccc2008-07-14 21:05:15 +000015188 if (p_cpo == empty_option)
15189 p_cpo = save_cpo;
15190 else
15191 /* Darn, evaluating the {skip} expression changed the value. */
15192 free_string_option(save_cpo);
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015193
15194 return retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015195}
15196
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015197/*
15198 * "searchpos()" function
15199 */
15200 static void
15201f_searchpos(argvars, rettv)
15202 typval_T *argvars;
15203 typval_T *rettv;
15204{
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015205 pos_T match_pos;
15206 int lnum = 0;
15207 int col = 0;
Bram Moolenaar362e1a32006-03-06 23:29:24 +000015208 int n;
15209 int flags = 0;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015210
15211 rettv->vval.v_number = 0;
15212
Bram Moolenaareddf53b2006-02-27 00:11:10 +000015213 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015214 return;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015215
Bram Moolenaar362e1a32006-03-06 23:29:24 +000015216 n = search_cmn(argvars, &match_pos, &flags);
15217 if (n > 0)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015218 {
15219 lnum = match_pos.lnum;
15220 col = match_pos.col;
15221 }
15222
Bram Moolenaareddf53b2006-02-27 00:11:10 +000015223 list_append_number(rettv->vval.v_list, (varnumber_T)lnum);
15224 list_append_number(rettv->vval.v_list, (varnumber_T)col);
Bram Moolenaar362e1a32006-03-06 23:29:24 +000015225 if (flags & SP_SUBPAT)
15226 list_append_number(rettv->vval.v_list, (varnumber_T)n);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015227}
15228
15229
Bram Moolenaar0d660222005-01-07 21:51:51 +000015230/*ARGSUSED*/
15231 static void
15232f_server2client(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000015233 typval_T *argvars;
15234 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015235{
Bram Moolenaar0d660222005-01-07 21:51:51 +000015236#ifdef FEAT_CLIENTSERVER
15237 char_u buf[NUMBUFLEN];
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015238 char_u *server = get_tv_string_chk(&argvars[0]);
15239 char_u *reply = get_tv_string_buf_chk(&argvars[1], buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015240
Bram Moolenaar0d660222005-01-07 21:51:51 +000015241 rettv->vval.v_number = -1;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015242 if (server == NULL || reply == NULL)
15243 return;
Bram Moolenaar0d660222005-01-07 21:51:51 +000015244 if (check_restricted() || check_secure())
15245 return;
15246# ifdef FEAT_X11
15247 if (check_connection() == FAIL)
15248 return;
15249# endif
15250
15251 if (serverSendReply(server, reply) < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000015252 {
Bram Moolenaar0d660222005-01-07 21:51:51 +000015253 EMSG(_("E258: Unable to send to client"));
15254 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015255 }
Bram Moolenaar0d660222005-01-07 21:51:51 +000015256 rettv->vval.v_number = 0;
15257#else
15258 rettv->vval.v_number = -1;
15259#endif
15260}
15261
15262/*ARGSUSED*/
15263 static void
15264f_serverlist(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000015265 typval_T *argvars;
15266 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000015267{
15268 char_u *r = NULL;
15269
15270#ifdef FEAT_CLIENTSERVER
15271# ifdef WIN32
15272 r = serverGetVimNames();
15273# else
15274 make_connection();
15275 if (X_DISPLAY != NULL)
15276 r = serverGetVimNames(X_DISPLAY);
15277# endif
15278#endif
15279 rettv->v_type = VAR_STRING;
15280 rettv->vval.v_string = r;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015281}
15282
15283/*
15284 * "setbufvar()" function
15285 */
15286/*ARGSUSED*/
15287 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000015288f_setbufvar(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000015289 typval_T *argvars;
15290 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015291{
15292 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015293 aco_save_T aco;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015294 char_u *varname, *bufvarname;
Bram Moolenaar33570922005-01-25 22:26:29 +000015295 typval_T *varp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015296 char_u nbuf[NUMBUFLEN];
15297
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015298 rettv->vval.v_number = 0;
15299
Bram Moolenaar071d4272004-06-13 20:20:40 +000015300 if (check_restricted() || check_secure())
15301 return;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015302 (void)get_tv_number(&argvars[0]); /* issue errmsg if type error */
15303 varname = get_tv_string_chk(&argvars[1]);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000015304 buf = get_buf_tv(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015305 varp = &argvars[2];
15306
15307 if (buf != NULL && varname != NULL && varp != NULL)
15308 {
15309 /* set curbuf to be our buf, temporarily */
Bram Moolenaar071d4272004-06-13 20:20:40 +000015310 aucmd_prepbuf(&aco, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015311
15312 if (*varname == '&')
15313 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015314 long numval;
15315 char_u *strval;
15316 int error = FALSE;
15317
Bram Moolenaar071d4272004-06-13 20:20:40 +000015318 ++varname;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015319 numval = get_tv_number_chk(varp, &error);
15320 strval = get_tv_string_buf_chk(varp, nbuf);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015321 if (!error && strval != NULL)
15322 set_option_value(varname, numval, strval, OPT_LOCAL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015323 }
15324 else
15325 {
15326 bufvarname = alloc((unsigned)STRLEN(varname) + 3);
15327 if (bufvarname != NULL)
15328 {
15329 STRCPY(bufvarname, "b:");
15330 STRCPY(bufvarname + 2, varname);
Bram Moolenaar1c2fda22005-01-02 11:43:19 +000015331 set_var(bufvarname, varp, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015332 vim_free(bufvarname);
15333 }
15334 }
15335
15336 /* reset notion of buffer */
Bram Moolenaar071d4272004-06-13 20:20:40 +000015337 aucmd_restbuf(&aco);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015338 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000015339}
15340
15341/*
15342 * "setcmdpos()" function
15343 */
15344 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000015345f_setcmdpos(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000015346 typval_T *argvars;
15347 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015348{
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015349 int pos = (int)get_tv_number(&argvars[0]) - 1;
15350
15351 if (pos >= 0)
15352 rettv->vval.v_number = set_cmdline_pos(pos);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015353}
15354
15355/*
15356 * "setline()" function
15357 */
15358 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000015359f_setline(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000015360 typval_T *argvars;
15361 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015362{
15363 linenr_T lnum;
Bram Moolenaar0e6830e2005-05-27 20:23:44 +000015364 char_u *line = NULL;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015365 list_T *l = NULL;
15366 listitem_T *li = NULL;
15367 long added = 0;
15368 linenr_T lcount = curbuf->b_ml.ml_line_count;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015369
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015370 lnum = get_tv_lnum(&argvars[0]);
15371 if (argvars[1].v_type == VAR_LIST)
Bram Moolenaar071d4272004-06-13 20:20:40 +000015372 {
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015373 l = argvars[1].vval.v_list;
15374 li = l->lv_first;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015375 }
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015376 else
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015377 line = get_tv_string_chk(&argvars[1]);
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015378
15379 rettv->vval.v_number = 0; /* OK */
15380 for (;;)
15381 {
15382 if (l != NULL)
15383 {
15384 /* list argument, get next string */
15385 if (li == NULL)
15386 break;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015387 line = get_tv_string_chk(&li->li_tv);
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015388 li = li->li_next;
15389 }
15390
15391 rettv->vval.v_number = 1; /* FAIL */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015392 if (line == NULL || lnum < 1 || lnum > curbuf->b_ml.ml_line_count + 1)
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015393 break;
15394 if (lnum <= curbuf->b_ml.ml_line_count)
15395 {
15396 /* existing line, replace it */
15397 if (u_savesub(lnum) == OK && ml_replace(lnum, line, TRUE) == OK)
15398 {
15399 changed_bytes(lnum, 0);
Bram Moolenaar87c19962007-04-26 08:54:21 +000015400 if (lnum == curwin->w_cursor.lnum)
15401 check_cursor_col();
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015402 rettv->vval.v_number = 0; /* OK */
15403 }
15404 }
15405 else if (added > 0 || u_save(lnum - 1, lnum) == OK)
15406 {
15407 /* lnum is one past the last line, append the line */
15408 ++added;
15409 if (ml_append(lnum - 1, line, (colnr_T)0, FALSE) == OK)
15410 rettv->vval.v_number = 0; /* OK */
15411 }
15412
15413 if (l == NULL) /* only one string argument */
15414 break;
15415 ++lnum;
15416 }
15417
15418 if (added > 0)
15419 appended_lines_mark(lcount, added);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015420}
15421
Bram Moolenaard9ff7d52008-03-20 12:23:49 +000015422static void set_qf_ll_list __ARGS((win_T *wp, typval_T *list_arg, typval_T *action_arg, typval_T *rettv));
15423
Bram Moolenaar071d4272004-06-13 20:20:40 +000015424/*
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015425 * Used by "setqflist()" and "setloclist()" functions
Bram Moolenaar2641f772005-03-25 21:58:17 +000015426 */
15427/*ARGSUSED*/
15428 static void
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015429set_qf_ll_list(wp, list_arg, action_arg, rettv)
15430 win_T *wp;
15431 typval_T *list_arg;
15432 typval_T *action_arg;
Bram Moolenaar2641f772005-03-25 21:58:17 +000015433 typval_T *rettv;
15434{
Bram Moolenaar0ac93792006-01-21 22:16:51 +000015435#ifdef FEAT_QUICKFIX
Bram Moolenaarf4630b62005-05-20 21:31:17 +000015436 char_u *act;
15437 int action = ' ';
Bram Moolenaar0ac93792006-01-21 22:16:51 +000015438#endif
Bram Moolenaarf4630b62005-05-20 21:31:17 +000015439
Bram Moolenaar2641f772005-03-25 21:58:17 +000015440 rettv->vval.v_number = -1;
15441
15442#ifdef FEAT_QUICKFIX
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015443 if (list_arg->v_type != VAR_LIST)
Bram Moolenaar2641f772005-03-25 21:58:17 +000015444 EMSG(_(e_listreq));
15445 else
15446 {
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015447 list_T *l = list_arg->vval.v_list;
Bram Moolenaar2641f772005-03-25 21:58:17 +000015448
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015449 if (action_arg->v_type == VAR_STRING)
Bram Moolenaarf4630b62005-05-20 21:31:17 +000015450 {
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015451 act = get_tv_string_chk(action_arg);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015452 if (act == NULL)
15453 return; /* type error; errmsg already given */
Bram Moolenaarf4630b62005-05-20 21:31:17 +000015454 if (*act == 'a' || *act == 'r')
15455 action = *act;
15456 }
15457
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015458 if (l != NULL && set_errorlist(wp, l, action) == OK)
Bram Moolenaar2641f772005-03-25 21:58:17 +000015459 rettv->vval.v_number = 0;
15460 }
15461#endif
15462}
15463
15464/*
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015465 * "setloclist()" function
15466 */
15467/*ARGSUSED*/
15468 static void
15469f_setloclist(argvars, rettv)
15470 typval_T *argvars;
15471 typval_T *rettv;
15472{
15473 win_T *win;
15474
15475 rettv->vval.v_number = -1;
15476
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015477 win = find_win_by_nr(&argvars[0], NULL);
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015478 if (win != NULL)
15479 set_qf_ll_list(win, &argvars[1], &argvars[2], rettv);
15480}
15481
15482/*
Bram Moolenaar6ee10162007-07-26 20:58:42 +000015483 * "setmatches()" function
15484 */
15485 static void
15486f_setmatches(argvars, rettv)
15487 typval_T *argvars;
15488 typval_T *rettv;
15489{
15490#ifdef FEAT_SEARCH_EXTRA
15491 list_T *l;
15492 listitem_T *li;
15493 dict_T *d;
15494
15495 rettv->vval.v_number = -1;
15496 if (argvars[0].v_type != VAR_LIST)
15497 {
15498 EMSG(_(e_listreq));
15499 return;
15500 }
15501 if ((l = argvars[0].vval.v_list) != NULL)
15502 {
15503
15504 /* To some extent make sure that we are dealing with a list from
15505 * "getmatches()". */
15506 li = l->lv_first;
15507 while (li != NULL)
15508 {
15509 if (li->li_tv.v_type != VAR_DICT
15510 || (d = li->li_tv.vval.v_dict) == NULL)
15511 {
15512 EMSG(_(e_invarg));
15513 return;
15514 }
15515 if (!(dict_find(d, (char_u *)"group", -1) != NULL
15516 && dict_find(d, (char_u *)"pattern", -1) != NULL
15517 && dict_find(d, (char_u *)"priority", -1) != NULL
15518 && dict_find(d, (char_u *)"id", -1) != NULL))
15519 {
15520 EMSG(_(e_invarg));
15521 return;
15522 }
15523 li = li->li_next;
15524 }
15525
15526 clear_matches(curwin);
15527 li = l->lv_first;
15528 while (li != NULL)
15529 {
15530 d = li->li_tv.vval.v_dict;
15531 match_add(curwin, get_dict_string(d, (char_u *)"group", FALSE),
15532 get_dict_string(d, (char_u *)"pattern", FALSE),
15533 (int)get_dict_number(d, (char_u *)"priority"),
15534 (int)get_dict_number(d, (char_u *)"id"));
15535 li = li->li_next;
15536 }
15537 rettv->vval.v_number = 0;
15538 }
15539#endif
15540}
15541
15542/*
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015543 * "setpos()" function
15544 */
15545/*ARGSUSED*/
15546 static void
15547f_setpos(argvars, rettv)
15548 typval_T *argvars;
15549 typval_T *rettv;
15550{
15551 pos_T pos;
15552 int fnum;
15553 char_u *name;
15554
Bram Moolenaar08250432008-02-13 11:42:46 +000015555 rettv->vval.v_number = -1;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015556 name = get_tv_string_chk(argvars);
15557 if (name != NULL)
15558 {
15559 if (list2fpos(&argvars[1], &pos, &fnum) == OK)
15560 {
15561 --pos.col;
Bram Moolenaar08250432008-02-13 11:42:46 +000015562 if (name[0] == '.' && name[1] == NUL)
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015563 {
Bram Moolenaar08250432008-02-13 11:42:46 +000015564 /* set cursor */
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015565 if (fnum == curbuf->b_fnum)
15566 {
15567 curwin->w_cursor = pos;
15568 check_cursor();
Bram Moolenaar08250432008-02-13 11:42:46 +000015569 rettv->vval.v_number = 0;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015570 }
15571 else
15572 EMSG(_(e_invarg));
15573 }
Bram Moolenaar08250432008-02-13 11:42:46 +000015574 else if (name[0] == '\'' && name[1] != NUL && name[2] == NUL)
15575 {
15576 /* set mark */
15577 if (setmark_pos(name[1], &pos, fnum) == OK)
15578 rettv->vval.v_number = 0;
15579 }
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015580 else
15581 EMSG(_(e_invarg));
15582 }
15583 }
15584}
15585
15586/*
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015587 * "setqflist()" function
15588 */
15589/*ARGSUSED*/
15590 static void
15591f_setqflist(argvars, rettv)
15592 typval_T *argvars;
15593 typval_T *rettv;
15594{
15595 set_qf_ll_list(NULL, &argvars[0], &argvars[1], rettv);
15596}
15597
15598/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000015599 * "setreg()" function
15600 */
15601 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000015602f_setreg(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000015603 typval_T *argvars;
15604 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015605{
15606 int regname;
15607 char_u *strregname;
15608 char_u *stropt;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015609 char_u *strval;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015610 int append;
15611 char_u yank_type;
15612 long block_len;
15613
15614 block_len = -1;
15615 yank_type = MAUTO;
15616 append = FALSE;
15617
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015618 strregname = get_tv_string_chk(argvars);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000015619 rettv->vval.v_number = 1; /* FAIL is default */
Bram Moolenaar071d4272004-06-13 20:20:40 +000015620
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015621 if (strregname == NULL)
15622 return; /* type error; errmsg already given */
15623 regname = *strregname;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015624 if (regname == 0 || regname == '@')
15625 regname = '"';
15626 else if (regname == '=')
15627 return;
15628
Bram Moolenaar49cd9572005-01-03 21:06:01 +000015629 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000015630 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015631 stropt = get_tv_string_chk(&argvars[2]);
15632 if (stropt == NULL)
15633 return; /* type error */
15634 for (; *stropt != NUL; ++stropt)
Bram Moolenaar071d4272004-06-13 20:20:40 +000015635 switch (*stropt)
15636 {
15637 case 'a': case 'A': /* append */
15638 append = TRUE;
15639 break;
15640 case 'v': case 'c': /* character-wise selection */
15641 yank_type = MCHAR;
15642 break;
15643 case 'V': case 'l': /* line-wise selection */
15644 yank_type = MLINE;
15645 break;
15646#ifdef FEAT_VISUAL
15647 case 'b': case Ctrl_V: /* block-wise selection */
15648 yank_type = MBLOCK;
15649 if (VIM_ISDIGIT(stropt[1]))
15650 {
15651 ++stropt;
15652 block_len = getdigits(&stropt) - 1;
15653 --stropt;
15654 }
15655 break;
15656#endif
15657 }
15658 }
15659
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015660 strval = get_tv_string_chk(&argvars[1]);
15661 if (strval != NULL)
15662 write_reg_contents_ex(regname, strval, -1,
Bram Moolenaar071d4272004-06-13 20:20:40 +000015663 append, yank_type, block_len);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000015664 rettv->vval.v_number = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015665}
15666
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015667/*
15668 * "settabwinvar()" function
15669 */
15670 static void
15671f_settabwinvar(argvars, rettv)
15672 typval_T *argvars;
15673 typval_T *rettv;
15674{
15675 setwinvar(argvars, rettv, 1);
15676}
Bram Moolenaar071d4272004-06-13 20:20:40 +000015677
15678/*
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015679 * "setwinvar()" function
Bram Moolenaar071d4272004-06-13 20:20:40 +000015680 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000015681 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000015682f_setwinvar(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000015683 typval_T *argvars;
15684 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015685{
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015686 setwinvar(argvars, rettv, 0);
15687}
15688
15689/*
15690 * "setwinvar()" and "settabwinvar()" functions
15691 */
15692 static void
15693setwinvar(argvars, rettv, off)
15694 typval_T *argvars;
15695 typval_T *rettv;
15696 int off;
15697{
Bram Moolenaar071d4272004-06-13 20:20:40 +000015698 win_T *win;
15699#ifdef FEAT_WINDOWS
15700 win_T *save_curwin;
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015701 tabpage_T *save_curtab;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015702#endif
15703 char_u *varname, *winvarname;
Bram Moolenaar33570922005-01-25 22:26:29 +000015704 typval_T *varp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015705 char_u nbuf[NUMBUFLEN];
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015706 tabpage_T *tp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015707
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015708 rettv->vval.v_number = 0;
15709
Bram Moolenaar071d4272004-06-13 20:20:40 +000015710 if (check_restricted() || check_secure())
15711 return;
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015712
15713#ifdef FEAT_WINDOWS
15714 if (off == 1)
15715 tp = find_tabpage((int)get_tv_number_chk(&argvars[0], NULL));
15716 else
15717 tp = curtab;
15718#endif
15719 win = find_win_by_nr(&argvars[off], tp);
15720 varname = get_tv_string_chk(&argvars[off + 1]);
15721 varp = &argvars[off + 2];
Bram Moolenaar071d4272004-06-13 20:20:40 +000015722
15723 if (win != NULL && varname != NULL && varp != NULL)
15724 {
15725#ifdef FEAT_WINDOWS
15726 /* set curwin to be our win, temporarily */
15727 save_curwin = curwin;
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015728 save_curtab = curtab;
15729 goto_tabpage_tp(tp);
15730 if (!win_valid(win))
15731 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015732 curwin = win;
15733 curbuf = curwin->w_buffer;
15734#endif
15735
15736 if (*varname == '&')
15737 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015738 long numval;
15739 char_u *strval;
15740 int error = FALSE;
15741
Bram Moolenaar071d4272004-06-13 20:20:40 +000015742 ++varname;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015743 numval = get_tv_number_chk(varp, &error);
15744 strval = get_tv_string_buf_chk(varp, nbuf);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015745 if (!error && strval != NULL)
15746 set_option_value(varname, numval, strval, OPT_LOCAL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015747 }
15748 else
15749 {
15750 winvarname = alloc((unsigned)STRLEN(varname) + 3);
15751 if (winvarname != NULL)
15752 {
15753 STRCPY(winvarname, "w:");
15754 STRCPY(winvarname + 2, varname);
Bram Moolenaar1c2fda22005-01-02 11:43:19 +000015755 set_var(winvarname, varp, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015756 vim_free(winvarname);
15757 }
15758 }
15759
15760#ifdef FEAT_WINDOWS
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015761 /* Restore current tabpage and window, if still valid (autocomands can
15762 * make them invalid). */
15763 if (valid_tabpage(save_curtab))
15764 goto_tabpage_tp(save_curtab);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015765 if (win_valid(save_curwin))
15766 {
15767 curwin = save_curwin;
15768 curbuf = curwin->w_buffer;
15769 }
15770#endif
15771 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000015772}
15773
15774/*
Bram Moolenaar60a495f2006-10-03 12:44:42 +000015775 * "shellescape({string})" function
15776 */
15777 static void
15778f_shellescape(argvars, rettv)
15779 typval_T *argvars;
15780 typval_T *rettv;
15781{
Bram Moolenaar05bb9532008-07-04 09:44:11 +000015782 rettv->vval.v_string = vim_strsave_shellescape(
15783 get_tv_string(&argvars[0]), non_zero_arg(&argvars[1]));
Bram Moolenaar60a495f2006-10-03 12:44:42 +000015784 rettv->v_type = VAR_STRING;
15785}
15786
15787/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000015788 * "simplify()" function
Bram Moolenaar071d4272004-06-13 20:20:40 +000015789 */
15790 static void
Bram Moolenaar0d660222005-01-07 21:51:51 +000015791f_simplify(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000015792 typval_T *argvars;
15793 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015794{
Bram Moolenaar0d660222005-01-07 21:51:51 +000015795 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015796
Bram Moolenaar0d660222005-01-07 21:51:51 +000015797 p = get_tv_string(&argvars[0]);
15798 rettv->vval.v_string = vim_strsave(p);
15799 simplify_filename(rettv->vval.v_string); /* simplify in place */
15800 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015801}
15802
Bram Moolenaar8c8de832008-06-24 22:58:06 +000015803#ifdef FEAT_FLOAT
15804/*
15805 * "sin()" function
15806 */
15807 static void
15808f_sin(argvars, rettv)
15809 typval_T *argvars;
15810 typval_T *rettv;
15811{
15812 float_T f;
15813
15814 rettv->v_type = VAR_FLOAT;
15815 if (get_float_arg(argvars, &f) == OK)
15816 rettv->vval.v_float = sin(f);
15817 else
15818 rettv->vval.v_float = 0.0;
15819}
15820#endif
15821
Bram Moolenaar0d660222005-01-07 21:51:51 +000015822static int
15823#ifdef __BORLANDC__
15824 _RTLENTRYF
15825#endif
15826 item_compare __ARGS((const void *s1, const void *s2));
15827static int
15828#ifdef __BORLANDC__
15829 _RTLENTRYF
15830#endif
15831 item_compare2 __ARGS((const void *s1, const void *s2));
15832
15833static int item_compare_ic;
15834static char_u *item_compare_func;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015835static int item_compare_func_err;
Bram Moolenaar0d660222005-01-07 21:51:51 +000015836#define ITEM_COMPARE_FAIL 999
15837
Bram Moolenaar071d4272004-06-13 20:20:40 +000015838/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000015839 * Compare functions for f_sort() below.
Bram Moolenaar071d4272004-06-13 20:20:40 +000015840 */
Bram Moolenaar0d660222005-01-07 21:51:51 +000015841 static int
15842#ifdef __BORLANDC__
15843_RTLENTRYF
15844#endif
15845item_compare(s1, s2)
15846 const void *s1;
15847 const void *s2;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015848{
Bram Moolenaar0d660222005-01-07 21:51:51 +000015849 char_u *p1, *p2;
15850 char_u *tofree1, *tofree2;
15851 int res;
15852 char_u numbuf1[NUMBUFLEN];
15853 char_u numbuf2[NUMBUFLEN];
Bram Moolenaar071d4272004-06-13 20:20:40 +000015854
Bram Moolenaarb71eaae2006-01-20 23:10:18 +000015855 p1 = tv2string(&(*(listitem_T **)s1)->li_tv, &tofree1, numbuf1, 0);
15856 p2 = tv2string(&(*(listitem_T **)s2)->li_tv, &tofree2, numbuf2, 0);
Bram Moolenaar92c5aba2007-08-14 20:29:31 +000015857 if (p1 == NULL)
15858 p1 = (char_u *)"";
15859 if (p2 == NULL)
15860 p2 = (char_u *)"";
Bram Moolenaar0d660222005-01-07 21:51:51 +000015861 if (item_compare_ic)
15862 res = STRICMP(p1, p2);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015863 else
Bram Moolenaar0d660222005-01-07 21:51:51 +000015864 res = STRCMP(p1, p2);
15865 vim_free(tofree1);
15866 vim_free(tofree2);
15867 return res;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015868}
15869
15870 static int
Bram Moolenaar0d660222005-01-07 21:51:51 +000015871#ifdef __BORLANDC__
15872_RTLENTRYF
Bram Moolenaar071d4272004-06-13 20:20:40 +000015873#endif
Bram Moolenaar0d660222005-01-07 21:51:51 +000015874item_compare2(s1, s2)
15875 const void *s1;
15876 const void *s2;
15877{
15878 int res;
Bram Moolenaar33570922005-01-25 22:26:29 +000015879 typval_T rettv;
Bram Moolenaareb3593b2006-04-22 22:33:57 +000015880 typval_T argv[3];
Bram Moolenaar0d660222005-01-07 21:51:51 +000015881 int dummy;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015882
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015883 /* shortcut after failure in previous call; compare all items equal */
15884 if (item_compare_func_err)
15885 return 0;
15886
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000015887 /* copy the values. This is needed to be able to set v_lock to VAR_FIXED
15888 * in the copy without changing the original list items. */
Bram Moolenaar33570922005-01-25 22:26:29 +000015889 copy_tv(&(*(listitem_T **)s1)->li_tv, &argv[0]);
15890 copy_tv(&(*(listitem_T **)s2)->li_tv, &argv[1]);
Bram Moolenaar0d660222005-01-07 21:51:51 +000015891
15892 rettv.v_type = VAR_UNKNOWN; /* clear_tv() uses this */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000015893 res = call_func(item_compare_func, (int)STRLEN(item_compare_func),
Bram Moolenaare9a41262005-01-15 22:18:47 +000015894 &rettv, 2, argv, 0L, 0L, &dummy, TRUE, NULL);
Bram Moolenaar0d660222005-01-07 21:51:51 +000015895 clear_tv(&argv[0]);
15896 clear_tv(&argv[1]);
15897
15898 if (res == FAIL)
15899 res = ITEM_COMPARE_FAIL;
15900 else
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015901 res = get_tv_number_chk(&rettv, &item_compare_func_err);
15902 if (item_compare_func_err)
Bram Moolenaar61c4e2c2008-08-25 02:49:18 +000015903 res = ITEM_COMPARE_FAIL; /* return value has wrong type */
Bram Moolenaar0d660222005-01-07 21:51:51 +000015904 clear_tv(&rettv);
15905 return res;
15906}
15907
15908/*
15909 * "sort({list})" function
15910 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000015911 static void
Bram Moolenaar0d660222005-01-07 21:51:51 +000015912f_sort(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000015913 typval_T *argvars;
15914 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015915{
Bram Moolenaar33570922005-01-25 22:26:29 +000015916 list_T *l;
15917 listitem_T *li;
15918 listitem_T **ptrs;
Bram Moolenaar0d660222005-01-07 21:51:51 +000015919 long len;
15920 long i;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015921
Bram Moolenaar0d660222005-01-07 21:51:51 +000015922 rettv->vval.v_number = 0;
15923 if (argvars[0].v_type != VAR_LIST)
15924 EMSG2(_(e_listarg), "sort()");
Bram Moolenaar071d4272004-06-13 20:20:40 +000015925 else
15926 {
Bram Moolenaar0d660222005-01-07 21:51:51 +000015927 l = argvars[0].vval.v_list;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000015928 if (l == NULL || tv_check_lock(l->lv_lock, (char_u *)"sort()"))
Bram Moolenaar0d660222005-01-07 21:51:51 +000015929 return;
15930 rettv->vval.v_list = l;
15931 rettv->v_type = VAR_LIST;
15932 ++l->lv_refcount;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015933
Bram Moolenaar0d660222005-01-07 21:51:51 +000015934 len = list_len(l);
15935 if (len <= 1)
15936 return; /* short list sorts pretty quickly */
Bram Moolenaar071d4272004-06-13 20:20:40 +000015937
Bram Moolenaar0d660222005-01-07 21:51:51 +000015938 item_compare_ic = FALSE;
15939 item_compare_func = NULL;
15940 if (argvars[1].v_type != VAR_UNKNOWN)
15941 {
15942 if (argvars[1].v_type == VAR_FUNC)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015943 item_compare_func = argvars[1].vval.v_string;
Bram Moolenaar0d660222005-01-07 21:51:51 +000015944 else
15945 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015946 int error = FALSE;
15947
15948 i = get_tv_number_chk(&argvars[1], &error);
15949 if (error)
15950 return; /* type error; errmsg already given */
Bram Moolenaar0d660222005-01-07 21:51:51 +000015951 if (i == 1)
15952 item_compare_ic = TRUE;
15953 else
15954 item_compare_func = get_tv_string(&argvars[1]);
15955 }
15956 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000015957
Bram Moolenaar0d660222005-01-07 21:51:51 +000015958 /* Make an array with each entry pointing to an item in the List. */
Bram Moolenaar33570922005-01-25 22:26:29 +000015959 ptrs = (listitem_T **)alloc((int)(len * sizeof(listitem_T *)));
Bram Moolenaar0d660222005-01-07 21:51:51 +000015960 if (ptrs == NULL)
15961 return;
15962 i = 0;
15963 for (li = l->lv_first; li != NULL; li = li->li_next)
15964 ptrs[i++] = li;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015965
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015966 item_compare_func_err = FALSE;
Bram Moolenaar0d660222005-01-07 21:51:51 +000015967 /* test the compare function */
15968 if (item_compare_func != NULL
15969 && item_compare2((void *)&ptrs[0], (void *)&ptrs[1])
15970 == ITEM_COMPARE_FAIL)
Bram Moolenaare49b69a2005-01-08 16:11:57 +000015971 EMSG(_("E702: Sort compare function failed"));
Bram Moolenaar071d4272004-06-13 20:20:40 +000015972 else
Bram Moolenaar0d660222005-01-07 21:51:51 +000015973 {
15974 /* Sort the array with item pointers. */
Bram Moolenaar33570922005-01-25 22:26:29 +000015975 qsort((void *)ptrs, (size_t)len, sizeof(listitem_T *),
Bram Moolenaar0d660222005-01-07 21:51:51 +000015976 item_compare_func == NULL ? item_compare : item_compare2);
15977
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015978 if (!item_compare_func_err)
15979 {
15980 /* Clear the List and append the items in the sorted order. */
Bram Moolenaar52514562008-04-01 11:12:09 +000015981 l->lv_first = l->lv_last = l->lv_idx_item = NULL;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015982 l->lv_len = 0;
15983 for (i = 0; i < len; ++i)
15984 list_append(l, ptrs[i]);
15985 }
Bram Moolenaar0d660222005-01-07 21:51:51 +000015986 }
15987
15988 vim_free(ptrs);
15989 }
15990}
15991
Bram Moolenaard857f0e2005-06-21 22:37:39 +000015992/*
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +000015993 * "soundfold({word})" function
15994 */
15995 static void
15996f_soundfold(argvars, rettv)
15997 typval_T *argvars;
15998 typval_T *rettv;
15999{
16000 char_u *s;
16001
16002 rettv->v_type = VAR_STRING;
16003 s = get_tv_string(&argvars[0]);
Bram Moolenaar3c56a962006-03-12 22:19:04 +000016004#ifdef FEAT_SPELL
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +000016005 rettv->vval.v_string = eval_soundfold(s);
16006#else
16007 rettv->vval.v_string = vim_strsave(s);
16008#endif
16009}
16010
16011/*
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016012 * "spellbadword()" function
16013 */
16014/* ARGSUSED */
16015 static void
16016f_spellbadword(argvars, rettv)
16017 typval_T *argvars;
16018 typval_T *rettv;
16019{
Bram Moolenaar4463f292005-09-25 22:20:24 +000016020 char_u *word = (char_u *)"";
Bram Moolenaar482aaeb2005-09-29 18:26:07 +000016021 hlf_T attr = HLF_COUNT;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000016022 int len = 0;
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016023
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016024 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaar4463f292005-09-25 22:20:24 +000016025 return;
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016026
Bram Moolenaar3c56a962006-03-12 22:19:04 +000016027#ifdef FEAT_SPELL
Bram Moolenaar4463f292005-09-25 22:20:24 +000016028 if (argvars[0].v_type == VAR_UNKNOWN)
16029 {
16030 /* Find the start and length of the badly spelled word. */
16031 len = spell_move_to(curwin, FORWARD, TRUE, TRUE, &attr);
16032 if (len != 0)
16033 word = ml_get_cursor();
16034 }
16035 else if (curwin->w_p_spell && *curbuf->b_p_spl != NUL)
16036 {
16037 char_u *str = get_tv_string_chk(&argvars[0]);
16038 int capcol = -1;
16039
16040 if (str != NULL)
16041 {
16042 /* Check the argument for spelling. */
16043 while (*str != NUL)
16044 {
Bram Moolenaar4770d092006-01-12 23:22:24 +000016045 len = spell_check(curwin, str, &attr, &capcol, FALSE);
Bram Moolenaar482aaeb2005-09-29 18:26:07 +000016046 if (attr != HLF_COUNT)
Bram Moolenaar4463f292005-09-25 22:20:24 +000016047 {
16048 word = str;
16049 break;
16050 }
16051 str += len;
16052 }
16053 }
16054 }
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016055#endif
Bram Moolenaar4463f292005-09-25 22:20:24 +000016056
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016057 list_append_string(rettv->vval.v_list, word, len);
16058 list_append_string(rettv->vval.v_list, (char_u *)(
Bram Moolenaar482aaeb2005-09-29 18:26:07 +000016059 attr == HLF_SPB ? "bad" :
16060 attr == HLF_SPR ? "rare" :
16061 attr == HLF_SPL ? "local" :
16062 attr == HLF_SPC ? "caps" :
16063 ""), -1);
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016064}
16065
16066/*
16067 * "spellsuggest()" function
16068 */
Bram Moolenaar3c56a962006-03-12 22:19:04 +000016069/*ARGSUSED*/
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016070 static void
16071f_spellsuggest(argvars, rettv)
16072 typval_T *argvars;
16073 typval_T *rettv;
16074{
Bram Moolenaar3c56a962006-03-12 22:19:04 +000016075#ifdef FEAT_SPELL
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016076 char_u *str;
Bram Moolenaar69e0ff92005-09-30 21:23:56 +000016077 int typeerr = FALSE;
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016078 int maxcount;
16079 garray_T ga;
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016080 int i;
Bram Moolenaar69e0ff92005-09-30 21:23:56 +000016081 listitem_T *li;
16082 int need_capital = FALSE;
16083#endif
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016084
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016085 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016086 return;
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016087
Bram Moolenaar3c56a962006-03-12 22:19:04 +000016088#ifdef FEAT_SPELL
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016089 if (curwin->w_p_spell && *curbuf->b_p_spl != NUL)
16090 {
16091 str = get_tv_string(&argvars[0]);
16092 if (argvars[1].v_type != VAR_UNKNOWN)
16093 {
Bram Moolenaar69e0ff92005-09-30 21:23:56 +000016094 maxcount = get_tv_number_chk(&argvars[1], &typeerr);
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016095 if (maxcount <= 0)
16096 return;
Bram Moolenaar69e0ff92005-09-30 21:23:56 +000016097 if (argvars[2].v_type != VAR_UNKNOWN)
16098 {
16099 need_capital = get_tv_number_chk(&argvars[2], &typeerr);
16100 if (typeerr)
16101 return;
16102 }
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016103 }
16104 else
16105 maxcount = 25;
16106
Bram Moolenaar4770d092006-01-12 23:22:24 +000016107 spell_suggest_list(&ga, str, maxcount, need_capital, FALSE);
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016108
16109 for (i = 0; i < ga.ga_len; ++i)
16110 {
16111 str = ((char_u **)ga.ga_data)[i];
16112
16113 li = listitem_alloc();
16114 if (li == NULL)
16115 vim_free(str);
16116 else
16117 {
16118 li->li_tv.v_type = VAR_STRING;
16119 li->li_tv.v_lock = 0;
16120 li->li_tv.vval.v_string = str;
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016121 list_append(rettv->vval.v_list, li);
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016122 }
16123 }
16124 ga_clear(&ga);
16125 }
16126#endif
16127}
16128
Bram Moolenaar0d660222005-01-07 21:51:51 +000016129 static void
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000016130f_split(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016131 typval_T *argvars;
16132 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000016133{
16134 char_u *str;
16135 char_u *end;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000016136 char_u *pat = NULL;
Bram Moolenaar0d660222005-01-07 21:51:51 +000016137 regmatch_T regmatch;
16138 char_u patbuf[NUMBUFLEN];
16139 char_u *save_cpo;
16140 int match;
Bram Moolenaar0d660222005-01-07 21:51:51 +000016141 colnr_T col = 0;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000016142 int keepempty = FALSE;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016143 int typeerr = FALSE;
Bram Moolenaar0d660222005-01-07 21:51:51 +000016144
16145 /* Make 'cpoptions' empty, the 'l' flag should not be used here. */
16146 save_cpo = p_cpo;
16147 p_cpo = (char_u *)"";
16148
16149 str = get_tv_string(&argvars[0]);
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000016150 if (argvars[1].v_type != VAR_UNKNOWN)
16151 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016152 pat = get_tv_string_buf_chk(&argvars[1], patbuf);
16153 if (pat == NULL)
16154 typeerr = TRUE;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000016155 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016156 keepempty = get_tv_number_chk(&argvars[2], &typeerr);
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000016157 }
16158 if (pat == NULL || *pat == NUL)
16159 pat = (char_u *)"[\\x01- ]\\+";
Bram Moolenaar0d660222005-01-07 21:51:51 +000016160
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016161 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000016162 return;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016163 if (typeerr)
16164 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016165
Bram Moolenaar0d660222005-01-07 21:51:51 +000016166 regmatch.regprog = vim_regcomp(pat, RE_MAGIC + RE_STRING);
16167 if (regmatch.regprog != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000016168 {
Bram Moolenaar0d660222005-01-07 21:51:51 +000016169 regmatch.rm_ic = FALSE;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000016170 while (*str != NUL || keepempty)
Bram Moolenaar0d660222005-01-07 21:51:51 +000016171 {
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000016172 if (*str == NUL)
16173 match = FALSE; /* empty item at the end */
16174 else
16175 match = vim_regexec_nl(&regmatch, str, col);
Bram Moolenaar0d660222005-01-07 21:51:51 +000016176 if (match)
16177 end = regmatch.startp[0];
16178 else
16179 end = str + STRLEN(str);
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016180 if (keepempty || end > str || (rettv->vval.v_list->lv_len > 0
16181 && *str != NUL && match && end < regmatch.endp[0]))
Bram Moolenaar0d660222005-01-07 21:51:51 +000016182 {
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016183 if (list_append_string(rettv->vval.v_list, str,
16184 (int)(end - str)) == FAIL)
Bram Moolenaar0d660222005-01-07 21:51:51 +000016185 break;
Bram Moolenaar0d660222005-01-07 21:51:51 +000016186 }
16187 if (!match)
16188 break;
16189 /* Advance to just after the match. */
16190 if (regmatch.endp[0] > str)
16191 col = 0;
16192 else
16193 {
16194 /* Don't get stuck at the same match. */
16195#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000016196 col = (*mb_ptr2len)(regmatch.endp[0]);
Bram Moolenaar0d660222005-01-07 21:51:51 +000016197#else
16198 col = 1;
16199#endif
16200 }
16201 str = regmatch.endp[0];
16202 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000016203
Bram Moolenaar0d660222005-01-07 21:51:51 +000016204 vim_free(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016205 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000016206
Bram Moolenaar0d660222005-01-07 21:51:51 +000016207 p_cpo = save_cpo;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016208}
16209
Bram Moolenaar8c8de832008-06-24 22:58:06 +000016210#ifdef FEAT_FLOAT
16211/*
16212 * "sqrt()" function
16213 */
16214 static void
16215f_sqrt(argvars, rettv)
16216 typval_T *argvars;
16217 typval_T *rettv;
16218{
16219 float_T f;
16220
16221 rettv->v_type = VAR_FLOAT;
16222 if (get_float_arg(argvars, &f) == OK)
16223 rettv->vval.v_float = sqrt(f);
16224 else
16225 rettv->vval.v_float = 0.0;
16226}
16227
16228/*
16229 * "str2float()" function
16230 */
16231 static void
16232f_str2float(argvars, rettv)
16233 typval_T *argvars;
16234 typval_T *rettv;
16235{
16236 char_u *p = skipwhite(get_tv_string(&argvars[0]));
16237
16238 if (*p == '+')
16239 p = skipwhite(p + 1);
16240 (void)string2float(p, &rettv->vval.v_float);
16241 rettv->v_type = VAR_FLOAT;
16242}
16243#endif
16244
Bram Moolenaar2c932302006-03-18 21:42:09 +000016245/*
16246 * "str2nr()" function
16247 */
16248 static void
16249f_str2nr(argvars, rettv)
16250 typval_T *argvars;
16251 typval_T *rettv;
16252{
16253 int base = 10;
16254 char_u *p;
16255 long n;
16256
16257 if (argvars[1].v_type != VAR_UNKNOWN)
16258 {
16259 base = get_tv_number(&argvars[1]);
16260 if (base != 8 && base != 10 && base != 16)
16261 {
16262 EMSG(_(e_invarg));
16263 return;
16264 }
16265 }
16266
16267 p = skipwhite(get_tv_string(&argvars[0]));
Bram Moolenaar8c8de832008-06-24 22:58:06 +000016268 if (*p == '+')
16269 p = skipwhite(p + 1);
Bram Moolenaar2c932302006-03-18 21:42:09 +000016270 vim_str2nr(p, NULL, NULL, base == 8 ? 2 : 0, base == 16 ? 2 : 0, &n, NULL);
16271 rettv->vval.v_number = n;
16272}
16273
Bram Moolenaar071d4272004-06-13 20:20:40 +000016274#ifdef HAVE_STRFTIME
16275/*
16276 * "strftime({format}[, {time}])" function
16277 */
16278 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016279f_strftime(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016280 typval_T *argvars;
16281 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016282{
16283 char_u result_buf[256];
16284 struct tm *curtime;
16285 time_t seconds;
16286 char_u *p;
16287
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016288 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016289
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016290 p = get_tv_string(&argvars[0]);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000016291 if (argvars[1].v_type == VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000016292 seconds = time(NULL);
16293 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016294 seconds = (time_t)get_tv_number(&argvars[1]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016295 curtime = localtime(&seconds);
16296 /* MSVC returns NULL for an invalid value of seconds. */
16297 if (curtime == NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016298 rettv->vval.v_string = vim_strsave((char_u *)_("(Invalid)"));
Bram Moolenaar071d4272004-06-13 20:20:40 +000016299 else
16300 {
16301# ifdef FEAT_MBYTE
16302 vimconv_T conv;
16303 char_u *enc;
16304
16305 conv.vc_type = CONV_NONE;
16306 enc = enc_locale();
16307 convert_setup(&conv, p_enc, enc);
16308 if (conv.vc_type != CONV_NONE)
16309 p = string_convert(&conv, p, NULL);
16310# endif
16311 if (p != NULL)
16312 (void)strftime((char *)result_buf, sizeof(result_buf),
16313 (char *)p, curtime);
16314 else
16315 result_buf[0] = NUL;
16316
16317# ifdef FEAT_MBYTE
16318 if (conv.vc_type != CONV_NONE)
16319 vim_free(p);
16320 convert_setup(&conv, enc, p_enc);
16321 if (conv.vc_type != CONV_NONE)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016322 rettv->vval.v_string = string_convert(&conv, result_buf, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016323 else
16324# endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016325 rettv->vval.v_string = vim_strsave(result_buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016326
16327# ifdef FEAT_MBYTE
16328 /* Release conversion descriptors */
16329 convert_setup(&conv, NULL, NULL);
16330 vim_free(enc);
16331# endif
16332 }
16333}
16334#endif
16335
16336/*
16337 * "stridx()" function
16338 */
16339 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016340f_stridx(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016341 typval_T *argvars;
16342 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016343{
16344 char_u buf[NUMBUFLEN];
16345 char_u *needle;
16346 char_u *haystack;
Bram Moolenaar33570922005-01-25 22:26:29 +000016347 char_u *save_haystack;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016348 char_u *pos;
Bram Moolenaar33570922005-01-25 22:26:29 +000016349 int start_idx;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016350
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016351 needle = get_tv_string_chk(&argvars[1]);
16352 save_haystack = haystack = get_tv_string_buf_chk(&argvars[0], buf);
Bram Moolenaar33570922005-01-25 22:26:29 +000016353 rettv->vval.v_number = -1;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016354 if (needle == NULL || haystack == NULL)
16355 return; /* type error; errmsg already given */
Bram Moolenaar071d4272004-06-13 20:20:40 +000016356
Bram Moolenaar33570922005-01-25 22:26:29 +000016357 if (argvars[2].v_type != VAR_UNKNOWN)
16358 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016359 int error = FALSE;
16360
16361 start_idx = get_tv_number_chk(&argvars[2], &error);
16362 if (error || start_idx >= (int)STRLEN(haystack))
Bram Moolenaar33570922005-01-25 22:26:29 +000016363 return;
Bram Moolenaar532c7802005-01-27 14:44:31 +000016364 if (start_idx >= 0)
16365 haystack += start_idx;
Bram Moolenaar33570922005-01-25 22:26:29 +000016366 }
16367
16368 pos = (char_u *)strstr((char *)haystack, (char *)needle);
16369 if (pos != NULL)
16370 rettv->vval.v_number = (varnumber_T)(pos - save_haystack);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016371}
16372
16373/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +000016374 * "string()" function
16375 */
16376 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016377f_string(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016378 typval_T *argvars;
16379 typval_T *rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000016380{
16381 char_u *tofree;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000016382 char_u numbuf[NUMBUFLEN];
Bram Moolenaar49cd9572005-01-03 21:06:01 +000016383
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016384 rettv->v_type = VAR_STRING;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +000016385 rettv->vval.v_string = tv2string(&argvars[0], &tofree, numbuf, 0);
Bram Moolenaar8c8de832008-06-24 22:58:06 +000016386 /* Make a copy if we have a value but it's not in allocated memory. */
Bram Moolenaar92c5aba2007-08-14 20:29:31 +000016387 if (rettv->vval.v_string != NULL && tofree == NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016388 rettv->vval.v_string = vim_strsave(rettv->vval.v_string);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016389}
16390
16391/*
16392 * "strlen()" function
16393 */
16394 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016395f_strlen(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016396 typval_T *argvars;
16397 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016398{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016399 rettv->vval.v_number = (varnumber_T)(STRLEN(
16400 get_tv_string(&argvars[0])));
Bram Moolenaar071d4272004-06-13 20:20:40 +000016401}
16402
16403/*
16404 * "strpart()" function
16405 */
16406 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016407f_strpart(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016408 typval_T *argvars;
16409 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016410{
16411 char_u *p;
16412 int n;
16413 int len;
16414 int slen;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016415 int error = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016416
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016417 p = get_tv_string(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016418 slen = (int)STRLEN(p);
16419
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016420 n = get_tv_number_chk(&argvars[1], &error);
16421 if (error)
16422 len = 0;
16423 else if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016424 len = get_tv_number(&argvars[2]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016425 else
16426 len = slen - n; /* default len: all bytes that are available. */
16427
16428 /*
16429 * Only return the overlap between the specified part and the actual
16430 * string.
16431 */
16432 if (n < 0)
16433 {
16434 len += n;
16435 n = 0;
16436 }
16437 else if (n > slen)
16438 n = slen;
16439 if (len < 0)
16440 len = 0;
16441 else if (n + len > slen)
16442 len = slen - n;
16443
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016444 rettv->v_type = VAR_STRING;
16445 rettv->vval.v_string = vim_strnsave(p + n, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016446}
16447
16448/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000016449 * "strridx()" function
16450 */
16451 static void
16452f_strridx(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016453 typval_T *argvars;
16454 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000016455{
16456 char_u buf[NUMBUFLEN];
16457 char_u *needle;
16458 char_u *haystack;
16459 char_u *rest;
16460 char_u *lastmatch = NULL;
Bram Moolenaar532c7802005-01-27 14:44:31 +000016461 int haystack_len, end_idx;
Bram Moolenaar0d660222005-01-07 21:51:51 +000016462
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016463 needle = get_tv_string_chk(&argvars[1]);
16464 haystack = get_tv_string_buf_chk(&argvars[0], buf);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016465
16466 rettv->vval.v_number = -1;
16467 if (needle == NULL || haystack == NULL)
16468 return; /* type error; errmsg already given */
Bram Moolenaareb3593b2006-04-22 22:33:57 +000016469
16470 haystack_len = (int)STRLEN(haystack);
Bram Moolenaar05159a02005-02-26 23:04:13 +000016471 if (argvars[2].v_type != VAR_UNKNOWN)
16472 {
16473 /* Third argument: upper limit for index */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016474 end_idx = get_tv_number_chk(&argvars[2], NULL);
Bram Moolenaar05159a02005-02-26 23:04:13 +000016475 if (end_idx < 0)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016476 return; /* can never find a match */
Bram Moolenaar05159a02005-02-26 23:04:13 +000016477 }
16478 else
16479 end_idx = haystack_len;
16480
Bram Moolenaar0d660222005-01-07 21:51:51 +000016481 if (*needle == NUL)
Bram Moolenaar05159a02005-02-26 23:04:13 +000016482 {
Bram Moolenaar0d660222005-01-07 21:51:51 +000016483 /* Empty string matches past the end. */
Bram Moolenaar05159a02005-02-26 23:04:13 +000016484 lastmatch = haystack + end_idx;
16485 }
Bram Moolenaar0d660222005-01-07 21:51:51 +000016486 else
Bram Moolenaar532c7802005-01-27 14:44:31 +000016487 {
Bram Moolenaar0d660222005-01-07 21:51:51 +000016488 for (rest = haystack; *rest != '\0'; ++rest)
16489 {
16490 rest = (char_u *)strstr((char *)rest, (char *)needle);
Bram Moolenaar532c7802005-01-27 14:44:31 +000016491 if (rest == NULL || rest > haystack + end_idx)
Bram Moolenaar0d660222005-01-07 21:51:51 +000016492 break;
16493 lastmatch = rest;
16494 }
Bram Moolenaar532c7802005-01-27 14:44:31 +000016495 }
Bram Moolenaar0d660222005-01-07 21:51:51 +000016496
16497 if (lastmatch == NULL)
16498 rettv->vval.v_number = -1;
16499 else
16500 rettv->vval.v_number = (varnumber_T)(lastmatch - haystack);
16501}
16502
16503/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000016504 * "strtrans()" function
16505 */
16506 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016507f_strtrans(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016508 typval_T *argvars;
16509 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016510{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016511 rettv->v_type = VAR_STRING;
16512 rettv->vval.v_string = transstr(get_tv_string(&argvars[0]));
Bram Moolenaar071d4272004-06-13 20:20:40 +000016513}
16514
16515/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000016516 * "submatch()" function
16517 */
16518 static void
16519f_submatch(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016520 typval_T *argvars;
16521 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000016522{
16523 rettv->v_type = VAR_STRING;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016524 rettv->vval.v_string =
16525 reg_submatch((int)get_tv_number_chk(&argvars[0], NULL));
Bram Moolenaar0d660222005-01-07 21:51:51 +000016526}
16527
16528/*
16529 * "substitute()" function
16530 */
16531 static void
16532f_substitute(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016533 typval_T *argvars;
16534 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000016535{
16536 char_u patbuf[NUMBUFLEN];
16537 char_u subbuf[NUMBUFLEN];
16538 char_u flagsbuf[NUMBUFLEN];
16539
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016540 char_u *str = get_tv_string_chk(&argvars[0]);
16541 char_u *pat = get_tv_string_buf_chk(&argvars[1], patbuf);
16542 char_u *sub = get_tv_string_buf_chk(&argvars[2], subbuf);
16543 char_u *flg = get_tv_string_buf_chk(&argvars[3], flagsbuf);
16544
Bram Moolenaar0d660222005-01-07 21:51:51 +000016545 rettv->v_type = VAR_STRING;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016546 if (str == NULL || pat == NULL || sub == NULL || flg == NULL)
16547 rettv->vval.v_string = NULL;
16548 else
16549 rettv->vval.v_string = do_string_sub(str, pat, sub, flg);
Bram Moolenaar0d660222005-01-07 21:51:51 +000016550}
16551
16552/*
Bram Moolenaar54ff3412005-04-20 19:48:33 +000016553 * "synID(lnum, col, trans)" function
Bram Moolenaar071d4272004-06-13 20:20:40 +000016554 */
16555/*ARGSUSED*/
16556 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016557f_synID(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016558 typval_T *argvars;
16559 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016560{
16561 int id = 0;
16562#ifdef FEAT_SYN_HL
Bram Moolenaar54ff3412005-04-20 19:48:33 +000016563 long lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016564 long col;
16565 int trans;
Bram Moolenaar92124a32005-06-17 22:03:40 +000016566 int transerr = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016567
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016568 lnum = get_tv_lnum(argvars); /* -1 on type error */
16569 col = get_tv_number(&argvars[1]) - 1; /* -1 on type error */
16570 trans = get_tv_number_chk(&argvars[2], &transerr);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016571
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016572 if (!transerr && lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count
Bram Moolenaar54ff3412005-04-20 19:48:33 +000016573 && col >= 0 && col < (long)STRLEN(ml_get(lnum)))
Bram Moolenaar56cefaf2008-01-12 15:47:10 +000016574 id = syn_get_id(curwin, lnum, (colnr_T)col, trans, NULL, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016575#endif
16576
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016577 rettv->vval.v_number = id;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016578}
16579
16580/*
16581 * "synIDattr(id, what [, mode])" function
16582 */
16583/*ARGSUSED*/
16584 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016585f_synIDattr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016586 typval_T *argvars;
16587 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016588{
16589 char_u *p = NULL;
16590#ifdef FEAT_SYN_HL
16591 int id;
16592 char_u *what;
16593 char_u *mode;
16594 char_u modebuf[NUMBUFLEN];
16595 int modec;
16596
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016597 id = get_tv_number(&argvars[0]);
16598 what = get_tv_string(&argvars[1]);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000016599 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000016600 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016601 mode = get_tv_string_buf(&argvars[2], modebuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016602 modec = TOLOWER_ASC(mode[0]);
16603 if (modec != 't' && modec != 'c'
16604#ifdef FEAT_GUI
16605 && modec != 'g'
16606#endif
16607 )
16608 modec = 0; /* replace invalid with current */
16609 }
16610 else
16611 {
16612#ifdef FEAT_GUI
16613 if (gui.in_use)
16614 modec = 'g';
16615 else
16616#endif
16617 if (t_colors > 1)
16618 modec = 'c';
16619 else
16620 modec = 't';
16621 }
16622
16623
16624 switch (TOLOWER_ASC(what[0]))
16625 {
16626 case 'b':
16627 if (TOLOWER_ASC(what[1]) == 'g') /* bg[#] */
16628 p = highlight_color(id, what, modec);
16629 else /* bold */
16630 p = highlight_has_attr(id, HL_BOLD, modec);
16631 break;
16632
16633 case 'f': /* fg[#] */
16634 p = highlight_color(id, what, modec);
16635 break;
16636
16637 case 'i':
16638 if (TOLOWER_ASC(what[1]) == 'n') /* inverse */
16639 p = highlight_has_attr(id, HL_INVERSE, modec);
16640 else /* italic */
16641 p = highlight_has_attr(id, HL_ITALIC, modec);
16642 break;
16643
16644 case 'n': /* name */
16645 p = get_highlight_name(NULL, id - 1);
16646 break;
16647
16648 case 'r': /* reverse */
16649 p = highlight_has_attr(id, HL_INVERSE, modec);
16650 break;
16651
Bram Moolenaar6f507d62008-11-28 10:16:05 +000016652 case 's':
16653 if (TOLOWER_ASC(what[1]) == 'p') /* sp[#] */
16654 p = highlight_color(id, what, modec);
16655 else /* standout */
16656 p = highlight_has_attr(id, HL_STANDOUT, modec);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016657 break;
16658
Bram Moolenaar5b743bf2005-03-15 22:50:43 +000016659 case 'u':
16660 if (STRLEN(what) <= 5 || TOLOWER_ASC(what[5]) != 'c')
16661 /* underline */
16662 p = highlight_has_attr(id, HL_UNDERLINE, modec);
16663 else
16664 /* undercurl */
16665 p = highlight_has_attr(id, HL_UNDERCURL, modec);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016666 break;
16667 }
16668
16669 if (p != NULL)
16670 p = vim_strsave(p);
16671#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016672 rettv->v_type = VAR_STRING;
16673 rettv->vval.v_string = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016674}
16675
16676/*
16677 * "synIDtrans(id)" function
16678 */
16679/*ARGSUSED*/
16680 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016681f_synIDtrans(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016682 typval_T *argvars;
16683 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016684{
16685 int id;
16686
16687#ifdef FEAT_SYN_HL
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016688 id = get_tv_number(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016689
16690 if (id > 0)
16691 id = syn_get_final_id(id);
16692 else
16693#endif
16694 id = 0;
16695
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016696 rettv->vval.v_number = id;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016697}
16698
16699/*
Bram Moolenaar9d188ab2008-01-10 21:24:39 +000016700 * "synstack(lnum, col)" function
16701 */
16702/*ARGSUSED*/
16703 static void
16704f_synstack(argvars, rettv)
16705 typval_T *argvars;
16706 typval_T *rettv;
16707{
16708#ifdef FEAT_SYN_HL
16709 long lnum;
16710 long col;
16711 int i;
16712 int id;
16713#endif
16714
16715 rettv->v_type = VAR_LIST;
16716 rettv->vval.v_list = NULL;
16717
16718#ifdef FEAT_SYN_HL
16719 lnum = get_tv_lnum(argvars); /* -1 on type error */
16720 col = get_tv_number(&argvars[1]) - 1; /* -1 on type error */
16721
16722 if (lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count
Bram Moolenaar6cad8bd2008-09-10 13:39:10 +000016723 && col >= 0 && (col == 0 || col < (long)STRLEN(ml_get(lnum)))
Bram Moolenaar9d188ab2008-01-10 21:24:39 +000016724 && rettv_list_alloc(rettv) != FAIL)
16725 {
Bram Moolenaar56cefaf2008-01-12 15:47:10 +000016726 (void)syn_get_id(curwin, lnum, (colnr_T)col, FALSE, NULL, TRUE);
Bram Moolenaar9d188ab2008-01-10 21:24:39 +000016727 for (i = 0; ; ++i)
16728 {
16729 id = syn_get_stack_item(i);
16730 if (id < 0)
16731 break;
16732 if (list_append_number(rettv->vval.v_list, id) == FAIL)
16733 break;
16734 }
16735 }
16736#endif
16737}
16738
16739/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000016740 * "system()" function
16741 */
16742 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016743f_system(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016744 typval_T *argvars;
16745 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016746{
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016747 char_u *res = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016748 char_u *p;
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016749 char_u *infile = NULL;
16750 char_u buf[NUMBUFLEN];
16751 int err = FALSE;
16752 FILE *fd;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016753
Bram Moolenaard9fe7c42007-04-29 11:53:56 +000016754 if (check_restricted() || check_secure())
Bram Moolenaare6f565a2007-12-07 16:09:32 +000016755 goto done;
Bram Moolenaard9fe7c42007-04-29 11:53:56 +000016756
Bram Moolenaar49cd9572005-01-03 21:06:01 +000016757 if (argvars[1].v_type != VAR_UNKNOWN)
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016758 {
16759 /*
16760 * Write the string to a temp file, to be used for input of the shell
16761 * command.
16762 */
16763 if ((infile = vim_tempname('i')) == NULL)
16764 {
16765 EMSG(_(e_notmp));
Bram Moolenaare6f565a2007-12-07 16:09:32 +000016766 goto done;
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016767 }
16768
16769 fd = mch_fopen((char *)infile, WRITEBIN);
16770 if (fd == NULL)
16771 {
16772 EMSG2(_(e_notopen), infile);
16773 goto done;
16774 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016775 p = get_tv_string_buf_chk(&argvars[1], buf);
16776 if (p == NULL)
Bram Moolenaareb3593b2006-04-22 22:33:57 +000016777 {
16778 fclose(fd);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016779 goto done; /* type error; errmsg already given */
Bram Moolenaareb3593b2006-04-22 22:33:57 +000016780 }
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016781 if (fwrite(p, STRLEN(p), 1, fd) != 1)
16782 err = TRUE;
16783 if (fclose(fd) != 0)
16784 err = TRUE;
16785 if (err)
16786 {
16787 EMSG(_("E677: Error writing temp file"));
16788 goto done;
16789 }
16790 }
16791
Bram Moolenaare580b0c2006-03-21 21:33:03 +000016792 res = get_cmd_output(get_tv_string(&argvars[0]), infile,
16793 SHELL_SILENT | SHELL_COOKED);
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016794
Bram Moolenaar071d4272004-06-13 20:20:40 +000016795#ifdef USE_CR
16796 /* translate <CR> into <NL> */
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016797 if (res != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000016798 {
16799 char_u *s;
16800
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016801 for (s = res; *s; ++s)
Bram Moolenaar071d4272004-06-13 20:20:40 +000016802 {
16803 if (*s == CAR)
16804 *s = NL;
16805 }
16806 }
16807#else
16808# ifdef USE_CRNL
16809 /* translate <CR><NL> into <NL> */
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016810 if (res != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000016811 {
16812 char_u *s, *d;
16813
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016814 d = res;
16815 for (s = res; *s; ++s)
Bram Moolenaar071d4272004-06-13 20:20:40 +000016816 {
16817 if (s[0] == CAR && s[1] == NL)
16818 ++s;
16819 *d++ = *s;
16820 }
16821 *d = NUL;
16822 }
16823# endif
16824#endif
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016825
16826done:
16827 if (infile != NULL)
16828 {
16829 mch_remove(infile);
16830 vim_free(infile);
16831 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016832 rettv->v_type = VAR_STRING;
16833 rettv->vval.v_string = res;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016834}
16835
16836/*
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016837 * "tabpagebuflist()" function
16838 */
16839/* ARGSUSED */
16840 static void
16841f_tabpagebuflist(argvars, rettv)
16842 typval_T *argvars;
16843 typval_T *rettv;
16844{
16845#ifndef FEAT_WINDOWS
16846 rettv->vval.v_number = 0;
16847#else
16848 tabpage_T *tp;
16849 win_T *wp = NULL;
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016850
16851 if (argvars[0].v_type == VAR_UNKNOWN)
16852 wp = firstwin;
16853 else
16854 {
16855 tp = find_tabpage((int)get_tv_number(&argvars[0]));
16856 if (tp != NULL)
Bram Moolenaar238a5642006-02-21 22:12:05 +000016857 wp = (tp == curtab) ? firstwin : tp->tp_firstwin;
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016858 }
16859 if (wp == NULL)
16860 rettv->vval.v_number = 0;
16861 else
16862 {
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016863 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016864 rettv->vval.v_number = 0;
16865 else
16866 {
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016867 for (; wp != NULL; wp = wp->w_next)
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016868 if (list_append_number(rettv->vval.v_list,
16869 wp->w_buffer->b_fnum) == FAIL)
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016870 break;
16871 }
16872 }
16873#endif
16874}
16875
16876
16877/*
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000016878 * "tabpagenr()" function
16879 */
16880/* ARGSUSED */
16881 static void
16882f_tabpagenr(argvars, rettv)
16883 typval_T *argvars;
16884 typval_T *rettv;
16885{
16886 int nr = 1;
16887#ifdef FEAT_WINDOWS
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000016888 char_u *arg;
16889
16890 if (argvars[0].v_type != VAR_UNKNOWN)
16891 {
16892 arg = get_tv_string_chk(&argvars[0]);
16893 nr = 0;
16894 if (arg != NULL)
16895 {
16896 if (STRCMP(arg, "$") == 0)
Bram Moolenaara5621492006-02-25 21:55:24 +000016897 nr = tabpage_index(NULL) - 1;
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000016898 else
16899 EMSG2(_(e_invexpr2), arg);
16900 }
16901 }
16902 else
Bram Moolenaar32466aa2006-02-24 23:53:04 +000016903 nr = tabpage_index(curtab);
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000016904#endif
16905 rettv->vval.v_number = nr;
16906}
16907
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016908
16909#ifdef FEAT_WINDOWS
16910static int get_winnr __ARGS((tabpage_T *tp, typval_T *argvar));
16911
16912/*
16913 * Common code for tabpagewinnr() and winnr().
16914 */
16915 static int
16916get_winnr(tp, argvar)
16917 tabpage_T *tp;
16918 typval_T *argvar;
16919{
16920 win_T *twin;
16921 int nr = 1;
16922 win_T *wp;
16923 char_u *arg;
16924
16925 twin = (tp == curtab) ? curwin : tp->tp_curwin;
16926 if (argvar->v_type != VAR_UNKNOWN)
16927 {
16928 arg = get_tv_string_chk(argvar);
16929 if (arg == NULL)
16930 nr = 0; /* type error; errmsg already given */
16931 else if (STRCMP(arg, "$") == 0)
16932 twin = (tp == curtab) ? lastwin : tp->tp_lastwin;
16933 else if (STRCMP(arg, "#") == 0)
16934 {
16935 twin = (tp == curtab) ? prevwin : tp->tp_prevwin;
16936 if (twin == NULL)
16937 nr = 0;
16938 }
16939 else
16940 {
16941 EMSG2(_(e_invexpr2), arg);
16942 nr = 0;
16943 }
16944 }
16945
16946 if (nr > 0)
16947 for (wp = (tp == curtab) ? firstwin : tp->tp_firstwin;
16948 wp != twin; wp = wp->w_next)
Bram Moolenaar4940e3f2007-03-25 15:49:08 +000016949 {
16950 if (wp == NULL)
16951 {
16952 /* didn't find it in this tabpage */
16953 nr = 0;
16954 break;
16955 }
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016956 ++nr;
Bram Moolenaar4940e3f2007-03-25 15:49:08 +000016957 }
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016958 return nr;
16959}
16960#endif
16961
16962/*
16963 * "tabpagewinnr()" function
16964 */
16965/* ARGSUSED */
16966 static void
16967f_tabpagewinnr(argvars, rettv)
16968 typval_T *argvars;
16969 typval_T *rettv;
16970{
16971 int nr = 1;
16972#ifdef FEAT_WINDOWS
16973 tabpage_T *tp;
16974
16975 tp = find_tabpage((int)get_tv_number(&argvars[0]));
16976 if (tp == NULL)
16977 nr = 0;
16978 else
16979 nr = get_winnr(tp, &argvars[1]);
16980#endif
16981 rettv->vval.v_number = nr;
16982}
16983
16984
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000016985/*
Bram Moolenaard43b6cf2005-09-09 19:53:42 +000016986 * "tagfiles()" function
16987 */
16988/*ARGSUSED*/
16989 static void
16990f_tagfiles(argvars, rettv)
16991 typval_T *argvars;
16992 typval_T *rettv;
16993{
16994 char_u fname[MAXPATHL + 1];
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016995 tagname_T tn;
16996 int first;
Bram Moolenaard43b6cf2005-09-09 19:53:42 +000016997
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016998 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaard43b6cf2005-09-09 19:53:42 +000016999 {
17000 rettv->vval.v_number = 0;
17001 return;
17002 }
Bram Moolenaard43b6cf2005-09-09 19:53:42 +000017003
Bram Moolenaareddf53b2006-02-27 00:11:10 +000017004 for (first = TRUE; ; first = FALSE)
17005 if (get_tagfname(&tn, first, fname) == FAIL
17006 || list_append_string(rettv->vval.v_list, fname, -1) == FAIL)
Bram Moolenaard43b6cf2005-09-09 19:53:42 +000017007 break;
Bram Moolenaareddf53b2006-02-27 00:11:10 +000017008 tagname_free(&tn);
Bram Moolenaard43b6cf2005-09-09 19:53:42 +000017009}
17010
17011/*
Bram Moolenaare2ac10d2005-03-07 23:26:06 +000017012 * "taglist()" function
Bram Moolenaar19a09a12005-03-04 23:39:37 +000017013 */
17014 static void
17015f_taglist(argvars, rettv)
17016 typval_T *argvars;
17017 typval_T *rettv;
17018{
17019 char_u *tag_pattern;
Bram Moolenaar19a09a12005-03-04 23:39:37 +000017020
17021 tag_pattern = get_tv_string(&argvars[0]);
17022
17023 rettv->vval.v_number = FALSE;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000017024 if (*tag_pattern == NUL)
17025 return;
Bram Moolenaar19a09a12005-03-04 23:39:37 +000017026
Bram Moolenaareddf53b2006-02-27 00:11:10 +000017027 if (rettv_list_alloc(rettv) == OK)
17028 (void)get_tags(rettv->vval.v_list, tag_pattern);
Bram Moolenaar19a09a12005-03-04 23:39:37 +000017029}
17030
17031/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000017032 * "tempname()" function
17033 */
17034/*ARGSUSED*/
17035 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017036f_tempname(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017037 typval_T *argvars;
17038 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017039{
17040 static int x = 'A';
17041
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017042 rettv->v_type = VAR_STRING;
17043 rettv->vval.v_string = vim_tempname(x);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017044
17045 /* Advance 'x' to use A-Z and 0-9, so that there are at least 34 different
17046 * names. Skip 'I' and 'O', they are used for shell redirection. */
17047 do
17048 {
17049 if (x == 'Z')
17050 x = '0';
17051 else if (x == '9')
17052 x = 'A';
17053 else
17054 {
17055#ifdef EBCDIC
17056 if (x == 'I')
17057 x = 'J';
17058 else if (x == 'R')
17059 x = 'S';
17060 else
17061#endif
17062 ++x;
17063 }
17064 } while (x == 'I' || x == 'O');
17065}
17066
17067/*
Bram Moolenaard52d9742005-08-21 22:20:28 +000017068 * "test(list)" function: Just checking the walls...
17069 */
17070/*ARGSUSED*/
17071 static void
17072f_test(argvars, rettv)
17073 typval_T *argvars;
17074 typval_T *rettv;
17075{
17076 /* Used for unit testing. Change the code below to your liking. */
17077#if 0
17078 listitem_T *li;
17079 list_T *l;
17080 char_u *bad, *good;
17081
17082 if (argvars[0].v_type != VAR_LIST)
17083 return;
17084 l = argvars[0].vval.v_list;
17085 if (l == NULL)
17086 return;
17087 li = l->lv_first;
17088 if (li == NULL)
17089 return;
17090 bad = get_tv_string(&li->li_tv);
17091 li = li->li_next;
17092 if (li == NULL)
17093 return;
17094 good = get_tv_string(&li->li_tv);
17095 rettv->vval.v_number = test_edit_score(bad, good);
17096#endif
17097}
17098
17099/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000017100 * "tolower(string)" function
17101 */
17102 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017103f_tolower(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017104 typval_T *argvars;
17105 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017106{
17107 char_u *p;
17108
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017109 p = vim_strsave(get_tv_string(&argvars[0]));
17110 rettv->v_type = VAR_STRING;
17111 rettv->vval.v_string = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017112
17113 if (p != NULL)
17114 while (*p != NUL)
17115 {
17116#ifdef FEAT_MBYTE
17117 int l;
17118
17119 if (enc_utf8)
17120 {
17121 int c, lc;
17122
17123 c = utf_ptr2char(p);
17124 lc = utf_tolower(c);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000017125 l = utf_ptr2len(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017126 /* TODO: reallocate string when byte count changes. */
17127 if (utf_char2len(lc) == l)
17128 utf_char2bytes(lc, p);
17129 p += l;
17130 }
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000017131 else if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017132 p += l; /* skip multi-byte character */
17133 else
17134#endif
17135 {
17136 *p = TOLOWER_LOC(*p); /* note that tolower() can be a macro */
17137 ++p;
17138 }
17139 }
17140}
17141
17142/*
17143 * "toupper(string)" function
17144 */
17145 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017146f_toupper(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017147 typval_T *argvars;
17148 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017149{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017150 rettv->v_type = VAR_STRING;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000017151 rettv->vval.v_string = strup_save(get_tv_string(&argvars[0]));
Bram Moolenaar071d4272004-06-13 20:20:40 +000017152}
17153
17154/*
Bram Moolenaar8299df92004-07-10 09:47:34 +000017155 * "tr(string, fromstr, tostr)" function
17156 */
17157 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017158f_tr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017159 typval_T *argvars;
17160 typval_T *rettv;
Bram Moolenaar8299df92004-07-10 09:47:34 +000017161{
17162 char_u *instr;
17163 char_u *fromstr;
17164 char_u *tostr;
17165 char_u *p;
17166#ifdef FEAT_MBYTE
Bram Moolenaar342337a2005-07-21 21:11:17 +000017167 int inlen;
17168 int fromlen;
17169 int tolen;
Bram Moolenaar8299df92004-07-10 09:47:34 +000017170 int idx;
17171 char_u *cpstr;
17172 int cplen;
17173 int first = TRUE;
17174#endif
17175 char_u buf[NUMBUFLEN];
17176 char_u buf2[NUMBUFLEN];
17177 garray_T ga;
17178
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017179 instr = get_tv_string(&argvars[0]);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000017180 fromstr = get_tv_string_buf_chk(&argvars[1], buf);
17181 tostr = get_tv_string_buf_chk(&argvars[2], buf2);
Bram Moolenaar8299df92004-07-10 09:47:34 +000017182
17183 /* Default return value: empty string. */
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017184 rettv->v_type = VAR_STRING;
17185 rettv->vval.v_string = NULL;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000017186 if (fromstr == NULL || tostr == NULL)
17187 return; /* type error; errmsg already given */
Bram Moolenaar8299df92004-07-10 09:47:34 +000017188 ga_init2(&ga, (int)sizeof(char), 80);
17189
17190#ifdef FEAT_MBYTE
17191 if (!has_mbyte)
17192#endif
17193 /* not multi-byte: fromstr and tostr must be the same length */
17194 if (STRLEN(fromstr) != STRLEN(tostr))
17195 {
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000017196#ifdef FEAT_MBYTE
Bram Moolenaar8299df92004-07-10 09:47:34 +000017197error:
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000017198#endif
Bram Moolenaar8299df92004-07-10 09:47:34 +000017199 EMSG2(_(e_invarg2), fromstr);
17200 ga_clear(&ga);
17201 return;
17202 }
17203
17204 /* fromstr and tostr have to contain the same number of chars */
17205 while (*instr != NUL)
17206 {
17207#ifdef FEAT_MBYTE
17208 if (has_mbyte)
17209 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000017210 inlen = (*mb_ptr2len)(instr);
Bram Moolenaar8299df92004-07-10 09:47:34 +000017211 cpstr = instr;
17212 cplen = inlen;
17213 idx = 0;
17214 for (p = fromstr; *p != NUL; p += fromlen)
17215 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000017216 fromlen = (*mb_ptr2len)(p);
Bram Moolenaar8299df92004-07-10 09:47:34 +000017217 if (fromlen == inlen && STRNCMP(instr, p, inlen) == 0)
17218 {
17219 for (p = tostr; *p != NUL; p += tolen)
17220 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000017221 tolen = (*mb_ptr2len)(p);
Bram Moolenaar8299df92004-07-10 09:47:34 +000017222 if (idx-- == 0)
17223 {
17224 cplen = tolen;
17225 cpstr = p;
17226 break;
17227 }
17228 }
17229 if (*p == NUL) /* tostr is shorter than fromstr */
17230 goto error;
17231 break;
17232 }
17233 ++idx;
17234 }
17235
17236 if (first && cpstr == instr)
17237 {
17238 /* Check that fromstr and tostr have the same number of
17239 * (multi-byte) characters. Done only once when a character
17240 * of instr doesn't appear in fromstr. */
17241 first = FALSE;
17242 for (p = tostr; *p != NUL; p += tolen)
17243 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000017244 tolen = (*mb_ptr2len)(p);
Bram Moolenaar8299df92004-07-10 09:47:34 +000017245 --idx;
17246 }
17247 if (idx != 0)
17248 goto error;
17249 }
17250
17251 ga_grow(&ga, cplen);
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +000017252 mch_memmove((char *)ga.ga_data + ga.ga_len, cpstr, (size_t)cplen);
Bram Moolenaar8299df92004-07-10 09:47:34 +000017253 ga.ga_len += cplen;
Bram Moolenaar8299df92004-07-10 09:47:34 +000017254
17255 instr += inlen;
17256 }
17257 else
17258#endif
17259 {
17260 /* When not using multi-byte chars we can do it faster. */
17261 p = vim_strchr(fromstr, *instr);
17262 if (p != NULL)
17263 ga_append(&ga, tostr[p - fromstr]);
17264 else
17265 ga_append(&ga, *instr);
17266 ++instr;
17267 }
17268 }
17269
Bram Moolenaar61b974b2006-12-05 09:32:29 +000017270 /* add a terminating NUL */
17271 ga_grow(&ga, 1);
17272 ga_append(&ga, NUL);
17273
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017274 rettv->vval.v_string = ga.ga_data;
Bram Moolenaar8299df92004-07-10 09:47:34 +000017275}
17276
Bram Moolenaar8c8de832008-06-24 22:58:06 +000017277#ifdef FEAT_FLOAT
17278/*
17279 * "trunc({float})" function
17280 */
17281 static void
17282f_trunc(argvars, rettv)
17283 typval_T *argvars;
17284 typval_T *rettv;
17285{
17286 float_T f;
17287
17288 rettv->v_type = VAR_FLOAT;
17289 if (get_float_arg(argvars, &f) == OK)
17290 /* trunc() is not in C90, use floor() or ceil() instead. */
17291 rettv->vval.v_float = f > 0 ? floor(f) : ceil(f);
17292 else
17293 rettv->vval.v_float = 0.0;
17294}
17295#endif
17296
Bram Moolenaar8299df92004-07-10 09:47:34 +000017297/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000017298 * "type(expr)" function
17299 */
17300 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017301f_type(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017302 typval_T *argvars;
17303 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017304{
Bram Moolenaar6cc16192005-01-08 21:49:45 +000017305 int n;
17306
17307 switch (argvars[0].v_type)
17308 {
17309 case VAR_NUMBER: n = 0; break;
17310 case VAR_STRING: n = 1; break;
17311 case VAR_FUNC: n = 2; break;
17312 case VAR_LIST: n = 3; break;
Bram Moolenaar758711c2005-02-02 23:11:38 +000017313 case VAR_DICT: n = 4; break;
Bram Moolenaar8c8de832008-06-24 22:58:06 +000017314#ifdef FEAT_FLOAT
17315 case VAR_FLOAT: n = 5; break;
17316#endif
Bram Moolenaar6cc16192005-01-08 21:49:45 +000017317 default: EMSG2(_(e_intern2), "f_type()"); n = 0; break;
17318 }
17319 rettv->vval.v_number = n;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017320}
17321
17322/*
Bram Moolenaar8c711452005-01-14 21:53:12 +000017323 * "values(dict)" function
17324 */
17325 static void
17326f_values(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017327 typval_T *argvars;
17328 typval_T *rettv;
Bram Moolenaar8c711452005-01-14 21:53:12 +000017329{
17330 dict_list(argvars, rettv, 1);
17331}
17332
17333/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000017334 * "virtcol(string)" function
17335 */
17336 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017337f_virtcol(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017338 typval_T *argvars;
17339 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017340{
17341 colnr_T vcol = 0;
17342 pos_T *fp;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000017343 int fnum = curbuf->b_fnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017344
Bram Moolenaar0e34f622006-03-03 23:00:03 +000017345 fp = var2fpos(&argvars[0], FALSE, &fnum);
17346 if (fp != NULL && fp->lnum <= curbuf->b_ml.ml_line_count
17347 && fnum == curbuf->b_fnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017348 {
17349 getvvcol(curwin, fp, NULL, NULL, &vcol);
17350 ++vcol;
17351 }
17352
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017353 rettv->vval.v_number = vcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017354}
17355
17356/*
17357 * "visualmode()" function
17358 */
17359/*ARGSUSED*/
17360 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017361f_visualmode(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017362 typval_T *argvars;
17363 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017364{
17365#ifdef FEAT_VISUAL
17366 char_u str[2];
17367
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017368 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017369 str[0] = curbuf->b_visual_mode_eval;
17370 str[1] = NUL;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017371 rettv->vval.v_string = vim_strsave(str);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017372
17373 /* A non-zero number or non-empty string argument: reset mode. */
Bram Moolenaar05bb9532008-07-04 09:44:11 +000017374 if (non_zero_arg(&argvars[0]))
Bram Moolenaar071d4272004-06-13 20:20:40 +000017375 curbuf->b_visual_mode_eval = NUL;
17376#else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017377 rettv->vval.v_number = 0; /* return anything, it won't work anyway */
Bram Moolenaar071d4272004-06-13 20:20:40 +000017378#endif
17379}
17380
17381/*
17382 * "winbufnr(nr)" function
17383 */
17384 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017385f_winbufnr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017386 typval_T *argvars;
17387 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017388{
17389 win_T *wp;
17390
Bram Moolenaar99ebf042006-04-15 20:28:54 +000017391 wp = find_win_by_nr(&argvars[0], NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017392 if (wp == NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017393 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017394 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017395 rettv->vval.v_number = wp->w_buffer->b_fnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017396}
17397
17398/*
17399 * "wincol()" function
17400 */
17401/*ARGSUSED*/
17402 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017403f_wincol(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017404 typval_T *argvars;
17405 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017406{
17407 validate_cursor();
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017408 rettv->vval.v_number = curwin->w_wcol + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017409}
17410
17411/*
17412 * "winheight(nr)" function
17413 */
17414 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017415f_winheight(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017416 typval_T *argvars;
17417 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017418{
17419 win_T *wp;
17420
Bram Moolenaar99ebf042006-04-15 20:28:54 +000017421 wp = find_win_by_nr(&argvars[0], NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017422 if (wp == NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017423 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017424 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017425 rettv->vval.v_number = wp->w_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017426}
17427
17428/*
17429 * "winline()" function
17430 */
17431/*ARGSUSED*/
17432 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017433f_winline(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017434 typval_T *argvars;
17435 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017436{
17437 validate_cursor();
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017438 rettv->vval.v_number = curwin->w_wrow + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017439}
17440
17441/*
17442 * "winnr()" function
17443 */
17444/* ARGSUSED */
17445 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017446f_winnr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017447 typval_T *argvars;
17448 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017449{
17450 int nr = 1;
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000017451
Bram Moolenaar071d4272004-06-13 20:20:40 +000017452#ifdef FEAT_WINDOWS
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000017453 nr = get_winnr(curtab, &argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017454#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017455 rettv->vval.v_number = nr;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017456}
17457
17458/*
17459 * "winrestcmd()" function
17460 */
17461/* ARGSUSED */
17462 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017463f_winrestcmd(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017464 typval_T *argvars;
17465 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017466{
17467#ifdef FEAT_WINDOWS
17468 win_T *wp;
17469 int winnr = 1;
17470 garray_T ga;
17471 char_u buf[50];
17472
17473 ga_init2(&ga, (int)sizeof(char), 70);
17474 for (wp = firstwin; wp != NULL; wp = wp->w_next)
17475 {
17476 sprintf((char *)buf, "%dresize %d|", winnr, wp->w_height);
17477 ga_concat(&ga, buf);
17478# ifdef FEAT_VERTSPLIT
17479 sprintf((char *)buf, "vert %dresize %d|", winnr, wp->w_width);
17480 ga_concat(&ga, buf);
17481# endif
17482 ++winnr;
17483 }
Bram Moolenaar269ec652004-07-29 08:43:53 +000017484 ga_append(&ga, NUL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017485
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017486 rettv->vval.v_string = ga.ga_data;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017487#else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017488 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017489#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017490 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017491}
17492
17493/*
Bram Moolenaar768b8c42006-03-04 21:58:33 +000017494 * "winrestview()" function
17495 */
17496/* ARGSUSED */
17497 static void
17498f_winrestview(argvars, rettv)
17499 typval_T *argvars;
17500 typval_T *rettv;
17501{
17502 dict_T *dict;
17503
17504 if (argvars[0].v_type != VAR_DICT
17505 || (dict = argvars[0].vval.v_dict) == NULL)
17506 EMSG(_(e_invarg));
17507 else
17508 {
17509 curwin->w_cursor.lnum = get_dict_number(dict, (char_u *)"lnum");
17510 curwin->w_cursor.col = get_dict_number(dict, (char_u *)"col");
17511#ifdef FEAT_VIRTUALEDIT
17512 curwin->w_cursor.coladd = get_dict_number(dict, (char_u *)"coladd");
17513#endif
17514 curwin->w_curswant = get_dict_number(dict, (char_u *)"curswant");
Bram Moolenaar362e1a32006-03-06 23:29:24 +000017515 curwin->w_set_curswant = FALSE;
Bram Moolenaar768b8c42006-03-04 21:58:33 +000017516
Bram Moolenaar6f11a412006-09-06 20:16:42 +000017517 set_topline(curwin, get_dict_number(dict, (char_u *)"topline"));
Bram Moolenaar768b8c42006-03-04 21:58:33 +000017518#ifdef FEAT_DIFF
17519 curwin->w_topfill = get_dict_number(dict, (char_u *)"topfill");
17520#endif
17521 curwin->w_leftcol = get_dict_number(dict, (char_u *)"leftcol");
17522 curwin->w_skipcol = get_dict_number(dict, (char_u *)"skipcol");
17523
17524 check_cursor();
17525 changed_cline_bef_curs();
17526 invalidate_botline();
17527 redraw_later(VALID);
17528
17529 if (curwin->w_topline == 0)
17530 curwin->w_topline = 1;
17531 if (curwin->w_topline > curbuf->b_ml.ml_line_count)
17532 curwin->w_topline = curbuf->b_ml.ml_line_count;
17533#ifdef FEAT_DIFF
17534 check_topfill(curwin, TRUE);
17535#endif
17536 }
17537}
17538
17539/*
17540 * "winsaveview()" function
17541 */
17542/* ARGSUSED */
17543 static void
17544f_winsaveview(argvars, rettv)
17545 typval_T *argvars;
17546 typval_T *rettv;
17547{
17548 dict_T *dict;
17549
17550 dict = dict_alloc();
17551 if (dict == NULL)
17552 return;
17553 rettv->v_type = VAR_DICT;
17554 rettv->vval.v_dict = dict;
17555 ++dict->dv_refcount;
17556
17557 dict_add_nr_str(dict, "lnum", (long)curwin->w_cursor.lnum, NULL);
17558 dict_add_nr_str(dict, "col", (long)curwin->w_cursor.col, NULL);
17559#ifdef FEAT_VIRTUALEDIT
17560 dict_add_nr_str(dict, "coladd", (long)curwin->w_cursor.coladd, NULL);
17561#endif
Bram Moolenaar9af1ba92006-08-29 19:55:53 +000017562 update_curswant();
Bram Moolenaar768b8c42006-03-04 21:58:33 +000017563 dict_add_nr_str(dict, "curswant", (long)curwin->w_curswant, NULL);
17564
17565 dict_add_nr_str(dict, "topline", (long)curwin->w_topline, NULL);
17566#ifdef FEAT_DIFF
17567 dict_add_nr_str(dict, "topfill", (long)curwin->w_topfill, NULL);
17568#endif
17569 dict_add_nr_str(dict, "leftcol", (long)curwin->w_leftcol, NULL);
17570 dict_add_nr_str(dict, "skipcol", (long)curwin->w_skipcol, NULL);
17571}
17572
17573/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000017574 * "winwidth(nr)" function
17575 */
17576 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017577f_winwidth(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017578 typval_T *argvars;
17579 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017580{
17581 win_T *wp;
17582
Bram Moolenaar99ebf042006-04-15 20:28:54 +000017583 wp = find_win_by_nr(&argvars[0], NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017584 if (wp == NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017585 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017586 else
17587#ifdef FEAT_VERTSPLIT
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017588 rettv->vval.v_number = wp->w_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017589#else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017590 rettv->vval.v_number = Columns;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017591#endif
17592}
17593
Bram Moolenaar071d4272004-06-13 20:20:40 +000017594/*
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000017595 * "writefile()" function
17596 */
17597 static void
17598f_writefile(argvars, rettv)
17599 typval_T *argvars;
17600 typval_T *rettv;
17601{
17602 int binary = FALSE;
17603 char_u *fname;
17604 FILE *fd;
17605 listitem_T *li;
17606 char_u *s;
17607 int ret = 0;
17608 int c;
17609
Bram Moolenaard9fe7c42007-04-29 11:53:56 +000017610 if (check_restricted() || check_secure())
17611 return;
17612
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000017613 if (argvars[0].v_type != VAR_LIST)
17614 {
17615 EMSG2(_(e_listarg), "writefile()");
17616 return;
17617 }
17618 if (argvars[0].vval.v_list == NULL)
17619 return;
17620
17621 if (argvars[2].v_type != VAR_UNKNOWN
17622 && STRCMP(get_tv_string(&argvars[2]), "b") == 0)
17623 binary = TRUE;
17624
17625 /* Always open the file in binary mode, library functions have a mind of
17626 * their own about CR-LF conversion. */
17627 fname = get_tv_string(&argvars[1]);
17628 if (*fname == NUL || (fd = mch_fopen((char *)fname, WRITEBIN)) == NULL)
17629 {
17630 EMSG2(_(e_notcreate), *fname == NUL ? (char_u *)_("<empty>") : fname);
17631 ret = -1;
17632 }
17633 else
17634 {
17635 for (li = argvars[0].vval.v_list->lv_first; li != NULL;
17636 li = li->li_next)
17637 {
17638 for (s = get_tv_string(&li->li_tv); *s != NUL; ++s)
17639 {
17640 if (*s == '\n')
17641 c = putc(NUL, fd);
17642 else
17643 c = putc(*s, fd);
17644 if (c == EOF)
17645 {
17646 ret = -1;
17647 break;
17648 }
17649 }
17650 if (!binary || li->li_next != NULL)
17651 if (putc('\n', fd) == EOF)
17652 {
17653 ret = -1;
17654 break;
17655 }
17656 if (ret < 0)
17657 {
17658 EMSG(_(e_write));
17659 break;
17660 }
17661 }
17662 fclose(fd);
17663 }
17664
17665 rettv->vval.v_number = ret;
17666}
17667
17668/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000017669 * Translate a String variable into a position.
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017670 * Returns NULL when there is an error.
Bram Moolenaar071d4272004-06-13 20:20:40 +000017671 */
17672 static pos_T *
Bram Moolenaar477933c2007-07-17 14:32:23 +000017673var2fpos(varp, dollar_lnum, fnum)
Bram Moolenaar33570922005-01-25 22:26:29 +000017674 typval_T *varp;
Bram Moolenaar477933c2007-07-17 14:32:23 +000017675 int dollar_lnum; /* TRUE when $ is last line */
Bram Moolenaar0e34f622006-03-03 23:00:03 +000017676 int *fnum; /* set to fnum for '0, 'A, etc. */
Bram Moolenaar071d4272004-06-13 20:20:40 +000017677{
Bram Moolenaar261bfea2006-03-01 22:12:31 +000017678 char_u *name;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017679 static pos_T pos;
Bram Moolenaar261bfea2006-03-01 22:12:31 +000017680 pos_T *pp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017681
Bram Moolenaara5525202006-03-02 22:52:09 +000017682 /* Argument can be [lnum, col, coladd]. */
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017683 if (varp->v_type == VAR_LIST)
17684 {
17685 list_T *l;
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017686 int len;
Bram Moolenaara5525202006-03-02 22:52:09 +000017687 int error = FALSE;
Bram Moolenaar477933c2007-07-17 14:32:23 +000017688 listitem_T *li;
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017689
17690 l = varp->vval.v_list;
17691 if (l == NULL)
17692 return NULL;
17693
17694 /* Get the line number */
Bram Moolenaara5525202006-03-02 22:52:09 +000017695 pos.lnum = list_find_nr(l, 0L, &error);
17696 if (error || pos.lnum <= 0 || pos.lnum > curbuf->b_ml.ml_line_count)
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017697 return NULL; /* invalid line number */
17698
17699 /* Get the column number */
Bram Moolenaara5525202006-03-02 22:52:09 +000017700 pos.col = list_find_nr(l, 1L, &error);
17701 if (error)
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017702 return NULL;
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017703 len = (long)STRLEN(ml_get(pos.lnum));
Bram Moolenaar477933c2007-07-17 14:32:23 +000017704
17705 /* We accept "$" for the column number: last column. */
17706 li = list_find(l, 1L);
17707 if (li != NULL && li->li_tv.v_type == VAR_STRING
17708 && li->li_tv.vval.v_string != NULL
17709 && STRCMP(li->li_tv.vval.v_string, "$") == 0)
17710 pos.col = len + 1;
17711
Bram Moolenaara5525202006-03-02 22:52:09 +000017712 /* Accept a position up to the NUL after the line. */
Bram Moolenaar4c3f5362006-04-11 21:38:50 +000017713 if (pos.col == 0 || (int)pos.col > len + 1)
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017714 return NULL; /* invalid column number */
Bram Moolenaara5525202006-03-02 22:52:09 +000017715 --pos.col;
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017716
Bram Moolenaara5525202006-03-02 22:52:09 +000017717#ifdef FEAT_VIRTUALEDIT
17718 /* Get the virtual offset. Defaults to zero. */
17719 pos.coladd = list_find_nr(l, 2L, &error);
17720 if (error)
17721 pos.coladd = 0;
17722#endif
17723
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017724 return &pos;
17725 }
17726
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000017727 name = get_tv_string_chk(varp);
17728 if (name == NULL)
17729 return NULL;
Bram Moolenaar9ecd0232008-06-20 15:31:51 +000017730 if (name[0] == '.') /* cursor */
Bram Moolenaar071d4272004-06-13 20:20:40 +000017731 return &curwin->w_cursor;
Bram Moolenaar9ecd0232008-06-20 15:31:51 +000017732#ifdef FEAT_VISUAL
17733 if (name[0] == 'v' && name[1] == NUL) /* Visual start */
17734 {
17735 if (VIsual_active)
17736 return &VIsual;
17737 return &curwin->w_cursor;
17738 }
17739#endif
17740 if (name[0] == '\'') /* mark */
Bram Moolenaar071d4272004-06-13 20:20:40 +000017741 {
Bram Moolenaar0e34f622006-03-03 23:00:03 +000017742 pp = getmark_fnum(name[1], FALSE, fnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017743 if (pp == NULL || pp == (pos_T *)-1 || pp->lnum <= 0)
17744 return NULL;
17745 return pp;
17746 }
Bram Moolenaara5525202006-03-02 22:52:09 +000017747
17748#ifdef FEAT_VIRTUALEDIT
17749 pos.coladd = 0;
17750#endif
17751
Bram Moolenaar477933c2007-07-17 14:32:23 +000017752 if (name[0] == 'w' && dollar_lnum)
Bram Moolenaarf52c7252006-02-10 23:23:57 +000017753 {
17754 pos.col = 0;
17755 if (name[1] == '0') /* "w0": first visible line */
17756 {
Bram Moolenaarf740b292006-02-16 22:11:02 +000017757 update_topline();
Bram Moolenaarf52c7252006-02-10 23:23:57 +000017758 pos.lnum = curwin->w_topline;
17759 return &pos;
17760 }
17761 else if (name[1] == '$') /* "w$": last visible line */
17762 {
Bram Moolenaarf740b292006-02-16 22:11:02 +000017763 validate_botline();
Bram Moolenaarf52c7252006-02-10 23:23:57 +000017764 pos.lnum = curwin->w_botline - 1;
17765 return &pos;
17766 }
17767 }
17768 else if (name[0] == '$') /* last column or line */
Bram Moolenaar071d4272004-06-13 20:20:40 +000017769 {
Bram Moolenaar477933c2007-07-17 14:32:23 +000017770 if (dollar_lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017771 {
17772 pos.lnum = curbuf->b_ml.ml_line_count;
17773 pos.col = 0;
17774 }
17775 else
17776 {
17777 pos.lnum = curwin->w_cursor.lnum;
17778 pos.col = (colnr_T)STRLEN(ml_get_curline());
17779 }
17780 return &pos;
17781 }
17782 return NULL;
17783}
17784
17785/*
Bram Moolenaar0e34f622006-03-03 23:00:03 +000017786 * Convert list in "arg" into a position and optional file number.
17787 * When "fnump" is NULL there is no file number, only 3 items.
17788 * Note that the column is passed on as-is, the caller may want to decrement
17789 * it to use 1 for the first column.
17790 * Return FAIL when conversion is not possible, doesn't check the position for
17791 * validity.
17792 */
17793 static int
17794list2fpos(arg, posp, fnump)
17795 typval_T *arg;
17796 pos_T *posp;
17797 int *fnump;
17798{
17799 list_T *l = arg->vval.v_list;
17800 long i = 0;
17801 long n;
17802
Bram Moolenaarbde35262006-07-23 20:12:24 +000017803 /* List must be: [fnum, lnum, col, coladd], where "fnum" is only there
17804 * when "fnump" isn't NULL and "coladd" is optional. */
17805 if (arg->v_type != VAR_LIST
17806 || l == NULL
17807 || l->lv_len < (fnump == NULL ? 2 : 3)
17808 || l->lv_len > (fnump == NULL ? 3 : 4))
Bram Moolenaar0e34f622006-03-03 23:00:03 +000017809 return FAIL;
17810
17811 if (fnump != NULL)
17812 {
17813 n = list_find_nr(l, i++, NULL); /* fnum */
17814 if (n < 0)
17815 return FAIL;
17816 if (n == 0)
17817 n = curbuf->b_fnum; /* current buffer */
17818 *fnump = n;
17819 }
17820
17821 n = list_find_nr(l, i++, NULL); /* lnum */
17822 if (n < 0)
17823 return FAIL;
17824 posp->lnum = n;
17825
17826 n = list_find_nr(l, i++, NULL); /* col */
17827 if (n < 0)
17828 return FAIL;
17829 posp->col = n;
17830
17831#ifdef FEAT_VIRTUALEDIT
17832 n = list_find_nr(l, i, NULL);
17833 if (n < 0)
Bram Moolenaarbde35262006-07-23 20:12:24 +000017834 posp->coladd = 0;
17835 else
17836 posp->coladd = n;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000017837#endif
17838
17839 return OK;
17840}
17841
17842/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000017843 * Get the length of an environment variable name.
17844 * Advance "arg" to the first character after the name.
17845 * Return 0 for error.
17846 */
17847 static int
17848get_env_len(arg)
17849 char_u **arg;
17850{
17851 char_u *p;
17852 int len;
17853
17854 for (p = *arg; vim_isIDc(*p); ++p)
17855 ;
17856 if (p == *arg) /* no name found */
17857 return 0;
17858
17859 len = (int)(p - *arg);
17860 *arg = p;
17861 return len;
17862}
17863
17864/*
17865 * Get the length of the name of a function or internal variable.
17866 * "arg" is advanced to the first non-white character after the name.
17867 * Return 0 if something is wrong.
17868 */
17869 static int
17870get_id_len(arg)
17871 char_u **arg;
17872{
17873 char_u *p;
17874 int len;
17875
17876 /* Find the end of the name. */
17877 for (p = *arg; eval_isnamec(*p); ++p)
17878 ;
17879 if (p == *arg) /* no name found */
17880 return 0;
17881
17882 len = (int)(p - *arg);
17883 *arg = skipwhite(p);
17884
17885 return len;
17886}
17887
17888/*
Bram Moolenaara7043832005-01-21 11:56:39 +000017889 * Get the length of the name of a variable or function.
17890 * Only the name is recognized, does not handle ".key" or "[idx]".
Bram Moolenaar071d4272004-06-13 20:20:40 +000017891 * "arg" is advanced to the first non-white character after the name.
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000017892 * Return -1 if curly braces expansion failed.
17893 * Return 0 if something else is wrong.
Bram Moolenaar071d4272004-06-13 20:20:40 +000017894 * If the name contains 'magic' {}'s, expand them and return the
17895 * expanded name in an allocated string via 'alias' - caller must free.
17896 */
17897 static int
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000017898get_name_len(arg, alias, evaluate, verbose)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017899 char_u **arg;
17900 char_u **alias;
17901 int evaluate;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000017902 int verbose;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017903{
17904 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017905 char_u *p;
17906 char_u *expr_start;
17907 char_u *expr_end;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017908
17909 *alias = NULL; /* default to no alias */
17910
17911 if ((*arg)[0] == K_SPECIAL && (*arg)[1] == KS_EXTRA
17912 && (*arg)[2] == (int)KE_SNR)
17913 {
17914 /* hard coded <SNR>, already translated */
17915 *arg += 3;
17916 return get_id_len(arg) + 3;
17917 }
17918 len = eval_fname_script(*arg);
17919 if (len > 0)
17920 {
17921 /* literal "<SID>", "s:" or "<SNR>" */
17922 *arg += len;
17923 }
17924
Bram Moolenaar071d4272004-06-13 20:20:40 +000017925 /*
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017926 * Find the end of the name; check for {} construction.
Bram Moolenaar071d4272004-06-13 20:20:40 +000017927 */
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000017928 p = find_name_end(*arg, &expr_start, &expr_end,
17929 len > 0 ? 0 : FNE_CHECK_START);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017930 if (expr_start != NULL)
17931 {
17932 char_u *temp_string;
17933
17934 if (!evaluate)
17935 {
17936 len += (int)(p - *arg);
17937 *arg = skipwhite(p);
17938 return len;
17939 }
17940
17941 /*
17942 * Include any <SID> etc in the expanded string:
17943 * Thus the -len here.
17944 */
17945 temp_string = make_expanded_name(*arg - len, expr_start, expr_end, p);
17946 if (temp_string == NULL)
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000017947 return -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017948 *alias = temp_string;
17949 *arg = skipwhite(p);
17950 return (int)STRLEN(temp_string);
17951 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000017952
17953 len += get_id_len(arg);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000017954 if (len == 0 && verbose)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017955 EMSG2(_(e_invexpr2), *arg);
17956
17957 return len;
17958}
17959
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017960/*
17961 * Find the end of a variable or function name, taking care of magic braces.
17962 * If "expr_start" is not NULL then "expr_start" and "expr_end" are set to the
17963 * start and end of the first magic braces item.
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000017964 * "flags" can have FNE_INCL_BR and FNE_CHECK_START.
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017965 * Return a pointer to just after the name. Equal to "arg" if there is no
17966 * valid name.
17967 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000017968 static char_u *
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000017969find_name_end(arg, expr_start, expr_end, flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017970 char_u *arg;
17971 char_u **expr_start;
17972 char_u **expr_end;
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000017973 int flags;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017974{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017975 int mb_nest = 0;
17976 int br_nest = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017977 char_u *p;
17978
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017979 if (expr_start != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017980 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017981 *expr_start = NULL;
17982 *expr_end = NULL;
17983 }
17984
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000017985 /* Quick check for valid starting character. */
17986 if ((flags & FNE_CHECK_START) && !eval_isnamec1(*arg) && *arg != '{')
17987 return arg;
17988
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017989 for (p = arg; *p != NUL
17990 && (eval_isnamec(*p)
Bram Moolenaare9a41262005-01-15 22:18:47 +000017991 || *p == '{'
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000017992 || ((flags & FNE_INCL_BR) && (*p == '[' || *p == '.'))
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017993 || mb_nest != 0
Bram Moolenaar8af24422005-08-08 22:06:28 +000017994 || br_nest != 0); mb_ptr_adv(p))
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017995 {
Bram Moolenaar8af24422005-08-08 22:06:28 +000017996 if (*p == '\'')
17997 {
17998 /* skip over 'string' to avoid counting [ and ] inside it. */
17999 for (p = p + 1; *p != NUL && *p != '\''; mb_ptr_adv(p))
18000 ;
18001 if (*p == NUL)
18002 break;
18003 }
18004 else if (*p == '"')
18005 {
18006 /* skip over "str\"ing" to avoid counting [ and ] inside it. */
18007 for (p = p + 1; *p != NUL && *p != '"'; mb_ptr_adv(p))
18008 if (*p == '\\' && p[1] != NUL)
18009 ++p;
18010 if (*p == NUL)
18011 break;
18012 }
18013
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018014 if (mb_nest == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018015 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018016 if (*p == '[')
18017 ++br_nest;
18018 else if (*p == ']')
18019 --br_nest;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018020 }
Bram Moolenaar8af24422005-08-08 22:06:28 +000018021
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018022 if (br_nest == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018023 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018024 if (*p == '{')
18025 {
18026 mb_nest++;
18027 if (expr_start != NULL && *expr_start == NULL)
18028 *expr_start = p;
18029 }
18030 else if (*p == '}')
18031 {
18032 mb_nest--;
18033 if (expr_start != NULL && mb_nest == 0 && *expr_end == NULL)
18034 *expr_end = p;
18035 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000018036 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000018037 }
18038
18039 return p;
18040}
18041
18042/*
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000018043 * Expands out the 'magic' {}'s in a variable/function name.
18044 * Note that this can call itself recursively, to deal with
18045 * constructs like foo{bar}{baz}{bam}
18046 * The four pointer arguments point to "foo{expre}ss{ion}bar"
18047 * "in_start" ^
18048 * "expr_start" ^
18049 * "expr_end" ^
18050 * "in_end" ^
18051 *
18052 * Returns a new allocated string, which the caller must free.
18053 * Returns NULL for failure.
18054 */
18055 static char_u *
18056make_expanded_name(in_start, expr_start, expr_end, in_end)
18057 char_u *in_start;
18058 char_u *expr_start;
18059 char_u *expr_end;
18060 char_u *in_end;
18061{
18062 char_u c1;
18063 char_u *retval = NULL;
18064 char_u *temp_result;
18065 char_u *nextcmd = NULL;
18066
18067 if (expr_end == NULL || in_end == NULL)
18068 return NULL;
18069 *expr_start = NUL;
18070 *expr_end = NUL;
18071 c1 = *in_end;
18072 *in_end = NUL;
18073
Bram Moolenaar362e1a32006-03-06 23:29:24 +000018074 temp_result = eval_to_string(expr_start + 1, &nextcmd, FALSE);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000018075 if (temp_result != NULL && nextcmd == NULL)
18076 {
18077 retval = alloc((unsigned)(STRLEN(temp_result) + (expr_start - in_start)
18078 + (in_end - expr_end) + 1));
18079 if (retval != NULL)
18080 {
18081 STRCPY(retval, in_start);
18082 STRCAT(retval, temp_result);
18083 STRCAT(retval, expr_end + 1);
18084 }
18085 }
18086 vim_free(temp_result);
18087
18088 *in_end = c1; /* put char back for error messages */
18089 *expr_start = '{';
18090 *expr_end = '}';
18091
18092 if (retval != NULL)
18093 {
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000018094 temp_result = find_name_end(retval, &expr_start, &expr_end, 0);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000018095 if (expr_start != NULL)
18096 {
18097 /* Further expansion! */
18098 temp_result = make_expanded_name(retval, expr_start,
18099 expr_end, temp_result);
18100 vim_free(retval);
18101 retval = temp_result;
18102 }
18103 }
18104
18105 return retval;
18106}
18107
18108/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000018109 * Return TRUE if character "c" can be used in a variable or function name.
Bram Moolenaare9a41262005-01-15 22:18:47 +000018110 * Does not include '{' or '}' for magic braces.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018111 */
18112 static int
18113eval_isnamec(c)
18114 int c;
18115{
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000018116 return (ASCII_ISALNUM(c) || c == '_' || c == ':' || c == AUTOLOAD_CHAR);
18117}
18118
18119/*
18120 * Return TRUE if character "c" can be used as the first character in a
18121 * variable or function name (excluding '{' and '}').
18122 */
18123 static int
18124eval_isnamec1(c)
18125 int c;
18126{
18127 return (ASCII_ISALPHA(c) || c == '_');
Bram Moolenaar071d4272004-06-13 20:20:40 +000018128}
18129
18130/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000018131 * Set number v: variable to "val".
18132 */
18133 void
18134set_vim_var_nr(idx, val)
18135 int idx;
18136 long val;
18137{
Bram Moolenaare9a41262005-01-15 22:18:47 +000018138 vimvars[idx].vv_nr = val;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018139}
18140
18141/*
Bram Moolenaar19a09a12005-03-04 23:39:37 +000018142 * Get number v: variable value.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018143 */
18144 long
18145get_vim_var_nr(idx)
18146 int idx;
18147{
Bram Moolenaare9a41262005-01-15 22:18:47 +000018148 return vimvars[idx].vv_nr;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018149}
18150
Bram Moolenaar19a09a12005-03-04 23:39:37 +000018151/*
18152 * Get string v: variable value. Uses a static buffer, can only be used once.
18153 */
18154 char_u *
18155get_vim_var_str(idx)
18156 int idx;
18157{
18158 return get_tv_string(&vimvars[idx].vv_tv);
18159}
Bram Moolenaar19a09a12005-03-04 23:39:37 +000018160
Bram Moolenaar071d4272004-06-13 20:20:40 +000018161/*
Bram Moolenaard812df62008-11-09 12:46:09 +000018162 * Get List v: variable value. Caller must take care of reference count when
18163 * needed.
18164 */
18165 list_T *
18166get_vim_var_list(idx)
18167 int idx;
18168{
18169 return vimvars[idx].vv_list;
18170}
18171
18172/*
Bram Moolenaar8df74be2008-11-20 15:12:02 +000018173 * Set v:count to "count" and v:count1 to "count1".
18174 * When "set_prevcount" is TRUE first set v:prevcount from v:count.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018175 */
18176 void
Bram Moolenaar8df74be2008-11-20 15:12:02 +000018177set_vcount(count, count1, set_prevcount)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018178 long count;
18179 long count1;
Bram Moolenaar8df74be2008-11-20 15:12:02 +000018180 int set_prevcount;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018181{
Bram Moolenaar8df74be2008-11-20 15:12:02 +000018182 if (set_prevcount)
18183 vimvars[VV_PREVCOUNT].vv_nr = vimvars[VV_COUNT].vv_nr;
Bram Moolenaare9a41262005-01-15 22:18:47 +000018184 vimvars[VV_COUNT].vv_nr = count;
18185 vimvars[VV_COUNT1].vv_nr = count1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018186}
18187
18188/*
18189 * Set string v: variable to a copy of "val".
18190 */
18191 void
18192set_vim_var_string(idx, val, len)
18193 int idx;
18194 char_u *val;
18195 int len; /* length of "val" to use or -1 (whole string) */
18196{
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018197 /* Need to do this (at least) once, since we can't initialize a union.
18198 * Will always be invoked when "v:progname" is set. */
18199 vimvars[VV_VERSION].vv_nr = VIM_VERSION_100;
18200
Bram Moolenaare9a41262005-01-15 22:18:47 +000018201 vim_free(vimvars[idx].vv_str);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018202 if (val == NULL)
Bram Moolenaare9a41262005-01-15 22:18:47 +000018203 vimvars[idx].vv_str = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018204 else if (len == -1)
Bram Moolenaare9a41262005-01-15 22:18:47 +000018205 vimvars[idx].vv_str = vim_strsave(val);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018206 else
Bram Moolenaare9a41262005-01-15 22:18:47 +000018207 vimvars[idx].vv_str = vim_strnsave(val, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018208}
18209
18210/*
Bram Moolenaard812df62008-11-09 12:46:09 +000018211 * Set List v: variable to "val".
18212 */
18213 void
18214set_vim_var_list(idx, val)
18215 int idx;
18216 list_T *val;
18217{
18218 list_unref(vimvars[idx].vv_list);
18219 vimvars[idx].vv_list = val;
18220 if (val != NULL)
18221 ++val->lv_refcount;
18222}
18223
18224/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000018225 * Set v:register if needed.
18226 */
18227 void
18228set_reg_var(c)
18229 int c;
18230{
18231 char_u regname;
18232
18233 if (c == 0 || c == ' ')
18234 regname = '"';
18235 else
18236 regname = c;
18237 /* Avoid free/alloc when the value is already right. */
Bram Moolenaare9a41262005-01-15 22:18:47 +000018238 if (vimvars[VV_REG].vv_str == NULL || vimvars[VV_REG].vv_str[0] != c)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018239 set_vim_var_string(VV_REG, &regname, 1);
18240}
18241
18242/*
18243 * Get or set v:exception. If "oldval" == NULL, return the current value.
18244 * Otherwise, restore the value to "oldval" and return NULL.
18245 * Must always be called in pairs to save and restore v:exception! Does not
18246 * take care of memory allocations.
18247 */
18248 char_u *
18249v_exception(oldval)
18250 char_u *oldval;
18251{
18252 if (oldval == NULL)
Bram Moolenaare9a41262005-01-15 22:18:47 +000018253 return vimvars[VV_EXCEPTION].vv_str;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018254
Bram Moolenaare9a41262005-01-15 22:18:47 +000018255 vimvars[VV_EXCEPTION].vv_str = oldval;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018256 return NULL;
18257}
18258
18259/*
18260 * Get or set v:throwpoint. If "oldval" == NULL, return the current value.
18261 * Otherwise, restore the value to "oldval" and return NULL.
18262 * Must always be called in pairs to save and restore v:throwpoint! Does not
18263 * take care of memory allocations.
18264 */
18265 char_u *
18266v_throwpoint(oldval)
18267 char_u *oldval;
18268{
18269 if (oldval == NULL)
Bram Moolenaare9a41262005-01-15 22:18:47 +000018270 return vimvars[VV_THROWPOINT].vv_str;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018271
Bram Moolenaare9a41262005-01-15 22:18:47 +000018272 vimvars[VV_THROWPOINT].vv_str = oldval;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018273 return NULL;
18274}
18275
18276#if defined(FEAT_AUTOCMD) || defined(PROTO)
18277/*
18278 * Set v:cmdarg.
18279 * If "eap" != NULL, use "eap" to generate the value and return the old value.
18280 * If "oldarg" != NULL, restore the value to "oldarg" and return NULL.
18281 * Must always be called in pairs!
18282 */
18283 char_u *
18284set_cmdarg(eap, oldarg)
18285 exarg_T *eap;
18286 char_u *oldarg;
18287{
18288 char_u *oldval;
18289 char_u *newval;
18290 unsigned len;
18291
Bram Moolenaare9a41262005-01-15 22:18:47 +000018292 oldval = vimvars[VV_CMDARG].vv_str;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000018293 if (eap == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018294 {
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000018295 vim_free(oldval);
Bram Moolenaare9a41262005-01-15 22:18:47 +000018296 vimvars[VV_CMDARG].vv_str = oldarg;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000018297 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018298 }
18299
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000018300 if (eap->force_bin == FORCE_BIN)
18301 len = 6;
18302 else if (eap->force_bin == FORCE_NOBIN)
18303 len = 8;
18304 else
18305 len = 0;
Bram Moolenaar910f66f2006-04-05 20:41:53 +000018306
18307 if (eap->read_edit)
18308 len += 7;
18309
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000018310 if (eap->force_ff != 0)
18311 len += (unsigned)STRLEN(eap->cmd + eap->force_ff) + 6;
18312# ifdef FEAT_MBYTE
18313 if (eap->force_enc != 0)
18314 len += (unsigned)STRLEN(eap->cmd + eap->force_enc) + 7;
Bram Moolenaarb2c2efa2005-12-13 20:09:08 +000018315 if (eap->bad_char != 0)
18316 len += (unsigned)STRLEN(eap->cmd + eap->bad_char) + 7;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000018317# endif
18318
18319 newval = alloc(len + 1);
18320 if (newval == NULL)
18321 return NULL;
18322
18323 if (eap->force_bin == FORCE_BIN)
18324 sprintf((char *)newval, " ++bin");
18325 else if (eap->force_bin == FORCE_NOBIN)
18326 sprintf((char *)newval, " ++nobin");
18327 else
18328 *newval = NUL;
Bram Moolenaar910f66f2006-04-05 20:41:53 +000018329
18330 if (eap->read_edit)
18331 STRCAT(newval, " ++edit");
18332
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000018333 if (eap->force_ff != 0)
18334 sprintf((char *)newval + STRLEN(newval), " ++ff=%s",
18335 eap->cmd + eap->force_ff);
18336# ifdef FEAT_MBYTE
18337 if (eap->force_enc != 0)
18338 sprintf((char *)newval + STRLEN(newval), " ++enc=%s",
18339 eap->cmd + eap->force_enc);
Bram Moolenaarb2c2efa2005-12-13 20:09:08 +000018340 if (eap->bad_char != 0)
18341 sprintf((char *)newval + STRLEN(newval), " ++bad=%s",
18342 eap->cmd + eap->bad_char);
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000018343# endif
Bram Moolenaare9a41262005-01-15 22:18:47 +000018344 vimvars[VV_CMDARG].vv_str = newval;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000018345 return oldval;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018346}
18347#endif
18348
18349/*
18350 * Get the value of internal variable "name".
18351 * Return OK or FAIL.
18352 */
18353 static int
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000018354get_var_tv(name, len, rettv, verbose)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018355 char_u *name;
18356 int len; /* length of "name" */
Bram Moolenaar33570922005-01-25 22:26:29 +000018357 typval_T *rettv; /* NULL when only checking existence */
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000018358 int verbose; /* may give error message */
Bram Moolenaar071d4272004-06-13 20:20:40 +000018359{
18360 int ret = OK;
Bram Moolenaar33570922005-01-25 22:26:29 +000018361 typval_T *tv = NULL;
18362 typval_T atv;
18363 dictitem_T *v;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018364 int cc;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018365
18366 /* truncate the name, so that we can use strcmp() */
18367 cc = name[len];
18368 name[len] = NUL;
18369
18370 /*
18371 * Check for "b:changedtick".
18372 */
18373 if (STRCMP(name, "b:changedtick") == 0)
18374 {
Bram Moolenaare9a41262005-01-15 22:18:47 +000018375 atv.v_type = VAR_NUMBER;
18376 atv.vval.v_number = curbuf->b_changedtick;
18377 tv = &atv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018378 }
18379
18380 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +000018381 * Check for user-defined variables.
18382 */
18383 else
18384 {
Bram Moolenaara7043832005-01-21 11:56:39 +000018385 v = find_var(name, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018386 if (v != NULL)
Bram Moolenaar33570922005-01-25 22:26:29 +000018387 tv = &v->di_tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018388 }
18389
Bram Moolenaare9a41262005-01-15 22:18:47 +000018390 if (tv == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018391 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000018392 if (rettv != NULL && verbose)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018393 EMSG2(_(e_undefvar), name);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018394 ret = FAIL;
18395 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018396 else if (rettv != NULL)
Bram Moolenaare9a41262005-01-15 22:18:47 +000018397 copy_tv(tv, rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018398
18399 name[len] = cc;
18400
18401 return ret;
18402}
18403
18404/*
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000018405 * Handle expr[expr], expr[expr:expr] subscript and .name lookup.
18406 * Also handle function call with Funcref variable: func(expr)
18407 * Can all be combined: dict.func(expr)[idx]['func'](expr)
18408 */
18409 static int
18410handle_subscript(arg, rettv, evaluate, verbose)
18411 char_u **arg;
18412 typval_T *rettv;
18413 int evaluate; /* do more than finding the end */
18414 int verbose; /* give error messages */
18415{
18416 int ret = OK;
18417 dict_T *selfdict = NULL;
18418 char_u *s;
18419 int len;
Bram Moolenaard9fba312005-06-26 22:34:35 +000018420 typval_T functv;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000018421
18422 while (ret == OK
18423 && (**arg == '['
18424 || (**arg == '.' && rettv->v_type == VAR_DICT)
18425 || (**arg == '(' && rettv->v_type == VAR_FUNC))
18426 && !vim_iswhite(*(*arg - 1)))
18427 {
18428 if (**arg == '(')
18429 {
Bram Moolenaard9fba312005-06-26 22:34:35 +000018430 /* need to copy the funcref so that we can clear rettv */
18431 functv = *rettv;
18432 rettv->v_type = VAR_UNKNOWN;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000018433
18434 /* Invoke the function. Recursive! */
Bram Moolenaard9fba312005-06-26 22:34:35 +000018435 s = functv.vval.v_string;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000018436 ret = get_func_tv(s, (int)STRLEN(s), rettv, arg,
Bram Moolenaard9fba312005-06-26 22:34:35 +000018437 curwin->w_cursor.lnum, curwin->w_cursor.lnum,
18438 &len, evaluate, selfdict);
18439
18440 /* Clear the funcref afterwards, so that deleting it while
18441 * evaluating the arguments is possible (see test55). */
18442 clear_tv(&functv);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000018443
18444 /* Stop the expression evaluation when immediately aborting on
18445 * error, or when an interrupt occurred or an exception was thrown
18446 * but not caught. */
18447 if (aborting())
18448 {
18449 if (ret == OK)
18450 clear_tv(rettv);
18451 ret = FAIL;
18452 }
18453 dict_unref(selfdict);
18454 selfdict = NULL;
18455 }
18456 else /* **arg == '[' || **arg == '.' */
18457 {
18458 dict_unref(selfdict);
18459 if (rettv->v_type == VAR_DICT)
18460 {
18461 selfdict = rettv->vval.v_dict;
18462 if (selfdict != NULL)
18463 ++selfdict->dv_refcount;
18464 }
18465 else
18466 selfdict = NULL;
18467 if (eval_index(arg, rettv, evaluate, verbose) == FAIL)
18468 {
18469 clear_tv(rettv);
18470 ret = FAIL;
18471 }
18472 }
18473 }
18474 dict_unref(selfdict);
18475 return ret;
18476}
18477
18478/*
Bram Moolenaar8c8de832008-06-24 22:58:06 +000018479 * Allocate memory for a variable type-value, and make it empty (0 or NULL
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018480 * value).
18481 */
Bram Moolenaar33570922005-01-25 22:26:29 +000018482 static typval_T *
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018483alloc_tv()
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018484{
Bram Moolenaar33570922005-01-25 22:26:29 +000018485 return (typval_T *)alloc_clear((unsigned)sizeof(typval_T));
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018486}
18487
18488/*
18489 * Allocate memory for a variable type-value, and assign a string to it.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018490 * The string "s" must have been allocated, it is consumed.
18491 * Return NULL for out of memory, the variable otherwise.
18492 */
Bram Moolenaar33570922005-01-25 22:26:29 +000018493 static typval_T *
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018494alloc_string_tv(s)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018495 char_u *s;
18496{
Bram Moolenaar33570922005-01-25 22:26:29 +000018497 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018498
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018499 rettv = alloc_tv();
18500 if (rettv != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018501 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018502 rettv->v_type = VAR_STRING;
18503 rettv->vval.v_string = s;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018504 }
18505 else
18506 vim_free(s);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018507 return rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018508}
18509
18510/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018511 * Free the memory for a variable type-value.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018512 */
Bram Moolenaar4770d092006-01-12 23:22:24 +000018513 void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018514free_tv(varp)
Bram Moolenaar33570922005-01-25 22:26:29 +000018515 typval_T *varp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018516{
18517 if (varp != NULL)
18518 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018519 switch (varp->v_type)
18520 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018521 case VAR_FUNC:
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018522 func_unref(varp->vval.v_string);
18523 /*FALLTHROUGH*/
18524 case VAR_STRING:
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018525 vim_free(varp->vval.v_string);
18526 break;
18527 case VAR_LIST:
18528 list_unref(varp->vval.v_list);
18529 break;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018530 case VAR_DICT:
18531 dict_unref(varp->vval.v_dict);
18532 break;
Bram Moolenaar758711c2005-02-02 23:11:38 +000018533 case VAR_NUMBER:
Bram Moolenaar8c8de832008-06-24 22:58:06 +000018534#ifdef FEAT_FLOAT
18535 case VAR_FLOAT:
18536#endif
Bram Moolenaar758711c2005-02-02 23:11:38 +000018537 case VAR_UNKNOWN:
18538 break;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018539 default:
Bram Moolenaar758711c2005-02-02 23:11:38 +000018540 EMSG2(_(e_intern2), "free_tv()");
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018541 break;
18542 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000018543 vim_free(varp);
18544 }
18545}
18546
18547/*
18548 * Free the memory for a variable value and set the value to NULL or 0.
18549 */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000018550 void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018551clear_tv(varp)
Bram Moolenaar33570922005-01-25 22:26:29 +000018552 typval_T *varp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018553{
18554 if (varp != NULL)
18555 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018556 switch (varp->v_type)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018557 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018558 case VAR_FUNC:
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018559 func_unref(varp->vval.v_string);
18560 /*FALLTHROUGH*/
18561 case VAR_STRING:
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018562 vim_free(varp->vval.v_string);
18563 varp->vval.v_string = NULL;
18564 break;
18565 case VAR_LIST:
18566 list_unref(varp->vval.v_list);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000018567 varp->vval.v_list = NULL;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018568 break;
Bram Moolenaar8c711452005-01-14 21:53:12 +000018569 case VAR_DICT:
18570 dict_unref(varp->vval.v_dict);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000018571 varp->vval.v_dict = NULL;
Bram Moolenaar8c711452005-01-14 21:53:12 +000018572 break;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018573 case VAR_NUMBER:
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018574 varp->vval.v_number = 0;
18575 break;
Bram Moolenaar8c8de832008-06-24 22:58:06 +000018576#ifdef FEAT_FLOAT
18577 case VAR_FLOAT:
18578 varp->vval.v_float = 0.0;
18579 break;
18580#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018581 case VAR_UNKNOWN:
18582 break;
18583 default:
18584 EMSG2(_(e_intern2), "clear_tv()");
Bram Moolenaar071d4272004-06-13 20:20:40 +000018585 }
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000018586 varp->v_lock = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018587 }
18588}
18589
18590/*
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018591 * Set the value of a variable to NULL without freeing items.
18592 */
18593 static void
18594init_tv(varp)
Bram Moolenaar33570922005-01-25 22:26:29 +000018595 typval_T *varp;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018596{
18597 if (varp != NULL)
Bram Moolenaar33570922005-01-25 22:26:29 +000018598 vim_memset(varp, 0, sizeof(typval_T));
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018599}
18600
18601/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000018602 * Get the number value of a variable.
18603 * If it is a String variable, uses vim_str2nr().
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018604 * For incompatible types, return 0.
18605 * get_tv_number_chk() is similar to get_tv_number(), but informs the
18606 * caller of incompatible types: it sets *denote to TRUE if "denote"
18607 * is not NULL or returns -1 otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018608 */
18609 static long
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018610get_tv_number(varp)
Bram Moolenaar33570922005-01-25 22:26:29 +000018611 typval_T *varp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018612{
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018613 int error = FALSE;
18614
18615 return get_tv_number_chk(varp, &error); /* return 0L on error */
18616}
18617
Bram Moolenaar4be06f92005-07-29 22:36:03 +000018618 long
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018619get_tv_number_chk(varp, denote)
18620 typval_T *varp;
18621 int *denote;
18622{
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018623 long n = 0L;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018624
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018625 switch (varp->v_type)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018626 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018627 case VAR_NUMBER:
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018628 return (long)(varp->vval.v_number);
Bram Moolenaar8c8de832008-06-24 22:58:06 +000018629#ifdef FEAT_FLOAT
18630 case VAR_FLOAT:
Bram Moolenaared0e7452008-06-27 19:17:34 +000018631 EMSG(_("E805: Using a Float as a Number"));
Bram Moolenaar8c8de832008-06-24 22:58:06 +000018632 break;
18633#endif
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018634 case VAR_FUNC:
Bram Moolenaared0e7452008-06-27 19:17:34 +000018635 EMSG(_("E703: Using a Funcref as a Number"));
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018636 break;
18637 case VAR_STRING:
18638 if (varp->vval.v_string != NULL)
18639 vim_str2nr(varp->vval.v_string, NULL, NULL,
18640 TRUE, TRUE, &n, NULL);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018641 return n;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000018642 case VAR_LIST:
Bram Moolenaared0e7452008-06-27 19:17:34 +000018643 EMSG(_("E745: Using a List as a Number"));
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000018644 break;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018645 case VAR_DICT:
Bram Moolenaared0e7452008-06-27 19:17:34 +000018646 EMSG(_("E728: Using a Dictionary as a Number"));
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018647 break;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018648 default:
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018649 EMSG2(_(e_intern2), "get_tv_number()");
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018650 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018651 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018652 if (denote == NULL) /* useful for values that must be unsigned */
18653 n = -1;
18654 else
18655 *denote = TRUE;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018656 return n;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018657}
18658
18659/*
Bram Moolenaar661b1822005-07-28 22:36:45 +000018660 * Get the lnum from the first argument.
18661 * Also accepts ".", "$", etc., but that only works for the current buffer.
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018662 * Returns -1 on error.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018663 */
18664 static linenr_T
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018665get_tv_lnum(argvars)
Bram Moolenaar33570922005-01-25 22:26:29 +000018666 typval_T *argvars;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018667{
Bram Moolenaar33570922005-01-25 22:26:29 +000018668 typval_T rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018669 linenr_T lnum;
18670
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018671 lnum = get_tv_number_chk(&argvars[0], NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018672 if (lnum == 0) /* no valid number, try using line() */
18673 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018674 rettv.v_type = VAR_NUMBER;
18675 f_line(argvars, &rettv);
18676 lnum = rettv.vval.v_number;
18677 clear_tv(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018678 }
18679 return lnum;
18680}
18681
18682/*
Bram Moolenaar661b1822005-07-28 22:36:45 +000018683 * Get the lnum from the first argument.
18684 * Also accepts "$", then "buf" is used.
18685 * Returns 0 on error.
18686 */
18687 static linenr_T
18688get_tv_lnum_buf(argvars, buf)
18689 typval_T *argvars;
18690 buf_T *buf;
18691{
18692 if (argvars[0].v_type == VAR_STRING
18693 && argvars[0].vval.v_string != NULL
18694 && argvars[0].vval.v_string[0] == '$'
18695 && buf != NULL)
18696 return buf->b_ml.ml_line_count;
18697 return get_tv_number_chk(&argvars[0], NULL);
18698}
18699
18700/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000018701 * Get the string value of a variable.
18702 * If it is a Number variable, the number is converted into a string.
Bram Moolenaara7043832005-01-21 11:56:39 +000018703 * get_tv_string() uses a single, static buffer. YOU CAN ONLY USE IT ONCE!
18704 * get_tv_string_buf() uses a given buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018705 * If the String variable has never been set, return an empty string.
18706 * Never returns NULL;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018707 * get_tv_string_chk() and get_tv_string_buf_chk() are similar, but return
18708 * NULL on error.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018709 */
18710 static char_u *
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018711get_tv_string(varp)
Bram Moolenaar33570922005-01-25 22:26:29 +000018712 typval_T *varp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018713{
18714 static char_u mybuf[NUMBUFLEN];
18715
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018716 return get_tv_string_buf(varp, mybuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018717}
18718
18719 static char_u *
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018720get_tv_string_buf(varp, buf)
Bram Moolenaar33570922005-01-25 22:26:29 +000018721 typval_T *varp;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018722 char_u *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018723{
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018724 char_u *res = get_tv_string_buf_chk(varp, buf);
18725
18726 return res != NULL ? res : (char_u *)"";
18727}
18728
Bram Moolenaar4be06f92005-07-29 22:36:03 +000018729 char_u *
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018730get_tv_string_chk(varp)
18731 typval_T *varp;
18732{
18733 static char_u mybuf[NUMBUFLEN];
18734
18735 return get_tv_string_buf_chk(varp, mybuf);
18736}
18737
18738 static char_u *
18739get_tv_string_buf_chk(varp, buf)
18740 typval_T *varp;
18741 char_u *buf;
18742{
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018743 switch (varp->v_type)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018744 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018745 case VAR_NUMBER:
18746 sprintf((char *)buf, "%ld", (long)varp->vval.v_number);
18747 return buf;
18748 case VAR_FUNC:
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018749 EMSG(_("E729: using Funcref as a String"));
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018750 break;
18751 case VAR_LIST:
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018752 EMSG(_("E730: using List as a String"));
Bram Moolenaar8c711452005-01-14 21:53:12 +000018753 break;
18754 case VAR_DICT:
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000018755 EMSG(_("E731: using Dictionary as a String"));
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018756 break;
Bram Moolenaar8c8de832008-06-24 22:58:06 +000018757#ifdef FEAT_FLOAT
18758 case VAR_FLOAT:
18759 EMSG(_("E806: using Float as a String"));
18760 break;
18761#endif
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018762 case VAR_STRING:
18763 if (varp->vval.v_string != NULL)
18764 return varp->vval.v_string;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018765 return (char_u *)"";
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018766 default:
Bram Moolenaarc70646c2005-01-04 21:52:38 +000018767 EMSG2(_(e_intern2), "get_tv_string_buf()");
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018768 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018769 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000018770 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018771}
18772
18773/*
18774 * Find variable "name" in the list of variables.
18775 * Return a pointer to it if found, NULL if not found.
Bram Moolenaar49cd9572005-01-03 21:06:01 +000018776 * Careful: "a:0" variables don't have a name.
Bram Moolenaara7043832005-01-21 11:56:39 +000018777 * When "htp" is not NULL we are writing to the variable, set "htp" to the
Bram Moolenaar33570922005-01-25 22:26:29 +000018778 * hashtab_T used.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018779 */
Bram Moolenaar33570922005-01-25 22:26:29 +000018780 static dictitem_T *
Bram Moolenaara7043832005-01-21 11:56:39 +000018781find_var(name, htp)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018782 char_u *name;
Bram Moolenaar33570922005-01-25 22:26:29 +000018783 hashtab_T **htp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018784{
Bram Moolenaar071d4272004-06-13 20:20:40 +000018785 char_u *varname;
Bram Moolenaar33570922005-01-25 22:26:29 +000018786 hashtab_T *ht;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018787
Bram Moolenaara7043832005-01-21 11:56:39 +000018788 ht = find_var_ht(name, &varname);
18789 if (htp != NULL)
18790 *htp = ht;
18791 if (ht == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018792 return NULL;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000018793 return find_var_in_ht(ht, varname, htp != NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018794}
18795
18796/*
Bram Moolenaar33570922005-01-25 22:26:29 +000018797 * Find variable "varname" in hashtab "ht".
Bram Moolenaara7043832005-01-21 11:56:39 +000018798 * Returns NULL if not found.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018799 */
Bram Moolenaar33570922005-01-25 22:26:29 +000018800 static dictitem_T *
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000018801find_var_in_ht(ht, varname, writing)
Bram Moolenaar33570922005-01-25 22:26:29 +000018802 hashtab_T *ht;
Bram Moolenaara7043832005-01-21 11:56:39 +000018803 char_u *varname;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000018804 int writing;
Bram Moolenaara7043832005-01-21 11:56:39 +000018805{
Bram Moolenaar33570922005-01-25 22:26:29 +000018806 hashitem_T *hi;
18807
18808 if (*varname == NUL)
18809 {
18810 /* Must be something like "s:", otherwise "ht" would be NULL. */
18811 switch (varname[-2])
18812 {
18813 case 's': return &SCRIPT_SV(current_SID).sv_var;
18814 case 'g': return &globvars_var;
18815 case 'v': return &vimvars_var;
18816 case 'b': return &curbuf->b_bufvar;
18817 case 'w': return &curwin->w_winvar;
Bram Moolenaar910f66f2006-04-05 20:41:53 +000018818#ifdef FEAT_WINDOWS
18819 case 't': return &curtab->tp_winvar;
18820#endif
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +000018821 case 'l': return current_funccal == NULL
18822 ? NULL : &current_funccal->l_vars_var;
18823 case 'a': return current_funccal == NULL
18824 ? NULL : &current_funccal->l_avars_var;
Bram Moolenaar33570922005-01-25 22:26:29 +000018825 }
18826 return NULL;
18827 }
Bram Moolenaara7043832005-01-21 11:56:39 +000018828
18829 hi = hash_find(ht, varname);
18830 if (HASHITEM_EMPTY(hi))
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000018831 {
18832 /* For global variables we may try auto-loading the script. If it
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000018833 * worked find the variable again. Don't auto-load a script if it was
18834 * loaded already, otherwise it would be loaded every time when
18835 * checking if a function name is a Funcref variable. */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000018836 if (ht == &globvarht && !writing
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000018837 && script_autoload(varname, FALSE) && !aborting())
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000018838 hi = hash_find(ht, varname);
18839 if (HASHITEM_EMPTY(hi))
18840 return NULL;
18841 }
Bram Moolenaar33570922005-01-25 22:26:29 +000018842 return HI2DI(hi);
Bram Moolenaara7043832005-01-21 11:56:39 +000018843}
18844
18845/*
Bram Moolenaar33570922005-01-25 22:26:29 +000018846 * Find the hashtab used for a variable name.
Bram Moolenaara7043832005-01-21 11:56:39 +000018847 * Set "varname" to the start of name without ':'.
18848 */
Bram Moolenaar33570922005-01-25 22:26:29 +000018849 static hashtab_T *
Bram Moolenaara7043832005-01-21 11:56:39 +000018850find_var_ht(name, varname)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018851 char_u *name;
18852 char_u **varname;
18853{
Bram Moolenaar75c50c42005-06-04 22:06:24 +000018854 hashitem_T *hi;
18855
Bram Moolenaar071d4272004-06-13 20:20:40 +000018856 if (name[1] != ':')
18857 {
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000018858 /* The name must not start with a colon or #. */
18859 if (name[0] == ':' || name[0] == AUTOLOAD_CHAR)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018860 return NULL;
18861 *varname = name;
Bram Moolenaar532c7802005-01-27 14:44:31 +000018862
18863 /* "version" is "v:version" in all scopes */
Bram Moolenaar75c50c42005-06-04 22:06:24 +000018864 hi = hash_find(&compat_hashtab, name);
18865 if (!HASHITEM_EMPTY(hi))
Bram Moolenaar532c7802005-01-27 14:44:31 +000018866 return &compat_hashtab;
18867
Bram Moolenaar071d4272004-06-13 20:20:40 +000018868 if (current_funccal == NULL)
Bram Moolenaar33570922005-01-25 22:26:29 +000018869 return &globvarht; /* global variable */
18870 return &current_funccal->l_vars.dv_hashtab; /* l: variable */
Bram Moolenaar071d4272004-06-13 20:20:40 +000018871 }
18872 *varname = name + 2;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000018873 if (*name == 'g') /* global variable */
18874 return &globvarht;
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000018875 /* There must be no ':' or '#' in the rest of the name, unless g: is used
18876 */
18877 if (vim_strchr(name + 2, ':') != NULL
18878 || vim_strchr(name + 2, AUTOLOAD_CHAR) != NULL)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000018879 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018880 if (*name == 'b') /* buffer variable */
Bram Moolenaar33570922005-01-25 22:26:29 +000018881 return &curbuf->b_vars.dv_hashtab;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018882 if (*name == 'w') /* window variable */
Bram Moolenaar33570922005-01-25 22:26:29 +000018883 return &curwin->w_vars.dv_hashtab;
Bram Moolenaar910f66f2006-04-05 20:41:53 +000018884#ifdef FEAT_WINDOWS
18885 if (*name == 't') /* tab page variable */
18886 return &curtab->tp_vars.dv_hashtab;
18887#endif
Bram Moolenaar33570922005-01-25 22:26:29 +000018888 if (*name == 'v') /* v: variable */
18889 return &vimvarht;
18890 if (*name == 'a' && current_funccal != NULL) /* function argument */
18891 return &current_funccal->l_avars.dv_hashtab;
18892 if (*name == 'l' && current_funccal != NULL) /* local function variable */
18893 return &current_funccal->l_vars.dv_hashtab;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018894 if (*name == 's' /* script variable */
18895 && current_SID > 0 && current_SID <= ga_scripts.ga_len)
18896 return &SCRIPT_VARS(current_SID);
18897 return NULL;
18898}
18899
18900/*
18901 * Get the string value of a (global/local) variable.
18902 * Returns NULL when it doesn't exist.
18903 */
18904 char_u *
18905get_var_value(name)
18906 char_u *name;
18907{
Bram Moolenaar33570922005-01-25 22:26:29 +000018908 dictitem_T *v;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018909
Bram Moolenaara7043832005-01-21 11:56:39 +000018910 v = find_var(name, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018911 if (v == NULL)
18912 return NULL;
Bram Moolenaar33570922005-01-25 22:26:29 +000018913 return get_tv_string(&v->di_tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018914}
18915
18916/*
Bram Moolenaar33570922005-01-25 22:26:29 +000018917 * Allocate a new hashtab for a sourced script. It will be used while
Bram Moolenaar071d4272004-06-13 20:20:40 +000018918 * sourcing this script and when executing functions defined in the script.
18919 */
18920 void
18921new_script_vars(id)
18922 scid_T id;
18923{
Bram Moolenaara7043832005-01-21 11:56:39 +000018924 int i;
Bram Moolenaar33570922005-01-25 22:26:29 +000018925 hashtab_T *ht;
18926 scriptvar_T *sv;
Bram Moolenaara7043832005-01-21 11:56:39 +000018927
Bram Moolenaar071d4272004-06-13 20:20:40 +000018928 if (ga_grow(&ga_scripts, (int)(id - ga_scripts.ga_len)) == OK)
18929 {
Bram Moolenaara7043832005-01-21 11:56:39 +000018930 /* Re-allocating ga_data means that an ht_array pointing to
18931 * ht_smallarray becomes invalid. We can recognize this: ht_mask is
Bram Moolenaar33570922005-01-25 22:26:29 +000018932 * at its init value. Also reset "v_dict", it's always the same. */
Bram Moolenaara7043832005-01-21 11:56:39 +000018933 for (i = 1; i <= ga_scripts.ga_len; ++i)
18934 {
18935 ht = &SCRIPT_VARS(i);
18936 if (ht->ht_mask == HT_INIT_SIZE - 1)
18937 ht->ht_array = ht->ht_smallarray;
Bram Moolenaar33570922005-01-25 22:26:29 +000018938 sv = &SCRIPT_SV(i);
18939 sv->sv_var.di_tv.vval.v_dict = &sv->sv_dict;
Bram Moolenaara7043832005-01-21 11:56:39 +000018940 }
18941
Bram Moolenaar071d4272004-06-13 20:20:40 +000018942 while (ga_scripts.ga_len < id)
18943 {
Bram Moolenaar33570922005-01-25 22:26:29 +000018944 sv = &SCRIPT_SV(ga_scripts.ga_len + 1);
18945 init_var_dict(&sv->sv_dict, &sv->sv_var);
Bram Moolenaar071d4272004-06-13 20:20:40 +000018946 ++ga_scripts.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018947 }
18948 }
18949}
18950
18951/*
Bram Moolenaar33570922005-01-25 22:26:29 +000018952 * Initialize dictionary "dict" as a scope and set variable "dict_var" to
18953 * point to it.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018954 */
18955 void
Bram Moolenaar33570922005-01-25 22:26:29 +000018956init_var_dict(dict, dict_var)
18957 dict_T *dict;
18958 dictitem_T *dict_var;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018959{
Bram Moolenaar33570922005-01-25 22:26:29 +000018960 hash_init(&dict->dv_hashtab);
18961 dict->dv_refcount = 99999;
18962 dict_var->di_tv.vval.v_dict = dict;
18963 dict_var->di_tv.v_type = VAR_DICT;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000018964 dict_var->di_tv.v_lock = VAR_FIXED;
Bram Moolenaar33570922005-01-25 22:26:29 +000018965 dict_var->di_flags = DI_FLAGS_RO | DI_FLAGS_FIX;
18966 dict_var->di_key[0] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018967}
18968
18969/*
18970 * Clean up a list of internal variables.
Bram Moolenaar33570922005-01-25 22:26:29 +000018971 * Frees all allocated variables and the value they contain.
18972 * Clears hashtab "ht", does not free it.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018973 */
18974 void
Bram Moolenaara7043832005-01-21 11:56:39 +000018975vars_clear(ht)
Bram Moolenaar33570922005-01-25 22:26:29 +000018976 hashtab_T *ht;
18977{
18978 vars_clear_ext(ht, TRUE);
18979}
18980
18981/*
18982 * Like vars_clear(), but only free the value if "free_val" is TRUE.
18983 */
18984 static void
18985vars_clear_ext(ht, free_val)
18986 hashtab_T *ht;
18987 int free_val;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018988{
Bram Moolenaara7043832005-01-21 11:56:39 +000018989 int todo;
Bram Moolenaar33570922005-01-25 22:26:29 +000018990 hashitem_T *hi;
18991 dictitem_T *v;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018992
Bram Moolenaar33570922005-01-25 22:26:29 +000018993 hash_lock(ht);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000018994 todo = (int)ht->ht_used;
Bram Moolenaara7043832005-01-21 11:56:39 +000018995 for (hi = ht->ht_array; todo > 0; ++hi)
18996 {
18997 if (!HASHITEM_EMPTY(hi))
18998 {
18999 --todo;
19000
Bram Moolenaar33570922005-01-25 22:26:29 +000019001 /* Free the variable. Don't remove it from the hashtab,
Bram Moolenaara7043832005-01-21 11:56:39 +000019002 * ht_array might change then. hash_clear() takes care of it
19003 * later. */
Bram Moolenaar33570922005-01-25 22:26:29 +000019004 v = HI2DI(hi);
19005 if (free_val)
19006 clear_tv(&v->di_tv);
19007 if ((v->di_flags & DI_FLAGS_FIX) == 0)
19008 vim_free(v);
Bram Moolenaara7043832005-01-21 11:56:39 +000019009 }
19010 }
19011 hash_clear(ht);
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +000019012 ht->ht_used = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019013}
19014
Bram Moolenaara7043832005-01-21 11:56:39 +000019015/*
Bram Moolenaar33570922005-01-25 22:26:29 +000019016 * Delete a variable from hashtab "ht" at item "hi".
19017 * Clear the variable value and free the dictitem.
Bram Moolenaara7043832005-01-21 11:56:39 +000019018 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000019019 static void
Bram Moolenaara7043832005-01-21 11:56:39 +000019020delete_var(ht, hi)
Bram Moolenaar33570922005-01-25 22:26:29 +000019021 hashtab_T *ht;
19022 hashitem_T *hi;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019023{
Bram Moolenaar33570922005-01-25 22:26:29 +000019024 dictitem_T *di = HI2DI(hi);
Bram Moolenaara7043832005-01-21 11:56:39 +000019025
19026 hash_remove(ht, hi);
Bram Moolenaar33570922005-01-25 22:26:29 +000019027 clear_tv(&di->di_tv);
19028 vim_free(di);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019029}
19030
19031/*
19032 * List the value of one internal variable.
19033 */
19034 static void
Bram Moolenaar7d61a922007-08-30 09:12:23 +000019035list_one_var(v, prefix, first)
Bram Moolenaar33570922005-01-25 22:26:29 +000019036 dictitem_T *v;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019037 char_u *prefix;
Bram Moolenaar7d61a922007-08-30 09:12:23 +000019038 int *first;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019039{
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019040 char_u *tofree;
19041 char_u *s;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000019042 char_u numbuf[NUMBUFLEN];
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019043
Bram Moolenaarb71eaae2006-01-20 23:10:18 +000019044 s = echo_string(&v->di_tv, &tofree, numbuf, ++current_copyID);
Bram Moolenaar33570922005-01-25 22:26:29 +000019045 list_one_var_a(prefix, v->di_key, v->di_tv.v_type,
Bram Moolenaar7d61a922007-08-30 09:12:23 +000019046 s == NULL ? (char_u *)"" : s, first);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019047 vim_free(tofree);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019048}
19049
Bram Moolenaar071d4272004-06-13 20:20:40 +000019050 static void
Bram Moolenaar7d61a922007-08-30 09:12:23 +000019051list_one_var_a(prefix, name, type, string, first)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019052 char_u *prefix;
19053 char_u *name;
19054 int type;
19055 char_u *string;
Bram Moolenaar7d61a922007-08-30 09:12:23 +000019056 int *first; /* when TRUE clear rest of screen and set to FALSE */
Bram Moolenaar071d4272004-06-13 20:20:40 +000019057{
Bram Moolenaar31859182007-08-14 20:41:13 +000019058 /* don't use msg() or msg_attr() to avoid overwriting "v:statusmsg" */
19059 msg_start();
19060 msg_puts(prefix);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019061 if (name != NULL) /* "a:" vars don't have a name stored */
19062 msg_puts(name);
19063 msg_putchar(' ');
19064 msg_advance(22);
19065 if (type == VAR_NUMBER)
19066 msg_putchar('#');
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019067 else if (type == VAR_FUNC)
19068 msg_putchar('*');
19069 else if (type == VAR_LIST)
19070 {
19071 msg_putchar('[');
19072 if (*string == '[')
19073 ++string;
19074 }
Bram Moolenaar8c711452005-01-14 21:53:12 +000019075 else if (type == VAR_DICT)
19076 {
19077 msg_putchar('{');
19078 if (*string == '{')
19079 ++string;
19080 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019081 else
19082 msg_putchar(' ');
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019083
Bram Moolenaar071d4272004-06-13 20:20:40 +000019084 msg_outtrans(string);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019085
19086 if (type == VAR_FUNC)
19087 msg_puts((char_u *)"()");
Bram Moolenaar7d61a922007-08-30 09:12:23 +000019088 if (*first)
19089 {
19090 msg_clr_eos();
19091 *first = FALSE;
19092 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019093}
19094
19095/*
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019096 * Set variable "name" to value in "tv".
Bram Moolenaar071d4272004-06-13 20:20:40 +000019097 * If the variable already exists, the value is updated.
19098 * Otherwise the variable is created.
19099 */
19100 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019101set_var(name, tv, copy)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019102 char_u *name;
Bram Moolenaar33570922005-01-25 22:26:29 +000019103 typval_T *tv;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019104 int copy; /* make copy of value in "tv" */
Bram Moolenaar071d4272004-06-13 20:20:40 +000019105{
Bram Moolenaar33570922005-01-25 22:26:29 +000019106 dictitem_T *v;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019107 char_u *varname;
Bram Moolenaar33570922005-01-25 22:26:29 +000019108 hashtab_T *ht;
Bram Moolenaar92124a32005-06-17 22:03:40 +000019109 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019110
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019111 if (tv->v_type == VAR_FUNC)
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019112 {
19113 if (!(vim_strchr((char_u *)"wbs", name[0]) != NULL && name[1] == ':')
19114 && !ASCII_ISUPPER((name[0] != NUL && name[1] == ':')
19115 ? name[2] : name[0]))
19116 {
Bram Moolenaare49b69a2005-01-08 16:11:57 +000019117 EMSG2(_("E704: Funcref variable name must start with a capital: %s"), name);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019118 return;
19119 }
19120 if (function_exists(name))
19121 {
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +000019122 EMSG2(_("E705: Variable name conflicts with existing function: %s"),
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019123 name);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019124 return;
19125 }
19126 }
19127
Bram Moolenaara7043832005-01-21 11:56:39 +000019128 ht = find_var_ht(name, &varname);
Bram Moolenaar33570922005-01-25 22:26:29 +000019129 if (ht == NULL || *varname == NUL)
Bram Moolenaara7043832005-01-21 11:56:39 +000019130 {
Bram Moolenaar92124a32005-06-17 22:03:40 +000019131 EMSG2(_(e_illvar), name);
Bram Moolenaara7043832005-01-21 11:56:39 +000019132 return;
19133 }
19134
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000019135 v = find_var_in_ht(ht, varname, TRUE);
Bram Moolenaar33570922005-01-25 22:26:29 +000019136 if (v != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019137 {
Bram Moolenaar33570922005-01-25 22:26:29 +000019138 /* existing variable, need to clear the value */
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000019139 if (var_check_ro(v->di_flags, name)
19140 || tv_check_lock(v->di_tv.v_lock, name))
Bram Moolenaar33570922005-01-25 22:26:29 +000019141 return;
19142 if (v->di_tv.v_type != tv->v_type
19143 && !((v->di_tv.v_type == VAR_STRING
19144 || v->di_tv.v_type == VAR_NUMBER)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019145 && (tv->v_type == VAR_STRING
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019146 || tv->v_type == VAR_NUMBER))
19147#ifdef FEAT_FLOAT
19148 && !((v->di_tv.v_type == VAR_NUMBER
19149 || v->di_tv.v_type == VAR_FLOAT)
19150 && (tv->v_type == VAR_NUMBER
19151 || tv->v_type == VAR_FLOAT))
19152#endif
19153 )
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019154 {
Bram Moolenaare49b69a2005-01-08 16:11:57 +000019155 EMSG2(_("E706: Variable type mismatch for: %s"), name);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019156 return;
19157 }
Bram Moolenaar33570922005-01-25 22:26:29 +000019158
19159 /*
Bram Moolenaar758711c2005-02-02 23:11:38 +000019160 * Handle setting internal v: variables separately: we don't change
19161 * the type.
Bram Moolenaar33570922005-01-25 22:26:29 +000019162 */
19163 if (ht == &vimvarht)
19164 {
19165 if (v->di_tv.v_type == VAR_STRING)
19166 {
19167 vim_free(v->di_tv.vval.v_string);
19168 if (copy || tv->v_type != VAR_STRING)
19169 v->di_tv.vval.v_string = vim_strsave(get_tv_string(tv));
19170 else
19171 {
19172 /* Take over the string to avoid an extra alloc/free. */
19173 v->di_tv.vval.v_string = tv->vval.v_string;
19174 tv->vval.v_string = NULL;
19175 }
19176 }
19177 else if (v->di_tv.v_type != VAR_NUMBER)
19178 EMSG2(_(e_intern2), "set_var()");
19179 else
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019180 {
Bram Moolenaar33570922005-01-25 22:26:29 +000019181 v->di_tv.vval.v_number = get_tv_number(tv);
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019182 if (STRCMP(varname, "searchforward") == 0)
19183 set_search_direction(v->di_tv.vval.v_number ? '/' : '?');
19184 }
Bram Moolenaar33570922005-01-25 22:26:29 +000019185 return;
19186 }
19187
19188 clear_tv(&v->di_tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019189 }
19190 else /* add a new variable */
19191 {
Bram Moolenaar5fcc3fe2006-06-22 15:35:14 +000019192 /* Can't add "v:" variable. */
19193 if (ht == &vimvarht)
19194 {
19195 EMSG2(_(e_illvar), name);
19196 return;
19197 }
19198
Bram Moolenaar92124a32005-06-17 22:03:40 +000019199 /* Make sure the variable name is valid. */
19200 for (p = varname; *p != NUL; ++p)
Bram Moolenaara5792f52005-11-23 21:25:05 +000019201 if (!eval_isnamec1(*p) && (p == varname || !VIM_ISDIGIT(*p))
19202 && *p != AUTOLOAD_CHAR)
Bram Moolenaar92124a32005-06-17 22:03:40 +000019203 {
19204 EMSG2(_(e_illvar), varname);
19205 return;
19206 }
19207
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000019208 v = (dictitem_T *)alloc((unsigned)(sizeof(dictitem_T)
19209 + STRLEN(varname)));
Bram Moolenaara7043832005-01-21 11:56:39 +000019210 if (v == NULL)
19211 return;
Bram Moolenaar33570922005-01-25 22:26:29 +000019212 STRCPY(v->di_key, varname);
Bram Moolenaar33570922005-01-25 22:26:29 +000019213 if (hash_add(ht, DI2HIKEY(v)) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019214 {
Bram Moolenaara7043832005-01-21 11:56:39 +000019215 vim_free(v);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019216 return;
19217 }
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000019218 v->di_flags = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019219 }
Bram Moolenaara7043832005-01-21 11:56:39 +000019220
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019221 if (copy || tv->v_type == VAR_NUMBER || tv->v_type == VAR_FLOAT)
Bram Moolenaar33570922005-01-25 22:26:29 +000019222 copy_tv(tv, &v->di_tv);
Bram Moolenaar1c2fda22005-01-02 11:43:19 +000019223 else
19224 {
Bram Moolenaar33570922005-01-25 22:26:29 +000019225 v->di_tv = *tv;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000019226 v->di_tv.v_lock = 0;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019227 init_tv(tv);
Bram Moolenaar1c2fda22005-01-02 11:43:19 +000019228 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019229}
19230
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019231/*
Bram Moolenaar4e957af2006-09-02 11:41:07 +000019232 * Return TRUE if di_flags "flags" indicates variable "name" is read-only.
Bram Moolenaar33570922005-01-25 22:26:29 +000019233 * Also give an error message.
19234 */
19235 static int
19236var_check_ro(flags, name)
19237 int flags;
19238 char_u *name;
19239{
19240 if (flags & DI_FLAGS_RO)
19241 {
19242 EMSG2(_(e_readonlyvar), name);
19243 return TRUE;
19244 }
19245 if ((flags & DI_FLAGS_RO_SBX) && sandbox)
19246 {
19247 EMSG2(_(e_readonlysbx), name);
19248 return TRUE;
19249 }
19250 return FALSE;
19251}
19252
19253/*
Bram Moolenaar4e957af2006-09-02 11:41:07 +000019254 * Return TRUE if di_flags "flags" indicates variable "name" is fixed.
19255 * Also give an error message.
19256 */
19257 static int
19258var_check_fixed(flags, name)
19259 int flags;
19260 char_u *name;
19261{
19262 if (flags & DI_FLAGS_FIX)
19263 {
19264 EMSG2(_("E795: Cannot delete variable %s"), name);
19265 return TRUE;
19266 }
19267 return FALSE;
19268}
19269
19270/*
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000019271 * Return TRUE if typeval "tv" is set to be locked (immutable).
19272 * Also give an error message, using "name".
19273 */
19274 static int
19275tv_check_lock(lock, name)
19276 int lock;
19277 char_u *name;
19278{
19279 if (lock & VAR_LOCKED)
19280 {
19281 EMSG2(_("E741: Value is locked: %s"),
19282 name == NULL ? (char_u *)_("Unknown") : name);
19283 return TRUE;
19284 }
19285 if (lock & VAR_FIXED)
19286 {
19287 EMSG2(_("E742: Cannot change value of %s"),
19288 name == NULL ? (char_u *)_("Unknown") : name);
19289 return TRUE;
19290 }
19291 return FALSE;
19292}
19293
19294/*
Bram Moolenaar33570922005-01-25 22:26:29 +000019295 * Copy the values from typval_T "from" to typval_T "to".
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019296 * When needed allocates string or increases reference count.
Bram Moolenaare9a41262005-01-15 22:18:47 +000019297 * Does not make a copy of a list or dict but copies the reference!
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019298 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000019299 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019300copy_tv(from, to)
Bram Moolenaar33570922005-01-25 22:26:29 +000019301 typval_T *from;
19302 typval_T *to;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019303{
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019304 to->v_type = from->v_type;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000019305 to->v_lock = 0;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019306 switch (from->v_type)
19307 {
19308 case VAR_NUMBER:
19309 to->vval.v_number = from->vval.v_number;
19310 break;
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019311#ifdef FEAT_FLOAT
19312 case VAR_FLOAT:
19313 to->vval.v_float = from->vval.v_float;
19314 break;
19315#endif
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019316 case VAR_STRING:
19317 case VAR_FUNC:
19318 if (from->vval.v_string == NULL)
19319 to->vval.v_string = NULL;
19320 else
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019321 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019322 to->vval.v_string = vim_strsave(from->vval.v_string);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019323 if (from->v_type == VAR_FUNC)
19324 func_ref(to->vval.v_string);
19325 }
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019326 break;
19327 case VAR_LIST:
19328 if (from->vval.v_list == NULL)
19329 to->vval.v_list = NULL;
19330 else
19331 {
19332 to->vval.v_list = from->vval.v_list;
19333 ++to->vval.v_list->lv_refcount;
19334 }
19335 break;
Bram Moolenaar8c711452005-01-14 21:53:12 +000019336 case VAR_DICT:
19337 if (from->vval.v_dict == NULL)
19338 to->vval.v_dict = NULL;
19339 else
19340 {
19341 to->vval.v_dict = from->vval.v_dict;
19342 ++to->vval.v_dict->dv_refcount;
19343 }
19344 break;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019345 default:
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019346 EMSG2(_(e_intern2), "copy_tv()");
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019347 break;
19348 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019349}
19350
19351/*
Bram Moolenaare9a41262005-01-15 22:18:47 +000019352 * Make a copy of an item.
19353 * Lists and Dictionaries are also copied. A deep copy if "deep" is set.
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019354 * For deepcopy() "copyID" is zero for a full copy or the ID for when a
19355 * reference to an already copied list/dict can be used.
19356 * Returns FAIL or OK.
Bram Moolenaare9a41262005-01-15 22:18:47 +000019357 */
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019358 static int
19359item_copy(from, to, deep, copyID)
Bram Moolenaar33570922005-01-25 22:26:29 +000019360 typval_T *from;
19361 typval_T *to;
Bram Moolenaare9a41262005-01-15 22:18:47 +000019362 int deep;
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019363 int copyID;
Bram Moolenaare9a41262005-01-15 22:18:47 +000019364{
19365 static int recurse = 0;
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019366 int ret = OK;
Bram Moolenaare9a41262005-01-15 22:18:47 +000019367
Bram Moolenaar33570922005-01-25 22:26:29 +000019368 if (recurse >= DICT_MAXNEST)
Bram Moolenaare9a41262005-01-15 22:18:47 +000019369 {
19370 EMSG(_("E698: variable nested too deep for making a copy"));
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019371 return FAIL;
Bram Moolenaare9a41262005-01-15 22:18:47 +000019372 }
19373 ++recurse;
19374
19375 switch (from->v_type)
19376 {
19377 case VAR_NUMBER:
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019378#ifdef FEAT_FLOAT
19379 case VAR_FLOAT:
19380#endif
Bram Moolenaare9a41262005-01-15 22:18:47 +000019381 case VAR_STRING:
19382 case VAR_FUNC:
19383 copy_tv(from, to);
19384 break;
19385 case VAR_LIST:
19386 to->v_type = VAR_LIST;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000019387 to->v_lock = 0;
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019388 if (from->vval.v_list == NULL)
19389 to->vval.v_list = NULL;
19390 else if (copyID != 0 && from->vval.v_list->lv_copyID == copyID)
19391 {
19392 /* use the copy made earlier */
19393 to->vval.v_list = from->vval.v_list->lv_copylist;
19394 ++to->vval.v_list->lv_refcount;
19395 }
19396 else
19397 to->vval.v_list = list_copy(from->vval.v_list, deep, copyID);
19398 if (to->vval.v_list == NULL)
19399 ret = FAIL;
Bram Moolenaare9a41262005-01-15 22:18:47 +000019400 break;
19401 case VAR_DICT:
19402 to->v_type = VAR_DICT;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000019403 to->v_lock = 0;
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019404 if (from->vval.v_dict == NULL)
19405 to->vval.v_dict = NULL;
19406 else if (copyID != 0 && from->vval.v_dict->dv_copyID == copyID)
19407 {
19408 /* use the copy made earlier */
19409 to->vval.v_dict = from->vval.v_dict->dv_copydict;
19410 ++to->vval.v_dict->dv_refcount;
19411 }
19412 else
19413 to->vval.v_dict = dict_copy(from->vval.v_dict, deep, copyID);
19414 if (to->vval.v_dict == NULL)
19415 ret = FAIL;
Bram Moolenaare9a41262005-01-15 22:18:47 +000019416 break;
19417 default:
19418 EMSG2(_(e_intern2), "item_copy()");
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019419 ret = FAIL;
Bram Moolenaare9a41262005-01-15 22:18:47 +000019420 }
19421 --recurse;
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019422 return ret;
Bram Moolenaare9a41262005-01-15 22:18:47 +000019423}
19424
19425/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000019426 * ":echo expr1 ..." print each argument separated with a space, add a
19427 * newline at the end.
19428 * ":echon expr1 ..." print each argument plain.
19429 */
19430 void
19431ex_echo(eap)
19432 exarg_T *eap;
19433{
19434 char_u *arg = eap->arg;
Bram Moolenaar33570922005-01-25 22:26:29 +000019435 typval_T rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019436 char_u *tofree;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019437 char_u *p;
19438 int needclr = TRUE;
19439 int atstart = TRUE;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000019440 char_u numbuf[NUMBUFLEN];
Bram Moolenaar071d4272004-06-13 20:20:40 +000019441
19442 if (eap->skip)
19443 ++emsg_skip;
19444 while (*arg != NUL && *arg != '|' && *arg != '\n' && !got_int)
19445 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019446 /* If eval1() causes an error message the text from the command may
19447 * still need to be cleared. E.g., "echo 22,44". */
19448 need_clr_eos = needclr;
19449
Bram Moolenaar071d4272004-06-13 20:20:40 +000019450 p = arg;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019451 if (eval1(&arg, &rettv, !eap->skip) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019452 {
19453 /*
19454 * Report the invalid expression unless the expression evaluation
19455 * has been cancelled due to an aborting error, an interrupt, or an
19456 * exception.
19457 */
19458 if (!aborting())
19459 EMSG2(_(e_invexpr2), p);
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019460 need_clr_eos = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019461 break;
19462 }
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019463 need_clr_eos = FALSE;
19464
Bram Moolenaar071d4272004-06-13 20:20:40 +000019465 if (!eap->skip)
19466 {
19467 if (atstart)
19468 {
19469 atstart = FALSE;
19470 /* Call msg_start() after eval1(), evaluating the expression
19471 * may cause a message to appear. */
19472 if (eap->cmdidx == CMD_echo)
19473 msg_start();
19474 }
19475 else if (eap->cmdidx == CMD_echo)
19476 msg_puts_attr((char_u *)" ", echo_attr);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +000019477 p = echo_string(&rettv, &tofree, numbuf, ++current_copyID);
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019478 if (p != NULL)
19479 for ( ; *p != NUL && !got_int; ++p)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019480 {
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019481 if (*p == '\n' || *p == '\r' || *p == TAB)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019482 {
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019483 if (*p != TAB && needclr)
19484 {
19485 /* remove any text still there from the command */
19486 msg_clr_eos();
19487 needclr = FALSE;
19488 }
19489 msg_putchar_attr(*p, echo_attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019490 }
19491 else
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019492 {
19493#ifdef FEAT_MBYTE
19494 if (has_mbyte)
19495 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000019496 int i = (*mb_ptr2len)(p);
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019497
19498 (void)msg_outtrans_len_attr(p, i, echo_attr);
19499 p += i - 1;
19500 }
19501 else
Bram Moolenaar071d4272004-06-13 20:20:40 +000019502#endif
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019503 (void)msg_outtrans_len_attr(p, 1, echo_attr);
19504 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019505 }
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019506 vim_free(tofree);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019507 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019508 clear_tv(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019509 arg = skipwhite(arg);
19510 }
19511 eap->nextcmd = check_nextcmd(arg);
19512
19513 if (eap->skip)
19514 --emsg_skip;
19515 else
19516 {
19517 /* remove text that may still be there from the command */
19518 if (needclr)
19519 msg_clr_eos();
19520 if (eap->cmdidx == CMD_echo)
19521 msg_end();
19522 }
19523}
19524
19525/*
19526 * ":echohl {name}".
19527 */
19528 void
19529ex_echohl(eap)
19530 exarg_T *eap;
19531{
19532 int id;
19533
19534 id = syn_name2id(eap->arg);
19535 if (id == 0)
19536 echo_attr = 0;
19537 else
19538 echo_attr = syn_id2attr(id);
19539}
19540
19541/*
19542 * ":execute expr1 ..." execute the result of an expression.
19543 * ":echomsg expr1 ..." Print a message
19544 * ":echoerr expr1 ..." Print an error
19545 * Each gets spaces around each argument and a newline at the end for
19546 * echo commands
19547 */
19548 void
19549ex_execute(eap)
19550 exarg_T *eap;
19551{
19552 char_u *arg = eap->arg;
Bram Moolenaar33570922005-01-25 22:26:29 +000019553 typval_T rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019554 int ret = OK;
19555 char_u *p;
19556 garray_T ga;
19557 int len;
19558 int save_did_emsg;
19559
19560 ga_init2(&ga, 1, 80);
19561
19562 if (eap->skip)
19563 ++emsg_skip;
19564 while (*arg != NUL && *arg != '|' && *arg != '\n')
19565 {
19566 p = arg;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019567 if (eval1(&arg, &rettv, !eap->skip) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019568 {
19569 /*
19570 * Report the invalid expression unless the expression evaluation
19571 * has been cancelled due to an aborting error, an interrupt, or an
19572 * exception.
19573 */
19574 if (!aborting())
19575 EMSG2(_(e_invexpr2), p);
19576 ret = FAIL;
19577 break;
19578 }
19579
19580 if (!eap->skip)
19581 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019582 p = get_tv_string(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019583 len = (int)STRLEN(p);
19584 if (ga_grow(&ga, len + 2) == FAIL)
19585 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019586 clear_tv(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019587 ret = FAIL;
19588 break;
19589 }
19590 if (ga.ga_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019591 ((char_u *)(ga.ga_data))[ga.ga_len++] = ' ';
Bram Moolenaar071d4272004-06-13 20:20:40 +000019592 STRCPY((char_u *)(ga.ga_data) + ga.ga_len, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019593 ga.ga_len += len;
19594 }
19595
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019596 clear_tv(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019597 arg = skipwhite(arg);
19598 }
19599
19600 if (ret != FAIL && ga.ga_data != NULL)
19601 {
19602 if (eap->cmdidx == CMD_echomsg)
Bram Moolenaar4770d092006-01-12 23:22:24 +000019603 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000019604 MSG_ATTR(ga.ga_data, echo_attr);
Bram Moolenaar4770d092006-01-12 23:22:24 +000019605 out_flush();
19606 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019607 else if (eap->cmdidx == CMD_echoerr)
19608 {
19609 /* We don't want to abort following commands, restore did_emsg. */
19610 save_did_emsg = did_emsg;
19611 EMSG((char_u *)ga.ga_data);
19612 if (!force_abort)
19613 did_emsg = save_did_emsg;
19614 }
19615 else if (eap->cmdidx == CMD_execute)
19616 do_cmdline((char_u *)ga.ga_data,
19617 eap->getline, eap->cookie, DOCMD_NOWAIT|DOCMD_VERBOSE);
19618 }
19619
19620 ga_clear(&ga);
19621
19622 if (eap->skip)
19623 --emsg_skip;
19624
19625 eap->nextcmd = check_nextcmd(arg);
19626}
19627
19628/*
19629 * Skip over the name of an option: "&option", "&g:option" or "&l:option".
19630 * "arg" points to the "&" or '+' when called, to "option" when returning.
19631 * Returns NULL when no option name found. Otherwise pointer to the char
19632 * after the option name.
19633 */
19634 static char_u *
19635find_option_end(arg, opt_flags)
19636 char_u **arg;
19637 int *opt_flags;
19638{
19639 char_u *p = *arg;
19640
19641 ++p;
19642 if (*p == 'g' && p[1] == ':')
19643 {
19644 *opt_flags = OPT_GLOBAL;
19645 p += 2;
19646 }
19647 else if (*p == 'l' && p[1] == ':')
19648 {
19649 *opt_flags = OPT_LOCAL;
19650 p += 2;
19651 }
19652 else
19653 *opt_flags = 0;
19654
19655 if (!ASCII_ISALPHA(*p))
19656 return NULL;
19657 *arg = p;
19658
19659 if (p[0] == 't' && p[1] == '_' && p[2] != NUL && p[3] != NUL)
19660 p += 4; /* termcap option */
19661 else
19662 while (ASCII_ISALPHA(*p))
19663 ++p;
19664 return p;
19665}
19666
19667/*
19668 * ":function"
19669 */
19670 void
19671ex_function(eap)
19672 exarg_T *eap;
19673{
19674 char_u *theline;
19675 int j;
19676 int c;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019677 int saved_did_emsg;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019678 char_u *name = NULL;
19679 char_u *p;
19680 char_u *arg;
Bram Moolenaar997fb4b2006-02-17 21:53:23 +000019681 char_u *line_arg = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019682 garray_T newargs;
19683 garray_T newlines;
19684 int varargs = FALSE;
19685 int mustend = FALSE;
19686 int flags = 0;
19687 ufunc_T *fp;
19688 int indent;
19689 int nesting;
19690 char_u *skip_until = NULL;
Bram Moolenaar33570922005-01-25 22:26:29 +000019691 dictitem_T *v;
19692 funcdict_T fudi;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019693 static int func_nr = 0; /* number for nameless function */
19694 int paren;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000019695 hashtab_T *ht;
19696 int todo;
19697 hashitem_T *hi;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000019698 int sourcing_lnum_off;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019699
19700 /*
19701 * ":function" without argument: list functions.
19702 */
19703 if (ends_excmd(*eap->arg))
19704 {
19705 if (!eap->skip)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000019706 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000019707 todo = (int)func_hashtab.ht_used;
Bram Moolenaar038eb0e2005-02-27 22:43:26 +000019708 for (hi = func_hashtab.ht_array; todo > 0 && !got_int; ++hi)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000019709 {
19710 if (!HASHITEM_EMPTY(hi))
19711 {
19712 --todo;
19713 fp = HI2UF(hi);
19714 if (!isdigit(*fp->uf_name))
19715 list_func_head(fp, FALSE);
19716 }
19717 }
19718 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019719 eap->nextcmd = check_nextcmd(eap->arg);
19720 return;
19721 }
19722
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019723 /*
Bram Moolenaardd2436f2005-09-05 22:14:46 +000019724 * ":function /pat": list functions matching pattern.
19725 */
19726 if (*eap->arg == '/')
19727 {
19728 p = skip_regexp(eap->arg + 1, '/', TRUE, NULL);
19729 if (!eap->skip)
19730 {
19731 regmatch_T regmatch;
19732
19733 c = *p;
19734 *p = NUL;
19735 regmatch.regprog = vim_regcomp(eap->arg + 1, RE_MAGIC);
19736 *p = c;
19737 if (regmatch.regprog != NULL)
19738 {
19739 regmatch.rm_ic = p_ic;
19740
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000019741 todo = (int)func_hashtab.ht_used;
Bram Moolenaardd2436f2005-09-05 22:14:46 +000019742 for (hi = func_hashtab.ht_array; todo > 0 && !got_int; ++hi)
19743 {
19744 if (!HASHITEM_EMPTY(hi))
19745 {
19746 --todo;
19747 fp = HI2UF(hi);
19748 if (!isdigit(*fp->uf_name)
19749 && vim_regexec(&regmatch, fp->uf_name, 0))
19750 list_func_head(fp, FALSE);
19751 }
19752 }
19753 }
19754 }
19755 if (*p == '/')
19756 ++p;
19757 eap->nextcmd = check_nextcmd(p);
19758 return;
19759 }
19760
19761 /*
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019762 * Get the function name. There are these situations:
19763 * func normal function name
19764 * "name" == func, "fudi.fd_dict" == NULL
19765 * dict.func new dictionary entry
19766 * "name" == NULL, "fudi.fd_dict" set,
19767 * "fudi.fd_di" == NULL, "fudi.fd_newkey" == func
19768 * dict.func existing dict entry with a Funcref
Bram Moolenaard857f0e2005-06-21 22:37:39 +000019769 * "name" == func, "fudi.fd_dict" set,
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019770 * "fudi.fd_di" set, "fudi.fd_newkey" == NULL
19771 * dict.func existing dict entry that's not a Funcref
19772 * "name" == NULL, "fudi.fd_dict" set,
19773 * "fudi.fd_di" set, "fudi.fd_newkey" == NULL
19774 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000019775 p = eap->arg;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019776 name = trans_function_name(&p, eap->skip, 0, &fudi);
19777 paren = (vim_strchr(p, '(') != NULL);
19778 if (name == NULL && (fudi.fd_dict == NULL || !paren) && !eap->skip)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019779 {
19780 /*
19781 * Return on an invalid expression in braces, unless the expression
19782 * evaluation has been cancelled due to an aborting error, an
19783 * interrupt, or an exception.
19784 */
19785 if (!aborting())
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019786 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000019787 if (!eap->skip && fudi.fd_newkey != NULL)
19788 EMSG2(_(e_dictkey), fudi.fd_newkey);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019789 vim_free(fudi.fd_newkey);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019790 return;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019791 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019792 else
19793 eap->skip = TRUE;
19794 }
Bram Moolenaar1f35bf92006-03-07 22:38:47 +000019795
Bram Moolenaar071d4272004-06-13 20:20:40 +000019796 /* An error in a function call during evaluation of an expression in magic
19797 * braces should not cause the function not to be defined. */
19798 saved_did_emsg = did_emsg;
19799 did_emsg = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019800
19801 /*
19802 * ":function func" with only function name: list function.
19803 */
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019804 if (!paren)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019805 {
19806 if (!ends_excmd(*skipwhite(p)))
19807 {
19808 EMSG(_(e_trailing));
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019809 goto ret_free;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019810 }
19811 eap->nextcmd = check_nextcmd(p);
19812 if (eap->nextcmd != NULL)
19813 *p = NUL;
19814 if (!eap->skip && !got_int)
19815 {
19816 fp = find_func(name);
19817 if (fp != NULL)
19818 {
19819 list_func_head(fp, TRUE);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000019820 for (j = 0; j < fp->uf_lines.ga_len && !got_int; ++j)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019821 {
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000019822 if (FUNCLINE(fp, j) == NULL)
19823 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019824 msg_putchar('\n');
19825 msg_outnum((long)(j + 1));
19826 if (j < 9)
19827 msg_putchar(' ');
19828 if (j < 99)
19829 msg_putchar(' ');
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000019830 msg_prt_line(FUNCLINE(fp, j), FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019831 out_flush(); /* show a line at a time */
19832 ui_breakcheck();
19833 }
19834 if (!got_int)
19835 {
19836 msg_putchar('\n');
19837 msg_puts((char_u *)" endfunction");
19838 }
19839 }
19840 else
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019841 emsg_funcname("E123: Undefined function: %s", name);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019842 }
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019843 goto ret_free;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019844 }
19845
19846 /*
19847 * ":function name(arg1, arg2)" Define function.
19848 */
19849 p = skipwhite(p);
19850 if (*p != '(')
19851 {
19852 if (!eap->skip)
19853 {
19854 EMSG2(_("E124: Missing '(': %s"), eap->arg);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019855 goto ret_free;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019856 }
19857 /* attempt to continue by skipping some text */
19858 if (vim_strchr(p, '(') != NULL)
19859 p = vim_strchr(p, '(');
19860 }
19861 p = skipwhite(p + 1);
19862
19863 ga_init2(&newargs, (int)sizeof(char_u *), 3);
19864 ga_init2(&newlines, (int)sizeof(char_u *), 3);
19865
Bram Moolenaard857f0e2005-06-21 22:37:39 +000019866 if (!eap->skip)
19867 {
Bram Moolenaarb42dc232006-11-21 18:36:05 +000019868 /* Check the name of the function. Unless it's a dictionary function
19869 * (that we are overwriting). */
Bram Moolenaard857f0e2005-06-21 22:37:39 +000019870 if (name != NULL)
19871 arg = name;
19872 else
19873 arg = fudi.fd_newkey;
Bram Moolenaarb42dc232006-11-21 18:36:05 +000019874 if (arg != NULL && (fudi.fd_di == NULL
19875 || fudi.fd_di->di_tv.v_type != VAR_FUNC))
Bram Moolenaard857f0e2005-06-21 22:37:39 +000019876 {
19877 if (*arg == K_SPECIAL)
19878 j = 3;
19879 else
19880 j = 0;
19881 while (arg[j] != NUL && (j == 0 ? eval_isnamec1(arg[j])
19882 : eval_isnamec(arg[j])))
19883 ++j;
19884 if (arg[j] != NUL)
19885 emsg_funcname(_(e_invarg2), arg);
19886 }
19887 }
19888
Bram Moolenaar071d4272004-06-13 20:20:40 +000019889 /*
19890 * Isolate the arguments: "arg1, arg2, ...)"
19891 */
19892 while (*p != ')')
19893 {
19894 if (p[0] == '.' && p[1] == '.' && p[2] == '.')
19895 {
19896 varargs = TRUE;
19897 p += 3;
19898 mustend = TRUE;
19899 }
19900 else
19901 {
19902 arg = p;
19903 while (ASCII_ISALNUM(*p) || *p == '_')
19904 ++p;
19905 if (arg == p || isdigit(*arg)
19906 || (p - arg == 9 && STRNCMP(arg, "firstline", 9) == 0)
19907 || (p - arg == 8 && STRNCMP(arg, "lastline", 8) == 0))
19908 {
19909 if (!eap->skip)
19910 EMSG2(_("E125: Illegal argument: %s"), arg);
19911 break;
19912 }
19913 if (ga_grow(&newargs, 1) == FAIL)
19914 goto erret;
19915 c = *p;
19916 *p = NUL;
19917 arg = vim_strsave(arg);
19918 if (arg == NULL)
19919 goto erret;
19920 ((char_u **)(newargs.ga_data))[newargs.ga_len] = arg;
19921 *p = c;
19922 newargs.ga_len++;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019923 if (*p == ',')
19924 ++p;
19925 else
19926 mustend = TRUE;
19927 }
19928 p = skipwhite(p);
19929 if (mustend && *p != ')')
19930 {
19931 if (!eap->skip)
19932 EMSG2(_(e_invarg2), eap->arg);
19933 break;
19934 }
19935 }
19936 ++p; /* skip the ')' */
19937
Bram Moolenaare9a41262005-01-15 22:18:47 +000019938 /* find extra arguments "range", "dict" and "abort" */
Bram Moolenaar071d4272004-06-13 20:20:40 +000019939 for (;;)
19940 {
19941 p = skipwhite(p);
19942 if (STRNCMP(p, "range", 5) == 0)
19943 {
19944 flags |= FC_RANGE;
19945 p += 5;
19946 }
Bram Moolenaare9a41262005-01-15 22:18:47 +000019947 else if (STRNCMP(p, "dict", 4) == 0)
19948 {
19949 flags |= FC_DICT;
19950 p += 4;
19951 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019952 else if (STRNCMP(p, "abort", 5) == 0)
19953 {
19954 flags |= FC_ABORT;
19955 p += 5;
19956 }
19957 else
19958 break;
19959 }
19960
Bram Moolenaar997fb4b2006-02-17 21:53:23 +000019961 /* When there is a line break use what follows for the function body.
19962 * Makes 'exe "func Test()\n...\nendfunc"' work. */
19963 if (*p == '\n')
19964 line_arg = p + 1;
19965 else if (*p != NUL && *p != '"' && !eap->skip && !did_emsg)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019966 EMSG(_(e_trailing));
19967
19968 /*
19969 * Read the body of the function, until ":endfunction" is found.
19970 */
19971 if (KeyTyped)
19972 {
19973 /* Check if the function already exists, don't let the user type the
19974 * whole function before telling him it doesn't work! For a script we
19975 * need to skip the body to be able to find what follows. */
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019976 if (!eap->skip && !eap->forceit)
19977 {
19978 if (fudi.fd_dict != NULL && fudi.fd_newkey == NULL)
19979 EMSG(_(e_funcdict));
19980 else if (name != NULL && find_func(name) != NULL)
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019981 emsg_funcname(e_funcexts, name);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019982 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019983
Bram Moolenaard857f0e2005-06-21 22:37:39 +000019984 if (!eap->skip && did_emsg)
19985 goto erret;
19986
Bram Moolenaar071d4272004-06-13 20:20:40 +000019987 msg_putchar('\n'); /* don't overwrite the function name */
19988 cmdline_row = msg_row;
19989 }
19990
19991 indent = 2;
19992 nesting = 0;
19993 for (;;)
19994 {
19995 msg_scroll = TRUE;
19996 need_wait_return = FALSE;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000019997 sourcing_lnum_off = sourcing_lnum;
19998
Bram Moolenaar997fb4b2006-02-17 21:53:23 +000019999 if (line_arg != NULL)
20000 {
20001 /* Use eap->arg, split up in parts by line breaks. */
20002 theline = line_arg;
20003 p = vim_strchr(theline, '\n');
20004 if (p == NULL)
20005 line_arg += STRLEN(line_arg);
20006 else
20007 {
20008 *p = NUL;
20009 line_arg = p + 1;
20010 }
20011 }
20012 else if (eap->getline == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020013 theline = getcmdline(':', 0L, indent);
20014 else
20015 theline = eap->getline(':', eap->cookie, indent);
20016 if (KeyTyped)
20017 lines_left = Rows - 1;
20018 if (theline == NULL)
20019 {
20020 EMSG(_("E126: Missing :endfunction"));
20021 goto erret;
20022 }
20023
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000020024 /* Detect line continuation: sourcing_lnum increased more than one. */
20025 if (sourcing_lnum > sourcing_lnum_off + 1)
20026 sourcing_lnum_off = sourcing_lnum - sourcing_lnum_off - 1;
20027 else
20028 sourcing_lnum_off = 0;
20029
Bram Moolenaar071d4272004-06-13 20:20:40 +000020030 if (skip_until != NULL)
20031 {
20032 /* between ":append" and "." and between ":python <<EOF" and "EOF"
20033 * don't check for ":endfunc". */
20034 if (STRCMP(theline, skip_until) == 0)
20035 {
20036 vim_free(skip_until);
20037 skip_until = NULL;
20038 }
20039 }
20040 else
20041 {
20042 /* skip ':' and blanks*/
20043 for (p = theline; vim_iswhite(*p) || *p == ':'; ++p)
20044 ;
20045
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000020046 /* Check for "endfunction". */
20047 if (checkforcmd(&p, "endfunction", 4) && nesting-- == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020048 {
Bram Moolenaar997fb4b2006-02-17 21:53:23 +000020049 if (line_arg == NULL)
20050 vim_free(theline);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020051 break;
20052 }
20053
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000020054 /* Increase indent inside "if", "while", "for" and "try", decrease
Bram Moolenaar071d4272004-06-13 20:20:40 +000020055 * at "end". */
20056 if (indent > 2 && STRNCMP(p, "end", 3) == 0)
20057 indent -= 2;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000020058 else if (STRNCMP(p, "if", 2) == 0
20059 || STRNCMP(p, "wh", 2) == 0
20060 || STRNCMP(p, "for", 3) == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +000020061 || STRNCMP(p, "try", 3) == 0)
20062 indent += 2;
20063
20064 /* Check for defining a function inside this function. */
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000020065 if (checkforcmd(&p, "function", 2))
Bram Moolenaar071d4272004-06-13 20:20:40 +000020066 {
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000020067 if (*p == '!')
20068 p = skipwhite(p + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020069 p += eval_fname_script(p);
20070 if (ASCII_ISALPHA(*p))
20071 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020072 vim_free(trans_function_name(&p, TRUE, 0, NULL));
Bram Moolenaar071d4272004-06-13 20:20:40 +000020073 if (*skipwhite(p) == '(')
20074 {
20075 ++nesting;
20076 indent += 2;
20077 }
20078 }
20079 }
20080
20081 /* Check for ":append" or ":insert". */
20082 p = skip_range(p, NULL);
20083 if ((p[0] == 'a' && (!ASCII_ISALPHA(p[1]) || p[1] == 'p'))
20084 || (p[0] == 'i'
20085 && (!ASCII_ISALPHA(p[1]) || (p[1] == 'n'
20086 && (!ASCII_ISALPHA(p[2]) || (p[2] == 's'))))))
20087 skip_until = vim_strsave((char_u *)".");
20088
20089 /* Check for ":python <<EOF", ":tcl <<EOF", etc. */
20090 arg = skipwhite(skiptowhite(p));
20091 if (arg[0] == '<' && arg[1] =='<'
20092 && ((p[0] == 'p' && p[1] == 'y'
20093 && (!ASCII_ISALPHA(p[2]) || p[2] == 't'))
20094 || (p[0] == 'p' && p[1] == 'e'
20095 && (!ASCII_ISALPHA(p[2]) || p[2] == 'r'))
20096 || (p[0] == 't' && p[1] == 'c'
20097 && (!ASCII_ISALPHA(p[2]) || p[2] == 'l'))
20098 || (p[0] == 'r' && p[1] == 'u' && p[2] == 'b'
20099 && (!ASCII_ISALPHA(p[3]) || p[3] == 'y'))
Bram Moolenaar325b7a22004-07-05 15:58:32 +000020100 || (p[0] == 'm' && p[1] == 'z'
20101 && (!ASCII_ISALPHA(p[2]) || p[2] == 's'))
Bram Moolenaar071d4272004-06-13 20:20:40 +000020102 ))
20103 {
20104 /* ":python <<" continues until a dot, like ":append" */
20105 p = skipwhite(arg + 2);
20106 if (*p == NUL)
20107 skip_until = vim_strsave((char_u *)".");
20108 else
20109 skip_until = vim_strsave(p);
20110 }
20111 }
20112
20113 /* Add the line to the function. */
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000020114 if (ga_grow(&newlines, 1 + sourcing_lnum_off) == FAIL)
Bram Moolenaar29a1c1d2005-06-24 23:11:15 +000020115 {
Bram Moolenaar997fb4b2006-02-17 21:53:23 +000020116 if (line_arg == NULL)
20117 vim_free(theline);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020118 goto erret;
Bram Moolenaar29a1c1d2005-06-24 23:11:15 +000020119 }
20120
20121 /* Copy the line to newly allocated memory. get_one_sourceline()
20122 * allocates 250 bytes per line, this saves 80% on average. The cost
20123 * is an extra alloc/free. */
20124 p = vim_strsave(theline);
20125 if (p != NULL)
20126 {
Bram Moolenaar997fb4b2006-02-17 21:53:23 +000020127 if (line_arg == NULL)
20128 vim_free(theline);
Bram Moolenaar29a1c1d2005-06-24 23:11:15 +000020129 theline = p;
20130 }
20131
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000020132 ((char_u **)(newlines.ga_data))[newlines.ga_len++] = theline;
20133
20134 /* Add NULL lines for continuation lines, so that the line count is
20135 * equal to the index in the growarray. */
20136 while (sourcing_lnum_off-- > 0)
20137 ((char_u **)(newlines.ga_data))[newlines.ga_len++] = NULL;
Bram Moolenaar997fb4b2006-02-17 21:53:23 +000020138
20139 /* Check for end of eap->arg. */
20140 if (line_arg != NULL && *line_arg == NUL)
20141 line_arg = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020142 }
20143
20144 /* Don't define the function when skipping commands or when an error was
20145 * detected. */
20146 if (eap->skip || did_emsg)
20147 goto erret;
20148
20149 /*
20150 * If there are no errors, add the function
20151 */
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020152 if (fudi.fd_dict == NULL)
Bram Moolenaar49cd9572005-01-03 21:06:01 +000020153 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020154 v = find_var(name, &ht);
Bram Moolenaar33570922005-01-25 22:26:29 +000020155 if (v != NULL && v->di_tv.v_type == VAR_FUNC)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020156 {
Bram Moolenaar81bf7082005-02-12 14:31:42 +000020157 emsg_funcname("E707: Function name conflicts with variable: %s",
20158 name);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020159 goto erret;
20160 }
Bram Moolenaar49cd9572005-01-03 21:06:01 +000020161
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020162 fp = find_func(name);
20163 if (fp != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020164 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020165 if (!eap->forceit)
20166 {
Bram Moolenaar81bf7082005-02-12 14:31:42 +000020167 emsg_funcname(e_funcexts, name);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020168 goto erret;
20169 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020170 if (fp->uf_calls > 0)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020171 {
Bram Moolenaar81bf7082005-02-12 14:31:42 +000020172 emsg_funcname("E127: Cannot redefine function %s: It is in use",
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020173 name);
20174 goto erret;
20175 }
20176 /* redefine existing function */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020177 ga_clear_strings(&(fp->uf_args));
20178 ga_clear_strings(&(fp->uf_lines));
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020179 vim_free(name);
20180 name = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020181 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000020182 }
20183 else
20184 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020185 char numbuf[20];
20186
20187 fp = NULL;
20188 if (fudi.fd_newkey == NULL && !eap->forceit)
20189 {
20190 EMSG(_(e_funcdict));
20191 goto erret;
20192 }
Bram Moolenaar758711c2005-02-02 23:11:38 +000020193 if (fudi.fd_di == NULL)
20194 {
20195 /* Can't add a function to a locked dictionary */
20196 if (tv_check_lock(fudi.fd_dict->dv_lock, eap->arg))
20197 goto erret;
20198 }
20199 /* Can't change an existing function if it is locked */
20200 else if (tv_check_lock(fudi.fd_di->di_tv.v_lock, eap->arg))
20201 goto erret;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020202
20203 /* Give the function a sequential number. Can only be used with a
20204 * Funcref! */
20205 vim_free(name);
20206 sprintf(numbuf, "%d", ++func_nr);
20207 name = vim_strsave((char_u *)numbuf);
20208 if (name == NULL)
20209 goto erret;
20210 }
20211
20212 if (fp == NULL)
20213 {
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020214 if (fudi.fd_dict == NULL && vim_strchr(name, AUTOLOAD_CHAR) != NULL)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020215 {
20216 int slen, plen;
20217 char_u *scriptname;
20218
20219 /* Check that the autoload name matches the script name. */
20220 j = FAIL;
20221 if (sourcing_name != NULL)
20222 {
20223 scriptname = autoload_name(name);
20224 if (scriptname != NULL)
20225 {
20226 p = vim_strchr(scriptname, '/');
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000020227 plen = (int)STRLEN(p);
20228 slen = (int)STRLEN(sourcing_name);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020229 if (slen > plen && fnamecmp(p,
20230 sourcing_name + slen - plen) == 0)
20231 j = OK;
20232 vim_free(scriptname);
20233 }
20234 }
20235 if (j == FAIL)
20236 {
20237 EMSG2(_("E746: Function name does not match script file name: %s"), name);
20238 goto erret;
20239 }
20240 }
20241
20242 fp = (ufunc_T *)alloc((unsigned)(sizeof(ufunc_T) + STRLEN(name)));
Bram Moolenaar071d4272004-06-13 20:20:40 +000020243 if (fp == NULL)
20244 goto erret;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020245
20246 if (fudi.fd_dict != NULL)
20247 {
20248 if (fudi.fd_di == NULL)
20249 {
20250 /* add new dict entry */
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000020251 fudi.fd_di = dictitem_alloc(fudi.fd_newkey);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020252 if (fudi.fd_di == NULL)
20253 {
20254 vim_free(fp);
20255 goto erret;
20256 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000020257 if (dict_add(fudi.fd_dict, fudi.fd_di) == FAIL)
20258 {
20259 vim_free(fudi.fd_di);
Bram Moolenaar0a5fd8b2006-08-16 20:02:22 +000020260 vim_free(fp);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000020261 goto erret;
20262 }
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020263 }
20264 else
20265 /* overwrite existing dict entry */
20266 clear_tv(&fudi.fd_di->di_tv);
20267 fudi.fd_di->di_tv.v_type = VAR_FUNC;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000020268 fudi.fd_di->di_tv.v_lock = 0;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020269 fudi.fd_di->di_tv.vval.v_string = vim_strsave(name);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020270 fp->uf_refcount = 1;
Bram Moolenaar910f66f2006-04-05 20:41:53 +000020271
20272 /* behave like "dict" was used */
20273 flags |= FC_DICT;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020274 }
20275
Bram Moolenaar071d4272004-06-13 20:20:40 +000020276 /* insert the new function in the function list */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020277 STRCPY(fp->uf_name, name);
20278 hash_add(&func_hashtab, UF2HIKEY(fp));
Bram Moolenaar071d4272004-06-13 20:20:40 +000020279 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020280 fp->uf_args = newargs;
20281 fp->uf_lines = newlines;
Bram Moolenaar05159a02005-02-26 23:04:13 +000020282#ifdef FEAT_PROFILE
20283 fp->uf_tml_count = NULL;
20284 fp->uf_tml_total = NULL;
20285 fp->uf_tml_self = NULL;
20286 fp->uf_profiling = FALSE;
20287 if (prof_def_func())
20288 func_do_profile(fp);
20289#endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020290 fp->uf_varargs = varargs;
20291 fp->uf_flags = flags;
20292 fp->uf_calls = 0;
20293 fp->uf_script_ID = current_SID;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020294 goto ret_free;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020295
20296erret:
Bram Moolenaar071d4272004-06-13 20:20:40 +000020297 ga_clear_strings(&newargs);
20298 ga_clear_strings(&newlines);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020299ret_free:
20300 vim_free(skip_until);
20301 vim_free(fudi.fd_newkey);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020302 vim_free(name);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020303 did_emsg |= saved_did_emsg;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020304}
20305
20306/*
20307 * Get a function name, translating "<SID>" and "<SNR>".
Bram Moolenaara7043832005-01-21 11:56:39 +000020308 * Also handles a Funcref in a List or Dictionary.
Bram Moolenaar071d4272004-06-13 20:20:40 +000020309 * Returns the function name in allocated memory, or NULL for failure.
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020310 * flags:
20311 * TFN_INT: internal function name OK
20312 * TFN_QUIET: be quiet
Bram Moolenaar071d4272004-06-13 20:20:40 +000020313 * Advances "pp" to just after the function name (if no error).
20314 */
20315 static char_u *
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020316trans_function_name(pp, skip, flags, fdp)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020317 char_u **pp;
20318 int skip; /* only find the end, don't evaluate */
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020319 int flags;
Bram Moolenaar33570922005-01-25 22:26:29 +000020320 funcdict_T *fdp; /* return: info about dictionary used */
Bram Moolenaar071d4272004-06-13 20:20:40 +000020321{
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020322 char_u *name = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020323 char_u *start;
20324 char_u *end;
20325 int lead;
20326 char_u sid_buf[20];
Bram Moolenaar071d4272004-06-13 20:20:40 +000020327 int len;
Bram Moolenaar33570922005-01-25 22:26:29 +000020328 lval_T lv;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020329
20330 if (fdp != NULL)
Bram Moolenaar33570922005-01-25 22:26:29 +000020331 vim_memset(fdp, 0, sizeof(funcdict_T));
Bram Moolenaar071d4272004-06-13 20:20:40 +000020332 start = *pp;
Bram Moolenaara7043832005-01-21 11:56:39 +000020333
20334 /* Check for hard coded <SNR>: already translated function ID (from a user
20335 * command). */
20336 if ((*pp)[0] == K_SPECIAL && (*pp)[1] == KS_EXTRA
20337 && (*pp)[2] == (int)KE_SNR)
20338 {
20339 *pp += 3;
20340 len = get_id_len(pp) + 3;
20341 return vim_strnsave(start, len);
20342 }
20343
20344 /* A name starting with "<SID>" or "<SNR>" is local to a script. But
20345 * don't skip over "s:", get_lval() needs it for "s:dict.func". */
Bram Moolenaar071d4272004-06-13 20:20:40 +000020346 lead = eval_fname_script(start);
Bram Moolenaara7043832005-01-21 11:56:39 +000020347 if (lead > 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020348 start += lead;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020349
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020350 end = get_lval(start, NULL, &lv, FALSE, skip, flags & TFN_QUIET,
20351 lead > 2 ? 0 : FNE_CHECK_START);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020352 if (end == start)
20353 {
20354 if (!skip)
20355 EMSG(_("E129: Function name required"));
20356 goto theend;
20357 }
Bram Moolenaara7043832005-01-21 11:56:39 +000020358 if (end == NULL || (lv.ll_tv != NULL && (lead > 2 || lv.ll_range)))
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020359 {
20360 /*
20361 * Report an invalid expression in braces, unless the expression
20362 * evaluation has been cancelled due to an aborting error, an
20363 * interrupt, or an exception.
20364 */
20365 if (!aborting())
20366 {
20367 if (end != NULL)
20368 EMSG2(_(e_invarg2), start);
20369 }
20370 else
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020371 *pp = find_name_end(start, NULL, NULL, FNE_INCL_BR);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020372 goto theend;
20373 }
20374
20375 if (lv.ll_tv != NULL)
20376 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020377 if (fdp != NULL)
20378 {
20379 fdp->fd_dict = lv.ll_dict;
20380 fdp->fd_newkey = lv.ll_newkey;
20381 lv.ll_newkey = NULL;
20382 fdp->fd_di = lv.ll_di;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020383 }
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020384 if (lv.ll_tv->v_type == VAR_FUNC && lv.ll_tv->vval.v_string != NULL)
20385 {
20386 name = vim_strsave(lv.ll_tv->vval.v_string);
20387 *pp = end;
20388 }
20389 else
20390 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000020391 if (!skip && !(flags & TFN_QUIET) && (fdp == NULL
20392 || lv.ll_dict == NULL || fdp->fd_newkey == NULL))
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020393 EMSG(_(e_funcref));
20394 else
20395 *pp = end;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020396 name = NULL;
20397 }
20398 goto theend;
20399 }
20400
20401 if (lv.ll_name == NULL)
20402 {
20403 /* Error found, but continue after the function name. */
20404 *pp = end;
20405 goto theend;
20406 }
20407
Bram Moolenaar33e1a802007-09-06 12:26:44 +000020408 /* Check if the name is a Funcref. If so, use the value. */
20409 if (lv.ll_exp_name != NULL)
20410 {
20411 len = (int)STRLEN(lv.ll_exp_name);
20412 name = deref_func_name(lv.ll_exp_name, &len);
20413 if (name == lv.ll_exp_name)
20414 name = NULL;
20415 }
20416 else
20417 {
20418 len = (int)(end - *pp);
20419 name = deref_func_name(*pp, &len);
20420 if (name == *pp)
20421 name = NULL;
20422 }
20423 if (name != NULL)
20424 {
20425 name = vim_strsave(name);
20426 *pp = end;
20427 goto theend;
20428 }
20429
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020430 if (lv.ll_exp_name != NULL)
Bram Moolenaarc32840f2006-01-14 21:23:38 +000020431 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000020432 len = (int)STRLEN(lv.ll_exp_name);
Bram Moolenaarc32840f2006-01-14 21:23:38 +000020433 if (lead <= 2 && lv.ll_name == lv.ll_exp_name
20434 && STRNCMP(lv.ll_name, "s:", 2) == 0)
20435 {
20436 /* When there was "s:" already or the name expanded to get a
20437 * leading "s:" then remove it. */
20438 lv.ll_name += 2;
20439 len -= 2;
20440 lead = 2;
20441 }
20442 }
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020443 else
Bram Moolenaara7043832005-01-21 11:56:39 +000020444 {
20445 if (lead == 2) /* skip over "s:" */
20446 lv.ll_name += 2;
20447 len = (int)(end - lv.ll_name);
20448 }
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020449
20450 /*
20451 * Copy the function name to allocated memory.
20452 * Accept <SID>name() inside a script, translate into <SNR>123_name().
20453 * Accept <SNR>123_name() outside a script.
20454 */
20455 if (skip)
20456 lead = 0; /* do nothing */
20457 else if (lead > 0)
20458 {
20459 lead = 3;
Bram Moolenaar86c9ee22006-05-13 11:33:27 +000020460 if ((lv.ll_exp_name != NULL && eval_fname_sid(lv.ll_exp_name))
20461 || eval_fname_sid(*pp))
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020462 {
Bram Moolenaar899dddf2006-03-26 21:06:50 +000020463 /* It's "s:" or "<SID>" */
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020464 if (current_SID <= 0)
20465 {
20466 EMSG(_(e_usingsid));
20467 goto theend;
20468 }
20469 sprintf((char *)sid_buf, "%ld_", (long)current_SID);
20470 lead += (int)STRLEN(sid_buf);
20471 }
20472 }
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020473 else if (!(flags & TFN_INT) && builtin_function(lv.ll_name))
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020474 {
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020475 EMSG2(_("E128: Function name must start with a capital or contain a colon: %s"), lv.ll_name);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020476 goto theend;
20477 }
20478 name = alloc((unsigned)(len + lead + 1));
20479 if (name != NULL)
20480 {
20481 if (lead > 0)
20482 {
20483 name[0] = K_SPECIAL;
20484 name[1] = KS_EXTRA;
20485 name[2] = (int)KE_SNR;
Bram Moolenaara7043832005-01-21 11:56:39 +000020486 if (lead > 3) /* If it's "<SID>" */
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020487 STRCPY(name + 3, sid_buf);
20488 }
20489 mch_memmove(name + lead, lv.ll_name, (size_t)len);
20490 name[len + lead] = NUL;
20491 }
20492 *pp = end;
20493
20494theend:
20495 clear_lval(&lv);
20496 return name;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020497}
20498
20499/*
20500 * Return 5 if "p" starts with "<SID>" or "<SNR>" (ignoring case).
20501 * Return 2 if "p" starts with "s:".
20502 * Return 0 otherwise.
20503 */
20504 static int
20505eval_fname_script(p)
20506 char_u *p;
20507{
20508 if (p[0] == '<' && (STRNICMP(p + 1, "SID>", 4) == 0
20509 || STRNICMP(p + 1, "SNR>", 4) == 0))
20510 return 5;
20511 if (p[0] == 's' && p[1] == ':')
20512 return 2;
20513 return 0;
20514}
20515
20516/*
20517 * Return TRUE if "p" starts with "<SID>" or "s:".
20518 * Only works if eval_fname_script() returned non-zero for "p"!
20519 */
20520 static int
20521eval_fname_sid(p)
20522 char_u *p;
20523{
20524 return (*p == 's' || TOUPPER_ASC(p[2]) == 'I');
20525}
20526
20527/*
20528 * List the head of the function: "name(arg1, arg2)".
20529 */
20530 static void
20531list_func_head(fp, indent)
20532 ufunc_T *fp;
20533 int indent;
20534{
20535 int j;
20536
20537 msg_start();
20538 if (indent)
20539 MSG_PUTS(" ");
20540 MSG_PUTS("function ");
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020541 if (fp->uf_name[0] == K_SPECIAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020542 {
20543 MSG_PUTS_ATTR("<SNR>", hl_attr(HLF_8));
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020544 msg_puts(fp->uf_name + 3);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020545 }
20546 else
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020547 msg_puts(fp->uf_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020548 msg_putchar('(');
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020549 for (j = 0; j < fp->uf_args.ga_len; ++j)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020550 {
20551 if (j)
20552 MSG_PUTS(", ");
20553 msg_puts(FUNCARG(fp, j));
20554 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020555 if (fp->uf_varargs)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020556 {
20557 if (j)
20558 MSG_PUTS(", ");
20559 MSG_PUTS("...");
20560 }
20561 msg_putchar(')');
Bram Moolenaarcafda4f2005-09-06 19:25:11 +000020562 msg_clr_eos();
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +000020563 if (p_verbose > 0)
20564 last_set_msg(fp->uf_script_ID);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020565}
20566
20567/*
20568 * Find a function by name, return pointer to it in ufuncs.
20569 * Return NULL for unknown function.
20570 */
20571 static ufunc_T *
20572find_func(name)
20573 char_u *name;
20574{
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020575 hashitem_T *hi;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020576
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020577 hi = hash_find(&func_hashtab, name);
20578 if (!HASHITEM_EMPTY(hi))
20579 return HI2UF(hi);
20580 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020581}
20582
Bram Moolenaar29a1c1d2005-06-24 23:11:15 +000020583#if defined(EXITFREE) || defined(PROTO)
20584 void
20585free_all_functions()
20586{
20587 hashitem_T *hi;
20588
20589 /* Need to start all over every time, because func_free() may change the
20590 * hash table. */
20591 while (func_hashtab.ht_used > 0)
20592 for (hi = func_hashtab.ht_array; ; ++hi)
20593 if (!HASHITEM_EMPTY(hi))
20594 {
20595 func_free(HI2UF(hi));
20596 break;
20597 }
20598}
20599#endif
20600
Bram Moolenaar49cd9572005-01-03 21:06:01 +000020601/*
20602 * Return TRUE if a function "name" exists.
20603 */
20604 static int
20605function_exists(name)
20606 char_u *name;
20607{
Bram Moolenaaraa35dd12006-04-29 22:03:41 +000020608 char_u *nm = name;
20609 char_u *p;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000020610 int n = FALSE;
20611
Bram Moolenaaraa35dd12006-04-29 22:03:41 +000020612 p = trans_function_name(&nm, FALSE, TFN_INT|TFN_QUIET, NULL);
Bram Moolenaar79783442006-05-05 21:18:03 +000020613 nm = skipwhite(nm);
20614
20615 /* Only accept "funcname", "funcname ", "funcname (..." and
20616 * "funcname(...", not "funcname!...". */
20617 if (p != NULL && (*nm == NUL || *nm == '('))
Bram Moolenaar49cd9572005-01-03 21:06:01 +000020618 {
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020619 if (builtin_function(p))
Bram Moolenaar49cd9572005-01-03 21:06:01 +000020620 n = (find_internal_func(p) >= 0);
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020621 else
20622 n = (find_func(p) != NULL);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000020623 }
Bram Moolenaar79783442006-05-05 21:18:03 +000020624 vim_free(p);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000020625 return n;
20626}
20627
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020628/*
20629 * Return TRUE if "name" looks like a builtin function name: starts with a
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020630 * lower case letter and doesn't contain a ':' or AUTOLOAD_CHAR.
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020631 */
20632 static int
20633builtin_function(name)
20634 char_u *name;
20635{
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020636 return ASCII_ISLOWER(name[0]) && vim_strchr(name, ':') == NULL
20637 && vim_strchr(name, AUTOLOAD_CHAR) == NULL;
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020638}
20639
Bram Moolenaar05159a02005-02-26 23:04:13 +000020640#if defined(FEAT_PROFILE) || defined(PROTO)
20641/*
20642 * Start profiling function "fp".
20643 */
20644 static void
20645func_do_profile(fp)
20646 ufunc_T *fp;
20647{
20648 fp->uf_tm_count = 0;
20649 profile_zero(&fp->uf_tm_self);
20650 profile_zero(&fp->uf_tm_total);
20651 if (fp->uf_tml_count == NULL)
20652 fp->uf_tml_count = (int *)alloc_clear((unsigned)
20653 (sizeof(int) * fp->uf_lines.ga_len));
20654 if (fp->uf_tml_total == NULL)
20655 fp->uf_tml_total = (proftime_T *)alloc_clear((unsigned)
20656 (sizeof(proftime_T) * fp->uf_lines.ga_len));
20657 if (fp->uf_tml_self == NULL)
20658 fp->uf_tml_self = (proftime_T *)alloc_clear((unsigned)
20659 (sizeof(proftime_T) * fp->uf_lines.ga_len));
20660 fp->uf_tml_idx = -1;
20661 if (fp->uf_tml_count == NULL || fp->uf_tml_total == NULL
20662 || fp->uf_tml_self == NULL)
20663 return; /* out of memory */
20664
20665 fp->uf_profiling = TRUE;
20666}
20667
20668/*
20669 * Dump the profiling results for all functions in file "fd".
20670 */
20671 void
20672func_dump_profile(fd)
20673 FILE *fd;
20674{
20675 hashitem_T *hi;
20676 int todo;
20677 ufunc_T *fp;
20678 int i;
Bram Moolenaar73830342005-02-28 22:48:19 +000020679 ufunc_T **sorttab;
20680 int st_len = 0;
Bram Moolenaar05159a02005-02-26 23:04:13 +000020681
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000020682 todo = (int)func_hashtab.ht_used;
Bram Moolenaar61c4e2c2008-08-25 02:49:18 +000020683 if (todo == 0)
20684 return; /* nothing to dump */
20685
Bram Moolenaar73830342005-02-28 22:48:19 +000020686 sorttab = (ufunc_T **)alloc((unsigned)(sizeof(ufunc_T) * todo));
20687
Bram Moolenaar05159a02005-02-26 23:04:13 +000020688 for (hi = func_hashtab.ht_array; todo > 0; ++hi)
20689 {
20690 if (!HASHITEM_EMPTY(hi))
20691 {
20692 --todo;
20693 fp = HI2UF(hi);
20694 if (fp->uf_profiling)
20695 {
Bram Moolenaar73830342005-02-28 22:48:19 +000020696 if (sorttab != NULL)
20697 sorttab[st_len++] = fp;
20698
Bram Moolenaar05159a02005-02-26 23:04:13 +000020699 if (fp->uf_name[0] == K_SPECIAL)
20700 fprintf(fd, "FUNCTION <SNR>%s()\n", fp->uf_name + 3);
20701 else
20702 fprintf(fd, "FUNCTION %s()\n", fp->uf_name);
20703 if (fp->uf_tm_count == 1)
20704 fprintf(fd, "Called 1 time\n");
20705 else
20706 fprintf(fd, "Called %d times\n", fp->uf_tm_count);
20707 fprintf(fd, "Total time: %s\n", profile_msg(&fp->uf_tm_total));
20708 fprintf(fd, " Self time: %s\n", profile_msg(&fp->uf_tm_self));
20709 fprintf(fd, "\n");
20710 fprintf(fd, "count total (s) self (s)\n");
20711
20712 for (i = 0; i < fp->uf_lines.ga_len; ++i)
20713 {
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000020714 if (FUNCLINE(fp, i) == NULL)
20715 continue;
Bram Moolenaar73830342005-02-28 22:48:19 +000020716 prof_func_line(fd, fp->uf_tml_count[i],
20717 &fp->uf_tml_total[i], &fp->uf_tml_self[i], TRUE);
Bram Moolenaar05159a02005-02-26 23:04:13 +000020718 fprintf(fd, "%s\n", FUNCLINE(fp, i));
20719 }
20720 fprintf(fd, "\n");
20721 }
20722 }
20723 }
Bram Moolenaar73830342005-02-28 22:48:19 +000020724
20725 if (sorttab != NULL && st_len > 0)
20726 {
20727 qsort((void *)sorttab, (size_t)st_len, sizeof(ufunc_T *),
20728 prof_total_cmp);
20729 prof_sort_list(fd, sorttab, st_len, "TOTAL", FALSE);
20730 qsort((void *)sorttab, (size_t)st_len, sizeof(ufunc_T *),
20731 prof_self_cmp);
20732 prof_sort_list(fd, sorttab, st_len, "SELF", TRUE);
20733 }
Bram Moolenaar61c4e2c2008-08-25 02:49:18 +000020734
20735 vim_free(sorttab);
Bram Moolenaar05159a02005-02-26 23:04:13 +000020736}
Bram Moolenaar73830342005-02-28 22:48:19 +000020737
20738 static void
20739prof_sort_list(fd, sorttab, st_len, title, prefer_self)
20740 FILE *fd;
20741 ufunc_T **sorttab;
20742 int st_len;
20743 char *title;
20744 int prefer_self; /* when equal print only self time */
20745{
20746 int i;
20747 ufunc_T *fp;
20748
20749 fprintf(fd, "FUNCTIONS SORTED ON %s TIME\n", title);
20750 fprintf(fd, "count total (s) self (s) function\n");
20751 for (i = 0; i < 20 && i < st_len; ++i)
20752 {
20753 fp = sorttab[i];
20754 prof_func_line(fd, fp->uf_tm_count, &fp->uf_tm_total, &fp->uf_tm_self,
20755 prefer_self);
20756 if (fp->uf_name[0] == K_SPECIAL)
20757 fprintf(fd, " <SNR>%s()\n", fp->uf_name + 3);
20758 else
20759 fprintf(fd, " %s()\n", fp->uf_name);
20760 }
20761 fprintf(fd, "\n");
20762}
20763
20764/*
20765 * Print the count and times for one function or function line.
20766 */
20767 static void
20768prof_func_line(fd, count, total, self, prefer_self)
20769 FILE *fd;
20770 int count;
20771 proftime_T *total;
20772 proftime_T *self;
20773 int prefer_self; /* when equal print only self time */
20774{
20775 if (count > 0)
20776 {
20777 fprintf(fd, "%5d ", count);
20778 if (prefer_self && profile_equal(total, self))
20779 fprintf(fd, " ");
20780 else
20781 fprintf(fd, "%s ", profile_msg(total));
20782 if (!prefer_self && profile_equal(total, self))
20783 fprintf(fd, " ");
20784 else
20785 fprintf(fd, "%s ", profile_msg(self));
20786 }
20787 else
20788 fprintf(fd, " ");
20789}
20790
20791/*
20792 * Compare function for total time sorting.
20793 */
20794 static int
20795#ifdef __BORLANDC__
20796_RTLENTRYF
20797#endif
20798prof_total_cmp(s1, s2)
20799 const void *s1;
20800 const void *s2;
20801{
20802 ufunc_T *p1, *p2;
20803
20804 p1 = *(ufunc_T **)s1;
20805 p2 = *(ufunc_T **)s2;
20806 return profile_cmp(&p1->uf_tm_total, &p2->uf_tm_total);
20807}
20808
20809/*
20810 * Compare function for self time sorting.
20811 */
20812 static int
20813#ifdef __BORLANDC__
20814_RTLENTRYF
20815#endif
20816prof_self_cmp(s1, s2)
20817 const void *s1;
20818 const void *s2;
20819{
20820 ufunc_T *p1, *p2;
20821
20822 p1 = *(ufunc_T **)s1;
20823 p2 = *(ufunc_T **)s2;
20824 return profile_cmp(&p1->uf_tm_self, &p2->uf_tm_self);
20825}
20826
Bram Moolenaar05159a02005-02-26 23:04:13 +000020827#endif
20828
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020829/*
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020830 * If "name" has a package name try autoloading the script for it.
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020831 * Return TRUE if a package was loaded.
20832 */
20833 static int
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000020834script_autoload(name, reload)
20835 char_u *name;
20836 int reload; /* load script again when already loaded */
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020837{
20838 char_u *p;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000020839 char_u *scriptname, *tofree;
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020840 int ret = FALSE;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000020841 int i;
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020842
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000020843 /* If there is no '#' after name[0] there is no package name. */
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020844 p = vim_strchr(name, AUTOLOAD_CHAR);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000020845 if (p == NULL || p == name)
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020846 return FALSE;
20847
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000020848 tofree = scriptname = autoload_name(name);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020849
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000020850 /* Find the name in the list of previously loaded package names. Skip
20851 * "autoload/", it's always the same. */
20852 for (i = 0; i < ga_loaded.ga_len; ++i)
20853 if (STRCMP(((char_u **)ga_loaded.ga_data)[i] + 9, scriptname + 9) == 0)
20854 break;
20855 if (!reload && i < ga_loaded.ga_len)
20856 ret = FALSE; /* was loaded already */
20857 else
20858 {
20859 /* Remember the name if it wasn't loaded already. */
20860 if (i == ga_loaded.ga_len && ga_grow(&ga_loaded, 1) == OK)
20861 {
20862 ((char_u **)ga_loaded.ga_data)[ga_loaded.ga_len++] = scriptname;
20863 tofree = NULL;
20864 }
20865
20866 /* Try loading the package from $VIMRUNTIME/autoload/<name>.vim */
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +000020867 if (source_runtime(scriptname, FALSE) == OK)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000020868 ret = TRUE;
20869 }
20870
20871 vim_free(tofree);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020872 return ret;
20873}
20874
20875/*
20876 * Return the autoload script name for a function or variable name.
20877 * Returns NULL when out of memory.
20878 */
20879 static char_u *
20880autoload_name(name)
20881 char_u *name;
20882{
20883 char_u *p;
20884 char_u *scriptname;
20885
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020886 /* Get the script file name: replace '#' with '/', append ".vim". */
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020887 scriptname = alloc((unsigned)(STRLEN(name) + 14));
20888 if (scriptname == NULL)
20889 return FALSE;
20890 STRCPY(scriptname, "autoload/");
20891 STRCAT(scriptname, name);
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020892 *vim_strrchr(scriptname, AUTOLOAD_CHAR) = NUL;
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020893 STRCAT(scriptname, ".vim");
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020894 while ((p = vim_strchr(scriptname, AUTOLOAD_CHAR)) != NULL)
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020895 *p = '/';
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020896 return scriptname;
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020897}
20898
Bram Moolenaar071d4272004-06-13 20:20:40 +000020899#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
20900
20901/*
20902 * Function given to ExpandGeneric() to obtain the list of user defined
20903 * function names.
20904 */
20905 char_u *
20906get_user_func_name(xp, idx)
20907 expand_T *xp;
20908 int idx;
20909{
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020910 static long_u done;
20911 static hashitem_T *hi;
20912 ufunc_T *fp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020913
20914 if (idx == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020915 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020916 done = 0;
20917 hi = func_hashtab.ht_array;
20918 }
20919 if (done < func_hashtab.ht_used)
20920 {
20921 if (done++ > 0)
20922 ++hi;
20923 while (HASHITEM_EMPTY(hi))
20924 ++hi;
20925 fp = HI2UF(hi);
20926
20927 if (STRLEN(fp->uf_name) + 4 >= IOSIZE)
20928 return fp->uf_name; /* prevents overflow */
Bram Moolenaar071d4272004-06-13 20:20:40 +000020929
20930 cat_func_name(IObuff, fp);
20931 if (xp->xp_context != EXPAND_USER_FUNC)
20932 {
20933 STRCAT(IObuff, "(");
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020934 if (!fp->uf_varargs && fp->uf_args.ga_len == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020935 STRCAT(IObuff, ")");
20936 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000020937 return IObuff;
20938 }
20939 return NULL;
20940}
20941
20942#endif /* FEAT_CMDL_COMPL */
20943
20944/*
20945 * Copy the function name of "fp" to buffer "buf".
20946 * "buf" must be able to hold the function name plus three bytes.
20947 * Takes care of script-local function names.
20948 */
20949 static void
20950cat_func_name(buf, fp)
20951 char_u *buf;
20952 ufunc_T *fp;
20953{
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020954 if (fp->uf_name[0] == K_SPECIAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020955 {
20956 STRCPY(buf, "<SNR>");
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020957 STRCAT(buf, fp->uf_name + 3);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020958 }
20959 else
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020960 STRCPY(buf, fp->uf_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020961}
20962
20963/*
20964 * ":delfunction {name}"
20965 */
20966 void
20967ex_delfunction(eap)
20968 exarg_T *eap;
20969{
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020970 ufunc_T *fp = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020971 char_u *p;
20972 char_u *name;
Bram Moolenaar33570922005-01-25 22:26:29 +000020973 funcdict_T fudi;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020974
20975 p = eap->arg;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020976 name = trans_function_name(&p, eap->skip, 0, &fudi);
20977 vim_free(fudi.fd_newkey);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020978 if (name == NULL)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020979 {
20980 if (fudi.fd_dict != NULL && !eap->skip)
20981 EMSG(_(e_funcref));
Bram Moolenaar071d4272004-06-13 20:20:40 +000020982 return;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020983 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000020984 if (!ends_excmd(*skipwhite(p)))
20985 {
20986 vim_free(name);
20987 EMSG(_(e_trailing));
20988 return;
20989 }
20990 eap->nextcmd = check_nextcmd(p);
20991 if (eap->nextcmd != NULL)
20992 *p = NUL;
20993
20994 if (!eap->skip)
20995 fp = find_func(name);
20996 vim_free(name);
20997
20998 if (!eap->skip)
20999 {
21000 if (fp == NULL)
21001 {
Bram Moolenaar05159a02005-02-26 23:04:13 +000021002 EMSG2(_(e_nofunc), eap->arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021003 return;
21004 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021005 if (fp->uf_calls > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021006 {
21007 EMSG2(_("E131: Cannot delete function %s: It is in use"), eap->arg);
21008 return;
21009 }
21010
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000021011 if (fudi.fd_dict != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021012 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000021013 /* Delete the dict item that refers to the function, it will
21014 * invoke func_unref() and possibly delete the function. */
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000021015 dictitem_remove(fudi.fd_dict, fudi.fd_di);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021016 }
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000021017 else
21018 func_free(fp);
21019 }
21020}
21021
21022/*
21023 * Free a function and remove it from the list of functions.
21024 */
21025 static void
21026func_free(fp)
21027 ufunc_T *fp;
21028{
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021029 hashitem_T *hi;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000021030
21031 /* clear this function */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021032 ga_clear_strings(&(fp->uf_args));
21033 ga_clear_strings(&(fp->uf_lines));
Bram Moolenaar05159a02005-02-26 23:04:13 +000021034#ifdef FEAT_PROFILE
21035 vim_free(fp->uf_tml_count);
21036 vim_free(fp->uf_tml_total);
21037 vim_free(fp->uf_tml_self);
21038#endif
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000021039
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021040 /* remove the function from the function hashtable */
21041 hi = hash_find(&func_hashtab, UF2HIKEY(fp));
21042 if (HASHITEM_EMPTY(hi))
21043 EMSG2(_(e_intern2), "func_free()");
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000021044 else
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021045 hash_remove(&func_hashtab, hi);
21046
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000021047 vim_free(fp);
21048}
21049
21050/*
21051 * Unreference a Function: decrement the reference count and free it when it
21052 * becomes zero. Only for numbered functions.
21053 */
21054 static void
21055func_unref(name)
21056 char_u *name;
21057{
21058 ufunc_T *fp;
21059
21060 if (name != NULL && isdigit(*name))
21061 {
21062 fp = find_func(name);
21063 if (fp == NULL)
21064 EMSG2(_(e_intern2), "func_unref()");
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021065 else if (--fp->uf_refcount <= 0)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000021066 {
21067 /* Only delete it when it's not being used. Otherwise it's done
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021068 * when "uf_calls" becomes zero. */
21069 if (fp->uf_calls == 0)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000021070 func_free(fp);
21071 }
21072 }
21073}
21074
21075/*
21076 * Count a reference to a Function.
21077 */
21078 static void
21079func_ref(name)
21080 char_u *name;
21081{
21082 ufunc_T *fp;
21083
21084 if (name != NULL && isdigit(*name))
21085 {
21086 fp = find_func(name);
21087 if (fp == NULL)
21088 EMSG2(_(e_intern2), "func_ref()");
21089 else
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021090 ++fp->uf_refcount;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021091 }
21092}
21093
21094/*
21095 * Call a user function.
21096 */
21097 static void
Bram Moolenaare9a41262005-01-15 22:18:47 +000021098call_user_func(fp, argcount, argvars, rettv, firstline, lastline, selfdict)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021099 ufunc_T *fp; /* pointer to function */
21100 int argcount; /* nr of args */
Bram Moolenaar33570922005-01-25 22:26:29 +000021101 typval_T *argvars; /* arguments */
21102 typval_T *rettv; /* return value */
Bram Moolenaar071d4272004-06-13 20:20:40 +000021103 linenr_T firstline; /* first line of range */
21104 linenr_T lastline; /* last line of range */
Bram Moolenaar33570922005-01-25 22:26:29 +000021105 dict_T *selfdict; /* Dictionary for "self" */
Bram Moolenaar071d4272004-06-13 20:20:40 +000021106{
Bram Moolenaar33570922005-01-25 22:26:29 +000021107 char_u *save_sourcing_name;
21108 linenr_T save_sourcing_lnum;
21109 scid_T save_current_SID;
21110 funccall_T fc;
Bram Moolenaar33570922005-01-25 22:26:29 +000021111 int save_did_emsg;
21112 static int depth = 0;
21113 dictitem_T *v;
21114 int fixvar_idx = 0; /* index in fixvar[] */
21115 int i;
21116 int ai;
21117 char_u numbuf[NUMBUFLEN];
21118 char_u *name;
Bram Moolenaar05159a02005-02-26 23:04:13 +000021119#ifdef FEAT_PROFILE
21120 proftime_T wait_start;
Bram Moolenaare9da72e2006-11-01 17:34:40 +000021121 proftime_T call_start;
Bram Moolenaar05159a02005-02-26 23:04:13 +000021122#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000021123
21124 /* If depth of calling is getting too high, don't execute the function */
21125 if (depth >= p_mfd)
21126 {
21127 EMSG(_("E132: Function call depth is higher than 'maxfuncdepth'"));
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021128 rettv->v_type = VAR_NUMBER;
21129 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021130 return;
21131 }
21132 ++depth;
21133
21134 line_breakcheck(); /* check for CTRL-C hit */
21135
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +000021136 fc.caller = current_funccal;
Bram Moolenaar33570922005-01-25 22:26:29 +000021137 current_funccal = &fc;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021138 fc.func = fp;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021139 fc.rettv = rettv;
21140 rettv->vval.v_number = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021141 fc.linenr = 0;
21142 fc.returned = FALSE;
21143 fc.level = ex_nesting_level;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021144 /* Check if this function has a breakpoint. */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021145 fc.breakpoint = dbg_find_breakpoint(FALSE, fp->uf_name, (linenr_T)0);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021146 fc.dbg_tick = debug_tick;
21147
Bram Moolenaar33570922005-01-25 22:26:29 +000021148 /*
21149 * Note about using fc.fixvar[]: This is an array of FIXVAR_CNT variables
21150 * with names up to VAR_SHORT_LEN long. This avoids having to alloc/free
21151 * each argument variable and saves a lot of time.
21152 */
21153 /*
21154 * Init l: variables.
21155 */
21156 init_var_dict(&fc.l_vars, &fc.l_vars_var);
Bram Moolenaara7043832005-01-21 11:56:39 +000021157 if (selfdict != NULL)
Bram Moolenaare9a41262005-01-15 22:18:47 +000021158 {
Bram Moolenaar76b92b22006-03-24 22:46:53 +000021159 /* Set l:self to "selfdict". Use "name" to avoid a warning from
21160 * some compiler that checks the destination size. */
Bram Moolenaar33570922005-01-25 22:26:29 +000021161 v = &fc.fixvar[fixvar_idx++].var;
Bram Moolenaar76b92b22006-03-24 22:46:53 +000021162 name = v->di_key;
21163 STRCPY(name, "self");
Bram Moolenaar33570922005-01-25 22:26:29 +000021164 v->di_flags = DI_FLAGS_RO + DI_FLAGS_FIX;
21165 hash_add(&fc.l_vars.dv_hashtab, DI2HIKEY(v));
21166 v->di_tv.v_type = VAR_DICT;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000021167 v->di_tv.v_lock = 0;
Bram Moolenaar33570922005-01-25 22:26:29 +000021168 v->di_tv.vval.v_dict = selfdict;
21169 ++selfdict->dv_refcount;
21170 }
Bram Moolenaare9a41262005-01-15 22:18:47 +000021171
Bram Moolenaar33570922005-01-25 22:26:29 +000021172 /*
21173 * Init a: variables.
21174 * Set a:0 to "argcount".
21175 * Set a:000 to a list with room for the "..." arguments.
21176 */
21177 init_var_dict(&fc.l_avars, &fc.l_avars_var);
21178 add_nr_var(&fc.l_avars, &fc.fixvar[fixvar_idx++].var, "0",
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021179 (varnumber_T)(argcount - fp->uf_args.ga_len));
Bram Moolenaar0cd49302008-11-20 09:37:01 +000021180 /* Use "name" to avoid a warning from some compiler that checks the
21181 * destination size. */
Bram Moolenaar33570922005-01-25 22:26:29 +000021182 v = &fc.fixvar[fixvar_idx++].var;
Bram Moolenaar0cd49302008-11-20 09:37:01 +000021183 name = v->di_key;
21184 STRCPY(name, "000");
Bram Moolenaar33570922005-01-25 22:26:29 +000021185 v->di_flags = DI_FLAGS_RO | DI_FLAGS_FIX;
21186 hash_add(&fc.l_avars.dv_hashtab, DI2HIKEY(v));
21187 v->di_tv.v_type = VAR_LIST;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000021188 v->di_tv.v_lock = VAR_FIXED;
Bram Moolenaar33570922005-01-25 22:26:29 +000021189 v->di_tv.vval.v_list = &fc.l_varlist;
21190 vim_memset(&fc.l_varlist, 0, sizeof(list_T));
21191 fc.l_varlist.lv_refcount = 99999;
Bram Moolenaar9dfb0f82006-06-22 16:03:05 +000021192 fc.l_varlist.lv_lock = VAR_FIXED;
Bram Moolenaar33570922005-01-25 22:26:29 +000021193
21194 /*
21195 * Set a:firstline to "firstline" and a:lastline to "lastline".
21196 * Set a:name to named arguments.
21197 * Set a:N to the "..." arguments.
21198 */
21199 add_nr_var(&fc.l_avars, &fc.fixvar[fixvar_idx++].var, "firstline",
21200 (varnumber_T)firstline);
21201 add_nr_var(&fc.l_avars, &fc.fixvar[fixvar_idx++].var, "lastline",
21202 (varnumber_T)lastline);
21203 for (i = 0; i < argcount; ++i)
21204 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021205 ai = i - fp->uf_args.ga_len;
Bram Moolenaar33570922005-01-25 22:26:29 +000021206 if (ai < 0)
21207 /* named argument a:name */
21208 name = FUNCARG(fp, i);
21209 else
Bram Moolenaare9a41262005-01-15 22:18:47 +000021210 {
Bram Moolenaar33570922005-01-25 22:26:29 +000021211 /* "..." argument a:1, a:2, etc. */
21212 sprintf((char *)numbuf, "%d", ai + 1);
21213 name = numbuf;
21214 }
21215 if (fixvar_idx < FIXVAR_CNT && STRLEN(name) <= VAR_SHORT_LEN)
21216 {
21217 v = &fc.fixvar[fixvar_idx++].var;
21218 v->di_flags = DI_FLAGS_RO | DI_FLAGS_FIX;
21219 }
21220 else
21221 {
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000021222 v = (dictitem_T *)alloc((unsigned)(sizeof(dictitem_T)
21223 + STRLEN(name)));
Bram Moolenaar33570922005-01-25 22:26:29 +000021224 if (v == NULL)
21225 break;
21226 v->di_flags = DI_FLAGS_RO;
21227 }
21228 STRCPY(v->di_key, name);
21229 hash_add(&fc.l_avars.dv_hashtab, DI2HIKEY(v));
21230
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000021231 /* Note: the values are copied directly to avoid alloc/free.
21232 * "argvars" must have VAR_FIXED for v_lock. */
Bram Moolenaar33570922005-01-25 22:26:29 +000021233 v->di_tv = argvars[i];
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000021234 v->di_tv.v_lock = VAR_FIXED;
Bram Moolenaar33570922005-01-25 22:26:29 +000021235
21236 if (ai >= 0 && ai < MAX_FUNC_ARGS)
21237 {
21238 list_append(&fc.l_varlist, &fc.l_listitems[ai]);
21239 fc.l_listitems[ai].li_tv = argvars[i];
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000021240 fc.l_listitems[ai].li_tv.v_lock = VAR_FIXED;
Bram Moolenaare9a41262005-01-15 22:18:47 +000021241 }
21242 }
21243
Bram Moolenaar071d4272004-06-13 20:20:40 +000021244 /* Don't redraw while executing the function. */
21245 ++RedrawingDisabled;
21246 save_sourcing_name = sourcing_name;
21247 save_sourcing_lnum = sourcing_lnum;
21248 sourcing_lnum = 1;
21249 sourcing_name = alloc((unsigned)((save_sourcing_name == NULL ? 0
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021250 : STRLEN(save_sourcing_name)) + STRLEN(fp->uf_name) + 13));
Bram Moolenaar071d4272004-06-13 20:20:40 +000021251 if (sourcing_name != NULL)
21252 {
21253 if (save_sourcing_name != NULL
21254 && STRNCMP(save_sourcing_name, "function ", 9) == 0)
21255 sprintf((char *)sourcing_name, "%s..", save_sourcing_name);
21256 else
21257 STRCPY(sourcing_name, "function ");
21258 cat_func_name(sourcing_name + STRLEN(sourcing_name), fp);
21259
21260 if (p_verbose >= 12)
21261 {
21262 ++no_wait_return;
Bram Moolenaar54ee7752005-05-31 22:22:17 +000021263 verbose_enter_scroll();
21264
Bram Moolenaar555b2802005-05-19 21:08:39 +000021265 smsg((char_u *)_("calling %s"), sourcing_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021266 if (p_verbose >= 14)
21267 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000021268 char_u buf[MSG_BUF_LEN];
Bram Moolenaar89d40322006-08-29 15:30:07 +000021269 char_u numbuf2[NUMBUFLEN];
Bram Moolenaar758711c2005-02-02 23:11:38 +000021270 char_u *tofree;
Bram Moolenaar92c5aba2007-08-14 20:29:31 +000021271 char_u *s;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021272
21273 msg_puts((char_u *)"(");
21274 for (i = 0; i < argcount; ++i)
21275 {
21276 if (i > 0)
21277 msg_puts((char_u *)", ");
Bram Moolenaar49cd9572005-01-03 21:06:01 +000021278 if (argvars[i].v_type == VAR_NUMBER)
21279 msg_outnum((long)argvars[i].vval.v_number);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021280 else
21281 {
Bram Moolenaar92c5aba2007-08-14 20:29:31 +000021282 s = tv2string(&argvars[i], &tofree, numbuf2, 0);
21283 if (s != NULL)
21284 {
21285 trunc_string(s, buf, MSG_BUF_CLEN);
21286 msg_puts(buf);
21287 vim_free(tofree);
21288 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000021289 }
21290 }
21291 msg_puts((char_u *)")");
21292 }
21293 msg_puts((char_u *)"\n"); /* don't overwrite this either */
Bram Moolenaar54ee7752005-05-31 22:22:17 +000021294
21295 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +000021296 --no_wait_return;
21297 }
21298 }
Bram Moolenaar05159a02005-02-26 23:04:13 +000021299#ifdef FEAT_PROFILE
Bram Moolenaarb3656ed2006-03-20 21:59:49 +000021300 if (do_profiling == PROF_YES)
Bram Moolenaar05159a02005-02-26 23:04:13 +000021301 {
21302 if (!fp->uf_profiling && has_profiling(FALSE, fp->uf_name, NULL))
21303 func_do_profile(fp);
21304 if (fp->uf_profiling
Bram Moolenaar61c4e2c2008-08-25 02:49:18 +000021305 || (fc.caller != NULL && fc.caller->func->uf_profiling))
Bram Moolenaar05159a02005-02-26 23:04:13 +000021306 {
21307 ++fp->uf_tm_count;
Bram Moolenaare9da72e2006-11-01 17:34:40 +000021308 profile_start(&call_start);
Bram Moolenaar05159a02005-02-26 23:04:13 +000021309 profile_zero(&fp->uf_tm_children);
21310 }
21311 script_prof_save(&wait_start);
21312 }
21313#endif
21314
Bram Moolenaar071d4272004-06-13 20:20:40 +000021315 save_current_SID = current_SID;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021316 current_SID = fp->uf_script_ID;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021317 save_did_emsg = did_emsg;
21318 did_emsg = FALSE;
21319
21320 /* call do_cmdline() to execute the lines */
21321 do_cmdline(NULL, get_func_line, (void *)&fc,
21322 DOCMD_NOWAIT|DOCMD_VERBOSE|DOCMD_REPEAT);
21323
21324 --RedrawingDisabled;
21325
21326 /* when the function was aborted because of an error, return -1 */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021327 if ((did_emsg && (fp->uf_flags & FC_ABORT)) || rettv->v_type == VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021328 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021329 clear_tv(rettv);
21330 rettv->v_type = VAR_NUMBER;
21331 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021332 }
21333
Bram Moolenaar05159a02005-02-26 23:04:13 +000021334#ifdef FEAT_PROFILE
Bram Moolenaarb3656ed2006-03-20 21:59:49 +000021335 if (do_profiling == PROF_YES && (fp->uf_profiling
Bram Moolenaar61c4e2c2008-08-25 02:49:18 +000021336 || (fc.caller != NULL && fc.caller->func->uf_profiling)))
Bram Moolenaar05159a02005-02-26 23:04:13 +000021337 {
Bram Moolenaare9da72e2006-11-01 17:34:40 +000021338 profile_end(&call_start);
21339 profile_sub_wait(&wait_start, &call_start);
21340 profile_add(&fp->uf_tm_total, &call_start);
21341 profile_self(&fp->uf_tm_self, &call_start, &fp->uf_tm_children);
Bram Moolenaar61c4e2c2008-08-25 02:49:18 +000021342 if (fc.caller != NULL && fc.caller->func->uf_profiling)
Bram Moolenaar05159a02005-02-26 23:04:13 +000021343 {
Bram Moolenaare9da72e2006-11-01 17:34:40 +000021344 profile_add(&fc.caller->func->uf_tm_children, &call_start);
21345 profile_add(&fc.caller->func->uf_tml_children, &call_start);
Bram Moolenaar05159a02005-02-26 23:04:13 +000021346 }
21347 }
21348#endif
21349
Bram Moolenaar071d4272004-06-13 20:20:40 +000021350 /* when being verbose, mention the return value */
21351 if (p_verbose >= 12)
21352 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000021353 ++no_wait_return;
Bram Moolenaar54ee7752005-05-31 22:22:17 +000021354 verbose_enter_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +000021355
Bram Moolenaar071d4272004-06-13 20:20:40 +000021356 if (aborting())
Bram Moolenaar555b2802005-05-19 21:08:39 +000021357 smsg((char_u *)_("%s aborted"), sourcing_name);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021358 else if (fc.rettv->v_type == VAR_NUMBER)
Bram Moolenaar555b2802005-05-19 21:08:39 +000021359 smsg((char_u *)_("%s returning #%ld"), sourcing_name,
21360 (long)fc.rettv->vval.v_number);
Bram Moolenaar758711c2005-02-02 23:11:38 +000021361 else
Bram Moolenaar071d4272004-06-13 20:20:40 +000021362 {
Bram Moolenaar758711c2005-02-02 23:11:38 +000021363 char_u buf[MSG_BUF_LEN];
Bram Moolenaar89d40322006-08-29 15:30:07 +000021364 char_u numbuf2[NUMBUFLEN];
Bram Moolenaar758711c2005-02-02 23:11:38 +000021365 char_u *tofree;
Bram Moolenaar92c5aba2007-08-14 20:29:31 +000021366 char_u *s;
Bram Moolenaar758711c2005-02-02 23:11:38 +000021367
Bram Moolenaar555b2802005-05-19 21:08:39 +000021368 /* The value may be very long. Skip the middle part, so that we
21369 * have some idea how it starts and ends. smsg() would always
21370 * truncate it at the end. */
Bram Moolenaar92c5aba2007-08-14 20:29:31 +000021371 s = tv2string(fc.rettv, &tofree, numbuf2, 0);
21372 if (s != NULL)
21373 {
21374 trunc_string(s, buf, MSG_BUF_CLEN);
21375 smsg((char_u *)_("%s returning %s"), sourcing_name, buf);
21376 vim_free(tofree);
21377 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000021378 }
21379 msg_puts((char_u *)"\n"); /* don't overwrite this either */
Bram Moolenaar54ee7752005-05-31 22:22:17 +000021380
21381 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +000021382 --no_wait_return;
21383 }
21384
21385 vim_free(sourcing_name);
21386 sourcing_name = save_sourcing_name;
21387 sourcing_lnum = save_sourcing_lnum;
21388 current_SID = save_current_SID;
Bram Moolenaar05159a02005-02-26 23:04:13 +000021389#ifdef FEAT_PROFILE
Bram Moolenaarb3656ed2006-03-20 21:59:49 +000021390 if (do_profiling == PROF_YES)
Bram Moolenaar05159a02005-02-26 23:04:13 +000021391 script_prof_restore(&wait_start);
21392#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000021393
21394 if (p_verbose >= 12 && sourcing_name != NULL)
21395 {
21396 ++no_wait_return;
Bram Moolenaar54ee7752005-05-31 22:22:17 +000021397 verbose_enter_scroll();
21398
Bram Moolenaar555b2802005-05-19 21:08:39 +000021399 smsg((char_u *)_("continuing in %s"), sourcing_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021400 msg_puts((char_u *)"\n"); /* don't overwrite this either */
Bram Moolenaar54ee7752005-05-31 22:22:17 +000021401
21402 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +000021403 --no_wait_return;
21404 }
21405
21406 did_emsg |= save_did_emsg;
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +000021407 current_funccal = fc.caller;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021408
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021409 /* The a: variables typevals were not allocated, only free the allocated
Bram Moolenaar33570922005-01-25 22:26:29 +000021410 * variables. */
21411 vars_clear_ext(&fc.l_avars.dv_hashtab, FALSE);
21412
21413 vars_clear(&fc.l_vars.dv_hashtab); /* free all l: variables */
Bram Moolenaar071d4272004-06-13 20:20:40 +000021414 --depth;
21415}
21416
21417/*
Bram Moolenaar33570922005-01-25 22:26:29 +000021418 * Add a number variable "name" to dict "dp" with value "nr".
21419 */
21420 static void
21421add_nr_var(dp, v, name, nr)
21422 dict_T *dp;
21423 dictitem_T *v;
21424 char *name;
21425 varnumber_T nr;
21426{
21427 STRCPY(v->di_key, name);
21428 v->di_flags = DI_FLAGS_RO | DI_FLAGS_FIX;
21429 hash_add(&dp->dv_hashtab, DI2HIKEY(v));
21430 v->di_tv.v_type = VAR_NUMBER;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000021431 v->di_tv.v_lock = VAR_FIXED;
Bram Moolenaar33570922005-01-25 22:26:29 +000021432 v->di_tv.vval.v_number = nr;
21433}
21434
21435/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000021436 * ":return [expr]"
21437 */
21438 void
21439ex_return(eap)
21440 exarg_T *eap;
21441{
21442 char_u *arg = eap->arg;
Bram Moolenaar33570922005-01-25 22:26:29 +000021443 typval_T rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021444 int returning = FALSE;
21445
21446 if (current_funccal == NULL)
21447 {
21448 EMSG(_("E133: :return not inside a function"));
21449 return;
21450 }
21451
21452 if (eap->skip)
21453 ++emsg_skip;
21454
21455 eap->nextcmd = NULL;
21456 if ((*arg != NUL && *arg != '|' && *arg != '\n')
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021457 && eval0(arg, &rettv, &eap->nextcmd, !eap->skip) != FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021458 {
21459 if (!eap->skip)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021460 returning = do_return(eap, FALSE, TRUE, &rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021461 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021462 clear_tv(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021463 }
21464 /* It's safer to return also on error. */
21465 else if (!eap->skip)
21466 {
21467 /*
21468 * Return unless the expression evaluation has been cancelled due to an
21469 * aborting error, an interrupt, or an exception.
21470 */
21471 if (!aborting())
21472 returning = do_return(eap, FALSE, TRUE, NULL);
21473 }
21474
21475 /* When skipping or the return gets pending, advance to the next command
21476 * in this line (!returning). Otherwise, ignore the rest of the line.
21477 * Following lines will be ignored by get_func_line(). */
21478 if (returning)
21479 eap->nextcmd = NULL;
21480 else if (eap->nextcmd == NULL) /* no argument */
21481 eap->nextcmd = check_nextcmd(arg);
21482
21483 if (eap->skip)
21484 --emsg_skip;
21485}
21486
21487/*
21488 * Return from a function. Possibly makes the return pending. Also called
21489 * for a pending return at the ":endtry" or after returning from an extra
21490 * do_cmdline(). "reanimate" is used in the latter case. "is_cmd" is set
Bram Moolenaar33570922005-01-25 22:26:29 +000021491 * when called due to a ":return" command. "rettv" may point to a typval_T
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021492 * with the return rettv. Returns TRUE when the return can be carried out,
Bram Moolenaar071d4272004-06-13 20:20:40 +000021493 * FALSE when the return gets pending.
21494 */
21495 int
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021496do_return(eap, reanimate, is_cmd, rettv)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021497 exarg_T *eap;
21498 int reanimate;
21499 int is_cmd;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021500 void *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021501{
21502 int idx;
21503 struct condstack *cstack = eap->cstack;
21504
21505 if (reanimate)
21506 /* Undo the return. */
21507 current_funccal->returned = FALSE;
21508
21509 /*
21510 * Cleanup (and inactivate) conditionals, but stop when a try conditional
21511 * not in its finally clause (which then is to be executed next) is found.
21512 * In this case, make the ":return" pending for execution at the ":endtry".
21513 * Otherwise, return normally.
21514 */
21515 idx = cleanup_conditionals(eap->cstack, 0, TRUE);
21516 if (idx >= 0)
21517 {
21518 cstack->cs_pending[idx] = CSTP_RETURN;
21519
21520 if (!is_cmd && !reanimate)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021521 /* A pending return again gets pending. "rettv" points to an
21522 * allocated variable with the rettv of the original ":return"'s
Bram Moolenaar071d4272004-06-13 20:20:40 +000021523 * argument if present or is NULL else. */
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021524 cstack->cs_rettv[idx] = rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021525 else
21526 {
21527 /* When undoing a return in order to make it pending, get the stored
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021528 * return rettv. */
Bram Moolenaar071d4272004-06-13 20:20:40 +000021529 if (reanimate)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021530 rettv = current_funccal->rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021531
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021532 if (rettv != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021533 {
21534 /* Store the value of the pending return. */
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021535 if ((cstack->cs_rettv[idx] = alloc_tv()) != NULL)
Bram Moolenaar33570922005-01-25 22:26:29 +000021536 *(typval_T *)cstack->cs_rettv[idx] = *(typval_T *)rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021537 else
21538 EMSG(_(e_outofmem));
21539 }
21540 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021541 cstack->cs_rettv[idx] = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021542
21543 if (reanimate)
21544 {
21545 /* The pending return value could be overwritten by a ":return"
21546 * without argument in a finally clause; reset the default
21547 * return value. */
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021548 current_funccal->rettv->v_type = VAR_NUMBER;
21549 current_funccal->rettv->vval.v_number = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021550 }
21551 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021552 report_make_pending(CSTP_RETURN, rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021553 }
21554 else
21555 {
21556 current_funccal->returned = TRUE;
21557
21558 /* If the return is carried out now, store the return value. For
21559 * a return immediately after reanimation, the value is already
21560 * there. */
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021561 if (!reanimate && rettv != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021562 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021563 clear_tv(current_funccal->rettv);
Bram Moolenaar33570922005-01-25 22:26:29 +000021564 *current_funccal->rettv = *(typval_T *)rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021565 if (!is_cmd)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021566 vim_free(rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021567 }
21568 }
21569
21570 return idx < 0;
21571}
21572
21573/*
21574 * Free the variable with a pending return value.
21575 */
21576 void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021577discard_pending_return(rettv)
21578 void *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021579{
Bram Moolenaar33570922005-01-25 22:26:29 +000021580 free_tv((typval_T *)rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021581}
21582
21583/*
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021584 * Generate a return command for producing the value of "rettv". The result
Bram Moolenaar071d4272004-06-13 20:20:40 +000021585 * is an allocated string. Used by report_pending() for verbose messages.
21586 */
21587 char_u *
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021588get_return_cmd(rettv)
21589 void *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021590{
Bram Moolenaar81bf7082005-02-12 14:31:42 +000021591 char_u *s = NULL;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021592 char_u *tofree = NULL;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000021593 char_u numbuf[NUMBUFLEN];
Bram Moolenaar071d4272004-06-13 20:20:40 +000021594
Bram Moolenaar81bf7082005-02-12 14:31:42 +000021595 if (rettv != NULL)
Bram Moolenaarb71eaae2006-01-20 23:10:18 +000021596 s = echo_string((typval_T *)rettv, &tofree, numbuf, 0);
Bram Moolenaar81bf7082005-02-12 14:31:42 +000021597 if (s == NULL)
21598 s = (char_u *)"";
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021599
21600 STRCPY(IObuff, ":return ");
21601 STRNCPY(IObuff + 8, s, IOSIZE - 8);
21602 if (STRLEN(s) + 8 >= IOSIZE)
21603 STRCPY(IObuff + IOSIZE - 4, "...");
21604 vim_free(tofree);
21605 return vim_strsave(IObuff);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021606}
21607
21608/*
21609 * Get next function line.
21610 * Called by do_cmdline() to get the next line.
21611 * Returns allocated string, or NULL for end of function.
21612 */
21613/* ARGSUSED */
21614 char_u *
21615get_func_line(c, cookie, indent)
21616 int c; /* not used */
21617 void *cookie;
21618 int indent; /* not used */
21619{
Bram Moolenaar33570922005-01-25 22:26:29 +000021620 funccall_T *fcp = (funccall_T *)cookie;
Bram Moolenaar05159a02005-02-26 23:04:13 +000021621 ufunc_T *fp = fcp->func;
21622 char_u *retval;
21623 garray_T *gap; /* growarray with function lines */
Bram Moolenaar071d4272004-06-13 20:20:40 +000021624
21625 /* If breakpoints have been added/deleted need to check for it. */
21626 if (fcp->dbg_tick != debug_tick)
21627 {
Bram Moolenaar05159a02005-02-26 23:04:13 +000021628 fcp->breakpoint = dbg_find_breakpoint(FALSE, fp->uf_name,
Bram Moolenaar071d4272004-06-13 20:20:40 +000021629 sourcing_lnum);
21630 fcp->dbg_tick = debug_tick;
21631 }
Bram Moolenaar05159a02005-02-26 23:04:13 +000021632#ifdef FEAT_PROFILE
Bram Moolenaarb3656ed2006-03-20 21:59:49 +000021633 if (do_profiling == PROF_YES)
Bram Moolenaar05159a02005-02-26 23:04:13 +000021634 func_line_end(cookie);
21635#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000021636
Bram Moolenaar05159a02005-02-26 23:04:13 +000021637 gap = &fp->uf_lines;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000021638 if (((fp->uf_flags & FC_ABORT) && did_emsg && !aborted_in_try())
21639 || fcp->returned)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021640 retval = NULL;
21641 else
21642 {
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000021643 /* Skip NULL lines (continuation lines). */
21644 while (fcp->linenr < gap->ga_len
21645 && ((char_u **)(gap->ga_data))[fcp->linenr] == NULL)
21646 ++fcp->linenr;
21647 if (fcp->linenr >= gap->ga_len)
21648 retval = NULL;
21649 else
21650 {
21651 retval = vim_strsave(((char_u **)(gap->ga_data))[fcp->linenr++]);
21652 sourcing_lnum = fcp->linenr;
Bram Moolenaar05159a02005-02-26 23:04:13 +000021653#ifdef FEAT_PROFILE
Bram Moolenaarb3656ed2006-03-20 21:59:49 +000021654 if (do_profiling == PROF_YES)
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000021655 func_line_start(cookie);
Bram Moolenaar05159a02005-02-26 23:04:13 +000021656#endif
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000021657 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000021658 }
21659
21660 /* Did we encounter a breakpoint? */
21661 if (fcp->breakpoint != 0 && fcp->breakpoint <= sourcing_lnum)
21662 {
Bram Moolenaar05159a02005-02-26 23:04:13 +000021663 dbg_breakpoint(fp->uf_name, sourcing_lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021664 /* Find next breakpoint. */
Bram Moolenaar05159a02005-02-26 23:04:13 +000021665 fcp->breakpoint = dbg_find_breakpoint(FALSE, fp->uf_name,
Bram Moolenaar071d4272004-06-13 20:20:40 +000021666 sourcing_lnum);
21667 fcp->dbg_tick = debug_tick;
21668 }
21669
21670 return retval;
21671}
21672
Bram Moolenaar05159a02005-02-26 23:04:13 +000021673#if defined(FEAT_PROFILE) || defined(PROTO)
21674/*
21675 * Called when starting to read a function line.
21676 * "sourcing_lnum" must be correct!
21677 * When skipping lines it may not actually be executed, but we won't find out
21678 * until later and we need to store the time now.
21679 */
21680 void
21681func_line_start(cookie)
21682 void *cookie;
21683{
21684 funccall_T *fcp = (funccall_T *)cookie;
21685 ufunc_T *fp = fcp->func;
21686
21687 if (fp->uf_profiling && sourcing_lnum >= 1
21688 && sourcing_lnum <= fp->uf_lines.ga_len)
21689 {
21690 fp->uf_tml_idx = sourcing_lnum - 1;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000021691 /* Skip continuation lines. */
21692 while (fp->uf_tml_idx > 0 && FUNCLINE(fp, fp->uf_tml_idx) == NULL)
21693 --fp->uf_tml_idx;
Bram Moolenaar05159a02005-02-26 23:04:13 +000021694 fp->uf_tml_execed = FALSE;
21695 profile_start(&fp->uf_tml_start);
21696 profile_zero(&fp->uf_tml_children);
21697 profile_get_wait(&fp->uf_tml_wait);
21698 }
21699}
21700
21701/*
21702 * Called when actually executing a function line.
21703 */
21704 void
21705func_line_exec(cookie)
21706 void *cookie;
21707{
21708 funccall_T *fcp = (funccall_T *)cookie;
21709 ufunc_T *fp = fcp->func;
21710
21711 if (fp->uf_profiling && fp->uf_tml_idx >= 0)
21712 fp->uf_tml_execed = TRUE;
21713}
21714
21715/*
21716 * Called when done with a function line.
21717 */
21718 void
21719func_line_end(cookie)
21720 void *cookie;
21721{
21722 funccall_T *fcp = (funccall_T *)cookie;
21723 ufunc_T *fp = fcp->func;
21724
21725 if (fp->uf_profiling && fp->uf_tml_idx >= 0)
21726 {
21727 if (fp->uf_tml_execed)
21728 {
21729 ++fp->uf_tml_count[fp->uf_tml_idx];
21730 profile_end(&fp->uf_tml_start);
21731 profile_sub_wait(&fp->uf_tml_wait, &fp->uf_tml_start);
Bram Moolenaar05159a02005-02-26 23:04:13 +000021732 profile_add(&fp->uf_tml_total[fp->uf_tml_idx], &fp->uf_tml_start);
Bram Moolenaar1056d982006-03-09 22:37:52 +000021733 profile_self(&fp->uf_tml_self[fp->uf_tml_idx], &fp->uf_tml_start,
21734 &fp->uf_tml_children);
Bram Moolenaar05159a02005-02-26 23:04:13 +000021735 }
21736 fp->uf_tml_idx = -1;
21737 }
21738}
21739#endif
21740
Bram Moolenaar071d4272004-06-13 20:20:40 +000021741/*
21742 * Return TRUE if the currently active function should be ended, because a
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021743 * return was encountered or an error occurred. Used inside a ":while".
Bram Moolenaar071d4272004-06-13 20:20:40 +000021744 */
21745 int
21746func_has_ended(cookie)
21747 void *cookie;
21748{
Bram Moolenaar33570922005-01-25 22:26:29 +000021749 funccall_T *fcp = (funccall_T *)cookie;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021750
21751 /* Ignore the "abort" flag if the abortion behavior has been changed due to
21752 * an error inside a try conditional. */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021753 return (((fcp->func->uf_flags & FC_ABORT) && did_emsg && !aborted_in_try())
Bram Moolenaar071d4272004-06-13 20:20:40 +000021754 || fcp->returned);
21755}
21756
21757/*
21758 * return TRUE if cookie indicates a function which "abort"s on errors.
21759 */
21760 int
21761func_has_abort(cookie)
21762 void *cookie;
21763{
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021764 return ((funccall_T *)cookie)->func->uf_flags & FC_ABORT;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021765}
21766
21767#if defined(FEAT_VIMINFO) || defined(FEAT_SESSION)
21768typedef enum
21769{
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021770 VAR_FLAVOUR_DEFAULT, /* doesn't start with uppercase */
21771 VAR_FLAVOUR_SESSION, /* starts with uppercase, some lower */
21772 VAR_FLAVOUR_VIMINFO /* all uppercase */
Bram Moolenaar071d4272004-06-13 20:20:40 +000021773} var_flavour_T;
21774
21775static var_flavour_T var_flavour __ARGS((char_u *varname));
21776
21777 static var_flavour_T
21778var_flavour(varname)
21779 char_u *varname;
21780{
21781 char_u *p = varname;
21782
21783 if (ASCII_ISUPPER(*p))
21784 {
21785 while (*(++p))
21786 if (ASCII_ISLOWER(*p))
21787 return VAR_FLAVOUR_SESSION;
21788 return VAR_FLAVOUR_VIMINFO;
21789 }
21790 else
21791 return VAR_FLAVOUR_DEFAULT;
21792}
21793#endif
21794
21795#if defined(FEAT_VIMINFO) || defined(PROTO)
21796/*
21797 * Restore global vars that start with a capital from the viminfo file
21798 */
21799 int
21800read_viminfo_varlist(virp, writing)
21801 vir_T *virp;
21802 int writing;
21803{
21804 char_u *tab;
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021805 int type = VAR_NUMBER;
Bram Moolenaar33570922005-01-25 22:26:29 +000021806 typval_T tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021807
21808 if (!writing && (find_viminfo_parameter('!') != NULL))
21809 {
21810 tab = vim_strchr(virp->vir_line + 1, '\t');
21811 if (tab != NULL)
21812 {
21813 *tab++ = '\0'; /* isolate the variable name */
21814 if (*tab == 'S') /* string var */
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021815 type = VAR_STRING;
21816#ifdef FEAT_FLOAT
21817 else if (*tab == 'F')
21818 type = VAR_FLOAT;
21819#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000021820
21821 tab = vim_strchr(tab, '\t');
21822 if (tab != NULL)
21823 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021824 tv.v_type = type;
21825 if (type == VAR_STRING)
Bram Moolenaar3d60ec22005-01-05 22:19:46 +000021826 tv.vval.v_string = viminfo_readstring(virp,
Bram Moolenaar071d4272004-06-13 20:20:40 +000021827 (int)(tab - virp->vir_line + 1), TRUE);
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021828#ifdef FEAT_FLOAT
21829 else if (type == VAR_FLOAT)
21830 (void)string2float(tab + 1, &tv.vval.v_float);
21831#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000021832 else
Bram Moolenaar3d60ec22005-01-05 22:19:46 +000021833 tv.vval.v_number = atol((char *)tab + 1);
Bram Moolenaar3d60ec22005-01-05 22:19:46 +000021834 set_var(virp->vir_line + 1, &tv, FALSE);
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021835 if (type == VAR_STRING)
Bram Moolenaar3d60ec22005-01-05 22:19:46 +000021836 vim_free(tv.vval.v_string);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021837 }
21838 }
21839 }
21840
21841 return viminfo_readline(virp);
21842}
21843
21844/*
21845 * Write global vars that start with a capital to the viminfo file
21846 */
21847 void
21848write_viminfo_varlist(fp)
21849 FILE *fp;
21850{
Bram Moolenaar33570922005-01-25 22:26:29 +000021851 hashitem_T *hi;
21852 dictitem_T *this_var;
Bram Moolenaara7043832005-01-21 11:56:39 +000021853 int todo;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021854 char *s;
Bram Moolenaar81bf7082005-02-12 14:31:42 +000021855 char_u *p;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021856 char_u *tofree;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000021857 char_u numbuf[NUMBUFLEN];
Bram Moolenaar071d4272004-06-13 20:20:40 +000021858
21859 if (find_viminfo_parameter('!') == NULL)
21860 return;
21861
21862 fprintf(fp, _("\n# global variables:\n"));
Bram Moolenaara7043832005-01-21 11:56:39 +000021863
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000021864 todo = (int)globvarht.ht_used;
Bram Moolenaar33570922005-01-25 22:26:29 +000021865 for (hi = globvarht.ht_array; todo > 0; ++hi)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021866 {
Bram Moolenaara7043832005-01-21 11:56:39 +000021867 if (!HASHITEM_EMPTY(hi))
Bram Moolenaar071d4272004-06-13 20:20:40 +000021868 {
Bram Moolenaara7043832005-01-21 11:56:39 +000021869 --todo;
Bram Moolenaar33570922005-01-25 22:26:29 +000021870 this_var = HI2DI(hi);
21871 if (var_flavour(this_var->di_key) == VAR_FLAVOUR_VIMINFO)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021872 {
Bram Moolenaar33570922005-01-25 22:26:29 +000021873 switch (this_var->di_tv.v_type)
Bram Moolenaara7043832005-01-21 11:56:39 +000021874 {
21875 case VAR_STRING: s = "STR"; break;
21876 case VAR_NUMBER: s = "NUM"; break;
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021877#ifdef FEAT_FLOAT
21878 case VAR_FLOAT: s = "FLO"; break;
21879#endif
Bram Moolenaara7043832005-01-21 11:56:39 +000021880 default: continue;
21881 }
Bram Moolenaar33570922005-01-25 22:26:29 +000021882 fprintf(fp, "!%s\t%s\t", this_var->di_key, s);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +000021883 p = echo_string(&this_var->di_tv, &tofree, numbuf, 0);
Bram Moolenaar81bf7082005-02-12 14:31:42 +000021884 if (p != NULL)
21885 viminfo_writestring(fp, p);
Bram Moolenaara7043832005-01-21 11:56:39 +000021886 vim_free(tofree);
21887 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000021888 }
21889 }
21890}
21891#endif
21892
21893#if defined(FEAT_SESSION) || defined(PROTO)
21894 int
21895store_session_globals(fd)
21896 FILE *fd;
21897{
Bram Moolenaar33570922005-01-25 22:26:29 +000021898 hashitem_T *hi;
21899 dictitem_T *this_var;
Bram Moolenaara7043832005-01-21 11:56:39 +000021900 int todo;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021901 char_u *p, *t;
21902
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000021903 todo = (int)globvarht.ht_used;
Bram Moolenaar33570922005-01-25 22:26:29 +000021904 for (hi = globvarht.ht_array; todo > 0; ++hi)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021905 {
Bram Moolenaara7043832005-01-21 11:56:39 +000021906 if (!HASHITEM_EMPTY(hi))
Bram Moolenaar071d4272004-06-13 20:20:40 +000021907 {
Bram Moolenaara7043832005-01-21 11:56:39 +000021908 --todo;
Bram Moolenaar33570922005-01-25 22:26:29 +000021909 this_var = HI2DI(hi);
21910 if ((this_var->di_tv.v_type == VAR_NUMBER
21911 || this_var->di_tv.v_type == VAR_STRING)
21912 && var_flavour(this_var->di_key) == VAR_FLAVOUR_SESSION)
Bram Moolenaar3d60ec22005-01-05 22:19:46 +000021913 {
Bram Moolenaara7043832005-01-21 11:56:39 +000021914 /* Escape special characters with a backslash. Turn a LF and
21915 * CR into \n and \r. */
Bram Moolenaar33570922005-01-25 22:26:29 +000021916 p = vim_strsave_escaped(get_tv_string(&this_var->di_tv),
Bram Moolenaara7043832005-01-21 11:56:39 +000021917 (char_u *)"\\\"\n\r");
21918 if (p == NULL) /* out of memory */
21919 break;
21920 for (t = p; *t != NUL; ++t)
21921 if (*t == '\n')
21922 *t = 'n';
21923 else if (*t == '\r')
21924 *t = 'r';
21925 if ((fprintf(fd, "let %s = %c%s%c",
Bram Moolenaar33570922005-01-25 22:26:29 +000021926 this_var->di_key,
21927 (this_var->di_tv.v_type == VAR_STRING) ? '"'
21928 : ' ',
21929 p,
21930 (this_var->di_tv.v_type == VAR_STRING) ? '"'
21931 : ' ') < 0)
Bram Moolenaara7043832005-01-21 11:56:39 +000021932 || put_eol(fd) == FAIL)
21933 {
21934 vim_free(p);
21935 return FAIL;
21936 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000021937 vim_free(p);
21938 }
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021939#ifdef FEAT_FLOAT
21940 else if (this_var->di_tv.v_type == VAR_FLOAT
21941 && var_flavour(this_var->di_key) == VAR_FLAVOUR_SESSION)
21942 {
21943 float_T f = this_var->di_tv.vval.v_float;
21944 int sign = ' ';
21945
21946 if (f < 0)
21947 {
21948 f = -f;
21949 sign = '-';
21950 }
21951 if ((fprintf(fd, "let %s = %c&%f",
21952 this_var->di_key, sign, f) < 0)
21953 || put_eol(fd) == FAIL)
21954 return FAIL;
21955 }
21956#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000021957 }
21958 }
21959 return OK;
21960}
21961#endif
21962
Bram Moolenaar661b1822005-07-28 22:36:45 +000021963/*
21964 * Display script name where an item was last set.
21965 * Should only be invoked when 'verbose' is non-zero.
21966 */
21967 void
21968last_set_msg(scriptID)
21969 scid_T scriptID;
21970{
Bram Moolenaarcafda4f2005-09-06 19:25:11 +000021971 char_u *p;
21972
Bram Moolenaar661b1822005-07-28 22:36:45 +000021973 if (scriptID != 0)
21974 {
Bram Moolenaarcafda4f2005-09-06 19:25:11 +000021975 p = home_replace_save(NULL, get_scriptname(scriptID));
21976 if (p != NULL)
21977 {
21978 verbose_enter();
21979 MSG_PUTS(_("\n\tLast set from "));
21980 MSG_PUTS(p);
21981 vim_free(p);
21982 verbose_leave();
21983 }
Bram Moolenaar661b1822005-07-28 22:36:45 +000021984 }
21985}
21986
Bram Moolenaard812df62008-11-09 12:46:09 +000021987/*
21988 * List v:oldfiles in a nice way.
21989 */
21990/*ARGSUSED*/
21991 void
21992ex_oldfiles(eap)
21993 exarg_T *eap;
21994{
21995 list_T *l = vimvars[VV_OLDFILES].vv_list;
21996 listitem_T *li;
21997 int nr = 0;
21998
21999 if (l == NULL)
22000 msg((char_u *)_("No old files"));
22001 else
22002 {
22003 msg_start();
22004 msg_scroll = TRUE;
22005 for (li = l->lv_first; li != NULL && !got_int; li = li->li_next)
22006 {
22007 msg_outnum((long)++nr);
22008 MSG_PUTS(": ");
22009 msg_outtrans(get_tv_string(&li->li_tv));
22010 msg_putchar('\n');
22011 out_flush(); /* output one line at a time */
22012 ui_breakcheck();
22013 }
22014 /* Assume "got_int" was set to truncate the listing. */
22015 got_int = FALSE;
22016
22017#ifdef FEAT_BROWSE_CMD
22018 if (cmdmod.browse)
22019 {
22020 quit_more = FALSE;
22021 nr = prompt_for_number(FALSE);
22022 msg_starthere();
22023 if (nr > 0)
22024 {
22025 char_u *p = list_find_str(get_vim_var_list(VV_OLDFILES),
22026 (long)nr);
22027
22028 if (p != NULL)
22029 {
22030 p = expand_env_save(p);
22031 eap->arg = p;
22032 eap->cmdidx = CMD_edit;
22033 cmdmod.browse = FALSE;
22034 do_exedit(eap, NULL);
22035 vim_free(p);
22036 }
22037 }
22038 }
22039#endif
22040 }
22041}
22042
Bram Moolenaar071d4272004-06-13 20:20:40 +000022043#endif /* FEAT_EVAL */
22044
Bram Moolenaar071d4272004-06-13 20:20:40 +000022045
Bram Moolenaar8c8de832008-06-24 22:58:06 +000022046#if defined(FEAT_MODIFY_FNAME) || defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +000022047
22048#ifdef WIN3264
22049/*
22050 * Functions for ":8" filename modifier: get 8.3 version of a filename.
22051 */
22052static int get_short_pathname __ARGS((char_u **fnamep, char_u **bufp, int *fnamelen));
22053static int shortpath_for_invalid_fname __ARGS((char_u **fname, char_u **bufp, int *fnamelen));
22054static int shortpath_for_partial __ARGS((char_u **fnamep, char_u **bufp, int *fnamelen));
22055
22056/*
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022057 * Get the short path (8.3) for the filename in "fnamep".
22058 * Only works for a valid file name.
22059 * When the path gets longer "fnamep" is changed and the allocated buffer
22060 * is put in "bufp".
22061 * *fnamelen is the length of "fnamep" and set to 0 for a nonexistent path.
22062 * Returns OK on success, FAIL on failure.
Bram Moolenaar071d4272004-06-13 20:20:40 +000022063 */
22064 static int
22065get_short_pathname(fnamep, bufp, fnamelen)
22066 char_u **fnamep;
22067 char_u **bufp;
22068 int *fnamelen;
22069{
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022070 int l, len;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022071 char_u *newbuf;
22072
22073 len = *fnamelen;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022074 l = GetShortPathName(*fnamep, *fnamep, len);
22075 if (l > len - 1)
22076 {
22077 /* If that doesn't work (not enough space), then save the string
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022078 * and try again with a new buffer big enough. */
Bram Moolenaar071d4272004-06-13 20:20:40 +000022079 newbuf = vim_strnsave(*fnamep, l);
22080 if (newbuf == NULL)
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022081 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022082
22083 vim_free(*bufp);
22084 *fnamep = *bufp = newbuf;
22085
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022086 /* Really should always succeed, as the buffer is big enough. */
22087 l = GetShortPathName(*fnamep, *fnamep, l+1);
Bram Moolenaar071d4272004-06-13 20:20:40 +000022088 }
22089
22090 *fnamelen = l;
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022091 return OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022092}
22093
22094/*
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022095 * Get the short path (8.3) for the filename in "fname". The converted
22096 * path is returned in "bufp".
22097 *
22098 * Some of the directories specified in "fname" may not exist. This function
22099 * will shorten the existing directories at the beginning of the path and then
22100 * append the remaining non-existing path.
22101 *
22102 * fname - Pointer to the filename to shorten. On return, contains the
22103 * pointer to the shortened pathname
22104 * bufp - Pointer to an allocated buffer for the filename.
22105 * fnamelen - Length of the filename pointed to by fname
22106 *
22107 * Returns OK on success (or nothing done) and FAIL on failure (out of memory).
Bram Moolenaar071d4272004-06-13 20:20:40 +000022108 */
22109 static int
22110shortpath_for_invalid_fname(fname, bufp, fnamelen)
22111 char_u **fname;
22112 char_u **bufp;
22113 int *fnamelen;
22114{
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022115 char_u *short_fname, *save_fname, *pbuf_unused;
22116 char_u *endp, *save_endp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022117 char_u ch;
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022118 int old_len, len;
22119 int new_len, sfx_len;
22120 int retval = OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022121
22122 /* Make a copy */
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022123 old_len = *fnamelen;
22124 save_fname = vim_strnsave(*fname, old_len);
22125 pbuf_unused = NULL;
22126 short_fname = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022127
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022128 endp = save_fname + old_len - 1; /* Find the end of the copy */
22129 save_endp = endp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022130
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022131 /*
22132 * Try shortening the supplied path till it succeeds by removing one
22133 * directory at a time from the tail of the path.
22134 */
22135 len = 0;
22136 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +000022137 {
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022138 /* go back one path-separator */
22139 while (endp > save_fname && !after_pathsep(save_fname, endp + 1))
22140 --endp;
22141 if (endp <= save_fname)
22142 break; /* processed the complete path */
22143
22144 /*
22145 * Replace the path separator with a NUL and try to shorten the
22146 * resulting path.
22147 */
22148 ch = *endp;
22149 *endp = 0;
22150 short_fname = save_fname;
Bram Moolenaarc236c162008-07-13 17:41:49 +000022151 len = (int)STRLEN(short_fname) + 1;
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022152 if (get_short_pathname(&short_fname, &pbuf_unused, &len) == FAIL)
22153 {
22154 retval = FAIL;
22155 goto theend;
22156 }
22157 *endp = ch; /* preserve the string */
22158
22159 if (len > 0)
22160 break; /* successfully shortened the path */
22161
22162 /* failed to shorten the path. Skip the path separator */
22163 --endp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022164 }
22165
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022166 if (len > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000022167 {
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022168 /*
22169 * Succeeded in shortening the path. Now concatenate the shortened
22170 * path with the remaining path at the tail.
22171 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000022172
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022173 /* Compute the length of the new path. */
22174 sfx_len = (int)(save_endp - endp) + 1;
22175 new_len = len + sfx_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022176
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022177 *fnamelen = new_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022178 vim_free(*bufp);
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022179 if (new_len > old_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +000022180 {
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022181 /* There is not enough space in the currently allocated string,
22182 * copy it to a buffer big enough. */
22183 *fname = *bufp = vim_strnsave(short_fname, new_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +000022184 if (*fname == NULL)
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022185 {
22186 retval = FAIL;
22187 goto theend;
22188 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000022189 }
22190 else
22191 {
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022192 /* Transfer short_fname to the main buffer (it's big enough),
22193 * unless get_short_pathname() did its work in-place. */
22194 *fname = *bufp = save_fname;
22195 if (short_fname != save_fname)
22196 vim_strncpy(save_fname, short_fname, len);
22197 save_fname = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022198 }
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022199
22200 /* concat the not-shortened part of the path */
22201 vim_strncpy(*fname + len, endp, sfx_len);
22202 (*fname)[new_len] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022203 }
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022204
22205theend:
22206 vim_free(pbuf_unused);
22207 vim_free(save_fname);
22208
22209 return retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022210}
22211
22212/*
22213 * Get a pathname for a partial path.
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022214 * Returns OK for success, FAIL for failure.
Bram Moolenaar071d4272004-06-13 20:20:40 +000022215 */
22216 static int
22217shortpath_for_partial(fnamep, bufp, fnamelen)
22218 char_u **fnamep;
22219 char_u **bufp;
22220 int *fnamelen;
22221{
22222 int sepcount, len, tflen;
22223 char_u *p;
22224 char_u *pbuf, *tfname;
22225 int hasTilde;
22226
Bram Moolenaar8c8de832008-06-24 22:58:06 +000022227 /* Count up the path separators from the RHS.. so we know which part
22228 * of the path to return. */
Bram Moolenaar071d4272004-06-13 20:20:40 +000022229 sepcount = 0;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +000022230 for (p = *fnamep; p < *fnamep + *fnamelen; mb_ptr_adv(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +000022231 if (vim_ispathsep(*p))
22232 ++sepcount;
22233
22234 /* Need full path first (use expand_env() to remove a "~/") */
22235 hasTilde = (**fnamep == '~');
22236 if (hasTilde)
22237 pbuf = tfname = expand_env_save(*fnamep);
22238 else
22239 pbuf = tfname = FullName_save(*fnamep, FALSE);
22240
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000022241 len = tflen = (int)STRLEN(tfname);
Bram Moolenaar071d4272004-06-13 20:20:40 +000022242
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022243 if (get_short_pathname(&tfname, &pbuf, &len) == FAIL)
22244 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022245
22246 if (len == 0)
22247 {
22248 /* Don't have a valid filename, so shorten the rest of the
22249 * path if we can. This CAN give us invalid 8.3 filenames, but
22250 * there's not a lot of point in guessing what it might be.
22251 */
22252 len = tflen;
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022253 if (shortpath_for_invalid_fname(&tfname, &pbuf, &len) == FAIL)
22254 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022255 }
22256
22257 /* Count the paths backward to find the beginning of the desired string. */
22258 for (p = tfname + len - 1; p >= tfname; --p)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +000022259 {
22260#ifdef FEAT_MBYTE
22261 if (has_mbyte)
22262 p -= mb_head_off(tfname, p);
22263#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000022264 if (vim_ispathsep(*p))
22265 {
22266 if (sepcount == 0 || (hasTilde && sepcount == 1))
22267 break;
22268 else
22269 sepcount --;
22270 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +000022271 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000022272 if (hasTilde)
22273 {
22274 --p;
22275 if (p >= tfname)
22276 *p = '~';
22277 else
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022278 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022279 }
22280 else
22281 ++p;
22282
22283 /* Copy in the string - p indexes into tfname - allocated at pbuf */
22284 vim_free(*bufp);
22285 *fnamelen = (int)STRLEN(p);
22286 *bufp = pbuf;
22287 *fnamep = p;
22288
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022289 return OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022290}
22291#endif /* WIN3264 */
22292
22293/*
22294 * Adjust a filename, according to a string of modifiers.
22295 * *fnamep must be NUL terminated when called. When returning, the length is
22296 * determined by *fnamelen.
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022297 * Returns VALID_ flags or -1 for failure.
Bram Moolenaar071d4272004-06-13 20:20:40 +000022298 * When there is an error, *fnamep is set to NULL.
22299 */
22300 int
22301modify_fname(src, usedlen, fnamep, bufp, fnamelen)
22302 char_u *src; /* string with modifiers */
22303 int *usedlen; /* characters after src that are used */
22304 char_u **fnamep; /* file name so far */
22305 char_u **bufp; /* buffer for allocated file name or NULL */
22306 int *fnamelen; /* length of fnamep */
22307{
22308 int valid = 0;
22309 char_u *tail;
22310 char_u *s, *p, *pbuf;
22311 char_u dirname[MAXPATHL];
22312 int c;
22313 int has_fullname = 0;
22314#ifdef WIN3264
22315 int has_shortname = 0;
22316#endif
22317
22318repeat:
22319 /* ":p" - full path/file_name */
22320 if (src[*usedlen] == ':' && src[*usedlen + 1] == 'p')
22321 {
22322 has_fullname = 1;
22323
22324 valid |= VALID_PATH;
22325 *usedlen += 2;
22326
22327 /* Expand "~/path" for all systems and "~user/path" for Unix and VMS */
22328 if ((*fnamep)[0] == '~'
22329#if !defined(UNIX) && !(defined(VMS) && defined(USER_HOME))
22330 && ((*fnamep)[1] == '/'
22331# ifdef BACKSLASH_IN_FILENAME
22332 || (*fnamep)[1] == '\\'
22333# endif
22334 || (*fnamep)[1] == NUL)
22335
22336#endif
22337 )
22338 {
22339 *fnamep = expand_env_save(*fnamep);
22340 vim_free(*bufp); /* free any allocated file name */
22341 *bufp = *fnamep;
22342 if (*fnamep == NULL)
22343 return -1;
22344 }
22345
22346 /* When "/." or "/.." is used: force expansion to get rid of it. */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +000022347 for (p = *fnamep; *p != NUL; mb_ptr_adv(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +000022348 {
22349 if (vim_ispathsep(*p)
22350 && p[1] == '.'
22351 && (p[2] == NUL
22352 || vim_ispathsep(p[2])
22353 || (p[2] == '.'
22354 && (p[3] == NUL || vim_ispathsep(p[3])))))
22355 break;
22356 }
22357
22358 /* FullName_save() is slow, don't use it when not needed. */
22359 if (*p != NUL || !vim_isAbsName(*fnamep))
22360 {
22361 *fnamep = FullName_save(*fnamep, *p != NUL);
22362 vim_free(*bufp); /* free any allocated file name */
22363 *bufp = *fnamep;
22364 if (*fnamep == NULL)
22365 return -1;
22366 }
22367
22368 /* Append a path separator to a directory. */
22369 if (mch_isdir(*fnamep))
22370 {
22371 /* Make room for one or two extra characters. */
22372 *fnamep = vim_strnsave(*fnamep, (int)STRLEN(*fnamep) + 2);
22373 vim_free(*bufp); /* free any allocated file name */
22374 *bufp = *fnamep;
22375 if (*fnamep == NULL)
22376 return -1;
22377 add_pathsep(*fnamep);
22378 }
22379 }
22380
22381 /* ":." - path relative to the current directory */
22382 /* ":~" - path relative to the home directory */
22383 /* ":8" - shortname path - postponed till after */
22384 while (src[*usedlen] == ':'
22385 && ((c = src[*usedlen + 1]) == '.' || c == '~' || c == '8'))
22386 {
22387 *usedlen += 2;
22388 if (c == '8')
22389 {
22390#ifdef WIN3264
22391 has_shortname = 1; /* Postpone this. */
22392#endif
22393 continue;
22394 }
22395 pbuf = NULL;
22396 /* Need full path first (use expand_env() to remove a "~/") */
22397 if (!has_fullname)
22398 {
22399 if (c == '.' && **fnamep == '~')
22400 p = pbuf = expand_env_save(*fnamep);
22401 else
22402 p = pbuf = FullName_save(*fnamep, FALSE);
22403 }
22404 else
22405 p = *fnamep;
22406
22407 has_fullname = 0;
22408
22409 if (p != NULL)
22410 {
22411 if (c == '.')
22412 {
22413 mch_dirname(dirname, MAXPATHL);
22414 s = shorten_fname(p, dirname);
22415 if (s != NULL)
22416 {
22417 *fnamep = s;
22418 if (pbuf != NULL)
22419 {
22420 vim_free(*bufp); /* free any allocated file name */
22421 *bufp = pbuf;
22422 pbuf = NULL;
22423 }
22424 }
22425 }
22426 else
22427 {
22428 home_replace(NULL, p, dirname, MAXPATHL, TRUE);
22429 /* Only replace it when it starts with '~' */
22430 if (*dirname == '~')
22431 {
22432 s = vim_strsave(dirname);
22433 if (s != NULL)
22434 {
22435 *fnamep = s;
22436 vim_free(*bufp);
22437 *bufp = s;
22438 }
22439 }
22440 }
22441 vim_free(pbuf);
22442 }
22443 }
22444
22445 tail = gettail(*fnamep);
22446 *fnamelen = (int)STRLEN(*fnamep);
22447
22448 /* ":h" - head, remove "/file_name", can be repeated */
22449 /* Don't remove the first "/" or "c:\" */
22450 while (src[*usedlen] == ':' && src[*usedlen + 1] == 'h')
22451 {
22452 valid |= VALID_HEAD;
22453 *usedlen += 2;
22454 s = get_past_head(*fnamep);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +000022455 while (tail > s && after_pathsep(s, tail))
Bram Moolenaar5461cfe2007-09-25 18:40:14 +000022456 mb_ptr_back(*fnamep, tail);
Bram Moolenaar071d4272004-06-13 20:20:40 +000022457 *fnamelen = (int)(tail - *fnamep);
22458#ifdef VMS
22459 if (*fnamelen > 0)
22460 *fnamelen += 1; /* the path separator is part of the path */
22461#endif
Bram Moolenaar5461cfe2007-09-25 18:40:14 +000022462 if (*fnamelen == 0)
22463 {
22464 /* Result is empty. Turn it into "." to make ":cd %:h" work. */
22465 p = vim_strsave((char_u *)".");
22466 if (p == NULL)
22467 return -1;
22468 vim_free(*bufp);
22469 *bufp = *fnamep = tail = p;
22470 *fnamelen = 1;
22471 }
22472 else
22473 {
22474 while (tail > s && !after_pathsep(s, tail))
22475 mb_ptr_back(*fnamep, tail);
22476 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000022477 }
22478
22479 /* ":8" - shortname */
22480 if (src[*usedlen] == ':' && src[*usedlen + 1] == '8')
22481 {
22482 *usedlen += 2;
22483#ifdef WIN3264
22484 has_shortname = 1;
22485#endif
22486 }
22487
22488#ifdef WIN3264
22489 /* Check shortname after we have done 'heads' and before we do 'tails'
22490 */
22491 if (has_shortname)
22492 {
22493 pbuf = NULL;
22494 /* Copy the string if it is shortened by :h */
22495 if (*fnamelen < (int)STRLEN(*fnamep))
22496 {
22497 p = vim_strnsave(*fnamep, *fnamelen);
22498 if (p == 0)
22499 return -1;
22500 vim_free(*bufp);
22501 *bufp = *fnamep = p;
22502 }
22503
22504 /* Split into two implementations - makes it easier. First is where
22505 * there isn't a full name already, second is where there is.
22506 */
22507 if (!has_fullname && !vim_isAbsName(*fnamep))
22508 {
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022509 if (shortpath_for_partial(fnamep, bufp, fnamelen) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000022510 return -1;
22511 }
22512 else
22513 {
22514 int l;
22515
22516 /* Simple case, already have the full-name
22517 * Nearly always shorter, so try first time. */
22518 l = *fnamelen;
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022519 if (get_short_pathname(fnamep, bufp, &l) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000022520 return -1;
22521
22522 if (l == 0)
22523 {
22524 /* Couldn't find the filename.. search the paths.
22525 */
22526 l = *fnamelen;
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022527 if (shortpath_for_invalid_fname(fnamep, bufp, &l) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000022528 return -1;
22529 }
22530 *fnamelen = l;
22531 }
22532 }
22533#endif /* WIN3264 */
22534
22535 /* ":t" - tail, just the basename */
22536 if (src[*usedlen] == ':' && src[*usedlen + 1] == 't')
22537 {
22538 *usedlen += 2;
22539 *fnamelen -= (int)(tail - *fnamep);
22540 *fnamep = tail;
22541 }
22542
22543 /* ":e" - extension, can be repeated */
22544 /* ":r" - root, without extension, can be repeated */
22545 while (src[*usedlen] == ':'
22546 && (src[*usedlen + 1] == 'e' || src[*usedlen + 1] == 'r'))
22547 {
22548 /* find a '.' in the tail:
22549 * - for second :e: before the current fname
22550 * - otherwise: The last '.'
22551 */
22552 if (src[*usedlen + 1] == 'e' && *fnamep > tail)
22553 s = *fnamep - 2;
22554 else
22555 s = *fnamep + *fnamelen - 1;
22556 for ( ; s > tail; --s)
22557 if (s[0] == '.')
22558 break;
22559 if (src[*usedlen + 1] == 'e') /* :e */
22560 {
22561 if (s > tail)
22562 {
22563 *fnamelen += (int)(*fnamep - (s + 1));
22564 *fnamep = s + 1;
22565#ifdef VMS
22566 /* cut version from the extension */
22567 s = *fnamep + *fnamelen - 1;
22568 for ( ; s > *fnamep; --s)
22569 if (s[0] == ';')
22570 break;
22571 if (s > *fnamep)
22572 *fnamelen = s - *fnamep;
22573#endif
22574 }
22575 else if (*fnamep <= tail)
22576 *fnamelen = 0;
22577 }
22578 else /* :r */
22579 {
22580 if (s > tail) /* remove one extension */
22581 *fnamelen = (int)(s - *fnamep);
22582 }
22583 *usedlen += 2;
22584 }
22585
22586 /* ":s?pat?foo?" - substitute */
22587 /* ":gs?pat?foo?" - global substitute */
22588 if (src[*usedlen] == ':'
22589 && (src[*usedlen + 1] == 's'
22590 || (src[*usedlen + 1] == 'g' && src[*usedlen + 2] == 's')))
22591 {
22592 char_u *str;
22593 char_u *pat;
22594 char_u *sub;
22595 int sep;
22596 char_u *flags;
22597 int didit = FALSE;
22598
22599 flags = (char_u *)"";
22600 s = src + *usedlen + 2;
22601 if (src[*usedlen + 1] == 'g')
22602 {
22603 flags = (char_u *)"g";
22604 ++s;
22605 }
22606
22607 sep = *s++;
22608 if (sep)
22609 {
22610 /* find end of pattern */
22611 p = vim_strchr(s, sep);
22612 if (p != NULL)
22613 {
22614 pat = vim_strnsave(s, (int)(p - s));
22615 if (pat != NULL)
22616 {
22617 s = p + 1;
22618 /* find end of substitution */
22619 p = vim_strchr(s, sep);
22620 if (p != NULL)
22621 {
22622 sub = vim_strnsave(s, (int)(p - s));
22623 str = vim_strnsave(*fnamep, *fnamelen);
22624 if (sub != NULL && str != NULL)
22625 {
22626 *usedlen = (int)(p + 1 - src);
22627 s = do_string_sub(str, pat, sub, flags);
22628 if (s != NULL)
22629 {
22630 *fnamep = s;
22631 *fnamelen = (int)STRLEN(s);
22632 vim_free(*bufp);
22633 *bufp = s;
22634 didit = TRUE;
22635 }
22636 }
22637 vim_free(sub);
22638 vim_free(str);
22639 }
22640 vim_free(pat);
22641 }
22642 }
22643 /* after using ":s", repeat all the modifiers */
22644 if (didit)
22645 goto repeat;
22646 }
22647 }
22648
22649 return valid;
22650}
22651
22652/*
22653 * Perform a substitution on "str" with pattern "pat" and substitute "sub".
22654 * "flags" can be "g" to do a global substitute.
22655 * Returns an allocated string, NULL for error.
22656 */
22657 char_u *
22658do_string_sub(str, pat, sub, flags)
22659 char_u *str;
22660 char_u *pat;
22661 char_u *sub;
22662 char_u *flags;
22663{
22664 int sublen;
22665 regmatch_T regmatch;
22666 int i;
22667 int do_all;
22668 char_u *tail;
22669 garray_T ga;
22670 char_u *ret;
22671 char_u *save_cpo;
22672
22673 /* Make 'cpoptions' empty, so that the 'l' flag doesn't work here */
22674 save_cpo = p_cpo;
Bram Moolenaar9c24ccc2008-07-14 21:05:15 +000022675 p_cpo = empty_option;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022676
22677 ga_init2(&ga, 1, 200);
22678
22679 do_all = (flags[0] == 'g');
22680
22681 regmatch.rm_ic = p_ic;
22682 regmatch.regprog = vim_regcomp(pat, RE_MAGIC + RE_STRING);
22683 if (regmatch.regprog != NULL)
22684 {
22685 tail = str;
22686 while (vim_regexec_nl(&regmatch, str, (colnr_T)(tail - str)))
22687 {
22688 /*
22689 * Get some space for a temporary buffer to do the substitution
22690 * into. It will contain:
22691 * - The text up to where the match is.
22692 * - The substituted text.
22693 * - The text after the match.
22694 */
22695 sublen = vim_regsub(&regmatch, sub, tail, FALSE, TRUE, FALSE);
22696 if (ga_grow(&ga, (int)(STRLEN(tail) + sublen -
22697 (regmatch.endp[0] - regmatch.startp[0]))) == FAIL)
22698 {
22699 ga_clear(&ga);
22700 break;
22701 }
22702
22703 /* copy the text up to where the match is */
22704 i = (int)(regmatch.startp[0] - tail);
22705 mch_memmove((char_u *)ga.ga_data + ga.ga_len, tail, (size_t)i);
22706 /* add the substituted text */
22707 (void)vim_regsub(&regmatch, sub, (char_u *)ga.ga_data
22708 + ga.ga_len + i, TRUE, TRUE, FALSE);
22709 ga.ga_len += i + sublen - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022710 /* avoid getting stuck on a match with an empty string */
22711 if (tail == regmatch.endp[0])
22712 {
22713 if (*tail == NUL)
22714 break;
22715 *((char_u *)ga.ga_data + ga.ga_len) = *tail++;
22716 ++ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022717 }
22718 else
22719 {
22720 tail = regmatch.endp[0];
22721 if (*tail == NUL)
22722 break;
22723 }
22724 if (!do_all)
22725 break;
22726 }
22727
22728 if (ga.ga_data != NULL)
22729 STRCPY((char *)ga.ga_data + ga.ga_len, tail);
22730
22731 vim_free(regmatch.regprog);
22732 }
22733
22734 ret = vim_strsave(ga.ga_data == NULL ? str : (char_u *)ga.ga_data);
22735 ga_clear(&ga);
Bram Moolenaar9c24ccc2008-07-14 21:05:15 +000022736 if (p_cpo == empty_option)
22737 p_cpo = save_cpo;
22738 else
22739 /* Darn, evaluating {sub} expression changed the value. */
22740 free_string_option(save_cpo);
Bram Moolenaar071d4272004-06-13 20:20:40 +000022741
22742 return ret;
22743}
22744
22745#endif /* defined(FEAT_MODIFY_FNAME) || defined(FEAT_EVAL) */